blob: 4d64ccb43850e42089fb8d2b242472581c388716 [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
61#define USB_PRINTF(fmt,args...) printf (fmt ,##args)
62#else
63#define USB_PRINTF(fmt,args...)
64#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);
83
Wolfgang Denk9c998aa2005-07-21 11:57:57 +020084
wdenkaffae2b2002-08-17 09:36:01 +000085/***********************************************************************
86 * wait_ms
87 */
88
89void __inline__ wait_ms(unsigned long ms)
90{
91 while(ms-->0)
92 udelay(1000);
93}
94/***************************************************************************
95 * Init USB Device
96 */
97
98int usb_init(void)
99{
100 int result;
101
102 running=0;
103 dev_index=0;
104 asynch_allowed=1;
105 usb_hub_reset();
106 /* init low_level USB */
107 printf("USB: ");
108 result = usb_lowlevel_init();
109 /* if lowlevel init is OK, scan the bus for devices i.e. search HUBs and configure them */
110 if(result==0) {
111 printf("scanning bus for devices... ");
112 running=1;
113 usb_scan_devices();
Bartlomiej Siekae51aae32006-08-03 23:20:13 +0200114 usb_started = 1;
wdenkaffae2b2002-08-17 09:36:01 +0000115 return 0;
116 }
117 else {
118 printf("Error, couldn't init Lowlevel part\n");
Bartlomiej Siekae51aae32006-08-03 23:20:13 +0200119 usb_started = 0;
wdenkaffae2b2002-08-17 09:36:01 +0000120 return -1;
121 }
122}
123
124/******************************************************************************
125 * Stop USB this stops the LowLevel Part and deregisters USB devices.
126 */
127int usb_stop(void)
128{
Remy Bohmereba1f2f2008-08-20 11:22:02 +0200129 int res = 0;
130
131 if (usb_started) {
132 asynch_allowed = 1;
133 usb_started = 0;
134 usb_hub_reset();
135 res = usb_lowlevel_stop();
136 }
137 return res;
wdenkaffae2b2002-08-17 09:36:01 +0000138}
139
140/*
141 * disables the asynch behaviour of the control message. This is used for data
142 * transfers that uses the exclusiv access to the control and bulk messages.
143 */
144void usb_disable_asynch(int disable)
145{
146 asynch_allowed=!disable;
147}
148
149
150/*-------------------------------------------------------------------
151 * Message wrappers.
152 *
153 */
154
155/*
156 * submits an Interrupt Message
157 */
158int usb_submit_int_msg(struct usb_device *dev, unsigned long pipe,
159 void *buffer,int transfer_len, int interval)
160{
161 return submit_int_msg(dev,pipe,buffer,transfer_len,interval);
162}
163
164/*
165 * submits a control message and waits for comletion (at least timeout * 1ms)
166 * If timeout is 0, we don't wait for completion (used as example to set and
167 * clear keyboards LEDs). For data transfers, (storage transfers) we don't
168 * allow control messages with 0 timeout, by previousely resetting the flag
169 * asynch_allowed (usb_disable_asynch(1)).
170 * returns the transfered length if OK or -1 if error. The transfered length
171 * and the current status are stored in the dev->act_len and dev->status.
172 */
173int usb_control_msg(struct usb_device *dev, unsigned int pipe,
174 unsigned char request, unsigned char requesttype,
175 unsigned short value, unsigned short index,
176 void *data, unsigned short size, int timeout)
177{
178 if((timeout==0)&&(!asynch_allowed)) /* request for a asynch control pipe is not allowed */
179 return -1;
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200180
wdenkaffae2b2002-08-17 09:36:01 +0000181 /* set setup command */
182 setup_packet.requesttype = requesttype;
183 setup_packet.request = request;
Christian Eggersc9182612008-05-21 22:12:00 +0200184 setup_packet.value = cpu_to_le16(value);
185 setup_packet.index = cpu_to_le16(index);
186 setup_packet.length = cpu_to_le16(size);
187 USB_PRINTF("usb_control_msg: request: 0x%X, requesttype: 0x%X, value 0x%X index 0x%X length 0x%X\n",
wdenkaffae2b2002-08-17 09:36:01 +0000188 request,requesttype,value,index,size);
189 dev->status=USB_ST_NOT_PROC; /*not yet processed */
190
191 submit_control_msg(dev,pipe,data,size,&setup_packet);
192 if(timeout==0) {
193 return (int)size;
194 }
195 while(timeout--) {
196 if(!((volatile unsigned long)dev->status & USB_ST_NOT_PROC))
197 break;
198 wait_ms(1);
199 }
200 if(dev->status==0)
201 return dev->act_len;
202 else {
203 return -1;
204 }
205}
206
207/*-------------------------------------------------------------------
208 * submits bulk message, and waits for completion. returns 0 if Ok or
209 * -1 if Error.
210 * synchronous behavior
211 */
212int usb_bulk_msg(struct usb_device *dev, unsigned int pipe,
213 void *data, int len, int *actual_length, int timeout)
214{
215 if (len < 0)
216 return -1;
217 dev->status=USB_ST_NOT_PROC; /*not yet processed */
218 submit_bulk_msg(dev,pipe,data,len);
219 while(timeout--) {
220 if(!((volatile unsigned long)dev->status & USB_ST_NOT_PROC))
221 break;
222 wait_ms(1);
223 }
224 *actual_length=dev->act_len;
225 if(dev->status==0)
226 return 0;
227 else
228 return -1;
229}
230
231
232/*-------------------------------------------------------------------
233 * Max Packet stuff
234 */
235
236/*
237 * returns the max packet size, depending on the pipe direction and
238 * the configurations values
239 */
240int usb_maxpacket(struct usb_device *dev,unsigned long pipe)
241{
242 if((pipe & USB_DIR_IN)==0) /* direction is out -> use emaxpacket out */
243 return(dev->epmaxpacketout[((pipe>>15) & 0xf)]);
244 else
245 return(dev->epmaxpacketin[((pipe>>15) & 0xf)]);
246}
247
Remy Bohmerbe19d322008-09-16 14:55:42 +0200248/* The routine usb_set_maxpacket_ep() is extracted from the loop of routine
249 * usb_set_maxpacket(), because the optimizer of GCC 4.x chokes on this routine
250 * when it is inlined in 1 single routine. What happens is that the register r3
251 * is used as loop-count 'i', but gets overwritten later on.
252 * This is clearly a compiler bug, but it is easier to workaround it here than
253 * to update the compiler (Occurs with at least several GCC 4.{1,2},x
254 * CodeSourcery compilers like e.g. 2007q3, 2008q1, 2008q3 lite editions on ARM)
255 */
256static void __attribute__((noinline))
257usb_set_maxpacket_ep(struct usb_device *dev, struct usb_endpoint_descriptor *ep)
258{
259 int b;
260
261 b = ep->bEndpointAddress & USB_ENDPOINT_NUMBER_MASK;
262
263 if ((ep->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) ==
264 USB_ENDPOINT_XFER_CONTROL) {
265 /* Control => bidirectional */
266 dev->epmaxpacketout[b] = ep->wMaxPacketSize;
267 dev->epmaxpacketin [b] = ep->wMaxPacketSize;
268 USB_PRINTF("##Control EP epmaxpacketout/in[%d] = %d\n",
269 b, dev->epmaxpacketin[b]);
270 } else {
271 if ((ep->bEndpointAddress & 0x80) == 0) {
272 /* OUT Endpoint */
273 if (ep->wMaxPacketSize > dev->epmaxpacketout[b]) {
274 dev->epmaxpacketout[b] = ep->wMaxPacketSize;
275 USB_PRINTF("##EP epmaxpacketout[%d] = %d\n",
276 b, dev->epmaxpacketout[b]);
277 }
278 } else {
279 /* IN Endpoint */
280 if (ep->wMaxPacketSize > dev->epmaxpacketin[b]) {
281 dev->epmaxpacketin[b] = ep->wMaxPacketSize;
282 USB_PRINTF("##EP epmaxpacketin[%d] = %d\n",
283 b, dev->epmaxpacketin[b]);
284 }
285 } /* if out */
286 } /* if control */
287}
288
wdenkaffae2b2002-08-17 09:36:01 +0000289/*
290 * set the max packed value of all endpoints in the given configuration
291 */
292int usb_set_maxpacket(struct usb_device *dev)
293{
Remy Bohmerbe19d322008-09-16 14:55:42 +0200294 int i, ii;
wdenkaffae2b2002-08-17 09:36:01 +0000295
Remy Bohmerbe19d322008-09-16 14:55:42 +0200296 for (i = 0; i < dev->config.bNumInterfaces; i++)
297 for (ii = 0; ii < dev->config.if_desc[i].bNumEndpoints; ii++)
298 usb_set_maxpacket_ep(dev,
299 &dev->config.if_desc[i].ep_desc[ii]);
wdenkaffae2b2002-08-17 09:36:01 +0000300
wdenkaffae2b2002-08-17 09:36:01 +0000301 return 0;
302}
303
304/*******************************************************************************
305 * Parse the config, located in buffer, and fills the dev->config structure.
306 * Note that all little/big endian swapping are done automatically.
307 */
308int usb_parse_config(struct usb_device *dev, unsigned char *buffer, int cfgno)
309{
310 struct usb_descriptor_header *head;
Bartlomiej Sieka7455af42006-08-02 00:54:18 +0200311 int index, ifno, epno, curr_if_num;
312 int i;
313 unsigned char *ch;
wdenkaffae2b2002-08-17 09:36:01 +0000314
Bartlomiej Sieka7455af42006-08-02 00:54:18 +0200315 ifno = -1;
316 epno = -1;
317 curr_if_num = -1;
318
319 dev->configno = cfgno;
320 head = (struct usb_descriptor_header *) &buffer[0];
321 if(head->bDescriptorType != USB_DT_CONFIG) {
322 printf(" ERROR: NOT USB_CONFIG_DESC %x\n", head->bDescriptorType);
wdenkaffae2b2002-08-17 09:36:01 +0000323 return -1;
324 }
Bartlomiej Sieka7455af42006-08-02 00:54:18 +0200325 memcpy(&dev->config, buffer, buffer[0]);
Christian Eggersc9182612008-05-21 22:12:00 +0200326 le16_to_cpus(&(dev->config.wTotalLength));
Bartlomiej Sieka7455af42006-08-02 00:54:18 +0200327 dev->config.no_of_if = 0;
wdenkaffae2b2002-08-17 09:36:01 +0000328
Bartlomiej Sieka7455af42006-08-02 00:54:18 +0200329 index = dev->config.bLength;
wdenkaffae2b2002-08-17 09:36:01 +0000330 /* Ok the first entry must be a configuration entry, now process the others */
Bartlomiej Sieka7455af42006-08-02 00:54:18 +0200331 head = (struct usb_descriptor_header *) &buffer[index];
332 while(index + 1 < dev->config.wTotalLength) {
wdenkaffae2b2002-08-17 09:36:01 +0000333 switch(head->bDescriptorType) {
334 case USB_DT_INTERFACE:
Bartlomiej Sieka7455af42006-08-02 00:54:18 +0200335 if(((struct usb_interface_descriptor *) &buffer[index])->
336 bInterfaceNumber != curr_if_num) {
337 /* this is a new interface, copy new desc */
338 ifno = dev->config.no_of_if;
339 dev->config.no_of_if++;
340 memcpy(&dev->config.if_desc[ifno],
341 &buffer[index], buffer[index]);
342 dev->config.if_desc[ifno].no_of_ep = 0;
343 dev->config.if_desc[ifno].num_altsetting = 1;
344 curr_if_num = dev->config.if_desc[ifno].bInterfaceNumber;
345 } else {
346 /* found alternate setting for the interface */
347 dev->config.if_desc[ifno].num_altsetting++;
348 }
wdenkaffae2b2002-08-17 09:36:01 +0000349 break;
350 case USB_DT_ENDPOINT:
Bartlomiej Sieka7455af42006-08-02 00:54:18 +0200351 epno = dev->config.if_desc[ifno].no_of_ep;
wdenkaffae2b2002-08-17 09:36:01 +0000352 dev->config.if_desc[ifno].no_of_ep++; /* found an endpoint */
Bartlomiej Sieka7455af42006-08-02 00:54:18 +0200353 memcpy(&dev->config.if_desc[ifno].ep_desc[epno],
354 &buffer[index], buffer[index]);
Christian Eggersc9182612008-05-21 22:12:00 +0200355 le16_to_cpus(&(dev->config.if_desc[ifno].ep_desc[epno].wMaxPacketSize));
Bartlomiej Sieka7455af42006-08-02 00:54:18 +0200356 USB_PRINTF("if %d, ep %d\n", ifno, epno);
wdenkaffae2b2002-08-17 09:36:01 +0000357 break;
358 default:
Bartlomiej Sieka7455af42006-08-02 00:54:18 +0200359 if(head->bLength == 0)
wdenkaffae2b2002-08-17 09:36:01 +0000360 return 1;
Bartlomiej Sieka7455af42006-08-02 00:54:18 +0200361 USB_PRINTF("unknown Description Type : %x\n", head->bDescriptorType);
wdenkaffae2b2002-08-17 09:36:01 +0000362 {
Bartlomiej Sieka7455af42006-08-02 00:54:18 +0200363 ch = (unsigned char *)head;
364 for(i = 0; i < head->bLength; i++)
365 USB_PRINTF("%02X ", *ch++);
wdenkaffae2b2002-08-17 09:36:01 +0000366 USB_PRINTF("\n\n\n");
367 }
368 break;
369 }
Bartlomiej Sieka7455af42006-08-02 00:54:18 +0200370 index += head->bLength;
371 head = (struct usb_descriptor_header *)&buffer[index];
wdenkaffae2b2002-08-17 09:36:01 +0000372 }
373 return 1;
374}
375
376/***********************************************************************
377 * Clears an endpoint
378 * endp: endpoint number in bits 0-3;
379 * direction flag in bit 7 (1 = IN, 0 = OUT)
380 */
381int usb_clear_halt(struct usb_device *dev, int pipe)
382{
383 int result;
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200384 int endp = usb_pipeendpoint(pipe)|(usb_pipein(pipe)<<7);
wdenkaffae2b2002-08-17 09:36:01 +0000385
386 result = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
387 USB_REQ_CLEAR_FEATURE, USB_RECIP_ENDPOINT, 0, endp, NULL, 0, USB_CNTL_TIMEOUT * 3);
388
389 /* don't clear if failed */
390 if (result < 0)
391 return result;
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200392
Wolfgang Denk095b8a32005-08-02 17:06:17 +0200393 /*
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200394 * NOTE: we do not get status and verify reset was successful
395 * as some devices are reported to lock up upon this check..
396 */
397
wdenkaffae2b2002-08-17 09:36:01 +0000398 usb_endpoint_running(dev, usb_pipeendpoint(pipe), usb_pipeout(pipe));
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200399
wdenkaffae2b2002-08-17 09:36:01 +0000400 /* toggle is reset on clear */
401 usb_settoggle(dev, usb_pipeendpoint(pipe), usb_pipeout(pipe), 0);
402 return 0;
403}
404
405
406/**********************************************************************
407 * get_descriptor type
408 */
409int usb_get_descriptor(struct usb_device *dev, unsigned char type, unsigned char index, void *buf, int size)
410{
411 int res;
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200412 res = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
wdenkaffae2b2002-08-17 09:36:01 +0000413 USB_REQ_GET_DESCRIPTOR, USB_DIR_IN,
414 (type << 8) + index, 0,
415 buf, size, USB_CNTL_TIMEOUT);
416 return res;
417}
418
419/**********************************************************************
420 * gets configuration cfgno and store it in the buffer
421 */
422int usb_get_configuration_no(struct usb_device *dev,unsigned char *buffer,int cfgno)
423{
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200424 int result;
wdenkaffae2b2002-08-17 09:36:01 +0000425 unsigned int tmp;
426 struct usb_config_descriptor *config;
427
428
429 config=(struct usb_config_descriptor *)&buffer[0];
430 result = usb_get_descriptor(dev, USB_DT_CONFIG, cfgno, buffer, 8);
431 if (result < 8) {
432 if (result < 0)
433 printf("unable to get descriptor, error %lX\n",dev->status);
434 else
435 printf("config descriptor too short (expected %i, got %i)\n",8,result);
436 return -1;
437 }
Christian Eggersc9182612008-05-21 22:12:00 +0200438 tmp = le16_to_cpu(config->wTotalLength);
wdenkaffae2b2002-08-17 09:36:01 +0000439
wdenkcd0a9de2004-02-23 20:48:38 +0000440 if (tmp > USB_BUFSIZ) {
441 USB_PRINTF("usb_get_configuration_no: failed to get descriptor - too long: %d\n",
442 tmp);
443 return -1;
444 }
445
wdenkaffae2b2002-08-17 09:36:01 +0000446 result = usb_get_descriptor(dev, USB_DT_CONFIG, cfgno, buffer, tmp);
447 USB_PRINTF("get_conf_no %d Result %d, wLength %d\n",cfgno,result,tmp);
448 return result;
449}
450
451/********************************************************************
452 * set address of a device to the value in dev->devnum.
453 * This can only be done by addressing the device via the default address (0)
454 */
455int usb_set_address(struct usb_device *dev)
456{
457 int res;
458
459 USB_PRINTF("set address %d\n",dev->devnum);
460 res=usb_control_msg(dev, usb_snddefctrl(dev),
461 USB_REQ_SET_ADDRESS, 0,
462 (dev->devnum),0,
463 NULL,0, USB_CNTL_TIMEOUT);
464 return res;
465}
466
467/********************************************************************
468 * set interface number to interface
469 */
470int usb_set_interface(struct usb_device *dev, int interface, int alternate)
471{
472 struct usb_interface_descriptor *if_face = NULL;
473 int ret, i;
474
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200475 for (i = 0; i < dev->config.bNumInterfaces; i++) {
wdenkaffae2b2002-08-17 09:36:01 +0000476 if (dev->config.if_desc[i].bInterfaceNumber == interface) {
477 if_face = &dev->config.if_desc[i];
478 break;
479 }
480 }
481 if (!if_face) {
482 printf("selecting invalid interface %d", interface);
483 return -1;
484 }
Bartlomiej Sieka7455af42006-08-02 00:54:18 +0200485 /*
486 * We should return now for devices with only one alternate setting.
487 * According to 9.4.10 of the Universal Serial Bus Specification Revision 2.0
488 * such devices can return with a STALL. This results in some USB sticks
489 * timeouting during initialization and then being unusable in U-Boot.
490 */
491 if (if_face->num_altsetting == 1)
492 return 0;
wdenkaffae2b2002-08-17 09:36:01 +0000493
494 if ((ret = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
495 USB_REQ_SET_INTERFACE, USB_RECIP_INTERFACE, alternate,
496 interface, NULL, 0, USB_CNTL_TIMEOUT * 5)) < 0)
497 return ret;
498
wdenkaffae2b2002-08-17 09:36:01 +0000499 return 0;
500}
501
502/********************************************************************
503 * set configuration number to configuration
504 */
505int usb_set_configuration(struct usb_device *dev, int configuration)
506{
507 int res;
508 USB_PRINTF("set configuration %d\n",configuration);
509 /* set setup command */
510 res=usb_control_msg(dev, usb_sndctrlpipe(dev,0),
511 USB_REQ_SET_CONFIGURATION, 0,
512 configuration,0,
513 NULL,0, USB_CNTL_TIMEOUT);
514 if(res==0) {
515 dev->toggle[0] = 0;
516 dev->toggle[1] = 0;
517 return 0;
518 }
519 else
520 return -1;
521}
522
523/********************************************************************
524 * set protocol to protocol
525 */
526int usb_set_protocol(struct usb_device *dev, int ifnum, int protocol)
527{
528 return usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
529 USB_REQ_SET_PROTOCOL, USB_TYPE_CLASS | USB_RECIP_INTERFACE,
530 protocol, ifnum, NULL, 0, USB_CNTL_TIMEOUT);
531}
532
533/********************************************************************
534 * set idle
535 */
536int usb_set_idle(struct usb_device *dev, int ifnum, int duration, int report_id)
537{
538 return usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
539 USB_REQ_SET_IDLE, USB_TYPE_CLASS | USB_RECIP_INTERFACE,
540 (duration << 8) | report_id, ifnum, NULL, 0, USB_CNTL_TIMEOUT);
541}
542
543/********************************************************************
544 * get report
545 */
546int usb_get_report(struct usb_device *dev, int ifnum, unsigned char type, unsigned char id, void *buf, int size)
547{
548 return usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
549 USB_REQ_GET_REPORT, USB_DIR_IN | USB_TYPE_CLASS | USB_RECIP_INTERFACE,
550 (type << 8) + id, ifnum, buf, size, USB_CNTL_TIMEOUT);
551}
552
553/********************************************************************
554 * get class descriptor
555 */
556int usb_get_class_descriptor(struct usb_device *dev, int ifnum,
557 unsigned char type, unsigned char id, void *buf, int size)
558{
559 return usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
560 USB_REQ_GET_DESCRIPTOR, USB_RECIP_INTERFACE | USB_DIR_IN,
561 (type << 8) + id, ifnum, buf, size, USB_CNTL_TIMEOUT);
562}
563
564/********************************************************************
565 * get string index in buffer
566 */
567int usb_get_string(struct usb_device *dev, unsigned short langid, unsigned char index, void *buf, int size)
568{
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200569 int i;
570 int result;
571
572 for (i = 0; i < 3; ++i) {
573 /* some devices are flaky */
574 result = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
575 USB_REQ_GET_DESCRIPTOR, USB_DIR_IN,
Wolfgang Denk095b8a32005-08-02 17:06:17 +0200576 (USB_DT_STRING << 8) + index, langid, buf, size,
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200577 USB_CNTL_TIMEOUT);
578
579 if (result > 0)
580 break;
Wolfgang Denk095b8a32005-08-02 17:06:17 +0200581 }
582
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200583 return result;
wdenkaffae2b2002-08-17 09:36:01 +0000584}
585
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200586
587static void usb_try_string_workarounds(unsigned char *buf, int *length)
588{
589 int newlength, oldlength = *length;
590
591 for (newlength = 2; newlength + 1 < oldlength; newlength += 2)
592 if (!isprint(buf[newlength]) || buf[newlength + 1])
593 break;
594
595 if (newlength > 2) {
596 buf[0] = newlength;
597 *length = newlength;
598 }
599}
600
601
602static int usb_string_sub(struct usb_device *dev, unsigned int langid,
603 unsigned int index, unsigned char *buf)
604{
605 int rc;
606
607 /* Try to read the string descriptor by asking for the maximum
608 * possible number of bytes */
609 rc = usb_get_string(dev, langid, index, buf, 255);
610
611 /* If that failed try to read the descriptor length, then
612 * ask for just that many bytes */
613 if (rc < 2) {
614 rc = usb_get_string(dev, langid, index, buf, 2);
615 if (rc == 2)
616 rc = usb_get_string(dev, langid, index, buf, buf[0]);
617 }
618
619 if (rc >= 2) {
620 if (!buf[0] && !buf[1])
621 usb_try_string_workarounds(buf, &rc);
622
623 /* There might be extra junk at the end of the descriptor */
624 if (buf[0] < rc)
625 rc = buf[0];
626
627 rc = rc - (rc & 1); /* force a multiple of two */
628 }
629
630 if (rc < 2)
Wolfgang Denk095b8a32005-08-02 17:06:17 +0200631 rc = -1;
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200632
633 return rc;
634}
635
636
wdenkaffae2b2002-08-17 09:36:01 +0000637/********************************************************************
638 * usb_string:
639 * Get string index and translate it to ascii.
640 * returns string length (> 0) or error (< 0)
641 */
642int usb_string(struct usb_device *dev, int index, char *buf, size_t size)
643{
wdenkcd0a9de2004-02-23 20:48:38 +0000644 unsigned char mybuf[USB_BUFSIZ];
wdenkaffae2b2002-08-17 09:36:01 +0000645 unsigned char *tbuf;
646 int err;
647 unsigned int u, idx;
648
649 if (size <= 0 || !buf || !index)
650 return -1;
651 buf[0] = 0;
Wolfgang Denkd0ff51b2008-07-14 15:19:07 +0200652 tbuf = &mybuf[0];
wdenkaffae2b2002-08-17 09:36:01 +0000653
654 /* get langid for strings if it's not yet known */
655 if (!dev->have_langid) {
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200656 err = usb_string_sub(dev, 0, 0, tbuf);
wdenkaffae2b2002-08-17 09:36:01 +0000657 if (err < 0) {
658 USB_PRINTF("error getting string descriptor 0 (error=%x)\n",dev->status);
659 return -1;
660 } else if (tbuf[0] < 4) {
661 USB_PRINTF("string descriptor 0 too short\n");
662 return -1;
663 } else {
664 dev->have_langid = -1;
665 dev->string_langid = tbuf[2] | (tbuf[3]<< 8);
666 /* always use the first langid listed */
667 USB_PRINTF("USB device number %d default language ID 0x%x\n",
668 dev->devnum, dev->string_langid);
669 }
670 }
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200671
672 err = usb_string_sub(dev, dev->string_langid, index, tbuf);
wdenkaffae2b2002-08-17 09:36:01 +0000673 if (err < 0)
674 return err;
wdenkcd0a9de2004-02-23 20:48:38 +0000675
wdenkaffae2b2002-08-17 09:36:01 +0000676 size--; /* leave room for trailing NULL char in output buffer */
677 for (idx = 0, u = 2; u < err; u += 2) {
678 if (idx >= size)
679 break;
680 if (tbuf[u+1]) /* high byte */
681 buf[idx++] = '?'; /* non-ASCII character */
682 else
683 buf[idx++] = tbuf[u];
684 }
685 buf[idx] = 0;
686 err = idx;
687 return err;
688}
689
690
691/********************************************************************
692 * USB device handling:
693 * the USB device are static allocated [USB_MAX_DEVICE].
694 */
695
696
697/* returns a pointer to the device with the index [index].
698 * if the device is not assigned (dev->devnum==-1) returns NULL
699 */
700struct usb_device * usb_get_dev_index(int index)
701{
702 if(usb_dev[index].devnum==-1)
703 return NULL;
704 else
705 return &usb_dev[index];
706}
707
708
709/* returns a pointer of a new device structure or NULL, if
710 * no device struct is available
711 */
712struct usb_device * usb_alloc_new_device(void)
713{
714 int i;
715 USB_PRINTF("New Device %d\n",dev_index);
716 if(dev_index==USB_MAX_DEVICE) {
wdenk5f535fe2003-09-18 09:21:33 +0000717 printf("ERROR, too many USB Devices, max=%d\n",USB_MAX_DEVICE);
wdenkaffae2b2002-08-17 09:36:01 +0000718 return NULL;
719 }
720 usb_dev[dev_index].devnum=dev_index+1; /* default Address is 0, real addresses start with 1 */
721 usb_dev[dev_index].maxchild=0;
722 for(i=0;i<USB_MAXCHILDREN;i++)
723 usb_dev[dev_index].children[i]=NULL;
724 usb_dev[dev_index].parent=NULL;
725 dev_index++;
726 return &usb_dev[dev_index-1];
727}
728
729
730/*
731 * By the time we get here, the device has gotten a new device ID
732 * and is in the default state. We need to identify the thing and
733 * get the ball rolling..
734 *
735 * Returns 0 for success, != 0 for error.
736 */
737int usb_new_device(struct usb_device *dev)
738{
739 int addr, err;
740 int tmp;
wdenkcd0a9de2004-02-23 20:48:38 +0000741 unsigned char tmpbuf[USB_BUFSIZ];
wdenkaffae2b2002-08-17 09:36:01 +0000742
743 dev->descriptor.bMaxPacketSize0 = 8; /* Start off at 8 bytes */
744 dev->maxpacketsize = 0; /* Default to 8 byte max packet size */
745 dev->epmaxpacketin [0] = 8;
746 dev->epmaxpacketout[0] = 8;
747
748 /* We still haven't set the Address yet */
749 addr = dev->devnum;
750 dev->devnum = 0;
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200751
752#undef NEW_INIT_SEQ
753#ifdef NEW_INIT_SEQ
754 /* this is a Windows scheme of initialization sequence, with double
755 * reset of the device. Some equipment is said to work only with such
756 * init sequence; this patch is based on the work by Alan Stern:
757 * http://sourceforge.net/mailarchive/forum.php?thread_id=5729457&forum_id=5398
758 */
759 int j;
760 struct usb_device_descriptor *desc;
761 int port = -1;
762 struct usb_device *parent = dev->parent;
763 unsigned short portstatus;
764
765 /* send 64-byte GET-DEVICE-DESCRIPTOR request. Since the descriptor is
766 * only 18 bytes long, this will terminate with a short packet. But if
767 * the maxpacket size is 8 or 16 the device may be waiting to transmit
768 * some more. */
769
770 desc = (struct usb_device_descriptor *)tmpbuf;
771 desc->bMaxPacketSize0 = 0;
772 for (j = 0; j < 3; ++j) {
773 err = usb_get_descriptor(dev, USB_DT_DEVICE, 0, desc, 64);
774 if (err < 0) {
775 USB_PRINTF("usb_new_device: 64 byte descr\n");
776 break;
777 }
778 }
779 dev->descriptor.bMaxPacketSize0 = desc->bMaxPacketSize0;
Wolfgang Denk095b8a32005-08-02 17:06:17 +0200780
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200781 /* find the port number we're at */
782 if (parent) {
Wolfgang Denk095b8a32005-08-02 17:06:17 +0200783
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200784 for (j = 0; j < parent->maxchild; j++) {
785 if (parent->children[j] == dev) {
786 port = j;
787 break;
788 }
789 }
790 if (port < 0) {
791 printf("usb_new_device: cannot locate device's port..\n");
792 return 1;
793 }
794
795 /* reset the port for the second time */
796 err = hub_port_reset(dev->parent, port, &portstatus);
797 if (err < 0) {
798 printf("\n Couldn't reset port %i\n", port);
799 return 1;
800 }
801 }
802#else
803 /* and this is the old and known way of initializing devices */
wdenkaffae2b2002-08-17 09:36:01 +0000804 err = usb_get_descriptor(dev, USB_DT_DEVICE, 0, &dev->descriptor, 8);
805 if (err < 8) {
806 printf("\n USB device not responding, giving up (status=%lX)\n",dev->status);
807 return 1;
808 }
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200809#endif
810
wdenkaffae2b2002-08-17 09:36:01 +0000811 dev->epmaxpacketin [0] = dev->descriptor.bMaxPacketSize0;
812 dev->epmaxpacketout[0] = dev->descriptor.bMaxPacketSize0;
813 switch (dev->descriptor.bMaxPacketSize0) {
814 case 8: dev->maxpacketsize = 0; break;
815 case 16: dev->maxpacketsize = 1; break;
816 case 32: dev->maxpacketsize = 2; break;
817 case 64: dev->maxpacketsize = 3; break;
818 }
819 dev->devnum = addr;
820
821 err = usb_set_address(dev); /* set address */
822
823 if (err < 0) {
824 printf("\n USB device not accepting new address (error=%lX)\n", dev->status);
825 return 1;
826 }
827
828 wait_ms(10); /* Let the SET_ADDRESS settle */
829
830 tmp = sizeof(dev->descriptor);
831
832 err = usb_get_descriptor(dev, USB_DT_DEVICE, 0, &dev->descriptor, sizeof(dev->descriptor));
833 if (err < tmp) {
834 if (err < 0)
835 printf("unable to get device descriptor (error=%d)\n",err);
836 else
837 printf("USB device descriptor short read (expected %i, got %i)\n",tmp,err);
838 return 1;
839 }
840 /* correct le values */
Christian Eggersc9182612008-05-21 22:12:00 +0200841 le16_to_cpus(&dev->descriptor.bcdUSB);
842 le16_to_cpus(&dev->descriptor.idVendor);
843 le16_to_cpus(&dev->descriptor.idProduct);
844 le16_to_cpus(&dev->descriptor.bcdDevice);
wdenkaffae2b2002-08-17 09:36:01 +0000845 /* only support for one config for now */
846 usb_get_configuration_no(dev,&tmpbuf[0],0);
847 usb_parse_config(dev,&tmpbuf[0],0);
848 usb_set_maxpacket(dev);
849 /* we set the default configuration here */
850 if (usb_set_configuration(dev, dev->config.bConfigurationValue)) {
851 printf("failed to set default configuration len %d, status %lX\n",dev->act_len,dev->status);
852 return -1;
853 }
854 USB_PRINTF("new device strings: Mfr=%d, Product=%d, SerialNumber=%d\n",
855 dev->descriptor.iManufacturer, dev->descriptor.iProduct, dev->descriptor.iSerialNumber);
856 memset(dev->mf, 0, sizeof(dev->mf));
857 memset(dev->prod, 0, sizeof(dev->prod));
858 memset(dev->serial, 0, sizeof(dev->serial));
859 if (dev->descriptor.iManufacturer)
860 usb_string(dev, dev->descriptor.iManufacturer, dev->mf, sizeof(dev->mf));
861 if (dev->descriptor.iProduct)
862 usb_string(dev, dev->descriptor.iProduct, dev->prod, sizeof(dev->prod));
863 if (dev->descriptor.iSerialNumber)
864 usb_string(dev, dev->descriptor.iSerialNumber, dev->serial, sizeof(dev->serial));
865 USB_PRINTF("Manufacturer %s\n", dev->mf);
866 USB_PRINTF("Product %s\n", dev->prod);
867 USB_PRINTF("SerialNumber %s\n", dev->serial);
868 /* now prode if the device is a hub */
869 usb_hub_probe(dev,0);
870 return 0;
871}
872
873/* build device Tree */
874void usb_scan_devices(void)
875{
876 int i;
877 struct usb_device *dev;
878
879 /* first make all devices unknown */
880 for(i=0;i<USB_MAX_DEVICE;i++) {
881 memset(&usb_dev[i],0,sizeof(struct usb_device));
Wolfgang Denkd0ff51b2008-07-14 15:19:07 +0200882 usb_dev[i].devnum = -1;
wdenkaffae2b2002-08-17 09:36:01 +0000883 }
884 dev_index=0;
885 /* device 0 is always present (root hub, so let it analyze) */
886 dev=usb_alloc_new_device();
887 usb_new_device(dev);
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200888 printf("%d USB Device(s) found\n",dev_index);
wdenkaffae2b2002-08-17 09:36:01 +0000889 /* insert "driver" if possible */
890#ifdef CONFIG_USB_KEYBOARD
891 drv_usb_kbd_init();
892 USB_PRINTF("scan end\n");
893#endif
894}
895
896
897/****************************************************************************
898 * HUB "Driver"
899 * Probes device for being a hub and configurate it
900 */
901
902#undef USB_HUB_DEBUG
903
904#ifdef USB_HUB_DEBUG
905#define USB_HUB_PRINTF(fmt,args...) printf (fmt ,##args)
906#else
907#define USB_HUB_PRINTF(fmt,args...)
908#endif
909
910
911static struct usb_hub_device hub_dev[USB_MAX_HUB];
912static int usb_hub_index;
913
914
915int usb_get_hub_descriptor(struct usb_device *dev, void *data, int size)
916{
917 return usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
918 USB_REQ_GET_DESCRIPTOR, USB_DIR_IN | USB_RT_HUB,
919 USB_DT_HUB << 8, 0, data, size, USB_CNTL_TIMEOUT);
920}
921
922int usb_clear_hub_feature(struct usb_device *dev, int feature)
923{
924 return usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
925 USB_REQ_CLEAR_FEATURE, USB_RT_HUB, feature, 0, NULL, 0, USB_CNTL_TIMEOUT);
926}
927
928int usb_clear_port_feature(struct usb_device *dev, int port, int feature)
929{
930 return usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
931 USB_REQ_CLEAR_FEATURE, USB_RT_PORT, feature, port, NULL, 0, USB_CNTL_TIMEOUT);
932}
933
934int usb_set_port_feature(struct usb_device *dev, int port, int feature)
935{
936 return usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
937 USB_REQ_SET_FEATURE, USB_RT_PORT, feature, port, NULL, 0, USB_CNTL_TIMEOUT);
938}
939
940int usb_get_hub_status(struct usb_device *dev, void *data)
941{
942 return usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
943 USB_REQ_GET_STATUS, USB_DIR_IN | USB_RT_HUB, 0, 0,
944 data, sizeof(struct usb_hub_status), USB_CNTL_TIMEOUT);
945}
946
947int usb_get_port_status(struct usb_device *dev, int port, void *data)
948{
949 return usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
950 USB_REQ_GET_STATUS, USB_DIR_IN | USB_RT_PORT, 0, port,
951 data, sizeof(struct usb_hub_status), USB_CNTL_TIMEOUT);
952}
953
954
955static void usb_hub_power_on(struct usb_hub_device *hub)
956{
957 int i;
958 struct usb_device *dev;
959
960 dev=hub->pusb_dev;
961 /* Enable power to the ports */
962 USB_HUB_PRINTF("enabling power on all ports\n");
963 for (i = 0; i < dev->maxchild; i++) {
964 usb_set_port_feature(dev, i + 1, USB_PORT_FEAT_POWER);
965 USB_HUB_PRINTF("port %d returns %lX\n",i+1,dev->status);
966 wait_ms(hub->desc.bPwrOn2PwrGood * 2);
967 }
968}
969
970void usb_hub_reset(void)
971{
972 usb_hub_index=0;
973}
974
975struct usb_hub_device *usb_hub_allocate(void)
976{
977 if(usb_hub_index<USB_MAX_HUB) {
978 return &hub_dev[usb_hub_index++];
979 }
980 printf("ERROR: USB_MAX_HUB (%d) reached\n",USB_MAX_HUB);
981 return NULL;
982}
983
984#define MAX_TRIES 5
985
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200986static int hub_port_reset(struct usb_device *dev, int port,
987 unsigned short *portstat)
988{
989 int tries;
990 struct usb_port_status portsts;
991 unsigned short portstatus, portchange;
992
993
994 USB_HUB_PRINTF("hub_port_reset: resetting port %d...\n", port);
995 for(tries=0;tries<MAX_TRIES;tries++) {
996
997 usb_set_port_feature(dev, port + 1, USB_PORT_FEAT_RESET);
998 wait_ms(200);
999
1000 if (usb_get_port_status(dev, port + 1, &portsts)<0) {
1001 USB_HUB_PRINTF("get_port_status failed status %lX\n",dev->status);
1002 return -1;
1003 }
Christian Eggersc9182612008-05-21 22:12:00 +02001004 portstatus = le16_to_cpu(portsts.wPortStatus);
1005 portchange = le16_to_cpu(portsts.wPortChange);
Wolfgang Denk9c998aa2005-07-21 11:57:57 +02001006 USB_HUB_PRINTF("portstatus %x, change %x, %s\n", portstatus ,portchange,
1007 portstatus&(1<<USB_PORT_FEAT_LOWSPEED) ? "Low Speed" : "High Speed");
1008 USB_HUB_PRINTF("STAT_C_CONNECTION = %d STAT_CONNECTION = %d USB_PORT_STAT_ENABLE %d\n",
1009 (portchange & USB_PORT_STAT_C_CONNECTION) ? 1 : 0,
1010 (portstatus & USB_PORT_STAT_CONNECTION) ? 1 : 0,
1011 (portstatus & USB_PORT_STAT_ENABLE) ? 1 : 0);
1012 if ((portchange & USB_PORT_STAT_C_CONNECTION) ||
1013 !(portstatus & USB_PORT_STAT_CONNECTION))
1014 return -1;
1015
1016 if (portstatus & USB_PORT_STAT_ENABLE) {
Wolfgang Denk095b8a32005-08-02 17:06:17 +02001017
Wolfgang Denk9c998aa2005-07-21 11:57:57 +02001018 break;
1019 }
1020
1021 wait_ms(200);
1022 }
1023
1024 if (tries==MAX_TRIES) {
1025 USB_HUB_PRINTF("Cannot enable port %i after %i retries, disabling port.\n", port+1, MAX_TRIES);
1026 USB_HUB_PRINTF("Maybe the USB cable is bad?\n");
1027 return -1;
1028 }
1029
1030 usb_clear_port_feature(dev, port + 1, USB_PORT_FEAT_C_RESET);
1031 *portstat = portstatus;
1032 return 0;
1033
1034}
1035
1036
wdenkaffae2b2002-08-17 09:36:01 +00001037void usb_hub_port_connect_change(struct usb_device *dev, int port)
1038{
1039 struct usb_device *usb;
1040 struct usb_port_status portsts;
1041 unsigned short portstatus, portchange;
wdenkaffae2b2002-08-17 09:36:01 +00001042
1043 /* Check status */
1044 if (usb_get_port_status(dev, port + 1, &portsts)<0) {
1045 USB_HUB_PRINTF("get_port_status failed\n");
1046 return;
1047 }
1048
Christian Eggersc9182612008-05-21 22:12:00 +02001049 portstatus = le16_to_cpu(portsts.wPortStatus);
1050 portchange = le16_to_cpu(portsts.wPortChange);
wdenkaffae2b2002-08-17 09:36:01 +00001051 USB_HUB_PRINTF("portstatus %x, change %x, %s\n", portstatus, portchange,
1052 portstatus&(1<<USB_PORT_FEAT_LOWSPEED) ? "Low Speed" : "High Speed");
1053
1054 /* Clear the connection change status */
1055 usb_clear_port_feature(dev, port + 1, USB_PORT_FEAT_C_CONNECTION);
1056
1057 /* Disconnect any existing devices under this port */
1058 if (((!(portstatus & USB_PORT_STAT_CONNECTION)) &&
1059 (!(portstatus & USB_PORT_STAT_ENABLE)))|| (dev->children[port])) {
1060 USB_HUB_PRINTF("usb_disconnect(&hub->children[port]);\n");
1061 /* Return now if nothing is connected */
1062 if (!(portstatus & USB_PORT_STAT_CONNECTION))
1063 return;
1064 }
1065 wait_ms(200);
1066
1067 /* Reset the port */
Wolfgang Denk9c998aa2005-07-21 11:57:57 +02001068 if (hub_port_reset(dev, port, &portstatus) < 0) {
1069 printf("cannot reset port %i!?\n", port + 1);
wdenkaffae2b2002-08-17 09:36:01 +00001070 return;
1071 }
1072
wdenkaffae2b2002-08-17 09:36:01 +00001073 wait_ms(200);
1074
1075 /* Allocate a new device struct for it */
1076 usb=usb_alloc_new_device();
1077 usb->slow = (portstatus & USB_PORT_STAT_LOW_SPEED) ? 1 : 0;
1078
1079 dev->children[port] = usb;
1080 usb->parent=dev;
1081 /* Run it through the hoops (find a driver, etc) */
1082 if (usb_new_device(usb)) {
1083 /* Woops, disable the port */
1084 USB_HUB_PRINTF("hub: disabling port %d\n", port + 1);
1085 usb_clear_port_feature(dev, port + 1, USB_PORT_FEAT_ENABLE);
1086 }
1087}
1088
1089
1090int usb_hub_configure(struct usb_device *dev)
1091{
wdenkcd0a9de2004-02-23 20:48:38 +00001092 unsigned char buffer[USB_BUFSIZ], *bitmap;
wdenkaffae2b2002-08-17 09:36:01 +00001093 struct usb_hub_descriptor *descriptor;
1094 struct usb_hub_status *hubsts;
1095 int i;
1096 struct usb_hub_device *hub;
1097
1098 /* "allocate" Hub device */
1099 hub=usb_hub_allocate();
1100 if(hub==NULL)
1101 return -1;
1102 hub->pusb_dev=dev;
1103 /* Get the the hub descriptor */
1104 if (usb_get_hub_descriptor(dev, buffer, 4) < 0) {
1105 USB_HUB_PRINTF("usb_hub_configure: failed to get hub descriptor, giving up %lX\n",dev->status);
1106 return -1;
1107 }
1108 descriptor = (struct usb_hub_descriptor *)buffer;
wdenkcd0a9de2004-02-23 20:48:38 +00001109
wdenke86e5a02004-10-17 21:12:06 +00001110 /* silence compiler warning if USB_BUFSIZ is > 256 [= sizeof(char)] */
1111 i = descriptor->bLength;
1112 if (i > USB_BUFSIZ) {
Hebbar727f6332008-05-20 02:16:36 -07001113 USB_HUB_PRINTF("usb_hub_configure: failed to get hub descriptor - too long: %d\n",
wdenkcd0a9de2004-02-23 20:48:38 +00001114 descriptor->bLength);
1115 return -1;
1116 }
1117
wdenkaffae2b2002-08-17 09:36:01 +00001118 if (usb_get_hub_descriptor(dev, buffer, descriptor->bLength) < 0) {
1119 USB_HUB_PRINTF("usb_hub_configure: failed to get hub descriptor 2nd giving up %lX\n",dev->status);
1120 return -1;
1121 }
1122 memcpy((unsigned char *)&hub->desc,buffer,descriptor->bLength);
1123 /* adjust 16bit values */
Christian Eggersc9182612008-05-21 22:12:00 +02001124 hub->desc.wHubCharacteristics = le16_to_cpu(descriptor->wHubCharacteristics);
wdenkaffae2b2002-08-17 09:36:01 +00001125 /* set the bitmap */
1126 bitmap=(unsigned char *)&hub->desc.DeviceRemovable[0];
1127 memset(bitmap,0xff,(USB_MAXCHILDREN+1+7)/8); /* devices not removable by default */
1128 bitmap=(unsigned char *)&hub->desc.PortPowerCtrlMask[0];
1129 memset(bitmap,0xff,(USB_MAXCHILDREN+1+7)/8); /* PowerMask = 1B */
1130 for(i=0;i<((hub->desc.bNbrPorts + 1 + 7)/8);i++) {
1131 hub->desc.DeviceRemovable[i]=descriptor->DeviceRemovable[i];
1132 }
1133 for(i=0;i<((hub->desc.bNbrPorts + 1 + 7)/8);i++) {
1134 hub->desc.DeviceRemovable[i]=descriptor->PortPowerCtrlMask[i];
1135 }
1136 dev->maxchild = descriptor->bNbrPorts;
1137 USB_HUB_PRINTF("%d ports detected\n", dev->maxchild);
1138
1139 switch (hub->desc.wHubCharacteristics & HUB_CHAR_LPSM) {
1140 case 0x00:
1141 USB_HUB_PRINTF("ganged power switching\n");
1142 break;
1143 case 0x01:
1144 USB_HUB_PRINTF("individual port power switching\n");
1145 break;
1146 case 0x02:
1147 case 0x03:
1148 USB_HUB_PRINTF("unknown reserved power switching mode\n");
1149 break;
1150 }
1151
1152 if (hub->desc.wHubCharacteristics & HUB_CHAR_COMPOUND)
1153 USB_HUB_PRINTF("part of a compound device\n");
1154 else
1155 USB_HUB_PRINTF("standalone hub\n");
1156
1157 switch (hub->desc.wHubCharacteristics & HUB_CHAR_OCPM) {
1158 case 0x00:
1159 USB_HUB_PRINTF("global over-current protection\n");
1160 break;
1161 case 0x08:
1162 USB_HUB_PRINTF("individual port over-current protection\n");
1163 break;
1164 case 0x10:
1165 case 0x18:
1166 USB_HUB_PRINTF("no over-current protection\n");
1167 break;
1168 }
1169 USB_HUB_PRINTF("power on to power good time: %dms\n", descriptor->bPwrOn2PwrGood * 2);
1170 USB_HUB_PRINTF("hub controller current requirement: %dmA\n", descriptor->bHubContrCurrent);
1171 for (i = 0; i < dev->maxchild; i++)
1172 USB_HUB_PRINTF("port %d is%s removable\n", i + 1,
1173 hub->desc.DeviceRemovable[(i + 1)/8] & (1 << ((i + 1)%8)) ? " not" : "");
wdenkcd0a9de2004-02-23 20:48:38 +00001174 if (sizeof(struct usb_hub_status) > USB_BUFSIZ) {
1175 USB_HUB_PRINTF("usb_hub_configure: failed to get Status - too long: %d\n",
1176 descriptor->bLength);
1177 return -1;
1178 }
1179
wdenkaffae2b2002-08-17 09:36:01 +00001180 if (usb_get_hub_status(dev, buffer) < 0) {
1181 USB_HUB_PRINTF("usb_hub_configure: failed to get Status %lX\n",dev->status);
1182 return -1;
1183 }
1184 hubsts = (struct usb_hub_status *)buffer;
1185 USB_HUB_PRINTF("get_hub_status returned status %X, change %X\n",
Christian Eggersc9182612008-05-21 22:12:00 +02001186 le16_to_cpu(hubsts->wHubStatus),le16_to_cpu(hubsts->wHubChange));
wdenkaffae2b2002-08-17 09:36:01 +00001187 USB_HUB_PRINTF("local power source is %s\n",
Christian Eggersc9182612008-05-21 22:12:00 +02001188 (le16_to_cpu(hubsts->wHubStatus) & HUB_STATUS_LOCAL_POWER) ? "lost (inactive)" : "good");
wdenkaffae2b2002-08-17 09:36:01 +00001189 USB_HUB_PRINTF("%sover-current condition exists\n",
Christian Eggersc9182612008-05-21 22:12:00 +02001190 (le16_to_cpu(hubsts->wHubStatus) & HUB_STATUS_OVERCURRENT) ? "" : "no ");
wdenkaffae2b2002-08-17 09:36:01 +00001191 usb_hub_power_on(hub);
1192 for (i = 0; i < dev->maxchild; i++) {
1193 struct usb_port_status portsts;
1194 unsigned short portstatus, portchange;
1195
1196 if (usb_get_port_status(dev, i + 1, &portsts) < 0) {
1197 USB_HUB_PRINTF("get_port_status failed\n");
1198 continue;
1199 }
Christian Eggersc9182612008-05-21 22:12:00 +02001200 portstatus = le16_to_cpu(portsts.wPortStatus);
1201 portchange = le16_to_cpu(portsts.wPortChange);
wdenkaffae2b2002-08-17 09:36:01 +00001202 USB_HUB_PRINTF("Port %d Status %X Change %X\n",i+1,portstatus,portchange);
1203 if (portchange & USB_PORT_STAT_C_CONNECTION) {
1204 USB_HUB_PRINTF("port %d connection change\n", i + 1);
1205 usb_hub_port_connect_change(dev, i);
1206 }
1207 if (portchange & USB_PORT_STAT_C_ENABLE) {
1208 USB_HUB_PRINTF("port %d enable change, status %x\n", i + 1, portstatus);
1209 usb_clear_port_feature(dev, i + 1, USB_PORT_FEAT_C_ENABLE);
1210
1211 /* EM interference sometimes causes bad shielded USB devices to
1212 * be shutdown by the hub, this hack enables them again.
1213 * Works at least with mouse driver */
1214 if (!(portstatus & USB_PORT_STAT_ENABLE) &&
1215 (portstatus & USB_PORT_STAT_CONNECTION) && (dev->children[i])) {
1216 USB_HUB_PRINTF("already running port %i disabled by hub (EMI?), re-enabling...\n",
1217 i + 1);
1218 usb_hub_port_connect_change(dev, i);
1219 }
1220 }
1221 if (portstatus & USB_PORT_STAT_SUSPEND) {
1222 USB_HUB_PRINTF("port %d suspend change\n", i + 1);
1223 usb_clear_port_feature(dev, i + 1, USB_PORT_FEAT_SUSPEND);
1224 }
1225
1226 if (portchange & USB_PORT_STAT_C_OVERCURRENT) {
1227 USB_HUB_PRINTF("port %d over-current change\n", i + 1);
1228 usb_clear_port_feature(dev, i + 1, USB_PORT_FEAT_C_OVER_CURRENT);
1229 usb_hub_power_on(hub);
1230 }
1231
1232 if (portchange & USB_PORT_STAT_C_RESET) {
1233 USB_HUB_PRINTF("port %d reset change\n", i + 1);
1234 usb_clear_port_feature(dev, i + 1, USB_PORT_FEAT_C_RESET);
1235 }
1236 } /* end for i all ports */
1237
1238 return 0;
1239}
1240
1241int usb_hub_probe(struct usb_device *dev, int ifnum)
1242{
1243 struct usb_interface_descriptor *iface;
1244 struct usb_endpoint_descriptor *ep;
1245 int ret;
1246
1247 iface = &dev->config.if_desc[ifnum];
1248 /* Is it a hub? */
1249 if (iface->bInterfaceClass != USB_CLASS_HUB)
1250 return 0;
1251 /* Some hubs have a subclass of 1, which AFAICT according to the */
1252 /* specs is not defined, but it works */
1253 if ((iface->bInterfaceSubClass != 0) &&
1254 (iface->bInterfaceSubClass != 1))
1255 return 0;
1256 /* Multiple endpoints? What kind of mutant ninja-hub is this? */
1257 if (iface->bNumEndpoints != 1)
1258 return 0;
1259 ep = &iface->ep_desc[0];
1260 /* Output endpoint? Curiousier and curiousier.. */
1261 if (!(ep->bEndpointAddress & USB_DIR_IN))
1262 return 0;
1263 /* If it's not an interrupt endpoint, we'd better punt! */
1264 if ((ep->bmAttributes & 3) != 3)
1265 return 0;
1266 /* We found a hub */
1267 USB_HUB_PRINTF("USB hub found\n");
1268 ret=usb_hub_configure(dev);
1269 return ret;
1270}
1271
wdenkaffae2b2002-08-17 09:36:01 +00001272/* EOF */