wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1 | /* |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 2 | * |
| 3 | * Most of this source has been derived from the Linux USB |
Wolfgang Denk | 460c322 | 2005-08-04 01:14:12 +0200 | [diff] [blame] | 4 | * project: |
| 5 | * (C) Copyright Linus Torvalds 1999 |
| 6 | * (C) Copyright Johannes Erdfelt 1999-2001 |
| 7 | * (C) Copyright Andreas Gal 1999 |
| 8 | * (C) Copyright Gregory P. Smith 1999 |
| 9 | * (C) Copyright Deti Fliegl 1999 (new USB architecture) |
| 10 | * (C) Copyright Randy Dunlap 2000 |
| 11 | * (C) Copyright David Brownell 2000 (kernel hotplug, usb_device_id) |
| 12 | * (C) Copyright Yggdrasil Computing, Inc. 2000 |
| 13 | * (usb_device_id matching changes by Adam J. Richter) |
| 14 | * |
| 15 | * Adapted for U-Boot: |
| 16 | * (C) Copyright 2001 Denis Peter, MPL AG Switzerland |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 17 | * |
| 18 | * See file CREDITS for list of people who contributed to this |
| 19 | * project. |
| 20 | * |
| 21 | * This program is free software; you can redistribute it and/or |
| 22 | * modify it under the terms of the GNU General Public License as |
| 23 | * published by the Free Software Foundation; either version 2 of |
| 24 | * the License, or (at your option) any later version. |
| 25 | * |
| 26 | * This program is distributed in the hope that it will be useful, |
| 27 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 28 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 29 | * GNU General Public License for more details. |
| 30 | * |
| 31 | * You should have received a copy of the GNU General Public License |
| 32 | * along with this program; if not, write to the Free Software |
| 33 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, |
| 34 | * MA 02111-1307 USA |
| 35 | * |
| 36 | */ |
| 37 | |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 38 | /* |
| 39 | * How it works: |
| 40 | * |
| 41 | * Since this is a bootloader, the devices will not be automatic |
| 42 | * (re)configured on hotplug, but after a restart of the USB the |
| 43 | * device should work. |
| 44 | * |
| 45 | * For each transfer (except "Interrupt") we wait for completion. |
| 46 | */ |
| 47 | #include <common.h> |
| 48 | #include <command.h> |
| 49 | #include <asm/processor.h> |
Wolfgang Denk | 9c998aa | 2005-07-21 11:57:57 +0200 | [diff] [blame] | 50 | #include <linux/ctype.h> |
Christian Eggers | c918261 | 2008-05-21 22:12:00 +0200 | [diff] [blame] | 51 | #include <asm/byteorder.h> |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 52 | |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 53 | #include <usb.h> |
| 54 | #ifdef CONFIG_4xx |
Stefan Roese | 3048bcb | 2007-10-03 15:01:02 +0200 | [diff] [blame] | 55 | #include <asm/4xx_pci.h> |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 56 | #endif |
| 57 | |
Wolfgang Denk | 095b8a3 | 2005-08-02 17:06:17 +0200 | [diff] [blame] | 58 | #undef USB_DEBUG |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 59 | |
| 60 | #ifdef USB_DEBUG |
Michael Trimarchi | de39f8c | 2008-11-26 17:41:34 +0100 | [diff] [blame] | 61 | #define USB_PRINTF(fmt, args...) printf(fmt , ##args) |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 62 | #else |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 63 | #define USB_PRINTF(fmt, args...) |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 64 | #endif |
| 65 | |
wdenk | cd0a9de | 2004-02-23 20:48:38 +0000 | [diff] [blame] | 66 | #define USB_BUFSIZ 512 |
| 67 | |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 68 | static struct usb_device usb_dev[USB_MAX_DEVICE]; |
| 69 | static int dev_index; |
| 70 | static int running; |
| 71 | static int asynch_allowed; |
| 72 | static struct devrequest setup_packet; |
| 73 | |
Bartlomiej Sieka | e51aae3 | 2006-08-03 23:20:13 +0200 | [diff] [blame] | 74 | char usb_started; /* flag for the started/stopped USB status */ |
| 75 | |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 76 | /********************************************************************** |
| 77 | * some forward declerations... |
| 78 | */ |
| 79 | void usb_scan_devices(void); |
| 80 | |
| 81 | int usb_hub_probe(struct usb_device *dev, int ifnum); |
| 82 | void usb_hub_reset(void); |
Remy Bohmer | c9e8436 | 2008-09-16 14:55:44 +0200 | [diff] [blame] | 83 | static int hub_port_reset(struct usb_device *dev, int port, |
| 84 | unsigned short *portstat); |
Wolfgang Denk | 9c998aa | 2005-07-21 11:57:57 +0200 | [diff] [blame] | 85 | |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 86 | /*********************************************************************** |
| 87 | * wait_ms |
| 88 | */ |
| 89 | |
Michael Trimarchi | de39f8c | 2008-11-26 17:41:34 +0100 | [diff] [blame] | 90 | inline void wait_ms(unsigned long ms) |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 91 | { |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 92 | while (ms-- > 0) |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 93 | udelay(1000); |
| 94 | } |
Michael Trimarchi | de39f8c | 2008-11-26 17:41:34 +0100 | [diff] [blame] | 95 | |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 96 | /*************************************************************************** |
| 97 | * Init USB Device |
| 98 | */ |
| 99 | |
| 100 | int usb_init(void) |
| 101 | { |
| 102 | int result; |
| 103 | |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 104 | running = 0; |
| 105 | dev_index = 0; |
| 106 | asynch_allowed = 1; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 107 | usb_hub_reset(); |
| 108 | /* init low_level USB */ |
| 109 | printf("USB: "); |
| 110 | result = usb_lowlevel_init(); |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 111 | /* if lowlevel init is OK, scan the bus for devices |
| 112 | * i.e. search HUBs and configure them */ |
| 113 | if (result == 0) { |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 114 | printf("scanning bus for devices... "); |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 115 | running = 1; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 116 | usb_scan_devices(); |
Bartlomiej Sieka | e51aae3 | 2006-08-03 23:20:13 +0200 | [diff] [blame] | 117 | usb_started = 1; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 118 | return 0; |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 119 | } else { |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 120 | printf("Error, couldn't init Lowlevel part\n"); |
Bartlomiej Sieka | e51aae3 | 2006-08-03 23:20:13 +0200 | [diff] [blame] | 121 | usb_started = 0; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 122 | return -1; |
| 123 | } |
| 124 | } |
| 125 | |
| 126 | /****************************************************************************** |
| 127 | * Stop USB this stops the LowLevel Part and deregisters USB devices. |
| 128 | */ |
| 129 | int usb_stop(void) |
| 130 | { |
Remy Bohmer | eba1f2f | 2008-08-20 11:22:02 +0200 | [diff] [blame] | 131 | int res = 0; |
| 132 | |
| 133 | if (usb_started) { |
| 134 | asynch_allowed = 1; |
| 135 | usb_started = 0; |
| 136 | usb_hub_reset(); |
| 137 | res = usb_lowlevel_stop(); |
| 138 | } |
| 139 | return res; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 140 | } |
| 141 | |
| 142 | /* |
| 143 | * disables the asynch behaviour of the control message. This is used for data |
| 144 | * transfers that uses the exclusiv access to the control and bulk messages. |
| 145 | */ |
| 146 | void usb_disable_asynch(int disable) |
| 147 | { |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 148 | asynch_allowed = !disable; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 149 | } |
| 150 | |
| 151 | |
| 152 | /*------------------------------------------------------------------- |
| 153 | * Message wrappers. |
| 154 | * |
| 155 | */ |
| 156 | |
| 157 | /* |
| 158 | * submits an Interrupt Message |
| 159 | */ |
| 160 | int usb_submit_int_msg(struct usb_device *dev, unsigned long pipe, |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 161 | void *buffer, int transfer_len, int interval) |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 162 | { |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 163 | return submit_int_msg(dev, pipe, buffer, transfer_len, interval); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 164 | } |
| 165 | |
| 166 | /* |
| 167 | * submits a control message and waits for comletion (at least timeout * 1ms) |
| 168 | * If timeout is 0, we don't wait for completion (used as example to set and |
| 169 | * clear keyboards LEDs). For data transfers, (storage transfers) we don't |
| 170 | * allow control messages with 0 timeout, by previousely resetting the flag |
| 171 | * asynch_allowed (usb_disable_asynch(1)). |
| 172 | * returns the transfered length if OK or -1 if error. The transfered length |
| 173 | * and the current status are stored in the dev->act_len and dev->status. |
| 174 | */ |
| 175 | int usb_control_msg(struct usb_device *dev, unsigned int pipe, |
| 176 | unsigned char request, unsigned char requesttype, |
| 177 | unsigned short value, unsigned short index, |
| 178 | void *data, unsigned short size, int timeout) |
| 179 | { |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 180 | if ((timeout == 0) && (!asynch_allowed)) { |
| 181 | /* request for a asynch control pipe is not allowed */ |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 182 | return -1; |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 183 | } |
Wolfgang Denk | 9c998aa | 2005-07-21 11:57:57 +0200 | [diff] [blame] | 184 | |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 185 | /* set setup command */ |
| 186 | setup_packet.requesttype = requesttype; |
| 187 | setup_packet.request = request; |
Christian Eggers | c918261 | 2008-05-21 22:12:00 +0200 | [diff] [blame] | 188 | setup_packet.value = cpu_to_le16(value); |
| 189 | setup_packet.index = cpu_to_le16(index); |
| 190 | setup_packet.length = cpu_to_le16(size); |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 191 | USB_PRINTF("usb_control_msg: request: 0x%X, requesttype: 0x%X, " \ |
| 192 | "value 0x%X index 0x%X length 0x%X\n", |
| 193 | request, requesttype, value, index, size); |
| 194 | dev->status = USB_ST_NOT_PROC; /*not yet processed */ |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 195 | |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 196 | submit_control_msg(dev, pipe, data, size, &setup_packet); |
| 197 | if (timeout == 0) |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 198 | return (int)size; |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 199 | |
Remy Bohmer | 4886720 | 2008-10-10 10:23:21 +0200 | [diff] [blame] | 200 | if (dev->status != 0) { |
| 201 | /* |
| 202 | * Let's wait a while for the timeout to elapse. |
| 203 | * It has no real use, but it keeps the interface happy. |
| 204 | */ |
| 205 | wait_ms(timeout); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 206 | return -1; |
Remy Bohmer | 4886720 | 2008-10-10 10:23:21 +0200 | [diff] [blame] | 207 | } |
| 208 | |
| 209 | return dev->act_len; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 210 | } |
| 211 | |
| 212 | /*------------------------------------------------------------------- |
| 213 | * submits bulk message, and waits for completion. returns 0 if Ok or |
| 214 | * -1 if Error. |
| 215 | * synchronous behavior |
| 216 | */ |
| 217 | int usb_bulk_msg(struct usb_device *dev, unsigned int pipe, |
| 218 | void *data, int len, int *actual_length, int timeout) |
| 219 | { |
| 220 | if (len < 0) |
| 221 | return -1; |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 222 | dev->status = USB_ST_NOT_PROC; /*not yet processed */ |
| 223 | submit_bulk_msg(dev, pipe, data, len); |
| 224 | while (timeout--) { |
| 225 | if (!((volatile unsigned long)dev->status & USB_ST_NOT_PROC)) |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 226 | break; |
| 227 | wait_ms(1); |
| 228 | } |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 229 | *actual_length = dev->act_len; |
| 230 | if (dev->status == 0) |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 231 | return 0; |
| 232 | else |
| 233 | return -1; |
| 234 | } |
| 235 | |
| 236 | |
| 237 | /*------------------------------------------------------------------- |
| 238 | * Max Packet stuff |
| 239 | */ |
| 240 | |
| 241 | /* |
| 242 | * returns the max packet size, depending on the pipe direction and |
| 243 | * the configurations values |
| 244 | */ |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 245 | int usb_maxpacket(struct usb_device *dev, unsigned long pipe) |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 246 | { |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 247 | /* direction is out -> use emaxpacket out */ |
| 248 | if ((pipe & USB_DIR_IN) == 0) |
Michael Trimarchi | de39f8c | 2008-11-26 17:41:34 +0100 | [diff] [blame] | 249 | return dev->epmaxpacketout[((pipe>>15) & 0xf)]; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 250 | else |
Michael Trimarchi | de39f8c | 2008-11-26 17:41:34 +0100 | [diff] [blame] | 251 | return dev->epmaxpacketin[((pipe>>15) & 0xf)]; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 252 | } |
| 253 | |
Remy Bohmer | be19d32 | 2008-09-16 14:55:42 +0200 | [diff] [blame] | 254 | /* The routine usb_set_maxpacket_ep() is extracted from the loop of routine |
| 255 | * usb_set_maxpacket(), because the optimizer of GCC 4.x chokes on this routine |
| 256 | * when it is inlined in 1 single routine. What happens is that the register r3 |
| 257 | * is used as loop-count 'i', but gets overwritten later on. |
| 258 | * This is clearly a compiler bug, but it is easier to workaround it here than |
| 259 | * to update the compiler (Occurs with at least several GCC 4.{1,2},x |
| 260 | * CodeSourcery compilers like e.g. 2007q3, 2008q1, 2008q3 lite editions on ARM) |
| 261 | */ |
| 262 | static void __attribute__((noinline)) |
| 263 | usb_set_maxpacket_ep(struct usb_device *dev, struct usb_endpoint_descriptor *ep) |
| 264 | { |
| 265 | int b; |
| 266 | |
| 267 | b = ep->bEndpointAddress & USB_ENDPOINT_NUMBER_MASK; |
| 268 | |
| 269 | if ((ep->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) == |
| 270 | USB_ENDPOINT_XFER_CONTROL) { |
| 271 | /* Control => bidirectional */ |
| 272 | dev->epmaxpacketout[b] = ep->wMaxPacketSize; |
Michael Trimarchi | de39f8c | 2008-11-26 17:41:34 +0100 | [diff] [blame] | 273 | dev->epmaxpacketin[b] = ep->wMaxPacketSize; |
Remy Bohmer | be19d32 | 2008-09-16 14:55:42 +0200 | [diff] [blame] | 274 | USB_PRINTF("##Control EP epmaxpacketout/in[%d] = %d\n", |
| 275 | b, dev->epmaxpacketin[b]); |
| 276 | } else { |
| 277 | if ((ep->bEndpointAddress & 0x80) == 0) { |
| 278 | /* OUT Endpoint */ |
| 279 | if (ep->wMaxPacketSize > dev->epmaxpacketout[b]) { |
| 280 | dev->epmaxpacketout[b] = ep->wMaxPacketSize; |
| 281 | USB_PRINTF("##EP epmaxpacketout[%d] = %d\n", |
| 282 | b, dev->epmaxpacketout[b]); |
| 283 | } |
| 284 | } else { |
| 285 | /* IN Endpoint */ |
| 286 | if (ep->wMaxPacketSize > dev->epmaxpacketin[b]) { |
| 287 | dev->epmaxpacketin[b] = ep->wMaxPacketSize; |
| 288 | USB_PRINTF("##EP epmaxpacketin[%d] = %d\n", |
| 289 | b, dev->epmaxpacketin[b]); |
| 290 | } |
| 291 | } /* if out */ |
| 292 | } /* if control */ |
| 293 | } |
| 294 | |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 295 | /* |
| 296 | * set the max packed value of all endpoints in the given configuration |
| 297 | */ |
| 298 | int usb_set_maxpacket(struct usb_device *dev) |
| 299 | { |
Remy Bohmer | be19d32 | 2008-09-16 14:55:42 +0200 | [diff] [blame] | 300 | int i, ii; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 301 | |
Tom Rix | 8f8bd56 | 2009-10-31 12:37:38 -0500 | [diff] [blame] | 302 | for (i = 0; i < dev->config.desc.bNumInterfaces; i++) |
| 303 | for (ii = 0; ii < dev->config.if_desc[i].desc.bNumEndpoints; ii++) |
Remy Bohmer | be19d32 | 2008-09-16 14:55:42 +0200 | [diff] [blame] | 304 | usb_set_maxpacket_ep(dev, |
| 305 | &dev->config.if_desc[i].ep_desc[ii]); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 306 | |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 307 | return 0; |
| 308 | } |
| 309 | |
| 310 | /******************************************************************************* |
| 311 | * Parse the config, located in buffer, and fills the dev->config structure. |
| 312 | * Note that all little/big endian swapping are done automatically. |
| 313 | */ |
| 314 | int usb_parse_config(struct usb_device *dev, unsigned char *buffer, int cfgno) |
| 315 | { |
| 316 | struct usb_descriptor_header *head; |
Bartlomiej Sieka | 7455af4 | 2006-08-02 00:54:18 +0200 | [diff] [blame] | 317 | int index, ifno, epno, curr_if_num; |
| 318 | int i; |
| 319 | unsigned char *ch; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 320 | |
Bartlomiej Sieka | 7455af4 | 2006-08-02 00:54:18 +0200 | [diff] [blame] | 321 | ifno = -1; |
| 322 | epno = -1; |
| 323 | curr_if_num = -1; |
| 324 | |
| 325 | dev->configno = cfgno; |
| 326 | head = (struct usb_descriptor_header *) &buffer[0]; |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 327 | if (head->bDescriptorType != USB_DT_CONFIG) { |
| 328 | printf(" ERROR: NOT USB_CONFIG_DESC %x\n", |
| 329 | head->bDescriptorType); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 330 | return -1; |
| 331 | } |
Bartlomiej Sieka | 7455af4 | 2006-08-02 00:54:18 +0200 | [diff] [blame] | 332 | memcpy(&dev->config, buffer, buffer[0]); |
Tom Rix | 8f8bd56 | 2009-10-31 12:37:38 -0500 | [diff] [blame] | 333 | le16_to_cpus(&(dev->config.desc.wTotalLength)); |
Bartlomiej Sieka | 7455af4 | 2006-08-02 00:54:18 +0200 | [diff] [blame] | 334 | dev->config.no_of_if = 0; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 335 | |
Tom Rix | 8f8bd56 | 2009-10-31 12:37:38 -0500 | [diff] [blame] | 336 | index = dev->config.desc.bLength; |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 337 | /* Ok the first entry must be a configuration entry, |
| 338 | * now process the others */ |
Bartlomiej Sieka | 7455af4 | 2006-08-02 00:54:18 +0200 | [diff] [blame] | 339 | head = (struct usb_descriptor_header *) &buffer[index]; |
Tom Rix | 8f8bd56 | 2009-10-31 12:37:38 -0500 | [diff] [blame] | 340 | while (index + 1 < dev->config.desc.wTotalLength) { |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 341 | switch (head->bDescriptorType) { |
| 342 | case USB_DT_INTERFACE: |
| 343 | if (((struct usb_interface_descriptor *) \ |
| 344 | &buffer[index])->bInterfaceNumber != curr_if_num) { |
| 345 | /* this is a new interface, copy new desc */ |
| 346 | ifno = dev->config.no_of_if; |
| 347 | dev->config.no_of_if++; |
| 348 | memcpy(&dev->config.if_desc[ifno], |
Bartlomiej Sieka | 7455af4 | 2006-08-02 00:54:18 +0200 | [diff] [blame] | 349 | &buffer[index], buffer[index]); |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 350 | dev->config.if_desc[ifno].no_of_ep = 0; |
| 351 | dev->config.if_desc[ifno].num_altsetting = 1; |
| 352 | curr_if_num = |
Tom Rix | 8f8bd56 | 2009-10-31 12:37:38 -0500 | [diff] [blame] | 353 | dev->config.if_desc[ifno].desc.bInterfaceNumber; |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 354 | } else { |
| 355 | /* found alternate setting for the interface */ |
| 356 | dev->config.if_desc[ifno].num_altsetting++; |
| 357 | } |
| 358 | break; |
| 359 | case USB_DT_ENDPOINT: |
| 360 | epno = dev->config.if_desc[ifno].no_of_ep; |
| 361 | /* found an endpoint */ |
| 362 | dev->config.if_desc[ifno].no_of_ep++; |
| 363 | memcpy(&dev->config.if_desc[ifno].ep_desc[epno], |
| 364 | &buffer[index], buffer[index]); |
| 365 | le16_to_cpus(&(dev->config.if_desc[ifno].ep_desc[epno].\ |
| 366 | wMaxPacketSize)); |
| 367 | USB_PRINTF("if %d, ep %d\n", ifno, epno); |
| 368 | break; |
| 369 | default: |
| 370 | if (head->bLength == 0) |
| 371 | return 1; |
| 372 | |
| 373 | USB_PRINTF("unknown Description Type : %x\n", |
| 374 | head->bDescriptorType); |
| 375 | |
| 376 | { |
| 377 | ch = (unsigned char *)head; |
| 378 | for (i = 0; i < head->bLength; i++) |
| 379 | USB_PRINTF("%02X ", *ch++); |
| 380 | USB_PRINTF("\n\n\n"); |
| 381 | } |
| 382 | break; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 383 | } |
Bartlomiej Sieka | 7455af4 | 2006-08-02 00:54:18 +0200 | [diff] [blame] | 384 | index += head->bLength; |
| 385 | head = (struct usb_descriptor_header *)&buffer[index]; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 386 | } |
| 387 | return 1; |
| 388 | } |
| 389 | |
| 390 | /*********************************************************************** |
| 391 | * Clears an endpoint |
| 392 | * endp: endpoint number in bits 0-3; |
| 393 | * direction flag in bit 7 (1 = IN, 0 = OUT) |
| 394 | */ |
| 395 | int usb_clear_halt(struct usb_device *dev, int pipe) |
| 396 | { |
| 397 | int result; |
Wolfgang Denk | 9c998aa | 2005-07-21 11:57:57 +0200 | [diff] [blame] | 398 | int endp = usb_pipeendpoint(pipe)|(usb_pipein(pipe)<<7); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 399 | |
| 400 | result = usb_control_msg(dev, usb_sndctrlpipe(dev, 0), |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 401 | USB_REQ_CLEAR_FEATURE, USB_RECIP_ENDPOINT, 0, |
| 402 | endp, NULL, 0, USB_CNTL_TIMEOUT * 3); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 403 | |
| 404 | /* don't clear if failed */ |
| 405 | if (result < 0) |
| 406 | return result; |
Wolfgang Denk | 9c998aa | 2005-07-21 11:57:57 +0200 | [diff] [blame] | 407 | |
Wolfgang Denk | 095b8a3 | 2005-08-02 17:06:17 +0200 | [diff] [blame] | 408 | /* |
Wolfgang Denk | 9c998aa | 2005-07-21 11:57:57 +0200 | [diff] [blame] | 409 | * NOTE: we do not get status and verify reset was successful |
| 410 | * as some devices are reported to lock up upon this check.. |
| 411 | */ |
| 412 | |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 413 | usb_endpoint_running(dev, usb_pipeendpoint(pipe), usb_pipeout(pipe)); |
Wolfgang Denk | 9c998aa | 2005-07-21 11:57:57 +0200 | [diff] [blame] | 414 | |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 415 | /* toggle is reset on clear */ |
| 416 | usb_settoggle(dev, usb_pipeendpoint(pipe), usb_pipeout(pipe), 0); |
| 417 | return 0; |
| 418 | } |
| 419 | |
| 420 | |
| 421 | /********************************************************************** |
| 422 | * get_descriptor type |
| 423 | */ |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 424 | int usb_get_descriptor(struct usb_device *dev, unsigned char type, |
| 425 | unsigned char index, void *buf, int size) |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 426 | { |
| 427 | int res; |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 428 | res = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0), |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 429 | USB_REQ_GET_DESCRIPTOR, USB_DIR_IN, |
| 430 | (type << 8) + index, 0, |
| 431 | buf, size, USB_CNTL_TIMEOUT); |
| 432 | return res; |
| 433 | } |
| 434 | |
| 435 | /********************************************************************** |
| 436 | * gets configuration cfgno and store it in the buffer |
| 437 | */ |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 438 | int usb_get_configuration_no(struct usb_device *dev, |
| 439 | unsigned char *buffer, int cfgno) |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 440 | { |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 441 | int result; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 442 | unsigned int tmp; |
Tom Rix | 8f8bd56 | 2009-10-31 12:37:38 -0500 | [diff] [blame] | 443 | struct usb_configuration_descriptor *config; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 444 | |
Tom Rix | 8f8bd56 | 2009-10-31 12:37:38 -0500 | [diff] [blame] | 445 | config = (struct usb_configuration_descriptor *)&buffer[0]; |
Remy Bohmer | 4886720 | 2008-10-10 10:23:21 +0200 | [diff] [blame] | 446 | result = usb_get_descriptor(dev, USB_DT_CONFIG, cfgno, buffer, 9); |
| 447 | if (result < 9) { |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 448 | if (result < 0) |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 449 | printf("unable to get descriptor, error %lX\n", |
| 450 | dev->status); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 451 | else |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 452 | printf("config descriptor too short " \ |
Remy Bohmer | 4886720 | 2008-10-10 10:23:21 +0200 | [diff] [blame] | 453 | "(expected %i, got %i)\n", 9, result); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 454 | return -1; |
| 455 | } |
Christian Eggers | c918261 | 2008-05-21 22:12:00 +0200 | [diff] [blame] | 456 | tmp = le16_to_cpu(config->wTotalLength); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 457 | |
wdenk | cd0a9de | 2004-02-23 20:48:38 +0000 | [diff] [blame] | 458 | if (tmp > USB_BUFSIZ) { |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 459 | USB_PRINTF("usb_get_configuration_no: failed to get " \ |
| 460 | "descriptor - too long: %d\n", tmp); |
wdenk | cd0a9de | 2004-02-23 20:48:38 +0000 | [diff] [blame] | 461 | return -1; |
| 462 | } |
| 463 | |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 464 | result = usb_get_descriptor(dev, USB_DT_CONFIG, cfgno, buffer, tmp); |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 465 | USB_PRINTF("get_conf_no %d Result %d, wLength %d\n", |
| 466 | cfgno, result, tmp); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 467 | return result; |
| 468 | } |
| 469 | |
| 470 | /******************************************************************** |
| 471 | * set address of a device to the value in dev->devnum. |
| 472 | * This can only be done by addressing the device via the default address (0) |
| 473 | */ |
| 474 | int usb_set_address(struct usb_device *dev) |
| 475 | { |
| 476 | int res; |
| 477 | |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 478 | USB_PRINTF("set address %d\n", dev->devnum); |
| 479 | res = usb_control_msg(dev, usb_snddefctrl(dev), |
| 480 | USB_REQ_SET_ADDRESS, 0, |
| 481 | (dev->devnum), 0, |
| 482 | NULL, 0, USB_CNTL_TIMEOUT); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 483 | return res; |
| 484 | } |
| 485 | |
| 486 | /******************************************************************** |
| 487 | * set interface number to interface |
| 488 | */ |
| 489 | int usb_set_interface(struct usb_device *dev, int interface, int alternate) |
| 490 | { |
Tom Rix | 8f8bd56 | 2009-10-31 12:37:38 -0500 | [diff] [blame] | 491 | struct usb_interface *if_face = NULL; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 492 | int ret, i; |
| 493 | |
Tom Rix | 8f8bd56 | 2009-10-31 12:37:38 -0500 | [diff] [blame] | 494 | for (i = 0; i < dev->config.desc.bNumInterfaces; i++) { |
| 495 | if (dev->config.if_desc[i].desc.bInterfaceNumber == interface) { |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 496 | if_face = &dev->config.if_desc[i]; |
| 497 | break; |
| 498 | } |
| 499 | } |
| 500 | if (!if_face) { |
| 501 | printf("selecting invalid interface %d", interface); |
| 502 | return -1; |
| 503 | } |
Bartlomiej Sieka | 7455af4 | 2006-08-02 00:54:18 +0200 | [diff] [blame] | 504 | /* |
| 505 | * We should return now for devices with only one alternate setting. |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 506 | * According to 9.4.10 of the Universal Serial Bus Specification |
| 507 | * Revision 2.0 such devices can return with a STALL. This results in |
| 508 | * some USB sticks timeouting during initialization and then being |
| 509 | * unusable in U-Boot. |
Bartlomiej Sieka | 7455af4 | 2006-08-02 00:54:18 +0200 | [diff] [blame] | 510 | */ |
| 511 | if (if_face->num_altsetting == 1) |
| 512 | return 0; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 513 | |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 514 | ret = usb_control_msg(dev, usb_sndctrlpipe(dev, 0), |
| 515 | USB_REQ_SET_INTERFACE, USB_RECIP_INTERFACE, |
| 516 | alternate, interface, NULL, 0, |
| 517 | USB_CNTL_TIMEOUT * 5); |
| 518 | if (ret < 0) |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 519 | return ret; |
| 520 | |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 521 | return 0; |
| 522 | } |
| 523 | |
| 524 | /******************************************************************** |
| 525 | * set configuration number to configuration |
| 526 | */ |
| 527 | int usb_set_configuration(struct usb_device *dev, int configuration) |
| 528 | { |
| 529 | int res; |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 530 | USB_PRINTF("set configuration %d\n", configuration); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 531 | /* set setup command */ |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 532 | res = usb_control_msg(dev, usb_sndctrlpipe(dev, 0), |
| 533 | USB_REQ_SET_CONFIGURATION, 0, |
| 534 | configuration, 0, |
| 535 | NULL, 0, USB_CNTL_TIMEOUT); |
| 536 | if (res == 0) { |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 537 | dev->toggle[0] = 0; |
| 538 | dev->toggle[1] = 0; |
| 539 | return 0; |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 540 | } else |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 541 | return -1; |
| 542 | } |
| 543 | |
| 544 | /******************************************************************** |
| 545 | * set protocol to protocol |
| 546 | */ |
| 547 | int usb_set_protocol(struct usb_device *dev, int ifnum, int protocol) |
| 548 | { |
| 549 | return usb_control_msg(dev, usb_sndctrlpipe(dev, 0), |
| 550 | USB_REQ_SET_PROTOCOL, USB_TYPE_CLASS | USB_RECIP_INTERFACE, |
| 551 | protocol, ifnum, NULL, 0, USB_CNTL_TIMEOUT); |
| 552 | } |
| 553 | |
| 554 | /******************************************************************** |
| 555 | * set idle |
| 556 | */ |
| 557 | int usb_set_idle(struct usb_device *dev, int ifnum, int duration, int report_id) |
| 558 | { |
| 559 | return usb_control_msg(dev, usb_sndctrlpipe(dev, 0), |
| 560 | USB_REQ_SET_IDLE, USB_TYPE_CLASS | USB_RECIP_INTERFACE, |
| 561 | (duration << 8) | report_id, ifnum, NULL, 0, USB_CNTL_TIMEOUT); |
| 562 | } |
| 563 | |
| 564 | /******************************************************************** |
| 565 | * get report |
| 566 | */ |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 567 | int usb_get_report(struct usb_device *dev, int ifnum, unsigned char type, |
| 568 | unsigned char id, void *buf, int size) |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 569 | { |
| 570 | return usb_control_msg(dev, usb_rcvctrlpipe(dev, 0), |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 571 | USB_REQ_GET_REPORT, |
| 572 | USB_DIR_IN | USB_TYPE_CLASS | USB_RECIP_INTERFACE, |
| 573 | (type << 8) + id, ifnum, buf, size, USB_CNTL_TIMEOUT); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 574 | } |
| 575 | |
| 576 | /******************************************************************** |
| 577 | * get class descriptor |
| 578 | */ |
| 579 | int usb_get_class_descriptor(struct usb_device *dev, int ifnum, |
| 580 | unsigned char type, unsigned char id, void *buf, int size) |
| 581 | { |
| 582 | return usb_control_msg(dev, usb_rcvctrlpipe(dev, 0), |
| 583 | USB_REQ_GET_DESCRIPTOR, USB_RECIP_INTERFACE | USB_DIR_IN, |
| 584 | (type << 8) + id, ifnum, buf, size, USB_CNTL_TIMEOUT); |
| 585 | } |
| 586 | |
| 587 | /******************************************************************** |
| 588 | * get string index in buffer |
| 589 | */ |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 590 | int usb_get_string(struct usb_device *dev, unsigned short langid, |
| 591 | unsigned char index, void *buf, int size) |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 592 | { |
Wolfgang Denk | 9c998aa | 2005-07-21 11:57:57 +0200 | [diff] [blame] | 593 | int i; |
| 594 | int result; |
| 595 | |
| 596 | for (i = 0; i < 3; ++i) { |
| 597 | /* some devices are flaky */ |
| 598 | result = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0), |
| 599 | USB_REQ_GET_DESCRIPTOR, USB_DIR_IN, |
Wolfgang Denk | 095b8a3 | 2005-08-02 17:06:17 +0200 | [diff] [blame] | 600 | (USB_DT_STRING << 8) + index, langid, buf, size, |
Wolfgang Denk | 9c998aa | 2005-07-21 11:57:57 +0200 | [diff] [blame] | 601 | USB_CNTL_TIMEOUT); |
| 602 | |
| 603 | if (result > 0) |
| 604 | break; |
Wolfgang Denk | 095b8a3 | 2005-08-02 17:06:17 +0200 | [diff] [blame] | 605 | } |
| 606 | |
Wolfgang Denk | 9c998aa | 2005-07-21 11:57:57 +0200 | [diff] [blame] | 607 | return result; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 608 | } |
| 609 | |
Wolfgang Denk | 9c998aa | 2005-07-21 11:57:57 +0200 | [diff] [blame] | 610 | |
| 611 | static void usb_try_string_workarounds(unsigned char *buf, int *length) |
| 612 | { |
| 613 | int newlength, oldlength = *length; |
| 614 | |
| 615 | for (newlength = 2; newlength + 1 < oldlength; newlength += 2) |
| 616 | if (!isprint(buf[newlength]) || buf[newlength + 1]) |
| 617 | break; |
| 618 | |
| 619 | if (newlength > 2) { |
| 620 | buf[0] = newlength; |
| 621 | *length = newlength; |
| 622 | } |
| 623 | } |
| 624 | |
| 625 | |
| 626 | static int usb_string_sub(struct usb_device *dev, unsigned int langid, |
| 627 | unsigned int index, unsigned char *buf) |
| 628 | { |
| 629 | int rc; |
| 630 | |
| 631 | /* Try to read the string descriptor by asking for the maximum |
| 632 | * possible number of bytes */ |
| 633 | rc = usb_get_string(dev, langid, index, buf, 255); |
| 634 | |
| 635 | /* If that failed try to read the descriptor length, then |
| 636 | * ask for just that many bytes */ |
| 637 | if (rc < 2) { |
| 638 | rc = usb_get_string(dev, langid, index, buf, 2); |
| 639 | if (rc == 2) |
| 640 | rc = usb_get_string(dev, langid, index, buf, buf[0]); |
| 641 | } |
| 642 | |
| 643 | if (rc >= 2) { |
| 644 | if (!buf[0] && !buf[1]) |
| 645 | usb_try_string_workarounds(buf, &rc); |
| 646 | |
| 647 | /* There might be extra junk at the end of the descriptor */ |
| 648 | if (buf[0] < rc) |
| 649 | rc = buf[0]; |
| 650 | |
| 651 | rc = rc - (rc & 1); /* force a multiple of two */ |
| 652 | } |
| 653 | |
| 654 | if (rc < 2) |
Wolfgang Denk | 095b8a3 | 2005-08-02 17:06:17 +0200 | [diff] [blame] | 655 | rc = -1; |
Wolfgang Denk | 9c998aa | 2005-07-21 11:57:57 +0200 | [diff] [blame] | 656 | |
| 657 | return rc; |
| 658 | } |
| 659 | |
| 660 | |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 661 | /******************************************************************** |
| 662 | * usb_string: |
| 663 | * Get string index and translate it to ascii. |
| 664 | * returns string length (> 0) or error (< 0) |
| 665 | */ |
| 666 | int usb_string(struct usb_device *dev, int index, char *buf, size_t size) |
| 667 | { |
wdenk | cd0a9de | 2004-02-23 20:48:38 +0000 | [diff] [blame] | 668 | unsigned char mybuf[USB_BUFSIZ]; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 669 | unsigned char *tbuf; |
| 670 | int err; |
| 671 | unsigned int u, idx; |
| 672 | |
| 673 | if (size <= 0 || !buf || !index) |
| 674 | return -1; |
| 675 | buf[0] = 0; |
Wolfgang Denk | d0ff51b | 2008-07-14 15:19:07 +0200 | [diff] [blame] | 676 | tbuf = &mybuf[0]; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 677 | |
| 678 | /* get langid for strings if it's not yet known */ |
| 679 | if (!dev->have_langid) { |
Wolfgang Denk | 9c998aa | 2005-07-21 11:57:57 +0200 | [diff] [blame] | 680 | err = usb_string_sub(dev, 0, 0, tbuf); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 681 | if (err < 0) { |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 682 | USB_PRINTF("error getting string descriptor 0 " \ |
Stefan Roese | f1c1f54 | 2009-01-22 10:11:21 +0100 | [diff] [blame] | 683 | "(error=%lx)\n", dev->status); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 684 | return -1; |
| 685 | } else if (tbuf[0] < 4) { |
| 686 | USB_PRINTF("string descriptor 0 too short\n"); |
| 687 | return -1; |
| 688 | } else { |
| 689 | dev->have_langid = -1; |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 690 | dev->string_langid = tbuf[2] | (tbuf[3] << 8); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 691 | /* always use the first langid listed */ |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 692 | USB_PRINTF("USB device number %d default " \ |
| 693 | "language ID 0x%x\n", |
| 694 | dev->devnum, dev->string_langid); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 695 | } |
| 696 | } |
Wolfgang Denk | 9c998aa | 2005-07-21 11:57:57 +0200 | [diff] [blame] | 697 | |
| 698 | err = usb_string_sub(dev, dev->string_langid, index, tbuf); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 699 | if (err < 0) |
| 700 | return err; |
wdenk | cd0a9de | 2004-02-23 20:48:38 +0000 | [diff] [blame] | 701 | |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 702 | size--; /* leave room for trailing NULL char in output buffer */ |
| 703 | for (idx = 0, u = 2; u < err; u += 2) { |
| 704 | if (idx >= size) |
| 705 | break; |
| 706 | if (tbuf[u+1]) /* high byte */ |
| 707 | buf[idx++] = '?'; /* non-ASCII character */ |
| 708 | else |
| 709 | buf[idx++] = tbuf[u]; |
| 710 | } |
| 711 | buf[idx] = 0; |
| 712 | err = idx; |
| 713 | return err; |
| 714 | } |
| 715 | |
| 716 | |
| 717 | /******************************************************************** |
| 718 | * USB device handling: |
| 719 | * the USB device are static allocated [USB_MAX_DEVICE]. |
| 720 | */ |
| 721 | |
| 722 | |
| 723 | /* returns a pointer to the device with the index [index]. |
| 724 | * if the device is not assigned (dev->devnum==-1) returns NULL |
| 725 | */ |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 726 | struct usb_device *usb_get_dev_index(int index) |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 727 | { |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 728 | if (usb_dev[index].devnum == -1) |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 729 | return NULL; |
| 730 | else |
| 731 | return &usb_dev[index]; |
| 732 | } |
| 733 | |
| 734 | |
| 735 | /* returns a pointer of a new device structure or NULL, if |
| 736 | * no device struct is available |
| 737 | */ |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 738 | struct usb_device *usb_alloc_new_device(void) |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 739 | { |
| 740 | int i; |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 741 | USB_PRINTF("New Device %d\n", dev_index); |
| 742 | if (dev_index == USB_MAX_DEVICE) { |
| 743 | printf("ERROR, too many USB Devices, max=%d\n", USB_MAX_DEVICE); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 744 | return NULL; |
| 745 | } |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 746 | /* default Address is 0, real addresses start with 1 */ |
| 747 | usb_dev[dev_index].devnum = dev_index + 1; |
| 748 | usb_dev[dev_index].maxchild = 0; |
| 749 | for (i = 0; i < USB_MAXCHILDREN; i++) |
| 750 | usb_dev[dev_index].children[i] = NULL; |
| 751 | usb_dev[dev_index].parent = NULL; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 752 | dev_index++; |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 753 | return &usb_dev[dev_index - 1]; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 754 | } |
| 755 | |
| 756 | |
| 757 | /* |
| 758 | * By the time we get here, the device has gotten a new device ID |
| 759 | * and is in the default state. We need to identify the thing and |
| 760 | * get the ball rolling.. |
| 761 | * |
| 762 | * Returns 0 for success, != 0 for error. |
| 763 | */ |
| 764 | int usb_new_device(struct usb_device *dev) |
| 765 | { |
| 766 | int addr, err; |
| 767 | int tmp; |
wdenk | cd0a9de | 2004-02-23 20:48:38 +0000 | [diff] [blame] | 768 | unsigned char tmpbuf[USB_BUFSIZ]; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 769 | |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 770 | /* We still haven't set the Address yet */ |
| 771 | addr = dev->devnum; |
| 772 | dev->devnum = 0; |
Wolfgang Denk | 9c998aa | 2005-07-21 11:57:57 +0200 | [diff] [blame] | 773 | |
Remy Bohmer | c9e8436 | 2008-09-16 14:55:44 +0200 | [diff] [blame] | 774 | #ifdef CONFIG_LEGACY_USB_INIT_SEQ |
| 775 | /* this is the old and known way of initializing devices, it is |
| 776 | * different than what Windows and Linux are doing. Windows and Linux |
| 777 | * both retrieve 64 bytes while reading the device descriptor |
| 778 | * Several USB stick devices report ERR: CTL_TIMEOUT, caused by an |
| 779 | * invalid header while reading 8 bytes as device descriptor. */ |
| 780 | dev->descriptor.bMaxPacketSize0 = 8; /* Start off at 8 bytes */ |
Remy Bohmer | 4886720 | 2008-10-10 10:23:21 +0200 | [diff] [blame] | 781 | dev->maxpacketsize = PACKET_SIZE_8; |
Michael Trimarchi | de39f8c | 2008-11-26 17:41:34 +0100 | [diff] [blame] | 782 | dev->epmaxpacketin[0] = 8; |
Remy Bohmer | c9e8436 | 2008-09-16 14:55:44 +0200 | [diff] [blame] | 783 | dev->epmaxpacketout[0] = 8; |
| 784 | |
| 785 | err = usb_get_descriptor(dev, USB_DT_DEVICE, 0, &dev->descriptor, 8); |
| 786 | if (err < 8) { |
| 787 | printf("\n USB device not responding, " \ |
Michael Trimarchi | de39f8c | 2008-11-26 17:41:34 +0100 | [diff] [blame] | 788 | "giving up (status=%lX)\n", dev->status); |
Remy Bohmer | c9e8436 | 2008-09-16 14:55:44 +0200 | [diff] [blame] | 789 | return 1; |
| 790 | } |
| 791 | #else |
Remy Bohmer | 4886720 | 2008-10-10 10:23:21 +0200 | [diff] [blame] | 792 | /* This is a Windows scheme of initialization sequence, with double |
| 793 | * reset of the device (Linux uses the same sequence) |
Remy Bohmer | c9e8436 | 2008-09-16 14:55:44 +0200 | [diff] [blame] | 794 | * Some equipment is said to work only with such init sequence; this |
| 795 | * patch is based on the work by Alan Stern: |
Michael Trimarchi | de39f8c | 2008-11-26 17:41:34 +0100 | [diff] [blame] | 796 | * http://sourceforge.net/mailarchive/forum.php? |
| 797 | * thread_id=5729457&forum_id=5398 |
Wolfgang Denk | 9c998aa | 2005-07-21 11:57:57 +0200 | [diff] [blame] | 798 | */ |
Wolfgang Denk | 9c998aa | 2005-07-21 11:57:57 +0200 | [diff] [blame] | 799 | struct usb_device_descriptor *desc; |
| 800 | int port = -1; |
| 801 | struct usb_device *parent = dev->parent; |
| 802 | unsigned short portstatus; |
| 803 | |
| 804 | /* send 64-byte GET-DEVICE-DESCRIPTOR request. Since the descriptor is |
| 805 | * only 18 bytes long, this will terminate with a short packet. But if |
| 806 | * the maxpacket size is 8 or 16 the device may be waiting to transmit |
Remy Bohmer | c9e8436 | 2008-09-16 14:55:44 +0200 | [diff] [blame] | 807 | * some more, or keeps on retransmitting the 8 byte header. */ |
Wolfgang Denk | 9c998aa | 2005-07-21 11:57:57 +0200 | [diff] [blame] | 808 | |
| 809 | desc = (struct usb_device_descriptor *)tmpbuf; |
Remy Bohmer | c9e8436 | 2008-09-16 14:55:44 +0200 | [diff] [blame] | 810 | dev->descriptor.bMaxPacketSize0 = 64; /* Start off at 64 bytes */ |
Remy Bohmer | 4886720 | 2008-10-10 10:23:21 +0200 | [diff] [blame] | 811 | /* Default to 64 byte max packet size */ |
| 812 | dev->maxpacketsize = PACKET_SIZE_64; |
Michael Trimarchi | de39f8c | 2008-11-26 17:41:34 +0100 | [diff] [blame] | 813 | dev->epmaxpacketin[0] = 64; |
Remy Bohmer | c9e8436 | 2008-09-16 14:55:44 +0200 | [diff] [blame] | 814 | dev->epmaxpacketout[0] = 64; |
Remy Bohmer | 4886720 | 2008-10-10 10:23:21 +0200 | [diff] [blame] | 815 | |
| 816 | err = usb_get_descriptor(dev, USB_DT_DEVICE, 0, desc, 64); |
| 817 | if (err < 0) { |
| 818 | USB_PRINTF("usb_new_device: usb_get_descriptor() failed\n"); |
| 819 | return 1; |
Wolfgang Denk | 9c998aa | 2005-07-21 11:57:57 +0200 | [diff] [blame] | 820 | } |
Remy Bohmer | 4886720 | 2008-10-10 10:23:21 +0200 | [diff] [blame] | 821 | |
Wolfgang Denk | 9c998aa | 2005-07-21 11:57:57 +0200 | [diff] [blame] | 822 | dev->descriptor.bMaxPacketSize0 = desc->bMaxPacketSize0; |
Wolfgang Denk | 095b8a3 | 2005-08-02 17:06:17 +0200 | [diff] [blame] | 823 | |
Wolfgang Denk | 9c998aa | 2005-07-21 11:57:57 +0200 | [diff] [blame] | 824 | /* find the port number we're at */ |
| 825 | if (parent) { |
Remy Bohmer | 4886720 | 2008-10-10 10:23:21 +0200 | [diff] [blame] | 826 | int j; |
Wolfgang Denk | 095b8a3 | 2005-08-02 17:06:17 +0200 | [diff] [blame] | 827 | |
Wolfgang Denk | 9c998aa | 2005-07-21 11:57:57 +0200 | [diff] [blame] | 828 | for (j = 0; j < parent->maxchild; j++) { |
| 829 | if (parent->children[j] == dev) { |
| 830 | port = j; |
| 831 | break; |
| 832 | } |
| 833 | } |
| 834 | if (port < 0) { |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 835 | printf("usb_new_device:cannot locate device's port.\n"); |
Wolfgang Denk | 9c998aa | 2005-07-21 11:57:57 +0200 | [diff] [blame] | 836 | return 1; |
| 837 | } |
| 838 | |
| 839 | /* reset the port for the second time */ |
| 840 | err = hub_port_reset(dev->parent, port, &portstatus); |
| 841 | if (err < 0) { |
| 842 | printf("\n Couldn't reset port %i\n", port); |
| 843 | return 1; |
| 844 | } |
| 845 | } |
Wolfgang Denk | 9c998aa | 2005-07-21 11:57:57 +0200 | [diff] [blame] | 846 | #endif |
| 847 | |
Michael Trimarchi | de39f8c | 2008-11-26 17:41:34 +0100 | [diff] [blame] | 848 | dev->epmaxpacketin[0] = dev->descriptor.bMaxPacketSize0; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 849 | dev->epmaxpacketout[0] = dev->descriptor.bMaxPacketSize0; |
| 850 | switch (dev->descriptor.bMaxPacketSize0) { |
Michael Trimarchi | de39f8c | 2008-11-26 17:41:34 +0100 | [diff] [blame] | 851 | case 8: |
| 852 | dev->maxpacketsize = PACKET_SIZE_8; |
| 853 | break; |
| 854 | case 16: |
| 855 | dev->maxpacketsize = PACKET_SIZE_16; |
| 856 | break; |
| 857 | case 32: |
| 858 | dev->maxpacketsize = PACKET_SIZE_32; |
| 859 | break; |
| 860 | case 64: |
| 861 | dev->maxpacketsize = PACKET_SIZE_64; |
| 862 | break; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 863 | } |
| 864 | dev->devnum = addr; |
| 865 | |
| 866 | err = usb_set_address(dev); /* set address */ |
| 867 | |
| 868 | if (err < 0) { |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 869 | printf("\n USB device not accepting new address " \ |
| 870 | "(error=%lX)\n", dev->status); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 871 | return 1; |
| 872 | } |
| 873 | |
| 874 | wait_ms(10); /* Let the SET_ADDRESS settle */ |
| 875 | |
| 876 | tmp = sizeof(dev->descriptor); |
| 877 | |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 878 | err = usb_get_descriptor(dev, USB_DT_DEVICE, 0, |
| 879 | &dev->descriptor, sizeof(dev->descriptor)); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 880 | if (err < tmp) { |
| 881 | if (err < 0) |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 882 | printf("unable to get device descriptor (error=%d)\n", |
| 883 | err); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 884 | else |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 885 | printf("USB device descriptor short read " \ |
| 886 | "(expected %i, got %i)\n", tmp, err); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 887 | return 1; |
| 888 | } |
| 889 | /* correct le values */ |
Christian Eggers | c918261 | 2008-05-21 22:12:00 +0200 | [diff] [blame] | 890 | le16_to_cpus(&dev->descriptor.bcdUSB); |
| 891 | le16_to_cpus(&dev->descriptor.idVendor); |
| 892 | le16_to_cpus(&dev->descriptor.idProduct); |
| 893 | le16_to_cpus(&dev->descriptor.bcdDevice); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 894 | /* only support for one config for now */ |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 895 | usb_get_configuration_no(dev, &tmpbuf[0], 0); |
| 896 | usb_parse_config(dev, &tmpbuf[0], 0); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 897 | usb_set_maxpacket(dev); |
| 898 | /* we set the default configuration here */ |
Tom Rix | 8f8bd56 | 2009-10-31 12:37:38 -0500 | [diff] [blame] | 899 | if (usb_set_configuration(dev, dev->config.desc.bConfigurationValue)) { |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 900 | printf("failed to set default configuration " \ |
| 901 | "len %d, status %lX\n", dev->act_len, dev->status); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 902 | return -1; |
| 903 | } |
| 904 | USB_PRINTF("new device strings: Mfr=%d, Product=%d, SerialNumber=%d\n", |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 905 | dev->descriptor.iManufacturer, dev->descriptor.iProduct, |
| 906 | dev->descriptor.iSerialNumber); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 907 | memset(dev->mf, 0, sizeof(dev->mf)); |
| 908 | memset(dev->prod, 0, sizeof(dev->prod)); |
| 909 | memset(dev->serial, 0, sizeof(dev->serial)); |
| 910 | if (dev->descriptor.iManufacturer) |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 911 | usb_string(dev, dev->descriptor.iManufacturer, |
| 912 | dev->mf, sizeof(dev->mf)); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 913 | if (dev->descriptor.iProduct) |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 914 | usb_string(dev, dev->descriptor.iProduct, |
| 915 | dev->prod, sizeof(dev->prod)); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 916 | if (dev->descriptor.iSerialNumber) |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 917 | usb_string(dev, dev->descriptor.iSerialNumber, |
| 918 | dev->serial, sizeof(dev->serial)); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 919 | USB_PRINTF("Manufacturer %s\n", dev->mf); |
| 920 | USB_PRINTF("Product %s\n", dev->prod); |
| 921 | USB_PRINTF("SerialNumber %s\n", dev->serial); |
| 922 | /* now prode if the device is a hub */ |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 923 | usb_hub_probe(dev, 0); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 924 | return 0; |
| 925 | } |
| 926 | |
| 927 | /* build device Tree */ |
| 928 | void usb_scan_devices(void) |
| 929 | { |
| 930 | int i; |
| 931 | struct usb_device *dev; |
| 932 | |
| 933 | /* first make all devices unknown */ |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 934 | for (i = 0; i < USB_MAX_DEVICE; i++) { |
| 935 | memset(&usb_dev[i], 0, sizeof(struct usb_device)); |
Wolfgang Denk | d0ff51b | 2008-07-14 15:19:07 +0200 | [diff] [blame] | 936 | usb_dev[i].devnum = -1; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 937 | } |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 938 | dev_index = 0; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 939 | /* device 0 is always present (root hub, so let it analyze) */ |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 940 | dev = usb_alloc_new_device(); |
Bryan Wu | 1a448db | 2009-01-18 23:04:27 -0500 | [diff] [blame] | 941 | if (usb_new_device(dev)) |
| 942 | printf("No USB Device found\n"); |
| 943 | else |
| 944 | printf("%d USB Device(s) found\n", dev_index); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 945 | /* insert "driver" if possible */ |
| 946 | #ifdef CONFIG_USB_KEYBOARD |
| 947 | drv_usb_kbd_init(); |
| 948 | USB_PRINTF("scan end\n"); |
| 949 | #endif |
| 950 | } |
| 951 | |
| 952 | |
| 953 | /**************************************************************************** |
| 954 | * HUB "Driver" |
| 955 | * Probes device for being a hub and configurate it |
| 956 | */ |
| 957 | |
| 958 | #undef USB_HUB_DEBUG |
| 959 | |
| 960 | #ifdef USB_HUB_DEBUG |
Michael Trimarchi | de39f8c | 2008-11-26 17:41:34 +0100 | [diff] [blame] | 961 | #define USB_HUB_PRINTF(fmt, args...) printf(fmt , ##args) |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 962 | #else |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 963 | #define USB_HUB_PRINTF(fmt, args...) |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 964 | #endif |
| 965 | |
| 966 | |
| 967 | static struct usb_hub_device hub_dev[USB_MAX_HUB]; |
| 968 | static int usb_hub_index; |
| 969 | |
| 970 | |
| 971 | int usb_get_hub_descriptor(struct usb_device *dev, void *data, int size) |
| 972 | { |
| 973 | return usb_control_msg(dev, usb_rcvctrlpipe(dev, 0), |
| 974 | USB_REQ_GET_DESCRIPTOR, USB_DIR_IN | USB_RT_HUB, |
| 975 | USB_DT_HUB << 8, 0, data, size, USB_CNTL_TIMEOUT); |
| 976 | } |
| 977 | |
| 978 | int usb_clear_hub_feature(struct usb_device *dev, int feature) |
| 979 | { |
| 980 | return usb_control_msg(dev, usb_sndctrlpipe(dev, 0), |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 981 | USB_REQ_CLEAR_FEATURE, USB_RT_HUB, feature, |
| 982 | 0, NULL, 0, USB_CNTL_TIMEOUT); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 983 | } |
| 984 | |
| 985 | int usb_clear_port_feature(struct usb_device *dev, int port, int feature) |
| 986 | { |
| 987 | return usb_control_msg(dev, usb_sndctrlpipe(dev, 0), |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 988 | USB_REQ_CLEAR_FEATURE, USB_RT_PORT, feature, |
| 989 | port, NULL, 0, USB_CNTL_TIMEOUT); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 990 | } |
| 991 | |
| 992 | int usb_set_port_feature(struct usb_device *dev, int port, int feature) |
| 993 | { |
| 994 | return usb_control_msg(dev, usb_sndctrlpipe(dev, 0), |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 995 | USB_REQ_SET_FEATURE, USB_RT_PORT, feature, |
| 996 | port, NULL, 0, USB_CNTL_TIMEOUT); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 997 | } |
| 998 | |
| 999 | int usb_get_hub_status(struct usb_device *dev, void *data) |
| 1000 | { |
| 1001 | return usb_control_msg(dev, usb_rcvctrlpipe(dev, 0), |
| 1002 | USB_REQ_GET_STATUS, USB_DIR_IN | USB_RT_HUB, 0, 0, |
| 1003 | data, sizeof(struct usb_hub_status), USB_CNTL_TIMEOUT); |
| 1004 | } |
| 1005 | |
| 1006 | int usb_get_port_status(struct usb_device *dev, int port, void *data) |
| 1007 | { |
| 1008 | return usb_control_msg(dev, usb_rcvctrlpipe(dev, 0), |
| 1009 | USB_REQ_GET_STATUS, USB_DIR_IN | USB_RT_PORT, 0, port, |
| 1010 | data, sizeof(struct usb_hub_status), USB_CNTL_TIMEOUT); |
| 1011 | } |
| 1012 | |
| 1013 | |
| 1014 | static void usb_hub_power_on(struct usb_hub_device *hub) |
| 1015 | { |
| 1016 | int i; |
| 1017 | struct usb_device *dev; |
| 1018 | |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 1019 | dev = hub->pusb_dev; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1020 | /* Enable power to the ports */ |
| 1021 | USB_HUB_PRINTF("enabling power on all ports\n"); |
| 1022 | for (i = 0; i < dev->maxchild; i++) { |
| 1023 | usb_set_port_feature(dev, i + 1, USB_PORT_FEAT_POWER); |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 1024 | USB_HUB_PRINTF("port %d returns %lX\n", i + 1, dev->status); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1025 | wait_ms(hub->desc.bPwrOn2PwrGood * 2); |
| 1026 | } |
| 1027 | } |
| 1028 | |
| 1029 | void usb_hub_reset(void) |
| 1030 | { |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 1031 | usb_hub_index = 0; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1032 | } |
| 1033 | |
| 1034 | struct usb_hub_device *usb_hub_allocate(void) |
| 1035 | { |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 1036 | if (usb_hub_index < USB_MAX_HUB) |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1037 | return &hub_dev[usb_hub_index++]; |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 1038 | |
| 1039 | printf("ERROR: USB_MAX_HUB (%d) reached\n", USB_MAX_HUB); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1040 | return NULL; |
| 1041 | } |
| 1042 | |
| 1043 | #define MAX_TRIES 5 |
| 1044 | |
Stefan Roese | f1c1f54 | 2009-01-22 10:11:21 +0100 | [diff] [blame] | 1045 | static inline char *portspeed(int portstatus) |
| 1046 | { |
| 1047 | if (portstatus & (1 << USB_PORT_FEAT_HIGHSPEED)) |
| 1048 | return "480 Mb/s"; |
| 1049 | else if (portstatus & (1 << USB_PORT_FEAT_LOWSPEED)) |
| 1050 | return "1.5 Mb/s"; |
| 1051 | else |
| 1052 | return "12 Mb/s"; |
| 1053 | } |
| 1054 | |
Wolfgang Denk | 9c998aa | 2005-07-21 11:57:57 +0200 | [diff] [blame] | 1055 | static int hub_port_reset(struct usb_device *dev, int port, |
| 1056 | unsigned short *portstat) |
| 1057 | { |
| 1058 | int tries; |
| 1059 | struct usb_port_status portsts; |
| 1060 | unsigned short portstatus, portchange; |
| 1061 | |
Wolfgang Denk | 9c998aa | 2005-07-21 11:57:57 +0200 | [diff] [blame] | 1062 | USB_HUB_PRINTF("hub_port_reset: resetting port %d...\n", port); |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 1063 | for (tries = 0; tries < MAX_TRIES; tries++) { |
Wolfgang Denk | 9c998aa | 2005-07-21 11:57:57 +0200 | [diff] [blame] | 1064 | |
| 1065 | usb_set_port_feature(dev, port + 1, USB_PORT_FEAT_RESET); |
| 1066 | wait_ms(200); |
| 1067 | |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 1068 | if (usb_get_port_status(dev, port + 1, &portsts) < 0) { |
| 1069 | USB_HUB_PRINTF("get_port_status failed status %lX\n", |
| 1070 | dev->status); |
Wolfgang Denk | 9c998aa | 2005-07-21 11:57:57 +0200 | [diff] [blame] | 1071 | return -1; |
| 1072 | } |
Christian Eggers | c918261 | 2008-05-21 22:12:00 +0200 | [diff] [blame] | 1073 | portstatus = le16_to_cpu(portsts.wPortStatus); |
| 1074 | portchange = le16_to_cpu(portsts.wPortChange); |
Michael Trimarchi | 366523c | 2008-12-18 10:05:37 +0100 | [diff] [blame] | 1075 | |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 1076 | USB_HUB_PRINTF("portstatus %x, change %x, %s\n", |
| 1077 | portstatus, portchange, |
Stefan Roese | f1c1f54 | 2009-01-22 10:11:21 +0100 | [diff] [blame] | 1078 | portspeed(portstatus)); |
Michael Trimarchi | 366523c | 2008-12-18 10:05:37 +0100 | [diff] [blame] | 1079 | |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 1080 | USB_HUB_PRINTF("STAT_C_CONNECTION = %d STAT_CONNECTION = %d" \ |
| 1081 | " USB_PORT_STAT_ENABLE %d\n", |
Wolfgang Denk | 9c998aa | 2005-07-21 11:57:57 +0200 | [diff] [blame] | 1082 | (portchange & USB_PORT_STAT_C_CONNECTION) ? 1 : 0, |
| 1083 | (portstatus & USB_PORT_STAT_CONNECTION) ? 1 : 0, |
| 1084 | (portstatus & USB_PORT_STAT_ENABLE) ? 1 : 0); |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 1085 | |
Wolfgang Denk | 9c998aa | 2005-07-21 11:57:57 +0200 | [diff] [blame] | 1086 | if ((portchange & USB_PORT_STAT_C_CONNECTION) || |
| 1087 | !(portstatus & USB_PORT_STAT_CONNECTION)) |
| 1088 | return -1; |
| 1089 | |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 1090 | if (portstatus & USB_PORT_STAT_ENABLE) |
Wolfgang Denk | 9c998aa | 2005-07-21 11:57:57 +0200 | [diff] [blame] | 1091 | break; |
Wolfgang Denk | 9c998aa | 2005-07-21 11:57:57 +0200 | [diff] [blame] | 1092 | |
| 1093 | wait_ms(200); |
| 1094 | } |
| 1095 | |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 1096 | if (tries == MAX_TRIES) { |
| 1097 | USB_HUB_PRINTF("Cannot enable port %i after %i retries, " \ |
| 1098 | "disabling port.\n", port + 1, MAX_TRIES); |
Wolfgang Denk | 9c998aa | 2005-07-21 11:57:57 +0200 | [diff] [blame] | 1099 | USB_HUB_PRINTF("Maybe the USB cable is bad?\n"); |
| 1100 | return -1; |
| 1101 | } |
| 1102 | |
| 1103 | usb_clear_port_feature(dev, port + 1, USB_PORT_FEAT_C_RESET); |
| 1104 | *portstat = portstatus; |
| 1105 | return 0; |
Wolfgang Denk | 9c998aa | 2005-07-21 11:57:57 +0200 | [diff] [blame] | 1106 | } |
| 1107 | |
| 1108 | |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1109 | void usb_hub_port_connect_change(struct usb_device *dev, int port) |
| 1110 | { |
| 1111 | struct usb_device *usb; |
| 1112 | struct usb_port_status portsts; |
| 1113 | unsigned short portstatus, portchange; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1114 | |
| 1115 | /* Check status */ |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 1116 | if (usb_get_port_status(dev, port + 1, &portsts) < 0) { |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1117 | USB_HUB_PRINTF("get_port_status failed\n"); |
| 1118 | return; |
| 1119 | } |
| 1120 | |
Christian Eggers | c918261 | 2008-05-21 22:12:00 +0200 | [diff] [blame] | 1121 | portstatus = le16_to_cpu(portsts.wPortStatus); |
| 1122 | portchange = le16_to_cpu(portsts.wPortChange); |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 1123 | USB_HUB_PRINTF("portstatus %x, change %x, %s\n", |
Stefan Roese | f1c1f54 | 2009-01-22 10:11:21 +0100 | [diff] [blame] | 1124 | portstatus, portchange, portspeed(portstatus)); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1125 | |
| 1126 | /* Clear the connection change status */ |
| 1127 | usb_clear_port_feature(dev, port + 1, USB_PORT_FEAT_C_CONNECTION); |
| 1128 | |
| 1129 | /* Disconnect any existing devices under this port */ |
| 1130 | if (((!(portstatus & USB_PORT_STAT_CONNECTION)) && |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 1131 | (!(portstatus & USB_PORT_STAT_ENABLE))) || (dev->children[port])) { |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1132 | USB_HUB_PRINTF("usb_disconnect(&hub->children[port]);\n"); |
| 1133 | /* Return now if nothing is connected */ |
| 1134 | if (!(portstatus & USB_PORT_STAT_CONNECTION)) |
| 1135 | return; |
| 1136 | } |
| 1137 | wait_ms(200); |
| 1138 | |
| 1139 | /* Reset the port */ |
Wolfgang Denk | 9c998aa | 2005-07-21 11:57:57 +0200 | [diff] [blame] | 1140 | if (hub_port_reset(dev, port, &portstatus) < 0) { |
| 1141 | printf("cannot reset port %i!?\n", port + 1); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1142 | return; |
| 1143 | } |
| 1144 | |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1145 | wait_ms(200); |
| 1146 | |
| 1147 | /* Allocate a new device struct for it */ |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 1148 | usb = usb_alloc_new_device(); |
Michael Trimarchi | 366523c | 2008-12-18 10:05:37 +0100 | [diff] [blame] | 1149 | |
| 1150 | if (portstatus & USB_PORT_STAT_HIGH_SPEED) |
| 1151 | usb->speed = USB_SPEED_HIGH; |
| 1152 | else if (portstatus & USB_PORT_STAT_LOW_SPEED) |
| 1153 | usb->speed = USB_SPEED_LOW; |
| 1154 | else |
| 1155 | usb->speed = USB_SPEED_FULL; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1156 | |
| 1157 | dev->children[port] = usb; |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 1158 | usb->parent = dev; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1159 | /* Run it through the hoops (find a driver, etc) */ |
| 1160 | if (usb_new_device(usb)) { |
| 1161 | /* Woops, disable the port */ |
| 1162 | USB_HUB_PRINTF("hub: disabling port %d\n", port + 1); |
| 1163 | usb_clear_port_feature(dev, port + 1, USB_PORT_FEAT_ENABLE); |
| 1164 | } |
| 1165 | } |
| 1166 | |
| 1167 | |
| 1168 | int usb_hub_configure(struct usb_device *dev) |
| 1169 | { |
wdenk | cd0a9de | 2004-02-23 20:48:38 +0000 | [diff] [blame] | 1170 | unsigned char buffer[USB_BUFSIZ], *bitmap; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1171 | struct usb_hub_descriptor *descriptor; |
| 1172 | struct usb_hub_status *hubsts; |
| 1173 | int i; |
| 1174 | struct usb_hub_device *hub; |
| 1175 | |
| 1176 | /* "allocate" Hub device */ |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 1177 | hub = usb_hub_allocate(); |
| 1178 | if (hub == NULL) |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1179 | return -1; |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 1180 | hub->pusb_dev = dev; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1181 | /* Get the the hub descriptor */ |
| 1182 | if (usb_get_hub_descriptor(dev, buffer, 4) < 0) { |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 1183 | USB_HUB_PRINTF("usb_hub_configure: failed to get hub " \ |
| 1184 | "descriptor, giving up %lX\n", dev->status); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1185 | return -1; |
| 1186 | } |
| 1187 | descriptor = (struct usb_hub_descriptor *)buffer; |
wdenk | cd0a9de | 2004-02-23 20:48:38 +0000 | [diff] [blame] | 1188 | |
wdenk | e86e5a0 | 2004-10-17 21:12:06 +0000 | [diff] [blame] | 1189 | /* silence compiler warning if USB_BUFSIZ is > 256 [= sizeof(char)] */ |
| 1190 | i = descriptor->bLength; |
| 1191 | if (i > USB_BUFSIZ) { |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 1192 | USB_HUB_PRINTF("usb_hub_configure: failed to get hub " \ |
| 1193 | "descriptor - too long: %d\n", |
| 1194 | descriptor->bLength); |
wdenk | cd0a9de | 2004-02-23 20:48:38 +0000 | [diff] [blame] | 1195 | return -1; |
| 1196 | } |
| 1197 | |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1198 | if (usb_get_hub_descriptor(dev, buffer, descriptor->bLength) < 0) { |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 1199 | USB_HUB_PRINTF("usb_hub_configure: failed to get hub " \ |
| 1200 | "descriptor 2nd giving up %lX\n", dev->status); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1201 | return -1; |
| 1202 | } |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 1203 | memcpy((unsigned char *)&hub->desc, buffer, descriptor->bLength); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1204 | /* adjust 16bit values */ |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 1205 | hub->desc.wHubCharacteristics = |
| 1206 | le16_to_cpu(descriptor->wHubCharacteristics); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1207 | /* set the bitmap */ |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 1208 | bitmap = (unsigned char *)&hub->desc.DeviceRemovable[0]; |
| 1209 | /* devices not removable by default */ |
| 1210 | memset(bitmap, 0xff, (USB_MAXCHILDREN+1+7)/8); |
| 1211 | bitmap = (unsigned char *)&hub->desc.PortPowerCtrlMask[0]; |
| 1212 | memset(bitmap, 0xff, (USB_MAXCHILDREN+1+7)/8); /* PowerMask = 1B */ |
| 1213 | |
| 1214 | for (i = 0; i < ((hub->desc.bNbrPorts + 1 + 7)/8); i++) |
| 1215 | hub->desc.DeviceRemovable[i] = descriptor->DeviceRemovable[i]; |
| 1216 | |
| 1217 | for (i = 0; i < ((hub->desc.bNbrPorts + 1 + 7)/8); i++) |
| 1218 | hub->desc.DeviceRemovable[i] = descriptor->PortPowerCtrlMask[i]; |
| 1219 | |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1220 | dev->maxchild = descriptor->bNbrPorts; |
| 1221 | USB_HUB_PRINTF("%d ports detected\n", dev->maxchild); |
| 1222 | |
| 1223 | switch (hub->desc.wHubCharacteristics & HUB_CHAR_LPSM) { |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 1224 | case 0x00: |
| 1225 | USB_HUB_PRINTF("ganged power switching\n"); |
| 1226 | break; |
| 1227 | case 0x01: |
| 1228 | USB_HUB_PRINTF("individual port power switching\n"); |
| 1229 | break; |
| 1230 | case 0x02: |
| 1231 | case 0x03: |
| 1232 | USB_HUB_PRINTF("unknown reserved power switching mode\n"); |
| 1233 | break; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1234 | } |
| 1235 | |
| 1236 | if (hub->desc.wHubCharacteristics & HUB_CHAR_COMPOUND) |
| 1237 | USB_HUB_PRINTF("part of a compound device\n"); |
| 1238 | else |
| 1239 | USB_HUB_PRINTF("standalone hub\n"); |
| 1240 | |
| 1241 | switch (hub->desc.wHubCharacteristics & HUB_CHAR_OCPM) { |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 1242 | case 0x00: |
| 1243 | USB_HUB_PRINTF("global over-current protection\n"); |
| 1244 | break; |
| 1245 | case 0x08: |
| 1246 | USB_HUB_PRINTF("individual port over-current protection\n"); |
| 1247 | break; |
| 1248 | case 0x10: |
| 1249 | case 0x18: |
| 1250 | USB_HUB_PRINTF("no over-current protection\n"); |
| 1251 | break; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1252 | } |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 1253 | |
| 1254 | USB_HUB_PRINTF("power on to power good time: %dms\n", |
| 1255 | descriptor->bPwrOn2PwrGood * 2); |
| 1256 | USB_HUB_PRINTF("hub controller current requirement: %dmA\n", |
| 1257 | descriptor->bHubContrCurrent); |
| 1258 | |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1259 | for (i = 0; i < dev->maxchild; i++) |
| 1260 | USB_HUB_PRINTF("port %d is%s removable\n", i + 1, |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 1261 | hub->desc.DeviceRemovable[(i + 1) / 8] & \ |
| 1262 | (1 << ((i + 1) % 8)) ? " not" : ""); |
| 1263 | |
wdenk | cd0a9de | 2004-02-23 20:48:38 +0000 | [diff] [blame] | 1264 | if (sizeof(struct usb_hub_status) > USB_BUFSIZ) { |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 1265 | USB_HUB_PRINTF("usb_hub_configure: failed to get Status - " \ |
| 1266 | "too long: %d\n", descriptor->bLength); |
wdenk | cd0a9de | 2004-02-23 20:48:38 +0000 | [diff] [blame] | 1267 | return -1; |
| 1268 | } |
| 1269 | |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1270 | if (usb_get_hub_status(dev, buffer) < 0) { |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 1271 | USB_HUB_PRINTF("usb_hub_configure: failed to get Status %lX\n", |
| 1272 | dev->status); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1273 | return -1; |
| 1274 | } |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 1275 | |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1276 | hubsts = (struct usb_hub_status *)buffer; |
| 1277 | USB_HUB_PRINTF("get_hub_status returned status %X, change %X\n", |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 1278 | le16_to_cpu(hubsts->wHubStatus), |
| 1279 | le16_to_cpu(hubsts->wHubChange)); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1280 | USB_HUB_PRINTF("local power source is %s\n", |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 1281 | (le16_to_cpu(hubsts->wHubStatus) & HUB_STATUS_LOCAL_POWER) ? \ |
| 1282 | "lost (inactive)" : "good"); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1283 | USB_HUB_PRINTF("%sover-current condition exists\n", |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 1284 | (le16_to_cpu(hubsts->wHubStatus) & HUB_STATUS_OVERCURRENT) ? \ |
| 1285 | "" : "no "); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1286 | usb_hub_power_on(hub); |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 1287 | |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1288 | for (i = 0; i < dev->maxchild; i++) { |
| 1289 | struct usb_port_status portsts; |
| 1290 | unsigned short portstatus, portchange; |
| 1291 | |
| 1292 | if (usb_get_port_status(dev, i + 1, &portsts) < 0) { |
| 1293 | USB_HUB_PRINTF("get_port_status failed\n"); |
| 1294 | continue; |
| 1295 | } |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 1296 | |
Christian Eggers | c918261 | 2008-05-21 22:12:00 +0200 | [diff] [blame] | 1297 | portstatus = le16_to_cpu(portsts.wPortStatus); |
| 1298 | portchange = le16_to_cpu(portsts.wPortChange); |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 1299 | USB_HUB_PRINTF("Port %d Status %X Change %X\n", |
| 1300 | i + 1, portstatus, portchange); |
| 1301 | |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1302 | if (portchange & USB_PORT_STAT_C_CONNECTION) { |
| 1303 | USB_HUB_PRINTF("port %d connection change\n", i + 1); |
| 1304 | usb_hub_port_connect_change(dev, i); |
| 1305 | } |
| 1306 | if (portchange & USB_PORT_STAT_C_ENABLE) { |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 1307 | USB_HUB_PRINTF("port %d enable change, status %x\n", |
| 1308 | i + 1, portstatus); |
| 1309 | usb_clear_port_feature(dev, i + 1, |
| 1310 | USB_PORT_FEAT_C_ENABLE); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1311 | |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 1312 | /* EM interference sometimes causes bad shielded USB |
| 1313 | * devices to be shutdown by the hub, this hack enables |
| 1314 | * them again. Works at least with mouse driver */ |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1315 | if (!(portstatus & USB_PORT_STAT_ENABLE) && |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 1316 | (portstatus & USB_PORT_STAT_CONNECTION) && |
| 1317 | ((dev->children[i]))) { |
| 1318 | USB_HUB_PRINTF("already running port %i " \ |
| 1319 | "disabled by hub (EMI?), " \ |
| 1320 | "re-enabling...\n", i + 1); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1321 | usb_hub_port_connect_change(dev, i); |
| 1322 | } |
| 1323 | } |
| 1324 | if (portstatus & USB_PORT_STAT_SUSPEND) { |
| 1325 | USB_HUB_PRINTF("port %d suspend change\n", i + 1); |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 1326 | usb_clear_port_feature(dev, i + 1, |
| 1327 | USB_PORT_FEAT_SUSPEND); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1328 | } |
| 1329 | |
| 1330 | if (portchange & USB_PORT_STAT_C_OVERCURRENT) { |
| 1331 | USB_HUB_PRINTF("port %d over-current change\n", i + 1); |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 1332 | usb_clear_port_feature(dev, i + 1, |
| 1333 | USB_PORT_FEAT_C_OVER_CURRENT); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1334 | usb_hub_power_on(hub); |
| 1335 | } |
| 1336 | |
| 1337 | if (portchange & USB_PORT_STAT_C_RESET) { |
| 1338 | USB_HUB_PRINTF("port %d reset change\n", i + 1); |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 1339 | usb_clear_port_feature(dev, i + 1, |
| 1340 | USB_PORT_FEAT_C_RESET); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1341 | } |
| 1342 | } /* end for i all ports */ |
| 1343 | |
| 1344 | return 0; |
| 1345 | } |
| 1346 | |
| 1347 | int usb_hub_probe(struct usb_device *dev, int ifnum) |
| 1348 | { |
Tom Rix | 8f8bd56 | 2009-10-31 12:37:38 -0500 | [diff] [blame] | 1349 | struct usb_interface *iface; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1350 | struct usb_endpoint_descriptor *ep; |
| 1351 | int ret; |
| 1352 | |
| 1353 | iface = &dev->config.if_desc[ifnum]; |
| 1354 | /* Is it a hub? */ |
Tom Rix | 8f8bd56 | 2009-10-31 12:37:38 -0500 | [diff] [blame] | 1355 | if (iface->desc.bInterfaceClass != USB_CLASS_HUB) |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1356 | return 0; |
| 1357 | /* Some hubs have a subclass of 1, which AFAICT according to the */ |
| 1358 | /* specs is not defined, but it works */ |
Tom Rix | 8f8bd56 | 2009-10-31 12:37:38 -0500 | [diff] [blame] | 1359 | if ((iface->desc.bInterfaceSubClass != 0) && |
| 1360 | (iface->desc.bInterfaceSubClass != 1)) |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1361 | return 0; |
| 1362 | /* Multiple endpoints? What kind of mutant ninja-hub is this? */ |
Tom Rix | 8f8bd56 | 2009-10-31 12:37:38 -0500 | [diff] [blame] | 1363 | if (iface->desc.bNumEndpoints != 1) |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1364 | return 0; |
| 1365 | ep = &iface->ep_desc[0]; |
| 1366 | /* Output endpoint? Curiousier and curiousier.. */ |
| 1367 | if (!(ep->bEndpointAddress & USB_DIR_IN)) |
| 1368 | return 0; |
| 1369 | /* If it's not an interrupt endpoint, we'd better punt! */ |
| 1370 | if ((ep->bmAttributes & 3) != 3) |
| 1371 | return 0; |
| 1372 | /* We found a hub */ |
| 1373 | USB_HUB_PRINTF("USB hub found\n"); |
Remy Bohmer | 6f5794a | 2008-09-16 14:55:43 +0200 | [diff] [blame] | 1374 | ret = usb_hub_configure(dev); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1375 | return ret; |
| 1376 | } |
| 1377 | |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1378 | /* EOF */ |