blob: 6a601a4547e7d26bda22a470af7592d02d230bbd [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * USB hub driver.
3 *
4 * (C) Copyright 1999 Linus Torvalds
5 * (C) Copyright 1999 Johannes Erdfelt
6 * (C) Copyright 1999 Gregory P. Smith
7 * (C) Copyright 2001 Brad Hards (bhards@bigpond.net.au)
8 *
9 */
10
11#include <linux/config.h>
12#ifdef CONFIG_USB_DEBUG
13 #define DEBUG
14#else
15 #undef DEBUG
16#endif
17#include <linux/kernel.h>
18#include <linux/errno.h>
19#include <linux/module.h>
20#include <linux/moduleparam.h>
21#include <linux/completion.h>
22#include <linux/sched.h>
23#include <linux/list.h>
24#include <linux/slab.h>
25#include <linux/smp_lock.h>
26#include <linux/ioctl.h>
27#include <linux/usb.h>
28#include <linux/usbdevice_fs.h>
akpm@osdl.org9c8d6172005-06-20 14:29:58 -070029#include <linux/kthread.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
31#include <asm/semaphore.h>
32#include <asm/uaccess.h>
33#include <asm/byteorder.h>
34
35#include "usb.h"
36#include "hcd.h"
37#include "hub.h"
38
39/* Protect struct usb_device->state and ->children members
40 * Note: Both are also protected by ->serialize, except that ->state can
41 * change to USB_STATE_NOTATTACHED even when the semaphore isn't held. */
42static DEFINE_SPINLOCK(device_state_lock);
43
44/* khubd's worklist and its lock */
45static DEFINE_SPINLOCK(hub_event_lock);
46static LIST_HEAD(hub_event_list); /* List of hubs needing servicing */
47
48/* Wakes up khubd */
49static DECLARE_WAIT_QUEUE_HEAD(khubd_wait);
50
akpm@osdl.org9c8d6172005-06-20 14:29:58 -070051static struct task_struct *khubd_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
53/* cycle leds on hubs that aren't blinking for attention */
54static int blinkenlights = 0;
55module_param (blinkenlights, bool, S_IRUGO);
56MODULE_PARM_DESC (blinkenlights, "true to cycle leds on hubs");
57
58/*
59 * As of 2.6.10 we introduce a new USB device initialization scheme which
60 * closely resembles the way Windows works. Hopefully it will be compatible
61 * with a wider range of devices than the old scheme. However some previously
62 * working devices may start giving rise to "device not accepting address"
63 * errors; if that happens the user can try the old scheme by adjusting the
64 * following module parameters.
65 *
66 * For maximum flexibility there are two boolean parameters to control the
67 * hub driver's behavior. On the first initialization attempt, if the
68 * "old_scheme_first" parameter is set then the old scheme will be used,
69 * otherwise the new scheme is used. If that fails and "use_both_schemes"
70 * is set, then the driver will make another attempt, using the other scheme.
71 */
72static int old_scheme_first = 0;
73module_param(old_scheme_first, bool, S_IRUGO | S_IWUSR);
74MODULE_PARM_DESC(old_scheme_first,
75 "start with the old device initialization scheme");
76
77static int use_both_schemes = 1;
78module_param(use_both_schemes, bool, S_IRUGO | S_IWUSR);
79MODULE_PARM_DESC(use_both_schemes,
80 "try the other device initialization scheme if the "
81 "first one fails");
82
83
84#ifdef DEBUG
85static inline char *portspeed (int portstatus)
86{
87 if (portstatus & (1 << USB_PORT_FEAT_HIGHSPEED))
88 return "480 Mb/s";
89 else if (portstatus & (1 << USB_PORT_FEAT_LOWSPEED))
90 return "1.5 Mb/s";
91 else
92 return "12 Mb/s";
93}
94#endif
95
96/* Note that hdev or one of its children must be locked! */
97static inline struct usb_hub *hdev_to_hub(struct usb_device *hdev)
98{
99 return usb_get_intfdata(hdev->actconfig->interface[0]);
100}
101
102/* USB 2.0 spec Section 11.24.4.5 */
103static int get_hub_descriptor(struct usb_device *hdev, void *data, int size)
104{
105 int i, ret;
106
107 for (i = 0; i < 3; i++) {
108 ret = usb_control_msg(hdev, usb_rcvctrlpipe(hdev, 0),
109 USB_REQ_GET_DESCRIPTOR, USB_DIR_IN | USB_RT_HUB,
110 USB_DT_HUB << 8, 0, data, size,
111 USB_CTRL_GET_TIMEOUT);
112 if (ret >= (USB_DT_HUB_NONVAR_SIZE + 2))
113 return ret;
114 }
115 return -EINVAL;
116}
117
118/*
119 * USB 2.0 spec Section 11.24.2.1
120 */
121static int clear_hub_feature(struct usb_device *hdev, int feature)
122{
123 return usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
124 USB_REQ_CLEAR_FEATURE, USB_RT_HUB, feature, 0, NULL, 0, 1000);
125}
126
127/*
128 * USB 2.0 spec Section 11.24.2.2
129 */
130static int clear_port_feature(struct usb_device *hdev, int port1, int feature)
131{
132 return usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
133 USB_REQ_CLEAR_FEATURE, USB_RT_PORT, feature, port1,
134 NULL, 0, 1000);
135}
136
137/*
138 * USB 2.0 spec Section 11.24.2.13
139 */
140static int set_port_feature(struct usb_device *hdev, int port1, int feature)
141{
142 return usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
143 USB_REQ_SET_FEATURE, USB_RT_PORT, feature, port1,
144 NULL, 0, 1000);
145}
146
147/*
148 * USB 2.0 spec Section 11.24.2.7.1.10 and table 11-7
149 * for info about using port indicators
150 */
151static void set_port_led(
152 struct usb_hub *hub,
153 int port1,
154 int selector
155)
156{
157 int status = set_port_feature(hub->hdev, (selector << 8) | port1,
158 USB_PORT_FEAT_INDICATOR);
159 if (status < 0)
160 dev_dbg (hub->intfdev,
161 "port %d indicator %s status %d\n",
162 port1,
163 ({ char *s; switch (selector) {
164 case HUB_LED_AMBER: s = "amber"; break;
165 case HUB_LED_GREEN: s = "green"; break;
166 case HUB_LED_OFF: s = "off"; break;
167 case HUB_LED_AUTO: s = "auto"; break;
168 default: s = "??"; break;
169 }; s; }),
170 status);
171}
172
173#define LED_CYCLE_PERIOD ((2*HZ)/3)
174
175static void led_work (void *__hub)
176{
177 struct usb_hub *hub = __hub;
178 struct usb_device *hdev = hub->hdev;
179 unsigned i;
180 unsigned changed = 0;
181 int cursor = -1;
182
183 if (hdev->state != USB_STATE_CONFIGURED || hub->quiescing)
184 return;
185
186 for (i = 0; i < hub->descriptor->bNbrPorts; i++) {
187 unsigned selector, mode;
188
189 /* 30%-50% duty cycle */
190
191 switch (hub->indicator[i]) {
192 /* cycle marker */
193 case INDICATOR_CYCLE:
194 cursor = i;
195 selector = HUB_LED_AUTO;
196 mode = INDICATOR_AUTO;
197 break;
198 /* blinking green = sw attention */
199 case INDICATOR_GREEN_BLINK:
200 selector = HUB_LED_GREEN;
201 mode = INDICATOR_GREEN_BLINK_OFF;
202 break;
203 case INDICATOR_GREEN_BLINK_OFF:
204 selector = HUB_LED_OFF;
205 mode = INDICATOR_GREEN_BLINK;
206 break;
207 /* blinking amber = hw attention */
208 case INDICATOR_AMBER_BLINK:
209 selector = HUB_LED_AMBER;
210 mode = INDICATOR_AMBER_BLINK_OFF;
211 break;
212 case INDICATOR_AMBER_BLINK_OFF:
213 selector = HUB_LED_OFF;
214 mode = INDICATOR_AMBER_BLINK;
215 break;
216 /* blink green/amber = reserved */
217 case INDICATOR_ALT_BLINK:
218 selector = HUB_LED_GREEN;
219 mode = INDICATOR_ALT_BLINK_OFF;
220 break;
221 case INDICATOR_ALT_BLINK_OFF:
222 selector = HUB_LED_AMBER;
223 mode = INDICATOR_ALT_BLINK;
224 break;
225 default:
226 continue;
227 }
228 if (selector != HUB_LED_AUTO)
229 changed = 1;
230 set_port_led(hub, i + 1, selector);
231 hub->indicator[i] = mode;
232 }
233 if (!changed && blinkenlights) {
234 cursor++;
235 cursor %= hub->descriptor->bNbrPorts;
236 set_port_led(hub, cursor + 1, HUB_LED_GREEN);
237 hub->indicator[cursor] = INDICATOR_CYCLE;
238 changed++;
239 }
240 if (changed)
241 schedule_delayed_work(&hub->leds, LED_CYCLE_PERIOD);
242}
243
244/* use a short timeout for hub/port status fetches */
245#define USB_STS_TIMEOUT 1000
246#define USB_STS_RETRIES 5
247
248/*
249 * USB 2.0 spec Section 11.24.2.6
250 */
251static int get_hub_status(struct usb_device *hdev,
252 struct usb_hub_status *data)
253{
254 int i, status = -ETIMEDOUT;
255
256 for (i = 0; i < USB_STS_RETRIES && status == -ETIMEDOUT; i++) {
257 status = usb_control_msg(hdev, usb_rcvctrlpipe(hdev, 0),
258 USB_REQ_GET_STATUS, USB_DIR_IN | USB_RT_HUB, 0, 0,
259 data, sizeof(*data), USB_STS_TIMEOUT);
260 }
261 return status;
262}
263
264/*
265 * USB 2.0 spec Section 11.24.2.7
266 */
267static int get_port_status(struct usb_device *hdev, int port1,
268 struct usb_port_status *data)
269{
270 int i, status = -ETIMEDOUT;
271
272 for (i = 0; i < USB_STS_RETRIES && status == -ETIMEDOUT; i++) {
273 status = usb_control_msg(hdev, usb_rcvctrlpipe(hdev, 0),
274 USB_REQ_GET_STATUS, USB_DIR_IN | USB_RT_PORT, 0, port1,
275 data, sizeof(*data), USB_STS_TIMEOUT);
276 }
277 return status;
278}
279
280static void kick_khubd(struct usb_hub *hub)
281{
282 unsigned long flags;
283
284 spin_lock_irqsave(&hub_event_lock, flags);
285 if (list_empty(&hub->event_list)) {
286 list_add_tail(&hub->event_list, &hub_event_list);
287 wake_up(&khubd_wait);
288 }
289 spin_unlock_irqrestore(&hub_event_lock, flags);
290}
291
292void usb_kick_khubd(struct usb_device *hdev)
293{
294 kick_khubd(hdev_to_hub(hdev));
295}
296
297
298/* completion function, fires on port status changes and various faults */
299static void hub_irq(struct urb *urb, struct pt_regs *regs)
300{
301 struct usb_hub *hub = (struct usb_hub *)urb->context;
302 int status;
303 int i;
304 unsigned long bits;
305
306 switch (urb->status) {
307 case -ENOENT: /* synchronous unlink */
308 case -ECONNRESET: /* async unlink */
309 case -ESHUTDOWN: /* hardware going away */
310 return;
311
312 default: /* presumably an error */
313 /* Cause a hub reset after 10 consecutive errors */
314 dev_dbg (hub->intfdev, "transfer --> %d\n", urb->status);
315 if ((++hub->nerrors < 10) || hub->error)
316 goto resubmit;
317 hub->error = urb->status;
318 /* FALL THROUGH */
319
320 /* let khubd handle things */
321 case 0: /* we got data: port status changed */
322 bits = 0;
323 for (i = 0; i < urb->actual_length; ++i)
324 bits |= ((unsigned long) ((*hub->buffer)[i]))
325 << (i*8);
326 hub->event_bits[0] = bits;
327 break;
328 }
329
330 hub->nerrors = 0;
331
332 /* Something happened, let khubd figure it out */
333 kick_khubd(hub);
334
335resubmit:
336 if (hub->quiescing)
337 return;
338
339 if ((status = usb_submit_urb (hub->urb, GFP_ATOMIC)) != 0
340 && status != -ENODEV && status != -EPERM)
341 dev_err (hub->intfdev, "resubmit --> %d\n", status);
342}
343
344/* USB 2.0 spec Section 11.24.2.3 */
345static inline int
346hub_clear_tt_buffer (struct usb_device *hdev, u16 devinfo, u16 tt)
347{
348 return usb_control_msg(hdev, usb_rcvctrlpipe(hdev, 0),
349 HUB_CLEAR_TT_BUFFER, USB_RT_PORT, devinfo,
350 tt, NULL, 0, 1000);
351}
352
353/*
354 * enumeration blocks khubd for a long time. we use keventd instead, since
355 * long blocking there is the exception, not the rule. accordingly, HCDs
356 * talking to TTs must queue control transfers (not just bulk and iso), so
357 * both can talk to the same hub concurrently.
358 */
359static void hub_tt_kevent (void *arg)
360{
361 struct usb_hub *hub = arg;
362 unsigned long flags;
363
364 spin_lock_irqsave (&hub->tt.lock, flags);
365 while (!list_empty (&hub->tt.clear_list)) {
366 struct list_head *temp;
367 struct usb_tt_clear *clear;
368 struct usb_device *hdev = hub->hdev;
369 int status;
370
371 temp = hub->tt.clear_list.next;
372 clear = list_entry (temp, struct usb_tt_clear, clear_list);
373 list_del (&clear->clear_list);
374
375 /* drop lock so HCD can concurrently report other TT errors */
376 spin_unlock_irqrestore (&hub->tt.lock, flags);
377 status = hub_clear_tt_buffer (hdev, clear->devinfo, clear->tt);
378 spin_lock_irqsave (&hub->tt.lock, flags);
379
380 if (status)
381 dev_err (&hdev->dev,
382 "clear tt %d (%04x) error %d\n",
383 clear->tt, clear->devinfo, status);
Jesper Juhl1bc3c9e2005-04-18 17:39:34 -0700384 kfree(clear);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 }
386 spin_unlock_irqrestore (&hub->tt.lock, flags);
387}
388
389/**
390 * usb_hub_tt_clear_buffer - clear control/bulk TT state in high speed hub
391 * @udev: the device whose split transaction failed
392 * @pipe: identifies the endpoint of the failed transaction
393 *
394 * High speed HCDs use this to tell the hub driver that some split control or
395 * bulk transaction failed in a way that requires clearing internal state of
396 * a transaction translator. This is normally detected (and reported) from
397 * interrupt context.
398 *
399 * It may not be possible for that hub to handle additional full (or low)
400 * speed transactions until that state is fully cleared out.
401 */
402void usb_hub_tt_clear_buffer (struct usb_device *udev, int pipe)
403{
404 struct usb_tt *tt = udev->tt;
405 unsigned long flags;
406 struct usb_tt_clear *clear;
407
408 /* we've got to cope with an arbitrary number of pending TT clears,
409 * since each TT has "at least two" buffers that can need it (and
410 * there can be many TTs per hub). even if they're uncommon.
411 */
412 if ((clear = kmalloc (sizeof *clear, SLAB_ATOMIC)) == NULL) {
413 dev_err (&udev->dev, "can't save CLEAR_TT_BUFFER state\n");
414 /* FIXME recover somehow ... RESET_TT? */
415 return;
416 }
417
418 /* info that CLEAR_TT_BUFFER needs */
419 clear->tt = tt->multi ? udev->ttport : 1;
420 clear->devinfo = usb_pipeendpoint (pipe);
421 clear->devinfo |= udev->devnum << 4;
422 clear->devinfo |= usb_pipecontrol (pipe)
423 ? (USB_ENDPOINT_XFER_CONTROL << 11)
424 : (USB_ENDPOINT_XFER_BULK << 11);
425 if (usb_pipein (pipe))
426 clear->devinfo |= 1 << 15;
427
428 /* tell keventd to clear state for this TT */
429 spin_lock_irqsave (&tt->lock, flags);
430 list_add_tail (&clear->clear_list, &tt->clear_list);
431 schedule_work (&tt->kevent);
432 spin_unlock_irqrestore (&tt->lock, flags);
433}
434
435static void hub_power_on(struct usb_hub *hub)
436{
437 int port1;
David Brownellb7896962005-08-31 10:41:44 -0700438 unsigned pgood_delay = hub->descriptor->bPwrOn2PwrGood * 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439
440 /* if hub supports power switching, enable power on each port */
441 if ((hub->descriptor->wHubCharacteristics & HUB_CHAR_LPSM) < 2) {
442 dev_dbg(hub->intfdev, "enabling power on all ports\n");
443 for (port1 = 1; port1 <= hub->descriptor->bNbrPorts; port1++)
444 set_port_feature(hub->hdev, port1,
445 USB_PORT_FEAT_POWER);
446 }
447
David Brownellb7896962005-08-31 10:41:44 -0700448 /* Wait at least 100 msec for power to become stable */
449 msleep(max(pgood_delay, (unsigned) 100));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450}
451
David Brownell979d5192005-09-22 22:32:24 -0700452static inline void __hub_quiesce(struct usb_hub *hub)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453{
David Brownell979d5192005-09-22 22:32:24 -0700454 /* (nonblocking) khubd and related activity won't re-trigger */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 hub->quiescing = 1;
David Brownellc9f89fa2005-09-13 19:57:04 -0700456 hub->activating = 0;
David Brownell979d5192005-09-22 22:32:24 -0700457 hub->resume_root_hub = 0;
458}
459
460static void hub_quiesce(struct usb_hub *hub)
461{
462 /* (blocking) stop khubd and related activity */
463 __hub_quiesce(hub);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 usb_kill_urb(hub->urb);
465 if (hub->has_indicators)
466 cancel_delayed_work(&hub->leds);
467 if (hub->has_indicators || hub->tt.hub)
468 flush_scheduled_work();
469}
470
471static void hub_activate(struct usb_hub *hub)
472{
473 int status;
474
475 hub->quiescing = 0;
476 hub->activating = 1;
David Brownell979d5192005-09-22 22:32:24 -0700477 hub->resume_root_hub = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 status = usb_submit_urb(hub->urb, GFP_NOIO);
479 if (status < 0)
480 dev_err(hub->intfdev, "activate --> %d\n", status);
481 if (hub->has_indicators && blinkenlights)
482 schedule_delayed_work(&hub->leds, LED_CYCLE_PERIOD);
483
484 /* scan all ports ASAP */
485 kick_khubd(hub);
486}
487
488static int hub_hub_status(struct usb_hub *hub,
489 u16 *status, u16 *change)
490{
491 int ret;
492
493 ret = get_hub_status(hub->hdev, &hub->status->hub);
494 if (ret < 0)
495 dev_err (hub->intfdev,
496 "%s failed (err = %d)\n", __FUNCTION__, ret);
497 else {
498 *status = le16_to_cpu(hub->status->hub.wHubStatus);
499 *change = le16_to_cpu(hub->status->hub.wHubChange);
500 ret = 0;
501 }
502 return ret;
503}
504
Alan Stern8b28c752005-08-10 17:04:13 -0400505static int hub_port_disable(struct usb_hub *hub, int port1, int set_state)
506{
507 struct usb_device *hdev = hub->hdev;
508 int ret;
509
510 if (hdev->children[port1-1] && set_state) {
511 usb_set_device_state(hdev->children[port1-1],
512 USB_STATE_NOTATTACHED);
513 }
514 ret = clear_port_feature(hdev, port1, USB_PORT_FEAT_ENABLE);
515 if (ret)
516 dev_err(hub->intfdev, "cannot disable port %d (err = %d)\n",
517 port1, ret);
518
519 return ret;
520}
521
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522static int hub_configure(struct usb_hub *hub,
523 struct usb_endpoint_descriptor *endpoint)
524{
525 struct usb_device *hdev = hub->hdev;
526 struct device *hub_dev = hub->intfdev;
527 u16 hubstatus, hubchange;
528 unsigned int pipe;
529 int maxp, ret;
530 char *message;
531
532 hub->buffer = usb_buffer_alloc(hdev, sizeof(*hub->buffer), GFP_KERNEL,
533 &hub->buffer_dma);
534 if (!hub->buffer) {
535 message = "can't allocate hub irq buffer";
536 ret = -ENOMEM;
537 goto fail;
538 }
539
540 hub->status = kmalloc(sizeof(*hub->status), GFP_KERNEL);
541 if (!hub->status) {
542 message = "can't kmalloc hub status buffer";
543 ret = -ENOMEM;
544 goto fail;
545 }
546
547 hub->descriptor = kmalloc(sizeof(*hub->descriptor), GFP_KERNEL);
548 if (!hub->descriptor) {
549 message = "can't kmalloc hub descriptor";
550 ret = -ENOMEM;
551 goto fail;
552 }
553
554 /* Request the entire hub descriptor.
555 * hub->descriptor can handle USB_MAXCHILDREN ports,
556 * but the hub can/will return fewer bytes here.
557 */
558 ret = get_hub_descriptor(hdev, hub->descriptor,
559 sizeof(*hub->descriptor));
560 if (ret < 0) {
561 message = "can't read hub descriptor";
562 goto fail;
563 } else if (hub->descriptor->bNbrPorts > USB_MAXCHILDREN) {
564 message = "hub has too many ports!";
565 ret = -ENODEV;
566 goto fail;
567 }
568
569 hdev->maxchild = hub->descriptor->bNbrPorts;
570 dev_info (hub_dev, "%d port%s detected\n", hdev->maxchild,
571 (hdev->maxchild == 1) ? "" : "s");
572
573 le16_to_cpus(&hub->descriptor->wHubCharacteristics);
574
575 if (hub->descriptor->wHubCharacteristics & HUB_CHAR_COMPOUND) {
576 int i;
577 char portstr [USB_MAXCHILDREN + 1];
578
579 for (i = 0; i < hdev->maxchild; i++)
580 portstr[i] = hub->descriptor->DeviceRemovable
581 [((i + 1) / 8)] & (1 << ((i + 1) % 8))
582 ? 'F' : 'R';
583 portstr[hdev->maxchild] = 0;
584 dev_dbg(hub_dev, "compound device; port removable status: %s\n", portstr);
585 } else
586 dev_dbg(hub_dev, "standalone hub\n");
587
588 switch (hub->descriptor->wHubCharacteristics & HUB_CHAR_LPSM) {
589 case 0x00:
590 dev_dbg(hub_dev, "ganged power switching\n");
591 break;
592 case 0x01:
593 dev_dbg(hub_dev, "individual port power switching\n");
594 break;
595 case 0x02:
596 case 0x03:
597 dev_dbg(hub_dev, "no power switching (usb 1.0)\n");
598 break;
599 }
600
601 switch (hub->descriptor->wHubCharacteristics & HUB_CHAR_OCPM) {
602 case 0x00:
603 dev_dbg(hub_dev, "global over-current protection\n");
604 break;
605 case 0x08:
606 dev_dbg(hub_dev, "individual port over-current protection\n");
607 break;
608 case 0x10:
609 case 0x18:
610 dev_dbg(hub_dev, "no over-current protection\n");
611 break;
612 }
613
614 spin_lock_init (&hub->tt.lock);
615 INIT_LIST_HEAD (&hub->tt.clear_list);
616 INIT_WORK (&hub->tt.kevent, hub_tt_kevent, hub);
617 switch (hdev->descriptor.bDeviceProtocol) {
618 case 0:
619 break;
620 case 1:
621 dev_dbg(hub_dev, "Single TT\n");
622 hub->tt.hub = hdev;
623 break;
624 case 2:
625 ret = usb_set_interface(hdev, 0, 1);
626 if (ret == 0) {
627 dev_dbg(hub_dev, "TT per port\n");
628 hub->tt.multi = 1;
629 } else
630 dev_err(hub_dev, "Using single TT (err %d)\n",
631 ret);
632 hub->tt.hub = hdev;
633 break;
634 default:
635 dev_dbg(hub_dev, "Unrecognized hub protocol %d\n",
636 hdev->descriptor.bDeviceProtocol);
637 break;
638 }
639
david-b@pacbell.nete09711a2005-08-13 18:41:04 -0700640 /* Note 8 FS bit times == (8 bits / 12000000 bps) ~= 666ns */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 switch (hub->descriptor->wHubCharacteristics & HUB_CHAR_TTTT) {
david-b@pacbell.nete09711a2005-08-13 18:41:04 -0700642 case HUB_TTTT_8_BITS:
643 if (hdev->descriptor.bDeviceProtocol != 0) {
644 hub->tt.think_time = 666;
645 dev_dbg(hub_dev, "TT requires at most %d "
646 "FS bit times (%d ns)\n",
647 8, hub->tt.think_time);
648 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 break;
david-b@pacbell.nete09711a2005-08-13 18:41:04 -0700650 case HUB_TTTT_16_BITS:
651 hub->tt.think_time = 666 * 2;
652 dev_dbg(hub_dev, "TT requires at most %d "
653 "FS bit times (%d ns)\n",
654 16, hub->tt.think_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 break;
david-b@pacbell.nete09711a2005-08-13 18:41:04 -0700656 case HUB_TTTT_24_BITS:
657 hub->tt.think_time = 666 * 3;
658 dev_dbg(hub_dev, "TT requires at most %d "
659 "FS bit times (%d ns)\n",
660 24, hub->tt.think_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 break;
david-b@pacbell.nete09711a2005-08-13 18:41:04 -0700662 case HUB_TTTT_32_BITS:
663 hub->tt.think_time = 666 * 4;
664 dev_dbg(hub_dev, "TT requires at most %d "
665 "FS bit times (%d ns)\n",
666 32, hub->tt.think_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 break;
668 }
669
670 /* probe() zeroes hub->indicator[] */
671 if (hub->descriptor->wHubCharacteristics & HUB_CHAR_PORTIND) {
672 hub->has_indicators = 1;
673 dev_dbg(hub_dev, "Port indicators are supported\n");
674 }
675
676 dev_dbg(hub_dev, "power on to power good time: %dms\n",
677 hub->descriptor->bPwrOn2PwrGood * 2);
678
679 /* power budgeting mostly matters with bus-powered hubs,
680 * and battery-powered root hubs (may provide just 8 mA).
681 */
682 ret = usb_get_status(hdev, USB_RECIP_DEVICE, 0, &hubstatus);
683 if (ret < 0) {
684 message = "can't get hub status";
685 goto fail;
686 }
Alan Stern7d35b922005-04-25 11:18:32 -0400687 le16_to_cpus(&hubstatus);
688 if (hdev == hdev->bus->root_hub) {
689 struct usb_hcd *hcd =
690 container_of(hdev->bus, struct usb_hcd, self);
691
692 hub->power_budget = min(500u, hcd->power_budget) / 2;
693 } else if ((hubstatus & (1 << USB_DEVICE_SELF_POWERED)) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 dev_dbg(hub_dev, "hub controller current requirement: %dmA\n",
695 hub->descriptor->bHubContrCurrent);
696 hub->power_budget = (501 - hub->descriptor->bHubContrCurrent)
697 / 2;
Alan Stern7d35b922005-04-25 11:18:32 -0400698 }
699 if (hub->power_budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 dev_dbg(hub_dev, "%dmA bus power budget for children\n",
701 hub->power_budget * 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702
703
704 ret = hub_hub_status(hub, &hubstatus, &hubchange);
705 if (ret < 0) {
706 message = "can't get hub status";
707 goto fail;
708 }
709
710 /* local power status reports aren't always correct */
711 if (hdev->actconfig->desc.bmAttributes & USB_CONFIG_ATT_SELFPOWER)
712 dev_dbg(hub_dev, "local power source is %s\n",
713 (hubstatus & HUB_STATUS_LOCAL_POWER)
714 ? "lost (inactive)" : "good");
715
716 if ((hub->descriptor->wHubCharacteristics & HUB_CHAR_OCPM) == 0)
717 dev_dbg(hub_dev, "%sover-current condition exists\n",
718 (hubstatus & HUB_STATUS_OVERCURRENT) ? "" : "no ");
719
720 /* set up the interrupt endpoint */
721 pipe = usb_rcvintpipe(hdev, endpoint->bEndpointAddress);
722 maxp = usb_maxpacket(hdev, pipe, usb_pipeout(pipe));
723
724 if (maxp > sizeof(*hub->buffer))
725 maxp = sizeof(*hub->buffer);
726
727 hub->urb = usb_alloc_urb(0, GFP_KERNEL);
728 if (!hub->urb) {
729 message = "couldn't allocate interrupt urb";
730 ret = -ENOMEM;
731 goto fail;
732 }
733
734 usb_fill_int_urb(hub->urb, hdev, pipe, *hub->buffer, maxp, hub_irq,
735 hub, endpoint->bInterval);
736 hub->urb->transfer_dma = hub->buffer_dma;
737 hub->urb->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
738
739 /* maybe cycle the hub leds */
740 if (hub->has_indicators && blinkenlights)
741 hub->indicator [0] = INDICATOR_CYCLE;
742
743 hub_power_on(hub);
744 hub_activate(hub);
745 return 0;
746
747fail:
748 dev_err (hub_dev, "config failed, %s (err %d)\n",
749 message, ret);
750 /* hub_disconnect() frees urb and descriptor */
751 return ret;
752}
753
754static unsigned highspeed_hubs;
755
Alan Sternbf193d32005-08-10 17:12:31 -0400756/* Called after the hub driver is unbound from a hub with children */
757static void hub_remove_children_work(void *__hub)
758{
759 struct usb_hub *hub = __hub;
760 struct usb_device *hdev = hub->hdev;
761 int i;
762
763 kfree(hub);
764
765 usb_lock_device(hdev);
766 for (i = 0; i < hdev->maxchild; ++i) {
767 if (hdev->children[i])
768 usb_disconnect(&hdev->children[i]);
769 }
770 usb_unlock_device(hdev);
771 usb_put_dev(hdev);
772}
773
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774static void hub_disconnect(struct usb_interface *intf)
775{
776 struct usb_hub *hub = usb_get_intfdata (intf);
777 struct usb_device *hdev;
Alan Sternbf193d32005-08-10 17:12:31 -0400778 int n, port1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779
Alan Stern8b28c752005-08-10 17:04:13 -0400780 usb_set_intfdata (intf, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 hdev = hub->hdev;
782
783 if (hdev->speed == USB_SPEED_HIGH)
784 highspeed_hubs--;
785
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 hub_quiesce(hub);
787 usb_free_urb(hub->urb);
788 hub->urb = NULL;
789
790 spin_lock_irq(&hub_event_lock);
791 list_del_init(&hub->event_list);
792 spin_unlock_irq(&hub_event_lock);
793
Jesper Juhl1bc3c9e2005-04-18 17:39:34 -0700794 kfree(hub->descriptor);
795 hub->descriptor = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796
Jesper Juhl1bc3c9e2005-04-18 17:39:34 -0700797 kfree(hub->status);
798 hub->status = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799
800 if (hub->buffer) {
801 usb_buffer_free(hdev, sizeof(*hub->buffer), hub->buffer,
802 hub->buffer_dma);
803 hub->buffer = NULL;
804 }
805
Alan Sternbf193d32005-08-10 17:12:31 -0400806 /* If there are any children then this is an unbind only, not a
807 * physical disconnection. The active ports must be disabled
808 * and later on we must call usb_disconnect(). We can't call
809 * it now because we may not hold the hub's device lock.
810 */
811 n = 0;
812 for (port1 = 1; port1 <= hdev->maxchild; ++port1) {
813 if (hdev->children[port1 - 1]) {
814 ++n;
815 hub_port_disable(hub, port1, 1);
816 }
817 }
818
819 if (n == 0)
820 kfree(hub);
821 else {
822 /* Reuse the hub->leds work_struct for our own purposes */
823 INIT_WORK(&hub->leds, hub_remove_children_work, hub);
824 schedule_work(&hub->leds);
825 usb_get_dev(hdev);
826 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827}
828
829static int hub_probe(struct usb_interface *intf, const struct usb_device_id *id)
830{
831 struct usb_host_interface *desc;
832 struct usb_endpoint_descriptor *endpoint;
833 struct usb_device *hdev;
834 struct usb_hub *hub;
835
836 desc = intf->cur_altsetting;
837 hdev = interface_to_usbdev(intf);
838
839 /* Some hubs have a subclass of 1, which AFAICT according to the */
840 /* specs is not defined, but it works */
841 if ((desc->desc.bInterfaceSubClass != 0) &&
842 (desc->desc.bInterfaceSubClass != 1)) {
843descriptor_error:
844 dev_err (&intf->dev, "bad descriptor, ignoring hub\n");
845 return -EIO;
846 }
847
848 /* Multiple endpoints? What kind of mutant ninja-hub is this? */
849 if (desc->desc.bNumEndpoints != 1)
850 goto descriptor_error;
851
852 endpoint = &desc->endpoint[0].desc;
853
854 /* Output endpoint? Curiouser and curiouser.. */
855 if (!(endpoint->bEndpointAddress & USB_DIR_IN))
856 goto descriptor_error;
857
858 /* If it's not an interrupt endpoint, we'd better punt! */
859 if ((endpoint->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK)
860 != USB_ENDPOINT_XFER_INT)
861 goto descriptor_error;
862
863 /* We found a hub */
864 dev_info (&intf->dev, "USB hub found\n");
865
866 hub = kmalloc(sizeof(*hub), GFP_KERNEL);
867 if (!hub) {
868 dev_dbg (&intf->dev, "couldn't kmalloc hub struct\n");
869 return -ENOMEM;
870 }
871
872 memset(hub, 0, sizeof(*hub));
873
874 INIT_LIST_HEAD(&hub->event_list);
875 hub->intfdev = &intf->dev;
876 hub->hdev = hdev;
877 INIT_WORK(&hub->leds, led_work, hub);
878
879 usb_set_intfdata (intf, hub);
880
881 if (hdev->speed == USB_SPEED_HIGH)
882 highspeed_hubs++;
883
884 if (hub_configure(hub, endpoint) >= 0)
885 return 0;
886
887 hub_disconnect (intf);
888 return -ENODEV;
889}
890
891static int
892hub_ioctl(struct usb_interface *intf, unsigned int code, void *user_data)
893{
894 struct usb_device *hdev = interface_to_usbdev (intf);
895
896 /* assert ifno == 0 (part of hub spec) */
897 switch (code) {
898 case USBDEVFS_HUB_PORTINFO: {
899 struct usbdevfs_hub_portinfo *info = user_data;
900 int i;
901
902 spin_lock_irq(&device_state_lock);
903 if (hdev->devnum <= 0)
904 info->nports = 0;
905 else {
906 info->nports = hdev->maxchild;
907 for (i = 0; i < info->nports; i++) {
908 if (hdev->children[i] == NULL)
909 info->port[i] = 0;
910 else
911 info->port[i] =
912 hdev->children[i]->devnum;
913 }
914 }
915 spin_unlock_irq(&device_state_lock);
916
917 return info->nports + 1;
918 }
919
920 default:
921 return -ENOSYS;
922 }
923}
924
925/* caller has locked the hub device */
926static void hub_pre_reset(struct usb_hub *hub)
927{
928 struct usb_device *hdev = hub->hdev;
929 int i;
930
931 for (i = 0; i < hdev->maxchild; ++i) {
932 if (hdev->children[i])
933 usb_disconnect(&hdev->children[i]);
934 }
935 hub_quiesce(hub);
936}
937
938/* caller has locked the hub device */
939static void hub_post_reset(struct usb_hub *hub)
940{
941 hub_activate(hub);
942 hub_power_on(hub);
943}
944
945
946/* grab device/port lock, returning index of that port (zero based).
947 * protects the upstream link used by this device from concurrent
948 * tree operations like suspend, resume, reset, and disconnect, which
949 * apply to everything downstream of a given port.
950 */
951static int locktree(struct usb_device *udev)
952{
953 int t;
954 struct usb_device *hdev;
955
956 if (!udev)
957 return -ENODEV;
958
959 /* root hub is always the first lock in the series */
960 hdev = udev->parent;
961 if (!hdev) {
962 usb_lock_device(udev);
963 return 0;
964 }
965
966 /* on the path from root to us, lock everything from
967 * top down, dropping parent locks when not needed
968 */
969 t = locktree(hdev);
970 if (t < 0)
971 return t;
972 for (t = 0; t < hdev->maxchild; t++) {
973 if (hdev->children[t] == udev) {
974 /* everything is fail-fast once disconnect
975 * processing starts
976 */
977 if (udev->state == USB_STATE_NOTATTACHED)
978 break;
979
980 /* when everyone grabs locks top->bottom,
981 * non-overlapping work may be concurrent
982 */
983 down(&udev->serialize);
984 up(&hdev->serialize);
985 return t + 1;
986 }
987 }
988 usb_unlock_device(hdev);
989 return -ENODEV;
990}
991
992static void recursively_mark_NOTATTACHED(struct usb_device *udev)
993{
994 int i;
995
996 for (i = 0; i < udev->maxchild; ++i) {
997 if (udev->children[i])
998 recursively_mark_NOTATTACHED(udev->children[i]);
999 }
1000 udev->state = USB_STATE_NOTATTACHED;
1001}
1002
1003/**
1004 * usb_set_device_state - change a device's current state (usbcore, hcds)
1005 * @udev: pointer to device whose state should be changed
1006 * @new_state: new state value to be stored
1007 *
1008 * udev->state is _not_ fully protected by the device lock. Although
1009 * most transitions are made only while holding the lock, the state can
1010 * can change to USB_STATE_NOTATTACHED at almost any time. This
1011 * is so that devices can be marked as disconnected as soon as possible,
1012 * without having to wait for any semaphores to be released. As a result,
1013 * all changes to any device's state must be protected by the
1014 * device_state_lock spinlock.
1015 *
1016 * Once a device has been added to the device tree, all changes to its state
1017 * should be made using this routine. The state should _not_ be set directly.
1018 *
1019 * If udev->state is already USB_STATE_NOTATTACHED then no change is made.
1020 * Otherwise udev->state is set to new_state, and if new_state is
1021 * USB_STATE_NOTATTACHED then all of udev's descendants' states are also set
1022 * to USB_STATE_NOTATTACHED.
1023 */
1024void usb_set_device_state(struct usb_device *udev,
1025 enum usb_device_state new_state)
1026{
1027 unsigned long flags;
1028
1029 spin_lock_irqsave(&device_state_lock, flags);
1030 if (udev->state == USB_STATE_NOTATTACHED)
1031 ; /* do nothing */
David Brownellb94dc6b2005-09-12 19:39:39 -07001032 else if (new_state != USB_STATE_NOTATTACHED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 udev->state = new_state;
David Brownellb94dc6b2005-09-12 19:39:39 -07001034 if (new_state == USB_STATE_CONFIGURED)
1035 device_init_wakeup(&udev->dev,
1036 (udev->actconfig->desc.bmAttributes
1037 & USB_CONFIG_ATT_WAKEUP));
1038 else if (new_state != USB_STATE_SUSPENDED)
1039 device_init_wakeup(&udev->dev, 0);
1040 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 recursively_mark_NOTATTACHED(udev);
1042 spin_unlock_irqrestore(&device_state_lock, flags);
1043}
1044EXPORT_SYMBOL(usb_set_device_state);
1045
1046
1047static void choose_address(struct usb_device *udev)
1048{
1049 int devnum;
1050 struct usb_bus *bus = udev->bus;
1051
1052 /* If khubd ever becomes multithreaded, this will need a lock */
1053
1054 /* Try to allocate the next devnum beginning at bus->devnum_next. */
1055 devnum = find_next_zero_bit(bus->devmap.devicemap, 128,
1056 bus->devnum_next);
1057 if (devnum >= 128)
1058 devnum = find_next_zero_bit(bus->devmap.devicemap, 128, 1);
1059
1060 bus->devnum_next = ( devnum >= 127 ? 1 : devnum + 1);
1061
1062 if (devnum < 128) {
1063 set_bit(devnum, bus->devmap.devicemap);
1064 udev->devnum = devnum;
1065 }
1066}
1067
1068static void release_address(struct usb_device *udev)
1069{
1070 if (udev->devnum > 0) {
1071 clear_bit(udev->devnum, udev->bus->devmap.devicemap);
1072 udev->devnum = -1;
1073 }
1074}
1075
1076/**
1077 * usb_disconnect - disconnect a device (usbcore-internal)
1078 * @pdev: pointer to device being disconnected
1079 * Context: !in_interrupt ()
1080 *
1081 * Something got disconnected. Get rid of it and all of its children.
1082 *
1083 * If *pdev is a normal device then the parent hub must already be locked.
1084 * If *pdev is a root hub then this routine will acquire the
1085 * usb_bus_list_lock on behalf of the caller.
1086 *
1087 * Only hub drivers (including virtual root hub drivers for host
1088 * controllers) should ever call this.
1089 *
1090 * This call is synchronous, and may not be used in an interrupt context.
1091 */
1092void usb_disconnect(struct usb_device **pdev)
1093{
1094 struct usb_device *udev = *pdev;
1095 int i;
1096
1097 if (!udev) {
1098 pr_debug ("%s nodev\n", __FUNCTION__);
1099 return;
1100 }
1101
1102 /* mark the device as inactive, so any further urb submissions for
1103 * this device (and any of its children) will fail immediately.
1104 * this quiesces everyting except pending urbs.
1105 */
1106 usb_set_device_state(udev, USB_STATE_NOTATTACHED);
1107
1108 /* lock the bus list on behalf of HCDs unregistering their root hubs */
1109 if (!udev->parent) {
1110 down(&usb_bus_list_lock);
1111 usb_lock_device(udev);
1112 } else
1113 down(&udev->serialize);
1114
1115 dev_info (&udev->dev, "USB disconnect, address %d\n", udev->devnum);
1116
1117 /* Free up all the children before we remove this device */
1118 for (i = 0; i < USB_MAXCHILDREN; i++) {
1119 if (udev->children[i])
1120 usb_disconnect(&udev->children[i]);
1121 }
1122
1123 /* deallocate hcd/hardware state ... nuking all pending urbs and
1124 * cleaning up all state associated with the current configuration
1125 * so that the hardware is now fully quiesced.
1126 */
1127 usb_disable_device(udev, 0);
1128
1129 /* Free the device number, remove the /proc/bus/usb entry and
1130 * the sysfs attributes, and delete the parent's children[]
1131 * (or root_hub) pointer.
1132 */
1133 dev_dbg (&udev->dev, "unregistering device\n");
1134 release_address(udev);
1135 usbfs_remove_device(udev);
Kay Sieversfbf82fd2005-07-31 01:05:53 +02001136 usbdev_remove(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 usb_remove_sysfs_dev_files(udev);
1138
1139 /* Avoid races with recursively_mark_NOTATTACHED() */
1140 spin_lock_irq(&device_state_lock);
1141 *pdev = NULL;
1142 spin_unlock_irq(&device_state_lock);
1143
1144 if (!udev->parent) {
1145 usb_unlock_device(udev);
1146 up(&usb_bus_list_lock);
1147 } else
1148 up(&udev->serialize);
1149
1150 device_unregister(&udev->dev);
1151}
1152
1153static int choose_configuration(struct usb_device *udev)
1154{
1155 int c, i;
1156
1157 /* NOTE: this should interact with hub power budgeting */
1158
1159 c = udev->config[0].desc.bConfigurationValue;
1160 if (udev->descriptor.bNumConfigurations != 1) {
1161 for (i = 0; i < udev->descriptor.bNumConfigurations; i++) {
1162 struct usb_interface_descriptor *desc;
1163
1164 /* heuristic: Linux is more likely to have class
1165 * drivers, so avoid vendor-specific interfaces.
1166 */
1167 desc = &udev->config[i].intf_cache[0]
1168 ->altsetting->desc;
1169 if (desc->bInterfaceClass == USB_CLASS_VENDOR_SPEC)
1170 continue;
1171 /* COMM/2/all is CDC ACM, except 0xff is MSFT RNDIS.
1172 * MSFT needs this to be the first config; never use
1173 * it as the default unless Linux has host-side RNDIS.
1174 * A second config would ideally be CDC-Ethernet, but
1175 * may instead be the "vendor specific" CDC subset
1176 * long used by ARM Linux for sa1100 or pxa255.
1177 */
1178 if (desc->bInterfaceClass == USB_CLASS_COMM
1179 && desc->bInterfaceSubClass == 2
1180 && desc->bInterfaceProtocol == 0xff) {
1181 c = udev->config[1].desc.bConfigurationValue;
1182 continue;
1183 }
1184 c = udev->config[i].desc.bConfigurationValue;
1185 break;
1186 }
1187 dev_info(&udev->dev,
1188 "configuration #%d chosen from %d choices\n",
1189 c, udev->descriptor.bNumConfigurations);
1190 }
1191 return c;
1192}
1193
1194#ifdef DEBUG
1195static void show_string(struct usb_device *udev, char *id, char *string)
1196{
1197 if (!string)
1198 return;
1199 dev_printk(KERN_INFO, &udev->dev, "%s: %s\n", id, string);
1200}
1201
1202#else
1203static inline void show_string(struct usb_device *udev, char *id, char *string)
1204{}
1205#endif
1206
1207static void get_string(struct usb_device *udev, char **string, int index)
1208{
1209 char *buf;
1210
1211 if (!index)
1212 return;
1213 buf = kmalloc(256, GFP_KERNEL);
1214 if (!buf)
1215 return;
1216 if (usb_string(udev, index, buf, 256) > 0)
1217 *string = buf;
1218 else
1219 kfree(buf);
1220}
1221
1222
1223#ifdef CONFIG_USB_OTG
1224#include "otg_whitelist.h"
1225#endif
1226
1227/**
1228 * usb_new_device - perform initial device setup (usbcore-internal)
1229 * @udev: newly addressed device (in ADDRESS state)
1230 *
1231 * This is called with devices which have been enumerated, but not yet
1232 * configured. The device descriptor is available, but not descriptors
1233 * for any device configuration. The caller must have locked udev and
1234 * either the parent hub (if udev is a normal device) or else the
1235 * usb_bus_list_lock (if udev is a root hub). The parent's pointer to
1236 * udev has already been installed, but udev is not yet visible through
1237 * sysfs or other filesystem code.
1238 *
1239 * Returns 0 for success (device is configured and listed, with its
1240 * interfaces, in sysfs); else a negative errno value.
1241 *
1242 * This call is synchronous, and may not be used in an interrupt context.
1243 *
1244 * Only the hub driver should ever call this; root hub registration
1245 * uses it indirectly.
1246 */
1247int usb_new_device(struct usb_device *udev)
1248{
1249 int err;
1250 int c;
1251
1252 err = usb_get_configuration(udev);
1253 if (err < 0) {
1254 dev_err(&udev->dev, "can't read configurations, error %d\n",
1255 err);
1256 goto fail;
1257 }
1258
1259 /* read the standard strings and cache them if present */
1260 get_string(udev, &udev->product, udev->descriptor.iProduct);
1261 get_string(udev, &udev->manufacturer, udev->descriptor.iManufacturer);
1262 get_string(udev, &udev->serial, udev->descriptor.iSerialNumber);
1263
1264 /* Tell the world! */
1265 dev_dbg(&udev->dev, "new device strings: Mfr=%d, Product=%d, "
1266 "SerialNumber=%d\n",
1267 udev->descriptor.iManufacturer,
1268 udev->descriptor.iProduct,
1269 udev->descriptor.iSerialNumber);
1270 show_string(udev, "Product", udev->product);
1271 show_string(udev, "Manufacturer", udev->manufacturer);
1272 show_string(udev, "SerialNumber", udev->serial);
1273
1274#ifdef CONFIG_USB_OTG
1275 /*
1276 * OTG-aware devices on OTG-capable root hubs may be able to use SRP,
1277 * to wake us after we've powered off VBUS; and HNP, switching roles
1278 * "host" to "peripheral". The OTG descriptor helps figure this out.
1279 */
1280 if (!udev->bus->is_b_host
1281 && udev->config
1282 && udev->parent == udev->bus->root_hub) {
1283 struct usb_otg_descriptor *desc = 0;
1284 struct usb_bus *bus = udev->bus;
1285
1286 /* descriptor may appear anywhere in config */
1287 if (__usb_get_extra_descriptor (udev->rawdescriptors[0],
1288 le16_to_cpu(udev->config[0].desc.wTotalLength),
1289 USB_DT_OTG, (void **) &desc) == 0) {
1290 if (desc->bmAttributes & USB_OTG_HNP) {
1291 unsigned port1;
1292 struct usb_device *root = udev->parent;
1293
1294 for (port1 = 1; port1 <= root->maxchild;
1295 port1++) {
1296 if (root->children[port1-1] == udev)
1297 break;
1298 }
1299
1300 dev_info(&udev->dev,
1301 "Dual-Role OTG device on %sHNP port\n",
1302 (port1 == bus->otg_port)
1303 ? "" : "non-");
1304
1305 /* enable HNP before suspend, it's simpler */
1306 if (port1 == bus->otg_port)
1307 bus->b_hnp_enable = 1;
1308 err = usb_control_msg(udev,
1309 usb_sndctrlpipe(udev, 0),
1310 USB_REQ_SET_FEATURE, 0,
1311 bus->b_hnp_enable
1312 ? USB_DEVICE_B_HNP_ENABLE
1313 : USB_DEVICE_A_ALT_HNP_SUPPORT,
1314 0, NULL, 0, USB_CTRL_SET_TIMEOUT);
1315 if (err < 0) {
1316 /* OTG MESSAGE: report errors here,
1317 * customize to match your product.
1318 */
1319 dev_info(&udev->dev,
1320 "can't set HNP mode; %d\n",
1321 err);
1322 bus->b_hnp_enable = 0;
1323 }
1324 }
1325 }
1326 }
1327
1328 if (!is_targeted(udev)) {
1329
1330 /* Maybe it can talk to us, though we can't talk to it.
1331 * (Includes HNP test device.)
1332 */
1333 if (udev->bus->b_hnp_enable || udev->bus->is_b_host) {
David Brownell390a8c32005-09-13 19:57:27 -07001334 static int __usb_suspend_device(struct usb_device *,
1335 int port1);
1336 err = __usb_suspend_device(udev, udev->bus->otg_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 if (err < 0)
1338 dev_dbg(&udev->dev, "HNP fail, %d\n", err);
1339 }
1340 err = -ENODEV;
1341 goto fail;
1342 }
1343#endif
1344
1345 /* put device-specific files into sysfs */
1346 err = device_add (&udev->dev);
1347 if (err) {
1348 dev_err(&udev->dev, "can't device_add, error %d\n", err);
1349 goto fail;
1350 }
1351 usb_create_sysfs_dev_files (udev);
1352
1353 /* choose and set the configuration. that registers the interfaces
1354 * with the driver core, and lets usb device drivers bind to them.
1355 */
1356 c = choose_configuration(udev);
1357 if (c < 0)
1358 dev_warn(&udev->dev,
1359 "can't choose an initial configuration\n");
1360 else {
1361 err = usb_set_configuration(udev, c);
1362 if (err) {
1363 dev_err(&udev->dev, "can't set config #%d, error %d\n",
1364 c, err);
1365 usb_remove_sysfs_dev_files(udev);
1366 device_del(&udev->dev);
1367 goto fail;
1368 }
1369 }
1370
1371 /* USB device state == configured ... usable */
1372
1373 /* add a /proc/bus/usb entry */
Kay Sieversfbf82fd2005-07-31 01:05:53 +02001374 usbdev_add(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 usbfs_add_device(udev);
1376 return 0;
1377
1378fail:
1379 usb_set_device_state(udev, USB_STATE_NOTATTACHED);
1380 return err;
1381}
1382
1383
1384static int hub_port_status(struct usb_hub *hub, int port1,
1385 u16 *status, u16 *change)
1386{
1387 int ret;
1388
1389 ret = get_port_status(hub->hdev, port1, &hub->status->port);
1390 if (ret < 0)
1391 dev_err (hub->intfdev,
1392 "%s failed (err = %d)\n", __FUNCTION__, ret);
1393 else {
1394 *status = le16_to_cpu(hub->status->port.wPortStatus);
1395 *change = le16_to_cpu(hub->status->port.wPortChange);
1396 ret = 0;
1397 }
1398 return ret;
1399}
1400
1401#define PORT_RESET_TRIES 5
1402#define SET_ADDRESS_TRIES 2
1403#define GET_DESCRIPTOR_TRIES 2
1404#define SET_CONFIG_TRIES (2 * (use_both_schemes + 1))
1405#define USE_NEW_SCHEME(i) ((i) / 2 == old_scheme_first)
1406
1407#define HUB_ROOT_RESET_TIME 50 /* times are in msec */
1408#define HUB_SHORT_RESET_TIME 10
1409#define HUB_LONG_RESET_TIME 200
1410#define HUB_RESET_TIMEOUT 500
1411
1412static int hub_port_wait_reset(struct usb_hub *hub, int port1,
1413 struct usb_device *udev, unsigned int delay)
1414{
1415 int delay_time, ret;
1416 u16 portstatus;
1417 u16 portchange;
1418
1419 for (delay_time = 0;
1420 delay_time < HUB_RESET_TIMEOUT;
1421 delay_time += delay) {
1422 /* wait to give the device a chance to reset */
1423 msleep(delay);
1424
1425 /* read and decode port status */
1426 ret = hub_port_status(hub, port1, &portstatus, &portchange);
1427 if (ret < 0)
1428 return ret;
1429
1430 /* Device went away? */
1431 if (!(portstatus & USB_PORT_STAT_CONNECTION))
1432 return -ENOTCONN;
1433
1434 /* bomb out completely if something weird happened */
1435 if ((portchange & USB_PORT_STAT_C_CONNECTION))
1436 return -EINVAL;
1437
1438 /* if we`ve finished resetting, then break out of the loop */
1439 if (!(portstatus & USB_PORT_STAT_RESET) &&
1440 (portstatus & USB_PORT_STAT_ENABLE)) {
1441 if (portstatus & USB_PORT_STAT_HIGH_SPEED)
1442 udev->speed = USB_SPEED_HIGH;
1443 else if (portstatus & USB_PORT_STAT_LOW_SPEED)
1444 udev->speed = USB_SPEED_LOW;
1445 else
1446 udev->speed = USB_SPEED_FULL;
1447 return 0;
1448 }
1449
1450 /* switch to the long delay after two short delay failures */
1451 if (delay_time >= 2 * HUB_SHORT_RESET_TIME)
1452 delay = HUB_LONG_RESET_TIME;
1453
1454 dev_dbg (hub->intfdev,
1455 "port %d not reset yet, waiting %dms\n",
1456 port1, delay);
1457 }
1458
1459 return -EBUSY;
1460}
1461
1462static int hub_port_reset(struct usb_hub *hub, int port1,
1463 struct usb_device *udev, unsigned int delay)
1464{
1465 int i, status;
1466
1467 /* Reset the port */
1468 for (i = 0; i < PORT_RESET_TRIES; i++) {
1469 status = set_port_feature(hub->hdev,
1470 port1, USB_PORT_FEAT_RESET);
1471 if (status)
1472 dev_err(hub->intfdev,
1473 "cannot reset port %d (err = %d)\n",
1474 port1, status);
1475 else {
1476 status = hub_port_wait_reset(hub, port1, udev, delay);
David Brownelldd165252005-08-31 10:45:25 -07001477 if (status && status != -ENOTCONN)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 dev_dbg(hub->intfdev,
1479 "port_wait_reset: err = %d\n",
1480 status);
1481 }
1482
1483 /* return on disconnect or reset */
1484 switch (status) {
1485 case 0:
David Brownellb7896962005-08-31 10:41:44 -07001486 /* TRSTRCY = 10 ms; plus some extra */
1487 msleep(10 + 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488 /* FALL THROUGH */
1489 case -ENOTCONN:
1490 case -ENODEV:
1491 clear_port_feature(hub->hdev,
1492 port1, USB_PORT_FEAT_C_RESET);
1493 /* FIXME need disconnect() for NOTATTACHED device */
1494 usb_set_device_state(udev, status
1495 ? USB_STATE_NOTATTACHED
1496 : USB_STATE_DEFAULT);
1497 return status;
1498 }
1499
1500 dev_dbg (hub->intfdev,
1501 "port %d not enabled, trying reset again...\n",
1502 port1);
1503 delay = HUB_LONG_RESET_TIME;
1504 }
1505
1506 dev_err (hub->intfdev,
1507 "Cannot enable port %i. Maybe the USB cable is bad?\n",
1508 port1);
1509
1510 return status;
1511}
1512
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513/*
1514 * Disable a port and mark a logical connnect-change event, so that some
1515 * time later khubd will disconnect() any existing usb_device on the port
1516 * and will re-enumerate if there actually is a device attached.
1517 */
1518static void hub_port_logical_disconnect(struct usb_hub *hub, int port1)
1519{
1520 dev_dbg(hub->intfdev, "logical disconnect on port %d\n", port1);
1521 hub_port_disable(hub, port1, 1);
1522
1523 /* FIXME let caller ask to power down the port:
1524 * - some devices won't enumerate without a VBUS power cycle
1525 * - SRP saves power that way
David Brownell390a8c32005-09-13 19:57:27 -07001526 * - ... new call, TBD ...
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527 * That's easy if this hub can switch power per-port, and
1528 * khubd reactivates the port later (timer, SRP, etc).
1529 * Powerdown must be optional, because of reset/DFU.
1530 */
1531
1532 set_bit(port1, hub->change_bits);
1533 kick_khubd(hub);
1534}
1535
1536
1537#ifdef CONFIG_USB_SUSPEND
1538
1539/*
1540 * Selective port suspend reduces power; most suspended devices draw
1541 * less than 500 uA. It's also used in OTG, along with remote wakeup.
1542 * All devices below the suspended port are also suspended.
1543 *
1544 * Devices leave suspend state when the host wakes them up. Some devices
1545 * also support "remote wakeup", where the device can activate the USB
1546 * tree above them to deliver data, such as a keypress or packet. In
1547 * some cases, this wakes the USB host.
1548 */
1549static int hub_port_suspend(struct usb_hub *hub, int port1,
1550 struct usb_device *udev)
1551{
1552 int status;
1553
1554 // dev_dbg(hub->intfdev, "suspend port %d\n", port1);
1555
1556 /* enable remote wakeup when appropriate; this lets the device
1557 * wake up the upstream hub (including maybe the root hub).
1558 *
1559 * NOTE: OTG devices may issue remote wakeup (or SRP) even when
1560 * we don't explicitly enable it here.
1561 */
David Brownellb94dc6b2005-09-12 19:39:39 -07001562 if (device_may_wakeup(&udev->dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 status = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
1564 USB_REQ_SET_FEATURE, USB_RECIP_DEVICE,
1565 USB_DEVICE_REMOTE_WAKEUP, 0,
1566 NULL, 0,
1567 USB_CTRL_SET_TIMEOUT);
1568 if (status)
1569 dev_dbg(&udev->dev,
1570 "won't remote wakeup, status %d\n",
1571 status);
1572 }
1573
1574 /* see 7.1.7.6 */
1575 status = set_port_feature(hub->hdev, port1, USB_PORT_FEAT_SUSPEND);
1576 if (status) {
1577 dev_dbg(hub->intfdev,
1578 "can't suspend port %d, status %d\n",
1579 port1, status);
1580 /* paranoia: "should not happen" */
1581 (void) usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
1582 USB_REQ_CLEAR_FEATURE, USB_RECIP_DEVICE,
1583 USB_DEVICE_REMOTE_WAKEUP, 0,
1584 NULL, 0,
1585 USB_CTRL_SET_TIMEOUT);
1586 } else {
1587 /* device has up to 10 msec to fully suspend */
1588 dev_dbg(&udev->dev, "usb suspend\n");
1589 usb_set_device_state(udev, USB_STATE_SUSPENDED);
1590 msleep(10);
1591 }
1592 return status;
1593}
1594
1595/*
1596 * Devices on USB hub ports have only one "suspend" state, corresponding
Pavel Machekba9d35f2005-04-18 17:39:24 -07001597 * to ACPI D2, "may cause the device to lose some context".
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 * State transitions include:
1599 *
1600 * - suspend, resume ... when the VBUS power link stays live
1601 * - suspend, disconnect ... VBUS lost
1602 *
1603 * Once VBUS drop breaks the circuit, the port it's using has to go through
1604 * normal re-enumeration procedures, starting with enabling VBUS power.
1605 * Other than re-initializing the hub (plug/unplug, except for root hubs),
1606 * Linux (2.6) currently has NO mechanisms to initiate that: no khubd
1607 * timer, no SRP, no requests through sysfs.
David Brownell390a8c32005-09-13 19:57:27 -07001608 *
1609 * If CONFIG_USB_SUSPEND isn't enabled, devices only really suspend when
1610 * the root hub for their bus goes into global suspend ... so we don't
1611 * (falsely) update the device power state to say it suspended.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612 */
David Brownell390a8c32005-09-13 19:57:27 -07001613static int __usb_suspend_device (struct usb_device *udev, int port1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614{
David Brownellf3f32532005-09-22 22:37:29 -07001615 int status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616
1617 /* caller owns the udev device lock */
1618 if (port1 < 0)
1619 return port1;
1620
1621 if (udev->state == USB_STATE_SUSPENDED
1622 || udev->state == USB_STATE_NOTATTACHED) {
1623 return 0;
1624 }
1625
David Brownellc9f89fa2005-09-13 19:57:04 -07001626 /* all interfaces must already be suspended */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627 if (udev->actconfig) {
1628 int i;
1629
1630 for (i = 0; i < udev->actconfig->desc.bNumInterfaces; i++) {
1631 struct usb_interface *intf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632
1633 intf = udev->actconfig->interface[i];
David Brownellc9f89fa2005-09-13 19:57:04 -07001634 if (is_active(intf)) {
1635 dev_dbg(&intf->dev, "nyet suspended\n");
1636 return -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637 }
1638 }
1639 }
1640
David Brownellf3f32532005-09-22 22:37:29 -07001641 /* we only change a device's upstream USB link.
1642 * root hubs have no upstream USB link.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 */
David Brownellf3f32532005-09-22 22:37:29 -07001644 if (udev->parent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 status = hub_port_suspend(hdev_to_hub(udev->parent), port1,
1646 udev);
1647
1648 if (status == 0)
David Brownell390a8c32005-09-13 19:57:27 -07001649 udev->dev.power.power_state = PMSG_SUSPEND;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 return status;
1651}
1652
David Brownellf3f32532005-09-22 22:37:29 -07001653#endif
1654
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655/**
1656 * usb_suspend_device - suspend a usb device
1657 * @udev: device that's no longer in active use
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 * Context: must be able to sleep; device not locked
1659 *
1660 * Suspends a USB device that isn't in active use, conserving power.
1661 * Devices may wake out of a suspend, if anything important happens,
1662 * using the remote wakeup mechanism. They may also be taken out of
1663 * suspend by the host, using usb_resume_device(). It's also routine
1664 * to disconnect devices while they are suspended.
1665 *
David Brownell390a8c32005-09-13 19:57:27 -07001666 * This only affects the USB hardware for a device; its interfaces
1667 * (and, for hubs, child devices) must already have been suspended.
1668 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669 * Suspending OTG devices may trigger HNP, if that's been enabled
1670 * between a pair of dual-role devices. That will change roles, such
1671 * as from A-Host to A-Peripheral or from B-Host back to B-Peripheral.
1672 *
1673 * Returns 0 on success, else negative errno.
1674 */
David Brownell390a8c32005-09-13 19:57:27 -07001675int usb_suspend_device(struct usb_device *udev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676{
David Brownellf3f32532005-09-22 22:37:29 -07001677#ifdef CONFIG_USB_SUSPEND
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678 int port1, status;
1679
1680 port1 = locktree(udev);
1681 if (port1 < 0)
1682 return port1;
1683
David Brownell390a8c32005-09-13 19:57:27 -07001684 status = __usb_suspend_device(udev, port1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685 usb_unlock_device(udev);
1686 return status;
David Brownellf3f32532005-09-22 22:37:29 -07001687#else
1688 /* NOTE: udev->state unchanged, it's not lying ... */
1689 udev->dev.power.power_state = PMSG_SUSPEND;
1690 return 0;
1691#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692}
1693
David Brownellf3f32532005-09-22 22:37:29 -07001694
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695/*
David Brownell390a8c32005-09-13 19:57:27 -07001696 * If the USB "suspend" state is in use (rather than "global suspend"),
1697 * many devices will be individually taken out of suspend state using
1698 * special" resume" signaling. These routines kick in shortly after
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699 * hardware resume signaling is finished, either because of selective
1700 * resume (by host) or remote wakeup (by device) ... now see what changed
1701 * in the tree that's rooted at this device.
1702 */
David Brownellf3f32532005-09-22 22:37:29 -07001703static int finish_device_resume(struct usb_device *udev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704{
1705 int status;
1706 u16 devstatus;
1707
1708 /* caller owns the udev device lock */
David Brownellf3f32532005-09-22 22:37:29 -07001709 dev_dbg(&udev->dev, "finish resume\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710
1711 /* usb ch9 identifies four variants of SUSPENDED, based on what
1712 * state the device resumes to. Linux currently won't see the
1713 * first two on the host side; they'd be inside hub_port_init()
1714 * during many timeouts, but khubd can't suspend until later.
1715 */
1716 usb_set_device_state(udev, udev->actconfig
1717 ? USB_STATE_CONFIGURED
1718 : USB_STATE_ADDRESS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719
1720 /* 10.5.4.5 says be sure devices in the tree are still there.
1721 * For now let's assume the device didn't go crazy on resume,
1722 * and device drivers will know about any resume quirks.
1723 */
1724 status = usb_get_status(udev, USB_RECIP_DEVICE, 0, &devstatus);
1725 if (status < 0)
1726 dev_dbg(&udev->dev,
1727 "gone after usb resume? status %d\n",
1728 status);
1729 else if (udev->actconfig) {
1730 unsigned i;
David Brownelldbc38872005-09-13 19:57:36 -07001731 int (*resume)(struct device *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732
1733 le16_to_cpus(&devstatus);
David Brownellf3f32532005-09-22 22:37:29 -07001734 if (devstatus & (1 << USB_DEVICE_REMOTE_WAKEUP)
1735 && udev->parent) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736 status = usb_control_msg(udev,
1737 usb_sndctrlpipe(udev, 0),
1738 USB_REQ_CLEAR_FEATURE,
1739 USB_RECIP_DEVICE,
1740 USB_DEVICE_REMOTE_WAKEUP, 0,
1741 NULL, 0,
1742 USB_CTRL_SET_TIMEOUT);
1743 if (status) {
1744 dev_dbg(&udev->dev, "disable remote "
1745 "wakeup, status %d\n", status);
1746 status = 0;
1747 }
1748 }
1749
1750 /* resume interface drivers; if this is a hub, it
David Brownelldbc38872005-09-13 19:57:36 -07001751 * may have a child resume event to deal with soon
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 */
David Brownelldbc38872005-09-13 19:57:36 -07001753 resume = udev->dev.bus->resume;
1754 for (i = 0; i < udev->actconfig->desc.bNumInterfaces; i++)
1755 (void) resume(&udev->actconfig->interface[i]->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 status = 0;
1757
1758 } else if (udev->devnum <= 0) {
1759 dev_dbg(&udev->dev, "bogus resume!\n");
1760 status = -EINVAL;
1761 }
1762 return status;
1763}
1764
David Brownellf3f32532005-09-22 22:37:29 -07001765#ifdef CONFIG_USB_SUSPEND
1766
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767static int
1768hub_port_resume(struct usb_hub *hub, int port1, struct usb_device *udev)
1769{
1770 int status;
1771
1772 // dev_dbg(hub->intfdev, "resume port %d\n", port1);
1773
1774 /* see 7.1.7.7; affects power usage, but not budgeting */
1775 status = clear_port_feature(hub->hdev,
1776 port1, USB_PORT_FEAT_SUSPEND);
1777 if (status) {
1778 dev_dbg(hub->intfdev,
1779 "can't resume port %d, status %d\n",
1780 port1, status);
1781 } else {
1782 u16 devstatus;
1783 u16 portchange;
1784
1785 /* drive resume for at least 20 msec */
1786 if (udev)
1787 dev_dbg(&udev->dev, "RESUME\n");
1788 msleep(25);
1789
1790#define LIVE_FLAGS ( USB_PORT_STAT_POWER \
1791 | USB_PORT_STAT_ENABLE \
1792 | USB_PORT_STAT_CONNECTION)
1793
1794 /* Virtual root hubs can trigger on GET_PORT_STATUS to
1795 * stop resume signaling. Then finish the resume
1796 * sequence.
1797 */
1798 devstatus = portchange = 0;
1799 status = hub_port_status(hub, port1,
1800 &devstatus, &portchange);
1801 if (status < 0
1802 || (devstatus & LIVE_FLAGS) != LIVE_FLAGS
1803 || (devstatus & USB_PORT_STAT_SUSPEND) != 0
1804 ) {
1805 dev_dbg(hub->intfdev,
1806 "port %d status %04x.%04x after resume, %d\n",
1807 port1, portchange, devstatus, status);
1808 } else {
1809 /* TRSMRCY = 10 msec */
1810 msleep(10);
1811 if (udev)
David Brownellf3f32532005-09-22 22:37:29 -07001812 status = finish_device_resume(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813 }
1814 }
1815 if (status < 0)
1816 hub_port_logical_disconnect(hub, port1);
1817
1818 return status;
1819}
1820
David Brownellf3f32532005-09-22 22:37:29 -07001821#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822
1823/**
1824 * usb_resume_device - re-activate a suspended usb device
1825 * @udev: device to re-activate
1826 * Context: must be able to sleep; device not locked
1827 *
1828 * This will re-activate the suspended device, increasing power usage
1829 * while letting drivers communicate again with its endpoints.
1830 * USB resume explicitly guarantees that the power session between
1831 * the host and the device is the same as it was when the device
1832 * suspended.
1833 *
1834 * Returns 0 on success, else negative errno.
1835 */
1836int usb_resume_device(struct usb_device *udev)
1837{
1838 int port1, status;
1839
1840 port1 = locktree(udev);
1841 if (port1 < 0)
1842 return port1;
1843
David Brownellf3f32532005-09-22 22:37:29 -07001844#ifdef CONFIG_USB_SUSPEND
1845 /* selective resume of one downstream hub-to-device port */
1846 if (udev->parent) {
1847 if (udev->state == USB_STATE_SUSPENDED) {
1848 // NOTE swsusp may bork us, device state being wrong...
1849 // NOTE this fails if parent is also suspended...
1850 status = hub_port_resume(hdev_to_hub(udev->parent),
1851 port1, udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852 } else
David Brownellf3f32532005-09-22 22:37:29 -07001853 status = 0;
1854 } else
1855#endif
1856 status = finish_device_resume(udev);
1857 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 dev_dbg(&udev->dev, "can't resume, status %d\n",
1859 status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860
1861 usb_unlock_device(udev);
1862
1863 /* rebind drivers that had no suspend() */
1864 if (status == 0) {
1865 usb_lock_all_devices();
1866 bus_rescan_devices(&usb_bus_type);
1867 usb_unlock_all_devices();
1868 }
1869 return status;
1870}
1871
1872static int remote_wakeup(struct usb_device *udev)
1873{
1874 int status = 0;
1875
David Brownellf3f32532005-09-22 22:37:29 -07001876#ifdef CONFIG_USB_SUSPEND
1877
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878 /* don't repeat RESUME sequence if this device
1879 * was already woken up by some other task
1880 */
1881 down(&udev->serialize);
1882 if (udev->state == USB_STATE_SUSPENDED) {
1883 dev_dbg(&udev->dev, "RESUME (wakeup)\n");
1884 /* TRSMRCY = 10 msec */
1885 msleep(10);
David Brownellf3f32532005-09-22 22:37:29 -07001886 status = finish_device_resume(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887 }
1888 up(&udev->serialize);
David Brownellf3f32532005-09-22 22:37:29 -07001889#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890 return status;
1891}
1892
David Brownelldb690872005-09-13 19:56:33 -07001893static int hub_suspend(struct usb_interface *intf, pm_message_t msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894{
1895 struct usb_hub *hub = usb_get_intfdata (intf);
1896 struct usb_device *hdev = hub->hdev;
1897 unsigned port1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898
David Brownellc9f89fa2005-09-13 19:57:04 -07001899 /* fail if children aren't already suspended */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900 for (port1 = 1; port1 <= hdev->maxchild; port1++) {
1901 struct usb_device *udev;
1902
1903 udev = hdev->children [port1-1];
David Brownellf3f32532005-09-22 22:37:29 -07001904 if (udev && (udev->dev.power.power_state.event
1905 == PM_EVENT_ON
1906#ifdef CONFIG_USB_SUSPEND
1907 || udev->state != USB_STATE_SUSPENDED
1908#endif
1909 )) {
David Brownellc9f89fa2005-09-13 19:57:04 -07001910 dev_dbg(&intf->dev, "port %d nyet suspended\n", port1);
1911 return -EBUSY;
1912 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913 }
1914
David Brownellf3f32532005-09-22 22:37:29 -07001915 /* "global suspend" of the downstream HC-to-USB interface */
1916 if (!hdev->parent) {
1917 struct usb_bus *bus = hdev->bus;
1918 if (bus && bus->op->hub_suspend) {
1919 int status = bus->op->hub_suspend (bus);
1920
1921 if (status != 0) {
1922 dev_dbg(&hdev->dev, "'global' suspend %d\n",
1923 status);
1924 return status;
1925 }
1926 } else
1927 return -EOPNOTSUPP;
1928 }
1929
David Brownellc9f89fa2005-09-13 19:57:04 -07001930 /* stop khubd and related activity */
1931 hub_quiesce(hub);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932 return 0;
1933}
1934
1935static int hub_resume(struct usb_interface *intf)
1936{
1937 struct usb_device *hdev = interface_to_usbdev(intf);
1938 struct usb_hub *hub = usb_get_intfdata (intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939 int status;
1940
David Brownellf3f32532005-09-22 22:37:29 -07001941 /* "global resume" of the downstream HC-to-USB interface */
1942 if (!hdev->parent) {
1943 struct usb_bus *bus = hdev->bus;
1944 if (bus && bus->op->hub_resume) {
1945 status = bus->op->hub_resume (bus);
1946 if (status) {
1947 dev_dbg(&intf->dev, "'global' resume %d\n",
1948 status);
1949 return status;
1950 }
1951 } else
1952 return -EOPNOTSUPP;
1953 if (status == 0) {
1954 /* TRSMRCY = 10 msec */
1955 msleep(10);
1956 }
1957 }
1958
1959 hub_activate(hub);
1960
1961 /* REVISIT: this recursion probably shouldn't exist. Remove
1962 * this code sometime, after retesting with different root and
1963 * external hubs.
1964 */
1965#ifdef CONFIG_USB_SUSPEND
1966 {
1967 unsigned port1;
1968
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 for (port1 = 1; port1 <= hdev->maxchild; port1++) {
1970 struct usb_device *udev;
1971 u16 portstat, portchange;
1972
1973 udev = hdev->children [port1-1];
1974 status = hub_port_status(hub, port1, &portstat, &portchange);
1975 if (status == 0) {
1976 if (portchange & USB_PORT_STAT_C_SUSPEND) {
1977 clear_port_feature(hdev, port1,
1978 USB_PORT_FEAT_C_SUSPEND);
1979 portchange &= ~USB_PORT_STAT_C_SUSPEND;
1980 }
1981
1982 /* let khubd handle disconnects etc */
1983 if (portchange)
1984 continue;
1985 }
1986
1987 if (!udev || status < 0)
1988 continue;
1989 down (&udev->serialize);
1990 if (portstat & USB_PORT_STAT_SUSPEND)
1991 status = hub_port_resume(hub, port1, udev);
1992 else {
David Brownellf3f32532005-09-22 22:37:29 -07001993 status = finish_device_resume(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994 if (status < 0) {
1995 dev_dbg(&intf->dev, "resume port %d --> %d\n",
1996 port1, status);
1997 hub_port_logical_disconnect(hub, port1);
1998 }
1999 }
2000 up(&udev->serialize);
2001 }
David Brownellf3f32532005-09-22 22:37:29 -07002002 }
2003#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004 return 0;
2005}
2006
David Brownell979d5192005-09-22 22:32:24 -07002007void usb_suspend_root_hub(struct usb_device *hdev)
2008{
2009 struct usb_hub *hub = hdev_to_hub(hdev);
2010
2011 /* This also makes any led blinker stop retriggering. We're called
2012 * from irq, so the blinker might still be scheduled. Caller promises
2013 * that the root hub status URB will be canceled.
2014 */
2015 __hub_quiesce(hub);
2016 mark_quiesced(to_usb_interface(hub->intfdev));
2017}
2018
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019void usb_resume_root_hub(struct usb_device *hdev)
2020{
2021 struct usb_hub *hub = hdev_to_hub(hdev);
2022
2023 hub->resume_root_hub = 1;
2024 kick_khubd(hub);
2025}
2026
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027EXPORT_SYMBOL(usb_suspend_device);
2028EXPORT_SYMBOL(usb_resume_device);
2029
2030
2031
2032/* USB 2.0 spec, 7.1.7.3 / fig 7-29:
2033 *
2034 * Between connect detection and reset signaling there must be a delay
2035 * of 100ms at least for debounce and power-settling. The corresponding
2036 * timer shall restart whenever the downstream port detects a disconnect.
2037 *
2038 * Apparently there are some bluetooth and irda-dongles and a number of
2039 * low-speed devices for which this debounce period may last over a second.
2040 * Not covered by the spec - but easy to deal with.
2041 *
2042 * This implementation uses a 1500ms total debounce timeout; if the
2043 * connection isn't stable by then it returns -ETIMEDOUT. It checks
2044 * every 25ms for transient disconnects. When the port status has been
2045 * unchanged for 100ms it returns the port status.
2046 */
2047
2048#define HUB_DEBOUNCE_TIMEOUT 1500
2049#define HUB_DEBOUNCE_STEP 25
2050#define HUB_DEBOUNCE_STABLE 100
2051
2052static int hub_port_debounce(struct usb_hub *hub, int port1)
2053{
2054 int ret;
2055 int total_time, stable_time = 0;
2056 u16 portchange, portstatus;
2057 unsigned connection = 0xffff;
2058
2059 for (total_time = 0; ; total_time += HUB_DEBOUNCE_STEP) {
2060 ret = hub_port_status(hub, port1, &portstatus, &portchange);
2061 if (ret < 0)
2062 return ret;
2063
2064 if (!(portchange & USB_PORT_STAT_C_CONNECTION) &&
2065 (portstatus & USB_PORT_STAT_CONNECTION) == connection) {
2066 stable_time += HUB_DEBOUNCE_STEP;
2067 if (stable_time >= HUB_DEBOUNCE_STABLE)
2068 break;
2069 } else {
2070 stable_time = 0;
2071 connection = portstatus & USB_PORT_STAT_CONNECTION;
2072 }
2073
2074 if (portchange & USB_PORT_STAT_C_CONNECTION) {
2075 clear_port_feature(hub->hdev, port1,
2076 USB_PORT_FEAT_C_CONNECTION);
2077 }
2078
2079 if (total_time >= HUB_DEBOUNCE_TIMEOUT)
2080 break;
2081 msleep(HUB_DEBOUNCE_STEP);
2082 }
2083
2084 dev_dbg (hub->intfdev,
2085 "debounce: port %d: total %dms stable %dms status 0x%x\n",
2086 port1, total_time, stable_time, portstatus);
2087
2088 if (stable_time < HUB_DEBOUNCE_STABLE)
2089 return -ETIMEDOUT;
2090 return portstatus;
2091}
2092
2093static void ep0_reinit(struct usb_device *udev)
2094{
2095 usb_disable_endpoint(udev, 0 + USB_DIR_IN);
2096 usb_disable_endpoint(udev, 0 + USB_DIR_OUT);
2097 udev->ep_in[0] = udev->ep_out[0] = &udev->ep0;
2098}
2099
2100#define usb_sndaddr0pipe() (PIPE_CONTROL << 30)
2101#define usb_rcvaddr0pipe() ((PIPE_CONTROL << 30) | USB_DIR_IN)
2102
2103static int hub_set_address(struct usb_device *udev)
2104{
2105 int retval;
2106
2107 if (udev->devnum == 0)
2108 return -EINVAL;
2109 if (udev->state == USB_STATE_ADDRESS)
2110 return 0;
2111 if (udev->state != USB_STATE_DEFAULT)
2112 return -EINVAL;
2113 retval = usb_control_msg(udev, usb_sndaddr0pipe(),
2114 USB_REQ_SET_ADDRESS, 0, udev->devnum, 0,
2115 NULL, 0, USB_CTRL_SET_TIMEOUT);
2116 if (retval == 0) {
2117 usb_set_device_state(udev, USB_STATE_ADDRESS);
2118 ep0_reinit(udev);
2119 }
2120 return retval;
2121}
2122
2123/* Reset device, (re)assign address, get device descriptor.
2124 * Device connection must be stable, no more debouncing needed.
2125 * Returns device in USB_STATE_ADDRESS, except on error.
2126 *
2127 * If this is called for an already-existing device (as part of
2128 * usb_reset_device), the caller must own the device lock. For a
2129 * newly detected device that is not accessible through any global
2130 * pointers, it's not necessary to lock the device.
2131 */
2132static int
2133hub_port_init (struct usb_hub *hub, struct usb_device *udev, int port1,
2134 int retry_counter)
2135{
2136 static DECLARE_MUTEX(usb_address0_sem);
2137
2138 struct usb_device *hdev = hub->hdev;
2139 int i, j, retval;
2140 unsigned delay = HUB_SHORT_RESET_TIME;
2141 enum usb_device_speed oldspeed = udev->speed;
2142
2143 /* root hub ports have a slightly longer reset period
2144 * (from USB 2.0 spec, section 7.1.7.5)
2145 */
2146 if (!hdev->parent) {
2147 delay = HUB_ROOT_RESET_TIME;
2148 if (port1 == hdev->bus->otg_port)
2149 hdev->bus->b_hnp_enable = 0;
2150 }
2151
2152 /* Some low speed devices have problems with the quick delay, so */
2153 /* be a bit pessimistic with those devices. RHbug #23670 */
2154 if (oldspeed == USB_SPEED_LOW)
2155 delay = HUB_LONG_RESET_TIME;
2156
2157 down(&usb_address0_sem);
2158
2159 /* Reset the device; full speed may morph to high speed */
2160 retval = hub_port_reset(hub, port1, udev, delay);
2161 if (retval < 0) /* error or disconnect */
2162 goto fail;
2163 /* success, speed is known */
2164 retval = -ENODEV;
2165
2166 if (oldspeed != USB_SPEED_UNKNOWN && oldspeed != udev->speed) {
2167 dev_dbg(&udev->dev, "device reset changed speed!\n");
2168 goto fail;
2169 }
2170 oldspeed = udev->speed;
2171
2172 /* USB 2.0 section 5.5.3 talks about ep0 maxpacket ...
2173 * it's fixed size except for full speed devices.
2174 */
2175 switch (udev->speed) {
2176 case USB_SPEED_HIGH: /* fixed at 64 */
2177 udev->ep0.desc.wMaxPacketSize = __constant_cpu_to_le16(64);
2178 break;
2179 case USB_SPEED_FULL: /* 8, 16, 32, or 64 */
2180 /* to determine the ep0 maxpacket size, try to read
2181 * the device descriptor to get bMaxPacketSize0 and
2182 * then correct our initial guess.
2183 */
2184 udev->ep0.desc.wMaxPacketSize = __constant_cpu_to_le16(64);
2185 break;
2186 case USB_SPEED_LOW: /* fixed at 8 */
2187 udev->ep0.desc.wMaxPacketSize = __constant_cpu_to_le16(8);
2188 break;
2189 default:
2190 goto fail;
2191 }
2192
2193 dev_info (&udev->dev,
2194 "%s %s speed USB device using %s and address %d\n",
2195 (udev->config) ? "reset" : "new",
2196 ({ char *speed; switch (udev->speed) {
2197 case USB_SPEED_LOW: speed = "low"; break;
2198 case USB_SPEED_FULL: speed = "full"; break;
2199 case USB_SPEED_HIGH: speed = "high"; break;
2200 default: speed = "?"; break;
2201 }; speed;}),
2202 udev->bus->controller->driver->name,
2203 udev->devnum);
2204
2205 /* Set up TT records, if needed */
2206 if (hdev->tt) {
2207 udev->tt = hdev->tt;
2208 udev->ttport = hdev->ttport;
2209 } else if (udev->speed != USB_SPEED_HIGH
2210 && hdev->speed == USB_SPEED_HIGH) {
2211 udev->tt = &hub->tt;
2212 udev->ttport = port1;
2213 }
2214
2215 /* Why interleave GET_DESCRIPTOR and SET_ADDRESS this way?
2216 * Because device hardware and firmware is sometimes buggy in
2217 * this area, and this is how Linux has done it for ages.
2218 * Change it cautiously.
2219 *
2220 * NOTE: If USE_NEW_SCHEME() is true we will start by issuing
2221 * a 64-byte GET_DESCRIPTOR request. This is what Windows does,
2222 * so it may help with some non-standards-compliant devices.
2223 * Otherwise we start with SET_ADDRESS and then try to read the
2224 * first 8 bytes of the device descriptor to get the ep0 maxpacket
2225 * value.
2226 */
2227 for (i = 0; i < GET_DESCRIPTOR_TRIES; (++i, msleep(100))) {
2228 if (USE_NEW_SCHEME(retry_counter)) {
2229 struct usb_device_descriptor *buf;
2230 int r = 0;
2231
2232#define GET_DESCRIPTOR_BUFSIZE 64
2233 buf = kmalloc(GET_DESCRIPTOR_BUFSIZE, GFP_NOIO);
2234 if (!buf) {
2235 retval = -ENOMEM;
2236 continue;
2237 }
2238
2239 /* Use a short timeout the first time through,
2240 * so that recalcitrant full-speed devices with
2241 * 8- or 16-byte ep0-maxpackets won't slow things
2242 * down tremendously by NAKing the unexpectedly
2243 * early status stage. Also, retry on all errors;
2244 * some devices are flakey.
2245 */
2246 for (j = 0; j < 3; ++j) {
2247 buf->bMaxPacketSize0 = 0;
2248 r = usb_control_msg(udev, usb_rcvaddr0pipe(),
2249 USB_REQ_GET_DESCRIPTOR, USB_DIR_IN,
2250 USB_DT_DEVICE << 8, 0,
2251 buf, GET_DESCRIPTOR_BUFSIZE,
2252 (i ? USB_CTRL_GET_TIMEOUT : 1000));
2253 switch (buf->bMaxPacketSize0) {
2254 case 8: case 16: case 32: case 64:
2255 if (buf->bDescriptorType ==
2256 USB_DT_DEVICE) {
2257 r = 0;
2258 break;
2259 }
2260 /* FALL THROUGH */
2261 default:
2262 if (r == 0)
2263 r = -EPROTO;
2264 break;
2265 }
2266 if (r == 0)
2267 break;
2268 }
2269 udev->descriptor.bMaxPacketSize0 =
2270 buf->bMaxPacketSize0;
2271 kfree(buf);
2272
2273 retval = hub_port_reset(hub, port1, udev, delay);
2274 if (retval < 0) /* error or disconnect */
2275 goto fail;
2276 if (oldspeed != udev->speed) {
2277 dev_dbg(&udev->dev,
2278 "device reset changed speed!\n");
2279 retval = -ENODEV;
2280 goto fail;
2281 }
2282 if (r) {
2283 dev_err(&udev->dev, "device descriptor "
2284 "read/%s, error %d\n",
2285 "64", r);
2286 retval = -EMSGSIZE;
2287 continue;
2288 }
2289#undef GET_DESCRIPTOR_BUFSIZE
2290 }
2291
2292 for (j = 0; j < SET_ADDRESS_TRIES; ++j) {
2293 retval = hub_set_address(udev);
2294 if (retval >= 0)
2295 break;
2296 msleep(200);
2297 }
2298 if (retval < 0) {
2299 dev_err(&udev->dev,
2300 "device not accepting address %d, error %d\n",
2301 udev->devnum, retval);
2302 goto fail;
2303 }
2304
2305 /* cope with hardware quirkiness:
2306 * - let SET_ADDRESS settle, some device hardware wants it
2307 * - read ep0 maxpacket even for high and low speed,
2308 */
2309 msleep(10);
2310 if (USE_NEW_SCHEME(retry_counter))
2311 break;
2312
2313 retval = usb_get_device_descriptor(udev, 8);
2314 if (retval < 8) {
2315 dev_err(&udev->dev, "device descriptor "
2316 "read/%s, error %d\n",
2317 "8", retval);
2318 if (retval >= 0)
2319 retval = -EMSGSIZE;
2320 } else {
2321 retval = 0;
2322 break;
2323 }
2324 }
2325 if (retval)
2326 goto fail;
2327
2328 i = udev->descriptor.bMaxPacketSize0;
2329 if (le16_to_cpu(udev->ep0.desc.wMaxPacketSize) != i) {
2330 if (udev->speed != USB_SPEED_FULL ||
2331 !(i == 8 || i == 16 || i == 32 || i == 64)) {
2332 dev_err(&udev->dev, "ep0 maxpacket = %d\n", i);
2333 retval = -EMSGSIZE;
2334 goto fail;
2335 }
2336 dev_dbg(&udev->dev, "ep0 maxpacket = %d\n", i);
2337 udev->ep0.desc.wMaxPacketSize = cpu_to_le16(i);
2338 ep0_reinit(udev);
2339 }
2340
2341 retval = usb_get_device_descriptor(udev, USB_DT_DEVICE_SIZE);
2342 if (retval < (signed)sizeof(udev->descriptor)) {
2343 dev_err(&udev->dev, "device descriptor read/%s, error %d\n",
2344 "all", retval);
2345 if (retval >= 0)
2346 retval = -ENOMSG;
2347 goto fail;
2348 }
2349
2350 retval = 0;
2351
2352fail:
2353 if (retval)
2354 hub_port_disable(hub, port1, 0);
2355 up(&usb_address0_sem);
2356 return retval;
2357}
2358
2359static void
2360check_highspeed (struct usb_hub *hub, struct usb_device *udev, int port1)
2361{
2362 struct usb_qualifier_descriptor *qual;
2363 int status;
2364
2365 qual = kmalloc (sizeof *qual, SLAB_KERNEL);
2366 if (qual == NULL)
2367 return;
2368
2369 status = usb_get_descriptor (udev, USB_DT_DEVICE_QUALIFIER, 0,
2370 qual, sizeof *qual);
2371 if (status == sizeof *qual) {
2372 dev_info(&udev->dev, "not running at top speed; "
2373 "connect to a high speed hub\n");
2374 /* hub LEDs are probably harder to miss than syslog */
2375 if (hub->has_indicators) {
2376 hub->indicator[port1-1] = INDICATOR_GREEN_BLINK;
2377 schedule_work (&hub->leds);
2378 }
2379 }
Jesper Juhl1bc3c9e2005-04-18 17:39:34 -07002380 kfree(qual);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381}
2382
2383static unsigned
2384hub_power_remaining (struct usb_hub *hub)
2385{
2386 struct usb_device *hdev = hub->hdev;
2387 int remaining;
2388 unsigned i;
2389
2390 remaining = hub->power_budget;
2391 if (!remaining) /* self-powered */
2392 return 0;
2393
2394 for (i = 0; i < hdev->maxchild; i++) {
2395 struct usb_device *udev = hdev->children[i];
2396 int delta, ceiling;
2397
2398 if (!udev)
2399 continue;
2400
2401 /* 100mA per-port ceiling, or 8mA for OTG ports */
2402 if (i != (udev->bus->otg_port - 1) || hdev->parent)
2403 ceiling = 50;
2404 else
2405 ceiling = 4;
2406
2407 if (udev->actconfig)
2408 delta = udev->actconfig->desc.bMaxPower;
2409 else
2410 delta = ceiling;
2411 // dev_dbg(&udev->dev, "budgeted %dmA\n", 2 * delta);
2412 if (delta > ceiling)
2413 dev_warn(&udev->dev, "%dmA over %dmA budget!\n",
2414 2 * (delta - ceiling), 2 * ceiling);
2415 remaining -= delta;
2416 }
2417 if (remaining < 0) {
2418 dev_warn(hub->intfdev,
2419 "%dmA over power budget!\n",
2420 -2 * remaining);
2421 remaining = 0;
2422 }
2423 return remaining;
2424}
2425
2426/* Handle physical or logical connection change events.
2427 * This routine is called when:
2428 * a port connection-change occurs;
2429 * a port enable-change occurs (often caused by EMI);
2430 * usb_reset_device() encounters changed descriptors (as from
2431 * a firmware download)
2432 * caller already locked the hub
2433 */
2434static void hub_port_connect_change(struct usb_hub *hub, int port1,
2435 u16 portstatus, u16 portchange)
2436{
2437 struct usb_device *hdev = hub->hdev;
2438 struct device *hub_dev = hub->intfdev;
2439 int status, i;
2440
2441 dev_dbg (hub_dev,
2442 "port %d, status %04x, change %04x, %s\n",
2443 port1, portstatus, portchange, portspeed (portstatus));
2444
2445 if (hub->has_indicators) {
2446 set_port_led(hub, port1, HUB_LED_AUTO);
2447 hub->indicator[port1-1] = INDICATOR_AUTO;
2448 }
2449
2450 /* Disconnect any existing devices under this port */
2451 if (hdev->children[port1-1])
2452 usb_disconnect(&hdev->children[port1-1]);
2453 clear_bit(port1, hub->change_bits);
2454
2455#ifdef CONFIG_USB_OTG
2456 /* during HNP, don't repeat the debounce */
2457 if (hdev->bus->is_b_host)
2458 portchange &= ~USB_PORT_STAT_C_CONNECTION;
2459#endif
2460
2461 if (portchange & USB_PORT_STAT_C_CONNECTION) {
2462 status = hub_port_debounce(hub, port1);
2463 if (status < 0) {
2464 dev_err (hub_dev,
2465 "connect-debounce failed, port %d disabled\n",
2466 port1);
2467 goto done;
2468 }
2469 portstatus = status;
2470 }
2471
2472 /* Return now if nothing is connected */
2473 if (!(portstatus & USB_PORT_STAT_CONNECTION)) {
2474
2475 /* maybe switch power back on (e.g. root hub was reset) */
2476 if ((hub->descriptor->wHubCharacteristics
2477 & HUB_CHAR_LPSM) < 2
2478 && !(portstatus & (1 << USB_PORT_FEAT_POWER)))
2479 set_port_feature(hdev, port1, USB_PORT_FEAT_POWER);
2480
2481 if (portstatus & USB_PORT_STAT_ENABLE)
2482 goto done;
2483 return;
2484 }
2485
2486#ifdef CONFIG_USB_SUSPEND
2487 /* If something is connected, but the port is suspended, wake it up. */
2488 if (portstatus & USB_PORT_STAT_SUSPEND) {
2489 status = hub_port_resume(hub, port1, NULL);
2490 if (status < 0) {
2491 dev_dbg(hub_dev,
2492 "can't clear suspend on port %d; %d\n",
2493 port1, status);
2494 goto done;
2495 }
2496 }
2497#endif
2498
2499 for (i = 0; i < SET_CONFIG_TRIES; i++) {
2500 struct usb_device *udev;
2501
2502 /* reallocate for each attempt, since references
2503 * to the previous one can escape in various ways
2504 */
2505 udev = usb_alloc_dev(hdev, hdev->bus, port1);
2506 if (!udev) {
2507 dev_err (hub_dev,
2508 "couldn't allocate port %d usb_device\n",
2509 port1);
2510 goto done;
2511 }
2512
2513 usb_set_device_state(udev, USB_STATE_POWERED);
2514 udev->speed = USB_SPEED_UNKNOWN;
2515
2516 /* set the address */
2517 choose_address(udev);
2518 if (udev->devnum <= 0) {
2519 status = -ENOTCONN; /* Don't retry */
2520 goto loop;
2521 }
2522
2523 /* reset and get descriptor */
2524 status = hub_port_init(hub, udev, port1, i);
2525 if (status < 0)
2526 goto loop;
2527
2528 /* consecutive bus-powered hubs aren't reliable; they can
2529 * violate the voltage drop budget. if the new child has
2530 * a "powered" LED, users should notice we didn't enable it
2531 * (without reading syslog), even without per-port LEDs
2532 * on the parent.
2533 */
2534 if (udev->descriptor.bDeviceClass == USB_CLASS_HUB
2535 && hub->power_budget) {
2536 u16 devstat;
2537
2538 status = usb_get_status(udev, USB_RECIP_DEVICE, 0,
2539 &devstat);
2540 if (status < 0) {
2541 dev_dbg(&udev->dev, "get status %d ?\n", status);
2542 goto loop_disable;
2543 }
2544 cpu_to_le16s(&devstat);
2545 if ((devstat & (1 << USB_DEVICE_SELF_POWERED)) == 0) {
2546 dev_err(&udev->dev,
2547 "can't connect bus-powered hub "
2548 "to this port\n");
2549 if (hub->has_indicators) {
2550 hub->indicator[port1-1] =
2551 INDICATOR_AMBER_BLINK;
2552 schedule_work (&hub->leds);
2553 }
2554 status = -ENOTCONN; /* Don't retry */
2555 goto loop_disable;
2556 }
2557 }
2558
2559 /* check for devices running slower than they could */
2560 if (le16_to_cpu(udev->descriptor.bcdUSB) >= 0x0200
2561 && udev->speed == USB_SPEED_FULL
2562 && highspeed_hubs != 0)
2563 check_highspeed (hub, udev, port1);
2564
2565 /* Store the parent's children[] pointer. At this point
2566 * udev becomes globally accessible, although presumably
2567 * no one will look at it until hdev is unlocked.
2568 */
2569 down (&udev->serialize);
2570 status = 0;
2571
2572 /* We mustn't add new devices if the parent hub has
2573 * been disconnected; we would race with the
2574 * recursively_mark_NOTATTACHED() routine.
2575 */
2576 spin_lock_irq(&device_state_lock);
2577 if (hdev->state == USB_STATE_NOTATTACHED)
2578 status = -ENOTCONN;
2579 else
2580 hdev->children[port1-1] = udev;
2581 spin_unlock_irq(&device_state_lock);
2582
2583 /* Run it through the hoops (find a driver, etc) */
2584 if (!status) {
2585 status = usb_new_device(udev);
2586 if (status) {
2587 spin_lock_irq(&device_state_lock);
2588 hdev->children[port1-1] = NULL;
2589 spin_unlock_irq(&device_state_lock);
2590 }
2591 }
2592
2593 up (&udev->serialize);
2594 if (status)
2595 goto loop_disable;
2596
2597 status = hub_power_remaining(hub);
2598 if (status)
2599 dev_dbg(hub_dev,
2600 "%dmA power budget left\n",
2601 2 * status);
2602
2603 return;
2604
2605loop_disable:
2606 hub_port_disable(hub, port1, 1);
2607loop:
2608 ep0_reinit(udev);
2609 release_address(udev);
2610 usb_put_dev(udev);
2611 if (status == -ENOTCONN)
2612 break;
2613 }
2614
2615done:
2616 hub_port_disable(hub, port1, 1);
2617}
2618
2619static void hub_events(void)
2620{
2621 struct list_head *tmp;
2622 struct usb_device *hdev;
2623 struct usb_interface *intf;
2624 struct usb_hub *hub;
2625 struct device *hub_dev;
2626 u16 hubstatus;
2627 u16 hubchange;
2628 u16 portstatus;
2629 u16 portchange;
2630 int i, ret;
2631 int connect_change;
2632
2633 /*
2634 * We restart the list every time to avoid a deadlock with
2635 * deleting hubs downstream from this one. This should be
2636 * safe since we delete the hub from the event list.
2637 * Not the most efficient, but avoids deadlocks.
2638 */
2639 while (1) {
2640
2641 /* Grab the first entry at the beginning of the list */
2642 spin_lock_irq(&hub_event_lock);
2643 if (list_empty(&hub_event_list)) {
2644 spin_unlock_irq(&hub_event_lock);
2645 break;
2646 }
2647
2648 tmp = hub_event_list.next;
2649 list_del_init(tmp);
2650
2651 hub = list_entry(tmp, struct usb_hub, event_list);
2652 hdev = hub->hdev;
2653 intf = to_usb_interface(hub->intfdev);
2654 hub_dev = &intf->dev;
2655
David Brownell979d5192005-09-22 22:32:24 -07002656 i = hub->resume_root_hub;
2657
2658 dev_dbg(hub_dev, "state %d ports %d chg %04x evt %04x%s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002659 hdev->state, hub->descriptor
2660 ? hub->descriptor->bNbrPorts
2661 : 0,
2662 /* NOTE: expects max 15 ports... */
2663 (u16) hub->change_bits[0],
David Brownell979d5192005-09-22 22:32:24 -07002664 (u16) hub->event_bits[0],
2665 i ? ", resume root" : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666
2667 usb_get_intf(intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002668 spin_unlock_irq(&hub_event_lock);
2669
David Brownell979d5192005-09-22 22:32:24 -07002670 /* Is this is a root hub wanting to reactivate the downstream
2671 * ports? If so, be sure the interface resumes even if its
2672 * stub "device" node was never suspended.
2673 */
2674 if (i) {
2675 extern void dpm_runtime_resume(struct device *);
2676
2677 dpm_runtime_resume(&hdev->dev);
2678 dpm_runtime_resume(&intf->dev);
2679 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002680
2681 /* Lock the device, then check to see if we were
2682 * disconnected while waiting for the lock to succeed. */
2683 if (locktree(hdev) < 0) {
2684 usb_put_intf(intf);
2685 continue;
2686 }
2687 if (hub != usb_get_intfdata(intf))
2688 goto loop;
2689
2690 /* If the hub has died, clean up after it */
2691 if (hdev->state == USB_STATE_NOTATTACHED) {
2692 hub_pre_reset(hub);
2693 goto loop;
2694 }
2695
2696 /* If this is an inactive or suspended hub, do nothing */
2697 if (hub->quiescing)
2698 goto loop;
2699
2700 if (hub->error) {
2701 dev_dbg (hub_dev, "resetting for error %d\n",
2702 hub->error);
2703
2704 ret = usb_reset_device(hdev);
2705 if (ret) {
2706 dev_dbg (hub_dev,
2707 "error resetting hub: %d\n", ret);
2708 goto loop;
2709 }
2710
2711 hub->nerrors = 0;
2712 hub->error = 0;
2713 }
2714
2715 /* deal with port status changes */
2716 for (i = 1; i <= hub->descriptor->bNbrPorts; i++) {
2717 if (test_bit(i, hub->busy_bits))
2718 continue;
2719 connect_change = test_bit(i, hub->change_bits);
2720 if (!test_and_clear_bit(i, hub->event_bits) &&
2721 !connect_change && !hub->activating)
2722 continue;
2723
2724 ret = hub_port_status(hub, i,
2725 &portstatus, &portchange);
2726 if (ret < 0)
2727 continue;
2728
2729 if (hub->activating && !hdev->children[i-1] &&
2730 (portstatus &
2731 USB_PORT_STAT_CONNECTION))
2732 connect_change = 1;
2733
2734 if (portchange & USB_PORT_STAT_C_CONNECTION) {
2735 clear_port_feature(hdev, i,
2736 USB_PORT_FEAT_C_CONNECTION);
2737 connect_change = 1;
2738 }
2739
2740 if (portchange & USB_PORT_STAT_C_ENABLE) {
2741 if (!connect_change)
2742 dev_dbg (hub_dev,
2743 "port %d enable change, "
2744 "status %08x\n",
2745 i, portstatus);
2746 clear_port_feature(hdev, i,
2747 USB_PORT_FEAT_C_ENABLE);
2748
2749 /*
2750 * EM interference sometimes causes badly
2751 * shielded USB devices to be shutdown by
2752 * the hub, this hack enables them again.
2753 * Works at least with mouse driver.
2754 */
2755 if (!(portstatus & USB_PORT_STAT_ENABLE)
2756 && !connect_change
2757 && hdev->children[i-1]) {
2758 dev_err (hub_dev,
2759 "port %i "
2760 "disabled by hub (EMI?), "
2761 "re-enabling...\n",
2762 i);
2763 connect_change = 1;
2764 }
2765 }
2766
2767 if (portchange & USB_PORT_STAT_C_SUSPEND) {
2768 clear_port_feature(hdev, i,
2769 USB_PORT_FEAT_C_SUSPEND);
2770 if (hdev->children[i-1]) {
2771 ret = remote_wakeup(hdev->
2772 children[i-1]);
2773 if (ret < 0)
2774 connect_change = 1;
2775 } else {
2776 ret = -ENODEV;
2777 hub_port_disable(hub, i, 1);
2778 }
2779 dev_dbg (hub_dev,
2780 "resume on port %d, status %d\n",
2781 i, ret);
2782 }
2783
2784 if (portchange & USB_PORT_STAT_C_OVERCURRENT) {
2785 dev_err (hub_dev,
2786 "over-current change on port %d\n",
2787 i);
2788 clear_port_feature(hdev, i,
2789 USB_PORT_FEAT_C_OVER_CURRENT);
2790 hub_power_on(hub);
2791 }
2792
2793 if (portchange & USB_PORT_STAT_C_RESET) {
2794 dev_dbg (hub_dev,
2795 "reset change on port %d\n",
2796 i);
2797 clear_port_feature(hdev, i,
2798 USB_PORT_FEAT_C_RESET);
2799 }
2800
2801 if (connect_change)
2802 hub_port_connect_change(hub, i,
2803 portstatus, portchange);
2804 } /* end for i */
2805
2806 /* deal with hub status changes */
2807 if (test_and_clear_bit(0, hub->event_bits) == 0)
2808 ; /* do nothing */
2809 else if (hub_hub_status(hub, &hubstatus, &hubchange) < 0)
2810 dev_err (hub_dev, "get_hub_status failed\n");
2811 else {
2812 if (hubchange & HUB_CHANGE_LOCAL_POWER) {
2813 dev_dbg (hub_dev, "power change\n");
2814 clear_hub_feature(hdev, C_HUB_LOCAL_POWER);
2815 }
2816 if (hubchange & HUB_CHANGE_OVERCURRENT) {
2817 dev_dbg (hub_dev, "overcurrent change\n");
2818 msleep(500); /* Cool down */
2819 clear_hub_feature(hdev, C_HUB_OVER_CURRENT);
2820 hub_power_on(hub);
2821 }
2822 }
2823
2824 hub->activating = 0;
2825
Alan Sternd5926ae72005-04-21 15:56:37 -04002826 /* If this is a root hub, tell the HCD it's okay to
2827 * re-enable port-change interrupts now. */
2828 if (!hdev->parent)
2829 usb_enable_root_hub_irq(hdev->bus);
2830
Linus Torvalds1da177e2005-04-16 15:20:36 -07002831loop:
2832 usb_unlock_device(hdev);
2833 usb_put_intf(intf);
2834
2835 } /* end while (1) */
2836}
2837
2838static int hub_thread(void *__unused)
2839{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002840 do {
2841 hub_events();
akpm@osdl.org9c8d6172005-06-20 14:29:58 -07002842 wait_event_interruptible(khubd_wait,
2843 !list_empty(&hub_event_list) ||
2844 kthread_should_stop());
Christoph Lameter3e1d1d22005-06-24 23:13:50 -07002845 try_to_freeze();
akpm@osdl.org9c8d6172005-06-20 14:29:58 -07002846 } while (!kthread_should_stop() || !list_empty(&hub_event_list));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002847
akpm@osdl.org9c8d6172005-06-20 14:29:58 -07002848 pr_debug("%s: khubd exiting\n", usbcore_name);
2849 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002850}
2851
2852static struct usb_device_id hub_id_table [] = {
2853 { .match_flags = USB_DEVICE_ID_MATCH_DEV_CLASS,
2854 .bDeviceClass = USB_CLASS_HUB},
2855 { .match_flags = USB_DEVICE_ID_MATCH_INT_CLASS,
2856 .bInterfaceClass = USB_CLASS_HUB},
2857 { } /* Terminating entry */
2858};
2859
2860MODULE_DEVICE_TABLE (usb, hub_id_table);
2861
2862static struct usb_driver hub_driver = {
2863 .owner = THIS_MODULE,
2864 .name = "hub",
2865 .probe = hub_probe,
2866 .disconnect = hub_disconnect,
2867 .suspend = hub_suspend,
2868 .resume = hub_resume,
2869 .ioctl = hub_ioctl,
2870 .id_table = hub_id_table,
2871};
2872
2873int usb_hub_init(void)
2874{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002875 if (usb_register(&hub_driver) < 0) {
2876 printk(KERN_ERR "%s: can't register hub driver\n",
2877 usbcore_name);
2878 return -1;
2879 }
2880
akpm@osdl.org9c8d6172005-06-20 14:29:58 -07002881 khubd_task = kthread_run(hub_thread, NULL, "khubd");
2882 if (!IS_ERR(khubd_task))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002883 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002884
2885 /* Fall through if kernel_thread failed */
2886 usb_deregister(&hub_driver);
2887 printk(KERN_ERR "%s: can't start khubd\n", usbcore_name);
2888
2889 return -1;
2890}
2891
2892void usb_hub_cleanup(void)
2893{
akpm@osdl.org9c8d6172005-06-20 14:29:58 -07002894 kthread_stop(khubd_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002895
2896 /*
2897 * Hub resources are freed for us by usb_deregister. It calls
2898 * usb_driver_purge on every device which in turn calls that
2899 * devices disconnect function if it is using this driver.
2900 * The hub_disconnect function takes care of releasing the
2901 * individual hub resources. -greg
2902 */
2903 usb_deregister(&hub_driver);
2904} /* usb_hub_cleanup() */
2905
Linus Torvalds1da177e2005-04-16 15:20:36 -07002906static int config_descriptors_changed(struct usb_device *udev)
2907{
2908 unsigned index;
2909 unsigned len = 0;
2910 struct usb_config_descriptor *buf;
2911
2912 for (index = 0; index < udev->descriptor.bNumConfigurations; index++) {
2913 if (len < le16_to_cpu(udev->config[index].desc.wTotalLength))
2914 len = le16_to_cpu(udev->config[index].desc.wTotalLength);
2915 }
2916 buf = kmalloc (len, SLAB_KERNEL);
2917 if (buf == NULL) {
2918 dev_err(&udev->dev, "no mem to re-read configs after reset\n");
2919 /* assume the worst */
2920 return 1;
2921 }
2922 for (index = 0; index < udev->descriptor.bNumConfigurations; index++) {
2923 int length;
2924 int old_length = le16_to_cpu(udev->config[index].desc.wTotalLength);
2925
2926 length = usb_get_descriptor(udev, USB_DT_CONFIG, index, buf,
2927 old_length);
2928 if (length < old_length) {
2929 dev_dbg(&udev->dev, "config index %d, error %d\n",
2930 index, length);
2931 break;
2932 }
2933 if (memcmp (buf, udev->rawdescriptors[index], old_length)
2934 != 0) {
2935 dev_dbg(&udev->dev, "config index %d changed (#%d)\n",
2936 index, buf->bConfigurationValue);
2937 break;
2938 }
2939 }
2940 kfree(buf);
2941 return index != udev->descriptor.bNumConfigurations;
2942}
2943
2944/**
2945 * usb_reset_device - perform a USB port reset to reinitialize a device
2946 * @udev: device to reset (not in SUSPENDED or NOTATTACHED state)
2947 *
2948 * WARNING - don't reset any device unless drivers for all of its
2949 * interfaces are expecting that reset! Maybe some driver->reset()
2950 * method should eventually help ensure sufficient cooperation.
2951 *
2952 * Do a port reset, reassign the device's address, and establish its
2953 * former operating configuration. If the reset fails, or the device's
2954 * descriptors change from their values before the reset, or the original
2955 * configuration and altsettings cannot be restored, a flag will be set
2956 * telling khubd to pretend the device has been disconnected and then
2957 * re-connected. All drivers will be unbound, and the device will be
2958 * re-enumerated and probed all over again.
2959 *
2960 * Returns 0 if the reset succeeded, -ENODEV if the device has been
2961 * flagged for logical disconnection, or some other negative error code
2962 * if the reset wasn't even attempted.
2963 *
2964 * The caller must own the device lock. For example, it's safe to use
2965 * this from a driver probe() routine after downloading new firmware.
2966 * For calls that might not occur during probe(), drivers should lock
2967 * the device using usb_lock_device_for_reset().
2968 */
2969int usb_reset_device(struct usb_device *udev)
2970{
2971 struct usb_device *parent_hdev = udev->parent;
2972 struct usb_hub *parent_hub;
2973 struct usb_device_descriptor descriptor = udev->descriptor;
2974 struct usb_hub *hub = NULL;
2975 int i, ret = 0, port1 = -1;
2976
2977 if (udev->state == USB_STATE_NOTATTACHED ||
2978 udev->state == USB_STATE_SUSPENDED) {
2979 dev_dbg(&udev->dev, "device reset not allowed in state %d\n",
2980 udev->state);
2981 return -EINVAL;
2982 }
2983
2984 if (!parent_hdev) {
2985 /* this requires hcd-specific logic; see OHCI hc_restart() */
2986 dev_dbg(&udev->dev, "%s for root hub!\n", __FUNCTION__);
2987 return -EISDIR;
2988 }
2989
2990 for (i = 0; i < parent_hdev->maxchild; i++)
2991 if (parent_hdev->children[i] == udev) {
2992 port1 = i + 1;
2993 break;
2994 }
2995
2996 if (port1 < 0) {
2997 /* If this ever happens, it's very bad */
2998 dev_err(&udev->dev, "Can't locate device's port!\n");
2999 return -ENOENT;
3000 }
3001 parent_hub = hdev_to_hub(parent_hdev);
3002
3003 /* If we're resetting an active hub, take some special actions */
3004 if (udev->actconfig &&
3005 udev->actconfig->interface[0]->dev.driver ==
3006 &hub_driver.driver &&
3007 (hub = hdev_to_hub(udev)) != NULL) {
3008 hub_pre_reset(hub);
3009 }
3010
3011 set_bit(port1, parent_hub->busy_bits);
3012 for (i = 0; i < SET_CONFIG_TRIES; ++i) {
3013
3014 /* ep0 maxpacket size may change; let the HCD know about it.
3015 * Other endpoints will be handled by re-enumeration. */
3016 ep0_reinit(udev);
3017 ret = hub_port_init(parent_hub, udev, port1, i);
3018 if (ret >= 0)
3019 break;
3020 }
3021 clear_bit(port1, parent_hub->busy_bits);
3022 if (ret < 0)
3023 goto re_enumerate;
3024
3025 /* Device might have changed firmware (DFU or similar) */
3026 if (memcmp(&udev->descriptor, &descriptor, sizeof descriptor)
3027 || config_descriptors_changed (udev)) {
3028 dev_info(&udev->dev, "device firmware changed\n");
3029 udev->descriptor = descriptor; /* for disconnect() calls */
3030 goto re_enumerate;
3031 }
3032
3033 if (!udev->actconfig)
3034 goto done;
3035
3036 ret = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
3037 USB_REQ_SET_CONFIGURATION, 0,
3038 udev->actconfig->desc.bConfigurationValue, 0,
3039 NULL, 0, USB_CTRL_SET_TIMEOUT);
3040 if (ret < 0) {
3041 dev_err(&udev->dev,
3042 "can't restore configuration #%d (error=%d)\n",
3043 udev->actconfig->desc.bConfigurationValue, ret);
3044 goto re_enumerate;
3045 }
3046 usb_set_device_state(udev, USB_STATE_CONFIGURED);
3047
3048 for (i = 0; i < udev->actconfig->desc.bNumInterfaces; i++) {
3049 struct usb_interface *intf = udev->actconfig->interface[i];
3050 struct usb_interface_descriptor *desc;
3051
3052 /* set_interface resets host side toggle even
3053 * for altsetting zero. the interface may have no driver.
3054 */
3055 desc = &intf->cur_altsetting->desc;
3056 ret = usb_set_interface(udev, desc->bInterfaceNumber,
3057 desc->bAlternateSetting);
3058 if (ret < 0) {
3059 dev_err(&udev->dev, "failed to restore interface %d "
3060 "altsetting %d (error=%d)\n",
3061 desc->bInterfaceNumber,
3062 desc->bAlternateSetting,
3063 ret);
3064 goto re_enumerate;
3065 }
3066 }
3067
3068done:
3069 if (hub)
3070 hub_post_reset(hub);
3071 return 0;
3072
3073re_enumerate:
3074 hub_port_logical_disconnect(parent_hub, port1);
3075 return -ENODEV;
3076}