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