USB: optimize port debouncing during hub activation
[linux-2.6/mini2440.git] / drivers / usb / core / hub.c
blobbc80168957b8b629dba042c0bb4c1361bf1303df
1 /*
2 * USB hub driver.
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)
9 */
11 #include <linux/kernel.h>
12 #include <linux/errno.h>
13 #include <linux/module.h>
14 #include <linux/moduleparam.h>
15 #include <linux/completion.h>
16 #include <linux/sched.h>
17 #include <linux/list.h>
18 #include <linux/slab.h>
19 #include <linux/ioctl.h>
20 #include <linux/usb.h>
21 #include <linux/usbdevice_fs.h>
22 #include <linux/kthread.h>
23 #include <linux/mutex.h>
24 #include <linux/freezer.h>
26 #include <asm/uaccess.h>
27 #include <asm/byteorder.h>
29 #include "usb.h"
30 #include "hcd.h"
31 #include "hub.h"
33 /* if we are in debug mode, always announce new devices */
34 #ifdef DEBUG
35 #ifndef CONFIG_USB_ANNOUNCE_NEW_DEVICES
36 #define CONFIG_USB_ANNOUNCE_NEW_DEVICES
37 #endif
38 #endif
40 struct usb_hub {
41 struct device *intfdev; /* the "interface" device */
42 struct usb_device *hdev;
43 struct kref kref;
44 struct urb *urb; /* for interrupt polling pipe */
46 /* buffer for urb ... with extra space in case of babble */
47 char (*buffer)[8];
48 dma_addr_t buffer_dma; /* DMA address for buffer */
49 union {
50 struct usb_hub_status hub;
51 struct usb_port_status port;
52 } *status; /* buffer for status reports */
53 struct mutex status_mutex; /* for the status buffer */
55 int error; /* last reported error */
56 int nerrors; /* track consecutive errors */
58 struct list_head event_list; /* hubs w/data or errs ready */
59 unsigned long event_bits[1]; /* status change bitmask */
60 unsigned long change_bits[1]; /* ports with logical connect
61 status change */
62 unsigned long busy_bits[1]; /* ports being reset or
63 resumed */
64 #if USB_MAXCHILDREN > 31 /* 8*sizeof(unsigned long) - 1 */
65 #error event_bits[] is too short!
66 #endif
68 struct usb_hub_descriptor *descriptor; /* class descriptor */
69 struct usb_tt tt; /* Transaction Translator */
71 unsigned mA_per_port; /* current for each child */
73 unsigned limited_power:1;
74 unsigned quiescing:1;
75 unsigned disconnected:1;
77 unsigned has_indicators:1;
78 u8 indicator[USB_MAXCHILDREN];
79 struct delayed_work leds;
83 /* Protect struct usb_device->state and ->children members
84 * Note: Both are also protected by ->dev.sem, except that ->state can
85 * change to USB_STATE_NOTATTACHED even when the semaphore isn't held. */
86 static DEFINE_SPINLOCK(device_state_lock);
88 /* khubd's worklist and its lock */
89 static DEFINE_SPINLOCK(hub_event_lock);
90 static LIST_HEAD(hub_event_list); /* List of hubs needing servicing */
92 /* Wakes up khubd */
93 static DECLARE_WAIT_QUEUE_HEAD(khubd_wait);
95 static struct task_struct *khubd_task;
97 /* cycle leds on hubs that aren't blinking for attention */
98 static int blinkenlights = 0;
99 module_param (blinkenlights, bool, S_IRUGO);
100 MODULE_PARM_DESC (blinkenlights, "true to cycle leds on hubs");
103 * As of 2.6.10 we introduce a new USB device initialization scheme which
104 * closely resembles the way Windows works. Hopefully it will be compatible
105 * with a wider range of devices than the old scheme. However some previously
106 * working devices may start giving rise to "device not accepting address"
107 * errors; if that happens the user can try the old scheme by adjusting the
108 * following module parameters.
110 * For maximum flexibility there are two boolean parameters to control the
111 * hub driver's behavior. On the first initialization attempt, if the
112 * "old_scheme_first" parameter is set then the old scheme will be used,
113 * otherwise the new scheme is used. If that fails and "use_both_schemes"
114 * is set, then the driver will make another attempt, using the other scheme.
116 static int old_scheme_first = 0;
117 module_param(old_scheme_first, bool, S_IRUGO | S_IWUSR);
118 MODULE_PARM_DESC(old_scheme_first,
119 "start with the old device initialization scheme");
121 static int use_both_schemes = 1;
122 module_param(use_both_schemes, bool, S_IRUGO | S_IWUSR);
123 MODULE_PARM_DESC(use_both_schemes,
124 "try the other device initialization scheme if the "
125 "first one fails");
127 /* Mutual exclusion for EHCI CF initialization. This interferes with
128 * port reset on some companion controllers.
130 DECLARE_RWSEM(ehci_cf_port_reset_rwsem);
131 EXPORT_SYMBOL_GPL(ehci_cf_port_reset_rwsem);
133 #define HUB_DEBOUNCE_TIMEOUT 1500
134 #define HUB_DEBOUNCE_STEP 25
135 #define HUB_DEBOUNCE_STABLE 100
138 static inline char *portspeed(int portstatus)
140 if (portstatus & (1 << USB_PORT_FEAT_HIGHSPEED))
141 return "480 Mb/s";
142 else if (portstatus & (1 << USB_PORT_FEAT_LOWSPEED))
143 return "1.5 Mb/s";
144 else
145 return "12 Mb/s";
148 /* Note that hdev or one of its children must be locked! */
149 static inline struct usb_hub *hdev_to_hub(struct usb_device *hdev)
151 return usb_get_intfdata(hdev->actconfig->interface[0]);
154 /* USB 2.0 spec Section 11.24.4.5 */
155 static int get_hub_descriptor(struct usb_device *hdev, void *data, int size)
157 int i, ret;
159 for (i = 0; i < 3; i++) {
160 ret = usb_control_msg(hdev, usb_rcvctrlpipe(hdev, 0),
161 USB_REQ_GET_DESCRIPTOR, USB_DIR_IN | USB_RT_HUB,
162 USB_DT_HUB << 8, 0, data, size,
163 USB_CTRL_GET_TIMEOUT);
164 if (ret >= (USB_DT_HUB_NONVAR_SIZE + 2))
165 return ret;
167 return -EINVAL;
171 * USB 2.0 spec Section 11.24.2.1
173 static int clear_hub_feature(struct usb_device *hdev, int feature)
175 return usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
176 USB_REQ_CLEAR_FEATURE, USB_RT_HUB, feature, 0, NULL, 0, 1000);
180 * USB 2.0 spec Section 11.24.2.2
182 static int clear_port_feature(struct usb_device *hdev, int port1, int feature)
184 return usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
185 USB_REQ_CLEAR_FEATURE, USB_RT_PORT, feature, port1,
186 NULL, 0, 1000);
190 * USB 2.0 spec Section 11.24.2.13
192 static int set_port_feature(struct usb_device *hdev, int port1, int feature)
194 return usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
195 USB_REQ_SET_FEATURE, USB_RT_PORT, feature, port1,
196 NULL, 0, 1000);
200 * USB 2.0 spec Section 11.24.2.7.1.10 and table 11-7
201 * for info about using port indicators
203 static void set_port_led(
204 struct usb_hub *hub,
205 int port1,
206 int selector
209 int status = set_port_feature(hub->hdev, (selector << 8) | port1,
210 USB_PORT_FEAT_INDICATOR);
211 if (status < 0)
212 dev_dbg (hub->intfdev,
213 "port %d indicator %s status %d\n",
214 port1,
215 ({ char *s; switch (selector) {
216 case HUB_LED_AMBER: s = "amber"; break;
217 case HUB_LED_GREEN: s = "green"; break;
218 case HUB_LED_OFF: s = "off"; break;
219 case HUB_LED_AUTO: s = "auto"; break;
220 default: s = "??"; break;
221 }; s; }),
222 status);
225 #define LED_CYCLE_PERIOD ((2*HZ)/3)
227 static void led_work (struct work_struct *work)
229 struct usb_hub *hub =
230 container_of(work, struct usb_hub, leds.work);
231 struct usb_device *hdev = hub->hdev;
232 unsigned i;
233 unsigned changed = 0;
234 int cursor = -1;
236 if (hdev->state != USB_STATE_CONFIGURED || hub->quiescing)
237 return;
239 for (i = 0; i < hub->descriptor->bNbrPorts; i++) {
240 unsigned selector, mode;
242 /* 30%-50% duty cycle */
244 switch (hub->indicator[i]) {
245 /* cycle marker */
246 case INDICATOR_CYCLE:
247 cursor = i;
248 selector = HUB_LED_AUTO;
249 mode = INDICATOR_AUTO;
250 break;
251 /* blinking green = sw attention */
252 case INDICATOR_GREEN_BLINK:
253 selector = HUB_LED_GREEN;
254 mode = INDICATOR_GREEN_BLINK_OFF;
255 break;
256 case INDICATOR_GREEN_BLINK_OFF:
257 selector = HUB_LED_OFF;
258 mode = INDICATOR_GREEN_BLINK;
259 break;
260 /* blinking amber = hw attention */
261 case INDICATOR_AMBER_BLINK:
262 selector = HUB_LED_AMBER;
263 mode = INDICATOR_AMBER_BLINK_OFF;
264 break;
265 case INDICATOR_AMBER_BLINK_OFF:
266 selector = HUB_LED_OFF;
267 mode = INDICATOR_AMBER_BLINK;
268 break;
269 /* blink green/amber = reserved */
270 case INDICATOR_ALT_BLINK:
271 selector = HUB_LED_GREEN;
272 mode = INDICATOR_ALT_BLINK_OFF;
273 break;
274 case INDICATOR_ALT_BLINK_OFF:
275 selector = HUB_LED_AMBER;
276 mode = INDICATOR_ALT_BLINK;
277 break;
278 default:
279 continue;
281 if (selector != HUB_LED_AUTO)
282 changed = 1;
283 set_port_led(hub, i + 1, selector);
284 hub->indicator[i] = mode;
286 if (!changed && blinkenlights) {
287 cursor++;
288 cursor %= hub->descriptor->bNbrPorts;
289 set_port_led(hub, cursor + 1, HUB_LED_GREEN);
290 hub->indicator[cursor] = INDICATOR_CYCLE;
291 changed++;
293 if (changed)
294 schedule_delayed_work(&hub->leds, LED_CYCLE_PERIOD);
297 /* use a short timeout for hub/port status fetches */
298 #define USB_STS_TIMEOUT 1000
299 #define USB_STS_RETRIES 5
302 * USB 2.0 spec Section 11.24.2.6
304 static int get_hub_status(struct usb_device *hdev,
305 struct usb_hub_status *data)
307 int i, status = -ETIMEDOUT;
309 for (i = 0; i < USB_STS_RETRIES && status == -ETIMEDOUT; i++) {
310 status = usb_control_msg(hdev, usb_rcvctrlpipe(hdev, 0),
311 USB_REQ_GET_STATUS, USB_DIR_IN | USB_RT_HUB, 0, 0,
312 data, sizeof(*data), USB_STS_TIMEOUT);
314 return status;
318 * USB 2.0 spec Section 11.24.2.7
320 static int get_port_status(struct usb_device *hdev, int port1,
321 struct usb_port_status *data)
323 int i, status = -ETIMEDOUT;
325 for (i = 0; i < USB_STS_RETRIES && status == -ETIMEDOUT; i++) {
326 status = usb_control_msg(hdev, usb_rcvctrlpipe(hdev, 0),
327 USB_REQ_GET_STATUS, USB_DIR_IN | USB_RT_PORT, 0, port1,
328 data, sizeof(*data), USB_STS_TIMEOUT);
330 return status;
333 static int hub_port_status(struct usb_hub *hub, int port1,
334 u16 *status, u16 *change)
336 int ret;
338 mutex_lock(&hub->status_mutex);
339 ret = get_port_status(hub->hdev, port1, &hub->status->port);
340 if (ret < 4) {
341 dev_err(hub->intfdev,
342 "%s failed (err = %d)\n", __func__, ret);
343 if (ret >= 0)
344 ret = -EIO;
345 } else {
346 *status = le16_to_cpu(hub->status->port.wPortStatus);
347 *change = le16_to_cpu(hub->status->port.wPortChange);
348 ret = 0;
350 mutex_unlock(&hub->status_mutex);
351 return ret;
354 static void kick_khubd(struct usb_hub *hub)
356 unsigned long flags;
358 /* Suppress autosuspend until khubd runs */
359 to_usb_interface(hub->intfdev)->pm_usage_cnt = 1;
361 spin_lock_irqsave(&hub_event_lock, flags);
362 if (!hub->disconnected && list_empty(&hub->event_list)) {
363 list_add_tail(&hub->event_list, &hub_event_list);
364 wake_up(&khubd_wait);
366 spin_unlock_irqrestore(&hub_event_lock, flags);
369 void usb_kick_khubd(struct usb_device *hdev)
371 /* FIXME: What if hdev isn't bound to the hub driver? */
372 kick_khubd(hdev_to_hub(hdev));
376 /* completion function, fires on port status changes and various faults */
377 static void hub_irq(struct urb *urb)
379 struct usb_hub *hub = urb->context;
380 int status = urb->status;
381 int i;
382 unsigned long bits;
384 switch (status) {
385 case -ENOENT: /* synchronous unlink */
386 case -ECONNRESET: /* async unlink */
387 case -ESHUTDOWN: /* hardware going away */
388 return;
390 default: /* presumably an error */
391 /* Cause a hub reset after 10 consecutive errors */
392 dev_dbg (hub->intfdev, "transfer --> %d\n", status);
393 if ((++hub->nerrors < 10) || hub->error)
394 goto resubmit;
395 hub->error = status;
396 /* FALL THROUGH */
398 /* let khubd handle things */
399 case 0: /* we got data: port status changed */
400 bits = 0;
401 for (i = 0; i < urb->actual_length; ++i)
402 bits |= ((unsigned long) ((*hub->buffer)[i]))
403 << (i*8);
404 hub->event_bits[0] = bits;
405 break;
408 hub->nerrors = 0;
410 /* Something happened, let khubd figure it out */
411 kick_khubd(hub);
413 resubmit:
414 if (hub->quiescing)
415 return;
417 if ((status = usb_submit_urb (hub->urb, GFP_ATOMIC)) != 0
418 && status != -ENODEV && status != -EPERM)
419 dev_err (hub->intfdev, "resubmit --> %d\n", status);
422 /* USB 2.0 spec Section 11.24.2.3 */
423 static inline int
424 hub_clear_tt_buffer (struct usb_device *hdev, u16 devinfo, u16 tt)
426 return usb_control_msg(hdev, usb_rcvctrlpipe(hdev, 0),
427 HUB_CLEAR_TT_BUFFER, USB_RT_PORT, devinfo,
428 tt, NULL, 0, 1000);
432 * enumeration blocks khubd for a long time. we use keventd instead, since
433 * long blocking there is the exception, not the rule. accordingly, HCDs
434 * talking to TTs must queue control transfers (not just bulk and iso), so
435 * both can talk to the same hub concurrently.
437 static void hub_tt_kevent (struct work_struct *work)
439 struct usb_hub *hub =
440 container_of(work, struct usb_hub, tt.kevent);
441 unsigned long flags;
442 int limit = 100;
444 spin_lock_irqsave (&hub->tt.lock, flags);
445 while (--limit && !list_empty (&hub->tt.clear_list)) {
446 struct list_head *temp;
447 struct usb_tt_clear *clear;
448 struct usb_device *hdev = hub->hdev;
449 int status;
451 temp = hub->tt.clear_list.next;
452 clear = list_entry (temp, struct usb_tt_clear, clear_list);
453 list_del (&clear->clear_list);
455 /* drop lock so HCD can concurrently report other TT errors */
456 spin_unlock_irqrestore (&hub->tt.lock, flags);
457 status = hub_clear_tt_buffer (hdev, clear->devinfo, clear->tt);
458 spin_lock_irqsave (&hub->tt.lock, flags);
460 if (status)
461 dev_err (&hdev->dev,
462 "clear tt %d (%04x) error %d\n",
463 clear->tt, clear->devinfo, status);
464 kfree(clear);
466 spin_unlock_irqrestore (&hub->tt.lock, flags);
470 * usb_hub_tt_clear_buffer - clear control/bulk TT state in high speed hub
471 * @udev: the device whose split transaction failed
472 * @pipe: identifies the endpoint of the failed transaction
474 * High speed HCDs use this to tell the hub driver that some split control or
475 * bulk transaction failed in a way that requires clearing internal state of
476 * a transaction translator. This is normally detected (and reported) from
477 * interrupt context.
479 * It may not be possible for that hub to handle additional full (or low)
480 * speed transactions until that state is fully cleared out.
482 void usb_hub_tt_clear_buffer (struct usb_device *udev, int pipe)
484 struct usb_tt *tt = udev->tt;
485 unsigned long flags;
486 struct usb_tt_clear *clear;
488 /* we've got to cope with an arbitrary number of pending TT clears,
489 * since each TT has "at least two" buffers that can need it (and
490 * there can be many TTs per hub). even if they're uncommon.
492 if ((clear = kmalloc (sizeof *clear, GFP_ATOMIC)) == NULL) {
493 dev_err (&udev->dev, "can't save CLEAR_TT_BUFFER state\n");
494 /* FIXME recover somehow ... RESET_TT? */
495 return;
498 /* info that CLEAR_TT_BUFFER needs */
499 clear->tt = tt->multi ? udev->ttport : 1;
500 clear->devinfo = usb_pipeendpoint (pipe);
501 clear->devinfo |= udev->devnum << 4;
502 clear->devinfo |= usb_pipecontrol (pipe)
503 ? (USB_ENDPOINT_XFER_CONTROL << 11)
504 : (USB_ENDPOINT_XFER_BULK << 11);
505 if (usb_pipein (pipe))
506 clear->devinfo |= 1 << 15;
508 /* tell keventd to clear state for this TT */
509 spin_lock_irqsave (&tt->lock, flags);
510 list_add_tail (&clear->clear_list, &tt->clear_list);
511 schedule_work (&tt->kevent);
512 spin_unlock_irqrestore (&tt->lock, flags);
514 EXPORT_SYMBOL_GPL(usb_hub_tt_clear_buffer);
516 static void hub_power_on(struct usb_hub *hub)
518 int port1;
519 unsigned pgood_delay = hub->descriptor->bPwrOn2PwrGood * 2;
520 u16 wHubCharacteristics =
521 le16_to_cpu(hub->descriptor->wHubCharacteristics);
523 /* Enable power on each port. Some hubs have reserved values
524 * of LPSM (> 2) in their descriptors, even though they are
525 * USB 2.0 hubs. Some hubs do not implement port-power switching
526 * but only emulate it. In all cases, the ports won't work
527 * unless we send these messages to the hub.
529 if ((wHubCharacteristics & HUB_CHAR_LPSM) < 2)
530 dev_dbg(hub->intfdev, "enabling power on all ports\n");
531 else
532 dev_dbg(hub->intfdev, "trying to enable port power on "
533 "non-switchable hub\n");
534 for (port1 = 1; port1 <= hub->descriptor->bNbrPorts; port1++)
535 set_port_feature(hub->hdev, port1, USB_PORT_FEAT_POWER);
537 /* Wait at least 100 msec for power to become stable */
538 msleep(max(pgood_delay, (unsigned) 100));
541 static void hub_quiesce(struct usb_hub *hub)
543 /* (nonblocking) khubd and related activity won't re-trigger */
544 hub->quiescing = 1;
546 /* (blocking) stop khubd and related activity */
547 usb_kill_urb(hub->urb);
548 if (hub->has_indicators)
549 cancel_delayed_work_sync(&hub->leds);
550 if (hub->tt.hub)
551 cancel_work_sync(&hub->tt.kevent);
554 static void hub_activate(struct usb_hub *hub)
556 int status;
558 hub->quiescing = 0;
560 status = usb_submit_urb(hub->urb, GFP_NOIO);
561 if (status < 0)
562 dev_err(hub->intfdev, "activate --> %d\n", status);
563 if (hub->has_indicators && blinkenlights)
564 schedule_delayed_work(&hub->leds, LED_CYCLE_PERIOD);
566 /* scan all ports ASAP */
567 kick_khubd(hub);
570 static int hub_hub_status(struct usb_hub *hub,
571 u16 *status, u16 *change)
573 int ret;
575 mutex_lock(&hub->status_mutex);
576 ret = get_hub_status(hub->hdev, &hub->status->hub);
577 if (ret < 0)
578 dev_err (hub->intfdev,
579 "%s failed (err = %d)\n", __func__, ret);
580 else {
581 *status = le16_to_cpu(hub->status->hub.wHubStatus);
582 *change = le16_to_cpu(hub->status->hub.wHubChange);
583 ret = 0;
585 mutex_unlock(&hub->status_mutex);
586 return ret;
589 static int hub_port_disable(struct usb_hub *hub, int port1, int set_state)
591 struct usb_device *hdev = hub->hdev;
592 int ret = 0;
594 if (hdev->children[port1-1] && set_state)
595 usb_set_device_state(hdev->children[port1-1],
596 USB_STATE_NOTATTACHED);
597 if (!hub->error)
598 ret = clear_port_feature(hdev, port1, USB_PORT_FEAT_ENABLE);
599 if (ret)
600 dev_err(hub->intfdev, "cannot disable port %d (err = %d)\n",
601 port1, ret);
602 return ret;
606 * Disable a port and mark a logical connnect-change event, so that some
607 * time later khubd will disconnect() any existing usb_device on the port
608 * and will re-enumerate if there actually is a device attached.
610 static void hub_port_logical_disconnect(struct usb_hub *hub, int port1)
612 dev_dbg(hub->intfdev, "logical disconnect on port %d\n", port1);
613 hub_port_disable(hub, port1, 1);
615 /* FIXME let caller ask to power down the port:
616 * - some devices won't enumerate without a VBUS power cycle
617 * - SRP saves power that way
618 * - ... new call, TBD ...
619 * That's easy if this hub can switch power per-port, and
620 * khubd reactivates the port later (timer, SRP, etc).
621 * Powerdown must be optional, because of reset/DFU.
624 set_bit(port1, hub->change_bits);
625 kick_khubd(hub);
628 /* caller has locked the hub device */
629 static void hub_stop(struct usb_hub *hub)
631 struct usb_device *hdev = hub->hdev;
632 int i;
634 /* Disconnect all the children */
635 for (i = 0; i < hdev->maxchild; ++i) {
636 if (hdev->children[i])
637 usb_disconnect(&hdev->children[i]);
639 hub_quiesce(hub);
642 enum hub_activation_type {
643 HUB_INIT, HUB_POST_RESET, HUB_RESUME, HUB_RESET_RESUME
646 static void hub_restart(struct usb_hub *hub, enum hub_activation_type type)
648 struct usb_device *hdev = hub->hdev;
649 int port1;
650 bool need_debounce_delay = false;
652 /* Check each port and set hub->change_bits to let khubd know
653 * which ports need attention.
655 for (port1 = 1; port1 <= hdev->maxchild; ++port1) {
656 struct usb_device *udev = hdev->children[port1-1];
657 int status;
658 u16 portstatus, portchange;
660 portstatus = portchange = 0;
661 status = hub_port_status(hub, port1, &portstatus, &portchange);
662 if (udev || (portstatus & USB_PORT_STAT_CONNECTION))
663 dev_dbg(hub->intfdev,
664 "port %d: status %04x change %04x\n",
665 port1, portstatus, portchange);
667 /* After anything other than HUB_RESUME (i.e., initialization
668 * or any sort of reset), every port should be disabled.
669 * Unconnected ports should likewise be disabled (paranoia),
670 * and so should ports for which we have no usb_device.
672 if ((portstatus & USB_PORT_STAT_ENABLE) && (
673 type != HUB_RESUME ||
674 !(portstatus & USB_PORT_STAT_CONNECTION) ||
675 !udev ||
676 udev->state == USB_STATE_NOTATTACHED)) {
677 clear_port_feature(hdev, port1, USB_PORT_FEAT_ENABLE);
678 portstatus &= ~USB_PORT_STAT_ENABLE;
681 /* Clear status-change flags; we'll debounce later */
682 if (portchange & USB_PORT_STAT_C_CONNECTION) {
683 need_debounce_delay = true;
684 clear_port_feature(hub->hdev, port1,
685 USB_PORT_FEAT_C_CONNECTION);
687 if (portchange & USB_PORT_STAT_C_ENABLE) {
688 need_debounce_delay = true;
689 clear_port_feature(hub->hdev, port1,
690 USB_PORT_FEAT_C_ENABLE);
693 if (!udev || udev->state == USB_STATE_NOTATTACHED) {
694 /* Tell khubd to disconnect the device or
695 * check for a new connection
697 if (udev || (portstatus & USB_PORT_STAT_CONNECTION))
698 set_bit(port1, hub->change_bits);
700 } else if (portstatus & USB_PORT_STAT_ENABLE) {
701 /* The power session apparently survived the resume.
702 * If there was an overcurrent or suspend change
703 * (i.e., remote wakeup request), have khubd
704 * take care of it.
706 if (portchange)
707 set_bit(port1, hub->change_bits);
709 } else if (udev->persist_enabled) {
710 #ifdef CONFIG_PM
711 udev->reset_resume = 1;
712 #endif
713 set_bit(port1, hub->change_bits);
715 } else {
716 /* The power session is gone; tell khubd */
717 usb_set_device_state(udev, USB_STATE_NOTATTACHED);
718 set_bit(port1, hub->change_bits);
722 /* If no port-status-change flags were set, we don't need any
723 * debouncing. If flags were set we can try to debounce the
724 * ports all at once right now, instead of letting khubd do them
725 * one at a time later on.
727 * If any port-status changes do occur during this delay, khubd
728 * will see them later and handle them normally.
730 if (need_debounce_delay)
731 msleep(HUB_DEBOUNCE_STABLE);
732 hub_activate(hub);
735 /* caller has locked the hub device */
736 static int hub_pre_reset(struct usb_interface *intf)
738 struct usb_hub *hub = usb_get_intfdata(intf);
740 hub_stop(hub);
741 return 0;
744 /* caller has locked the hub device */
745 static int hub_post_reset(struct usb_interface *intf)
747 struct usb_hub *hub = usb_get_intfdata(intf);
749 hub_power_on(hub);
750 hub_restart(hub, HUB_POST_RESET);
751 return 0;
754 static int hub_configure(struct usb_hub *hub,
755 struct usb_endpoint_descriptor *endpoint)
757 struct usb_device *hdev = hub->hdev;
758 struct device *hub_dev = hub->intfdev;
759 u16 hubstatus, hubchange;
760 u16 wHubCharacteristics;
761 unsigned int pipe;
762 int maxp, ret;
763 char *message;
765 hub->buffer = usb_buffer_alloc(hdev, sizeof(*hub->buffer), GFP_KERNEL,
766 &hub->buffer_dma);
767 if (!hub->buffer) {
768 message = "can't allocate hub irq buffer";
769 ret = -ENOMEM;
770 goto fail;
773 hub->status = kmalloc(sizeof(*hub->status), GFP_KERNEL);
774 if (!hub->status) {
775 message = "can't kmalloc hub status buffer";
776 ret = -ENOMEM;
777 goto fail;
779 mutex_init(&hub->status_mutex);
781 hub->descriptor = kmalloc(sizeof(*hub->descriptor), GFP_KERNEL);
782 if (!hub->descriptor) {
783 message = "can't kmalloc hub descriptor";
784 ret = -ENOMEM;
785 goto fail;
788 /* Request the entire hub descriptor.
789 * hub->descriptor can handle USB_MAXCHILDREN ports,
790 * but the hub can/will return fewer bytes here.
792 ret = get_hub_descriptor(hdev, hub->descriptor,
793 sizeof(*hub->descriptor));
794 if (ret < 0) {
795 message = "can't read hub descriptor";
796 goto fail;
797 } else if (hub->descriptor->bNbrPorts > USB_MAXCHILDREN) {
798 message = "hub has too many ports!";
799 ret = -ENODEV;
800 goto fail;
803 hdev->maxchild = hub->descriptor->bNbrPorts;
804 dev_info (hub_dev, "%d port%s detected\n", hdev->maxchild,
805 (hdev->maxchild == 1) ? "" : "s");
807 wHubCharacteristics = le16_to_cpu(hub->descriptor->wHubCharacteristics);
809 if (wHubCharacteristics & HUB_CHAR_COMPOUND) {
810 int i;
811 char portstr [USB_MAXCHILDREN + 1];
813 for (i = 0; i < hdev->maxchild; i++)
814 portstr[i] = hub->descriptor->DeviceRemovable
815 [((i + 1) / 8)] & (1 << ((i + 1) % 8))
816 ? 'F' : 'R';
817 portstr[hdev->maxchild] = 0;
818 dev_dbg(hub_dev, "compound device; port removable status: %s\n", portstr);
819 } else
820 dev_dbg(hub_dev, "standalone hub\n");
822 switch (wHubCharacteristics & HUB_CHAR_LPSM) {
823 case 0x00:
824 dev_dbg(hub_dev, "ganged power switching\n");
825 break;
826 case 0x01:
827 dev_dbg(hub_dev, "individual port power switching\n");
828 break;
829 case 0x02:
830 case 0x03:
831 dev_dbg(hub_dev, "no power switching (usb 1.0)\n");
832 break;
835 switch (wHubCharacteristics & HUB_CHAR_OCPM) {
836 case 0x00:
837 dev_dbg(hub_dev, "global over-current protection\n");
838 break;
839 case 0x08:
840 dev_dbg(hub_dev, "individual port over-current protection\n");
841 break;
842 case 0x10:
843 case 0x18:
844 dev_dbg(hub_dev, "no over-current protection\n");
845 break;
848 spin_lock_init (&hub->tt.lock);
849 INIT_LIST_HEAD (&hub->tt.clear_list);
850 INIT_WORK (&hub->tt.kevent, hub_tt_kevent);
851 switch (hdev->descriptor.bDeviceProtocol) {
852 case 0:
853 break;
854 case 1:
855 dev_dbg(hub_dev, "Single TT\n");
856 hub->tt.hub = hdev;
857 break;
858 case 2:
859 ret = usb_set_interface(hdev, 0, 1);
860 if (ret == 0) {
861 dev_dbg(hub_dev, "TT per port\n");
862 hub->tt.multi = 1;
863 } else
864 dev_err(hub_dev, "Using single TT (err %d)\n",
865 ret);
866 hub->tt.hub = hdev;
867 break;
868 default:
869 dev_dbg(hub_dev, "Unrecognized hub protocol %d\n",
870 hdev->descriptor.bDeviceProtocol);
871 break;
874 /* Note 8 FS bit times == (8 bits / 12000000 bps) ~= 666ns */
875 switch (wHubCharacteristics & HUB_CHAR_TTTT) {
876 case HUB_TTTT_8_BITS:
877 if (hdev->descriptor.bDeviceProtocol != 0) {
878 hub->tt.think_time = 666;
879 dev_dbg(hub_dev, "TT requires at most %d "
880 "FS bit times (%d ns)\n",
881 8, hub->tt.think_time);
883 break;
884 case HUB_TTTT_16_BITS:
885 hub->tt.think_time = 666 * 2;
886 dev_dbg(hub_dev, "TT requires at most %d "
887 "FS bit times (%d ns)\n",
888 16, hub->tt.think_time);
889 break;
890 case HUB_TTTT_24_BITS:
891 hub->tt.think_time = 666 * 3;
892 dev_dbg(hub_dev, "TT requires at most %d "
893 "FS bit times (%d ns)\n",
894 24, hub->tt.think_time);
895 break;
896 case HUB_TTTT_32_BITS:
897 hub->tt.think_time = 666 * 4;
898 dev_dbg(hub_dev, "TT requires at most %d "
899 "FS bit times (%d ns)\n",
900 32, hub->tt.think_time);
901 break;
904 /* probe() zeroes hub->indicator[] */
905 if (wHubCharacteristics & HUB_CHAR_PORTIND) {
906 hub->has_indicators = 1;
907 dev_dbg(hub_dev, "Port indicators are supported\n");
910 dev_dbg(hub_dev, "power on to power good time: %dms\n",
911 hub->descriptor->bPwrOn2PwrGood * 2);
913 /* power budgeting mostly matters with bus-powered hubs,
914 * and battery-powered root hubs (may provide just 8 mA).
916 ret = usb_get_status(hdev, USB_RECIP_DEVICE, 0, &hubstatus);
917 if (ret < 2) {
918 message = "can't get hub status";
919 goto fail;
921 le16_to_cpus(&hubstatus);
922 if (hdev == hdev->bus->root_hub) {
923 if (hdev->bus_mA == 0 || hdev->bus_mA >= 500)
924 hub->mA_per_port = 500;
925 else {
926 hub->mA_per_port = hdev->bus_mA;
927 hub->limited_power = 1;
929 } else if ((hubstatus & (1 << USB_DEVICE_SELF_POWERED)) == 0) {
930 dev_dbg(hub_dev, "hub controller current requirement: %dmA\n",
931 hub->descriptor->bHubContrCurrent);
932 hub->limited_power = 1;
933 if (hdev->maxchild > 0) {
934 int remaining = hdev->bus_mA -
935 hub->descriptor->bHubContrCurrent;
937 if (remaining < hdev->maxchild * 100)
938 dev_warn(hub_dev,
939 "insufficient power available "
940 "to use all downstream ports\n");
941 hub->mA_per_port = 100; /* 7.2.1.1 */
943 } else { /* Self-powered external hub */
944 /* FIXME: What about battery-powered external hubs that
945 * provide less current per port? */
946 hub->mA_per_port = 500;
948 if (hub->mA_per_port < 500)
949 dev_dbg(hub_dev, "%umA bus power budget for each child\n",
950 hub->mA_per_port);
952 ret = hub_hub_status(hub, &hubstatus, &hubchange);
953 if (ret < 0) {
954 message = "can't get hub status";
955 goto fail;
958 /* local power status reports aren't always correct */
959 if (hdev->actconfig->desc.bmAttributes & USB_CONFIG_ATT_SELFPOWER)
960 dev_dbg(hub_dev, "local power source is %s\n",
961 (hubstatus & HUB_STATUS_LOCAL_POWER)
962 ? "lost (inactive)" : "good");
964 if ((wHubCharacteristics & HUB_CHAR_OCPM) == 0)
965 dev_dbg(hub_dev, "%sover-current condition exists\n",
966 (hubstatus & HUB_STATUS_OVERCURRENT) ? "" : "no ");
968 /* set up the interrupt endpoint
969 * We use the EP's maxpacket size instead of (PORTS+1+7)/8
970 * bytes as USB2.0[11.12.3] says because some hubs are known
971 * to send more data (and thus cause overflow). For root hubs,
972 * maxpktsize is defined in hcd.c's fake endpoint descriptors
973 * to be big enough for at least USB_MAXCHILDREN ports. */
974 pipe = usb_rcvintpipe(hdev, endpoint->bEndpointAddress);
975 maxp = usb_maxpacket(hdev, pipe, usb_pipeout(pipe));
977 if (maxp > sizeof(*hub->buffer))
978 maxp = sizeof(*hub->buffer);
980 hub->urb = usb_alloc_urb(0, GFP_KERNEL);
981 if (!hub->urb) {
982 message = "couldn't allocate interrupt urb";
983 ret = -ENOMEM;
984 goto fail;
987 usb_fill_int_urb(hub->urb, hdev, pipe, *hub->buffer, maxp, hub_irq,
988 hub, endpoint->bInterval);
989 hub->urb->transfer_dma = hub->buffer_dma;
990 hub->urb->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
992 /* maybe cycle the hub leds */
993 if (hub->has_indicators && blinkenlights)
994 hub->indicator [0] = INDICATOR_CYCLE;
996 hub_power_on(hub);
997 hub_activate(hub);
998 return 0;
1000 fail:
1001 dev_err (hub_dev, "config failed, %s (err %d)\n",
1002 message, ret);
1003 /* hub_disconnect() frees urb and descriptor */
1004 return ret;
1007 static void hub_release(struct kref *kref)
1009 struct usb_hub *hub = container_of(kref, struct usb_hub, kref);
1011 usb_put_intf(to_usb_interface(hub->intfdev));
1012 kfree(hub);
1015 static unsigned highspeed_hubs;
1017 static void hub_disconnect(struct usb_interface *intf)
1019 struct usb_hub *hub = usb_get_intfdata (intf);
1021 /* Take the hub off the event list and don't let it be added again */
1022 spin_lock_irq(&hub_event_lock);
1023 list_del_init(&hub->event_list);
1024 hub->disconnected = 1;
1025 spin_unlock_irq(&hub_event_lock);
1027 /* Disconnect all children and quiesce the hub */
1028 hub->error = 0;
1029 hub_stop(hub);
1031 usb_set_intfdata (intf, NULL);
1033 if (hub->hdev->speed == USB_SPEED_HIGH)
1034 highspeed_hubs--;
1036 usb_free_urb(hub->urb);
1037 kfree(hub->descriptor);
1038 kfree(hub->status);
1039 usb_buffer_free(hub->hdev, sizeof(*hub->buffer), hub->buffer,
1040 hub->buffer_dma);
1042 kref_put(&hub->kref, hub_release);
1045 static int hub_probe(struct usb_interface *intf, const struct usb_device_id *id)
1047 struct usb_host_interface *desc;
1048 struct usb_endpoint_descriptor *endpoint;
1049 struct usb_device *hdev;
1050 struct usb_hub *hub;
1052 desc = intf->cur_altsetting;
1053 hdev = interface_to_usbdev(intf);
1055 #ifdef CONFIG_USB_OTG_BLACKLIST_HUB
1056 if (hdev->parent) {
1057 dev_warn(&intf->dev, "ignoring external hub\n");
1058 return -ENODEV;
1060 #endif
1062 /* Some hubs have a subclass of 1, which AFAICT according to the */
1063 /* specs is not defined, but it works */
1064 if ((desc->desc.bInterfaceSubClass != 0) &&
1065 (desc->desc.bInterfaceSubClass != 1)) {
1066 descriptor_error:
1067 dev_err (&intf->dev, "bad descriptor, ignoring hub\n");
1068 return -EIO;
1071 /* Multiple endpoints? What kind of mutant ninja-hub is this? */
1072 if (desc->desc.bNumEndpoints != 1)
1073 goto descriptor_error;
1075 endpoint = &desc->endpoint[0].desc;
1077 /* If it's not an interrupt in endpoint, we'd better punt! */
1078 if (!usb_endpoint_is_int_in(endpoint))
1079 goto descriptor_error;
1081 /* We found a hub */
1082 dev_info (&intf->dev, "USB hub found\n");
1084 hub = kzalloc(sizeof(*hub), GFP_KERNEL);
1085 if (!hub) {
1086 dev_dbg (&intf->dev, "couldn't kmalloc hub struct\n");
1087 return -ENOMEM;
1090 kref_init(&hub->kref);
1091 INIT_LIST_HEAD(&hub->event_list);
1092 hub->intfdev = &intf->dev;
1093 hub->hdev = hdev;
1094 INIT_DELAYED_WORK(&hub->leds, led_work);
1095 usb_get_intf(intf);
1097 usb_set_intfdata (intf, hub);
1098 intf->needs_remote_wakeup = 1;
1100 if (hdev->speed == USB_SPEED_HIGH)
1101 highspeed_hubs++;
1103 if (hub_configure(hub, endpoint) >= 0)
1104 return 0;
1106 hub_disconnect (intf);
1107 return -ENODEV;
1110 static int
1111 hub_ioctl(struct usb_interface *intf, unsigned int code, void *user_data)
1113 struct usb_device *hdev = interface_to_usbdev (intf);
1115 /* assert ifno == 0 (part of hub spec) */
1116 switch (code) {
1117 case USBDEVFS_HUB_PORTINFO: {
1118 struct usbdevfs_hub_portinfo *info = user_data;
1119 int i;
1121 spin_lock_irq(&device_state_lock);
1122 if (hdev->devnum <= 0)
1123 info->nports = 0;
1124 else {
1125 info->nports = hdev->maxchild;
1126 for (i = 0; i < info->nports; i++) {
1127 if (hdev->children[i] == NULL)
1128 info->port[i] = 0;
1129 else
1130 info->port[i] =
1131 hdev->children[i]->devnum;
1134 spin_unlock_irq(&device_state_lock);
1136 return info->nports + 1;
1139 default:
1140 return -ENOSYS;
1145 static void recursively_mark_NOTATTACHED(struct usb_device *udev)
1147 int i;
1149 for (i = 0; i < udev->maxchild; ++i) {
1150 if (udev->children[i])
1151 recursively_mark_NOTATTACHED(udev->children[i]);
1153 if (udev->state == USB_STATE_SUSPENDED) {
1154 udev->discon_suspended = 1;
1155 udev->active_duration -= jiffies;
1157 udev->state = USB_STATE_NOTATTACHED;
1161 * usb_set_device_state - change a device's current state (usbcore, hcds)
1162 * @udev: pointer to device whose state should be changed
1163 * @new_state: new state value to be stored
1165 * udev->state is _not_ fully protected by the device lock. Although
1166 * most transitions are made only while holding the lock, the state can
1167 * can change to USB_STATE_NOTATTACHED at almost any time. This
1168 * is so that devices can be marked as disconnected as soon as possible,
1169 * without having to wait for any semaphores to be released. As a result,
1170 * all changes to any device's state must be protected by the
1171 * device_state_lock spinlock.
1173 * Once a device has been added to the device tree, all changes to its state
1174 * should be made using this routine. The state should _not_ be set directly.
1176 * If udev->state is already USB_STATE_NOTATTACHED then no change is made.
1177 * Otherwise udev->state is set to new_state, and if new_state is
1178 * USB_STATE_NOTATTACHED then all of udev's descendants' states are also set
1179 * to USB_STATE_NOTATTACHED.
1181 void usb_set_device_state(struct usb_device *udev,
1182 enum usb_device_state new_state)
1184 unsigned long flags;
1186 spin_lock_irqsave(&device_state_lock, flags);
1187 if (udev->state == USB_STATE_NOTATTACHED)
1188 ; /* do nothing */
1189 else if (new_state != USB_STATE_NOTATTACHED) {
1191 /* root hub wakeup capabilities are managed out-of-band
1192 * and may involve silicon errata ... ignore them here.
1194 if (udev->parent) {
1195 if (udev->state == USB_STATE_SUSPENDED
1196 || new_state == USB_STATE_SUSPENDED)
1197 ; /* No change to wakeup settings */
1198 else if (new_state == USB_STATE_CONFIGURED)
1199 device_init_wakeup(&udev->dev,
1200 (udev->actconfig->desc.bmAttributes
1201 & USB_CONFIG_ATT_WAKEUP));
1202 else
1203 device_init_wakeup(&udev->dev, 0);
1205 if (udev->state == USB_STATE_SUSPENDED &&
1206 new_state != USB_STATE_SUSPENDED)
1207 udev->active_duration -= jiffies;
1208 else if (new_state == USB_STATE_SUSPENDED &&
1209 udev->state != USB_STATE_SUSPENDED)
1210 udev->active_duration += jiffies;
1211 udev->state = new_state;
1212 } else
1213 recursively_mark_NOTATTACHED(udev);
1214 spin_unlock_irqrestore(&device_state_lock, flags);
1218 * WUSB devices are simple: they have no hubs behind, so the mapping
1219 * device <-> virtual port number becomes 1:1. Why? to simplify the
1220 * life of the device connection logic in
1221 * drivers/usb/wusbcore/devconnect.c. When we do the initial secret
1222 * handshake we need to assign a temporary address in the unauthorized
1223 * space. For simplicity we use the first virtual port number found to
1224 * be free [drivers/usb/wusbcore/devconnect.c:wusbhc_devconnect_ack()]
1225 * and that becomes it's address [X < 128] or its unauthorized address
1226 * [X | 0x80].
1228 * We add 1 as an offset to the one-based USB-stack port number
1229 * (zero-based wusb virtual port index) for two reasons: (a) dev addr
1230 * 0 is reserved by USB for default address; (b) Linux's USB stack
1231 * uses always #1 for the root hub of the controller. So USB stack's
1232 * port #1, which is wusb virtual-port #0 has address #2.
1234 static void choose_address(struct usb_device *udev)
1236 int devnum;
1237 struct usb_bus *bus = udev->bus;
1239 /* If khubd ever becomes multithreaded, this will need a lock */
1240 if (udev->wusb) {
1241 devnum = udev->portnum + 1;
1242 BUG_ON(test_bit(devnum, bus->devmap.devicemap));
1243 } else {
1244 /* Try to allocate the next devnum beginning at
1245 * bus->devnum_next. */
1246 devnum = find_next_zero_bit(bus->devmap.devicemap, 128,
1247 bus->devnum_next);
1248 if (devnum >= 128)
1249 devnum = find_next_zero_bit(bus->devmap.devicemap,
1250 128, 1);
1251 bus->devnum_next = ( devnum >= 127 ? 1 : devnum + 1);
1253 if (devnum < 128) {
1254 set_bit(devnum, bus->devmap.devicemap);
1255 udev->devnum = devnum;
1259 static void release_address(struct usb_device *udev)
1261 if (udev->devnum > 0) {
1262 clear_bit(udev->devnum, udev->bus->devmap.devicemap);
1263 udev->devnum = -1;
1267 static void update_address(struct usb_device *udev, int devnum)
1269 /* The address for a WUSB device is managed by wusbcore. */
1270 if (!udev->wusb)
1271 udev->devnum = devnum;
1274 #ifdef CONFIG_USB_SUSPEND
1276 static void usb_stop_pm(struct usb_device *udev)
1278 /* Synchronize with the ksuspend thread to prevent any more
1279 * autosuspend requests from being submitted, and decrement
1280 * the parent's count of unsuspended children.
1282 usb_pm_lock(udev);
1283 if (udev->parent && !udev->discon_suspended)
1284 usb_autosuspend_device(udev->parent);
1285 usb_pm_unlock(udev);
1287 /* Stop any autosuspend requests already submitted */
1288 cancel_rearming_delayed_work(&udev->autosuspend);
1291 #else
1293 static inline void usb_stop_pm(struct usb_device *udev)
1296 #endif
1299 * usb_disconnect - disconnect a device (usbcore-internal)
1300 * @pdev: pointer to device being disconnected
1301 * Context: !in_interrupt ()
1303 * Something got disconnected. Get rid of it and all of its children.
1305 * If *pdev is a normal device then the parent hub must already be locked.
1306 * If *pdev is a root hub then this routine will acquire the
1307 * usb_bus_list_lock on behalf of the caller.
1309 * Only hub drivers (including virtual root hub drivers for host
1310 * controllers) should ever call this.
1312 * This call is synchronous, and may not be used in an interrupt context.
1314 void usb_disconnect(struct usb_device **pdev)
1316 struct usb_device *udev = *pdev;
1317 int i;
1319 if (!udev) {
1320 pr_debug ("%s nodev\n", __func__);
1321 return;
1324 /* mark the device as inactive, so any further urb submissions for
1325 * this device (and any of its children) will fail immediately.
1326 * this quiesces everyting except pending urbs.
1328 usb_set_device_state(udev, USB_STATE_NOTATTACHED);
1329 dev_info (&udev->dev, "USB disconnect, address %d\n", udev->devnum);
1331 usb_lock_device(udev);
1333 /* Free up all the children before we remove this device */
1334 for (i = 0; i < USB_MAXCHILDREN; i++) {
1335 if (udev->children[i])
1336 usb_disconnect(&udev->children[i]);
1339 /* deallocate hcd/hardware state ... nuking all pending urbs and
1340 * cleaning up all state associated with the current configuration
1341 * so that the hardware is now fully quiesced.
1343 dev_dbg (&udev->dev, "unregistering device\n");
1344 usb_disable_device(udev, 0);
1346 usb_unlock_device(udev);
1348 /* Remove the device-specific files from sysfs. This must be
1349 * done with udev unlocked, because some of the attribute
1350 * routines try to acquire the device lock.
1352 usb_remove_sysfs_dev_files(udev);
1354 /* Unregister the device. The device driver is responsible
1355 * for removing the device files from usbfs and sysfs and for
1356 * de-configuring the device.
1358 device_del(&udev->dev);
1360 /* Free the device number and delete the parent's children[]
1361 * (or root_hub) pointer.
1363 release_address(udev);
1365 /* Avoid races with recursively_mark_NOTATTACHED() */
1366 spin_lock_irq(&device_state_lock);
1367 *pdev = NULL;
1368 spin_unlock_irq(&device_state_lock);
1370 usb_stop_pm(udev);
1372 put_device(&udev->dev);
1375 #ifdef CONFIG_USB_ANNOUNCE_NEW_DEVICES
1376 static void show_string(struct usb_device *udev, char *id, char *string)
1378 if (!string)
1379 return;
1380 dev_printk(KERN_INFO, &udev->dev, "%s: %s\n", id, string);
1383 static void announce_device(struct usb_device *udev)
1385 dev_info(&udev->dev, "New USB device found, idVendor=%04x, idProduct=%04x\n",
1386 le16_to_cpu(udev->descriptor.idVendor),
1387 le16_to_cpu(udev->descriptor.idProduct));
1388 dev_info(&udev->dev, "New USB device strings: Mfr=%d, Product=%d, "
1389 "SerialNumber=%d\n",
1390 udev->descriptor.iManufacturer,
1391 udev->descriptor.iProduct,
1392 udev->descriptor.iSerialNumber);
1393 show_string(udev, "Product", udev->product);
1394 show_string(udev, "Manufacturer", udev->manufacturer);
1395 show_string(udev, "SerialNumber", udev->serial);
1397 #else
1398 static inline void announce_device(struct usb_device *udev) { }
1399 #endif
1401 #ifdef CONFIG_USB_OTG
1402 #include "otg_whitelist.h"
1403 #endif
1406 * usb_configure_device_otg - FIXME (usbcore-internal)
1407 * @udev: newly addressed device (in ADDRESS state)
1409 * Do configuration for On-The-Go devices
1411 static int usb_configure_device_otg(struct usb_device *udev)
1413 int err = 0;
1415 #ifdef CONFIG_USB_OTG
1417 * OTG-aware devices on OTG-capable root hubs may be able to use SRP,
1418 * to wake us after we've powered off VBUS; and HNP, switching roles
1419 * "host" to "peripheral". The OTG descriptor helps figure this out.
1421 if (!udev->bus->is_b_host
1422 && udev->config
1423 && udev->parent == udev->bus->root_hub) {
1424 struct usb_otg_descriptor *desc = 0;
1425 struct usb_bus *bus = udev->bus;
1427 /* descriptor may appear anywhere in config */
1428 if (__usb_get_extra_descriptor (udev->rawdescriptors[0],
1429 le16_to_cpu(udev->config[0].desc.wTotalLength),
1430 USB_DT_OTG, (void **) &desc) == 0) {
1431 if (desc->bmAttributes & USB_OTG_HNP) {
1432 unsigned port1 = udev->portnum;
1434 dev_info(&udev->dev,
1435 "Dual-Role OTG device on %sHNP port\n",
1436 (port1 == bus->otg_port)
1437 ? "" : "non-");
1439 /* enable HNP before suspend, it's simpler */
1440 if (port1 == bus->otg_port)
1441 bus->b_hnp_enable = 1;
1442 err = usb_control_msg(udev,
1443 usb_sndctrlpipe(udev, 0),
1444 USB_REQ_SET_FEATURE, 0,
1445 bus->b_hnp_enable
1446 ? USB_DEVICE_B_HNP_ENABLE
1447 : USB_DEVICE_A_ALT_HNP_SUPPORT,
1448 0, NULL, 0, USB_CTRL_SET_TIMEOUT);
1449 if (err < 0) {
1450 /* OTG MESSAGE: report errors here,
1451 * customize to match your product.
1453 dev_info(&udev->dev,
1454 "can't set HNP mode; %d\n",
1455 err);
1456 bus->b_hnp_enable = 0;
1462 if (!is_targeted(udev)) {
1464 /* Maybe it can talk to us, though we can't talk to it.
1465 * (Includes HNP test device.)
1467 if (udev->bus->b_hnp_enable || udev->bus->is_b_host) {
1468 err = usb_port_suspend(udev);
1469 if (err < 0)
1470 dev_dbg(&udev->dev, "HNP fail, %d\n", err);
1472 err = -ENOTSUPP;
1473 goto fail;
1475 fail:
1476 #endif
1477 return err;
1482 * usb_configure_device - Detect and probe device intfs/otg (usbcore-internal)
1483 * @udev: newly addressed device (in ADDRESS state)
1485 * This is only called by usb_new_device() and usb_authorize_device()
1486 * and FIXME -- all comments that apply to them apply here wrt to
1487 * environment.
1489 * If the device is WUSB and not authorized, we don't attempt to read
1490 * the string descriptors, as they will be errored out by the device
1491 * until it has been authorized.
1493 static int usb_configure_device(struct usb_device *udev)
1495 int err;
1497 if (udev->config == NULL) {
1498 err = usb_get_configuration(udev);
1499 if (err < 0) {
1500 dev_err(&udev->dev, "can't read configurations, error %d\n",
1501 err);
1502 goto fail;
1505 if (udev->wusb == 1 && udev->authorized == 0) {
1506 udev->product = kstrdup("n/a (unauthorized)", GFP_KERNEL);
1507 udev->manufacturer = kstrdup("n/a (unauthorized)", GFP_KERNEL);
1508 udev->serial = kstrdup("n/a (unauthorized)", GFP_KERNEL);
1510 else {
1511 /* read the standard strings and cache them if present */
1512 udev->product = usb_cache_string(udev, udev->descriptor.iProduct);
1513 udev->manufacturer = usb_cache_string(udev,
1514 udev->descriptor.iManufacturer);
1515 udev->serial = usb_cache_string(udev, udev->descriptor.iSerialNumber);
1517 err = usb_configure_device_otg(udev);
1518 fail:
1519 return err;
1524 * usb_new_device - perform initial device setup (usbcore-internal)
1525 * @udev: newly addressed device (in ADDRESS state)
1527 * This is called with devices which have been enumerated, but not yet
1528 * configured. The device descriptor is available, but not descriptors
1529 * for any device configuration. The caller must have locked either
1530 * the parent hub (if udev is a normal device) or else the
1531 * usb_bus_list_lock (if udev is a root hub). The parent's pointer to
1532 * udev has already been installed, but udev is not yet visible through
1533 * sysfs or other filesystem code.
1535 * It will return if the device is configured properly or not. Zero if
1536 * the interface was registered with the driver core; else a negative
1537 * errno value.
1539 * This call is synchronous, and may not be used in an interrupt context.
1541 * Only the hub driver or root-hub registrar should ever call this.
1543 int usb_new_device(struct usb_device *udev)
1545 int err;
1547 usb_detect_quirks(udev); /* Determine quirks */
1548 err = usb_configure_device(udev); /* detect & probe dev/intfs */
1549 if (err < 0)
1550 goto fail;
1551 /* export the usbdev device-node for libusb */
1552 udev->dev.devt = MKDEV(USB_DEVICE_MAJOR,
1553 (((udev->bus->busnum-1) * 128) + (udev->devnum-1)));
1555 /* Increment the parent's count of unsuspended children */
1556 if (udev->parent)
1557 usb_autoresume_device(udev->parent);
1559 /* Register the device. The device driver is responsible
1560 * for adding the device files to sysfs and for configuring
1561 * the device.
1563 err = device_add(&udev->dev);
1564 if (err) {
1565 dev_err(&udev->dev, "can't device_add, error %d\n", err);
1566 goto fail;
1569 /* put device-specific files into sysfs */
1570 usb_create_sysfs_dev_files(udev);
1572 /* Tell the world! */
1573 announce_device(udev);
1574 return err;
1576 fail:
1577 usb_set_device_state(udev, USB_STATE_NOTATTACHED);
1578 return err;
1583 * usb_deauthorize_device - deauthorize a device (usbcore-internal)
1584 * @usb_dev: USB device
1586 * Move the USB device to a very basic state where interfaces are disabled
1587 * and the device is in fact unconfigured and unusable.
1589 * We share a lock (that we have) with device_del(), so we need to
1590 * defer its call.
1592 int usb_deauthorize_device(struct usb_device *usb_dev)
1594 unsigned cnt;
1595 usb_lock_device(usb_dev);
1596 if (usb_dev->authorized == 0)
1597 goto out_unauthorized;
1598 usb_dev->authorized = 0;
1599 usb_set_configuration(usb_dev, -1);
1600 usb_dev->product = kstrdup("n/a (unauthorized)", GFP_KERNEL);
1601 usb_dev->manufacturer = kstrdup("n/a (unauthorized)", GFP_KERNEL);
1602 usb_dev->serial = kstrdup("n/a (unauthorized)", GFP_KERNEL);
1603 kfree(usb_dev->config);
1604 usb_dev->config = NULL;
1605 for (cnt = 0; cnt < usb_dev->descriptor.bNumConfigurations; cnt++)
1606 kfree(usb_dev->rawdescriptors[cnt]);
1607 usb_dev->descriptor.bNumConfigurations = 0;
1608 kfree(usb_dev->rawdescriptors);
1609 out_unauthorized:
1610 usb_unlock_device(usb_dev);
1611 return 0;
1615 int usb_authorize_device(struct usb_device *usb_dev)
1617 int result = 0, c;
1618 usb_lock_device(usb_dev);
1619 if (usb_dev->authorized == 1)
1620 goto out_authorized;
1621 kfree(usb_dev->product);
1622 usb_dev->product = NULL;
1623 kfree(usb_dev->manufacturer);
1624 usb_dev->manufacturer = NULL;
1625 kfree(usb_dev->serial);
1626 usb_dev->serial = NULL;
1627 result = usb_autoresume_device(usb_dev);
1628 if (result < 0) {
1629 dev_err(&usb_dev->dev,
1630 "can't autoresume for authorization: %d\n", result);
1631 goto error_autoresume;
1633 result = usb_get_device_descriptor(usb_dev, sizeof(usb_dev->descriptor));
1634 if (result < 0) {
1635 dev_err(&usb_dev->dev, "can't re-read device descriptor for "
1636 "authorization: %d\n", result);
1637 goto error_device_descriptor;
1639 usb_dev->authorized = 1;
1640 result = usb_configure_device(usb_dev);
1641 if (result < 0)
1642 goto error_configure;
1643 /* Choose and set the configuration. This registers the interfaces
1644 * with the driver core and lets interface drivers bind to them.
1646 c = usb_choose_configuration(usb_dev);
1647 if (c >= 0) {
1648 result = usb_set_configuration(usb_dev, c);
1649 if (result) {
1650 dev_err(&usb_dev->dev,
1651 "can't set config #%d, error %d\n", c, result);
1652 /* This need not be fatal. The user can try to
1653 * set other configurations. */
1656 dev_info(&usb_dev->dev, "authorized to connect\n");
1657 error_configure:
1658 error_device_descriptor:
1659 error_autoresume:
1660 out_authorized:
1661 usb_unlock_device(usb_dev); // complements locktree
1662 return result;
1666 /* Returns 1 if @hub is a WUSB root hub, 0 otherwise */
1667 static unsigned hub_is_wusb(struct usb_hub *hub)
1669 struct usb_hcd *hcd;
1670 if (hub->hdev->parent != NULL) /* not a root hub? */
1671 return 0;
1672 hcd = container_of(hub->hdev->bus, struct usb_hcd, self);
1673 return hcd->wireless;
1677 #define PORT_RESET_TRIES 5
1678 #define SET_ADDRESS_TRIES 2
1679 #define GET_DESCRIPTOR_TRIES 2
1680 #define SET_CONFIG_TRIES (2 * (use_both_schemes + 1))
1681 #define USE_NEW_SCHEME(i) ((i) / 2 == old_scheme_first)
1683 #define HUB_ROOT_RESET_TIME 50 /* times are in msec */
1684 #define HUB_SHORT_RESET_TIME 10
1685 #define HUB_LONG_RESET_TIME 200
1686 #define HUB_RESET_TIMEOUT 500
1688 static int hub_port_wait_reset(struct usb_hub *hub, int port1,
1689 struct usb_device *udev, unsigned int delay)
1691 int delay_time, ret;
1692 u16 portstatus;
1693 u16 portchange;
1695 for (delay_time = 0;
1696 delay_time < HUB_RESET_TIMEOUT;
1697 delay_time += delay) {
1698 /* wait to give the device a chance to reset */
1699 msleep(delay);
1701 /* read and decode port status */
1702 ret = hub_port_status(hub, port1, &portstatus, &portchange);
1703 if (ret < 0)
1704 return ret;
1706 /* Device went away? */
1707 if (!(portstatus & USB_PORT_STAT_CONNECTION))
1708 return -ENOTCONN;
1710 /* bomb out completely if the connection bounced */
1711 if ((portchange & USB_PORT_STAT_C_CONNECTION))
1712 return -ENOTCONN;
1714 /* if we`ve finished resetting, then break out of the loop */
1715 if (!(portstatus & USB_PORT_STAT_RESET) &&
1716 (portstatus & USB_PORT_STAT_ENABLE)) {
1717 if (hub_is_wusb(hub))
1718 udev->speed = USB_SPEED_VARIABLE;
1719 else if (portstatus & USB_PORT_STAT_HIGH_SPEED)
1720 udev->speed = USB_SPEED_HIGH;
1721 else if (portstatus & USB_PORT_STAT_LOW_SPEED)
1722 udev->speed = USB_SPEED_LOW;
1723 else
1724 udev->speed = USB_SPEED_FULL;
1725 return 0;
1728 /* switch to the long delay after two short delay failures */
1729 if (delay_time >= 2 * HUB_SHORT_RESET_TIME)
1730 delay = HUB_LONG_RESET_TIME;
1732 dev_dbg (hub->intfdev,
1733 "port %d not reset yet, waiting %dms\n",
1734 port1, delay);
1737 return -EBUSY;
1740 static int hub_port_reset(struct usb_hub *hub, int port1,
1741 struct usb_device *udev, unsigned int delay)
1743 int i, status;
1745 /* Block EHCI CF initialization during the port reset.
1746 * Some companion controllers don't like it when they mix.
1748 down_read(&ehci_cf_port_reset_rwsem);
1750 /* Reset the port */
1751 for (i = 0; i < PORT_RESET_TRIES; i++) {
1752 status = set_port_feature(hub->hdev,
1753 port1, USB_PORT_FEAT_RESET);
1754 if (status)
1755 dev_err(hub->intfdev,
1756 "cannot reset port %d (err = %d)\n",
1757 port1, status);
1758 else {
1759 status = hub_port_wait_reset(hub, port1, udev, delay);
1760 if (status && status != -ENOTCONN)
1761 dev_dbg(hub->intfdev,
1762 "port_wait_reset: err = %d\n",
1763 status);
1766 /* return on disconnect or reset */
1767 switch (status) {
1768 case 0:
1769 /* TRSTRCY = 10 ms; plus some extra */
1770 msleep(10 + 40);
1771 update_address(udev, 0);
1772 /* FALL THROUGH */
1773 case -ENOTCONN:
1774 case -ENODEV:
1775 clear_port_feature(hub->hdev,
1776 port1, USB_PORT_FEAT_C_RESET);
1777 /* FIXME need disconnect() for NOTATTACHED device */
1778 usb_set_device_state(udev, status
1779 ? USB_STATE_NOTATTACHED
1780 : USB_STATE_DEFAULT);
1781 goto done;
1784 dev_dbg (hub->intfdev,
1785 "port %d not enabled, trying reset again...\n",
1786 port1);
1787 delay = HUB_LONG_RESET_TIME;
1790 dev_err (hub->intfdev,
1791 "Cannot enable port %i. Maybe the USB cable is bad?\n",
1792 port1);
1794 done:
1795 up_read(&ehci_cf_port_reset_rwsem);
1796 return status;
1799 #ifdef CONFIG_PM
1801 #define MASK_BITS (USB_PORT_STAT_POWER | USB_PORT_STAT_CONNECTION | \
1802 USB_PORT_STAT_SUSPEND)
1803 #define WANT_BITS (USB_PORT_STAT_POWER | USB_PORT_STAT_CONNECTION)
1805 /* Determine whether the device on a port is ready for a normal resume,
1806 * is ready for a reset-resume, or should be disconnected.
1808 static int check_port_resume_type(struct usb_device *udev,
1809 struct usb_hub *hub, int port1,
1810 int status, unsigned portchange, unsigned portstatus)
1812 /* Is the device still present? */
1813 if (status || (portstatus & MASK_BITS) != WANT_BITS) {
1814 if (status >= 0)
1815 status = -ENODEV;
1818 /* Can't do a normal resume if the port isn't enabled */
1819 else if (!(portstatus & USB_PORT_STAT_ENABLE) && !udev->reset_resume)
1820 status = -ENODEV;
1822 if (status) {
1823 dev_dbg(hub->intfdev,
1824 "port %d status %04x.%04x after resume, %d\n",
1825 port1, portchange, portstatus, status);
1826 } else if (udev->reset_resume) {
1828 /* Late port handoff can set status-change bits */
1829 if (portchange & USB_PORT_STAT_C_CONNECTION)
1830 clear_port_feature(hub->hdev, port1,
1831 USB_PORT_FEAT_C_CONNECTION);
1832 if (portchange & USB_PORT_STAT_C_ENABLE)
1833 clear_port_feature(hub->hdev, port1,
1834 USB_PORT_FEAT_C_ENABLE);
1837 return status;
1840 #ifdef CONFIG_USB_SUSPEND
1843 * usb_port_suspend - suspend a usb device's upstream port
1844 * @udev: device that's no longer in active use, not a root hub
1845 * Context: must be able to sleep; device not locked; pm locks held
1847 * Suspends a USB device that isn't in active use, conserving power.
1848 * Devices may wake out of a suspend, if anything important happens,
1849 * using the remote wakeup mechanism. They may also be taken out of
1850 * suspend by the host, using usb_port_resume(). It's also routine
1851 * to disconnect devices while they are suspended.
1853 * This only affects the USB hardware for a device; its interfaces
1854 * (and, for hubs, child devices) must already have been suspended.
1856 * Selective port suspend reduces power; most suspended devices draw
1857 * less than 500 uA. It's also used in OTG, along with remote wakeup.
1858 * All devices below the suspended port are also suspended.
1860 * Devices leave suspend state when the host wakes them up. Some devices
1861 * also support "remote wakeup", where the device can activate the USB
1862 * tree above them to deliver data, such as a keypress or packet. In
1863 * some cases, this wakes the USB host.
1865 * Suspending OTG devices may trigger HNP, if that's been enabled
1866 * between a pair of dual-role devices. That will change roles, such
1867 * as from A-Host to A-Peripheral or from B-Host back to B-Peripheral.
1869 * Devices on USB hub ports have only one "suspend" state, corresponding
1870 * to ACPI D2, "may cause the device to lose some context".
1871 * State transitions include:
1873 * - suspend, resume ... when the VBUS power link stays live
1874 * - suspend, disconnect ... VBUS lost
1876 * Once VBUS drop breaks the circuit, the port it's using has to go through
1877 * normal re-enumeration procedures, starting with enabling VBUS power.
1878 * Other than re-initializing the hub (plug/unplug, except for root hubs),
1879 * Linux (2.6) currently has NO mechanisms to initiate that: no khubd
1880 * timer, no SRP, no requests through sysfs.
1882 * If CONFIG_USB_SUSPEND isn't enabled, devices only really suspend when
1883 * the root hub for their bus goes into global suspend ... so we don't
1884 * (falsely) update the device power state to say it suspended.
1886 * Returns 0 on success, else negative errno.
1888 int usb_port_suspend(struct usb_device *udev)
1890 struct usb_hub *hub = hdev_to_hub(udev->parent);
1891 int port1 = udev->portnum;
1892 int status;
1894 // dev_dbg(hub->intfdev, "suspend port %d\n", port1);
1896 /* enable remote wakeup when appropriate; this lets the device
1897 * wake up the upstream hub (including maybe the root hub).
1899 * NOTE: OTG devices may issue remote wakeup (or SRP) even when
1900 * we don't explicitly enable it here.
1902 if (udev->do_remote_wakeup) {
1903 status = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
1904 USB_REQ_SET_FEATURE, USB_RECIP_DEVICE,
1905 USB_DEVICE_REMOTE_WAKEUP, 0,
1906 NULL, 0,
1907 USB_CTRL_SET_TIMEOUT);
1908 if (status)
1909 dev_dbg(&udev->dev, "won't remote wakeup, status %d\n",
1910 status);
1913 /* see 7.1.7.6 */
1914 status = set_port_feature(hub->hdev, port1, USB_PORT_FEAT_SUSPEND);
1915 if (status) {
1916 dev_dbg(hub->intfdev, "can't suspend port %d, status %d\n",
1917 port1, status);
1918 /* paranoia: "should not happen" */
1919 (void) usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
1920 USB_REQ_CLEAR_FEATURE, USB_RECIP_DEVICE,
1921 USB_DEVICE_REMOTE_WAKEUP, 0,
1922 NULL, 0,
1923 USB_CTRL_SET_TIMEOUT);
1924 } else {
1925 /* device has up to 10 msec to fully suspend */
1926 dev_dbg(&udev->dev, "usb %ssuspend\n",
1927 udev->auto_pm ? "auto-" : "");
1928 usb_set_device_state(udev, USB_STATE_SUSPENDED);
1929 msleep(10);
1931 return status;
1935 * If the USB "suspend" state is in use (rather than "global suspend"),
1936 * many devices will be individually taken out of suspend state using
1937 * special "resume" signaling. This routine kicks in shortly after
1938 * hardware resume signaling is finished, either because of selective
1939 * resume (by host) or remote wakeup (by device) ... now see what changed
1940 * in the tree that's rooted at this device.
1942 * If @udev->reset_resume is set then the device is reset before the
1943 * status check is done.
1945 static int finish_port_resume(struct usb_device *udev)
1947 int status = 0;
1948 u16 devstatus;
1950 /* caller owns the udev device lock */
1951 dev_dbg(&udev->dev, "finish %sresume\n",
1952 udev->reset_resume ? "reset-" : "");
1954 /* usb ch9 identifies four variants of SUSPENDED, based on what
1955 * state the device resumes to. Linux currently won't see the
1956 * first two on the host side; they'd be inside hub_port_init()
1957 * during many timeouts, but khubd can't suspend until later.
1959 usb_set_device_state(udev, udev->actconfig
1960 ? USB_STATE_CONFIGURED
1961 : USB_STATE_ADDRESS);
1963 /* 10.5.4.5 says not to reset a suspended port if the attached
1964 * device is enabled for remote wakeup. Hence the reset
1965 * operation is carried out here, after the port has been
1966 * resumed.
1968 if (udev->reset_resume)
1969 status = usb_reset_device(udev);
1971 /* 10.5.4.5 says be sure devices in the tree are still there.
1972 * For now let's assume the device didn't go crazy on resume,
1973 * and device drivers will know about any resume quirks.
1975 if (status == 0) {
1976 devstatus = 0;
1977 status = usb_get_status(udev, USB_RECIP_DEVICE, 0, &devstatus);
1978 if (status >= 0)
1979 status = (status > 0 ? 0 : -ENODEV);
1982 if (status) {
1983 dev_dbg(&udev->dev, "gone after usb resume? status %d\n",
1984 status);
1985 } else if (udev->actconfig) {
1986 le16_to_cpus(&devstatus);
1987 if (devstatus & (1 << USB_DEVICE_REMOTE_WAKEUP)) {
1988 status = usb_control_msg(udev,
1989 usb_sndctrlpipe(udev, 0),
1990 USB_REQ_CLEAR_FEATURE,
1991 USB_RECIP_DEVICE,
1992 USB_DEVICE_REMOTE_WAKEUP, 0,
1993 NULL, 0,
1994 USB_CTRL_SET_TIMEOUT);
1995 if (status)
1996 dev_dbg(&udev->dev, "disable remote "
1997 "wakeup, status %d\n", status);
1999 status = 0;
2001 return status;
2005 * usb_port_resume - re-activate a suspended usb device's upstream port
2006 * @udev: device to re-activate, not a root hub
2007 * Context: must be able to sleep; device not locked; pm locks held
2009 * This will re-activate the suspended device, increasing power usage
2010 * while letting drivers communicate again with its endpoints.
2011 * USB resume explicitly guarantees that the power session between
2012 * the host and the device is the same as it was when the device
2013 * suspended.
2015 * If @udev->reset_resume is set then this routine won't check that the
2016 * port is still enabled. Furthermore, finish_port_resume() above will
2017 * reset @udev. The end result is that a broken power session can be
2018 * recovered and @udev will appear to persist across a loss of VBUS power.
2020 * For example, if a host controller doesn't maintain VBUS suspend current
2021 * during a system sleep or is reset when the system wakes up, all the USB
2022 * power sessions below it will be broken. This is especially troublesome
2023 * for mass-storage devices containing mounted filesystems, since the
2024 * device will appear to have disconnected and all the memory mappings
2025 * to it will be lost. Using the USB_PERSIST facility, the device can be
2026 * made to appear as if it had not disconnected.
2028 * This facility can be dangerous. Although usb_reset_device() makes
2029 * every effort to insure that the same device is present after the
2030 * reset as before, it cannot provide a 100% guarantee. Furthermore it's
2031 * quite possible for a device to remain unaltered but its media to be
2032 * changed. If the user replaces a flash memory card while the system is
2033 * asleep, he will have only himself to blame when the filesystem on the
2034 * new card is corrupted and the system crashes.
2036 * Returns 0 on success, else negative errno.
2038 int usb_port_resume(struct usb_device *udev)
2040 struct usb_hub *hub = hdev_to_hub(udev->parent);
2041 int port1 = udev->portnum;
2042 int status;
2043 u16 portchange, portstatus;
2045 /* Skip the initial Clear-Suspend step for a remote wakeup */
2046 status = hub_port_status(hub, port1, &portstatus, &portchange);
2047 if (status == 0 && !(portstatus & USB_PORT_STAT_SUSPEND))
2048 goto SuspendCleared;
2050 // dev_dbg(hub->intfdev, "resume port %d\n", port1);
2052 set_bit(port1, hub->busy_bits);
2054 /* see 7.1.7.7; affects power usage, but not budgeting */
2055 status = clear_port_feature(hub->hdev,
2056 port1, USB_PORT_FEAT_SUSPEND);
2057 if (status) {
2058 dev_dbg(hub->intfdev, "can't resume port %d, status %d\n",
2059 port1, status);
2060 } else {
2061 /* drive resume for at least 20 msec */
2062 dev_dbg(&udev->dev, "usb %sresume\n",
2063 udev->auto_pm ? "auto-" : "");
2064 msleep(25);
2066 /* Virtual root hubs can trigger on GET_PORT_STATUS to
2067 * stop resume signaling. Then finish the resume
2068 * sequence.
2070 status = hub_port_status(hub, port1, &portstatus, &portchange);
2072 /* TRSMRCY = 10 msec */
2073 msleep(10);
2076 SuspendCleared:
2077 if (status == 0) {
2078 if (portchange & USB_PORT_STAT_C_SUSPEND)
2079 clear_port_feature(hub->hdev, port1,
2080 USB_PORT_FEAT_C_SUSPEND);
2083 clear_bit(port1, hub->busy_bits);
2084 if (!hub->hdev->parent && !hub->busy_bits[0])
2085 usb_enable_root_hub_irq(hub->hdev->bus);
2087 status = check_port_resume_type(udev,
2088 hub, port1, status, portchange, portstatus);
2089 if (status == 0)
2090 status = finish_port_resume(udev);
2091 if (status < 0) {
2092 dev_dbg(&udev->dev, "can't resume, status %d\n", status);
2093 hub_port_logical_disconnect(hub, port1);
2095 return status;
2098 /* caller has locked udev */
2099 static int remote_wakeup(struct usb_device *udev)
2101 int status = 0;
2103 if (udev->state == USB_STATE_SUSPENDED) {
2104 dev_dbg(&udev->dev, "usb %sresume\n", "wakeup-");
2105 usb_mark_last_busy(udev);
2106 status = usb_external_resume_device(udev);
2108 return status;
2111 #else /* CONFIG_USB_SUSPEND */
2113 /* When CONFIG_USB_SUSPEND isn't set, we never suspend or resume any ports. */
2115 int usb_port_suspend(struct usb_device *udev)
2117 return 0;
2120 /* However we may need to do a reset-resume */
2122 int usb_port_resume(struct usb_device *udev)
2124 struct usb_hub *hub = hdev_to_hub(udev->parent);
2125 int port1 = udev->portnum;
2126 int status;
2127 u16 portchange, portstatus;
2129 status = hub_port_status(hub, port1, &portstatus, &portchange);
2130 status = check_port_resume_type(udev,
2131 hub, port1, status, portchange, portstatus);
2133 if (status) {
2134 dev_dbg(&udev->dev, "can't resume, status %d\n", status);
2135 hub_port_logical_disconnect(hub, port1);
2136 } else if (udev->reset_resume) {
2137 dev_dbg(&udev->dev, "reset-resume\n");
2138 status = usb_reset_device(udev);
2140 return status;
2143 static inline int remote_wakeup(struct usb_device *udev)
2145 return 0;
2148 #endif
2150 static int hub_suspend(struct usb_interface *intf, pm_message_t msg)
2152 struct usb_hub *hub = usb_get_intfdata (intf);
2153 struct usb_device *hdev = hub->hdev;
2154 unsigned port1;
2156 /* fail if children aren't already suspended */
2157 for (port1 = 1; port1 <= hdev->maxchild; port1++) {
2158 struct usb_device *udev;
2160 udev = hdev->children [port1-1];
2161 if (udev && udev->can_submit) {
2162 if (!hdev->auto_pm)
2163 dev_dbg(&intf->dev, "port %d nyet suspended\n",
2164 port1);
2165 return -EBUSY;
2169 dev_dbg(&intf->dev, "%s\n", __func__);
2171 /* stop khubd and related activity */
2172 hub_quiesce(hub);
2173 return 0;
2176 static int hub_resume(struct usb_interface *intf)
2178 struct usb_hub *hub = usb_get_intfdata(intf);
2180 dev_dbg(&intf->dev, "%s\n", __func__);
2181 hub_restart(hub, HUB_RESUME);
2182 return 0;
2185 static int hub_reset_resume(struct usb_interface *intf)
2187 struct usb_hub *hub = usb_get_intfdata(intf);
2189 dev_dbg(&intf->dev, "%s\n", __func__);
2190 hub_power_on(hub);
2191 hub_restart(hub, HUB_RESET_RESUME);
2192 return 0;
2196 * usb_root_hub_lost_power - called by HCD if the root hub lost Vbus power
2197 * @rhdev: struct usb_device for the root hub
2199 * The USB host controller driver calls this function when its root hub
2200 * is resumed and Vbus power has been interrupted or the controller
2201 * has been reset. The routine marks @rhdev as having lost power.
2202 * When the hub driver is resumed it will take notice and carry out
2203 * power-session recovery for all the "USB-PERSIST"-enabled child devices;
2204 * the others will be disconnected.
2206 void usb_root_hub_lost_power(struct usb_device *rhdev)
2208 dev_warn(&rhdev->dev, "root hub lost power or was reset\n");
2209 rhdev->reset_resume = 1;
2211 EXPORT_SYMBOL_GPL(usb_root_hub_lost_power);
2213 #else /* CONFIG_PM */
2215 static inline int remote_wakeup(struct usb_device *udev)
2217 return 0;
2220 #define hub_suspend NULL
2221 #define hub_resume NULL
2222 #define hub_reset_resume NULL
2223 #endif
2226 /* USB 2.0 spec, 7.1.7.3 / fig 7-29:
2228 * Between connect detection and reset signaling there must be a delay
2229 * of 100ms at least for debounce and power-settling. The corresponding
2230 * timer shall restart whenever the downstream port detects a disconnect.
2232 * Apparently there are some bluetooth and irda-dongles and a number of
2233 * low-speed devices for which this debounce period may last over a second.
2234 * Not covered by the spec - but easy to deal with.
2236 * This implementation uses a 1500ms total debounce timeout; if the
2237 * connection isn't stable by then it returns -ETIMEDOUT. It checks
2238 * every 25ms for transient disconnects. When the port status has been
2239 * unchanged for 100ms it returns the port status.
2241 static int hub_port_debounce(struct usb_hub *hub, int port1)
2243 int ret;
2244 int total_time, stable_time = 0;
2245 u16 portchange, portstatus;
2246 unsigned connection = 0xffff;
2248 for (total_time = 0; ; total_time += HUB_DEBOUNCE_STEP) {
2249 ret = hub_port_status(hub, port1, &portstatus, &portchange);
2250 if (ret < 0)
2251 return ret;
2253 if (!(portchange & USB_PORT_STAT_C_CONNECTION) &&
2254 (portstatus & USB_PORT_STAT_CONNECTION) == connection) {
2255 stable_time += HUB_DEBOUNCE_STEP;
2256 if (stable_time >= HUB_DEBOUNCE_STABLE)
2257 break;
2258 } else {
2259 stable_time = 0;
2260 connection = portstatus & USB_PORT_STAT_CONNECTION;
2263 if (portchange & USB_PORT_STAT_C_CONNECTION) {
2264 clear_port_feature(hub->hdev, port1,
2265 USB_PORT_FEAT_C_CONNECTION);
2268 if (total_time >= HUB_DEBOUNCE_TIMEOUT)
2269 break;
2270 msleep(HUB_DEBOUNCE_STEP);
2273 dev_dbg (hub->intfdev,
2274 "debounce: port %d: total %dms stable %dms status 0x%x\n",
2275 port1, total_time, stable_time, portstatus);
2277 if (stable_time < HUB_DEBOUNCE_STABLE)
2278 return -ETIMEDOUT;
2279 return portstatus;
2282 void usb_ep0_reinit(struct usb_device *udev)
2284 usb_disable_endpoint(udev, 0 + USB_DIR_IN);
2285 usb_disable_endpoint(udev, 0 + USB_DIR_OUT);
2286 usb_enable_endpoint(udev, &udev->ep0);
2288 EXPORT_SYMBOL_GPL(usb_ep0_reinit);
2290 #define usb_sndaddr0pipe() (PIPE_CONTROL << 30)
2291 #define usb_rcvaddr0pipe() ((PIPE_CONTROL << 30) | USB_DIR_IN)
2293 static int hub_set_address(struct usb_device *udev, int devnum)
2295 int retval;
2297 if (devnum <= 1)
2298 return -EINVAL;
2299 if (udev->state == USB_STATE_ADDRESS)
2300 return 0;
2301 if (udev->state != USB_STATE_DEFAULT)
2302 return -EINVAL;
2303 retval = usb_control_msg(udev, usb_sndaddr0pipe(),
2304 USB_REQ_SET_ADDRESS, 0, devnum, 0,
2305 NULL, 0, USB_CTRL_SET_TIMEOUT);
2306 if (retval == 0) {
2307 /* Device now using proper address. */
2308 update_address(udev, devnum);
2309 usb_set_device_state(udev, USB_STATE_ADDRESS);
2310 usb_ep0_reinit(udev);
2312 return retval;
2315 /* Reset device, (re)assign address, get device descriptor.
2316 * Device connection must be stable, no more debouncing needed.
2317 * Returns device in USB_STATE_ADDRESS, except on error.
2319 * If this is called for an already-existing device (as part of
2320 * usb_reset_device), the caller must own the device lock. For a
2321 * newly detected device that is not accessible through any global
2322 * pointers, it's not necessary to lock the device.
2324 static int
2325 hub_port_init (struct usb_hub *hub, struct usb_device *udev, int port1,
2326 int retry_counter)
2328 static DEFINE_MUTEX(usb_address0_mutex);
2330 struct usb_device *hdev = hub->hdev;
2331 int i, j, retval;
2332 unsigned delay = HUB_SHORT_RESET_TIME;
2333 enum usb_device_speed oldspeed = udev->speed;
2334 char *speed, *type;
2335 int devnum = udev->devnum;
2337 /* root hub ports have a slightly longer reset period
2338 * (from USB 2.0 spec, section 7.1.7.5)
2340 if (!hdev->parent) {
2341 delay = HUB_ROOT_RESET_TIME;
2342 if (port1 == hdev->bus->otg_port)
2343 hdev->bus->b_hnp_enable = 0;
2346 /* Some low speed devices have problems with the quick delay, so */
2347 /* be a bit pessimistic with those devices. RHbug #23670 */
2348 if (oldspeed == USB_SPEED_LOW)
2349 delay = HUB_LONG_RESET_TIME;
2351 mutex_lock(&usb_address0_mutex);
2353 /* Reset the device; full speed may morph to high speed */
2354 retval = hub_port_reset(hub, port1, udev, delay);
2355 if (retval < 0) /* error or disconnect */
2356 goto fail;
2357 /* success, speed is known */
2358 retval = -ENODEV;
2360 if (oldspeed != USB_SPEED_UNKNOWN && oldspeed != udev->speed) {
2361 dev_dbg(&udev->dev, "device reset changed speed!\n");
2362 goto fail;
2364 oldspeed = udev->speed;
2366 /* USB 2.0 section 5.5.3 talks about ep0 maxpacket ...
2367 * it's fixed size except for full speed devices.
2368 * For Wireless USB devices, ep0 max packet is always 512 (tho
2369 * reported as 0xff in the device descriptor). WUSB1.0[4.8.1].
2371 switch (udev->speed) {
2372 case USB_SPEED_VARIABLE: /* fixed at 512 */
2373 udev->ep0.desc.wMaxPacketSize = __constant_cpu_to_le16(512);
2374 break;
2375 case USB_SPEED_HIGH: /* fixed at 64 */
2376 udev->ep0.desc.wMaxPacketSize = __constant_cpu_to_le16(64);
2377 break;
2378 case USB_SPEED_FULL: /* 8, 16, 32, or 64 */
2379 /* to determine the ep0 maxpacket size, try to read
2380 * the device descriptor to get bMaxPacketSize0 and
2381 * then correct our initial guess.
2383 udev->ep0.desc.wMaxPacketSize = __constant_cpu_to_le16(64);
2384 break;
2385 case USB_SPEED_LOW: /* fixed at 8 */
2386 udev->ep0.desc.wMaxPacketSize = __constant_cpu_to_le16(8);
2387 break;
2388 default:
2389 goto fail;
2392 type = "";
2393 switch (udev->speed) {
2394 case USB_SPEED_LOW: speed = "low"; break;
2395 case USB_SPEED_FULL: speed = "full"; break;
2396 case USB_SPEED_HIGH: speed = "high"; break;
2397 case USB_SPEED_VARIABLE:
2398 speed = "variable";
2399 type = "Wireless ";
2400 break;
2401 default: speed = "?"; break;
2403 dev_info (&udev->dev,
2404 "%s %s speed %sUSB device using %s and address %d\n",
2405 (udev->config) ? "reset" : "new", speed, type,
2406 udev->bus->controller->driver->name, devnum);
2408 /* Set up TT records, if needed */
2409 if (hdev->tt) {
2410 udev->tt = hdev->tt;
2411 udev->ttport = hdev->ttport;
2412 } else if (udev->speed != USB_SPEED_HIGH
2413 && hdev->speed == USB_SPEED_HIGH) {
2414 udev->tt = &hub->tt;
2415 udev->ttport = port1;
2418 /* Why interleave GET_DESCRIPTOR and SET_ADDRESS this way?
2419 * Because device hardware and firmware is sometimes buggy in
2420 * this area, and this is how Linux has done it for ages.
2421 * Change it cautiously.
2423 * NOTE: If USE_NEW_SCHEME() is true we will start by issuing
2424 * a 64-byte GET_DESCRIPTOR request. This is what Windows does,
2425 * so it may help with some non-standards-compliant devices.
2426 * Otherwise we start with SET_ADDRESS and then try to read the
2427 * first 8 bytes of the device descriptor to get the ep0 maxpacket
2428 * value.
2430 for (i = 0; i < GET_DESCRIPTOR_TRIES; (++i, msleep(100))) {
2431 if (USE_NEW_SCHEME(retry_counter)) {
2432 struct usb_device_descriptor *buf;
2433 int r = 0;
2435 #define GET_DESCRIPTOR_BUFSIZE 64
2436 buf = kmalloc(GET_DESCRIPTOR_BUFSIZE, GFP_NOIO);
2437 if (!buf) {
2438 retval = -ENOMEM;
2439 continue;
2442 /* Retry on all errors; some devices are flakey.
2443 * 255 is for WUSB devices, we actually need to use
2444 * 512 (WUSB1.0[4.8.1]).
2446 for (j = 0; j < 3; ++j) {
2447 buf->bMaxPacketSize0 = 0;
2448 r = usb_control_msg(udev, usb_rcvaddr0pipe(),
2449 USB_REQ_GET_DESCRIPTOR, USB_DIR_IN,
2450 USB_DT_DEVICE << 8, 0,
2451 buf, GET_DESCRIPTOR_BUFSIZE,
2452 USB_CTRL_GET_TIMEOUT);
2453 switch (buf->bMaxPacketSize0) {
2454 case 8: case 16: case 32: case 64: case 255:
2455 if (buf->bDescriptorType ==
2456 USB_DT_DEVICE) {
2457 r = 0;
2458 break;
2460 /* FALL THROUGH */
2461 default:
2462 if (r == 0)
2463 r = -EPROTO;
2464 break;
2466 if (r == 0)
2467 break;
2469 udev->descriptor.bMaxPacketSize0 =
2470 buf->bMaxPacketSize0;
2471 kfree(buf);
2473 retval = hub_port_reset(hub, port1, udev, delay);
2474 if (retval < 0) /* error or disconnect */
2475 goto fail;
2476 if (oldspeed != udev->speed) {
2477 dev_dbg(&udev->dev,
2478 "device reset changed speed!\n");
2479 retval = -ENODEV;
2480 goto fail;
2482 if (r) {
2483 dev_err(&udev->dev, "device descriptor "
2484 "read/%s, error %d\n",
2485 "64", r);
2486 retval = -EMSGSIZE;
2487 continue;
2489 #undef GET_DESCRIPTOR_BUFSIZE
2493 * If device is WUSB, we already assigned an
2494 * unauthorized address in the Connect Ack sequence;
2495 * authorization will assign the final address.
2497 if (udev->wusb == 0) {
2498 for (j = 0; j < SET_ADDRESS_TRIES; ++j) {
2499 retval = hub_set_address(udev, devnum);
2500 if (retval >= 0)
2501 break;
2502 msleep(200);
2504 if (retval < 0) {
2505 dev_err(&udev->dev,
2506 "device not accepting address %d, error %d\n",
2507 devnum, retval);
2508 goto fail;
2511 /* cope with hardware quirkiness:
2512 * - let SET_ADDRESS settle, some device hardware wants it
2513 * - read ep0 maxpacket even for high and low speed,
2515 msleep(10);
2516 if (USE_NEW_SCHEME(retry_counter))
2517 break;
2520 retval = usb_get_device_descriptor(udev, 8);
2521 if (retval < 8) {
2522 dev_err(&udev->dev, "device descriptor "
2523 "read/%s, error %d\n",
2524 "8", retval);
2525 if (retval >= 0)
2526 retval = -EMSGSIZE;
2527 } else {
2528 retval = 0;
2529 break;
2532 if (retval)
2533 goto fail;
2535 i = udev->descriptor.bMaxPacketSize0 == 0xff? /* wusb device? */
2536 512 : udev->descriptor.bMaxPacketSize0;
2537 if (le16_to_cpu(udev->ep0.desc.wMaxPacketSize) != i) {
2538 if (udev->speed != USB_SPEED_FULL ||
2539 !(i == 8 || i == 16 || i == 32 || i == 64)) {
2540 dev_err(&udev->dev, "ep0 maxpacket = %d\n", i);
2541 retval = -EMSGSIZE;
2542 goto fail;
2544 dev_dbg(&udev->dev, "ep0 maxpacket = %d\n", i);
2545 udev->ep0.desc.wMaxPacketSize = cpu_to_le16(i);
2546 usb_ep0_reinit(udev);
2549 retval = usb_get_device_descriptor(udev, USB_DT_DEVICE_SIZE);
2550 if (retval < (signed)sizeof(udev->descriptor)) {
2551 dev_err(&udev->dev, "device descriptor read/%s, error %d\n",
2552 "all", retval);
2553 if (retval >= 0)
2554 retval = -ENOMSG;
2555 goto fail;
2558 retval = 0;
2560 fail:
2561 if (retval) {
2562 hub_port_disable(hub, port1, 0);
2563 update_address(udev, devnum); /* for disconnect processing */
2565 mutex_unlock(&usb_address0_mutex);
2566 return retval;
2569 static void
2570 check_highspeed (struct usb_hub *hub, struct usb_device *udev, int port1)
2572 struct usb_qualifier_descriptor *qual;
2573 int status;
2575 qual = kmalloc (sizeof *qual, GFP_KERNEL);
2576 if (qual == NULL)
2577 return;
2579 status = usb_get_descriptor (udev, USB_DT_DEVICE_QUALIFIER, 0,
2580 qual, sizeof *qual);
2581 if (status == sizeof *qual) {
2582 dev_info(&udev->dev, "not running at top speed; "
2583 "connect to a high speed hub\n");
2584 /* hub LEDs are probably harder to miss than syslog */
2585 if (hub->has_indicators) {
2586 hub->indicator[port1-1] = INDICATOR_GREEN_BLINK;
2587 schedule_delayed_work (&hub->leds, 0);
2590 kfree(qual);
2593 static unsigned
2594 hub_power_remaining (struct usb_hub *hub)
2596 struct usb_device *hdev = hub->hdev;
2597 int remaining;
2598 int port1;
2600 if (!hub->limited_power)
2601 return 0;
2603 remaining = hdev->bus_mA - hub->descriptor->bHubContrCurrent;
2604 for (port1 = 1; port1 <= hdev->maxchild; ++port1) {
2605 struct usb_device *udev = hdev->children[port1 - 1];
2606 int delta;
2608 if (!udev)
2609 continue;
2611 /* Unconfigured devices may not use more than 100mA,
2612 * or 8mA for OTG ports */
2613 if (udev->actconfig)
2614 delta = udev->actconfig->desc.bMaxPower * 2;
2615 else if (port1 != udev->bus->otg_port || hdev->parent)
2616 delta = 100;
2617 else
2618 delta = 8;
2619 if (delta > hub->mA_per_port)
2620 dev_warn(&udev->dev, "%dmA is over %umA budget "
2621 "for port %d!\n",
2622 delta, hub->mA_per_port, port1);
2623 remaining -= delta;
2625 if (remaining < 0) {
2626 dev_warn(hub->intfdev, "%dmA over power budget!\n",
2627 - remaining);
2628 remaining = 0;
2630 return remaining;
2633 /* Handle physical or logical connection change events.
2634 * This routine is called when:
2635 * a port connection-change occurs;
2636 * a port enable-change occurs (often caused by EMI);
2637 * usb_reset_device() encounters changed descriptors (as from
2638 * a firmware download)
2639 * caller already locked the hub
2641 static void hub_port_connect_change(struct usb_hub *hub, int port1,
2642 u16 portstatus, u16 portchange)
2644 struct usb_device *hdev = hub->hdev;
2645 struct device *hub_dev = hub->intfdev;
2646 struct usb_hcd *hcd = bus_to_hcd(hdev->bus);
2647 unsigned wHubCharacteristics =
2648 le16_to_cpu(hub->descriptor->wHubCharacteristics);
2649 struct usb_device *udev;
2650 int status, i;
2652 dev_dbg (hub_dev,
2653 "port %d, status %04x, change %04x, %s\n",
2654 port1, portstatus, portchange, portspeed (portstatus));
2656 if (hub->has_indicators) {
2657 set_port_led(hub, port1, HUB_LED_AUTO);
2658 hub->indicator[port1-1] = INDICATOR_AUTO;
2661 #ifdef CONFIG_USB_OTG
2662 /* during HNP, don't repeat the debounce */
2663 if (hdev->bus->is_b_host)
2664 portchange &= ~(USB_PORT_STAT_C_CONNECTION |
2665 USB_PORT_STAT_C_ENABLE);
2666 #endif
2668 /* Try to use the debounce delay for protection against
2669 * port-enable changes caused, for example, by EMI.
2671 if (portchange & (USB_PORT_STAT_C_CONNECTION |
2672 USB_PORT_STAT_C_ENABLE)) {
2673 status = hub_port_debounce(hub, port1);
2674 if (status < 0) {
2675 if (printk_ratelimit())
2676 dev_err (hub_dev, "connect-debounce failed, "
2677 "port %d disabled\n", port1);
2678 portstatus &= ~USB_PORT_STAT_CONNECTION;
2679 } else {
2680 portstatus = status;
2684 /* Try to resuscitate an existing device */
2685 udev = hdev->children[port1-1];
2686 if ((portstatus & USB_PORT_STAT_CONNECTION) && udev &&
2687 udev->state != USB_STATE_NOTATTACHED) {
2689 usb_lock_device(udev);
2690 if (portstatus & USB_PORT_STAT_ENABLE) {
2691 status = 0; /* Nothing to do */
2692 } else if (!udev->persist_enabled) {
2693 status = -ENODEV; /* Mustn't resuscitate */
2695 #ifdef CONFIG_USB_SUSPEND
2696 } else if (udev->state == USB_STATE_SUSPENDED) {
2697 /* For a suspended device, treat this as a
2698 * remote wakeup event.
2700 if (udev->do_remote_wakeup)
2701 status = remote_wakeup(udev);
2703 /* Otherwise leave it be; devices can't tell the
2704 * difference between suspended and disabled.
2706 else
2707 status = 0;
2708 #endif
2710 } else {
2711 status = usb_reset_composite_device(udev, NULL);
2713 usb_unlock_device(udev);
2715 if (status == 0) {
2716 clear_bit(port1, hub->change_bits);
2717 return;
2721 /* Disconnect any existing devices under this port */
2722 if (udev)
2723 usb_disconnect(&hdev->children[port1-1]);
2724 clear_bit(port1, hub->change_bits);
2726 /* Return now if debouncing failed or nothing is connected */
2727 if (!(portstatus & USB_PORT_STAT_CONNECTION)) {
2729 /* maybe switch power back on (e.g. root hub was reset) */
2730 if ((wHubCharacteristics & HUB_CHAR_LPSM) < 2
2731 && !(portstatus & (1 << USB_PORT_FEAT_POWER)))
2732 set_port_feature(hdev, port1, USB_PORT_FEAT_POWER);
2734 if (portstatus & USB_PORT_STAT_ENABLE)
2735 goto done;
2736 return;
2739 for (i = 0; i < SET_CONFIG_TRIES; i++) {
2741 /* reallocate for each attempt, since references
2742 * to the previous one can escape in various ways
2744 udev = usb_alloc_dev(hdev, hdev->bus, port1);
2745 if (!udev) {
2746 dev_err (hub_dev,
2747 "couldn't allocate port %d usb_device\n",
2748 port1);
2749 goto done;
2752 usb_set_device_state(udev, USB_STATE_POWERED);
2753 udev->speed = USB_SPEED_UNKNOWN;
2754 udev->bus_mA = hub->mA_per_port;
2755 udev->level = hdev->level + 1;
2756 udev->wusb = hub_is_wusb(hub);
2758 /* set the address */
2759 choose_address(udev);
2760 if (udev->devnum <= 0) {
2761 status = -ENOTCONN; /* Don't retry */
2762 goto loop;
2765 /* reset and get descriptor */
2766 status = hub_port_init(hub, udev, port1, i);
2767 if (status < 0)
2768 goto loop;
2770 /* consecutive bus-powered hubs aren't reliable; they can
2771 * violate the voltage drop budget. if the new child has
2772 * a "powered" LED, users should notice we didn't enable it
2773 * (without reading syslog), even without per-port LEDs
2774 * on the parent.
2776 if (udev->descriptor.bDeviceClass == USB_CLASS_HUB
2777 && udev->bus_mA <= 100) {
2778 u16 devstat;
2780 status = usb_get_status(udev, USB_RECIP_DEVICE, 0,
2781 &devstat);
2782 if (status < 2) {
2783 dev_dbg(&udev->dev, "get status %d ?\n", status);
2784 goto loop_disable;
2786 le16_to_cpus(&devstat);
2787 if ((devstat & (1 << USB_DEVICE_SELF_POWERED)) == 0) {
2788 dev_err(&udev->dev,
2789 "can't connect bus-powered hub "
2790 "to this port\n");
2791 if (hub->has_indicators) {
2792 hub->indicator[port1-1] =
2793 INDICATOR_AMBER_BLINK;
2794 schedule_delayed_work (&hub->leds, 0);
2796 status = -ENOTCONN; /* Don't retry */
2797 goto loop_disable;
2801 /* check for devices running slower than they could */
2802 if (le16_to_cpu(udev->descriptor.bcdUSB) >= 0x0200
2803 && udev->speed == USB_SPEED_FULL
2804 && highspeed_hubs != 0)
2805 check_highspeed (hub, udev, port1);
2807 /* Store the parent's children[] pointer. At this point
2808 * udev becomes globally accessible, although presumably
2809 * no one will look at it until hdev is unlocked.
2811 status = 0;
2813 /* We mustn't add new devices if the parent hub has
2814 * been disconnected; we would race with the
2815 * recursively_mark_NOTATTACHED() routine.
2817 spin_lock_irq(&device_state_lock);
2818 if (hdev->state == USB_STATE_NOTATTACHED)
2819 status = -ENOTCONN;
2820 else
2821 hdev->children[port1-1] = udev;
2822 spin_unlock_irq(&device_state_lock);
2824 /* Run it through the hoops (find a driver, etc) */
2825 if (!status) {
2826 status = usb_new_device(udev);
2827 if (status) {
2828 spin_lock_irq(&device_state_lock);
2829 hdev->children[port1-1] = NULL;
2830 spin_unlock_irq(&device_state_lock);
2834 if (status)
2835 goto loop_disable;
2837 status = hub_power_remaining(hub);
2838 if (status)
2839 dev_dbg(hub_dev, "%dmA power budget left\n", status);
2841 return;
2843 loop_disable:
2844 hub_port_disable(hub, port1, 1);
2845 loop:
2846 usb_ep0_reinit(udev);
2847 release_address(udev);
2848 usb_put_dev(udev);
2849 if ((status == -ENOTCONN) || (status == -ENOTSUPP))
2850 break;
2852 if (hub->hdev->parent ||
2853 !hcd->driver->port_handed_over ||
2854 !(hcd->driver->port_handed_over)(hcd, port1))
2855 dev_err(hub_dev, "unable to enumerate USB device on port %d\n",
2856 port1);
2858 done:
2859 hub_port_disable(hub, port1, 1);
2860 if (hcd->driver->relinquish_port && !hub->hdev->parent)
2861 hcd->driver->relinquish_port(hcd, port1);
2864 static void hub_events(void)
2866 struct list_head *tmp;
2867 struct usb_device *hdev;
2868 struct usb_interface *intf;
2869 struct usb_hub *hub;
2870 struct device *hub_dev;
2871 u16 hubstatus;
2872 u16 hubchange;
2873 u16 portstatus;
2874 u16 portchange;
2875 int i, ret;
2876 int connect_change;
2879 * We restart the list every time to avoid a deadlock with
2880 * deleting hubs downstream from this one. This should be
2881 * safe since we delete the hub from the event list.
2882 * Not the most efficient, but avoids deadlocks.
2884 while (1) {
2886 /* Grab the first entry at the beginning of the list */
2887 spin_lock_irq(&hub_event_lock);
2888 if (list_empty(&hub_event_list)) {
2889 spin_unlock_irq(&hub_event_lock);
2890 break;
2893 tmp = hub_event_list.next;
2894 list_del_init(tmp);
2896 hub = list_entry(tmp, struct usb_hub, event_list);
2897 kref_get(&hub->kref);
2898 spin_unlock_irq(&hub_event_lock);
2900 hdev = hub->hdev;
2901 hub_dev = hub->intfdev;
2902 intf = to_usb_interface(hub_dev);
2903 dev_dbg(hub_dev, "state %d ports %d chg %04x evt %04x\n",
2904 hdev->state, hub->descriptor
2905 ? hub->descriptor->bNbrPorts
2906 : 0,
2907 /* NOTE: expects max 15 ports... */
2908 (u16) hub->change_bits[0],
2909 (u16) hub->event_bits[0]);
2911 /* Lock the device, then check to see if we were
2912 * disconnected while waiting for the lock to succeed. */
2913 usb_lock_device(hdev);
2914 if (unlikely(hub->disconnected))
2915 goto loop;
2917 /* If the hub has died, clean up after it */
2918 if (hdev->state == USB_STATE_NOTATTACHED) {
2919 hub->error = -ENODEV;
2920 hub_stop(hub);
2921 goto loop;
2924 /* Autoresume */
2925 ret = usb_autopm_get_interface(intf);
2926 if (ret) {
2927 dev_dbg(hub_dev, "Can't autoresume: %d\n", ret);
2928 goto loop;
2931 /* If this is an inactive hub, do nothing */
2932 if (hub->quiescing)
2933 goto loop_autopm;
2935 if (hub->error) {
2936 dev_dbg (hub_dev, "resetting for error %d\n",
2937 hub->error);
2939 ret = usb_reset_composite_device(hdev, intf);
2940 if (ret) {
2941 dev_dbg (hub_dev,
2942 "error resetting hub: %d\n", ret);
2943 goto loop_autopm;
2946 hub->nerrors = 0;
2947 hub->error = 0;
2950 /* deal with port status changes */
2951 for (i = 1; i <= hub->descriptor->bNbrPorts; i++) {
2952 if (test_bit(i, hub->busy_bits))
2953 continue;
2954 connect_change = test_bit(i, hub->change_bits);
2955 if (!test_and_clear_bit(i, hub->event_bits) &&
2956 !connect_change)
2957 continue;
2959 ret = hub_port_status(hub, i,
2960 &portstatus, &portchange);
2961 if (ret < 0)
2962 continue;
2964 if (portchange & USB_PORT_STAT_C_CONNECTION) {
2965 clear_port_feature(hdev, i,
2966 USB_PORT_FEAT_C_CONNECTION);
2967 connect_change = 1;
2970 if (portchange & USB_PORT_STAT_C_ENABLE) {
2971 if (!connect_change)
2972 dev_dbg (hub_dev,
2973 "port %d enable change, "
2974 "status %08x\n",
2975 i, portstatus);
2976 clear_port_feature(hdev, i,
2977 USB_PORT_FEAT_C_ENABLE);
2980 * EM interference sometimes causes badly
2981 * shielded USB devices to be shutdown by
2982 * the hub, this hack enables them again.
2983 * Works at least with mouse driver.
2985 if (!(portstatus & USB_PORT_STAT_ENABLE)
2986 && !connect_change
2987 && hdev->children[i-1]) {
2988 dev_err (hub_dev,
2989 "port %i "
2990 "disabled by hub (EMI?), "
2991 "re-enabling...\n",
2993 connect_change = 1;
2997 if (portchange & USB_PORT_STAT_C_SUSPEND) {
2998 struct usb_device *udev;
3000 clear_port_feature(hdev, i,
3001 USB_PORT_FEAT_C_SUSPEND);
3002 udev = hdev->children[i-1];
3003 if (udev) {
3004 usb_lock_device(udev);
3005 ret = remote_wakeup(hdev->
3006 children[i-1]);
3007 usb_unlock_device(udev);
3008 if (ret < 0)
3009 connect_change = 1;
3010 } else {
3011 ret = -ENODEV;
3012 hub_port_disable(hub, i, 1);
3014 dev_dbg (hub_dev,
3015 "resume on port %d, status %d\n",
3016 i, ret);
3019 if (portchange & USB_PORT_STAT_C_OVERCURRENT) {
3020 dev_err (hub_dev,
3021 "over-current change on port %d\n",
3023 clear_port_feature(hdev, i,
3024 USB_PORT_FEAT_C_OVER_CURRENT);
3025 hub_power_on(hub);
3028 if (portchange & USB_PORT_STAT_C_RESET) {
3029 dev_dbg (hub_dev,
3030 "reset change on port %d\n",
3032 clear_port_feature(hdev, i,
3033 USB_PORT_FEAT_C_RESET);
3036 if (connect_change)
3037 hub_port_connect_change(hub, i,
3038 portstatus, portchange);
3039 } /* end for i */
3041 /* deal with hub status changes */
3042 if (test_and_clear_bit(0, hub->event_bits) == 0)
3043 ; /* do nothing */
3044 else if (hub_hub_status(hub, &hubstatus, &hubchange) < 0)
3045 dev_err (hub_dev, "get_hub_status failed\n");
3046 else {
3047 if (hubchange & HUB_CHANGE_LOCAL_POWER) {
3048 dev_dbg (hub_dev, "power change\n");
3049 clear_hub_feature(hdev, C_HUB_LOCAL_POWER);
3050 if (hubstatus & HUB_STATUS_LOCAL_POWER)
3051 /* FIXME: Is this always true? */
3052 hub->limited_power = 1;
3053 else
3054 hub->limited_power = 0;
3056 if (hubchange & HUB_CHANGE_OVERCURRENT) {
3057 dev_dbg (hub_dev, "overcurrent change\n");
3058 msleep(500); /* Cool down */
3059 clear_hub_feature(hdev, C_HUB_OVER_CURRENT);
3060 hub_power_on(hub);
3064 /* If this is a root hub, tell the HCD it's okay to
3065 * re-enable port-change interrupts now. */
3066 if (!hdev->parent && !hub->busy_bits[0])
3067 usb_enable_root_hub_irq(hdev->bus);
3069 loop_autopm:
3070 /* Allow autosuspend if we're not going to run again */
3071 if (list_empty(&hub->event_list))
3072 usb_autopm_enable(intf);
3073 loop:
3074 usb_unlock_device(hdev);
3075 kref_put(&hub->kref, hub_release);
3077 } /* end while (1) */
3080 static int hub_thread(void *__unused)
3082 /* khubd needs to be freezable to avoid intefering with USB-PERSIST
3083 * port handover. Otherwise it might see that a full-speed device
3084 * was gone before the EHCI controller had handed its port over to
3085 * the companion full-speed controller.
3087 set_freezable();
3089 do {
3090 hub_events();
3091 wait_event_freezable(khubd_wait,
3092 !list_empty(&hub_event_list) ||
3093 kthread_should_stop());
3094 } while (!kthread_should_stop() || !list_empty(&hub_event_list));
3096 pr_debug("%s: khubd exiting\n", usbcore_name);
3097 return 0;
3100 static struct usb_device_id hub_id_table [] = {
3101 { .match_flags = USB_DEVICE_ID_MATCH_DEV_CLASS,
3102 .bDeviceClass = USB_CLASS_HUB},
3103 { .match_flags = USB_DEVICE_ID_MATCH_INT_CLASS,
3104 .bInterfaceClass = USB_CLASS_HUB},
3105 { } /* Terminating entry */
3108 MODULE_DEVICE_TABLE (usb, hub_id_table);
3110 static struct usb_driver hub_driver = {
3111 .name = "hub",
3112 .probe = hub_probe,
3113 .disconnect = hub_disconnect,
3114 .suspend = hub_suspend,
3115 .resume = hub_resume,
3116 .reset_resume = hub_reset_resume,
3117 .pre_reset = hub_pre_reset,
3118 .post_reset = hub_post_reset,
3119 .ioctl = hub_ioctl,
3120 .id_table = hub_id_table,
3121 .supports_autosuspend = 1,
3124 int usb_hub_init(void)
3126 if (usb_register(&hub_driver) < 0) {
3127 printk(KERN_ERR "%s: can't register hub driver\n",
3128 usbcore_name);
3129 return -1;
3132 khubd_task = kthread_run(hub_thread, NULL, "khubd");
3133 if (!IS_ERR(khubd_task))
3134 return 0;
3136 /* Fall through if kernel_thread failed */
3137 usb_deregister(&hub_driver);
3138 printk(KERN_ERR "%s: can't start khubd\n", usbcore_name);
3140 return -1;
3143 void usb_hub_cleanup(void)
3145 kthread_stop(khubd_task);
3148 * Hub resources are freed for us by usb_deregister. It calls
3149 * usb_driver_purge on every device which in turn calls that
3150 * devices disconnect function if it is using this driver.
3151 * The hub_disconnect function takes care of releasing the
3152 * individual hub resources. -greg
3154 usb_deregister(&hub_driver);
3155 } /* usb_hub_cleanup() */
3157 static int descriptors_changed(struct usb_device *udev,
3158 struct usb_device_descriptor *old_device_descriptor)
3160 int changed = 0;
3161 unsigned index;
3162 unsigned serial_len = 0;
3163 unsigned len;
3164 unsigned old_length;
3165 int length;
3166 char *buf;
3168 if (memcmp(&udev->descriptor, old_device_descriptor,
3169 sizeof(*old_device_descriptor)) != 0)
3170 return 1;
3172 /* Since the idVendor, idProduct, and bcdDevice values in the
3173 * device descriptor haven't changed, we will assume the
3174 * Manufacturer and Product strings haven't changed either.
3175 * But the SerialNumber string could be different (e.g., a
3176 * different flash card of the same brand).
3178 if (udev->serial)
3179 serial_len = strlen(udev->serial) + 1;
3181 len = serial_len;
3182 for (index = 0; index < udev->descriptor.bNumConfigurations; index++) {
3183 old_length = le16_to_cpu(udev->config[index].desc.wTotalLength);
3184 len = max(len, old_length);
3187 buf = kmalloc(len, GFP_NOIO);
3188 if (buf == NULL) {
3189 dev_err(&udev->dev, "no mem to re-read configs after reset\n");
3190 /* assume the worst */
3191 return 1;
3193 for (index = 0; index < udev->descriptor.bNumConfigurations; index++) {
3194 old_length = le16_to_cpu(udev->config[index].desc.wTotalLength);
3195 length = usb_get_descriptor(udev, USB_DT_CONFIG, index, buf,
3196 old_length);
3197 if (length != old_length) {
3198 dev_dbg(&udev->dev, "config index %d, error %d\n",
3199 index, length);
3200 changed = 1;
3201 break;
3203 if (memcmp (buf, udev->rawdescriptors[index], old_length)
3204 != 0) {
3205 dev_dbg(&udev->dev, "config index %d changed (#%d)\n",
3206 index,
3207 ((struct usb_config_descriptor *) buf)->
3208 bConfigurationValue);
3209 changed = 1;
3210 break;
3214 if (!changed && serial_len) {
3215 length = usb_string(udev, udev->descriptor.iSerialNumber,
3216 buf, serial_len);
3217 if (length + 1 != serial_len) {
3218 dev_dbg(&udev->dev, "serial string error %d\n",
3219 length);
3220 changed = 1;
3221 } else if (memcmp(buf, udev->serial, length) != 0) {
3222 dev_dbg(&udev->dev, "serial string changed\n");
3223 changed = 1;
3227 kfree(buf);
3228 return changed;
3232 * usb_reset_device - perform a USB port reset to reinitialize a device
3233 * @udev: device to reset (not in SUSPENDED or NOTATTACHED state)
3235 * WARNING - don't use this routine to reset a composite device
3236 * (one with multiple interfaces owned by separate drivers)!
3237 * Use usb_reset_composite_device() instead.
3239 * Do a port reset, reassign the device's address, and establish its
3240 * former operating configuration. If the reset fails, or the device's
3241 * descriptors change from their values before the reset, or the original
3242 * configuration and altsettings cannot be restored, a flag will be set
3243 * telling khubd to pretend the device has been disconnected and then
3244 * re-connected. All drivers will be unbound, and the device will be
3245 * re-enumerated and probed all over again.
3247 * Returns 0 if the reset succeeded, -ENODEV if the device has been
3248 * flagged for logical disconnection, or some other negative error code
3249 * if the reset wasn't even attempted.
3251 * The caller must own the device lock. For example, it's safe to use
3252 * this from a driver probe() routine after downloading new firmware.
3253 * For calls that might not occur during probe(), drivers should lock
3254 * the device using usb_lock_device_for_reset().
3256 * Locking exception: This routine may also be called from within an
3257 * autoresume handler. Such usage won't conflict with other tasks
3258 * holding the device lock because these tasks should always call
3259 * usb_autopm_resume_device(), thereby preventing any unwanted autoresume.
3261 int usb_reset_device(struct usb_device *udev)
3263 struct usb_device *parent_hdev = udev->parent;
3264 struct usb_hub *parent_hub;
3265 struct usb_device_descriptor descriptor = udev->descriptor;
3266 int i, ret = 0;
3267 int port1 = udev->portnum;
3269 if (udev->state == USB_STATE_NOTATTACHED ||
3270 udev->state == USB_STATE_SUSPENDED) {
3271 dev_dbg(&udev->dev, "device reset not allowed in state %d\n",
3272 udev->state);
3273 return -EINVAL;
3276 if (!parent_hdev) {
3277 /* this requires hcd-specific logic; see OHCI hc_restart() */
3278 dev_dbg(&udev->dev, "%s for root hub!\n", __func__);
3279 return -EISDIR;
3281 parent_hub = hdev_to_hub(parent_hdev);
3283 set_bit(port1, parent_hub->busy_bits);
3284 for (i = 0; i < SET_CONFIG_TRIES; ++i) {
3286 /* ep0 maxpacket size may change; let the HCD know about it.
3287 * Other endpoints will be handled by re-enumeration. */
3288 usb_ep0_reinit(udev);
3289 ret = hub_port_init(parent_hub, udev, port1, i);
3290 if (ret >= 0 || ret == -ENOTCONN || ret == -ENODEV)
3291 break;
3293 clear_bit(port1, parent_hub->busy_bits);
3294 if (!parent_hdev->parent && !parent_hub->busy_bits[0])
3295 usb_enable_root_hub_irq(parent_hdev->bus);
3297 if (ret < 0)
3298 goto re_enumerate;
3300 /* Device might have changed firmware (DFU or similar) */
3301 if (descriptors_changed(udev, &descriptor)) {
3302 dev_info(&udev->dev, "device firmware changed\n");
3303 udev->descriptor = descriptor; /* for disconnect() calls */
3304 goto re_enumerate;
3307 if (!udev->actconfig)
3308 goto done;
3310 ret = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
3311 USB_REQ_SET_CONFIGURATION, 0,
3312 udev->actconfig->desc.bConfigurationValue, 0,
3313 NULL, 0, USB_CTRL_SET_TIMEOUT);
3314 if (ret < 0) {
3315 dev_err(&udev->dev,
3316 "can't restore configuration #%d (error=%d)\n",
3317 udev->actconfig->desc.bConfigurationValue, ret);
3318 goto re_enumerate;
3320 usb_set_device_state(udev, USB_STATE_CONFIGURED);
3322 for (i = 0; i < udev->actconfig->desc.bNumInterfaces; i++) {
3323 struct usb_interface *intf = udev->actconfig->interface[i];
3324 struct usb_interface_descriptor *desc;
3326 /* set_interface resets host side toggle even
3327 * for altsetting zero. the interface may have no driver.
3329 desc = &intf->cur_altsetting->desc;
3330 ret = usb_set_interface(udev, desc->bInterfaceNumber,
3331 desc->bAlternateSetting);
3332 if (ret < 0) {
3333 dev_err(&udev->dev, "failed to restore interface %d "
3334 "altsetting %d (error=%d)\n",
3335 desc->bInterfaceNumber,
3336 desc->bAlternateSetting,
3337 ret);
3338 goto re_enumerate;
3342 done:
3343 return 0;
3345 re_enumerate:
3346 hub_port_logical_disconnect(parent_hub, port1);
3347 return -ENODEV;
3349 EXPORT_SYMBOL_GPL(usb_reset_device);
3352 * usb_reset_composite_device - warn interface drivers and perform a USB port reset
3353 * @udev: device to reset (not in SUSPENDED or NOTATTACHED state)
3354 * @iface: interface bound to the driver making the request (optional)
3356 * Warns all drivers bound to registered interfaces (using their pre_reset
3357 * method), performs the port reset, and then lets the drivers know that
3358 * the reset is over (using their post_reset method).
3360 * Return value is the same as for usb_reset_device().
3362 * The caller must own the device lock. For example, it's safe to use
3363 * this from a driver probe() routine after downloading new firmware.
3364 * For calls that might not occur during probe(), drivers should lock
3365 * the device using usb_lock_device_for_reset().
3367 int usb_reset_composite_device(struct usb_device *udev,
3368 struct usb_interface *iface)
3370 int ret;
3371 int i;
3372 struct usb_host_config *config = udev->actconfig;
3374 if (udev->state == USB_STATE_NOTATTACHED ||
3375 udev->state == USB_STATE_SUSPENDED) {
3376 dev_dbg(&udev->dev, "device reset not allowed in state %d\n",
3377 udev->state);
3378 return -EINVAL;
3381 /* Prevent autosuspend during the reset */
3382 usb_autoresume_device(udev);
3384 if (iface && iface->condition != USB_INTERFACE_BINDING)
3385 iface = NULL;
3387 if (config) {
3388 for (i = 0; i < config->desc.bNumInterfaces; ++i) {
3389 struct usb_interface *cintf = config->interface[i];
3390 struct usb_driver *drv;
3392 if (cintf->dev.driver) {
3393 drv = to_usb_driver(cintf->dev.driver);
3394 if (drv->pre_reset)
3395 (drv->pre_reset)(cintf);
3396 /* FIXME: Unbind if pre_reset returns an error or isn't defined */
3401 ret = usb_reset_device(udev);
3403 if (config) {
3404 for (i = config->desc.bNumInterfaces - 1; i >= 0; --i) {
3405 struct usb_interface *cintf = config->interface[i];
3406 struct usb_driver *drv;
3408 if (cintf->dev.driver) {
3409 drv = to_usb_driver(cintf->dev.driver);
3410 if (drv->post_reset)
3411 (drv->post_reset)(cintf);
3412 /* FIXME: Unbind if post_reset returns an error or isn't defined */
3417 usb_autosuspend_device(udev);
3418 return ret;
3420 EXPORT_SYMBOL_GPL(usb_reset_composite_device);