blob: de312124bce84cabfde7d0eb860db46b8f4b4ca9 [file] [log] [blame]
wdenkaffae2b2002-08-17 09:36:01 +00001/*
wdenkaffae2b2002-08-17 09:36:01 +00002 *
3 * Most of this source has been derived from the Linux USB
Wolfgang Denk460c3222005-08-04 01:14:12 +02004 * project:
5 * (C) Copyright Linus Torvalds 1999
6 * (C) Copyright Johannes Erdfelt 1999-2001
7 * (C) Copyright Andreas Gal 1999
8 * (C) Copyright Gregory P. Smith 1999
9 * (C) Copyright Deti Fliegl 1999 (new USB architecture)
10 * (C) Copyright Randy Dunlap 2000
11 * (C) Copyright David Brownell 2000 (kernel hotplug, usb_device_id)
12 * (C) Copyright Yggdrasil Computing, Inc. 2000
13 * (usb_device_id matching changes by Adam J. Richter)
14 *
15 * Adapted for U-Boot:
16 * (C) Copyright 2001 Denis Peter, MPL AG Switzerland
wdenkaffae2b2002-08-17 09:36:01 +000017 *
18 * See file CREDITS for list of people who contributed to this
19 * project.
20 *
21 * This program is free software; you can redistribute it and/or
22 * modify it under the terms of the GNU General Public License as
23 * published by the Free Software Foundation; either version 2 of
24 * the License, or (at your option) any later version.
25 *
26 * This program is distributed in the hope that it will be useful,
27 * but WITHOUT ANY WARRANTY; without even the implied warranty of
28 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
29 * GNU General Public License for more details.
30 *
31 * You should have received a copy of the GNU General Public License
32 * along with this program; if not, write to the Free Software
33 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
34 * MA 02111-1307 USA
35 *
36 */
37
wdenkaffae2b2002-08-17 09:36:01 +000038/*
39 * How it works:
40 *
41 * Since this is a bootloader, the devices will not be automatic
42 * (re)configured on hotplug, but after a restart of the USB the
43 * device should work.
44 *
45 * For each transfer (except "Interrupt") we wait for completion.
46 */
47#include <common.h>
48#include <command.h>
49#include <asm/processor.h>
Wolfgang Denk9c998aa2005-07-21 11:57:57 +020050#include <linux/ctype.h>
Christian Eggersc9182612008-05-21 22:12:00 +020051#include <asm/byteorder.h>
Tom Rinib2fb47f2011-12-15 08:40:51 -070052#include <asm/unaligned.h>
wdenkaffae2b2002-08-17 09:36:01 +000053
wdenkaffae2b2002-08-17 09:36:01 +000054#include <usb.h>
55#ifdef CONFIG_4xx
Stefan Roese3048bcb2007-10-03 15:01:02 +020056#include <asm/4xx_pci.h>
wdenkaffae2b2002-08-17 09:36:01 +000057#endif
58
Alexander Hollerce297a82011-01-28 12:42:13 +010059#ifdef DEBUG
Marek Vasut88ec8c12011-10-25 11:39:14 +020060#define USB_DEBUG 1
61#define USB_HUB_DEBUG 1
62#else
63#define USB_DEBUG 0
64#define USB_HUB_DEBUG 0
Alexander Hollerce297a82011-01-28 12:42:13 +010065#endif
wdenkaffae2b2002-08-17 09:36:01 +000066
Marek Vasut88ec8c12011-10-25 11:39:14 +020067#define USB_PRINTF(fmt, args...) debug_cond(USB_DEBUG, fmt, ##args)
68#define USB_HUB_PRINTF(fmt, args...) debug_cond(USB_HUB_DEBUG, fmt, ##args)
wdenkaffae2b2002-08-17 09:36:01 +000069
wdenkcd0a9de2004-02-23 20:48:38 +000070#define USB_BUFSIZ 512
71
wdenkaffae2b2002-08-17 09:36:01 +000072static struct usb_device usb_dev[USB_MAX_DEVICE];
73static int dev_index;
74static int running;
75static int asynch_allowed;
76static struct devrequest setup_packet;
77
Bartlomiej Siekae51aae32006-08-03 23:20:13 +020078char usb_started; /* flag for the started/stopped USB status */
79
wdenkaffae2b2002-08-17 09:36:01 +000080/**********************************************************************
81 * some forward declerations...
82 */
Marek Vasutc08b1b22012-02-13 18:58:16 +000083static void usb_scan_devices(void);
wdenkaffae2b2002-08-17 09:36:01 +000084
Marek Vasutc08b1b22012-02-13 18:58:16 +000085static int usb_hub_probe(struct usb_device *dev, int ifnum);
86static void usb_hub_reset(void);
Remy Bohmerc9e84362008-09-16 14:55:44 +020087static int hub_port_reset(struct usb_device *dev, int port,
88 unsigned short *portstat);
Wolfgang Denk9c998aa2005-07-21 11:57:57 +020089
wdenkaffae2b2002-08-17 09:36:01 +000090/***********************************************************************
91 * wait_ms
92 */
93
Michael Trimarchide39f8c2008-11-26 17:41:34 +010094inline void wait_ms(unsigned long ms)
wdenkaffae2b2002-08-17 09:36:01 +000095{
Remy Bohmer6f5794a2008-09-16 14:55:43 +020096 while (ms-- > 0)
wdenkaffae2b2002-08-17 09:36:01 +000097 udelay(1000);
98}
Michael Trimarchide39f8c2008-11-26 17:41:34 +010099
wdenkaffae2b2002-08-17 09:36:01 +0000100/***************************************************************************
101 * Init USB Device
102 */
103
104int usb_init(void)
105{
106 int result;
107
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200108 running = 0;
109 dev_index = 0;
110 asynch_allowed = 1;
wdenkaffae2b2002-08-17 09:36:01 +0000111 usb_hub_reset();
112 /* init low_level USB */
113 printf("USB: ");
114 result = usb_lowlevel_init();
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200115 /* if lowlevel init is OK, scan the bus for devices
116 * i.e. search HUBs and configure them */
117 if (result == 0) {
wdenkaffae2b2002-08-17 09:36:01 +0000118 printf("scanning bus for devices... ");
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200119 running = 1;
wdenkaffae2b2002-08-17 09:36:01 +0000120 usb_scan_devices();
Bartlomiej Siekae51aae32006-08-03 23:20:13 +0200121 usb_started = 1;
wdenkaffae2b2002-08-17 09:36:01 +0000122 return 0;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200123 } else {
wdenkaffae2b2002-08-17 09:36:01 +0000124 printf("Error, couldn't init Lowlevel part\n");
Bartlomiej Siekae51aae32006-08-03 23:20:13 +0200125 usb_started = 0;
wdenkaffae2b2002-08-17 09:36:01 +0000126 return -1;
127 }
128}
129
130/******************************************************************************
131 * Stop USB this stops the LowLevel Part and deregisters USB devices.
132 */
133int usb_stop(void)
134{
Remy Bohmereba1f2f2008-08-20 11:22:02 +0200135 int res = 0;
136
137 if (usb_started) {
138 asynch_allowed = 1;
139 usb_started = 0;
140 usb_hub_reset();
141 res = usb_lowlevel_stop();
142 }
143 return res;
wdenkaffae2b2002-08-17 09:36:01 +0000144}
145
146/*
147 * disables the asynch behaviour of the control message. This is used for data
148 * transfers that uses the exclusiv access to the control and bulk messages.
Simon Glass89d48362011-02-16 11:14:33 -0800149 * Returns the old value so it can be restored later.
wdenkaffae2b2002-08-17 09:36:01 +0000150 */
Simon Glass89d48362011-02-16 11:14:33 -0800151int usb_disable_asynch(int disable)
wdenkaffae2b2002-08-17 09:36:01 +0000152{
Simon Glass89d48362011-02-16 11:14:33 -0800153 int old_value = asynch_allowed;
154
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200155 asynch_allowed = !disable;
Simon Glass89d48362011-02-16 11:14:33 -0800156 return old_value;
wdenkaffae2b2002-08-17 09:36:01 +0000157}
158
159
160/*-------------------------------------------------------------------
161 * Message wrappers.
162 *
163 */
164
165/*
166 * submits an Interrupt Message
167 */
168int usb_submit_int_msg(struct usb_device *dev, unsigned long pipe,
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200169 void *buffer, int transfer_len, int interval)
wdenkaffae2b2002-08-17 09:36:01 +0000170{
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200171 return submit_int_msg(dev, pipe, buffer, transfer_len, interval);
wdenkaffae2b2002-08-17 09:36:01 +0000172}
173
174/*
175 * submits a control message and waits for comletion (at least timeout * 1ms)
176 * If timeout is 0, we don't wait for completion (used as example to set and
177 * clear keyboards LEDs). For data transfers, (storage transfers) we don't
178 * allow control messages with 0 timeout, by previousely resetting the flag
179 * asynch_allowed (usb_disable_asynch(1)).
180 * returns the transfered length if OK or -1 if error. The transfered length
181 * and the current status are stored in the dev->act_len and dev->status.
182 */
183int usb_control_msg(struct usb_device *dev, unsigned int pipe,
184 unsigned char request, unsigned char requesttype,
185 unsigned short value, unsigned short index,
186 void *data, unsigned short size, int timeout)
187{
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200188 if ((timeout == 0) && (!asynch_allowed)) {
189 /* request for a asynch control pipe is not allowed */
wdenkaffae2b2002-08-17 09:36:01 +0000190 return -1;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200191 }
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200192
wdenkaffae2b2002-08-17 09:36:01 +0000193 /* set setup command */
194 setup_packet.requesttype = requesttype;
195 setup_packet.request = request;
Christian Eggersc9182612008-05-21 22:12:00 +0200196 setup_packet.value = cpu_to_le16(value);
197 setup_packet.index = cpu_to_le16(index);
198 setup_packet.length = cpu_to_le16(size);
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200199 USB_PRINTF("usb_control_msg: request: 0x%X, requesttype: 0x%X, " \
200 "value 0x%X index 0x%X length 0x%X\n",
201 request, requesttype, value, index, size);
202 dev->status = USB_ST_NOT_PROC; /*not yet processed */
wdenkaffae2b2002-08-17 09:36:01 +0000203
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200204 submit_control_msg(dev, pipe, data, size, &setup_packet);
205 if (timeout == 0)
wdenkaffae2b2002-08-17 09:36:01 +0000206 return (int)size;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200207
Remy Bohmer84d36b32010-02-01 19:40:47 +0100208 /*
209 * Wait for status to update until timeout expires, USB driver
210 * interrupt handler may set the status when the USB operation has
211 * been completed.
212 */
213 while (timeout--) {
214 if (!((volatile unsigned long)dev->status & USB_ST_NOT_PROC))
215 break;
216 wait_ms(1);
Remy Bohmer48867202008-10-10 10:23:21 +0200217 }
Remy Bohmer84d36b32010-02-01 19:40:47 +0100218 if (dev->status)
219 return -1;
Remy Bohmer48867202008-10-10 10:23:21 +0200220
221 return dev->act_len;
Remy Bohmer84d36b32010-02-01 19:40:47 +0100222
wdenkaffae2b2002-08-17 09:36:01 +0000223}
224
225/*-------------------------------------------------------------------
226 * submits bulk message, and waits for completion. returns 0 if Ok or
227 * -1 if Error.
228 * synchronous behavior
229 */
230int usb_bulk_msg(struct usb_device *dev, unsigned int pipe,
231 void *data, int len, int *actual_length, int timeout)
232{
233 if (len < 0)
234 return -1;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200235 dev->status = USB_ST_NOT_PROC; /*not yet processed */
236 submit_bulk_msg(dev, pipe, data, len);
237 while (timeout--) {
238 if (!((volatile unsigned long)dev->status & USB_ST_NOT_PROC))
wdenkaffae2b2002-08-17 09:36:01 +0000239 break;
240 wait_ms(1);
241 }
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 */
278static void __attribute__((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;
Remy Bohmerbe19d322008-09-16 14:55:42 +0200295 USB_PRINTF("##Control EP epmaxpacketout/in[%d] = %d\n",
296 b, dev->epmaxpacketin[b]);
297 } 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;
Remy Bohmerbe19d322008-09-16 14:55:42 +0200302 USB_PRINTF("##EP epmaxpacketout[%d] = %d\n",
303 b, dev->epmaxpacketout[b]);
304 }
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;
Remy Bohmerbe19d322008-09-16 14:55:42 +0200309 USB_PRINTF("##EP epmaxpacketin[%d] = %d\n",
310 b, dev->epmaxpacketin[b]);
311 }
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.
333 */
Marek Vasutc08b1b22012-02-13 18:58:16 +0000334static int usb_parse_config(struct usb_device *dev,
335 unsigned char *buffer, int cfgno)
wdenkaffae2b2002-08-17 09:36:01 +0000336{
337 struct usb_descriptor_header *head;
Bartlomiej Sieka7455af42006-08-02 00:54:18 +0200338 int index, ifno, epno, curr_if_num;
339 int i;
Tom Rinib2fb47f2011-12-15 08:40:51 -0700340 u16 ep_wMaxPacketSize;
wdenkaffae2b2002-08-17 09:36:01 +0000341
Bartlomiej Sieka7455af42006-08-02 00:54:18 +0200342 ifno = -1;
343 epno = -1;
344 curr_if_num = -1;
345
346 dev->configno = cfgno;
347 head = (struct usb_descriptor_header *) &buffer[0];
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200348 if (head->bDescriptorType != USB_DT_CONFIG) {
349 printf(" ERROR: NOT USB_CONFIG_DESC %x\n",
350 head->bDescriptorType);
wdenkaffae2b2002-08-17 09:36:01 +0000351 return -1;
352 }
Bartlomiej Sieka7455af42006-08-02 00:54:18 +0200353 memcpy(&dev->config, buffer, buffer[0]);
Tom Rix8f8bd562009-10-31 12:37:38 -0500354 le16_to_cpus(&(dev->config.desc.wTotalLength));
Bartlomiej Sieka7455af42006-08-02 00:54:18 +0200355 dev->config.no_of_if = 0;
wdenkaffae2b2002-08-17 09:36:01 +0000356
Tom Rix8f8bd562009-10-31 12:37:38 -0500357 index = dev->config.desc.bLength;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200358 /* Ok the first entry must be a configuration entry,
359 * now process the others */
Bartlomiej Sieka7455af42006-08-02 00:54:18 +0200360 head = (struct usb_descriptor_header *) &buffer[index];
Tom Rix8f8bd562009-10-31 12:37:38 -0500361 while (index + 1 < dev->config.desc.wTotalLength) {
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200362 switch (head->bDescriptorType) {
363 case USB_DT_INTERFACE:
364 if (((struct usb_interface_descriptor *) \
365 &buffer[index])->bInterfaceNumber != curr_if_num) {
366 /* this is a new interface, copy new desc */
367 ifno = dev->config.no_of_if;
368 dev->config.no_of_if++;
369 memcpy(&dev->config.if_desc[ifno],
Bartlomiej Sieka7455af42006-08-02 00:54:18 +0200370 &buffer[index], buffer[index]);
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200371 dev->config.if_desc[ifno].no_of_ep = 0;
372 dev->config.if_desc[ifno].num_altsetting = 1;
373 curr_if_num =
Tom Rix8f8bd562009-10-31 12:37:38 -0500374 dev->config.if_desc[ifno].desc.bInterfaceNumber;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200375 } else {
376 /* found alternate setting for the interface */
377 dev->config.if_desc[ifno].num_altsetting++;
378 }
379 break;
380 case USB_DT_ENDPOINT:
381 epno = dev->config.if_desc[ifno].no_of_ep;
382 /* found an endpoint */
383 dev->config.if_desc[ifno].no_of_ep++;
384 memcpy(&dev->config.if_desc[ifno].ep_desc[epno],
385 &buffer[index], buffer[index]);
Tom Rinib2fb47f2011-12-15 08:40:51 -0700386 ep_wMaxPacketSize = get_unaligned(&dev->config.\
387 if_desc[ifno].\
388 ep_desc[epno].\
389 wMaxPacketSize);
390 put_unaligned(le16_to_cpu(ep_wMaxPacketSize),
391 &dev->config.\
392 if_desc[ifno].\
393 ep_desc[epno].\
394 wMaxPacketSize);
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200395 USB_PRINTF("if %d, ep %d\n", ifno, epno);
396 break;
397 default:
398 if (head->bLength == 0)
399 return 1;
400
401 USB_PRINTF("unknown Description Type : %x\n",
402 head->bDescriptorType);
403
404 {
Wolfgang Denkfad2e1b2011-10-05 23:11:19 +0200405#ifdef USB_DEBUG
406 unsigned char *ch = (unsigned char *)head;
407#endif
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200408 for (i = 0; i < head->bLength; i++)
409 USB_PRINTF("%02X ", *ch++);
410 USB_PRINTF("\n\n\n");
411 }
412 break;
wdenkaffae2b2002-08-17 09:36:01 +0000413 }
Bartlomiej Sieka7455af42006-08-02 00:54:18 +0200414 index += head->bLength;
415 head = (struct usb_descriptor_header *)&buffer[index];
wdenkaffae2b2002-08-17 09:36:01 +0000416 }
417 return 1;
418}
419
420/***********************************************************************
421 * Clears an endpoint
422 * endp: endpoint number in bits 0-3;
423 * direction flag in bit 7 (1 = IN, 0 = OUT)
424 */
425int usb_clear_halt(struct usb_device *dev, int pipe)
426{
427 int result;
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200428 int endp = usb_pipeendpoint(pipe)|(usb_pipein(pipe)<<7);
wdenkaffae2b2002-08-17 09:36:01 +0000429
430 result = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200431 USB_REQ_CLEAR_FEATURE, USB_RECIP_ENDPOINT, 0,
432 endp, NULL, 0, USB_CNTL_TIMEOUT * 3);
wdenkaffae2b2002-08-17 09:36:01 +0000433
434 /* don't clear if failed */
435 if (result < 0)
436 return result;
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200437
Wolfgang Denk095b8a32005-08-02 17:06:17 +0200438 /*
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200439 * NOTE: we do not get status and verify reset was successful
440 * as some devices are reported to lock up upon this check..
441 */
442
wdenkaffae2b2002-08-17 09:36:01 +0000443 usb_endpoint_running(dev, usb_pipeendpoint(pipe), usb_pipeout(pipe));
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200444
wdenkaffae2b2002-08-17 09:36:01 +0000445 /* toggle is reset on clear */
446 usb_settoggle(dev, usb_pipeendpoint(pipe), usb_pipeout(pipe), 0);
447 return 0;
448}
449
450
451/**********************************************************************
452 * get_descriptor type
453 */
Marek Vasutc08b1b22012-02-13 18:58:16 +0000454static int usb_get_descriptor(struct usb_device *dev, unsigned char type,
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200455 unsigned char index, void *buf, int size)
wdenkaffae2b2002-08-17 09:36:01 +0000456{
457 int res;
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200458 res = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
wdenkaffae2b2002-08-17 09:36:01 +0000459 USB_REQ_GET_DESCRIPTOR, USB_DIR_IN,
460 (type << 8) + index, 0,
461 buf, size, USB_CNTL_TIMEOUT);
462 return res;
463}
464
465/**********************************************************************
466 * gets configuration cfgno and store it in the buffer
467 */
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200468int usb_get_configuration_no(struct usb_device *dev,
469 unsigned char *buffer, int cfgno)
wdenkaffae2b2002-08-17 09:36:01 +0000470{
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200471 int result;
wdenkaffae2b2002-08-17 09:36:01 +0000472 unsigned int tmp;
Tom Rix8f8bd562009-10-31 12:37:38 -0500473 struct usb_configuration_descriptor *config;
wdenkaffae2b2002-08-17 09:36:01 +0000474
Tom Rix8f8bd562009-10-31 12:37:38 -0500475 config = (struct usb_configuration_descriptor *)&buffer[0];
Remy Bohmer48867202008-10-10 10:23:21 +0200476 result = usb_get_descriptor(dev, USB_DT_CONFIG, cfgno, buffer, 9);
477 if (result < 9) {
wdenkaffae2b2002-08-17 09:36:01 +0000478 if (result < 0)
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200479 printf("unable to get descriptor, error %lX\n",
480 dev->status);
wdenkaffae2b2002-08-17 09:36:01 +0000481 else
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200482 printf("config descriptor too short " \
Remy Bohmer48867202008-10-10 10:23:21 +0200483 "(expected %i, got %i)\n", 9, result);
wdenkaffae2b2002-08-17 09:36:01 +0000484 return -1;
485 }
Christian Eggersc9182612008-05-21 22:12:00 +0200486 tmp = le16_to_cpu(config->wTotalLength);
wdenkaffae2b2002-08-17 09:36:01 +0000487
wdenkcd0a9de2004-02-23 20:48:38 +0000488 if (tmp > USB_BUFSIZ) {
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200489 USB_PRINTF("usb_get_configuration_no: failed to get " \
490 "descriptor - too long: %d\n", tmp);
wdenkcd0a9de2004-02-23 20:48:38 +0000491 return -1;
492 }
493
wdenkaffae2b2002-08-17 09:36:01 +0000494 result = usb_get_descriptor(dev, USB_DT_CONFIG, cfgno, buffer, tmp);
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200495 USB_PRINTF("get_conf_no %d Result %d, wLength %d\n",
496 cfgno, result, tmp);
wdenkaffae2b2002-08-17 09:36:01 +0000497 return result;
498}
499
500/********************************************************************
501 * set address of a device to the value in dev->devnum.
502 * This can only be done by addressing the device via the default address (0)
503 */
Marek Vasutc08b1b22012-02-13 18:58:16 +0000504static int usb_set_address(struct usb_device *dev)
wdenkaffae2b2002-08-17 09:36:01 +0000505{
506 int res;
507
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200508 USB_PRINTF("set address %d\n", dev->devnum);
509 res = usb_control_msg(dev, usb_snddefctrl(dev),
510 USB_REQ_SET_ADDRESS, 0,
511 (dev->devnum), 0,
512 NULL, 0, USB_CNTL_TIMEOUT);
wdenkaffae2b2002-08-17 09:36:01 +0000513 return res;
514}
515
516/********************************************************************
517 * set interface number to interface
518 */
519int usb_set_interface(struct usb_device *dev, int interface, int alternate)
520{
Tom Rix8f8bd562009-10-31 12:37:38 -0500521 struct usb_interface *if_face = NULL;
wdenkaffae2b2002-08-17 09:36:01 +0000522 int ret, i;
523
Tom Rix8f8bd562009-10-31 12:37:38 -0500524 for (i = 0; i < dev->config.desc.bNumInterfaces; i++) {
525 if (dev->config.if_desc[i].desc.bInterfaceNumber == interface) {
wdenkaffae2b2002-08-17 09:36:01 +0000526 if_face = &dev->config.if_desc[i];
527 break;
528 }
529 }
530 if (!if_face) {
531 printf("selecting invalid interface %d", interface);
532 return -1;
533 }
Bartlomiej Sieka7455af42006-08-02 00:54:18 +0200534 /*
535 * We should return now for devices with only one alternate setting.
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200536 * According to 9.4.10 of the Universal Serial Bus Specification
537 * Revision 2.0 such devices can return with a STALL. This results in
538 * some USB sticks timeouting during initialization and then being
539 * unusable in U-Boot.
Bartlomiej Sieka7455af42006-08-02 00:54:18 +0200540 */
541 if (if_face->num_altsetting == 1)
542 return 0;
wdenkaffae2b2002-08-17 09:36:01 +0000543
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200544 ret = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
545 USB_REQ_SET_INTERFACE, USB_RECIP_INTERFACE,
546 alternate, interface, NULL, 0,
547 USB_CNTL_TIMEOUT * 5);
548 if (ret < 0)
wdenkaffae2b2002-08-17 09:36:01 +0000549 return ret;
550
wdenkaffae2b2002-08-17 09:36:01 +0000551 return 0;
552}
553
554/********************************************************************
555 * set configuration number to configuration
556 */
Marek Vasutc08b1b22012-02-13 18:58:16 +0000557static int usb_set_configuration(struct usb_device *dev, int configuration)
wdenkaffae2b2002-08-17 09:36:01 +0000558{
559 int res;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200560 USB_PRINTF("set configuration %d\n", configuration);
wdenkaffae2b2002-08-17 09:36:01 +0000561 /* set setup command */
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200562 res = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
563 USB_REQ_SET_CONFIGURATION, 0,
564 configuration, 0,
565 NULL, 0, USB_CNTL_TIMEOUT);
566 if (res == 0) {
wdenkaffae2b2002-08-17 09:36:01 +0000567 dev->toggle[0] = 0;
568 dev->toggle[1] = 0;
569 return 0;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200570 } else
wdenkaffae2b2002-08-17 09:36:01 +0000571 return -1;
572}
573
574/********************************************************************
575 * set protocol to protocol
576 */
577int usb_set_protocol(struct usb_device *dev, int ifnum, int protocol)
578{
579 return usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
580 USB_REQ_SET_PROTOCOL, USB_TYPE_CLASS | USB_RECIP_INTERFACE,
581 protocol, ifnum, NULL, 0, USB_CNTL_TIMEOUT);
582}
583
584/********************************************************************
585 * set idle
586 */
587int usb_set_idle(struct usb_device *dev, int ifnum, int duration, int report_id)
588{
589 return usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
590 USB_REQ_SET_IDLE, USB_TYPE_CLASS | USB_RECIP_INTERFACE,
591 (duration << 8) | report_id, ifnum, NULL, 0, USB_CNTL_TIMEOUT);
592}
593
594/********************************************************************
595 * get report
596 */
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200597int usb_get_report(struct usb_device *dev, int ifnum, unsigned char type,
598 unsigned char id, void *buf, int size)
wdenkaffae2b2002-08-17 09:36:01 +0000599{
600 return usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200601 USB_REQ_GET_REPORT,
602 USB_DIR_IN | USB_TYPE_CLASS | USB_RECIP_INTERFACE,
603 (type << 8) + id, ifnum, buf, size, USB_CNTL_TIMEOUT);
wdenkaffae2b2002-08-17 09:36:01 +0000604}
605
606/********************************************************************
607 * get class descriptor
608 */
609int usb_get_class_descriptor(struct usb_device *dev, int ifnum,
610 unsigned char type, unsigned char id, void *buf, int size)
611{
612 return usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
613 USB_REQ_GET_DESCRIPTOR, USB_RECIP_INTERFACE | USB_DIR_IN,
614 (type << 8) + id, ifnum, buf, size, USB_CNTL_TIMEOUT);
615}
616
617/********************************************************************
618 * get string index in buffer
619 */
Marek Vasutc08b1b22012-02-13 18:58:16 +0000620static int usb_get_string(struct usb_device *dev, unsigned short langid,
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200621 unsigned char index, void *buf, int size)
wdenkaffae2b2002-08-17 09:36:01 +0000622{
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200623 int i;
624 int result;
625
626 for (i = 0; i < 3; ++i) {
627 /* some devices are flaky */
628 result = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
629 USB_REQ_GET_DESCRIPTOR, USB_DIR_IN,
Wolfgang Denk095b8a32005-08-02 17:06:17 +0200630 (USB_DT_STRING << 8) + index, langid, buf, size,
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200631 USB_CNTL_TIMEOUT);
632
633 if (result > 0)
634 break;
Wolfgang Denk095b8a32005-08-02 17:06:17 +0200635 }
636
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200637 return result;
wdenkaffae2b2002-08-17 09:36:01 +0000638}
639
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200640
641static void usb_try_string_workarounds(unsigned char *buf, int *length)
642{
643 int newlength, oldlength = *length;
644
645 for (newlength = 2; newlength + 1 < oldlength; newlength += 2)
646 if (!isprint(buf[newlength]) || buf[newlength + 1])
647 break;
648
649 if (newlength > 2) {
650 buf[0] = newlength;
651 *length = newlength;
652 }
653}
654
655
656static int usb_string_sub(struct usb_device *dev, unsigned int langid,
657 unsigned int index, unsigned char *buf)
658{
659 int rc;
660
661 /* Try to read the string descriptor by asking for the maximum
662 * possible number of bytes */
663 rc = usb_get_string(dev, langid, index, buf, 255);
664
665 /* If that failed try to read the descriptor length, then
666 * ask for just that many bytes */
667 if (rc < 2) {
668 rc = usb_get_string(dev, langid, index, buf, 2);
669 if (rc == 2)
670 rc = usb_get_string(dev, langid, index, buf, buf[0]);
671 }
672
673 if (rc >= 2) {
674 if (!buf[0] && !buf[1])
675 usb_try_string_workarounds(buf, &rc);
676
677 /* There might be extra junk at the end of the descriptor */
678 if (buf[0] < rc)
679 rc = buf[0];
680
681 rc = rc - (rc & 1); /* force a multiple of two */
682 }
683
684 if (rc < 2)
Wolfgang Denk095b8a32005-08-02 17:06:17 +0200685 rc = -1;
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200686
687 return rc;
688}
689
690
wdenkaffae2b2002-08-17 09:36:01 +0000691/********************************************************************
692 * usb_string:
693 * Get string index and translate it to ascii.
694 * returns string length (> 0) or error (< 0)
695 */
696int usb_string(struct usb_device *dev, int index, char *buf, size_t size)
697{
wdenkcd0a9de2004-02-23 20:48:38 +0000698 unsigned char mybuf[USB_BUFSIZ];
wdenkaffae2b2002-08-17 09:36:01 +0000699 unsigned char *tbuf;
700 int err;
701 unsigned int u, idx;
702
703 if (size <= 0 || !buf || !index)
704 return -1;
705 buf[0] = 0;
Wolfgang Denkd0ff51b2008-07-14 15:19:07 +0200706 tbuf = &mybuf[0];
wdenkaffae2b2002-08-17 09:36:01 +0000707
708 /* get langid for strings if it's not yet known */
709 if (!dev->have_langid) {
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200710 err = usb_string_sub(dev, 0, 0, tbuf);
wdenkaffae2b2002-08-17 09:36:01 +0000711 if (err < 0) {
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200712 USB_PRINTF("error getting string descriptor 0 " \
Stefan Roesef1c1f542009-01-22 10:11:21 +0100713 "(error=%lx)\n", dev->status);
wdenkaffae2b2002-08-17 09:36:01 +0000714 return -1;
715 } else if (tbuf[0] < 4) {
716 USB_PRINTF("string descriptor 0 too short\n");
717 return -1;
718 } else {
719 dev->have_langid = -1;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200720 dev->string_langid = tbuf[2] | (tbuf[3] << 8);
wdenkaffae2b2002-08-17 09:36:01 +0000721 /* always use the first langid listed */
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200722 USB_PRINTF("USB device number %d default " \
723 "language ID 0x%x\n",
724 dev->devnum, dev->string_langid);
wdenkaffae2b2002-08-17 09:36:01 +0000725 }
726 }
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200727
728 err = usb_string_sub(dev, dev->string_langid, index, tbuf);
wdenkaffae2b2002-08-17 09:36:01 +0000729 if (err < 0)
730 return err;
wdenkcd0a9de2004-02-23 20:48:38 +0000731
wdenkaffae2b2002-08-17 09:36:01 +0000732 size--; /* leave room for trailing NULL char in output buffer */
733 for (idx = 0, u = 2; u < err; u += 2) {
734 if (idx >= size)
735 break;
736 if (tbuf[u+1]) /* high byte */
737 buf[idx++] = '?'; /* non-ASCII character */
738 else
739 buf[idx++] = tbuf[u];
740 }
741 buf[idx] = 0;
742 err = idx;
743 return err;
744}
745
746
747/********************************************************************
748 * USB device handling:
749 * the USB device are static allocated [USB_MAX_DEVICE].
750 */
751
752
753/* returns a pointer to the device with the index [index].
754 * if the device is not assigned (dev->devnum==-1) returns NULL
755 */
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200756struct usb_device *usb_get_dev_index(int index)
wdenkaffae2b2002-08-17 09:36:01 +0000757{
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200758 if (usb_dev[index].devnum == -1)
wdenkaffae2b2002-08-17 09:36:01 +0000759 return NULL;
760 else
761 return &usb_dev[index];
762}
763
764
765/* returns a pointer of a new device structure or NULL, if
766 * no device struct is available
767 */
Marek Vasutc08b1b22012-02-13 18:58:16 +0000768static struct usb_device *usb_alloc_new_device(void)
wdenkaffae2b2002-08-17 09:36:01 +0000769{
770 int i;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200771 USB_PRINTF("New Device %d\n", dev_index);
772 if (dev_index == USB_MAX_DEVICE) {
773 printf("ERROR, too many USB Devices, max=%d\n", USB_MAX_DEVICE);
wdenkaffae2b2002-08-17 09:36:01 +0000774 return NULL;
775 }
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200776 /* default Address is 0, real addresses start with 1 */
777 usb_dev[dev_index].devnum = dev_index + 1;
778 usb_dev[dev_index].maxchild = 0;
779 for (i = 0; i < USB_MAXCHILDREN; i++)
780 usb_dev[dev_index].children[i] = NULL;
781 usb_dev[dev_index].parent = NULL;
wdenkaffae2b2002-08-17 09:36:01 +0000782 dev_index++;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200783 return &usb_dev[dev_index - 1];
wdenkaffae2b2002-08-17 09:36:01 +0000784}
785
786
787/*
788 * By the time we get here, the device has gotten a new device ID
789 * and is in the default state. We need to identify the thing and
790 * get the ball rolling..
791 *
792 * Returns 0 for success, != 0 for error.
793 */
Marek Vasutc08b1b22012-02-13 18:58:16 +0000794static int usb_new_device(struct usb_device *dev)
wdenkaffae2b2002-08-17 09:36:01 +0000795{
796 int addr, err;
797 int tmp;
wdenkcd0a9de2004-02-23 20:48:38 +0000798 unsigned char tmpbuf[USB_BUFSIZ];
wdenkaffae2b2002-08-17 09:36:01 +0000799
wdenkaffae2b2002-08-17 09:36:01 +0000800 /* We still haven't set the Address yet */
801 addr = dev->devnum;
802 dev->devnum = 0;
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200803
Remy Bohmerc9e84362008-09-16 14:55:44 +0200804#ifdef CONFIG_LEGACY_USB_INIT_SEQ
805 /* this is the old and known way of initializing devices, it is
806 * different than what Windows and Linux are doing. Windows and Linux
807 * both retrieve 64 bytes while reading the device descriptor
808 * Several USB stick devices report ERR: CTL_TIMEOUT, caused by an
809 * invalid header while reading 8 bytes as device descriptor. */
810 dev->descriptor.bMaxPacketSize0 = 8; /* Start off at 8 bytes */
Remy Bohmer48867202008-10-10 10:23:21 +0200811 dev->maxpacketsize = PACKET_SIZE_8;
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100812 dev->epmaxpacketin[0] = 8;
Remy Bohmerc9e84362008-09-16 14:55:44 +0200813 dev->epmaxpacketout[0] = 8;
814
815 err = usb_get_descriptor(dev, USB_DT_DEVICE, 0, &dev->descriptor, 8);
816 if (err < 8) {
817 printf("\n USB device not responding, " \
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100818 "giving up (status=%lX)\n", dev->status);
Remy Bohmerc9e84362008-09-16 14:55:44 +0200819 return 1;
820 }
821#else
Remy Bohmer48867202008-10-10 10:23:21 +0200822 /* This is a Windows scheme of initialization sequence, with double
823 * reset of the device (Linux uses the same sequence)
Remy Bohmerc9e84362008-09-16 14:55:44 +0200824 * Some equipment is said to work only with such init sequence; this
825 * patch is based on the work by Alan Stern:
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100826 * http://sourceforge.net/mailarchive/forum.php?
827 * thread_id=5729457&forum_id=5398
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200828 */
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200829 struct usb_device_descriptor *desc;
830 int port = -1;
831 struct usb_device *parent = dev->parent;
832 unsigned short portstatus;
833
834 /* send 64-byte GET-DEVICE-DESCRIPTOR request. Since the descriptor is
835 * only 18 bytes long, this will terminate with a short packet. But if
836 * the maxpacket size is 8 or 16 the device may be waiting to transmit
Remy Bohmerc9e84362008-09-16 14:55:44 +0200837 * some more, or keeps on retransmitting the 8 byte header. */
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200838
839 desc = (struct usb_device_descriptor *)tmpbuf;
Remy Bohmerc9e84362008-09-16 14:55:44 +0200840 dev->descriptor.bMaxPacketSize0 = 64; /* Start off at 64 bytes */
Remy Bohmer48867202008-10-10 10:23:21 +0200841 /* Default to 64 byte max packet size */
842 dev->maxpacketsize = PACKET_SIZE_64;
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100843 dev->epmaxpacketin[0] = 64;
Remy Bohmerc9e84362008-09-16 14:55:44 +0200844 dev->epmaxpacketout[0] = 64;
Remy Bohmer48867202008-10-10 10:23:21 +0200845
846 err = usb_get_descriptor(dev, USB_DT_DEVICE, 0, desc, 64);
847 if (err < 0) {
848 USB_PRINTF("usb_new_device: usb_get_descriptor() failed\n");
849 return 1;
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200850 }
Remy Bohmer48867202008-10-10 10:23:21 +0200851
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200852 dev->descriptor.bMaxPacketSize0 = desc->bMaxPacketSize0;
Wolfgang Denk095b8a32005-08-02 17:06:17 +0200853
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200854 /* find the port number we're at */
855 if (parent) {
Remy Bohmer48867202008-10-10 10:23:21 +0200856 int j;
Wolfgang Denk095b8a32005-08-02 17:06:17 +0200857
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200858 for (j = 0; j < parent->maxchild; j++) {
859 if (parent->children[j] == dev) {
860 port = j;
861 break;
862 }
863 }
864 if (port < 0) {
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200865 printf("usb_new_device:cannot locate device's port.\n");
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200866 return 1;
867 }
868
869 /* reset the port for the second time */
870 err = hub_port_reset(dev->parent, port, &portstatus);
871 if (err < 0) {
872 printf("\n Couldn't reset port %i\n", port);
873 return 1;
874 }
875 }
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200876#endif
877
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100878 dev->epmaxpacketin[0] = dev->descriptor.bMaxPacketSize0;
wdenkaffae2b2002-08-17 09:36:01 +0000879 dev->epmaxpacketout[0] = dev->descriptor.bMaxPacketSize0;
880 switch (dev->descriptor.bMaxPacketSize0) {
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100881 case 8:
882 dev->maxpacketsize = PACKET_SIZE_8;
883 break;
884 case 16:
885 dev->maxpacketsize = PACKET_SIZE_16;
886 break;
887 case 32:
888 dev->maxpacketsize = PACKET_SIZE_32;
889 break;
890 case 64:
891 dev->maxpacketsize = PACKET_SIZE_64;
892 break;
wdenkaffae2b2002-08-17 09:36:01 +0000893 }
894 dev->devnum = addr;
895
896 err = usb_set_address(dev); /* set address */
897
898 if (err < 0) {
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200899 printf("\n USB device not accepting new address " \
900 "(error=%lX)\n", dev->status);
wdenkaffae2b2002-08-17 09:36:01 +0000901 return 1;
902 }
903
904 wait_ms(10); /* Let the SET_ADDRESS settle */
905
906 tmp = sizeof(dev->descriptor);
907
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200908 err = usb_get_descriptor(dev, USB_DT_DEVICE, 0,
909 &dev->descriptor, sizeof(dev->descriptor));
wdenkaffae2b2002-08-17 09:36:01 +0000910 if (err < tmp) {
911 if (err < 0)
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200912 printf("unable to get device descriptor (error=%d)\n",
913 err);
wdenkaffae2b2002-08-17 09:36:01 +0000914 else
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200915 printf("USB device descriptor short read " \
916 "(expected %i, got %i)\n", tmp, err);
wdenkaffae2b2002-08-17 09:36:01 +0000917 return 1;
918 }
919 /* correct le values */
Christian Eggersc9182612008-05-21 22:12:00 +0200920 le16_to_cpus(&dev->descriptor.bcdUSB);
921 le16_to_cpus(&dev->descriptor.idVendor);
922 le16_to_cpus(&dev->descriptor.idProduct);
923 le16_to_cpus(&dev->descriptor.bcdDevice);
wdenkaffae2b2002-08-17 09:36:01 +0000924 /* only support for one config for now */
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200925 usb_get_configuration_no(dev, &tmpbuf[0], 0);
926 usb_parse_config(dev, &tmpbuf[0], 0);
wdenkaffae2b2002-08-17 09:36:01 +0000927 usb_set_maxpacket(dev);
928 /* we set the default configuration here */
Tom Rix8f8bd562009-10-31 12:37:38 -0500929 if (usb_set_configuration(dev, dev->config.desc.bConfigurationValue)) {
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200930 printf("failed to set default configuration " \
931 "len %d, status %lX\n", dev->act_len, dev->status);
wdenkaffae2b2002-08-17 09:36:01 +0000932 return -1;
933 }
934 USB_PRINTF("new device strings: Mfr=%d, Product=%d, SerialNumber=%d\n",
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200935 dev->descriptor.iManufacturer, dev->descriptor.iProduct,
936 dev->descriptor.iSerialNumber);
wdenkaffae2b2002-08-17 09:36:01 +0000937 memset(dev->mf, 0, sizeof(dev->mf));
938 memset(dev->prod, 0, sizeof(dev->prod));
939 memset(dev->serial, 0, sizeof(dev->serial));
940 if (dev->descriptor.iManufacturer)
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200941 usb_string(dev, dev->descriptor.iManufacturer,
942 dev->mf, sizeof(dev->mf));
wdenkaffae2b2002-08-17 09:36:01 +0000943 if (dev->descriptor.iProduct)
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200944 usb_string(dev, dev->descriptor.iProduct,
945 dev->prod, sizeof(dev->prod));
wdenkaffae2b2002-08-17 09:36:01 +0000946 if (dev->descriptor.iSerialNumber)
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200947 usb_string(dev, dev->descriptor.iSerialNumber,
948 dev->serial, sizeof(dev->serial));
wdenkaffae2b2002-08-17 09:36:01 +0000949 USB_PRINTF("Manufacturer %s\n", dev->mf);
950 USB_PRINTF("Product %s\n", dev->prod);
951 USB_PRINTF("SerialNumber %s\n", dev->serial);
952 /* now prode if the device is a hub */
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200953 usb_hub_probe(dev, 0);
wdenkaffae2b2002-08-17 09:36:01 +0000954 return 0;
955}
956
957/* build device Tree */
Marek Vasutc08b1b22012-02-13 18:58:16 +0000958static void usb_scan_devices(void)
wdenkaffae2b2002-08-17 09:36:01 +0000959{
960 int i;
961 struct usb_device *dev;
962
963 /* first make all devices unknown */
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200964 for (i = 0; i < USB_MAX_DEVICE; i++) {
965 memset(&usb_dev[i], 0, sizeof(struct usb_device));
Wolfgang Denkd0ff51b2008-07-14 15:19:07 +0200966 usb_dev[i].devnum = -1;
wdenkaffae2b2002-08-17 09:36:01 +0000967 }
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200968 dev_index = 0;
wdenkaffae2b2002-08-17 09:36:01 +0000969 /* device 0 is always present (root hub, so let it analyze) */
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200970 dev = usb_alloc_new_device();
Bryan Wu1a448db2009-01-18 23:04:27 -0500971 if (usb_new_device(dev))
972 printf("No USB Device found\n");
973 else
974 printf("%d USB Device(s) found\n", dev_index);
wdenkaffae2b2002-08-17 09:36:01 +0000975 /* insert "driver" if possible */
976#ifdef CONFIG_USB_KEYBOARD
977 drv_usb_kbd_init();
wdenkaffae2b2002-08-17 09:36:01 +0000978#endif
Marek Vasut2a94dda2011-07-12 02:16:46 +0200979 USB_PRINTF("scan end\n");
wdenkaffae2b2002-08-17 09:36:01 +0000980}
981
982
983/****************************************************************************
984 * HUB "Driver"
985 * Probes device for being a hub and configurate it
986 */
987
wdenkaffae2b2002-08-17 09:36:01 +0000988static struct usb_hub_device hub_dev[USB_MAX_HUB];
989static int usb_hub_index;
990
991
Marek Vasutc08b1b22012-02-13 18:58:16 +0000992static int usb_get_hub_descriptor(struct usb_device *dev, void *data, int size)
wdenkaffae2b2002-08-17 09:36:01 +0000993{
994 return usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
995 USB_REQ_GET_DESCRIPTOR, USB_DIR_IN | USB_RT_HUB,
996 USB_DT_HUB << 8, 0, data, size, USB_CNTL_TIMEOUT);
997}
998
Marek Vasutc08b1b22012-02-13 18:58:16 +0000999static int usb_clear_hub_feature(struct usb_device *dev, int feature)
wdenkaffae2b2002-08-17 09:36:01 +00001000{
1001 return usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001002 USB_REQ_CLEAR_FEATURE, USB_RT_HUB, feature,
1003 0, NULL, 0, USB_CNTL_TIMEOUT);
wdenkaffae2b2002-08-17 09:36:01 +00001004}
1005
Marek Vasutc08b1b22012-02-13 18:58:16 +00001006static int usb_clear_port_feature(struct usb_device *dev, int port, int feature)
wdenkaffae2b2002-08-17 09:36:01 +00001007{
1008 return usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001009 USB_REQ_CLEAR_FEATURE, USB_RT_PORT, feature,
1010 port, NULL, 0, USB_CNTL_TIMEOUT);
wdenkaffae2b2002-08-17 09:36:01 +00001011}
1012
Marek Vasutc08b1b22012-02-13 18:58:16 +00001013static int usb_set_port_feature(struct usb_device *dev, int port, int feature)
wdenkaffae2b2002-08-17 09:36:01 +00001014{
1015 return usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001016 USB_REQ_SET_FEATURE, USB_RT_PORT, feature,
1017 port, NULL, 0, USB_CNTL_TIMEOUT);
wdenkaffae2b2002-08-17 09:36:01 +00001018}
1019
Marek Vasutc08b1b22012-02-13 18:58:16 +00001020static int usb_get_hub_status(struct usb_device *dev, void *data)
wdenkaffae2b2002-08-17 09:36:01 +00001021{
1022 return usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
1023 USB_REQ_GET_STATUS, USB_DIR_IN | USB_RT_HUB, 0, 0,
1024 data, sizeof(struct usb_hub_status), USB_CNTL_TIMEOUT);
1025}
1026
Marek Vasutc08b1b22012-02-13 18:58:16 +00001027static int usb_get_port_status(struct usb_device *dev, int port, void *data)
wdenkaffae2b2002-08-17 09:36:01 +00001028{
1029 return usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
1030 USB_REQ_GET_STATUS, USB_DIR_IN | USB_RT_PORT, 0, port,
1031 data, sizeof(struct usb_hub_status), USB_CNTL_TIMEOUT);
1032}
1033
1034
1035static void usb_hub_power_on(struct usb_hub_device *hub)
1036{
1037 int i;
1038 struct usb_device *dev;
1039
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001040 dev = hub->pusb_dev;
wdenkaffae2b2002-08-17 09:36:01 +00001041 /* Enable power to the ports */
1042 USB_HUB_PRINTF("enabling power on all ports\n");
1043 for (i = 0; i < dev->maxchild; i++) {
1044 usb_set_port_feature(dev, i + 1, USB_PORT_FEAT_POWER);
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001045 USB_HUB_PRINTF("port %d returns %lX\n", i + 1, dev->status);
wdenkaffae2b2002-08-17 09:36:01 +00001046 wait_ms(hub->desc.bPwrOn2PwrGood * 2);
1047 }
1048}
1049
Marek Vasutc08b1b22012-02-13 18:58:16 +00001050static void usb_hub_reset(void)
wdenkaffae2b2002-08-17 09:36:01 +00001051{
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001052 usb_hub_index = 0;
wdenkaffae2b2002-08-17 09:36:01 +00001053}
1054
Marek Vasutc08b1b22012-02-13 18:58:16 +00001055static struct usb_hub_device *usb_hub_allocate(void)
wdenkaffae2b2002-08-17 09:36:01 +00001056{
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001057 if (usb_hub_index < USB_MAX_HUB)
wdenkaffae2b2002-08-17 09:36:01 +00001058 return &hub_dev[usb_hub_index++];
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001059
1060 printf("ERROR: USB_MAX_HUB (%d) reached\n", USB_MAX_HUB);
wdenkaffae2b2002-08-17 09:36:01 +00001061 return NULL;
1062}
1063
1064#define MAX_TRIES 5
1065
Stefan Roesef1c1f542009-01-22 10:11:21 +01001066static inline char *portspeed(int portstatus)
1067{
1068 if (portstatus & (1 << USB_PORT_FEAT_HIGHSPEED))
1069 return "480 Mb/s";
1070 else if (portstatus & (1 << USB_PORT_FEAT_LOWSPEED))
1071 return "1.5 Mb/s";
1072 else
1073 return "12 Mb/s";
1074}
1075
Wolfgang Denk9c998aa2005-07-21 11:57:57 +02001076static int hub_port_reset(struct usb_device *dev, int port,
1077 unsigned short *portstat)
1078{
1079 int tries;
1080 struct usb_port_status portsts;
1081 unsigned short portstatus, portchange;
1082
Wolfgang Denk9c998aa2005-07-21 11:57:57 +02001083 USB_HUB_PRINTF("hub_port_reset: resetting port %d...\n", port);
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001084 for (tries = 0; tries < MAX_TRIES; tries++) {
Wolfgang Denk9c998aa2005-07-21 11:57:57 +02001085
1086 usb_set_port_feature(dev, port + 1, USB_PORT_FEAT_RESET);
1087 wait_ms(200);
1088
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001089 if (usb_get_port_status(dev, port + 1, &portsts) < 0) {
1090 USB_HUB_PRINTF("get_port_status failed status %lX\n",
1091 dev->status);
Wolfgang Denk9c998aa2005-07-21 11:57:57 +02001092 return -1;
1093 }
Christian Eggersc9182612008-05-21 22:12:00 +02001094 portstatus = le16_to_cpu(portsts.wPortStatus);
1095 portchange = le16_to_cpu(portsts.wPortChange);
Michael Trimarchi366523c2008-12-18 10:05:37 +01001096
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001097 USB_HUB_PRINTF("portstatus %x, change %x, %s\n",
1098 portstatus, portchange,
Stefan Roesef1c1f542009-01-22 10:11:21 +01001099 portspeed(portstatus));
Michael Trimarchi366523c2008-12-18 10:05:37 +01001100
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001101 USB_HUB_PRINTF("STAT_C_CONNECTION = %d STAT_CONNECTION = %d" \
1102 " USB_PORT_STAT_ENABLE %d\n",
Wolfgang Denk9c998aa2005-07-21 11:57:57 +02001103 (portchange & USB_PORT_STAT_C_CONNECTION) ? 1 : 0,
1104 (portstatus & USB_PORT_STAT_CONNECTION) ? 1 : 0,
1105 (portstatus & USB_PORT_STAT_ENABLE) ? 1 : 0);
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001106
Wolfgang Denk9c998aa2005-07-21 11:57:57 +02001107 if ((portchange & USB_PORT_STAT_C_CONNECTION) ||
1108 !(portstatus & USB_PORT_STAT_CONNECTION))
1109 return -1;
1110
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001111 if (portstatus & USB_PORT_STAT_ENABLE)
Wolfgang Denk9c998aa2005-07-21 11:57:57 +02001112 break;
Wolfgang Denk9c998aa2005-07-21 11:57:57 +02001113
1114 wait_ms(200);
1115 }
1116
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001117 if (tries == MAX_TRIES) {
1118 USB_HUB_PRINTF("Cannot enable port %i after %i retries, " \
1119 "disabling port.\n", port + 1, MAX_TRIES);
Wolfgang Denk9c998aa2005-07-21 11:57:57 +02001120 USB_HUB_PRINTF("Maybe the USB cable is bad?\n");
1121 return -1;
1122 }
1123
1124 usb_clear_port_feature(dev, port + 1, USB_PORT_FEAT_C_RESET);
1125 *portstat = portstatus;
1126 return 0;
Wolfgang Denk9c998aa2005-07-21 11:57:57 +02001127}
1128
1129
wdenkaffae2b2002-08-17 09:36:01 +00001130void usb_hub_port_connect_change(struct usb_device *dev, int port)
1131{
1132 struct usb_device *usb;
1133 struct usb_port_status portsts;
Wolfgang Denkfad2e1b2011-10-05 23:11:19 +02001134 unsigned short portstatus;
wdenkaffae2b2002-08-17 09:36:01 +00001135
1136 /* Check status */
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001137 if (usb_get_port_status(dev, port + 1, &portsts) < 0) {
wdenkaffae2b2002-08-17 09:36:01 +00001138 USB_HUB_PRINTF("get_port_status failed\n");
1139 return;
1140 }
1141
Christian Eggersc9182612008-05-21 22:12:00 +02001142 portstatus = le16_to_cpu(portsts.wPortStatus);
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001143 USB_HUB_PRINTF("portstatus %x, change %x, %s\n",
Wolfgang Denkfad2e1b2011-10-05 23:11:19 +02001144 portstatus,
1145 le16_to_cpu(portsts.wPortChange),
1146 portspeed(portstatus));
wdenkaffae2b2002-08-17 09:36:01 +00001147
1148 /* Clear the connection change status */
1149 usb_clear_port_feature(dev, port + 1, USB_PORT_FEAT_C_CONNECTION);
1150
1151 /* Disconnect any existing devices under this port */
1152 if (((!(portstatus & USB_PORT_STAT_CONNECTION)) &&
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001153 (!(portstatus & USB_PORT_STAT_ENABLE))) || (dev->children[port])) {
wdenkaffae2b2002-08-17 09:36:01 +00001154 USB_HUB_PRINTF("usb_disconnect(&hub->children[port]);\n");
1155 /* Return now if nothing is connected */
1156 if (!(portstatus & USB_PORT_STAT_CONNECTION))
1157 return;
1158 }
1159 wait_ms(200);
1160
1161 /* Reset the port */
Wolfgang Denk9c998aa2005-07-21 11:57:57 +02001162 if (hub_port_reset(dev, port, &portstatus) < 0) {
1163 printf("cannot reset port %i!?\n", port + 1);
wdenkaffae2b2002-08-17 09:36:01 +00001164 return;
1165 }
1166
wdenkaffae2b2002-08-17 09:36:01 +00001167 wait_ms(200);
1168
1169 /* Allocate a new device struct for it */
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001170 usb = usb_alloc_new_device();
Michael Trimarchi366523c2008-12-18 10:05:37 +01001171
1172 if (portstatus & USB_PORT_STAT_HIGH_SPEED)
1173 usb->speed = USB_SPEED_HIGH;
1174 else if (portstatus & USB_PORT_STAT_LOW_SPEED)
1175 usb->speed = USB_SPEED_LOW;
1176 else
1177 usb->speed = USB_SPEED_FULL;
wdenkaffae2b2002-08-17 09:36:01 +00001178
1179 dev->children[port] = usb;
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001180 usb->parent = dev;
Marek Vasut01a97d42011-07-12 02:16:47 +02001181 usb->portnr = port + 1;
wdenkaffae2b2002-08-17 09:36:01 +00001182 /* Run it through the hoops (find a driver, etc) */
1183 if (usb_new_device(usb)) {
1184 /* Woops, disable the port */
1185 USB_HUB_PRINTF("hub: disabling port %d\n", port + 1);
1186 usb_clear_port_feature(dev, port + 1, USB_PORT_FEAT_ENABLE);
1187 }
1188}
1189
1190
Marek Vasutc08b1b22012-02-13 18:58:16 +00001191static int usb_hub_configure(struct usb_device *dev)
wdenkaffae2b2002-08-17 09:36:01 +00001192{
Wolfgang Denkfad2e1b2011-10-05 23:11:19 +02001193 int i;
wdenkcd0a9de2004-02-23 20:48:38 +00001194 unsigned char buffer[USB_BUFSIZ], *bitmap;
wdenkaffae2b2002-08-17 09:36:01 +00001195 struct usb_hub_descriptor *descriptor;
wdenkaffae2b2002-08-17 09:36:01 +00001196 struct usb_hub_device *hub;
Wolfgang Denkfad2e1b2011-10-05 23:11:19 +02001197#ifdef USB_HUB_DEBUG
1198 struct usb_hub_status *hubsts;
1199#endif
wdenkaffae2b2002-08-17 09:36:01 +00001200
1201 /* "allocate" Hub device */
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001202 hub = usb_hub_allocate();
1203 if (hub == NULL)
wdenkaffae2b2002-08-17 09:36:01 +00001204 return -1;
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001205 hub->pusb_dev = dev;
wdenkaffae2b2002-08-17 09:36:01 +00001206 /* Get the the hub descriptor */
1207 if (usb_get_hub_descriptor(dev, buffer, 4) < 0) {
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001208 USB_HUB_PRINTF("usb_hub_configure: failed to get hub " \
1209 "descriptor, giving up %lX\n", dev->status);
wdenkaffae2b2002-08-17 09:36:01 +00001210 return -1;
1211 }
1212 descriptor = (struct usb_hub_descriptor *)buffer;
wdenkcd0a9de2004-02-23 20:48:38 +00001213
wdenke86e5a02004-10-17 21:12:06 +00001214 /* silence compiler warning if USB_BUFSIZ is > 256 [= sizeof(char)] */
1215 i = descriptor->bLength;
1216 if (i > USB_BUFSIZ) {
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001217 USB_HUB_PRINTF("usb_hub_configure: failed to get hub " \
1218 "descriptor - too long: %d\n",
1219 descriptor->bLength);
wdenkcd0a9de2004-02-23 20:48:38 +00001220 return -1;
1221 }
1222
wdenkaffae2b2002-08-17 09:36:01 +00001223 if (usb_get_hub_descriptor(dev, buffer, descriptor->bLength) < 0) {
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001224 USB_HUB_PRINTF("usb_hub_configure: failed to get hub " \
1225 "descriptor 2nd giving up %lX\n", dev->status);
wdenkaffae2b2002-08-17 09:36:01 +00001226 return -1;
1227 }
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001228 memcpy((unsigned char *)&hub->desc, buffer, descriptor->bLength);
wdenkaffae2b2002-08-17 09:36:01 +00001229 /* adjust 16bit values */
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001230 hub->desc.wHubCharacteristics =
1231 le16_to_cpu(descriptor->wHubCharacteristics);
wdenkaffae2b2002-08-17 09:36:01 +00001232 /* set the bitmap */
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001233 bitmap = (unsigned char *)&hub->desc.DeviceRemovable[0];
1234 /* devices not removable by default */
1235 memset(bitmap, 0xff, (USB_MAXCHILDREN+1+7)/8);
1236 bitmap = (unsigned char *)&hub->desc.PortPowerCtrlMask[0];
1237 memset(bitmap, 0xff, (USB_MAXCHILDREN+1+7)/8); /* PowerMask = 1B */
1238
1239 for (i = 0; i < ((hub->desc.bNbrPorts + 1 + 7)/8); i++)
1240 hub->desc.DeviceRemovable[i] = descriptor->DeviceRemovable[i];
1241
1242 for (i = 0; i < ((hub->desc.bNbrPorts + 1 + 7)/8); i++)
Alexander Hollercb440912011-01-27 22:50:07 +01001243 hub->desc.PortPowerCtrlMask[i] = descriptor->PortPowerCtrlMask[i];
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001244
wdenkaffae2b2002-08-17 09:36:01 +00001245 dev->maxchild = descriptor->bNbrPorts;
1246 USB_HUB_PRINTF("%d ports detected\n", dev->maxchild);
1247
1248 switch (hub->desc.wHubCharacteristics & HUB_CHAR_LPSM) {
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001249 case 0x00:
1250 USB_HUB_PRINTF("ganged power switching\n");
1251 break;
1252 case 0x01:
1253 USB_HUB_PRINTF("individual port power switching\n");
1254 break;
1255 case 0x02:
1256 case 0x03:
1257 USB_HUB_PRINTF("unknown reserved power switching mode\n");
1258 break;
wdenkaffae2b2002-08-17 09:36:01 +00001259 }
1260
1261 if (hub->desc.wHubCharacteristics & HUB_CHAR_COMPOUND)
1262 USB_HUB_PRINTF("part of a compound device\n");
1263 else
1264 USB_HUB_PRINTF("standalone hub\n");
1265
1266 switch (hub->desc.wHubCharacteristics & HUB_CHAR_OCPM) {
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001267 case 0x00:
1268 USB_HUB_PRINTF("global over-current protection\n");
1269 break;
1270 case 0x08:
1271 USB_HUB_PRINTF("individual port over-current protection\n");
1272 break;
1273 case 0x10:
1274 case 0x18:
1275 USB_HUB_PRINTF("no over-current protection\n");
1276 break;
wdenkaffae2b2002-08-17 09:36:01 +00001277 }
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001278
1279 USB_HUB_PRINTF("power on to power good time: %dms\n",
1280 descriptor->bPwrOn2PwrGood * 2);
1281 USB_HUB_PRINTF("hub controller current requirement: %dmA\n",
1282 descriptor->bHubContrCurrent);
1283
wdenkaffae2b2002-08-17 09:36:01 +00001284 for (i = 0; i < dev->maxchild; i++)
1285 USB_HUB_PRINTF("port %d is%s removable\n", i + 1,
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001286 hub->desc.DeviceRemovable[(i + 1) / 8] & \
1287 (1 << ((i + 1) % 8)) ? " not" : "");
1288
wdenkcd0a9de2004-02-23 20:48:38 +00001289 if (sizeof(struct usb_hub_status) > USB_BUFSIZ) {
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001290 USB_HUB_PRINTF("usb_hub_configure: failed to get Status - " \
1291 "too long: %d\n", descriptor->bLength);
wdenkcd0a9de2004-02-23 20:48:38 +00001292 return -1;
1293 }
1294
wdenkaffae2b2002-08-17 09:36:01 +00001295 if (usb_get_hub_status(dev, buffer) < 0) {
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001296 USB_HUB_PRINTF("usb_hub_configure: failed to get Status %lX\n",
1297 dev->status);
wdenkaffae2b2002-08-17 09:36:01 +00001298 return -1;
1299 }
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001300
Wolfgang Denkfad2e1b2011-10-05 23:11:19 +02001301#ifdef USB_HUB_DEBUG
wdenkaffae2b2002-08-17 09:36:01 +00001302 hubsts = (struct usb_hub_status *)buffer;
Wolfgang Denkfad2e1b2011-10-05 23:11:19 +02001303#endif
wdenkaffae2b2002-08-17 09:36:01 +00001304 USB_HUB_PRINTF("get_hub_status returned status %X, change %X\n",
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001305 le16_to_cpu(hubsts->wHubStatus),
1306 le16_to_cpu(hubsts->wHubChange));
wdenkaffae2b2002-08-17 09:36:01 +00001307 USB_HUB_PRINTF("local power source is %s\n",
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001308 (le16_to_cpu(hubsts->wHubStatus) & HUB_STATUS_LOCAL_POWER) ? \
1309 "lost (inactive)" : "good");
wdenkaffae2b2002-08-17 09:36:01 +00001310 USB_HUB_PRINTF("%sover-current condition exists\n",
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001311 (le16_to_cpu(hubsts->wHubStatus) & HUB_STATUS_OVERCURRENT) ? \
1312 "" : "no ");
wdenkaffae2b2002-08-17 09:36:01 +00001313 usb_hub_power_on(hub);
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001314
wdenkaffae2b2002-08-17 09:36:01 +00001315 for (i = 0; i < dev->maxchild; i++) {
1316 struct usb_port_status portsts;
1317 unsigned short portstatus, portchange;
1318
1319 if (usb_get_port_status(dev, i + 1, &portsts) < 0) {
1320 USB_HUB_PRINTF("get_port_status failed\n");
1321 continue;
1322 }
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001323
Christian Eggersc9182612008-05-21 22:12:00 +02001324 portstatus = le16_to_cpu(portsts.wPortStatus);
1325 portchange = le16_to_cpu(portsts.wPortChange);
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001326 USB_HUB_PRINTF("Port %d Status %X Change %X\n",
1327 i + 1, portstatus, portchange);
1328
wdenkaffae2b2002-08-17 09:36:01 +00001329 if (portchange & USB_PORT_STAT_C_CONNECTION) {
1330 USB_HUB_PRINTF("port %d connection change\n", i + 1);
1331 usb_hub_port_connect_change(dev, i);
1332 }
1333 if (portchange & USB_PORT_STAT_C_ENABLE) {
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001334 USB_HUB_PRINTF("port %d enable change, status %x\n",
1335 i + 1, portstatus);
1336 usb_clear_port_feature(dev, i + 1,
1337 USB_PORT_FEAT_C_ENABLE);
wdenkaffae2b2002-08-17 09:36:01 +00001338
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001339 /* EM interference sometimes causes bad shielded USB
1340 * devices to be shutdown by the hub, this hack enables
1341 * them again. Works at least with mouse driver */
wdenkaffae2b2002-08-17 09:36:01 +00001342 if (!(portstatus & USB_PORT_STAT_ENABLE) &&
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001343 (portstatus & USB_PORT_STAT_CONNECTION) &&
1344 ((dev->children[i]))) {
1345 USB_HUB_PRINTF("already running port %i " \
1346 "disabled by hub (EMI?), " \
1347 "re-enabling...\n", i + 1);
wdenkaffae2b2002-08-17 09:36:01 +00001348 usb_hub_port_connect_change(dev, i);
1349 }
1350 }
1351 if (portstatus & USB_PORT_STAT_SUSPEND) {
1352 USB_HUB_PRINTF("port %d suspend change\n", i + 1);
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001353 usb_clear_port_feature(dev, i + 1,
1354 USB_PORT_FEAT_SUSPEND);
wdenkaffae2b2002-08-17 09:36:01 +00001355 }
1356
1357 if (portchange & USB_PORT_STAT_C_OVERCURRENT) {
1358 USB_HUB_PRINTF("port %d over-current change\n", i + 1);
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001359 usb_clear_port_feature(dev, i + 1,
1360 USB_PORT_FEAT_C_OVER_CURRENT);
wdenkaffae2b2002-08-17 09:36:01 +00001361 usb_hub_power_on(hub);
1362 }
1363
1364 if (portchange & USB_PORT_STAT_C_RESET) {
1365 USB_HUB_PRINTF("port %d reset change\n", i + 1);
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001366 usb_clear_port_feature(dev, i + 1,
1367 USB_PORT_FEAT_C_RESET);
wdenkaffae2b2002-08-17 09:36:01 +00001368 }
1369 } /* end for i all ports */
1370
1371 return 0;
1372}
1373
Marek Vasutc08b1b22012-02-13 18:58:16 +00001374static int usb_hub_probe(struct usb_device *dev, int ifnum)
wdenkaffae2b2002-08-17 09:36:01 +00001375{
Tom Rix8f8bd562009-10-31 12:37:38 -05001376 struct usb_interface *iface;
wdenkaffae2b2002-08-17 09:36:01 +00001377 struct usb_endpoint_descriptor *ep;
1378 int ret;
1379
1380 iface = &dev->config.if_desc[ifnum];
1381 /* Is it a hub? */
Tom Rix8f8bd562009-10-31 12:37:38 -05001382 if (iface->desc.bInterfaceClass != USB_CLASS_HUB)
wdenkaffae2b2002-08-17 09:36:01 +00001383 return 0;
1384 /* Some hubs have a subclass of 1, which AFAICT according to the */
1385 /* specs is not defined, but it works */
Tom Rix8f8bd562009-10-31 12:37:38 -05001386 if ((iface->desc.bInterfaceSubClass != 0) &&
1387 (iface->desc.bInterfaceSubClass != 1))
wdenkaffae2b2002-08-17 09:36:01 +00001388 return 0;
1389 /* Multiple endpoints? What kind of mutant ninja-hub is this? */
Tom Rix8f8bd562009-10-31 12:37:38 -05001390 if (iface->desc.bNumEndpoints != 1)
wdenkaffae2b2002-08-17 09:36:01 +00001391 return 0;
1392 ep = &iface->ep_desc[0];
1393 /* Output endpoint? Curiousier and curiousier.. */
1394 if (!(ep->bEndpointAddress & USB_DIR_IN))
1395 return 0;
1396 /* If it's not an interrupt endpoint, we'd better punt! */
1397 if ((ep->bmAttributes & 3) != 3)
1398 return 0;
1399 /* We found a hub */
1400 USB_HUB_PRINTF("USB hub found\n");
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001401 ret = usb_hub_configure(dev);
wdenkaffae2b2002-08-17 09:36:01 +00001402 return ret;
1403}
1404
wdenkaffae2b2002-08-17 09:36:01 +00001405/* EOF */