3 * Most of this source has been derived from the Linux USB
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)
16 * (C) Copyright 2001 Denis Peter, MPL AG Switzerland
18 * See file CREDITS for list of people who contributed to this
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.
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.
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,
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
45 * For each transfer (except "Interrupt") we wait for completion.
49 #include <asm/processor.h>
50 #include <linux/compiler.h>
51 #include <linux/ctype.h>
52 #include <asm/byteorder.h>
53 #include <asm/unaligned.h>
57 #include <asm/4xx_pci.h>
62 #define USB_HUB_DEBUG 1
65 #define USB_HUB_DEBUG 0
68 #define USB_PRINTF(fmt, args...) debug_cond(USB_DEBUG, fmt, ##args)
69 #define USB_HUB_PRINTF(fmt, args...) debug_cond(USB_HUB_DEBUG, fmt, ##args)
71 #define USB_BUFSIZ 512
73 static struct usb_device usb_dev[USB_MAX_DEVICE];
75 static int asynch_allowed;
77 char usb_started; /* flag for the started/stopped USB status */
79 #ifndef CONFIG_USB_MAX_CONTROLLER_COUNT
80 #define CONFIG_USB_MAX_CONTROLLER_COUNT 1
83 /***************************************************************************
89 struct usb_device *dev;
90 int i, start_index = 0;
96 /* first make all devices unknown */
97 for (i = 0; i < USB_MAX_DEVICE; i++) {
98 memset(&usb_dev[i], 0, sizeof(struct usb_device));
99 usb_dev[i].devnum = -1;
102 /* init low_level USB */
103 for (i = 0; i < CONFIG_USB_MAX_CONTROLLER_COUNT; i++) {
104 /* init low_level USB */
105 printf("USB%d: ", i);
106 if (usb_lowlevel_init(i, &ctrl)) {
107 puts("lowlevel init failed\n");
111 * lowlevel init is OK, now scan the bus for devices
112 * i.e. search HUBs and configure them
114 start_index = dev_index;
115 printf("scanning bus %d for devices... ", i);
116 dev = usb_alloc_new_device(ctrl);
118 * device 0 is always present
119 * (root hub, so let it analyze)
124 if (start_index == dev_index)
125 puts("No USB Device found\n");
127 printf("%d USB Device(s) found\n",
128 dev_index - start_index);
133 USB_PRINTF("scan end\n");
134 /* if we were not able to find at least one working bus, bail out */
136 puts("USB error: all controllers failed lowlevel init\n");
143 /******************************************************************************
144 * Stop USB this stops the LowLevel Part and deregisters USB devices.
155 for (i = 0; i < CONFIG_USB_MAX_CONTROLLER_COUNT; i++) {
156 if (usb_lowlevel_stop(i))
157 printf("failed to stop USB controller %d\n", i);
165 * disables the asynch behaviour of the control message. This is used for data
166 * transfers that uses the exclusiv access to the control and bulk messages.
167 * Returns the old value so it can be restored later.
169 int usb_disable_asynch(int disable)
171 int old_value = asynch_allowed;
173 asynch_allowed = !disable;
178 /*-------------------------------------------------------------------
184 * submits an Interrupt Message
186 int usb_submit_int_msg(struct usb_device *dev, unsigned long pipe,
187 void *buffer, int transfer_len, int interval)
189 return submit_int_msg(dev, pipe, buffer, transfer_len, interval);
193 * submits a control message and waits for comletion (at least timeout * 1ms)
194 * If timeout is 0, we don't wait for completion (used as example to set and
195 * clear keyboards LEDs). For data transfers, (storage transfers) we don't
196 * allow control messages with 0 timeout, by previousely resetting the flag
197 * asynch_allowed (usb_disable_asynch(1)).
198 * returns the transfered length if OK or -1 if error. The transfered length
199 * and the current status are stored in the dev->act_len and dev->status.
201 int usb_control_msg(struct usb_device *dev, unsigned int pipe,
202 unsigned char request, unsigned char requesttype,
203 unsigned short value, unsigned short index,
204 void *data, unsigned short size, int timeout)
206 ALLOC_CACHE_ALIGN_BUFFER(struct devrequest, setup_packet, 1);
208 if ((timeout == 0) && (!asynch_allowed)) {
209 /* request for a asynch control pipe is not allowed */
213 /* set setup command */
214 setup_packet->requesttype = requesttype;
215 setup_packet->request = request;
216 setup_packet->value = cpu_to_le16(value);
217 setup_packet->index = cpu_to_le16(index);
218 setup_packet->length = cpu_to_le16(size);
219 USB_PRINTF("usb_control_msg: request: 0x%X, requesttype: 0x%X, " \
220 "value 0x%X index 0x%X length 0x%X\n",
221 request, requesttype, value, index, size);
222 dev->status = USB_ST_NOT_PROC; /*not yet processed */
224 if (submit_control_msg(dev, pipe, data, size, setup_packet) < 0)
230 * Wait for status to update until timeout expires, USB driver
231 * interrupt handler may set the status when the USB operation has
235 if (!((volatile unsigned long)dev->status & USB_ST_NOT_PROC))
246 /*-------------------------------------------------------------------
247 * submits bulk message, and waits for completion. returns 0 if Ok or
249 * synchronous behavior
251 int usb_bulk_msg(struct usb_device *dev, unsigned int pipe,
252 void *data, int len, int *actual_length, int timeout)
256 dev->status = USB_ST_NOT_PROC; /*not yet processed */
257 if (submit_bulk_msg(dev, pipe, data, len) < 0)
260 if (!((volatile unsigned long)dev->status & USB_ST_NOT_PROC))
264 *actual_length = dev->act_len;
265 if (dev->status == 0)
272 /*-------------------------------------------------------------------
277 * returns the max packet size, depending on the pipe direction and
278 * the configurations values
280 int usb_maxpacket(struct usb_device *dev, unsigned long pipe)
282 /* direction is out -> use emaxpacket out */
283 if ((pipe & USB_DIR_IN) == 0)
284 return dev->epmaxpacketout[((pipe>>15) & 0xf)];
286 return dev->epmaxpacketin[((pipe>>15) & 0xf)];
290 * The routine usb_set_maxpacket_ep() is extracted from the loop of routine
291 * usb_set_maxpacket(), because the optimizer of GCC 4.x chokes on this routine
292 * when it is inlined in 1 single routine. What happens is that the register r3
293 * is used as loop-count 'i', but gets overwritten later on.
294 * This is clearly a compiler bug, but it is easier to workaround it here than
295 * to update the compiler (Occurs with at least several GCC 4.{1,2},x
296 * CodeSourcery compilers like e.g. 2007q3, 2008q1, 2008q3 lite editions on ARM)
298 * NOTE: Similar behaviour was observed with GCC4.6 on ARMv5.
301 usb_set_maxpacket_ep(struct usb_device *dev, int if_idx, int ep_idx)
304 struct usb_endpoint_descriptor *ep;
305 u16 ep_wMaxPacketSize;
307 ep = &dev->config.if_desc[if_idx].ep_desc[ep_idx];
309 b = ep->bEndpointAddress & USB_ENDPOINT_NUMBER_MASK;
310 ep_wMaxPacketSize = get_unaligned(&ep->wMaxPacketSize);
312 if ((ep->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) ==
313 USB_ENDPOINT_XFER_CONTROL) {
314 /* Control => bidirectional */
315 dev->epmaxpacketout[b] = ep_wMaxPacketSize;
316 dev->epmaxpacketin[b] = ep_wMaxPacketSize;
317 USB_PRINTF("##Control EP epmaxpacketout/in[%d] = %d\n",
318 b, dev->epmaxpacketin[b]);
320 if ((ep->bEndpointAddress & 0x80) == 0) {
322 if (ep_wMaxPacketSize > dev->epmaxpacketout[b]) {
323 dev->epmaxpacketout[b] = ep_wMaxPacketSize;
324 USB_PRINTF("##EP epmaxpacketout[%d] = %d\n",
325 b, dev->epmaxpacketout[b]);
329 if (ep_wMaxPacketSize > dev->epmaxpacketin[b]) {
330 dev->epmaxpacketin[b] = ep_wMaxPacketSize;
331 USB_PRINTF("##EP epmaxpacketin[%d] = %d\n",
332 b, dev->epmaxpacketin[b]);
339 * set the max packed value of all endpoints in the given configuration
341 static int usb_set_maxpacket(struct usb_device *dev)
345 for (i = 0; i < dev->config.desc.bNumInterfaces; i++)
346 for (ii = 0; ii < dev->config.if_desc[i].desc.bNumEndpoints; ii++)
347 usb_set_maxpacket_ep(dev, i, ii);
352 /*******************************************************************************
353 * Parse the config, located in buffer, and fills the dev->config structure.
354 * Note that all little/big endian swapping are done automatically.
356 static int usb_parse_config(struct usb_device *dev,
357 unsigned char *buffer, int cfgno)
359 struct usb_descriptor_header *head;
360 int index, ifno, epno, curr_if_num;
362 u16 ep_wMaxPacketSize;
368 dev->configno = cfgno;
369 head = (struct usb_descriptor_header *) &buffer[0];
370 if (head->bDescriptorType != USB_DT_CONFIG) {
371 printf(" ERROR: NOT USB_CONFIG_DESC %x\n",
372 head->bDescriptorType);
375 memcpy(&dev->config, buffer, buffer[0]);
376 le16_to_cpus(&(dev->config.desc.wTotalLength));
377 dev->config.no_of_if = 0;
379 index = dev->config.desc.bLength;
380 /* Ok the first entry must be a configuration entry,
381 * now process the others */
382 head = (struct usb_descriptor_header *) &buffer[index];
383 while (index + 1 < dev->config.desc.wTotalLength) {
384 switch (head->bDescriptorType) {
385 case USB_DT_INTERFACE:
386 if (((struct usb_interface_descriptor *) \
387 &buffer[index])->bInterfaceNumber != curr_if_num) {
388 /* this is a new interface, copy new desc */
389 ifno = dev->config.no_of_if;
390 dev->config.no_of_if++;
391 memcpy(&dev->config.if_desc[ifno],
392 &buffer[index], buffer[index]);
393 dev->config.if_desc[ifno].no_of_ep = 0;
394 dev->config.if_desc[ifno].num_altsetting = 1;
396 dev->config.if_desc[ifno].desc.bInterfaceNumber;
398 /* found alternate setting for the interface */
399 dev->config.if_desc[ifno].num_altsetting++;
402 case USB_DT_ENDPOINT:
403 epno = dev->config.if_desc[ifno].no_of_ep;
404 /* found an endpoint */
405 dev->config.if_desc[ifno].no_of_ep++;
406 memcpy(&dev->config.if_desc[ifno].ep_desc[epno],
407 &buffer[index], buffer[index]);
408 ep_wMaxPacketSize = get_unaligned(&dev->config.\
412 put_unaligned(le16_to_cpu(ep_wMaxPacketSize),
417 USB_PRINTF("if %d, ep %d\n", ifno, epno);
420 if (head->bLength == 0)
423 USB_PRINTF("unknown Description Type : %x\n",
424 head->bDescriptorType);
428 unsigned char *ch = (unsigned char *)head;
430 for (i = 0; i < head->bLength; i++)
431 USB_PRINTF("%02X ", *ch++);
432 USB_PRINTF("\n\n\n");
436 index += head->bLength;
437 head = (struct usb_descriptor_header *)&buffer[index];
442 /***********************************************************************
444 * endp: endpoint number in bits 0-3;
445 * direction flag in bit 7 (1 = IN, 0 = OUT)
447 int usb_clear_halt(struct usb_device *dev, int pipe)
450 int endp = usb_pipeendpoint(pipe)|(usb_pipein(pipe)<<7);
452 result = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
453 USB_REQ_CLEAR_FEATURE, USB_RECIP_ENDPOINT, 0,
454 endp, NULL, 0, USB_CNTL_TIMEOUT * 3);
456 /* don't clear if failed */
461 * NOTE: we do not get status and verify reset was successful
462 * as some devices are reported to lock up upon this check..
465 usb_endpoint_running(dev, usb_pipeendpoint(pipe), usb_pipeout(pipe));
467 /* toggle is reset on clear */
468 usb_settoggle(dev, usb_pipeendpoint(pipe), usb_pipeout(pipe), 0);
473 /**********************************************************************
474 * get_descriptor type
476 static int usb_get_descriptor(struct usb_device *dev, unsigned char type,
477 unsigned char index, void *buf, int size)
480 res = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
481 USB_REQ_GET_DESCRIPTOR, USB_DIR_IN,
482 (type << 8) + index, 0,
483 buf, size, USB_CNTL_TIMEOUT);
487 /**********************************************************************
488 * gets configuration cfgno and store it in the buffer
490 int usb_get_configuration_no(struct usb_device *dev,
491 unsigned char *buffer, int cfgno)
495 struct usb_config_descriptor *config;
497 config = (struct usb_config_descriptor *)&buffer[0];
498 result = usb_get_descriptor(dev, USB_DT_CONFIG, cfgno, buffer, 9);
501 printf("unable to get descriptor, error %lX\n",
504 printf("config descriptor too short " \
505 "(expected %i, got %i)\n", 9, result);
508 tmp = le16_to_cpu(config->wTotalLength);
510 if (tmp > USB_BUFSIZ) {
511 printf("usb_get_configuration_no: failed to get " \
512 "descriptor - too long: %d\n", tmp);
516 result = usb_get_descriptor(dev, USB_DT_CONFIG, cfgno, buffer, tmp);
517 USB_PRINTF("get_conf_no %d Result %d, wLength %d\n",
522 /********************************************************************
523 * set address of a device to the value in dev->devnum.
524 * This can only be done by addressing the device via the default address (0)
526 static int usb_set_address(struct usb_device *dev)
530 USB_PRINTF("set address %d\n", dev->devnum);
531 res = usb_control_msg(dev, usb_snddefctrl(dev),
532 USB_REQ_SET_ADDRESS, 0,
534 NULL, 0, USB_CNTL_TIMEOUT);
538 /********************************************************************
539 * set interface number to interface
541 int usb_set_interface(struct usb_device *dev, int interface, int alternate)
543 struct usb_interface *if_face = NULL;
546 for (i = 0; i < dev->config.desc.bNumInterfaces; i++) {
547 if (dev->config.if_desc[i].desc.bInterfaceNumber == interface) {
548 if_face = &dev->config.if_desc[i];
553 printf("selecting invalid interface %d", interface);
557 * We should return now for devices with only one alternate setting.
558 * According to 9.4.10 of the Universal Serial Bus Specification
559 * Revision 2.0 such devices can return with a STALL. This results in
560 * some USB sticks timeouting during initialization and then being
561 * unusable in U-Boot.
563 if (if_face->num_altsetting == 1)
566 ret = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
567 USB_REQ_SET_INTERFACE, USB_RECIP_INTERFACE,
568 alternate, interface, NULL, 0,
569 USB_CNTL_TIMEOUT * 5);
576 /********************************************************************
577 * set configuration number to configuration
579 static int usb_set_configuration(struct usb_device *dev, int configuration)
582 USB_PRINTF("set configuration %d\n", configuration);
583 /* set setup command */
584 res = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
585 USB_REQ_SET_CONFIGURATION, 0,
587 NULL, 0, USB_CNTL_TIMEOUT);
596 /********************************************************************
597 * set protocol to protocol
599 int usb_set_protocol(struct usb_device *dev, int ifnum, int protocol)
601 return usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
602 USB_REQ_SET_PROTOCOL, USB_TYPE_CLASS | USB_RECIP_INTERFACE,
603 protocol, ifnum, NULL, 0, USB_CNTL_TIMEOUT);
606 /********************************************************************
609 int usb_set_idle(struct usb_device *dev, int ifnum, int duration, int report_id)
611 return usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
612 USB_REQ_SET_IDLE, USB_TYPE_CLASS | USB_RECIP_INTERFACE,
613 (duration << 8) | report_id, ifnum, NULL, 0, USB_CNTL_TIMEOUT);
616 /********************************************************************
619 int usb_get_report(struct usb_device *dev, int ifnum, unsigned char type,
620 unsigned char id, void *buf, int size)
622 return usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
624 USB_DIR_IN | USB_TYPE_CLASS | USB_RECIP_INTERFACE,
625 (type << 8) + id, ifnum, buf, size, USB_CNTL_TIMEOUT);
628 /********************************************************************
629 * get class descriptor
631 int usb_get_class_descriptor(struct usb_device *dev, int ifnum,
632 unsigned char type, unsigned char id, void *buf, int size)
634 return usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
635 USB_REQ_GET_DESCRIPTOR, USB_RECIP_INTERFACE | USB_DIR_IN,
636 (type << 8) + id, ifnum, buf, size, USB_CNTL_TIMEOUT);
639 /********************************************************************
640 * get string index in buffer
642 static int usb_get_string(struct usb_device *dev, unsigned short langid,
643 unsigned char index, void *buf, int size)
648 for (i = 0; i < 3; ++i) {
649 /* some devices are flaky */
650 result = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
651 USB_REQ_GET_DESCRIPTOR, USB_DIR_IN,
652 (USB_DT_STRING << 8) + index, langid, buf, size,
663 static void usb_try_string_workarounds(unsigned char *buf, int *length)
665 int newlength, oldlength = *length;
667 for (newlength = 2; newlength + 1 < oldlength; newlength += 2)
668 if (!isprint(buf[newlength]) || buf[newlength + 1])
678 static int usb_string_sub(struct usb_device *dev, unsigned int langid,
679 unsigned int index, unsigned char *buf)
683 /* Try to read the string descriptor by asking for the maximum
684 * possible number of bytes */
685 rc = usb_get_string(dev, langid, index, buf, 255);
687 /* If that failed try to read the descriptor length, then
688 * ask for just that many bytes */
690 rc = usb_get_string(dev, langid, index, buf, 2);
692 rc = usb_get_string(dev, langid, index, buf, buf[0]);
696 if (!buf[0] && !buf[1])
697 usb_try_string_workarounds(buf, &rc);
699 /* There might be extra junk at the end of the descriptor */
703 rc = rc - (rc & 1); /* force a multiple of two */
713 /********************************************************************
715 * Get string index and translate it to ascii.
716 * returns string length (> 0) or error (< 0)
718 int usb_string(struct usb_device *dev, int index, char *buf, size_t size)
720 ALLOC_CACHE_ALIGN_BUFFER(unsigned char, mybuf, USB_BUFSIZ);
725 if (size <= 0 || !buf || !index)
730 /* get langid for strings if it's not yet known */
731 if (!dev->have_langid) {
732 err = usb_string_sub(dev, 0, 0, tbuf);
734 USB_PRINTF("error getting string descriptor 0 " \
735 "(error=%lx)\n", dev->status);
737 } else if (tbuf[0] < 4) {
738 USB_PRINTF("string descriptor 0 too short\n");
741 dev->have_langid = -1;
742 dev->string_langid = tbuf[2] | (tbuf[3] << 8);
743 /* always use the first langid listed */
744 USB_PRINTF("USB device number %d default " \
745 "language ID 0x%x\n",
746 dev->devnum, dev->string_langid);
750 err = usb_string_sub(dev, dev->string_langid, index, tbuf);
754 size--; /* leave room for trailing NULL char in output buffer */
755 for (idx = 0, u = 2; u < err; u += 2) {
758 if (tbuf[u+1]) /* high byte */
759 buf[idx++] = '?'; /* non-ASCII character */
761 buf[idx++] = tbuf[u];
769 /********************************************************************
770 * USB device handling:
771 * the USB device are static allocated [USB_MAX_DEVICE].
775 /* returns a pointer to the device with the index [index].
776 * if the device is not assigned (dev->devnum==-1) returns NULL
778 struct usb_device *usb_get_dev_index(int index)
780 if (usb_dev[index].devnum == -1)
783 return &usb_dev[index];
786 /* returns a pointer of a new device structure or NULL, if
787 * no device struct is available
789 struct usb_device *usb_alloc_new_device(void *controller)
792 USB_PRINTF("New Device %d\n", dev_index);
793 if (dev_index == USB_MAX_DEVICE) {
794 printf("ERROR, too many USB Devices, max=%d\n", USB_MAX_DEVICE);
797 /* default Address is 0, real addresses start with 1 */
798 usb_dev[dev_index].devnum = dev_index + 1;
799 usb_dev[dev_index].maxchild = 0;
800 for (i = 0; i < USB_MAXCHILDREN; i++)
801 usb_dev[dev_index].children[i] = NULL;
802 usb_dev[dev_index].parent = NULL;
803 usb_dev[dev_index].controller = controller;
805 return &usb_dev[dev_index - 1];
809 * Free the newly created device node.
810 * Called in error cases where configuring a newly attached
811 * device fails for some reason.
813 void usb_free_device(void)
816 USB_PRINTF("Freeing device node: %d\n", dev_index);
817 memset(&usb_dev[dev_index], 0, sizeof(struct usb_device));
818 usb_dev[dev_index].devnum = -1;
822 * By the time we get here, the device has gotten a new device ID
823 * and is in the default state. We need to identify the thing and
824 * get the ball rolling..
826 * Returns 0 for success, != 0 for error.
828 int usb_new_device(struct usb_device *dev)
832 ALLOC_CACHE_ALIGN_BUFFER(unsigned char, tmpbuf, USB_BUFSIZ);
834 /* We still haven't set the Address yet */
838 #ifdef CONFIG_LEGACY_USB_INIT_SEQ
839 /* this is the old and known way of initializing devices, it is
840 * different than what Windows and Linux are doing. Windows and Linux
841 * both retrieve 64 bytes while reading the device descriptor
842 * Several USB stick devices report ERR: CTL_TIMEOUT, caused by an
843 * invalid header while reading 8 bytes as device descriptor. */
844 dev->descriptor.bMaxPacketSize0 = 8; /* Start off at 8 bytes */
845 dev->maxpacketsize = PACKET_SIZE_8;
846 dev->epmaxpacketin[0] = 8;
847 dev->epmaxpacketout[0] = 8;
849 err = usb_get_descriptor(dev, USB_DT_DEVICE, 0, tmpbuf, 8);
851 printf("\n USB device not responding, " \
852 "giving up (status=%lX)\n", dev->status);
855 memcpy(&dev->descriptor, tmpbuf, 8);
857 /* This is a Windows scheme of initialization sequence, with double
858 * reset of the device (Linux uses the same sequence)
859 * Some equipment is said to work only with such init sequence; this
860 * patch is based on the work by Alan Stern:
861 * http://sourceforge.net/mailarchive/forum.php?
862 * thread_id=5729457&forum_id=5398
864 struct usb_device_descriptor *desc;
866 struct usb_device *parent = dev->parent;
867 unsigned short portstatus;
869 /* send 64-byte GET-DEVICE-DESCRIPTOR request. Since the descriptor is
870 * only 18 bytes long, this will terminate with a short packet. But if
871 * the maxpacket size is 8 or 16 the device may be waiting to transmit
872 * some more, or keeps on retransmitting the 8 byte header. */
874 desc = (struct usb_device_descriptor *)tmpbuf;
875 dev->descriptor.bMaxPacketSize0 = 64; /* Start off at 64 bytes */
876 /* Default to 64 byte max packet size */
877 dev->maxpacketsize = PACKET_SIZE_64;
878 dev->epmaxpacketin[0] = 64;
879 dev->epmaxpacketout[0] = 64;
881 err = usb_get_descriptor(dev, USB_DT_DEVICE, 0, desc, 64);
883 USB_PRINTF("usb_new_device: usb_get_descriptor() failed\n");
887 dev->descriptor.bMaxPacketSize0 = desc->bMaxPacketSize0;
889 /* find the port number we're at */
893 for (j = 0; j < parent->maxchild; j++) {
894 if (parent->children[j] == dev) {
900 printf("usb_new_device:cannot locate device's port.\n");
904 /* reset the port for the second time */
905 err = hub_port_reset(dev->parent, port, &portstatus);
907 printf("\n Couldn't reset port %i\n", port);
913 dev->epmaxpacketin[0] = dev->descriptor.bMaxPacketSize0;
914 dev->epmaxpacketout[0] = dev->descriptor.bMaxPacketSize0;
915 switch (dev->descriptor.bMaxPacketSize0) {
917 dev->maxpacketsize = PACKET_SIZE_8;
920 dev->maxpacketsize = PACKET_SIZE_16;
923 dev->maxpacketsize = PACKET_SIZE_32;
926 dev->maxpacketsize = PACKET_SIZE_64;
931 err = usb_set_address(dev); /* set address */
934 printf("\n USB device not accepting new address " \
935 "(error=%lX)\n", dev->status);
939 mdelay(10); /* Let the SET_ADDRESS settle */
941 tmp = sizeof(dev->descriptor);
943 err = usb_get_descriptor(dev, USB_DT_DEVICE, 0,
944 tmpbuf, sizeof(dev->descriptor));
947 printf("unable to get device descriptor (error=%d)\n",
950 printf("USB device descriptor short read " \
951 "(expected %i, got %i)\n", tmp, err);
954 memcpy(&dev->descriptor, tmpbuf, sizeof(dev->descriptor));
955 /* correct le values */
956 le16_to_cpus(&dev->descriptor.bcdUSB);
957 le16_to_cpus(&dev->descriptor.idVendor);
958 le16_to_cpus(&dev->descriptor.idProduct);
959 le16_to_cpus(&dev->descriptor.bcdDevice);
960 /* only support for one config for now */
961 err = usb_get_configuration_no(dev, tmpbuf, 0);
963 printf("usb_new_device: Cannot read configuration, " \
964 "skipping device %04x:%04x\n",
965 dev->descriptor.idVendor, dev->descriptor.idProduct);
968 usb_parse_config(dev, tmpbuf, 0);
969 usb_set_maxpacket(dev);
970 /* we set the default configuration here */
971 if (usb_set_configuration(dev, dev->config.desc.bConfigurationValue)) {
972 printf("failed to set default configuration " \
973 "len %d, status %lX\n", dev->act_len, dev->status);
976 USB_PRINTF("new device strings: Mfr=%d, Product=%d, SerialNumber=%d\n",
977 dev->descriptor.iManufacturer, dev->descriptor.iProduct,
978 dev->descriptor.iSerialNumber);
979 memset(dev->mf, 0, sizeof(dev->mf));
980 memset(dev->prod, 0, sizeof(dev->prod));
981 memset(dev->serial, 0, sizeof(dev->serial));
982 if (dev->descriptor.iManufacturer)
983 usb_string(dev, dev->descriptor.iManufacturer,
984 dev->mf, sizeof(dev->mf));
985 if (dev->descriptor.iProduct)
986 usb_string(dev, dev->descriptor.iProduct,
987 dev->prod, sizeof(dev->prod));
988 if (dev->descriptor.iSerialNumber)
989 usb_string(dev, dev->descriptor.iSerialNumber,
990 dev->serial, sizeof(dev->serial));
991 USB_PRINTF("Manufacturer %s\n", dev->mf);
992 USB_PRINTF("Product %s\n", dev->prod);
993 USB_PRINTF("SerialNumber %s\n", dev->serial);
994 /* now prode if the device is a hub */
995 usb_hub_probe(dev, 0);