blob: 55fff5b1e8380c988baa7ceb89ab2a9e32aa0d76 [file] [log] [blame]
wdenkaffae2b2002-08-17 09:36:01 +00001/*
wdenkaffae2b2002-08-17 09:36:01 +00002 *
3 * Most of this source has been derived from the Linux USB
Wolfgang Denk460c3222005-08-04 01:14:12 +02004 * 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
wdenkaffae2b2002-08-17 09:36:01 +000017 *
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
wdenkaffae2b2002-08-17 09:36:01 +000038/*
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>
Mike Frysinger66cf6412012-04-04 18:44:53 +000050#include <linux/compiler.h>
Wolfgang Denk9c998aa2005-07-21 11:57:57 +020051#include <linux/ctype.h>
Christian Eggersc9182612008-05-21 22:12:00 +020052#include <asm/byteorder.h>
Tom Rinib2fb47f2011-12-15 08:40:51 -070053#include <asm/unaligned.h>
wdenkaffae2b2002-08-17 09:36:01 +000054
wdenkaffae2b2002-08-17 09:36:01 +000055#include <usb.h>
56#ifdef CONFIG_4xx
Stefan Roese3048bcb2007-10-03 15:01:02 +020057#include <asm/4xx_pci.h>
wdenkaffae2b2002-08-17 09:36:01 +000058#endif
59
wdenkcd0a9de2004-02-23 20:48:38 +000060#define USB_BUFSIZ 512
61
wdenkaffae2b2002-08-17 09:36:01 +000062static struct usb_device usb_dev[USB_MAX_DEVICE];
63static int dev_index;
wdenkaffae2b2002-08-17 09:36:01 +000064static int asynch_allowed;
wdenkaffae2b2002-08-17 09:36:01 +000065
Bartlomiej Siekae51aae32006-08-03 23:20:13 +020066char usb_started; /* flag for the started/stopped USB status */
67
Lucas Stach93c25822012-09-26 00:14:36 +020068#ifndef CONFIG_USB_MAX_CONTROLLER_COUNT
69#define CONFIG_USB_MAX_CONTROLLER_COUNT 1
70#endif
wdenkaffae2b2002-08-17 09:36:01 +000071
wdenkaffae2b2002-08-17 09:36:01 +000072/***************************************************************************
73 * Init USB Device
74 */
wdenkaffae2b2002-08-17 09:36:01 +000075int usb_init(void)
76{
Lucas Stach93c25822012-09-26 00:14:36 +020077 void *ctrl;
78 struct usb_device *dev;
79 int i, start_index = 0;
wdenkaffae2b2002-08-17 09:36:01 +000080
Remy Bohmer6f5794a2008-09-16 14:55:43 +020081 dev_index = 0;
82 asynch_allowed = 1;
wdenkaffae2b2002-08-17 09:36:01 +000083 usb_hub_reset();
Lucas Stach93c25822012-09-26 00:14:36 +020084
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
wdenkaffae2b2002-08-17 09:36:01 +000091 /* init low_level USB */
Lucas Stach93c25822012-09-26 00:14:36 +020092 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
Bartlomiej Siekae51aae32006-08-03 23:20:13 +0200119 usb_started = 1;
Lucas Stach93c25822012-09-26 00:14:36 +0200120 }
121
Vivek Gautamceb49722013-04-12 16:34:33 +0530122 debug("scan end\n");
Lucas Stach93c25822012-09-26 00:14:36 +0200123 /* 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");
wdenkaffae2b2002-08-17 09:36:01 +0000126 return -1;
127 }
Lucas Stach93c25822012-09-26 00:14:36 +0200128
129 return 0;
wdenkaffae2b2002-08-17 09:36:01 +0000130}
131
132/******************************************************************************
133 * Stop USB this stops the LowLevel Part and deregisters USB devices.
134 */
135int usb_stop(void)
136{
Lucas Stach93c25822012-09-26 00:14:36 +0200137 int i;
Remy Bohmereba1f2f2008-08-20 11:22:02 +0200138
139 if (usb_started) {
140 asynch_allowed = 1;
141 usb_started = 0;
142 usb_hub_reset();
Lucas Stach93c25822012-09-26 00:14:36 +0200143
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 }
Remy Bohmereba1f2f2008-08-20 11:22:02 +0200148 }
Lucas Stach93c25822012-09-26 00:14:36 +0200149
150 return 0;
wdenkaffae2b2002-08-17 09:36:01 +0000151}
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.
Simon Glass89d48362011-02-16 11:14:33 -0800156 * Returns the old value so it can be restored later.
wdenkaffae2b2002-08-17 09:36:01 +0000157 */
Simon Glass89d48362011-02-16 11:14:33 -0800158int usb_disable_asynch(int disable)
wdenkaffae2b2002-08-17 09:36:01 +0000159{
Simon Glass89d48362011-02-16 11:14:33 -0800160 int old_value = asynch_allowed;
161
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200162 asynch_allowed = !disable;
Simon Glass89d48362011-02-16 11:14:33 -0800163 return old_value;
wdenkaffae2b2002-08-17 09:36:01 +0000164}
165
166
167/*-------------------------------------------------------------------
168 * Message wrappers.
169 *
170 */
171
172/*
173 * submits an Interrupt Message
174 */
175int usb_submit_int_msg(struct usb_device *dev, unsigned long pipe,
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200176 void *buffer, int transfer_len, int interval)
wdenkaffae2b2002-08-17 09:36:01 +0000177{
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200178 return submit_int_msg(dev, pipe, buffer, transfer_len, interval);
wdenkaffae2b2002-08-17 09:36:01 +0000179}
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 */
190int 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{
Puneet Saxenaf5766132012-04-03 14:56:06 +0530195 ALLOC_CACHE_ALIGN_BUFFER(struct devrequest, setup_packet, 1);
Marek Vasute159e482012-02-13 18:58:18 +0000196
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200197 if ((timeout == 0) && (!asynch_allowed)) {
198 /* request for a asynch control pipe is not allowed */
wdenkaffae2b2002-08-17 09:36:01 +0000199 return -1;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200200 }
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200201
wdenkaffae2b2002-08-17 09:36:01 +0000202 /* set setup command */
Puneet Saxenaf5766132012-04-03 14:56:06 +0530203 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);
Vivek Gautamceb49722013-04-12 16:34:33 +0530208 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);
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200211 dev->status = USB_ST_NOT_PROC; /*not yet processed */
wdenkaffae2b2002-08-17 09:36:01 +0000212
Ilya Yanokfd060282012-07-15 04:43:51 +0000213 if (submit_control_msg(dev, pipe, data, size, setup_packet) < 0)
214 return -1;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200215 if (timeout == 0)
wdenkaffae2b2002-08-17 09:36:01 +0000216 return (int)size;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200217
Remy Bohmer84d36b32010-02-01 19:40:47 +0100218 /*
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;
Mike Frysinger5b84dd62012-03-05 13:47:00 +0000226 mdelay(1);
Remy Bohmer48867202008-10-10 10:23:21 +0200227 }
Remy Bohmer84d36b32010-02-01 19:40:47 +0100228 if (dev->status)
229 return -1;
Remy Bohmer48867202008-10-10 10:23:21 +0200230
231 return dev->act_len;
Remy Bohmer84d36b32010-02-01 19:40:47 +0100232
wdenkaffae2b2002-08-17 09:36:01 +0000233}
234
235/*-------------------------------------------------------------------
236 * submits bulk message, and waits for completion. returns 0 if Ok or
237 * -1 if Error.
238 * synchronous behavior
239 */
240int 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;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200245 dev->status = USB_ST_NOT_PROC; /*not yet processed */
Ilya Yanokfd060282012-07-15 04:43:51 +0000246 if (submit_bulk_msg(dev, pipe, data, len) < 0)
247 return -1;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200248 while (timeout--) {
249 if (!((volatile unsigned long)dev->status & USB_ST_NOT_PROC))
wdenkaffae2b2002-08-17 09:36:01 +0000250 break;
Mike Frysinger5b84dd62012-03-05 13:47:00 +0000251 mdelay(1);
wdenkaffae2b2002-08-17 09:36:01 +0000252 }
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200253 *actual_length = dev->act_len;
254 if (dev->status == 0)
wdenkaffae2b2002-08-17 09:36:01 +0000255 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 */
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200269int usb_maxpacket(struct usb_device *dev, unsigned long pipe)
wdenkaffae2b2002-08-17 09:36:01 +0000270{
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200271 /* direction is out -> use emaxpacket out */
272 if ((pipe & USB_DIR_IN) == 0)
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100273 return dev->epmaxpacketout[((pipe>>15) & 0xf)];
wdenkaffae2b2002-08-17 09:36:01 +0000274 else
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100275 return dev->epmaxpacketin[((pipe>>15) & 0xf)];
wdenkaffae2b2002-08-17 09:36:01 +0000276}
277
Marek Vasut5e8baf82011-11-05 23:35:12 +0100278/*
279 * The routine usb_set_maxpacket_ep() is extracted from the loop of routine
Remy Bohmerbe19d322008-09-16 14:55:42 +0200280 * 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)
Marek Vasut5e8baf82011-11-05 23:35:12 +0100286 *
287 * NOTE: Similar behaviour was observed with GCC4.6 on ARMv5.
Remy Bohmerbe19d322008-09-16 14:55:42 +0200288 */
Mike Frysinger66cf6412012-04-04 18:44:53 +0000289static void noinline
Marek Vasut5e8baf82011-11-05 23:35:12 +0100290usb_set_maxpacket_ep(struct usb_device *dev, int if_idx, int ep_idx)
Remy Bohmerbe19d322008-09-16 14:55:42 +0200291{
292 int b;
Marek Vasut5e8baf82011-11-05 23:35:12 +0100293 struct usb_endpoint_descriptor *ep;
Tom Rinib2fb47f2011-12-15 08:40:51 -0700294 u16 ep_wMaxPacketSize;
Marek Vasut5e8baf82011-11-05 23:35:12 +0100295
296 ep = &dev->config.if_desc[if_idx].ep_desc[ep_idx];
Remy Bohmerbe19d322008-09-16 14:55:42 +0200297
298 b = ep->bEndpointAddress & USB_ENDPOINT_NUMBER_MASK;
Tom Rinib2fb47f2011-12-15 08:40:51 -0700299 ep_wMaxPacketSize = get_unaligned(&ep->wMaxPacketSize);
Remy Bohmerbe19d322008-09-16 14:55:42 +0200300
301 if ((ep->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) ==
302 USB_ENDPOINT_XFER_CONTROL) {
303 /* Control => bidirectional */
Tom Rinib2fb47f2011-12-15 08:40:51 -0700304 dev->epmaxpacketout[b] = ep_wMaxPacketSize;
305 dev->epmaxpacketin[b] = ep_wMaxPacketSize;
Vivek Gautamceb49722013-04-12 16:34:33 +0530306 debug("##Control EP epmaxpacketout/in[%d] = %d\n",
307 b, dev->epmaxpacketin[b]);
Remy Bohmerbe19d322008-09-16 14:55:42 +0200308 } else {
309 if ((ep->bEndpointAddress & 0x80) == 0) {
310 /* OUT Endpoint */
Tom Rinib2fb47f2011-12-15 08:40:51 -0700311 if (ep_wMaxPacketSize > dev->epmaxpacketout[b]) {
312 dev->epmaxpacketout[b] = ep_wMaxPacketSize;
Vivek Gautamceb49722013-04-12 16:34:33 +0530313 debug("##EP epmaxpacketout[%d] = %d\n",
314 b, dev->epmaxpacketout[b]);
Remy Bohmerbe19d322008-09-16 14:55:42 +0200315 }
316 } else {
317 /* IN Endpoint */
Tom Rinib2fb47f2011-12-15 08:40:51 -0700318 if (ep_wMaxPacketSize > dev->epmaxpacketin[b]) {
319 dev->epmaxpacketin[b] = ep_wMaxPacketSize;
Vivek Gautamceb49722013-04-12 16:34:33 +0530320 debug("##EP epmaxpacketin[%d] = %d\n",
321 b, dev->epmaxpacketin[b]);
Remy Bohmerbe19d322008-09-16 14:55:42 +0200322 }
323 } /* if out */
324 } /* if control */
325}
326
wdenkaffae2b2002-08-17 09:36:01 +0000327/*
328 * set the max packed value of all endpoints in the given configuration
329 */
Marek Vasutc08b1b22012-02-13 18:58:16 +0000330static int usb_set_maxpacket(struct usb_device *dev)
wdenkaffae2b2002-08-17 09:36:01 +0000331{
Remy Bohmerbe19d322008-09-16 14:55:42 +0200332 int i, ii;
wdenkaffae2b2002-08-17 09:36:01 +0000333
Tom Rix8f8bd562009-10-31 12:37:38 -0500334 for (i = 0; i < dev->config.desc.bNumInterfaces; i++)
335 for (ii = 0; ii < dev->config.if_desc[i].desc.bNumEndpoints; ii++)
Marek Vasut5e8baf82011-11-05 23:35:12 +0100336 usb_set_maxpacket_ep(dev, i, ii);
wdenkaffae2b2002-08-17 09:36:01 +0000337
wdenkaffae2b2002-08-17 09:36:01 +0000338 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 */
Marek Vasutc08b1b22012-02-13 18:58:16 +0000345static int usb_parse_config(struct usb_device *dev,
346 unsigned char *buffer, int cfgno)
wdenkaffae2b2002-08-17 09:36:01 +0000347{
348 struct usb_descriptor_header *head;
Bartlomiej Sieka7455af42006-08-02 00:54:18 +0200349 int index, ifno, epno, curr_if_num;
Tom Rinib2fb47f2011-12-15 08:40:51 -0700350 u16 ep_wMaxPacketSize;
Vivek Gautam605bd752013-04-12 16:34:34 +0530351 struct usb_interface *if_desc = NULL;
wdenkaffae2b2002-08-17 09:36:01 +0000352
Bartlomiej Sieka7455af42006-08-02 00:54:18 +0200353 ifno = -1;
354 epno = -1;
355 curr_if_num = -1;
356
357 dev->configno = cfgno;
358 head = (struct usb_descriptor_header *) &buffer[0];
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200359 if (head->bDescriptorType != USB_DT_CONFIG) {
360 printf(" ERROR: NOT USB_CONFIG_DESC %x\n",
361 head->bDescriptorType);
wdenkaffae2b2002-08-17 09:36:01 +0000362 return -1;
363 }
Bartlomiej Sieka7455af42006-08-02 00:54:18 +0200364 memcpy(&dev->config, buffer, buffer[0]);
Tom Rix8f8bd562009-10-31 12:37:38 -0500365 le16_to_cpus(&(dev->config.desc.wTotalLength));
Bartlomiej Sieka7455af42006-08-02 00:54:18 +0200366 dev->config.no_of_if = 0;
wdenkaffae2b2002-08-17 09:36:01 +0000367
Tom Rix8f8bd562009-10-31 12:37:38 -0500368 index = dev->config.desc.bLength;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200369 /* Ok the first entry must be a configuration entry,
370 * now process the others */
Bartlomiej Sieka7455af42006-08-02 00:54:18 +0200371 head = (struct usb_descriptor_header *) &buffer[index];
Tom Rix8f8bd562009-10-31 12:37:38 -0500372 while (index + 1 < dev->config.desc.wTotalLength) {
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200373 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;
Vivek Gautam605bd752013-04-12 16:34:34 +0530379 if_desc = &dev->config.if_desc[ifno];
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200380 dev->config.no_of_if++;
Vivek Gautam605bd752013-04-12 16:34:34 +0530381 memcpy(if_desc, &buffer[index], buffer[index]);
382 if_desc->no_of_ep = 0;
383 if_desc->num_altsetting = 1;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200384 curr_if_num =
Vivek Gautam605bd752013-04-12 16:34:34 +0530385 if_desc->desc.bInterfaceNumber;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200386 } else {
387 /* found alternate setting for the interface */
Vivek Gautam605bd752013-04-12 16:34:34 +0530388 if (ifno >= 0) {
389 if_desc = &dev->config.if_desc[ifno];
390 if_desc->num_altsetting++;
391 }
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200392 }
393 break;
394 case USB_DT_ENDPOINT:
395 epno = dev->config.if_desc[ifno].no_of_ep;
Vivek Gautam605bd752013-04-12 16:34:34 +0530396 if_desc = &dev->config.if_desc[ifno];
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200397 /* found an endpoint */
Vivek Gautam605bd752013-04-12 16:34:34 +0530398 if_desc->no_of_ep++;
399 memcpy(&if_desc->ep_desc[epno],
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200400 &buffer[index], buffer[index]);
Tom Rinib2fb47f2011-12-15 08:40:51 -0700401 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);
Vivek Gautamceb49722013-04-12 16:34:33 +0530410 debug("if %d, ep %d\n", ifno, epno);
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200411 break;
Vivek Gautam6497c662013-04-12 16:34:38 +0530412 case USB_DT_SS_ENDPOINT_COMP:
413 if_desc = &dev->config.if_desc[ifno];
414 memcpy(&if_desc->ss_ep_comp_desc[epno],
415 &buffer[index], buffer[index]);
416 break;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200417 default:
418 if (head->bLength == 0)
419 return 1;
420
Vivek Gautamceb49722013-04-12 16:34:33 +0530421 debug("unknown Description Type : %x\n",
422 head->bDescriptorType);
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200423
Vivek Gautamceb49722013-04-12 16:34:33 +0530424#ifdef DEBUG
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200425 {
Wolfgang Denkfad2e1b2011-10-05 23:11:19 +0200426 unsigned char *ch = (unsigned char *)head;
Vivek Gautamceb49722013-04-12 16:34:33 +0530427 int i;
428
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200429 for (i = 0; i < head->bLength; i++)
Vivek Gautamceb49722013-04-12 16:34:33 +0530430 debug("%02X ", *ch++);
431 debug("\n\n\n");
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200432 }
Vivek Gautamceb49722013-04-12 16:34:33 +0530433#endif
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200434 break;
wdenkaffae2b2002-08-17 09:36:01 +0000435 }
Bartlomiej Sieka7455af42006-08-02 00:54:18 +0200436 index += head->bLength;
437 head = (struct usb_descriptor_header *)&buffer[index];
wdenkaffae2b2002-08-17 09:36:01 +0000438 }
439 return 1;
440}
441
442/***********************************************************************
443 * Clears an endpoint
444 * endp: endpoint number in bits 0-3;
445 * direction flag in bit 7 (1 = IN, 0 = OUT)
446 */
447int usb_clear_halt(struct usb_device *dev, int pipe)
448{
449 int result;
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200450 int endp = usb_pipeendpoint(pipe)|(usb_pipein(pipe)<<7);
wdenkaffae2b2002-08-17 09:36:01 +0000451
452 result = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200453 USB_REQ_CLEAR_FEATURE, USB_RECIP_ENDPOINT, 0,
454 endp, NULL, 0, USB_CNTL_TIMEOUT * 3);
wdenkaffae2b2002-08-17 09:36:01 +0000455
456 /* don't clear if failed */
457 if (result < 0)
458 return result;
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200459
Wolfgang Denk095b8a32005-08-02 17:06:17 +0200460 /*
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200461 * NOTE: we do not get status and verify reset was successful
462 * as some devices are reported to lock up upon this check..
463 */
464
wdenkaffae2b2002-08-17 09:36:01 +0000465 usb_endpoint_running(dev, usb_pipeendpoint(pipe), usb_pipeout(pipe));
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200466
wdenkaffae2b2002-08-17 09:36:01 +0000467 /* toggle is reset on clear */
468 usb_settoggle(dev, usb_pipeendpoint(pipe), usb_pipeout(pipe), 0);
469 return 0;
470}
471
472
473/**********************************************************************
474 * get_descriptor type
475 */
Marek Vasutc08b1b22012-02-13 18:58:16 +0000476static int usb_get_descriptor(struct usb_device *dev, unsigned char type,
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200477 unsigned char index, void *buf, int size)
wdenkaffae2b2002-08-17 09:36:01 +0000478{
479 int res;
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200480 res = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
wdenkaffae2b2002-08-17 09:36:01 +0000481 USB_REQ_GET_DESCRIPTOR, USB_DIR_IN,
482 (type << 8) + index, 0,
483 buf, size, USB_CNTL_TIMEOUT);
484 return res;
485}
486
487/**********************************************************************
488 * gets configuration cfgno and store it in the buffer
489 */
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200490int usb_get_configuration_no(struct usb_device *dev,
491 unsigned char *buffer, int cfgno)
wdenkaffae2b2002-08-17 09:36:01 +0000492{
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200493 int result;
wdenkaffae2b2002-08-17 09:36:01 +0000494 unsigned int tmp;
Ilya Yanokc60795f2012-11-06 13:48:20 +0000495 struct usb_config_descriptor *config;
wdenkaffae2b2002-08-17 09:36:01 +0000496
Ilya Yanokc60795f2012-11-06 13:48:20 +0000497 config = (struct usb_config_descriptor *)&buffer[0];
Remy Bohmer48867202008-10-10 10:23:21 +0200498 result = usb_get_descriptor(dev, USB_DT_CONFIG, cfgno, buffer, 9);
499 if (result < 9) {
wdenkaffae2b2002-08-17 09:36:01 +0000500 if (result < 0)
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200501 printf("unable to get descriptor, error %lX\n",
502 dev->status);
wdenkaffae2b2002-08-17 09:36:01 +0000503 else
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200504 printf("config descriptor too short " \
Remy Bohmer48867202008-10-10 10:23:21 +0200505 "(expected %i, got %i)\n", 9, result);
wdenkaffae2b2002-08-17 09:36:01 +0000506 return -1;
507 }
Christian Eggersc9182612008-05-21 22:12:00 +0200508 tmp = le16_to_cpu(config->wTotalLength);
wdenkaffae2b2002-08-17 09:36:01 +0000509
wdenkcd0a9de2004-02-23 20:48:38 +0000510 if (tmp > USB_BUFSIZ) {
Vincent Palatin8b8d7792012-07-24 07:12:02 +0000511 printf("usb_get_configuration_no: failed to get " \
512 "descriptor - too long: %d\n", tmp);
wdenkcd0a9de2004-02-23 20:48:38 +0000513 return -1;
514 }
515
wdenkaffae2b2002-08-17 09:36:01 +0000516 result = usb_get_descriptor(dev, USB_DT_CONFIG, cfgno, buffer, tmp);
Vivek Gautamceb49722013-04-12 16:34:33 +0530517 debug("get_conf_no %d Result %d, wLength %d\n", cfgno, result, tmp);
wdenkaffae2b2002-08-17 09:36:01 +0000518 return result;
519}
520
521/********************************************************************
522 * set address of a device to the value in dev->devnum.
523 * This can only be done by addressing the device via the default address (0)
524 */
Marek Vasutc08b1b22012-02-13 18:58:16 +0000525static int usb_set_address(struct usb_device *dev)
wdenkaffae2b2002-08-17 09:36:01 +0000526{
527 int res;
528
Vivek Gautamceb49722013-04-12 16:34:33 +0530529 debug("set address %d\n", dev->devnum);
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200530 res = usb_control_msg(dev, usb_snddefctrl(dev),
531 USB_REQ_SET_ADDRESS, 0,
532 (dev->devnum), 0,
533 NULL, 0, USB_CNTL_TIMEOUT);
wdenkaffae2b2002-08-17 09:36:01 +0000534 return res;
535}
536
537/********************************************************************
538 * set interface number to interface
539 */
540int usb_set_interface(struct usb_device *dev, int interface, int alternate)
541{
Tom Rix8f8bd562009-10-31 12:37:38 -0500542 struct usb_interface *if_face = NULL;
wdenkaffae2b2002-08-17 09:36:01 +0000543 int ret, i;
544
Tom Rix8f8bd562009-10-31 12:37:38 -0500545 for (i = 0; i < dev->config.desc.bNumInterfaces; i++) {
546 if (dev->config.if_desc[i].desc.bInterfaceNumber == interface) {
wdenkaffae2b2002-08-17 09:36:01 +0000547 if_face = &dev->config.if_desc[i];
548 break;
549 }
550 }
551 if (!if_face) {
552 printf("selecting invalid interface %d", interface);
553 return -1;
554 }
Bartlomiej Sieka7455af42006-08-02 00:54:18 +0200555 /*
556 * We should return now for devices with only one alternate setting.
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200557 * According to 9.4.10 of the Universal Serial Bus Specification
558 * Revision 2.0 such devices can return with a STALL. This results in
559 * some USB sticks timeouting during initialization and then being
560 * unusable in U-Boot.
Bartlomiej Sieka7455af42006-08-02 00:54:18 +0200561 */
562 if (if_face->num_altsetting == 1)
563 return 0;
wdenkaffae2b2002-08-17 09:36:01 +0000564
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200565 ret = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
566 USB_REQ_SET_INTERFACE, USB_RECIP_INTERFACE,
567 alternate, interface, NULL, 0,
568 USB_CNTL_TIMEOUT * 5);
569 if (ret < 0)
wdenkaffae2b2002-08-17 09:36:01 +0000570 return ret;
571
wdenkaffae2b2002-08-17 09:36:01 +0000572 return 0;
573}
574
575/********************************************************************
576 * set configuration number to configuration
577 */
Marek Vasutc08b1b22012-02-13 18:58:16 +0000578static int usb_set_configuration(struct usb_device *dev, int configuration)
wdenkaffae2b2002-08-17 09:36:01 +0000579{
580 int res;
Vivek Gautamceb49722013-04-12 16:34:33 +0530581 debug("set configuration %d\n", configuration);
wdenkaffae2b2002-08-17 09:36:01 +0000582 /* set setup command */
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200583 res = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
584 USB_REQ_SET_CONFIGURATION, 0,
585 configuration, 0,
586 NULL, 0, USB_CNTL_TIMEOUT);
587 if (res == 0) {
wdenkaffae2b2002-08-17 09:36:01 +0000588 dev->toggle[0] = 0;
589 dev->toggle[1] = 0;
590 return 0;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200591 } else
wdenkaffae2b2002-08-17 09:36:01 +0000592 return -1;
593}
594
595/********************************************************************
596 * set protocol to protocol
597 */
598int usb_set_protocol(struct usb_device *dev, int ifnum, int protocol)
599{
600 return usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
601 USB_REQ_SET_PROTOCOL, USB_TYPE_CLASS | USB_RECIP_INTERFACE,
602 protocol, ifnum, NULL, 0, USB_CNTL_TIMEOUT);
603}
604
605/********************************************************************
606 * set idle
607 */
608int usb_set_idle(struct usb_device *dev, int ifnum, int duration, int report_id)
609{
610 return usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
611 USB_REQ_SET_IDLE, USB_TYPE_CLASS | USB_RECIP_INTERFACE,
612 (duration << 8) | report_id, ifnum, NULL, 0, USB_CNTL_TIMEOUT);
613}
614
615/********************************************************************
616 * get report
617 */
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200618int usb_get_report(struct usb_device *dev, int ifnum, unsigned char type,
619 unsigned char id, void *buf, int size)
wdenkaffae2b2002-08-17 09:36:01 +0000620{
621 return usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200622 USB_REQ_GET_REPORT,
623 USB_DIR_IN | USB_TYPE_CLASS | USB_RECIP_INTERFACE,
624 (type << 8) + id, ifnum, buf, size, USB_CNTL_TIMEOUT);
wdenkaffae2b2002-08-17 09:36:01 +0000625}
626
627/********************************************************************
628 * get class descriptor
629 */
630int usb_get_class_descriptor(struct usb_device *dev, int ifnum,
631 unsigned char type, unsigned char id, void *buf, int size)
632{
633 return usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
634 USB_REQ_GET_DESCRIPTOR, USB_RECIP_INTERFACE | USB_DIR_IN,
635 (type << 8) + id, ifnum, buf, size, USB_CNTL_TIMEOUT);
636}
637
638/********************************************************************
639 * get string index in buffer
640 */
Marek Vasutc08b1b22012-02-13 18:58:16 +0000641static int usb_get_string(struct usb_device *dev, unsigned short langid,
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200642 unsigned char index, void *buf, int size)
wdenkaffae2b2002-08-17 09:36:01 +0000643{
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200644 int i;
645 int result;
646
647 for (i = 0; i < 3; ++i) {
648 /* some devices are flaky */
649 result = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
650 USB_REQ_GET_DESCRIPTOR, USB_DIR_IN,
Wolfgang Denk095b8a32005-08-02 17:06:17 +0200651 (USB_DT_STRING << 8) + index, langid, buf, size,
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200652 USB_CNTL_TIMEOUT);
653
654 if (result > 0)
655 break;
Wolfgang Denk095b8a32005-08-02 17:06:17 +0200656 }
657
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200658 return result;
wdenkaffae2b2002-08-17 09:36:01 +0000659}
660
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200661
662static void usb_try_string_workarounds(unsigned char *buf, int *length)
663{
664 int newlength, oldlength = *length;
665
666 for (newlength = 2; newlength + 1 < oldlength; newlength += 2)
667 if (!isprint(buf[newlength]) || buf[newlength + 1])
668 break;
669
670 if (newlength > 2) {
671 buf[0] = newlength;
672 *length = newlength;
673 }
674}
675
676
677static int usb_string_sub(struct usb_device *dev, unsigned int langid,
678 unsigned int index, unsigned char *buf)
679{
680 int rc;
681
682 /* Try to read the string descriptor by asking for the maximum
683 * possible number of bytes */
684 rc = usb_get_string(dev, langid, index, buf, 255);
685
686 /* If that failed try to read the descriptor length, then
687 * ask for just that many bytes */
688 if (rc < 2) {
689 rc = usb_get_string(dev, langid, index, buf, 2);
690 if (rc == 2)
691 rc = usb_get_string(dev, langid, index, buf, buf[0]);
692 }
693
694 if (rc >= 2) {
695 if (!buf[0] && !buf[1])
696 usb_try_string_workarounds(buf, &rc);
697
698 /* There might be extra junk at the end of the descriptor */
699 if (buf[0] < rc)
700 rc = buf[0];
701
702 rc = rc - (rc & 1); /* force a multiple of two */
703 }
704
705 if (rc < 2)
Wolfgang Denk095b8a32005-08-02 17:06:17 +0200706 rc = -1;
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200707
708 return rc;
709}
710
711
wdenkaffae2b2002-08-17 09:36:01 +0000712/********************************************************************
713 * usb_string:
714 * Get string index and translate it to ascii.
715 * returns string length (> 0) or error (< 0)
716 */
717int usb_string(struct usb_device *dev, int index, char *buf, size_t size)
718{
Puneet Saxenaf5766132012-04-03 14:56:06 +0530719 ALLOC_CACHE_ALIGN_BUFFER(unsigned char, mybuf, USB_BUFSIZ);
wdenkaffae2b2002-08-17 09:36:01 +0000720 unsigned char *tbuf;
721 int err;
722 unsigned int u, idx;
723
724 if (size <= 0 || !buf || !index)
725 return -1;
726 buf[0] = 0;
Wolfgang Denkd0ff51b2008-07-14 15:19:07 +0200727 tbuf = &mybuf[0];
wdenkaffae2b2002-08-17 09:36:01 +0000728
729 /* get langid for strings if it's not yet known */
730 if (!dev->have_langid) {
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200731 err = usb_string_sub(dev, 0, 0, tbuf);
wdenkaffae2b2002-08-17 09:36:01 +0000732 if (err < 0) {
Vivek Gautamceb49722013-04-12 16:34:33 +0530733 debug("error getting string descriptor 0 " \
734 "(error=%lx)\n", dev->status);
wdenkaffae2b2002-08-17 09:36:01 +0000735 return -1;
736 } else if (tbuf[0] < 4) {
Vivek Gautamceb49722013-04-12 16:34:33 +0530737 debug("string descriptor 0 too short\n");
wdenkaffae2b2002-08-17 09:36:01 +0000738 return -1;
739 } else {
740 dev->have_langid = -1;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200741 dev->string_langid = tbuf[2] | (tbuf[3] << 8);
wdenkaffae2b2002-08-17 09:36:01 +0000742 /* always use the first langid listed */
Vivek Gautamceb49722013-04-12 16:34:33 +0530743 debug("USB device number %d default " \
744 "language ID 0x%x\n",
745 dev->devnum, dev->string_langid);
wdenkaffae2b2002-08-17 09:36:01 +0000746 }
747 }
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200748
749 err = usb_string_sub(dev, dev->string_langid, index, tbuf);
wdenkaffae2b2002-08-17 09:36:01 +0000750 if (err < 0)
751 return err;
wdenkcd0a9de2004-02-23 20:48:38 +0000752
wdenkaffae2b2002-08-17 09:36:01 +0000753 size--; /* leave room for trailing NULL char in output buffer */
754 for (idx = 0, u = 2; u < err; u += 2) {
755 if (idx >= size)
756 break;
757 if (tbuf[u+1]) /* high byte */
758 buf[idx++] = '?'; /* non-ASCII character */
759 else
760 buf[idx++] = tbuf[u];
761 }
762 buf[idx] = 0;
763 err = idx;
764 return err;
765}
766
767
768/********************************************************************
769 * USB device handling:
770 * the USB device are static allocated [USB_MAX_DEVICE].
771 */
772
773
774/* returns a pointer to the device with the index [index].
775 * if the device is not assigned (dev->devnum==-1) returns NULL
776 */
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200777struct usb_device *usb_get_dev_index(int index)
wdenkaffae2b2002-08-17 09:36:01 +0000778{
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200779 if (usb_dev[index].devnum == -1)
wdenkaffae2b2002-08-17 09:36:01 +0000780 return NULL;
781 else
782 return &usb_dev[index];
783}
784
wdenkaffae2b2002-08-17 09:36:01 +0000785/* returns a pointer of a new device structure or NULL, if
786 * no device struct is available
787 */
Lucas Stachc7e3b2b2012-09-26 00:14:34 +0200788struct usb_device *usb_alloc_new_device(void *controller)
wdenkaffae2b2002-08-17 09:36:01 +0000789{
790 int i;
Vivek Gautamceb49722013-04-12 16:34:33 +0530791 debug("New Device %d\n", dev_index);
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200792 if (dev_index == USB_MAX_DEVICE) {
793 printf("ERROR, too many USB Devices, max=%d\n", USB_MAX_DEVICE);
wdenkaffae2b2002-08-17 09:36:01 +0000794 return NULL;
795 }
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200796 /* default Address is 0, real addresses start with 1 */
797 usb_dev[dev_index].devnum = dev_index + 1;
798 usb_dev[dev_index].maxchild = 0;
799 for (i = 0; i < USB_MAXCHILDREN; i++)
800 usb_dev[dev_index].children[i] = NULL;
801 usb_dev[dev_index].parent = NULL;
Lucas Stachc7e3b2b2012-09-26 00:14:34 +0200802 usb_dev[dev_index].controller = controller;
wdenkaffae2b2002-08-17 09:36:01 +0000803 dev_index++;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200804 return &usb_dev[dev_index - 1];
wdenkaffae2b2002-08-17 09:36:01 +0000805}
806
Milind Choudhary359439d2012-12-12 17:55:28 -0800807/*
808 * Free the newly created device node.
809 * Called in error cases where configuring a newly attached
810 * device fails for some reason.
811 */
812void usb_free_device(void)
813{
814 dev_index--;
Vivek Gautamceb49722013-04-12 16:34:33 +0530815 debug("Freeing device node: %d\n", dev_index);
Milind Choudhary359439d2012-12-12 17:55:28 -0800816 memset(&usb_dev[dev_index], 0, sizeof(struct usb_device));
817 usb_dev[dev_index].devnum = -1;
818}
wdenkaffae2b2002-08-17 09:36:01 +0000819
820/*
821 * By the time we get here, the device has gotten a new device ID
822 * and is in the default state. We need to identify the thing and
823 * get the ball rolling..
824 *
825 * Returns 0 for success, != 0 for error.
826 */
Marek Vasut23faf2b2012-02-13 18:58:17 +0000827int usb_new_device(struct usb_device *dev)
wdenkaffae2b2002-08-17 09:36:01 +0000828{
829 int addr, err;
830 int tmp;
Puneet Saxenaf5766132012-04-03 14:56:06 +0530831 ALLOC_CACHE_ALIGN_BUFFER(unsigned char, tmpbuf, USB_BUFSIZ);
wdenkaffae2b2002-08-17 09:36:01 +0000832
wdenkaffae2b2002-08-17 09:36:01 +0000833 /* We still haven't set the Address yet */
834 addr = dev->devnum;
835 dev->devnum = 0;
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200836
Remy Bohmerc9e84362008-09-16 14:55:44 +0200837#ifdef CONFIG_LEGACY_USB_INIT_SEQ
838 /* this is the old and known way of initializing devices, it is
839 * different than what Windows and Linux are doing. Windows and Linux
840 * both retrieve 64 bytes while reading the device descriptor
841 * Several USB stick devices report ERR: CTL_TIMEOUT, caused by an
842 * invalid header while reading 8 bytes as device descriptor. */
843 dev->descriptor.bMaxPacketSize0 = 8; /* Start off at 8 bytes */
Remy Bohmer48867202008-10-10 10:23:21 +0200844 dev->maxpacketsize = PACKET_SIZE_8;
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100845 dev->epmaxpacketin[0] = 8;
Remy Bohmerc9e84362008-09-16 14:55:44 +0200846 dev->epmaxpacketout[0] = 8;
847
Ilya Yanok80ab4142012-07-15 04:43:50 +0000848 err = usb_get_descriptor(dev, USB_DT_DEVICE, 0, tmpbuf, 8);
Remy Bohmerc9e84362008-09-16 14:55:44 +0200849 if (err < 8) {
850 printf("\n USB device not responding, " \
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100851 "giving up (status=%lX)\n", dev->status);
Remy Bohmerc9e84362008-09-16 14:55:44 +0200852 return 1;
853 }
Ilya Yanok80ab4142012-07-15 04:43:50 +0000854 memcpy(&dev->descriptor, tmpbuf, 8);
Remy Bohmerc9e84362008-09-16 14:55:44 +0200855#else
Remy Bohmer48867202008-10-10 10:23:21 +0200856 /* This is a Windows scheme of initialization sequence, with double
857 * reset of the device (Linux uses the same sequence)
Remy Bohmerc9e84362008-09-16 14:55:44 +0200858 * Some equipment is said to work only with such init sequence; this
859 * patch is based on the work by Alan Stern:
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100860 * http://sourceforge.net/mailarchive/forum.php?
861 * thread_id=5729457&forum_id=5398
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200862 */
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200863 struct usb_device_descriptor *desc;
864 int port = -1;
865 struct usb_device *parent = dev->parent;
866 unsigned short portstatus;
867
868 /* send 64-byte GET-DEVICE-DESCRIPTOR request. Since the descriptor is
869 * only 18 bytes long, this will terminate with a short packet. But if
870 * the maxpacket size is 8 or 16 the device may be waiting to transmit
Remy Bohmerc9e84362008-09-16 14:55:44 +0200871 * some more, or keeps on retransmitting the 8 byte header. */
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200872
873 desc = (struct usb_device_descriptor *)tmpbuf;
Remy Bohmerc9e84362008-09-16 14:55:44 +0200874 dev->descriptor.bMaxPacketSize0 = 64; /* Start off at 64 bytes */
Remy Bohmer48867202008-10-10 10:23:21 +0200875 /* Default to 64 byte max packet size */
876 dev->maxpacketsize = PACKET_SIZE_64;
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100877 dev->epmaxpacketin[0] = 64;
Remy Bohmerc9e84362008-09-16 14:55:44 +0200878 dev->epmaxpacketout[0] = 64;
Remy Bohmer48867202008-10-10 10:23:21 +0200879
880 err = usb_get_descriptor(dev, USB_DT_DEVICE, 0, desc, 64);
881 if (err < 0) {
Vivek Gautamceb49722013-04-12 16:34:33 +0530882 debug("usb_new_device: usb_get_descriptor() failed\n");
Remy Bohmer48867202008-10-10 10:23:21 +0200883 return 1;
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200884 }
Remy Bohmer48867202008-10-10 10:23:21 +0200885
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200886 dev->descriptor.bMaxPacketSize0 = desc->bMaxPacketSize0;
Vivek Gautam99c34912013-04-12 16:34:36 +0530887 /*
888 * Fetch the device class, driver can use this info
889 * to differentiate between HUB and DEVICE.
890 */
891 dev->descriptor.bDeviceClass = desc->bDeviceClass;
Wolfgang Denk095b8a32005-08-02 17:06:17 +0200892
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200893 /* find the port number we're at */
894 if (parent) {
Remy Bohmer48867202008-10-10 10:23:21 +0200895 int j;
Wolfgang Denk095b8a32005-08-02 17:06:17 +0200896
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200897 for (j = 0; j < parent->maxchild; j++) {
898 if (parent->children[j] == dev) {
899 port = j;
900 break;
901 }
902 }
903 if (port < 0) {
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200904 printf("usb_new_device:cannot locate device's port.\n");
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200905 return 1;
906 }
907
908 /* reset the port for the second time */
909 err = hub_port_reset(dev->parent, port, &portstatus);
910 if (err < 0) {
911 printf("\n Couldn't reset port %i\n", port);
912 return 1;
913 }
914 }
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200915#endif
916
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100917 dev->epmaxpacketin[0] = dev->descriptor.bMaxPacketSize0;
wdenkaffae2b2002-08-17 09:36:01 +0000918 dev->epmaxpacketout[0] = dev->descriptor.bMaxPacketSize0;
919 switch (dev->descriptor.bMaxPacketSize0) {
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100920 case 8:
921 dev->maxpacketsize = PACKET_SIZE_8;
922 break;
923 case 16:
924 dev->maxpacketsize = PACKET_SIZE_16;
925 break;
926 case 32:
927 dev->maxpacketsize = PACKET_SIZE_32;
928 break;
929 case 64:
930 dev->maxpacketsize = PACKET_SIZE_64;
931 break;
wdenkaffae2b2002-08-17 09:36:01 +0000932 }
933 dev->devnum = addr;
934
935 err = usb_set_address(dev); /* set address */
936
937 if (err < 0) {
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200938 printf("\n USB device not accepting new address " \
939 "(error=%lX)\n", dev->status);
wdenkaffae2b2002-08-17 09:36:01 +0000940 return 1;
941 }
942
Mike Frysinger5b84dd62012-03-05 13:47:00 +0000943 mdelay(10); /* Let the SET_ADDRESS settle */
wdenkaffae2b2002-08-17 09:36:01 +0000944
945 tmp = sizeof(dev->descriptor);
946
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200947 err = usb_get_descriptor(dev, USB_DT_DEVICE, 0,
Ilya Yanok80ab4142012-07-15 04:43:50 +0000948 tmpbuf, sizeof(dev->descriptor));
wdenkaffae2b2002-08-17 09:36:01 +0000949 if (err < tmp) {
950 if (err < 0)
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200951 printf("unable to get device descriptor (error=%d)\n",
952 err);
wdenkaffae2b2002-08-17 09:36:01 +0000953 else
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200954 printf("USB device descriptor short read " \
955 "(expected %i, got %i)\n", tmp, err);
wdenkaffae2b2002-08-17 09:36:01 +0000956 return 1;
957 }
Ilya Yanok80ab4142012-07-15 04:43:50 +0000958 memcpy(&dev->descriptor, tmpbuf, sizeof(dev->descriptor));
wdenkaffae2b2002-08-17 09:36:01 +0000959 /* correct le values */
Christian Eggersc9182612008-05-21 22:12:00 +0200960 le16_to_cpus(&dev->descriptor.bcdUSB);
961 le16_to_cpus(&dev->descriptor.idVendor);
962 le16_to_cpus(&dev->descriptor.idProduct);
963 le16_to_cpus(&dev->descriptor.bcdDevice);
wdenkaffae2b2002-08-17 09:36:01 +0000964 /* only support for one config for now */
Vincent Palatin8b8d7792012-07-24 07:12:02 +0000965 err = usb_get_configuration_no(dev, tmpbuf, 0);
966 if (err < 0) {
967 printf("usb_new_device: Cannot read configuration, " \
968 "skipping device %04x:%04x\n",
969 dev->descriptor.idVendor, dev->descriptor.idProduct);
970 return -1;
971 }
Puneet Saxenaf5766132012-04-03 14:56:06 +0530972 usb_parse_config(dev, tmpbuf, 0);
wdenkaffae2b2002-08-17 09:36:01 +0000973 usb_set_maxpacket(dev);
974 /* we set the default configuration here */
Tom Rix8f8bd562009-10-31 12:37:38 -0500975 if (usb_set_configuration(dev, dev->config.desc.bConfigurationValue)) {
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200976 printf("failed to set default configuration " \
977 "len %d, status %lX\n", dev->act_len, dev->status);
wdenkaffae2b2002-08-17 09:36:01 +0000978 return -1;
979 }
Vivek Gautamceb49722013-04-12 16:34:33 +0530980 debug("new device strings: Mfr=%d, Product=%d, SerialNumber=%d\n",
981 dev->descriptor.iManufacturer, dev->descriptor.iProduct,
982 dev->descriptor.iSerialNumber);
wdenkaffae2b2002-08-17 09:36:01 +0000983 memset(dev->mf, 0, sizeof(dev->mf));
984 memset(dev->prod, 0, sizeof(dev->prod));
985 memset(dev->serial, 0, sizeof(dev->serial));
986 if (dev->descriptor.iManufacturer)
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200987 usb_string(dev, dev->descriptor.iManufacturer,
988 dev->mf, sizeof(dev->mf));
wdenkaffae2b2002-08-17 09:36:01 +0000989 if (dev->descriptor.iProduct)
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200990 usb_string(dev, dev->descriptor.iProduct,
991 dev->prod, sizeof(dev->prod));
wdenkaffae2b2002-08-17 09:36:01 +0000992 if (dev->descriptor.iSerialNumber)
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200993 usb_string(dev, dev->descriptor.iSerialNumber,
994 dev->serial, sizeof(dev->serial));
Vivek Gautamceb49722013-04-12 16:34:33 +0530995 debug("Manufacturer %s\n", dev->mf);
996 debug("Product %s\n", dev->prod);
997 debug("SerialNumber %s\n", dev->serial);
wdenkaffae2b2002-08-17 09:36:01 +0000998 /* now prode if the device is a hub */
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200999 usb_hub_probe(dev, 0);
wdenkaffae2b2002-08-17 09:36:01 +00001000 return 0;
1001}
1002
wdenkaffae2b2002-08-17 09:36:01 +00001003/* EOF */