blob: b1b7aec621a013b2ce4237038bd30bf2ee4d5d28 [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 Denk6a3d6b02005-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 Denkc7a4f7d2005-07-21 11:57:57 +020050#include <linux/ctype.h>
wdenkaffae2b2002-08-17 09:36:01 +000051
52#if (CONFIG_COMMANDS & CFG_CMD_USB)
53
54#include <usb.h>
55#ifdef CONFIG_4xx
56#include <405gp_pci.h>
57#endif
58
Wolfgang Denkd06ce5d2005-08-02 17:06:17 +020059#undef USB_DEBUG
wdenkaffae2b2002-08-17 09:36:01 +000060
61#ifdef USB_DEBUG
62#define USB_PRINTF(fmt,args...) printf (fmt ,##args)
63#else
64#define USB_PRINTF(fmt,args...)
65#endif
66
wdenkf70cbb22004-02-23 20:48:38 +000067#define USB_BUFSIZ 512
68
wdenkaffae2b2002-08-17 09:36:01 +000069static struct usb_device usb_dev[USB_MAX_DEVICE];
70static int dev_index;
71static int running;
72static int asynch_allowed;
73static struct devrequest setup_packet;
74
75/**********************************************************************
76 * some forward declerations...
77 */
78void usb_scan_devices(void);
79
80int usb_hub_probe(struct usb_device *dev, int ifnum);
81void usb_hub_reset(void);
82
Wolfgang Denkc7a4f7d2005-07-21 11:57:57 +020083
wdenkaffae2b2002-08-17 09:36:01 +000084/***********************************************************************
85 * wait_ms
86 */
87
88void __inline__ wait_ms(unsigned long ms)
89{
90 while(ms-->0)
91 udelay(1000);
92}
93/***************************************************************************
94 * Init USB Device
95 */
96
97int usb_init(void)
98{
99 int result;
100
101 running=0;
102 dev_index=0;
103 asynch_allowed=1;
104 usb_hub_reset();
105 /* init low_level USB */
106 printf("USB: ");
107 result = usb_lowlevel_init();
108 /* if lowlevel init is OK, scan the bus for devices i.e. search HUBs and configure them */
109 if(result==0) {
110 printf("scanning bus for devices... ");
111 running=1;
112 usb_scan_devices();
113 return 0;
114 }
115 else {
116 printf("Error, couldn't init Lowlevel part\n");
117 return -1;
118 }
119}
120
121/******************************************************************************
122 * Stop USB this stops the LowLevel Part and deregisters USB devices.
123 */
124int usb_stop(void)
125{
126 asynch_allowed=1;
127 usb_hub_reset();
128 return usb_lowlevel_stop();
129}
130
131/*
132 * disables the asynch behaviour of the control message. This is used for data
133 * transfers that uses the exclusiv access to the control and bulk messages.
134 */
135void usb_disable_asynch(int disable)
136{
137 asynch_allowed=!disable;
138}
139
140
141/*-------------------------------------------------------------------
142 * Message wrappers.
143 *
144 */
145
146/*
147 * submits an Interrupt Message
148 */
149int usb_submit_int_msg(struct usb_device *dev, unsigned long pipe,
150 void *buffer,int transfer_len, int interval)
151{
152 return submit_int_msg(dev,pipe,buffer,transfer_len,interval);
153}
154
155/*
156 * submits a control message and waits for comletion (at least timeout * 1ms)
157 * If timeout is 0, we don't wait for completion (used as example to set and
158 * clear keyboards LEDs). For data transfers, (storage transfers) we don't
159 * allow control messages with 0 timeout, by previousely resetting the flag
160 * asynch_allowed (usb_disable_asynch(1)).
161 * returns the transfered length if OK or -1 if error. The transfered length
162 * and the current status are stored in the dev->act_len and dev->status.
163 */
164int usb_control_msg(struct usb_device *dev, unsigned int pipe,
165 unsigned char request, unsigned char requesttype,
166 unsigned short value, unsigned short index,
167 void *data, unsigned short size, int timeout)
168{
169 if((timeout==0)&&(!asynch_allowed)) /* request for a asynch control pipe is not allowed */
170 return -1;
Wolfgang Denkc7a4f7d2005-07-21 11:57:57 +0200171
wdenkaffae2b2002-08-17 09:36:01 +0000172 /* set setup command */
173 setup_packet.requesttype = requesttype;
174 setup_packet.request = request;
175 setup_packet.value = swap_16(value);
176 setup_packet.index = swap_16(index);
177 setup_packet.length = swap_16(size);
178 USB_PRINTF("usb_control_msg: request: 0x%X, requesttype: 0x%X\nvalue 0x%X index 0x%X length 0x%X\n",
179 request,requesttype,value,index,size);
180 dev->status=USB_ST_NOT_PROC; /*not yet processed */
181
182 submit_control_msg(dev,pipe,data,size,&setup_packet);
183 if(timeout==0) {
184 return (int)size;
185 }
186 while(timeout--) {
187 if(!((volatile unsigned long)dev->status & USB_ST_NOT_PROC))
188 break;
189 wait_ms(1);
190 }
191 if(dev->status==0)
192 return dev->act_len;
193 else {
194 return -1;
195 }
196}
197
198/*-------------------------------------------------------------------
199 * submits bulk message, and waits for completion. returns 0 if Ok or
200 * -1 if Error.
201 * synchronous behavior
202 */
203int usb_bulk_msg(struct usb_device *dev, unsigned int pipe,
204 void *data, int len, int *actual_length, int timeout)
205{
206 if (len < 0)
207 return -1;
208 dev->status=USB_ST_NOT_PROC; /*not yet processed */
209 submit_bulk_msg(dev,pipe,data,len);
210 while(timeout--) {
211 if(!((volatile unsigned long)dev->status & USB_ST_NOT_PROC))
212 break;
213 wait_ms(1);
214 }
215 *actual_length=dev->act_len;
216 if(dev->status==0)
217 return 0;
218 else
219 return -1;
220}
221
222
223/*-------------------------------------------------------------------
224 * Max Packet stuff
225 */
226
227/*
228 * returns the max packet size, depending on the pipe direction and
229 * the configurations values
230 */
231int usb_maxpacket(struct usb_device *dev,unsigned long pipe)
232{
233 if((pipe & USB_DIR_IN)==0) /* direction is out -> use emaxpacket out */
234 return(dev->epmaxpacketout[((pipe>>15) & 0xf)]);
235 else
236 return(dev->epmaxpacketin[((pipe>>15) & 0xf)]);
237}
238
239/*
240 * set the max packed value of all endpoints in the given configuration
241 */
242int usb_set_maxpacket(struct usb_device *dev)
243{
244 int i,ii,b;
245 struct usb_endpoint_descriptor *ep;
246
247 for(i=0; i<dev->config.bNumInterfaces;i++) {
248 for(ii=0; ii<dev->config.if_desc[i].bNumEndpoints; ii++) {
249 ep=&dev->config.if_desc[i].ep_desc[ii];
250 b=ep->bEndpointAddress & USB_ENDPOINT_NUMBER_MASK;
251
252 if((ep->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK)==USB_ENDPOINT_XFER_CONTROL) { /* Control => bidirectional */
253 dev->epmaxpacketout[b] = ep->wMaxPacketSize;
254 dev->epmaxpacketin [b] = ep->wMaxPacketSize;
255 USB_PRINTF("##Control EP epmaxpacketout/in[%d] = %d\n",b,dev->epmaxpacketin[b]);
256 }
257 else {
258 if ((ep->bEndpointAddress & 0x80)==0) { /* OUT Endpoint */
259 if(ep->wMaxPacketSize > dev->epmaxpacketout[b]) {
260 dev->epmaxpacketout[b] = ep->wMaxPacketSize;
261 USB_PRINTF("##EP epmaxpacketout[%d] = %d\n",b,dev->epmaxpacketout[b]);
262 }
263 }
264 else { /* IN Endpoint */
265 if(ep->wMaxPacketSize > dev->epmaxpacketin[b]) {
266 dev->epmaxpacketin[b] = ep->wMaxPacketSize;
267 USB_PRINTF("##EP epmaxpacketin[%d] = %d\n",b,dev->epmaxpacketin[b]);
268 }
269 } /* if out */
270 } /* if control */
271 } /* for each endpoint */
272 }
273 return 0;
274}
275
276/*******************************************************************************
277 * Parse the config, located in buffer, and fills the dev->config structure.
278 * Note that all little/big endian swapping are done automatically.
279 */
280int usb_parse_config(struct usb_device *dev, unsigned char *buffer, int cfgno)
281{
282 struct usb_descriptor_header *head;
Bartlomiej Sieka978333a2006-08-02 00:54:18 +0200283 int index, ifno, epno, curr_if_num;
284 int i;
285 unsigned char *ch;
wdenkaffae2b2002-08-17 09:36:01 +0000286
Bartlomiej Sieka978333a2006-08-02 00:54:18 +0200287 ifno = -1;
288 epno = -1;
289 curr_if_num = -1;
290
291 dev->configno = cfgno;
292 head = (struct usb_descriptor_header *) &buffer[0];
293 if(head->bDescriptorType != USB_DT_CONFIG) {
294 printf(" ERROR: NOT USB_CONFIG_DESC %x\n", head->bDescriptorType);
wdenkaffae2b2002-08-17 09:36:01 +0000295 return -1;
296 }
Bartlomiej Sieka978333a2006-08-02 00:54:18 +0200297 memcpy(&dev->config, buffer, buffer[0]);
298 dev->config.wTotalLength = swap_16(dev->config.wTotalLength);
299 dev->config.no_of_if = 0;
wdenkaffae2b2002-08-17 09:36:01 +0000300
Bartlomiej Sieka978333a2006-08-02 00:54:18 +0200301 index = dev->config.bLength;
wdenkaffae2b2002-08-17 09:36:01 +0000302 /* Ok the first entry must be a configuration entry, now process the others */
Bartlomiej Sieka978333a2006-08-02 00:54:18 +0200303 head = (struct usb_descriptor_header *) &buffer[index];
304 while(index + 1 < dev->config.wTotalLength) {
wdenkaffae2b2002-08-17 09:36:01 +0000305 switch(head->bDescriptorType) {
306 case USB_DT_INTERFACE:
Bartlomiej Sieka978333a2006-08-02 00:54:18 +0200307 if(((struct usb_interface_descriptor *) &buffer[index])->
308 bInterfaceNumber != curr_if_num) {
309 /* this is a new interface, copy new desc */
310 ifno = dev->config.no_of_if;
311 dev->config.no_of_if++;
312 memcpy(&dev->config.if_desc[ifno],
313 &buffer[index], buffer[index]);
314 dev->config.if_desc[ifno].no_of_ep = 0;
315 dev->config.if_desc[ifno].num_altsetting = 1;
316 curr_if_num = dev->config.if_desc[ifno].bInterfaceNumber;
317 } else {
318 /* found alternate setting for the interface */
319 dev->config.if_desc[ifno].num_altsetting++;
320 }
wdenkaffae2b2002-08-17 09:36:01 +0000321 break;
322 case USB_DT_ENDPOINT:
Bartlomiej Sieka978333a2006-08-02 00:54:18 +0200323 epno = dev->config.if_desc[ifno].no_of_ep;
wdenkaffae2b2002-08-17 09:36:01 +0000324 dev->config.if_desc[ifno].no_of_ep++; /* found an endpoint */
Bartlomiej Sieka978333a2006-08-02 00:54:18 +0200325 memcpy(&dev->config.if_desc[ifno].ep_desc[epno],
326 &buffer[index], buffer[index]);
327 dev->config.if_desc[ifno].ep_desc[epno].wMaxPacketSize =
328 swap_16(dev->config.if_desc[ifno].ep_desc[epno].wMaxPacketSize);
329 USB_PRINTF("if %d, ep %d\n", ifno, epno);
wdenkaffae2b2002-08-17 09:36:01 +0000330 break;
331 default:
Bartlomiej Sieka978333a2006-08-02 00:54:18 +0200332 if(head->bLength == 0)
wdenkaffae2b2002-08-17 09:36:01 +0000333 return 1;
Bartlomiej Sieka978333a2006-08-02 00:54:18 +0200334 USB_PRINTF("unknown Description Type : %x\n", head->bDescriptorType);
wdenkaffae2b2002-08-17 09:36:01 +0000335 {
Bartlomiej Sieka978333a2006-08-02 00:54:18 +0200336 ch = (unsigned char *)head;
337 for(i = 0; i < head->bLength; i++)
338 USB_PRINTF("%02X ", *ch++);
wdenkaffae2b2002-08-17 09:36:01 +0000339 USB_PRINTF("\n\n\n");
340 }
341 break;
342 }
Bartlomiej Sieka978333a2006-08-02 00:54:18 +0200343 index += head->bLength;
344 head = (struct usb_descriptor_header *)&buffer[index];
wdenkaffae2b2002-08-17 09:36:01 +0000345 }
346 return 1;
347}
348
349/***********************************************************************
350 * Clears an endpoint
351 * endp: endpoint number in bits 0-3;
352 * direction flag in bit 7 (1 = IN, 0 = OUT)
353 */
354int usb_clear_halt(struct usb_device *dev, int pipe)
355{
356 int result;
Wolfgang Denkc7a4f7d2005-07-21 11:57:57 +0200357 int endp = usb_pipeendpoint(pipe)|(usb_pipein(pipe)<<7);
wdenkaffae2b2002-08-17 09:36:01 +0000358
359 result = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
360 USB_REQ_CLEAR_FEATURE, USB_RECIP_ENDPOINT, 0, endp, NULL, 0, USB_CNTL_TIMEOUT * 3);
361
362 /* don't clear if failed */
363 if (result < 0)
364 return result;
Wolfgang Denkc7a4f7d2005-07-21 11:57:57 +0200365
Wolfgang Denkd06ce5d2005-08-02 17:06:17 +0200366 /*
Wolfgang Denkc7a4f7d2005-07-21 11:57:57 +0200367 * NOTE: we do not get status and verify reset was successful
368 * as some devices are reported to lock up upon this check..
369 */
370
wdenkaffae2b2002-08-17 09:36:01 +0000371 usb_endpoint_running(dev, usb_pipeendpoint(pipe), usb_pipeout(pipe));
Wolfgang Denkc7a4f7d2005-07-21 11:57:57 +0200372
wdenkaffae2b2002-08-17 09:36:01 +0000373 /* toggle is reset on clear */
374 usb_settoggle(dev, usb_pipeendpoint(pipe), usb_pipeout(pipe), 0);
375 return 0;
376}
377
378
379/**********************************************************************
380 * get_descriptor type
381 */
382int usb_get_descriptor(struct usb_device *dev, unsigned char type, unsigned char index, void *buf, int size)
383{
384 int res;
385 res = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
386 USB_REQ_GET_DESCRIPTOR, USB_DIR_IN,
387 (type << 8) + index, 0,
388 buf, size, USB_CNTL_TIMEOUT);
389 return res;
390}
391
392/**********************************************************************
393 * gets configuration cfgno and store it in the buffer
394 */
395int usb_get_configuration_no(struct usb_device *dev,unsigned char *buffer,int cfgno)
396{
397 int result;
398 unsigned int tmp;
399 struct usb_config_descriptor *config;
400
401
402 config=(struct usb_config_descriptor *)&buffer[0];
403 result = usb_get_descriptor(dev, USB_DT_CONFIG, cfgno, buffer, 8);
404 if (result < 8) {
405 if (result < 0)
406 printf("unable to get descriptor, error %lX\n",dev->status);
407 else
408 printf("config descriptor too short (expected %i, got %i)\n",8,result);
409 return -1;
410 }
411 tmp=swap_16(config->wTotalLength);
412
wdenkf70cbb22004-02-23 20:48:38 +0000413 if (tmp > USB_BUFSIZ) {
414 USB_PRINTF("usb_get_configuration_no: failed to get descriptor - too long: %d\n",
415 tmp);
416 return -1;
417 }
418
wdenkaffae2b2002-08-17 09:36:01 +0000419 result = usb_get_descriptor(dev, USB_DT_CONFIG, cfgno, buffer, tmp);
420 USB_PRINTF("get_conf_no %d Result %d, wLength %d\n",cfgno,result,tmp);
421 return result;
422}
423
424/********************************************************************
425 * set address of a device to the value in dev->devnum.
426 * This can only be done by addressing the device via the default address (0)
427 */
428int usb_set_address(struct usb_device *dev)
429{
430 int res;
431
432 USB_PRINTF("set address %d\n",dev->devnum);
433 res=usb_control_msg(dev, usb_snddefctrl(dev),
434 USB_REQ_SET_ADDRESS, 0,
435 (dev->devnum),0,
436 NULL,0, USB_CNTL_TIMEOUT);
437 return res;
438}
439
440/********************************************************************
441 * set interface number to interface
442 */
443int usb_set_interface(struct usb_device *dev, int interface, int alternate)
444{
445 struct usb_interface_descriptor *if_face = NULL;
446 int ret, i;
447
Wolfgang Denkc7a4f7d2005-07-21 11:57:57 +0200448 for (i = 0; i < dev->config.bNumInterfaces; i++) {
wdenkaffae2b2002-08-17 09:36:01 +0000449 if (dev->config.if_desc[i].bInterfaceNumber == interface) {
450 if_face = &dev->config.if_desc[i];
451 break;
452 }
453 }
454 if (!if_face) {
455 printf("selecting invalid interface %d", interface);
456 return -1;
457 }
Bartlomiej Sieka978333a2006-08-02 00:54:18 +0200458 /*
459 * We should return now for devices with only one alternate setting.
460 * According to 9.4.10 of the Universal Serial Bus Specification Revision 2.0
461 * such devices can return with a STALL. This results in some USB sticks
462 * timeouting during initialization and then being unusable in U-Boot.
463 */
464 if (if_face->num_altsetting == 1)
465 return 0;
wdenkaffae2b2002-08-17 09:36:01 +0000466
467 if ((ret = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
468 USB_REQ_SET_INTERFACE, USB_RECIP_INTERFACE, alternate,
469 interface, NULL, 0, USB_CNTL_TIMEOUT * 5)) < 0)
470 return ret;
471
wdenkaffae2b2002-08-17 09:36:01 +0000472 return 0;
473}
474
475/********************************************************************
476 * set configuration number to configuration
477 */
478int usb_set_configuration(struct usb_device *dev, int configuration)
479{
480 int res;
481 USB_PRINTF("set configuration %d\n",configuration);
482 /* set setup command */
483 res=usb_control_msg(dev, usb_sndctrlpipe(dev,0),
484 USB_REQ_SET_CONFIGURATION, 0,
485 configuration,0,
486 NULL,0, USB_CNTL_TIMEOUT);
487 if(res==0) {
488 dev->toggle[0] = 0;
489 dev->toggle[1] = 0;
490 return 0;
491 }
492 else
493 return -1;
494}
495
496/********************************************************************
497 * set protocol to protocol
498 */
499int usb_set_protocol(struct usb_device *dev, int ifnum, int protocol)
500{
501 return usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
502 USB_REQ_SET_PROTOCOL, USB_TYPE_CLASS | USB_RECIP_INTERFACE,
503 protocol, ifnum, NULL, 0, USB_CNTL_TIMEOUT);
504}
505
506/********************************************************************
507 * set idle
508 */
509int usb_set_idle(struct usb_device *dev, int ifnum, int duration, int report_id)
510{
511 return usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
512 USB_REQ_SET_IDLE, USB_TYPE_CLASS | USB_RECIP_INTERFACE,
513 (duration << 8) | report_id, ifnum, NULL, 0, USB_CNTL_TIMEOUT);
514}
515
516/********************************************************************
517 * get report
518 */
519int usb_get_report(struct usb_device *dev, int ifnum, unsigned char type, unsigned char id, void *buf, int size)
520{
521 return usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
522 USB_REQ_GET_REPORT, USB_DIR_IN | USB_TYPE_CLASS | USB_RECIP_INTERFACE,
523 (type << 8) + id, ifnum, buf, size, USB_CNTL_TIMEOUT);
524}
525
526/********************************************************************
527 * get class descriptor
528 */
529int usb_get_class_descriptor(struct usb_device *dev, int ifnum,
530 unsigned char type, unsigned char id, void *buf, int size)
531{
532 return usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
533 USB_REQ_GET_DESCRIPTOR, USB_RECIP_INTERFACE | USB_DIR_IN,
534 (type << 8) + id, ifnum, buf, size, USB_CNTL_TIMEOUT);
535}
536
537/********************************************************************
538 * get string index in buffer
539 */
540int usb_get_string(struct usb_device *dev, unsigned short langid, unsigned char index, void *buf, int size)
541{
Wolfgang Denkc7a4f7d2005-07-21 11:57:57 +0200542 int i;
543 int result;
544
545 for (i = 0; i < 3; ++i) {
546 /* some devices are flaky */
547 result = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
548 USB_REQ_GET_DESCRIPTOR, USB_DIR_IN,
Wolfgang Denkd06ce5d2005-08-02 17:06:17 +0200549 (USB_DT_STRING << 8) + index, langid, buf, size,
Wolfgang Denkc7a4f7d2005-07-21 11:57:57 +0200550 USB_CNTL_TIMEOUT);
551
552 if (result > 0)
553 break;
Wolfgang Denkd06ce5d2005-08-02 17:06:17 +0200554 }
555
Wolfgang Denkc7a4f7d2005-07-21 11:57:57 +0200556 return result;
wdenkaffae2b2002-08-17 09:36:01 +0000557}
558
Wolfgang Denkc7a4f7d2005-07-21 11:57:57 +0200559
560static void usb_try_string_workarounds(unsigned char *buf, int *length)
561{
562 int newlength, oldlength = *length;
563
564 for (newlength = 2; newlength + 1 < oldlength; newlength += 2)
565 if (!isprint(buf[newlength]) || buf[newlength + 1])
566 break;
567
568 if (newlength > 2) {
569 buf[0] = newlength;
570 *length = newlength;
571 }
572}
573
574
575static int usb_string_sub(struct usb_device *dev, unsigned int langid,
576 unsigned int index, unsigned char *buf)
577{
578 int rc;
579
580 /* Try to read the string descriptor by asking for the maximum
581 * possible number of bytes */
582 rc = usb_get_string(dev, langid, index, buf, 255);
583
584 /* If that failed try to read the descriptor length, then
585 * ask for just that many bytes */
586 if (rc < 2) {
587 rc = usb_get_string(dev, langid, index, buf, 2);
588 if (rc == 2)
589 rc = usb_get_string(dev, langid, index, buf, buf[0]);
590 }
591
592 if (rc >= 2) {
593 if (!buf[0] && !buf[1])
594 usb_try_string_workarounds(buf, &rc);
595
596 /* There might be extra junk at the end of the descriptor */
597 if (buf[0] < rc)
598 rc = buf[0];
599
600 rc = rc - (rc & 1); /* force a multiple of two */
601 }
602
603 if (rc < 2)
Wolfgang Denkd06ce5d2005-08-02 17:06:17 +0200604 rc = -1;
Wolfgang Denkc7a4f7d2005-07-21 11:57:57 +0200605
606 return rc;
607}
608
609
wdenkaffae2b2002-08-17 09:36:01 +0000610/********************************************************************
611 * usb_string:
612 * Get string index and translate it to ascii.
613 * returns string length (> 0) or error (< 0)
614 */
615int usb_string(struct usb_device *dev, int index, char *buf, size_t size)
616{
wdenkf70cbb22004-02-23 20:48:38 +0000617 unsigned char mybuf[USB_BUFSIZ];
wdenkaffae2b2002-08-17 09:36:01 +0000618 unsigned char *tbuf;
619 int err;
620 unsigned int u, idx;
621
622 if (size <= 0 || !buf || !index)
623 return -1;
624 buf[0] = 0;
625 tbuf=&mybuf[0];
626
627 /* get langid for strings if it's not yet known */
628 if (!dev->have_langid) {
Wolfgang Denkc7a4f7d2005-07-21 11:57:57 +0200629 err = usb_string_sub(dev, 0, 0, tbuf);
wdenkaffae2b2002-08-17 09:36:01 +0000630 if (err < 0) {
631 USB_PRINTF("error getting string descriptor 0 (error=%x)\n",dev->status);
632 return -1;
633 } else if (tbuf[0] < 4) {
634 USB_PRINTF("string descriptor 0 too short\n");
635 return -1;
636 } else {
637 dev->have_langid = -1;
638 dev->string_langid = tbuf[2] | (tbuf[3]<< 8);
639 /* always use the first langid listed */
640 USB_PRINTF("USB device number %d default language ID 0x%x\n",
641 dev->devnum, dev->string_langid);
642 }
643 }
wdenkf70cbb22004-02-23 20:48:38 +0000644
Wolfgang Denkc7a4f7d2005-07-21 11:57:57 +0200645 err = usb_string_sub(dev, dev->string_langid, index, tbuf);
wdenkaffae2b2002-08-17 09:36:01 +0000646 if (err < 0)
647 return err;
Wolfgang Denkc7a4f7d2005-07-21 11:57:57 +0200648
wdenkaffae2b2002-08-17 09:36:01 +0000649 size--; /* leave room for trailing NULL char in output buffer */
650 for (idx = 0, u = 2; u < err; u += 2) {
651 if (idx >= size)
652 break;
653 if (tbuf[u+1]) /* high byte */
654 buf[idx++] = '?'; /* non-ASCII character */
655 else
656 buf[idx++] = tbuf[u];
657 }
658 buf[idx] = 0;
659 err = idx;
660 return err;
661}
662
663
664/********************************************************************
665 * USB device handling:
666 * the USB device are static allocated [USB_MAX_DEVICE].
667 */
668
669
670/* returns a pointer to the device with the index [index].
671 * if the device is not assigned (dev->devnum==-1) returns NULL
672 */
673struct usb_device * usb_get_dev_index(int index)
674{
675 if(usb_dev[index].devnum==-1)
676 return NULL;
677 else
678 return &usb_dev[index];
679}
680
681
682/* returns a pointer of a new device structure or NULL, if
683 * no device struct is available
684 */
685struct usb_device * usb_alloc_new_device(void)
686{
687 int i;
688 USB_PRINTF("New Device %d\n",dev_index);
689 if(dev_index==USB_MAX_DEVICE) {
wdenk5958f4a2003-09-18 09:21:33 +0000690 printf("ERROR, too many USB Devices, max=%d\n",USB_MAX_DEVICE);
wdenkaffae2b2002-08-17 09:36:01 +0000691 return NULL;
692 }
693 usb_dev[dev_index].devnum=dev_index+1; /* default Address is 0, real addresses start with 1 */
694 usb_dev[dev_index].maxchild=0;
695 for(i=0;i<USB_MAXCHILDREN;i++)
696 usb_dev[dev_index].children[i]=NULL;
697 usb_dev[dev_index].parent=NULL;
698 dev_index++;
699 return &usb_dev[dev_index-1];
700}
701
702
703/*
704 * By the time we get here, the device has gotten a new device ID
705 * and is in the default state. We need to identify the thing and
706 * get the ball rolling..
707 *
708 * Returns 0 for success, != 0 for error.
709 */
710int usb_new_device(struct usb_device *dev)
711{
712 int addr, err;
713 int tmp;
wdenkf70cbb22004-02-23 20:48:38 +0000714 unsigned char tmpbuf[USB_BUFSIZ];
wdenkaffae2b2002-08-17 09:36:01 +0000715
716 dev->descriptor.bMaxPacketSize0 = 8; /* Start off at 8 bytes */
717 dev->maxpacketsize = 0; /* Default to 8 byte max packet size */
718 dev->epmaxpacketin [0] = 8;
719 dev->epmaxpacketout[0] = 8;
720
721 /* We still haven't set the Address yet */
722 addr = dev->devnum;
723 dev->devnum = 0;
Wolfgang Denkc7a4f7d2005-07-21 11:57:57 +0200724
725#undef NEW_INIT_SEQ
726#ifdef NEW_INIT_SEQ
727 /* this is a Windows scheme of initialization sequence, with double
728 * reset of the device. Some equipment is said to work only with such
729 * init sequence; this patch is based on the work by Alan Stern:
730 * http://sourceforge.net/mailarchive/forum.php?thread_id=5729457&forum_id=5398
731 */
732 int j;
733 struct usb_device_descriptor *desc;
734 int port = -1;
735 struct usb_device *parent = dev->parent;
736 unsigned short portstatus;
737
738 /* send 64-byte GET-DEVICE-DESCRIPTOR request. Since the descriptor is
739 * only 18 bytes long, this will terminate with a short packet. But if
740 * the maxpacket size is 8 or 16 the device may be waiting to transmit
741 * some more. */
742
743 desc = (struct usb_device_descriptor *)tmpbuf;
744 desc->bMaxPacketSize0 = 0;
745 for (j = 0; j < 3; ++j) {
746 err = usb_get_descriptor(dev, USB_DT_DEVICE, 0, desc, 64);
747 if (err < 0) {
748 USB_PRINTF("usb_new_device: 64 byte descr\n");
749 break;
750 }
751 }
752 dev->descriptor.bMaxPacketSize0 = desc->bMaxPacketSize0;
Wolfgang Denkd06ce5d2005-08-02 17:06:17 +0200753
Wolfgang Denkc7a4f7d2005-07-21 11:57:57 +0200754 /* find the port number we're at */
755 if (parent) {
Wolfgang Denkd06ce5d2005-08-02 17:06:17 +0200756
Wolfgang Denkc7a4f7d2005-07-21 11:57:57 +0200757 for (j = 0; j < parent->maxchild; j++) {
758 if (parent->children[j] == dev) {
759 port = j;
760 break;
761 }
762 }
763 if (port < 0) {
764 printf("usb_new_device: cannot locate device's port..\n");
765 return 1;
766 }
767
768 /* reset the port for the second time */
769 err = hub_port_reset(dev->parent, port, &portstatus);
770 if (err < 0) {
771 printf("\n Couldn't reset port %i\n", port);
772 return 1;
773 }
774 }
775#else
776 /* and this is the old and known way of initializing devices */
wdenkaffae2b2002-08-17 09:36:01 +0000777 err = usb_get_descriptor(dev, USB_DT_DEVICE, 0, &dev->descriptor, 8);
778 if (err < 8) {
779 printf("\n USB device not responding, giving up (status=%lX)\n",dev->status);
780 return 1;
781 }
Wolfgang Denkc7a4f7d2005-07-21 11:57:57 +0200782#endif
783
wdenkaffae2b2002-08-17 09:36:01 +0000784 dev->epmaxpacketin [0] = dev->descriptor.bMaxPacketSize0;
785 dev->epmaxpacketout[0] = dev->descriptor.bMaxPacketSize0;
786 switch (dev->descriptor.bMaxPacketSize0) {
787 case 8: dev->maxpacketsize = 0; break;
788 case 16: dev->maxpacketsize = 1; break;
789 case 32: dev->maxpacketsize = 2; break;
790 case 64: dev->maxpacketsize = 3; break;
791 }
792 dev->devnum = addr;
793
794 err = usb_set_address(dev); /* set address */
795
796 if (err < 0) {
797 printf("\n USB device not accepting new address (error=%lX)\n", dev->status);
798 return 1;
799 }
800
801 wait_ms(10); /* Let the SET_ADDRESS settle */
802
803 tmp = sizeof(dev->descriptor);
804
805 err = usb_get_descriptor(dev, USB_DT_DEVICE, 0, &dev->descriptor, sizeof(dev->descriptor));
806 if (err < tmp) {
807 if (err < 0)
808 printf("unable to get device descriptor (error=%d)\n",err);
809 else
810 printf("USB device descriptor short read (expected %i, got %i)\n",tmp,err);
811 return 1;
812 }
813 /* correct le values */
814 dev->descriptor.bcdUSB=swap_16(dev->descriptor.bcdUSB);
815 dev->descriptor.idVendor=swap_16(dev->descriptor.idVendor);
816 dev->descriptor.idProduct=swap_16(dev->descriptor.idProduct);
817 dev->descriptor.bcdDevice=swap_16(dev->descriptor.bcdDevice);
818 /* only support for one config for now */
819 usb_get_configuration_no(dev,&tmpbuf[0],0);
820 usb_parse_config(dev,&tmpbuf[0],0);
821 usb_set_maxpacket(dev);
822 /* we set the default configuration here */
823 if (usb_set_configuration(dev, dev->config.bConfigurationValue)) {
824 printf("failed to set default configuration len %d, status %lX\n",dev->act_len,dev->status);
825 return -1;
826 }
827 USB_PRINTF("new device strings: Mfr=%d, Product=%d, SerialNumber=%d\n",
828 dev->descriptor.iManufacturer, dev->descriptor.iProduct, dev->descriptor.iSerialNumber);
829 memset(dev->mf, 0, sizeof(dev->mf));
830 memset(dev->prod, 0, sizeof(dev->prod));
831 memset(dev->serial, 0, sizeof(dev->serial));
832 if (dev->descriptor.iManufacturer)
833 usb_string(dev, dev->descriptor.iManufacturer, dev->mf, sizeof(dev->mf));
834 if (dev->descriptor.iProduct)
835 usb_string(dev, dev->descriptor.iProduct, dev->prod, sizeof(dev->prod));
836 if (dev->descriptor.iSerialNumber)
837 usb_string(dev, dev->descriptor.iSerialNumber, dev->serial, sizeof(dev->serial));
838 USB_PRINTF("Manufacturer %s\n", dev->mf);
839 USB_PRINTF("Product %s\n", dev->prod);
840 USB_PRINTF("SerialNumber %s\n", dev->serial);
841 /* now prode if the device is a hub */
842 usb_hub_probe(dev,0);
843 return 0;
844}
845
846/* build device Tree */
847void usb_scan_devices(void)
848{
849 int i;
850 struct usb_device *dev;
851
852 /* first make all devices unknown */
853 for(i=0;i<USB_MAX_DEVICE;i++) {
854 memset(&usb_dev[i],0,sizeof(struct usb_device));
855 usb_dev[i].devnum=-1;
856 }
857 dev_index=0;
858 /* device 0 is always present (root hub, so let it analyze) */
859 dev=usb_alloc_new_device();
860 usb_new_device(dev);
Wolfgang Denkc7a4f7d2005-07-21 11:57:57 +0200861 printf("%d USB Device(s) found\n",dev_index);
wdenkaffae2b2002-08-17 09:36:01 +0000862 /* insert "driver" if possible */
863#ifdef CONFIG_USB_KEYBOARD
864 drv_usb_kbd_init();
865 USB_PRINTF("scan end\n");
866#endif
867}
868
869
870/****************************************************************************
871 * HUB "Driver"
872 * Probes device for being a hub and configurate it
873 */
874
875#undef USB_HUB_DEBUG
876
877#ifdef USB_HUB_DEBUG
878#define USB_HUB_PRINTF(fmt,args...) printf (fmt ,##args)
879#else
880#define USB_HUB_PRINTF(fmt,args...)
881#endif
882
883
884static struct usb_hub_device hub_dev[USB_MAX_HUB];
885static int usb_hub_index;
886
887
888int usb_get_hub_descriptor(struct usb_device *dev, void *data, int size)
889{
890 return usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
891 USB_REQ_GET_DESCRIPTOR, USB_DIR_IN | USB_RT_HUB,
892 USB_DT_HUB << 8, 0, data, size, USB_CNTL_TIMEOUT);
893}
894
895int usb_clear_hub_feature(struct usb_device *dev, int feature)
896{
897 return usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
898 USB_REQ_CLEAR_FEATURE, USB_RT_HUB, feature, 0, NULL, 0, USB_CNTL_TIMEOUT);
899}
900
901int usb_clear_port_feature(struct usb_device *dev, int port, int feature)
902{
903 return usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
904 USB_REQ_CLEAR_FEATURE, USB_RT_PORT, feature, port, NULL, 0, USB_CNTL_TIMEOUT);
905}
906
907int usb_set_port_feature(struct usb_device *dev, int port, int feature)
908{
909 return usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
910 USB_REQ_SET_FEATURE, USB_RT_PORT, feature, port, NULL, 0, USB_CNTL_TIMEOUT);
911}
912
913int usb_get_hub_status(struct usb_device *dev, void *data)
914{
915 return usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
916 USB_REQ_GET_STATUS, USB_DIR_IN | USB_RT_HUB, 0, 0,
917 data, sizeof(struct usb_hub_status), USB_CNTL_TIMEOUT);
918}
919
920int usb_get_port_status(struct usb_device *dev, int port, void *data)
921{
922 return usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
923 USB_REQ_GET_STATUS, USB_DIR_IN | USB_RT_PORT, 0, port,
924 data, sizeof(struct usb_hub_status), USB_CNTL_TIMEOUT);
925}
926
927
928static void usb_hub_power_on(struct usb_hub_device *hub)
929{
930 int i;
931 struct usb_device *dev;
932
933 dev=hub->pusb_dev;
934 /* Enable power to the ports */
935 USB_HUB_PRINTF("enabling power on all ports\n");
936 for (i = 0; i < dev->maxchild; i++) {
937 usb_set_port_feature(dev, i + 1, USB_PORT_FEAT_POWER);
938 USB_HUB_PRINTF("port %d returns %lX\n",i+1,dev->status);
939 wait_ms(hub->desc.bPwrOn2PwrGood * 2);
940 }
941}
942
943void usb_hub_reset(void)
944{
945 usb_hub_index=0;
946}
947
948struct usb_hub_device *usb_hub_allocate(void)
949{
950 if(usb_hub_index<USB_MAX_HUB) {
951 return &hub_dev[usb_hub_index++];
952 }
953 printf("ERROR: USB_MAX_HUB (%d) reached\n",USB_MAX_HUB);
954 return NULL;
955}
956
957#define MAX_TRIES 5
958
Wolfgang Denkc7a4f7d2005-07-21 11:57:57 +0200959static int hub_port_reset(struct usb_device *dev, int port,
960 unsigned short *portstat)
wdenkaffae2b2002-08-17 09:36:01 +0000961{
Wolfgang Denkc7a4f7d2005-07-21 11:57:57 +0200962 int tries;
wdenkaffae2b2002-08-17 09:36:01 +0000963 struct usb_port_status portsts;
964 unsigned short portstatus, portchange;
wdenkaffae2b2002-08-17 09:36:01 +0000965
wdenkaffae2b2002-08-17 09:36:01 +0000966
Wolfgang Denkc7a4f7d2005-07-21 11:57:57 +0200967 USB_HUB_PRINTF("hub_port_reset: resetting port %d...\n", port);
wdenkaffae2b2002-08-17 09:36:01 +0000968 for(tries=0;tries<MAX_TRIES;tries++) {
969
970 usb_set_port_feature(dev, port + 1, USB_PORT_FEAT_RESET);
971 wait_ms(200);
972
973 if (usb_get_port_status(dev, port + 1, &portsts)<0) {
974 USB_HUB_PRINTF("get_port_status failed status %lX\n",dev->status);
Wolfgang Denkc7a4f7d2005-07-21 11:57:57 +0200975 return -1;
wdenkaffae2b2002-08-17 09:36:01 +0000976 }
977 portstatus = swap_16(portsts.wPortStatus);
978 portchange = swap_16(portsts.wPortChange);
979 USB_HUB_PRINTF("portstatus %x, change %x, %s\n", portstatus ,portchange,
980 portstatus&(1<<USB_PORT_FEAT_LOWSPEED) ? "Low Speed" : "High Speed");
981 USB_HUB_PRINTF("STAT_C_CONNECTION = %d STAT_CONNECTION = %d USB_PORT_STAT_ENABLE %d\n",
982 (portchange & USB_PORT_STAT_C_CONNECTION) ? 1 : 0,
983 (portstatus & USB_PORT_STAT_CONNECTION) ? 1 : 0,
984 (portstatus & USB_PORT_STAT_ENABLE) ? 1 : 0);
985 if ((portchange & USB_PORT_STAT_C_CONNECTION) ||
986 !(portstatus & USB_PORT_STAT_CONNECTION))
Wolfgang Denkc7a4f7d2005-07-21 11:57:57 +0200987 return -1;
wdenkaffae2b2002-08-17 09:36:01 +0000988
Wolfgang Denkc7a4f7d2005-07-21 11:57:57 +0200989 if (portstatus & USB_PORT_STAT_ENABLE) {
Wolfgang Denkd06ce5d2005-08-02 17:06:17 +0200990
wdenkaffae2b2002-08-17 09:36:01 +0000991 break;
Wolfgang Denkc7a4f7d2005-07-21 11:57:57 +0200992 }
wdenkaffae2b2002-08-17 09:36:01 +0000993
994 wait_ms(200);
995 }
996
997 if (tries==MAX_TRIES) {
998 USB_HUB_PRINTF("Cannot enable port %i after %i retries, disabling port.\n", port+1, MAX_TRIES);
999 USB_HUB_PRINTF("Maybe the USB cable is bad?\n");
Wolfgang Denkc7a4f7d2005-07-21 11:57:57 +02001000 return -1;
wdenkaffae2b2002-08-17 09:36:01 +00001001 }
1002
1003 usb_clear_port_feature(dev, port + 1, USB_PORT_FEAT_C_RESET);
Wolfgang Denkc7a4f7d2005-07-21 11:57:57 +02001004 *portstat = portstatus;
1005 return 0;
1006
1007}
1008
1009
1010void usb_hub_port_connect_change(struct usb_device *dev, int port)
1011{
1012 struct usb_device *usb;
1013 struct usb_port_status portsts;
1014 unsigned short portstatus, portchange;
1015
1016 /* Check status */
1017 if (usb_get_port_status(dev, port + 1, &portsts)<0) {
1018 USB_HUB_PRINTF("get_port_status failed\n");
1019 return;
1020 }
1021
1022 portstatus = swap_16(portsts.wPortStatus);
1023 portchange = swap_16(portsts.wPortChange);
1024 USB_HUB_PRINTF("portstatus %x, change %x, %s\n", portstatus, portchange,
1025 portstatus&(1<<USB_PORT_FEAT_LOWSPEED) ? "Low Speed" : "High Speed");
1026
1027 /* Clear the connection change status */
1028 usb_clear_port_feature(dev, port + 1, USB_PORT_FEAT_C_CONNECTION);
1029
1030 /* Disconnect any existing devices under this port */
1031 if (((!(portstatus & USB_PORT_STAT_CONNECTION)) &&
1032 (!(portstatus & USB_PORT_STAT_ENABLE)))|| (dev->children[port])) {
1033 USB_HUB_PRINTF("usb_disconnect(&hub->children[port]);\n");
1034 /* Return now if nothing is connected */
1035 if (!(portstatus & USB_PORT_STAT_CONNECTION))
1036 return;
1037 }
1038 wait_ms(200);
1039
1040 /* Reset the port */
1041 if (hub_port_reset(dev, port, &portstatus) < 0) {
1042 printf("cannot reset port %i!?\n", port + 1);
1043 return;
1044 }
1045
wdenkaffae2b2002-08-17 09:36:01 +00001046 wait_ms(200);
1047
1048 /* Allocate a new device struct for it */
1049 usb=usb_alloc_new_device();
1050 usb->slow = (portstatus & USB_PORT_STAT_LOW_SPEED) ? 1 : 0;
1051
1052 dev->children[port] = usb;
1053 usb->parent=dev;
1054 /* Run it through the hoops (find a driver, etc) */
1055 if (usb_new_device(usb)) {
1056 /* Woops, disable the port */
1057 USB_HUB_PRINTF("hub: disabling port %d\n", port + 1);
1058 usb_clear_port_feature(dev, port + 1, USB_PORT_FEAT_ENABLE);
1059 }
1060}
1061
1062
1063int usb_hub_configure(struct usb_device *dev)
1064{
wdenkf70cbb22004-02-23 20:48:38 +00001065 unsigned char buffer[USB_BUFSIZ], *bitmap;
wdenkaffae2b2002-08-17 09:36:01 +00001066 struct usb_hub_descriptor *descriptor;
1067 struct usb_hub_status *hubsts;
1068 int i;
1069 struct usb_hub_device *hub;
1070
1071 /* "allocate" Hub device */
1072 hub=usb_hub_allocate();
1073 if(hub==NULL)
1074 return -1;
1075 hub->pusb_dev=dev;
1076 /* Get the the hub descriptor */
1077 if (usb_get_hub_descriptor(dev, buffer, 4) < 0) {
1078 USB_HUB_PRINTF("usb_hub_configure: failed to get hub descriptor, giving up %lX\n",dev->status);
1079 return -1;
1080 }
1081 descriptor = (struct usb_hub_descriptor *)buffer;
wdenkf70cbb22004-02-23 20:48:38 +00001082
wdenkce4832c2004-10-17 21:12:06 +00001083 /* silence compiler warning if USB_BUFSIZ is > 256 [= sizeof(char)] */
1084 i = descriptor->bLength;
1085 if (i > USB_BUFSIZ) {
wdenkf70cbb22004-02-23 20:48:38 +00001086 USB_HUB_PRINTF("usb_hub_configure: failed to get hub descriptor - too long: %d\N",
1087 descriptor->bLength);
1088 return -1;
1089 }
1090
wdenkaffae2b2002-08-17 09:36:01 +00001091 if (usb_get_hub_descriptor(dev, buffer, descriptor->bLength) < 0) {
1092 USB_HUB_PRINTF("usb_hub_configure: failed to get hub descriptor 2nd giving up %lX\n",dev->status);
1093 return -1;
1094 }
1095 memcpy((unsigned char *)&hub->desc,buffer,descriptor->bLength);
1096 /* adjust 16bit values */
1097 hub->desc.wHubCharacteristics=swap_16(descriptor->wHubCharacteristics);
1098 /* set the bitmap */
1099 bitmap=(unsigned char *)&hub->desc.DeviceRemovable[0];
1100 memset(bitmap,0xff,(USB_MAXCHILDREN+1+7)/8); /* devices not removable by default */
1101 bitmap=(unsigned char *)&hub->desc.PortPowerCtrlMask[0];
1102 memset(bitmap,0xff,(USB_MAXCHILDREN+1+7)/8); /* PowerMask = 1B */
1103 for(i=0;i<((hub->desc.bNbrPorts + 1 + 7)/8);i++) {
1104 hub->desc.DeviceRemovable[i]=descriptor->DeviceRemovable[i];
1105 }
1106 for(i=0;i<((hub->desc.bNbrPorts + 1 + 7)/8);i++) {
1107 hub->desc.DeviceRemovable[i]=descriptor->PortPowerCtrlMask[i];
1108 }
1109 dev->maxchild = descriptor->bNbrPorts;
1110 USB_HUB_PRINTF("%d ports detected\n", dev->maxchild);
1111
1112 switch (hub->desc.wHubCharacteristics & HUB_CHAR_LPSM) {
1113 case 0x00:
1114 USB_HUB_PRINTF("ganged power switching\n");
1115 break;
1116 case 0x01:
1117 USB_HUB_PRINTF("individual port power switching\n");
1118 break;
1119 case 0x02:
1120 case 0x03:
1121 USB_HUB_PRINTF("unknown reserved power switching mode\n");
1122 break;
1123 }
1124
1125 if (hub->desc.wHubCharacteristics & HUB_CHAR_COMPOUND)
1126 USB_HUB_PRINTF("part of a compound device\n");
1127 else
1128 USB_HUB_PRINTF("standalone hub\n");
1129
1130 switch (hub->desc.wHubCharacteristics & HUB_CHAR_OCPM) {
1131 case 0x00:
1132 USB_HUB_PRINTF("global over-current protection\n");
1133 break;
1134 case 0x08:
1135 USB_HUB_PRINTF("individual port over-current protection\n");
1136 break;
1137 case 0x10:
1138 case 0x18:
1139 USB_HUB_PRINTF("no over-current protection\n");
1140 break;
1141 }
1142 USB_HUB_PRINTF("power on to power good time: %dms\n", descriptor->bPwrOn2PwrGood * 2);
1143 USB_HUB_PRINTF("hub controller current requirement: %dmA\n", descriptor->bHubContrCurrent);
1144 for (i = 0; i < dev->maxchild; i++)
1145 USB_HUB_PRINTF("port %d is%s removable\n", i + 1,
1146 hub->desc.DeviceRemovable[(i + 1)/8] & (1 << ((i + 1)%8)) ? " not" : "");
wdenkf70cbb22004-02-23 20:48:38 +00001147 if (sizeof(struct usb_hub_status) > USB_BUFSIZ) {
1148 USB_HUB_PRINTF("usb_hub_configure: failed to get Status - too long: %d\n",
1149 descriptor->bLength);
1150 return -1;
1151 }
1152
wdenkaffae2b2002-08-17 09:36:01 +00001153 if (usb_get_hub_status(dev, buffer) < 0) {
1154 USB_HUB_PRINTF("usb_hub_configure: failed to get Status %lX\n",dev->status);
1155 return -1;
1156 }
1157 hubsts = (struct usb_hub_status *)buffer;
1158 USB_HUB_PRINTF("get_hub_status returned status %X, change %X\n",
1159 swap_16(hubsts->wHubStatus),swap_16(hubsts->wHubChange));
1160 USB_HUB_PRINTF("local power source is %s\n",
1161 (swap_16(hubsts->wHubStatus) & HUB_STATUS_LOCAL_POWER) ? "lost (inactive)" : "good");
1162 USB_HUB_PRINTF("%sover-current condition exists\n",
1163 (swap_16(hubsts->wHubStatus) & HUB_STATUS_OVERCURRENT) ? "" : "no ");
1164 usb_hub_power_on(hub);
1165 for (i = 0; i < dev->maxchild; i++) {
1166 struct usb_port_status portsts;
1167 unsigned short portstatus, portchange;
1168
1169 if (usb_get_port_status(dev, i + 1, &portsts) < 0) {
1170 USB_HUB_PRINTF("get_port_status failed\n");
1171 continue;
1172 }
1173 portstatus = swap_16(portsts.wPortStatus);
1174 portchange = swap_16(portsts.wPortChange);
1175 USB_HUB_PRINTF("Port %d Status %X Change %X\n",i+1,portstatus,portchange);
1176 if (portchange & USB_PORT_STAT_C_CONNECTION) {
1177 USB_HUB_PRINTF("port %d connection change\n", i + 1);
1178 usb_hub_port_connect_change(dev, i);
1179 }
1180 if (portchange & USB_PORT_STAT_C_ENABLE) {
1181 USB_HUB_PRINTF("port %d enable change, status %x\n", i + 1, portstatus);
1182 usb_clear_port_feature(dev, i + 1, USB_PORT_FEAT_C_ENABLE);
1183
1184 /* EM interference sometimes causes bad shielded USB devices to
1185 * be shutdown by the hub, this hack enables them again.
1186 * Works at least with mouse driver */
1187 if (!(portstatus & USB_PORT_STAT_ENABLE) &&
1188 (portstatus & USB_PORT_STAT_CONNECTION) && (dev->children[i])) {
1189 USB_HUB_PRINTF("already running port %i disabled by hub (EMI?), re-enabling...\n",
1190 i + 1);
1191 usb_hub_port_connect_change(dev, i);
1192 }
1193 }
1194 if (portstatus & USB_PORT_STAT_SUSPEND) {
1195 USB_HUB_PRINTF("port %d suspend change\n", i + 1);
1196 usb_clear_port_feature(dev, i + 1, USB_PORT_FEAT_SUSPEND);
1197 }
1198
1199 if (portchange & USB_PORT_STAT_C_OVERCURRENT) {
1200 USB_HUB_PRINTF("port %d over-current change\n", i + 1);
1201 usb_clear_port_feature(dev, i + 1, USB_PORT_FEAT_C_OVER_CURRENT);
1202 usb_hub_power_on(hub);
1203 }
1204
1205 if (portchange & USB_PORT_STAT_C_RESET) {
1206 USB_HUB_PRINTF("port %d reset change\n", i + 1);
1207 usb_clear_port_feature(dev, i + 1, USB_PORT_FEAT_C_RESET);
1208 }
1209 } /* end for i all ports */
1210
1211 return 0;
1212}
1213
1214int usb_hub_probe(struct usb_device *dev, int ifnum)
1215{
1216 struct usb_interface_descriptor *iface;
1217 struct usb_endpoint_descriptor *ep;
1218 int ret;
1219
1220 iface = &dev->config.if_desc[ifnum];
1221 /* Is it a hub? */
1222 if (iface->bInterfaceClass != USB_CLASS_HUB)
1223 return 0;
1224 /* Some hubs have a subclass of 1, which AFAICT according to the */
1225 /* specs is not defined, but it works */
1226 if ((iface->bInterfaceSubClass != 0) &&
1227 (iface->bInterfaceSubClass != 1))
1228 return 0;
1229 /* Multiple endpoints? What kind of mutant ninja-hub is this? */
1230 if (iface->bNumEndpoints != 1)
1231 return 0;
1232 ep = &iface->ep_desc[0];
1233 /* Output endpoint? Curiousier and curiousier.. */
1234 if (!(ep->bEndpointAddress & USB_DIR_IN))
1235 return 0;
1236 /* If it's not an interrupt endpoint, we'd better punt! */
1237 if ((ep->bmAttributes & 3) != 3)
1238 return 0;
1239 /* We found a hub */
1240 USB_HUB_PRINTF("USB hub found\n");
1241 ret=usb_hub_configure(dev);
1242 return ret;
1243}
1244
1245#endif /* (CONFIG_COMMANDS & CFG_CMD_USB) */
1246
1247/* EOF */