blob: 736cd9f00950929c3a269987d8c9c2e32cc80f7e [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>
31#include <asm/processor.h>
Mike Frysinger66cf6412012-04-04 18:44:53 +000032#include <linux/compiler.h>
Wolfgang Denk9c998aa2005-07-21 11:57:57 +020033#include <linux/ctype.h>
Christian Eggersc9182612008-05-21 22:12:00 +020034#include <asm/byteorder.h>
Tom Rinib2fb47f2011-12-15 08:40:51 -070035#include <asm/unaligned.h>
Marek Vasut97b9eb92014-08-01 03:09:53 +020036#include <errno.h>
wdenkaffae2b2002-08-17 09:36:01 +000037#include <usb.h>
38#ifdef CONFIG_4xx
Stefan Roese3048bcb2007-10-03 15:01:02 +020039#include <asm/4xx_pci.h>
wdenkaffae2b2002-08-17 09:36:01 +000040#endif
41
wdenkcd0a9de2004-02-23 20:48:38 +000042#define USB_BUFSIZ 512
43
wdenkaffae2b2002-08-17 09:36:01 +000044static struct usb_device usb_dev[USB_MAX_DEVICE];
45static int dev_index;
wdenkaffae2b2002-08-17 09:36:01 +000046static int asynch_allowed;
wdenkaffae2b2002-08-17 09:36:01 +000047
Bartlomiej Siekae51aae32006-08-03 23:20:13 +020048char usb_started; /* flag for the started/stopped USB status */
49
Lucas Stach93c25822012-09-26 00:14:36 +020050#ifndef CONFIG_USB_MAX_CONTROLLER_COUNT
51#define CONFIG_USB_MAX_CONTROLLER_COUNT 1
52#endif
wdenkaffae2b2002-08-17 09:36:01 +000053
wdenkaffae2b2002-08-17 09:36:01 +000054/***************************************************************************
55 * Init USB Device
56 */
wdenkaffae2b2002-08-17 09:36:01 +000057int usb_init(void)
58{
Lucas Stach93c25822012-09-26 00:14:36 +020059 void *ctrl;
60 struct usb_device *dev;
61 int i, start_index = 0;
Marek Vasut97b9eb92014-08-01 03:09:53 +020062 int ret;
wdenkaffae2b2002-08-17 09:36:01 +000063
Remy Bohmer6f5794a2008-09-16 14:55:43 +020064 dev_index = 0;
65 asynch_allowed = 1;
wdenkaffae2b2002-08-17 09:36:01 +000066 usb_hub_reset();
Lucas Stach93c25822012-09-26 00:14:36 +020067
68 /* first make all devices unknown */
69 for (i = 0; i < USB_MAX_DEVICE; i++) {
70 memset(&usb_dev[i], 0, sizeof(struct usb_device));
71 usb_dev[i].devnum = -1;
72 }
73
wdenkaffae2b2002-08-17 09:36:01 +000074 /* init low_level USB */
Lucas Stach93c25822012-09-26 00:14:36 +020075 for (i = 0; i < CONFIG_USB_MAX_CONTROLLER_COUNT; i++) {
76 /* init low_level USB */
77 printf("USB%d: ", i);
Marek Vasut97b9eb92014-08-01 03:09:53 +020078 ret = usb_lowlevel_init(i, USB_INIT_HOST, &ctrl);
79 if (ret == -ENODEV) { /* No such device. */
80 puts("Port not available.\n");
81 continue;
82 }
83
84 if (ret) { /* Other error. */
Lucas Stach93c25822012-09-26 00:14:36 +020085 puts("lowlevel init failed\n");
86 continue;
87 }
88 /*
89 * lowlevel init is OK, now scan the bus for devices
90 * i.e. search HUBs and configure them
91 */
92 start_index = dev_index;
93 printf("scanning bus %d for devices... ", i);
94 dev = usb_alloc_new_device(ctrl);
95 /*
96 * device 0 is always present
97 * (root hub, so let it analyze)
98 */
99 if (dev)
100 usb_new_device(dev);
101
102 if (start_index == dev_index)
103 puts("No USB Device found\n");
104 else
105 printf("%d USB Device(s) found\n",
106 dev_index - start_index);
107
Bartlomiej Siekae51aae32006-08-03 23:20:13 +0200108 usb_started = 1;
Lucas Stach93c25822012-09-26 00:14:36 +0200109 }
110
Vivek Gautamceb49722013-04-12 16:34:33 +0530111 debug("scan end\n");
Lucas Stach93c25822012-09-26 00:14:36 +0200112 /* if we were not able to find at least one working bus, bail out */
113 if (!usb_started) {
114 puts("USB error: all controllers failed lowlevel init\n");
wdenkaffae2b2002-08-17 09:36:01 +0000115 return -1;
116 }
Lucas Stach93c25822012-09-26 00:14:36 +0200117
118 return 0;
wdenkaffae2b2002-08-17 09:36:01 +0000119}
120
121/******************************************************************************
122 * Stop USB this stops the LowLevel Part and deregisters USB devices.
123 */
124int usb_stop(void)
125{
Lucas Stach93c25822012-09-26 00:14:36 +0200126 int i;
Remy Bohmereba1f2f2008-08-20 11:22:02 +0200127
128 if (usb_started) {
129 asynch_allowed = 1;
130 usb_started = 0;
131 usb_hub_reset();
Lucas Stach93c25822012-09-26 00:14:36 +0200132
133 for (i = 0; i < CONFIG_USB_MAX_CONTROLLER_COUNT; i++) {
134 if (usb_lowlevel_stop(i))
135 printf("failed to stop USB controller %d\n", i);
136 }
Remy Bohmereba1f2f2008-08-20 11:22:02 +0200137 }
Lucas Stach93c25822012-09-26 00:14:36 +0200138
139 return 0;
wdenkaffae2b2002-08-17 09:36:01 +0000140}
141
142/*
143 * disables the asynch behaviour of the control message. This is used for data
144 * transfers that uses the exclusiv access to the control and bulk messages.
Simon Glass89d48362011-02-16 11:14:33 -0800145 * Returns the old value so it can be restored later.
wdenkaffae2b2002-08-17 09:36:01 +0000146 */
Simon Glass89d48362011-02-16 11:14:33 -0800147int usb_disable_asynch(int disable)
wdenkaffae2b2002-08-17 09:36:01 +0000148{
Simon Glass89d48362011-02-16 11:14:33 -0800149 int old_value = asynch_allowed;
150
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200151 asynch_allowed = !disable;
Simon Glass89d48362011-02-16 11:14:33 -0800152 return old_value;
wdenkaffae2b2002-08-17 09:36:01 +0000153}
154
155
156/*-------------------------------------------------------------------
157 * Message wrappers.
158 *
159 */
160
161/*
162 * submits an Interrupt Message
163 */
164int usb_submit_int_msg(struct usb_device *dev, unsigned long pipe,
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200165 void *buffer, int transfer_len, int interval)
wdenkaffae2b2002-08-17 09:36:01 +0000166{
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200167 return submit_int_msg(dev, pipe, buffer, transfer_len, interval);
wdenkaffae2b2002-08-17 09:36:01 +0000168}
169
170/*
171 * submits a control message and waits for comletion (at least timeout * 1ms)
172 * If timeout is 0, we don't wait for completion (used as example to set and
173 * clear keyboards LEDs). For data transfers, (storage transfers) we don't
174 * allow control messages with 0 timeout, by previousely resetting the flag
175 * asynch_allowed (usb_disable_asynch(1)).
176 * returns the transfered length if OK or -1 if error. The transfered length
177 * and the current status are stored in the dev->act_len and dev->status.
178 */
179int usb_control_msg(struct usb_device *dev, unsigned int pipe,
180 unsigned char request, unsigned char requesttype,
181 unsigned short value, unsigned short index,
182 void *data, unsigned short size, int timeout)
183{
Puneet Saxenaf5766132012-04-03 14:56:06 +0530184 ALLOC_CACHE_ALIGN_BUFFER(struct devrequest, setup_packet, 1);
Marek Vasute159e482012-02-13 18:58:18 +0000185
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200186 if ((timeout == 0) && (!asynch_allowed)) {
187 /* request for a asynch control pipe is not allowed */
wdenkaffae2b2002-08-17 09:36:01 +0000188 return -1;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200189 }
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200190
wdenkaffae2b2002-08-17 09:36:01 +0000191 /* set setup command */
Puneet Saxenaf5766132012-04-03 14:56:06 +0530192 setup_packet->requesttype = requesttype;
193 setup_packet->request = request;
194 setup_packet->value = cpu_to_le16(value);
195 setup_packet->index = cpu_to_le16(index);
196 setup_packet->length = cpu_to_le16(size);
Vivek Gautamceb49722013-04-12 16:34:33 +0530197 debug("usb_control_msg: request: 0x%X, requesttype: 0x%X, " \
198 "value 0x%X index 0x%X length 0x%X\n",
199 request, requesttype, value, index, size);
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200200 dev->status = USB_ST_NOT_PROC; /*not yet processed */
wdenkaffae2b2002-08-17 09:36:01 +0000201
Ilya Yanokfd060282012-07-15 04:43:51 +0000202 if (submit_control_msg(dev, pipe, data, size, setup_packet) < 0)
203 return -1;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200204 if (timeout == 0)
wdenkaffae2b2002-08-17 09:36:01 +0000205 return (int)size;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200206
Remy Bohmer84d36b32010-02-01 19:40:47 +0100207 /*
208 * Wait for status to update until timeout expires, USB driver
209 * interrupt handler may set the status when the USB operation has
210 * been completed.
211 */
212 while (timeout--) {
213 if (!((volatile unsigned long)dev->status & USB_ST_NOT_PROC))
214 break;
Mike Frysinger5b84dd62012-03-05 13:47:00 +0000215 mdelay(1);
Remy Bohmer48867202008-10-10 10:23:21 +0200216 }
Remy Bohmer84d36b32010-02-01 19:40:47 +0100217 if (dev->status)
218 return -1;
Remy Bohmer48867202008-10-10 10:23:21 +0200219
220 return dev->act_len;
Remy Bohmer84d36b32010-02-01 19:40:47 +0100221
wdenkaffae2b2002-08-17 09:36:01 +0000222}
223
224/*-------------------------------------------------------------------
225 * submits bulk message, and waits for completion. returns 0 if Ok or
226 * -1 if Error.
227 * synchronous behavior
228 */
229int usb_bulk_msg(struct usb_device *dev, unsigned int pipe,
230 void *data, int len, int *actual_length, int timeout)
231{
232 if (len < 0)
233 return -1;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200234 dev->status = USB_ST_NOT_PROC; /*not yet processed */
Ilya Yanokfd060282012-07-15 04:43:51 +0000235 if (submit_bulk_msg(dev, pipe, data, len) < 0)
236 return -1;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200237 while (timeout--) {
238 if (!((volatile unsigned long)dev->status & USB_ST_NOT_PROC))
wdenkaffae2b2002-08-17 09:36:01 +0000239 break;
Mike Frysinger5b84dd62012-03-05 13:47:00 +0000240 mdelay(1);
wdenkaffae2b2002-08-17 09:36:01 +0000241 }
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200242 *actual_length = dev->act_len;
243 if (dev->status == 0)
wdenkaffae2b2002-08-17 09:36:01 +0000244 return 0;
245 else
246 return -1;
247}
248
249
250/*-------------------------------------------------------------------
251 * Max Packet stuff
252 */
253
254/*
255 * returns the max packet size, depending on the pipe direction and
256 * the configurations values
257 */
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200258int usb_maxpacket(struct usb_device *dev, unsigned long pipe)
wdenkaffae2b2002-08-17 09:36:01 +0000259{
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200260 /* direction is out -> use emaxpacket out */
261 if ((pipe & USB_DIR_IN) == 0)
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100262 return dev->epmaxpacketout[((pipe>>15) & 0xf)];
wdenkaffae2b2002-08-17 09:36:01 +0000263 else
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100264 return dev->epmaxpacketin[((pipe>>15) & 0xf)];
wdenkaffae2b2002-08-17 09:36:01 +0000265}
266
Marek Vasut5e8baf82011-11-05 23:35:12 +0100267/*
268 * The routine usb_set_maxpacket_ep() is extracted from the loop of routine
Remy Bohmerbe19d322008-09-16 14:55:42 +0200269 * usb_set_maxpacket(), because the optimizer of GCC 4.x chokes on this routine
270 * when it is inlined in 1 single routine. What happens is that the register r3
271 * is used as loop-count 'i', but gets overwritten later on.
272 * This is clearly a compiler bug, but it is easier to workaround it here than
273 * to update the compiler (Occurs with at least several GCC 4.{1,2},x
274 * CodeSourcery compilers like e.g. 2007q3, 2008q1, 2008q3 lite editions on ARM)
Marek Vasut5e8baf82011-11-05 23:35:12 +0100275 *
276 * NOTE: Similar behaviour was observed with GCC4.6 on ARMv5.
Remy Bohmerbe19d322008-09-16 14:55:42 +0200277 */
Mike Frysinger66cf6412012-04-04 18:44:53 +0000278static void noinline
Marek Vasut5e8baf82011-11-05 23:35:12 +0100279usb_set_maxpacket_ep(struct usb_device *dev, int if_idx, int ep_idx)
Remy Bohmerbe19d322008-09-16 14:55:42 +0200280{
281 int b;
Marek Vasut5e8baf82011-11-05 23:35:12 +0100282 struct usb_endpoint_descriptor *ep;
Tom Rinib2fb47f2011-12-15 08:40:51 -0700283 u16 ep_wMaxPacketSize;
Marek Vasut5e8baf82011-11-05 23:35:12 +0100284
285 ep = &dev->config.if_desc[if_idx].ep_desc[ep_idx];
Remy Bohmerbe19d322008-09-16 14:55:42 +0200286
287 b = ep->bEndpointAddress & USB_ENDPOINT_NUMBER_MASK;
Tom Rinib2fb47f2011-12-15 08:40:51 -0700288 ep_wMaxPacketSize = get_unaligned(&ep->wMaxPacketSize);
Remy Bohmerbe19d322008-09-16 14:55:42 +0200289
290 if ((ep->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) ==
291 USB_ENDPOINT_XFER_CONTROL) {
292 /* Control => bidirectional */
Tom Rinib2fb47f2011-12-15 08:40:51 -0700293 dev->epmaxpacketout[b] = ep_wMaxPacketSize;
294 dev->epmaxpacketin[b] = ep_wMaxPacketSize;
Vivek Gautamceb49722013-04-12 16:34:33 +0530295 debug("##Control EP epmaxpacketout/in[%d] = %d\n",
296 b, dev->epmaxpacketin[b]);
Remy Bohmerbe19d322008-09-16 14:55:42 +0200297 } else {
298 if ((ep->bEndpointAddress & 0x80) == 0) {
299 /* OUT Endpoint */
Tom Rinib2fb47f2011-12-15 08:40:51 -0700300 if (ep_wMaxPacketSize > dev->epmaxpacketout[b]) {
301 dev->epmaxpacketout[b] = ep_wMaxPacketSize;
Vivek Gautamceb49722013-04-12 16:34:33 +0530302 debug("##EP epmaxpacketout[%d] = %d\n",
303 b, dev->epmaxpacketout[b]);
Remy Bohmerbe19d322008-09-16 14:55:42 +0200304 }
305 } else {
306 /* IN Endpoint */
Tom Rinib2fb47f2011-12-15 08:40:51 -0700307 if (ep_wMaxPacketSize > dev->epmaxpacketin[b]) {
308 dev->epmaxpacketin[b] = ep_wMaxPacketSize;
Vivek Gautamceb49722013-04-12 16:34:33 +0530309 debug("##EP epmaxpacketin[%d] = %d\n",
310 b, dev->epmaxpacketin[b]);
Remy Bohmerbe19d322008-09-16 14:55:42 +0200311 }
312 } /* if out */
313 } /* if control */
314}
315
wdenkaffae2b2002-08-17 09:36:01 +0000316/*
317 * set the max packed value of all endpoints in the given configuration
318 */
Marek Vasutc08b1b22012-02-13 18:58:16 +0000319static int usb_set_maxpacket(struct usb_device *dev)
wdenkaffae2b2002-08-17 09:36:01 +0000320{
Remy Bohmerbe19d322008-09-16 14:55:42 +0200321 int i, ii;
wdenkaffae2b2002-08-17 09:36:01 +0000322
Tom Rix8f8bd562009-10-31 12:37:38 -0500323 for (i = 0; i < dev->config.desc.bNumInterfaces; i++)
324 for (ii = 0; ii < dev->config.if_desc[i].desc.bNumEndpoints; ii++)
Marek Vasut5e8baf82011-11-05 23:35:12 +0100325 usb_set_maxpacket_ep(dev, i, ii);
wdenkaffae2b2002-08-17 09:36:01 +0000326
wdenkaffae2b2002-08-17 09:36:01 +0000327 return 0;
328}
329
330/*******************************************************************************
331 * Parse the config, located in buffer, and fills the dev->config structure.
332 * Note that all little/big endian swapping are done automatically.
Julius Wernereaf3e612013-07-19 13:12:08 -0700333 * (wTotalLength has already been swapped and sanitized when it was read.)
wdenkaffae2b2002-08-17 09:36:01 +0000334 */
Marek Vasutc08b1b22012-02-13 18:58:16 +0000335static int usb_parse_config(struct usb_device *dev,
336 unsigned char *buffer, int cfgno)
wdenkaffae2b2002-08-17 09:36:01 +0000337{
338 struct usb_descriptor_header *head;
Bartlomiej Sieka7455af42006-08-02 00:54:18 +0200339 int index, ifno, epno, curr_if_num;
Tom Rinib2fb47f2011-12-15 08:40:51 -0700340 u16 ep_wMaxPacketSize;
Vivek Gautam605bd752013-04-12 16:34:34 +0530341 struct usb_interface *if_desc = NULL;
wdenkaffae2b2002-08-17 09:36:01 +0000342
Bartlomiej Sieka7455af42006-08-02 00:54:18 +0200343 ifno = -1;
344 epno = -1;
345 curr_if_num = -1;
346
347 dev->configno = cfgno;
348 head = (struct usb_descriptor_header *) &buffer[0];
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200349 if (head->bDescriptorType != USB_DT_CONFIG) {
350 printf(" ERROR: NOT USB_CONFIG_DESC %x\n",
351 head->bDescriptorType);
wdenkaffae2b2002-08-17 09:36:01 +0000352 return -1;
353 }
Julius Wernereaf3e612013-07-19 13:12:08 -0700354 if (head->bLength != USB_DT_CONFIG_SIZE) {
355 printf("ERROR: Invalid USB CFG length (%d)\n", head->bLength);
356 return -1;
357 }
358 memcpy(&dev->config, head, USB_DT_CONFIG_SIZE);
Bartlomiej Sieka7455af42006-08-02 00:54:18 +0200359 dev->config.no_of_if = 0;
wdenkaffae2b2002-08-17 09:36:01 +0000360
Tom Rix8f8bd562009-10-31 12:37:38 -0500361 index = dev->config.desc.bLength;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200362 /* Ok the first entry must be a configuration entry,
363 * now process the others */
Bartlomiej Sieka7455af42006-08-02 00:54:18 +0200364 head = (struct usb_descriptor_header *) &buffer[index];
Julius Wernereaf3e612013-07-19 13:12:08 -0700365 while (index + 1 < dev->config.desc.wTotalLength && head->bLength) {
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200366 switch (head->bDescriptorType) {
367 case USB_DT_INTERFACE:
Julius Wernereaf3e612013-07-19 13:12:08 -0700368 if (head->bLength != USB_DT_INTERFACE_SIZE) {
369 printf("ERROR: Invalid USB IF length (%d)\n",
370 head->bLength);
371 break;
372 }
373 if (index + USB_DT_INTERFACE_SIZE >
374 dev->config.desc.wTotalLength) {
375 puts("USB IF descriptor overflowed buffer!\n");
376 break;
377 }
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200378 if (((struct usb_interface_descriptor *) \
Julius Wernereaf3e612013-07-19 13:12:08 -0700379 head)->bInterfaceNumber != curr_if_num) {
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200380 /* this is a new interface, copy new desc */
381 ifno = dev->config.no_of_if;
Julius Wernereaf3e612013-07-19 13:12:08 -0700382 if (ifno >= USB_MAXINTERFACES) {
383 puts("Too many USB interfaces!\n");
384 /* try to go on with what we have */
385 return 1;
386 }
Vivek Gautam605bd752013-04-12 16:34:34 +0530387 if_desc = &dev->config.if_desc[ifno];
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200388 dev->config.no_of_if++;
Julius Wernereaf3e612013-07-19 13:12:08 -0700389 memcpy(if_desc, head,
390 USB_DT_INTERFACE_SIZE);
Vivek Gautam605bd752013-04-12 16:34:34 +0530391 if_desc->no_of_ep = 0;
392 if_desc->num_altsetting = 1;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200393 curr_if_num =
Vivek Gautam605bd752013-04-12 16:34:34 +0530394 if_desc->desc.bInterfaceNumber;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200395 } else {
396 /* found alternate setting for the interface */
Vivek Gautam605bd752013-04-12 16:34:34 +0530397 if (ifno >= 0) {
398 if_desc = &dev->config.if_desc[ifno];
399 if_desc->num_altsetting++;
400 }
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200401 }
402 break;
403 case USB_DT_ENDPOINT:
Julius Wernereaf3e612013-07-19 13:12:08 -0700404 if (head->bLength != USB_DT_ENDPOINT_SIZE) {
405 printf("ERROR: Invalid USB EP length (%d)\n",
406 head->bLength);
407 break;
408 }
409 if (index + USB_DT_ENDPOINT_SIZE >
410 dev->config.desc.wTotalLength) {
411 puts("USB EP descriptor overflowed buffer!\n");
412 break;
413 }
414 if (ifno < 0) {
415 puts("Endpoint descriptor out of order!\n");
416 break;
417 }
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200418 epno = dev->config.if_desc[ifno].no_of_ep;
Vivek Gautam605bd752013-04-12 16:34:34 +0530419 if_desc = &dev->config.if_desc[ifno];
Julius Wernereaf3e612013-07-19 13:12:08 -0700420 if (epno > USB_MAXENDPOINTS) {
421 printf("Interface %d has too many endpoints!\n",
422 if_desc->desc.bInterfaceNumber);
423 return 1;
424 }
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200425 /* found an endpoint */
Vivek Gautam605bd752013-04-12 16:34:34 +0530426 if_desc->no_of_ep++;
Julius Wernereaf3e612013-07-19 13:12:08 -0700427 memcpy(&if_desc->ep_desc[epno], head,
428 USB_DT_ENDPOINT_SIZE);
Tom Rinib2fb47f2011-12-15 08:40:51 -0700429 ep_wMaxPacketSize = get_unaligned(&dev->config.\
430 if_desc[ifno].\
431 ep_desc[epno].\
432 wMaxPacketSize);
433 put_unaligned(le16_to_cpu(ep_wMaxPacketSize),
434 &dev->config.\
435 if_desc[ifno].\
436 ep_desc[epno].\
437 wMaxPacketSize);
Vivek Gautamceb49722013-04-12 16:34:33 +0530438 debug("if %d, ep %d\n", ifno, epno);
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200439 break;
Vivek Gautam6497c662013-04-12 16:34:38 +0530440 case USB_DT_SS_ENDPOINT_COMP:
Julius Wernereaf3e612013-07-19 13:12:08 -0700441 if (head->bLength != USB_DT_SS_EP_COMP_SIZE) {
442 printf("ERROR: Invalid USB EPC length (%d)\n",
443 head->bLength);
444 break;
445 }
446 if (index + USB_DT_SS_EP_COMP_SIZE >
447 dev->config.desc.wTotalLength) {
448 puts("USB EPC descriptor overflowed buffer!\n");
449 break;
450 }
451 if (ifno < 0 || epno < 0) {
452 puts("EPC descriptor out of order!\n");
453 break;
454 }
Vivek Gautam6497c662013-04-12 16:34:38 +0530455 if_desc = &dev->config.if_desc[ifno];
Julius Wernereaf3e612013-07-19 13:12:08 -0700456 memcpy(&if_desc->ss_ep_comp_desc[epno], head,
457 USB_DT_SS_EP_COMP_SIZE);
Vivek Gautam6497c662013-04-12 16:34:38 +0530458 break;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200459 default:
460 if (head->bLength == 0)
461 return 1;
462
Vivek Gautamceb49722013-04-12 16:34:33 +0530463 debug("unknown Description Type : %x\n",
464 head->bDescriptorType);
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200465
Vivek Gautamceb49722013-04-12 16:34:33 +0530466#ifdef DEBUG
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200467 {
Wolfgang Denkfad2e1b2011-10-05 23:11:19 +0200468 unsigned char *ch = (unsigned char *)head;
Vivek Gautamceb49722013-04-12 16:34:33 +0530469 int i;
470
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200471 for (i = 0; i < head->bLength; i++)
Vivek Gautamceb49722013-04-12 16:34:33 +0530472 debug("%02X ", *ch++);
473 debug("\n\n\n");
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200474 }
Vivek Gautamceb49722013-04-12 16:34:33 +0530475#endif
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200476 break;
wdenkaffae2b2002-08-17 09:36:01 +0000477 }
Bartlomiej Sieka7455af42006-08-02 00:54:18 +0200478 index += head->bLength;
479 head = (struct usb_descriptor_header *)&buffer[index];
wdenkaffae2b2002-08-17 09:36:01 +0000480 }
481 return 1;
482}
483
484/***********************************************************************
485 * Clears an endpoint
486 * endp: endpoint number in bits 0-3;
487 * direction flag in bit 7 (1 = IN, 0 = OUT)
488 */
489int usb_clear_halt(struct usb_device *dev, int pipe)
490{
491 int result;
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200492 int endp = usb_pipeendpoint(pipe)|(usb_pipein(pipe)<<7);
wdenkaffae2b2002-08-17 09:36:01 +0000493
494 result = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200495 USB_REQ_CLEAR_FEATURE, USB_RECIP_ENDPOINT, 0,
496 endp, NULL, 0, USB_CNTL_TIMEOUT * 3);
wdenkaffae2b2002-08-17 09:36:01 +0000497
498 /* don't clear if failed */
499 if (result < 0)
500 return result;
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200501
Wolfgang Denk095b8a32005-08-02 17:06:17 +0200502 /*
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200503 * NOTE: we do not get status and verify reset was successful
504 * as some devices are reported to lock up upon this check..
505 */
506
wdenkaffae2b2002-08-17 09:36:01 +0000507 usb_endpoint_running(dev, usb_pipeendpoint(pipe), usb_pipeout(pipe));
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200508
wdenkaffae2b2002-08-17 09:36:01 +0000509 /* toggle is reset on clear */
510 usb_settoggle(dev, usb_pipeendpoint(pipe), usb_pipeout(pipe), 0);
511 return 0;
512}
513
514
515/**********************************************************************
516 * get_descriptor type
517 */
Marek Vasutc08b1b22012-02-13 18:58:16 +0000518static int usb_get_descriptor(struct usb_device *dev, unsigned char type,
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200519 unsigned char index, void *buf, int size)
wdenkaffae2b2002-08-17 09:36:01 +0000520{
521 int res;
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200522 res = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
wdenkaffae2b2002-08-17 09:36:01 +0000523 USB_REQ_GET_DESCRIPTOR, USB_DIR_IN,
524 (type << 8) + index, 0,
525 buf, size, USB_CNTL_TIMEOUT);
526 return res;
527}
528
529/**********************************************************************
530 * gets configuration cfgno and store it in the buffer
531 */
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200532int usb_get_configuration_no(struct usb_device *dev,
533 unsigned char *buffer, int cfgno)
wdenkaffae2b2002-08-17 09:36:01 +0000534{
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200535 int result;
Julius Wernereaf3e612013-07-19 13:12:08 -0700536 unsigned int length;
Ilya Yanokc60795f2012-11-06 13:48:20 +0000537 struct usb_config_descriptor *config;
wdenkaffae2b2002-08-17 09:36:01 +0000538
Ilya Yanokc60795f2012-11-06 13:48:20 +0000539 config = (struct usb_config_descriptor *)&buffer[0];
Remy Bohmer48867202008-10-10 10:23:21 +0200540 result = usb_get_descriptor(dev, USB_DT_CONFIG, cfgno, buffer, 9);
541 if (result < 9) {
wdenkaffae2b2002-08-17 09:36:01 +0000542 if (result < 0)
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200543 printf("unable to get descriptor, error %lX\n",
544 dev->status);
wdenkaffae2b2002-08-17 09:36:01 +0000545 else
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200546 printf("config descriptor too short " \
Remy Bohmer48867202008-10-10 10:23:21 +0200547 "(expected %i, got %i)\n", 9, result);
wdenkaffae2b2002-08-17 09:36:01 +0000548 return -1;
549 }
Julius Wernereaf3e612013-07-19 13:12:08 -0700550 length = le16_to_cpu(config->wTotalLength);
wdenkaffae2b2002-08-17 09:36:01 +0000551
Julius Wernereaf3e612013-07-19 13:12:08 -0700552 if (length > USB_BUFSIZ) {
553 printf("%s: failed to get descriptor - too long: %d\n",
554 __func__, length);
wdenkcd0a9de2004-02-23 20:48:38 +0000555 return -1;
556 }
557
Julius Wernereaf3e612013-07-19 13:12:08 -0700558 result = usb_get_descriptor(dev, USB_DT_CONFIG, cfgno, buffer, length);
559 debug("get_conf_no %d Result %d, wLength %d\n", cfgno, result, length);
560 config->wTotalLength = length; /* validated, with CPU byte order */
561
wdenkaffae2b2002-08-17 09:36:01 +0000562 return result;
563}
564
565/********************************************************************
566 * set address of a device to the value in dev->devnum.
567 * This can only be done by addressing the device via the default address (0)
568 */
Marek Vasutc08b1b22012-02-13 18:58:16 +0000569static int usb_set_address(struct usb_device *dev)
wdenkaffae2b2002-08-17 09:36:01 +0000570{
571 int res;
572
Vivek Gautamceb49722013-04-12 16:34:33 +0530573 debug("set address %d\n", dev->devnum);
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200574 res = usb_control_msg(dev, usb_snddefctrl(dev),
575 USB_REQ_SET_ADDRESS, 0,
576 (dev->devnum), 0,
577 NULL, 0, USB_CNTL_TIMEOUT);
wdenkaffae2b2002-08-17 09:36:01 +0000578 return res;
579}
580
581/********************************************************************
582 * set interface number to interface
583 */
584int usb_set_interface(struct usb_device *dev, int interface, int alternate)
585{
Tom Rix8f8bd562009-10-31 12:37:38 -0500586 struct usb_interface *if_face = NULL;
wdenkaffae2b2002-08-17 09:36:01 +0000587 int ret, i;
588
Tom Rix8f8bd562009-10-31 12:37:38 -0500589 for (i = 0; i < dev->config.desc.bNumInterfaces; i++) {
590 if (dev->config.if_desc[i].desc.bInterfaceNumber == interface) {
wdenkaffae2b2002-08-17 09:36:01 +0000591 if_face = &dev->config.if_desc[i];
592 break;
593 }
594 }
595 if (!if_face) {
596 printf("selecting invalid interface %d", interface);
597 return -1;
598 }
Bartlomiej Sieka7455af42006-08-02 00:54:18 +0200599 /*
600 * We should return now for devices with only one alternate setting.
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200601 * According to 9.4.10 of the Universal Serial Bus Specification
602 * Revision 2.0 such devices can return with a STALL. This results in
603 * some USB sticks timeouting during initialization and then being
604 * unusable in U-Boot.
Bartlomiej Sieka7455af42006-08-02 00:54:18 +0200605 */
606 if (if_face->num_altsetting == 1)
607 return 0;
wdenkaffae2b2002-08-17 09:36:01 +0000608
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200609 ret = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
610 USB_REQ_SET_INTERFACE, USB_RECIP_INTERFACE,
611 alternate, interface, NULL, 0,
612 USB_CNTL_TIMEOUT * 5);
613 if (ret < 0)
wdenkaffae2b2002-08-17 09:36:01 +0000614 return ret;
615
wdenkaffae2b2002-08-17 09:36:01 +0000616 return 0;
617}
618
619/********************************************************************
620 * set configuration number to configuration
621 */
Marek Vasutc08b1b22012-02-13 18:58:16 +0000622static int usb_set_configuration(struct usb_device *dev, int configuration)
wdenkaffae2b2002-08-17 09:36:01 +0000623{
624 int res;
Vivek Gautamceb49722013-04-12 16:34:33 +0530625 debug("set configuration %d\n", configuration);
wdenkaffae2b2002-08-17 09:36:01 +0000626 /* set setup command */
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200627 res = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
628 USB_REQ_SET_CONFIGURATION, 0,
629 configuration, 0,
630 NULL, 0, USB_CNTL_TIMEOUT);
631 if (res == 0) {
wdenkaffae2b2002-08-17 09:36:01 +0000632 dev->toggle[0] = 0;
633 dev->toggle[1] = 0;
634 return 0;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200635 } else
wdenkaffae2b2002-08-17 09:36:01 +0000636 return -1;
637}
638
639/********************************************************************
640 * set protocol to protocol
641 */
642int usb_set_protocol(struct usb_device *dev, int ifnum, int protocol)
643{
644 return usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
645 USB_REQ_SET_PROTOCOL, USB_TYPE_CLASS | USB_RECIP_INTERFACE,
646 protocol, ifnum, NULL, 0, USB_CNTL_TIMEOUT);
647}
648
649/********************************************************************
650 * set idle
651 */
652int usb_set_idle(struct usb_device *dev, int ifnum, int duration, int report_id)
653{
654 return usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
655 USB_REQ_SET_IDLE, USB_TYPE_CLASS | USB_RECIP_INTERFACE,
656 (duration << 8) | report_id, ifnum, NULL, 0, USB_CNTL_TIMEOUT);
657}
658
659/********************************************************************
660 * get report
661 */
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200662int usb_get_report(struct usb_device *dev, int ifnum, unsigned char type,
663 unsigned char id, void *buf, int size)
wdenkaffae2b2002-08-17 09:36:01 +0000664{
665 return usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200666 USB_REQ_GET_REPORT,
667 USB_DIR_IN | USB_TYPE_CLASS | USB_RECIP_INTERFACE,
668 (type << 8) + id, ifnum, buf, size, USB_CNTL_TIMEOUT);
wdenkaffae2b2002-08-17 09:36:01 +0000669}
670
671/********************************************************************
672 * get class descriptor
673 */
674int usb_get_class_descriptor(struct usb_device *dev, int ifnum,
675 unsigned char type, unsigned char id, void *buf, int size)
676{
677 return usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
678 USB_REQ_GET_DESCRIPTOR, USB_RECIP_INTERFACE | USB_DIR_IN,
679 (type << 8) + id, ifnum, buf, size, USB_CNTL_TIMEOUT);
680}
681
682/********************************************************************
683 * get string index in buffer
684 */
Marek Vasutc08b1b22012-02-13 18:58:16 +0000685static int usb_get_string(struct usb_device *dev, unsigned short langid,
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200686 unsigned char index, void *buf, int size)
wdenkaffae2b2002-08-17 09:36:01 +0000687{
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200688 int i;
689 int result;
690
691 for (i = 0; i < 3; ++i) {
692 /* some devices are flaky */
693 result = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
694 USB_REQ_GET_DESCRIPTOR, USB_DIR_IN,
Wolfgang Denk095b8a32005-08-02 17:06:17 +0200695 (USB_DT_STRING << 8) + index, langid, buf, size,
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200696 USB_CNTL_TIMEOUT);
697
698 if (result > 0)
699 break;
Wolfgang Denk095b8a32005-08-02 17:06:17 +0200700 }
701
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200702 return result;
wdenkaffae2b2002-08-17 09:36:01 +0000703}
704
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200705
706static void usb_try_string_workarounds(unsigned char *buf, int *length)
707{
708 int newlength, oldlength = *length;
709
710 for (newlength = 2; newlength + 1 < oldlength; newlength += 2)
711 if (!isprint(buf[newlength]) || buf[newlength + 1])
712 break;
713
714 if (newlength > 2) {
715 buf[0] = newlength;
716 *length = newlength;
717 }
718}
719
720
721static int usb_string_sub(struct usb_device *dev, unsigned int langid,
722 unsigned int index, unsigned char *buf)
723{
724 int rc;
725
726 /* Try to read the string descriptor by asking for the maximum
727 * possible number of bytes */
728 rc = usb_get_string(dev, langid, index, buf, 255);
729
730 /* If that failed try to read the descriptor length, then
731 * ask for just that many bytes */
732 if (rc < 2) {
733 rc = usb_get_string(dev, langid, index, buf, 2);
734 if (rc == 2)
735 rc = usb_get_string(dev, langid, index, buf, buf[0]);
736 }
737
738 if (rc >= 2) {
739 if (!buf[0] && !buf[1])
740 usb_try_string_workarounds(buf, &rc);
741
742 /* There might be extra junk at the end of the descriptor */
743 if (buf[0] < rc)
744 rc = buf[0];
745
746 rc = rc - (rc & 1); /* force a multiple of two */
747 }
748
749 if (rc < 2)
Wolfgang Denk095b8a32005-08-02 17:06:17 +0200750 rc = -1;
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200751
752 return rc;
753}
754
755
wdenkaffae2b2002-08-17 09:36:01 +0000756/********************************************************************
757 * usb_string:
758 * Get string index and translate it to ascii.
759 * returns string length (> 0) or error (< 0)
760 */
761int usb_string(struct usb_device *dev, int index, char *buf, size_t size)
762{
Puneet Saxenaf5766132012-04-03 14:56:06 +0530763 ALLOC_CACHE_ALIGN_BUFFER(unsigned char, mybuf, USB_BUFSIZ);
wdenkaffae2b2002-08-17 09:36:01 +0000764 unsigned char *tbuf;
765 int err;
766 unsigned int u, idx;
767
768 if (size <= 0 || !buf || !index)
769 return -1;
770 buf[0] = 0;
Wolfgang Denkd0ff51b2008-07-14 15:19:07 +0200771 tbuf = &mybuf[0];
wdenkaffae2b2002-08-17 09:36:01 +0000772
773 /* get langid for strings if it's not yet known */
774 if (!dev->have_langid) {
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200775 err = usb_string_sub(dev, 0, 0, tbuf);
wdenkaffae2b2002-08-17 09:36:01 +0000776 if (err < 0) {
Vivek Gautamceb49722013-04-12 16:34:33 +0530777 debug("error getting string descriptor 0 " \
778 "(error=%lx)\n", dev->status);
wdenkaffae2b2002-08-17 09:36:01 +0000779 return -1;
780 } else if (tbuf[0] < 4) {
Vivek Gautamceb49722013-04-12 16:34:33 +0530781 debug("string descriptor 0 too short\n");
wdenkaffae2b2002-08-17 09:36:01 +0000782 return -1;
783 } else {
784 dev->have_langid = -1;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200785 dev->string_langid = tbuf[2] | (tbuf[3] << 8);
wdenkaffae2b2002-08-17 09:36:01 +0000786 /* always use the first langid listed */
Vivek Gautamceb49722013-04-12 16:34:33 +0530787 debug("USB device number %d default " \
788 "language ID 0x%x\n",
789 dev->devnum, dev->string_langid);
wdenkaffae2b2002-08-17 09:36:01 +0000790 }
791 }
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200792
793 err = usb_string_sub(dev, dev->string_langid, index, tbuf);
wdenkaffae2b2002-08-17 09:36:01 +0000794 if (err < 0)
795 return err;
wdenkcd0a9de2004-02-23 20:48:38 +0000796
wdenkaffae2b2002-08-17 09:36:01 +0000797 size--; /* leave room for trailing NULL char in output buffer */
798 for (idx = 0, u = 2; u < err; u += 2) {
799 if (idx >= size)
800 break;
801 if (tbuf[u+1]) /* high byte */
802 buf[idx++] = '?'; /* non-ASCII character */
803 else
804 buf[idx++] = tbuf[u];
805 }
806 buf[idx] = 0;
807 err = idx;
808 return err;
809}
810
811
812/********************************************************************
813 * USB device handling:
814 * the USB device are static allocated [USB_MAX_DEVICE].
815 */
816
817
818/* returns a pointer to the device with the index [index].
819 * if the device is not assigned (dev->devnum==-1) returns NULL
820 */
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200821struct usb_device *usb_get_dev_index(int index)
wdenkaffae2b2002-08-17 09:36:01 +0000822{
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200823 if (usb_dev[index].devnum == -1)
wdenkaffae2b2002-08-17 09:36:01 +0000824 return NULL;
825 else
826 return &usb_dev[index];
827}
828
wdenkaffae2b2002-08-17 09:36:01 +0000829/* returns a pointer of a new device structure or NULL, if
830 * no device struct is available
831 */
Lucas Stachc7e3b2b2012-09-26 00:14:34 +0200832struct usb_device *usb_alloc_new_device(void *controller)
wdenkaffae2b2002-08-17 09:36:01 +0000833{
834 int i;
Vivek Gautamceb49722013-04-12 16:34:33 +0530835 debug("New Device %d\n", dev_index);
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200836 if (dev_index == USB_MAX_DEVICE) {
837 printf("ERROR, too many USB Devices, max=%d\n", USB_MAX_DEVICE);
wdenkaffae2b2002-08-17 09:36:01 +0000838 return NULL;
839 }
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200840 /* default Address is 0, real addresses start with 1 */
841 usb_dev[dev_index].devnum = dev_index + 1;
842 usb_dev[dev_index].maxchild = 0;
843 for (i = 0; i < USB_MAXCHILDREN; i++)
844 usb_dev[dev_index].children[i] = NULL;
845 usb_dev[dev_index].parent = NULL;
Lucas Stachc7e3b2b2012-09-26 00:14:34 +0200846 usb_dev[dev_index].controller = controller;
wdenkaffae2b2002-08-17 09:36:01 +0000847 dev_index++;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200848 return &usb_dev[dev_index - 1];
wdenkaffae2b2002-08-17 09:36:01 +0000849}
850
Milind Choudhary359439d2012-12-12 17:55:28 -0800851/*
852 * Free the newly created device node.
853 * Called in error cases where configuring a newly attached
854 * device fails for some reason.
855 */
856void usb_free_device(void)
857{
858 dev_index--;
Vivek Gautamceb49722013-04-12 16:34:33 +0530859 debug("Freeing device node: %d\n", dev_index);
Milind Choudhary359439d2012-12-12 17:55:28 -0800860 memset(&usb_dev[dev_index], 0, sizeof(struct usb_device));
861 usb_dev[dev_index].devnum = -1;
862}
wdenkaffae2b2002-08-17 09:36:01 +0000863
864/*
Vivek Gautam5853e132013-09-14 14:02:45 +0530865 * XHCI issues Enable Slot command and thereafter
866 * allocates device contexts. Provide a weak alias
867 * function for the purpose, so that XHCI overrides it
868 * and EHCI/OHCI just work out of the box.
869 */
870__weak int usb_alloc_device(struct usb_device *udev)
871{
872 return 0;
873}
874/*
wdenkaffae2b2002-08-17 09:36:01 +0000875 * By the time we get here, the device has gotten a new device ID
876 * and is in the default state. We need to identify the thing and
877 * get the ball rolling..
878 *
879 * Returns 0 for success, != 0 for error.
880 */
Marek Vasut23faf2b2012-02-13 18:58:17 +0000881int usb_new_device(struct usb_device *dev)
wdenkaffae2b2002-08-17 09:36:01 +0000882{
883 int addr, err;
884 int tmp;
Puneet Saxenaf5766132012-04-03 14:56:06 +0530885 ALLOC_CACHE_ALIGN_BUFFER(unsigned char, tmpbuf, USB_BUFSIZ);
wdenkaffae2b2002-08-17 09:36:01 +0000886
Vivek Gautam5853e132013-09-14 14:02:45 +0530887 /*
888 * Allocate usb 3.0 device context.
889 * USB 3.0 (xHCI) protocol tries to allocate device slot
890 * and related data structures first. This call does that.
891 * Refer to sec 4.3.2 in xHCI spec rev1.0
892 */
893 if (usb_alloc_device(dev)) {
894 printf("Cannot allocate device context to get SLOT_ID\n");
895 return -1;
896 }
897
wdenkaffae2b2002-08-17 09:36:01 +0000898 /* We still haven't set the Address yet */
899 addr = dev->devnum;
900 dev->devnum = 0;
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200901
Remy Bohmerc9e84362008-09-16 14:55:44 +0200902#ifdef CONFIG_LEGACY_USB_INIT_SEQ
903 /* this is the old and known way of initializing devices, it is
904 * different than what Windows and Linux are doing. Windows and Linux
905 * both retrieve 64 bytes while reading the device descriptor
906 * Several USB stick devices report ERR: CTL_TIMEOUT, caused by an
907 * invalid header while reading 8 bytes as device descriptor. */
908 dev->descriptor.bMaxPacketSize0 = 8; /* Start off at 8 bytes */
Remy Bohmer48867202008-10-10 10:23:21 +0200909 dev->maxpacketsize = PACKET_SIZE_8;
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100910 dev->epmaxpacketin[0] = 8;
Remy Bohmerc9e84362008-09-16 14:55:44 +0200911 dev->epmaxpacketout[0] = 8;
912
Ilya Yanok80ab4142012-07-15 04:43:50 +0000913 err = usb_get_descriptor(dev, USB_DT_DEVICE, 0, tmpbuf, 8);
Remy Bohmerc9e84362008-09-16 14:55:44 +0200914 if (err < 8) {
915 printf("\n USB device not responding, " \
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100916 "giving up (status=%lX)\n", dev->status);
Remy Bohmerc9e84362008-09-16 14:55:44 +0200917 return 1;
918 }
Ilya Yanok80ab4142012-07-15 04:43:50 +0000919 memcpy(&dev->descriptor, tmpbuf, 8);
Remy Bohmerc9e84362008-09-16 14:55:44 +0200920#else
Remy Bohmer48867202008-10-10 10:23:21 +0200921 /* This is a Windows scheme of initialization sequence, with double
922 * reset of the device (Linux uses the same sequence)
Remy Bohmerc9e84362008-09-16 14:55:44 +0200923 * Some equipment is said to work only with such init sequence; this
924 * patch is based on the work by Alan Stern:
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100925 * http://sourceforge.net/mailarchive/forum.php?
926 * thread_id=5729457&forum_id=5398
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200927 */
Vivek Gautam5853e132013-09-14 14:02:45 +0530928 __maybe_unused struct usb_device_descriptor *desc;
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200929 struct usb_device *parent = dev->parent;
930 unsigned short portstatus;
931
932 /* send 64-byte GET-DEVICE-DESCRIPTOR request. Since the descriptor is
933 * only 18 bytes long, this will terminate with a short packet. But if
934 * the maxpacket size is 8 or 16 the device may be waiting to transmit
Remy Bohmerc9e84362008-09-16 14:55:44 +0200935 * some more, or keeps on retransmitting the 8 byte header. */
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200936
937 desc = (struct usb_device_descriptor *)tmpbuf;
Remy Bohmerc9e84362008-09-16 14:55:44 +0200938 dev->descriptor.bMaxPacketSize0 = 64; /* Start off at 64 bytes */
Remy Bohmer48867202008-10-10 10:23:21 +0200939 /* Default to 64 byte max packet size */
940 dev->maxpacketsize = PACKET_SIZE_64;
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100941 dev->epmaxpacketin[0] = 64;
Remy Bohmerc9e84362008-09-16 14:55:44 +0200942 dev->epmaxpacketout[0] = 64;
Remy Bohmer48867202008-10-10 10:23:21 +0200943
Vivek Gautam5853e132013-09-14 14:02:45 +0530944 /*
945 * XHCI needs to issue a Address device command to setup
946 * proper device context structures, before it can interact
947 * with the device. So a get_descriptor will fail before any
948 * of that is done for XHCI unlike EHCI.
949 */
950#ifndef CONFIG_USB_XHCI
Remy Bohmer48867202008-10-10 10:23:21 +0200951 err = usb_get_descriptor(dev, USB_DT_DEVICE, 0, desc, 64);
952 if (err < 0) {
Vivek Gautamceb49722013-04-12 16:34:33 +0530953 debug("usb_new_device: usb_get_descriptor() failed\n");
Remy Bohmer48867202008-10-10 10:23:21 +0200954 return 1;
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200955 }
Remy Bohmer48867202008-10-10 10:23:21 +0200956
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200957 dev->descriptor.bMaxPacketSize0 = desc->bMaxPacketSize0;
Vivek Gautam99c34912013-04-12 16:34:36 +0530958 /*
959 * Fetch the device class, driver can use this info
960 * to differentiate between HUB and DEVICE.
961 */
962 dev->descriptor.bDeviceClass = desc->bDeviceClass;
Vivek Gautam5853e132013-09-14 14:02:45 +0530963#endif
Wolfgang Denk095b8a32005-08-02 17:06:17 +0200964
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200965 if (parent) {
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200966 /* reset the port for the second time */
Hans de Goedef7b9baf2014-09-20 17:03:52 +0200967 err = hub_port_reset(dev->parent, dev->portnr - 1, &portstatus);
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200968 if (err < 0) {
Hans de Goedef7b9baf2014-09-20 17:03:52 +0200969 printf("\n Couldn't reset port %i\n", dev->portnr);
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200970 return 1;
971 }
972 }
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200973#endif
974
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100975 dev->epmaxpacketin[0] = dev->descriptor.bMaxPacketSize0;
wdenkaffae2b2002-08-17 09:36:01 +0000976 dev->epmaxpacketout[0] = dev->descriptor.bMaxPacketSize0;
977 switch (dev->descriptor.bMaxPacketSize0) {
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100978 case 8:
979 dev->maxpacketsize = PACKET_SIZE_8;
980 break;
981 case 16:
982 dev->maxpacketsize = PACKET_SIZE_16;
983 break;
984 case 32:
985 dev->maxpacketsize = PACKET_SIZE_32;
986 break;
987 case 64:
988 dev->maxpacketsize = PACKET_SIZE_64;
989 break;
wdenkaffae2b2002-08-17 09:36:01 +0000990 }
991 dev->devnum = addr;
992
993 err = usb_set_address(dev); /* set address */
994
995 if (err < 0) {
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200996 printf("\n USB device not accepting new address " \
997 "(error=%lX)\n", dev->status);
wdenkaffae2b2002-08-17 09:36:01 +0000998 return 1;
999 }
1000
Mike Frysinger5b84dd62012-03-05 13:47:00 +00001001 mdelay(10); /* Let the SET_ADDRESS settle */
wdenkaffae2b2002-08-17 09:36:01 +00001002
1003 tmp = sizeof(dev->descriptor);
1004
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001005 err = usb_get_descriptor(dev, USB_DT_DEVICE, 0,
Ilya Yanok80ab4142012-07-15 04:43:50 +00001006 tmpbuf, sizeof(dev->descriptor));
wdenkaffae2b2002-08-17 09:36:01 +00001007 if (err < tmp) {
1008 if (err < 0)
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001009 printf("unable to get device descriptor (error=%d)\n",
1010 err);
wdenkaffae2b2002-08-17 09:36:01 +00001011 else
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001012 printf("USB device descriptor short read " \
1013 "(expected %i, got %i)\n", tmp, err);
wdenkaffae2b2002-08-17 09:36:01 +00001014 return 1;
1015 }
Ilya Yanok80ab4142012-07-15 04:43:50 +00001016 memcpy(&dev->descriptor, tmpbuf, sizeof(dev->descriptor));
wdenkaffae2b2002-08-17 09:36:01 +00001017 /* correct le values */
Christian Eggersc9182612008-05-21 22:12:00 +02001018 le16_to_cpus(&dev->descriptor.bcdUSB);
1019 le16_to_cpus(&dev->descriptor.idVendor);
1020 le16_to_cpus(&dev->descriptor.idProduct);
1021 le16_to_cpus(&dev->descriptor.bcdDevice);
wdenkaffae2b2002-08-17 09:36:01 +00001022 /* only support for one config for now */
Vincent Palatin8b8d7792012-07-24 07:12:02 +00001023 err = usb_get_configuration_no(dev, tmpbuf, 0);
1024 if (err < 0) {
1025 printf("usb_new_device: Cannot read configuration, " \
1026 "skipping device %04x:%04x\n",
1027 dev->descriptor.idVendor, dev->descriptor.idProduct);
1028 return -1;
1029 }
Puneet Saxenaf5766132012-04-03 14:56:06 +05301030 usb_parse_config(dev, tmpbuf, 0);
wdenkaffae2b2002-08-17 09:36:01 +00001031 usb_set_maxpacket(dev);
1032 /* we set the default configuration here */
Tom Rix8f8bd562009-10-31 12:37:38 -05001033 if (usb_set_configuration(dev, dev->config.desc.bConfigurationValue)) {
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001034 printf("failed to set default configuration " \
1035 "len %d, status %lX\n", dev->act_len, dev->status);
wdenkaffae2b2002-08-17 09:36:01 +00001036 return -1;
1037 }
Vivek Gautamceb49722013-04-12 16:34:33 +05301038 debug("new device strings: Mfr=%d, Product=%d, SerialNumber=%d\n",
1039 dev->descriptor.iManufacturer, dev->descriptor.iProduct,
1040 dev->descriptor.iSerialNumber);
wdenkaffae2b2002-08-17 09:36:01 +00001041 memset(dev->mf, 0, sizeof(dev->mf));
1042 memset(dev->prod, 0, sizeof(dev->prod));
1043 memset(dev->serial, 0, sizeof(dev->serial));
1044 if (dev->descriptor.iManufacturer)
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001045 usb_string(dev, dev->descriptor.iManufacturer,
1046 dev->mf, sizeof(dev->mf));
wdenkaffae2b2002-08-17 09:36:01 +00001047 if (dev->descriptor.iProduct)
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001048 usb_string(dev, dev->descriptor.iProduct,
1049 dev->prod, sizeof(dev->prod));
wdenkaffae2b2002-08-17 09:36:01 +00001050 if (dev->descriptor.iSerialNumber)
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001051 usb_string(dev, dev->descriptor.iSerialNumber,
1052 dev->serial, sizeof(dev->serial));
Vivek Gautamceb49722013-04-12 16:34:33 +05301053 debug("Manufacturer %s\n", dev->mf);
1054 debug("Product %s\n", dev->prod);
1055 debug("SerialNumber %s\n", dev->serial);
wdenkaffae2b2002-08-17 09:36:01 +00001056 /* now prode if the device is a hub */
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001057 usb_hub_probe(dev, 0);
wdenkaffae2b2002-08-17 09:36:01 +00001058 return 0;
1059}
1060
Mateusz Zalega16297cf2013-10-04 19:22:26 +02001061__weak
Troy Kiskybba67912013-10-10 15:27:55 -07001062int board_usb_init(int index, enum usb_init_type init)
Mateusz Zalega16297cf2013-10-04 19:22:26 +02001063{
1064 return 0;
1065}
wdenkaffae2b2002-08-17 09:36:01 +00001066/* EOF */