xref: /freebsd/share/man/man4/usb.4 (revision eacee0ff7ec955b32e09515246bd97b6edcd2b0f)
1.\" Copyright (c) 1997, 1998
2.\"	Nick Hibma <n_hibma@FreeBSD.org>. All rights reserved.
3.\"
4.\" Redistribution and use in source and binary forms, with or without
5.\" modification, are permitted provided that the following conditions
6.\" are met:
7.\" 1. Redistributions of source code must retain the above copyright
8.\"    notice, this list of conditions and the following disclaimer.
9.\" 2. Redistributions in binary form must reproduce the above copyright
10.\"    notice, this list of conditions and the following disclaimer in the
11.\"    documentation and/or other materials provided with the distribution.
12.\" 3. All advertising materials mentioning features or use of this software
13.\"    must display the following acknowledgement:
14.\"	This product includes software developed by Bill Paul.
15.\" 4. Neither the name of the author nor the names of any co-contributors
16.\"    may be used to endorse or promote products derived from this software
17.\"   without specific prior written permission.
18.\"
19.\" THIS SOFTWARE IS PROVIDED BY NICK HIBMA AND CONTRIBUTORS ``AS IS'' AND
20.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22.\" ARE DISCLAIMED.  IN NO EVENT SHALL NICK HIBMA OR THE VOICES IN HIS HEAD
23.\" BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24.\" CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25.\" SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26.\" INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27.\" CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
29.\" THE POSSIBILITY OF SUCH DAMAGE.
30.\"
31.\" $FreeBSD$
32.\"
33.Dd February 21, 1999
34.Dt USB 4
35.Os
36.Sh NAME
37.Nm usb
38.Nd Universal Serial Bus
39.Sh SYNOPSIS
40.Cd "device usb"
41.Pp
42.Cd "#include <dev/usb/usb.h>"
43.Cd "#include <dev/usb/usbhid.h>"
44.Sh DESCRIPTION
45.Fx
46provides machine-independent bus support and drivers for
47.Tn USB
48devices.
49.Pp
50The
51.Nm
52driver has three layers: the controller, the bus, and the
53device layer.
54The controller attaches to a physical bus
55(like
56.Xr pci 4 ) .
57The
58.Tn USB
59bus attaches to the controller and the root hub attaches
60to the controller.
61Any devices attached to the bus will attach to the root hub
62or another hub attached to the USB bus.
63.Pp
64The
65.Nm uhub
66device will always be present as it is needed for the
67root hub.
68.Sh INTRODUCTION TO USB
69The
70.Tn USB
71is a 12 Mb/s serial bus (1.5 Mb/s for low speed devices).
72Each
73.Tn USB
74has a host controller that is the master of the bus;
75all other devices on the bus only speak when spoken to.
76.Pp
77There can be up to 127 devices (apart from the host controller)
78on a bus, each with its own address.
79The addresses are assigned
80dynamically by the host when each device is attached to the bus.
81.Pp
82Within each device there can be up to 16 endpoints.
83Each endpoint
84is individually addressed and the addresses are static.
85Each of these endpoints will communicate in one of four different modes:
86control, isochronous, bulk, or interrupt.
87A device always has at least one endpoint.
88This endpoint has address 0 and is a control
89endpoint and is used to give commands to and extract basic data,
90such as descriptors, from the device.
91Each endpoint, except the control endpoint, is unidirectional.
92.Pp
93The endpoints in a device are grouped into interfaces.
94An interface is a logical unit within a device; e.g.\&
95a compound device with both a keyboard and a trackball would present
96one interface for each.
97An interface can sometimes be set into different modes,
98called alternate settings, which affects how it operates.
99Different alternate settings can have different endpoints
100within it.
101.Pp
102A device may operate in different configurations.
103Depending on the
104configuration the device may present different sets of endpoints
105and interfaces.
106.Pp
107Each device located on a hub has several
108.Xr config 8
109locators:
110.Bl -tag -compact -width xxxxxx
111.It Cd port
112this is the number of the port on the closest upstream hub.
113.It Cd configuration
114this is the configuration the device must be in for this driver to attach.
115This locator does not set the configuration; it is iterated by the bus
116enumeration.
117.It Cd interface
118this is the interface number within a device that an interface driver
119attaches to.
120.It Cd vendor
121this is the 16 bit vendor id of the device.
122.It Cd product
123this is the 16 bit product id of the device.
124.It Cd release
125this is the 16 bit release (revision) number of the device.
126.El
127The first locator can be used to pin down a particular device
128according to its physical position in the device tree.
129The last three locators can be used to pin down a particular
130device according to what device it actually is.
131.Pp
132The bus enumeration of the
133.Tn USB
134bus proceeds in several steps:
135.Bl -enum
136.It
137Any device specific driver can to attach to the device.
138.It
139If none is found, any device class specific driver can attach.
140.It
141If none is found, all configurations are iterated over.
142For each configuration all the interface are iterated over and interface
143drivers can attach.
144If any interface driver attached in a certain
145configuration the iteration over configurations is stopped.
146.It
147If still no drivers have been found, the generic
148.Tn USB
149driver can attach.
150.El
151.Sh USB CONTROLLER INTERFACE
152Use the following to get access to the
153.Tn USB
154specific structures and defines.
155.Bd -literal
156#include <sys/dev/usb.h>
157.Ed
158.Pp
159The
160.Pa /dev/usbN
161can be opened and a few operations can be performed on it.
162The
163.Xr poll 2
164system call will say that I/O is possible on the controller device when a
165.Tn USB
166device has been connected or disconnected to the bus.
167.Pp
168The following
169.Xr ioctl 2
170commands are supported on the controller device:
171.Bl -tag -width xxxxxx
172.It Dv USB_DISCOVER
173This command will cause a complete bus discovery to be initiated.
174If any devices attached or detached from the bus they will be
175processed during this command.
176This is the only way that new devices are found on the bus.
177.It Dv USB_DEVICEINFO Fa "struct usb_device_info"
178This command can be used to retrieve some information about a device
179on the bus.
180The
181.Va addr
182field should be filled before the call and the other fields will
183be filled by information about the device on that address.
184Should no such device exist an error is reported.
185.Bd -literal
186struct usb_device_info {
187        u_int8_t        bus;
188        u_int8_t        addr;
189        usb_event_cookie_t cookie;
190        char            product[USB_MAX_STRING_LEN];
191        char            vendor[USB_MAX_STRING_LEN];
192        char            release[8];
193        u_int16_t       productNo;
194        u_int16_t       vendorNo;
195        u_int16_t       releaseNo;
196        u_int8_t        class;
197        u_int8_t        subclass;
198        u_int8_t        protocol;
199        u_int8_t        config;
200        u_int8_t        lowspeed;
201        int             power;
202        int             nports;
203        char            devnames[USB_MAX_DEVNAMES][USB_MAX_DEVNAMELEN];
204        u_int8_t        ports[16];
205#define USB_PORT_ENABLED      0xff
206#define USB_PORT_SUSPENDED    0xfe
207#define USB_PORT_POWERED      0xfd
208#define USB_PORT_DISABLED     0xfc
209};
210.Ed
211.Pp
212.Va bus
213and
214.Va addr
215contain the topological information for the device.
216.Va devnames
217contains the device names of the connected drivers.
218For example the
219third USB Zip drive connected will be
220.Li umass2 .
221The
222.Va product , vendor
223and
224.Va release
225fields contain self-explanatory descriptions of the device.
226.Va productNo , vendorNo , releaseNo , class , subclass
227and
228.Va protocol
229contain the corresponding values from the device descriptors.
230The
231.Va config
232field shows the current configuration of the device.
233.Pp
234.Va lowspeed
235indicates whether the device is a full speed (0) or low speed (1)
236device.
237The
238.Va power
239field shows the power consumption in milli-amps drawn at 5 volts,
240or zero if the device is self powered.
241.Pp
242If the device is a hub the
243.Va nports
244field is non-zero and the
245.Va ports
246field contains the addresses of the connected devices.
247If no device is connected to a port one of the
248.Va USB_PORT_*
249values indicates its status.
250.It Dv USB_DEVICESTATS Fa "struct usb_device_stats"
251This command retrieves statistics about the controller.
252.Bd -literal
253struct usb_device_stats {
254        u_long  requests[4];
255};
256.Ed
257.Pp
258The
259.Va requests
260field is indexed by the transfer kind, i.e.\&
261.Va UE_* ,
262and indicates how many transfers of each kind that has been completed
263by the controller.
264.It Dv USB_REQUEST Fa "struct usb_ctl_request"
265This command can be used to execute arbitrary requests on the control pipe.
266This is
267.Em DANGEROUS
268and should be used with great care since it
269can destroy the bus integrity.
270.El
271.Pp
272The include file
273.Aq Pa dev/usb/usb.h
274contains definitions for the types used by the various
275.Xr ioctl 2
276calls.
277The naming convention of the fields for the various
278.Tn USB
279descriptors exactly follows the naming in the
280.Tn USB
281specification.
282Byte sized fields can be accessed directly, but word (16 bit)
283sized fields must be access by the
284.Fn UGETW field
285and
286.Fn USETW field value
287macros to handle byte order and alignment properly.
288.Pp
289The include file
290.Aq Pa dev/usb/usbhid.h
291similarly contains the definitions for
292Human Interface Devices
293.Pq Tn HID .
294.Sh USB EVENT INTERFACE
295All
296.Tn USB
297events are reported via the
298.Pa /dev/usb
299device.  This devices can be opened for reading and each
300.Xr read 2
301will yield an event record (if something has happened).
302The
303.Xr poll 2
304system call can be used to determine if an event record is available
305for reading.
306.Pp
307The event record has the following definition:
308.Bd -literal
309struct usb_event {
310        int                                 ue_type;
311#define USB_EVENT_CTRLR_ATTACH 1
312#define USB_EVENT_CTRLR_DETACH 2
313#define USB_EVENT_DEVICE_ATTACH 3
314#define USB_EVENT_DEVICE_DETACH 4
315#define USB_EVENT_DRIVER_ATTACH 5
316#define USB_EVENT_DRIVER_DETACH 6
317        struct timespec                     ue_time;
318        union {
319                struct {
320                        int                 ue_bus;
321                } ue_ctrlr;
322                struct usb_device_info      ue_device;
323                struct {
324                        usb_event_cookie_t  ue_cookie;
325                        char                ue_devname[16];
326                } ue_driver;
327        } u;
328};
329.Ed
330The
331.Va ue_type
332field identifies the type of event that is described.
333The possible events are attach/detach of a host controller,
334a device, or a device driver.  The union contains information
335pertinent to the different types of events.
336.br
337The
338.Va ue_bus
339contains the number of the
340.Tn USB
341bus for host controller events.
342.br
343The
344.Va ue_device
345record contains information about the device in a device event event.
346.br
347The
348.Va ue_cookie
349is an opaque value that uniquely determines which which
350device a device driver has been attached to (i.e., it equals
351the cookie value in the device that the driver attached to).
352The
353.Va ue_devname
354contains the name of the device (driver) as seen in, e.g.,
355kernel messages.
356.Pp
357Note that that there is a separation between device and device
358driver events.  A device event is generated when a physical
359USB device is attached or detached.  A single USB device may
360have zero, one, or many device drivers associated with it.
361.Sh SEE ALSO
362The
363.Tn USB
364specifications can be found at:
365.D1 http://www.usb.org/developers/docs.html
366.Pp
367.Xr usb 3 ,
368.Xr aue 4 ,
369.Xr cue 4 ,
370.Xr kue 4 ,
371.Xr ohci 4 ,
372.Xr pci 4 ,
373.Xr ugen 4 ,
374.Xr uhci 4 ,
375.Xr uhid 4 ,
376.Xr ukbd 4 ,
377.Xr umass 4 ,
378.Xr ums 4 ,
379.Xr usbd 8 ,
380.Xr urio 4 ,
381.Xr uscanner 4 ,
382.Xr usbdevs 8
383.Sh HISTORY
384The
385.Nm
386driver first appeared in
387.Fx 3.0 .
388.Sh AUTHORS
389The
390.Nm
391driver was written by
392.An Lennart Augustsson Aq augustss@carlstedt.se
393for the
394.Nx
395project.
396