blob: a4820d3e949a17c15c7deda9a3b0209abd0b3b74 [file] [log] [blame]
wdenkaffae2b2002-08-17 09:36:01 +00001/*
wdenkaffae2b2002-08-17 09:36:01 +00002 * Most of this source has been derived from the Linux USB
Wolfgang Denk460c3222005-08-04 01:14:12 +02003 * project:
4 * (C) Copyright Linus Torvalds 1999
5 * (C) Copyright Johannes Erdfelt 1999-2001
6 * (C) Copyright Andreas Gal 1999
7 * (C) Copyright Gregory P. Smith 1999
8 * (C) Copyright Deti Fliegl 1999 (new USB architecture)
9 * (C) Copyright Randy Dunlap 2000
10 * (C) Copyright David Brownell 2000 (kernel hotplug, usb_device_id)
11 * (C) Copyright Yggdrasil Computing, Inc. 2000
12 * (usb_device_id matching changes by Adam J. Richter)
13 *
14 * Adapted for U-Boot:
15 * (C) Copyright 2001 Denis Peter, MPL AG Switzerland
wdenkaffae2b2002-08-17 09:36:01 +000016 *
Wolfgang Denk1a459662013-07-08 09:37:19 +020017 * SPDX-License-Identifier: GPL-2.0+
wdenkaffae2b2002-08-17 09:36:01 +000018 */
19
wdenkaffae2b2002-08-17 09:36:01 +000020/*
21 * How it works:
22 *
23 * Since this is a bootloader, the devices will not be automatic
24 * (re)configured on hotplug, but after a restart of the USB the
25 * device should work.
26 *
27 * For each transfer (except "Interrupt") we wait for completion.
28 */
29#include <common.h>
30#include <command.h>
Simon Glass95fbfe42015-03-25 12:22:08 -060031#include <dm.h>
wdenkaffae2b2002-08-17 09:36:01 +000032#include <asm/processor.h>
Mike Frysinger66cf6412012-04-04 18:44:53 +000033#include <linux/compiler.h>
Wolfgang Denk9c998aa2005-07-21 11:57:57 +020034#include <linux/ctype.h>
Christian Eggersc9182612008-05-21 22:12:00 +020035#include <asm/byteorder.h>
Tom Rinib2fb47f2011-12-15 08:40:51 -070036#include <asm/unaligned.h>
Marek Vasut97b9eb92014-08-01 03:09:53 +020037#include <errno.h>
wdenkaffae2b2002-08-17 09:36:01 +000038#include <usb.h>
39#ifdef CONFIG_4xx
Stefan Roese3048bcb2007-10-03 15:01:02 +020040#include <asm/4xx_pci.h>
wdenkaffae2b2002-08-17 09:36:01 +000041#endif
42
wdenkcd0a9de2004-02-23 20:48:38 +000043#define USB_BUFSIZ 512
44
Simon Glass95fbfe42015-03-25 12:22:08 -060045static int asynch_allowed;
46char usb_started; /* flag for the started/stopped USB status */
47
48#ifndef CONFIG_DM_USB
wdenkaffae2b2002-08-17 09:36:01 +000049static struct usb_device usb_dev[USB_MAX_DEVICE];
50static int dev_index;
Bartlomiej Siekae51aae32006-08-03 23:20:13 +020051
Lucas Stach93c25822012-09-26 00:14:36 +020052#ifndef CONFIG_USB_MAX_CONTROLLER_COUNT
53#define CONFIG_USB_MAX_CONTROLLER_COUNT 1
54#endif
wdenkaffae2b2002-08-17 09:36:01 +000055
wdenkaffae2b2002-08-17 09:36:01 +000056/***************************************************************************
57 * Init USB Device
58 */
wdenkaffae2b2002-08-17 09:36:01 +000059int usb_init(void)
60{
Lucas Stach93c25822012-09-26 00:14:36 +020061 void *ctrl;
62 struct usb_device *dev;
63 int i, start_index = 0;
Hans de Goeded906bbc2015-01-11 20:34:46 +010064 int controllers_initialized = 0;
Marek Vasut97b9eb92014-08-01 03:09:53 +020065 int ret;
wdenkaffae2b2002-08-17 09:36:01 +000066
Remy Bohmer6f5794a2008-09-16 14:55:43 +020067 dev_index = 0;
68 asynch_allowed = 1;
wdenkaffae2b2002-08-17 09:36:01 +000069 usb_hub_reset();
Lucas Stach93c25822012-09-26 00:14:36 +020070
71 /* first make all devices unknown */
72 for (i = 0; i < USB_MAX_DEVICE; i++) {
73 memset(&usb_dev[i], 0, sizeof(struct usb_device));
74 usb_dev[i].devnum = -1;
75 }
76
wdenkaffae2b2002-08-17 09:36:01 +000077 /* init low_level USB */
Lucas Stach93c25822012-09-26 00:14:36 +020078 for (i = 0; i < CONFIG_USB_MAX_CONTROLLER_COUNT; i++) {
79 /* init low_level USB */
80 printf("USB%d: ", i);
Marek Vasut97b9eb92014-08-01 03:09:53 +020081 ret = usb_lowlevel_init(i, USB_INIT_HOST, &ctrl);
82 if (ret == -ENODEV) { /* No such device. */
83 puts("Port not available.\n");
Hans de Goeded906bbc2015-01-11 20:34:46 +010084 controllers_initialized++;
Marek Vasut97b9eb92014-08-01 03:09:53 +020085 continue;
86 }
87
88 if (ret) { /* Other error. */
Lucas Stach93c25822012-09-26 00:14:36 +020089 puts("lowlevel init failed\n");
90 continue;
91 }
92 /*
93 * lowlevel init is OK, now scan the bus for devices
94 * i.e. search HUBs and configure them
95 */
Hans de Goeded906bbc2015-01-11 20:34:46 +010096 controllers_initialized++;
Lucas Stach93c25822012-09-26 00:14:36 +020097 start_index = dev_index;
98 printf("scanning bus %d for devices... ", i);
Simon Glass79b58882015-03-25 12:22:01 -060099 ret = usb_alloc_new_device(ctrl, &dev);
100 if (ret)
Paul Kocialkowski8879be82015-04-04 15:12:28 +0200101 break;
102
Lucas Stach93c25822012-09-26 00:14:36 +0200103 /*
104 * device 0 is always present
105 * (root hub, so let it analyze)
106 */
Paul Kocialkowski8879be82015-04-04 15:12:28 +0200107 ret = usb_new_device(dev);
108 if (ret)
Simon Glass79b58882015-03-25 12:22:01 -0600109 usb_free_device(dev->controller);
Lucas Stach93c25822012-09-26 00:14:36 +0200110
Paul Kocialkowski8879be82015-04-04 15:12:28 +0200111 if (start_index == dev_index) {
Lucas Stach93c25822012-09-26 00:14:36 +0200112 puts("No USB Device found\n");
Paul Kocialkowski8879be82015-04-04 15:12:28 +0200113 continue;
114 } else {
Lucas Stach93c25822012-09-26 00:14:36 +0200115 printf("%d USB Device(s) found\n",
116 dev_index - start_index);
Paul Kocialkowski8879be82015-04-04 15:12:28 +0200117 }
Lucas Stach93c25822012-09-26 00:14:36 +0200118
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 */
Hans de Goeded906bbc2015-01-11 20:34:46 +0100124 if (controllers_initialized == 0)
Lucas Stach93c25822012-09-26 00:14:36 +0200125 puts("USB error: all controllers failed lowlevel init\n");
Lucas Stach93c25822012-09-26 00:14:36 +0200126
Paul Kocialkowski5a80b342015-04-04 15:12:27 +0200127 return usb_started ? 0 : -ENODEV;
wdenkaffae2b2002-08-17 09:36:01 +0000128}
129
130/******************************************************************************
131 * Stop USB this stops the LowLevel Part and deregisters USB devices.
132 */
133int usb_stop(void)
134{
Lucas Stach93c25822012-09-26 00:14:36 +0200135 int i;
Remy Bohmereba1f2f2008-08-20 11:22:02 +0200136
137 if (usb_started) {
138 asynch_allowed = 1;
139 usb_started = 0;
140 usb_hub_reset();
Lucas Stach93c25822012-09-26 00:14:36 +0200141
142 for (i = 0; i < CONFIG_USB_MAX_CONTROLLER_COUNT; i++) {
143 if (usb_lowlevel_stop(i))
144 printf("failed to stop USB controller %d\n", i);
145 }
Remy Bohmereba1f2f2008-08-20 11:22:02 +0200146 }
Lucas Stach93c25822012-09-26 00:14:36 +0200147
148 return 0;
wdenkaffae2b2002-08-17 09:36:01 +0000149}
150
151/*
152 * disables the asynch behaviour of the control message. This is used for data
153 * transfers that uses the exclusiv access to the control and bulk messages.
Simon Glass89d48362011-02-16 11:14:33 -0800154 * Returns the old value so it can be restored later.
wdenkaffae2b2002-08-17 09:36:01 +0000155 */
Simon Glass89d48362011-02-16 11:14:33 -0800156int usb_disable_asynch(int disable)
wdenkaffae2b2002-08-17 09:36:01 +0000157{
Simon Glass89d48362011-02-16 11:14:33 -0800158 int old_value = asynch_allowed;
159
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200160 asynch_allowed = !disable;
Simon Glass89d48362011-02-16 11:14:33 -0800161 return old_value;
wdenkaffae2b2002-08-17 09:36:01 +0000162}
Simon Glass95fbfe42015-03-25 12:22:08 -0600163#endif /* !CONFIG_DM_USB */
wdenkaffae2b2002-08-17 09:36:01 +0000164
165
166/*-------------------------------------------------------------------
167 * Message wrappers.
168 *
169 */
170
171/*
172 * submits an Interrupt Message
173 */
174int usb_submit_int_msg(struct usb_device *dev, unsigned long pipe,
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200175 void *buffer, int transfer_len, int interval)
wdenkaffae2b2002-08-17 09:36:01 +0000176{
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200177 return submit_int_msg(dev, pipe, buffer, transfer_len, interval);
wdenkaffae2b2002-08-17 09:36:01 +0000178}
179
180/*
181 * submits a control message and waits for comletion (at least timeout * 1ms)
182 * If timeout is 0, we don't wait for completion (used as example to set and
183 * clear keyboards LEDs). For data transfers, (storage transfers) we don't
184 * allow control messages with 0 timeout, by previousely resetting the flag
185 * asynch_allowed (usb_disable_asynch(1)).
186 * returns the transfered length if OK or -1 if error. The transfered length
187 * and the current status are stored in the dev->act_len and dev->status.
188 */
189int usb_control_msg(struct usb_device *dev, unsigned int pipe,
190 unsigned char request, unsigned char requesttype,
191 unsigned short value, unsigned short index,
192 void *data, unsigned short size, int timeout)
193{
Puneet Saxenaf5766132012-04-03 14:56:06 +0530194 ALLOC_CACHE_ALIGN_BUFFER(struct devrequest, setup_packet, 1);
Marek Vasute159e482012-02-13 18:58:18 +0000195
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200196 if ((timeout == 0) && (!asynch_allowed)) {
197 /* request for a asynch control pipe is not allowed */
Paul Kocialkowski5a80b342015-04-04 15:12:27 +0200198 return -EINVAL;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200199 }
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200200
wdenkaffae2b2002-08-17 09:36:01 +0000201 /* set setup command */
Puneet Saxenaf5766132012-04-03 14:56:06 +0530202 setup_packet->requesttype = requesttype;
203 setup_packet->request = request;
204 setup_packet->value = cpu_to_le16(value);
205 setup_packet->index = cpu_to_le16(index);
206 setup_packet->length = cpu_to_le16(size);
Vivek Gautamceb49722013-04-12 16:34:33 +0530207 debug("usb_control_msg: request: 0x%X, requesttype: 0x%X, " \
208 "value 0x%X index 0x%X length 0x%X\n",
209 request, requesttype, value, index, size);
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200210 dev->status = USB_ST_NOT_PROC; /*not yet processed */
wdenkaffae2b2002-08-17 09:36:01 +0000211
Ilya Yanokfd060282012-07-15 04:43:51 +0000212 if (submit_control_msg(dev, pipe, data, size, setup_packet) < 0)
Paul Kocialkowski5a80b342015-04-04 15:12:27 +0200213 return -EIO;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200214 if (timeout == 0)
wdenkaffae2b2002-08-17 09:36:01 +0000215 return (int)size;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200216
Remy Bohmer84d36b32010-02-01 19:40:47 +0100217 /*
218 * Wait for status to update until timeout expires, USB driver
219 * interrupt handler may set the status when the USB operation has
220 * been completed.
221 */
222 while (timeout--) {
223 if (!((volatile unsigned long)dev->status & USB_ST_NOT_PROC))
224 break;
Mike Frysinger5b84dd62012-03-05 13:47:00 +0000225 mdelay(1);
Remy Bohmer48867202008-10-10 10:23:21 +0200226 }
Remy Bohmer84d36b32010-02-01 19:40:47 +0100227 if (dev->status)
228 return -1;
Remy Bohmer48867202008-10-10 10:23:21 +0200229
230 return dev->act_len;
Remy Bohmer84d36b32010-02-01 19:40:47 +0100231
wdenkaffae2b2002-08-17 09:36:01 +0000232}
233
234/*-------------------------------------------------------------------
235 * submits bulk message, and waits for completion. returns 0 if Ok or
Paul Kocialkowski5a80b342015-04-04 15:12:27 +0200236 * negative if Error.
wdenkaffae2b2002-08-17 09:36:01 +0000237 * synchronous behavior
238 */
239int usb_bulk_msg(struct usb_device *dev, unsigned int pipe,
240 void *data, int len, int *actual_length, int timeout)
241{
242 if (len < 0)
Paul Kocialkowski5a80b342015-04-04 15:12:27 +0200243 return -EINVAL;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200244 dev->status = USB_ST_NOT_PROC; /*not yet processed */
Ilya Yanokfd060282012-07-15 04:43:51 +0000245 if (submit_bulk_msg(dev, pipe, data, len) < 0)
Paul Kocialkowski5a80b342015-04-04 15:12:27 +0200246 return -EIO;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200247 while (timeout--) {
248 if (!((volatile unsigned long)dev->status & USB_ST_NOT_PROC))
wdenkaffae2b2002-08-17 09:36:01 +0000249 break;
Mike Frysinger5b84dd62012-03-05 13:47:00 +0000250 mdelay(1);
wdenkaffae2b2002-08-17 09:36:01 +0000251 }
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200252 *actual_length = dev->act_len;
253 if (dev->status == 0)
wdenkaffae2b2002-08-17 09:36:01 +0000254 return 0;
255 else
Paul Kocialkowski5a80b342015-04-04 15:12:27 +0200256 return -EIO;
wdenkaffae2b2002-08-17 09:36:01 +0000257}
258
259
260/*-------------------------------------------------------------------
261 * Max Packet stuff
262 */
263
264/*
265 * returns the max packet size, depending on the pipe direction and
266 * the configurations values
267 */
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200268int usb_maxpacket(struct usb_device *dev, unsigned long pipe)
wdenkaffae2b2002-08-17 09:36:01 +0000269{
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200270 /* direction is out -> use emaxpacket out */
271 if ((pipe & USB_DIR_IN) == 0)
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100272 return dev->epmaxpacketout[((pipe>>15) & 0xf)];
wdenkaffae2b2002-08-17 09:36:01 +0000273 else
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100274 return dev->epmaxpacketin[((pipe>>15) & 0xf)];
wdenkaffae2b2002-08-17 09:36:01 +0000275}
276
Marek Vasut5e8baf82011-11-05 23:35:12 +0100277/*
278 * The routine usb_set_maxpacket_ep() is extracted from the loop of routine
Remy Bohmerbe19d322008-09-16 14:55:42 +0200279 * usb_set_maxpacket(), because the optimizer of GCC 4.x chokes on this routine
280 * when it is inlined in 1 single routine. What happens is that the register r3
281 * is used as loop-count 'i', but gets overwritten later on.
282 * This is clearly a compiler bug, but it is easier to workaround it here than
283 * to update the compiler (Occurs with at least several GCC 4.{1,2},x
284 * CodeSourcery compilers like e.g. 2007q3, 2008q1, 2008q3 lite editions on ARM)
Marek Vasut5e8baf82011-11-05 23:35:12 +0100285 *
286 * NOTE: Similar behaviour was observed with GCC4.6 on ARMv5.
Remy Bohmerbe19d322008-09-16 14:55:42 +0200287 */
Mike Frysinger66cf6412012-04-04 18:44:53 +0000288static void noinline
Marek Vasut5e8baf82011-11-05 23:35:12 +0100289usb_set_maxpacket_ep(struct usb_device *dev, int if_idx, int ep_idx)
Remy Bohmerbe19d322008-09-16 14:55:42 +0200290{
291 int b;
Marek Vasut5e8baf82011-11-05 23:35:12 +0100292 struct usb_endpoint_descriptor *ep;
Tom Rinib2fb47f2011-12-15 08:40:51 -0700293 u16 ep_wMaxPacketSize;
Marek Vasut5e8baf82011-11-05 23:35:12 +0100294
295 ep = &dev->config.if_desc[if_idx].ep_desc[ep_idx];
Remy Bohmerbe19d322008-09-16 14:55:42 +0200296
297 b = ep->bEndpointAddress & USB_ENDPOINT_NUMBER_MASK;
Tom Rinib2fb47f2011-12-15 08:40:51 -0700298 ep_wMaxPacketSize = get_unaligned(&ep->wMaxPacketSize);
Remy Bohmerbe19d322008-09-16 14:55:42 +0200299
300 if ((ep->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) ==
301 USB_ENDPOINT_XFER_CONTROL) {
302 /* Control => bidirectional */
Tom Rinib2fb47f2011-12-15 08:40:51 -0700303 dev->epmaxpacketout[b] = ep_wMaxPacketSize;
304 dev->epmaxpacketin[b] = ep_wMaxPacketSize;
Vivek Gautamceb49722013-04-12 16:34:33 +0530305 debug("##Control EP epmaxpacketout/in[%d] = %d\n",
306 b, dev->epmaxpacketin[b]);
Remy Bohmerbe19d322008-09-16 14:55:42 +0200307 } else {
308 if ((ep->bEndpointAddress & 0x80) == 0) {
309 /* OUT Endpoint */
Tom Rinib2fb47f2011-12-15 08:40:51 -0700310 if (ep_wMaxPacketSize > dev->epmaxpacketout[b]) {
311 dev->epmaxpacketout[b] = ep_wMaxPacketSize;
Vivek Gautamceb49722013-04-12 16:34:33 +0530312 debug("##EP epmaxpacketout[%d] = %d\n",
313 b, dev->epmaxpacketout[b]);
Remy Bohmerbe19d322008-09-16 14:55:42 +0200314 }
315 } else {
316 /* IN Endpoint */
Tom Rinib2fb47f2011-12-15 08:40:51 -0700317 if (ep_wMaxPacketSize > dev->epmaxpacketin[b]) {
318 dev->epmaxpacketin[b] = ep_wMaxPacketSize;
Vivek Gautamceb49722013-04-12 16:34:33 +0530319 debug("##EP epmaxpacketin[%d] = %d\n",
320 b, dev->epmaxpacketin[b]);
Remy Bohmerbe19d322008-09-16 14:55:42 +0200321 }
322 } /* if out */
323 } /* if control */
324}
325
wdenkaffae2b2002-08-17 09:36:01 +0000326/*
327 * set the max packed value of all endpoints in the given configuration
328 */
Marek Vasutc08b1b22012-02-13 18:58:16 +0000329static int usb_set_maxpacket(struct usb_device *dev)
wdenkaffae2b2002-08-17 09:36:01 +0000330{
Remy Bohmerbe19d322008-09-16 14:55:42 +0200331 int i, ii;
wdenkaffae2b2002-08-17 09:36:01 +0000332
Tom Rix8f8bd562009-10-31 12:37:38 -0500333 for (i = 0; i < dev->config.desc.bNumInterfaces; i++)
334 for (ii = 0; ii < dev->config.if_desc[i].desc.bNumEndpoints; ii++)
Marek Vasut5e8baf82011-11-05 23:35:12 +0100335 usb_set_maxpacket_ep(dev, i, ii);
wdenkaffae2b2002-08-17 09:36:01 +0000336
wdenkaffae2b2002-08-17 09:36:01 +0000337 return 0;
338}
339
340/*******************************************************************************
341 * Parse the config, located in buffer, and fills the dev->config structure.
342 * Note that all little/big endian swapping are done automatically.
Julius Wernereaf3e612013-07-19 13:12:08 -0700343 * (wTotalLength has already been swapped and sanitized when it was read.)
wdenkaffae2b2002-08-17 09:36:01 +0000344 */
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);
Paul Kocialkowski5a80b342015-04-04 15:12:27 +0200362 return -EINVAL;
wdenkaffae2b2002-08-17 09:36:01 +0000363 }
Julius Wernereaf3e612013-07-19 13:12:08 -0700364 if (head->bLength != USB_DT_CONFIG_SIZE) {
365 printf("ERROR: Invalid USB CFG length (%d)\n", head->bLength);
Paul Kocialkowski5a80b342015-04-04 15:12:27 +0200366 return -EINVAL;
Julius Wernereaf3e612013-07-19 13:12:08 -0700367 }
368 memcpy(&dev->config, head, USB_DT_CONFIG_SIZE);
Bartlomiej Sieka7455af42006-08-02 00:54:18 +0200369 dev->config.no_of_if = 0;
wdenkaffae2b2002-08-17 09:36:01 +0000370
Tom Rix8f8bd562009-10-31 12:37:38 -0500371 index = dev->config.desc.bLength;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200372 /* Ok the first entry must be a configuration entry,
373 * now process the others */
Bartlomiej Sieka7455af42006-08-02 00:54:18 +0200374 head = (struct usb_descriptor_header *) &buffer[index];
Julius Wernereaf3e612013-07-19 13:12:08 -0700375 while (index + 1 < dev->config.desc.wTotalLength && head->bLength) {
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200376 switch (head->bDescriptorType) {
377 case USB_DT_INTERFACE:
Julius Wernereaf3e612013-07-19 13:12:08 -0700378 if (head->bLength != USB_DT_INTERFACE_SIZE) {
379 printf("ERROR: Invalid USB IF length (%d)\n",
380 head->bLength);
381 break;
382 }
383 if (index + USB_DT_INTERFACE_SIZE >
384 dev->config.desc.wTotalLength) {
385 puts("USB IF descriptor overflowed buffer!\n");
386 break;
387 }
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200388 if (((struct usb_interface_descriptor *) \
Julius Wernereaf3e612013-07-19 13:12:08 -0700389 head)->bInterfaceNumber != curr_if_num) {
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200390 /* this is a new interface, copy new desc */
391 ifno = dev->config.no_of_if;
Julius Wernereaf3e612013-07-19 13:12:08 -0700392 if (ifno >= USB_MAXINTERFACES) {
393 puts("Too many USB interfaces!\n");
394 /* try to go on with what we have */
Paul Kocialkowski5a80b342015-04-04 15:12:27 +0200395 return -EINVAL;
Julius Wernereaf3e612013-07-19 13:12:08 -0700396 }
Vivek Gautam605bd752013-04-12 16:34:34 +0530397 if_desc = &dev->config.if_desc[ifno];
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200398 dev->config.no_of_if++;
Julius Wernereaf3e612013-07-19 13:12:08 -0700399 memcpy(if_desc, head,
400 USB_DT_INTERFACE_SIZE);
Vivek Gautam605bd752013-04-12 16:34:34 +0530401 if_desc->no_of_ep = 0;
402 if_desc->num_altsetting = 1;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200403 curr_if_num =
Vivek Gautam605bd752013-04-12 16:34:34 +0530404 if_desc->desc.bInterfaceNumber;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200405 } else {
406 /* found alternate setting for the interface */
Vivek Gautam605bd752013-04-12 16:34:34 +0530407 if (ifno >= 0) {
408 if_desc = &dev->config.if_desc[ifno];
409 if_desc->num_altsetting++;
410 }
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200411 }
412 break;
413 case USB_DT_ENDPOINT:
Julius Wernereaf3e612013-07-19 13:12:08 -0700414 if (head->bLength != USB_DT_ENDPOINT_SIZE) {
415 printf("ERROR: Invalid USB EP length (%d)\n",
416 head->bLength);
417 break;
418 }
419 if (index + USB_DT_ENDPOINT_SIZE >
420 dev->config.desc.wTotalLength) {
421 puts("USB EP descriptor overflowed buffer!\n");
422 break;
423 }
424 if (ifno < 0) {
425 puts("Endpoint descriptor out of order!\n");
426 break;
427 }
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200428 epno = dev->config.if_desc[ifno].no_of_ep;
Vivek Gautam605bd752013-04-12 16:34:34 +0530429 if_desc = &dev->config.if_desc[ifno];
Julius Wernereaf3e612013-07-19 13:12:08 -0700430 if (epno > USB_MAXENDPOINTS) {
431 printf("Interface %d has too many endpoints!\n",
432 if_desc->desc.bInterfaceNumber);
Paul Kocialkowski5a80b342015-04-04 15:12:27 +0200433 return -EINVAL;
Julius Wernereaf3e612013-07-19 13:12:08 -0700434 }
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200435 /* found an endpoint */
Vivek Gautam605bd752013-04-12 16:34:34 +0530436 if_desc->no_of_ep++;
Julius Wernereaf3e612013-07-19 13:12:08 -0700437 memcpy(&if_desc->ep_desc[epno], head,
438 USB_DT_ENDPOINT_SIZE);
Tom Rinib2fb47f2011-12-15 08:40:51 -0700439 ep_wMaxPacketSize = get_unaligned(&dev->config.\
440 if_desc[ifno].\
441 ep_desc[epno].\
442 wMaxPacketSize);
443 put_unaligned(le16_to_cpu(ep_wMaxPacketSize),
444 &dev->config.\
445 if_desc[ifno].\
446 ep_desc[epno].\
447 wMaxPacketSize);
Vivek Gautamceb49722013-04-12 16:34:33 +0530448 debug("if %d, ep %d\n", ifno, epno);
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200449 break;
Vivek Gautam6497c662013-04-12 16:34:38 +0530450 case USB_DT_SS_ENDPOINT_COMP:
Julius Wernereaf3e612013-07-19 13:12:08 -0700451 if (head->bLength != USB_DT_SS_EP_COMP_SIZE) {
452 printf("ERROR: Invalid USB EPC length (%d)\n",
453 head->bLength);
454 break;
455 }
456 if (index + USB_DT_SS_EP_COMP_SIZE >
457 dev->config.desc.wTotalLength) {
458 puts("USB EPC descriptor overflowed buffer!\n");
459 break;
460 }
461 if (ifno < 0 || epno < 0) {
462 puts("EPC descriptor out of order!\n");
463 break;
464 }
Vivek Gautam6497c662013-04-12 16:34:38 +0530465 if_desc = &dev->config.if_desc[ifno];
Julius Wernereaf3e612013-07-19 13:12:08 -0700466 memcpy(&if_desc->ss_ep_comp_desc[epno], head,
467 USB_DT_SS_EP_COMP_SIZE);
Vivek Gautam6497c662013-04-12 16:34:38 +0530468 break;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200469 default:
470 if (head->bLength == 0)
Paul Kocialkowski5a80b342015-04-04 15:12:27 +0200471 return -EINVAL;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200472
Vivek Gautamceb49722013-04-12 16:34:33 +0530473 debug("unknown Description Type : %x\n",
474 head->bDescriptorType);
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200475
Vivek Gautamceb49722013-04-12 16:34:33 +0530476#ifdef DEBUG
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200477 {
Wolfgang Denkfad2e1b2011-10-05 23:11:19 +0200478 unsigned char *ch = (unsigned char *)head;
Vivek Gautamceb49722013-04-12 16:34:33 +0530479 int i;
480
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200481 for (i = 0; i < head->bLength; i++)
Vivek Gautamceb49722013-04-12 16:34:33 +0530482 debug("%02X ", *ch++);
483 debug("\n\n\n");
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200484 }
Vivek Gautamceb49722013-04-12 16:34:33 +0530485#endif
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200486 break;
wdenkaffae2b2002-08-17 09:36:01 +0000487 }
Bartlomiej Sieka7455af42006-08-02 00:54:18 +0200488 index += head->bLength;
489 head = (struct usb_descriptor_header *)&buffer[index];
wdenkaffae2b2002-08-17 09:36:01 +0000490 }
Paul Kocialkowski5a80b342015-04-04 15:12:27 +0200491 return 0;
wdenkaffae2b2002-08-17 09:36:01 +0000492}
493
494/***********************************************************************
495 * Clears an endpoint
496 * endp: endpoint number in bits 0-3;
497 * direction flag in bit 7 (1 = IN, 0 = OUT)
498 */
499int usb_clear_halt(struct usb_device *dev, int pipe)
500{
501 int result;
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200502 int endp = usb_pipeendpoint(pipe)|(usb_pipein(pipe)<<7);
wdenkaffae2b2002-08-17 09:36:01 +0000503
504 result = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200505 USB_REQ_CLEAR_FEATURE, USB_RECIP_ENDPOINT, 0,
506 endp, NULL, 0, USB_CNTL_TIMEOUT * 3);
wdenkaffae2b2002-08-17 09:36:01 +0000507
508 /* don't clear if failed */
509 if (result < 0)
510 return result;
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200511
Wolfgang Denk095b8a32005-08-02 17:06:17 +0200512 /*
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200513 * NOTE: we do not get status and verify reset was successful
514 * as some devices are reported to lock up upon this check..
515 */
516
wdenkaffae2b2002-08-17 09:36:01 +0000517 usb_endpoint_running(dev, usb_pipeendpoint(pipe), usb_pipeout(pipe));
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200518
wdenkaffae2b2002-08-17 09:36:01 +0000519 /* toggle is reset on clear */
520 usb_settoggle(dev, usb_pipeendpoint(pipe), usb_pipeout(pipe), 0);
521 return 0;
522}
523
524
525/**********************************************************************
526 * get_descriptor type
527 */
Marek Vasutc08b1b22012-02-13 18:58:16 +0000528static int usb_get_descriptor(struct usb_device *dev, unsigned char type,
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200529 unsigned char index, void *buf, int size)
wdenkaffae2b2002-08-17 09:36:01 +0000530{
531 int res;
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200532 res = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
wdenkaffae2b2002-08-17 09:36:01 +0000533 USB_REQ_GET_DESCRIPTOR, USB_DIR_IN,
534 (type << 8) + index, 0,
535 buf, size, USB_CNTL_TIMEOUT);
536 return res;
537}
538
539/**********************************************************************
540 * gets configuration cfgno and store it in the buffer
541 */
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200542int usb_get_configuration_no(struct usb_device *dev,
543 unsigned char *buffer, int cfgno)
wdenkaffae2b2002-08-17 09:36:01 +0000544{
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200545 int result;
Julius Wernereaf3e612013-07-19 13:12:08 -0700546 unsigned int length;
Ilya Yanokc60795f2012-11-06 13:48:20 +0000547 struct usb_config_descriptor *config;
wdenkaffae2b2002-08-17 09:36:01 +0000548
Ilya Yanokc60795f2012-11-06 13:48:20 +0000549 config = (struct usb_config_descriptor *)&buffer[0];
Remy Bohmer48867202008-10-10 10:23:21 +0200550 result = usb_get_descriptor(dev, USB_DT_CONFIG, cfgno, buffer, 9);
551 if (result < 9) {
wdenkaffae2b2002-08-17 09:36:01 +0000552 if (result < 0)
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200553 printf("unable to get descriptor, error %lX\n",
554 dev->status);
wdenkaffae2b2002-08-17 09:36:01 +0000555 else
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200556 printf("config descriptor too short " \
Remy Bohmer48867202008-10-10 10:23:21 +0200557 "(expected %i, got %i)\n", 9, result);
Paul Kocialkowski5a80b342015-04-04 15:12:27 +0200558 return -EIO;
wdenkaffae2b2002-08-17 09:36:01 +0000559 }
Julius Wernereaf3e612013-07-19 13:12:08 -0700560 length = le16_to_cpu(config->wTotalLength);
wdenkaffae2b2002-08-17 09:36:01 +0000561
Julius Wernereaf3e612013-07-19 13:12:08 -0700562 if (length > USB_BUFSIZ) {
563 printf("%s: failed to get descriptor - too long: %d\n",
564 __func__, length);
Paul Kocialkowski5a80b342015-04-04 15:12:27 +0200565 return -EIO;
wdenkcd0a9de2004-02-23 20:48:38 +0000566 }
567
Julius Wernereaf3e612013-07-19 13:12:08 -0700568 result = usb_get_descriptor(dev, USB_DT_CONFIG, cfgno, buffer, length);
569 debug("get_conf_no %d Result %d, wLength %d\n", cfgno, result, length);
570 config->wTotalLength = length; /* validated, with CPU byte order */
571
wdenkaffae2b2002-08-17 09:36:01 +0000572 return result;
573}
574
575/********************************************************************
576 * set address of a device to the value in dev->devnum.
577 * This can only be done by addressing the device via the default address (0)
578 */
Marek Vasutc08b1b22012-02-13 18:58:16 +0000579static int usb_set_address(struct usb_device *dev)
wdenkaffae2b2002-08-17 09:36:01 +0000580{
581 int res;
582
Vivek Gautamceb49722013-04-12 16:34:33 +0530583 debug("set address %d\n", dev->devnum);
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200584 res = usb_control_msg(dev, usb_snddefctrl(dev),
585 USB_REQ_SET_ADDRESS, 0,
586 (dev->devnum), 0,
587 NULL, 0, USB_CNTL_TIMEOUT);
wdenkaffae2b2002-08-17 09:36:01 +0000588 return res;
589}
590
591/********************************************************************
592 * set interface number to interface
593 */
594int usb_set_interface(struct usb_device *dev, int interface, int alternate)
595{
Tom Rix8f8bd562009-10-31 12:37:38 -0500596 struct usb_interface *if_face = NULL;
wdenkaffae2b2002-08-17 09:36:01 +0000597 int ret, i;
598
Tom Rix8f8bd562009-10-31 12:37:38 -0500599 for (i = 0; i < dev->config.desc.bNumInterfaces; i++) {
600 if (dev->config.if_desc[i].desc.bInterfaceNumber == interface) {
wdenkaffae2b2002-08-17 09:36:01 +0000601 if_face = &dev->config.if_desc[i];
602 break;
603 }
604 }
605 if (!if_face) {
606 printf("selecting invalid interface %d", interface);
Paul Kocialkowski5a80b342015-04-04 15:12:27 +0200607 return -EINVAL;
wdenkaffae2b2002-08-17 09:36:01 +0000608 }
Bartlomiej Sieka7455af42006-08-02 00:54:18 +0200609 /*
610 * We should return now for devices with only one alternate setting.
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200611 * According to 9.4.10 of the Universal Serial Bus Specification
612 * Revision 2.0 such devices can return with a STALL. This results in
613 * some USB sticks timeouting during initialization and then being
614 * unusable in U-Boot.
Bartlomiej Sieka7455af42006-08-02 00:54:18 +0200615 */
616 if (if_face->num_altsetting == 1)
617 return 0;
wdenkaffae2b2002-08-17 09:36:01 +0000618
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200619 ret = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
620 USB_REQ_SET_INTERFACE, USB_RECIP_INTERFACE,
621 alternate, interface, NULL, 0,
622 USB_CNTL_TIMEOUT * 5);
623 if (ret < 0)
wdenkaffae2b2002-08-17 09:36:01 +0000624 return ret;
625
wdenkaffae2b2002-08-17 09:36:01 +0000626 return 0;
627}
628
629/********************************************************************
630 * set configuration number to configuration
631 */
Marek Vasutc08b1b22012-02-13 18:58:16 +0000632static int usb_set_configuration(struct usb_device *dev, int configuration)
wdenkaffae2b2002-08-17 09:36:01 +0000633{
634 int res;
Vivek Gautamceb49722013-04-12 16:34:33 +0530635 debug("set configuration %d\n", configuration);
wdenkaffae2b2002-08-17 09:36:01 +0000636 /* set setup command */
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200637 res = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
638 USB_REQ_SET_CONFIGURATION, 0,
639 configuration, 0,
640 NULL, 0, USB_CNTL_TIMEOUT);
641 if (res == 0) {
wdenkaffae2b2002-08-17 09:36:01 +0000642 dev->toggle[0] = 0;
643 dev->toggle[1] = 0;
644 return 0;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200645 } else
Paul Kocialkowski5a80b342015-04-04 15:12:27 +0200646 return -EIO;
wdenkaffae2b2002-08-17 09:36:01 +0000647}
648
649/********************************************************************
650 * set protocol to protocol
651 */
652int usb_set_protocol(struct usb_device *dev, int ifnum, int protocol)
653{
654 return usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
655 USB_REQ_SET_PROTOCOL, USB_TYPE_CLASS | USB_RECIP_INTERFACE,
656 protocol, ifnum, NULL, 0, USB_CNTL_TIMEOUT);
657}
658
659/********************************************************************
660 * set idle
661 */
662int usb_set_idle(struct usb_device *dev, int ifnum, int duration, int report_id)
663{
664 return usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
665 USB_REQ_SET_IDLE, USB_TYPE_CLASS | USB_RECIP_INTERFACE,
666 (duration << 8) | report_id, ifnum, NULL, 0, USB_CNTL_TIMEOUT);
667}
668
669/********************************************************************
670 * get report
671 */
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200672int usb_get_report(struct usb_device *dev, int ifnum, unsigned char type,
673 unsigned char id, void *buf, int size)
wdenkaffae2b2002-08-17 09:36:01 +0000674{
675 return usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200676 USB_REQ_GET_REPORT,
677 USB_DIR_IN | USB_TYPE_CLASS | USB_RECIP_INTERFACE,
678 (type << 8) + id, ifnum, buf, size, USB_CNTL_TIMEOUT);
wdenkaffae2b2002-08-17 09:36:01 +0000679}
680
681/********************************************************************
682 * get class descriptor
683 */
684int usb_get_class_descriptor(struct usb_device *dev, int ifnum,
685 unsigned char type, unsigned char id, void *buf, int size)
686{
687 return usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
688 USB_REQ_GET_DESCRIPTOR, USB_RECIP_INTERFACE | USB_DIR_IN,
689 (type << 8) + id, ifnum, buf, size, USB_CNTL_TIMEOUT);
690}
691
692/********************************************************************
693 * get string index in buffer
694 */
Marek Vasutc08b1b22012-02-13 18:58:16 +0000695static int usb_get_string(struct usb_device *dev, unsigned short langid,
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200696 unsigned char index, void *buf, int size)
wdenkaffae2b2002-08-17 09:36:01 +0000697{
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200698 int i;
699 int result;
700
701 for (i = 0; i < 3; ++i) {
702 /* some devices are flaky */
703 result = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
704 USB_REQ_GET_DESCRIPTOR, USB_DIR_IN,
Wolfgang Denk095b8a32005-08-02 17:06:17 +0200705 (USB_DT_STRING << 8) + index, langid, buf, size,
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200706 USB_CNTL_TIMEOUT);
707
708 if (result > 0)
709 break;
Wolfgang Denk095b8a32005-08-02 17:06:17 +0200710 }
711
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200712 return result;
wdenkaffae2b2002-08-17 09:36:01 +0000713}
714
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200715
716static void usb_try_string_workarounds(unsigned char *buf, int *length)
717{
718 int newlength, oldlength = *length;
719
720 for (newlength = 2; newlength + 1 < oldlength; newlength += 2)
721 if (!isprint(buf[newlength]) || buf[newlength + 1])
722 break;
723
724 if (newlength > 2) {
725 buf[0] = newlength;
726 *length = newlength;
727 }
728}
729
730
731static int usb_string_sub(struct usb_device *dev, unsigned int langid,
732 unsigned int index, unsigned char *buf)
733{
734 int rc;
735
736 /* Try to read the string descriptor by asking for the maximum
737 * possible number of bytes */
738 rc = usb_get_string(dev, langid, index, buf, 255);
739
740 /* If that failed try to read the descriptor length, then
741 * ask for just that many bytes */
742 if (rc < 2) {
743 rc = usb_get_string(dev, langid, index, buf, 2);
744 if (rc == 2)
745 rc = usb_get_string(dev, langid, index, buf, buf[0]);
746 }
747
748 if (rc >= 2) {
749 if (!buf[0] && !buf[1])
750 usb_try_string_workarounds(buf, &rc);
751
752 /* There might be extra junk at the end of the descriptor */
753 if (buf[0] < rc)
754 rc = buf[0];
755
756 rc = rc - (rc & 1); /* force a multiple of two */
757 }
758
759 if (rc < 2)
Paul Kocialkowski5a80b342015-04-04 15:12:27 +0200760 rc = -EINVAL;
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200761
762 return rc;
763}
764
765
wdenkaffae2b2002-08-17 09:36:01 +0000766/********************************************************************
767 * usb_string:
768 * Get string index and translate it to ascii.
769 * returns string length (> 0) or error (< 0)
770 */
771int usb_string(struct usb_device *dev, int index, char *buf, size_t size)
772{
Puneet Saxenaf5766132012-04-03 14:56:06 +0530773 ALLOC_CACHE_ALIGN_BUFFER(unsigned char, mybuf, USB_BUFSIZ);
wdenkaffae2b2002-08-17 09:36:01 +0000774 unsigned char *tbuf;
775 int err;
776 unsigned int u, idx;
777
778 if (size <= 0 || !buf || !index)
Paul Kocialkowski5a80b342015-04-04 15:12:27 +0200779 return -EINVAL;
wdenkaffae2b2002-08-17 09:36:01 +0000780 buf[0] = 0;
Wolfgang Denkd0ff51b2008-07-14 15:19:07 +0200781 tbuf = &mybuf[0];
wdenkaffae2b2002-08-17 09:36:01 +0000782
783 /* get langid for strings if it's not yet known */
784 if (!dev->have_langid) {
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200785 err = usb_string_sub(dev, 0, 0, tbuf);
wdenkaffae2b2002-08-17 09:36:01 +0000786 if (err < 0) {
Vivek Gautamceb49722013-04-12 16:34:33 +0530787 debug("error getting string descriptor 0 " \
788 "(error=%lx)\n", dev->status);
Paul Kocialkowski5a80b342015-04-04 15:12:27 +0200789 return -EIO;
wdenkaffae2b2002-08-17 09:36:01 +0000790 } else if (tbuf[0] < 4) {
Vivek Gautamceb49722013-04-12 16:34:33 +0530791 debug("string descriptor 0 too short\n");
Paul Kocialkowski5a80b342015-04-04 15:12:27 +0200792 return -EIO;
wdenkaffae2b2002-08-17 09:36:01 +0000793 } else {
794 dev->have_langid = -1;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200795 dev->string_langid = tbuf[2] | (tbuf[3] << 8);
wdenkaffae2b2002-08-17 09:36:01 +0000796 /* always use the first langid listed */
Vivek Gautamceb49722013-04-12 16:34:33 +0530797 debug("USB device number %d default " \
798 "language ID 0x%x\n",
799 dev->devnum, dev->string_langid);
wdenkaffae2b2002-08-17 09:36:01 +0000800 }
801 }
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200802
803 err = usb_string_sub(dev, dev->string_langid, index, tbuf);
wdenkaffae2b2002-08-17 09:36:01 +0000804 if (err < 0)
805 return err;
wdenkcd0a9de2004-02-23 20:48:38 +0000806
wdenkaffae2b2002-08-17 09:36:01 +0000807 size--; /* leave room for trailing NULL char in output buffer */
808 for (idx = 0, u = 2; u < err; u += 2) {
809 if (idx >= size)
810 break;
811 if (tbuf[u+1]) /* high byte */
812 buf[idx++] = '?'; /* non-ASCII character */
813 else
814 buf[idx++] = tbuf[u];
815 }
816 buf[idx] = 0;
817 err = idx;
818 return err;
819}
820
821
822/********************************************************************
823 * USB device handling:
824 * the USB device are static allocated [USB_MAX_DEVICE].
825 */
826
Simon Glass95fbfe42015-03-25 12:22:08 -0600827#ifndef CONFIG_DM_USB
wdenkaffae2b2002-08-17 09:36:01 +0000828
829/* returns a pointer to the device with the index [index].
830 * if the device is not assigned (dev->devnum==-1) returns NULL
831 */
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200832struct usb_device *usb_get_dev_index(int index)
wdenkaffae2b2002-08-17 09:36:01 +0000833{
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200834 if (usb_dev[index].devnum == -1)
wdenkaffae2b2002-08-17 09:36:01 +0000835 return NULL;
836 else
837 return &usb_dev[index];
838}
839
Simon Glass79b58882015-03-25 12:22:01 -0600840int usb_alloc_new_device(struct udevice *controller, struct usb_device **devp)
wdenkaffae2b2002-08-17 09:36:01 +0000841{
842 int i;
Vivek Gautamceb49722013-04-12 16:34:33 +0530843 debug("New Device %d\n", dev_index);
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200844 if (dev_index == USB_MAX_DEVICE) {
845 printf("ERROR, too many USB Devices, max=%d\n", USB_MAX_DEVICE);
Simon Glass79b58882015-03-25 12:22:01 -0600846 return -ENOSPC;
wdenkaffae2b2002-08-17 09:36:01 +0000847 }
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200848 /* default Address is 0, real addresses start with 1 */
849 usb_dev[dev_index].devnum = dev_index + 1;
850 usb_dev[dev_index].maxchild = 0;
851 for (i = 0; i < USB_MAXCHILDREN; i++)
852 usb_dev[dev_index].children[i] = NULL;
853 usb_dev[dev_index].parent = NULL;
Lucas Stachc7e3b2b2012-09-26 00:14:34 +0200854 usb_dev[dev_index].controller = controller;
wdenkaffae2b2002-08-17 09:36:01 +0000855 dev_index++;
Simon Glass79b58882015-03-25 12:22:01 -0600856 *devp = &usb_dev[dev_index - 1];
857
858 return 0;
wdenkaffae2b2002-08-17 09:36:01 +0000859}
860
Milind Choudhary359439d2012-12-12 17:55:28 -0800861/*
862 * Free the newly created device node.
863 * Called in error cases where configuring a newly attached
864 * device fails for some reason.
865 */
Simon Glass79b58882015-03-25 12:22:01 -0600866void usb_free_device(struct udevice *controller)
Milind Choudhary359439d2012-12-12 17:55:28 -0800867{
868 dev_index--;
Vivek Gautamceb49722013-04-12 16:34:33 +0530869 debug("Freeing device node: %d\n", dev_index);
Milind Choudhary359439d2012-12-12 17:55:28 -0800870 memset(&usb_dev[dev_index], 0, sizeof(struct usb_device));
871 usb_dev[dev_index].devnum = -1;
872}
wdenkaffae2b2002-08-17 09:36:01 +0000873
874/*
Vivek Gautam5853e132013-09-14 14:02:45 +0530875 * XHCI issues Enable Slot command and thereafter
876 * allocates device contexts. Provide a weak alias
877 * function for the purpose, so that XHCI overrides it
878 * and EHCI/OHCI just work out of the box.
879 */
880__weak int usb_alloc_device(struct usb_device *udev)
881{
882 return 0;
883}
Simon Glass95fbfe42015-03-25 12:22:08 -0600884#endif /* !CONFIG_DM_USB */
Simon Glass862e75c2015-03-25 12:22:04 -0600885
Simon Glass95fbfe42015-03-25 12:22:08 -0600886#ifndef CONFIG_DM_USB
Simon Glass862e75c2015-03-25 12:22:04 -0600887int usb_legacy_port_reset(struct usb_device *hub, int portnr)
888{
889 if (hub) {
890 unsigned short portstatus;
891 int err;
892
893 /* reset the port for the second time */
894 err = legacy_hub_port_reset(hub, portnr - 1, &portstatus);
895 if (err < 0) {
896 printf("\n Couldn't reset port %i\n", portnr);
897 return err;
898 }
899 } else {
900 usb_reset_root_port();
901 }
902
903 return 0;
904}
Simon Glass95fbfe42015-03-25 12:22:08 -0600905#endif
Simon Glass862e75c2015-03-25 12:22:04 -0600906
Simon Glass0ed27902015-03-25 12:22:07 -0600907static int get_descriptor_len(struct usb_device *dev, int len, int expect_len)
wdenkaffae2b2002-08-17 09:36:01 +0000908{
Simon Glass128fcac2015-03-25 12:22:05 -0600909 __maybe_unused struct usb_device_descriptor *desc;
Puneet Saxenaf5766132012-04-03 14:56:06 +0530910 ALLOC_CACHE_ALIGN_BUFFER(unsigned char, tmpbuf, USB_BUFSIZ);
Simon Glass0ed27902015-03-25 12:22:07 -0600911 int err;
912
913 desc = (struct usb_device_descriptor *)tmpbuf;
914
915 err = usb_get_descriptor(dev, USB_DT_DEVICE, 0, desc, len);
916 if (err < expect_len) {
917 if (err < 0) {
918 printf("unable to get device descriptor (error=%d)\n",
919 err);
920 return err;
921 } else {
922 printf("USB device descriptor short read (expected %i, got %i)\n",
923 expect_len, err);
924 return -EIO;
925 }
926 }
927 memcpy(&dev->descriptor, tmpbuf, sizeof(dev->descriptor));
928
929 return 0;
930}
931
932static int usb_setup_descriptor(struct usb_device *dev, bool do_read)
933{
934 __maybe_unused struct usb_device_descriptor *desc;
wdenkaffae2b2002-08-17 09:36:01 +0000935
Vivek Gautam5853e132013-09-14 14:02:45 +0530936 /*
Simon Glass53d8aa02015-03-25 12:22:03 -0600937 * This is a Windows scheme of initialization sequence, with double
Remy Bohmer48867202008-10-10 10:23:21 +0200938 * reset of the device (Linux uses the same sequence)
Remy Bohmerc9e84362008-09-16 14:55:44 +0200939 * Some equipment is said to work only with such init sequence; this
940 * patch is based on the work by Alan Stern:
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100941 * http://sourceforge.net/mailarchive/forum.php?
942 * thread_id=5729457&forum_id=5398
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200943 */
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200944
Simon Glass53d8aa02015-03-25 12:22:03 -0600945 /*
946 * send 64-byte GET-DEVICE-DESCRIPTOR request. Since the descriptor is
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200947 * only 18 bytes long, this will terminate with a short packet. But if
948 * the maxpacket size is 8 or 16 the device may be waiting to transmit
Remy Bohmerc9e84362008-09-16 14:55:44 +0200949 * some more, or keeps on retransmitting the 8 byte header. */
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200950
Remy Bohmerc9e84362008-09-16 14:55:44 +0200951 dev->descriptor.bMaxPacketSize0 = 64; /* Start off at 64 bytes */
Remy Bohmer48867202008-10-10 10:23:21 +0200952 /* Default to 64 byte max packet size */
953 dev->maxpacketsize = PACKET_SIZE_64;
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100954 dev->epmaxpacketin[0] = 64;
Remy Bohmerc9e84362008-09-16 14:55:44 +0200955 dev->epmaxpacketout[0] = 64;
Remy Bohmer48867202008-10-10 10:23:21 +0200956
Simon Glass128fcac2015-03-25 12:22:05 -0600957 if (do_read) {
958 int err;
Simon Glass862e75c2015-03-25 12:22:04 -0600959
Simon Glass128fcac2015-03-25 12:22:05 -0600960 /*
961 * Validate we've received only at least 8 bytes, not that we've
962 * received the entire descriptor. The reasoning is:
963 * - The code only uses fields in the first 8 bytes, so that's all we
964 * need to have fetched at this stage.
965 * - The smallest maxpacket size is 8 bytes. Before we know the actual
966 * maxpacket the device uses, the USB controller may only accept a
967 * single packet. Consequently we are only guaranteed to receive 1
968 * packet (at least 8 bytes) even in a non-error case.
969 *
970 * At least the DWC2 controller needs to be programmed with the number
971 * of packets in addition to the number of bytes. A request for 64
972 * bytes of data with the maxpacket guessed as 64 (above) yields a
973 * request for 1 packet.
974 */
Simon Glass0ed27902015-03-25 12:22:07 -0600975 err = get_descriptor_len(dev, 64, 8);
976 if (err)
977 return err;
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200978 }
Remy Bohmer48867202008-10-10 10:23:21 +0200979
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100980 dev->epmaxpacketin[0] = dev->descriptor.bMaxPacketSize0;
wdenkaffae2b2002-08-17 09:36:01 +0000981 dev->epmaxpacketout[0] = dev->descriptor.bMaxPacketSize0;
982 switch (dev->descriptor.bMaxPacketSize0) {
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100983 case 8:
984 dev->maxpacketsize = PACKET_SIZE_8;
985 break;
986 case 16:
987 dev->maxpacketsize = PACKET_SIZE_16;
988 break;
989 case 32:
990 dev->maxpacketsize = PACKET_SIZE_32;
991 break;
992 case 64:
993 dev->maxpacketsize = PACKET_SIZE_64;
994 break;
Paul Kocialkowski04ee6ee2015-04-04 15:12:29 +0200995 default:
996 printf("usb_new_device: invalid max packet size\n");
997 return -EIO;
wdenkaffae2b2002-08-17 09:36:01 +0000998 }
Simon Glass128fcac2015-03-25 12:22:05 -0600999
1000 return 0;
1001}
1002
Simon Glass91398f92015-03-25 12:22:06 -06001003static int usb_prepare_device(struct usb_device *dev, int addr, bool do_read,
1004 struct usb_device *parent, int portnr)
1005{
1006 int err;
1007
1008 /*
1009 * Allocate usb 3.0 device context.
1010 * USB 3.0 (xHCI) protocol tries to allocate device slot
1011 * and related data structures first. This call does that.
1012 * Refer to sec 4.3.2 in xHCI spec rev1.0
1013 */
1014 err = usb_alloc_device(dev);
1015 if (err) {
1016 printf("Cannot allocate device context to get SLOT_ID\n");
1017 return err;
1018 }
1019 err = usb_setup_descriptor(dev, do_read);
1020 if (err)
1021 return err;
1022 err = usb_legacy_port_reset(parent, portnr);
1023 if (err)
1024 return err;
1025
1026 dev->devnum = addr;
1027
1028 err = usb_set_address(dev); /* set address */
1029
1030 if (err < 0) {
1031 printf("\n USB device not accepting new address " \
1032 "(error=%lX)\n", dev->status);
1033 return err;
1034 }
1035
1036 mdelay(10); /* Let the SET_ADDRESS settle */
1037
1038 return 0;
1039}
1040
Simon Glass95fbfe42015-03-25 12:22:08 -06001041int usb_select_config(struct usb_device *dev)
Simon Glass128fcac2015-03-25 12:22:05 -06001042{
Simon Glass128fcac2015-03-25 12:22:05 -06001043 ALLOC_CACHE_ALIGN_BUFFER(unsigned char, tmpbuf, USB_BUFSIZ);
Simon Glass0ed27902015-03-25 12:22:07 -06001044 int err;
Simon Glass128fcac2015-03-25 12:22:05 -06001045
Simon Glass0ed27902015-03-25 12:22:07 -06001046 err = get_descriptor_len(dev, USB_DT_DEVICE_SIZE, USB_DT_DEVICE_SIZE);
1047 if (err)
1048 return err;
Simon Glass128fcac2015-03-25 12:22:05 -06001049
wdenkaffae2b2002-08-17 09:36:01 +00001050 /* correct le values */
Christian Eggersc9182612008-05-21 22:12:00 +02001051 le16_to_cpus(&dev->descriptor.bcdUSB);
1052 le16_to_cpus(&dev->descriptor.idVendor);
1053 le16_to_cpus(&dev->descriptor.idProduct);
1054 le16_to_cpus(&dev->descriptor.bcdDevice);
Simon Glass0ed27902015-03-25 12:22:07 -06001055
wdenkaffae2b2002-08-17 09:36:01 +00001056 /* only support for one config for now */
Vincent Palatin8b8d7792012-07-24 07:12:02 +00001057 err = usb_get_configuration_no(dev, tmpbuf, 0);
1058 if (err < 0) {
1059 printf("usb_new_device: Cannot read configuration, " \
1060 "skipping device %04x:%04x\n",
1061 dev->descriptor.idVendor, dev->descriptor.idProduct);
Simon Glass0ed27902015-03-25 12:22:07 -06001062 return err;
Vincent Palatin8b8d7792012-07-24 07:12:02 +00001063 }
Puneet Saxenaf5766132012-04-03 14:56:06 +05301064 usb_parse_config(dev, tmpbuf, 0);
wdenkaffae2b2002-08-17 09:36:01 +00001065 usb_set_maxpacket(dev);
Simon Glass0ed27902015-03-25 12:22:07 -06001066 /*
1067 * we set the default configuration here
1068 * This seems premature. If the driver wants a different configuration
1069 * it will need to select itself.
1070 */
1071 err = usb_set_configuration(dev, dev->config.desc.bConfigurationValue);
1072 if (err < 0) {
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001073 printf("failed to set default configuration " \
1074 "len %d, status %lX\n", dev->act_len, dev->status);
Simon Glass0ed27902015-03-25 12:22:07 -06001075 return err;
wdenkaffae2b2002-08-17 09:36:01 +00001076 }
Vivek Gautamceb49722013-04-12 16:34:33 +05301077 debug("new device strings: Mfr=%d, Product=%d, SerialNumber=%d\n",
1078 dev->descriptor.iManufacturer, dev->descriptor.iProduct,
1079 dev->descriptor.iSerialNumber);
wdenkaffae2b2002-08-17 09:36:01 +00001080 memset(dev->mf, 0, sizeof(dev->mf));
1081 memset(dev->prod, 0, sizeof(dev->prod));
1082 memset(dev->serial, 0, sizeof(dev->serial));
1083 if (dev->descriptor.iManufacturer)
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001084 usb_string(dev, dev->descriptor.iManufacturer,
1085 dev->mf, sizeof(dev->mf));
wdenkaffae2b2002-08-17 09:36:01 +00001086 if (dev->descriptor.iProduct)
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001087 usb_string(dev, dev->descriptor.iProduct,
1088 dev->prod, sizeof(dev->prod));
wdenkaffae2b2002-08-17 09:36:01 +00001089 if (dev->descriptor.iSerialNumber)
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001090 usb_string(dev, dev->descriptor.iSerialNumber,
1091 dev->serial, sizeof(dev->serial));
Vivek Gautamceb49722013-04-12 16:34:33 +05301092 debug("Manufacturer %s\n", dev->mf);
1093 debug("Product %s\n", dev->prod);
1094 debug("SerialNumber %s\n", dev->serial);
Simon Glass0ed27902015-03-25 12:22:07 -06001095
1096 return 0;
1097}
1098
Simon Glass95fbfe42015-03-25 12:22:08 -06001099int usb_setup_device(struct usb_device *dev, bool do_read,
1100 struct usb_device *parent, int portnr)
Simon Glass0ed27902015-03-25 12:22:07 -06001101{
1102 int addr;
1103 int ret;
1104
1105 /* We still haven't set the Address yet */
1106 addr = dev->devnum;
1107 dev->devnum = 0;
1108
1109 ret = usb_prepare_device(dev, addr, do_read, parent, portnr);
1110 if (ret)
1111 return ret;
1112 ret = usb_select_config(dev);
1113
1114 return ret;
1115}
1116
Simon Glass95fbfe42015-03-25 12:22:08 -06001117#ifndef CONFIG_DM_USB
Simon Glass0ed27902015-03-25 12:22:07 -06001118/*
1119 * By the time we get here, the device has gotten a new device ID
1120 * and is in the default state. We need to identify the thing and
1121 * get the ball rolling..
1122 *
1123 * Returns 0 for success, != 0 for error.
1124 */
1125int usb_new_device(struct usb_device *dev)
1126{
1127 bool do_read = true;
1128 int err;
1129
1130 /*
1131 * XHCI needs to issue a Address device command to setup
1132 * proper device context structures, before it can interact
1133 * with the device. So a get_descriptor will fail before any
1134 * of that is done for XHCI unlike EHCI.
1135 */
1136#ifdef CONFIG_USB_XHCI
1137 do_read = false;
1138#endif
1139 err = usb_setup_device(dev, do_read, dev->parent, dev->portnr);
1140 if (err)
1141 return err;
1142
1143 /* Now probe if the device is a hub */
1144 err = usb_hub_probe(dev, 0);
1145 if (err < 0)
1146 return err;
1147
wdenkaffae2b2002-08-17 09:36:01 +00001148 return 0;
1149}
Simon Glass95fbfe42015-03-25 12:22:08 -06001150#endif
wdenkaffae2b2002-08-17 09:36:01 +00001151
Mateusz Zalega16297cf2013-10-04 19:22:26 +02001152__weak
Troy Kiskybba67912013-10-10 15:27:55 -07001153int board_usb_init(int index, enum usb_init_type init)
Mateusz Zalega16297cf2013-10-04 19:22:26 +02001154{
1155 return 0;
1156}
Kishon Vijay Abraham Idb378d72015-02-23 18:40:18 +05301157
1158__weak
1159int board_usb_cleanup(int index, enum usb_init_type init)
1160{
1161 return 0;
1162}
Simon Glass95fbfe42015-03-25 12:22:08 -06001163
1164bool usb_device_has_child_on_port(struct usb_device *parent, int port)
1165{
1166#ifdef CONFIG_DM_USB
1167 return false;
1168#else
1169 return parent->children[port] != NULL;
1170#endif
1171}
1172
wdenkaffae2b2002-08-17 09:36:01 +00001173/* EOF */