blob: e58b6f498f9a710f8681ceb9b89db6a8bf25315d [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
Alexander Hollerce297a82011-01-28 12:42:13 +010060#ifdef DEBUG
Marek Vasut88ec8c12011-10-25 11:39:14 +020061#define USB_DEBUG 1
62#define USB_HUB_DEBUG 1
63#else
64#define USB_DEBUG 0
65#define USB_HUB_DEBUG 0
Alexander Hollerce297a82011-01-28 12:42:13 +010066#endif
wdenkaffae2b2002-08-17 09:36:01 +000067
Marek Vasut88ec8c12011-10-25 11:39:14 +020068#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)
wdenkaffae2b2002-08-17 09:36:01 +000070
wdenkcd0a9de2004-02-23 20:48:38 +000071#define USB_BUFSIZ 512
72
wdenkaffae2b2002-08-17 09:36:01 +000073static struct usb_device usb_dev[USB_MAX_DEVICE];
74static int dev_index;
75static int running;
76static int asynch_allowed;
wdenkaffae2b2002-08-17 09:36:01 +000077
Bartlomiej Siekae51aae32006-08-03 23:20:13 +020078char usb_started; /* flag for the started/stopped USB status */
Lucas Stachc7e3b2b2012-09-26 00:14:34 +020079void *ctrl; /* goes away in a following commit, but don't break bisect */
Bartlomiej Siekae51aae32006-08-03 23:20:13 +020080
wdenkaffae2b2002-08-17 09:36:01 +000081/**********************************************************************
82 * some forward declerations...
83 */
Marek Vasutc08b1b22012-02-13 18:58:16 +000084static void usb_scan_devices(void);
wdenkaffae2b2002-08-17 09:36:01 +000085
wdenkaffae2b2002-08-17 09:36:01 +000086/***************************************************************************
87 * Init USB Device
88 */
89
90int usb_init(void)
91{
92 int result;
93
Remy Bohmer6f5794a2008-09-16 14:55:43 +020094 running = 0;
95 dev_index = 0;
96 asynch_allowed = 1;
wdenkaffae2b2002-08-17 09:36:01 +000097 usb_hub_reset();
98 /* init low_level USB */
99 printf("USB: ");
Lucas Stachc7e3b2b2012-09-26 00:14:34 +0200100 result = usb_lowlevel_init(0, &ctrl);
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200101 /* if lowlevel init is OK, scan the bus for devices
102 * i.e. search HUBs and configure them */
103 if (result == 0) {
wdenkaffae2b2002-08-17 09:36:01 +0000104 printf("scanning bus for devices... ");
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200105 running = 1;
wdenkaffae2b2002-08-17 09:36:01 +0000106 usb_scan_devices();
Bartlomiej Siekae51aae32006-08-03 23:20:13 +0200107 usb_started = 1;
wdenkaffae2b2002-08-17 09:36:01 +0000108 return 0;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200109 } else {
wdenkaffae2b2002-08-17 09:36:01 +0000110 printf("Error, couldn't init Lowlevel part\n");
Bartlomiej Siekae51aae32006-08-03 23:20:13 +0200111 usb_started = 0;
wdenkaffae2b2002-08-17 09:36:01 +0000112 return -1;
113 }
114}
115
116/******************************************************************************
117 * Stop USB this stops the LowLevel Part and deregisters USB devices.
118 */
119int usb_stop(void)
120{
Remy Bohmereba1f2f2008-08-20 11:22:02 +0200121 int res = 0;
122
123 if (usb_started) {
124 asynch_allowed = 1;
125 usb_started = 0;
126 usb_hub_reset();
Lucas Stachc7e3b2b2012-09-26 00:14:34 +0200127 res = usb_lowlevel_stop(0);
Remy Bohmereba1f2f2008-08-20 11:22:02 +0200128 }
129 return res;
wdenkaffae2b2002-08-17 09:36:01 +0000130}
131
132/*
133 * disables the asynch behaviour of the control message. This is used for data
134 * transfers that uses the exclusiv access to the control and bulk messages.
Simon Glass89d48362011-02-16 11:14:33 -0800135 * Returns the old value so it can be restored later.
wdenkaffae2b2002-08-17 09:36:01 +0000136 */
Simon Glass89d48362011-02-16 11:14:33 -0800137int usb_disable_asynch(int disable)
wdenkaffae2b2002-08-17 09:36:01 +0000138{
Simon Glass89d48362011-02-16 11:14:33 -0800139 int old_value = asynch_allowed;
140
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200141 asynch_allowed = !disable;
Simon Glass89d48362011-02-16 11:14:33 -0800142 return old_value;
wdenkaffae2b2002-08-17 09:36:01 +0000143}
144
145
146/*-------------------------------------------------------------------
147 * Message wrappers.
148 *
149 */
150
151/*
152 * submits an Interrupt Message
153 */
154int usb_submit_int_msg(struct usb_device *dev, unsigned long pipe,
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200155 void *buffer, int transfer_len, int interval)
wdenkaffae2b2002-08-17 09:36:01 +0000156{
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200157 return submit_int_msg(dev, pipe, buffer, transfer_len, interval);
wdenkaffae2b2002-08-17 09:36:01 +0000158}
159
160/*
161 * submits a control message and waits for comletion (at least timeout * 1ms)
162 * If timeout is 0, we don't wait for completion (used as example to set and
163 * clear keyboards LEDs). For data transfers, (storage transfers) we don't
164 * allow control messages with 0 timeout, by previousely resetting the flag
165 * asynch_allowed (usb_disable_asynch(1)).
166 * returns the transfered length if OK or -1 if error. The transfered length
167 * and the current status are stored in the dev->act_len and dev->status.
168 */
169int usb_control_msg(struct usb_device *dev, unsigned int pipe,
170 unsigned char request, unsigned char requesttype,
171 unsigned short value, unsigned short index,
172 void *data, unsigned short size, int timeout)
173{
Puneet Saxenaf5766132012-04-03 14:56:06 +0530174 ALLOC_CACHE_ALIGN_BUFFER(struct devrequest, setup_packet, 1);
Marek Vasute159e482012-02-13 18:58:18 +0000175
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200176 if ((timeout == 0) && (!asynch_allowed)) {
177 /* request for a asynch control pipe is not allowed */
wdenkaffae2b2002-08-17 09:36:01 +0000178 return -1;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200179 }
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200180
wdenkaffae2b2002-08-17 09:36:01 +0000181 /* set setup command */
Puneet Saxenaf5766132012-04-03 14:56:06 +0530182 setup_packet->requesttype = requesttype;
183 setup_packet->request = request;
184 setup_packet->value = cpu_to_le16(value);
185 setup_packet->index = cpu_to_le16(index);
186 setup_packet->length = cpu_to_le16(size);
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200187 USB_PRINTF("usb_control_msg: request: 0x%X, requesttype: 0x%X, " \
188 "value 0x%X index 0x%X length 0x%X\n",
189 request, requesttype, value, index, size);
190 dev->status = USB_ST_NOT_PROC; /*not yet processed */
wdenkaffae2b2002-08-17 09:36:01 +0000191
Ilya Yanokfd060282012-07-15 04:43:51 +0000192 if (submit_control_msg(dev, pipe, data, size, setup_packet) < 0)
193 return -1;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200194 if (timeout == 0)
wdenkaffae2b2002-08-17 09:36:01 +0000195 return (int)size;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200196
Remy Bohmer84d36b32010-02-01 19:40:47 +0100197 /*
198 * Wait for status to update until timeout expires, USB driver
199 * interrupt handler may set the status when the USB operation has
200 * been completed.
201 */
202 while (timeout--) {
203 if (!((volatile unsigned long)dev->status & USB_ST_NOT_PROC))
204 break;
Mike Frysinger5b84dd62012-03-05 13:47:00 +0000205 mdelay(1);
Remy Bohmer48867202008-10-10 10:23:21 +0200206 }
Remy Bohmer84d36b32010-02-01 19:40:47 +0100207 if (dev->status)
208 return -1;
Remy Bohmer48867202008-10-10 10:23:21 +0200209
210 return dev->act_len;
Remy Bohmer84d36b32010-02-01 19:40:47 +0100211
wdenkaffae2b2002-08-17 09:36:01 +0000212}
213
214/*-------------------------------------------------------------------
215 * submits bulk message, and waits for completion. returns 0 if Ok or
216 * -1 if Error.
217 * synchronous behavior
218 */
219int usb_bulk_msg(struct usb_device *dev, unsigned int pipe,
220 void *data, int len, int *actual_length, int timeout)
221{
222 if (len < 0)
223 return -1;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200224 dev->status = USB_ST_NOT_PROC; /*not yet processed */
Ilya Yanokfd060282012-07-15 04:43:51 +0000225 if (submit_bulk_msg(dev, pipe, data, len) < 0)
226 return -1;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200227 while (timeout--) {
228 if (!((volatile unsigned long)dev->status & USB_ST_NOT_PROC))
wdenkaffae2b2002-08-17 09:36:01 +0000229 break;
Mike Frysinger5b84dd62012-03-05 13:47:00 +0000230 mdelay(1);
wdenkaffae2b2002-08-17 09:36:01 +0000231 }
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200232 *actual_length = dev->act_len;
233 if (dev->status == 0)
wdenkaffae2b2002-08-17 09:36:01 +0000234 return 0;
235 else
236 return -1;
237}
238
239
240/*-------------------------------------------------------------------
241 * Max Packet stuff
242 */
243
244/*
245 * returns the max packet size, depending on the pipe direction and
246 * the configurations values
247 */
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200248int usb_maxpacket(struct usb_device *dev, unsigned long pipe)
wdenkaffae2b2002-08-17 09:36:01 +0000249{
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200250 /* direction is out -> use emaxpacket out */
251 if ((pipe & USB_DIR_IN) == 0)
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100252 return dev->epmaxpacketout[((pipe>>15) & 0xf)];
wdenkaffae2b2002-08-17 09:36:01 +0000253 else
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100254 return dev->epmaxpacketin[((pipe>>15) & 0xf)];
wdenkaffae2b2002-08-17 09:36:01 +0000255}
256
Marek Vasut5e8baf82011-11-05 23:35:12 +0100257/*
258 * The routine usb_set_maxpacket_ep() is extracted from the loop of routine
Remy Bohmerbe19d322008-09-16 14:55:42 +0200259 * usb_set_maxpacket(), because the optimizer of GCC 4.x chokes on this routine
260 * when it is inlined in 1 single routine. What happens is that the register r3
261 * is used as loop-count 'i', but gets overwritten later on.
262 * This is clearly a compiler bug, but it is easier to workaround it here than
263 * to update the compiler (Occurs with at least several GCC 4.{1,2},x
264 * CodeSourcery compilers like e.g. 2007q3, 2008q1, 2008q3 lite editions on ARM)
Marek Vasut5e8baf82011-11-05 23:35:12 +0100265 *
266 * NOTE: Similar behaviour was observed with GCC4.6 on ARMv5.
Remy Bohmerbe19d322008-09-16 14:55:42 +0200267 */
Mike Frysinger66cf6412012-04-04 18:44:53 +0000268static void noinline
Marek Vasut5e8baf82011-11-05 23:35:12 +0100269usb_set_maxpacket_ep(struct usb_device *dev, int if_idx, int ep_idx)
Remy Bohmerbe19d322008-09-16 14:55:42 +0200270{
271 int b;
Marek Vasut5e8baf82011-11-05 23:35:12 +0100272 struct usb_endpoint_descriptor *ep;
Tom Rinib2fb47f2011-12-15 08:40:51 -0700273 u16 ep_wMaxPacketSize;
Marek Vasut5e8baf82011-11-05 23:35:12 +0100274
275 ep = &dev->config.if_desc[if_idx].ep_desc[ep_idx];
Remy Bohmerbe19d322008-09-16 14:55:42 +0200276
277 b = ep->bEndpointAddress & USB_ENDPOINT_NUMBER_MASK;
Tom Rinib2fb47f2011-12-15 08:40:51 -0700278 ep_wMaxPacketSize = get_unaligned(&ep->wMaxPacketSize);
Remy Bohmerbe19d322008-09-16 14:55:42 +0200279
280 if ((ep->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) ==
281 USB_ENDPOINT_XFER_CONTROL) {
282 /* Control => bidirectional */
Tom Rinib2fb47f2011-12-15 08:40:51 -0700283 dev->epmaxpacketout[b] = ep_wMaxPacketSize;
284 dev->epmaxpacketin[b] = ep_wMaxPacketSize;
Remy Bohmerbe19d322008-09-16 14:55:42 +0200285 USB_PRINTF("##Control EP epmaxpacketout/in[%d] = %d\n",
286 b, dev->epmaxpacketin[b]);
287 } else {
288 if ((ep->bEndpointAddress & 0x80) == 0) {
289 /* OUT Endpoint */
Tom Rinib2fb47f2011-12-15 08:40:51 -0700290 if (ep_wMaxPacketSize > dev->epmaxpacketout[b]) {
291 dev->epmaxpacketout[b] = ep_wMaxPacketSize;
Remy Bohmerbe19d322008-09-16 14:55:42 +0200292 USB_PRINTF("##EP epmaxpacketout[%d] = %d\n",
293 b, dev->epmaxpacketout[b]);
294 }
295 } else {
296 /* IN Endpoint */
Tom Rinib2fb47f2011-12-15 08:40:51 -0700297 if (ep_wMaxPacketSize > dev->epmaxpacketin[b]) {
298 dev->epmaxpacketin[b] = ep_wMaxPacketSize;
Remy Bohmerbe19d322008-09-16 14:55:42 +0200299 USB_PRINTF("##EP epmaxpacketin[%d] = %d\n",
300 b, dev->epmaxpacketin[b]);
301 }
302 } /* if out */
303 } /* if control */
304}
305
wdenkaffae2b2002-08-17 09:36:01 +0000306/*
307 * set the max packed value of all endpoints in the given configuration
308 */
Marek Vasutc08b1b22012-02-13 18:58:16 +0000309static int usb_set_maxpacket(struct usb_device *dev)
wdenkaffae2b2002-08-17 09:36:01 +0000310{
Remy Bohmerbe19d322008-09-16 14:55:42 +0200311 int i, ii;
wdenkaffae2b2002-08-17 09:36:01 +0000312
Tom Rix8f8bd562009-10-31 12:37:38 -0500313 for (i = 0; i < dev->config.desc.bNumInterfaces; i++)
314 for (ii = 0; ii < dev->config.if_desc[i].desc.bNumEndpoints; ii++)
Marek Vasut5e8baf82011-11-05 23:35:12 +0100315 usb_set_maxpacket_ep(dev, i, ii);
wdenkaffae2b2002-08-17 09:36:01 +0000316
wdenkaffae2b2002-08-17 09:36:01 +0000317 return 0;
318}
319
320/*******************************************************************************
321 * Parse the config, located in buffer, and fills the dev->config structure.
322 * Note that all little/big endian swapping are done automatically.
323 */
Marek Vasutc08b1b22012-02-13 18:58:16 +0000324static int usb_parse_config(struct usb_device *dev,
325 unsigned char *buffer, int cfgno)
wdenkaffae2b2002-08-17 09:36:01 +0000326{
327 struct usb_descriptor_header *head;
Bartlomiej Sieka7455af42006-08-02 00:54:18 +0200328 int index, ifno, epno, curr_if_num;
329 int i;
Tom Rinib2fb47f2011-12-15 08:40:51 -0700330 u16 ep_wMaxPacketSize;
wdenkaffae2b2002-08-17 09:36:01 +0000331
Bartlomiej Sieka7455af42006-08-02 00:54:18 +0200332 ifno = -1;
333 epno = -1;
334 curr_if_num = -1;
335
336 dev->configno = cfgno;
337 head = (struct usb_descriptor_header *) &buffer[0];
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200338 if (head->bDescriptorType != USB_DT_CONFIG) {
339 printf(" ERROR: NOT USB_CONFIG_DESC %x\n",
340 head->bDescriptorType);
wdenkaffae2b2002-08-17 09:36:01 +0000341 return -1;
342 }
Bartlomiej Sieka7455af42006-08-02 00:54:18 +0200343 memcpy(&dev->config, buffer, buffer[0]);
Tom Rix8f8bd562009-10-31 12:37:38 -0500344 le16_to_cpus(&(dev->config.desc.wTotalLength));
Bartlomiej Sieka7455af42006-08-02 00:54:18 +0200345 dev->config.no_of_if = 0;
wdenkaffae2b2002-08-17 09:36:01 +0000346
Tom Rix8f8bd562009-10-31 12:37:38 -0500347 index = dev->config.desc.bLength;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200348 /* Ok the first entry must be a configuration entry,
349 * now process the others */
Bartlomiej Sieka7455af42006-08-02 00:54:18 +0200350 head = (struct usb_descriptor_header *) &buffer[index];
Tom Rix8f8bd562009-10-31 12:37:38 -0500351 while (index + 1 < dev->config.desc.wTotalLength) {
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200352 switch (head->bDescriptorType) {
353 case USB_DT_INTERFACE:
354 if (((struct usb_interface_descriptor *) \
355 &buffer[index])->bInterfaceNumber != curr_if_num) {
356 /* this is a new interface, copy new desc */
357 ifno = dev->config.no_of_if;
358 dev->config.no_of_if++;
359 memcpy(&dev->config.if_desc[ifno],
Bartlomiej Sieka7455af42006-08-02 00:54:18 +0200360 &buffer[index], buffer[index]);
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200361 dev->config.if_desc[ifno].no_of_ep = 0;
362 dev->config.if_desc[ifno].num_altsetting = 1;
363 curr_if_num =
Tom Rix8f8bd562009-10-31 12:37:38 -0500364 dev->config.if_desc[ifno].desc.bInterfaceNumber;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200365 } else {
366 /* found alternate setting for the interface */
367 dev->config.if_desc[ifno].num_altsetting++;
368 }
369 break;
370 case USB_DT_ENDPOINT:
371 epno = dev->config.if_desc[ifno].no_of_ep;
372 /* found an endpoint */
373 dev->config.if_desc[ifno].no_of_ep++;
374 memcpy(&dev->config.if_desc[ifno].ep_desc[epno],
375 &buffer[index], buffer[index]);
Tom Rinib2fb47f2011-12-15 08:40:51 -0700376 ep_wMaxPacketSize = get_unaligned(&dev->config.\
377 if_desc[ifno].\
378 ep_desc[epno].\
379 wMaxPacketSize);
380 put_unaligned(le16_to_cpu(ep_wMaxPacketSize),
381 &dev->config.\
382 if_desc[ifno].\
383 ep_desc[epno].\
384 wMaxPacketSize);
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200385 USB_PRINTF("if %d, ep %d\n", ifno, epno);
386 break;
387 default:
388 if (head->bLength == 0)
389 return 1;
390
391 USB_PRINTF("unknown Description Type : %x\n",
392 head->bDescriptorType);
393
394 {
Wolfgang Denkfad2e1b2011-10-05 23:11:19 +0200395#ifdef USB_DEBUG
396 unsigned char *ch = (unsigned char *)head;
397#endif
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200398 for (i = 0; i < head->bLength; i++)
399 USB_PRINTF("%02X ", *ch++);
400 USB_PRINTF("\n\n\n");
401 }
402 break;
wdenkaffae2b2002-08-17 09:36:01 +0000403 }
Bartlomiej Sieka7455af42006-08-02 00:54:18 +0200404 index += head->bLength;
405 head = (struct usb_descriptor_header *)&buffer[index];
wdenkaffae2b2002-08-17 09:36:01 +0000406 }
407 return 1;
408}
409
410/***********************************************************************
411 * Clears an endpoint
412 * endp: endpoint number in bits 0-3;
413 * direction flag in bit 7 (1 = IN, 0 = OUT)
414 */
415int usb_clear_halt(struct usb_device *dev, int pipe)
416{
417 int result;
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200418 int endp = usb_pipeendpoint(pipe)|(usb_pipein(pipe)<<7);
wdenkaffae2b2002-08-17 09:36:01 +0000419
420 result = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200421 USB_REQ_CLEAR_FEATURE, USB_RECIP_ENDPOINT, 0,
422 endp, NULL, 0, USB_CNTL_TIMEOUT * 3);
wdenkaffae2b2002-08-17 09:36:01 +0000423
424 /* don't clear if failed */
425 if (result < 0)
426 return result;
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200427
Wolfgang Denk095b8a32005-08-02 17:06:17 +0200428 /*
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200429 * NOTE: we do not get status and verify reset was successful
430 * as some devices are reported to lock up upon this check..
431 */
432
wdenkaffae2b2002-08-17 09:36:01 +0000433 usb_endpoint_running(dev, usb_pipeendpoint(pipe), usb_pipeout(pipe));
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200434
wdenkaffae2b2002-08-17 09:36:01 +0000435 /* toggle is reset on clear */
436 usb_settoggle(dev, usb_pipeendpoint(pipe), usb_pipeout(pipe), 0);
437 return 0;
438}
439
440
441/**********************************************************************
442 * get_descriptor type
443 */
Marek Vasutc08b1b22012-02-13 18:58:16 +0000444static int usb_get_descriptor(struct usb_device *dev, unsigned char type,
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200445 unsigned char index, void *buf, int size)
wdenkaffae2b2002-08-17 09:36:01 +0000446{
447 int res;
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200448 res = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
wdenkaffae2b2002-08-17 09:36:01 +0000449 USB_REQ_GET_DESCRIPTOR, USB_DIR_IN,
450 (type << 8) + index, 0,
451 buf, size, USB_CNTL_TIMEOUT);
452 return res;
453}
454
455/**********************************************************************
456 * gets configuration cfgno and store it in the buffer
457 */
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200458int usb_get_configuration_no(struct usb_device *dev,
459 unsigned char *buffer, int cfgno)
wdenkaffae2b2002-08-17 09:36:01 +0000460{
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200461 int result;
wdenkaffae2b2002-08-17 09:36:01 +0000462 unsigned int tmp;
Tom Rix8f8bd562009-10-31 12:37:38 -0500463 struct usb_configuration_descriptor *config;
wdenkaffae2b2002-08-17 09:36:01 +0000464
Tom Rix8f8bd562009-10-31 12:37:38 -0500465 config = (struct usb_configuration_descriptor *)&buffer[0];
Remy Bohmer48867202008-10-10 10:23:21 +0200466 result = usb_get_descriptor(dev, USB_DT_CONFIG, cfgno, buffer, 9);
467 if (result < 9) {
wdenkaffae2b2002-08-17 09:36:01 +0000468 if (result < 0)
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200469 printf("unable to get descriptor, error %lX\n",
470 dev->status);
wdenkaffae2b2002-08-17 09:36:01 +0000471 else
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200472 printf("config descriptor too short " \
Remy Bohmer48867202008-10-10 10:23:21 +0200473 "(expected %i, got %i)\n", 9, result);
wdenkaffae2b2002-08-17 09:36:01 +0000474 return -1;
475 }
Christian Eggersc9182612008-05-21 22:12:00 +0200476 tmp = le16_to_cpu(config->wTotalLength);
wdenkaffae2b2002-08-17 09:36:01 +0000477
wdenkcd0a9de2004-02-23 20:48:38 +0000478 if (tmp > USB_BUFSIZ) {
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200479 USB_PRINTF("usb_get_configuration_no: failed to get " \
480 "descriptor - too long: %d\n", tmp);
wdenkcd0a9de2004-02-23 20:48:38 +0000481 return -1;
482 }
483
wdenkaffae2b2002-08-17 09:36:01 +0000484 result = usb_get_descriptor(dev, USB_DT_CONFIG, cfgno, buffer, tmp);
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200485 USB_PRINTF("get_conf_no %d Result %d, wLength %d\n",
486 cfgno, result, tmp);
wdenkaffae2b2002-08-17 09:36:01 +0000487 return result;
488}
489
490/********************************************************************
491 * set address of a device to the value in dev->devnum.
492 * This can only be done by addressing the device via the default address (0)
493 */
Marek Vasutc08b1b22012-02-13 18:58:16 +0000494static int usb_set_address(struct usb_device *dev)
wdenkaffae2b2002-08-17 09:36:01 +0000495{
496 int res;
497
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200498 USB_PRINTF("set address %d\n", dev->devnum);
499 res = usb_control_msg(dev, usb_snddefctrl(dev),
500 USB_REQ_SET_ADDRESS, 0,
501 (dev->devnum), 0,
502 NULL, 0, USB_CNTL_TIMEOUT);
wdenkaffae2b2002-08-17 09:36:01 +0000503 return res;
504}
505
506/********************************************************************
507 * set interface number to interface
508 */
509int usb_set_interface(struct usb_device *dev, int interface, int alternate)
510{
Tom Rix8f8bd562009-10-31 12:37:38 -0500511 struct usb_interface *if_face = NULL;
wdenkaffae2b2002-08-17 09:36:01 +0000512 int ret, i;
513
Tom Rix8f8bd562009-10-31 12:37:38 -0500514 for (i = 0; i < dev->config.desc.bNumInterfaces; i++) {
515 if (dev->config.if_desc[i].desc.bInterfaceNumber == interface) {
wdenkaffae2b2002-08-17 09:36:01 +0000516 if_face = &dev->config.if_desc[i];
517 break;
518 }
519 }
520 if (!if_face) {
521 printf("selecting invalid interface %d", interface);
522 return -1;
523 }
Bartlomiej Sieka7455af42006-08-02 00:54:18 +0200524 /*
525 * We should return now for devices with only one alternate setting.
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200526 * According to 9.4.10 of the Universal Serial Bus Specification
527 * Revision 2.0 such devices can return with a STALL. This results in
528 * some USB sticks timeouting during initialization and then being
529 * unusable in U-Boot.
Bartlomiej Sieka7455af42006-08-02 00:54:18 +0200530 */
531 if (if_face->num_altsetting == 1)
532 return 0;
wdenkaffae2b2002-08-17 09:36:01 +0000533
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200534 ret = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
535 USB_REQ_SET_INTERFACE, USB_RECIP_INTERFACE,
536 alternate, interface, NULL, 0,
537 USB_CNTL_TIMEOUT * 5);
538 if (ret < 0)
wdenkaffae2b2002-08-17 09:36:01 +0000539 return ret;
540
wdenkaffae2b2002-08-17 09:36:01 +0000541 return 0;
542}
543
544/********************************************************************
545 * set configuration number to configuration
546 */
Marek Vasutc08b1b22012-02-13 18:58:16 +0000547static int usb_set_configuration(struct usb_device *dev, int configuration)
wdenkaffae2b2002-08-17 09:36:01 +0000548{
549 int res;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200550 USB_PRINTF("set configuration %d\n", configuration);
wdenkaffae2b2002-08-17 09:36:01 +0000551 /* set setup command */
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200552 res = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
553 USB_REQ_SET_CONFIGURATION, 0,
554 configuration, 0,
555 NULL, 0, USB_CNTL_TIMEOUT);
556 if (res == 0) {
wdenkaffae2b2002-08-17 09:36:01 +0000557 dev->toggle[0] = 0;
558 dev->toggle[1] = 0;
559 return 0;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200560 } else
wdenkaffae2b2002-08-17 09:36:01 +0000561 return -1;
562}
563
564/********************************************************************
565 * set protocol to protocol
566 */
567int usb_set_protocol(struct usb_device *dev, int ifnum, int protocol)
568{
569 return usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
570 USB_REQ_SET_PROTOCOL, USB_TYPE_CLASS | USB_RECIP_INTERFACE,
571 protocol, ifnum, NULL, 0, USB_CNTL_TIMEOUT);
572}
573
574/********************************************************************
575 * set idle
576 */
577int usb_set_idle(struct usb_device *dev, int ifnum, int duration, int report_id)
578{
579 return usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
580 USB_REQ_SET_IDLE, USB_TYPE_CLASS | USB_RECIP_INTERFACE,
581 (duration << 8) | report_id, ifnum, NULL, 0, USB_CNTL_TIMEOUT);
582}
583
584/********************************************************************
585 * get report
586 */
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200587int usb_get_report(struct usb_device *dev, int ifnum, unsigned char type,
588 unsigned char id, void *buf, int size)
wdenkaffae2b2002-08-17 09:36:01 +0000589{
590 return usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200591 USB_REQ_GET_REPORT,
592 USB_DIR_IN | USB_TYPE_CLASS | USB_RECIP_INTERFACE,
593 (type << 8) + id, ifnum, buf, size, USB_CNTL_TIMEOUT);
wdenkaffae2b2002-08-17 09:36:01 +0000594}
595
596/********************************************************************
597 * get class descriptor
598 */
599int usb_get_class_descriptor(struct usb_device *dev, int ifnum,
600 unsigned char type, unsigned char id, void *buf, int size)
601{
602 return usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
603 USB_REQ_GET_DESCRIPTOR, USB_RECIP_INTERFACE | USB_DIR_IN,
604 (type << 8) + id, ifnum, buf, size, USB_CNTL_TIMEOUT);
605}
606
607/********************************************************************
608 * get string index in buffer
609 */
Marek Vasutc08b1b22012-02-13 18:58:16 +0000610static int usb_get_string(struct usb_device *dev, unsigned short langid,
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200611 unsigned char index, void *buf, int size)
wdenkaffae2b2002-08-17 09:36:01 +0000612{
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200613 int i;
614 int result;
615
616 for (i = 0; i < 3; ++i) {
617 /* some devices are flaky */
618 result = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
619 USB_REQ_GET_DESCRIPTOR, USB_DIR_IN,
Wolfgang Denk095b8a32005-08-02 17:06:17 +0200620 (USB_DT_STRING << 8) + index, langid, buf, size,
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200621 USB_CNTL_TIMEOUT);
622
623 if (result > 0)
624 break;
Wolfgang Denk095b8a32005-08-02 17:06:17 +0200625 }
626
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200627 return result;
wdenkaffae2b2002-08-17 09:36:01 +0000628}
629
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200630
631static void usb_try_string_workarounds(unsigned char *buf, int *length)
632{
633 int newlength, oldlength = *length;
634
635 for (newlength = 2; newlength + 1 < oldlength; newlength += 2)
636 if (!isprint(buf[newlength]) || buf[newlength + 1])
637 break;
638
639 if (newlength > 2) {
640 buf[0] = newlength;
641 *length = newlength;
642 }
643}
644
645
646static int usb_string_sub(struct usb_device *dev, unsigned int langid,
647 unsigned int index, unsigned char *buf)
648{
649 int rc;
650
651 /* Try to read the string descriptor by asking for the maximum
652 * possible number of bytes */
653 rc = usb_get_string(dev, langid, index, buf, 255);
654
655 /* If that failed try to read the descriptor length, then
656 * ask for just that many bytes */
657 if (rc < 2) {
658 rc = usb_get_string(dev, langid, index, buf, 2);
659 if (rc == 2)
660 rc = usb_get_string(dev, langid, index, buf, buf[0]);
661 }
662
663 if (rc >= 2) {
664 if (!buf[0] && !buf[1])
665 usb_try_string_workarounds(buf, &rc);
666
667 /* There might be extra junk at the end of the descriptor */
668 if (buf[0] < rc)
669 rc = buf[0];
670
671 rc = rc - (rc & 1); /* force a multiple of two */
672 }
673
674 if (rc < 2)
Wolfgang Denk095b8a32005-08-02 17:06:17 +0200675 rc = -1;
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200676
677 return rc;
678}
679
680
wdenkaffae2b2002-08-17 09:36:01 +0000681/********************************************************************
682 * usb_string:
683 * Get string index and translate it to ascii.
684 * returns string length (> 0) or error (< 0)
685 */
686int usb_string(struct usb_device *dev, int index, char *buf, size_t size)
687{
Puneet Saxenaf5766132012-04-03 14:56:06 +0530688 ALLOC_CACHE_ALIGN_BUFFER(unsigned char, mybuf, USB_BUFSIZ);
wdenkaffae2b2002-08-17 09:36:01 +0000689 unsigned char *tbuf;
690 int err;
691 unsigned int u, idx;
692
693 if (size <= 0 || !buf || !index)
694 return -1;
695 buf[0] = 0;
Wolfgang Denkd0ff51b2008-07-14 15:19:07 +0200696 tbuf = &mybuf[0];
wdenkaffae2b2002-08-17 09:36:01 +0000697
698 /* get langid for strings if it's not yet known */
699 if (!dev->have_langid) {
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200700 err = usb_string_sub(dev, 0, 0, tbuf);
wdenkaffae2b2002-08-17 09:36:01 +0000701 if (err < 0) {
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200702 USB_PRINTF("error getting string descriptor 0 " \
Stefan Roesef1c1f542009-01-22 10:11:21 +0100703 "(error=%lx)\n", dev->status);
wdenkaffae2b2002-08-17 09:36:01 +0000704 return -1;
705 } else if (tbuf[0] < 4) {
706 USB_PRINTF("string descriptor 0 too short\n");
707 return -1;
708 } else {
709 dev->have_langid = -1;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200710 dev->string_langid = tbuf[2] | (tbuf[3] << 8);
wdenkaffae2b2002-08-17 09:36:01 +0000711 /* always use the first langid listed */
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200712 USB_PRINTF("USB device number %d default " \
713 "language ID 0x%x\n",
714 dev->devnum, dev->string_langid);
wdenkaffae2b2002-08-17 09:36:01 +0000715 }
716 }
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200717
718 err = usb_string_sub(dev, dev->string_langid, index, tbuf);
wdenkaffae2b2002-08-17 09:36:01 +0000719 if (err < 0)
720 return err;
wdenkcd0a9de2004-02-23 20:48:38 +0000721
wdenkaffae2b2002-08-17 09:36:01 +0000722 size--; /* leave room for trailing NULL char in output buffer */
723 for (idx = 0, u = 2; u < err; u += 2) {
724 if (idx >= size)
725 break;
726 if (tbuf[u+1]) /* high byte */
727 buf[idx++] = '?'; /* non-ASCII character */
728 else
729 buf[idx++] = tbuf[u];
730 }
731 buf[idx] = 0;
732 err = idx;
733 return err;
734}
735
736
737/********************************************************************
738 * USB device handling:
739 * the USB device are static allocated [USB_MAX_DEVICE].
740 */
741
742
743/* returns a pointer to the device with the index [index].
744 * if the device is not assigned (dev->devnum==-1) returns NULL
745 */
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200746struct usb_device *usb_get_dev_index(int index)
wdenkaffae2b2002-08-17 09:36:01 +0000747{
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200748 if (usb_dev[index].devnum == -1)
wdenkaffae2b2002-08-17 09:36:01 +0000749 return NULL;
750 else
751 return &usb_dev[index];
752}
753
754
755/* returns a pointer of a new device structure or NULL, if
756 * no device struct is available
757 */
Lucas Stachc7e3b2b2012-09-26 00:14:34 +0200758struct usb_device *usb_alloc_new_device(void *controller)
wdenkaffae2b2002-08-17 09:36:01 +0000759{
760 int i;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200761 USB_PRINTF("New Device %d\n", dev_index);
762 if (dev_index == USB_MAX_DEVICE) {
763 printf("ERROR, too many USB Devices, max=%d\n", USB_MAX_DEVICE);
wdenkaffae2b2002-08-17 09:36:01 +0000764 return NULL;
765 }
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200766 /* default Address is 0, real addresses start with 1 */
767 usb_dev[dev_index].devnum = dev_index + 1;
768 usb_dev[dev_index].maxchild = 0;
769 for (i = 0; i < USB_MAXCHILDREN; i++)
770 usb_dev[dev_index].children[i] = NULL;
771 usb_dev[dev_index].parent = NULL;
Lucas Stachc7e3b2b2012-09-26 00:14:34 +0200772 usb_dev[dev_index].controller = controller;
wdenkaffae2b2002-08-17 09:36:01 +0000773 dev_index++;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200774 return &usb_dev[dev_index - 1];
wdenkaffae2b2002-08-17 09:36:01 +0000775}
776
777
778/*
779 * By the time we get here, the device has gotten a new device ID
780 * and is in the default state. We need to identify the thing and
781 * get the ball rolling..
782 *
783 * Returns 0 for success, != 0 for error.
784 */
Marek Vasut23faf2b2012-02-13 18:58:17 +0000785int usb_new_device(struct usb_device *dev)
wdenkaffae2b2002-08-17 09:36:01 +0000786{
787 int addr, err;
788 int tmp;
Puneet Saxenaf5766132012-04-03 14:56:06 +0530789 ALLOC_CACHE_ALIGN_BUFFER(unsigned char, tmpbuf, USB_BUFSIZ);
wdenkaffae2b2002-08-17 09:36:01 +0000790
wdenkaffae2b2002-08-17 09:36:01 +0000791 /* We still haven't set the Address yet */
792 addr = dev->devnum;
793 dev->devnum = 0;
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200794
Remy Bohmerc9e84362008-09-16 14:55:44 +0200795#ifdef CONFIG_LEGACY_USB_INIT_SEQ
796 /* this is the old and known way of initializing devices, it is
797 * different than what Windows and Linux are doing. Windows and Linux
798 * both retrieve 64 bytes while reading the device descriptor
799 * Several USB stick devices report ERR: CTL_TIMEOUT, caused by an
800 * invalid header while reading 8 bytes as device descriptor. */
801 dev->descriptor.bMaxPacketSize0 = 8; /* Start off at 8 bytes */
Remy Bohmer48867202008-10-10 10:23:21 +0200802 dev->maxpacketsize = PACKET_SIZE_8;
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100803 dev->epmaxpacketin[0] = 8;
Remy Bohmerc9e84362008-09-16 14:55:44 +0200804 dev->epmaxpacketout[0] = 8;
805
Ilya Yanok80ab4142012-07-15 04:43:50 +0000806 err = usb_get_descriptor(dev, USB_DT_DEVICE, 0, tmpbuf, 8);
Remy Bohmerc9e84362008-09-16 14:55:44 +0200807 if (err < 8) {
808 printf("\n USB device not responding, " \
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100809 "giving up (status=%lX)\n", dev->status);
Remy Bohmerc9e84362008-09-16 14:55:44 +0200810 return 1;
811 }
Ilya Yanok80ab4142012-07-15 04:43:50 +0000812 memcpy(&dev->descriptor, tmpbuf, 8);
Remy Bohmerc9e84362008-09-16 14:55:44 +0200813#else
Remy Bohmer48867202008-10-10 10:23:21 +0200814 /* This is a Windows scheme of initialization sequence, with double
815 * reset of the device (Linux uses the same sequence)
Remy Bohmerc9e84362008-09-16 14:55:44 +0200816 * Some equipment is said to work only with such init sequence; this
817 * patch is based on the work by Alan Stern:
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100818 * http://sourceforge.net/mailarchive/forum.php?
819 * thread_id=5729457&forum_id=5398
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200820 */
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200821 struct usb_device_descriptor *desc;
822 int port = -1;
823 struct usb_device *parent = dev->parent;
824 unsigned short portstatus;
825
826 /* send 64-byte GET-DEVICE-DESCRIPTOR request. Since the descriptor is
827 * only 18 bytes long, this will terminate with a short packet. But if
828 * the maxpacket size is 8 or 16 the device may be waiting to transmit
Remy Bohmerc9e84362008-09-16 14:55:44 +0200829 * some more, or keeps on retransmitting the 8 byte header. */
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200830
831 desc = (struct usb_device_descriptor *)tmpbuf;
Remy Bohmerc9e84362008-09-16 14:55:44 +0200832 dev->descriptor.bMaxPacketSize0 = 64; /* Start off at 64 bytes */
Remy Bohmer48867202008-10-10 10:23:21 +0200833 /* Default to 64 byte max packet size */
834 dev->maxpacketsize = PACKET_SIZE_64;
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100835 dev->epmaxpacketin[0] = 64;
Remy Bohmerc9e84362008-09-16 14:55:44 +0200836 dev->epmaxpacketout[0] = 64;
Remy Bohmer48867202008-10-10 10:23:21 +0200837
838 err = usb_get_descriptor(dev, USB_DT_DEVICE, 0, desc, 64);
839 if (err < 0) {
840 USB_PRINTF("usb_new_device: usb_get_descriptor() failed\n");
841 return 1;
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200842 }
Remy Bohmer48867202008-10-10 10:23:21 +0200843
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200844 dev->descriptor.bMaxPacketSize0 = desc->bMaxPacketSize0;
Wolfgang Denk095b8a32005-08-02 17:06:17 +0200845
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200846 /* find the port number we're at */
847 if (parent) {
Remy Bohmer48867202008-10-10 10:23:21 +0200848 int j;
Wolfgang Denk095b8a32005-08-02 17:06:17 +0200849
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200850 for (j = 0; j < parent->maxchild; j++) {
851 if (parent->children[j] == dev) {
852 port = j;
853 break;
854 }
855 }
856 if (port < 0) {
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200857 printf("usb_new_device:cannot locate device's port.\n");
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200858 return 1;
859 }
860
861 /* reset the port for the second time */
862 err = hub_port_reset(dev->parent, port, &portstatus);
863 if (err < 0) {
864 printf("\n Couldn't reset port %i\n", port);
865 return 1;
866 }
867 }
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200868#endif
869
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100870 dev->epmaxpacketin[0] = dev->descriptor.bMaxPacketSize0;
wdenkaffae2b2002-08-17 09:36:01 +0000871 dev->epmaxpacketout[0] = dev->descriptor.bMaxPacketSize0;
872 switch (dev->descriptor.bMaxPacketSize0) {
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100873 case 8:
874 dev->maxpacketsize = PACKET_SIZE_8;
875 break;
876 case 16:
877 dev->maxpacketsize = PACKET_SIZE_16;
878 break;
879 case 32:
880 dev->maxpacketsize = PACKET_SIZE_32;
881 break;
882 case 64:
883 dev->maxpacketsize = PACKET_SIZE_64;
884 break;
wdenkaffae2b2002-08-17 09:36:01 +0000885 }
886 dev->devnum = addr;
887
888 err = usb_set_address(dev); /* set address */
889
890 if (err < 0) {
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200891 printf("\n USB device not accepting new address " \
892 "(error=%lX)\n", dev->status);
wdenkaffae2b2002-08-17 09:36:01 +0000893 return 1;
894 }
895
Mike Frysinger5b84dd62012-03-05 13:47:00 +0000896 mdelay(10); /* Let the SET_ADDRESS settle */
wdenkaffae2b2002-08-17 09:36:01 +0000897
898 tmp = sizeof(dev->descriptor);
899
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200900 err = usb_get_descriptor(dev, USB_DT_DEVICE, 0,
Ilya Yanok80ab4142012-07-15 04:43:50 +0000901 tmpbuf, sizeof(dev->descriptor));
wdenkaffae2b2002-08-17 09:36:01 +0000902 if (err < tmp) {
903 if (err < 0)
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200904 printf("unable to get device descriptor (error=%d)\n",
905 err);
wdenkaffae2b2002-08-17 09:36:01 +0000906 else
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200907 printf("USB device descriptor short read " \
908 "(expected %i, got %i)\n", tmp, err);
wdenkaffae2b2002-08-17 09:36:01 +0000909 return 1;
910 }
Ilya Yanok80ab4142012-07-15 04:43:50 +0000911 memcpy(&dev->descriptor, tmpbuf, sizeof(dev->descriptor));
wdenkaffae2b2002-08-17 09:36:01 +0000912 /* correct le values */
Christian Eggersc9182612008-05-21 22:12:00 +0200913 le16_to_cpus(&dev->descriptor.bcdUSB);
914 le16_to_cpus(&dev->descriptor.idVendor);
915 le16_to_cpus(&dev->descriptor.idProduct);
916 le16_to_cpus(&dev->descriptor.bcdDevice);
wdenkaffae2b2002-08-17 09:36:01 +0000917 /* only support for one config for now */
Puneet Saxenaf5766132012-04-03 14:56:06 +0530918 usb_get_configuration_no(dev, tmpbuf, 0);
919 usb_parse_config(dev, tmpbuf, 0);
wdenkaffae2b2002-08-17 09:36:01 +0000920 usb_set_maxpacket(dev);
921 /* we set the default configuration here */
Tom Rix8f8bd562009-10-31 12:37:38 -0500922 if (usb_set_configuration(dev, dev->config.desc.bConfigurationValue)) {
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200923 printf("failed to set default configuration " \
924 "len %d, status %lX\n", dev->act_len, dev->status);
wdenkaffae2b2002-08-17 09:36:01 +0000925 return -1;
926 }
927 USB_PRINTF("new device strings: Mfr=%d, Product=%d, SerialNumber=%d\n",
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200928 dev->descriptor.iManufacturer, dev->descriptor.iProduct,
929 dev->descriptor.iSerialNumber);
wdenkaffae2b2002-08-17 09:36:01 +0000930 memset(dev->mf, 0, sizeof(dev->mf));
931 memset(dev->prod, 0, sizeof(dev->prod));
932 memset(dev->serial, 0, sizeof(dev->serial));
933 if (dev->descriptor.iManufacturer)
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200934 usb_string(dev, dev->descriptor.iManufacturer,
935 dev->mf, sizeof(dev->mf));
wdenkaffae2b2002-08-17 09:36:01 +0000936 if (dev->descriptor.iProduct)
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200937 usb_string(dev, dev->descriptor.iProduct,
938 dev->prod, sizeof(dev->prod));
wdenkaffae2b2002-08-17 09:36:01 +0000939 if (dev->descriptor.iSerialNumber)
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200940 usb_string(dev, dev->descriptor.iSerialNumber,
941 dev->serial, sizeof(dev->serial));
wdenkaffae2b2002-08-17 09:36:01 +0000942 USB_PRINTF("Manufacturer %s\n", dev->mf);
943 USB_PRINTF("Product %s\n", dev->prod);
944 USB_PRINTF("SerialNumber %s\n", dev->serial);
945 /* now prode if the device is a hub */
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200946 usb_hub_probe(dev, 0);
wdenkaffae2b2002-08-17 09:36:01 +0000947 return 0;
948}
949
950/* build device Tree */
Marek Vasutc08b1b22012-02-13 18:58:16 +0000951static void usb_scan_devices(void)
wdenkaffae2b2002-08-17 09:36:01 +0000952{
953 int i;
954 struct usb_device *dev;
955
956 /* first make all devices unknown */
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200957 for (i = 0; i < USB_MAX_DEVICE; i++) {
958 memset(&usb_dev[i], 0, sizeof(struct usb_device));
Wolfgang Denkd0ff51b2008-07-14 15:19:07 +0200959 usb_dev[i].devnum = -1;
wdenkaffae2b2002-08-17 09:36:01 +0000960 }
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200961 dev_index = 0;
wdenkaffae2b2002-08-17 09:36:01 +0000962 /* device 0 is always present (root hub, so let it analyze) */
Lucas Stachc7e3b2b2012-09-26 00:14:34 +0200963 dev = usb_alloc_new_device(ctrl);
Bryan Wu1a448db2009-01-18 23:04:27 -0500964 if (usb_new_device(dev))
965 printf("No USB Device found\n");
966 else
967 printf("%d USB Device(s) found\n", dev_index);
wdenkaffae2b2002-08-17 09:36:01 +0000968 /* insert "driver" if possible */
969#ifdef CONFIG_USB_KEYBOARD
970 drv_usb_kbd_init();
wdenkaffae2b2002-08-17 09:36:01 +0000971#endif
Marek Vasut2a94dda2011-07-12 02:16:46 +0200972 USB_PRINTF("scan end\n");
wdenkaffae2b2002-08-17 09:36:01 +0000973}
974
wdenkaffae2b2002-08-17 09:36:01 +0000975/* EOF */