blob: 2cd50db99944eb516f5afeeb0023a85e343d34bb [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>
wdenkaffae2b2002-08-17 09:36:01 +000052
wdenkaffae2b2002-08-17 09:36:01 +000053#include <usb.h>
54#ifdef CONFIG_4xx
Stefan Roese3048bcb2007-10-03 15:01:02 +020055#include <asm/4xx_pci.h>
wdenkaffae2b2002-08-17 09:36:01 +000056#endif
57
Alexander Hollerce297a82011-01-28 12:42:13 +010058#ifdef DEBUG
59#define USB_DEBUG
60#define USB_HUB_DEBUG
61#endif
wdenkaffae2b2002-08-17 09:36:01 +000062
63#ifdef USB_DEBUG
Michael Trimarchide39f8c2008-11-26 17:41:34 +010064#define USB_PRINTF(fmt, args...) printf(fmt , ##args)
wdenkaffae2b2002-08-17 09:36:01 +000065#else
Wolfgang Denkf092f152011-10-04 21:19:19 +020066#define USB_PRINTF(fmt, args...)
wdenkaffae2b2002-08-17 09:36:01 +000067#endif
68
wdenkcd0a9de2004-02-23 20:48:38 +000069#define USB_BUFSIZ 512
70
wdenkaffae2b2002-08-17 09:36:01 +000071static struct usb_device usb_dev[USB_MAX_DEVICE];
72static int dev_index;
73static int running;
74static int asynch_allowed;
75static struct devrequest setup_packet;
76
Bartlomiej Siekae51aae32006-08-03 23:20:13 +020077char usb_started; /* flag for the started/stopped USB status */
78
wdenkaffae2b2002-08-17 09:36:01 +000079/**********************************************************************
80 * some forward declerations...
81 */
82void usb_scan_devices(void);
83
84int usb_hub_probe(struct usb_device *dev, int ifnum);
85void usb_hub_reset(void);
Remy Bohmerc9e84362008-09-16 14:55:44 +020086static int hub_port_reset(struct usb_device *dev, int port,
87 unsigned short *portstat);
Wolfgang Denk9c998aa2005-07-21 11:57:57 +020088
wdenkaffae2b2002-08-17 09:36:01 +000089/***********************************************************************
90 * wait_ms
91 */
92
Michael Trimarchide39f8c2008-11-26 17:41:34 +010093inline void wait_ms(unsigned long ms)
wdenkaffae2b2002-08-17 09:36:01 +000094{
Remy Bohmer6f5794a2008-09-16 14:55:43 +020095 while (ms-- > 0)
wdenkaffae2b2002-08-17 09:36:01 +000096 udelay(1000);
97}
Michael Trimarchide39f8c2008-11-26 17:41:34 +010098
wdenkaffae2b2002-08-17 09:36:01 +000099/***************************************************************************
100 * Init USB Device
101 */
102
103int usb_init(void)
104{
105 int result;
106
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200107 running = 0;
108 dev_index = 0;
109 asynch_allowed = 1;
wdenkaffae2b2002-08-17 09:36:01 +0000110 usb_hub_reset();
111 /* init low_level USB */
112 printf("USB: ");
113 result = usb_lowlevel_init();
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200114 /* if lowlevel init is OK, scan the bus for devices
115 * i.e. search HUBs and configure them */
116 if (result == 0) {
wdenkaffae2b2002-08-17 09:36:01 +0000117 printf("scanning bus for devices... ");
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200118 running = 1;
wdenkaffae2b2002-08-17 09:36:01 +0000119 usb_scan_devices();
Bartlomiej Siekae51aae32006-08-03 23:20:13 +0200120 usb_started = 1;
wdenkaffae2b2002-08-17 09:36:01 +0000121 return 0;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200122 } else {
wdenkaffae2b2002-08-17 09:36:01 +0000123 printf("Error, couldn't init Lowlevel part\n");
Bartlomiej Siekae51aae32006-08-03 23:20:13 +0200124 usb_started = 0;
wdenkaffae2b2002-08-17 09:36:01 +0000125 return -1;
126 }
127}
128
129/******************************************************************************
130 * Stop USB this stops the LowLevel Part and deregisters USB devices.
131 */
132int usb_stop(void)
133{
Remy Bohmereba1f2f2008-08-20 11:22:02 +0200134 int res = 0;
135
136 if (usb_started) {
137 asynch_allowed = 1;
138 usb_started = 0;
139 usb_hub_reset();
140 res = usb_lowlevel_stop();
141 }
142 return res;
wdenkaffae2b2002-08-17 09:36:01 +0000143}
144
145/*
146 * disables the asynch behaviour of the control message. This is used for data
147 * transfers that uses the exclusiv access to the control and bulk messages.
Simon Glass89d48362011-02-16 11:14:33 -0800148 * Returns the old value so it can be restored later.
wdenkaffae2b2002-08-17 09:36:01 +0000149 */
Simon Glass89d48362011-02-16 11:14:33 -0800150int usb_disable_asynch(int disable)
wdenkaffae2b2002-08-17 09:36:01 +0000151{
Simon Glass89d48362011-02-16 11:14:33 -0800152 int old_value = asynch_allowed;
153
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200154 asynch_allowed = !disable;
Simon Glass89d48362011-02-16 11:14:33 -0800155 return old_value;
wdenkaffae2b2002-08-17 09:36:01 +0000156}
157
158
159/*-------------------------------------------------------------------
160 * Message wrappers.
161 *
162 */
163
164/*
165 * submits an Interrupt Message
166 */
167int usb_submit_int_msg(struct usb_device *dev, unsigned long pipe,
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200168 void *buffer, int transfer_len, int interval)
wdenkaffae2b2002-08-17 09:36:01 +0000169{
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200170 return submit_int_msg(dev, pipe, buffer, transfer_len, interval);
wdenkaffae2b2002-08-17 09:36:01 +0000171}
172
173/*
174 * submits a control message and waits for comletion (at least timeout * 1ms)
175 * If timeout is 0, we don't wait for completion (used as example to set and
176 * clear keyboards LEDs). For data transfers, (storage transfers) we don't
177 * allow control messages with 0 timeout, by previousely resetting the flag
178 * asynch_allowed (usb_disable_asynch(1)).
179 * returns the transfered length if OK or -1 if error. The transfered length
180 * and the current status are stored in the dev->act_len and dev->status.
181 */
182int usb_control_msg(struct usb_device *dev, unsigned int pipe,
183 unsigned char request, unsigned char requesttype,
184 unsigned short value, unsigned short index,
185 void *data, unsigned short size, int timeout)
186{
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200187 if ((timeout == 0) && (!asynch_allowed)) {
188 /* request for a asynch control pipe is not allowed */
wdenkaffae2b2002-08-17 09:36:01 +0000189 return -1;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200190 }
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200191
wdenkaffae2b2002-08-17 09:36:01 +0000192 /* set setup command */
193 setup_packet.requesttype = requesttype;
194 setup_packet.request = request;
Christian Eggersc9182612008-05-21 22:12:00 +0200195 setup_packet.value = cpu_to_le16(value);
196 setup_packet.index = cpu_to_le16(index);
197 setup_packet.length = cpu_to_le16(size);
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200198 USB_PRINTF("usb_control_msg: request: 0x%X, requesttype: 0x%X, " \
199 "value 0x%X index 0x%X length 0x%X\n",
200 request, requesttype, value, index, size);
201 dev->status = USB_ST_NOT_PROC; /*not yet processed */
wdenkaffae2b2002-08-17 09:36:01 +0000202
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200203 submit_control_msg(dev, pipe, data, size, &setup_packet);
204 if (timeout == 0)
wdenkaffae2b2002-08-17 09:36:01 +0000205 return (int)size;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200206
Remy Bohmer84d36b32010-02-01 19:40:47 +0100207 /*
208 * Wait for status to update until timeout expires, USB driver
209 * interrupt handler may set the status when the USB operation has
210 * been completed.
211 */
212 while (timeout--) {
213 if (!((volatile unsigned long)dev->status & USB_ST_NOT_PROC))
214 break;
215 wait_ms(1);
Remy Bohmer48867202008-10-10 10:23:21 +0200216 }
Remy Bohmer84d36b32010-02-01 19:40:47 +0100217 if (dev->status)
218 return -1;
Remy Bohmer48867202008-10-10 10:23:21 +0200219
220 return dev->act_len;
Remy Bohmer84d36b32010-02-01 19:40:47 +0100221
wdenkaffae2b2002-08-17 09:36:01 +0000222}
223
224/*-------------------------------------------------------------------
225 * submits bulk message, and waits for completion. returns 0 if Ok or
226 * -1 if Error.
227 * synchronous behavior
228 */
229int usb_bulk_msg(struct usb_device *dev, unsigned int pipe,
230 void *data, int len, int *actual_length, int timeout)
231{
232 if (len < 0)
233 return -1;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200234 dev->status = USB_ST_NOT_PROC; /*not yet processed */
235 submit_bulk_msg(dev, pipe, data, len);
236 while (timeout--) {
237 if (!((volatile unsigned long)dev->status & USB_ST_NOT_PROC))
wdenkaffae2b2002-08-17 09:36:01 +0000238 break;
239 wait_ms(1);
240 }
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200241 *actual_length = dev->act_len;
242 if (dev->status == 0)
wdenkaffae2b2002-08-17 09:36:01 +0000243 return 0;
244 else
245 return -1;
246}
247
248
249/*-------------------------------------------------------------------
250 * Max Packet stuff
251 */
252
253/*
254 * returns the max packet size, depending on the pipe direction and
255 * the configurations values
256 */
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200257int usb_maxpacket(struct usb_device *dev, unsigned long pipe)
wdenkaffae2b2002-08-17 09:36:01 +0000258{
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200259 /* direction is out -> use emaxpacket out */
260 if ((pipe & USB_DIR_IN) == 0)
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100261 return dev->epmaxpacketout[((pipe>>15) & 0xf)];
wdenkaffae2b2002-08-17 09:36:01 +0000262 else
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100263 return dev->epmaxpacketin[((pipe>>15) & 0xf)];
wdenkaffae2b2002-08-17 09:36:01 +0000264}
265
Remy Bohmerbe19d322008-09-16 14:55:42 +0200266/* The routine usb_set_maxpacket_ep() is extracted from the loop of routine
267 * usb_set_maxpacket(), because the optimizer of GCC 4.x chokes on this routine
268 * when it is inlined in 1 single routine. What happens is that the register r3
269 * is used as loop-count 'i', but gets overwritten later on.
270 * This is clearly a compiler bug, but it is easier to workaround it here than
271 * to update the compiler (Occurs with at least several GCC 4.{1,2},x
272 * CodeSourcery compilers like e.g. 2007q3, 2008q1, 2008q3 lite editions on ARM)
273 */
274static void __attribute__((noinline))
275usb_set_maxpacket_ep(struct usb_device *dev, struct usb_endpoint_descriptor *ep)
276{
277 int b;
278
279 b = ep->bEndpointAddress & USB_ENDPOINT_NUMBER_MASK;
280
281 if ((ep->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) ==
282 USB_ENDPOINT_XFER_CONTROL) {
283 /* Control => bidirectional */
284 dev->epmaxpacketout[b] = ep->wMaxPacketSize;
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100285 dev->epmaxpacketin[b] = ep->wMaxPacketSize;
Remy Bohmerbe19d322008-09-16 14:55:42 +0200286 USB_PRINTF("##Control EP epmaxpacketout/in[%d] = %d\n",
287 b, dev->epmaxpacketin[b]);
288 } else {
289 if ((ep->bEndpointAddress & 0x80) == 0) {
290 /* OUT Endpoint */
291 if (ep->wMaxPacketSize > dev->epmaxpacketout[b]) {
292 dev->epmaxpacketout[b] = ep->wMaxPacketSize;
293 USB_PRINTF("##EP epmaxpacketout[%d] = %d\n",
294 b, dev->epmaxpacketout[b]);
295 }
296 } else {
297 /* IN Endpoint */
298 if (ep->wMaxPacketSize > dev->epmaxpacketin[b]) {
299 dev->epmaxpacketin[b] = ep->wMaxPacketSize;
300 USB_PRINTF("##EP epmaxpacketin[%d] = %d\n",
301 b, dev->epmaxpacketin[b]);
302 }
303 } /* if out */
304 } /* if control */
305}
306
wdenkaffae2b2002-08-17 09:36:01 +0000307/*
308 * set the max packed value of all endpoints in the given configuration
309 */
310int usb_set_maxpacket(struct usb_device *dev)
311{
Remy Bohmerbe19d322008-09-16 14:55:42 +0200312 int i, ii;
wdenkaffae2b2002-08-17 09:36:01 +0000313
Tom Rix8f8bd562009-10-31 12:37:38 -0500314 for (i = 0; i < dev->config.desc.bNumInterfaces; i++)
315 for (ii = 0; ii < dev->config.if_desc[i].desc.bNumEndpoints; ii++)
Remy Bohmerbe19d322008-09-16 14:55:42 +0200316 usb_set_maxpacket_ep(dev,
317 &dev->config.if_desc[i].ep_desc[ii]);
wdenkaffae2b2002-08-17 09:36:01 +0000318
wdenkaffae2b2002-08-17 09:36:01 +0000319 return 0;
320}
321
322/*******************************************************************************
323 * Parse the config, located in buffer, and fills the dev->config structure.
324 * Note that all little/big endian swapping are done automatically.
325 */
326int usb_parse_config(struct usb_device *dev, unsigned char *buffer, int cfgno)
327{
328 struct usb_descriptor_header *head;
Bartlomiej Sieka7455af42006-08-02 00:54:18 +0200329 int index, ifno, epno, curr_if_num;
330 int i;
wdenkaffae2b2002-08-17 09:36:01 +0000331
Bartlomiej Sieka7455af42006-08-02 00:54:18 +0200332 ifno = -1;
333 epno = -1;
334 curr_if_num = -1;
335
336 dev->configno = cfgno;
337 head = (struct usb_descriptor_header *) &buffer[0];
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200338 if (head->bDescriptorType != USB_DT_CONFIG) {
339 printf(" ERROR: NOT USB_CONFIG_DESC %x\n",
340 head->bDescriptorType);
wdenkaffae2b2002-08-17 09:36:01 +0000341 return -1;
342 }
Bartlomiej Sieka7455af42006-08-02 00:54:18 +0200343 memcpy(&dev->config, buffer, buffer[0]);
Tom Rix8f8bd562009-10-31 12:37:38 -0500344 le16_to_cpus(&(dev->config.desc.wTotalLength));
Bartlomiej Sieka7455af42006-08-02 00:54:18 +0200345 dev->config.no_of_if = 0;
wdenkaffae2b2002-08-17 09:36:01 +0000346
Tom Rix8f8bd562009-10-31 12:37:38 -0500347 index = dev->config.desc.bLength;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200348 /* Ok the first entry must be a configuration entry,
349 * now process the others */
Bartlomiej Sieka7455af42006-08-02 00:54:18 +0200350 head = (struct usb_descriptor_header *) &buffer[index];
Tom Rix8f8bd562009-10-31 12:37:38 -0500351 while (index + 1 < dev->config.desc.wTotalLength) {
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200352 switch (head->bDescriptorType) {
353 case USB_DT_INTERFACE:
354 if (((struct usb_interface_descriptor *) \
355 &buffer[index])->bInterfaceNumber != curr_if_num) {
356 /* this is a new interface, copy new desc */
357 ifno = dev->config.no_of_if;
358 dev->config.no_of_if++;
359 memcpy(&dev->config.if_desc[ifno],
Bartlomiej Sieka7455af42006-08-02 00:54:18 +0200360 &buffer[index], buffer[index]);
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200361 dev->config.if_desc[ifno].no_of_ep = 0;
362 dev->config.if_desc[ifno].num_altsetting = 1;
363 curr_if_num =
Tom Rix8f8bd562009-10-31 12:37:38 -0500364 dev->config.if_desc[ifno].desc.bInterfaceNumber;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200365 } else {
366 /* found alternate setting for the interface */
367 dev->config.if_desc[ifno].num_altsetting++;
368 }
369 break;
370 case USB_DT_ENDPOINT:
371 epno = dev->config.if_desc[ifno].no_of_ep;
372 /* found an endpoint */
373 dev->config.if_desc[ifno].no_of_ep++;
374 memcpy(&dev->config.if_desc[ifno].ep_desc[epno],
375 &buffer[index], buffer[index]);
376 le16_to_cpus(&(dev->config.if_desc[ifno].ep_desc[epno].\
377 wMaxPacketSize));
378 USB_PRINTF("if %d, ep %d\n", ifno, epno);
379 break;
380 default:
381 if (head->bLength == 0)
382 return 1;
383
384 USB_PRINTF("unknown Description Type : %x\n",
385 head->bDescriptorType);
386
387 {
Wolfgang Denkfad2e1b2011-10-05 23:11:19 +0200388#ifdef USB_DEBUG
389 unsigned char *ch = (unsigned char *)head;
390#endif
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200391 for (i = 0; i < head->bLength; i++)
392 USB_PRINTF("%02X ", *ch++);
393 USB_PRINTF("\n\n\n");
394 }
395 break;
wdenkaffae2b2002-08-17 09:36:01 +0000396 }
Bartlomiej Sieka7455af42006-08-02 00:54:18 +0200397 index += head->bLength;
398 head = (struct usb_descriptor_header *)&buffer[index];
wdenkaffae2b2002-08-17 09:36:01 +0000399 }
400 return 1;
401}
402
403/***********************************************************************
404 * Clears an endpoint
405 * endp: endpoint number in bits 0-3;
406 * direction flag in bit 7 (1 = IN, 0 = OUT)
407 */
408int usb_clear_halt(struct usb_device *dev, int pipe)
409{
410 int result;
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200411 int endp = usb_pipeendpoint(pipe)|(usb_pipein(pipe)<<7);
wdenkaffae2b2002-08-17 09:36:01 +0000412
413 result = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200414 USB_REQ_CLEAR_FEATURE, USB_RECIP_ENDPOINT, 0,
415 endp, NULL, 0, USB_CNTL_TIMEOUT * 3);
wdenkaffae2b2002-08-17 09:36:01 +0000416
417 /* don't clear if failed */
418 if (result < 0)
419 return result;
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200420
Wolfgang Denk095b8a32005-08-02 17:06:17 +0200421 /*
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200422 * NOTE: we do not get status and verify reset was successful
423 * as some devices are reported to lock up upon this check..
424 */
425
wdenkaffae2b2002-08-17 09:36:01 +0000426 usb_endpoint_running(dev, usb_pipeendpoint(pipe), usb_pipeout(pipe));
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200427
wdenkaffae2b2002-08-17 09:36:01 +0000428 /* toggle is reset on clear */
429 usb_settoggle(dev, usb_pipeendpoint(pipe), usb_pipeout(pipe), 0);
430 return 0;
431}
432
433
434/**********************************************************************
435 * get_descriptor type
436 */
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200437int usb_get_descriptor(struct usb_device *dev, unsigned char type,
438 unsigned char index, void *buf, int size)
wdenkaffae2b2002-08-17 09:36:01 +0000439{
440 int res;
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200441 res = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
wdenkaffae2b2002-08-17 09:36:01 +0000442 USB_REQ_GET_DESCRIPTOR, USB_DIR_IN,
443 (type << 8) + index, 0,
444 buf, size, USB_CNTL_TIMEOUT);
445 return res;
446}
447
448/**********************************************************************
449 * gets configuration cfgno and store it in the buffer
450 */
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200451int usb_get_configuration_no(struct usb_device *dev,
452 unsigned char *buffer, int cfgno)
wdenkaffae2b2002-08-17 09:36:01 +0000453{
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200454 int result;
wdenkaffae2b2002-08-17 09:36:01 +0000455 unsigned int tmp;
Tom Rix8f8bd562009-10-31 12:37:38 -0500456 struct usb_configuration_descriptor *config;
wdenkaffae2b2002-08-17 09:36:01 +0000457
Tom Rix8f8bd562009-10-31 12:37:38 -0500458 config = (struct usb_configuration_descriptor *)&buffer[0];
Remy Bohmer48867202008-10-10 10:23:21 +0200459 result = usb_get_descriptor(dev, USB_DT_CONFIG, cfgno, buffer, 9);
460 if (result < 9) {
wdenkaffae2b2002-08-17 09:36:01 +0000461 if (result < 0)
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200462 printf("unable to get descriptor, error %lX\n",
463 dev->status);
wdenkaffae2b2002-08-17 09:36:01 +0000464 else
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200465 printf("config descriptor too short " \
Remy Bohmer48867202008-10-10 10:23:21 +0200466 "(expected %i, got %i)\n", 9, result);
wdenkaffae2b2002-08-17 09:36:01 +0000467 return -1;
468 }
Christian Eggersc9182612008-05-21 22:12:00 +0200469 tmp = le16_to_cpu(config->wTotalLength);
wdenkaffae2b2002-08-17 09:36:01 +0000470
wdenkcd0a9de2004-02-23 20:48:38 +0000471 if (tmp > USB_BUFSIZ) {
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200472 USB_PRINTF("usb_get_configuration_no: failed to get " \
473 "descriptor - too long: %d\n", tmp);
wdenkcd0a9de2004-02-23 20:48:38 +0000474 return -1;
475 }
476
wdenkaffae2b2002-08-17 09:36:01 +0000477 result = usb_get_descriptor(dev, USB_DT_CONFIG, cfgno, buffer, tmp);
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200478 USB_PRINTF("get_conf_no %d Result %d, wLength %d\n",
479 cfgno, result, tmp);
wdenkaffae2b2002-08-17 09:36:01 +0000480 return result;
481}
482
483/********************************************************************
484 * set address of a device to the value in dev->devnum.
485 * This can only be done by addressing the device via the default address (0)
486 */
487int usb_set_address(struct usb_device *dev)
488{
489 int res;
490
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200491 USB_PRINTF("set address %d\n", dev->devnum);
492 res = usb_control_msg(dev, usb_snddefctrl(dev),
493 USB_REQ_SET_ADDRESS, 0,
494 (dev->devnum), 0,
495 NULL, 0, USB_CNTL_TIMEOUT);
wdenkaffae2b2002-08-17 09:36:01 +0000496 return res;
497}
498
499/********************************************************************
500 * set interface number to interface
501 */
502int usb_set_interface(struct usb_device *dev, int interface, int alternate)
503{
Tom Rix8f8bd562009-10-31 12:37:38 -0500504 struct usb_interface *if_face = NULL;
wdenkaffae2b2002-08-17 09:36:01 +0000505 int ret, i;
506
Tom Rix8f8bd562009-10-31 12:37:38 -0500507 for (i = 0; i < dev->config.desc.bNumInterfaces; i++) {
508 if (dev->config.if_desc[i].desc.bInterfaceNumber == interface) {
wdenkaffae2b2002-08-17 09:36:01 +0000509 if_face = &dev->config.if_desc[i];
510 break;
511 }
512 }
513 if (!if_face) {
514 printf("selecting invalid interface %d", interface);
515 return -1;
516 }
Bartlomiej Sieka7455af42006-08-02 00:54:18 +0200517 /*
518 * We should return now for devices with only one alternate setting.
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200519 * According to 9.4.10 of the Universal Serial Bus Specification
520 * Revision 2.0 such devices can return with a STALL. This results in
521 * some USB sticks timeouting during initialization and then being
522 * unusable in U-Boot.
Bartlomiej Sieka7455af42006-08-02 00:54:18 +0200523 */
524 if (if_face->num_altsetting == 1)
525 return 0;
wdenkaffae2b2002-08-17 09:36:01 +0000526
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200527 ret = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
528 USB_REQ_SET_INTERFACE, USB_RECIP_INTERFACE,
529 alternate, interface, NULL, 0,
530 USB_CNTL_TIMEOUT * 5);
531 if (ret < 0)
wdenkaffae2b2002-08-17 09:36:01 +0000532 return ret;
533
wdenkaffae2b2002-08-17 09:36:01 +0000534 return 0;
535}
536
537/********************************************************************
538 * set configuration number to configuration
539 */
540int usb_set_configuration(struct usb_device *dev, int configuration)
541{
542 int res;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200543 USB_PRINTF("set configuration %d\n", configuration);
wdenkaffae2b2002-08-17 09:36:01 +0000544 /* set setup command */
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200545 res = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
546 USB_REQ_SET_CONFIGURATION, 0,
547 configuration, 0,
548 NULL, 0, USB_CNTL_TIMEOUT);
549 if (res == 0) {
wdenkaffae2b2002-08-17 09:36:01 +0000550 dev->toggle[0] = 0;
551 dev->toggle[1] = 0;
552 return 0;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200553 } else
wdenkaffae2b2002-08-17 09:36:01 +0000554 return -1;
555}
556
557/********************************************************************
558 * set protocol to protocol
559 */
560int usb_set_protocol(struct usb_device *dev, int ifnum, int protocol)
561{
562 return usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
563 USB_REQ_SET_PROTOCOL, USB_TYPE_CLASS | USB_RECIP_INTERFACE,
564 protocol, ifnum, NULL, 0, USB_CNTL_TIMEOUT);
565}
566
567/********************************************************************
568 * set idle
569 */
570int usb_set_idle(struct usb_device *dev, int ifnum, int duration, int report_id)
571{
572 return usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
573 USB_REQ_SET_IDLE, USB_TYPE_CLASS | USB_RECIP_INTERFACE,
574 (duration << 8) | report_id, ifnum, NULL, 0, USB_CNTL_TIMEOUT);
575}
576
577/********************************************************************
578 * get report
579 */
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200580int usb_get_report(struct usb_device *dev, int ifnum, unsigned char type,
581 unsigned char id, void *buf, int size)
wdenkaffae2b2002-08-17 09:36:01 +0000582{
583 return usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200584 USB_REQ_GET_REPORT,
585 USB_DIR_IN | USB_TYPE_CLASS | USB_RECIP_INTERFACE,
586 (type << 8) + id, ifnum, buf, size, USB_CNTL_TIMEOUT);
wdenkaffae2b2002-08-17 09:36:01 +0000587}
588
589/********************************************************************
590 * get class descriptor
591 */
592int usb_get_class_descriptor(struct usb_device *dev, int ifnum,
593 unsigned char type, unsigned char id, void *buf, int size)
594{
595 return usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
596 USB_REQ_GET_DESCRIPTOR, USB_RECIP_INTERFACE | USB_DIR_IN,
597 (type << 8) + id, ifnum, buf, size, USB_CNTL_TIMEOUT);
598}
599
600/********************************************************************
601 * get string index in buffer
602 */
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200603int usb_get_string(struct usb_device *dev, unsigned short langid,
604 unsigned char index, void *buf, int size)
wdenkaffae2b2002-08-17 09:36:01 +0000605{
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200606 int i;
607 int result;
608
609 for (i = 0; i < 3; ++i) {
610 /* some devices are flaky */
611 result = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
612 USB_REQ_GET_DESCRIPTOR, USB_DIR_IN,
Wolfgang Denk095b8a32005-08-02 17:06:17 +0200613 (USB_DT_STRING << 8) + index, langid, buf, size,
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200614 USB_CNTL_TIMEOUT);
615
616 if (result > 0)
617 break;
Wolfgang Denk095b8a32005-08-02 17:06:17 +0200618 }
619
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200620 return result;
wdenkaffae2b2002-08-17 09:36:01 +0000621}
622
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200623
624static void usb_try_string_workarounds(unsigned char *buf, int *length)
625{
626 int newlength, oldlength = *length;
627
628 for (newlength = 2; newlength + 1 < oldlength; newlength += 2)
629 if (!isprint(buf[newlength]) || buf[newlength + 1])
630 break;
631
632 if (newlength > 2) {
633 buf[0] = newlength;
634 *length = newlength;
635 }
636}
637
638
639static int usb_string_sub(struct usb_device *dev, unsigned int langid,
640 unsigned int index, unsigned char *buf)
641{
642 int rc;
643
644 /* Try to read the string descriptor by asking for the maximum
645 * possible number of bytes */
646 rc = usb_get_string(dev, langid, index, buf, 255);
647
648 /* If that failed try to read the descriptor length, then
649 * ask for just that many bytes */
650 if (rc < 2) {
651 rc = usb_get_string(dev, langid, index, buf, 2);
652 if (rc == 2)
653 rc = usb_get_string(dev, langid, index, buf, buf[0]);
654 }
655
656 if (rc >= 2) {
657 if (!buf[0] && !buf[1])
658 usb_try_string_workarounds(buf, &rc);
659
660 /* There might be extra junk at the end of the descriptor */
661 if (buf[0] < rc)
662 rc = buf[0];
663
664 rc = rc - (rc & 1); /* force a multiple of two */
665 }
666
667 if (rc < 2)
Wolfgang Denk095b8a32005-08-02 17:06:17 +0200668 rc = -1;
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200669
670 return rc;
671}
672
673
wdenkaffae2b2002-08-17 09:36:01 +0000674/********************************************************************
675 * usb_string:
676 * Get string index and translate it to ascii.
677 * returns string length (> 0) or error (< 0)
678 */
679int usb_string(struct usb_device *dev, int index, char *buf, size_t size)
680{
wdenkcd0a9de2004-02-23 20:48:38 +0000681 unsigned char mybuf[USB_BUFSIZ];
wdenkaffae2b2002-08-17 09:36:01 +0000682 unsigned char *tbuf;
683 int err;
684 unsigned int u, idx;
685
686 if (size <= 0 || !buf || !index)
687 return -1;
688 buf[0] = 0;
Wolfgang Denkd0ff51b2008-07-14 15:19:07 +0200689 tbuf = &mybuf[0];
wdenkaffae2b2002-08-17 09:36:01 +0000690
691 /* get langid for strings if it's not yet known */
692 if (!dev->have_langid) {
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200693 err = usb_string_sub(dev, 0, 0, tbuf);
wdenkaffae2b2002-08-17 09:36:01 +0000694 if (err < 0) {
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200695 USB_PRINTF("error getting string descriptor 0 " \
Stefan Roesef1c1f542009-01-22 10:11:21 +0100696 "(error=%lx)\n", dev->status);
wdenkaffae2b2002-08-17 09:36:01 +0000697 return -1;
698 } else if (tbuf[0] < 4) {
699 USB_PRINTF("string descriptor 0 too short\n");
700 return -1;
701 } else {
702 dev->have_langid = -1;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200703 dev->string_langid = tbuf[2] | (tbuf[3] << 8);
wdenkaffae2b2002-08-17 09:36:01 +0000704 /* always use the first langid listed */
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200705 USB_PRINTF("USB device number %d default " \
706 "language ID 0x%x\n",
707 dev->devnum, dev->string_langid);
wdenkaffae2b2002-08-17 09:36:01 +0000708 }
709 }
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200710
711 err = usb_string_sub(dev, dev->string_langid, index, tbuf);
wdenkaffae2b2002-08-17 09:36:01 +0000712 if (err < 0)
713 return err;
wdenkcd0a9de2004-02-23 20:48:38 +0000714
wdenkaffae2b2002-08-17 09:36:01 +0000715 size--; /* leave room for trailing NULL char in output buffer */
716 for (idx = 0, u = 2; u < err; u += 2) {
717 if (idx >= size)
718 break;
719 if (tbuf[u+1]) /* high byte */
720 buf[idx++] = '?'; /* non-ASCII character */
721 else
722 buf[idx++] = tbuf[u];
723 }
724 buf[idx] = 0;
725 err = idx;
726 return err;
727}
728
729
730/********************************************************************
731 * USB device handling:
732 * the USB device are static allocated [USB_MAX_DEVICE].
733 */
734
735
736/* returns a pointer to the device with the index [index].
737 * if the device is not assigned (dev->devnum==-1) returns NULL
738 */
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200739struct usb_device *usb_get_dev_index(int index)
wdenkaffae2b2002-08-17 09:36:01 +0000740{
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200741 if (usb_dev[index].devnum == -1)
wdenkaffae2b2002-08-17 09:36:01 +0000742 return NULL;
743 else
744 return &usb_dev[index];
745}
746
747
748/* returns a pointer of a new device structure or NULL, if
749 * no device struct is available
750 */
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200751struct usb_device *usb_alloc_new_device(void)
wdenkaffae2b2002-08-17 09:36:01 +0000752{
753 int i;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200754 USB_PRINTF("New Device %d\n", dev_index);
755 if (dev_index == USB_MAX_DEVICE) {
756 printf("ERROR, too many USB Devices, max=%d\n", USB_MAX_DEVICE);
wdenkaffae2b2002-08-17 09:36:01 +0000757 return NULL;
758 }
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200759 /* default Address is 0, real addresses start with 1 */
760 usb_dev[dev_index].devnum = dev_index + 1;
761 usb_dev[dev_index].maxchild = 0;
762 for (i = 0; i < USB_MAXCHILDREN; i++)
763 usb_dev[dev_index].children[i] = NULL;
764 usb_dev[dev_index].parent = NULL;
wdenkaffae2b2002-08-17 09:36:01 +0000765 dev_index++;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200766 return &usb_dev[dev_index - 1];
wdenkaffae2b2002-08-17 09:36:01 +0000767}
768
769
770/*
771 * By the time we get here, the device has gotten a new device ID
772 * and is in the default state. We need to identify the thing and
773 * get the ball rolling..
774 *
775 * Returns 0 for success, != 0 for error.
776 */
777int usb_new_device(struct usb_device *dev)
778{
779 int addr, err;
780 int tmp;
wdenkcd0a9de2004-02-23 20:48:38 +0000781 unsigned char tmpbuf[USB_BUFSIZ];
wdenkaffae2b2002-08-17 09:36:01 +0000782
wdenkaffae2b2002-08-17 09:36:01 +0000783 /* We still haven't set the Address yet */
784 addr = dev->devnum;
785 dev->devnum = 0;
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200786
Remy Bohmerc9e84362008-09-16 14:55:44 +0200787#ifdef CONFIG_LEGACY_USB_INIT_SEQ
788 /* this is the old and known way of initializing devices, it is
789 * different than what Windows and Linux are doing. Windows and Linux
790 * both retrieve 64 bytes while reading the device descriptor
791 * Several USB stick devices report ERR: CTL_TIMEOUT, caused by an
792 * invalid header while reading 8 bytes as device descriptor. */
793 dev->descriptor.bMaxPacketSize0 = 8; /* Start off at 8 bytes */
Remy Bohmer48867202008-10-10 10:23:21 +0200794 dev->maxpacketsize = PACKET_SIZE_8;
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100795 dev->epmaxpacketin[0] = 8;
Remy Bohmerc9e84362008-09-16 14:55:44 +0200796 dev->epmaxpacketout[0] = 8;
797
798 err = usb_get_descriptor(dev, USB_DT_DEVICE, 0, &dev->descriptor, 8);
799 if (err < 8) {
800 printf("\n USB device not responding, " \
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100801 "giving up (status=%lX)\n", dev->status);
Remy Bohmerc9e84362008-09-16 14:55:44 +0200802 return 1;
803 }
804#else
Remy Bohmer48867202008-10-10 10:23:21 +0200805 /* This is a Windows scheme of initialization sequence, with double
806 * reset of the device (Linux uses the same sequence)
Remy Bohmerc9e84362008-09-16 14:55:44 +0200807 * Some equipment is said to work only with such init sequence; this
808 * patch is based on the work by Alan Stern:
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100809 * http://sourceforge.net/mailarchive/forum.php?
810 * thread_id=5729457&forum_id=5398
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200811 */
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200812 struct usb_device_descriptor *desc;
813 int port = -1;
814 struct usb_device *parent = dev->parent;
815 unsigned short portstatus;
816
817 /* send 64-byte GET-DEVICE-DESCRIPTOR request. Since the descriptor is
818 * only 18 bytes long, this will terminate with a short packet. But if
819 * the maxpacket size is 8 or 16 the device may be waiting to transmit
Remy Bohmerc9e84362008-09-16 14:55:44 +0200820 * some more, or keeps on retransmitting the 8 byte header. */
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200821
822 desc = (struct usb_device_descriptor *)tmpbuf;
Remy Bohmerc9e84362008-09-16 14:55:44 +0200823 dev->descriptor.bMaxPacketSize0 = 64; /* Start off at 64 bytes */
Remy Bohmer48867202008-10-10 10:23:21 +0200824 /* Default to 64 byte max packet size */
825 dev->maxpacketsize = PACKET_SIZE_64;
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100826 dev->epmaxpacketin[0] = 64;
Remy Bohmerc9e84362008-09-16 14:55:44 +0200827 dev->epmaxpacketout[0] = 64;
Remy Bohmer48867202008-10-10 10:23:21 +0200828
829 err = usb_get_descriptor(dev, USB_DT_DEVICE, 0, desc, 64);
830 if (err < 0) {
831 USB_PRINTF("usb_new_device: usb_get_descriptor() failed\n");
832 return 1;
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200833 }
Remy Bohmer48867202008-10-10 10:23:21 +0200834
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200835 dev->descriptor.bMaxPacketSize0 = desc->bMaxPacketSize0;
Wolfgang Denk095b8a32005-08-02 17:06:17 +0200836
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200837 /* find the port number we're at */
838 if (parent) {
Remy Bohmer48867202008-10-10 10:23:21 +0200839 int j;
Wolfgang Denk095b8a32005-08-02 17:06:17 +0200840
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200841 for (j = 0; j < parent->maxchild; j++) {
842 if (parent->children[j] == dev) {
843 port = j;
844 break;
845 }
846 }
847 if (port < 0) {
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200848 printf("usb_new_device:cannot locate device's port.\n");
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200849 return 1;
850 }
851
852 /* reset the port for the second time */
853 err = hub_port_reset(dev->parent, port, &portstatus);
854 if (err < 0) {
855 printf("\n Couldn't reset port %i\n", port);
856 return 1;
857 }
858 }
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200859#endif
860
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100861 dev->epmaxpacketin[0] = dev->descriptor.bMaxPacketSize0;
wdenkaffae2b2002-08-17 09:36:01 +0000862 dev->epmaxpacketout[0] = dev->descriptor.bMaxPacketSize0;
863 switch (dev->descriptor.bMaxPacketSize0) {
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100864 case 8:
865 dev->maxpacketsize = PACKET_SIZE_8;
866 break;
867 case 16:
868 dev->maxpacketsize = PACKET_SIZE_16;
869 break;
870 case 32:
871 dev->maxpacketsize = PACKET_SIZE_32;
872 break;
873 case 64:
874 dev->maxpacketsize = PACKET_SIZE_64;
875 break;
wdenkaffae2b2002-08-17 09:36:01 +0000876 }
877 dev->devnum = addr;
878
879 err = usb_set_address(dev); /* set address */
880
881 if (err < 0) {
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200882 printf("\n USB device not accepting new address " \
883 "(error=%lX)\n", dev->status);
wdenkaffae2b2002-08-17 09:36:01 +0000884 return 1;
885 }
886
887 wait_ms(10); /* Let the SET_ADDRESS settle */
888
889 tmp = sizeof(dev->descriptor);
890
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200891 err = usb_get_descriptor(dev, USB_DT_DEVICE, 0,
892 &dev->descriptor, sizeof(dev->descriptor));
wdenkaffae2b2002-08-17 09:36:01 +0000893 if (err < tmp) {
894 if (err < 0)
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200895 printf("unable to get device descriptor (error=%d)\n",
896 err);
wdenkaffae2b2002-08-17 09:36:01 +0000897 else
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200898 printf("USB device descriptor short read " \
899 "(expected %i, got %i)\n", tmp, err);
wdenkaffae2b2002-08-17 09:36:01 +0000900 return 1;
901 }
902 /* correct le values */
Christian Eggersc9182612008-05-21 22:12:00 +0200903 le16_to_cpus(&dev->descriptor.bcdUSB);
904 le16_to_cpus(&dev->descriptor.idVendor);
905 le16_to_cpus(&dev->descriptor.idProduct);
906 le16_to_cpus(&dev->descriptor.bcdDevice);
wdenkaffae2b2002-08-17 09:36:01 +0000907 /* only support for one config for now */
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200908 usb_get_configuration_no(dev, &tmpbuf[0], 0);
909 usb_parse_config(dev, &tmpbuf[0], 0);
wdenkaffae2b2002-08-17 09:36:01 +0000910 usb_set_maxpacket(dev);
911 /* we set the default configuration here */
Tom Rix8f8bd562009-10-31 12:37:38 -0500912 if (usb_set_configuration(dev, dev->config.desc.bConfigurationValue)) {
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200913 printf("failed to set default configuration " \
914 "len %d, status %lX\n", dev->act_len, dev->status);
wdenkaffae2b2002-08-17 09:36:01 +0000915 return -1;
916 }
917 USB_PRINTF("new device strings: Mfr=%d, Product=%d, SerialNumber=%d\n",
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200918 dev->descriptor.iManufacturer, dev->descriptor.iProduct,
919 dev->descriptor.iSerialNumber);
wdenkaffae2b2002-08-17 09:36:01 +0000920 memset(dev->mf, 0, sizeof(dev->mf));
921 memset(dev->prod, 0, sizeof(dev->prod));
922 memset(dev->serial, 0, sizeof(dev->serial));
923 if (dev->descriptor.iManufacturer)
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200924 usb_string(dev, dev->descriptor.iManufacturer,
925 dev->mf, sizeof(dev->mf));
wdenkaffae2b2002-08-17 09:36:01 +0000926 if (dev->descriptor.iProduct)
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200927 usb_string(dev, dev->descriptor.iProduct,
928 dev->prod, sizeof(dev->prod));
wdenkaffae2b2002-08-17 09:36:01 +0000929 if (dev->descriptor.iSerialNumber)
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200930 usb_string(dev, dev->descriptor.iSerialNumber,
931 dev->serial, sizeof(dev->serial));
wdenkaffae2b2002-08-17 09:36:01 +0000932 USB_PRINTF("Manufacturer %s\n", dev->mf);
933 USB_PRINTF("Product %s\n", dev->prod);
934 USB_PRINTF("SerialNumber %s\n", dev->serial);
935 /* now prode if the device is a hub */
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200936 usb_hub_probe(dev, 0);
wdenkaffae2b2002-08-17 09:36:01 +0000937 return 0;
938}
939
940/* build device Tree */
941void usb_scan_devices(void)
942{
943 int i;
944 struct usb_device *dev;
945
946 /* first make all devices unknown */
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200947 for (i = 0; i < USB_MAX_DEVICE; i++) {
948 memset(&usb_dev[i], 0, sizeof(struct usb_device));
Wolfgang Denkd0ff51b2008-07-14 15:19:07 +0200949 usb_dev[i].devnum = -1;
wdenkaffae2b2002-08-17 09:36:01 +0000950 }
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200951 dev_index = 0;
wdenkaffae2b2002-08-17 09:36:01 +0000952 /* device 0 is always present (root hub, so let it analyze) */
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200953 dev = usb_alloc_new_device();
Bryan Wu1a448db2009-01-18 23:04:27 -0500954 if (usb_new_device(dev))
955 printf("No USB Device found\n");
956 else
957 printf("%d USB Device(s) found\n", dev_index);
wdenkaffae2b2002-08-17 09:36:01 +0000958 /* insert "driver" if possible */
959#ifdef CONFIG_USB_KEYBOARD
960 drv_usb_kbd_init();
wdenkaffae2b2002-08-17 09:36:01 +0000961#endif
Marek Vasut2a94dda2011-07-12 02:16:46 +0200962 USB_PRINTF("scan end\n");
wdenkaffae2b2002-08-17 09:36:01 +0000963}
964
965
966/****************************************************************************
967 * HUB "Driver"
968 * Probes device for being a hub and configurate it
969 */
970
wdenkaffae2b2002-08-17 09:36:01 +0000971#ifdef USB_HUB_DEBUG
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100972#define USB_HUB_PRINTF(fmt, args...) printf(fmt , ##args)
wdenkaffae2b2002-08-17 09:36:01 +0000973#else
Wolfgang Denkf092f152011-10-04 21:19:19 +0200974#define USB_HUB_PRINTF(fmt, args...)
wdenkaffae2b2002-08-17 09:36:01 +0000975#endif
976
977
978static struct usb_hub_device hub_dev[USB_MAX_HUB];
979static int usb_hub_index;
980
981
982int usb_get_hub_descriptor(struct usb_device *dev, void *data, int size)
983{
984 return usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
985 USB_REQ_GET_DESCRIPTOR, USB_DIR_IN | USB_RT_HUB,
986 USB_DT_HUB << 8, 0, data, size, USB_CNTL_TIMEOUT);
987}
988
989int usb_clear_hub_feature(struct usb_device *dev, int feature)
990{
991 return usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200992 USB_REQ_CLEAR_FEATURE, USB_RT_HUB, feature,
993 0, NULL, 0, USB_CNTL_TIMEOUT);
wdenkaffae2b2002-08-17 09:36:01 +0000994}
995
996int usb_clear_port_feature(struct usb_device *dev, int port, int feature)
997{
998 return usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200999 USB_REQ_CLEAR_FEATURE, USB_RT_PORT, feature,
1000 port, NULL, 0, USB_CNTL_TIMEOUT);
wdenkaffae2b2002-08-17 09:36:01 +00001001}
1002
1003int usb_set_port_feature(struct usb_device *dev, int port, int feature)
1004{
1005 return usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001006 USB_REQ_SET_FEATURE, USB_RT_PORT, feature,
1007 port, NULL, 0, USB_CNTL_TIMEOUT);
wdenkaffae2b2002-08-17 09:36:01 +00001008}
1009
1010int usb_get_hub_status(struct usb_device *dev, void *data)
1011{
1012 return usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
1013 USB_REQ_GET_STATUS, USB_DIR_IN | USB_RT_HUB, 0, 0,
1014 data, sizeof(struct usb_hub_status), USB_CNTL_TIMEOUT);
1015}
1016
1017int usb_get_port_status(struct usb_device *dev, int port, void *data)
1018{
1019 return usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
1020 USB_REQ_GET_STATUS, USB_DIR_IN | USB_RT_PORT, 0, port,
1021 data, sizeof(struct usb_hub_status), USB_CNTL_TIMEOUT);
1022}
1023
1024
1025static void usb_hub_power_on(struct usb_hub_device *hub)
1026{
1027 int i;
1028 struct usb_device *dev;
1029
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001030 dev = hub->pusb_dev;
wdenkaffae2b2002-08-17 09:36:01 +00001031 /* Enable power to the ports */
1032 USB_HUB_PRINTF("enabling power on all ports\n");
1033 for (i = 0; i < dev->maxchild; i++) {
1034 usb_set_port_feature(dev, i + 1, USB_PORT_FEAT_POWER);
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001035 USB_HUB_PRINTF("port %d returns %lX\n", i + 1, dev->status);
wdenkaffae2b2002-08-17 09:36:01 +00001036 wait_ms(hub->desc.bPwrOn2PwrGood * 2);
1037 }
1038}
1039
1040void usb_hub_reset(void)
1041{
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001042 usb_hub_index = 0;
wdenkaffae2b2002-08-17 09:36:01 +00001043}
1044
1045struct usb_hub_device *usb_hub_allocate(void)
1046{
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001047 if (usb_hub_index < USB_MAX_HUB)
wdenkaffae2b2002-08-17 09:36:01 +00001048 return &hub_dev[usb_hub_index++];
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001049
1050 printf("ERROR: USB_MAX_HUB (%d) reached\n", USB_MAX_HUB);
wdenkaffae2b2002-08-17 09:36:01 +00001051 return NULL;
1052}
1053
1054#define MAX_TRIES 5
1055
Stefan Roesef1c1f542009-01-22 10:11:21 +01001056static inline char *portspeed(int portstatus)
1057{
1058 if (portstatus & (1 << USB_PORT_FEAT_HIGHSPEED))
1059 return "480 Mb/s";
1060 else if (portstatus & (1 << USB_PORT_FEAT_LOWSPEED))
1061 return "1.5 Mb/s";
1062 else
1063 return "12 Mb/s";
1064}
1065
Wolfgang Denk9c998aa2005-07-21 11:57:57 +02001066static int hub_port_reset(struct usb_device *dev, int port,
1067 unsigned short *portstat)
1068{
1069 int tries;
1070 struct usb_port_status portsts;
1071 unsigned short portstatus, portchange;
1072
Wolfgang Denk9c998aa2005-07-21 11:57:57 +02001073 USB_HUB_PRINTF("hub_port_reset: resetting port %d...\n", port);
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001074 for (tries = 0; tries < MAX_TRIES; tries++) {
Wolfgang Denk9c998aa2005-07-21 11:57:57 +02001075
1076 usb_set_port_feature(dev, port + 1, USB_PORT_FEAT_RESET);
1077 wait_ms(200);
1078
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001079 if (usb_get_port_status(dev, port + 1, &portsts) < 0) {
1080 USB_HUB_PRINTF("get_port_status failed status %lX\n",
1081 dev->status);
Wolfgang Denk9c998aa2005-07-21 11:57:57 +02001082 return -1;
1083 }
Christian Eggersc9182612008-05-21 22:12:00 +02001084 portstatus = le16_to_cpu(portsts.wPortStatus);
1085 portchange = le16_to_cpu(portsts.wPortChange);
Michael Trimarchi366523c2008-12-18 10:05:37 +01001086
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001087 USB_HUB_PRINTF("portstatus %x, change %x, %s\n",
1088 portstatus, portchange,
Stefan Roesef1c1f542009-01-22 10:11:21 +01001089 portspeed(portstatus));
Michael Trimarchi366523c2008-12-18 10:05:37 +01001090
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001091 USB_HUB_PRINTF("STAT_C_CONNECTION = %d STAT_CONNECTION = %d" \
1092 " USB_PORT_STAT_ENABLE %d\n",
Wolfgang Denk9c998aa2005-07-21 11:57:57 +02001093 (portchange & USB_PORT_STAT_C_CONNECTION) ? 1 : 0,
1094 (portstatus & USB_PORT_STAT_CONNECTION) ? 1 : 0,
1095 (portstatus & USB_PORT_STAT_ENABLE) ? 1 : 0);
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001096
Wolfgang Denk9c998aa2005-07-21 11:57:57 +02001097 if ((portchange & USB_PORT_STAT_C_CONNECTION) ||
1098 !(portstatus & USB_PORT_STAT_CONNECTION))
1099 return -1;
1100
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001101 if (portstatus & USB_PORT_STAT_ENABLE)
Wolfgang Denk9c998aa2005-07-21 11:57:57 +02001102 break;
Wolfgang Denk9c998aa2005-07-21 11:57:57 +02001103
1104 wait_ms(200);
1105 }
1106
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001107 if (tries == MAX_TRIES) {
1108 USB_HUB_PRINTF("Cannot enable port %i after %i retries, " \
1109 "disabling port.\n", port + 1, MAX_TRIES);
Wolfgang Denk9c998aa2005-07-21 11:57:57 +02001110 USB_HUB_PRINTF("Maybe the USB cable is bad?\n");
1111 return -1;
1112 }
1113
1114 usb_clear_port_feature(dev, port + 1, USB_PORT_FEAT_C_RESET);
1115 *portstat = portstatus;
1116 return 0;
Wolfgang Denk9c998aa2005-07-21 11:57:57 +02001117}
1118
1119
wdenkaffae2b2002-08-17 09:36:01 +00001120void usb_hub_port_connect_change(struct usb_device *dev, int port)
1121{
1122 struct usb_device *usb;
1123 struct usb_port_status portsts;
Wolfgang Denkfad2e1b2011-10-05 23:11:19 +02001124 unsigned short portstatus;
wdenkaffae2b2002-08-17 09:36:01 +00001125
1126 /* Check status */
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001127 if (usb_get_port_status(dev, port + 1, &portsts) < 0) {
wdenkaffae2b2002-08-17 09:36:01 +00001128 USB_HUB_PRINTF("get_port_status failed\n");
1129 return;
1130 }
1131
Christian Eggersc9182612008-05-21 22:12:00 +02001132 portstatus = le16_to_cpu(portsts.wPortStatus);
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001133 USB_HUB_PRINTF("portstatus %x, change %x, %s\n",
Wolfgang Denkfad2e1b2011-10-05 23:11:19 +02001134 portstatus,
1135 le16_to_cpu(portsts.wPortChange),
1136 portspeed(portstatus));
wdenkaffae2b2002-08-17 09:36:01 +00001137
1138 /* Clear the connection change status */
1139 usb_clear_port_feature(dev, port + 1, USB_PORT_FEAT_C_CONNECTION);
1140
1141 /* Disconnect any existing devices under this port */
1142 if (((!(portstatus & USB_PORT_STAT_CONNECTION)) &&
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001143 (!(portstatus & USB_PORT_STAT_ENABLE))) || (dev->children[port])) {
wdenkaffae2b2002-08-17 09:36:01 +00001144 USB_HUB_PRINTF("usb_disconnect(&hub->children[port]);\n");
1145 /* Return now if nothing is connected */
1146 if (!(portstatus & USB_PORT_STAT_CONNECTION))
1147 return;
1148 }
1149 wait_ms(200);
1150
1151 /* Reset the port */
Wolfgang Denk9c998aa2005-07-21 11:57:57 +02001152 if (hub_port_reset(dev, port, &portstatus) < 0) {
1153 printf("cannot reset port %i!?\n", port + 1);
wdenkaffae2b2002-08-17 09:36:01 +00001154 return;
1155 }
1156
wdenkaffae2b2002-08-17 09:36:01 +00001157 wait_ms(200);
1158
1159 /* Allocate a new device struct for it */
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001160 usb = usb_alloc_new_device();
Michael Trimarchi366523c2008-12-18 10:05:37 +01001161
1162 if (portstatus & USB_PORT_STAT_HIGH_SPEED)
1163 usb->speed = USB_SPEED_HIGH;
1164 else if (portstatus & USB_PORT_STAT_LOW_SPEED)
1165 usb->speed = USB_SPEED_LOW;
1166 else
1167 usb->speed = USB_SPEED_FULL;
wdenkaffae2b2002-08-17 09:36:01 +00001168
1169 dev->children[port] = usb;
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001170 usb->parent = dev;
Marek Vasut01a97d42011-07-12 02:16:47 +02001171 usb->portnr = port + 1;
wdenkaffae2b2002-08-17 09:36:01 +00001172 /* Run it through the hoops (find a driver, etc) */
1173 if (usb_new_device(usb)) {
1174 /* Woops, disable the port */
1175 USB_HUB_PRINTF("hub: disabling port %d\n", port + 1);
1176 usb_clear_port_feature(dev, port + 1, USB_PORT_FEAT_ENABLE);
1177 }
1178}
1179
1180
1181int usb_hub_configure(struct usb_device *dev)
1182{
Wolfgang Denkfad2e1b2011-10-05 23:11:19 +02001183 int i;
wdenkcd0a9de2004-02-23 20:48:38 +00001184 unsigned char buffer[USB_BUFSIZ], *bitmap;
wdenkaffae2b2002-08-17 09:36:01 +00001185 struct usb_hub_descriptor *descriptor;
wdenkaffae2b2002-08-17 09:36:01 +00001186 struct usb_hub_device *hub;
Wolfgang Denkfad2e1b2011-10-05 23:11:19 +02001187#ifdef USB_HUB_DEBUG
1188 struct usb_hub_status *hubsts;
1189#endif
wdenkaffae2b2002-08-17 09:36:01 +00001190
1191 /* "allocate" Hub device */
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001192 hub = usb_hub_allocate();
1193 if (hub == NULL)
wdenkaffae2b2002-08-17 09:36:01 +00001194 return -1;
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001195 hub->pusb_dev = dev;
wdenkaffae2b2002-08-17 09:36:01 +00001196 /* Get the the hub descriptor */
1197 if (usb_get_hub_descriptor(dev, buffer, 4) < 0) {
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001198 USB_HUB_PRINTF("usb_hub_configure: failed to get hub " \
1199 "descriptor, giving up %lX\n", dev->status);
wdenkaffae2b2002-08-17 09:36:01 +00001200 return -1;
1201 }
1202 descriptor = (struct usb_hub_descriptor *)buffer;
wdenkcd0a9de2004-02-23 20:48:38 +00001203
wdenke86e5a02004-10-17 21:12:06 +00001204 /* silence compiler warning if USB_BUFSIZ is > 256 [= sizeof(char)] */
1205 i = descriptor->bLength;
1206 if (i > USB_BUFSIZ) {
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001207 USB_HUB_PRINTF("usb_hub_configure: failed to get hub " \
1208 "descriptor - too long: %d\n",
1209 descriptor->bLength);
wdenkcd0a9de2004-02-23 20:48:38 +00001210 return -1;
1211 }
1212
wdenkaffae2b2002-08-17 09:36:01 +00001213 if (usb_get_hub_descriptor(dev, buffer, descriptor->bLength) < 0) {
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001214 USB_HUB_PRINTF("usb_hub_configure: failed to get hub " \
1215 "descriptor 2nd giving up %lX\n", dev->status);
wdenkaffae2b2002-08-17 09:36:01 +00001216 return -1;
1217 }
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001218 memcpy((unsigned char *)&hub->desc, buffer, descriptor->bLength);
wdenkaffae2b2002-08-17 09:36:01 +00001219 /* adjust 16bit values */
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001220 hub->desc.wHubCharacteristics =
1221 le16_to_cpu(descriptor->wHubCharacteristics);
wdenkaffae2b2002-08-17 09:36:01 +00001222 /* set the bitmap */
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001223 bitmap = (unsigned char *)&hub->desc.DeviceRemovable[0];
1224 /* devices not removable by default */
1225 memset(bitmap, 0xff, (USB_MAXCHILDREN+1+7)/8);
1226 bitmap = (unsigned char *)&hub->desc.PortPowerCtrlMask[0];
1227 memset(bitmap, 0xff, (USB_MAXCHILDREN+1+7)/8); /* PowerMask = 1B */
1228
1229 for (i = 0; i < ((hub->desc.bNbrPorts + 1 + 7)/8); i++)
1230 hub->desc.DeviceRemovable[i] = descriptor->DeviceRemovable[i];
1231
1232 for (i = 0; i < ((hub->desc.bNbrPorts + 1 + 7)/8); i++)
Alexander Hollercb440912011-01-27 22:50:07 +01001233 hub->desc.PortPowerCtrlMask[i] = descriptor->PortPowerCtrlMask[i];
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001234
wdenkaffae2b2002-08-17 09:36:01 +00001235 dev->maxchild = descriptor->bNbrPorts;
1236 USB_HUB_PRINTF("%d ports detected\n", dev->maxchild);
1237
1238 switch (hub->desc.wHubCharacteristics & HUB_CHAR_LPSM) {
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001239 case 0x00:
1240 USB_HUB_PRINTF("ganged power switching\n");
1241 break;
1242 case 0x01:
1243 USB_HUB_PRINTF("individual port power switching\n");
1244 break;
1245 case 0x02:
1246 case 0x03:
1247 USB_HUB_PRINTF("unknown reserved power switching mode\n");
1248 break;
wdenkaffae2b2002-08-17 09:36:01 +00001249 }
1250
1251 if (hub->desc.wHubCharacteristics & HUB_CHAR_COMPOUND)
1252 USB_HUB_PRINTF("part of a compound device\n");
1253 else
1254 USB_HUB_PRINTF("standalone hub\n");
1255
1256 switch (hub->desc.wHubCharacteristics & HUB_CHAR_OCPM) {
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001257 case 0x00:
1258 USB_HUB_PRINTF("global over-current protection\n");
1259 break;
1260 case 0x08:
1261 USB_HUB_PRINTF("individual port over-current protection\n");
1262 break;
1263 case 0x10:
1264 case 0x18:
1265 USB_HUB_PRINTF("no over-current protection\n");
1266 break;
wdenkaffae2b2002-08-17 09:36:01 +00001267 }
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001268
1269 USB_HUB_PRINTF("power on to power good time: %dms\n",
1270 descriptor->bPwrOn2PwrGood * 2);
1271 USB_HUB_PRINTF("hub controller current requirement: %dmA\n",
1272 descriptor->bHubContrCurrent);
1273
wdenkaffae2b2002-08-17 09:36:01 +00001274 for (i = 0; i < dev->maxchild; i++)
1275 USB_HUB_PRINTF("port %d is%s removable\n", i + 1,
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001276 hub->desc.DeviceRemovable[(i + 1) / 8] & \
1277 (1 << ((i + 1) % 8)) ? " not" : "");
1278
wdenkcd0a9de2004-02-23 20:48:38 +00001279 if (sizeof(struct usb_hub_status) > USB_BUFSIZ) {
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001280 USB_HUB_PRINTF("usb_hub_configure: failed to get Status - " \
1281 "too long: %d\n", descriptor->bLength);
wdenkcd0a9de2004-02-23 20:48:38 +00001282 return -1;
1283 }
1284
wdenkaffae2b2002-08-17 09:36:01 +00001285 if (usb_get_hub_status(dev, buffer) < 0) {
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001286 USB_HUB_PRINTF("usb_hub_configure: failed to get Status %lX\n",
1287 dev->status);
wdenkaffae2b2002-08-17 09:36:01 +00001288 return -1;
1289 }
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001290
Wolfgang Denkfad2e1b2011-10-05 23:11:19 +02001291#ifdef USB_HUB_DEBUG
wdenkaffae2b2002-08-17 09:36:01 +00001292 hubsts = (struct usb_hub_status *)buffer;
Wolfgang Denkfad2e1b2011-10-05 23:11:19 +02001293#endif
wdenkaffae2b2002-08-17 09:36:01 +00001294 USB_HUB_PRINTF("get_hub_status returned status %X, change %X\n",
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001295 le16_to_cpu(hubsts->wHubStatus),
1296 le16_to_cpu(hubsts->wHubChange));
wdenkaffae2b2002-08-17 09:36:01 +00001297 USB_HUB_PRINTF("local power source is %s\n",
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001298 (le16_to_cpu(hubsts->wHubStatus) & HUB_STATUS_LOCAL_POWER) ? \
1299 "lost (inactive)" : "good");
wdenkaffae2b2002-08-17 09:36:01 +00001300 USB_HUB_PRINTF("%sover-current condition exists\n",
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001301 (le16_to_cpu(hubsts->wHubStatus) & HUB_STATUS_OVERCURRENT) ? \
1302 "" : "no ");
wdenkaffae2b2002-08-17 09:36:01 +00001303 usb_hub_power_on(hub);
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001304
wdenkaffae2b2002-08-17 09:36:01 +00001305 for (i = 0; i < dev->maxchild; i++) {
1306 struct usb_port_status portsts;
1307 unsigned short portstatus, portchange;
1308
1309 if (usb_get_port_status(dev, i + 1, &portsts) < 0) {
1310 USB_HUB_PRINTF("get_port_status failed\n");
1311 continue;
1312 }
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001313
Christian Eggersc9182612008-05-21 22:12:00 +02001314 portstatus = le16_to_cpu(portsts.wPortStatus);
1315 portchange = le16_to_cpu(portsts.wPortChange);
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001316 USB_HUB_PRINTF("Port %d Status %X Change %X\n",
1317 i + 1, portstatus, portchange);
1318
wdenkaffae2b2002-08-17 09:36:01 +00001319 if (portchange & USB_PORT_STAT_C_CONNECTION) {
1320 USB_HUB_PRINTF("port %d connection change\n", i + 1);
1321 usb_hub_port_connect_change(dev, i);
1322 }
1323 if (portchange & USB_PORT_STAT_C_ENABLE) {
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001324 USB_HUB_PRINTF("port %d enable change, status %x\n",
1325 i + 1, portstatus);
1326 usb_clear_port_feature(dev, i + 1,
1327 USB_PORT_FEAT_C_ENABLE);
wdenkaffae2b2002-08-17 09:36:01 +00001328
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001329 /* EM interference sometimes causes bad shielded USB
1330 * devices to be shutdown by the hub, this hack enables
1331 * them again. Works at least with mouse driver */
wdenkaffae2b2002-08-17 09:36:01 +00001332 if (!(portstatus & USB_PORT_STAT_ENABLE) &&
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001333 (portstatus & USB_PORT_STAT_CONNECTION) &&
1334 ((dev->children[i]))) {
1335 USB_HUB_PRINTF("already running port %i " \
1336 "disabled by hub (EMI?), " \
1337 "re-enabling...\n", i + 1);
wdenkaffae2b2002-08-17 09:36:01 +00001338 usb_hub_port_connect_change(dev, i);
1339 }
1340 }
1341 if (portstatus & USB_PORT_STAT_SUSPEND) {
1342 USB_HUB_PRINTF("port %d suspend change\n", i + 1);
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001343 usb_clear_port_feature(dev, i + 1,
1344 USB_PORT_FEAT_SUSPEND);
wdenkaffae2b2002-08-17 09:36:01 +00001345 }
1346
1347 if (portchange & USB_PORT_STAT_C_OVERCURRENT) {
1348 USB_HUB_PRINTF("port %d over-current change\n", i + 1);
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001349 usb_clear_port_feature(dev, i + 1,
1350 USB_PORT_FEAT_C_OVER_CURRENT);
wdenkaffae2b2002-08-17 09:36:01 +00001351 usb_hub_power_on(hub);
1352 }
1353
1354 if (portchange & USB_PORT_STAT_C_RESET) {
1355 USB_HUB_PRINTF("port %d reset change\n", i + 1);
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001356 usb_clear_port_feature(dev, i + 1,
1357 USB_PORT_FEAT_C_RESET);
wdenkaffae2b2002-08-17 09:36:01 +00001358 }
1359 } /* end for i all ports */
1360
1361 return 0;
1362}
1363
1364int usb_hub_probe(struct usb_device *dev, int ifnum)
1365{
Tom Rix8f8bd562009-10-31 12:37:38 -05001366 struct usb_interface *iface;
wdenkaffae2b2002-08-17 09:36:01 +00001367 struct usb_endpoint_descriptor *ep;
1368 int ret;
1369
1370 iface = &dev->config.if_desc[ifnum];
1371 /* Is it a hub? */
Tom Rix8f8bd562009-10-31 12:37:38 -05001372 if (iface->desc.bInterfaceClass != USB_CLASS_HUB)
wdenkaffae2b2002-08-17 09:36:01 +00001373 return 0;
1374 /* Some hubs have a subclass of 1, which AFAICT according to the */
1375 /* specs is not defined, but it works */
Tom Rix8f8bd562009-10-31 12:37:38 -05001376 if ((iface->desc.bInterfaceSubClass != 0) &&
1377 (iface->desc.bInterfaceSubClass != 1))
wdenkaffae2b2002-08-17 09:36:01 +00001378 return 0;
1379 /* Multiple endpoints? What kind of mutant ninja-hub is this? */
Tom Rix8f8bd562009-10-31 12:37:38 -05001380 if (iface->desc.bNumEndpoints != 1)
wdenkaffae2b2002-08-17 09:36:01 +00001381 return 0;
1382 ep = &iface->ep_desc[0];
1383 /* Output endpoint? Curiousier and curiousier.. */
1384 if (!(ep->bEndpointAddress & USB_DIR_IN))
1385 return 0;
1386 /* If it's not an interrupt endpoint, we'd better punt! */
1387 if ((ep->bmAttributes & 3) != 3)
1388 return 0;
1389 /* We found a hub */
1390 USB_HUB_PRINTF("USB hub found\n");
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001391 ret = usb_hub_configure(dev);
wdenkaffae2b2002-08-17 09:36:01 +00001392 return ret;
1393}
1394
wdenkaffae2b2002-08-17 09:36:01 +00001395/* EOF */