mfd: wm8350-i2c: Make sure the i2c regmap functions are compiled
[linux/fpc-iii.git] / drivers / usb / core / hub.c
blob0fb8c85b77bf0d4d5e70f9e7203d9ec2b5b4d90f
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/usb/hcd.h>
23 #include <linux/usb/otg.h>
24 #include <linux/usb/quirks.h>
25 #include <linux/kthread.h>
26 #include <linux/mutex.h>
27 #include <linux/freezer.h>
28 #include <linux/random.h>
29 #include <linux/pm_qos.h>
31 #include <asm/uaccess.h>
32 #include <asm/byteorder.h>
34 #include "hub.h"
36 /* if we are in debug mode, always announce new devices */
37 #ifdef DEBUG
38 #ifndef CONFIG_USB_ANNOUNCE_NEW_DEVICES
39 #define CONFIG_USB_ANNOUNCE_NEW_DEVICES
40 #endif
41 #endif
43 #define USB_VENDOR_GENESYS_LOGIC 0x05e3
44 #define HUB_QUIRK_CHECK_PORT_AUTOSUSPEND 0x01
46 static inline int hub_is_superspeed(struct usb_device *hdev)
48 return (hdev->descriptor.bDeviceProtocol == USB_HUB_PR_SS);
51 /* Protect struct usb_device->state and ->children members
52 * Note: Both are also protected by ->dev.sem, except that ->state can
53 * change to USB_STATE_NOTATTACHED even when the semaphore isn't held. */
54 static DEFINE_SPINLOCK(device_state_lock);
56 /* khubd's worklist and its lock */
57 static DEFINE_SPINLOCK(hub_event_lock);
58 static LIST_HEAD(hub_event_list); /* List of hubs needing servicing */
60 /* Wakes up khubd */
61 static DECLARE_WAIT_QUEUE_HEAD(khubd_wait);
63 static struct task_struct *khubd_task;
65 /* cycle leds on hubs that aren't blinking for attention */
66 static bool blinkenlights = 0;
67 module_param (blinkenlights, bool, S_IRUGO);
68 MODULE_PARM_DESC (blinkenlights, "true to cycle leds on hubs");
71 * Device SATA8000 FW1.0 from DATAST0R Technology Corp requires about
72 * 10 seconds to send reply for the initial 64-byte descriptor request.
74 /* define initial 64-byte descriptor request timeout in milliseconds */
75 static int initial_descriptor_timeout = USB_CTRL_GET_TIMEOUT;
76 module_param(initial_descriptor_timeout, int, S_IRUGO|S_IWUSR);
77 MODULE_PARM_DESC(initial_descriptor_timeout,
78 "initial 64-byte descriptor request timeout in milliseconds "
79 "(default 5000 - 5.0 seconds)");
82 * As of 2.6.10 we introduce a new USB device initialization scheme which
83 * closely resembles the way Windows works. Hopefully it will be compatible
84 * with a wider range of devices than the old scheme. However some previously
85 * working devices may start giving rise to "device not accepting address"
86 * errors; if that happens the user can try the old scheme by adjusting the
87 * following module parameters.
89 * For maximum flexibility there are two boolean parameters to control the
90 * hub driver's behavior. On the first initialization attempt, if the
91 * "old_scheme_first" parameter is set then the old scheme will be used,
92 * otherwise the new scheme is used. If that fails and "use_both_schemes"
93 * is set, then the driver will make another attempt, using the other scheme.
95 static bool old_scheme_first = 0;
96 module_param(old_scheme_first, bool, S_IRUGO | S_IWUSR);
97 MODULE_PARM_DESC(old_scheme_first,
98 "start with the old device initialization scheme");
100 static bool use_both_schemes = 1;
101 module_param(use_both_schemes, bool, S_IRUGO | S_IWUSR);
102 MODULE_PARM_DESC(use_both_schemes,
103 "try the other device initialization scheme if the "
104 "first one fails");
106 /* Mutual exclusion for EHCI CF initialization. This interferes with
107 * port reset on some companion controllers.
109 DECLARE_RWSEM(ehci_cf_port_reset_rwsem);
110 EXPORT_SYMBOL_GPL(ehci_cf_port_reset_rwsem);
112 #define HUB_DEBOUNCE_TIMEOUT 2000
113 #define HUB_DEBOUNCE_STEP 25
114 #define HUB_DEBOUNCE_STABLE 100
116 static int usb_reset_and_verify_device(struct usb_device *udev);
117 static void hub_release(struct kref *kref);
119 static inline char *portspeed(struct usb_hub *hub, int portstatus)
121 if (hub_is_superspeed(hub->hdev))
122 return "5.0 Gb/s";
123 if (portstatus & USB_PORT_STAT_HIGH_SPEED)
124 return "480 Mb/s";
125 else if (portstatus & USB_PORT_STAT_LOW_SPEED)
126 return "1.5 Mb/s";
127 else
128 return "12 Mb/s";
131 /* Note that hdev or one of its children must be locked! */
132 struct usb_hub *usb_hub_to_struct_hub(struct usb_device *hdev)
134 if (!hdev || !hdev->actconfig || !hdev->maxchild)
135 return NULL;
136 return usb_get_intfdata(hdev->actconfig->interface[0]);
139 static int usb_device_supports_lpm(struct usb_device *udev)
141 /* Some devices have trouble with LPM */
142 if (udev->quirks & USB_QUIRK_NO_LPM)
143 return 0;
145 /* USB 2.1 (and greater) devices indicate LPM support through
146 * their USB 2.0 Extended Capabilities BOS descriptor.
148 if (udev->speed == USB_SPEED_HIGH) {
149 if (udev->bos->ext_cap &&
150 (USB_LPM_SUPPORT &
151 le32_to_cpu(udev->bos->ext_cap->bmAttributes)))
152 return 1;
153 return 0;
156 /* All USB 3.0 must support LPM, but we need their max exit latency
157 * information from the SuperSpeed Extended Capabilities BOS descriptor.
159 if (!udev->bos->ss_cap) {
160 dev_warn(&udev->dev, "No LPM exit latency info found. "
161 "Power management will be impacted.\n");
162 return 0;
164 if (udev->parent->lpm_capable)
165 return 1;
167 dev_warn(&udev->dev, "Parent hub missing LPM exit latency info. "
168 "Power management will be impacted.\n");
169 return 0;
173 * Set the Maximum Exit Latency (MEL) for the host to initiate a transition from
174 * either U1 or U2.
176 static void usb_set_lpm_mel(struct usb_device *udev,
177 struct usb3_lpm_parameters *udev_lpm_params,
178 unsigned int udev_exit_latency,
179 struct usb_hub *hub,
180 struct usb3_lpm_parameters *hub_lpm_params,
181 unsigned int hub_exit_latency)
183 unsigned int total_mel;
184 unsigned int device_mel;
185 unsigned int hub_mel;
188 * Calculate the time it takes to transition all links from the roothub
189 * to the parent hub into U0. The parent hub must then decode the
190 * packet (hub header decode latency) to figure out which port it was
191 * bound for.
193 * The Hub Header decode latency is expressed in 0.1us intervals (0x1
194 * means 0.1us). Multiply that by 100 to get nanoseconds.
196 total_mel = hub_lpm_params->mel +
197 (hub->descriptor->u.ss.bHubHdrDecLat * 100);
200 * How long will it take to transition the downstream hub's port into
201 * U0? The greater of either the hub exit latency or the device exit
202 * latency.
204 * The BOS U1/U2 exit latencies are expressed in 1us intervals.
205 * Multiply that by 1000 to get nanoseconds.
207 device_mel = udev_exit_latency * 1000;
208 hub_mel = hub_exit_latency * 1000;
209 if (device_mel > hub_mel)
210 total_mel += device_mel;
211 else
212 total_mel += hub_mel;
214 udev_lpm_params->mel = total_mel;
218 * Set the maximum Device to Host Exit Latency (PEL) for the device to initiate
219 * a transition from either U1 or U2.
221 static void usb_set_lpm_pel(struct usb_device *udev,
222 struct usb3_lpm_parameters *udev_lpm_params,
223 unsigned int udev_exit_latency,
224 struct usb_hub *hub,
225 struct usb3_lpm_parameters *hub_lpm_params,
226 unsigned int hub_exit_latency,
227 unsigned int port_to_port_exit_latency)
229 unsigned int first_link_pel;
230 unsigned int hub_pel;
233 * First, the device sends an LFPS to transition the link between the
234 * device and the parent hub into U0. The exit latency is the bigger of
235 * the device exit latency or the hub exit latency.
237 if (udev_exit_latency > hub_exit_latency)
238 first_link_pel = udev_exit_latency * 1000;
239 else
240 first_link_pel = hub_exit_latency * 1000;
243 * When the hub starts to receive the LFPS, there is a slight delay for
244 * it to figure out that one of the ports is sending an LFPS. Then it
245 * will forward the LFPS to its upstream link. The exit latency is the
246 * delay, plus the PEL that we calculated for this hub.
248 hub_pel = port_to_port_exit_latency * 1000 + hub_lpm_params->pel;
251 * According to figure C-7 in the USB 3.0 spec, the PEL for this device
252 * is the greater of the two exit latencies.
254 if (first_link_pel > hub_pel)
255 udev_lpm_params->pel = first_link_pel;
256 else
257 udev_lpm_params->pel = hub_pel;
261 * Set the System Exit Latency (SEL) to indicate the total worst-case time from
262 * when a device initiates a transition to U0, until when it will receive the
263 * first packet from the host controller.
265 * Section C.1.5.1 describes the four components to this:
266 * - t1: device PEL
267 * - t2: time for the ERDY to make it from the device to the host.
268 * - t3: a host-specific delay to process the ERDY.
269 * - t4: time for the packet to make it from the host to the device.
271 * t3 is specific to both the xHCI host and the platform the host is integrated
272 * into. The Intel HW folks have said it's negligible, FIXME if a different
273 * vendor says otherwise.
275 static void usb_set_lpm_sel(struct usb_device *udev,
276 struct usb3_lpm_parameters *udev_lpm_params)
278 struct usb_device *parent;
279 unsigned int num_hubs;
280 unsigned int total_sel;
282 /* t1 = device PEL */
283 total_sel = udev_lpm_params->pel;
284 /* How many external hubs are in between the device & the root port. */
285 for (parent = udev->parent, num_hubs = 0; parent->parent;
286 parent = parent->parent)
287 num_hubs++;
288 /* t2 = 2.1us + 250ns * (num_hubs - 1) */
289 if (num_hubs > 0)
290 total_sel += 2100 + 250 * (num_hubs - 1);
292 /* t4 = 250ns * num_hubs */
293 total_sel += 250 * num_hubs;
295 udev_lpm_params->sel = total_sel;
298 static void usb_set_lpm_parameters(struct usb_device *udev)
300 struct usb_hub *hub;
301 unsigned int port_to_port_delay;
302 unsigned int udev_u1_del;
303 unsigned int udev_u2_del;
304 unsigned int hub_u1_del;
305 unsigned int hub_u2_del;
307 if (!udev->lpm_capable || udev->speed < USB_SPEED_SUPER)
308 return;
310 hub = usb_hub_to_struct_hub(udev->parent);
311 /* It doesn't take time to transition the roothub into U0, since it
312 * doesn't have an upstream link.
314 if (!hub)
315 return;
317 udev_u1_del = udev->bos->ss_cap->bU1devExitLat;
318 udev_u2_del = udev->bos->ss_cap->bU2DevExitLat;
319 hub_u1_del = udev->parent->bos->ss_cap->bU1devExitLat;
320 hub_u2_del = udev->parent->bos->ss_cap->bU2DevExitLat;
322 usb_set_lpm_mel(udev, &udev->u1_params, udev_u1_del,
323 hub, &udev->parent->u1_params, hub_u1_del);
325 usb_set_lpm_mel(udev, &udev->u2_params, udev_u2_del,
326 hub, &udev->parent->u2_params, hub_u2_del);
329 * Appendix C, section C.2.2.2, says that there is a slight delay from
330 * when the parent hub notices the downstream port is trying to
331 * transition to U0 to when the hub initiates a U0 transition on its
332 * upstream port. The section says the delays are tPort2PortU1EL and
333 * tPort2PortU2EL, but it doesn't define what they are.
335 * The hub chapter, sections 10.4.2.4 and 10.4.2.5 seem to be talking
336 * about the same delays. Use the maximum delay calculations from those
337 * sections. For U1, it's tHubPort2PortExitLat, which is 1us max. For
338 * U2, it's tHubPort2PortExitLat + U2DevExitLat - U1DevExitLat. I
339 * assume the device exit latencies they are talking about are the hub
340 * exit latencies.
342 * What do we do if the U2 exit latency is less than the U1 exit
343 * latency? It's possible, although not likely...
345 port_to_port_delay = 1;
347 usb_set_lpm_pel(udev, &udev->u1_params, udev_u1_del,
348 hub, &udev->parent->u1_params, hub_u1_del,
349 port_to_port_delay);
351 if (hub_u2_del > hub_u1_del)
352 port_to_port_delay = 1 + hub_u2_del - hub_u1_del;
353 else
354 port_to_port_delay = 1 + hub_u1_del;
356 usb_set_lpm_pel(udev, &udev->u2_params, udev_u2_del,
357 hub, &udev->parent->u2_params, hub_u2_del,
358 port_to_port_delay);
360 /* Now that we've got PEL, calculate SEL. */
361 usb_set_lpm_sel(udev, &udev->u1_params);
362 usb_set_lpm_sel(udev, &udev->u2_params);
365 /* USB 2.0 spec Section 11.24.4.5 */
366 static int get_hub_descriptor(struct usb_device *hdev, void *data)
368 int i, ret, size;
369 unsigned dtype;
371 if (hub_is_superspeed(hdev)) {
372 dtype = USB_DT_SS_HUB;
373 size = USB_DT_SS_HUB_SIZE;
374 } else {
375 dtype = USB_DT_HUB;
376 size = sizeof(struct usb_hub_descriptor);
379 for (i = 0; i < 3; i++) {
380 ret = usb_control_msg(hdev, usb_rcvctrlpipe(hdev, 0),
381 USB_REQ_GET_DESCRIPTOR, USB_DIR_IN | USB_RT_HUB,
382 dtype << 8, 0, data, size,
383 USB_CTRL_GET_TIMEOUT);
384 if (ret >= (USB_DT_HUB_NONVAR_SIZE + 2))
385 return ret;
387 return -EINVAL;
391 * USB 2.0 spec Section 11.24.2.1
393 static int clear_hub_feature(struct usb_device *hdev, int feature)
395 return usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
396 USB_REQ_CLEAR_FEATURE, USB_RT_HUB, feature, 0, NULL, 0, 1000);
400 * USB 2.0 spec Section 11.24.2.2
402 int usb_clear_port_feature(struct usb_device *hdev, int port1, int feature)
404 return usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
405 USB_REQ_CLEAR_FEATURE, USB_RT_PORT, feature, port1,
406 NULL, 0, 1000);
410 * USB 2.0 spec Section 11.24.2.13
412 static int set_port_feature(struct usb_device *hdev, int port1, int feature)
414 return usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
415 USB_REQ_SET_FEATURE, USB_RT_PORT, feature, port1,
416 NULL, 0, 1000);
420 * USB 2.0 spec Section 11.24.2.7.1.10 and table 11-7
421 * for info about using port indicators
423 static void set_port_led(
424 struct usb_hub *hub,
425 int port1,
426 int selector
429 int status = set_port_feature(hub->hdev, (selector << 8) | port1,
430 USB_PORT_FEAT_INDICATOR);
431 if (status < 0)
432 dev_dbg (hub->intfdev,
433 "port %d indicator %s status %d\n",
434 port1,
435 ({ char *s; switch (selector) {
436 case HUB_LED_AMBER: s = "amber"; break;
437 case HUB_LED_GREEN: s = "green"; break;
438 case HUB_LED_OFF: s = "off"; break;
439 case HUB_LED_AUTO: s = "auto"; break;
440 default: s = "??"; break;
441 }; s; }),
442 status);
445 #define LED_CYCLE_PERIOD ((2*HZ)/3)
447 static void led_work (struct work_struct *work)
449 struct usb_hub *hub =
450 container_of(work, struct usb_hub, leds.work);
451 struct usb_device *hdev = hub->hdev;
452 unsigned i;
453 unsigned changed = 0;
454 int cursor = -1;
456 if (hdev->state != USB_STATE_CONFIGURED || hub->quiescing)
457 return;
459 for (i = 0; i < hdev->maxchild; i++) {
460 unsigned selector, mode;
462 /* 30%-50% duty cycle */
464 switch (hub->indicator[i]) {
465 /* cycle marker */
466 case INDICATOR_CYCLE:
467 cursor = i;
468 selector = HUB_LED_AUTO;
469 mode = INDICATOR_AUTO;
470 break;
471 /* blinking green = sw attention */
472 case INDICATOR_GREEN_BLINK:
473 selector = HUB_LED_GREEN;
474 mode = INDICATOR_GREEN_BLINK_OFF;
475 break;
476 case INDICATOR_GREEN_BLINK_OFF:
477 selector = HUB_LED_OFF;
478 mode = INDICATOR_GREEN_BLINK;
479 break;
480 /* blinking amber = hw attention */
481 case INDICATOR_AMBER_BLINK:
482 selector = HUB_LED_AMBER;
483 mode = INDICATOR_AMBER_BLINK_OFF;
484 break;
485 case INDICATOR_AMBER_BLINK_OFF:
486 selector = HUB_LED_OFF;
487 mode = INDICATOR_AMBER_BLINK;
488 break;
489 /* blink green/amber = reserved */
490 case INDICATOR_ALT_BLINK:
491 selector = HUB_LED_GREEN;
492 mode = INDICATOR_ALT_BLINK_OFF;
493 break;
494 case INDICATOR_ALT_BLINK_OFF:
495 selector = HUB_LED_AMBER;
496 mode = INDICATOR_ALT_BLINK;
497 break;
498 default:
499 continue;
501 if (selector != HUB_LED_AUTO)
502 changed = 1;
503 set_port_led(hub, i + 1, selector);
504 hub->indicator[i] = mode;
506 if (!changed && blinkenlights) {
507 cursor++;
508 cursor %= hdev->maxchild;
509 set_port_led(hub, cursor + 1, HUB_LED_GREEN);
510 hub->indicator[cursor] = INDICATOR_CYCLE;
511 changed++;
513 if (changed)
514 schedule_delayed_work(&hub->leds, LED_CYCLE_PERIOD);
517 /* use a short timeout for hub/port status fetches */
518 #define USB_STS_TIMEOUT 1000
519 #define USB_STS_RETRIES 5
522 * USB 2.0 spec Section 11.24.2.6
524 static int get_hub_status(struct usb_device *hdev,
525 struct usb_hub_status *data)
527 int i, status = -ETIMEDOUT;
529 for (i = 0; i < USB_STS_RETRIES &&
530 (status == -ETIMEDOUT || status == -EPIPE); i++) {
531 status = usb_control_msg(hdev, usb_rcvctrlpipe(hdev, 0),
532 USB_REQ_GET_STATUS, USB_DIR_IN | USB_RT_HUB, 0, 0,
533 data, sizeof(*data), USB_STS_TIMEOUT);
535 return status;
539 * USB 2.0 spec Section 11.24.2.7
541 static int get_port_status(struct usb_device *hdev, int port1,
542 struct usb_port_status *data)
544 int i, status = -ETIMEDOUT;
546 for (i = 0; i < USB_STS_RETRIES &&
547 (status == -ETIMEDOUT || status == -EPIPE); i++) {
548 status = usb_control_msg(hdev, usb_rcvctrlpipe(hdev, 0),
549 USB_REQ_GET_STATUS, USB_DIR_IN | USB_RT_PORT, 0, port1,
550 data, sizeof(*data), USB_STS_TIMEOUT);
552 return status;
555 static int hub_port_status(struct usb_hub *hub, int port1,
556 u16 *status, u16 *change)
558 int ret;
560 mutex_lock(&hub->status_mutex);
561 ret = get_port_status(hub->hdev, port1, &hub->status->port);
562 if (ret < 4) {
563 if (ret != -ENODEV)
564 dev_err(hub->intfdev,
565 "%s failed (err = %d)\n", __func__, ret);
566 if (ret >= 0)
567 ret = -EIO;
568 } else {
569 *status = le16_to_cpu(hub->status->port.wPortStatus);
570 *change = le16_to_cpu(hub->status->port.wPortChange);
572 ret = 0;
574 mutex_unlock(&hub->status_mutex);
575 return ret;
578 static void kick_khubd(struct usb_hub *hub)
580 unsigned long flags;
582 spin_lock_irqsave(&hub_event_lock, flags);
583 if (!hub->disconnected && list_empty(&hub->event_list)) {
584 list_add_tail(&hub->event_list, &hub_event_list);
586 /* Suppress autosuspend until khubd runs */
587 usb_autopm_get_interface_no_resume(
588 to_usb_interface(hub->intfdev));
589 wake_up(&khubd_wait);
591 spin_unlock_irqrestore(&hub_event_lock, flags);
594 void usb_kick_khubd(struct usb_device *hdev)
596 struct usb_hub *hub = usb_hub_to_struct_hub(hdev);
598 if (hub)
599 kick_khubd(hub);
603 * Let the USB core know that a USB 3.0 device has sent a Function Wake Device
604 * Notification, which indicates it had initiated remote wakeup.
606 * USB 3.0 hubs do not report the port link state change from U3 to U0 when the
607 * device initiates resume, so the USB core will not receive notice of the
608 * resume through the normal hub interrupt URB.
610 void usb_wakeup_notification(struct usb_device *hdev,
611 unsigned int portnum)
613 struct usb_hub *hub;
615 if (!hdev)
616 return;
618 hub = usb_hub_to_struct_hub(hdev);
619 if (hub) {
620 set_bit(portnum, hub->wakeup_bits);
621 kick_khubd(hub);
624 EXPORT_SYMBOL_GPL(usb_wakeup_notification);
626 /* completion function, fires on port status changes and various faults */
627 static void hub_irq(struct urb *urb)
629 struct usb_hub *hub = urb->context;
630 int status = urb->status;
631 unsigned i;
632 unsigned long bits;
634 switch (status) {
635 case -ENOENT: /* synchronous unlink */
636 case -ECONNRESET: /* async unlink */
637 case -ESHUTDOWN: /* hardware going away */
638 return;
640 default: /* presumably an error */
641 /* Cause a hub reset after 10 consecutive errors */
642 dev_dbg (hub->intfdev, "transfer --> %d\n", status);
643 if ((++hub->nerrors < 10) || hub->error)
644 goto resubmit;
645 hub->error = status;
646 /* FALL THROUGH */
648 /* let khubd handle things */
649 case 0: /* we got data: port status changed */
650 bits = 0;
651 for (i = 0; i < urb->actual_length; ++i)
652 bits |= ((unsigned long) ((*hub->buffer)[i]))
653 << (i*8);
654 hub->event_bits[0] = bits;
655 break;
658 hub->nerrors = 0;
660 /* Something happened, let khubd figure it out */
661 kick_khubd(hub);
663 resubmit:
664 if (hub->quiescing)
665 return;
667 if ((status = usb_submit_urb (hub->urb, GFP_ATOMIC)) != 0
668 && status != -ENODEV && status != -EPERM)
669 dev_err (hub->intfdev, "resubmit --> %d\n", status);
672 /* USB 2.0 spec Section 11.24.2.3 */
673 static inline int
674 hub_clear_tt_buffer (struct usb_device *hdev, u16 devinfo, u16 tt)
676 /* Need to clear both directions for control ep */
677 if (((devinfo >> 11) & USB_ENDPOINT_XFERTYPE_MASK) ==
678 USB_ENDPOINT_XFER_CONTROL) {
679 int status = usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
680 HUB_CLEAR_TT_BUFFER, USB_RT_PORT,
681 devinfo ^ 0x8000, tt, NULL, 0, 1000);
682 if (status)
683 return status;
685 return usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
686 HUB_CLEAR_TT_BUFFER, USB_RT_PORT, devinfo,
687 tt, NULL, 0, 1000);
691 * enumeration blocks khubd for a long time. we use keventd instead, since
692 * long blocking there is the exception, not the rule. accordingly, HCDs
693 * talking to TTs must queue control transfers (not just bulk and iso), so
694 * both can talk to the same hub concurrently.
696 static void hub_tt_work(struct work_struct *work)
698 struct usb_hub *hub =
699 container_of(work, struct usb_hub, tt.clear_work);
700 unsigned long flags;
702 spin_lock_irqsave (&hub->tt.lock, flags);
703 while (!list_empty(&hub->tt.clear_list)) {
704 struct list_head *next;
705 struct usb_tt_clear *clear;
706 struct usb_device *hdev = hub->hdev;
707 const struct hc_driver *drv;
708 int status;
710 next = hub->tt.clear_list.next;
711 clear = list_entry (next, struct usb_tt_clear, clear_list);
712 list_del (&clear->clear_list);
714 /* drop lock so HCD can concurrently report other TT errors */
715 spin_unlock_irqrestore (&hub->tt.lock, flags);
716 status = hub_clear_tt_buffer (hdev, clear->devinfo, clear->tt);
717 if (status && status != -ENODEV)
718 dev_err (&hdev->dev,
719 "clear tt %d (%04x) error %d\n",
720 clear->tt, clear->devinfo, status);
722 /* Tell the HCD, even if the operation failed */
723 drv = clear->hcd->driver;
724 if (drv->clear_tt_buffer_complete)
725 (drv->clear_tt_buffer_complete)(clear->hcd, clear->ep);
727 kfree(clear);
728 spin_lock_irqsave(&hub->tt.lock, flags);
730 spin_unlock_irqrestore (&hub->tt.lock, flags);
734 * usb_hub_set_port_power - control hub port's power state
735 * @hdev: USB device belonging to the usb hub
736 * @hub: target hub
737 * @port1: port index
738 * @set: expected status
740 * call this function to control port's power via setting or
741 * clearing the port's PORT_POWER feature.
743 * Return: 0 if successful. A negative error code otherwise.
745 int usb_hub_set_port_power(struct usb_device *hdev, struct usb_hub *hub,
746 int port1, bool set)
748 int ret;
749 struct usb_port *port_dev = hub->ports[port1 - 1];
751 if (set)
752 ret = set_port_feature(hdev, port1, USB_PORT_FEAT_POWER);
753 else
754 ret = usb_clear_port_feature(hdev, port1, USB_PORT_FEAT_POWER);
756 if (!ret)
757 port_dev->power_is_on = set;
758 return ret;
762 * usb_hub_clear_tt_buffer - clear control/bulk TT state in high speed hub
763 * @urb: an URB associated with the failed or incomplete split transaction
765 * High speed HCDs use this to tell the hub driver that some split control or
766 * bulk transaction failed in a way that requires clearing internal state of
767 * a transaction translator. This is normally detected (and reported) from
768 * interrupt context.
770 * It may not be possible for that hub to handle additional full (or low)
771 * speed transactions until that state is fully cleared out.
773 * Return: 0 if successful. A negative error code otherwise.
775 int usb_hub_clear_tt_buffer(struct urb *urb)
777 struct usb_device *udev = urb->dev;
778 int pipe = urb->pipe;
779 struct usb_tt *tt = udev->tt;
780 unsigned long flags;
781 struct usb_tt_clear *clear;
783 /* we've got to cope with an arbitrary number of pending TT clears,
784 * since each TT has "at least two" buffers that can need it (and
785 * there can be many TTs per hub). even if they're uncommon.
787 if ((clear = kmalloc (sizeof *clear, GFP_ATOMIC)) == NULL) {
788 dev_err (&udev->dev, "can't save CLEAR_TT_BUFFER state\n");
789 /* FIXME recover somehow ... RESET_TT? */
790 return -ENOMEM;
793 /* info that CLEAR_TT_BUFFER needs */
794 clear->tt = tt->multi ? udev->ttport : 1;
795 clear->devinfo = usb_pipeendpoint (pipe);
796 clear->devinfo |= udev->devnum << 4;
797 clear->devinfo |= usb_pipecontrol (pipe)
798 ? (USB_ENDPOINT_XFER_CONTROL << 11)
799 : (USB_ENDPOINT_XFER_BULK << 11);
800 if (usb_pipein (pipe))
801 clear->devinfo |= 1 << 15;
803 /* info for completion callback */
804 clear->hcd = bus_to_hcd(udev->bus);
805 clear->ep = urb->ep;
807 /* tell keventd to clear state for this TT */
808 spin_lock_irqsave (&tt->lock, flags);
809 list_add_tail (&clear->clear_list, &tt->clear_list);
810 schedule_work(&tt->clear_work);
811 spin_unlock_irqrestore (&tt->lock, flags);
812 return 0;
814 EXPORT_SYMBOL_GPL(usb_hub_clear_tt_buffer);
816 /* If do_delay is false, return the number of milliseconds the caller
817 * needs to delay.
819 static unsigned hub_power_on(struct usb_hub *hub, bool do_delay)
821 int port1;
822 unsigned pgood_delay = hub->descriptor->bPwrOn2PwrGood * 2;
823 unsigned delay;
824 u16 wHubCharacteristics =
825 le16_to_cpu(hub->descriptor->wHubCharacteristics);
827 /* Enable power on each port. Some hubs have reserved values
828 * of LPSM (> 2) in their descriptors, even though they are
829 * USB 2.0 hubs. Some hubs do not implement port-power switching
830 * but only emulate it. In all cases, the ports won't work
831 * unless we send these messages to the hub.
833 if ((wHubCharacteristics & HUB_CHAR_LPSM) < 2)
834 dev_dbg(hub->intfdev, "enabling power on all ports\n");
835 else
836 dev_dbg(hub->intfdev, "trying to enable port power on "
837 "non-switchable hub\n");
838 for (port1 = 1; port1 <= hub->hdev->maxchild; port1++)
839 if (hub->ports[port1 - 1]->power_is_on)
840 set_port_feature(hub->hdev, port1, USB_PORT_FEAT_POWER);
841 else
842 usb_clear_port_feature(hub->hdev, port1,
843 USB_PORT_FEAT_POWER);
845 /* Wait at least 100 msec for power to become stable */
846 delay = max(pgood_delay, (unsigned) 100);
847 if (do_delay)
848 msleep(delay);
849 return delay;
852 static int hub_hub_status(struct usb_hub *hub,
853 u16 *status, u16 *change)
855 int ret;
857 mutex_lock(&hub->status_mutex);
858 ret = get_hub_status(hub->hdev, &hub->status->hub);
859 if (ret < 0) {
860 if (ret != -ENODEV)
861 dev_err(hub->intfdev,
862 "%s failed (err = %d)\n", __func__, ret);
863 } else {
864 *status = le16_to_cpu(hub->status->hub.wHubStatus);
865 *change = le16_to_cpu(hub->status->hub.wHubChange);
866 ret = 0;
868 mutex_unlock(&hub->status_mutex);
869 return ret;
872 static int hub_set_port_link_state(struct usb_hub *hub, int port1,
873 unsigned int link_status)
875 return set_port_feature(hub->hdev,
876 port1 | (link_status << 3),
877 USB_PORT_FEAT_LINK_STATE);
881 * If USB 3.0 ports are placed into the Disabled state, they will no longer
882 * detect any device connects or disconnects. This is generally not what the
883 * USB core wants, since it expects a disabled port to produce a port status
884 * change event when a new device connects.
886 * Instead, set the link state to Disabled, wait for the link to settle into
887 * that state, clear any change bits, and then put the port into the RxDetect
888 * state.
890 static int hub_usb3_port_disable(struct usb_hub *hub, int port1)
892 int ret;
893 int total_time;
894 u16 portchange, portstatus;
896 if (!hub_is_superspeed(hub->hdev))
897 return -EINVAL;
899 ret = hub_port_status(hub, port1, &portstatus, &portchange);
900 if (ret < 0)
901 return ret;
904 * USB controller Advanced Micro Devices, Inc. [AMD] FCH USB XHCI
905 * Controller [1022:7814] will have spurious result making the following
906 * usb 3.0 device hotplugging route to the 2.0 root hub and recognized
907 * as high-speed device if we set the usb 3.0 port link state to
908 * Disabled. Since it's already in USB_SS_PORT_LS_RX_DETECT state, we
909 * check the state here to avoid the bug.
911 if ((portstatus & USB_PORT_STAT_LINK_STATE) ==
912 USB_SS_PORT_LS_RX_DETECT) {
913 dev_dbg(&hub->ports[port1 - 1]->dev,
914 "Not disabling port; link state is RxDetect\n");
915 return ret;
918 ret = hub_set_port_link_state(hub, port1, USB_SS_PORT_LS_SS_DISABLED);
919 if (ret)
920 return ret;
922 /* Wait for the link to enter the disabled state. */
923 for (total_time = 0; ; total_time += HUB_DEBOUNCE_STEP) {
924 ret = hub_port_status(hub, port1, &portstatus, &portchange);
925 if (ret < 0)
926 return ret;
928 if ((portstatus & USB_PORT_STAT_LINK_STATE) ==
929 USB_SS_PORT_LS_SS_DISABLED)
930 break;
931 if (total_time >= HUB_DEBOUNCE_TIMEOUT)
932 break;
933 msleep(HUB_DEBOUNCE_STEP);
935 if (total_time >= HUB_DEBOUNCE_TIMEOUT)
936 dev_warn(hub->intfdev, "Could not disable port %d after %d ms\n",
937 port1, total_time);
939 return hub_set_port_link_state(hub, port1, USB_SS_PORT_LS_RX_DETECT);
942 static int hub_port_disable(struct usb_hub *hub, int port1, int set_state)
944 struct usb_device *hdev = hub->hdev;
945 int ret = 0;
947 if (hub->ports[port1 - 1]->child && set_state)
948 usb_set_device_state(hub->ports[port1 - 1]->child,
949 USB_STATE_NOTATTACHED);
950 if (!hub->error) {
951 if (hub_is_superspeed(hub->hdev))
952 ret = hub_usb3_port_disable(hub, port1);
953 else
954 ret = usb_clear_port_feature(hdev, port1,
955 USB_PORT_FEAT_ENABLE);
957 if (ret && ret != -ENODEV)
958 dev_err(hub->intfdev, "cannot disable port %d (err = %d)\n",
959 port1, ret);
960 return ret;
964 * Disable a port and mark a logical connect-change event, so that some
965 * time later khubd will disconnect() any existing usb_device on the port
966 * and will re-enumerate if there actually is a device attached.
968 static void hub_port_logical_disconnect(struct usb_hub *hub, int port1)
970 dev_dbg(hub->intfdev, "logical disconnect on port %d\n", port1);
971 hub_port_disable(hub, port1, 1);
973 /* FIXME let caller ask to power down the port:
974 * - some devices won't enumerate without a VBUS power cycle
975 * - SRP saves power that way
976 * - ... new call, TBD ...
977 * That's easy if this hub can switch power per-port, and
978 * khubd reactivates the port later (timer, SRP, etc).
979 * Powerdown must be optional, because of reset/DFU.
982 set_bit(port1, hub->change_bits);
983 kick_khubd(hub);
987 * usb_remove_device - disable a device's port on its parent hub
988 * @udev: device to be disabled and removed
989 * Context: @udev locked, must be able to sleep.
991 * After @udev's port has been disabled, khubd is notified and it will
992 * see that the device has been disconnected. When the device is
993 * physically unplugged and something is plugged in, the events will
994 * be received and processed normally.
996 * Return: 0 if successful. A negative error code otherwise.
998 int usb_remove_device(struct usb_device *udev)
1000 struct usb_hub *hub;
1001 struct usb_interface *intf;
1003 if (!udev->parent) /* Can't remove a root hub */
1004 return -EINVAL;
1005 hub = usb_hub_to_struct_hub(udev->parent);
1006 intf = to_usb_interface(hub->intfdev);
1008 usb_autopm_get_interface(intf);
1009 set_bit(udev->portnum, hub->removed_bits);
1010 hub_port_logical_disconnect(hub, udev->portnum);
1011 usb_autopm_put_interface(intf);
1012 return 0;
1015 enum hub_activation_type {
1016 HUB_INIT, HUB_INIT2, HUB_INIT3, /* INITs must come first */
1017 HUB_POST_RESET, HUB_RESUME, HUB_RESET_RESUME,
1020 static void hub_init_func2(struct work_struct *ws);
1021 static void hub_init_func3(struct work_struct *ws);
1023 static void hub_activate(struct usb_hub *hub, enum hub_activation_type type)
1025 struct usb_device *hdev = hub->hdev;
1026 struct usb_hcd *hcd;
1027 int ret;
1028 int port1;
1029 int status;
1030 bool need_debounce_delay = false;
1031 unsigned delay;
1033 /* Continue a partial initialization */
1034 if (type == HUB_INIT2 || type == HUB_INIT3) {
1035 device_lock(hub->intfdev);
1037 /* Was the hub disconnected while we were waiting? */
1038 if (hub->disconnected) {
1039 device_unlock(hub->intfdev);
1040 kref_put(&hub->kref, hub_release);
1041 return;
1043 if (type == HUB_INIT2)
1044 goto init2;
1045 goto init3;
1047 kref_get(&hub->kref);
1049 /* The superspeed hub except for root hub has to use Hub Depth
1050 * value as an offset into the route string to locate the bits
1051 * it uses to determine the downstream port number. So hub driver
1052 * should send a set hub depth request to superspeed hub after
1053 * the superspeed hub is set configuration in initialization or
1054 * reset procedure.
1056 * After a resume, port power should still be on.
1057 * For any other type of activation, turn it on.
1059 if (type != HUB_RESUME) {
1060 if (hdev->parent && hub_is_superspeed(hdev)) {
1061 ret = usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
1062 HUB_SET_DEPTH, USB_RT_HUB,
1063 hdev->level - 1, 0, NULL, 0,
1064 USB_CTRL_SET_TIMEOUT);
1065 if (ret < 0)
1066 dev_err(hub->intfdev,
1067 "set hub depth failed\n");
1070 /* Speed up system boot by using a delayed_work for the
1071 * hub's initial power-up delays. This is pretty awkward
1072 * and the implementation looks like a home-brewed sort of
1073 * setjmp/longjmp, but it saves at least 100 ms for each
1074 * root hub (assuming usbcore is compiled into the kernel
1075 * rather than as a module). It adds up.
1077 * This can't be done for HUB_RESUME or HUB_RESET_RESUME
1078 * because for those activation types the ports have to be
1079 * operational when we return. In theory this could be done
1080 * for HUB_POST_RESET, but it's easier not to.
1082 if (type == HUB_INIT) {
1083 delay = hub_power_on(hub, false);
1084 PREPARE_DELAYED_WORK(&hub->init_work, hub_init_func2);
1085 schedule_delayed_work(&hub->init_work,
1086 msecs_to_jiffies(delay));
1088 /* Suppress autosuspend until init is done */
1089 usb_autopm_get_interface_no_resume(
1090 to_usb_interface(hub->intfdev));
1091 return; /* Continues at init2: below */
1092 } else if (type == HUB_RESET_RESUME) {
1093 /* The internal host controller state for the hub device
1094 * may be gone after a host power loss on system resume.
1095 * Update the device's info so the HW knows it's a hub.
1097 hcd = bus_to_hcd(hdev->bus);
1098 if (hcd->driver->update_hub_device) {
1099 ret = hcd->driver->update_hub_device(hcd, hdev,
1100 &hub->tt, GFP_NOIO);
1101 if (ret < 0) {
1102 dev_err(hub->intfdev, "Host not "
1103 "accepting hub info "
1104 "update.\n");
1105 dev_err(hub->intfdev, "LS/FS devices "
1106 "and hubs may not work "
1107 "under this hub\n.");
1110 hub_power_on(hub, true);
1111 } else {
1112 hub_power_on(hub, true);
1115 init2:
1117 /* Check each port and set hub->change_bits to let khubd know
1118 * which ports need attention.
1120 for (port1 = 1; port1 <= hdev->maxchild; ++port1) {
1121 struct usb_device *udev = hub->ports[port1 - 1]->child;
1122 u16 portstatus, portchange;
1124 portstatus = portchange = 0;
1125 status = hub_port_status(hub, port1, &portstatus, &portchange);
1126 if (udev || (portstatus & USB_PORT_STAT_CONNECTION))
1127 dev_dbg(hub->intfdev,
1128 "port %d: status %04x change %04x\n",
1129 port1, portstatus, portchange);
1131 /* After anything other than HUB_RESUME (i.e., initialization
1132 * or any sort of reset), every port should be disabled.
1133 * Unconnected ports should likewise be disabled (paranoia),
1134 * and so should ports for which we have no usb_device.
1136 if ((portstatus & USB_PORT_STAT_ENABLE) && (
1137 type != HUB_RESUME ||
1138 !(portstatus & USB_PORT_STAT_CONNECTION) ||
1139 !udev ||
1140 udev->state == USB_STATE_NOTATTACHED)) {
1142 * USB3 protocol ports will automatically transition
1143 * to Enabled state when detect an USB3.0 device attach.
1144 * Do not disable USB3 protocol ports.
1146 if (!hub_is_superspeed(hdev)) {
1147 usb_clear_port_feature(hdev, port1,
1148 USB_PORT_FEAT_ENABLE);
1149 portstatus &= ~USB_PORT_STAT_ENABLE;
1150 } else {
1151 /* Pretend that power was lost for USB3 devs */
1152 portstatus &= ~USB_PORT_STAT_ENABLE;
1156 /* Clear status-change flags; we'll debounce later */
1157 if (portchange & USB_PORT_STAT_C_CONNECTION) {
1158 need_debounce_delay = true;
1159 usb_clear_port_feature(hub->hdev, port1,
1160 USB_PORT_FEAT_C_CONNECTION);
1162 if (portchange & USB_PORT_STAT_C_ENABLE) {
1163 need_debounce_delay = true;
1164 usb_clear_port_feature(hub->hdev, port1,
1165 USB_PORT_FEAT_C_ENABLE);
1167 if (portchange & USB_PORT_STAT_C_RESET) {
1168 need_debounce_delay = true;
1169 usb_clear_port_feature(hub->hdev, port1,
1170 USB_PORT_FEAT_C_RESET);
1172 if ((portchange & USB_PORT_STAT_C_BH_RESET) &&
1173 hub_is_superspeed(hub->hdev)) {
1174 need_debounce_delay = true;
1175 usb_clear_port_feature(hub->hdev, port1,
1176 USB_PORT_FEAT_C_BH_PORT_RESET);
1178 /* We can forget about a "removed" device when there's a
1179 * physical disconnect or the connect status changes.
1181 if (!(portstatus & USB_PORT_STAT_CONNECTION) ||
1182 (portchange & USB_PORT_STAT_C_CONNECTION))
1183 clear_bit(port1, hub->removed_bits);
1185 if (!udev || udev->state == USB_STATE_NOTATTACHED) {
1186 /* Tell khubd to disconnect the device or
1187 * check for a new connection
1189 if (udev || (portstatus & USB_PORT_STAT_CONNECTION) ||
1190 (portstatus & USB_PORT_STAT_OVERCURRENT))
1191 set_bit(port1, hub->change_bits);
1193 } else if (portstatus & USB_PORT_STAT_ENABLE) {
1194 bool port_resumed = (portstatus &
1195 USB_PORT_STAT_LINK_STATE) ==
1196 USB_SS_PORT_LS_U0;
1197 /* The power session apparently survived the resume.
1198 * If there was an overcurrent or suspend change
1199 * (i.e., remote wakeup request), have khubd
1200 * take care of it. Look at the port link state
1201 * for USB 3.0 hubs, since they don't have a suspend
1202 * change bit, and they don't set the port link change
1203 * bit on device-initiated resume.
1205 if (portchange || (hub_is_superspeed(hub->hdev) &&
1206 port_resumed))
1207 set_bit(port1, hub->change_bits);
1209 } else if (udev->persist_enabled) {
1210 struct usb_port *port_dev = hub->ports[port1 - 1];
1212 #ifdef CONFIG_PM
1213 udev->reset_resume = 1;
1214 #endif
1215 /* Don't set the change_bits when the device
1216 * was powered off.
1218 if (port_dev->power_is_on)
1219 set_bit(port1, hub->change_bits);
1221 } else {
1222 /* The power session is gone; tell khubd */
1223 usb_set_device_state(udev, USB_STATE_NOTATTACHED);
1224 set_bit(port1, hub->change_bits);
1228 /* If no port-status-change flags were set, we don't need any
1229 * debouncing. If flags were set we can try to debounce the
1230 * ports all at once right now, instead of letting khubd do them
1231 * one at a time later on.
1233 * If any port-status changes do occur during this delay, khubd
1234 * will see them later and handle them normally.
1236 if (need_debounce_delay) {
1237 delay = HUB_DEBOUNCE_STABLE;
1239 /* Don't do a long sleep inside a workqueue routine */
1240 if (type == HUB_INIT2) {
1241 PREPARE_DELAYED_WORK(&hub->init_work, hub_init_func3);
1242 schedule_delayed_work(&hub->init_work,
1243 msecs_to_jiffies(delay));
1244 device_unlock(hub->intfdev);
1245 return; /* Continues at init3: below */
1246 } else {
1247 msleep(delay);
1250 init3:
1251 hub->quiescing = 0;
1253 status = usb_submit_urb(hub->urb, GFP_NOIO);
1254 if (status < 0)
1255 dev_err(hub->intfdev, "activate --> %d\n", status);
1256 if (hub->has_indicators && blinkenlights)
1257 schedule_delayed_work(&hub->leds, LED_CYCLE_PERIOD);
1259 /* Scan all ports that need attention */
1260 kick_khubd(hub);
1262 /* Allow autosuspend if it was suppressed */
1263 if (type <= HUB_INIT3)
1264 usb_autopm_put_interface_async(to_usb_interface(hub->intfdev));
1266 if (type == HUB_INIT2 || type == HUB_INIT3)
1267 device_unlock(hub->intfdev);
1269 kref_put(&hub->kref, hub_release);
1272 /* Implement the continuations for the delays above */
1273 static void hub_init_func2(struct work_struct *ws)
1275 struct usb_hub *hub = container_of(ws, struct usb_hub, init_work.work);
1277 hub_activate(hub, HUB_INIT2);
1280 static void hub_init_func3(struct work_struct *ws)
1282 struct usb_hub *hub = container_of(ws, struct usb_hub, init_work.work);
1284 hub_activate(hub, HUB_INIT3);
1287 enum hub_quiescing_type {
1288 HUB_DISCONNECT, HUB_PRE_RESET, HUB_SUSPEND
1291 static void hub_quiesce(struct usb_hub *hub, enum hub_quiescing_type type)
1293 struct usb_device *hdev = hub->hdev;
1294 int i;
1296 cancel_delayed_work_sync(&hub->init_work);
1298 /* khubd and related activity won't re-trigger */
1299 hub->quiescing = 1;
1301 if (type != HUB_SUSPEND) {
1302 /* Disconnect all the children */
1303 for (i = 0; i < hdev->maxchild; ++i) {
1304 if (hub->ports[i]->child)
1305 usb_disconnect(&hub->ports[i]->child);
1309 /* Stop khubd and related activity */
1310 usb_kill_urb(hub->urb);
1311 if (hub->has_indicators)
1312 cancel_delayed_work_sync(&hub->leds);
1313 if (hub->tt.hub)
1314 flush_work(&hub->tt.clear_work);
1317 /* caller has locked the hub device */
1318 static int hub_pre_reset(struct usb_interface *intf)
1320 struct usb_hub *hub = usb_get_intfdata(intf);
1322 hub_quiesce(hub, HUB_PRE_RESET);
1323 return 0;
1326 /* caller has locked the hub device */
1327 static int hub_post_reset(struct usb_interface *intf)
1329 struct usb_hub *hub = usb_get_intfdata(intf);
1331 hub_activate(hub, HUB_POST_RESET);
1332 return 0;
1335 static int hub_configure(struct usb_hub *hub,
1336 struct usb_endpoint_descriptor *endpoint)
1338 struct usb_hcd *hcd;
1339 struct usb_device *hdev = hub->hdev;
1340 struct device *hub_dev = hub->intfdev;
1341 u16 hubstatus, hubchange;
1342 u16 wHubCharacteristics;
1343 unsigned int pipe;
1344 int maxp, ret, i;
1345 char *message = "out of memory";
1346 unsigned unit_load;
1347 unsigned full_load;
1349 hub->buffer = kmalloc(sizeof(*hub->buffer), GFP_KERNEL);
1350 if (!hub->buffer) {
1351 ret = -ENOMEM;
1352 goto fail;
1355 hub->status = kmalloc(sizeof(*hub->status), GFP_KERNEL);
1356 if (!hub->status) {
1357 ret = -ENOMEM;
1358 goto fail;
1360 mutex_init(&hub->status_mutex);
1362 hub->descriptor = kmalloc(sizeof(*hub->descriptor), GFP_KERNEL);
1363 if (!hub->descriptor) {
1364 ret = -ENOMEM;
1365 goto fail;
1368 /* Request the entire hub descriptor.
1369 * hub->descriptor can handle USB_MAXCHILDREN ports,
1370 * but the hub can/will return fewer bytes here.
1372 ret = get_hub_descriptor(hdev, hub->descriptor);
1373 if (ret < 0) {
1374 message = "can't read hub descriptor";
1375 goto fail;
1376 } else if (hub->descriptor->bNbrPorts > USB_MAXCHILDREN) {
1377 message = "hub has too many ports!";
1378 ret = -ENODEV;
1379 goto fail;
1380 } else if (hub->descriptor->bNbrPorts == 0) {
1381 message = "hub doesn't have any ports!";
1382 ret = -ENODEV;
1383 goto fail;
1386 hdev->maxchild = hub->descriptor->bNbrPorts;
1387 dev_info (hub_dev, "%d port%s detected\n", hdev->maxchild,
1388 (hdev->maxchild == 1) ? "" : "s");
1390 hub->ports = kzalloc(hdev->maxchild * sizeof(struct usb_port *),
1391 GFP_KERNEL);
1392 if (!hub->ports) {
1393 ret = -ENOMEM;
1394 goto fail;
1397 wHubCharacteristics = le16_to_cpu(hub->descriptor->wHubCharacteristics);
1398 if (hub_is_superspeed(hdev)) {
1399 unit_load = 150;
1400 full_load = 900;
1401 } else {
1402 unit_load = 100;
1403 full_load = 500;
1406 /* FIXME for USB 3.0, skip for now */
1407 if ((wHubCharacteristics & HUB_CHAR_COMPOUND) &&
1408 !(hub_is_superspeed(hdev))) {
1409 int i;
1410 char portstr [USB_MAXCHILDREN + 1];
1412 for (i = 0; i < hdev->maxchild; i++)
1413 portstr[i] = hub->descriptor->u.hs.DeviceRemovable
1414 [((i + 1) / 8)] & (1 << ((i + 1) % 8))
1415 ? 'F' : 'R';
1416 portstr[hdev->maxchild] = 0;
1417 dev_dbg(hub_dev, "compound device; port removable status: %s\n", portstr);
1418 } else
1419 dev_dbg(hub_dev, "standalone hub\n");
1421 switch (wHubCharacteristics & HUB_CHAR_LPSM) {
1422 case HUB_CHAR_COMMON_LPSM:
1423 dev_dbg(hub_dev, "ganged power switching\n");
1424 break;
1425 case HUB_CHAR_INDV_PORT_LPSM:
1426 dev_dbg(hub_dev, "individual port power switching\n");
1427 break;
1428 case HUB_CHAR_NO_LPSM:
1429 case HUB_CHAR_LPSM:
1430 dev_dbg(hub_dev, "no power switching (usb 1.0)\n");
1431 break;
1434 switch (wHubCharacteristics & HUB_CHAR_OCPM) {
1435 case HUB_CHAR_COMMON_OCPM:
1436 dev_dbg(hub_dev, "global over-current protection\n");
1437 break;
1438 case HUB_CHAR_INDV_PORT_OCPM:
1439 dev_dbg(hub_dev, "individual port over-current protection\n");
1440 break;
1441 case HUB_CHAR_NO_OCPM:
1442 case HUB_CHAR_OCPM:
1443 dev_dbg(hub_dev, "no over-current protection\n");
1444 break;
1447 spin_lock_init (&hub->tt.lock);
1448 INIT_LIST_HEAD (&hub->tt.clear_list);
1449 INIT_WORK(&hub->tt.clear_work, hub_tt_work);
1450 switch (hdev->descriptor.bDeviceProtocol) {
1451 case USB_HUB_PR_FS:
1452 break;
1453 case USB_HUB_PR_HS_SINGLE_TT:
1454 dev_dbg(hub_dev, "Single TT\n");
1455 hub->tt.hub = hdev;
1456 break;
1457 case USB_HUB_PR_HS_MULTI_TT:
1458 ret = usb_set_interface(hdev, 0, 1);
1459 if (ret == 0) {
1460 dev_dbg(hub_dev, "TT per port\n");
1461 hub->tt.multi = 1;
1462 } else
1463 dev_err(hub_dev, "Using single TT (err %d)\n",
1464 ret);
1465 hub->tt.hub = hdev;
1466 break;
1467 case USB_HUB_PR_SS:
1468 /* USB 3.0 hubs don't have a TT */
1469 break;
1470 default:
1471 dev_dbg(hub_dev, "Unrecognized hub protocol %d\n",
1472 hdev->descriptor.bDeviceProtocol);
1473 break;
1476 /* Note 8 FS bit times == (8 bits / 12000000 bps) ~= 666ns */
1477 switch (wHubCharacteristics & HUB_CHAR_TTTT) {
1478 case HUB_TTTT_8_BITS:
1479 if (hdev->descriptor.bDeviceProtocol != 0) {
1480 hub->tt.think_time = 666;
1481 dev_dbg(hub_dev, "TT requires at most %d "
1482 "FS bit times (%d ns)\n",
1483 8, hub->tt.think_time);
1485 break;
1486 case HUB_TTTT_16_BITS:
1487 hub->tt.think_time = 666 * 2;
1488 dev_dbg(hub_dev, "TT requires at most %d "
1489 "FS bit times (%d ns)\n",
1490 16, hub->tt.think_time);
1491 break;
1492 case HUB_TTTT_24_BITS:
1493 hub->tt.think_time = 666 * 3;
1494 dev_dbg(hub_dev, "TT requires at most %d "
1495 "FS bit times (%d ns)\n",
1496 24, hub->tt.think_time);
1497 break;
1498 case HUB_TTTT_32_BITS:
1499 hub->tt.think_time = 666 * 4;
1500 dev_dbg(hub_dev, "TT requires at most %d "
1501 "FS bit times (%d ns)\n",
1502 32, hub->tt.think_time);
1503 break;
1506 /* probe() zeroes hub->indicator[] */
1507 if (wHubCharacteristics & HUB_CHAR_PORTIND) {
1508 hub->has_indicators = 1;
1509 dev_dbg(hub_dev, "Port indicators are supported\n");
1512 dev_dbg(hub_dev, "power on to power good time: %dms\n",
1513 hub->descriptor->bPwrOn2PwrGood * 2);
1515 /* power budgeting mostly matters with bus-powered hubs,
1516 * and battery-powered root hubs (may provide just 8 mA).
1518 ret = usb_get_status(hdev, USB_RECIP_DEVICE, 0, &hubstatus);
1519 if (ret) {
1520 message = "can't get hub status";
1521 goto fail;
1523 hcd = bus_to_hcd(hdev->bus);
1524 if (hdev == hdev->bus->root_hub) {
1525 if (hcd->power_budget > 0)
1526 hdev->bus_mA = hcd->power_budget;
1527 else
1528 hdev->bus_mA = full_load * hdev->maxchild;
1529 if (hdev->bus_mA >= full_load)
1530 hub->mA_per_port = full_load;
1531 else {
1532 hub->mA_per_port = hdev->bus_mA;
1533 hub->limited_power = 1;
1535 } else if ((hubstatus & (1 << USB_DEVICE_SELF_POWERED)) == 0) {
1536 int remaining = hdev->bus_mA -
1537 hub->descriptor->bHubContrCurrent;
1539 dev_dbg(hub_dev, "hub controller current requirement: %dmA\n",
1540 hub->descriptor->bHubContrCurrent);
1541 hub->limited_power = 1;
1543 if (remaining < hdev->maxchild * unit_load)
1544 dev_warn(hub_dev,
1545 "insufficient power available "
1546 "to use all downstream ports\n");
1547 hub->mA_per_port = unit_load; /* 7.2.1 */
1549 } else { /* Self-powered external hub */
1550 /* FIXME: What about battery-powered external hubs that
1551 * provide less current per port? */
1552 hub->mA_per_port = full_load;
1554 if (hub->mA_per_port < full_load)
1555 dev_dbg(hub_dev, "%umA bus power budget for each child\n",
1556 hub->mA_per_port);
1558 /* Update the HCD's internal representation of this hub before khubd
1559 * starts getting port status changes for devices under the hub.
1561 if (hcd->driver->update_hub_device) {
1562 ret = hcd->driver->update_hub_device(hcd, hdev,
1563 &hub->tt, GFP_KERNEL);
1564 if (ret < 0) {
1565 message = "can't update HCD hub info";
1566 goto fail;
1570 ret = hub_hub_status(hub, &hubstatus, &hubchange);
1571 if (ret < 0) {
1572 message = "can't get hub status";
1573 goto fail;
1576 /* local power status reports aren't always correct */
1577 if (hdev->actconfig->desc.bmAttributes & USB_CONFIG_ATT_SELFPOWER)
1578 dev_dbg(hub_dev, "local power source is %s\n",
1579 (hubstatus & HUB_STATUS_LOCAL_POWER)
1580 ? "lost (inactive)" : "good");
1582 if ((wHubCharacteristics & HUB_CHAR_OCPM) == 0)
1583 dev_dbg(hub_dev, "%sover-current condition exists\n",
1584 (hubstatus & HUB_STATUS_OVERCURRENT) ? "" : "no ");
1586 /* set up the interrupt endpoint
1587 * We use the EP's maxpacket size instead of (PORTS+1+7)/8
1588 * bytes as USB2.0[11.12.3] says because some hubs are known
1589 * to send more data (and thus cause overflow). For root hubs,
1590 * maxpktsize is defined in hcd.c's fake endpoint descriptors
1591 * to be big enough for at least USB_MAXCHILDREN ports. */
1592 pipe = usb_rcvintpipe(hdev, endpoint->bEndpointAddress);
1593 maxp = usb_maxpacket(hdev, pipe, usb_pipeout(pipe));
1595 if (maxp > sizeof(*hub->buffer))
1596 maxp = sizeof(*hub->buffer);
1598 hub->urb = usb_alloc_urb(0, GFP_KERNEL);
1599 if (!hub->urb) {
1600 ret = -ENOMEM;
1601 goto fail;
1604 usb_fill_int_urb(hub->urb, hdev, pipe, *hub->buffer, maxp, hub_irq,
1605 hub, endpoint->bInterval);
1607 /* maybe cycle the hub leds */
1608 if (hub->has_indicators && blinkenlights)
1609 hub->indicator [0] = INDICATOR_CYCLE;
1611 for (i = 0; i < hdev->maxchild; i++) {
1612 ret = usb_hub_create_port_device(hub, i + 1);
1613 if (ret < 0) {
1614 dev_err(hub->intfdev,
1615 "couldn't create port%d device.\n", i + 1);
1616 hdev->maxchild = i;
1617 goto fail_keep_maxchild;
1621 usb_hub_adjust_deviceremovable(hdev, hub->descriptor);
1623 hub_activate(hub, HUB_INIT);
1624 return 0;
1626 fail:
1627 hdev->maxchild = 0;
1628 fail_keep_maxchild:
1629 dev_err (hub_dev, "config failed, %s (err %d)\n",
1630 message, ret);
1631 /* hub_disconnect() frees urb and descriptor */
1632 return ret;
1635 static void hub_release(struct kref *kref)
1637 struct usb_hub *hub = container_of(kref, struct usb_hub, kref);
1639 usb_put_intf(to_usb_interface(hub->intfdev));
1640 kfree(hub);
1643 static unsigned highspeed_hubs;
1645 static void hub_disconnect(struct usb_interface *intf)
1647 struct usb_hub *hub = usb_get_intfdata(intf);
1648 struct usb_device *hdev = interface_to_usbdev(intf);
1649 int port1;
1651 /* Take the hub off the event list and don't let it be added again */
1652 spin_lock_irq(&hub_event_lock);
1653 if (!list_empty(&hub->event_list)) {
1654 list_del_init(&hub->event_list);
1655 usb_autopm_put_interface_no_suspend(intf);
1657 hub->disconnected = 1;
1658 spin_unlock_irq(&hub_event_lock);
1660 /* Disconnect all children and quiesce the hub */
1661 hub->error = 0;
1662 hub_quiesce(hub, HUB_DISCONNECT);
1664 /* Avoid races with recursively_mark_NOTATTACHED() */
1665 spin_lock_irq(&device_state_lock);
1666 port1 = hdev->maxchild;
1667 hdev->maxchild = 0;
1668 usb_set_intfdata(intf, NULL);
1669 spin_unlock_irq(&device_state_lock);
1671 for (; port1 > 0; --port1)
1672 usb_hub_remove_port_device(hub, port1);
1674 if (hub->hdev->speed == USB_SPEED_HIGH)
1675 highspeed_hubs--;
1677 usb_free_urb(hub->urb);
1678 kfree(hub->ports);
1679 kfree(hub->descriptor);
1680 kfree(hub->status);
1681 kfree(hub->buffer);
1683 pm_suspend_ignore_children(&intf->dev, false);
1684 kref_put(&hub->kref, hub_release);
1687 static int hub_probe(struct usb_interface *intf, const struct usb_device_id *id)
1689 struct usb_host_interface *desc;
1690 struct usb_endpoint_descriptor *endpoint;
1691 struct usb_device *hdev;
1692 struct usb_hub *hub;
1694 desc = intf->cur_altsetting;
1695 hdev = interface_to_usbdev(intf);
1698 * Set default autosuspend delay as 0 to speedup bus suspend,
1699 * based on the below considerations:
1701 * - Unlike other drivers, the hub driver does not rely on the
1702 * autosuspend delay to provide enough time to handle a wakeup
1703 * event, and the submitted status URB is just to check future
1704 * change on hub downstream ports, so it is safe to do it.
1706 * - The patch might cause one or more auto supend/resume for
1707 * below very rare devices when they are plugged into hub
1708 * first time:
1710 * devices having trouble initializing, and disconnect
1711 * themselves from the bus and then reconnect a second
1712 * or so later
1714 * devices just for downloading firmware, and disconnects
1715 * themselves after completing it
1717 * For these quite rare devices, their drivers may change the
1718 * autosuspend delay of their parent hub in the probe() to one
1719 * appropriate value to avoid the subtle problem if someone
1720 * does care it.
1722 * - The patch may cause one or more auto suspend/resume on
1723 * hub during running 'lsusb', but it is probably too
1724 * infrequent to worry about.
1726 * - Change autosuspend delay of hub can avoid unnecessary auto
1727 * suspend timer for hub, also may decrease power consumption
1728 * of USB bus.
1730 * - If user has indicated to prevent autosuspend by passing
1731 * usbcore.autosuspend = -1 then keep autosuspend disabled.
1733 #ifdef CONFIG_PM_RUNTIME
1734 if (hdev->dev.power.autosuspend_delay >= 0)
1735 pm_runtime_set_autosuspend_delay(&hdev->dev, 0);
1736 #endif
1739 * Hubs have proper suspend/resume support, except for root hubs
1740 * where the controller driver doesn't have bus_suspend and
1741 * bus_resume methods.
1743 if (hdev->parent) { /* normal device */
1744 usb_enable_autosuspend(hdev);
1745 } else { /* root hub */
1746 const struct hc_driver *drv = bus_to_hcd(hdev->bus)->driver;
1748 if (drv->bus_suspend && drv->bus_resume)
1749 usb_enable_autosuspend(hdev);
1752 if (hdev->level == MAX_TOPO_LEVEL) {
1753 dev_err(&intf->dev,
1754 "Unsupported bus topology: hub nested too deep\n");
1755 return -E2BIG;
1758 #ifdef CONFIG_USB_OTG_BLACKLIST_HUB
1759 if (hdev->parent) {
1760 dev_warn(&intf->dev, "ignoring external hub\n");
1761 return -ENODEV;
1763 #endif
1765 /* Some hubs have a subclass of 1, which AFAICT according to the */
1766 /* specs is not defined, but it works */
1767 if ((desc->desc.bInterfaceSubClass != 0) &&
1768 (desc->desc.bInterfaceSubClass != 1)) {
1769 descriptor_error:
1770 dev_err (&intf->dev, "bad descriptor, ignoring hub\n");
1771 return -EIO;
1774 /* Multiple endpoints? What kind of mutant ninja-hub is this? */
1775 if (desc->desc.bNumEndpoints != 1)
1776 goto descriptor_error;
1778 endpoint = &desc->endpoint[0].desc;
1780 /* If it's not an interrupt in endpoint, we'd better punt! */
1781 if (!usb_endpoint_is_int_in(endpoint))
1782 goto descriptor_error;
1784 /* We found a hub */
1785 dev_info (&intf->dev, "USB hub found\n");
1787 hub = kzalloc(sizeof(*hub), GFP_KERNEL);
1788 if (!hub) {
1789 dev_dbg (&intf->dev, "couldn't kmalloc hub struct\n");
1790 return -ENOMEM;
1793 kref_init(&hub->kref);
1794 INIT_LIST_HEAD(&hub->event_list);
1795 hub->intfdev = &intf->dev;
1796 hub->hdev = hdev;
1797 INIT_DELAYED_WORK(&hub->leds, led_work);
1798 INIT_DELAYED_WORK(&hub->init_work, NULL);
1799 usb_get_intf(intf);
1801 usb_set_intfdata (intf, hub);
1802 intf->needs_remote_wakeup = 1;
1803 pm_suspend_ignore_children(&intf->dev, true);
1805 if (hdev->speed == USB_SPEED_HIGH)
1806 highspeed_hubs++;
1808 if (id->driver_info & HUB_QUIRK_CHECK_PORT_AUTOSUSPEND)
1809 hub->quirk_check_port_auto_suspend = 1;
1811 if (hub_configure(hub, endpoint) >= 0)
1812 return 0;
1814 hub_disconnect (intf);
1815 return -ENODEV;
1818 static int
1819 hub_ioctl(struct usb_interface *intf, unsigned int code, void *user_data)
1821 struct usb_device *hdev = interface_to_usbdev (intf);
1822 struct usb_hub *hub = usb_hub_to_struct_hub(hdev);
1824 /* assert ifno == 0 (part of hub spec) */
1825 switch (code) {
1826 case USBDEVFS_HUB_PORTINFO: {
1827 struct usbdevfs_hub_portinfo *info = user_data;
1828 int i;
1830 spin_lock_irq(&device_state_lock);
1831 if (hdev->devnum <= 0)
1832 info->nports = 0;
1833 else {
1834 info->nports = hdev->maxchild;
1835 for (i = 0; i < info->nports; i++) {
1836 if (hub->ports[i]->child == NULL)
1837 info->port[i] = 0;
1838 else
1839 info->port[i] =
1840 hub->ports[i]->child->devnum;
1843 spin_unlock_irq(&device_state_lock);
1845 return info->nports + 1;
1848 default:
1849 return -ENOSYS;
1854 * Allow user programs to claim ports on a hub. When a device is attached
1855 * to one of these "claimed" ports, the program will "own" the device.
1857 static int find_port_owner(struct usb_device *hdev, unsigned port1,
1858 struct dev_state ***ppowner)
1860 struct usb_hub *hub = usb_hub_to_struct_hub(hdev);
1862 if (hdev->state == USB_STATE_NOTATTACHED)
1863 return -ENODEV;
1864 if (port1 == 0 || port1 > hdev->maxchild)
1865 return -EINVAL;
1867 /* Devices not managed by the hub driver
1868 * will always have maxchild equal to 0.
1870 *ppowner = &(hub->ports[port1 - 1]->port_owner);
1871 return 0;
1874 /* In the following three functions, the caller must hold hdev's lock */
1875 int usb_hub_claim_port(struct usb_device *hdev, unsigned port1,
1876 struct dev_state *owner)
1878 int rc;
1879 struct dev_state **powner;
1881 rc = find_port_owner(hdev, port1, &powner);
1882 if (rc)
1883 return rc;
1884 if (*powner)
1885 return -EBUSY;
1886 *powner = owner;
1887 return rc;
1890 int usb_hub_release_port(struct usb_device *hdev, unsigned port1,
1891 struct dev_state *owner)
1893 int rc;
1894 struct dev_state **powner;
1896 rc = find_port_owner(hdev, port1, &powner);
1897 if (rc)
1898 return rc;
1899 if (*powner != owner)
1900 return -ENOENT;
1901 *powner = NULL;
1902 return rc;
1905 void usb_hub_release_all_ports(struct usb_device *hdev, struct dev_state *owner)
1907 struct usb_hub *hub = usb_hub_to_struct_hub(hdev);
1908 int n;
1910 for (n = 0; n < hdev->maxchild; n++) {
1911 if (hub->ports[n]->port_owner == owner)
1912 hub->ports[n]->port_owner = NULL;
1917 /* The caller must hold udev's lock */
1918 bool usb_device_is_owned(struct usb_device *udev)
1920 struct usb_hub *hub;
1922 if (udev->state == USB_STATE_NOTATTACHED || !udev->parent)
1923 return false;
1924 hub = usb_hub_to_struct_hub(udev->parent);
1925 return !!hub->ports[udev->portnum - 1]->port_owner;
1928 static void recursively_mark_NOTATTACHED(struct usb_device *udev)
1930 struct usb_hub *hub = usb_hub_to_struct_hub(udev);
1931 int i;
1933 for (i = 0; i < udev->maxchild; ++i) {
1934 if (hub->ports[i]->child)
1935 recursively_mark_NOTATTACHED(hub->ports[i]->child);
1937 if (udev->state == USB_STATE_SUSPENDED)
1938 udev->active_duration -= jiffies;
1939 udev->state = USB_STATE_NOTATTACHED;
1943 * usb_set_device_state - change a device's current state (usbcore, hcds)
1944 * @udev: pointer to device whose state should be changed
1945 * @new_state: new state value to be stored
1947 * udev->state is _not_ fully protected by the device lock. Although
1948 * most transitions are made only while holding the lock, the state can
1949 * can change to USB_STATE_NOTATTACHED at almost any time. This
1950 * is so that devices can be marked as disconnected as soon as possible,
1951 * without having to wait for any semaphores to be released. As a result,
1952 * all changes to any device's state must be protected by the
1953 * device_state_lock spinlock.
1955 * Once a device has been added to the device tree, all changes to its state
1956 * should be made using this routine. The state should _not_ be set directly.
1958 * If udev->state is already USB_STATE_NOTATTACHED then no change is made.
1959 * Otherwise udev->state is set to new_state, and if new_state is
1960 * USB_STATE_NOTATTACHED then all of udev's descendants' states are also set
1961 * to USB_STATE_NOTATTACHED.
1963 void usb_set_device_state(struct usb_device *udev,
1964 enum usb_device_state new_state)
1966 unsigned long flags;
1967 int wakeup = -1;
1969 spin_lock_irqsave(&device_state_lock, flags);
1970 if (udev->state == USB_STATE_NOTATTACHED)
1971 ; /* do nothing */
1972 else if (new_state != USB_STATE_NOTATTACHED) {
1974 /* root hub wakeup capabilities are managed out-of-band
1975 * and may involve silicon errata ... ignore them here.
1977 if (udev->parent) {
1978 if (udev->state == USB_STATE_SUSPENDED
1979 || new_state == USB_STATE_SUSPENDED)
1980 ; /* No change to wakeup settings */
1981 else if (new_state == USB_STATE_CONFIGURED)
1982 wakeup = (udev->quirks &
1983 USB_QUIRK_IGNORE_REMOTE_WAKEUP) ? 0 :
1984 udev->actconfig->desc.bmAttributes &
1985 USB_CONFIG_ATT_WAKEUP;
1986 else
1987 wakeup = 0;
1989 if (udev->state == USB_STATE_SUSPENDED &&
1990 new_state != USB_STATE_SUSPENDED)
1991 udev->active_duration -= jiffies;
1992 else if (new_state == USB_STATE_SUSPENDED &&
1993 udev->state != USB_STATE_SUSPENDED)
1994 udev->active_duration += jiffies;
1995 udev->state = new_state;
1996 } else
1997 recursively_mark_NOTATTACHED(udev);
1998 spin_unlock_irqrestore(&device_state_lock, flags);
1999 if (wakeup >= 0)
2000 device_set_wakeup_capable(&udev->dev, wakeup);
2002 EXPORT_SYMBOL_GPL(usb_set_device_state);
2005 * Choose a device number.
2007 * Device numbers are used as filenames in usbfs. On USB-1.1 and
2008 * USB-2.0 buses they are also used as device addresses, however on
2009 * USB-3.0 buses the address is assigned by the controller hardware
2010 * and it usually is not the same as the device number.
2012 * WUSB devices are simple: they have no hubs behind, so the mapping
2013 * device <-> virtual port number becomes 1:1. Why? to simplify the
2014 * life of the device connection logic in
2015 * drivers/usb/wusbcore/devconnect.c. When we do the initial secret
2016 * handshake we need to assign a temporary address in the unauthorized
2017 * space. For simplicity we use the first virtual port number found to
2018 * be free [drivers/usb/wusbcore/devconnect.c:wusbhc_devconnect_ack()]
2019 * and that becomes it's address [X < 128] or its unauthorized address
2020 * [X | 0x80].
2022 * We add 1 as an offset to the one-based USB-stack port number
2023 * (zero-based wusb virtual port index) for two reasons: (a) dev addr
2024 * 0 is reserved by USB for default address; (b) Linux's USB stack
2025 * uses always #1 for the root hub of the controller. So USB stack's
2026 * port #1, which is wusb virtual-port #0 has address #2.
2028 * Devices connected under xHCI are not as simple. The host controller
2029 * supports virtualization, so the hardware assigns device addresses and
2030 * the HCD must setup data structures before issuing a set address
2031 * command to the hardware.
2033 static void choose_devnum(struct usb_device *udev)
2035 int devnum;
2036 struct usb_bus *bus = udev->bus;
2038 /* If khubd ever becomes multithreaded, this will need a lock */
2039 if (udev->wusb) {
2040 devnum = udev->portnum + 1;
2041 BUG_ON(test_bit(devnum, bus->devmap.devicemap));
2042 } else {
2043 /* Try to allocate the next devnum beginning at
2044 * bus->devnum_next. */
2045 devnum = find_next_zero_bit(bus->devmap.devicemap, 128,
2046 bus->devnum_next);
2047 if (devnum >= 128)
2048 devnum = find_next_zero_bit(bus->devmap.devicemap,
2049 128, 1);
2050 bus->devnum_next = ( devnum >= 127 ? 1 : devnum + 1);
2052 if (devnum < 128) {
2053 set_bit(devnum, bus->devmap.devicemap);
2054 udev->devnum = devnum;
2058 static void release_devnum(struct usb_device *udev)
2060 if (udev->devnum > 0) {
2061 clear_bit(udev->devnum, udev->bus->devmap.devicemap);
2062 udev->devnum = -1;
2066 static void update_devnum(struct usb_device *udev, int devnum)
2068 /* The address for a WUSB device is managed by wusbcore. */
2069 if (!udev->wusb)
2070 udev->devnum = devnum;
2073 static void hub_free_dev(struct usb_device *udev)
2075 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
2077 /* Root hubs aren't real devices, so don't free HCD resources */
2078 if (hcd->driver->free_dev && udev->parent)
2079 hcd->driver->free_dev(hcd, udev);
2083 * usb_disconnect - disconnect a device (usbcore-internal)
2084 * @pdev: pointer to device being disconnected
2085 * Context: !in_interrupt ()
2087 * Something got disconnected. Get rid of it and all of its children.
2089 * If *pdev is a normal device then the parent hub must already be locked.
2090 * If *pdev is a root hub then this routine will acquire the
2091 * usb_bus_list_lock on behalf of the caller.
2093 * Only hub drivers (including virtual root hub drivers for host
2094 * controllers) should ever call this.
2096 * This call is synchronous, and may not be used in an interrupt context.
2098 void usb_disconnect(struct usb_device **pdev)
2100 struct usb_device *udev = *pdev;
2101 struct usb_hub *hub = usb_hub_to_struct_hub(udev);
2102 int i;
2104 /* mark the device as inactive, so any further urb submissions for
2105 * this device (and any of its children) will fail immediately.
2106 * this quiesces everything except pending urbs.
2108 usb_set_device_state(udev, USB_STATE_NOTATTACHED);
2109 dev_info(&udev->dev, "USB disconnect, device number %d\n",
2110 udev->devnum);
2112 usb_lock_device(udev);
2114 /* Free up all the children before we remove this device */
2115 for (i = 0; i < udev->maxchild; i++) {
2116 if (hub->ports[i]->child)
2117 usb_disconnect(&hub->ports[i]->child);
2120 /* deallocate hcd/hardware state ... nuking all pending urbs and
2121 * cleaning up all state associated with the current configuration
2122 * so that the hardware is now fully quiesced.
2124 dev_dbg (&udev->dev, "unregistering device\n");
2125 usb_disable_device(udev, 0);
2126 usb_hcd_synchronize_unlinks(udev);
2128 if (udev->parent) {
2129 struct usb_hub *hub = usb_hub_to_struct_hub(udev->parent);
2130 struct usb_port *port_dev = hub->ports[udev->portnum - 1];
2132 sysfs_remove_link(&udev->dev.kobj, "port");
2133 sysfs_remove_link(&port_dev->dev.kobj, "device");
2135 if (!port_dev->did_runtime_put)
2136 pm_runtime_put(&port_dev->dev);
2137 else
2138 port_dev->did_runtime_put = false;
2141 usb_remove_ep_devs(&udev->ep0);
2142 usb_unlock_device(udev);
2144 /* Unregister the device. The device driver is responsible
2145 * for de-configuring the device and invoking the remove-device
2146 * notifier chain (used by usbfs and possibly others).
2148 device_del(&udev->dev);
2150 /* Free the device number and delete the parent's children[]
2151 * (or root_hub) pointer.
2153 release_devnum(udev);
2155 /* Avoid races with recursively_mark_NOTATTACHED() */
2156 spin_lock_irq(&device_state_lock);
2157 *pdev = NULL;
2158 spin_unlock_irq(&device_state_lock);
2160 hub_free_dev(udev);
2162 put_device(&udev->dev);
2165 #ifdef CONFIG_USB_ANNOUNCE_NEW_DEVICES
2166 static void show_string(struct usb_device *udev, char *id, char *string)
2168 if (!string)
2169 return;
2170 dev_info(&udev->dev, "%s: %s\n", id, string);
2173 static void announce_device(struct usb_device *udev)
2175 dev_info(&udev->dev, "New USB device found, idVendor=%04x, idProduct=%04x\n",
2176 le16_to_cpu(udev->descriptor.idVendor),
2177 le16_to_cpu(udev->descriptor.idProduct));
2178 dev_info(&udev->dev,
2179 "New USB device strings: Mfr=%d, Product=%d, SerialNumber=%d\n",
2180 udev->descriptor.iManufacturer,
2181 udev->descriptor.iProduct,
2182 udev->descriptor.iSerialNumber);
2183 show_string(udev, "Product", udev->product);
2184 show_string(udev, "Manufacturer", udev->manufacturer);
2185 show_string(udev, "SerialNumber", udev->serial);
2187 #else
2188 static inline void announce_device(struct usb_device *udev) { }
2189 #endif
2191 #ifdef CONFIG_USB_OTG
2192 #include "otg_whitelist.h"
2193 #endif
2196 * usb_enumerate_device_otg - FIXME (usbcore-internal)
2197 * @udev: newly addressed device (in ADDRESS state)
2199 * Finish enumeration for On-The-Go devices
2201 * Return: 0 if successful. A negative error code otherwise.
2203 static int usb_enumerate_device_otg(struct usb_device *udev)
2205 int err = 0;
2207 #ifdef CONFIG_USB_OTG
2209 * OTG-aware devices on OTG-capable root hubs may be able to use SRP,
2210 * to wake us after we've powered off VBUS; and HNP, switching roles
2211 * "host" to "peripheral". The OTG descriptor helps figure this out.
2213 if (!udev->bus->is_b_host
2214 && udev->config
2215 && udev->parent == udev->bus->root_hub) {
2216 struct usb_otg_descriptor *desc = NULL;
2217 struct usb_bus *bus = udev->bus;
2219 /* descriptor may appear anywhere in config */
2220 if (__usb_get_extra_descriptor (udev->rawdescriptors[0],
2221 le16_to_cpu(udev->config[0].desc.wTotalLength),
2222 USB_DT_OTG, (void **) &desc) == 0) {
2223 if (desc->bmAttributes & USB_OTG_HNP) {
2224 unsigned port1 = udev->portnum;
2226 dev_info(&udev->dev,
2227 "Dual-Role OTG device on %sHNP port\n",
2228 (port1 == bus->otg_port)
2229 ? "" : "non-");
2231 /* enable HNP before suspend, it's simpler */
2232 if (port1 == bus->otg_port)
2233 bus->b_hnp_enable = 1;
2234 err = usb_control_msg(udev,
2235 usb_sndctrlpipe(udev, 0),
2236 USB_REQ_SET_FEATURE, 0,
2237 bus->b_hnp_enable
2238 ? USB_DEVICE_B_HNP_ENABLE
2239 : USB_DEVICE_A_ALT_HNP_SUPPORT,
2240 0, NULL, 0, USB_CTRL_SET_TIMEOUT);
2241 if (err < 0) {
2242 /* OTG MESSAGE: report errors here,
2243 * customize to match your product.
2245 dev_info(&udev->dev,
2246 "can't set HNP mode: %d\n",
2247 err);
2248 bus->b_hnp_enable = 0;
2254 if (!is_targeted(udev)) {
2256 /* Maybe it can talk to us, though we can't talk to it.
2257 * (Includes HNP test device.)
2259 if (udev->bus->b_hnp_enable || udev->bus->is_b_host) {
2260 err = usb_port_suspend(udev, PMSG_SUSPEND);
2261 if (err < 0)
2262 dev_dbg(&udev->dev, "HNP fail, %d\n", err);
2264 err = -ENOTSUPP;
2265 goto fail;
2267 fail:
2268 #endif
2269 return err;
2274 * usb_enumerate_device - Read device configs/intfs/otg (usbcore-internal)
2275 * @udev: newly addressed device (in ADDRESS state)
2277 * This is only called by usb_new_device() and usb_authorize_device()
2278 * and FIXME -- all comments that apply to them apply here wrt to
2279 * environment.
2281 * If the device is WUSB and not authorized, we don't attempt to read
2282 * the string descriptors, as they will be errored out by the device
2283 * until it has been authorized.
2285 * Return: 0 if successful. A negative error code otherwise.
2287 static int usb_enumerate_device(struct usb_device *udev)
2289 int err;
2291 if (udev->config == NULL) {
2292 err = usb_get_configuration(udev);
2293 if (err < 0) {
2294 if (err != -ENODEV)
2295 dev_err(&udev->dev, "can't read configurations, error %d\n",
2296 err);
2297 return err;
2301 /* read the standard strings and cache them if present */
2302 udev->product = usb_cache_string(udev, udev->descriptor.iProduct);
2303 udev->manufacturer = usb_cache_string(udev,
2304 udev->descriptor.iManufacturer);
2305 udev->serial = usb_cache_string(udev, udev->descriptor.iSerialNumber);
2307 err = usb_enumerate_device_otg(udev);
2308 if (err < 0)
2309 return err;
2311 usb_detect_interface_quirks(udev);
2313 return 0;
2316 static void set_usb_port_removable(struct usb_device *udev)
2318 struct usb_device *hdev = udev->parent;
2319 struct usb_hub *hub;
2320 u8 port = udev->portnum;
2321 u16 wHubCharacteristics;
2322 bool removable = true;
2324 if (!hdev)
2325 return;
2327 hub = usb_hub_to_struct_hub(udev->parent);
2329 wHubCharacteristics = le16_to_cpu(hub->descriptor->wHubCharacteristics);
2331 if (!(wHubCharacteristics & HUB_CHAR_COMPOUND))
2332 return;
2334 if (hub_is_superspeed(hdev)) {
2335 if (le16_to_cpu(hub->descriptor->u.ss.DeviceRemovable)
2336 & (1 << port))
2337 removable = false;
2338 } else {
2339 if (hub->descriptor->u.hs.DeviceRemovable[port / 8] & (1 << (port % 8)))
2340 removable = false;
2343 if (removable)
2344 udev->removable = USB_DEVICE_REMOVABLE;
2345 else
2346 udev->removable = USB_DEVICE_FIXED;
2350 * usb_new_device - perform initial device setup (usbcore-internal)
2351 * @udev: newly addressed device (in ADDRESS state)
2353 * This is called with devices which have been detected but not fully
2354 * enumerated. The device descriptor is available, but not descriptors
2355 * for any device configuration. The caller must have locked either
2356 * the parent hub (if udev is a normal device) or else the
2357 * usb_bus_list_lock (if udev is a root hub). The parent's pointer to
2358 * udev has already been installed, but udev is not yet visible through
2359 * sysfs or other filesystem code.
2361 * This call is synchronous, and may not be used in an interrupt context.
2363 * Only the hub driver or root-hub registrar should ever call this.
2365 * Return: Whether the device is configured properly or not. Zero if the
2366 * interface was registered with the driver core; else a negative errno
2367 * value.
2370 int usb_new_device(struct usb_device *udev)
2372 int err;
2374 if (udev->parent) {
2375 /* Initialize non-root-hub device wakeup to disabled;
2376 * device (un)configuration controls wakeup capable
2377 * sysfs power/wakeup controls wakeup enabled/disabled
2379 device_init_wakeup(&udev->dev, 0);
2382 /* Tell the runtime-PM framework the device is active */
2383 pm_runtime_set_active(&udev->dev);
2384 pm_runtime_get_noresume(&udev->dev);
2385 pm_runtime_use_autosuspend(&udev->dev);
2386 pm_runtime_enable(&udev->dev);
2388 /* By default, forbid autosuspend for all devices. It will be
2389 * allowed for hubs during binding.
2391 usb_disable_autosuspend(udev);
2393 err = usb_enumerate_device(udev); /* Read descriptors */
2394 if (err < 0)
2395 goto fail;
2396 dev_dbg(&udev->dev, "udev %d, busnum %d, minor = %d\n",
2397 udev->devnum, udev->bus->busnum,
2398 (((udev->bus->busnum-1) * 128) + (udev->devnum-1)));
2399 /* export the usbdev device-node for libusb */
2400 udev->dev.devt = MKDEV(USB_DEVICE_MAJOR,
2401 (((udev->bus->busnum-1) * 128) + (udev->devnum-1)));
2403 /* Tell the world! */
2404 announce_device(udev);
2406 if (udev->serial)
2407 add_device_randomness(udev->serial, strlen(udev->serial));
2408 if (udev->product)
2409 add_device_randomness(udev->product, strlen(udev->product));
2410 if (udev->manufacturer)
2411 add_device_randomness(udev->manufacturer,
2412 strlen(udev->manufacturer));
2414 device_enable_async_suspend(&udev->dev);
2417 * check whether the hub marks this port as non-removable. Do it
2418 * now so that platform-specific data can override it in
2419 * device_add()
2421 if (udev->parent)
2422 set_usb_port_removable(udev);
2424 /* Register the device. The device driver is responsible
2425 * for configuring the device and invoking the add-device
2426 * notifier chain (used by usbfs and possibly others).
2428 err = device_add(&udev->dev);
2429 if (err) {
2430 dev_err(&udev->dev, "can't device_add, error %d\n", err);
2431 goto fail;
2434 /* Create link files between child device and usb port device. */
2435 if (udev->parent) {
2436 struct usb_hub *hub = usb_hub_to_struct_hub(udev->parent);
2437 struct usb_port *port_dev = hub->ports[udev->portnum - 1];
2439 err = sysfs_create_link(&udev->dev.kobj,
2440 &port_dev->dev.kobj, "port");
2441 if (err)
2442 goto fail;
2444 err = sysfs_create_link(&port_dev->dev.kobj,
2445 &udev->dev.kobj, "device");
2446 if (err) {
2447 sysfs_remove_link(&udev->dev.kobj, "port");
2448 goto fail;
2451 pm_runtime_get_sync(&port_dev->dev);
2454 (void) usb_create_ep_devs(&udev->dev, &udev->ep0, udev);
2455 usb_mark_last_busy(udev);
2456 pm_runtime_put_sync_autosuspend(&udev->dev);
2457 return err;
2459 fail:
2460 usb_set_device_state(udev, USB_STATE_NOTATTACHED);
2461 pm_runtime_disable(&udev->dev);
2462 pm_runtime_set_suspended(&udev->dev);
2463 return err;
2468 * usb_deauthorize_device - deauthorize a device (usbcore-internal)
2469 * @usb_dev: USB device
2471 * Move the USB device to a very basic state where interfaces are disabled
2472 * and the device is in fact unconfigured and unusable.
2474 * We share a lock (that we have) with device_del(), so we need to
2475 * defer its call.
2477 * Return: 0.
2479 int usb_deauthorize_device(struct usb_device *usb_dev)
2481 usb_lock_device(usb_dev);
2482 if (usb_dev->authorized == 0)
2483 goto out_unauthorized;
2485 usb_dev->authorized = 0;
2486 usb_set_configuration(usb_dev, -1);
2488 out_unauthorized:
2489 usb_unlock_device(usb_dev);
2490 return 0;
2494 int usb_authorize_device(struct usb_device *usb_dev)
2496 int result = 0, c;
2498 usb_lock_device(usb_dev);
2499 if (usb_dev->authorized == 1)
2500 goto out_authorized;
2502 result = usb_autoresume_device(usb_dev);
2503 if (result < 0) {
2504 dev_err(&usb_dev->dev,
2505 "can't autoresume for authorization: %d\n", result);
2506 goto error_autoresume;
2508 result = usb_get_device_descriptor(usb_dev, sizeof(usb_dev->descriptor));
2509 if (result < 0) {
2510 dev_err(&usb_dev->dev, "can't re-read device descriptor for "
2511 "authorization: %d\n", result);
2512 goto error_device_descriptor;
2515 usb_dev->authorized = 1;
2516 /* Choose and set the configuration. This registers the interfaces
2517 * with the driver core and lets interface drivers bind to them.
2519 c = usb_choose_configuration(usb_dev);
2520 if (c >= 0) {
2521 result = usb_set_configuration(usb_dev, c);
2522 if (result) {
2523 dev_err(&usb_dev->dev,
2524 "can't set config #%d, error %d\n", c, result);
2525 /* This need not be fatal. The user can try to
2526 * set other configurations. */
2529 dev_info(&usb_dev->dev, "authorized to connect\n");
2531 error_device_descriptor:
2532 usb_autosuspend_device(usb_dev);
2533 error_autoresume:
2534 out_authorized:
2535 usb_unlock_device(usb_dev); // complements locktree
2536 return result;
2540 /* Returns 1 if @hub is a WUSB root hub, 0 otherwise */
2541 static unsigned hub_is_wusb(struct usb_hub *hub)
2543 struct usb_hcd *hcd;
2544 if (hub->hdev->parent != NULL) /* not a root hub? */
2545 return 0;
2546 hcd = container_of(hub->hdev->bus, struct usb_hcd, self);
2547 return hcd->wireless;
2551 #define PORT_RESET_TRIES 5
2552 #define SET_ADDRESS_TRIES 2
2553 #define GET_DESCRIPTOR_TRIES 2
2554 #define SET_CONFIG_TRIES (2 * (use_both_schemes + 1))
2555 #define USE_NEW_SCHEME(i) ((i) / 2 == (int)old_scheme_first)
2557 #define HUB_ROOT_RESET_TIME 50 /* times are in msec */
2558 #define HUB_SHORT_RESET_TIME 10
2559 #define HUB_BH_RESET_TIME 50
2560 #define HUB_LONG_RESET_TIME 200
2561 #define HUB_RESET_TIMEOUT 800
2563 /* Is a USB 3.0 port in the Inactive or Complinance Mode state?
2564 * Port worm reset is required to recover
2566 static bool hub_port_warm_reset_required(struct usb_hub *hub, u16 portstatus)
2568 return hub_is_superspeed(hub->hdev) &&
2569 (((portstatus & USB_PORT_STAT_LINK_STATE) ==
2570 USB_SS_PORT_LS_SS_INACTIVE) ||
2571 ((portstatus & USB_PORT_STAT_LINK_STATE) ==
2572 USB_SS_PORT_LS_COMP_MOD)) ;
2575 static int hub_port_wait_reset(struct usb_hub *hub, int port1,
2576 struct usb_device *udev, unsigned int delay, bool warm)
2578 int delay_time, ret;
2579 u16 portstatus;
2580 u16 portchange;
2582 for (delay_time = 0;
2583 delay_time < HUB_RESET_TIMEOUT;
2584 delay_time += delay) {
2585 /* wait to give the device a chance to reset */
2586 msleep(delay);
2588 /* read and decode port status */
2589 ret = hub_port_status(hub, port1, &portstatus, &portchange);
2590 if (ret < 0)
2591 return ret;
2593 /* The port state is unknown until the reset completes. */
2594 if (!(portstatus & USB_PORT_STAT_RESET))
2595 break;
2597 /* switch to the long delay after two short delay failures */
2598 if (delay_time >= 2 * HUB_SHORT_RESET_TIME)
2599 delay = HUB_LONG_RESET_TIME;
2601 dev_dbg (hub->intfdev,
2602 "port %d not %sreset yet, waiting %dms\n",
2603 port1, warm ? "warm " : "", delay);
2606 if ((portstatus & USB_PORT_STAT_RESET))
2607 return -EBUSY;
2609 if (hub_port_warm_reset_required(hub, portstatus))
2610 return -ENOTCONN;
2612 /* Device went away? */
2613 if (!(portstatus & USB_PORT_STAT_CONNECTION))
2614 return -ENOTCONN;
2616 /* bomb out completely if the connection bounced. A USB 3.0
2617 * connection may bounce if multiple warm resets were issued,
2618 * but the device may have successfully re-connected. Ignore it.
2620 if (!hub_is_superspeed(hub->hdev) &&
2621 (portchange & USB_PORT_STAT_C_CONNECTION))
2622 return -ENOTCONN;
2624 if (!(portstatus & USB_PORT_STAT_ENABLE))
2625 return -EBUSY;
2627 if (!udev)
2628 return 0;
2630 if (hub_is_wusb(hub))
2631 udev->speed = USB_SPEED_WIRELESS;
2632 else if (hub_is_superspeed(hub->hdev))
2633 udev->speed = USB_SPEED_SUPER;
2634 else if (portstatus & USB_PORT_STAT_HIGH_SPEED)
2635 udev->speed = USB_SPEED_HIGH;
2636 else if (portstatus & USB_PORT_STAT_LOW_SPEED)
2637 udev->speed = USB_SPEED_LOW;
2638 else
2639 udev->speed = USB_SPEED_FULL;
2640 return 0;
2643 /* Handle port reset and port warm(BH) reset (for USB3 protocol ports) */
2644 static int hub_port_reset(struct usb_hub *hub, int port1,
2645 struct usb_device *udev, unsigned int delay, bool warm)
2647 int i, status;
2648 u16 portchange, portstatus;
2650 if (!hub_is_superspeed(hub->hdev)) {
2651 if (warm) {
2652 dev_err(hub->intfdev, "only USB3 hub support "
2653 "warm reset\n");
2654 return -EINVAL;
2656 /* Block EHCI CF initialization during the port reset.
2657 * Some companion controllers don't like it when they mix.
2659 down_read(&ehci_cf_port_reset_rwsem);
2660 } else if (!warm) {
2662 * If the caller hasn't explicitly requested a warm reset,
2663 * double check and see if one is needed.
2665 if (hub_port_status(hub, port1, &portstatus, &portchange) == 0)
2666 if (hub_port_warm_reset_required(hub,
2667 portstatus))
2668 warm = true;
2671 /* Reset the port */
2672 for (i = 0; i < PORT_RESET_TRIES; i++) {
2673 status = set_port_feature(hub->hdev, port1, (warm ?
2674 USB_PORT_FEAT_BH_PORT_RESET :
2675 USB_PORT_FEAT_RESET));
2676 if (status == -ENODEV) {
2677 ; /* The hub is gone */
2678 } else if (status) {
2679 dev_err(hub->intfdev,
2680 "cannot %sreset port %d (err = %d)\n",
2681 warm ? "warm " : "", port1, status);
2682 } else {
2683 status = hub_port_wait_reset(hub, port1, udev, delay,
2684 warm);
2685 if (status && status != -ENOTCONN && status != -ENODEV)
2686 dev_dbg(hub->intfdev,
2687 "port_wait_reset: err = %d\n",
2688 status);
2691 /* Check for disconnect or reset */
2692 if (status == 0 || status == -ENOTCONN || status == -ENODEV) {
2693 usb_clear_port_feature(hub->hdev, port1,
2694 USB_PORT_FEAT_C_RESET);
2696 if (!hub_is_superspeed(hub->hdev))
2697 goto done;
2699 usb_clear_port_feature(hub->hdev, port1,
2700 USB_PORT_FEAT_C_BH_PORT_RESET);
2701 usb_clear_port_feature(hub->hdev, port1,
2702 USB_PORT_FEAT_C_PORT_LINK_STATE);
2703 usb_clear_port_feature(hub->hdev, port1,
2704 USB_PORT_FEAT_C_CONNECTION);
2707 * If a USB 3.0 device migrates from reset to an error
2708 * state, re-issue the warm reset.
2710 if (hub_port_status(hub, port1,
2711 &portstatus, &portchange) < 0)
2712 goto done;
2714 if (!hub_port_warm_reset_required(hub, portstatus))
2715 goto done;
2718 * If the port is in SS.Inactive or Compliance Mode, the
2719 * hot or warm reset failed. Try another warm reset.
2721 if (!warm) {
2722 dev_dbg(hub->intfdev, "hot reset failed, warm reset port %d\n",
2723 port1);
2724 warm = true;
2728 dev_dbg (hub->intfdev,
2729 "port %d not enabled, trying %sreset again...\n",
2730 port1, warm ? "warm " : "");
2731 delay = HUB_LONG_RESET_TIME;
2734 dev_err (hub->intfdev,
2735 "Cannot enable port %i. Maybe the USB cable is bad?\n",
2736 port1);
2738 done:
2739 if (status == 0) {
2740 /* TRSTRCY = 10 ms; plus some extra */
2741 msleep(10 + 40);
2742 if (udev) {
2743 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
2745 update_devnum(udev, 0);
2746 /* The xHC may think the device is already reset,
2747 * so ignore the status.
2749 if (hcd->driver->reset_device)
2750 hcd->driver->reset_device(hcd, udev);
2752 usb_set_device_state(udev, USB_STATE_DEFAULT);
2754 } else {
2755 if (udev)
2756 usb_set_device_state(udev, USB_STATE_NOTATTACHED);
2759 if (!hub_is_superspeed(hub->hdev))
2760 up_read(&ehci_cf_port_reset_rwsem);
2762 return status;
2765 /* Check if a port is power on */
2766 static int port_is_power_on(struct usb_hub *hub, unsigned portstatus)
2768 int ret = 0;
2770 if (hub_is_superspeed(hub->hdev)) {
2771 if (portstatus & USB_SS_PORT_STAT_POWER)
2772 ret = 1;
2773 } else {
2774 if (portstatus & USB_PORT_STAT_POWER)
2775 ret = 1;
2778 return ret;
2781 #ifdef CONFIG_PM
2783 /* Check if a port is suspended(USB2.0 port) or in U3 state(USB3.0 port) */
2784 static int port_is_suspended(struct usb_hub *hub, unsigned portstatus)
2786 int ret = 0;
2788 if (hub_is_superspeed(hub->hdev)) {
2789 if ((portstatus & USB_PORT_STAT_LINK_STATE)
2790 == USB_SS_PORT_LS_U3)
2791 ret = 1;
2792 } else {
2793 if (portstatus & USB_PORT_STAT_SUSPEND)
2794 ret = 1;
2797 return ret;
2800 /* Determine whether the device on a port is ready for a normal resume,
2801 * is ready for a reset-resume, or should be disconnected.
2803 static int check_port_resume_type(struct usb_device *udev,
2804 struct usb_hub *hub, int port1,
2805 int status, unsigned portchange, unsigned portstatus)
2807 /* Is the device still present? */
2808 if (status || port_is_suspended(hub, portstatus) ||
2809 !port_is_power_on(hub, portstatus) ||
2810 !(portstatus & USB_PORT_STAT_CONNECTION)) {
2811 if (status >= 0)
2812 status = -ENODEV;
2815 /* Can't do a normal resume if the port isn't enabled,
2816 * so try a reset-resume instead.
2818 else if (!(portstatus & USB_PORT_STAT_ENABLE) && !udev->reset_resume) {
2819 if (udev->persist_enabled)
2820 udev->reset_resume = 1;
2821 else
2822 status = -ENODEV;
2825 if (status) {
2826 dev_dbg(hub->intfdev,
2827 "port %d status %04x.%04x after resume, %d\n",
2828 port1, portchange, portstatus, status);
2829 } else if (udev->reset_resume) {
2831 /* Late port handoff can set status-change bits */
2832 if (portchange & USB_PORT_STAT_C_CONNECTION)
2833 usb_clear_port_feature(hub->hdev, port1,
2834 USB_PORT_FEAT_C_CONNECTION);
2835 if (portchange & USB_PORT_STAT_C_ENABLE)
2836 usb_clear_port_feature(hub->hdev, port1,
2837 USB_PORT_FEAT_C_ENABLE);
2840 return status;
2843 int usb_disable_ltm(struct usb_device *udev)
2845 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
2847 /* Check if the roothub and device supports LTM. */
2848 if (!usb_device_supports_ltm(hcd->self.root_hub) ||
2849 !usb_device_supports_ltm(udev))
2850 return 0;
2852 /* Clear Feature LTM Enable can only be sent if the device is
2853 * configured.
2855 if (!udev->actconfig)
2856 return 0;
2858 return usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
2859 USB_REQ_CLEAR_FEATURE, USB_RECIP_DEVICE,
2860 USB_DEVICE_LTM_ENABLE, 0, NULL, 0,
2861 USB_CTRL_SET_TIMEOUT);
2863 EXPORT_SYMBOL_GPL(usb_disable_ltm);
2865 void usb_enable_ltm(struct usb_device *udev)
2867 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
2869 /* Check if the roothub and device supports LTM. */
2870 if (!usb_device_supports_ltm(hcd->self.root_hub) ||
2871 !usb_device_supports_ltm(udev))
2872 return;
2874 /* Set Feature LTM Enable can only be sent if the device is
2875 * configured.
2877 if (!udev->actconfig)
2878 return;
2880 usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
2881 USB_REQ_SET_FEATURE, USB_RECIP_DEVICE,
2882 USB_DEVICE_LTM_ENABLE, 0, NULL, 0,
2883 USB_CTRL_SET_TIMEOUT);
2885 EXPORT_SYMBOL_GPL(usb_enable_ltm);
2888 * usb_enable_remote_wakeup - enable remote wakeup for a device
2889 * @udev: target device
2891 * For USB-2 devices: Set the device's remote wakeup feature.
2893 * For USB-3 devices: Assume there's only one function on the device and
2894 * enable remote wake for the first interface. FIXME if the interface
2895 * association descriptor shows there's more than one function.
2897 static int usb_enable_remote_wakeup(struct usb_device *udev)
2899 if (udev->speed < USB_SPEED_SUPER)
2900 return usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
2901 USB_REQ_SET_FEATURE, USB_RECIP_DEVICE,
2902 USB_DEVICE_REMOTE_WAKEUP, 0, NULL, 0,
2903 USB_CTRL_SET_TIMEOUT);
2904 else
2905 return usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
2906 USB_REQ_SET_FEATURE, USB_RECIP_INTERFACE,
2907 USB_INTRF_FUNC_SUSPEND,
2908 USB_INTRF_FUNC_SUSPEND_RW |
2909 USB_INTRF_FUNC_SUSPEND_LP,
2910 NULL, 0, USB_CTRL_SET_TIMEOUT);
2914 * usb_disable_remote_wakeup - disable remote wakeup for a device
2915 * @udev: target device
2917 * For USB-2 devices: Clear the device's remote wakeup feature.
2919 * For USB-3 devices: Assume there's only one function on the device and
2920 * disable remote wake for the first interface. FIXME if the interface
2921 * association descriptor shows there's more than one function.
2923 static int usb_disable_remote_wakeup(struct usb_device *udev)
2925 if (udev->speed < USB_SPEED_SUPER)
2926 return usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
2927 USB_REQ_CLEAR_FEATURE, USB_RECIP_DEVICE,
2928 USB_DEVICE_REMOTE_WAKEUP, 0, NULL, 0,
2929 USB_CTRL_SET_TIMEOUT);
2930 else
2931 return usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
2932 USB_REQ_CLEAR_FEATURE, USB_RECIP_INTERFACE,
2933 USB_INTRF_FUNC_SUSPEND, 0, NULL, 0,
2934 USB_CTRL_SET_TIMEOUT);
2937 /* Count of wakeup-enabled devices at or below udev */
2938 static unsigned wakeup_enabled_descendants(struct usb_device *udev)
2940 struct usb_hub *hub = usb_hub_to_struct_hub(udev);
2942 return udev->do_remote_wakeup +
2943 (hub ? hub->wakeup_enabled_descendants : 0);
2947 * usb_port_suspend - suspend a usb device's upstream port
2948 * @udev: device that's no longer in active use, not a root hub
2949 * Context: must be able to sleep; device not locked; pm locks held
2951 * Suspends a USB device that isn't in active use, conserving power.
2952 * Devices may wake out of a suspend, if anything important happens,
2953 * using the remote wakeup mechanism. They may also be taken out of
2954 * suspend by the host, using usb_port_resume(). It's also routine
2955 * to disconnect devices while they are suspended.
2957 * This only affects the USB hardware for a device; its interfaces
2958 * (and, for hubs, child devices) must already have been suspended.
2960 * Selective port suspend reduces power; most suspended devices draw
2961 * less than 500 uA. It's also used in OTG, along with remote wakeup.
2962 * All devices below the suspended port are also suspended.
2964 * Devices leave suspend state when the host wakes them up. Some devices
2965 * also support "remote wakeup", where the device can activate the USB
2966 * tree above them to deliver data, such as a keypress or packet. In
2967 * some cases, this wakes the USB host.
2969 * Suspending OTG devices may trigger HNP, if that's been enabled
2970 * between a pair of dual-role devices. That will change roles, such
2971 * as from A-Host to A-Peripheral or from B-Host back to B-Peripheral.
2973 * Devices on USB hub ports have only one "suspend" state, corresponding
2974 * to ACPI D2, "may cause the device to lose some context".
2975 * State transitions include:
2977 * - suspend, resume ... when the VBUS power link stays live
2978 * - suspend, disconnect ... VBUS lost
2980 * Once VBUS drop breaks the circuit, the port it's using has to go through
2981 * normal re-enumeration procedures, starting with enabling VBUS power.
2982 * Other than re-initializing the hub (plug/unplug, except for root hubs),
2983 * Linux (2.6) currently has NO mechanisms to initiate that: no khubd
2984 * timer, no SRP, no requests through sysfs.
2986 * If Runtime PM isn't enabled or used, non-SuperSpeed devices may not get
2987 * suspended until their bus goes into global suspend (i.e., the root
2988 * hub is suspended). Nevertheless, we change @udev->state to
2989 * USB_STATE_SUSPENDED as this is the device's "logical" state. The actual
2990 * upstream port setting is stored in @udev->port_is_suspended.
2992 * Returns 0 on success, else negative errno.
2994 int usb_port_suspend(struct usb_device *udev, pm_message_t msg)
2996 struct usb_hub *hub = usb_hub_to_struct_hub(udev->parent);
2997 struct usb_port *port_dev = hub->ports[udev->portnum - 1];
2998 int port1 = udev->portnum;
2999 int status;
3000 bool really_suspend = true;
3002 /* enable remote wakeup when appropriate; this lets the device
3003 * wake up the upstream hub (including maybe the root hub).
3005 * NOTE: OTG devices may issue remote wakeup (or SRP) even when
3006 * we don't explicitly enable it here.
3008 if (udev->do_remote_wakeup) {
3009 status = usb_enable_remote_wakeup(udev);
3010 if (status) {
3011 dev_dbg(&udev->dev, "won't remote wakeup, status %d\n",
3012 status);
3013 /* bail if autosuspend is requested */
3014 if (PMSG_IS_AUTO(msg))
3015 goto err_wakeup;
3019 /* disable USB2 hardware LPM */
3020 if (udev->usb2_hw_lpm_enabled == 1)
3021 usb_set_usb2_hardware_lpm(udev, 0);
3023 if (usb_disable_ltm(udev)) {
3024 dev_err(&udev->dev, "Failed to disable LTM before suspend\n.");
3025 status = -ENOMEM;
3026 if (PMSG_IS_AUTO(msg))
3027 goto err_ltm;
3029 if (usb_unlocked_disable_lpm(udev)) {
3030 dev_err(&udev->dev, "Failed to disable LPM before suspend\n.");
3031 status = -ENOMEM;
3032 if (PMSG_IS_AUTO(msg))
3033 goto err_lpm3;
3036 /* see 7.1.7.6 */
3037 if (hub_is_superspeed(hub->hdev))
3038 status = hub_set_port_link_state(hub, port1, USB_SS_PORT_LS_U3);
3041 * For system suspend, we do not need to enable the suspend feature
3042 * on individual USB-2 ports. The devices will automatically go
3043 * into suspend a few ms after the root hub stops sending packets.
3044 * The USB 2.0 spec calls this "global suspend".
3046 * However, many USB hubs have a bug: They don't relay wakeup requests
3047 * from a downstream port if the port's suspend feature isn't on.
3048 * Therefore we will turn on the suspend feature if udev or any of its
3049 * descendants is enabled for remote wakeup.
3051 else if (PMSG_IS_AUTO(msg) || wakeup_enabled_descendants(udev) > 0)
3052 status = set_port_feature(hub->hdev, port1,
3053 USB_PORT_FEAT_SUSPEND);
3054 else {
3055 really_suspend = false;
3056 status = 0;
3058 if (status) {
3059 dev_dbg(hub->intfdev, "can't suspend port %d, status %d\n",
3060 port1, status);
3062 /* Try to enable USB3 LPM and LTM again */
3063 usb_unlocked_enable_lpm(udev);
3064 err_lpm3:
3065 usb_enable_ltm(udev);
3066 err_ltm:
3067 /* Try to enable USB2 hardware LPM again */
3068 if (udev->usb2_hw_lpm_capable == 1)
3069 usb_set_usb2_hardware_lpm(udev, 1);
3071 if (udev->do_remote_wakeup)
3072 (void) usb_disable_remote_wakeup(udev);
3073 err_wakeup:
3075 /* System sleep transitions should never fail */
3076 if (!PMSG_IS_AUTO(msg))
3077 status = 0;
3078 } else {
3079 dev_dbg(&udev->dev, "usb %ssuspend, wakeup %d\n",
3080 (PMSG_IS_AUTO(msg) ? "auto-" : ""),
3081 udev->do_remote_wakeup);
3082 if (really_suspend) {
3083 udev->port_is_suspended = 1;
3085 /* device has up to 10 msec to fully suspend */
3086 msleep(10);
3088 usb_set_device_state(udev, USB_STATE_SUSPENDED);
3091 if (status == 0 && !udev->do_remote_wakeup && udev->persist_enabled) {
3092 pm_runtime_put_sync(&port_dev->dev);
3093 port_dev->did_runtime_put = true;
3096 usb_mark_last_busy(hub->hdev);
3097 return status;
3101 * If the USB "suspend" state is in use (rather than "global suspend"),
3102 * many devices will be individually taken out of suspend state using
3103 * special "resume" signaling. This routine kicks in shortly after
3104 * hardware resume signaling is finished, either because of selective
3105 * resume (by host) or remote wakeup (by device) ... now see what changed
3106 * in the tree that's rooted at this device.
3108 * If @udev->reset_resume is set then the device is reset before the
3109 * status check is done.
3111 static int finish_port_resume(struct usb_device *udev)
3113 int status = 0;
3114 u16 devstatus = 0;
3116 /* caller owns the udev device lock */
3117 dev_dbg(&udev->dev, "%s\n",
3118 udev->reset_resume ? "finish reset-resume" : "finish resume");
3120 /* usb ch9 identifies four variants of SUSPENDED, based on what
3121 * state the device resumes to. Linux currently won't see the
3122 * first two on the host side; they'd be inside hub_port_init()
3123 * during many timeouts, but khubd can't suspend until later.
3125 usb_set_device_state(udev, udev->actconfig
3126 ? USB_STATE_CONFIGURED
3127 : USB_STATE_ADDRESS);
3129 /* 10.5.4.5 says not to reset a suspended port if the attached
3130 * device is enabled for remote wakeup. Hence the reset
3131 * operation is carried out here, after the port has been
3132 * resumed.
3134 if (udev->reset_resume)
3135 retry_reset_resume:
3136 status = usb_reset_and_verify_device(udev);
3138 /* 10.5.4.5 says be sure devices in the tree are still there.
3139 * For now let's assume the device didn't go crazy on resume,
3140 * and device drivers will know about any resume quirks.
3142 if (status == 0) {
3143 devstatus = 0;
3144 status = usb_get_status(udev, USB_RECIP_DEVICE, 0, &devstatus);
3146 /* If a normal resume failed, try doing a reset-resume */
3147 if (status && !udev->reset_resume && udev->persist_enabled) {
3148 dev_dbg(&udev->dev, "retry with reset-resume\n");
3149 udev->reset_resume = 1;
3150 goto retry_reset_resume;
3154 if (status) {
3155 dev_dbg(&udev->dev, "gone after usb resume? status %d\n",
3156 status);
3158 * There are a few quirky devices which violate the standard
3159 * by claiming to have remote wakeup enabled after a reset,
3160 * which crash if the feature is cleared, hence check for
3161 * udev->reset_resume
3163 } else if (udev->actconfig && !udev->reset_resume) {
3164 if (udev->speed < USB_SPEED_SUPER) {
3165 if (devstatus & (1 << USB_DEVICE_REMOTE_WAKEUP))
3166 status = usb_disable_remote_wakeup(udev);
3167 } else {
3168 status = usb_get_status(udev, USB_RECIP_INTERFACE, 0,
3169 &devstatus);
3170 if (!status && devstatus & (USB_INTRF_STAT_FUNC_RW_CAP
3171 | USB_INTRF_STAT_FUNC_RW))
3172 status = usb_disable_remote_wakeup(udev);
3175 if (status)
3176 dev_dbg(&udev->dev,
3177 "disable remote wakeup, status %d\n",
3178 status);
3179 status = 0;
3181 return status;
3185 * There are some SS USB devices which take longer time for link training.
3186 * XHCI specs 4.19.4 says that when Link training is successful, port
3187 * sets CCS bit to 1. So if SW reads port status before successful link
3188 * training, then it will not find device to be present.
3189 * USB Analyzer log with such buggy devices show that in some cases
3190 * device switch on the RX termination after long delay of host enabling
3191 * the VBUS. In few other cases it has been seen that device fails to
3192 * negotiate link training in first attempt. It has been
3193 * reported till now that few devices take as long as 2000 ms to train
3194 * the link after host enabling its VBUS and termination. Following
3195 * routine implements a 2000 ms timeout for link training. If in a case
3196 * link trains before timeout, loop will exit earlier.
3198 * There are also some 2.0 hard drive based devices and 3.0 thumb
3199 * drives that, when plugged into a 2.0 only port, take a long
3200 * time to set CCS after VBUS enable.
3202 * FIXME: If a device was connected before suspend, but was removed
3203 * while system was asleep, then the loop in the following routine will
3204 * only exit at timeout.
3206 * This routine should only be called when persist is enabled.
3208 static int wait_for_connected(struct usb_device *udev,
3209 struct usb_hub *hub, int *port1,
3210 u16 *portchange, u16 *portstatus)
3212 int status = 0, delay_ms = 0;
3214 while (delay_ms < 2000) {
3215 if (status || *portstatus & USB_PORT_STAT_CONNECTION)
3216 break;
3217 msleep(20);
3218 delay_ms += 20;
3219 status = hub_port_status(hub, *port1, portstatus, portchange);
3221 dev_dbg(&udev->dev, "Waited %dms for CONNECT\n", delay_ms);
3222 return status;
3226 * usb_port_resume - re-activate a suspended usb device's upstream port
3227 * @udev: device to re-activate, not a root hub
3228 * Context: must be able to sleep; device not locked; pm locks held
3230 * This will re-activate the suspended device, increasing power usage
3231 * while letting drivers communicate again with its endpoints.
3232 * USB resume explicitly guarantees that the power session between
3233 * the host and the device is the same as it was when the device
3234 * suspended.
3236 * If @udev->reset_resume is set then this routine won't check that the
3237 * port is still enabled. Furthermore, finish_port_resume() above will
3238 * reset @udev. The end result is that a broken power session can be
3239 * recovered and @udev will appear to persist across a loss of VBUS power.
3241 * For example, if a host controller doesn't maintain VBUS suspend current
3242 * during a system sleep or is reset when the system wakes up, all the USB
3243 * power sessions below it will be broken. This is especially troublesome
3244 * for mass-storage devices containing mounted filesystems, since the
3245 * device will appear to have disconnected and all the memory mappings
3246 * to it will be lost. Using the USB_PERSIST facility, the device can be
3247 * made to appear as if it had not disconnected.
3249 * This facility can be dangerous. Although usb_reset_and_verify_device() makes
3250 * every effort to insure that the same device is present after the
3251 * reset as before, it cannot provide a 100% guarantee. Furthermore it's
3252 * quite possible for a device to remain unaltered but its media to be
3253 * changed. If the user replaces a flash memory card while the system is
3254 * asleep, he will have only himself to blame when the filesystem on the
3255 * new card is corrupted and the system crashes.
3257 * Returns 0 on success, else negative errno.
3259 int usb_port_resume(struct usb_device *udev, pm_message_t msg)
3261 struct usb_hub *hub = usb_hub_to_struct_hub(udev->parent);
3262 struct usb_port *port_dev = hub->ports[udev->portnum - 1];
3263 int port1 = udev->portnum;
3264 int status;
3265 u16 portchange, portstatus;
3267 if (port_dev->did_runtime_put) {
3268 status = pm_runtime_get_sync(&port_dev->dev);
3269 port_dev->did_runtime_put = false;
3270 if (status < 0) {
3271 dev_dbg(&udev->dev, "can't resume usb port, status %d\n",
3272 status);
3273 return status;
3277 /* Skip the initial Clear-Suspend step for a remote wakeup */
3278 status = hub_port_status(hub, port1, &portstatus, &portchange);
3279 if (status == 0 && !port_is_suspended(hub, portstatus))
3280 goto SuspendCleared;
3282 // dev_dbg(hub->intfdev, "resume port %d\n", port1);
3284 set_bit(port1, hub->busy_bits);
3286 /* see 7.1.7.7; affects power usage, but not budgeting */
3287 if (hub_is_superspeed(hub->hdev))
3288 status = hub_set_port_link_state(hub, port1, USB_SS_PORT_LS_U0);
3289 else
3290 status = usb_clear_port_feature(hub->hdev,
3291 port1, USB_PORT_FEAT_SUSPEND);
3292 if (status) {
3293 dev_dbg(hub->intfdev, "can't resume port %d, status %d\n",
3294 port1, status);
3295 } else {
3296 /* drive resume for USB_RESUME_TIMEOUT msec */
3297 dev_dbg(&udev->dev, "usb %sresume\n",
3298 (PMSG_IS_AUTO(msg) ? "auto-" : ""));
3299 msleep(USB_RESUME_TIMEOUT);
3301 /* Virtual root hubs can trigger on GET_PORT_STATUS to
3302 * stop resume signaling. Then finish the resume
3303 * sequence.
3305 status = hub_port_status(hub, port1, &portstatus, &portchange);
3307 /* TRSMRCY = 10 msec */
3308 msleep(10);
3311 SuspendCleared:
3312 if (status == 0) {
3313 udev->port_is_suspended = 0;
3314 if (hub_is_superspeed(hub->hdev)) {
3315 if (portchange & USB_PORT_STAT_C_LINK_STATE)
3316 usb_clear_port_feature(hub->hdev, port1,
3317 USB_PORT_FEAT_C_PORT_LINK_STATE);
3318 } else {
3319 if (portchange & USB_PORT_STAT_C_SUSPEND)
3320 usb_clear_port_feature(hub->hdev, port1,
3321 USB_PORT_FEAT_C_SUSPEND);
3325 clear_bit(port1, hub->busy_bits);
3327 if (udev->persist_enabled)
3328 status = wait_for_connected(udev, hub, &port1, &portchange,
3329 &portstatus);
3331 status = check_port_resume_type(udev,
3332 hub, port1, status, portchange, portstatus);
3333 if (status == 0)
3334 status = finish_port_resume(udev);
3335 if (status < 0) {
3336 dev_dbg(&udev->dev, "can't resume, status %d\n", status);
3337 hub_port_logical_disconnect(hub, port1);
3338 } else {
3339 /* Try to enable USB2 hardware LPM */
3340 if (udev->usb2_hw_lpm_capable == 1)
3341 usb_set_usb2_hardware_lpm(udev, 1);
3343 /* Try to enable USB3 LTM and LPM */
3344 usb_enable_ltm(udev);
3345 usb_unlocked_enable_lpm(udev);
3348 return status;
3351 #ifdef CONFIG_PM_RUNTIME
3353 /* caller has locked udev */
3354 int usb_remote_wakeup(struct usb_device *udev)
3356 int status = 0;
3358 if (udev->state == USB_STATE_SUSPENDED) {
3359 dev_dbg(&udev->dev, "usb %sresume\n", "wakeup-");
3360 status = usb_autoresume_device(udev);
3361 if (status == 0) {
3362 /* Let the drivers do their thing, then... */
3363 usb_autosuspend_device(udev);
3366 return status;
3369 #endif
3371 static int check_ports_changed(struct usb_hub *hub)
3373 int port1;
3375 for (port1 = 1; port1 <= hub->hdev->maxchild; ++port1) {
3376 u16 portstatus, portchange;
3377 int status;
3379 status = hub_port_status(hub, port1, &portstatus, &portchange);
3380 if (!status && portchange)
3381 return 1;
3383 return 0;
3386 static int hub_suspend(struct usb_interface *intf, pm_message_t msg)
3388 struct usb_hub *hub = usb_get_intfdata (intf);
3389 struct usb_device *hdev = hub->hdev;
3390 unsigned port1;
3391 int status;
3394 * Warn if children aren't already suspended.
3395 * Also, add up the number of wakeup-enabled descendants.
3397 hub->wakeup_enabled_descendants = 0;
3398 for (port1 = 1; port1 <= hdev->maxchild; port1++) {
3399 struct usb_device *udev;
3401 udev = hub->ports[port1 - 1]->child;
3402 if (udev && udev->can_submit) {
3403 dev_warn(&intf->dev, "port %d nyet suspended\n", port1);
3404 if (PMSG_IS_AUTO(msg))
3405 return -EBUSY;
3407 if (udev)
3408 hub->wakeup_enabled_descendants +=
3409 wakeup_enabled_descendants(udev);
3412 if (hdev->do_remote_wakeup && hub->quirk_check_port_auto_suspend) {
3413 /* check if there are changes pending on hub ports */
3414 if (check_ports_changed(hub)) {
3415 if (PMSG_IS_AUTO(msg))
3416 return -EBUSY;
3417 pm_wakeup_event(&hdev->dev, 2000);
3421 if (hub_is_superspeed(hdev) && hdev->do_remote_wakeup) {
3422 /* Enable hub to send remote wakeup for all ports. */
3423 for (port1 = 1; port1 <= hdev->maxchild; port1++) {
3424 status = set_port_feature(hdev,
3425 port1 |
3426 USB_PORT_FEAT_REMOTE_WAKE_CONNECT |
3427 USB_PORT_FEAT_REMOTE_WAKE_DISCONNECT |
3428 USB_PORT_FEAT_REMOTE_WAKE_OVER_CURRENT,
3429 USB_PORT_FEAT_REMOTE_WAKE_MASK);
3433 dev_dbg(&intf->dev, "%s\n", __func__);
3435 /* stop khubd and related activity */
3436 hub_quiesce(hub, HUB_SUSPEND);
3437 return 0;
3440 static int hub_resume(struct usb_interface *intf)
3442 struct usb_hub *hub = usb_get_intfdata(intf);
3444 dev_dbg(&intf->dev, "%s\n", __func__);
3445 hub_activate(hub, HUB_RESUME);
3446 return 0;
3449 static int hub_reset_resume(struct usb_interface *intf)
3451 struct usb_hub *hub = usb_get_intfdata(intf);
3453 dev_dbg(&intf->dev, "%s\n", __func__);
3454 hub_activate(hub, HUB_RESET_RESUME);
3455 return 0;
3459 * usb_root_hub_lost_power - called by HCD if the root hub lost Vbus power
3460 * @rhdev: struct usb_device for the root hub
3462 * The USB host controller driver calls this function when its root hub
3463 * is resumed and Vbus power has been interrupted or the controller
3464 * has been reset. The routine marks @rhdev as having lost power.
3465 * When the hub driver is resumed it will take notice and carry out
3466 * power-session recovery for all the "USB-PERSIST"-enabled child devices;
3467 * the others will be disconnected.
3469 void usb_root_hub_lost_power(struct usb_device *rhdev)
3471 dev_warn(&rhdev->dev, "root hub lost power or was reset\n");
3472 rhdev->reset_resume = 1;
3474 EXPORT_SYMBOL_GPL(usb_root_hub_lost_power);
3476 static const char * const usb3_lpm_names[] = {
3477 "U0",
3478 "U1",
3479 "U2",
3480 "U3",
3484 * Send a Set SEL control transfer to the device, prior to enabling
3485 * device-initiated U1 or U2. This lets the device know the exit latencies from
3486 * the time the device initiates a U1 or U2 exit, to the time it will receive a
3487 * packet from the host.
3489 * This function will fail if the SEL or PEL values for udev are greater than
3490 * the maximum allowed values for the link state to be enabled.
3492 static int usb_req_set_sel(struct usb_device *udev, enum usb3_link_state state)
3494 struct usb_set_sel_req *sel_values;
3495 unsigned long long u1_sel;
3496 unsigned long long u1_pel;
3497 unsigned long long u2_sel;
3498 unsigned long long u2_pel;
3499 int ret;
3501 if (udev->state != USB_STATE_CONFIGURED)
3502 return 0;
3504 /* Convert SEL and PEL stored in ns to us */
3505 u1_sel = DIV_ROUND_UP(udev->u1_params.sel, 1000);
3506 u1_pel = DIV_ROUND_UP(udev->u1_params.pel, 1000);
3507 u2_sel = DIV_ROUND_UP(udev->u2_params.sel, 1000);
3508 u2_pel = DIV_ROUND_UP(udev->u2_params.pel, 1000);
3511 * Make sure that the calculated SEL and PEL values for the link
3512 * state we're enabling aren't bigger than the max SEL/PEL
3513 * value that will fit in the SET SEL control transfer.
3514 * Otherwise the device would get an incorrect idea of the exit
3515 * latency for the link state, and could start a device-initiated
3516 * U1/U2 when the exit latencies are too high.
3518 if ((state == USB3_LPM_U1 &&
3519 (u1_sel > USB3_LPM_MAX_U1_SEL_PEL ||
3520 u1_pel > USB3_LPM_MAX_U1_SEL_PEL)) ||
3521 (state == USB3_LPM_U2 &&
3522 (u2_sel > USB3_LPM_MAX_U2_SEL_PEL ||
3523 u2_pel > USB3_LPM_MAX_U2_SEL_PEL))) {
3524 dev_dbg(&udev->dev, "Device-initiated %s disabled due to long SEL %llu us or PEL %llu us\n",
3525 usb3_lpm_names[state], u1_sel, u1_pel);
3526 return -EINVAL;
3530 * If we're enabling device-initiated LPM for one link state,
3531 * but the other link state has a too high SEL or PEL value,
3532 * just set those values to the max in the Set SEL request.
3534 if (u1_sel > USB3_LPM_MAX_U1_SEL_PEL)
3535 u1_sel = USB3_LPM_MAX_U1_SEL_PEL;
3537 if (u1_pel > USB3_LPM_MAX_U1_SEL_PEL)
3538 u1_pel = USB3_LPM_MAX_U1_SEL_PEL;
3540 if (u2_sel > USB3_LPM_MAX_U2_SEL_PEL)
3541 u2_sel = USB3_LPM_MAX_U2_SEL_PEL;
3543 if (u2_pel > USB3_LPM_MAX_U2_SEL_PEL)
3544 u2_pel = USB3_LPM_MAX_U2_SEL_PEL;
3547 * usb_enable_lpm() can be called as part of a failed device reset,
3548 * which may be initiated by an error path of a mass storage driver.
3549 * Therefore, use GFP_NOIO.
3551 sel_values = kmalloc(sizeof *(sel_values), GFP_NOIO);
3552 if (!sel_values)
3553 return -ENOMEM;
3555 sel_values->u1_sel = u1_sel;
3556 sel_values->u1_pel = u1_pel;
3557 sel_values->u2_sel = cpu_to_le16(u2_sel);
3558 sel_values->u2_pel = cpu_to_le16(u2_pel);
3560 ret = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
3561 USB_REQ_SET_SEL,
3562 USB_RECIP_DEVICE,
3563 0, 0,
3564 sel_values, sizeof *(sel_values),
3565 USB_CTRL_SET_TIMEOUT);
3566 kfree(sel_values);
3567 return ret;
3571 * Enable or disable device-initiated U1 or U2 transitions.
3573 static int usb_set_device_initiated_lpm(struct usb_device *udev,
3574 enum usb3_link_state state, bool enable)
3576 int ret;
3577 int feature;
3579 switch (state) {
3580 case USB3_LPM_U1:
3581 feature = USB_DEVICE_U1_ENABLE;
3582 break;
3583 case USB3_LPM_U2:
3584 feature = USB_DEVICE_U2_ENABLE;
3585 break;
3586 default:
3587 dev_warn(&udev->dev, "%s: Can't %s non-U1 or U2 state.\n",
3588 __func__, enable ? "enable" : "disable");
3589 return -EINVAL;
3592 if (udev->state != USB_STATE_CONFIGURED) {
3593 dev_dbg(&udev->dev, "%s: Can't %s %s state "
3594 "for unconfigured device.\n",
3595 __func__, enable ? "enable" : "disable",
3596 usb3_lpm_names[state]);
3597 return 0;
3600 if (enable) {
3602 * Now send the control transfer to enable device-initiated LPM
3603 * for either U1 or U2.
3605 ret = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
3606 USB_REQ_SET_FEATURE,
3607 USB_RECIP_DEVICE,
3608 feature,
3609 0, NULL, 0,
3610 USB_CTRL_SET_TIMEOUT);
3611 } else {
3612 ret = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
3613 USB_REQ_CLEAR_FEATURE,
3614 USB_RECIP_DEVICE,
3615 feature,
3616 0, NULL, 0,
3617 USB_CTRL_SET_TIMEOUT);
3619 if (ret < 0) {
3620 dev_warn(&udev->dev, "%s of device-initiated %s failed.\n",
3621 enable ? "Enable" : "Disable",
3622 usb3_lpm_names[state]);
3623 return -EBUSY;
3625 return 0;
3628 static int usb_set_lpm_timeout(struct usb_device *udev,
3629 enum usb3_link_state state, int timeout)
3631 int ret;
3632 int feature;
3634 switch (state) {
3635 case USB3_LPM_U1:
3636 feature = USB_PORT_FEAT_U1_TIMEOUT;
3637 break;
3638 case USB3_LPM_U2:
3639 feature = USB_PORT_FEAT_U2_TIMEOUT;
3640 break;
3641 default:
3642 dev_warn(&udev->dev, "%s: Can't set timeout for non-U1 or U2 state.\n",
3643 __func__);
3644 return -EINVAL;
3647 if (state == USB3_LPM_U1 && timeout > USB3_LPM_U1_MAX_TIMEOUT &&
3648 timeout != USB3_LPM_DEVICE_INITIATED) {
3649 dev_warn(&udev->dev, "Failed to set %s timeout to 0x%x, "
3650 "which is a reserved value.\n",
3651 usb3_lpm_names[state], timeout);
3652 return -EINVAL;
3655 ret = set_port_feature(udev->parent,
3656 USB_PORT_LPM_TIMEOUT(timeout) | udev->portnum,
3657 feature);
3658 if (ret < 0) {
3659 dev_warn(&udev->dev, "Failed to set %s timeout to 0x%x,"
3660 "error code %i\n", usb3_lpm_names[state],
3661 timeout, ret);
3662 return -EBUSY;
3664 if (state == USB3_LPM_U1)
3665 udev->u1_params.timeout = timeout;
3666 else
3667 udev->u2_params.timeout = timeout;
3668 return 0;
3672 * Enable the hub-initiated U1/U2 idle timeouts, and enable device-initiated
3673 * U1/U2 entry.
3675 * We will attempt to enable U1 or U2, but there are no guarantees that the
3676 * control transfers to set the hub timeout or enable device-initiated U1/U2
3677 * will be successful.
3679 * If we cannot set the parent hub U1/U2 timeout, we attempt to let the xHCI
3680 * driver know about it. If that call fails, it should be harmless, and just
3681 * take up more slightly more bus bandwidth for unnecessary U1/U2 exit latency.
3683 static void usb_enable_link_state(struct usb_hcd *hcd, struct usb_device *udev,
3684 enum usb3_link_state state)
3686 int timeout, ret;
3687 __u8 u1_mel = udev->bos->ss_cap->bU1devExitLat;
3688 __le16 u2_mel = udev->bos->ss_cap->bU2DevExitLat;
3690 /* If the device says it doesn't have *any* exit latency to come out of
3691 * U1 or U2, it's probably lying. Assume it doesn't implement that link
3692 * state.
3694 if ((state == USB3_LPM_U1 && u1_mel == 0) ||
3695 (state == USB3_LPM_U2 && u2_mel == 0))
3696 return;
3699 * First, let the device know about the exit latencies
3700 * associated with the link state we're about to enable.
3702 ret = usb_req_set_sel(udev, state);
3703 if (ret < 0) {
3704 dev_warn(&udev->dev, "Set SEL for device-initiated %s failed.\n",
3705 usb3_lpm_names[state]);
3706 return;
3709 /* We allow the host controller to set the U1/U2 timeout internally
3710 * first, so that it can change its schedule to account for the
3711 * additional latency to send data to a device in a lower power
3712 * link state.
3714 timeout = hcd->driver->enable_usb3_lpm_timeout(hcd, udev, state);
3716 /* xHCI host controller doesn't want to enable this LPM state. */
3717 if (timeout == 0)
3718 return;
3720 if (timeout < 0) {
3721 dev_warn(&udev->dev, "Could not enable %s link state, "
3722 "xHCI error %i.\n", usb3_lpm_names[state],
3723 timeout);
3724 return;
3727 if (usb_set_lpm_timeout(udev, state, timeout))
3728 /* If we can't set the parent hub U1/U2 timeout,
3729 * device-initiated LPM won't be allowed either, so let the xHCI
3730 * host know that this link state won't be enabled.
3732 hcd->driver->disable_usb3_lpm_timeout(hcd, udev, state);
3734 /* Only a configured device will accept the Set Feature U1/U2_ENABLE */
3735 else if (udev->actconfig)
3736 usb_set_device_initiated_lpm(udev, state, true);
3741 * Disable the hub-initiated U1/U2 idle timeouts, and disable device-initiated
3742 * U1/U2 entry.
3744 * If this function returns -EBUSY, the parent hub will still allow U1/U2 entry.
3745 * If zero is returned, the parent will not allow the link to go into U1/U2.
3747 * If zero is returned, device-initiated U1/U2 entry may still be enabled, but
3748 * it won't have an effect on the bus link state because the parent hub will
3749 * still disallow device-initiated U1/U2 entry.
3751 * If zero is returned, the xHCI host controller may still think U1/U2 entry is
3752 * possible. The result will be slightly more bus bandwidth will be taken up
3753 * (to account for U1/U2 exit latency), but it should be harmless.
3755 static int usb_disable_link_state(struct usb_hcd *hcd, struct usb_device *udev,
3756 enum usb3_link_state state)
3758 int feature;
3760 switch (state) {
3761 case USB3_LPM_U1:
3762 feature = USB_PORT_FEAT_U1_TIMEOUT;
3763 break;
3764 case USB3_LPM_U2:
3765 feature = USB_PORT_FEAT_U2_TIMEOUT;
3766 break;
3767 default:
3768 dev_warn(&udev->dev, "%s: Can't disable non-U1 or U2 state.\n",
3769 __func__);
3770 return -EINVAL;
3773 if (usb_set_lpm_timeout(udev, state, 0))
3774 return -EBUSY;
3776 usb_set_device_initiated_lpm(udev, state, false);
3778 if (hcd->driver->disable_usb3_lpm_timeout(hcd, udev, state))
3779 dev_warn(&udev->dev, "Could not disable xHCI %s timeout, "
3780 "bus schedule bandwidth may be impacted.\n",
3781 usb3_lpm_names[state]);
3782 return 0;
3786 * Disable hub-initiated and device-initiated U1 and U2 entry.
3787 * Caller must own the bandwidth_mutex.
3789 * This will call usb_enable_lpm() on failure, which will decrement
3790 * lpm_disable_count, and will re-enable LPM if lpm_disable_count reaches zero.
3792 int usb_disable_lpm(struct usb_device *udev)
3794 struct usb_hcd *hcd;
3796 if (!udev || !udev->parent ||
3797 udev->speed < USB_SPEED_SUPER ||
3798 !udev->lpm_capable)
3799 return 0;
3801 hcd = bus_to_hcd(udev->bus);
3802 if (!hcd || !hcd->driver->disable_usb3_lpm_timeout)
3803 return 0;
3805 udev->lpm_disable_count++;
3806 if ((udev->u1_params.timeout == 0 && udev->u2_params.timeout == 0))
3807 return 0;
3809 /* If LPM is enabled, attempt to disable it. */
3810 if (usb_disable_link_state(hcd, udev, USB3_LPM_U1))
3811 goto enable_lpm;
3812 if (usb_disable_link_state(hcd, udev, USB3_LPM_U2))
3813 goto enable_lpm;
3815 return 0;
3817 enable_lpm:
3818 usb_enable_lpm(udev);
3819 return -EBUSY;
3821 EXPORT_SYMBOL_GPL(usb_disable_lpm);
3823 /* Grab the bandwidth_mutex before calling usb_disable_lpm() */
3824 int usb_unlocked_disable_lpm(struct usb_device *udev)
3826 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
3827 int ret;
3829 if (!hcd)
3830 return -EINVAL;
3832 mutex_lock(hcd->bandwidth_mutex);
3833 ret = usb_disable_lpm(udev);
3834 mutex_unlock(hcd->bandwidth_mutex);
3836 return ret;
3838 EXPORT_SYMBOL_GPL(usb_unlocked_disable_lpm);
3841 * Attempt to enable device-initiated and hub-initiated U1 and U2 entry. The
3842 * xHCI host policy may prevent U1 or U2 from being enabled.
3844 * Other callers may have disabled link PM, so U1 and U2 entry will be disabled
3845 * until the lpm_disable_count drops to zero. Caller must own the
3846 * bandwidth_mutex.
3848 void usb_enable_lpm(struct usb_device *udev)
3850 struct usb_hcd *hcd;
3852 if (!udev || !udev->parent ||
3853 udev->speed < USB_SPEED_SUPER ||
3854 !udev->lpm_capable)
3855 return;
3857 udev->lpm_disable_count--;
3858 hcd = bus_to_hcd(udev->bus);
3859 /* Double check that we can both enable and disable LPM.
3860 * Device must be configured to accept set feature U1/U2 timeout.
3862 if (!hcd || !hcd->driver->enable_usb3_lpm_timeout ||
3863 !hcd->driver->disable_usb3_lpm_timeout)
3864 return;
3866 if (udev->lpm_disable_count > 0)
3867 return;
3869 usb_enable_link_state(hcd, udev, USB3_LPM_U1);
3870 usb_enable_link_state(hcd, udev, USB3_LPM_U2);
3872 EXPORT_SYMBOL_GPL(usb_enable_lpm);
3874 /* Grab the bandwidth_mutex before calling usb_enable_lpm() */
3875 void usb_unlocked_enable_lpm(struct usb_device *udev)
3877 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
3879 if (!hcd)
3880 return;
3882 mutex_lock(hcd->bandwidth_mutex);
3883 usb_enable_lpm(udev);
3884 mutex_unlock(hcd->bandwidth_mutex);
3886 EXPORT_SYMBOL_GPL(usb_unlocked_enable_lpm);
3889 #else /* CONFIG_PM */
3891 #define hub_suspend NULL
3892 #define hub_resume NULL
3893 #define hub_reset_resume NULL
3895 int usb_disable_lpm(struct usb_device *udev)
3897 return 0;
3899 EXPORT_SYMBOL_GPL(usb_disable_lpm);
3901 void usb_enable_lpm(struct usb_device *udev) { }
3902 EXPORT_SYMBOL_GPL(usb_enable_lpm);
3904 int usb_unlocked_disable_lpm(struct usb_device *udev)
3906 return 0;
3908 EXPORT_SYMBOL_GPL(usb_unlocked_disable_lpm);
3910 void usb_unlocked_enable_lpm(struct usb_device *udev) { }
3911 EXPORT_SYMBOL_GPL(usb_unlocked_enable_lpm);
3913 int usb_disable_ltm(struct usb_device *udev)
3915 return 0;
3917 EXPORT_SYMBOL_GPL(usb_disable_ltm);
3919 void usb_enable_ltm(struct usb_device *udev) { }
3920 EXPORT_SYMBOL_GPL(usb_enable_ltm);
3922 #endif /* CONFIG_PM */
3925 /* USB 2.0 spec, 7.1.7.3 / fig 7-29:
3927 * Between connect detection and reset signaling there must be a delay
3928 * of 100ms at least for debounce and power-settling. The corresponding
3929 * timer shall restart whenever the downstream port detects a disconnect.
3931 * Apparently there are some bluetooth and irda-dongles and a number of
3932 * low-speed devices for which this debounce period may last over a second.
3933 * Not covered by the spec - but easy to deal with.
3935 * This implementation uses a 1500ms total debounce timeout; if the
3936 * connection isn't stable by then it returns -ETIMEDOUT. It checks
3937 * every 25ms for transient disconnects. When the port status has been
3938 * unchanged for 100ms it returns the port status.
3940 int hub_port_debounce(struct usb_hub *hub, int port1, bool must_be_connected)
3942 int ret;
3943 int total_time, stable_time = 0;
3944 u16 portchange, portstatus;
3945 unsigned connection = 0xffff;
3947 for (total_time = 0; ; total_time += HUB_DEBOUNCE_STEP) {
3948 ret = hub_port_status(hub, port1, &portstatus, &portchange);
3949 if (ret < 0)
3950 return ret;
3952 if (!(portchange & USB_PORT_STAT_C_CONNECTION) &&
3953 (portstatus & USB_PORT_STAT_CONNECTION) == connection) {
3954 if (!must_be_connected ||
3955 (connection == USB_PORT_STAT_CONNECTION))
3956 stable_time += HUB_DEBOUNCE_STEP;
3957 if (stable_time >= HUB_DEBOUNCE_STABLE)
3958 break;
3959 } else {
3960 stable_time = 0;
3961 connection = portstatus & USB_PORT_STAT_CONNECTION;
3964 if (portchange & USB_PORT_STAT_C_CONNECTION) {
3965 usb_clear_port_feature(hub->hdev, port1,
3966 USB_PORT_FEAT_C_CONNECTION);
3969 if (total_time >= HUB_DEBOUNCE_TIMEOUT)
3970 break;
3971 msleep(HUB_DEBOUNCE_STEP);
3974 dev_dbg (hub->intfdev,
3975 "debounce: port %d: total %dms stable %dms status 0x%x\n",
3976 port1, total_time, stable_time, portstatus);
3978 if (stable_time < HUB_DEBOUNCE_STABLE)
3979 return -ETIMEDOUT;
3980 return portstatus;
3983 void usb_ep0_reinit(struct usb_device *udev)
3985 usb_disable_endpoint(udev, 0 + USB_DIR_IN, true);
3986 usb_disable_endpoint(udev, 0 + USB_DIR_OUT, true);
3987 usb_enable_endpoint(udev, &udev->ep0, true);
3989 EXPORT_SYMBOL_GPL(usb_ep0_reinit);
3991 #define usb_sndaddr0pipe() (PIPE_CONTROL << 30)
3992 #define usb_rcvaddr0pipe() ((PIPE_CONTROL << 30) | USB_DIR_IN)
3994 static int hub_set_address(struct usb_device *udev, int devnum)
3996 int retval;
3997 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
4000 * The host controller will choose the device address,
4001 * instead of the core having chosen it earlier
4003 if (!hcd->driver->address_device && devnum <= 1)
4004 return -EINVAL;
4005 if (udev->state == USB_STATE_ADDRESS)
4006 return 0;
4007 if (udev->state != USB_STATE_DEFAULT)
4008 return -EINVAL;
4009 if (hcd->driver->address_device)
4010 retval = hcd->driver->address_device(hcd, udev);
4011 else
4012 retval = usb_control_msg(udev, usb_sndaddr0pipe(),
4013 USB_REQ_SET_ADDRESS, 0, devnum, 0,
4014 NULL, 0, USB_CTRL_SET_TIMEOUT);
4015 if (retval == 0) {
4016 update_devnum(udev, devnum);
4017 /* Device now using proper address. */
4018 usb_set_device_state(udev, USB_STATE_ADDRESS);
4019 usb_ep0_reinit(udev);
4021 return retval;
4025 * There are reports of USB 3.0 devices that say they support USB 2.0 Link PM
4026 * when they're plugged into a USB 2.0 port, but they don't work when LPM is
4027 * enabled.
4029 * Only enable USB 2.0 Link PM if the port is internal (hardwired), or the
4030 * device says it supports the new USB 2.0 Link PM errata by setting the BESL
4031 * support bit in the BOS descriptor.
4033 static void hub_set_initial_usb2_lpm_policy(struct usb_device *udev)
4035 int connect_type;
4037 if (!udev->usb2_hw_lpm_capable)
4038 return;
4040 connect_type = usb_get_hub_port_connect_type(udev->parent,
4041 udev->portnum);
4043 if ((udev->bos->ext_cap->bmAttributes & USB_BESL_SUPPORT) ||
4044 connect_type == USB_PORT_CONNECT_TYPE_HARD_WIRED) {
4045 udev->usb2_hw_lpm_allowed = 1;
4046 usb_set_usb2_hardware_lpm(udev, 1);
4050 /* Reset device, (re)assign address, get device descriptor.
4051 * Device connection must be stable, no more debouncing needed.
4052 * Returns device in USB_STATE_ADDRESS, except on error.
4054 * If this is called for an already-existing device (as part of
4055 * usb_reset_and_verify_device), the caller must own the device lock. For a
4056 * newly detected device that is not accessible through any global
4057 * pointers, it's not necessary to lock the device.
4059 static int
4060 hub_port_init (struct usb_hub *hub, struct usb_device *udev, int port1,
4061 int retry_counter)
4063 static DEFINE_MUTEX(usb_address0_mutex);
4065 struct usb_device *hdev = hub->hdev;
4066 struct usb_hcd *hcd = bus_to_hcd(hdev->bus);
4067 int retries, operations, retval, i;
4068 unsigned delay = HUB_SHORT_RESET_TIME;
4069 enum usb_device_speed oldspeed = udev->speed;
4070 const char *speed;
4071 int devnum = udev->devnum;
4073 /* root hub ports have a slightly longer reset period
4074 * (from USB 2.0 spec, section 7.1.7.5)
4076 if (!hdev->parent) {
4077 delay = HUB_ROOT_RESET_TIME;
4078 if (port1 == hdev->bus->otg_port)
4079 hdev->bus->b_hnp_enable = 0;
4082 /* Some low speed devices have problems with the quick delay, so */
4083 /* be a bit pessimistic with those devices. RHbug #23670 */
4084 if (oldspeed == USB_SPEED_LOW)
4085 delay = HUB_LONG_RESET_TIME;
4087 mutex_lock(&usb_address0_mutex);
4089 /* Reset the device; full speed may morph to high speed */
4090 /* FIXME a USB 2.0 device may morph into SuperSpeed on reset. */
4091 retval = hub_port_reset(hub, port1, udev, delay, false);
4092 if (retval < 0) /* error or disconnect */
4093 goto fail;
4094 /* success, speed is known */
4096 retval = -ENODEV;
4098 /* Don't allow speed changes at reset, except usb 3.0 to faster */
4099 if (oldspeed != USB_SPEED_UNKNOWN && oldspeed != udev->speed &&
4100 !(oldspeed == USB_SPEED_SUPER && udev->speed > oldspeed)) {
4101 dev_dbg(&udev->dev, "device reset changed speed!\n");
4102 goto fail;
4104 oldspeed = udev->speed;
4106 /* USB 2.0 section 5.5.3 talks about ep0 maxpacket ...
4107 * it's fixed size except for full speed devices.
4108 * For Wireless USB devices, ep0 max packet is always 512 (tho
4109 * reported as 0xff in the device descriptor). WUSB1.0[4.8.1].
4111 switch (udev->speed) {
4112 case USB_SPEED_SUPER_PLUS:
4113 case USB_SPEED_SUPER:
4114 case USB_SPEED_WIRELESS: /* fixed at 512 */
4115 udev->ep0.desc.wMaxPacketSize = cpu_to_le16(512);
4116 break;
4117 case USB_SPEED_HIGH: /* fixed at 64 */
4118 udev->ep0.desc.wMaxPacketSize = cpu_to_le16(64);
4119 break;
4120 case USB_SPEED_FULL: /* 8, 16, 32, or 64 */
4121 /* to determine the ep0 maxpacket size, try to read
4122 * the device descriptor to get bMaxPacketSize0 and
4123 * then correct our initial guess.
4125 udev->ep0.desc.wMaxPacketSize = cpu_to_le16(64);
4126 break;
4127 case USB_SPEED_LOW: /* fixed at 8 */
4128 udev->ep0.desc.wMaxPacketSize = cpu_to_le16(8);
4129 break;
4130 default:
4131 goto fail;
4134 if (udev->speed == USB_SPEED_WIRELESS)
4135 speed = "variable speed Wireless";
4136 else
4137 speed = usb_speed_string(udev->speed);
4139 if (udev->speed < USB_SPEED_SUPER)
4140 dev_info(&udev->dev,
4141 "%s %s USB device number %d using %s\n",
4142 (udev->config) ? "reset" : "new", speed,
4143 devnum, udev->bus->controller->driver->name);
4145 /* Set up TT records, if needed */
4146 if (hdev->tt) {
4147 udev->tt = hdev->tt;
4148 udev->ttport = hdev->ttport;
4149 } else if (udev->speed != USB_SPEED_HIGH
4150 && hdev->speed == USB_SPEED_HIGH) {
4151 if (!hub->tt.hub) {
4152 dev_err(&udev->dev, "parent hub has no TT\n");
4153 retval = -EINVAL;
4154 goto fail;
4156 udev->tt = &hub->tt;
4157 udev->ttport = port1;
4160 /* Why interleave GET_DESCRIPTOR and SET_ADDRESS this way?
4161 * Because device hardware and firmware is sometimes buggy in
4162 * this area, and this is how Linux has done it for ages.
4163 * Change it cautiously.
4165 * NOTE: If USE_NEW_SCHEME() is true we will start by issuing
4166 * a 64-byte GET_DESCRIPTOR request. This is what Windows does,
4167 * so it may help with some non-standards-compliant devices.
4168 * Otherwise we start with SET_ADDRESS and then try to read the
4169 * first 8 bytes of the device descriptor to get the ep0 maxpacket
4170 * value.
4172 for (retries = 0; retries < GET_DESCRIPTOR_TRIES; (++retries, msleep(100))) {
4173 if (USE_NEW_SCHEME(retry_counter) && !(hcd->driver->flags & HCD_USB3)) {
4174 struct usb_device_descriptor *buf;
4175 int r = 0;
4177 #define GET_DESCRIPTOR_BUFSIZE 64
4178 buf = kmalloc(GET_DESCRIPTOR_BUFSIZE, GFP_NOIO);
4179 if (!buf) {
4180 retval = -ENOMEM;
4181 continue;
4184 /* Retry on all errors; some devices are flakey.
4185 * 255 is for WUSB devices, we actually need to use
4186 * 512 (WUSB1.0[4.8.1]).
4188 for (operations = 0; operations < 3; ++operations) {
4189 buf->bMaxPacketSize0 = 0;
4190 r = usb_control_msg(udev, usb_rcvaddr0pipe(),
4191 USB_REQ_GET_DESCRIPTOR, USB_DIR_IN,
4192 USB_DT_DEVICE << 8, 0,
4193 buf, GET_DESCRIPTOR_BUFSIZE,
4194 initial_descriptor_timeout);
4195 switch (buf->bMaxPacketSize0) {
4196 case 8: case 16: case 32: case 64: case 255:
4197 if (buf->bDescriptorType ==
4198 USB_DT_DEVICE) {
4199 r = 0;
4200 break;
4202 /* FALL THROUGH */
4203 default:
4204 if (r == 0)
4205 r = -EPROTO;
4206 break;
4209 * Some devices time out if they are powered on
4210 * when already connected. They need a second
4211 * reset. But only on the first attempt,
4212 * lest we get into a time out/reset loop
4214 if (r == 0 || (r == -ETIMEDOUT && retries == 0))
4215 break;
4217 udev->descriptor.bMaxPacketSize0 =
4218 buf->bMaxPacketSize0;
4219 kfree(buf);
4221 retval = hub_port_reset(hub, port1, udev, delay, false);
4222 if (retval < 0) /* error or disconnect */
4223 goto fail;
4224 if (oldspeed != udev->speed) {
4225 dev_dbg(&udev->dev,
4226 "device reset changed speed!\n");
4227 retval = -ENODEV;
4228 goto fail;
4230 if (r) {
4231 if (r != -ENODEV)
4232 dev_err(&udev->dev, "device descriptor read/64, error %d\n",
4234 retval = -EMSGSIZE;
4235 continue;
4237 #undef GET_DESCRIPTOR_BUFSIZE
4241 * If device is WUSB, we already assigned an
4242 * unauthorized address in the Connect Ack sequence;
4243 * authorization will assign the final address.
4245 if (udev->wusb == 0) {
4246 for (operations = 0; operations < SET_ADDRESS_TRIES; ++operations) {
4247 retval = hub_set_address(udev, devnum);
4248 if (retval >= 0)
4249 break;
4250 msleep(200);
4252 if (retval < 0) {
4253 if (retval != -ENODEV)
4254 dev_err(&udev->dev, "device not accepting address %d, error %d\n",
4255 devnum, retval);
4256 goto fail;
4258 if (udev->speed >= USB_SPEED_SUPER) {
4259 devnum = udev->devnum;
4260 dev_info(&udev->dev,
4261 "%s SuperSpeed%s USB device number %d using %s\n",
4262 (udev->config) ? "reset" : "new",
4263 (udev->speed == USB_SPEED_SUPER_PLUS) ? "Plus" : "",
4264 devnum, udev->bus->controller->driver->name);
4267 /* cope with hardware quirkiness:
4268 * - let SET_ADDRESS settle, some device hardware wants it
4269 * - read ep0 maxpacket even for high and low speed,
4271 msleep(10);
4272 if (USE_NEW_SCHEME(retry_counter) && !(hcd->driver->flags & HCD_USB3))
4273 break;
4276 retval = usb_get_device_descriptor(udev, 8);
4277 if (retval < 8) {
4278 if (retval != -ENODEV)
4279 dev_err(&udev->dev,
4280 "device descriptor read/8, error %d\n",
4281 retval);
4282 if (retval >= 0)
4283 retval = -EMSGSIZE;
4284 } else {
4285 retval = 0;
4286 break;
4289 if (retval)
4290 goto fail;
4292 if (hcd->phy && !hdev->parent)
4293 usb_phy_notify_connect(hcd->phy, udev->speed);
4296 * Some superspeed devices have finished the link training process
4297 * and attached to a superspeed hub port, but the device descriptor
4298 * got from those devices show they aren't superspeed devices. Warm
4299 * reset the port attached by the devices can fix them.
4301 if ((udev->speed >= USB_SPEED_SUPER) &&
4302 (le16_to_cpu(udev->descriptor.bcdUSB) < 0x0300)) {
4303 dev_err(&udev->dev, "got a wrong device descriptor, "
4304 "warm reset device\n");
4305 hub_port_reset(hub, port1, udev,
4306 HUB_BH_RESET_TIME, true);
4307 retval = -EINVAL;
4308 goto fail;
4311 if (udev->descriptor.bMaxPacketSize0 == 0xff ||
4312 udev->speed >= USB_SPEED_SUPER)
4313 i = 512;
4314 else
4315 i = udev->descriptor.bMaxPacketSize0;
4316 if (usb_endpoint_maxp(&udev->ep0.desc) != i) {
4317 if (udev->speed == USB_SPEED_LOW ||
4318 !(i == 8 || i == 16 || i == 32 || i == 64)) {
4319 dev_err(&udev->dev, "Invalid ep0 maxpacket: %d\n", i);
4320 retval = -EMSGSIZE;
4321 goto fail;
4323 if (udev->speed == USB_SPEED_FULL)
4324 dev_dbg(&udev->dev, "ep0 maxpacket = %d\n", i);
4325 else
4326 dev_warn(&udev->dev, "Using ep0 maxpacket: %d\n", i);
4327 udev->ep0.desc.wMaxPacketSize = cpu_to_le16(i);
4328 usb_ep0_reinit(udev);
4331 retval = usb_get_device_descriptor(udev, USB_DT_DEVICE_SIZE);
4332 if (retval < (signed)sizeof(udev->descriptor)) {
4333 if (retval != -ENODEV)
4334 dev_err(&udev->dev, "device descriptor read/all, error %d\n",
4335 retval);
4336 if (retval >= 0)
4337 retval = -ENOMSG;
4338 goto fail;
4341 usb_detect_quirks(udev);
4343 if (udev->wusb == 0 && le16_to_cpu(udev->descriptor.bcdUSB) >= 0x0201) {
4344 retval = usb_get_bos_descriptor(udev);
4345 if (!retval) {
4346 udev->lpm_capable = usb_device_supports_lpm(udev);
4347 usb_set_lpm_parameters(udev);
4351 retval = 0;
4352 /* notify HCD that we have a device connected and addressed */
4353 if (hcd->driver->update_device)
4354 hcd->driver->update_device(hcd, udev);
4355 hub_set_initial_usb2_lpm_policy(udev);
4356 fail:
4357 if (retval) {
4358 hub_port_disable(hub, port1, 0);
4359 update_devnum(udev, devnum); /* for disconnect processing */
4361 mutex_unlock(&usb_address0_mutex);
4362 return retval;
4365 static void
4366 check_highspeed (struct usb_hub *hub, struct usb_device *udev, int port1)
4368 struct usb_qualifier_descriptor *qual;
4369 int status;
4371 if (udev->quirks & USB_QUIRK_DEVICE_QUALIFIER)
4372 return;
4374 qual = kmalloc (sizeof *qual, GFP_KERNEL);
4375 if (qual == NULL)
4376 return;
4378 status = usb_get_descriptor (udev, USB_DT_DEVICE_QUALIFIER, 0,
4379 qual, sizeof *qual);
4380 if (status == sizeof *qual) {
4381 dev_info(&udev->dev, "not running at top speed; "
4382 "connect to a high speed hub\n");
4383 /* hub LEDs are probably harder to miss than syslog */
4384 if (hub->has_indicators) {
4385 hub->indicator[port1-1] = INDICATOR_GREEN_BLINK;
4386 schedule_delayed_work (&hub->leds, 0);
4389 kfree(qual);
4392 static unsigned
4393 hub_power_remaining (struct usb_hub *hub)
4395 struct usb_device *hdev = hub->hdev;
4396 int remaining;
4397 int port1;
4399 if (!hub->limited_power)
4400 return 0;
4402 remaining = hdev->bus_mA - hub->descriptor->bHubContrCurrent;
4403 for (port1 = 1; port1 <= hdev->maxchild; ++port1) {
4404 struct usb_device *udev = hub->ports[port1 - 1]->child;
4405 int delta;
4406 unsigned unit_load;
4408 if (!udev)
4409 continue;
4410 if (hub_is_superspeed(udev))
4411 unit_load = 150;
4412 else
4413 unit_load = 100;
4416 * Unconfigured devices may not use more than one unit load,
4417 * or 8mA for OTG ports
4419 if (udev->actconfig)
4420 delta = usb_get_max_power(udev, udev->actconfig);
4421 else if (port1 != udev->bus->otg_port || hdev->parent)
4422 delta = unit_load;
4423 else
4424 delta = 8;
4425 if (delta > hub->mA_per_port)
4426 dev_warn(&udev->dev,
4427 "%dmA is over %umA budget for port %d!\n",
4428 delta, hub->mA_per_port, port1);
4429 remaining -= delta;
4431 if (remaining < 0) {
4432 dev_warn(hub->intfdev, "%dmA over power budget!\n",
4433 - remaining);
4434 remaining = 0;
4436 return remaining;
4439 /* Handle physical or logical connection change events.
4440 * This routine is called when:
4441 * a port connection-change occurs;
4442 * a port enable-change occurs (often caused by EMI);
4443 * usb_reset_and_verify_device() encounters changed descriptors (as from
4444 * a firmware download)
4445 * caller already locked the hub
4447 static void hub_port_connect_change(struct usb_hub *hub, int port1,
4448 u16 portstatus, u16 portchange)
4450 struct usb_device *hdev = hub->hdev;
4451 struct device *hub_dev = hub->intfdev;
4452 struct usb_hcd *hcd = bus_to_hcd(hdev->bus);
4453 unsigned wHubCharacteristics =
4454 le16_to_cpu(hub->descriptor->wHubCharacteristics);
4455 struct usb_device *udev;
4456 int status, i;
4457 unsigned unit_load;
4459 dev_dbg (hub_dev,
4460 "port %d, status %04x, change %04x, %s\n",
4461 port1, portstatus, portchange, portspeed(hub, portstatus));
4463 if (hub->has_indicators) {
4464 set_port_led(hub, port1, HUB_LED_AUTO);
4465 hub->indicator[port1-1] = INDICATOR_AUTO;
4468 #ifdef CONFIG_USB_OTG
4469 /* during HNP, don't repeat the debounce */
4470 if (hdev->bus->is_b_host)
4471 portchange &= ~(USB_PORT_STAT_C_CONNECTION |
4472 USB_PORT_STAT_C_ENABLE);
4473 #endif
4475 /* Try to resuscitate an existing device */
4476 udev = hub->ports[port1 - 1]->child;
4477 if ((portstatus & USB_PORT_STAT_CONNECTION) && udev &&
4478 udev->state != USB_STATE_NOTATTACHED) {
4479 usb_lock_device(udev);
4480 if (portstatus & USB_PORT_STAT_ENABLE) {
4481 status = 0; /* Nothing to do */
4483 #ifdef CONFIG_PM_RUNTIME
4484 } else if (udev->state == USB_STATE_SUSPENDED &&
4485 udev->persist_enabled) {
4486 /* For a suspended device, treat this as a
4487 * remote wakeup event.
4489 status = usb_remote_wakeup(udev);
4490 #endif
4492 } else {
4493 status = -ENODEV; /* Don't resuscitate */
4495 usb_unlock_device(udev);
4497 if (status == 0) {
4498 clear_bit(port1, hub->change_bits);
4499 return;
4503 /* Disconnect any existing devices under this port */
4504 if (udev) {
4505 if (hcd->phy && !hdev->parent &&
4506 !(portstatus & USB_PORT_STAT_CONNECTION))
4507 usb_phy_notify_disconnect(hcd->phy, udev->speed);
4508 usb_disconnect(&hub->ports[port1 - 1]->child);
4510 clear_bit(port1, hub->change_bits);
4512 /* We can forget about a "removed" device when there's a physical
4513 * disconnect or the connect status changes.
4515 if (!(portstatus & USB_PORT_STAT_CONNECTION) ||
4516 (portchange & USB_PORT_STAT_C_CONNECTION))
4517 clear_bit(port1, hub->removed_bits);
4519 if (portchange & (USB_PORT_STAT_C_CONNECTION |
4520 USB_PORT_STAT_C_ENABLE)) {
4521 status = hub_port_debounce_be_stable(hub, port1);
4522 if (status < 0) {
4523 if (status != -ENODEV && printk_ratelimit())
4524 dev_err(hub_dev, "connect-debounce failed, "
4525 "port %d disabled\n", port1);
4526 portstatus &= ~USB_PORT_STAT_CONNECTION;
4527 } else {
4528 portstatus = status;
4532 /* Return now if debouncing failed or nothing is connected or
4533 * the device was "removed".
4535 if (!(portstatus & USB_PORT_STAT_CONNECTION) ||
4536 test_bit(port1, hub->removed_bits)) {
4538 /* maybe switch power back on (e.g. root hub was reset) */
4539 if ((wHubCharacteristics & HUB_CHAR_LPSM) < 2
4540 && !port_is_power_on(hub, portstatus))
4541 set_port_feature(hdev, port1, USB_PORT_FEAT_POWER);
4543 if (portstatus & USB_PORT_STAT_ENABLE)
4544 goto done;
4545 return;
4547 if (hub_is_superspeed(hub->hdev))
4548 unit_load = 150;
4549 else
4550 unit_load = 100;
4552 status = 0;
4553 for (i = 0; i < SET_CONFIG_TRIES; i++) {
4555 /* reallocate for each attempt, since references
4556 * to the previous one can escape in various ways
4558 udev = usb_alloc_dev(hdev, hdev->bus, port1);
4559 if (!udev) {
4560 dev_err (hub_dev,
4561 "couldn't allocate port %d usb_device\n",
4562 port1);
4563 goto done;
4566 usb_set_device_state(udev, USB_STATE_POWERED);
4567 udev->bus_mA = hub->mA_per_port;
4568 udev->level = hdev->level + 1;
4569 udev->wusb = hub_is_wusb(hub);
4571 /* Devices connected to SuperSpeed hubs are USB 3.0 or later */
4572 if (hub_is_superspeed(hub->hdev))
4573 udev->speed = USB_SPEED_SUPER;
4574 else
4575 udev->speed = USB_SPEED_UNKNOWN;
4577 choose_devnum(udev);
4578 if (udev->devnum <= 0) {
4579 status = -ENOTCONN; /* Don't retry */
4580 goto loop;
4583 /* reset (non-USB 3.0 devices) and get descriptor */
4584 status = hub_port_init(hub, udev, port1, i);
4585 if (status < 0)
4586 goto loop;
4588 if (udev->quirks & USB_QUIRK_DELAY_INIT)
4589 msleep(1000);
4591 /* consecutive bus-powered hubs aren't reliable; they can
4592 * violate the voltage drop budget. if the new child has
4593 * a "powered" LED, users should notice we didn't enable it
4594 * (without reading syslog), even without per-port LEDs
4595 * on the parent.
4597 if (udev->descriptor.bDeviceClass == USB_CLASS_HUB
4598 && udev->bus_mA <= unit_load) {
4599 u16 devstat;
4601 status = usb_get_status(udev, USB_RECIP_DEVICE, 0,
4602 &devstat);
4603 if (status) {
4604 dev_dbg(&udev->dev, "get status %d ?\n", status);
4605 goto loop_disable;
4607 if ((devstat & (1 << USB_DEVICE_SELF_POWERED)) == 0) {
4608 dev_err(&udev->dev,
4609 "can't connect bus-powered hub "
4610 "to this port\n");
4611 if (hub->has_indicators) {
4612 hub->indicator[port1-1] =
4613 INDICATOR_AMBER_BLINK;
4614 schedule_delayed_work (&hub->leds, 0);
4616 status = -ENOTCONN; /* Don't retry */
4617 goto loop_disable;
4621 /* check for devices running slower than they could */
4622 if (le16_to_cpu(udev->descriptor.bcdUSB) >= 0x0200
4623 && udev->speed == USB_SPEED_FULL
4624 && highspeed_hubs != 0)
4625 check_highspeed (hub, udev, port1);
4627 /* Store the parent's children[] pointer. At this point
4628 * udev becomes globally accessible, although presumably
4629 * no one will look at it until hdev is unlocked.
4631 status = 0;
4633 /* We mustn't add new devices if the parent hub has
4634 * been disconnected; we would race with the
4635 * recursively_mark_NOTATTACHED() routine.
4637 spin_lock_irq(&device_state_lock);
4638 if (hdev->state == USB_STATE_NOTATTACHED)
4639 status = -ENOTCONN;
4640 else
4641 hub->ports[port1 - 1]->child = udev;
4642 spin_unlock_irq(&device_state_lock);
4644 /* Run it through the hoops (find a driver, etc) */
4645 if (!status) {
4646 status = usb_new_device(udev);
4647 if (status) {
4648 spin_lock_irq(&device_state_lock);
4649 hub->ports[port1 - 1]->child = NULL;
4650 spin_unlock_irq(&device_state_lock);
4654 if (status)
4655 goto loop_disable;
4657 status = hub_power_remaining(hub);
4658 if (status)
4659 dev_dbg(hub_dev, "%dmA power budget left\n", status);
4661 return;
4663 loop_disable:
4664 hub_port_disable(hub, port1, 1);
4665 loop:
4666 usb_ep0_reinit(udev);
4667 release_devnum(udev);
4668 hub_free_dev(udev);
4669 usb_put_dev(udev);
4670 if ((status == -ENOTCONN) || (status == -ENOTSUPP))
4671 break;
4673 if (hub->hdev->parent ||
4674 !hcd->driver->port_handed_over ||
4675 !(hcd->driver->port_handed_over)(hcd, port1)) {
4676 if (status != -ENOTCONN && status != -ENODEV)
4677 dev_err(hub_dev, "unable to enumerate USB device on port %d\n",
4678 port1);
4681 done:
4682 hub_port_disable(hub, port1, 1);
4683 if (hcd->driver->relinquish_port && !hub->hdev->parent)
4684 hcd->driver->relinquish_port(hcd, port1);
4687 /* Returns 1 if there was a remote wakeup and a connect status change. */
4688 static int hub_handle_remote_wakeup(struct usb_hub *hub, unsigned int port,
4689 u16 portstatus, u16 portchange)
4691 struct usb_device *hdev;
4692 struct usb_device *udev;
4693 int connect_change = 0;
4694 int ret;
4696 hdev = hub->hdev;
4697 udev = hub->ports[port - 1]->child;
4698 if (!hub_is_superspeed(hdev)) {
4699 if (!(portchange & USB_PORT_STAT_C_SUSPEND))
4700 return 0;
4701 usb_clear_port_feature(hdev, port, USB_PORT_FEAT_C_SUSPEND);
4702 } else {
4703 if (!udev || udev->state != USB_STATE_SUSPENDED ||
4704 (portstatus & USB_PORT_STAT_LINK_STATE) !=
4705 USB_SS_PORT_LS_U0)
4706 return 0;
4709 if (udev) {
4710 /* TRSMRCY = 10 msec */
4711 msleep(10);
4713 usb_lock_device(udev);
4714 ret = usb_remote_wakeup(udev);
4715 usb_unlock_device(udev);
4716 if (ret < 0)
4717 connect_change = 1;
4718 } else {
4719 ret = -ENODEV;
4720 hub_port_disable(hub, port, 1);
4722 dev_dbg(hub->intfdev, "resume on port %d, status %d\n",
4723 port, ret);
4724 return connect_change;
4727 static void hub_events(void)
4729 struct list_head *tmp;
4730 struct usb_device *hdev;
4731 struct usb_interface *intf;
4732 struct usb_hub *hub;
4733 struct device *hub_dev;
4734 u16 hubstatus;
4735 u16 hubchange;
4736 u16 portstatus;
4737 u16 portchange;
4738 int i, ret;
4739 int connect_change, wakeup_change;
4742 * We restart the list every time to avoid a deadlock with
4743 * deleting hubs downstream from this one. This should be
4744 * safe since we delete the hub from the event list.
4745 * Not the most efficient, but avoids deadlocks.
4747 while (1) {
4749 /* Grab the first entry at the beginning of the list */
4750 spin_lock_irq(&hub_event_lock);
4751 if (list_empty(&hub_event_list)) {
4752 spin_unlock_irq(&hub_event_lock);
4753 break;
4756 tmp = hub_event_list.next;
4757 list_del_init(tmp);
4759 hub = list_entry(tmp, struct usb_hub, event_list);
4760 kref_get(&hub->kref);
4761 hdev = hub->hdev;
4762 usb_get_dev(hdev);
4763 spin_unlock_irq(&hub_event_lock);
4765 hub_dev = hub->intfdev;
4766 intf = to_usb_interface(hub_dev);
4767 dev_dbg(hub_dev, "state %d ports %d chg %04x evt %04x\n",
4768 hdev->state, hdev->maxchild,
4769 /* NOTE: expects max 15 ports... */
4770 (u16) hub->change_bits[0],
4771 (u16) hub->event_bits[0]);
4773 /* Lock the device, then check to see if we were
4774 * disconnected while waiting for the lock to succeed. */
4775 usb_lock_device(hdev);
4776 if (unlikely(hub->disconnected))
4777 goto loop_disconnected;
4779 /* If the hub has died, clean up after it */
4780 if (hdev->state == USB_STATE_NOTATTACHED) {
4781 hub->error = -ENODEV;
4782 hub_quiesce(hub, HUB_DISCONNECT);
4783 goto loop;
4786 /* Autoresume */
4787 ret = usb_autopm_get_interface(intf);
4788 if (ret) {
4789 dev_dbg(hub_dev, "Can't autoresume: %d\n", ret);
4790 goto loop;
4793 /* If this is an inactive hub, do nothing */
4794 if (hub->quiescing)
4795 goto loop_autopm;
4797 if (hub->error) {
4798 dev_dbg (hub_dev, "resetting for error %d\n",
4799 hub->error);
4801 ret = usb_reset_device(hdev);
4802 if (ret) {
4803 dev_dbg (hub_dev,
4804 "error resetting hub: %d\n", ret);
4805 goto loop_autopm;
4808 hub->nerrors = 0;
4809 hub->error = 0;
4812 /* deal with port status changes */
4813 for (i = 1; i <= hdev->maxchild; i++) {
4814 if (test_bit(i, hub->busy_bits))
4815 continue;
4816 connect_change = test_bit(i, hub->change_bits);
4817 wakeup_change = test_and_clear_bit(i, hub->wakeup_bits);
4818 if (!test_and_clear_bit(i, hub->event_bits) &&
4819 !connect_change && !wakeup_change)
4820 continue;
4822 ret = hub_port_status(hub, i,
4823 &portstatus, &portchange);
4824 if (ret < 0)
4825 continue;
4827 if (portchange & USB_PORT_STAT_C_CONNECTION) {
4828 usb_clear_port_feature(hdev, i,
4829 USB_PORT_FEAT_C_CONNECTION);
4830 connect_change = 1;
4833 if (portchange & USB_PORT_STAT_C_ENABLE) {
4834 if (!connect_change)
4835 dev_dbg (hub_dev,
4836 "port %d enable change, "
4837 "status %08x\n",
4838 i, portstatus);
4839 usb_clear_port_feature(hdev, i,
4840 USB_PORT_FEAT_C_ENABLE);
4843 * EM interference sometimes causes badly
4844 * shielded USB devices to be shutdown by
4845 * the hub, this hack enables them again.
4846 * Works at least with mouse driver.
4848 if (!(portstatus & USB_PORT_STAT_ENABLE)
4849 && !connect_change
4850 && hub->ports[i - 1]->child) {
4851 dev_err (hub_dev,
4852 "port %i "
4853 "disabled by hub (EMI?), "
4854 "re-enabling...\n",
4856 connect_change = 1;
4860 if (hub_handle_remote_wakeup(hub, i,
4861 portstatus, portchange))
4862 connect_change = 1;
4864 if (portchange & USB_PORT_STAT_C_OVERCURRENT) {
4865 u16 status = 0;
4866 u16 unused;
4868 dev_dbg(hub_dev, "over-current change on port "
4869 "%d\n", i);
4870 usb_clear_port_feature(hdev, i,
4871 USB_PORT_FEAT_C_OVER_CURRENT);
4872 msleep(100); /* Cool down */
4873 hub_power_on(hub, true);
4874 hub_port_status(hub, i, &status, &unused);
4875 if (status & USB_PORT_STAT_OVERCURRENT)
4876 dev_err(hub_dev, "over-current "
4877 "condition on port %d\n", i);
4880 if (portchange & USB_PORT_STAT_C_RESET) {
4881 dev_dbg (hub_dev,
4882 "reset change on port %d\n",
4884 usb_clear_port_feature(hdev, i,
4885 USB_PORT_FEAT_C_RESET);
4887 if ((portchange & USB_PORT_STAT_C_BH_RESET) &&
4888 hub_is_superspeed(hub->hdev)) {
4889 dev_dbg(hub_dev,
4890 "warm reset change on port %d\n",
4892 usb_clear_port_feature(hdev, i,
4893 USB_PORT_FEAT_C_BH_PORT_RESET);
4895 if (portchange & USB_PORT_STAT_C_LINK_STATE) {
4896 usb_clear_port_feature(hub->hdev, i,
4897 USB_PORT_FEAT_C_PORT_LINK_STATE);
4899 if (portchange & USB_PORT_STAT_C_CONFIG_ERROR) {
4900 dev_warn(hub_dev,
4901 "config error on port %d\n",
4903 usb_clear_port_feature(hub->hdev, i,
4904 USB_PORT_FEAT_C_PORT_CONFIG_ERROR);
4907 /* Warm reset a USB3 protocol port if it's in
4908 * SS.Inactive state.
4910 if (hub_port_warm_reset_required(hub, portstatus)) {
4911 int status;
4912 struct usb_device *udev =
4913 hub->ports[i - 1]->child;
4915 dev_dbg(hub_dev, "warm reset port %d\n", i);
4916 if (!udev ||
4917 !(portstatus & USB_PORT_STAT_CONNECTION) ||
4918 udev->state == USB_STATE_NOTATTACHED) {
4919 status = hub_port_reset(hub, i,
4920 NULL, HUB_BH_RESET_TIME,
4921 true);
4922 if (status < 0)
4923 hub_port_disable(hub, i, 1);
4924 } else {
4925 usb_lock_device(udev);
4926 status = usb_reset_device(udev);
4927 usb_unlock_device(udev);
4928 connect_change = 0;
4932 if (connect_change)
4933 hub_port_connect_change(hub, i,
4934 portstatus, portchange);
4935 } /* end for i */
4937 /* deal with hub status changes */
4938 if (test_and_clear_bit(0, hub->event_bits) == 0)
4939 ; /* do nothing */
4940 else if (hub_hub_status(hub, &hubstatus, &hubchange) < 0)
4941 dev_err (hub_dev, "get_hub_status failed\n");
4942 else {
4943 if (hubchange & HUB_CHANGE_LOCAL_POWER) {
4944 dev_dbg (hub_dev, "power change\n");
4945 clear_hub_feature(hdev, C_HUB_LOCAL_POWER);
4946 if (hubstatus & HUB_STATUS_LOCAL_POWER)
4947 /* FIXME: Is this always true? */
4948 hub->limited_power = 1;
4949 else
4950 hub->limited_power = 0;
4952 if (hubchange & HUB_CHANGE_OVERCURRENT) {
4953 u16 status = 0;
4954 u16 unused;
4956 dev_dbg(hub_dev, "over-current change\n");
4957 clear_hub_feature(hdev, C_HUB_OVER_CURRENT);
4958 msleep(500); /* Cool down */
4959 hub_power_on(hub, true);
4960 hub_hub_status(hub, &status, &unused);
4961 if (status & HUB_STATUS_OVERCURRENT)
4962 dev_err(hub_dev, "over-current "
4963 "condition\n");
4967 loop_autopm:
4968 /* Balance the usb_autopm_get_interface() above */
4969 usb_autopm_put_interface_no_suspend(intf);
4970 loop:
4971 /* Balance the usb_autopm_get_interface_no_resume() in
4972 * kick_khubd() and allow autosuspend.
4974 usb_autopm_put_interface(intf);
4975 loop_disconnected:
4976 usb_unlock_device(hdev);
4977 usb_put_dev(hdev);
4978 kref_put(&hub->kref, hub_release);
4980 } /* end while (1) */
4983 static int hub_thread(void *__unused)
4985 /* khubd needs to be freezable to avoid intefering with USB-PERSIST
4986 * port handover. Otherwise it might see that a full-speed device
4987 * was gone before the EHCI controller had handed its port over to
4988 * the companion full-speed controller.
4990 set_freezable();
4992 do {
4993 hub_events();
4994 wait_event_freezable(khubd_wait,
4995 !list_empty(&hub_event_list) ||
4996 kthread_should_stop());
4997 } while (!kthread_should_stop() || !list_empty(&hub_event_list));
4999 pr_debug("%s: khubd exiting\n", usbcore_name);
5000 return 0;
5003 static const struct usb_device_id hub_id_table[] = {
5004 { .match_flags = USB_DEVICE_ID_MATCH_VENDOR
5005 | USB_DEVICE_ID_MATCH_INT_CLASS,
5006 .idVendor = USB_VENDOR_GENESYS_LOGIC,
5007 .bInterfaceClass = USB_CLASS_HUB,
5008 .driver_info = HUB_QUIRK_CHECK_PORT_AUTOSUSPEND},
5009 { .match_flags = USB_DEVICE_ID_MATCH_DEV_CLASS,
5010 .bDeviceClass = USB_CLASS_HUB},
5011 { .match_flags = USB_DEVICE_ID_MATCH_INT_CLASS,
5012 .bInterfaceClass = USB_CLASS_HUB},
5013 { } /* Terminating entry */
5016 MODULE_DEVICE_TABLE (usb, hub_id_table);
5018 static struct usb_driver hub_driver = {
5019 .name = "hub",
5020 .probe = hub_probe,
5021 .disconnect = hub_disconnect,
5022 .suspend = hub_suspend,
5023 .resume = hub_resume,
5024 .reset_resume = hub_reset_resume,
5025 .pre_reset = hub_pre_reset,
5026 .post_reset = hub_post_reset,
5027 .unlocked_ioctl = hub_ioctl,
5028 .id_table = hub_id_table,
5029 .supports_autosuspend = 1,
5032 int usb_hub_init(void)
5034 if (usb_register(&hub_driver) < 0) {
5035 printk(KERN_ERR "%s: can't register hub driver\n",
5036 usbcore_name);
5037 return -1;
5040 khubd_task = kthread_run(hub_thread, NULL, "khubd");
5041 if (!IS_ERR(khubd_task))
5042 return 0;
5044 /* Fall through if kernel_thread failed */
5045 usb_deregister(&hub_driver);
5046 printk(KERN_ERR "%s: can't start khubd\n", usbcore_name);
5048 return -1;
5051 void usb_hub_cleanup(void)
5053 kthread_stop(khubd_task);
5056 * Hub resources are freed for us by usb_deregister. It calls
5057 * usb_driver_purge on every device which in turn calls that
5058 * devices disconnect function if it is using this driver.
5059 * The hub_disconnect function takes care of releasing the
5060 * individual hub resources. -greg
5062 usb_deregister(&hub_driver);
5063 } /* usb_hub_cleanup() */
5065 static int descriptors_changed(struct usb_device *udev,
5066 struct usb_device_descriptor *old_device_descriptor,
5067 struct usb_host_bos *old_bos)
5069 int changed = 0;
5070 unsigned index;
5071 unsigned serial_len = 0;
5072 unsigned len;
5073 unsigned old_length;
5074 int length;
5075 char *buf;
5077 if (memcmp(&udev->descriptor, old_device_descriptor,
5078 sizeof(*old_device_descriptor)) != 0)
5079 return 1;
5081 if ((old_bos && !udev->bos) || (!old_bos && udev->bos))
5082 return 1;
5083 if (udev->bos) {
5084 len = le16_to_cpu(udev->bos->desc->wTotalLength);
5085 if (len != le16_to_cpu(old_bos->desc->wTotalLength))
5086 return 1;
5087 if (memcmp(udev->bos->desc, old_bos->desc, len))
5088 return 1;
5091 /* Since the idVendor, idProduct, and bcdDevice values in the
5092 * device descriptor haven't changed, we will assume the
5093 * Manufacturer and Product strings haven't changed either.
5094 * But the SerialNumber string could be different (e.g., a
5095 * different flash card of the same brand).
5097 if (udev->serial)
5098 serial_len = strlen(udev->serial) + 1;
5100 len = serial_len;
5101 for (index = 0; index < udev->descriptor.bNumConfigurations; index++) {
5102 old_length = le16_to_cpu(udev->config[index].desc.wTotalLength);
5103 len = max(len, old_length);
5106 buf = kmalloc(len, GFP_NOIO);
5107 if (buf == NULL) {
5108 dev_err(&udev->dev, "no mem to re-read configs after reset\n");
5109 /* assume the worst */
5110 return 1;
5112 for (index = 0; index < udev->descriptor.bNumConfigurations; index++) {
5113 old_length = le16_to_cpu(udev->config[index].desc.wTotalLength);
5114 length = usb_get_descriptor(udev, USB_DT_CONFIG, index, buf,
5115 old_length);
5116 if (length != old_length) {
5117 dev_dbg(&udev->dev, "config index %d, error %d\n",
5118 index, length);
5119 changed = 1;
5120 break;
5122 if (memcmp (buf, udev->rawdescriptors[index], old_length)
5123 != 0) {
5124 dev_dbg(&udev->dev, "config index %d changed (#%d)\n",
5125 index,
5126 ((struct usb_config_descriptor *) buf)->
5127 bConfigurationValue);
5128 changed = 1;
5129 break;
5133 if (!changed && serial_len) {
5134 length = usb_string(udev, udev->descriptor.iSerialNumber,
5135 buf, serial_len);
5136 if (length + 1 != serial_len) {
5137 dev_dbg(&udev->dev, "serial string error %d\n",
5138 length);
5139 changed = 1;
5140 } else if (memcmp(buf, udev->serial, length) != 0) {
5141 dev_dbg(&udev->dev, "serial string changed\n");
5142 changed = 1;
5146 kfree(buf);
5147 return changed;
5151 * usb_reset_and_verify_device - perform a USB port reset to reinitialize a device
5152 * @udev: device to reset (not in SUSPENDED or NOTATTACHED state)
5154 * WARNING - don't use this routine to reset a composite device
5155 * (one with multiple interfaces owned by separate drivers)!
5156 * Use usb_reset_device() instead.
5158 * Do a port reset, reassign the device's address, and establish its
5159 * former operating configuration. If the reset fails, or the device's
5160 * descriptors change from their values before the reset, or the original
5161 * configuration and altsettings cannot be restored, a flag will be set
5162 * telling khubd to pretend the device has been disconnected and then
5163 * re-connected. All drivers will be unbound, and the device will be
5164 * re-enumerated and probed all over again.
5166 * Return: 0 if the reset succeeded, -ENODEV if the device has been
5167 * flagged for logical disconnection, or some other negative error code
5168 * if the reset wasn't even attempted.
5170 * Note:
5171 * The caller must own the device lock. For example, it's safe to use
5172 * this from a driver probe() routine after downloading new firmware.
5173 * For calls that might not occur during probe(), drivers should lock
5174 * the device using usb_lock_device_for_reset().
5176 * Locking exception: This routine may also be called from within an
5177 * autoresume handler. Such usage won't conflict with other tasks
5178 * holding the device lock because these tasks should always call
5179 * usb_autopm_resume_device(), thereby preventing any unwanted autoresume.
5181 static int usb_reset_and_verify_device(struct usb_device *udev)
5183 struct usb_device *parent_hdev = udev->parent;
5184 struct usb_hub *parent_hub;
5185 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
5186 struct usb_device_descriptor descriptor = udev->descriptor;
5187 struct usb_host_bos *bos;
5188 int i, ret = 0;
5189 int port1 = udev->portnum;
5191 if (udev->state == USB_STATE_NOTATTACHED ||
5192 udev->state == USB_STATE_SUSPENDED) {
5193 dev_dbg(&udev->dev, "device reset not allowed in state %d\n",
5194 udev->state);
5195 return -EINVAL;
5198 if (!parent_hdev) {
5199 /* this requires hcd-specific logic; see ohci_restart() */
5200 dev_dbg(&udev->dev, "%s for root hub!\n", __func__);
5201 return -EISDIR;
5203 parent_hub = usb_hub_to_struct_hub(parent_hdev);
5205 /* Disable USB2 hardware LPM.
5206 * It will be re-enabled by the enumeration process.
5208 if (udev->usb2_hw_lpm_enabled == 1)
5209 usb_set_usb2_hardware_lpm(udev, 0);
5211 bos = udev->bos;
5212 udev->bos = NULL;
5214 /* Disable LPM and LTM while we reset the device and reinstall the alt
5215 * settings. Device-initiated LPM settings, and system exit latency
5216 * settings are cleared when the device is reset, so we have to set
5217 * them up again.
5219 ret = usb_unlocked_disable_lpm(udev);
5220 if (ret) {
5221 dev_err(&udev->dev, "%s Failed to disable LPM\n.", __func__);
5222 goto re_enumerate;
5224 ret = usb_disable_ltm(udev);
5225 if (ret) {
5226 dev_err(&udev->dev, "%s Failed to disable LTM\n.",
5227 __func__);
5228 goto re_enumerate;
5231 set_bit(port1, parent_hub->busy_bits);
5232 for (i = 0; i < SET_CONFIG_TRIES; ++i) {
5234 /* ep0 maxpacket size may change; let the HCD know about it.
5235 * Other endpoints will be handled by re-enumeration. */
5236 usb_ep0_reinit(udev);
5237 ret = hub_port_init(parent_hub, udev, port1, i);
5238 if (ret >= 0 || ret == -ENOTCONN || ret == -ENODEV)
5239 break;
5241 clear_bit(port1, parent_hub->busy_bits);
5243 if (ret < 0)
5244 goto re_enumerate;
5246 /* Device might have changed firmware (DFU or similar) */
5247 if (descriptors_changed(udev, &descriptor, bos)) {
5248 dev_info(&udev->dev, "device firmware changed\n");
5249 udev->descriptor = descriptor; /* for disconnect() calls */
5250 goto re_enumerate;
5253 /* Restore the device's previous configuration */
5254 if (!udev->actconfig)
5255 goto done;
5257 mutex_lock(hcd->bandwidth_mutex);
5258 ret = usb_hcd_alloc_bandwidth(udev, udev->actconfig, NULL, NULL);
5259 if (ret < 0) {
5260 dev_warn(&udev->dev,
5261 "Busted HC? Not enough HCD resources for "
5262 "old configuration.\n");
5263 mutex_unlock(hcd->bandwidth_mutex);
5264 goto re_enumerate;
5266 ret = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
5267 USB_REQ_SET_CONFIGURATION, 0,
5268 udev->actconfig->desc.bConfigurationValue, 0,
5269 NULL, 0, USB_CTRL_SET_TIMEOUT);
5270 if (ret < 0) {
5271 dev_err(&udev->dev,
5272 "can't restore configuration #%d (error=%d)\n",
5273 udev->actconfig->desc.bConfigurationValue, ret);
5274 mutex_unlock(hcd->bandwidth_mutex);
5275 goto re_enumerate;
5277 mutex_unlock(hcd->bandwidth_mutex);
5278 usb_set_device_state(udev, USB_STATE_CONFIGURED);
5280 /* Put interfaces back into the same altsettings as before.
5281 * Don't bother to send the Set-Interface request for interfaces
5282 * that were already in altsetting 0; besides being unnecessary,
5283 * many devices can't handle it. Instead just reset the host-side
5284 * endpoint state.
5286 for (i = 0; i < udev->actconfig->desc.bNumInterfaces; i++) {
5287 struct usb_host_config *config = udev->actconfig;
5288 struct usb_interface *intf = config->interface[i];
5289 struct usb_interface_descriptor *desc;
5291 desc = &intf->cur_altsetting->desc;
5292 if (desc->bAlternateSetting == 0) {
5293 usb_disable_interface(udev, intf, true);
5294 usb_enable_interface(udev, intf, true);
5295 ret = 0;
5296 } else {
5297 /* Let the bandwidth allocation function know that this
5298 * device has been reset, and it will have to use
5299 * alternate setting 0 as the current alternate setting.
5301 intf->resetting_device = 1;
5302 ret = usb_set_interface(udev, desc->bInterfaceNumber,
5303 desc->bAlternateSetting);
5304 intf->resetting_device = 0;
5306 if (ret < 0) {
5307 dev_err(&udev->dev, "failed to restore interface %d "
5308 "altsetting %d (error=%d)\n",
5309 desc->bInterfaceNumber,
5310 desc->bAlternateSetting,
5311 ret);
5312 goto re_enumerate;
5316 done:
5317 /* Now that the alt settings are re-installed, enable LTM and LPM. */
5318 usb_set_usb2_hardware_lpm(udev, 1);
5319 usb_unlocked_enable_lpm(udev);
5320 usb_enable_ltm(udev);
5321 usb_release_bos_descriptor(udev);
5322 udev->bos = bos;
5323 return 0;
5325 re_enumerate:
5326 /* LPM state doesn't matter when we're about to destroy the device. */
5327 hub_port_logical_disconnect(parent_hub, port1);
5328 usb_release_bos_descriptor(udev);
5329 udev->bos = bos;
5330 return -ENODEV;
5334 * usb_reset_device - warn interface drivers and perform a USB port reset
5335 * @udev: device to reset (not in SUSPENDED or NOTATTACHED state)
5337 * Warns all drivers bound to registered interfaces (using their pre_reset
5338 * method), performs the port reset, and then lets the drivers know that
5339 * the reset is over (using their post_reset method).
5341 * Return: The same as for usb_reset_and_verify_device().
5343 * Note:
5344 * The caller must own the device lock. For example, it's safe to use
5345 * this from a driver probe() routine after downloading new firmware.
5346 * For calls that might not occur during probe(), drivers should lock
5347 * the device using usb_lock_device_for_reset().
5349 * If an interface is currently being probed or disconnected, we assume
5350 * its driver knows how to handle resets. For all other interfaces,
5351 * if the driver doesn't have pre_reset and post_reset methods then
5352 * we attempt to unbind it and rebind afterward.
5354 int usb_reset_device(struct usb_device *udev)
5356 int ret;
5357 int i;
5358 unsigned int noio_flag;
5359 struct usb_host_config *config = udev->actconfig;
5361 if (udev->state == USB_STATE_NOTATTACHED ||
5362 udev->state == USB_STATE_SUSPENDED) {
5363 dev_dbg(&udev->dev, "device reset not allowed in state %d\n",
5364 udev->state);
5365 return -EINVAL;
5369 * Don't allocate memory with GFP_KERNEL in current
5370 * context to avoid possible deadlock if usb mass
5371 * storage interface or usbnet interface(iSCSI case)
5372 * is included in current configuration. The easist
5373 * approach is to do it for every device reset,
5374 * because the device 'memalloc_noio' flag may have
5375 * not been set before reseting the usb device.
5377 noio_flag = memalloc_noio_save();
5379 /* Prevent autosuspend during the reset */
5380 usb_autoresume_device(udev);
5382 if (config) {
5383 for (i = 0; i < config->desc.bNumInterfaces; ++i) {
5384 struct usb_interface *cintf = config->interface[i];
5385 struct usb_driver *drv;
5386 int unbind = 0;
5388 if (cintf->dev.driver) {
5389 drv = to_usb_driver(cintf->dev.driver);
5390 if (drv->pre_reset && drv->post_reset)
5391 unbind = (drv->pre_reset)(cintf);
5392 else if (cintf->condition ==
5393 USB_INTERFACE_BOUND)
5394 unbind = 1;
5395 if (unbind)
5396 usb_forced_unbind_intf(cintf);
5401 ret = usb_reset_and_verify_device(udev);
5403 if (config) {
5404 for (i = config->desc.bNumInterfaces - 1; i >= 0; --i) {
5405 struct usb_interface *cintf = config->interface[i];
5406 struct usb_driver *drv;
5407 int rebind = cintf->needs_binding;
5409 if (!rebind && cintf->dev.driver) {
5410 drv = to_usb_driver(cintf->dev.driver);
5411 if (drv->post_reset)
5412 rebind = (drv->post_reset)(cintf);
5413 else if (cintf->condition ==
5414 USB_INTERFACE_BOUND)
5415 rebind = 1;
5416 if (rebind)
5417 cintf->needs_binding = 1;
5420 usb_unbind_and_rebind_marked_interfaces(udev);
5423 usb_autosuspend_device(udev);
5424 memalloc_noio_restore(noio_flag);
5425 return ret;
5427 EXPORT_SYMBOL_GPL(usb_reset_device);
5431 * usb_queue_reset_device - Reset a USB device from an atomic context
5432 * @iface: USB interface belonging to the device to reset
5434 * This function can be used to reset a USB device from an atomic
5435 * context, where usb_reset_device() won't work (as it blocks).
5437 * Doing a reset via this method is functionally equivalent to calling
5438 * usb_reset_device(), except for the fact that it is delayed to a
5439 * workqueue. This means that any drivers bound to other interfaces
5440 * might be unbound, as well as users from usbfs in user space.
5442 * Corner cases:
5444 * - Scheduling two resets at the same time from two different drivers
5445 * attached to two different interfaces of the same device is
5446 * possible; depending on how the driver attached to each interface
5447 * handles ->pre_reset(), the second reset might happen or not.
5449 * - If a driver is unbound and it had a pending reset, the reset will
5450 * be cancelled.
5452 * - This function can be called during .probe() or .disconnect()
5453 * times. On return from .disconnect(), any pending resets will be
5454 * cancelled.
5456 * There is no no need to lock/unlock the @reset_ws as schedule_work()
5457 * does its own.
5459 * NOTE: We don't do any reference count tracking because it is not
5460 * needed. The lifecycle of the work_struct is tied to the
5461 * usb_interface. Before destroying the interface we cancel the
5462 * work_struct, so the fact that work_struct is queued and or
5463 * running means the interface (and thus, the device) exist and
5464 * are referenced.
5466 void usb_queue_reset_device(struct usb_interface *iface)
5468 schedule_work(&iface->reset_ws);
5470 EXPORT_SYMBOL_GPL(usb_queue_reset_device);
5473 * usb_hub_find_child - Get the pointer of child device
5474 * attached to the port which is specified by @port1.
5475 * @hdev: USB device belonging to the usb hub
5476 * @port1: port num to indicate which port the child device
5477 * is attached to.
5479 * USB drivers call this function to get hub's child device
5480 * pointer.
5482 * Return: %NULL if input param is invalid and
5483 * child's usb_device pointer if non-NULL.
5485 struct usb_device *usb_hub_find_child(struct usb_device *hdev,
5486 int port1)
5488 struct usb_hub *hub = usb_hub_to_struct_hub(hdev);
5490 if (port1 < 1 || port1 > hdev->maxchild)
5491 return NULL;
5492 return hub->ports[port1 - 1]->child;
5494 EXPORT_SYMBOL_GPL(usb_hub_find_child);
5497 * usb_set_hub_port_connect_type - set hub port connect type.
5498 * @hdev: USB device belonging to the usb hub
5499 * @port1: port num of the port
5500 * @type: connect type of the port
5502 void usb_set_hub_port_connect_type(struct usb_device *hdev, int port1,
5503 enum usb_port_connect_type type)
5505 struct usb_hub *hub = usb_hub_to_struct_hub(hdev);
5507 if (hub)
5508 hub->ports[port1 - 1]->connect_type = type;
5512 * usb_get_hub_port_connect_type - Get the port's connect type
5513 * @hdev: USB device belonging to the usb hub
5514 * @port1: port num of the port
5516 * Return: The connect type of the port if successful. Or
5517 * USB_PORT_CONNECT_TYPE_UNKNOWN if input params are invalid.
5519 enum usb_port_connect_type
5520 usb_get_hub_port_connect_type(struct usb_device *hdev, int port1)
5522 struct usb_hub *hub = usb_hub_to_struct_hub(hdev);
5524 if (!hub)
5525 return USB_PORT_CONNECT_TYPE_UNKNOWN;
5527 return hub->ports[port1 - 1]->connect_type;
5530 void usb_hub_adjust_deviceremovable(struct usb_device *hdev,
5531 struct usb_hub_descriptor *desc)
5533 enum usb_port_connect_type connect_type;
5534 int i;
5536 if (!hub_is_superspeed(hdev)) {
5537 for (i = 1; i <= hdev->maxchild; i++) {
5538 connect_type = usb_get_hub_port_connect_type(hdev, i);
5540 if (connect_type == USB_PORT_CONNECT_TYPE_HARD_WIRED) {
5541 u8 mask = 1 << (i%8);
5543 if (!(desc->u.hs.DeviceRemovable[i/8] & mask)) {
5544 dev_dbg(&hdev->dev, "usb port%d's DeviceRemovable is changed to 1 according to platform information.\n",
5546 desc->u.hs.DeviceRemovable[i/8] |= mask;
5550 } else {
5551 u16 port_removable = le16_to_cpu(desc->u.ss.DeviceRemovable);
5553 for (i = 1; i <= hdev->maxchild; i++) {
5554 connect_type = usb_get_hub_port_connect_type(hdev, i);
5556 if (connect_type == USB_PORT_CONNECT_TYPE_HARD_WIRED) {
5557 u16 mask = 1 << i;
5559 if (!(port_removable & mask)) {
5560 dev_dbg(&hdev->dev, "usb port%d's DeviceRemovable is changed to 1 according to platform information.\n",
5562 port_removable |= mask;
5567 desc->u.ss.DeviceRemovable = cpu_to_le16(port_removable);
5571 #ifdef CONFIG_ACPI
5573 * usb_get_hub_port_acpi_handle - Get the usb port's acpi handle
5574 * @hdev: USB device belonging to the usb hub
5575 * @port1: port num of the port
5577 * Return: Port's acpi handle if successful, %NULL if params are
5578 * invalid.
5580 acpi_handle usb_get_hub_port_acpi_handle(struct usb_device *hdev,
5581 int port1)
5583 struct usb_hub *hub = usb_hub_to_struct_hub(hdev);
5585 if (!hub)
5586 return NULL;
5588 return DEVICE_ACPI_HANDLE(&hub->ports[port1 - 1]->dev);
5590 #endif