]> git.ipfire.org Git - people/ms/u-boot.git/blame - include/usb.h
Convert CONFIG_BOOTCOUNT_ENV to Kconfig
[people/ms/u-boot.git] / include / usb.h
CommitLineData
012771d8
WD
1/*
2 * (C) Copyright 2001
3 * Denis Peter, MPL AG Switzerland
4 *
de31213f
SG
5 * Adapted for U-Boot driver model
6 * (C) Copyright 2015 Google, Inc
7 *
1a459660 8 * SPDX-License-Identifier: GPL-2.0+
012771d8
WD
9 * Note: Part of this code has been derived from linux
10 *
11 */
12#ifndef _USB_H_
13#define _USB_H_
14
de31213f 15#include <fdtdec.h>
012771d8 16#include <usb_defs.h>
c60795f4 17#include <linux/usb/ch9.h>
a8c2ebcf
MY
18#include <asm/cache.h>
19#include <part.h>
012771d8 20
71c5de4f
TR
21/*
22 * The EHCI spec says that we must align to at least 32 bytes. However,
23 * some platforms require larger alignment.
24 */
25#if ARCH_DMA_MINALIGN > 32
26#define USB_DMA_MINALIGN ARCH_DMA_MINALIGN
27#else
28#define USB_DMA_MINALIGN 32
29#endif
30
012771d8 31/* Everything is aribtrary */
5cf91d6b
WD
32#define USB_ALTSETTINGALLOC 4
33#define USB_MAXALTSETTING 128 /* Hard limit */
012771d8 34
5cf91d6b
WD
35#define USB_MAX_DEVICE 32
36#define USB_MAXCONFIG 8
37#define USB_MAXINTERFACES 8
38#define USB_MAXENDPOINTS 16
39#define USB_MAXCHILDREN 8 /* This is arbitrary */
40#define USB_MAX_HUB 16
012771d8
WD
41
42#define USB_CNTL_TIMEOUT 100 /* 100ms timeout */
43
96820a35
SG
44/*
45 * This is the timeout to allow for submitting an urb in ms. We allow more
46 * time for a BULK device to react - some are slow.
47 */
80b350a7 48#define USB_TIMEOUT_MS(pipe) (usb_pipebulk(pipe) ? 5000 : 1000)
96820a35 49
012771d8
WD
50/* device request (setup) */
51struct devrequest {
b12242ac
ST
52 __u8 requesttype;
53 __u8 request;
54 __le16 value;
55 __le16 index;
56 __le16 length;
012771d8
WD
57} __attribute__ ((packed));
58
8f8bd565
TR
59/* Interface */
60struct usb_interface {
61 struct usb_interface_descriptor desc;
de39f8c1 62
b12242ac
ST
63 __u8 no_of_ep;
64 __u8 num_altsetting;
65 __u8 act_altsetting;
de39f8c1 66
012771d8 67 struct usb_endpoint_descriptor ep_desc[USB_MAXENDPOINTS];
6497c667
VG
68 /*
69 * Super Speed Device will have Super Speed Endpoint
70 * Companion Descriptor (section 9.6.7 of usb 3.0 spec)
71 * Revision 1.0 June 6th 2011
72 */
73 struct usb_ss_ep_comp_descriptor ss_ep_comp_desc[USB_MAXENDPOINTS];
012771d8
WD
74} __attribute__ ((packed));
75
8f8bd565
TR
76/* Configuration information.. */
77struct usb_config {
c60795f4 78 struct usb_config_descriptor desc;
de39f8c1 79
b12242ac 80 __u8 no_of_if; /* number of interfaces */
8f8bd565 81 struct usb_interface if_desc[USB_MAXINTERFACES];
012771d8
WD
82} __attribute__ ((packed));
83
48867208
RB
84enum {
85 /* Maximum packet size; encoded as 0,1,2,3 = 8,16,32,64 */
86 PACKET_SIZE_8 = 0,
87 PACKET_SIZE_16 = 1,
88 PACKET_SIZE_32 = 2,
89 PACKET_SIZE_64 = 3,
90};
012771d8 91
de31213f
SG
92/**
93 * struct usb_device - information about a USB device
94 *
95 * With driver model both UCLASS_USB (the USB controllers) and UCLASS_USB_HUB
96 * (the hubs) have this as parent data. Hubs are children of controllers or
97 * other hubs and there is always a single root hub for each controller.
98 * Therefore struct usb_device can always be accessed with
bcbe3d15 99 * dev_get_parent_priv(dev), where dev is a USB device.
de31213f
SG
100 *
101 * Pointers exist for obtaining both the device (could be any uclass) and
102 * controller (UCLASS_USB) from this structure. The controller does not have
103 * a struct usb_device since it is not a device.
104 */
012771d8 105struct usb_device {
de39f8c1 106 int devnum; /* Device number on USB bus */
3e126484 107 int speed; /* full/low/high */
de39f8c1
MT
108 char mf[32]; /* manufacturer */
109 char prod[32]; /* product */
110 char serial[32]; /* serial number */
012771d8 111
48867208
RB
112 /* Maximum packet size; one of: PACKET_SIZE_* */
113 int maxpacketsize;
114 /* one bit for each endpoint ([0] = IN, [1] = OUT) */
115 unsigned int toggle[2];
de39f8c1
MT
116 /* endpoint halts; one bit per endpoint # & direction;
117 * [0] = IN, [1] = OUT
118 */
48867208 119 unsigned int halted[2];
012771d8
WD
120 int epmaxpacketin[16]; /* INput endpoint specific maximums */
121 int epmaxpacketout[16]; /* OUTput endpoint specific maximums */
122
123 int configno; /* selected config number */
f5766139
PS
124 /* Device Descriptor */
125 struct usb_device_descriptor descriptor
126 __attribute__((aligned(ARCH_DMA_MINALIGN)));
8f8bd565 127 struct usb_config config; /* config descriptor */
012771d8
WD
128
129 int have_langid; /* whether string_langid is valid yet */
130 int string_langid; /* language ID for strings */
131 int (*irq_handle)(struct usb_device *dev);
132 unsigned long irq_status;
a6f70a3d 133 int irq_act_len; /* transferred bytes */
012771d8
WD
134 void *privptr;
135 /*
136 * Child devices - if this is a hub device
137 * Each instance needs its own set of data structures.
138 */
139 unsigned long status;
904f2a83 140 unsigned long int_pending; /* 1 bit per ep, used by int_queue */
a6f70a3d 141 int act_len; /* transferred bytes */
012771d8 142 int maxchild; /* Number of ports if hub */
de31213f
SG
143 int portnr; /* Port number, 1=first */
144#ifndef CONFIG_DM_USB
145 /* parent hub, or NULL if this is the root hub */
012771d8
WD
146 struct usb_device *parent;
147 struct usb_device *children[USB_MAXCHILDREN];
c7e3b2b5 148 void *controller; /* hardware controller private data */
de31213f 149#endif
5853e133
VG
150 /* slot_id - for xHCI enabled devices */
151 unsigned int slot_id;
de31213f
SG
152#ifdef CONFIG_DM_USB
153 struct udevice *dev; /* Pointer to associated device */
154 struct udevice *controller_dev; /* Pointer to associated controller */
155#endif
012771d8
WD
156};
157
8460b89a
HG
158struct int_queue;
159
bba67914
TK
160/*
161 * You can initialize platform's USB host or device
162 * ports by passing this enum as an argument to
163 * board_usb_init().
164 */
165enum usb_init_type {
166 USB_INIT_HOST,
167 USB_INIT_DEVICE
168};
169
012771d8
WD
170/**********************************************************************
171 * this is how the lowlevel part communicate with the outer world
172 */
173
06d513ec 174int usb_lowlevel_init(int index, enum usb_init_type init, void **controller);
c7e3b2b5 175int usb_lowlevel_stop(int index);
de31213f 176
95de1e2f 177#if defined(CONFIG_USB_MUSB_HOST) || defined(CONFIG_DM_USB)
8802f563 178int usb_reset_root_port(struct usb_device *dev);
90cdc103 179#else
8802f563 180#define usb_reset_root_port(dev)
90cdc103 181#endif
c7e3b2b5 182
de39f8c1
MT
183int submit_bulk_msg(struct usb_device *dev, unsigned long pipe,
184 void *buffer, int transfer_len);
012771d8 185int submit_control_msg(struct usb_device *dev, unsigned long pipe, void *buffer,
de39f8c1 186 int transfer_len, struct devrequest *setup);
012771d8
WD
187int submit_int_msg(struct usb_device *dev, unsigned long pipe, void *buffer,
188 int transfer_len, int interval);
189
8850c5d5
TR
190#if defined CONFIG_USB_EHCI_HCD || defined CONFIG_USB_MUSB_HOST \
191 || defined(CONFIG_DM_USB)
8460b89a 192struct int_queue *create_int_queue(struct usb_device *dev, unsigned long pipe,
8bb6c1d1 193 int queuesize, int elementsize, void *buffer, int interval);
8460b89a
HG
194int destroy_int_queue(struct usb_device *dev, struct int_queue *queue);
195void *poll_int_queue(struct usb_device *dev, struct int_queue *queue);
196#endif
197
012771d8 198/* Defines */
de39f8c1
MT
199#define USB_UHCI_VEND_ID 0x8086
200#define USB_UHCI_DEV_ID 0x7112
012771d8 201
e5f24753
LD
202/*
203 * PXA25x can only act as USB device. There are drivers
204 * which works with USB CDC gadgets implementations.
205 * Some of them have common routines which can be used
206 * in boards init functions e.g. udc_disconnect() used for
207 * forced device disconnection from host.
208 */
e5f24753
LD
209extern void udc_disconnect(void);
210
16297cfb
MZ
211/*
212 * board-specific hardware initialization, called by
213 * usb drivers and u-boot commands
214 *
215 * @param index USB controller number
216 * @param init initializes controller as USB host or device
217 */
bba67914 218int board_usb_init(int index, enum usb_init_type init);
16297cfb
MZ
219
220/*
221 * can be used to clean up after failed USB initialization attempt
222 * vide: board_usb_init()
223 *
224 * @param index USB controller number for selective cleanup
bba67914 225 * @param init usb_init_type passed to board_usb_init()
16297cfb 226 */
bba67914 227int board_usb_cleanup(int index, enum usb_init_type init);
16297cfb 228
012771d8
WD
229#ifdef CONFIG_USB_STORAGE
230
70caa971 231#define USB_MAX_STOR_DEV 7
012771d8 232int usb_stor_scan(int mode);
e813eae3 233int usb_stor_info(void);
012771d8
WD
234
235#endif
236
89d48367
SG
237#ifdef CONFIG_USB_HOST_ETHER
238
239#define USB_MAX_ETH_DEV 5
240int usb_host_eth_scan(int mode);
241
242#endif
243
012771d8
WD
244#ifdef CONFIG_USB_KEYBOARD
245
246int drv_usb_kbd_init(void);
8a8a2257 247int usb_kbd_deregister(int force);
012771d8
WD
248
249#endif
250/* routines */
251int usb_init(void); /* initialize the USB Controller */
252int usb_stop(void); /* stop the USB Controller */
08f3bb0b 253int usb_detect_change(void); /* detect if a USB device has been (un)plugged */
012771d8
WD
254
255
256int usb_set_protocol(struct usb_device *dev, int ifnum, int protocol);
de39f8c1
MT
257int usb_set_idle(struct usb_device *dev, int ifnum, int duration,
258 int report_id);
012771d8
WD
259int usb_control_msg(struct usb_device *dev, unsigned int pipe,
260 unsigned char request, unsigned char requesttype,
261 unsigned short value, unsigned short index,
262 void *data, unsigned short size, int timeout);
263int usb_bulk_msg(struct usb_device *dev, unsigned int pipe,
264 void *data, int len, int *actual_length, int timeout);
265int usb_submit_int_msg(struct usb_device *dev, unsigned long pipe,
de39f8c1 266 void *buffer, int transfer_len, int interval);
89d48367 267int usb_disable_asynch(int disable);
de39f8c1 268int usb_maxpacket(struct usb_device *dev, unsigned long pipe);
c75f57fb
SB
269int usb_get_configuration_no(struct usb_device *dev, int cfgno,
270 unsigned char *buffer, int length);
271int usb_get_configuration_len(struct usb_device *dev, int cfgno);
de39f8c1
MT
272int usb_get_report(struct usb_device *dev, int ifnum, unsigned char type,
273 unsigned char id, void *buf, int size);
012771d8 274int usb_get_class_descriptor(struct usb_device *dev, int ifnum,
de39f8c1
MT
275 unsigned char type, unsigned char id, void *buf,
276 int size);
012771d8
WD
277int usb_clear_halt(struct usb_device *dev, int pipe);
278int usb_string(struct usb_device *dev, int index, char *buf, size_t size);
279int usb_set_interface(struct usb_device *dev, int interface, int alternate);
08f3bb0b 280int usb_get_port_status(struct usb_device *dev, int port, void *data);
012771d8
WD
281
282/* big endian -> little endian conversion */
149dded2 283/* some CPUs are already little endian e.g. the ARM920T */
ae3b770e 284#define __swap_16(x) \
3f85ce27
WD
285 ({ unsigned short x_ = (unsigned short)x; \
286 (unsigned short)( \
de39f8c1 287 ((x_ & 0x00FFU) << 8) | ((x_ & 0xFF00U) >> 8)); \
3f85ce27 288 })
ae3b770e 289#define __swap_32(x) \
3f85ce27
WD
290 ({ unsigned long x_ = (unsigned long)x; \
291 (unsigned long)( \
292 ((x_ & 0x000000FFUL) << 24) | \
5cf91d6b
WD
293 ((x_ & 0x0000FF00UL) << 8) | \
294 ((x_ & 0x00FF0000UL) >> 8) | \
de39f8c1 295 ((x_ & 0xFF000000UL) >> 24)); \
3f85ce27 296 })
ae3b770e 297
c7d703f3 298#ifdef __LITTLE_ENDIAN
ae3b770e
MK
299# define swap_16(x) (x)
300# define swap_32(x) (x)
301#else
302# define swap_16(x) __swap_16(x)
303# define swap_32(x) __swap_32(x)
c7d703f3 304#endif
012771d8
WD
305
306/*
307 * Calling this entity a "pipe" is glorifying it. A USB pipe
308 * is something embarrassingly simple: it basically consists
309 * of the following information:
310 * - device number (7 bits)
311 * - endpoint number (4 bits)
312 * - current Data0/1 state (1 bit)
313 * - direction (1 bit)
3e126484 314 * - speed (2 bits)
012771d8
WD
315 * - max packet size (2 bits: 8, 16, 32 or 64)
316 * - pipe type (2 bits: control, interrupt, bulk, isochronous)
317 *
318 * That's 18 bits. Really. Nothing more. And the USB people have
319 * documented these eighteen bits as some kind of glorious
320 * virtual data structure.
321 *
322 * Let's not fall in that trap. We'll just encode it as a simple
323 * unsigned int. The encoding is:
324 *
325 * - max size: bits 0-1 (00 = 8, 01 = 16, 10 = 32, 11 = 64)
de39f8c1
MT
326 * - direction: bit 7 (0 = Host-to-Device [Out],
327 * (1 = Device-to-Host [In])
012771d8
WD
328 * - device: bits 8-14
329 * - endpoint: bits 15-18
330 * - Data0/1: bit 19
de39f8c1
MT
331 * - pipe type: bits 30-31 (00 = isochronous, 01 = interrupt,
332 * 10 = control, 11 = bulk)
012771d8
WD
333 *
334 * Why? Because it's arbitrary, and whatever encoding we select is really
335 * up to us. This one happens to share a lot of bit positions with the UHCI
336 * specification, so that much of the uhci driver can just mask the bits
337 * appropriately.
338 */
339/* Create various pipes... */
340#define create_pipe(dev,endpoint) \
d0fe1128 341 (((dev)->devnum << 8) | ((endpoint) << 15) | \
c60795f4 342 (dev)->maxpacketsize)
3e126484 343#define default_pipe(dev) ((dev)->speed << 26)
de39f8c1
MT
344
345#define usb_sndctrlpipe(dev, endpoint) ((PIPE_CONTROL << 30) | \
346 create_pipe(dev, endpoint))
347#define usb_rcvctrlpipe(dev, endpoint) ((PIPE_CONTROL << 30) | \
348 create_pipe(dev, endpoint) | \
349 USB_DIR_IN)
350#define usb_sndisocpipe(dev, endpoint) ((PIPE_ISOCHRONOUS << 30) | \
351 create_pipe(dev, endpoint))
352#define usb_rcvisocpipe(dev, endpoint) ((PIPE_ISOCHRONOUS << 30) | \
353 create_pipe(dev, endpoint) | \
354 USB_DIR_IN)
355#define usb_sndbulkpipe(dev, endpoint) ((PIPE_BULK << 30) | \
356 create_pipe(dev, endpoint))
357#define usb_rcvbulkpipe(dev, endpoint) ((PIPE_BULK << 30) | \
358 create_pipe(dev, endpoint) | \
359 USB_DIR_IN)
360#define usb_sndintpipe(dev, endpoint) ((PIPE_INTERRUPT << 30) | \
361 create_pipe(dev, endpoint))
362#define usb_rcvintpipe(dev, endpoint) ((PIPE_INTERRUPT << 30) | \
363 create_pipe(dev, endpoint) | \
364 USB_DIR_IN)
365#define usb_snddefctrl(dev) ((PIPE_CONTROL << 30) | \
366 default_pipe(dev))
367#define usb_rcvdefctrl(dev) ((PIPE_CONTROL << 30) | \
368 default_pipe(dev) | \
369 USB_DIR_IN)
012771d8
WD
370
371/* The D0/D1 toggle bits */
372#define usb_gettoggle(dev, ep, out) (((dev)->toggle[out] >> ep) & 1)
5cf91d6b 373#define usb_dotoggle(dev, ep, out) ((dev)->toggle[out] ^= (1 << ep))
de39f8c1
MT
374#define usb_settoggle(dev, ep, out, bit) ((dev)->toggle[out] = \
375 ((dev)->toggle[out] & \
376 ~(1 << ep)) | ((bit) << ep))
012771d8
WD
377
378/* Endpoint halt control/status */
379#define usb_endpoint_out(ep_dir) (((ep_dir >> 7) & 1) ^ 1)
380#define usb_endpoint_halt(dev, ep, out) ((dev)->halted[out] |= (1 << (ep)))
381#define usb_endpoint_running(dev, ep, out) ((dev)->halted[out] &= ~(1 << (ep)))
382#define usb_endpoint_halted(dev, ep, out) ((dev)->halted[out] & (1 << (ep)))
383
de39f8c1
MT
384#define usb_packetid(pipe) (((pipe) & USB_DIR_IN) ? USB_PID_IN : \
385 USB_PID_OUT)
012771d8
WD
386
387#define usb_pipeout(pipe) ((((pipe) >> 7) & 1) ^ 1)
388#define usb_pipein(pipe) (((pipe) >> 7) & 1)
389#define usb_pipedevice(pipe) (((pipe) >> 8) & 0x7f)
390#define usb_pipe_endpdev(pipe) (((pipe) >> 8) & 0x7ff)
391#define usb_pipeendpoint(pipe) (((pipe) >> 15) & 0xf)
392#define usb_pipedata(pipe) (((pipe) >> 19) & 1)
012771d8
WD
393#define usb_pipetype(pipe) (((pipe) >> 30) & 3)
394#define usb_pipeisoc(pipe) (usb_pipetype((pipe)) == PIPE_ISOCHRONOUS)
395#define usb_pipeint(pipe) (usb_pipetype((pipe)) == PIPE_INTERRUPT)
396#define usb_pipecontrol(pipe) (usb_pipetype((pipe)) == PIPE_CONTROL)
397#define usb_pipebulk(pipe) (usb_pipetype((pipe)) == PIPE_BULK)
398
5853e133
VG
399#define usb_pipe_ep_index(pipe) \
400 usb_pipecontrol(pipe) ? (usb_pipeendpoint(pipe) * 2) : \
401 ((usb_pipeendpoint(pipe) * 2) - \
402 (usb_pipein(pipe) ? 0 : 1))
012771d8 403
0566e240
SG
404/**
405 * struct usb_device_id - identifies USB devices for probing and hotplugging
406 * @match_flags: Bit mask controlling which of the other fields are used to
407 * match against new devices. Any field except for driver_info may be
408 * used, although some only make sense in conjunction with other fields.
409 * This is usually set by a USB_DEVICE_*() macro, which sets all
410 * other fields in this structure except for driver_info.
411 * @idVendor: USB vendor ID for a device; numbers are assigned
412 * by the USB forum to its members.
413 * @idProduct: Vendor-assigned product ID.
414 * @bcdDevice_lo: Low end of range of vendor-assigned product version numbers.
415 * This is also used to identify individual product versions, for
416 * a range consisting of a single device.
417 * @bcdDevice_hi: High end of version number range. The range of product
418 * versions is inclusive.
419 * @bDeviceClass: Class of device; numbers are assigned
420 * by the USB forum. Products may choose to implement classes,
421 * or be vendor-specific. Device classes specify behavior of all
422 * the interfaces on a device.
423 * @bDeviceSubClass: Subclass of device; associated with bDeviceClass.
424 * @bDeviceProtocol: Protocol of device; associated with bDeviceClass.
425 * @bInterfaceClass: Class of interface; numbers are assigned
426 * by the USB forum. Products may choose to implement classes,
427 * or be vendor-specific. Interface classes specify behavior only
428 * of a given interface; other interfaces may support other classes.
429 * @bInterfaceSubClass: Subclass of interface; associated with bInterfaceClass.
430 * @bInterfaceProtocol: Protocol of interface; associated with bInterfaceClass.
431 * @bInterfaceNumber: Number of interface; composite devices may use
432 * fixed interface numbers to differentiate between vendor-specific
433 * interfaces.
434 * @driver_info: Holds information used by the driver. Usually it holds
435 * a pointer to a descriptor understood by the driver, or perhaps
436 * device flags.
437 *
438 * In most cases, drivers will create a table of device IDs by using
439 * USB_DEVICE(), or similar macros designed for that purpose.
440 * They will then export it to userspace using MODULE_DEVICE_TABLE(),
441 * and provide it to the USB core through their usb_driver structure.
442 *
443 * See the usb_match_id() function for information about how matches are
444 * performed. Briefly, you will normally use one of several macros to help
445 * construct these entries. Each entry you provide will either identify
446 * one or more specific products, or will identify a class of products
447 * which have agreed to behave the same. You should put the more specific
448 * matches towards the beginning of your table, so that driver_info can
449 * record quirks of specific products.
450 */
451struct usb_device_id {
452 /* which fields to match against? */
453 u16 match_flags;
454
455 /* Used for product specific matches; range is inclusive */
456 u16 idVendor;
457 u16 idProduct;
458 u16 bcdDevice_lo;
459 u16 bcdDevice_hi;
460
461 /* Used for device class matches */
462 u8 bDeviceClass;
463 u8 bDeviceSubClass;
464 u8 bDeviceProtocol;
465
466 /* Used for interface class matches */
467 u8 bInterfaceClass;
468 u8 bInterfaceSubClass;
469 u8 bInterfaceProtocol;
470
471 /* Used for vendor-specific interface matches */
472 u8 bInterfaceNumber;
473
474 /* not matched against */
475 ulong driver_info;
476};
477
478/* Some useful macros to use to create struct usb_device_id */
479#define USB_DEVICE_ID_MATCH_VENDOR 0x0001
480#define USB_DEVICE_ID_MATCH_PRODUCT 0x0002
481#define USB_DEVICE_ID_MATCH_DEV_LO 0x0004
482#define USB_DEVICE_ID_MATCH_DEV_HI 0x0008
483#define USB_DEVICE_ID_MATCH_DEV_CLASS 0x0010
484#define USB_DEVICE_ID_MATCH_DEV_SUBCLASS 0x0020
485#define USB_DEVICE_ID_MATCH_DEV_PROTOCOL 0x0040
486#define USB_DEVICE_ID_MATCH_INT_CLASS 0x0080
487#define USB_DEVICE_ID_MATCH_INT_SUBCLASS 0x0100
488#define USB_DEVICE_ID_MATCH_INT_PROTOCOL 0x0200
489#define USB_DEVICE_ID_MATCH_INT_NUMBER 0x0400
490
491/* Match anything, indicates this is a valid entry even if everything is 0 */
492#define USB_DEVICE_ID_MATCH_NONE 0x0800
493#define USB_DEVICE_ID_MATCH_ALL 0x07ff
494
495/**
496 * struct usb_driver_entry - Matches a driver to its usb_device_ids
b483915f
SG
497 * @driver: Driver to use
498 * @match: List of match records for this driver, terminated by {}
0566e240
SG
499 */
500struct usb_driver_entry {
501 struct driver *driver;
502 const struct usb_device_id *match;
503};
504
abb59cff
SG
505#define USB_DEVICE_ID_MATCH_DEVICE \
506 (USB_DEVICE_ID_MATCH_VENDOR | USB_DEVICE_ID_MATCH_PRODUCT)
507
508/**
509 * USB_DEVICE - macro used to describe a specific usb device
510 * @vend: the 16 bit USB Vendor ID
511 * @prod: the 16 bit USB Product ID
512 *
513 * This macro is used to create a struct usb_device_id that matches a
514 * specific device.
515 */
516#define USB_DEVICE(vend, prod) \
517 .match_flags = USB_DEVICE_ID_MATCH_DEVICE, \
518 .idVendor = (vend), \
519 .idProduct = (prod)
520
521#define U_BOOT_USB_DEVICE(__name, __match) \
0566e240
SG
522 ll_entry_declare(struct usb_driver_entry, __name, usb_driver_entry) = {\
523 .driver = llsym(struct driver, __name, driver), \
524 .match = __match, \
525 }
526
012771d8
WD
527/*************************************************************************
528 * Hub Stuff
529 */
530struct usb_port_status {
531 unsigned short wPortStatus;
532 unsigned short wPortChange;
533} __attribute__ ((packed));
534
535struct usb_hub_status {
536 unsigned short wHubStatus;
537 unsigned short wHubChange;
538} __attribute__ ((packed));
539
5624dfd5
BM
540/*
541 * Hub Device descriptor
542 * USB Hub class device protocols
543 */
544#define USB_HUB_PR_FS 0 /* Full speed hub */
545#define USB_HUB_PR_HS_NO_TT 0 /* Hi-speed hub without TT */
546#define USB_HUB_PR_HS_SINGLE_TT 1 /* Hi-speed hub with single TT */
547#define USB_HUB_PR_HS_MULTI_TT 2 /* Hi-speed hub with multiple TT */
548#define USB_HUB_PR_SS 3 /* Super speed hub */
549
550/* Transaction Translator Think Times, in bits */
551#define HUB_TTTT_8_BITS 0x00
552#define HUB_TTTT_16_BITS 0x20
553#define HUB_TTTT_24_BITS 0x40
554#define HUB_TTTT_32_BITS 0x60
012771d8
WD
555
556/* Hub descriptor */
557struct usb_hub_descriptor {
558 unsigned char bLength;
559 unsigned char bDescriptorType;
560 unsigned char bNbrPorts;
561 unsigned short wHubCharacteristics;
562 unsigned char bPwrOn2PwrGood;
563 unsigned char bHubContrCurrent;
337fc7e6
BM
564 /* 2.0 and 3.0 hubs differ here */
565 union {
566 struct {
567 /* add 1 bit for hub status change; round to bytes */
568 __u8 DeviceRemovable[(USB_MAXCHILDREN + 1 + 7) / 8];
569 __u8 PortPowerCtrlMask[(USB_MAXCHILDREN + 1 + 7) / 8];
570 } __attribute__ ((packed)) hs;
571
572 struct {
573 __u8 bHubHdrDecLat;
574 __le16 wHubDelay;
575 __le16 DeviceRemovable;
576 } __attribute__ ((packed)) ss;
577 } u;
012771d8
WD
578} __attribute__ ((packed));
579
580
581struct usb_hub_device {
582 struct usb_device *pusb_dev;
583 struct usb_hub_descriptor desc;
c998da0d
SR
584
585 ulong connect_timeout; /* Device connection timeout in ms */
586 ulong query_delay; /* Device query delay in ms */
587 int overcurrent_count[USB_MAXCHILDREN]; /* Over-current counter */
bbc6f06c 588 int hub_depth; /* USB 3.0 hub depth */
5624dfd5 589 struct usb_tt tt; /* Transaction Translator */
012771d8
WD
590};
591
de31213f
SG
592#ifdef CONFIG_DM_USB
593/**
594 * struct usb_platdata - Platform data about a USB controller
595 *
596 * Given a USB controller (UCLASS_USB) dev this is dev_get_platdata(dev)
597 */
598struct usb_platdata {
599 enum usb_init_type init_type;
600};
601
602/**
603 * struct usb_dev_platdata - Platform data about a USB device
604 *
605 * Given a USB device dev this structure is dev_get_parent_platdata(dev).
606 * This is used by sandbox to provide emulation data also.
607 *
608 * @id: ID used to match this device
de31213f 609 * @devnum: Device address on the USB bus
7f1a0753 610 * @udev: usb-uclass internal use only do NOT use
de31213f
SG
611 * @strings: List of descriptor strings (for sandbox emulation purposes)
612 * @desc_list: List of descriptors (for sandbox emulation purposes)
613 */
614struct usb_dev_platdata {
615 struct usb_device_id id;
de31213f 616 int devnum;
7f1a0753
HG
617 /*
618 * This pointer is used to pass the usb_device used in usb_scan_device,
619 * to get the usb descriptors before the driver is known, to the
620 * actual udevice once the driver is known and the udevice is created.
621 * This will be NULL except during probe, do NOT use.
622 *
623 * This should eventually go away.
624 */
625 struct usb_device *udev;
de31213f
SG
626#ifdef CONFIG_SANDBOX
627 struct usb_string *strings;
628 /* NULL-terminated list of descriptor pointers */
629 struct usb_generic_descriptor **desc_list;
630#endif
631 int configno;
632};
633
634/**
635 * struct usb_bus_priv - information about the USB controller
636 *
637 * Given a USB controller (UCLASS_USB) 'dev', this is
638 * dev_get_uclass_priv(dev).
639 *
640 * @next_addr: Next device address to allocate minus 1. Incremented by 1
641 * each time a new device address is set, so this holds the
642 * number of devices on the bus
643 * @desc_before_addr: true if we can read a device descriptor before it
644 * has been assigned an address. For XHCI this is not possible
645 * so this will be false.
b6de4d10
HG
646 * @companion: True if this is a companion controller to another USB
647 * controller
de31213f
SG
648 */
649struct usb_bus_priv {
650 int next_addr;
651 bool desc_before_addr;
b6de4d10 652 bool companion;
de31213f
SG
653};
654
84aa8536
BM
655/**
656 * struct usb_emul_platdata - platform data about the USB emulator
657 *
658 * Given a USB emulator (UCLASS_USB_EMUL) 'dev', this is
659 * dev_get_uclass_platdata(dev).
660 *
661 * @port1: USB emulator device port number on the parent hub
662 */
663struct usb_emul_platdata {
664 int port1; /* Port number (numbered from 1) */
665};
666
de31213f
SG
667/**
668 * struct dm_usb_ops - USB controller operations
669 *
670 * This defines the operations supoorted on a USB controller. Common
671 * arguments are:
672 *
673 * @bus: USB bus (i.e. controller), which is in UCLASS_USB.
674 * @udev: USB device parent data. Controllers are not expected to need
675 * this, since the device address on the bus is encoded in @pipe.
676 * It is used for sandbox, and can be handy for debugging and
677 * logging.
678 * @pipe: An assortment of bitfields which provide address and packet
679 * type information. See create_pipe() above for encoding
680 * details
681 * @buffer: A buffer to use for sending/receiving. This should be
682 * DMA-aligned.
683 * @length: Buffer length in bytes
684 */
685struct dm_usb_ops {
686 /**
687 * control() - Send a control message
688 *
689 * Most parameters are as above.
690 *
691 * @setup: Additional setup information required by the message
692 */
693 int (*control)(struct udevice *bus, struct usb_device *udev,
694 unsigned long pipe, void *buffer, int length,
695 struct devrequest *setup);
696 /**
697 * bulk() - Send a bulk message
698 *
699 * Parameters are as above.
700 */
701 int (*bulk)(struct udevice *bus, struct usb_device *udev,
702 unsigned long pipe, void *buffer, int length);
703 /**
704 * interrupt() - Send an interrupt message
705 *
706 * Most parameters are as above.
707 *
708 * @interval: Interrupt interval
709 */
710 int (*interrupt)(struct udevice *bus, struct usb_device *udev,
711 unsigned long pipe, void *buffer, int length,
712 int interval);
8a5f0665
HG
713
714 /**
715 * create_int_queue() - Create and queue interrupt packets
716 *
717 * Create and queue @queuesize number of interrupt usb packets of
718 * @elementsize bytes each. @buffer must be atleast @queuesize *
719 * @elementsize bytes.
720 *
721 * Note some controllers only support a queuesize of 1.
722 *
723 * @interval: Interrupt interval
724 *
725 * @return A pointer to the created interrupt queue or NULL on error
726 */
727 struct int_queue * (*create_int_queue)(struct udevice *bus,
728 struct usb_device *udev, unsigned long pipe,
729 int queuesize, int elementsize, void *buffer,
730 int interval);
731
732 /**
733 * poll_int_queue() - Poll an interrupt queue for completed packets
734 *
735 * Poll an interrupt queue for completed packets. The return value
736 * points to the part of the buffer passed to create_int_queue()
737 * corresponding to the completed packet.
738 *
739 * @queue: queue to poll
740 *
741 * @return Pointer to the data of the first completed packet, or
742 * NULL if no packets are ready
743 */
744 void * (*poll_int_queue)(struct udevice *bus, struct usb_device *udev,
745 struct int_queue *queue);
746
747 /**
748 * destroy_int_queue() - Destroy an interrupt queue
749 *
750 * Destroy an interrupt queue created by create_int_queue().
751 *
752 * @queue: queue to poll
753 *
754 * @return 0 if OK, -ve on error
755 */
756 int (*destroy_int_queue)(struct udevice *bus, struct usb_device *udev,
757 struct int_queue *queue);
758
de31213f
SG
759 /**
760 * alloc_device() - Allocate a new device context (XHCI)
761 *
762 * Before sending packets to a new device on an XHCI bus, a device
763 * context must be created. If this method is not NULL it will be
764 * called before the device is enumerated (even before its descriptor
765 * is read). This should be NULL for EHCI, which does not need this.
766 */
767 int (*alloc_device)(struct udevice *bus, struct usb_device *udev);
b2f219b0
HG
768
769 /**
770 * reset_root_port() - Reset usb root port
771 */
772 int (*reset_root_port)(struct udevice *bus, struct usb_device *udev);
9ca1b4ba
BM
773
774 /**
775 * update_hub_device() - Update HCD's internal representation of hub
776 *
777 * After a hub descriptor is fetched, notify HCD so that its internal
778 * representation of this hub can be updated (xHCI)
779 */
780 int (*update_hub_device)(struct udevice *bus, struct usb_device *udev);
3e59f590
BM
781
782 /**
783 * get_max_xfer_size() - Get HCD's maximum transfer bytes
784 *
785 * The HCD may have limitation on the maximum bytes to be transferred
786 * in a USB transfer. USB class driver needs to be aware of this.
787 */
788 int (*get_max_xfer_size)(struct udevice *bus, size_t *size);
de31213f
SG
789};
790
791#define usb_get_ops(dev) ((struct dm_usb_ops *)(dev)->driver->ops)
792#define usb_get_emul_ops(dev) ((struct dm_usb_ops *)(dev)->driver->ops)
793
de31213f
SG
794/**
795 * usb_get_dev_index() - look up a device index number
796 *
797 * Look up devices using their index number (starting at 0). This works since
798 * in U-Boot device addresses are allocated starting at 1 with no gaps.
799 *
800 * TODO(sjg@chromium.org): Remove this function when usb_ether.c is modified
801 * to work better with driver model.
802 *
803 * @bus: USB bus to check
804 * @index: Index number of device to find (0=first). This is just the
805 * device address less 1.
806 */
807struct usb_device *usb_get_dev_index(struct udevice *bus, int index);
808
de31213f
SG
809/**
810 * usb_setup_device() - set up a device ready for use
811 *
812 * @dev: USB device pointer. This need not be a real device - it is
813 * common for it to just be a local variable with its ->dev
9eb72dd1
HG
814 * member (i.e. @dev->dev) set to the parent device and
815 * dev->portnr set to the port number on the hub (1=first)
de31213f
SG
816 * @do_read: true to read the device descriptor before an address is set
817 * (should be false for XHCI buses, true otherwise)
818 * @parent: Parent device (either UCLASS_USB or UCLASS_USB_HUB)
de31213f
SG
819 * @return 0 if OK, -ve on error */
820int usb_setup_device(struct usb_device *dev, bool do_read,
9eb72dd1 821 struct usb_device *parent);
de31213f 822
46c1d493
BM
823/**
824 * usb_hub_is_root_hub() - Test whether a hub device is root hub or not
825 *
826 * @hub: USB hub device to test
827 * @return: true if the hub device is root hub, false otherwise.
828 */
829bool usb_hub_is_root_hub(struct udevice *hub);
830
de31213f
SG
831/**
832 * usb_hub_scan() - Scan a hub and find its devices
833 *
834 * @hub: Hub device to scan
835 */
836int usb_hub_scan(struct udevice *hub);
837
838/**
839 * usb_scan_device() - Scan a device on a bus
840 *
841 * Scan a device on a bus. It has already been detected and is ready to
842 * be enumerated. This may be either the root hub (@parent is a bus) or a
843 * normal device (@parent is a hub)
844 *
845 * @parent: Parent device
846 * @port: Hub port number (numbered from 1)
847 * @speed: USB speed to use for this device
848 * @devp: Returns pointer to device if all is well
849 * @return 0 if OK, -ve on error
850 */
851int usb_scan_device(struct udevice *parent, int port,
852 enum usb_device_speed speed, struct udevice **devp);
853
854/**
855 * usb_get_bus() - Find the bus for a device
856 *
857 * Search up through parents to find the bus this device is connected to. This
858 * will be a device with uclass UCLASS_USB.
859 *
860 * @dev: Device to check
f78a5c07
HG
861 * @return The bus, or NULL if not found (this indicates a critical error in
862 * the USB stack
de31213f 863 */
f78a5c07 864struct udevice *usb_get_bus(struct udevice *dev);
de31213f
SG
865
866/**
867 * usb_select_config() - Set up a device ready for use
868 *
869 * This function assumes that the device already has an address and a driver
870 * bound, and is ready to be set up.
871 *
872 * This re-reads the device and configuration descriptors and sets the
873 * configuration
874 *
875 * @dev: Device to set up
876 */
877int usb_select_config(struct usb_device *dev);
878
879/**
880 * usb_child_pre_probe() - Pre-probe function for USB devices
881 *
882 * This is called on all children of hubs and USB controllers (i.e. UCLASS_USB
883 * and UCLASS_USB_HUB) when a new device is about to be probed. It sets up the
884 * device from the saved platform data and calls usb_select_config() to
885 * finish set up.
886 *
887 * Once this is done, the device's normal driver can take over, knowing the
888 * device is accessible on the USB bus.
889 *
890 * This function is for use only by the internal USB stack.
891 *
892 * @dev: Device to set up
893 */
894int usb_child_pre_probe(struct udevice *dev);
895
896struct ehci_ctrl;
897
898/**
899 * usb_setup_ehci_gadget() - Set up a USB device as a gadget
900 *
901 * TODO(sjg@chromium.org): Tidy this up when USB gadgets can use driver model
902 *
903 * This provides a way to tell a controller to start up as a USB device
904 * instead of as a host. It is untested.
905 */
906int usb_setup_ehci_gadget(struct ehci_ctrl **ctlrp);
907
908/**
909 * usb_stor_reset() - Prepare to scan USB storage devices
910 *
911 * Empty the list of USB storage devices in preparation for scanning them.
912 * This must be called before a USB scan.
913 */
914void usb_stor_reset(void);
915
916#else /* !CONFIG_DM_USB */
917
918struct usb_device *usb_get_dev_index(int index);
919
920#endif
921
922bool usb_device_has_child_on_port(struct usb_device *parent, int port);
923
23faf2bc
MV
924int usb_hub_probe(struct usb_device *dev, int ifnum);
925void usb_hub_reset(void);
862e75c0 926
faa7db24
SB
927/*
928 * usb_find_usb2_hub_address_port() - Get hub address and port for TT setting
929 *
930 * Searches for the first HS hub above the given device. If a
931 * HS hub is found, the hub address and the port the device is
932 * connected to is return, as required for SPLIT transactions
933 *
934 * @param: udev full speed or low speed device
935 */
936void usb_find_usb2_hub_address_port(struct usb_device *udev,
937 uint8_t *hub_address, uint8_t *hub_port);
938
79b58887
SG
939/**
940 * usb_alloc_new_device() - Allocate a new device
941 *
942 * @devp: returns a pointer of a new device structure. With driver model this
943 * is a device pointer, but with legacy USB this pointer is
944 * driver-specific.
945 * @return 0 if OK, -ENOSPC if we have found out of room for new devices
946 */
947int usb_alloc_new_device(struct udevice *controller, struct usb_device **devp);
948
949/**
950 * usb_free_device() - Free a partially-inited device
951 *
952 * This is an internal function. It is used to reverse the action of
953 * usb_alloc_new_device() when we hit a problem during init.
954 */
955void usb_free_device(struct udevice *controller);
c7e3b2b5 956
23faf2bc 957int usb_new_device(struct usb_device *dev);
79b58887 958
5853e133 959int usb_alloc_device(struct usb_device *dev);
23faf2bc 960
9ca1b4ba 961/**
3e59f590 962 * usb_update_hub_device() - Update HCD's internal representation of hub
9ca1b4ba
BM
963 *
964 * After a hub descriptor is fetched, notify HCD so that its internal
965 * representation of this hub can be updated.
966 *
967 * @dev: Hub device
968 * @return 0 if OK, -ve on error
969 */
970int usb_update_hub_device(struct usb_device *dev);
971
3e59f590
BM
972/**
973 * usb_get_max_xfer_size() - Get HCD's maximum transfer bytes
974 *
975 * The HCD may have limitation on the maximum bytes to be transferred
976 * in a USB transfer. USB class driver needs to be aware of this.
977 *
978 * @dev: USB device
979 * @size: maximum transfer bytes
980 * @return 0 if OK, -ve on error
981 */
982int usb_get_max_xfer_size(struct usb_device *dev, size_t *size);
983
019808f9
SG
984/**
985 * usb_emul_setup_device() - Set up a new USB device emulation
986 *
987 * This is normally called when a new emulation device is bound. It tells
988 * the USB emulation uclass about the features of the emulator.
989 *
990 * @dev: Emulation device
019808f9
SG
991 * @strings: List of USB string descriptors, terminated by a NULL
992 * entry
993 * @desc_list: List of points or USB descriptors, terminated by NULL.
994 * The first entry must be struct usb_device_descriptor,
995 * and others follow on after that.
9ca1b4ba 996 * @return 0 if OK, -ENOSYS if not implemented, other -ve on error
019808f9 997 */
98b639fc
BM
998int usb_emul_setup_device(struct udevice *dev, struct usb_string *strings,
999 void **desc_list);
019808f9
SG
1000
1001/**
1002 * usb_emul_control() - Send a control packet to an emulator
1003 *
1004 * @emul: Emulator device
1005 * @udev: USB device (which the emulator is causing to appear)
1006 * See struct dm_usb_ops for details on other parameters
1007 * @return 0 if OK, -ve on error
1008 */
1009int usb_emul_control(struct udevice *emul, struct usb_device *udev,
1010 unsigned long pipe, void *buffer, int length,
1011 struct devrequest *setup);
1012
1013/**
1014 * usb_emul_bulk() - Send a bulk packet to an emulator
1015 *
1016 * @emul: Emulator device
1017 * @udev: USB device (which the emulator is causing to appear)
1018 * See struct dm_usb_ops for details on other parameters
1019 * @return 0 if OK, -ve on error
1020 */
1021int usb_emul_bulk(struct udevice *emul, struct usb_device *udev,
1022 unsigned long pipe, void *buffer, int length);
1023
b70a3fea
SG
1024/**
1025 * usb_emul_int() - Send an interrupt packet to an emulator
1026 *
1027 * @emul: Emulator device
1028 * @udev: USB device (which the emulator is causing to appear)
1029 * See struct dm_usb_ops for details on other parameters
1030 * @return 0 if OK, -ve on error
1031 */
1032int usb_emul_int(struct udevice *emul, struct usb_device *udev,
1033 unsigned long pipe, void *buffer, int length, int interval);
1034
019808f9
SG
1035/**
1036 * usb_emul_find() - Find an emulator for a particular device
1037 *
84aa8536 1038 * Check @pipe and @port1 to find a device number on bus @bus and return it.
019808f9
SG
1039 *
1040 * @bus: USB bus (controller)
1041 * @pipe: Describes pipe being used, and includes the device number
84aa8536 1042 * @port1: Describes port number on the parent hub
019808f9
SG
1043 * @emulp: Returns pointer to emulator, or NULL if not found
1044 * @return 0 if found, -ve on error
1045 */
84aa8536
BM
1046int usb_emul_find(struct udevice *bus, ulong pipe, int port1,
1047 struct udevice **emulp);
019808f9 1048
af9c7c11
SG
1049/**
1050 * usb_emul_find_for_dev() - Find an emulator for a particular device
1051 *
af9c7c11
SG
1052 * @dev: USB device to check
1053 * @emulp: Returns pointer to emulator, or NULL if not found
1054 * @return 0 if found, -ve on error
1055 */
1056int usb_emul_find_for_dev(struct udevice *dev, struct udevice **emulp);
1057
848436a4
BM
1058/**
1059 * usb_emul_find_descriptor() - Find a USB descriptor of a particular device
1060 *
1061 * @ptr: a pointer to a list of USB descriptor pointers
1062 * @type: type of USB descriptor to find
1063 * @index: if @type is USB_DT_CONFIG, this is the configuration value
1064 * @return a pointer to the USB descriptor found, NULL if not found
1065 */
1066struct usb_generic_descriptor **usb_emul_find_descriptor(
1067 struct usb_generic_descriptor **ptr, int type, int index);
1068
45bfa47e
SG
1069/**
1070 * usb_show_tree() - show the USB device tree
1071 *
1072 * This shows a list of active USB devices along with basic information about
1073 * each.
1074 */
1075void usb_show_tree(void);
1076
012771d8 1077#endif /*_USB_H_ */