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