]>
Commit | Line | Data |
---|---|---|
affae2bf | 1 | /* |
affae2bf | 2 | * Most of this source has been derived from the Linux USB |
460c322f WD |
3 | * project: |
4 | * (C) Copyright Linus Torvalds 1999 | |
5 | * (C) Copyright Johannes Erdfelt 1999-2001 | |
6 | * (C) Copyright Andreas Gal 1999 | |
7 | * (C) Copyright Gregory P. Smith 1999 | |
8 | * (C) Copyright Deti Fliegl 1999 (new USB architecture) | |
9 | * (C) Copyright Randy Dunlap 2000 | |
10 | * (C) Copyright David Brownell 2000 (kernel hotplug, usb_device_id) | |
11 | * (C) Copyright Yggdrasil Computing, Inc. 2000 | |
12 | * (usb_device_id matching changes by Adam J. Richter) | |
13 | * | |
14 | * Adapted for U-Boot: | |
15 | * (C) Copyright 2001 Denis Peter, MPL AG Switzerland | |
affae2bf | 16 | * |
1a459660 | 17 | * SPDX-License-Identifier: GPL-2.0+ |
affae2bf WD |
18 | */ |
19 | ||
affae2bf WD |
20 | /* |
21 | * How it works: | |
22 | * | |
23 | * Since this is a bootloader, the devices will not be automatic | |
24 | * (re)configured on hotplug, but after a restart of the USB the | |
25 | * device should work. | |
26 | * | |
27 | * For each transfer (except "Interrupt") we wait for completion. | |
28 | */ | |
29 | #include <common.h> | |
30 | #include <command.h> | |
31 | #include <asm/processor.h> | |
66cf6410 | 32 | #include <linux/compiler.h> |
9c998aa8 | 33 | #include <linux/ctype.h> |
c918261c | 34 | #include <asm/byteorder.h> |
b2fb47f1 | 35 | #include <asm/unaligned.h> |
97b9eb9e | 36 | #include <errno.h> |
affae2bf WD |
37 | #include <usb.h> |
38 | #ifdef CONFIG_4xx | |
3048bcbf | 39 | #include <asm/4xx_pci.h> |
affae2bf WD |
40 | #endif |
41 | ||
cd0a9de6 WD |
42 | #define USB_BUFSIZ 512 |
43 | ||
affae2bf WD |
44 | static struct usb_device usb_dev[USB_MAX_DEVICE]; |
45 | static int dev_index; | |
affae2bf | 46 | static int asynch_allowed; |
affae2bf | 47 | |
e51aae38 BS |
48 | char usb_started; /* flag for the started/stopped USB status */ |
49 | ||
93c2582f LS |
50 | #ifndef CONFIG_USB_MAX_CONTROLLER_COUNT |
51 | #define CONFIG_USB_MAX_CONTROLLER_COUNT 1 | |
52 | #endif | |
affae2bf | 53 | |
affae2bf WD |
54 | /*************************************************************************** |
55 | * Init USB Device | |
56 | */ | |
affae2bf WD |
57 | int usb_init(void) |
58 | { | |
93c2582f LS |
59 | void *ctrl; |
60 | struct usb_device *dev; | |
61 | int i, start_index = 0; | |
d906bbc2 | 62 | int controllers_initialized = 0; |
97b9eb9e | 63 | int ret; |
affae2bf | 64 | |
6f5794a6 RB |
65 | dev_index = 0; |
66 | asynch_allowed = 1; | |
affae2bf | 67 | usb_hub_reset(); |
93c2582f LS |
68 | |
69 | /* first make all devices unknown */ | |
70 | for (i = 0; i < USB_MAX_DEVICE; i++) { | |
71 | memset(&usb_dev[i], 0, sizeof(struct usb_device)); | |
72 | usb_dev[i].devnum = -1; | |
73 | } | |
74 | ||
affae2bf | 75 | /* init low_level USB */ |
93c2582f LS |
76 | for (i = 0; i < CONFIG_USB_MAX_CONTROLLER_COUNT; i++) { |
77 | /* init low_level USB */ | |
78 | printf("USB%d: ", i); | |
97b9eb9e MV |
79 | ret = usb_lowlevel_init(i, USB_INIT_HOST, &ctrl); |
80 | if (ret == -ENODEV) { /* No such device. */ | |
81 | puts("Port not available.\n"); | |
d906bbc2 | 82 | controllers_initialized++; |
97b9eb9e MV |
83 | continue; |
84 | } | |
85 | ||
86 | if (ret) { /* Other error. */ | |
93c2582f LS |
87 | puts("lowlevel init failed\n"); |
88 | continue; | |
89 | } | |
90 | /* | |
91 | * lowlevel init is OK, now scan the bus for devices | |
92 | * i.e. search HUBs and configure them | |
93 | */ | |
d906bbc2 | 94 | controllers_initialized++; |
93c2582f LS |
95 | start_index = dev_index; |
96 | printf("scanning bus %d for devices... ", i); | |
97 | dev = usb_alloc_new_device(ctrl); | |
8879be88 PK |
98 | if (!dev) |
99 | break; | |
100 | ||
93c2582f LS |
101 | /* |
102 | * device 0 is always present | |
103 | * (root hub, so let it analyze) | |
104 | */ | |
8879be88 PK |
105 | ret = usb_new_device(dev); |
106 | if (ret) | |
107 | usb_free_device(); | |
93c2582f | 108 | |
8879be88 | 109 | if (start_index == dev_index) { |
93c2582f | 110 | puts("No USB Device found\n"); |
8879be88 PK |
111 | continue; |
112 | } else { | |
93c2582f LS |
113 | printf("%d USB Device(s) found\n", |
114 | dev_index - start_index); | |
8879be88 | 115 | } |
93c2582f | 116 | |
e51aae38 | 117 | usb_started = 1; |
93c2582f LS |
118 | } |
119 | ||
ceb4972a | 120 | debug("scan end\n"); |
93c2582f | 121 | /* if we were not able to find at least one working bus, bail out */ |
d906bbc2 | 122 | if (controllers_initialized == 0) |
93c2582f | 123 | puts("USB error: all controllers failed lowlevel init\n"); |
93c2582f | 124 | |
5a80b344 | 125 | return usb_started ? 0 : -ENODEV; |
affae2bf WD |
126 | } |
127 | ||
128 | /****************************************************************************** | |
129 | * Stop USB this stops the LowLevel Part and deregisters USB devices. | |
130 | */ | |
131 | int usb_stop(void) | |
132 | { | |
93c2582f | 133 | int i; |
eba1f2fc RB |
134 | |
135 | if (usb_started) { | |
136 | asynch_allowed = 1; | |
137 | usb_started = 0; | |
138 | usb_hub_reset(); | |
93c2582f LS |
139 | |
140 | for (i = 0; i < CONFIG_USB_MAX_CONTROLLER_COUNT; i++) { | |
141 | if (usb_lowlevel_stop(i)) | |
142 | printf("failed to stop USB controller %d\n", i); | |
143 | } | |
eba1f2fc | 144 | } |
93c2582f LS |
145 | |
146 | return 0; | |
affae2bf WD |
147 | } |
148 | ||
149 | /* | |
150 | * disables the asynch behaviour of the control message. This is used for data | |
151 | * transfers that uses the exclusiv access to the control and bulk messages. | |
89d48367 | 152 | * Returns the old value so it can be restored later. |
affae2bf | 153 | */ |
89d48367 | 154 | int usb_disable_asynch(int disable) |
affae2bf | 155 | { |
89d48367 SG |
156 | int old_value = asynch_allowed; |
157 | ||
6f5794a6 | 158 | asynch_allowed = !disable; |
89d48367 | 159 | return old_value; |
affae2bf WD |
160 | } |
161 | ||
162 | ||
163 | /*------------------------------------------------------------------- | |
164 | * Message wrappers. | |
165 | * | |
166 | */ | |
167 | ||
168 | /* | |
169 | * submits an Interrupt Message | |
170 | */ | |
171 | int usb_submit_int_msg(struct usb_device *dev, unsigned long pipe, | |
6f5794a6 | 172 | void *buffer, int transfer_len, int interval) |
affae2bf | 173 | { |
6f5794a6 | 174 | return submit_int_msg(dev, pipe, buffer, transfer_len, interval); |
affae2bf WD |
175 | } |
176 | ||
177 | /* | |
178 | * submits a control message and waits for comletion (at least timeout * 1ms) | |
179 | * If timeout is 0, we don't wait for completion (used as example to set and | |
180 | * clear keyboards LEDs). For data transfers, (storage transfers) we don't | |
181 | * allow control messages with 0 timeout, by previousely resetting the flag | |
182 | * asynch_allowed (usb_disable_asynch(1)). | |
183 | * returns the transfered length if OK or -1 if error. The transfered length | |
184 | * and the current status are stored in the dev->act_len and dev->status. | |
185 | */ | |
186 | int usb_control_msg(struct usb_device *dev, unsigned int pipe, | |
187 | unsigned char request, unsigned char requesttype, | |
188 | unsigned short value, unsigned short index, | |
189 | void *data, unsigned short size, int timeout) | |
190 | { | |
f5766139 | 191 | ALLOC_CACHE_ALIGN_BUFFER(struct devrequest, setup_packet, 1); |
e159e486 | 192 | |
6f5794a6 RB |
193 | if ((timeout == 0) && (!asynch_allowed)) { |
194 | /* request for a asynch control pipe is not allowed */ | |
5a80b344 | 195 | return -EINVAL; |
6f5794a6 | 196 | } |
9c998aa8 | 197 | |
affae2bf | 198 | /* set setup command */ |
f5766139 PS |
199 | setup_packet->requesttype = requesttype; |
200 | setup_packet->request = request; | |
201 | setup_packet->value = cpu_to_le16(value); | |
202 | setup_packet->index = cpu_to_le16(index); | |
203 | setup_packet->length = cpu_to_le16(size); | |
ceb4972a VG |
204 | debug("usb_control_msg: request: 0x%X, requesttype: 0x%X, " \ |
205 | "value 0x%X index 0x%X length 0x%X\n", | |
206 | request, requesttype, value, index, size); | |
6f5794a6 | 207 | dev->status = USB_ST_NOT_PROC; /*not yet processed */ |
affae2bf | 208 | |
fd06028d | 209 | if (submit_control_msg(dev, pipe, data, size, setup_packet) < 0) |
5a80b344 | 210 | return -EIO; |
6f5794a6 | 211 | if (timeout == 0) |
affae2bf | 212 | return (int)size; |
6f5794a6 | 213 | |
84d36b30 RB |
214 | /* |
215 | * Wait for status to update until timeout expires, USB driver | |
216 | * interrupt handler may set the status when the USB operation has | |
217 | * been completed. | |
218 | */ | |
219 | while (timeout--) { | |
220 | if (!((volatile unsigned long)dev->status & USB_ST_NOT_PROC)) | |
221 | break; | |
5b84dd67 | 222 | mdelay(1); |
48867208 | 223 | } |
84d36b30 RB |
224 | if (dev->status) |
225 | return -1; | |
48867208 RB |
226 | |
227 | return dev->act_len; | |
84d36b30 | 228 | |
affae2bf WD |
229 | } |
230 | ||
231 | /*------------------------------------------------------------------- | |
232 | * submits bulk message, and waits for completion. returns 0 if Ok or | |
5a80b344 | 233 | * negative if Error. |
affae2bf WD |
234 | * synchronous behavior |
235 | */ | |
236 | int usb_bulk_msg(struct usb_device *dev, unsigned int pipe, | |
237 | void *data, int len, int *actual_length, int timeout) | |
238 | { | |
239 | if (len < 0) | |
5a80b344 | 240 | return -EINVAL; |
6f5794a6 | 241 | dev->status = USB_ST_NOT_PROC; /*not yet processed */ |
fd06028d | 242 | if (submit_bulk_msg(dev, pipe, data, len) < 0) |
5a80b344 | 243 | return -EIO; |
6f5794a6 RB |
244 | while (timeout--) { |
245 | if (!((volatile unsigned long)dev->status & USB_ST_NOT_PROC)) | |
affae2bf | 246 | break; |
5b84dd67 | 247 | mdelay(1); |
affae2bf | 248 | } |
6f5794a6 RB |
249 | *actual_length = dev->act_len; |
250 | if (dev->status == 0) | |
affae2bf WD |
251 | return 0; |
252 | else | |
5a80b344 | 253 | return -EIO; |
affae2bf WD |
254 | } |
255 | ||
256 | ||
257 | /*------------------------------------------------------------------- | |
258 | * Max Packet stuff | |
259 | */ | |
260 | ||
261 | /* | |
262 | * returns the max packet size, depending on the pipe direction and | |
263 | * the configurations values | |
264 | */ | |
6f5794a6 | 265 | int usb_maxpacket(struct usb_device *dev, unsigned long pipe) |
affae2bf | 266 | { |
6f5794a6 RB |
267 | /* direction is out -> use emaxpacket out */ |
268 | if ((pipe & USB_DIR_IN) == 0) | |
de39f8c1 | 269 | return dev->epmaxpacketout[((pipe>>15) & 0xf)]; |
affae2bf | 270 | else |
de39f8c1 | 271 | return dev->epmaxpacketin[((pipe>>15) & 0xf)]; |
affae2bf WD |
272 | } |
273 | ||
5e8baf87 MV |
274 | /* |
275 | * The routine usb_set_maxpacket_ep() is extracted from the loop of routine | |
be19d324 RB |
276 | * usb_set_maxpacket(), because the optimizer of GCC 4.x chokes on this routine |
277 | * when it is inlined in 1 single routine. What happens is that the register r3 | |
278 | * is used as loop-count 'i', but gets overwritten later on. | |
279 | * This is clearly a compiler bug, but it is easier to workaround it here than | |
280 | * to update the compiler (Occurs with at least several GCC 4.{1,2},x | |
281 | * CodeSourcery compilers like e.g. 2007q3, 2008q1, 2008q3 lite editions on ARM) | |
5e8baf87 MV |
282 | * |
283 | * NOTE: Similar behaviour was observed with GCC4.6 on ARMv5. | |
be19d324 | 284 | */ |
66cf6410 | 285 | static void noinline |
5e8baf87 | 286 | usb_set_maxpacket_ep(struct usb_device *dev, int if_idx, int ep_idx) |
be19d324 RB |
287 | { |
288 | int b; | |
5e8baf87 | 289 | struct usb_endpoint_descriptor *ep; |
b2fb47f1 | 290 | u16 ep_wMaxPacketSize; |
5e8baf87 MV |
291 | |
292 | ep = &dev->config.if_desc[if_idx].ep_desc[ep_idx]; | |
be19d324 RB |
293 | |
294 | b = ep->bEndpointAddress & USB_ENDPOINT_NUMBER_MASK; | |
b2fb47f1 | 295 | ep_wMaxPacketSize = get_unaligned(&ep->wMaxPacketSize); |
be19d324 RB |
296 | |
297 | if ((ep->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) == | |
298 | USB_ENDPOINT_XFER_CONTROL) { | |
299 | /* Control => bidirectional */ | |
b2fb47f1 TR |
300 | dev->epmaxpacketout[b] = ep_wMaxPacketSize; |
301 | dev->epmaxpacketin[b] = ep_wMaxPacketSize; | |
ceb4972a VG |
302 | debug("##Control EP epmaxpacketout/in[%d] = %d\n", |
303 | b, dev->epmaxpacketin[b]); | |
be19d324 RB |
304 | } else { |
305 | if ((ep->bEndpointAddress & 0x80) == 0) { | |
306 | /* OUT Endpoint */ | |
b2fb47f1 TR |
307 | if (ep_wMaxPacketSize > dev->epmaxpacketout[b]) { |
308 | dev->epmaxpacketout[b] = ep_wMaxPacketSize; | |
ceb4972a VG |
309 | debug("##EP epmaxpacketout[%d] = %d\n", |
310 | b, dev->epmaxpacketout[b]); | |
be19d324 RB |
311 | } |
312 | } else { | |
313 | /* IN Endpoint */ | |
b2fb47f1 TR |
314 | if (ep_wMaxPacketSize > dev->epmaxpacketin[b]) { |
315 | dev->epmaxpacketin[b] = ep_wMaxPacketSize; | |
ceb4972a VG |
316 | debug("##EP epmaxpacketin[%d] = %d\n", |
317 | b, dev->epmaxpacketin[b]); | |
be19d324 RB |
318 | } |
319 | } /* if out */ | |
320 | } /* if control */ | |
321 | } | |
322 | ||
affae2bf WD |
323 | /* |
324 | * set the max packed value of all endpoints in the given configuration | |
325 | */ | |
c08b1b26 | 326 | static int usb_set_maxpacket(struct usb_device *dev) |
affae2bf | 327 | { |
be19d324 | 328 | int i, ii; |
affae2bf | 329 | |
8f8bd565 TR |
330 | for (i = 0; i < dev->config.desc.bNumInterfaces; i++) |
331 | for (ii = 0; ii < dev->config.if_desc[i].desc.bNumEndpoints; ii++) | |
5e8baf87 | 332 | usb_set_maxpacket_ep(dev, i, ii); |
affae2bf | 333 | |
affae2bf WD |
334 | return 0; |
335 | } | |
336 | ||
337 | /******************************************************************************* | |
338 | * Parse the config, located in buffer, and fills the dev->config structure. | |
339 | * Note that all little/big endian swapping are done automatically. | |
eaf3e613 | 340 | * (wTotalLength has already been swapped and sanitized when it was read.) |
affae2bf | 341 | */ |
c08b1b26 MV |
342 | static int usb_parse_config(struct usb_device *dev, |
343 | unsigned char *buffer, int cfgno) | |
affae2bf WD |
344 | { |
345 | struct usb_descriptor_header *head; | |
7455af41 | 346 | int index, ifno, epno, curr_if_num; |
b2fb47f1 | 347 | u16 ep_wMaxPacketSize; |
605bd75a | 348 | struct usb_interface *if_desc = NULL; |
7455af41 BS |
349 | |
350 | ifno = -1; | |
351 | epno = -1; | |
352 | curr_if_num = -1; | |
353 | ||
354 | dev->configno = cfgno; | |
355 | head = (struct usb_descriptor_header *) &buffer[0]; | |
6f5794a6 RB |
356 | if (head->bDescriptorType != USB_DT_CONFIG) { |
357 | printf(" ERROR: NOT USB_CONFIG_DESC %x\n", | |
358 | head->bDescriptorType); | |
5a80b344 | 359 | return -EINVAL; |
affae2bf | 360 | } |
eaf3e613 JW |
361 | if (head->bLength != USB_DT_CONFIG_SIZE) { |
362 | printf("ERROR: Invalid USB CFG length (%d)\n", head->bLength); | |
5a80b344 | 363 | return -EINVAL; |
eaf3e613 JW |
364 | } |
365 | memcpy(&dev->config, head, USB_DT_CONFIG_SIZE); | |
7455af41 | 366 | dev->config.no_of_if = 0; |
affae2bf | 367 | |
8f8bd565 | 368 | index = dev->config.desc.bLength; |
6f5794a6 RB |
369 | /* Ok the first entry must be a configuration entry, |
370 | * now process the others */ | |
7455af41 | 371 | head = (struct usb_descriptor_header *) &buffer[index]; |
eaf3e613 | 372 | while (index + 1 < dev->config.desc.wTotalLength && head->bLength) { |
6f5794a6 RB |
373 | switch (head->bDescriptorType) { |
374 | case USB_DT_INTERFACE: | |
eaf3e613 JW |
375 | if (head->bLength != USB_DT_INTERFACE_SIZE) { |
376 | printf("ERROR: Invalid USB IF length (%d)\n", | |
377 | head->bLength); | |
378 | break; | |
379 | } | |
380 | if (index + USB_DT_INTERFACE_SIZE > | |
381 | dev->config.desc.wTotalLength) { | |
382 | puts("USB IF descriptor overflowed buffer!\n"); | |
383 | break; | |
384 | } | |
6f5794a6 | 385 | if (((struct usb_interface_descriptor *) \ |
eaf3e613 | 386 | head)->bInterfaceNumber != curr_if_num) { |
6f5794a6 RB |
387 | /* this is a new interface, copy new desc */ |
388 | ifno = dev->config.no_of_if; | |
eaf3e613 JW |
389 | if (ifno >= USB_MAXINTERFACES) { |
390 | puts("Too many USB interfaces!\n"); | |
391 | /* try to go on with what we have */ | |
5a80b344 | 392 | return -EINVAL; |
eaf3e613 | 393 | } |
605bd75a | 394 | if_desc = &dev->config.if_desc[ifno]; |
6f5794a6 | 395 | dev->config.no_of_if++; |
eaf3e613 JW |
396 | memcpy(if_desc, head, |
397 | USB_DT_INTERFACE_SIZE); | |
605bd75a VG |
398 | if_desc->no_of_ep = 0; |
399 | if_desc->num_altsetting = 1; | |
6f5794a6 | 400 | curr_if_num = |
605bd75a | 401 | if_desc->desc.bInterfaceNumber; |
6f5794a6 RB |
402 | } else { |
403 | /* found alternate setting for the interface */ | |
605bd75a VG |
404 | if (ifno >= 0) { |
405 | if_desc = &dev->config.if_desc[ifno]; | |
406 | if_desc->num_altsetting++; | |
407 | } | |
6f5794a6 RB |
408 | } |
409 | break; | |
410 | case USB_DT_ENDPOINT: | |
eaf3e613 JW |
411 | if (head->bLength != USB_DT_ENDPOINT_SIZE) { |
412 | printf("ERROR: Invalid USB EP length (%d)\n", | |
413 | head->bLength); | |
414 | break; | |
415 | } | |
416 | if (index + USB_DT_ENDPOINT_SIZE > | |
417 | dev->config.desc.wTotalLength) { | |
418 | puts("USB EP descriptor overflowed buffer!\n"); | |
419 | break; | |
420 | } | |
421 | if (ifno < 0) { | |
422 | puts("Endpoint descriptor out of order!\n"); | |
423 | break; | |
424 | } | |
6f5794a6 | 425 | epno = dev->config.if_desc[ifno].no_of_ep; |
605bd75a | 426 | if_desc = &dev->config.if_desc[ifno]; |
eaf3e613 JW |
427 | if (epno > USB_MAXENDPOINTS) { |
428 | printf("Interface %d has too many endpoints!\n", | |
429 | if_desc->desc.bInterfaceNumber); | |
5a80b344 | 430 | return -EINVAL; |
eaf3e613 | 431 | } |
6f5794a6 | 432 | /* found an endpoint */ |
605bd75a | 433 | if_desc->no_of_ep++; |
eaf3e613 JW |
434 | memcpy(&if_desc->ep_desc[epno], head, |
435 | USB_DT_ENDPOINT_SIZE); | |
b2fb47f1 TR |
436 | ep_wMaxPacketSize = get_unaligned(&dev->config.\ |
437 | if_desc[ifno].\ | |
438 | ep_desc[epno].\ | |
439 | wMaxPacketSize); | |
440 | put_unaligned(le16_to_cpu(ep_wMaxPacketSize), | |
441 | &dev->config.\ | |
442 | if_desc[ifno].\ | |
443 | ep_desc[epno].\ | |
444 | wMaxPacketSize); | |
ceb4972a | 445 | debug("if %d, ep %d\n", ifno, epno); |
6f5794a6 | 446 | break; |
6497c667 | 447 | case USB_DT_SS_ENDPOINT_COMP: |
eaf3e613 JW |
448 | if (head->bLength != USB_DT_SS_EP_COMP_SIZE) { |
449 | printf("ERROR: Invalid USB EPC length (%d)\n", | |
450 | head->bLength); | |
451 | break; | |
452 | } | |
453 | if (index + USB_DT_SS_EP_COMP_SIZE > | |
454 | dev->config.desc.wTotalLength) { | |
455 | puts("USB EPC descriptor overflowed buffer!\n"); | |
456 | break; | |
457 | } | |
458 | if (ifno < 0 || epno < 0) { | |
459 | puts("EPC descriptor out of order!\n"); | |
460 | break; | |
461 | } | |
6497c667 | 462 | if_desc = &dev->config.if_desc[ifno]; |
eaf3e613 JW |
463 | memcpy(&if_desc->ss_ep_comp_desc[epno], head, |
464 | USB_DT_SS_EP_COMP_SIZE); | |
6497c667 | 465 | break; |
6f5794a6 RB |
466 | default: |
467 | if (head->bLength == 0) | |
5a80b344 | 468 | return -EINVAL; |
6f5794a6 | 469 | |
ceb4972a VG |
470 | debug("unknown Description Type : %x\n", |
471 | head->bDescriptorType); | |
6f5794a6 | 472 | |
ceb4972a | 473 | #ifdef DEBUG |
6f5794a6 | 474 | { |
fad2e1b0 | 475 | unsigned char *ch = (unsigned char *)head; |
ceb4972a VG |
476 | int i; |
477 | ||
6f5794a6 | 478 | for (i = 0; i < head->bLength; i++) |
ceb4972a VG |
479 | debug("%02X ", *ch++); |
480 | debug("\n\n\n"); | |
6f5794a6 | 481 | } |
ceb4972a | 482 | #endif |
6f5794a6 | 483 | break; |
affae2bf | 484 | } |
7455af41 BS |
485 | index += head->bLength; |
486 | head = (struct usb_descriptor_header *)&buffer[index]; | |
affae2bf | 487 | } |
5a80b344 | 488 | return 0; |
affae2bf WD |
489 | } |
490 | ||
491 | /*********************************************************************** | |
492 | * Clears an endpoint | |
493 | * endp: endpoint number in bits 0-3; | |
494 | * direction flag in bit 7 (1 = IN, 0 = OUT) | |
495 | */ | |
496 | int usb_clear_halt(struct usb_device *dev, int pipe) | |
497 | { | |
498 | int result; | |
9c998aa8 | 499 | int endp = usb_pipeendpoint(pipe)|(usb_pipein(pipe)<<7); |
affae2bf WD |
500 | |
501 | result = usb_control_msg(dev, usb_sndctrlpipe(dev, 0), | |
6f5794a6 RB |
502 | USB_REQ_CLEAR_FEATURE, USB_RECIP_ENDPOINT, 0, |
503 | endp, NULL, 0, USB_CNTL_TIMEOUT * 3); | |
affae2bf WD |
504 | |
505 | /* don't clear if failed */ | |
506 | if (result < 0) | |
507 | return result; | |
9c998aa8 | 508 | |
095b8a37 | 509 | /* |
9c998aa8 WD |
510 | * NOTE: we do not get status and verify reset was successful |
511 | * as some devices are reported to lock up upon this check.. | |
512 | */ | |
513 | ||
affae2bf | 514 | usb_endpoint_running(dev, usb_pipeendpoint(pipe), usb_pipeout(pipe)); |
9c998aa8 | 515 | |
affae2bf WD |
516 | /* toggle is reset on clear */ |
517 | usb_settoggle(dev, usb_pipeendpoint(pipe), usb_pipeout(pipe), 0); | |
518 | return 0; | |
519 | } | |
520 | ||
521 | ||
522 | /********************************************************************** | |
523 | * get_descriptor type | |
524 | */ | |
c08b1b26 | 525 | static int usb_get_descriptor(struct usb_device *dev, unsigned char type, |
6f5794a6 | 526 | unsigned char index, void *buf, int size) |
affae2bf WD |
527 | { |
528 | int res; | |
53677ef1 | 529 | res = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0), |
affae2bf WD |
530 | USB_REQ_GET_DESCRIPTOR, USB_DIR_IN, |
531 | (type << 8) + index, 0, | |
532 | buf, size, USB_CNTL_TIMEOUT); | |
533 | return res; | |
534 | } | |
535 | ||
536 | /********************************************************************** | |
537 | * gets configuration cfgno and store it in the buffer | |
538 | */ | |
6f5794a6 RB |
539 | int usb_get_configuration_no(struct usb_device *dev, |
540 | unsigned char *buffer, int cfgno) | |
affae2bf | 541 | { |
53677ef1 | 542 | int result; |
eaf3e613 | 543 | unsigned int length; |
c60795f4 | 544 | struct usb_config_descriptor *config; |
affae2bf | 545 | |
c60795f4 | 546 | config = (struct usb_config_descriptor *)&buffer[0]; |
48867208 RB |
547 | result = usb_get_descriptor(dev, USB_DT_CONFIG, cfgno, buffer, 9); |
548 | if (result < 9) { | |
affae2bf | 549 | if (result < 0) |
6f5794a6 RB |
550 | printf("unable to get descriptor, error %lX\n", |
551 | dev->status); | |
affae2bf | 552 | else |
6f5794a6 | 553 | printf("config descriptor too short " \ |
48867208 | 554 | "(expected %i, got %i)\n", 9, result); |
5a80b344 | 555 | return -EIO; |
affae2bf | 556 | } |
eaf3e613 | 557 | length = le16_to_cpu(config->wTotalLength); |
affae2bf | 558 | |
eaf3e613 JW |
559 | if (length > USB_BUFSIZ) { |
560 | printf("%s: failed to get descriptor - too long: %d\n", | |
561 | __func__, length); | |
5a80b344 | 562 | return -EIO; |
cd0a9de6 WD |
563 | } |
564 | ||
eaf3e613 JW |
565 | result = usb_get_descriptor(dev, USB_DT_CONFIG, cfgno, buffer, length); |
566 | debug("get_conf_no %d Result %d, wLength %d\n", cfgno, result, length); | |
567 | config->wTotalLength = length; /* validated, with CPU byte order */ | |
568 | ||
affae2bf WD |
569 | return result; |
570 | } | |
571 | ||
572 | /******************************************************************** | |
573 | * set address of a device to the value in dev->devnum. | |
574 | * This can only be done by addressing the device via the default address (0) | |
575 | */ | |
c08b1b26 | 576 | static int usb_set_address(struct usb_device *dev) |
affae2bf WD |
577 | { |
578 | int res; | |
579 | ||
ceb4972a | 580 | debug("set address %d\n", dev->devnum); |
6f5794a6 RB |
581 | res = usb_control_msg(dev, usb_snddefctrl(dev), |
582 | USB_REQ_SET_ADDRESS, 0, | |
583 | (dev->devnum), 0, | |
584 | NULL, 0, USB_CNTL_TIMEOUT); | |
affae2bf WD |
585 | return res; |
586 | } | |
587 | ||
588 | /******************************************************************** | |
589 | * set interface number to interface | |
590 | */ | |
591 | int usb_set_interface(struct usb_device *dev, int interface, int alternate) | |
592 | { | |
8f8bd565 | 593 | struct usb_interface *if_face = NULL; |
affae2bf WD |
594 | int ret, i; |
595 | ||
8f8bd565 TR |
596 | for (i = 0; i < dev->config.desc.bNumInterfaces; i++) { |
597 | if (dev->config.if_desc[i].desc.bInterfaceNumber == interface) { | |
affae2bf WD |
598 | if_face = &dev->config.if_desc[i]; |
599 | break; | |
600 | } | |
601 | } | |
602 | if (!if_face) { | |
603 | printf("selecting invalid interface %d", interface); | |
5a80b344 | 604 | return -EINVAL; |
affae2bf | 605 | } |
7455af41 BS |
606 | /* |
607 | * We should return now for devices with only one alternate setting. | |
6f5794a6 RB |
608 | * According to 9.4.10 of the Universal Serial Bus Specification |
609 | * Revision 2.0 such devices can return with a STALL. This results in | |
610 | * some USB sticks timeouting during initialization and then being | |
611 | * unusable in U-Boot. | |
7455af41 BS |
612 | */ |
613 | if (if_face->num_altsetting == 1) | |
614 | return 0; | |
affae2bf | 615 | |
6f5794a6 RB |
616 | ret = usb_control_msg(dev, usb_sndctrlpipe(dev, 0), |
617 | USB_REQ_SET_INTERFACE, USB_RECIP_INTERFACE, | |
618 | alternate, interface, NULL, 0, | |
619 | USB_CNTL_TIMEOUT * 5); | |
620 | if (ret < 0) | |
affae2bf WD |
621 | return ret; |
622 | ||
affae2bf WD |
623 | return 0; |
624 | } | |
625 | ||
626 | /******************************************************************** | |
627 | * set configuration number to configuration | |
628 | */ | |
c08b1b26 | 629 | static int usb_set_configuration(struct usb_device *dev, int configuration) |
affae2bf WD |
630 | { |
631 | int res; | |
ceb4972a | 632 | debug("set configuration %d\n", configuration); |
affae2bf | 633 | /* set setup command */ |
6f5794a6 RB |
634 | res = usb_control_msg(dev, usb_sndctrlpipe(dev, 0), |
635 | USB_REQ_SET_CONFIGURATION, 0, | |
636 | configuration, 0, | |
637 | NULL, 0, USB_CNTL_TIMEOUT); | |
638 | if (res == 0) { | |
affae2bf WD |
639 | dev->toggle[0] = 0; |
640 | dev->toggle[1] = 0; | |
641 | return 0; | |
6f5794a6 | 642 | } else |
5a80b344 | 643 | return -EIO; |
affae2bf WD |
644 | } |
645 | ||
646 | /******************************************************************** | |
647 | * set protocol to protocol | |
648 | */ | |
649 | int usb_set_protocol(struct usb_device *dev, int ifnum, int protocol) | |
650 | { | |
651 | return usb_control_msg(dev, usb_sndctrlpipe(dev, 0), | |
652 | USB_REQ_SET_PROTOCOL, USB_TYPE_CLASS | USB_RECIP_INTERFACE, | |
653 | protocol, ifnum, NULL, 0, USB_CNTL_TIMEOUT); | |
654 | } | |
655 | ||
656 | /******************************************************************** | |
657 | * set idle | |
658 | */ | |
659 | int usb_set_idle(struct usb_device *dev, int ifnum, int duration, int report_id) | |
660 | { | |
661 | return usb_control_msg(dev, usb_sndctrlpipe(dev, 0), | |
662 | USB_REQ_SET_IDLE, USB_TYPE_CLASS | USB_RECIP_INTERFACE, | |
663 | (duration << 8) | report_id, ifnum, NULL, 0, USB_CNTL_TIMEOUT); | |
664 | } | |
665 | ||
666 | /******************************************************************** | |
667 | * get report | |
668 | */ | |
6f5794a6 RB |
669 | int usb_get_report(struct usb_device *dev, int ifnum, unsigned char type, |
670 | unsigned char id, void *buf, int size) | |
affae2bf WD |
671 | { |
672 | return usb_control_msg(dev, usb_rcvctrlpipe(dev, 0), | |
6f5794a6 RB |
673 | USB_REQ_GET_REPORT, |
674 | USB_DIR_IN | USB_TYPE_CLASS | USB_RECIP_INTERFACE, | |
675 | (type << 8) + id, ifnum, buf, size, USB_CNTL_TIMEOUT); | |
affae2bf WD |
676 | } |
677 | ||
678 | /******************************************************************** | |
679 | * get class descriptor | |
680 | */ | |
681 | int usb_get_class_descriptor(struct usb_device *dev, int ifnum, | |
682 | unsigned char type, unsigned char id, void *buf, int size) | |
683 | { | |
684 | return usb_control_msg(dev, usb_rcvctrlpipe(dev, 0), | |
685 | USB_REQ_GET_DESCRIPTOR, USB_RECIP_INTERFACE | USB_DIR_IN, | |
686 | (type << 8) + id, ifnum, buf, size, USB_CNTL_TIMEOUT); | |
687 | } | |
688 | ||
689 | /******************************************************************** | |
690 | * get string index in buffer | |
691 | */ | |
c08b1b26 | 692 | static int usb_get_string(struct usb_device *dev, unsigned short langid, |
6f5794a6 | 693 | unsigned char index, void *buf, int size) |
affae2bf | 694 | { |
9c998aa8 WD |
695 | int i; |
696 | int result; | |
697 | ||
698 | for (i = 0; i < 3; ++i) { | |
699 | /* some devices are flaky */ | |
700 | result = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0), | |
701 | USB_REQ_GET_DESCRIPTOR, USB_DIR_IN, | |
095b8a37 | 702 | (USB_DT_STRING << 8) + index, langid, buf, size, |
9c998aa8 WD |
703 | USB_CNTL_TIMEOUT); |
704 | ||
705 | if (result > 0) | |
706 | break; | |
095b8a37 WD |
707 | } |
708 | ||
9c998aa8 WD |
709 | return result; |
710 | } | |
711 | ||
712 | ||
713 | static void usb_try_string_workarounds(unsigned char *buf, int *length) | |
714 | { | |
715 | int newlength, oldlength = *length; | |
716 | ||
717 | for (newlength = 2; newlength + 1 < oldlength; newlength += 2) | |
718 | if (!isprint(buf[newlength]) || buf[newlength + 1]) | |
719 | break; | |
720 | ||
721 | if (newlength > 2) { | |
722 | buf[0] = newlength; | |
723 | *length = newlength; | |
724 | } | |
affae2bf WD |
725 | } |
726 | ||
9c998aa8 WD |
727 | |
728 | static int usb_string_sub(struct usb_device *dev, unsigned int langid, | |
729 | unsigned int index, unsigned char *buf) | |
730 | { | |
731 | int rc; | |
732 | ||
733 | /* Try to read the string descriptor by asking for the maximum | |
734 | * possible number of bytes */ | |
735 | rc = usb_get_string(dev, langid, index, buf, 255); | |
736 | ||
737 | /* If that failed try to read the descriptor length, then | |
738 | * ask for just that many bytes */ | |
739 | if (rc < 2) { | |
740 | rc = usb_get_string(dev, langid, index, buf, 2); | |
741 | if (rc == 2) | |
742 | rc = usb_get_string(dev, langid, index, buf, buf[0]); | |
743 | } | |
744 | ||
745 | if (rc >= 2) { | |
746 | if (!buf[0] && !buf[1]) | |
747 | usb_try_string_workarounds(buf, &rc); | |
748 | ||
749 | /* There might be extra junk at the end of the descriptor */ | |
750 | if (buf[0] < rc) | |
751 | rc = buf[0]; | |
752 | ||
753 | rc = rc - (rc & 1); /* force a multiple of two */ | |
754 | } | |
755 | ||
756 | if (rc < 2) | |
5a80b344 | 757 | rc = -EINVAL; |
9c998aa8 WD |
758 | |
759 | return rc; | |
760 | } | |
761 | ||
762 | ||
affae2bf WD |
763 | /******************************************************************** |
764 | * usb_string: | |
765 | * Get string index and translate it to ascii. | |
766 | * returns string length (> 0) or error (< 0) | |
767 | */ | |
768 | int usb_string(struct usb_device *dev, int index, char *buf, size_t size) | |
769 | { | |
f5766139 | 770 | ALLOC_CACHE_ALIGN_BUFFER(unsigned char, mybuf, USB_BUFSIZ); |
affae2bf WD |
771 | unsigned char *tbuf; |
772 | int err; | |
773 | unsigned int u, idx; | |
774 | ||
775 | if (size <= 0 || !buf || !index) | |
5a80b344 | 776 | return -EINVAL; |
affae2bf | 777 | buf[0] = 0; |
d0ff51ba | 778 | tbuf = &mybuf[0]; |
affae2bf WD |
779 | |
780 | /* get langid for strings if it's not yet known */ | |
781 | if (!dev->have_langid) { | |
9c998aa8 | 782 | err = usb_string_sub(dev, 0, 0, tbuf); |
affae2bf | 783 | if (err < 0) { |
ceb4972a VG |
784 | debug("error getting string descriptor 0 " \ |
785 | "(error=%lx)\n", dev->status); | |
5a80b344 | 786 | return -EIO; |
affae2bf | 787 | } else if (tbuf[0] < 4) { |
ceb4972a | 788 | debug("string descriptor 0 too short\n"); |
5a80b344 | 789 | return -EIO; |
affae2bf WD |
790 | } else { |
791 | dev->have_langid = -1; | |
6f5794a6 | 792 | dev->string_langid = tbuf[2] | (tbuf[3] << 8); |
affae2bf | 793 | /* always use the first langid listed */ |
ceb4972a VG |
794 | debug("USB device number %d default " \ |
795 | "language ID 0x%x\n", | |
796 | dev->devnum, dev->string_langid); | |
affae2bf WD |
797 | } |
798 | } | |
cd0a9de6 | 799 | |
9c998aa8 | 800 | err = usb_string_sub(dev, dev->string_langid, index, tbuf); |
affae2bf WD |
801 | if (err < 0) |
802 | return err; | |
9c998aa8 | 803 | |
affae2bf WD |
804 | size--; /* leave room for trailing NULL char in output buffer */ |
805 | for (idx = 0, u = 2; u < err; u += 2) { | |
806 | if (idx >= size) | |
807 | break; | |
808 | if (tbuf[u+1]) /* high byte */ | |
809 | buf[idx++] = '?'; /* non-ASCII character */ | |
810 | else | |
811 | buf[idx++] = tbuf[u]; | |
812 | } | |
813 | buf[idx] = 0; | |
814 | err = idx; | |
815 | return err; | |
816 | } | |
817 | ||
818 | ||
819 | /******************************************************************** | |
820 | * USB device handling: | |
821 | * the USB device are static allocated [USB_MAX_DEVICE]. | |
822 | */ | |
823 | ||
824 | ||
825 | /* returns a pointer to the device with the index [index]. | |
826 | * if the device is not assigned (dev->devnum==-1) returns NULL | |
827 | */ | |
6f5794a6 | 828 | struct usb_device *usb_get_dev_index(int index) |
affae2bf | 829 | { |
6f5794a6 | 830 | if (usb_dev[index].devnum == -1) |
affae2bf WD |
831 | return NULL; |
832 | else | |
833 | return &usb_dev[index]; | |
834 | } | |
835 | ||
affae2bf WD |
836 | /* returns a pointer of a new device structure or NULL, if |
837 | * no device struct is available | |
838 | */ | |
c7e3b2b5 | 839 | struct usb_device *usb_alloc_new_device(void *controller) |
affae2bf WD |
840 | { |
841 | int i; | |
ceb4972a | 842 | debug("New Device %d\n", dev_index); |
6f5794a6 RB |
843 | if (dev_index == USB_MAX_DEVICE) { |
844 | printf("ERROR, too many USB Devices, max=%d\n", USB_MAX_DEVICE); | |
affae2bf WD |
845 | return NULL; |
846 | } | |
6f5794a6 RB |
847 | /* default Address is 0, real addresses start with 1 */ |
848 | usb_dev[dev_index].devnum = dev_index + 1; | |
849 | usb_dev[dev_index].maxchild = 0; | |
850 | for (i = 0; i < USB_MAXCHILDREN; i++) | |
851 | usb_dev[dev_index].children[i] = NULL; | |
852 | usb_dev[dev_index].parent = NULL; | |
c7e3b2b5 | 853 | usb_dev[dev_index].controller = controller; |
affae2bf | 854 | dev_index++; |
6f5794a6 | 855 | return &usb_dev[dev_index - 1]; |
affae2bf WD |
856 | } |
857 | ||
359439d2 MC |
858 | /* |
859 | * Free the newly created device node. | |
860 | * Called in error cases where configuring a newly attached | |
861 | * device fails for some reason. | |
862 | */ | |
863 | void usb_free_device(void) | |
864 | { | |
865 | dev_index--; | |
ceb4972a | 866 | debug("Freeing device node: %d\n", dev_index); |
359439d2 MC |
867 | memset(&usb_dev[dev_index], 0, sizeof(struct usb_device)); |
868 | usb_dev[dev_index].devnum = -1; | |
869 | } | |
affae2bf | 870 | |
5853e133 VG |
871 | /* |
872 | * XHCI issues Enable Slot command and thereafter | |
873 | * allocates device contexts. Provide a weak alias | |
874 | * function for the purpose, so that XHCI overrides it | |
875 | * and EHCI/OHCI just work out of the box. | |
876 | */ | |
877 | __weak int usb_alloc_device(struct usb_device *udev) | |
878 | { | |
879 | return 0; | |
880 | } | |
affae2bf WD |
881 | /* |
882 | * By the time we get here, the device has gotten a new device ID | |
883 | * and is in the default state. We need to identify the thing and | |
884 | * get the ball rolling.. | |
885 | * | |
886 | * Returns 0 for success, != 0 for error. | |
887 | */ | |
23faf2bc | 888 | int usb_new_device(struct usb_device *dev) |
affae2bf WD |
889 | { |
890 | int addr, err; | |
891 | int tmp; | |
f5766139 | 892 | ALLOC_CACHE_ALIGN_BUFFER(unsigned char, tmpbuf, USB_BUFSIZ); |
affae2bf | 893 | |
5853e133 VG |
894 | /* |
895 | * Allocate usb 3.0 device context. | |
896 | * USB 3.0 (xHCI) protocol tries to allocate device slot | |
897 | * and related data structures first. This call does that. | |
898 | * Refer to sec 4.3.2 in xHCI spec rev1.0 | |
899 | */ | |
900 | if (usb_alloc_device(dev)) { | |
901 | printf("Cannot allocate device context to get SLOT_ID\n"); | |
5a80b344 | 902 | return -EINVAL; |
5853e133 VG |
903 | } |
904 | ||
affae2bf WD |
905 | /* We still haven't set the Address yet */ |
906 | addr = dev->devnum; | |
907 | dev->devnum = 0; | |
9c998aa8 | 908 | |
c9e8436b RB |
909 | #ifdef CONFIG_LEGACY_USB_INIT_SEQ |
910 | /* this is the old and known way of initializing devices, it is | |
911 | * different than what Windows and Linux are doing. Windows and Linux | |
912 | * both retrieve 64 bytes while reading the device descriptor | |
913 | * Several USB stick devices report ERR: CTL_TIMEOUT, caused by an | |
914 | * invalid header while reading 8 bytes as device descriptor. */ | |
915 | dev->descriptor.bMaxPacketSize0 = 8; /* Start off at 8 bytes */ | |
48867208 | 916 | dev->maxpacketsize = PACKET_SIZE_8; |
de39f8c1 | 917 | dev->epmaxpacketin[0] = 8; |
c9e8436b RB |
918 | dev->epmaxpacketout[0] = 8; |
919 | ||
80ab414a | 920 | err = usb_get_descriptor(dev, USB_DT_DEVICE, 0, tmpbuf, 8); |
c9e8436b RB |
921 | if (err < 8) { |
922 | printf("\n USB device not responding, " \ | |
de39f8c1 | 923 | "giving up (status=%lX)\n", dev->status); |
5a80b344 | 924 | return -EIO; |
c9e8436b | 925 | } |
80ab414a | 926 | memcpy(&dev->descriptor, tmpbuf, 8); |
c9e8436b | 927 | #else |
48867208 RB |
928 | /* This is a Windows scheme of initialization sequence, with double |
929 | * reset of the device (Linux uses the same sequence) | |
c9e8436b RB |
930 | * Some equipment is said to work only with such init sequence; this |
931 | * patch is based on the work by Alan Stern: | |
de39f8c1 MT |
932 | * http://sourceforge.net/mailarchive/forum.php? |
933 | * thread_id=5729457&forum_id=5398 | |
9c998aa8 | 934 | */ |
5853e133 | 935 | __maybe_unused struct usb_device_descriptor *desc; |
9c998aa8 WD |
936 | struct usb_device *parent = dev->parent; |
937 | unsigned short portstatus; | |
938 | ||
939 | /* send 64-byte GET-DEVICE-DESCRIPTOR request. Since the descriptor is | |
940 | * only 18 bytes long, this will terminate with a short packet. But if | |
941 | * the maxpacket size is 8 or 16 the device may be waiting to transmit | |
c9e8436b | 942 | * some more, or keeps on retransmitting the 8 byte header. */ |
9c998aa8 WD |
943 | |
944 | desc = (struct usb_device_descriptor *)tmpbuf; | |
c9e8436b | 945 | dev->descriptor.bMaxPacketSize0 = 64; /* Start off at 64 bytes */ |
48867208 RB |
946 | /* Default to 64 byte max packet size */ |
947 | dev->maxpacketsize = PACKET_SIZE_64; | |
de39f8c1 | 948 | dev->epmaxpacketin[0] = 64; |
c9e8436b | 949 | dev->epmaxpacketout[0] = 64; |
48867208 | 950 | |
5853e133 VG |
951 | /* |
952 | * XHCI needs to issue a Address device command to setup | |
953 | * proper device context structures, before it can interact | |
954 | * with the device. So a get_descriptor will fail before any | |
955 | * of that is done for XHCI unlike EHCI. | |
956 | */ | |
957 | #ifndef CONFIG_USB_XHCI | |
48867208 | 958 | err = usb_get_descriptor(dev, USB_DT_DEVICE, 0, desc, 64); |
25c06736 SW |
959 | /* |
960 | * Validate we've received only at least 8 bytes, not that we've | |
961 | * received the entire descriptor. The reasoning is: | |
962 | * - The code only uses fields in the first 8 bytes, so that's all we | |
963 | * need to have fetched at this stage. | |
964 | * - The smallest maxpacket size is 8 bytes. Before we know the actual | |
965 | * maxpacket the device uses, the USB controller may only accept a | |
966 | * single packet. Consequently we are only guaranteed to receive 1 | |
967 | * packet (at least 8 bytes) even in a non-error case. | |
968 | * | |
969 | * At least the DWC2 controller needs to be programmed with the number | |
970 | * of packets in addition to the number of bytes. A request for 64 | |
971 | * bytes of data with the maxpacket guessed as 64 (above) yields a | |
972 | * request for 1 packet. | |
973 | */ | |
974 | if (err < 8) { | |
ceb4972a | 975 | debug("usb_new_device: usb_get_descriptor() failed\n"); |
5a80b344 | 976 | return -EIO; |
9c998aa8 | 977 | } |
48867208 | 978 | |
9c998aa8 | 979 | dev->descriptor.bMaxPacketSize0 = desc->bMaxPacketSize0; |
99c3491b VG |
980 | /* |
981 | * Fetch the device class, driver can use this info | |
982 | * to differentiate between HUB and DEVICE. | |
983 | */ | |
984 | dev->descriptor.bDeviceClass = desc->bDeviceClass; | |
5853e133 | 985 | #endif |
095b8a37 | 986 | |
9c998aa8 | 987 | if (parent) { |
9c998aa8 | 988 | /* reset the port for the second time */ |
f7b9baf7 | 989 | err = hub_port_reset(dev->parent, dev->portnr - 1, &portstatus); |
9c998aa8 | 990 | if (err < 0) { |
f7b9baf7 | 991 | printf("\n Couldn't reset port %i\n", dev->portnr); |
5a80b344 | 992 | return -EIO; |
9c998aa8 | 993 | } |
90cdc103 HG |
994 | } else { |
995 | usb_reset_root_port(); | |
9c998aa8 | 996 | } |
9c998aa8 WD |
997 | #endif |
998 | ||
de39f8c1 | 999 | dev->epmaxpacketin[0] = dev->descriptor.bMaxPacketSize0; |
affae2bf WD |
1000 | dev->epmaxpacketout[0] = dev->descriptor.bMaxPacketSize0; |
1001 | switch (dev->descriptor.bMaxPacketSize0) { | |
de39f8c1 MT |
1002 | case 8: |
1003 | dev->maxpacketsize = PACKET_SIZE_8; | |
1004 | break; | |
1005 | case 16: | |
1006 | dev->maxpacketsize = PACKET_SIZE_16; | |
1007 | break; | |
1008 | case 32: | |
1009 | dev->maxpacketsize = PACKET_SIZE_32; | |
1010 | break; | |
1011 | case 64: | |
1012 | dev->maxpacketsize = PACKET_SIZE_64; | |
1013 | break; | |
04ee6ee2 PK |
1014 | default: |
1015 | printf("usb_new_device: invalid max packet size\n"); | |
1016 | return -EIO; | |
affae2bf WD |
1017 | } |
1018 | dev->devnum = addr; | |
1019 | ||
1020 | err = usb_set_address(dev); /* set address */ | |
1021 | ||
1022 | if (err < 0) { | |
6f5794a6 RB |
1023 | printf("\n USB device not accepting new address " \ |
1024 | "(error=%lX)\n", dev->status); | |
5a80b344 | 1025 | return -EIO; |
affae2bf WD |
1026 | } |
1027 | ||
5b84dd67 | 1028 | mdelay(10); /* Let the SET_ADDRESS settle */ |
affae2bf WD |
1029 | |
1030 | tmp = sizeof(dev->descriptor); | |
1031 | ||
6f5794a6 | 1032 | err = usb_get_descriptor(dev, USB_DT_DEVICE, 0, |
80ab414a | 1033 | tmpbuf, sizeof(dev->descriptor)); |
affae2bf WD |
1034 | if (err < tmp) { |
1035 | if (err < 0) | |
6f5794a6 RB |
1036 | printf("unable to get device descriptor (error=%d)\n", |
1037 | err); | |
affae2bf | 1038 | else |
6f5794a6 RB |
1039 | printf("USB device descriptor short read " \ |
1040 | "(expected %i, got %i)\n", tmp, err); | |
5a80b344 | 1041 | return -EIO; |
affae2bf | 1042 | } |
80ab414a | 1043 | memcpy(&dev->descriptor, tmpbuf, sizeof(dev->descriptor)); |
affae2bf | 1044 | /* correct le values */ |
c918261c CE |
1045 | le16_to_cpus(&dev->descriptor.bcdUSB); |
1046 | le16_to_cpus(&dev->descriptor.idVendor); | |
1047 | le16_to_cpus(&dev->descriptor.idProduct); | |
1048 | le16_to_cpus(&dev->descriptor.bcdDevice); | |
affae2bf | 1049 | /* only support for one config for now */ |
8b8d779d VP |
1050 | err = usb_get_configuration_no(dev, tmpbuf, 0); |
1051 | if (err < 0) { | |
1052 | printf("usb_new_device: Cannot read configuration, " \ | |
1053 | "skipping device %04x:%04x\n", | |
1054 | dev->descriptor.idVendor, dev->descriptor.idProduct); | |
5a80b344 | 1055 | return -EIO; |
8b8d779d | 1056 | } |
f5766139 | 1057 | usb_parse_config(dev, tmpbuf, 0); |
affae2bf WD |
1058 | usb_set_maxpacket(dev); |
1059 | /* we set the default configuration here */ | |
8f8bd565 | 1060 | if (usb_set_configuration(dev, dev->config.desc.bConfigurationValue)) { |
6f5794a6 RB |
1061 | printf("failed to set default configuration " \ |
1062 | "len %d, status %lX\n", dev->act_len, dev->status); | |
5a80b344 | 1063 | return -EIO; |
affae2bf | 1064 | } |
ceb4972a VG |
1065 | debug("new device strings: Mfr=%d, Product=%d, SerialNumber=%d\n", |
1066 | dev->descriptor.iManufacturer, dev->descriptor.iProduct, | |
1067 | dev->descriptor.iSerialNumber); | |
affae2bf WD |
1068 | memset(dev->mf, 0, sizeof(dev->mf)); |
1069 | memset(dev->prod, 0, sizeof(dev->prod)); | |
1070 | memset(dev->serial, 0, sizeof(dev->serial)); | |
1071 | if (dev->descriptor.iManufacturer) | |
6f5794a6 RB |
1072 | usb_string(dev, dev->descriptor.iManufacturer, |
1073 | dev->mf, sizeof(dev->mf)); | |
affae2bf | 1074 | if (dev->descriptor.iProduct) |
6f5794a6 RB |
1075 | usb_string(dev, dev->descriptor.iProduct, |
1076 | dev->prod, sizeof(dev->prod)); | |
affae2bf | 1077 | if (dev->descriptor.iSerialNumber) |
6f5794a6 RB |
1078 | usb_string(dev, dev->descriptor.iSerialNumber, |
1079 | dev->serial, sizeof(dev->serial)); | |
ceb4972a VG |
1080 | debug("Manufacturer %s\n", dev->mf); |
1081 | debug("Product %s\n", dev->prod); | |
1082 | debug("SerialNumber %s\n", dev->serial); | |
affae2bf | 1083 | /* now prode if the device is a hub */ |
6f5794a6 | 1084 | usb_hub_probe(dev, 0); |
affae2bf WD |
1085 | return 0; |
1086 | } | |
1087 | ||
16297cfb | 1088 | __weak |
bba67914 | 1089 | int board_usb_init(int index, enum usb_init_type init) |
16297cfb MZ |
1090 | { |
1091 | return 0; | |
1092 | } | |
db378d78 KVA |
1093 | |
1094 | __weak | |
1095 | int board_usb_cleanup(int index, enum usb_init_type init) | |
1096 | { | |
1097 | return 0; | |
1098 | } | |
affae2bf | 1099 | /* EOF */ |