blob: 20c614cbcb089eda65f2d9eff4ee61462780535c [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);
Hans de Goede651d95c2015-05-10 14:10:14 +0200195 int err;
Marek Vasute159e482012-02-13 18:58:18 +0000196
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200197 if ((timeout == 0) && (!asynch_allowed)) {
198 /* request for a asynch control pipe is not allowed */
Paul Kocialkowski5a80b342015-04-04 15:12:27 +0200199 return -EINVAL;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200200 }
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200201
wdenkaffae2b2002-08-17 09:36:01 +0000202 /* set setup command */
Puneet Saxenaf5766132012-04-03 14:56:06 +0530203 setup_packet->requesttype = requesttype;
204 setup_packet->request = request;
205 setup_packet->value = cpu_to_le16(value);
206 setup_packet->index = cpu_to_le16(index);
207 setup_packet->length = cpu_to_le16(size);
Vivek Gautamceb49722013-04-12 16:34:33 +0530208 debug("usb_control_msg: request: 0x%X, requesttype: 0x%X, " \
209 "value 0x%X index 0x%X length 0x%X\n",
210 request, requesttype, value, index, size);
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200211 dev->status = USB_ST_NOT_PROC; /*not yet processed */
wdenkaffae2b2002-08-17 09:36:01 +0000212
Hans de Goede651d95c2015-05-10 14:10:14 +0200213 err = submit_control_msg(dev, pipe, data, size, setup_packet);
214 if (err < 0)
215 return err;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200216 if (timeout == 0)
wdenkaffae2b2002-08-17 09:36:01 +0000217 return (int)size;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200218
Remy Bohmer84d36b32010-02-01 19:40:47 +0100219 /*
220 * Wait for status to update until timeout expires, USB driver
221 * interrupt handler may set the status when the USB operation has
222 * been completed.
223 */
224 while (timeout--) {
225 if (!((volatile unsigned long)dev->status & USB_ST_NOT_PROC))
226 break;
Mike Frysinger5b84dd62012-03-05 13:47:00 +0000227 mdelay(1);
Remy Bohmer48867202008-10-10 10:23:21 +0200228 }
Remy Bohmer84d36b32010-02-01 19:40:47 +0100229 if (dev->status)
230 return -1;
Remy Bohmer48867202008-10-10 10:23:21 +0200231
232 return dev->act_len;
Remy Bohmer84d36b32010-02-01 19:40:47 +0100233
wdenkaffae2b2002-08-17 09:36:01 +0000234}
235
236/*-------------------------------------------------------------------
237 * submits bulk message, and waits for completion. returns 0 if Ok or
Paul Kocialkowski5a80b342015-04-04 15:12:27 +0200238 * negative if Error.
wdenkaffae2b2002-08-17 09:36:01 +0000239 * synchronous behavior
240 */
241int usb_bulk_msg(struct usb_device *dev, unsigned int pipe,
242 void *data, int len, int *actual_length, int timeout)
243{
244 if (len < 0)
Paul Kocialkowski5a80b342015-04-04 15:12:27 +0200245 return -EINVAL;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200246 dev->status = USB_ST_NOT_PROC; /*not yet processed */
Ilya Yanokfd060282012-07-15 04:43:51 +0000247 if (submit_bulk_msg(dev, pipe, data, len) < 0)
Paul Kocialkowski5a80b342015-04-04 15:12:27 +0200248 return -EIO;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200249 while (timeout--) {
250 if (!((volatile unsigned long)dev->status & USB_ST_NOT_PROC))
wdenkaffae2b2002-08-17 09:36:01 +0000251 break;
Mike Frysinger5b84dd62012-03-05 13:47:00 +0000252 mdelay(1);
wdenkaffae2b2002-08-17 09:36:01 +0000253 }
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200254 *actual_length = dev->act_len;
255 if (dev->status == 0)
wdenkaffae2b2002-08-17 09:36:01 +0000256 return 0;
257 else
Paul Kocialkowski5a80b342015-04-04 15:12:27 +0200258 return -EIO;
wdenkaffae2b2002-08-17 09:36:01 +0000259}
260
261
262/*-------------------------------------------------------------------
263 * Max Packet stuff
264 */
265
266/*
267 * returns the max packet size, depending on the pipe direction and
268 * the configurations values
269 */
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200270int usb_maxpacket(struct usb_device *dev, unsigned long pipe)
wdenkaffae2b2002-08-17 09:36:01 +0000271{
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200272 /* direction is out -> use emaxpacket out */
273 if ((pipe & USB_DIR_IN) == 0)
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100274 return dev->epmaxpacketout[((pipe>>15) & 0xf)];
wdenkaffae2b2002-08-17 09:36:01 +0000275 else
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100276 return dev->epmaxpacketin[((pipe>>15) & 0xf)];
wdenkaffae2b2002-08-17 09:36:01 +0000277}
278
Marek Vasut5e8baf82011-11-05 23:35:12 +0100279/*
280 * The routine usb_set_maxpacket_ep() is extracted from the loop of routine
Remy Bohmerbe19d322008-09-16 14:55:42 +0200281 * usb_set_maxpacket(), because the optimizer of GCC 4.x chokes on this routine
282 * when it is inlined in 1 single routine. What happens is that the register r3
283 * is used as loop-count 'i', but gets overwritten later on.
284 * This is clearly a compiler bug, but it is easier to workaround it here than
285 * to update the compiler (Occurs with at least several GCC 4.{1,2},x
286 * CodeSourcery compilers like e.g. 2007q3, 2008q1, 2008q3 lite editions on ARM)
Marek Vasut5e8baf82011-11-05 23:35:12 +0100287 *
288 * NOTE: Similar behaviour was observed with GCC4.6 on ARMv5.
Remy Bohmerbe19d322008-09-16 14:55:42 +0200289 */
Mike Frysinger66cf6412012-04-04 18:44:53 +0000290static void noinline
Marek Vasut5e8baf82011-11-05 23:35:12 +0100291usb_set_maxpacket_ep(struct usb_device *dev, int if_idx, int ep_idx)
Remy Bohmerbe19d322008-09-16 14:55:42 +0200292{
293 int b;
Marek Vasut5e8baf82011-11-05 23:35:12 +0100294 struct usb_endpoint_descriptor *ep;
Tom Rinib2fb47f2011-12-15 08:40:51 -0700295 u16 ep_wMaxPacketSize;
Marek Vasut5e8baf82011-11-05 23:35:12 +0100296
297 ep = &dev->config.if_desc[if_idx].ep_desc[ep_idx];
Remy Bohmerbe19d322008-09-16 14:55:42 +0200298
299 b = ep->bEndpointAddress & USB_ENDPOINT_NUMBER_MASK;
Tom Rinib2fb47f2011-12-15 08:40:51 -0700300 ep_wMaxPacketSize = get_unaligned(&ep->wMaxPacketSize);
Remy Bohmerbe19d322008-09-16 14:55:42 +0200301
302 if ((ep->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) ==
303 USB_ENDPOINT_XFER_CONTROL) {
304 /* Control => bidirectional */
Tom Rinib2fb47f2011-12-15 08:40:51 -0700305 dev->epmaxpacketout[b] = ep_wMaxPacketSize;
306 dev->epmaxpacketin[b] = ep_wMaxPacketSize;
Vivek Gautamceb49722013-04-12 16:34:33 +0530307 debug("##Control EP epmaxpacketout/in[%d] = %d\n",
308 b, dev->epmaxpacketin[b]);
Remy Bohmerbe19d322008-09-16 14:55:42 +0200309 } else {
310 if ((ep->bEndpointAddress & 0x80) == 0) {
311 /* OUT Endpoint */
Tom Rinib2fb47f2011-12-15 08:40:51 -0700312 if (ep_wMaxPacketSize > dev->epmaxpacketout[b]) {
313 dev->epmaxpacketout[b] = ep_wMaxPacketSize;
Vivek Gautamceb49722013-04-12 16:34:33 +0530314 debug("##EP epmaxpacketout[%d] = %d\n",
315 b, dev->epmaxpacketout[b]);
Remy Bohmerbe19d322008-09-16 14:55:42 +0200316 }
317 } else {
318 /* IN Endpoint */
Tom Rinib2fb47f2011-12-15 08:40:51 -0700319 if (ep_wMaxPacketSize > dev->epmaxpacketin[b]) {
320 dev->epmaxpacketin[b] = ep_wMaxPacketSize;
Vivek Gautamceb49722013-04-12 16:34:33 +0530321 debug("##EP epmaxpacketin[%d] = %d\n",
322 b, dev->epmaxpacketin[b]);
Remy Bohmerbe19d322008-09-16 14:55:42 +0200323 }
324 } /* if out */
325 } /* if control */
326}
327
wdenkaffae2b2002-08-17 09:36:01 +0000328/*
329 * set the max packed value of all endpoints in the given configuration
330 */
Marek Vasutc08b1b22012-02-13 18:58:16 +0000331static int usb_set_maxpacket(struct usb_device *dev)
wdenkaffae2b2002-08-17 09:36:01 +0000332{
Remy Bohmerbe19d322008-09-16 14:55:42 +0200333 int i, ii;
wdenkaffae2b2002-08-17 09:36:01 +0000334
Tom Rix8f8bd562009-10-31 12:37:38 -0500335 for (i = 0; i < dev->config.desc.bNumInterfaces; i++)
336 for (ii = 0; ii < dev->config.if_desc[i].desc.bNumEndpoints; ii++)
Marek Vasut5e8baf82011-11-05 23:35:12 +0100337 usb_set_maxpacket_ep(dev, i, ii);
wdenkaffae2b2002-08-17 09:36:01 +0000338
wdenkaffae2b2002-08-17 09:36:01 +0000339 return 0;
340}
341
342/*******************************************************************************
343 * Parse the config, located in buffer, and fills the dev->config structure.
344 * Note that all little/big endian swapping are done automatically.
Julius Wernereaf3e612013-07-19 13:12:08 -0700345 * (wTotalLength has already been swapped and sanitized when it was read.)
wdenkaffae2b2002-08-17 09:36:01 +0000346 */
Marek Vasutc08b1b22012-02-13 18:58:16 +0000347static int usb_parse_config(struct usb_device *dev,
348 unsigned char *buffer, int cfgno)
wdenkaffae2b2002-08-17 09:36:01 +0000349{
350 struct usb_descriptor_header *head;
Bartlomiej Sieka7455af42006-08-02 00:54:18 +0200351 int index, ifno, epno, curr_if_num;
Tom Rinib2fb47f2011-12-15 08:40:51 -0700352 u16 ep_wMaxPacketSize;
Vivek Gautam605bd752013-04-12 16:34:34 +0530353 struct usb_interface *if_desc = NULL;
wdenkaffae2b2002-08-17 09:36:01 +0000354
Bartlomiej Sieka7455af42006-08-02 00:54:18 +0200355 ifno = -1;
356 epno = -1;
357 curr_if_num = -1;
358
359 dev->configno = cfgno;
360 head = (struct usb_descriptor_header *) &buffer[0];
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200361 if (head->bDescriptorType != USB_DT_CONFIG) {
362 printf(" ERROR: NOT USB_CONFIG_DESC %x\n",
363 head->bDescriptorType);
Paul Kocialkowski5a80b342015-04-04 15:12:27 +0200364 return -EINVAL;
wdenkaffae2b2002-08-17 09:36:01 +0000365 }
Julius Wernereaf3e612013-07-19 13:12:08 -0700366 if (head->bLength != USB_DT_CONFIG_SIZE) {
367 printf("ERROR: Invalid USB CFG length (%d)\n", head->bLength);
Paul Kocialkowski5a80b342015-04-04 15:12:27 +0200368 return -EINVAL;
Julius Wernereaf3e612013-07-19 13:12:08 -0700369 }
370 memcpy(&dev->config, head, USB_DT_CONFIG_SIZE);
Bartlomiej Sieka7455af42006-08-02 00:54:18 +0200371 dev->config.no_of_if = 0;
wdenkaffae2b2002-08-17 09:36:01 +0000372
Tom Rix8f8bd562009-10-31 12:37:38 -0500373 index = dev->config.desc.bLength;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200374 /* Ok the first entry must be a configuration entry,
375 * now process the others */
Bartlomiej Sieka7455af42006-08-02 00:54:18 +0200376 head = (struct usb_descriptor_header *) &buffer[index];
Julius Wernereaf3e612013-07-19 13:12:08 -0700377 while (index + 1 < dev->config.desc.wTotalLength && head->bLength) {
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200378 switch (head->bDescriptorType) {
379 case USB_DT_INTERFACE:
Julius Wernereaf3e612013-07-19 13:12:08 -0700380 if (head->bLength != USB_DT_INTERFACE_SIZE) {
381 printf("ERROR: Invalid USB IF length (%d)\n",
382 head->bLength);
383 break;
384 }
385 if (index + USB_DT_INTERFACE_SIZE >
386 dev->config.desc.wTotalLength) {
387 puts("USB IF descriptor overflowed buffer!\n");
388 break;
389 }
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200390 if (((struct usb_interface_descriptor *) \
Julius Wernereaf3e612013-07-19 13:12:08 -0700391 head)->bInterfaceNumber != curr_if_num) {
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200392 /* this is a new interface, copy new desc */
393 ifno = dev->config.no_of_if;
Julius Wernereaf3e612013-07-19 13:12:08 -0700394 if (ifno >= USB_MAXINTERFACES) {
395 puts("Too many USB interfaces!\n");
396 /* try to go on with what we have */
Paul Kocialkowski5a80b342015-04-04 15:12:27 +0200397 return -EINVAL;
Julius Wernereaf3e612013-07-19 13:12:08 -0700398 }
Vivek Gautam605bd752013-04-12 16:34:34 +0530399 if_desc = &dev->config.if_desc[ifno];
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200400 dev->config.no_of_if++;
Julius Wernereaf3e612013-07-19 13:12:08 -0700401 memcpy(if_desc, head,
402 USB_DT_INTERFACE_SIZE);
Vivek Gautam605bd752013-04-12 16:34:34 +0530403 if_desc->no_of_ep = 0;
404 if_desc->num_altsetting = 1;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200405 curr_if_num =
Vivek Gautam605bd752013-04-12 16:34:34 +0530406 if_desc->desc.bInterfaceNumber;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200407 } else {
408 /* found alternate setting for the interface */
Vivek Gautam605bd752013-04-12 16:34:34 +0530409 if (ifno >= 0) {
410 if_desc = &dev->config.if_desc[ifno];
411 if_desc->num_altsetting++;
412 }
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200413 }
414 break;
415 case USB_DT_ENDPOINT:
Julius Wernereaf3e612013-07-19 13:12:08 -0700416 if (head->bLength != USB_DT_ENDPOINT_SIZE) {
417 printf("ERROR: Invalid USB EP length (%d)\n",
418 head->bLength);
419 break;
420 }
421 if (index + USB_DT_ENDPOINT_SIZE >
422 dev->config.desc.wTotalLength) {
423 puts("USB EP descriptor overflowed buffer!\n");
424 break;
425 }
426 if (ifno < 0) {
427 puts("Endpoint descriptor out of order!\n");
428 break;
429 }
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200430 epno = dev->config.if_desc[ifno].no_of_ep;
Vivek Gautam605bd752013-04-12 16:34:34 +0530431 if_desc = &dev->config.if_desc[ifno];
Julius Wernereaf3e612013-07-19 13:12:08 -0700432 if (epno > USB_MAXENDPOINTS) {
433 printf("Interface %d has too many endpoints!\n",
434 if_desc->desc.bInterfaceNumber);
Paul Kocialkowski5a80b342015-04-04 15:12:27 +0200435 return -EINVAL;
Julius Wernereaf3e612013-07-19 13:12:08 -0700436 }
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200437 /* found an endpoint */
Vivek Gautam605bd752013-04-12 16:34:34 +0530438 if_desc->no_of_ep++;
Julius Wernereaf3e612013-07-19 13:12:08 -0700439 memcpy(&if_desc->ep_desc[epno], head,
440 USB_DT_ENDPOINT_SIZE);
Tom Rinib2fb47f2011-12-15 08:40:51 -0700441 ep_wMaxPacketSize = get_unaligned(&dev->config.\
442 if_desc[ifno].\
443 ep_desc[epno].\
444 wMaxPacketSize);
445 put_unaligned(le16_to_cpu(ep_wMaxPacketSize),
446 &dev->config.\
447 if_desc[ifno].\
448 ep_desc[epno].\
449 wMaxPacketSize);
Vivek Gautamceb49722013-04-12 16:34:33 +0530450 debug("if %d, ep %d\n", ifno, epno);
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200451 break;
Vivek Gautam6497c662013-04-12 16:34:38 +0530452 case USB_DT_SS_ENDPOINT_COMP:
Julius Wernereaf3e612013-07-19 13:12:08 -0700453 if (head->bLength != USB_DT_SS_EP_COMP_SIZE) {
454 printf("ERROR: Invalid USB EPC length (%d)\n",
455 head->bLength);
456 break;
457 }
458 if (index + USB_DT_SS_EP_COMP_SIZE >
459 dev->config.desc.wTotalLength) {
460 puts("USB EPC descriptor overflowed buffer!\n");
461 break;
462 }
463 if (ifno < 0 || epno < 0) {
464 puts("EPC descriptor out of order!\n");
465 break;
466 }
Vivek Gautam6497c662013-04-12 16:34:38 +0530467 if_desc = &dev->config.if_desc[ifno];
Julius Wernereaf3e612013-07-19 13:12:08 -0700468 memcpy(&if_desc->ss_ep_comp_desc[epno], head,
469 USB_DT_SS_EP_COMP_SIZE);
Vivek Gautam6497c662013-04-12 16:34:38 +0530470 break;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200471 default:
472 if (head->bLength == 0)
Paul Kocialkowski5a80b342015-04-04 15:12:27 +0200473 return -EINVAL;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200474
Vivek Gautamceb49722013-04-12 16:34:33 +0530475 debug("unknown Description Type : %x\n",
476 head->bDescriptorType);
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200477
Vivek Gautamceb49722013-04-12 16:34:33 +0530478#ifdef DEBUG
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200479 {
Wolfgang Denkfad2e1b2011-10-05 23:11:19 +0200480 unsigned char *ch = (unsigned char *)head;
Vivek Gautamceb49722013-04-12 16:34:33 +0530481 int i;
482
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200483 for (i = 0; i < head->bLength; i++)
Vivek Gautamceb49722013-04-12 16:34:33 +0530484 debug("%02X ", *ch++);
485 debug("\n\n\n");
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200486 }
Vivek Gautamceb49722013-04-12 16:34:33 +0530487#endif
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200488 break;
wdenkaffae2b2002-08-17 09:36:01 +0000489 }
Bartlomiej Sieka7455af42006-08-02 00:54:18 +0200490 index += head->bLength;
491 head = (struct usb_descriptor_header *)&buffer[index];
wdenkaffae2b2002-08-17 09:36:01 +0000492 }
Paul Kocialkowski5a80b342015-04-04 15:12:27 +0200493 return 0;
wdenkaffae2b2002-08-17 09:36:01 +0000494}
495
496/***********************************************************************
497 * Clears an endpoint
498 * endp: endpoint number in bits 0-3;
499 * direction flag in bit 7 (1 = IN, 0 = OUT)
500 */
501int usb_clear_halt(struct usb_device *dev, int pipe)
502{
503 int result;
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200504 int endp = usb_pipeendpoint(pipe)|(usb_pipein(pipe)<<7);
wdenkaffae2b2002-08-17 09:36:01 +0000505
506 result = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200507 USB_REQ_CLEAR_FEATURE, USB_RECIP_ENDPOINT, 0,
508 endp, NULL, 0, USB_CNTL_TIMEOUT * 3);
wdenkaffae2b2002-08-17 09:36:01 +0000509
510 /* don't clear if failed */
511 if (result < 0)
512 return result;
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200513
Wolfgang Denk095b8a32005-08-02 17:06:17 +0200514 /*
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200515 * NOTE: we do not get status and verify reset was successful
516 * as some devices are reported to lock up upon this check..
517 */
518
wdenkaffae2b2002-08-17 09:36:01 +0000519 usb_endpoint_running(dev, usb_pipeendpoint(pipe), usb_pipeout(pipe));
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200520
wdenkaffae2b2002-08-17 09:36:01 +0000521 /* toggle is reset on clear */
522 usb_settoggle(dev, usb_pipeendpoint(pipe), usb_pipeout(pipe), 0);
523 return 0;
524}
525
526
527/**********************************************************************
528 * get_descriptor type
529 */
Marek Vasutc08b1b22012-02-13 18:58:16 +0000530static int usb_get_descriptor(struct usb_device *dev, unsigned char type,
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200531 unsigned char index, void *buf, int size)
wdenkaffae2b2002-08-17 09:36:01 +0000532{
533 int res;
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200534 res = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
wdenkaffae2b2002-08-17 09:36:01 +0000535 USB_REQ_GET_DESCRIPTOR, USB_DIR_IN,
536 (type << 8) + index, 0,
537 buf, size, USB_CNTL_TIMEOUT);
538 return res;
539}
540
541/**********************************************************************
542 * gets configuration cfgno and store it in the buffer
543 */
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200544int usb_get_configuration_no(struct usb_device *dev,
545 unsigned char *buffer, int cfgno)
wdenkaffae2b2002-08-17 09:36:01 +0000546{
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200547 int result;
Julius Wernereaf3e612013-07-19 13:12:08 -0700548 unsigned int length;
Ilya Yanokc60795f2012-11-06 13:48:20 +0000549 struct usb_config_descriptor *config;
wdenkaffae2b2002-08-17 09:36:01 +0000550
Ilya Yanokc60795f2012-11-06 13:48:20 +0000551 config = (struct usb_config_descriptor *)&buffer[0];
Remy Bohmer48867202008-10-10 10:23:21 +0200552 result = usb_get_descriptor(dev, USB_DT_CONFIG, cfgno, buffer, 9);
553 if (result < 9) {
wdenkaffae2b2002-08-17 09:36:01 +0000554 if (result < 0)
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200555 printf("unable to get descriptor, error %lX\n",
556 dev->status);
wdenkaffae2b2002-08-17 09:36:01 +0000557 else
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200558 printf("config descriptor too short " \
Remy Bohmer48867202008-10-10 10:23:21 +0200559 "(expected %i, got %i)\n", 9, result);
Paul Kocialkowski5a80b342015-04-04 15:12:27 +0200560 return -EIO;
wdenkaffae2b2002-08-17 09:36:01 +0000561 }
Julius Wernereaf3e612013-07-19 13:12:08 -0700562 length = le16_to_cpu(config->wTotalLength);
wdenkaffae2b2002-08-17 09:36:01 +0000563
Julius Wernereaf3e612013-07-19 13:12:08 -0700564 if (length > USB_BUFSIZ) {
565 printf("%s: failed to get descriptor - too long: %d\n",
566 __func__, length);
Paul Kocialkowski5a80b342015-04-04 15:12:27 +0200567 return -EIO;
wdenkcd0a9de2004-02-23 20:48:38 +0000568 }
569
Julius Wernereaf3e612013-07-19 13:12:08 -0700570 result = usb_get_descriptor(dev, USB_DT_CONFIG, cfgno, buffer, length);
571 debug("get_conf_no %d Result %d, wLength %d\n", cfgno, result, length);
572 config->wTotalLength = length; /* validated, with CPU byte order */
573
wdenkaffae2b2002-08-17 09:36:01 +0000574 return result;
575}
576
577/********************************************************************
578 * set address of a device to the value in dev->devnum.
579 * This can only be done by addressing the device via the default address (0)
580 */
Marek Vasutc08b1b22012-02-13 18:58:16 +0000581static int usb_set_address(struct usb_device *dev)
wdenkaffae2b2002-08-17 09:36:01 +0000582{
583 int res;
584
Vivek Gautamceb49722013-04-12 16:34:33 +0530585 debug("set address %d\n", dev->devnum);
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200586 res = usb_control_msg(dev, usb_snddefctrl(dev),
587 USB_REQ_SET_ADDRESS, 0,
588 (dev->devnum), 0,
589 NULL, 0, USB_CNTL_TIMEOUT);
wdenkaffae2b2002-08-17 09:36:01 +0000590 return res;
591}
592
593/********************************************************************
594 * set interface number to interface
595 */
596int usb_set_interface(struct usb_device *dev, int interface, int alternate)
597{
Tom Rix8f8bd562009-10-31 12:37:38 -0500598 struct usb_interface *if_face = NULL;
wdenkaffae2b2002-08-17 09:36:01 +0000599 int ret, i;
600
Tom Rix8f8bd562009-10-31 12:37:38 -0500601 for (i = 0; i < dev->config.desc.bNumInterfaces; i++) {
602 if (dev->config.if_desc[i].desc.bInterfaceNumber == interface) {
wdenkaffae2b2002-08-17 09:36:01 +0000603 if_face = &dev->config.if_desc[i];
604 break;
605 }
606 }
607 if (!if_face) {
608 printf("selecting invalid interface %d", interface);
Paul Kocialkowski5a80b342015-04-04 15:12:27 +0200609 return -EINVAL;
wdenkaffae2b2002-08-17 09:36:01 +0000610 }
Bartlomiej Sieka7455af42006-08-02 00:54:18 +0200611 /*
612 * We should return now for devices with only one alternate setting.
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200613 * According to 9.4.10 of the Universal Serial Bus Specification
614 * Revision 2.0 such devices can return with a STALL. This results in
615 * some USB sticks timeouting during initialization and then being
616 * unusable in U-Boot.
Bartlomiej Sieka7455af42006-08-02 00:54:18 +0200617 */
618 if (if_face->num_altsetting == 1)
619 return 0;
wdenkaffae2b2002-08-17 09:36:01 +0000620
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200621 ret = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
622 USB_REQ_SET_INTERFACE, USB_RECIP_INTERFACE,
623 alternate, interface, NULL, 0,
624 USB_CNTL_TIMEOUT * 5);
625 if (ret < 0)
wdenkaffae2b2002-08-17 09:36:01 +0000626 return ret;
627
wdenkaffae2b2002-08-17 09:36:01 +0000628 return 0;
629}
630
631/********************************************************************
632 * set configuration number to configuration
633 */
Marek Vasutc08b1b22012-02-13 18:58:16 +0000634static int usb_set_configuration(struct usb_device *dev, int configuration)
wdenkaffae2b2002-08-17 09:36:01 +0000635{
636 int res;
Vivek Gautamceb49722013-04-12 16:34:33 +0530637 debug("set configuration %d\n", configuration);
wdenkaffae2b2002-08-17 09:36:01 +0000638 /* set setup command */
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200639 res = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
640 USB_REQ_SET_CONFIGURATION, 0,
641 configuration, 0,
642 NULL, 0, USB_CNTL_TIMEOUT);
643 if (res == 0) {
wdenkaffae2b2002-08-17 09:36:01 +0000644 dev->toggle[0] = 0;
645 dev->toggle[1] = 0;
646 return 0;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200647 } else
Paul Kocialkowski5a80b342015-04-04 15:12:27 +0200648 return -EIO;
wdenkaffae2b2002-08-17 09:36:01 +0000649}
650
651/********************************************************************
652 * set protocol to protocol
653 */
654int usb_set_protocol(struct usb_device *dev, int ifnum, int protocol)
655{
656 return usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
657 USB_REQ_SET_PROTOCOL, USB_TYPE_CLASS | USB_RECIP_INTERFACE,
658 protocol, ifnum, NULL, 0, USB_CNTL_TIMEOUT);
659}
660
661/********************************************************************
662 * set idle
663 */
664int usb_set_idle(struct usb_device *dev, int ifnum, int duration, int report_id)
665{
666 return usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
667 USB_REQ_SET_IDLE, USB_TYPE_CLASS | USB_RECIP_INTERFACE,
668 (duration << 8) | report_id, ifnum, NULL, 0, USB_CNTL_TIMEOUT);
669}
670
671/********************************************************************
672 * get report
673 */
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200674int usb_get_report(struct usb_device *dev, int ifnum, unsigned char type,
675 unsigned char id, void *buf, int size)
wdenkaffae2b2002-08-17 09:36:01 +0000676{
677 return usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200678 USB_REQ_GET_REPORT,
679 USB_DIR_IN | USB_TYPE_CLASS | USB_RECIP_INTERFACE,
680 (type << 8) + id, ifnum, buf, size, USB_CNTL_TIMEOUT);
wdenkaffae2b2002-08-17 09:36:01 +0000681}
682
683/********************************************************************
684 * get class descriptor
685 */
686int usb_get_class_descriptor(struct usb_device *dev, int ifnum,
687 unsigned char type, unsigned char id, void *buf, int size)
688{
689 return usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
690 USB_REQ_GET_DESCRIPTOR, USB_RECIP_INTERFACE | USB_DIR_IN,
691 (type << 8) + id, ifnum, buf, size, USB_CNTL_TIMEOUT);
692}
693
694/********************************************************************
695 * get string index in buffer
696 */
Marek Vasutc08b1b22012-02-13 18:58:16 +0000697static int usb_get_string(struct usb_device *dev, unsigned short langid,
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200698 unsigned char index, void *buf, int size)
wdenkaffae2b2002-08-17 09:36:01 +0000699{
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200700 int i;
701 int result;
702
703 for (i = 0; i < 3; ++i) {
704 /* some devices are flaky */
705 result = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
706 USB_REQ_GET_DESCRIPTOR, USB_DIR_IN,
Wolfgang Denk095b8a32005-08-02 17:06:17 +0200707 (USB_DT_STRING << 8) + index, langid, buf, size,
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200708 USB_CNTL_TIMEOUT);
709
710 if (result > 0)
711 break;
Wolfgang Denk095b8a32005-08-02 17:06:17 +0200712 }
713
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200714 return result;
wdenkaffae2b2002-08-17 09:36:01 +0000715}
716
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200717
718static void usb_try_string_workarounds(unsigned char *buf, int *length)
719{
720 int newlength, oldlength = *length;
721
722 for (newlength = 2; newlength + 1 < oldlength; newlength += 2)
723 if (!isprint(buf[newlength]) || buf[newlength + 1])
724 break;
725
726 if (newlength > 2) {
727 buf[0] = newlength;
728 *length = newlength;
729 }
730}
731
732
733static int usb_string_sub(struct usb_device *dev, unsigned int langid,
734 unsigned int index, unsigned char *buf)
735{
736 int rc;
737
738 /* Try to read the string descriptor by asking for the maximum
739 * possible number of bytes */
740 rc = usb_get_string(dev, langid, index, buf, 255);
741
742 /* If that failed try to read the descriptor length, then
743 * ask for just that many bytes */
744 if (rc < 2) {
745 rc = usb_get_string(dev, langid, index, buf, 2);
746 if (rc == 2)
747 rc = usb_get_string(dev, langid, index, buf, buf[0]);
748 }
749
750 if (rc >= 2) {
751 if (!buf[0] && !buf[1])
752 usb_try_string_workarounds(buf, &rc);
753
754 /* There might be extra junk at the end of the descriptor */
755 if (buf[0] < rc)
756 rc = buf[0];
757
758 rc = rc - (rc & 1); /* force a multiple of two */
759 }
760
761 if (rc < 2)
Paul Kocialkowski5a80b342015-04-04 15:12:27 +0200762 rc = -EINVAL;
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200763
764 return rc;
765}
766
767
wdenkaffae2b2002-08-17 09:36:01 +0000768/********************************************************************
769 * usb_string:
770 * Get string index and translate it to ascii.
771 * returns string length (> 0) or error (< 0)
772 */
773int usb_string(struct usb_device *dev, int index, char *buf, size_t size)
774{
Puneet Saxenaf5766132012-04-03 14:56:06 +0530775 ALLOC_CACHE_ALIGN_BUFFER(unsigned char, mybuf, USB_BUFSIZ);
wdenkaffae2b2002-08-17 09:36:01 +0000776 unsigned char *tbuf;
777 int err;
778 unsigned int u, idx;
779
780 if (size <= 0 || !buf || !index)
Paul Kocialkowski5a80b342015-04-04 15:12:27 +0200781 return -EINVAL;
wdenkaffae2b2002-08-17 09:36:01 +0000782 buf[0] = 0;
Wolfgang Denkd0ff51b2008-07-14 15:19:07 +0200783 tbuf = &mybuf[0];
wdenkaffae2b2002-08-17 09:36:01 +0000784
785 /* get langid for strings if it's not yet known */
786 if (!dev->have_langid) {
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200787 err = usb_string_sub(dev, 0, 0, tbuf);
wdenkaffae2b2002-08-17 09:36:01 +0000788 if (err < 0) {
Vivek Gautamceb49722013-04-12 16:34:33 +0530789 debug("error getting string descriptor 0 " \
790 "(error=%lx)\n", dev->status);
Paul Kocialkowski5a80b342015-04-04 15:12:27 +0200791 return -EIO;
wdenkaffae2b2002-08-17 09:36:01 +0000792 } else if (tbuf[0] < 4) {
Vivek Gautamceb49722013-04-12 16:34:33 +0530793 debug("string descriptor 0 too short\n");
Paul Kocialkowski5a80b342015-04-04 15:12:27 +0200794 return -EIO;
wdenkaffae2b2002-08-17 09:36:01 +0000795 } else {
796 dev->have_langid = -1;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200797 dev->string_langid = tbuf[2] | (tbuf[3] << 8);
wdenkaffae2b2002-08-17 09:36:01 +0000798 /* always use the first langid listed */
Vivek Gautamceb49722013-04-12 16:34:33 +0530799 debug("USB device number %d default " \
800 "language ID 0x%x\n",
801 dev->devnum, dev->string_langid);
wdenkaffae2b2002-08-17 09:36:01 +0000802 }
803 }
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200804
805 err = usb_string_sub(dev, dev->string_langid, index, tbuf);
wdenkaffae2b2002-08-17 09:36:01 +0000806 if (err < 0)
807 return err;
wdenkcd0a9de2004-02-23 20:48:38 +0000808
wdenkaffae2b2002-08-17 09:36:01 +0000809 size--; /* leave room for trailing NULL char in output buffer */
810 for (idx = 0, u = 2; u < err; u += 2) {
811 if (idx >= size)
812 break;
813 if (tbuf[u+1]) /* high byte */
814 buf[idx++] = '?'; /* non-ASCII character */
815 else
816 buf[idx++] = tbuf[u];
817 }
818 buf[idx] = 0;
819 err = idx;
820 return err;
821}
822
823
824/********************************************************************
825 * USB device handling:
826 * the USB device are static allocated [USB_MAX_DEVICE].
827 */
828
Simon Glass95fbfe42015-03-25 12:22:08 -0600829#ifndef CONFIG_DM_USB
wdenkaffae2b2002-08-17 09:36:01 +0000830
831/* returns a pointer to the device with the index [index].
832 * if the device is not assigned (dev->devnum==-1) returns NULL
833 */
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200834struct usb_device *usb_get_dev_index(int index)
wdenkaffae2b2002-08-17 09:36:01 +0000835{
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200836 if (usb_dev[index].devnum == -1)
wdenkaffae2b2002-08-17 09:36:01 +0000837 return NULL;
838 else
839 return &usb_dev[index];
840}
841
Simon Glass79b58882015-03-25 12:22:01 -0600842int usb_alloc_new_device(struct udevice *controller, struct usb_device **devp)
wdenkaffae2b2002-08-17 09:36:01 +0000843{
844 int i;
Vivek Gautamceb49722013-04-12 16:34:33 +0530845 debug("New Device %d\n", dev_index);
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200846 if (dev_index == USB_MAX_DEVICE) {
847 printf("ERROR, too many USB Devices, max=%d\n", USB_MAX_DEVICE);
Simon Glass79b58882015-03-25 12:22:01 -0600848 return -ENOSPC;
wdenkaffae2b2002-08-17 09:36:01 +0000849 }
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200850 /* default Address is 0, real addresses start with 1 */
851 usb_dev[dev_index].devnum = dev_index + 1;
852 usb_dev[dev_index].maxchild = 0;
853 for (i = 0; i < USB_MAXCHILDREN; i++)
854 usb_dev[dev_index].children[i] = NULL;
855 usb_dev[dev_index].parent = NULL;
Lucas Stachc7e3b2b2012-09-26 00:14:34 +0200856 usb_dev[dev_index].controller = controller;
wdenkaffae2b2002-08-17 09:36:01 +0000857 dev_index++;
Simon Glass79b58882015-03-25 12:22:01 -0600858 *devp = &usb_dev[dev_index - 1];
859
860 return 0;
wdenkaffae2b2002-08-17 09:36:01 +0000861}
862
Milind Choudhary359439d2012-12-12 17:55:28 -0800863/*
864 * Free the newly created device node.
865 * Called in error cases where configuring a newly attached
866 * device fails for some reason.
867 */
Simon Glass79b58882015-03-25 12:22:01 -0600868void usb_free_device(struct udevice *controller)
Milind Choudhary359439d2012-12-12 17:55:28 -0800869{
870 dev_index--;
Vivek Gautamceb49722013-04-12 16:34:33 +0530871 debug("Freeing device node: %d\n", dev_index);
Milind Choudhary359439d2012-12-12 17:55:28 -0800872 memset(&usb_dev[dev_index], 0, sizeof(struct usb_device));
873 usb_dev[dev_index].devnum = -1;
874}
wdenkaffae2b2002-08-17 09:36:01 +0000875
876/*
Vivek Gautam5853e132013-09-14 14:02:45 +0530877 * XHCI issues Enable Slot command and thereafter
878 * allocates device contexts. Provide a weak alias
879 * function for the purpose, so that XHCI overrides it
880 * and EHCI/OHCI just work out of the box.
881 */
882__weak int usb_alloc_device(struct usb_device *udev)
883{
884 return 0;
885}
Simon Glass95fbfe42015-03-25 12:22:08 -0600886#endif /* !CONFIG_DM_USB */
Simon Glass862e75c2015-03-25 12:22:04 -0600887
Simon Glass95fbfe42015-03-25 12:22:08 -0600888#ifndef CONFIG_DM_USB
Simon Glass862e75c2015-03-25 12:22:04 -0600889int usb_legacy_port_reset(struct usb_device *hub, int portnr)
890{
891 if (hub) {
892 unsigned short portstatus;
893 int err;
894
895 /* reset the port for the second time */
896 err = legacy_hub_port_reset(hub, portnr - 1, &portstatus);
897 if (err < 0) {
898 printf("\n Couldn't reset port %i\n", portnr);
899 return err;
900 }
901 } else {
902 usb_reset_root_port();
903 }
904
905 return 0;
906}
Simon Glass95fbfe42015-03-25 12:22:08 -0600907#endif
Simon Glass862e75c2015-03-25 12:22:04 -0600908
Simon Glass0ed27902015-03-25 12:22:07 -0600909static int get_descriptor_len(struct usb_device *dev, int len, int expect_len)
wdenkaffae2b2002-08-17 09:36:01 +0000910{
Simon Glass128fcac2015-03-25 12:22:05 -0600911 __maybe_unused struct usb_device_descriptor *desc;
Puneet Saxenaf5766132012-04-03 14:56:06 +0530912 ALLOC_CACHE_ALIGN_BUFFER(unsigned char, tmpbuf, USB_BUFSIZ);
Simon Glass0ed27902015-03-25 12:22:07 -0600913 int err;
914
915 desc = (struct usb_device_descriptor *)tmpbuf;
916
917 err = usb_get_descriptor(dev, USB_DT_DEVICE, 0, desc, len);
918 if (err < expect_len) {
919 if (err < 0) {
920 printf("unable to get device descriptor (error=%d)\n",
921 err);
922 return err;
923 } else {
924 printf("USB device descriptor short read (expected %i, got %i)\n",
925 expect_len, err);
926 return -EIO;
927 }
928 }
929 memcpy(&dev->descriptor, tmpbuf, sizeof(dev->descriptor));
930
931 return 0;
932}
933
934static int usb_setup_descriptor(struct usb_device *dev, bool do_read)
935{
936 __maybe_unused struct usb_device_descriptor *desc;
wdenkaffae2b2002-08-17 09:36:01 +0000937
Vivek Gautam5853e132013-09-14 14:02:45 +0530938 /*
Simon Glass53d8aa02015-03-25 12:22:03 -0600939 * This is a Windows scheme of initialization sequence, with double
Remy Bohmer48867202008-10-10 10:23:21 +0200940 * reset of the device (Linux uses the same sequence)
Remy Bohmerc9e84362008-09-16 14:55:44 +0200941 * Some equipment is said to work only with such init sequence; this
942 * patch is based on the work by Alan Stern:
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100943 * http://sourceforge.net/mailarchive/forum.php?
944 * thread_id=5729457&forum_id=5398
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200945 */
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200946
Simon Glass53d8aa02015-03-25 12:22:03 -0600947 /*
948 * send 64-byte GET-DEVICE-DESCRIPTOR request. Since the descriptor is
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200949 * only 18 bytes long, this will terminate with a short packet. But if
950 * the maxpacket size is 8 or 16 the device may be waiting to transmit
Hans de Goede2b338ef2015-05-05 23:56:04 +0200951 * some more, or keeps on retransmitting the 8 byte header.
952 */
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200953
Hans de Goede2b338ef2015-05-05 23:56:04 +0200954 if (dev->speed == USB_SPEED_LOW) {
955 dev->descriptor.bMaxPacketSize0 = 8;
956 dev->maxpacketsize = PACKET_SIZE_8;
957 } else {
958 dev->descriptor.bMaxPacketSize0 = 64;
959 dev->maxpacketsize = PACKET_SIZE_64;
960 }
961 dev->epmaxpacketin[0] = dev->descriptor.bMaxPacketSize0;
962 dev->epmaxpacketout[0] = dev->descriptor.bMaxPacketSize0;
Remy Bohmer48867202008-10-10 10:23:21 +0200963
Simon Glass128fcac2015-03-25 12:22:05 -0600964 if (do_read) {
965 int err;
Simon Glass862e75c2015-03-25 12:22:04 -0600966
Simon Glass128fcac2015-03-25 12:22:05 -0600967 /*
968 * Validate we've received only at least 8 bytes, not that we've
969 * received the entire descriptor. The reasoning is:
970 * - The code only uses fields in the first 8 bytes, so that's all we
971 * need to have fetched at this stage.
972 * - The smallest maxpacket size is 8 bytes. Before we know the actual
973 * maxpacket the device uses, the USB controller may only accept a
974 * single packet. Consequently we are only guaranteed to receive 1
975 * packet (at least 8 bytes) even in a non-error case.
976 *
977 * At least the DWC2 controller needs to be programmed with the number
978 * of packets in addition to the number of bytes. A request for 64
979 * bytes of data with the maxpacket guessed as 64 (above) yields a
980 * request for 1 packet.
981 */
Simon Glass0ed27902015-03-25 12:22:07 -0600982 err = get_descriptor_len(dev, 64, 8);
983 if (err)
984 return err;
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200985 }
Remy Bohmer48867202008-10-10 10:23:21 +0200986
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100987 dev->epmaxpacketin[0] = dev->descriptor.bMaxPacketSize0;
wdenkaffae2b2002-08-17 09:36:01 +0000988 dev->epmaxpacketout[0] = dev->descriptor.bMaxPacketSize0;
989 switch (dev->descriptor.bMaxPacketSize0) {
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100990 case 8:
991 dev->maxpacketsize = PACKET_SIZE_8;
992 break;
993 case 16:
994 dev->maxpacketsize = PACKET_SIZE_16;
995 break;
996 case 32:
997 dev->maxpacketsize = PACKET_SIZE_32;
998 break;
999 case 64:
1000 dev->maxpacketsize = PACKET_SIZE_64;
1001 break;
Paul Kocialkowski04ee6ee2015-04-04 15:12:29 +02001002 default:
1003 printf("usb_new_device: invalid max packet size\n");
1004 return -EIO;
wdenkaffae2b2002-08-17 09:36:01 +00001005 }
Simon Glass128fcac2015-03-25 12:22:05 -06001006
1007 return 0;
1008}
1009
Simon Glass91398f92015-03-25 12:22:06 -06001010static int usb_prepare_device(struct usb_device *dev, int addr, bool do_read,
1011 struct usb_device *parent, int portnr)
1012{
1013 int err;
1014
1015 /*
1016 * Allocate usb 3.0 device context.
1017 * USB 3.0 (xHCI) protocol tries to allocate device slot
1018 * and related data structures first. This call does that.
1019 * Refer to sec 4.3.2 in xHCI spec rev1.0
1020 */
1021 err = usb_alloc_device(dev);
1022 if (err) {
1023 printf("Cannot allocate device context to get SLOT_ID\n");
1024 return err;
1025 }
1026 err = usb_setup_descriptor(dev, do_read);
1027 if (err)
1028 return err;
1029 err = usb_legacy_port_reset(parent, portnr);
1030 if (err)
1031 return err;
1032
1033 dev->devnum = addr;
1034
1035 err = usb_set_address(dev); /* set address */
1036
1037 if (err < 0) {
1038 printf("\n USB device not accepting new address " \
1039 "(error=%lX)\n", dev->status);
1040 return err;
1041 }
1042
1043 mdelay(10); /* Let the SET_ADDRESS settle */
1044
1045 return 0;
1046}
1047
Simon Glass95fbfe42015-03-25 12:22:08 -06001048int usb_select_config(struct usb_device *dev)
Simon Glass128fcac2015-03-25 12:22:05 -06001049{
Simon Glass128fcac2015-03-25 12:22:05 -06001050 ALLOC_CACHE_ALIGN_BUFFER(unsigned char, tmpbuf, USB_BUFSIZ);
Simon Glass0ed27902015-03-25 12:22:07 -06001051 int err;
Simon Glass128fcac2015-03-25 12:22:05 -06001052
Simon Glass0ed27902015-03-25 12:22:07 -06001053 err = get_descriptor_len(dev, USB_DT_DEVICE_SIZE, USB_DT_DEVICE_SIZE);
1054 if (err)
1055 return err;
Simon Glass128fcac2015-03-25 12:22:05 -06001056
wdenkaffae2b2002-08-17 09:36:01 +00001057 /* correct le values */
Christian Eggersc9182612008-05-21 22:12:00 +02001058 le16_to_cpus(&dev->descriptor.bcdUSB);
1059 le16_to_cpus(&dev->descriptor.idVendor);
1060 le16_to_cpus(&dev->descriptor.idProduct);
1061 le16_to_cpus(&dev->descriptor.bcdDevice);
Simon Glass0ed27902015-03-25 12:22:07 -06001062
wdenkaffae2b2002-08-17 09:36:01 +00001063 /* only support for one config for now */
Vincent Palatin8b8d7792012-07-24 07:12:02 +00001064 err = usb_get_configuration_no(dev, tmpbuf, 0);
1065 if (err < 0) {
1066 printf("usb_new_device: Cannot read configuration, " \
1067 "skipping device %04x:%04x\n",
1068 dev->descriptor.idVendor, dev->descriptor.idProduct);
Simon Glass0ed27902015-03-25 12:22:07 -06001069 return err;
Vincent Palatin8b8d7792012-07-24 07:12:02 +00001070 }
Puneet Saxenaf5766132012-04-03 14:56:06 +05301071 usb_parse_config(dev, tmpbuf, 0);
wdenkaffae2b2002-08-17 09:36:01 +00001072 usb_set_maxpacket(dev);
Simon Glass0ed27902015-03-25 12:22:07 -06001073 /*
1074 * we set the default configuration here
1075 * This seems premature. If the driver wants a different configuration
1076 * it will need to select itself.
1077 */
1078 err = usb_set_configuration(dev, dev->config.desc.bConfigurationValue);
1079 if (err < 0) {
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001080 printf("failed to set default configuration " \
1081 "len %d, status %lX\n", dev->act_len, dev->status);
Simon Glass0ed27902015-03-25 12:22:07 -06001082 return err;
wdenkaffae2b2002-08-17 09:36:01 +00001083 }
Vivek Gautamceb49722013-04-12 16:34:33 +05301084 debug("new device strings: Mfr=%d, Product=%d, SerialNumber=%d\n",
1085 dev->descriptor.iManufacturer, dev->descriptor.iProduct,
1086 dev->descriptor.iSerialNumber);
wdenkaffae2b2002-08-17 09:36:01 +00001087 memset(dev->mf, 0, sizeof(dev->mf));
1088 memset(dev->prod, 0, sizeof(dev->prod));
1089 memset(dev->serial, 0, sizeof(dev->serial));
1090 if (dev->descriptor.iManufacturer)
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001091 usb_string(dev, dev->descriptor.iManufacturer,
1092 dev->mf, sizeof(dev->mf));
wdenkaffae2b2002-08-17 09:36:01 +00001093 if (dev->descriptor.iProduct)
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001094 usb_string(dev, dev->descriptor.iProduct,
1095 dev->prod, sizeof(dev->prod));
wdenkaffae2b2002-08-17 09:36:01 +00001096 if (dev->descriptor.iSerialNumber)
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001097 usb_string(dev, dev->descriptor.iSerialNumber,
1098 dev->serial, sizeof(dev->serial));
Vivek Gautamceb49722013-04-12 16:34:33 +05301099 debug("Manufacturer %s\n", dev->mf);
1100 debug("Product %s\n", dev->prod);
1101 debug("SerialNumber %s\n", dev->serial);
Simon Glass0ed27902015-03-25 12:22:07 -06001102
1103 return 0;
1104}
1105
Simon Glass95fbfe42015-03-25 12:22:08 -06001106int usb_setup_device(struct usb_device *dev, bool do_read,
1107 struct usb_device *parent, int portnr)
Simon Glass0ed27902015-03-25 12:22:07 -06001108{
1109 int addr;
1110 int ret;
1111
1112 /* We still haven't set the Address yet */
1113 addr = dev->devnum;
1114 dev->devnum = 0;
1115
1116 ret = usb_prepare_device(dev, addr, do_read, parent, portnr);
1117 if (ret)
1118 return ret;
1119 ret = usb_select_config(dev);
1120
1121 return ret;
1122}
1123
Simon Glass95fbfe42015-03-25 12:22:08 -06001124#ifndef CONFIG_DM_USB
Simon Glass0ed27902015-03-25 12:22:07 -06001125/*
1126 * By the time we get here, the device has gotten a new device ID
1127 * and is in the default state. We need to identify the thing and
1128 * get the ball rolling..
1129 *
1130 * Returns 0 for success, != 0 for error.
1131 */
1132int usb_new_device(struct usb_device *dev)
1133{
1134 bool do_read = true;
1135 int err;
1136
1137 /*
1138 * XHCI needs to issue a Address device command to setup
1139 * proper device context structures, before it can interact
1140 * with the device. So a get_descriptor will fail before any
1141 * of that is done for XHCI unlike EHCI.
1142 */
1143#ifdef CONFIG_USB_XHCI
1144 do_read = false;
1145#endif
1146 err = usb_setup_device(dev, do_read, dev->parent, dev->portnr);
1147 if (err)
1148 return err;
1149
1150 /* Now probe if the device is a hub */
1151 err = usb_hub_probe(dev, 0);
1152 if (err < 0)
1153 return err;
1154
wdenkaffae2b2002-08-17 09:36:01 +00001155 return 0;
1156}
Simon Glass95fbfe42015-03-25 12:22:08 -06001157#endif
wdenkaffae2b2002-08-17 09:36:01 +00001158
Mateusz Zalega16297cf2013-10-04 19:22:26 +02001159__weak
Troy Kiskybba67912013-10-10 15:27:55 -07001160int board_usb_init(int index, enum usb_init_type init)
Mateusz Zalega16297cf2013-10-04 19:22:26 +02001161{
1162 return 0;
1163}
Kishon Vijay Abraham Idb378d72015-02-23 18:40:18 +05301164
1165__weak
1166int board_usb_cleanup(int index, enum usb_init_type init)
1167{
1168 return 0;
1169}
Simon Glass95fbfe42015-03-25 12:22:08 -06001170
1171bool usb_device_has_child_on_port(struct usb_device *parent, int port)
1172{
1173#ifdef CONFIG_DM_USB
1174 return false;
1175#else
1176 return parent->children[port] != NULL;
1177#endif
1178}
1179
wdenkaffae2b2002-08-17 09:36:01 +00001180/* EOF */