blob: 7ab5df670bf6bce0acf1884a8d9e438cbee2fdf4 [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
Wolfgang Denk095b8a32005-08-02 17:06:17 +020058#undef USB_DEBUG
wdenkaffae2b2002-08-17 09:36:01 +000059
60#ifdef USB_DEBUG
Remy Bohmer6f5794a2008-09-16 14:55:43 +020061#define USB_PRINTF(fmt, args...) printf (fmt , ##args)
wdenkaffae2b2002-08-17 09:36:01 +000062#else
Remy Bohmer6f5794a2008-09-16 14:55:43 +020063#define USB_PRINTF(fmt, args...)
wdenkaffae2b2002-08-17 09:36:01 +000064#endif
65
wdenkcd0a9de2004-02-23 20:48:38 +000066#define USB_BUFSIZ 512
67
wdenkaffae2b2002-08-17 09:36:01 +000068static struct usb_device usb_dev[USB_MAX_DEVICE];
69static int dev_index;
70static int running;
71static int asynch_allowed;
72static struct devrequest setup_packet;
73
Bartlomiej Siekae51aae32006-08-03 23:20:13 +020074char usb_started; /* flag for the started/stopped USB status */
75
wdenkaffae2b2002-08-17 09:36:01 +000076/**********************************************************************
77 * some forward declerations...
78 */
79void usb_scan_devices(void);
80
81int usb_hub_probe(struct usb_device *dev, int ifnum);
82void usb_hub_reset(void);
Remy Bohmerc9e84362008-09-16 14:55:44 +020083static int hub_port_reset(struct usb_device *dev, int port,
84 unsigned short *portstat);
Wolfgang Denk9c998aa2005-07-21 11:57:57 +020085
wdenkaffae2b2002-08-17 09:36:01 +000086/***********************************************************************
87 * wait_ms
88 */
89
90void __inline__ wait_ms(unsigned long ms)
91{
Remy Bohmer6f5794a2008-09-16 14:55:43 +020092 while (ms-- > 0)
wdenkaffae2b2002-08-17 09:36:01 +000093 udelay(1000);
94}
95/***************************************************************************
96 * Init USB Device
97 */
98
99int usb_init(void)
100{
101 int result;
102
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200103 running = 0;
104 dev_index = 0;
105 asynch_allowed = 1;
wdenkaffae2b2002-08-17 09:36:01 +0000106 usb_hub_reset();
107 /* init low_level USB */
108 printf("USB: ");
109 result = usb_lowlevel_init();
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200110 /* if lowlevel init is OK, scan the bus for devices
111 * i.e. search HUBs and configure them */
112 if (result == 0) {
wdenkaffae2b2002-08-17 09:36:01 +0000113 printf("scanning bus for devices... ");
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200114 running = 1;
wdenkaffae2b2002-08-17 09:36:01 +0000115 usb_scan_devices();
Bartlomiej Siekae51aae32006-08-03 23:20:13 +0200116 usb_started = 1;
wdenkaffae2b2002-08-17 09:36:01 +0000117 return 0;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200118 } else {
wdenkaffae2b2002-08-17 09:36:01 +0000119 printf("Error, couldn't init Lowlevel part\n");
Bartlomiej Siekae51aae32006-08-03 23:20:13 +0200120 usb_started = 0;
wdenkaffae2b2002-08-17 09:36:01 +0000121 return -1;
122 }
123}
124
125/******************************************************************************
126 * Stop USB this stops the LowLevel Part and deregisters USB devices.
127 */
128int usb_stop(void)
129{
Remy Bohmereba1f2f2008-08-20 11:22:02 +0200130 int res = 0;
131
132 if (usb_started) {
133 asynch_allowed = 1;
134 usb_started = 0;
135 usb_hub_reset();
136 res = usb_lowlevel_stop();
137 }
138 return res;
wdenkaffae2b2002-08-17 09:36:01 +0000139}
140
141/*
142 * disables the asynch behaviour of the control message. This is used for data
143 * transfers that uses the exclusiv access to the control and bulk messages.
144 */
145void usb_disable_asynch(int disable)
146{
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200147 asynch_allowed = !disable;
wdenkaffae2b2002-08-17 09:36:01 +0000148}
149
150
151/*-------------------------------------------------------------------
152 * Message wrappers.
153 *
154 */
155
156/*
157 * submits an Interrupt Message
158 */
159int usb_submit_int_msg(struct usb_device *dev, unsigned long pipe,
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200160 void *buffer, int transfer_len, int interval)
wdenkaffae2b2002-08-17 09:36:01 +0000161{
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200162 return submit_int_msg(dev, pipe, buffer, transfer_len, interval);
wdenkaffae2b2002-08-17 09:36:01 +0000163}
164
165/*
166 * submits a control message and waits for comletion (at least timeout * 1ms)
167 * If timeout is 0, we don't wait for completion (used as example to set and
168 * clear keyboards LEDs). For data transfers, (storage transfers) we don't
169 * allow control messages with 0 timeout, by previousely resetting the flag
170 * asynch_allowed (usb_disable_asynch(1)).
171 * returns the transfered length if OK or -1 if error. The transfered length
172 * and the current status are stored in the dev->act_len and dev->status.
173 */
174int usb_control_msg(struct usb_device *dev, unsigned int pipe,
175 unsigned char request, unsigned char requesttype,
176 unsigned short value, unsigned short index,
177 void *data, unsigned short size, int timeout)
178{
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200179 if ((timeout == 0) && (!asynch_allowed)) {
180 /* request for a asynch control pipe is not allowed */
wdenkaffae2b2002-08-17 09:36:01 +0000181 return -1;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200182 }
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200183
wdenkaffae2b2002-08-17 09:36:01 +0000184 /* set setup command */
185 setup_packet.requesttype = requesttype;
186 setup_packet.request = request;
Christian Eggersc9182612008-05-21 22:12:00 +0200187 setup_packet.value = cpu_to_le16(value);
188 setup_packet.index = cpu_to_le16(index);
189 setup_packet.length = cpu_to_le16(size);
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200190 USB_PRINTF("usb_control_msg: request: 0x%X, requesttype: 0x%X, " \
191 "value 0x%X index 0x%X length 0x%X\n",
192 request, requesttype, value, index, size);
193 dev->status = USB_ST_NOT_PROC; /*not yet processed */
wdenkaffae2b2002-08-17 09:36:01 +0000194
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200195 submit_control_msg(dev, pipe, data, size, &setup_packet);
196 if (timeout == 0)
wdenkaffae2b2002-08-17 09:36:01 +0000197 return (int)size;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200198
Remy Bohmer48867202008-10-10 10:23:21 +0200199 if (dev->status != 0) {
200 /*
201 * Let's wait a while for the timeout to elapse.
202 * It has no real use, but it keeps the interface happy.
203 */
204 wait_ms(timeout);
wdenkaffae2b2002-08-17 09:36:01 +0000205 return -1;
Remy Bohmer48867202008-10-10 10:23:21 +0200206 }
207
208 return dev->act_len;
wdenkaffae2b2002-08-17 09:36:01 +0000209}
210
211/*-------------------------------------------------------------------
212 * submits bulk message, and waits for completion. returns 0 if Ok or
213 * -1 if Error.
214 * synchronous behavior
215 */
216int usb_bulk_msg(struct usb_device *dev, unsigned int pipe,
217 void *data, int len, int *actual_length, int timeout)
218{
219 if (len < 0)
220 return -1;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200221 dev->status = USB_ST_NOT_PROC; /*not yet processed */
222 submit_bulk_msg(dev, pipe, data, len);
223 while (timeout--) {
224 if (!((volatile unsigned long)dev->status & USB_ST_NOT_PROC))
wdenkaffae2b2002-08-17 09:36:01 +0000225 break;
226 wait_ms(1);
227 }
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200228 *actual_length = dev->act_len;
229 if (dev->status == 0)
wdenkaffae2b2002-08-17 09:36:01 +0000230 return 0;
231 else
232 return -1;
233}
234
235
236/*-------------------------------------------------------------------
237 * Max Packet stuff
238 */
239
240/*
241 * returns the max packet size, depending on the pipe direction and
242 * the configurations values
243 */
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200244int usb_maxpacket(struct usb_device *dev, unsigned long pipe)
wdenkaffae2b2002-08-17 09:36:01 +0000245{
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200246 /* direction is out -> use emaxpacket out */
247 if ((pipe & USB_DIR_IN) == 0)
wdenkaffae2b2002-08-17 09:36:01 +0000248 return(dev->epmaxpacketout[((pipe>>15) & 0xf)]);
249 else
250 return(dev->epmaxpacketin[((pipe>>15) & 0xf)]);
251}
252
Remy Bohmerbe19d322008-09-16 14:55:42 +0200253/* The routine usb_set_maxpacket_ep() is extracted from the loop of routine
254 * usb_set_maxpacket(), because the optimizer of GCC 4.x chokes on this routine
255 * when it is inlined in 1 single routine. What happens is that the register r3
256 * is used as loop-count 'i', but gets overwritten later on.
257 * This is clearly a compiler bug, but it is easier to workaround it here than
258 * to update the compiler (Occurs with at least several GCC 4.{1,2},x
259 * CodeSourcery compilers like e.g. 2007q3, 2008q1, 2008q3 lite editions on ARM)
260 */
261static void __attribute__((noinline))
262usb_set_maxpacket_ep(struct usb_device *dev, struct usb_endpoint_descriptor *ep)
263{
264 int b;
265
266 b = ep->bEndpointAddress & USB_ENDPOINT_NUMBER_MASK;
267
268 if ((ep->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) ==
269 USB_ENDPOINT_XFER_CONTROL) {
270 /* Control => bidirectional */
271 dev->epmaxpacketout[b] = ep->wMaxPacketSize;
272 dev->epmaxpacketin [b] = ep->wMaxPacketSize;
273 USB_PRINTF("##Control EP epmaxpacketout/in[%d] = %d\n",
274 b, dev->epmaxpacketin[b]);
275 } else {
276 if ((ep->bEndpointAddress & 0x80) == 0) {
277 /* OUT Endpoint */
278 if (ep->wMaxPacketSize > dev->epmaxpacketout[b]) {
279 dev->epmaxpacketout[b] = ep->wMaxPacketSize;
280 USB_PRINTF("##EP epmaxpacketout[%d] = %d\n",
281 b, dev->epmaxpacketout[b]);
282 }
283 } else {
284 /* IN Endpoint */
285 if (ep->wMaxPacketSize > dev->epmaxpacketin[b]) {
286 dev->epmaxpacketin[b] = ep->wMaxPacketSize;
287 USB_PRINTF("##EP epmaxpacketin[%d] = %d\n",
288 b, dev->epmaxpacketin[b]);
289 }
290 } /* if out */
291 } /* if control */
292}
293
wdenkaffae2b2002-08-17 09:36:01 +0000294/*
295 * set the max packed value of all endpoints in the given configuration
296 */
297int usb_set_maxpacket(struct usb_device *dev)
298{
Remy Bohmerbe19d322008-09-16 14:55:42 +0200299 int i, ii;
wdenkaffae2b2002-08-17 09:36:01 +0000300
Remy Bohmerbe19d322008-09-16 14:55:42 +0200301 for (i = 0; i < dev->config.bNumInterfaces; i++)
302 for (ii = 0; ii < dev->config.if_desc[i].bNumEndpoints; ii++)
303 usb_set_maxpacket_ep(dev,
304 &dev->config.if_desc[i].ep_desc[ii]);
wdenkaffae2b2002-08-17 09:36:01 +0000305
wdenkaffae2b2002-08-17 09:36:01 +0000306 return 0;
307}
308
309/*******************************************************************************
310 * Parse the config, located in buffer, and fills the dev->config structure.
311 * Note that all little/big endian swapping are done automatically.
312 */
313int usb_parse_config(struct usb_device *dev, unsigned char *buffer, int cfgno)
314{
315 struct usb_descriptor_header *head;
Bartlomiej Sieka7455af42006-08-02 00:54:18 +0200316 int index, ifno, epno, curr_if_num;
317 int i;
318 unsigned char *ch;
wdenkaffae2b2002-08-17 09:36:01 +0000319
Bartlomiej Sieka7455af42006-08-02 00:54:18 +0200320 ifno = -1;
321 epno = -1;
322 curr_if_num = -1;
323
324 dev->configno = cfgno;
325 head = (struct usb_descriptor_header *) &buffer[0];
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200326 if (head->bDescriptorType != USB_DT_CONFIG) {
327 printf(" ERROR: NOT USB_CONFIG_DESC %x\n",
328 head->bDescriptorType);
wdenkaffae2b2002-08-17 09:36:01 +0000329 return -1;
330 }
Bartlomiej Sieka7455af42006-08-02 00:54:18 +0200331 memcpy(&dev->config, buffer, buffer[0]);
Christian Eggersc9182612008-05-21 22:12:00 +0200332 le16_to_cpus(&(dev->config.wTotalLength));
Bartlomiej Sieka7455af42006-08-02 00:54:18 +0200333 dev->config.no_of_if = 0;
wdenkaffae2b2002-08-17 09:36:01 +0000334
Bartlomiej Sieka7455af42006-08-02 00:54:18 +0200335 index = dev->config.bLength;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200336 /* Ok the first entry must be a configuration entry,
337 * now process the others */
Bartlomiej Sieka7455af42006-08-02 00:54:18 +0200338 head = (struct usb_descriptor_header *) &buffer[index];
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200339 while (index + 1 < dev->config.wTotalLength) {
340 switch (head->bDescriptorType) {
341 case USB_DT_INTERFACE:
342 if (((struct usb_interface_descriptor *) \
343 &buffer[index])->bInterfaceNumber != curr_if_num) {
344 /* this is a new interface, copy new desc */
345 ifno = dev->config.no_of_if;
346 dev->config.no_of_if++;
347 memcpy(&dev->config.if_desc[ifno],
Bartlomiej Sieka7455af42006-08-02 00:54:18 +0200348 &buffer[index], buffer[index]);
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200349 dev->config.if_desc[ifno].no_of_ep = 0;
350 dev->config.if_desc[ifno].num_altsetting = 1;
351 curr_if_num =
352 dev->config.if_desc[ifno].bInterfaceNumber;
353 } else {
354 /* found alternate setting for the interface */
355 dev->config.if_desc[ifno].num_altsetting++;
356 }
357 break;
358 case USB_DT_ENDPOINT:
359 epno = dev->config.if_desc[ifno].no_of_ep;
360 /* found an endpoint */
361 dev->config.if_desc[ifno].no_of_ep++;
362 memcpy(&dev->config.if_desc[ifno].ep_desc[epno],
363 &buffer[index], buffer[index]);
364 le16_to_cpus(&(dev->config.if_desc[ifno].ep_desc[epno].\
365 wMaxPacketSize));
366 USB_PRINTF("if %d, ep %d\n", ifno, epno);
367 break;
368 default:
369 if (head->bLength == 0)
370 return 1;
371
372 USB_PRINTF("unknown Description Type : %x\n",
373 head->bDescriptorType);
374
375 {
376 ch = (unsigned char *)head;
377 for (i = 0; i < head->bLength; i++)
378 USB_PRINTF("%02X ", *ch++);
379 USB_PRINTF("\n\n\n");
380 }
381 break;
wdenkaffae2b2002-08-17 09:36:01 +0000382 }
Bartlomiej Sieka7455af42006-08-02 00:54:18 +0200383 index += head->bLength;
384 head = (struct usb_descriptor_header *)&buffer[index];
wdenkaffae2b2002-08-17 09:36:01 +0000385 }
386 return 1;
387}
388
389/***********************************************************************
390 * Clears an endpoint
391 * endp: endpoint number in bits 0-3;
392 * direction flag in bit 7 (1 = IN, 0 = OUT)
393 */
394int usb_clear_halt(struct usb_device *dev, int pipe)
395{
396 int result;
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200397 int endp = usb_pipeendpoint(pipe)|(usb_pipein(pipe)<<7);
wdenkaffae2b2002-08-17 09:36:01 +0000398
399 result = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200400 USB_REQ_CLEAR_FEATURE, USB_RECIP_ENDPOINT, 0,
401 endp, NULL, 0, USB_CNTL_TIMEOUT * 3);
wdenkaffae2b2002-08-17 09:36:01 +0000402
403 /* don't clear if failed */
404 if (result < 0)
405 return result;
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200406
Wolfgang Denk095b8a32005-08-02 17:06:17 +0200407 /*
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200408 * NOTE: we do not get status and verify reset was successful
409 * as some devices are reported to lock up upon this check..
410 */
411
wdenkaffae2b2002-08-17 09:36:01 +0000412 usb_endpoint_running(dev, usb_pipeendpoint(pipe), usb_pipeout(pipe));
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200413
wdenkaffae2b2002-08-17 09:36:01 +0000414 /* toggle is reset on clear */
415 usb_settoggle(dev, usb_pipeendpoint(pipe), usb_pipeout(pipe), 0);
416 return 0;
417}
418
419
420/**********************************************************************
421 * get_descriptor type
422 */
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200423int usb_get_descriptor(struct usb_device *dev, unsigned char type,
424 unsigned char index, void *buf, int size)
wdenkaffae2b2002-08-17 09:36:01 +0000425{
426 int res;
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200427 res = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
wdenkaffae2b2002-08-17 09:36:01 +0000428 USB_REQ_GET_DESCRIPTOR, USB_DIR_IN,
429 (type << 8) + index, 0,
430 buf, size, USB_CNTL_TIMEOUT);
431 return res;
432}
433
434/**********************************************************************
435 * gets configuration cfgno and store it in the buffer
436 */
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200437int usb_get_configuration_no(struct usb_device *dev,
438 unsigned char *buffer, int cfgno)
wdenkaffae2b2002-08-17 09:36:01 +0000439{
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200440 int result;
wdenkaffae2b2002-08-17 09:36:01 +0000441 unsigned int tmp;
442 struct usb_config_descriptor *config;
443
444
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200445 config = (struct usb_config_descriptor *)&buffer[0];
Remy Bohmer48867202008-10-10 10:23:21 +0200446 result = usb_get_descriptor(dev, USB_DT_CONFIG, cfgno, buffer, 9);
447 if (result < 9) {
wdenkaffae2b2002-08-17 09:36:01 +0000448 if (result < 0)
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200449 printf("unable to get descriptor, error %lX\n",
450 dev->status);
wdenkaffae2b2002-08-17 09:36:01 +0000451 else
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200452 printf("config descriptor too short " \
Remy Bohmer48867202008-10-10 10:23:21 +0200453 "(expected %i, got %i)\n", 9, result);
wdenkaffae2b2002-08-17 09:36:01 +0000454 return -1;
455 }
Christian Eggersc9182612008-05-21 22:12:00 +0200456 tmp = le16_to_cpu(config->wTotalLength);
wdenkaffae2b2002-08-17 09:36:01 +0000457
wdenkcd0a9de2004-02-23 20:48:38 +0000458 if (tmp > USB_BUFSIZ) {
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200459 USB_PRINTF("usb_get_configuration_no: failed to get " \
460 "descriptor - too long: %d\n", tmp);
wdenkcd0a9de2004-02-23 20:48:38 +0000461 return -1;
462 }
463
wdenkaffae2b2002-08-17 09:36:01 +0000464 result = usb_get_descriptor(dev, USB_DT_CONFIG, cfgno, buffer, tmp);
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200465 USB_PRINTF("get_conf_no %d Result %d, wLength %d\n",
466 cfgno, result, tmp);
wdenkaffae2b2002-08-17 09:36:01 +0000467 return result;
468}
469
470/********************************************************************
471 * set address of a device to the value in dev->devnum.
472 * This can only be done by addressing the device via the default address (0)
473 */
474int usb_set_address(struct usb_device *dev)
475{
476 int res;
477
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200478 USB_PRINTF("set address %d\n", dev->devnum);
479 res = usb_control_msg(dev, usb_snddefctrl(dev),
480 USB_REQ_SET_ADDRESS, 0,
481 (dev->devnum), 0,
482 NULL, 0, USB_CNTL_TIMEOUT);
wdenkaffae2b2002-08-17 09:36:01 +0000483 return res;
484}
485
486/********************************************************************
487 * set interface number to interface
488 */
489int usb_set_interface(struct usb_device *dev, int interface, int alternate)
490{
491 struct usb_interface_descriptor *if_face = NULL;
492 int ret, i;
493
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200494 for (i = 0; i < dev->config.bNumInterfaces; i++) {
wdenkaffae2b2002-08-17 09:36:01 +0000495 if (dev->config.if_desc[i].bInterfaceNumber == interface) {
496 if_face = &dev->config.if_desc[i];
497 break;
498 }
499 }
500 if (!if_face) {
501 printf("selecting invalid interface %d", interface);
502 return -1;
503 }
Bartlomiej Sieka7455af42006-08-02 00:54:18 +0200504 /*
505 * We should return now for devices with only one alternate setting.
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200506 * According to 9.4.10 of the Universal Serial Bus Specification
507 * Revision 2.0 such devices can return with a STALL. This results in
508 * some USB sticks timeouting during initialization and then being
509 * unusable in U-Boot.
Bartlomiej Sieka7455af42006-08-02 00:54:18 +0200510 */
511 if (if_face->num_altsetting == 1)
512 return 0;
wdenkaffae2b2002-08-17 09:36:01 +0000513
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200514 ret = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
515 USB_REQ_SET_INTERFACE, USB_RECIP_INTERFACE,
516 alternate, interface, NULL, 0,
517 USB_CNTL_TIMEOUT * 5);
518 if (ret < 0)
wdenkaffae2b2002-08-17 09:36:01 +0000519 return ret;
520
wdenkaffae2b2002-08-17 09:36:01 +0000521 return 0;
522}
523
524/********************************************************************
525 * set configuration number to configuration
526 */
527int usb_set_configuration(struct usb_device *dev, int configuration)
528{
529 int res;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200530 USB_PRINTF("set configuration %d\n", configuration);
wdenkaffae2b2002-08-17 09:36:01 +0000531 /* set setup command */
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200532 res = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
533 USB_REQ_SET_CONFIGURATION, 0,
534 configuration, 0,
535 NULL, 0, USB_CNTL_TIMEOUT);
536 if (res == 0) {
wdenkaffae2b2002-08-17 09:36:01 +0000537 dev->toggle[0] = 0;
538 dev->toggle[1] = 0;
539 return 0;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200540 } else
wdenkaffae2b2002-08-17 09:36:01 +0000541 return -1;
542}
543
544/********************************************************************
545 * set protocol to protocol
546 */
547int usb_set_protocol(struct usb_device *dev, int ifnum, int protocol)
548{
549 return usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
550 USB_REQ_SET_PROTOCOL, USB_TYPE_CLASS | USB_RECIP_INTERFACE,
551 protocol, ifnum, NULL, 0, USB_CNTL_TIMEOUT);
552}
553
554/********************************************************************
555 * set idle
556 */
557int usb_set_idle(struct usb_device *dev, int ifnum, int duration, int report_id)
558{
559 return usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
560 USB_REQ_SET_IDLE, USB_TYPE_CLASS | USB_RECIP_INTERFACE,
561 (duration << 8) | report_id, ifnum, NULL, 0, USB_CNTL_TIMEOUT);
562}
563
564/********************************************************************
565 * get report
566 */
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200567int usb_get_report(struct usb_device *dev, int ifnum, unsigned char type,
568 unsigned char id, void *buf, int size)
wdenkaffae2b2002-08-17 09:36:01 +0000569{
570 return usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200571 USB_REQ_GET_REPORT,
572 USB_DIR_IN | USB_TYPE_CLASS | USB_RECIP_INTERFACE,
573 (type << 8) + id, ifnum, buf, size, USB_CNTL_TIMEOUT);
wdenkaffae2b2002-08-17 09:36:01 +0000574}
575
576/********************************************************************
577 * get class descriptor
578 */
579int usb_get_class_descriptor(struct usb_device *dev, int ifnum,
580 unsigned char type, unsigned char id, void *buf, int size)
581{
582 return usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
583 USB_REQ_GET_DESCRIPTOR, USB_RECIP_INTERFACE | USB_DIR_IN,
584 (type << 8) + id, ifnum, buf, size, USB_CNTL_TIMEOUT);
585}
586
587/********************************************************************
588 * get string index in buffer
589 */
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200590int usb_get_string(struct usb_device *dev, unsigned short langid,
591 unsigned char index, void *buf, int size)
wdenkaffae2b2002-08-17 09:36:01 +0000592{
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200593 int i;
594 int result;
595
596 for (i = 0; i < 3; ++i) {
597 /* some devices are flaky */
598 result = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
599 USB_REQ_GET_DESCRIPTOR, USB_DIR_IN,
Wolfgang Denk095b8a32005-08-02 17:06:17 +0200600 (USB_DT_STRING << 8) + index, langid, buf, size,
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200601 USB_CNTL_TIMEOUT);
602
603 if (result > 0)
604 break;
Wolfgang Denk095b8a32005-08-02 17:06:17 +0200605 }
606
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200607 return result;
wdenkaffae2b2002-08-17 09:36:01 +0000608}
609
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200610
611static void usb_try_string_workarounds(unsigned char *buf, int *length)
612{
613 int newlength, oldlength = *length;
614
615 for (newlength = 2; newlength + 1 < oldlength; newlength += 2)
616 if (!isprint(buf[newlength]) || buf[newlength + 1])
617 break;
618
619 if (newlength > 2) {
620 buf[0] = newlength;
621 *length = newlength;
622 }
623}
624
625
626static int usb_string_sub(struct usb_device *dev, unsigned int langid,
627 unsigned int index, unsigned char *buf)
628{
629 int rc;
630
631 /* Try to read the string descriptor by asking for the maximum
632 * possible number of bytes */
633 rc = usb_get_string(dev, langid, index, buf, 255);
634
635 /* If that failed try to read the descriptor length, then
636 * ask for just that many bytes */
637 if (rc < 2) {
638 rc = usb_get_string(dev, langid, index, buf, 2);
639 if (rc == 2)
640 rc = usb_get_string(dev, langid, index, buf, buf[0]);
641 }
642
643 if (rc >= 2) {
644 if (!buf[0] && !buf[1])
645 usb_try_string_workarounds(buf, &rc);
646
647 /* There might be extra junk at the end of the descriptor */
648 if (buf[0] < rc)
649 rc = buf[0];
650
651 rc = rc - (rc & 1); /* force a multiple of two */
652 }
653
654 if (rc < 2)
Wolfgang Denk095b8a32005-08-02 17:06:17 +0200655 rc = -1;
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200656
657 return rc;
658}
659
660
wdenkaffae2b2002-08-17 09:36:01 +0000661/********************************************************************
662 * usb_string:
663 * Get string index and translate it to ascii.
664 * returns string length (> 0) or error (< 0)
665 */
666int usb_string(struct usb_device *dev, int index, char *buf, size_t size)
667{
wdenkcd0a9de2004-02-23 20:48:38 +0000668 unsigned char mybuf[USB_BUFSIZ];
wdenkaffae2b2002-08-17 09:36:01 +0000669 unsigned char *tbuf;
670 int err;
671 unsigned int u, idx;
672
673 if (size <= 0 || !buf || !index)
674 return -1;
675 buf[0] = 0;
Wolfgang Denkd0ff51b2008-07-14 15:19:07 +0200676 tbuf = &mybuf[0];
wdenkaffae2b2002-08-17 09:36:01 +0000677
678 /* get langid for strings if it's not yet known */
679 if (!dev->have_langid) {
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200680 err = usb_string_sub(dev, 0, 0, tbuf);
wdenkaffae2b2002-08-17 09:36:01 +0000681 if (err < 0) {
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200682 USB_PRINTF("error getting string descriptor 0 " \
683 "(error=%x)\n", dev->status);
wdenkaffae2b2002-08-17 09:36:01 +0000684 return -1;
685 } else if (tbuf[0] < 4) {
686 USB_PRINTF("string descriptor 0 too short\n");
687 return -1;
688 } else {
689 dev->have_langid = -1;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200690 dev->string_langid = tbuf[2] | (tbuf[3] << 8);
wdenkaffae2b2002-08-17 09:36:01 +0000691 /* always use the first langid listed */
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200692 USB_PRINTF("USB device number %d default " \
693 "language ID 0x%x\n",
694 dev->devnum, dev->string_langid);
wdenkaffae2b2002-08-17 09:36:01 +0000695 }
696 }
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200697
698 err = usb_string_sub(dev, dev->string_langid, index, tbuf);
wdenkaffae2b2002-08-17 09:36:01 +0000699 if (err < 0)
700 return err;
wdenkcd0a9de2004-02-23 20:48:38 +0000701
wdenkaffae2b2002-08-17 09:36:01 +0000702 size--; /* leave room for trailing NULL char in output buffer */
703 for (idx = 0, u = 2; u < err; u += 2) {
704 if (idx >= size)
705 break;
706 if (tbuf[u+1]) /* high byte */
707 buf[idx++] = '?'; /* non-ASCII character */
708 else
709 buf[idx++] = tbuf[u];
710 }
711 buf[idx] = 0;
712 err = idx;
713 return err;
714}
715
716
717/********************************************************************
718 * USB device handling:
719 * the USB device are static allocated [USB_MAX_DEVICE].
720 */
721
722
723/* returns a pointer to the device with the index [index].
724 * if the device is not assigned (dev->devnum==-1) returns NULL
725 */
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200726struct usb_device *usb_get_dev_index(int index)
wdenkaffae2b2002-08-17 09:36:01 +0000727{
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200728 if (usb_dev[index].devnum == -1)
wdenkaffae2b2002-08-17 09:36:01 +0000729 return NULL;
730 else
731 return &usb_dev[index];
732}
733
734
735/* returns a pointer of a new device structure or NULL, if
736 * no device struct is available
737 */
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200738struct usb_device *usb_alloc_new_device(void)
wdenkaffae2b2002-08-17 09:36:01 +0000739{
740 int i;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200741 USB_PRINTF("New Device %d\n", dev_index);
742 if (dev_index == USB_MAX_DEVICE) {
743 printf("ERROR, too many USB Devices, max=%d\n", USB_MAX_DEVICE);
wdenkaffae2b2002-08-17 09:36:01 +0000744 return NULL;
745 }
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200746 /* default Address is 0, real addresses start with 1 */
747 usb_dev[dev_index].devnum = dev_index + 1;
748 usb_dev[dev_index].maxchild = 0;
749 for (i = 0; i < USB_MAXCHILDREN; i++)
750 usb_dev[dev_index].children[i] = NULL;
751 usb_dev[dev_index].parent = NULL;
wdenkaffae2b2002-08-17 09:36:01 +0000752 dev_index++;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200753 return &usb_dev[dev_index - 1];
wdenkaffae2b2002-08-17 09:36:01 +0000754}
755
756
757/*
758 * By the time we get here, the device has gotten a new device ID
759 * and is in the default state. We need to identify the thing and
760 * get the ball rolling..
761 *
762 * Returns 0 for success, != 0 for error.
763 */
764int usb_new_device(struct usb_device *dev)
765{
766 int addr, err;
767 int tmp;
wdenkcd0a9de2004-02-23 20:48:38 +0000768 unsigned char tmpbuf[USB_BUFSIZ];
wdenkaffae2b2002-08-17 09:36:01 +0000769
wdenkaffae2b2002-08-17 09:36:01 +0000770 /* We still haven't set the Address yet */
771 addr = dev->devnum;
772 dev->devnum = 0;
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200773
Remy Bohmerc9e84362008-09-16 14:55:44 +0200774#ifdef CONFIG_LEGACY_USB_INIT_SEQ
775 /* this is the old and known way of initializing devices, it is
776 * different than what Windows and Linux are doing. Windows and Linux
777 * both retrieve 64 bytes while reading the device descriptor
778 * Several USB stick devices report ERR: CTL_TIMEOUT, caused by an
779 * invalid header while reading 8 bytes as device descriptor. */
780 dev->descriptor.bMaxPacketSize0 = 8; /* Start off at 8 bytes */
Remy Bohmer48867202008-10-10 10:23:21 +0200781 dev->maxpacketsize = PACKET_SIZE_8;
Remy Bohmerc9e84362008-09-16 14:55:44 +0200782 dev->epmaxpacketin [0] = 8;
783 dev->epmaxpacketout[0] = 8;
784
785 err = usb_get_descriptor(dev, USB_DT_DEVICE, 0, &dev->descriptor, 8);
786 if (err < 8) {
787 printf("\n USB device not responding, " \
788 "giving up (status=%lX)\n",dev->status);
789 return 1;
790 }
791#else
Remy Bohmer48867202008-10-10 10:23:21 +0200792 /* This is a Windows scheme of initialization sequence, with double
793 * reset of the device (Linux uses the same sequence)
Remy Bohmerc9e84362008-09-16 14:55:44 +0200794 * Some equipment is said to work only with such init sequence; this
795 * patch is based on the work by Alan Stern:
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200796 * http://sourceforge.net/mailarchive/forum.php?thread_id=5729457&forum_id=5398
797 */
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200798 struct usb_device_descriptor *desc;
799 int port = -1;
800 struct usb_device *parent = dev->parent;
801 unsigned short portstatus;
802
803 /* send 64-byte GET-DEVICE-DESCRIPTOR request. Since the descriptor is
804 * only 18 bytes long, this will terminate with a short packet. But if
805 * the maxpacket size is 8 or 16 the device may be waiting to transmit
Remy Bohmerc9e84362008-09-16 14:55:44 +0200806 * some more, or keeps on retransmitting the 8 byte header. */
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200807
808 desc = (struct usb_device_descriptor *)tmpbuf;
Remy Bohmerc9e84362008-09-16 14:55:44 +0200809 dev->descriptor.bMaxPacketSize0 = 64; /* Start off at 64 bytes */
Remy Bohmer48867202008-10-10 10:23:21 +0200810 /* Default to 64 byte max packet size */
811 dev->maxpacketsize = PACKET_SIZE_64;
Remy Bohmerc9e84362008-09-16 14:55:44 +0200812 dev->epmaxpacketin [0] = 64;
813 dev->epmaxpacketout[0] = 64;
Remy Bohmer48867202008-10-10 10:23:21 +0200814
815 err = usb_get_descriptor(dev, USB_DT_DEVICE, 0, desc, 64);
816 if (err < 0) {
817 USB_PRINTF("usb_new_device: usb_get_descriptor() failed\n");
818 return 1;
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200819 }
Remy Bohmer48867202008-10-10 10:23:21 +0200820
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200821 dev->descriptor.bMaxPacketSize0 = desc->bMaxPacketSize0;
Wolfgang Denk095b8a32005-08-02 17:06:17 +0200822
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200823 /* find the port number we're at */
824 if (parent) {
Remy Bohmer48867202008-10-10 10:23:21 +0200825 int j;
Wolfgang Denk095b8a32005-08-02 17:06:17 +0200826
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200827 for (j = 0; j < parent->maxchild; j++) {
828 if (parent->children[j] == dev) {
829 port = j;
830 break;
831 }
832 }
833 if (port < 0) {
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200834 printf("usb_new_device:cannot locate device's port.\n");
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200835 return 1;
836 }
837
838 /* reset the port for the second time */
839 err = hub_port_reset(dev->parent, port, &portstatus);
840 if (err < 0) {
841 printf("\n Couldn't reset port %i\n", port);
842 return 1;
843 }
844 }
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200845#endif
846
wdenkaffae2b2002-08-17 09:36:01 +0000847 dev->epmaxpacketin [0] = dev->descriptor.bMaxPacketSize0;
848 dev->epmaxpacketout[0] = dev->descriptor.bMaxPacketSize0;
849 switch (dev->descriptor.bMaxPacketSize0) {
Remy Bohmer48867202008-10-10 10:23:21 +0200850 case 8: dev->maxpacketsize = PACKET_SIZE_8; break;
851 case 16: dev->maxpacketsize = PACKET_SIZE_16; break;
852 case 32: dev->maxpacketsize = PACKET_SIZE_32; break;
853 case 64: dev->maxpacketsize = PACKET_SIZE_64; break;
wdenkaffae2b2002-08-17 09:36:01 +0000854 }
855 dev->devnum = addr;
856
857 err = usb_set_address(dev); /* set address */
858
859 if (err < 0) {
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200860 printf("\n USB device not accepting new address " \
861 "(error=%lX)\n", dev->status);
wdenkaffae2b2002-08-17 09:36:01 +0000862 return 1;
863 }
864
865 wait_ms(10); /* Let the SET_ADDRESS settle */
866
867 tmp = sizeof(dev->descriptor);
868
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200869 err = usb_get_descriptor(dev, USB_DT_DEVICE, 0,
870 &dev->descriptor, sizeof(dev->descriptor));
wdenkaffae2b2002-08-17 09:36:01 +0000871 if (err < tmp) {
872 if (err < 0)
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200873 printf("unable to get device descriptor (error=%d)\n",
874 err);
wdenkaffae2b2002-08-17 09:36:01 +0000875 else
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200876 printf("USB device descriptor short read " \
877 "(expected %i, got %i)\n", tmp, err);
wdenkaffae2b2002-08-17 09:36:01 +0000878 return 1;
879 }
880 /* correct le values */
Christian Eggersc9182612008-05-21 22:12:00 +0200881 le16_to_cpus(&dev->descriptor.bcdUSB);
882 le16_to_cpus(&dev->descriptor.idVendor);
883 le16_to_cpus(&dev->descriptor.idProduct);
884 le16_to_cpus(&dev->descriptor.bcdDevice);
wdenkaffae2b2002-08-17 09:36:01 +0000885 /* only support for one config for now */
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200886 usb_get_configuration_no(dev, &tmpbuf[0], 0);
887 usb_parse_config(dev, &tmpbuf[0], 0);
wdenkaffae2b2002-08-17 09:36:01 +0000888 usb_set_maxpacket(dev);
889 /* we set the default configuration here */
890 if (usb_set_configuration(dev, dev->config.bConfigurationValue)) {
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200891 printf("failed to set default configuration " \
892 "len %d, status %lX\n", dev->act_len, dev->status);
wdenkaffae2b2002-08-17 09:36:01 +0000893 return -1;
894 }
895 USB_PRINTF("new device strings: Mfr=%d, Product=%d, SerialNumber=%d\n",
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200896 dev->descriptor.iManufacturer, dev->descriptor.iProduct,
897 dev->descriptor.iSerialNumber);
wdenkaffae2b2002-08-17 09:36:01 +0000898 memset(dev->mf, 0, sizeof(dev->mf));
899 memset(dev->prod, 0, sizeof(dev->prod));
900 memset(dev->serial, 0, sizeof(dev->serial));
901 if (dev->descriptor.iManufacturer)
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200902 usb_string(dev, dev->descriptor.iManufacturer,
903 dev->mf, sizeof(dev->mf));
wdenkaffae2b2002-08-17 09:36:01 +0000904 if (dev->descriptor.iProduct)
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200905 usb_string(dev, dev->descriptor.iProduct,
906 dev->prod, sizeof(dev->prod));
wdenkaffae2b2002-08-17 09:36:01 +0000907 if (dev->descriptor.iSerialNumber)
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200908 usb_string(dev, dev->descriptor.iSerialNumber,
909 dev->serial, sizeof(dev->serial));
wdenkaffae2b2002-08-17 09:36:01 +0000910 USB_PRINTF("Manufacturer %s\n", dev->mf);
911 USB_PRINTF("Product %s\n", dev->prod);
912 USB_PRINTF("SerialNumber %s\n", dev->serial);
913 /* now prode if the device is a hub */
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200914 usb_hub_probe(dev, 0);
wdenkaffae2b2002-08-17 09:36:01 +0000915 return 0;
916}
917
918/* build device Tree */
919void usb_scan_devices(void)
920{
921 int i;
922 struct usb_device *dev;
923
924 /* first make all devices unknown */
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200925 for (i = 0; i < USB_MAX_DEVICE; i++) {
926 memset(&usb_dev[i], 0, sizeof(struct usb_device));
Wolfgang Denkd0ff51b2008-07-14 15:19:07 +0200927 usb_dev[i].devnum = -1;
wdenkaffae2b2002-08-17 09:36:01 +0000928 }
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200929 dev_index = 0;
wdenkaffae2b2002-08-17 09:36:01 +0000930 /* device 0 is always present (root hub, so let it analyze) */
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200931 dev = usb_alloc_new_device();
wdenkaffae2b2002-08-17 09:36:01 +0000932 usb_new_device(dev);
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200933 printf("%d USB Device(s) found\n", dev_index);
wdenkaffae2b2002-08-17 09:36:01 +0000934 /* insert "driver" if possible */
935#ifdef CONFIG_USB_KEYBOARD
936 drv_usb_kbd_init();
937 USB_PRINTF("scan end\n");
938#endif
939}
940
941
942/****************************************************************************
943 * HUB "Driver"
944 * Probes device for being a hub and configurate it
945 */
946
947#undef USB_HUB_DEBUG
948
949#ifdef USB_HUB_DEBUG
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200950#define USB_HUB_PRINTF(fmt, args...) printf (fmt , ##args)
wdenkaffae2b2002-08-17 09:36:01 +0000951#else
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200952#define USB_HUB_PRINTF(fmt, args...)
wdenkaffae2b2002-08-17 09:36:01 +0000953#endif
954
955
956static struct usb_hub_device hub_dev[USB_MAX_HUB];
957static int usb_hub_index;
958
959
960int usb_get_hub_descriptor(struct usb_device *dev, void *data, int size)
961{
962 return usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
963 USB_REQ_GET_DESCRIPTOR, USB_DIR_IN | USB_RT_HUB,
964 USB_DT_HUB << 8, 0, data, size, USB_CNTL_TIMEOUT);
965}
966
967int usb_clear_hub_feature(struct usb_device *dev, int feature)
968{
969 return usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200970 USB_REQ_CLEAR_FEATURE, USB_RT_HUB, feature,
971 0, NULL, 0, USB_CNTL_TIMEOUT);
wdenkaffae2b2002-08-17 09:36:01 +0000972}
973
974int usb_clear_port_feature(struct usb_device *dev, int port, int feature)
975{
976 return usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200977 USB_REQ_CLEAR_FEATURE, USB_RT_PORT, feature,
978 port, NULL, 0, USB_CNTL_TIMEOUT);
wdenkaffae2b2002-08-17 09:36:01 +0000979}
980
981int usb_set_port_feature(struct usb_device *dev, int port, int feature)
982{
983 return usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200984 USB_REQ_SET_FEATURE, USB_RT_PORT, feature,
985 port, NULL, 0, USB_CNTL_TIMEOUT);
wdenkaffae2b2002-08-17 09:36:01 +0000986}
987
988int usb_get_hub_status(struct usb_device *dev, void *data)
989{
990 return usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
991 USB_REQ_GET_STATUS, USB_DIR_IN | USB_RT_HUB, 0, 0,
992 data, sizeof(struct usb_hub_status), USB_CNTL_TIMEOUT);
993}
994
995int usb_get_port_status(struct usb_device *dev, int port, void *data)
996{
997 return usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
998 USB_REQ_GET_STATUS, USB_DIR_IN | USB_RT_PORT, 0, port,
999 data, sizeof(struct usb_hub_status), USB_CNTL_TIMEOUT);
1000}
1001
1002
1003static void usb_hub_power_on(struct usb_hub_device *hub)
1004{
1005 int i;
1006 struct usb_device *dev;
1007
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001008 dev = hub->pusb_dev;
wdenkaffae2b2002-08-17 09:36:01 +00001009 /* Enable power to the ports */
1010 USB_HUB_PRINTF("enabling power on all ports\n");
1011 for (i = 0; i < dev->maxchild; i++) {
1012 usb_set_port_feature(dev, i + 1, USB_PORT_FEAT_POWER);
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001013 USB_HUB_PRINTF("port %d returns %lX\n", i + 1, dev->status);
wdenkaffae2b2002-08-17 09:36:01 +00001014 wait_ms(hub->desc.bPwrOn2PwrGood * 2);
1015 }
1016}
1017
1018void usb_hub_reset(void)
1019{
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001020 usb_hub_index = 0;
wdenkaffae2b2002-08-17 09:36:01 +00001021}
1022
1023struct usb_hub_device *usb_hub_allocate(void)
1024{
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001025 if (usb_hub_index < USB_MAX_HUB)
wdenkaffae2b2002-08-17 09:36:01 +00001026 return &hub_dev[usb_hub_index++];
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001027
1028 printf("ERROR: USB_MAX_HUB (%d) reached\n", USB_MAX_HUB);
wdenkaffae2b2002-08-17 09:36:01 +00001029 return NULL;
1030}
1031
1032#define MAX_TRIES 5
1033
Wolfgang Denk9c998aa2005-07-21 11:57:57 +02001034static int hub_port_reset(struct usb_device *dev, int port,
1035 unsigned short *portstat)
1036{
1037 int tries;
1038 struct usb_port_status portsts;
1039 unsigned short portstatus, portchange;
1040
Wolfgang Denk9c998aa2005-07-21 11:57:57 +02001041 USB_HUB_PRINTF("hub_port_reset: resetting port %d...\n", port);
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001042 for (tries = 0; tries < MAX_TRIES; tries++) {
Wolfgang Denk9c998aa2005-07-21 11:57:57 +02001043
1044 usb_set_port_feature(dev, port + 1, USB_PORT_FEAT_RESET);
1045 wait_ms(200);
1046
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001047 if (usb_get_port_status(dev, port + 1, &portsts) < 0) {
1048 USB_HUB_PRINTF("get_port_status failed status %lX\n",
1049 dev->status);
Wolfgang Denk9c998aa2005-07-21 11:57:57 +02001050 return -1;
1051 }
Christian Eggersc9182612008-05-21 22:12:00 +02001052 portstatus = le16_to_cpu(portsts.wPortStatus);
1053 portchange = le16_to_cpu(portsts.wPortChange);
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001054 USB_HUB_PRINTF("portstatus %x, change %x, %s\n",
1055 portstatus, portchange,
1056 portstatus&(1<<USB_PORT_FEAT_LOWSPEED) ? \
1057 "Low Speed" : "High Speed");
1058 USB_HUB_PRINTF("STAT_C_CONNECTION = %d STAT_CONNECTION = %d" \
1059 " USB_PORT_STAT_ENABLE %d\n",
Wolfgang Denk9c998aa2005-07-21 11:57:57 +02001060 (portchange & USB_PORT_STAT_C_CONNECTION) ? 1 : 0,
1061 (portstatus & USB_PORT_STAT_CONNECTION) ? 1 : 0,
1062 (portstatus & USB_PORT_STAT_ENABLE) ? 1 : 0);
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001063
Wolfgang Denk9c998aa2005-07-21 11:57:57 +02001064 if ((portchange & USB_PORT_STAT_C_CONNECTION) ||
1065 !(portstatus & USB_PORT_STAT_CONNECTION))
1066 return -1;
1067
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001068 if (portstatus & USB_PORT_STAT_ENABLE)
Wolfgang Denk9c998aa2005-07-21 11:57:57 +02001069 break;
Wolfgang Denk9c998aa2005-07-21 11:57:57 +02001070
1071 wait_ms(200);
1072 }
1073
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001074 if (tries == MAX_TRIES) {
1075 USB_HUB_PRINTF("Cannot enable port %i after %i retries, " \
1076 "disabling port.\n", port + 1, MAX_TRIES);
Wolfgang Denk9c998aa2005-07-21 11:57:57 +02001077 USB_HUB_PRINTF("Maybe the USB cable is bad?\n");
1078 return -1;
1079 }
1080
1081 usb_clear_port_feature(dev, port + 1, USB_PORT_FEAT_C_RESET);
1082 *portstat = portstatus;
1083 return 0;
Wolfgang Denk9c998aa2005-07-21 11:57:57 +02001084}
1085
1086
wdenkaffae2b2002-08-17 09:36:01 +00001087void usb_hub_port_connect_change(struct usb_device *dev, int port)
1088{
1089 struct usb_device *usb;
1090 struct usb_port_status portsts;
1091 unsigned short portstatus, portchange;
wdenkaffae2b2002-08-17 09:36:01 +00001092
1093 /* Check status */
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001094 if (usb_get_port_status(dev, port + 1, &portsts) < 0) {
wdenkaffae2b2002-08-17 09:36:01 +00001095 USB_HUB_PRINTF("get_port_status failed\n");
1096 return;
1097 }
1098
Christian Eggersc9182612008-05-21 22:12:00 +02001099 portstatus = le16_to_cpu(portsts.wPortStatus);
1100 portchange = le16_to_cpu(portsts.wPortChange);
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001101 USB_HUB_PRINTF("portstatus %x, change %x, %s\n",
1102 portstatus, portchange,
1103 portstatus&(1 << USB_PORT_FEAT_LOWSPEED) ? \
1104 "Low Speed" : "High Speed");
wdenkaffae2b2002-08-17 09:36:01 +00001105
1106 /* Clear the connection change status */
1107 usb_clear_port_feature(dev, port + 1, USB_PORT_FEAT_C_CONNECTION);
1108
1109 /* Disconnect any existing devices under this port */
1110 if (((!(portstatus & USB_PORT_STAT_CONNECTION)) &&
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001111 (!(portstatus & USB_PORT_STAT_ENABLE))) || (dev->children[port])) {
wdenkaffae2b2002-08-17 09:36:01 +00001112 USB_HUB_PRINTF("usb_disconnect(&hub->children[port]);\n");
1113 /* Return now if nothing is connected */
1114 if (!(portstatus & USB_PORT_STAT_CONNECTION))
1115 return;
1116 }
1117 wait_ms(200);
1118
1119 /* Reset the port */
Wolfgang Denk9c998aa2005-07-21 11:57:57 +02001120 if (hub_port_reset(dev, port, &portstatus) < 0) {
1121 printf("cannot reset port %i!?\n", port + 1);
wdenkaffae2b2002-08-17 09:36:01 +00001122 return;
1123 }
1124
wdenkaffae2b2002-08-17 09:36:01 +00001125 wait_ms(200);
1126
1127 /* Allocate a new device struct for it */
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001128 usb = usb_alloc_new_device();
wdenkaffae2b2002-08-17 09:36:01 +00001129 usb->slow = (portstatus & USB_PORT_STAT_LOW_SPEED) ? 1 : 0;
1130
1131 dev->children[port] = usb;
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001132 usb->parent = dev;
wdenkaffae2b2002-08-17 09:36:01 +00001133 /* Run it through the hoops (find a driver, etc) */
1134 if (usb_new_device(usb)) {
1135 /* Woops, disable the port */
1136 USB_HUB_PRINTF("hub: disabling port %d\n", port + 1);
1137 usb_clear_port_feature(dev, port + 1, USB_PORT_FEAT_ENABLE);
1138 }
1139}
1140
1141
1142int usb_hub_configure(struct usb_device *dev)
1143{
wdenkcd0a9de2004-02-23 20:48:38 +00001144 unsigned char buffer[USB_BUFSIZ], *bitmap;
wdenkaffae2b2002-08-17 09:36:01 +00001145 struct usb_hub_descriptor *descriptor;
1146 struct usb_hub_status *hubsts;
1147 int i;
1148 struct usb_hub_device *hub;
1149
1150 /* "allocate" Hub device */
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001151 hub = usb_hub_allocate();
1152 if (hub == NULL)
wdenkaffae2b2002-08-17 09:36:01 +00001153 return -1;
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001154 hub->pusb_dev = dev;
wdenkaffae2b2002-08-17 09:36:01 +00001155 /* Get the the hub descriptor */
1156 if (usb_get_hub_descriptor(dev, buffer, 4) < 0) {
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001157 USB_HUB_PRINTF("usb_hub_configure: failed to get hub " \
1158 "descriptor, giving up %lX\n", dev->status);
wdenkaffae2b2002-08-17 09:36:01 +00001159 return -1;
1160 }
1161 descriptor = (struct usb_hub_descriptor *)buffer;
wdenkcd0a9de2004-02-23 20:48:38 +00001162
wdenke86e5a02004-10-17 21:12:06 +00001163 /* silence compiler warning if USB_BUFSIZ is > 256 [= sizeof(char)] */
1164 i = descriptor->bLength;
1165 if (i > USB_BUFSIZ) {
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001166 USB_HUB_PRINTF("usb_hub_configure: failed to get hub " \
1167 "descriptor - too long: %d\n",
1168 descriptor->bLength);
wdenkcd0a9de2004-02-23 20:48:38 +00001169 return -1;
1170 }
1171
wdenkaffae2b2002-08-17 09:36:01 +00001172 if (usb_get_hub_descriptor(dev, buffer, descriptor->bLength) < 0) {
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001173 USB_HUB_PRINTF("usb_hub_configure: failed to get hub " \
1174 "descriptor 2nd giving up %lX\n", dev->status);
wdenkaffae2b2002-08-17 09:36:01 +00001175 return -1;
1176 }
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001177 memcpy((unsigned char *)&hub->desc, buffer, descriptor->bLength);
wdenkaffae2b2002-08-17 09:36:01 +00001178 /* adjust 16bit values */
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001179 hub->desc.wHubCharacteristics =
1180 le16_to_cpu(descriptor->wHubCharacteristics);
wdenkaffae2b2002-08-17 09:36:01 +00001181 /* set the bitmap */
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001182 bitmap = (unsigned char *)&hub->desc.DeviceRemovable[0];
1183 /* devices not removable by default */
1184 memset(bitmap, 0xff, (USB_MAXCHILDREN+1+7)/8);
1185 bitmap = (unsigned char *)&hub->desc.PortPowerCtrlMask[0];
1186 memset(bitmap, 0xff, (USB_MAXCHILDREN+1+7)/8); /* PowerMask = 1B */
1187
1188 for (i = 0; i < ((hub->desc.bNbrPorts + 1 + 7)/8); i++)
1189 hub->desc.DeviceRemovable[i] = descriptor->DeviceRemovable[i];
1190
1191 for (i = 0; i < ((hub->desc.bNbrPorts + 1 + 7)/8); i++)
1192 hub->desc.DeviceRemovable[i] = descriptor->PortPowerCtrlMask[i];
1193
wdenkaffae2b2002-08-17 09:36:01 +00001194 dev->maxchild = descriptor->bNbrPorts;
1195 USB_HUB_PRINTF("%d ports detected\n", dev->maxchild);
1196
1197 switch (hub->desc.wHubCharacteristics & HUB_CHAR_LPSM) {
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001198 case 0x00:
1199 USB_HUB_PRINTF("ganged power switching\n");
1200 break;
1201 case 0x01:
1202 USB_HUB_PRINTF("individual port power switching\n");
1203 break;
1204 case 0x02:
1205 case 0x03:
1206 USB_HUB_PRINTF("unknown reserved power switching mode\n");
1207 break;
wdenkaffae2b2002-08-17 09:36:01 +00001208 }
1209
1210 if (hub->desc.wHubCharacteristics & HUB_CHAR_COMPOUND)
1211 USB_HUB_PRINTF("part of a compound device\n");
1212 else
1213 USB_HUB_PRINTF("standalone hub\n");
1214
1215 switch (hub->desc.wHubCharacteristics & HUB_CHAR_OCPM) {
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001216 case 0x00:
1217 USB_HUB_PRINTF("global over-current protection\n");
1218 break;
1219 case 0x08:
1220 USB_HUB_PRINTF("individual port over-current protection\n");
1221 break;
1222 case 0x10:
1223 case 0x18:
1224 USB_HUB_PRINTF("no over-current protection\n");
1225 break;
wdenkaffae2b2002-08-17 09:36:01 +00001226 }
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001227
1228 USB_HUB_PRINTF("power on to power good time: %dms\n",
1229 descriptor->bPwrOn2PwrGood * 2);
1230 USB_HUB_PRINTF("hub controller current requirement: %dmA\n",
1231 descriptor->bHubContrCurrent);
1232
wdenkaffae2b2002-08-17 09:36:01 +00001233 for (i = 0; i < dev->maxchild; i++)
1234 USB_HUB_PRINTF("port %d is%s removable\n", i + 1,
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001235 hub->desc.DeviceRemovable[(i + 1) / 8] & \
1236 (1 << ((i + 1) % 8)) ? " not" : "");
1237
wdenkcd0a9de2004-02-23 20:48:38 +00001238 if (sizeof(struct usb_hub_status) > USB_BUFSIZ) {
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001239 USB_HUB_PRINTF("usb_hub_configure: failed to get Status - " \
1240 "too long: %d\n", descriptor->bLength);
wdenkcd0a9de2004-02-23 20:48:38 +00001241 return -1;
1242 }
1243
wdenkaffae2b2002-08-17 09:36:01 +00001244 if (usb_get_hub_status(dev, buffer) < 0) {
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001245 USB_HUB_PRINTF("usb_hub_configure: failed to get Status %lX\n",
1246 dev->status);
wdenkaffae2b2002-08-17 09:36:01 +00001247 return -1;
1248 }
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001249
wdenkaffae2b2002-08-17 09:36:01 +00001250 hubsts = (struct usb_hub_status *)buffer;
1251 USB_HUB_PRINTF("get_hub_status returned status %X, change %X\n",
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001252 le16_to_cpu(hubsts->wHubStatus),
1253 le16_to_cpu(hubsts->wHubChange));
wdenkaffae2b2002-08-17 09:36:01 +00001254 USB_HUB_PRINTF("local power source is %s\n",
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001255 (le16_to_cpu(hubsts->wHubStatus) & HUB_STATUS_LOCAL_POWER) ? \
1256 "lost (inactive)" : "good");
wdenkaffae2b2002-08-17 09:36:01 +00001257 USB_HUB_PRINTF("%sover-current condition exists\n",
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001258 (le16_to_cpu(hubsts->wHubStatus) & HUB_STATUS_OVERCURRENT) ? \
1259 "" : "no ");
wdenkaffae2b2002-08-17 09:36:01 +00001260 usb_hub_power_on(hub);
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001261
wdenkaffae2b2002-08-17 09:36:01 +00001262 for (i = 0; i < dev->maxchild; i++) {
1263 struct usb_port_status portsts;
1264 unsigned short portstatus, portchange;
1265
1266 if (usb_get_port_status(dev, i + 1, &portsts) < 0) {
1267 USB_HUB_PRINTF("get_port_status failed\n");
1268 continue;
1269 }
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001270
Christian Eggersc9182612008-05-21 22:12:00 +02001271 portstatus = le16_to_cpu(portsts.wPortStatus);
1272 portchange = le16_to_cpu(portsts.wPortChange);
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001273 USB_HUB_PRINTF("Port %d Status %X Change %X\n",
1274 i + 1, portstatus, portchange);
1275
wdenkaffae2b2002-08-17 09:36:01 +00001276 if (portchange & USB_PORT_STAT_C_CONNECTION) {
1277 USB_HUB_PRINTF("port %d connection change\n", i + 1);
1278 usb_hub_port_connect_change(dev, i);
1279 }
1280 if (portchange & USB_PORT_STAT_C_ENABLE) {
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001281 USB_HUB_PRINTF("port %d enable change, status %x\n",
1282 i + 1, portstatus);
1283 usb_clear_port_feature(dev, i + 1,
1284 USB_PORT_FEAT_C_ENABLE);
wdenkaffae2b2002-08-17 09:36:01 +00001285
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001286 /* EM interference sometimes causes bad shielded USB
1287 * devices to be shutdown by the hub, this hack enables
1288 * them again. Works at least with mouse driver */
wdenkaffae2b2002-08-17 09:36:01 +00001289 if (!(portstatus & USB_PORT_STAT_ENABLE) &&
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001290 (portstatus & USB_PORT_STAT_CONNECTION) &&
1291 ((dev->children[i]))) {
1292 USB_HUB_PRINTF("already running port %i " \
1293 "disabled by hub (EMI?), " \
1294 "re-enabling...\n", i + 1);
wdenkaffae2b2002-08-17 09:36:01 +00001295 usb_hub_port_connect_change(dev, i);
1296 }
1297 }
1298 if (portstatus & USB_PORT_STAT_SUSPEND) {
1299 USB_HUB_PRINTF("port %d suspend change\n", i + 1);
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001300 usb_clear_port_feature(dev, i + 1,
1301 USB_PORT_FEAT_SUSPEND);
wdenkaffae2b2002-08-17 09:36:01 +00001302 }
1303
1304 if (portchange & USB_PORT_STAT_C_OVERCURRENT) {
1305 USB_HUB_PRINTF("port %d over-current change\n", i + 1);
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001306 usb_clear_port_feature(dev, i + 1,
1307 USB_PORT_FEAT_C_OVER_CURRENT);
wdenkaffae2b2002-08-17 09:36:01 +00001308 usb_hub_power_on(hub);
1309 }
1310
1311 if (portchange & USB_PORT_STAT_C_RESET) {
1312 USB_HUB_PRINTF("port %d reset change\n", i + 1);
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001313 usb_clear_port_feature(dev, i + 1,
1314 USB_PORT_FEAT_C_RESET);
wdenkaffae2b2002-08-17 09:36:01 +00001315 }
1316 } /* end for i all ports */
1317
1318 return 0;
1319}
1320
1321int usb_hub_probe(struct usb_device *dev, int ifnum)
1322{
1323 struct usb_interface_descriptor *iface;
1324 struct usb_endpoint_descriptor *ep;
1325 int ret;
1326
1327 iface = &dev->config.if_desc[ifnum];
1328 /* Is it a hub? */
1329 if (iface->bInterfaceClass != USB_CLASS_HUB)
1330 return 0;
1331 /* Some hubs have a subclass of 1, which AFAICT according to the */
1332 /* specs is not defined, but it works */
1333 if ((iface->bInterfaceSubClass != 0) &&
1334 (iface->bInterfaceSubClass != 1))
1335 return 0;
1336 /* Multiple endpoints? What kind of mutant ninja-hub is this? */
1337 if (iface->bNumEndpoints != 1)
1338 return 0;
1339 ep = &iface->ep_desc[0];
1340 /* Output endpoint? Curiousier and curiousier.. */
1341 if (!(ep->bEndpointAddress & USB_DIR_IN))
1342 return 0;
1343 /* If it's not an interrupt endpoint, we'd better punt! */
1344 if ((ep->bmAttributes & 3) != 3)
1345 return 0;
1346 /* We found a hub */
1347 USB_HUB_PRINTF("USB hub found\n");
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001348 ret = usb_hub_configure(dev);
wdenkaffae2b2002-08-17 09:36:01 +00001349 return ret;
1350}
1351
wdenkaffae2b2002-08-17 09:36:01 +00001352/* EOF */