Linux 4.19.133
[linux/fpc-iii.git] / drivers / usb / core / hub.c
blobfa28f23a4a33694f6fac624aef622e78765be420
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3 * USB hub driver.
5 * (C) Copyright 1999 Linus Torvalds
6 * (C) Copyright 1999 Johannes Erdfelt
7 * (C) Copyright 1999 Gregory P. Smith
8 * (C) Copyright 2001 Brad Hards (bhards@bigpond.net.au)
10 * Released under the GPLv2 only.
13 #include <linux/kernel.h>
14 #include <linux/errno.h>
15 #include <linux/module.h>
16 #include <linux/moduleparam.h>
17 #include <linux/completion.h>
18 #include <linux/sched/mm.h>
19 #include <linux/list.h>
20 #include <linux/slab.h>
21 #include <linux/ioctl.h>
22 #include <linux/usb.h>
23 #include <linux/usbdevice_fs.h>
24 #include <linux/usb/hcd.h>
25 #include <linux/usb/otg.h>
26 #include <linux/usb/quirks.h>
27 #include <linux/workqueue.h>
28 #include <linux/mutex.h>
29 #include <linux/random.h>
30 #include <linux/pm_qos.h>
32 #include <linux/uaccess.h>
33 #include <asm/byteorder.h>
35 #include "hub.h"
36 #include "otg_whitelist.h"
38 #define USB_VENDOR_GENESYS_LOGIC 0x05e3
39 #define USB_VENDOR_SMSC 0x0424
40 #define USB_PRODUCT_USB5534B 0x5534
41 #define HUB_QUIRK_CHECK_PORT_AUTOSUSPEND 0x01
42 #define HUB_QUIRK_DISABLE_AUTOSUSPEND 0x02
44 #define USB_TP_TRANSMISSION_DELAY 40 /* ns */
45 #define USB_TP_TRANSMISSION_DELAY_MAX 65535 /* ns */
47 /* Protect struct usb_device->state and ->children members
48 * Note: Both are also protected by ->dev.sem, except that ->state can
49 * change to USB_STATE_NOTATTACHED even when the semaphore isn't held. */
50 static DEFINE_SPINLOCK(device_state_lock);
52 /* workqueue to process hub events */
53 static struct workqueue_struct *hub_wq;
54 static void hub_event(struct work_struct *work);
56 /* synchronize hub-port add/remove and peering operations */
57 DEFINE_MUTEX(usb_port_peer_mutex);
59 /* cycle leds on hubs that aren't blinking for attention */
60 static bool blinkenlights;
61 module_param(blinkenlights, bool, S_IRUGO);
62 MODULE_PARM_DESC(blinkenlights, "true to cycle leds on hubs");
65 * Device SATA8000 FW1.0 from DATAST0R Technology Corp requires about
66 * 10 seconds to send reply for the initial 64-byte descriptor request.
68 /* define initial 64-byte descriptor request timeout in milliseconds */
69 static int initial_descriptor_timeout = USB_CTRL_GET_TIMEOUT;
70 module_param(initial_descriptor_timeout, int, S_IRUGO|S_IWUSR);
71 MODULE_PARM_DESC(initial_descriptor_timeout,
72 "initial 64-byte descriptor request timeout in milliseconds "
73 "(default 5000 - 5.0 seconds)");
76 * As of 2.6.10 we introduce a new USB device initialization scheme which
77 * closely resembles the way Windows works. Hopefully it will be compatible
78 * with a wider range of devices than the old scheme. However some previously
79 * working devices may start giving rise to "device not accepting address"
80 * errors; if that happens the user can try the old scheme by adjusting the
81 * following module parameters.
83 * For maximum flexibility there are two boolean parameters to control the
84 * hub driver's behavior. On the first initialization attempt, if the
85 * "old_scheme_first" parameter is set then the old scheme will be used,
86 * otherwise the new scheme is used. If that fails and "use_both_schemes"
87 * is set, then the driver will make another attempt, using the other scheme.
89 static bool old_scheme_first;
90 module_param(old_scheme_first, bool, S_IRUGO | S_IWUSR);
91 MODULE_PARM_DESC(old_scheme_first,
92 "start with the old device initialization scheme");
94 static bool use_both_schemes = 1;
95 module_param(use_both_schemes, bool, S_IRUGO | S_IWUSR);
96 MODULE_PARM_DESC(use_both_schemes,
97 "try the other device initialization scheme if the "
98 "first one fails");
100 /* Mutual exclusion for EHCI CF initialization. This interferes with
101 * port reset on some companion controllers.
103 DECLARE_RWSEM(ehci_cf_port_reset_rwsem);
104 EXPORT_SYMBOL_GPL(ehci_cf_port_reset_rwsem);
106 #define HUB_DEBOUNCE_TIMEOUT 2000
107 #define HUB_DEBOUNCE_STEP 25
108 #define HUB_DEBOUNCE_STABLE 100
110 static void hub_release(struct kref *kref);
111 static int usb_reset_and_verify_device(struct usb_device *udev);
112 static int hub_port_disable(struct usb_hub *hub, int port1, int set_state);
113 static bool hub_port_warm_reset_required(struct usb_hub *hub, int port1,
114 u16 portstatus);
116 static inline char *portspeed(struct usb_hub *hub, int portstatus)
118 if (hub_is_superspeedplus(hub->hdev))
119 return "10.0 Gb/s";
120 if (hub_is_superspeed(hub->hdev))
121 return "5.0 Gb/s";
122 if (portstatus & USB_PORT_STAT_HIGH_SPEED)
123 return "480 Mb/s";
124 else if (portstatus & USB_PORT_STAT_LOW_SPEED)
125 return "1.5 Mb/s";
126 else
127 return "12 Mb/s";
130 /* Note that hdev or one of its children must be locked! */
131 struct usb_hub *usb_hub_to_struct_hub(struct usb_device *hdev)
133 if (!hdev || !hdev->actconfig || !hdev->maxchild)
134 return NULL;
135 return usb_get_intfdata(hdev->actconfig->interface[0]);
138 int usb_device_supports_lpm(struct usb_device *udev)
140 /* Some devices have trouble with LPM */
141 if (udev->quirks & USB_QUIRK_NO_LPM)
142 return 0;
144 /* USB 2.1 (and greater) devices indicate LPM support through
145 * their USB 2.0 Extended Capabilities BOS descriptor.
147 if (udev->speed == USB_SPEED_HIGH || udev->speed == USB_SPEED_FULL) {
148 if (udev->bos->ext_cap &&
149 (USB_LPM_SUPPORT &
150 le32_to_cpu(udev->bos->ext_cap->bmAttributes)))
151 return 1;
152 return 0;
156 * According to the USB 3.0 spec, all USB 3.0 devices must support LPM.
157 * However, there are some that don't, and they set the U1/U2 exit
158 * latencies to zero.
160 if (!udev->bos->ss_cap) {
161 dev_info(&udev->dev, "No LPM exit latency info found, disabling LPM.\n");
162 return 0;
165 if (udev->bos->ss_cap->bU1devExitLat == 0 &&
166 udev->bos->ss_cap->bU2DevExitLat == 0) {
167 if (udev->parent)
168 dev_info(&udev->dev, "LPM exit latency is zeroed, disabling LPM.\n");
169 else
170 dev_info(&udev->dev, "We don't know the algorithms for LPM for this host, disabling LPM.\n");
171 return 0;
174 if (!udev->parent || udev->parent->lpm_capable)
175 return 1;
176 return 0;
180 * Set the Maximum Exit Latency (MEL) for the host to initiate a transition from
181 * either U1 or U2.
183 static void usb_set_lpm_mel(struct usb_device *udev,
184 struct usb3_lpm_parameters *udev_lpm_params,
185 unsigned int udev_exit_latency,
186 struct usb_hub *hub,
187 struct usb3_lpm_parameters *hub_lpm_params,
188 unsigned int hub_exit_latency)
190 unsigned int total_mel;
191 unsigned int device_mel;
192 unsigned int hub_mel;
195 * Calculate the time it takes to transition all links from the roothub
196 * to the parent hub into U0. The parent hub must then decode the
197 * packet (hub header decode latency) to figure out which port it was
198 * bound for.
200 * The Hub Header decode latency is expressed in 0.1us intervals (0x1
201 * means 0.1us). Multiply that by 100 to get nanoseconds.
203 total_mel = hub_lpm_params->mel +
204 (hub->descriptor->u.ss.bHubHdrDecLat * 100);
207 * How long will it take to transition the downstream hub's port into
208 * U0? The greater of either the hub exit latency or the device exit
209 * latency.
211 * The BOS U1/U2 exit latencies are expressed in 1us intervals.
212 * Multiply that by 1000 to get nanoseconds.
214 device_mel = udev_exit_latency * 1000;
215 hub_mel = hub_exit_latency * 1000;
216 if (device_mel > hub_mel)
217 total_mel += device_mel;
218 else
219 total_mel += hub_mel;
221 udev_lpm_params->mel = total_mel;
225 * Set the maximum Device to Host Exit Latency (PEL) for the device to initiate
226 * a transition from either U1 or U2.
228 static void usb_set_lpm_pel(struct usb_device *udev,
229 struct usb3_lpm_parameters *udev_lpm_params,
230 unsigned int udev_exit_latency,
231 struct usb_hub *hub,
232 struct usb3_lpm_parameters *hub_lpm_params,
233 unsigned int hub_exit_latency,
234 unsigned int port_to_port_exit_latency)
236 unsigned int first_link_pel;
237 unsigned int hub_pel;
240 * First, the device sends an LFPS to transition the link between the
241 * device and the parent hub into U0. The exit latency is the bigger of
242 * the device exit latency or the hub exit latency.
244 if (udev_exit_latency > hub_exit_latency)
245 first_link_pel = udev_exit_latency * 1000;
246 else
247 first_link_pel = hub_exit_latency * 1000;
250 * When the hub starts to receive the LFPS, there is a slight delay for
251 * it to figure out that one of the ports is sending an LFPS. Then it
252 * will forward the LFPS to its upstream link. The exit latency is the
253 * delay, plus the PEL that we calculated for this hub.
255 hub_pel = port_to_port_exit_latency * 1000 + hub_lpm_params->pel;
258 * According to figure C-7 in the USB 3.0 spec, the PEL for this device
259 * is the greater of the two exit latencies.
261 if (first_link_pel > hub_pel)
262 udev_lpm_params->pel = first_link_pel;
263 else
264 udev_lpm_params->pel = hub_pel;
268 * Set the System Exit Latency (SEL) to indicate the total worst-case time from
269 * when a device initiates a transition to U0, until when it will receive the
270 * first packet from the host controller.
272 * Section C.1.5.1 describes the four components to this:
273 * - t1: device PEL
274 * - t2: time for the ERDY to make it from the device to the host.
275 * - t3: a host-specific delay to process the ERDY.
276 * - t4: time for the packet to make it from the host to the device.
278 * t3 is specific to both the xHCI host and the platform the host is integrated
279 * into. The Intel HW folks have said it's negligible, FIXME if a different
280 * vendor says otherwise.
282 static void usb_set_lpm_sel(struct usb_device *udev,
283 struct usb3_lpm_parameters *udev_lpm_params)
285 struct usb_device *parent;
286 unsigned int num_hubs;
287 unsigned int total_sel;
289 /* t1 = device PEL */
290 total_sel = udev_lpm_params->pel;
291 /* How many external hubs are in between the device & the root port. */
292 for (parent = udev->parent, num_hubs = 0; parent->parent;
293 parent = parent->parent)
294 num_hubs++;
295 /* t2 = 2.1us + 250ns * (num_hubs - 1) */
296 if (num_hubs > 0)
297 total_sel += 2100 + 250 * (num_hubs - 1);
299 /* t4 = 250ns * num_hubs */
300 total_sel += 250 * num_hubs;
302 udev_lpm_params->sel = total_sel;
305 static void usb_set_lpm_parameters(struct usb_device *udev)
307 struct usb_hub *hub;
308 unsigned int port_to_port_delay;
309 unsigned int udev_u1_del;
310 unsigned int udev_u2_del;
311 unsigned int hub_u1_del;
312 unsigned int hub_u2_del;
314 if (!udev->lpm_capable || udev->speed < USB_SPEED_SUPER)
315 return;
317 hub = usb_hub_to_struct_hub(udev->parent);
318 /* It doesn't take time to transition the roothub into U0, since it
319 * doesn't have an upstream link.
321 if (!hub)
322 return;
324 udev_u1_del = udev->bos->ss_cap->bU1devExitLat;
325 udev_u2_del = le16_to_cpu(udev->bos->ss_cap->bU2DevExitLat);
326 hub_u1_del = udev->parent->bos->ss_cap->bU1devExitLat;
327 hub_u2_del = le16_to_cpu(udev->parent->bos->ss_cap->bU2DevExitLat);
329 usb_set_lpm_mel(udev, &udev->u1_params, udev_u1_del,
330 hub, &udev->parent->u1_params, hub_u1_del);
332 usb_set_lpm_mel(udev, &udev->u2_params, udev_u2_del,
333 hub, &udev->parent->u2_params, hub_u2_del);
336 * Appendix C, section C.2.2.2, says that there is a slight delay from
337 * when the parent hub notices the downstream port is trying to
338 * transition to U0 to when the hub initiates a U0 transition on its
339 * upstream port. The section says the delays are tPort2PortU1EL and
340 * tPort2PortU2EL, but it doesn't define what they are.
342 * The hub chapter, sections 10.4.2.4 and 10.4.2.5 seem to be talking
343 * about the same delays. Use the maximum delay calculations from those
344 * sections. For U1, it's tHubPort2PortExitLat, which is 1us max. For
345 * U2, it's tHubPort2PortExitLat + U2DevExitLat - U1DevExitLat. I
346 * assume the device exit latencies they are talking about are the hub
347 * exit latencies.
349 * What do we do if the U2 exit latency is less than the U1 exit
350 * latency? It's possible, although not likely...
352 port_to_port_delay = 1;
354 usb_set_lpm_pel(udev, &udev->u1_params, udev_u1_del,
355 hub, &udev->parent->u1_params, hub_u1_del,
356 port_to_port_delay);
358 if (hub_u2_del > hub_u1_del)
359 port_to_port_delay = 1 + hub_u2_del - hub_u1_del;
360 else
361 port_to_port_delay = 1 + hub_u1_del;
363 usb_set_lpm_pel(udev, &udev->u2_params, udev_u2_del,
364 hub, &udev->parent->u2_params, hub_u2_del,
365 port_to_port_delay);
367 /* Now that we've got PEL, calculate SEL. */
368 usb_set_lpm_sel(udev, &udev->u1_params);
369 usb_set_lpm_sel(udev, &udev->u2_params);
372 /* USB 2.0 spec Section 11.24.4.5 */
373 static int get_hub_descriptor(struct usb_device *hdev,
374 struct usb_hub_descriptor *desc)
376 int i, ret, size;
377 unsigned dtype;
379 if (hub_is_superspeed(hdev)) {
380 dtype = USB_DT_SS_HUB;
381 size = USB_DT_SS_HUB_SIZE;
382 } else {
383 dtype = USB_DT_HUB;
384 size = sizeof(struct usb_hub_descriptor);
387 for (i = 0; i < 3; i++) {
388 ret = usb_control_msg(hdev, usb_rcvctrlpipe(hdev, 0),
389 USB_REQ_GET_DESCRIPTOR, USB_DIR_IN | USB_RT_HUB,
390 dtype << 8, 0, desc, size,
391 USB_CTRL_GET_TIMEOUT);
392 if (hub_is_superspeed(hdev)) {
393 if (ret == size)
394 return ret;
395 } else if (ret >= USB_DT_HUB_NONVAR_SIZE + 2) {
396 /* Make sure we have the DeviceRemovable field. */
397 size = USB_DT_HUB_NONVAR_SIZE + desc->bNbrPorts / 8 + 1;
398 if (ret < size)
399 return -EMSGSIZE;
400 return ret;
403 return -EINVAL;
407 * USB 2.0 spec Section 11.24.2.1
409 static int clear_hub_feature(struct usb_device *hdev, int feature)
411 return usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
412 USB_REQ_CLEAR_FEATURE, USB_RT_HUB, feature, 0, NULL, 0, 1000);
416 * USB 2.0 spec Section 11.24.2.2
418 int usb_clear_port_feature(struct usb_device *hdev, int port1, int feature)
420 return usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
421 USB_REQ_CLEAR_FEATURE, USB_RT_PORT, feature, port1,
422 NULL, 0, 1000);
426 * USB 2.0 spec Section 11.24.2.13
428 static int set_port_feature(struct usb_device *hdev, int port1, int feature)
430 return usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
431 USB_REQ_SET_FEATURE, USB_RT_PORT, feature, port1,
432 NULL, 0, 1000);
435 static char *to_led_name(int selector)
437 switch (selector) {
438 case HUB_LED_AMBER:
439 return "amber";
440 case HUB_LED_GREEN:
441 return "green";
442 case HUB_LED_OFF:
443 return "off";
444 case HUB_LED_AUTO:
445 return "auto";
446 default:
447 return "??";
452 * USB 2.0 spec Section 11.24.2.7.1.10 and table 11-7
453 * for info about using port indicators
455 static void set_port_led(struct usb_hub *hub, int port1, int selector)
457 struct usb_port *port_dev = hub->ports[port1 - 1];
458 int status;
460 status = set_port_feature(hub->hdev, (selector << 8) | port1,
461 USB_PORT_FEAT_INDICATOR);
462 dev_dbg(&port_dev->dev, "indicator %s status %d\n",
463 to_led_name(selector), status);
466 #define LED_CYCLE_PERIOD ((2*HZ)/3)
468 static void led_work(struct work_struct *work)
470 struct usb_hub *hub =
471 container_of(work, struct usb_hub, leds.work);
472 struct usb_device *hdev = hub->hdev;
473 unsigned i;
474 unsigned changed = 0;
475 int cursor = -1;
477 if (hdev->state != USB_STATE_CONFIGURED || hub->quiescing)
478 return;
480 for (i = 0; i < hdev->maxchild; i++) {
481 unsigned selector, mode;
483 /* 30%-50% duty cycle */
485 switch (hub->indicator[i]) {
486 /* cycle marker */
487 case INDICATOR_CYCLE:
488 cursor = i;
489 selector = HUB_LED_AUTO;
490 mode = INDICATOR_AUTO;
491 break;
492 /* blinking green = sw attention */
493 case INDICATOR_GREEN_BLINK:
494 selector = HUB_LED_GREEN;
495 mode = INDICATOR_GREEN_BLINK_OFF;
496 break;
497 case INDICATOR_GREEN_BLINK_OFF:
498 selector = HUB_LED_OFF;
499 mode = INDICATOR_GREEN_BLINK;
500 break;
501 /* blinking amber = hw attention */
502 case INDICATOR_AMBER_BLINK:
503 selector = HUB_LED_AMBER;
504 mode = INDICATOR_AMBER_BLINK_OFF;
505 break;
506 case INDICATOR_AMBER_BLINK_OFF:
507 selector = HUB_LED_OFF;
508 mode = INDICATOR_AMBER_BLINK;
509 break;
510 /* blink green/amber = reserved */
511 case INDICATOR_ALT_BLINK:
512 selector = HUB_LED_GREEN;
513 mode = INDICATOR_ALT_BLINK_OFF;
514 break;
515 case INDICATOR_ALT_BLINK_OFF:
516 selector = HUB_LED_AMBER;
517 mode = INDICATOR_ALT_BLINK;
518 break;
519 default:
520 continue;
522 if (selector != HUB_LED_AUTO)
523 changed = 1;
524 set_port_led(hub, i + 1, selector);
525 hub->indicator[i] = mode;
527 if (!changed && blinkenlights) {
528 cursor++;
529 cursor %= hdev->maxchild;
530 set_port_led(hub, cursor + 1, HUB_LED_GREEN);
531 hub->indicator[cursor] = INDICATOR_CYCLE;
532 changed++;
534 if (changed)
535 queue_delayed_work(system_power_efficient_wq,
536 &hub->leds, LED_CYCLE_PERIOD);
539 /* use a short timeout for hub/port status fetches */
540 #define USB_STS_TIMEOUT 1000
541 #define USB_STS_RETRIES 5
544 * USB 2.0 spec Section 11.24.2.6
546 static int get_hub_status(struct usb_device *hdev,
547 struct usb_hub_status *data)
549 int i, status = -ETIMEDOUT;
551 for (i = 0; i < USB_STS_RETRIES &&
552 (status == -ETIMEDOUT || status == -EPIPE); i++) {
553 status = usb_control_msg(hdev, usb_rcvctrlpipe(hdev, 0),
554 USB_REQ_GET_STATUS, USB_DIR_IN | USB_RT_HUB, 0, 0,
555 data, sizeof(*data), USB_STS_TIMEOUT);
557 return status;
561 * USB 2.0 spec Section 11.24.2.7
562 * USB 3.1 takes into use the wValue and wLength fields, spec Section 10.16.2.6
564 static int get_port_status(struct usb_device *hdev, int port1,
565 void *data, u16 value, u16 length)
567 int i, status = -ETIMEDOUT;
569 for (i = 0; i < USB_STS_RETRIES &&
570 (status == -ETIMEDOUT || status == -EPIPE); i++) {
571 status = usb_control_msg(hdev, usb_rcvctrlpipe(hdev, 0),
572 USB_REQ_GET_STATUS, USB_DIR_IN | USB_RT_PORT, value,
573 port1, data, length, USB_STS_TIMEOUT);
575 return status;
578 static int hub_ext_port_status(struct usb_hub *hub, int port1, int type,
579 u16 *status, u16 *change, u32 *ext_status)
581 int ret;
582 int len = 4;
584 if (type != HUB_PORT_STATUS)
585 len = 8;
587 mutex_lock(&hub->status_mutex);
588 ret = get_port_status(hub->hdev, port1, &hub->status->port, type, len);
589 if (ret < len) {
590 if (ret != -ENODEV)
591 dev_err(hub->intfdev,
592 "%s failed (err = %d)\n", __func__, ret);
593 if (ret >= 0)
594 ret = -EIO;
595 } else {
596 *status = le16_to_cpu(hub->status->port.wPortStatus);
597 *change = le16_to_cpu(hub->status->port.wPortChange);
598 if (type != HUB_PORT_STATUS && ext_status)
599 *ext_status = le32_to_cpu(
600 hub->status->port.dwExtPortStatus);
601 ret = 0;
603 mutex_unlock(&hub->status_mutex);
604 return ret;
607 static int hub_port_status(struct usb_hub *hub, int port1,
608 u16 *status, u16 *change)
610 return hub_ext_port_status(hub, port1, HUB_PORT_STATUS,
611 status, change, NULL);
614 static void kick_hub_wq(struct usb_hub *hub)
616 struct usb_interface *intf;
618 if (hub->disconnected || work_pending(&hub->events))
619 return;
622 * Suppress autosuspend until the event is proceed.
624 * Be careful and make sure that the symmetric operation is
625 * always called. We are here only when there is no pending
626 * work for this hub. Therefore put the interface either when
627 * the new work is called or when it is canceled.
629 intf = to_usb_interface(hub->intfdev);
630 usb_autopm_get_interface_no_resume(intf);
631 kref_get(&hub->kref);
633 if (queue_work(hub_wq, &hub->events))
634 return;
636 /* the work has already been scheduled */
637 usb_autopm_put_interface_async(intf);
638 kref_put(&hub->kref, hub_release);
641 void usb_kick_hub_wq(struct usb_device *hdev)
643 struct usb_hub *hub = usb_hub_to_struct_hub(hdev);
645 if (hub)
646 kick_hub_wq(hub);
650 * Let the USB core know that a USB 3.0 device has sent a Function Wake Device
651 * Notification, which indicates it had initiated remote wakeup.
653 * USB 3.0 hubs do not report the port link state change from U3 to U0 when the
654 * device initiates resume, so the USB core will not receive notice of the
655 * resume through the normal hub interrupt URB.
657 void usb_wakeup_notification(struct usb_device *hdev,
658 unsigned int portnum)
660 struct usb_hub *hub;
661 struct usb_port *port_dev;
663 if (!hdev)
664 return;
666 hub = usb_hub_to_struct_hub(hdev);
667 if (hub) {
668 port_dev = hub->ports[portnum - 1];
669 if (port_dev && port_dev->child)
670 pm_wakeup_event(&port_dev->child->dev, 0);
672 set_bit(portnum, hub->wakeup_bits);
673 kick_hub_wq(hub);
676 EXPORT_SYMBOL_GPL(usb_wakeup_notification);
678 /* completion function, fires on port status changes and various faults */
679 static void hub_irq(struct urb *urb)
681 struct usb_hub *hub = urb->context;
682 int status = urb->status;
683 unsigned i;
684 unsigned long bits;
686 switch (status) {
687 case -ENOENT: /* synchronous unlink */
688 case -ECONNRESET: /* async unlink */
689 case -ESHUTDOWN: /* hardware going away */
690 return;
692 default: /* presumably an error */
693 /* Cause a hub reset after 10 consecutive errors */
694 dev_dbg(hub->intfdev, "transfer --> %d\n", status);
695 if ((++hub->nerrors < 10) || hub->error)
696 goto resubmit;
697 hub->error = status;
698 /* FALL THROUGH */
700 /* let hub_wq handle things */
701 case 0: /* we got data: port status changed */
702 bits = 0;
703 for (i = 0; i < urb->actual_length; ++i)
704 bits |= ((unsigned long) ((*hub->buffer)[i]))
705 << (i*8);
706 hub->event_bits[0] = bits;
707 break;
710 hub->nerrors = 0;
712 /* Something happened, let hub_wq figure it out */
713 kick_hub_wq(hub);
715 resubmit:
716 if (hub->quiescing)
717 return;
719 status = usb_submit_urb(hub->urb, GFP_ATOMIC);
720 if (status != 0 && status != -ENODEV && status != -EPERM)
721 dev_err(hub->intfdev, "resubmit --> %d\n", status);
724 /* USB 2.0 spec Section 11.24.2.3 */
725 static inline int
726 hub_clear_tt_buffer(struct usb_device *hdev, u16 devinfo, u16 tt)
728 /* Need to clear both directions for control ep */
729 if (((devinfo >> 11) & USB_ENDPOINT_XFERTYPE_MASK) ==
730 USB_ENDPOINT_XFER_CONTROL) {
731 int status = usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
732 HUB_CLEAR_TT_BUFFER, USB_RT_PORT,
733 devinfo ^ 0x8000, tt, NULL, 0, 1000);
734 if (status)
735 return status;
737 return usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
738 HUB_CLEAR_TT_BUFFER, USB_RT_PORT, devinfo,
739 tt, NULL, 0, 1000);
743 * enumeration blocks hub_wq for a long time. we use keventd instead, since
744 * long blocking there is the exception, not the rule. accordingly, HCDs
745 * talking to TTs must queue control transfers (not just bulk and iso), so
746 * both can talk to the same hub concurrently.
748 static void hub_tt_work(struct work_struct *work)
750 struct usb_hub *hub =
751 container_of(work, struct usb_hub, tt.clear_work);
752 unsigned long flags;
754 spin_lock_irqsave(&hub->tt.lock, flags);
755 while (!list_empty(&hub->tt.clear_list)) {
756 struct list_head *next;
757 struct usb_tt_clear *clear;
758 struct usb_device *hdev = hub->hdev;
759 const struct hc_driver *drv;
760 int status;
762 next = hub->tt.clear_list.next;
763 clear = list_entry(next, struct usb_tt_clear, clear_list);
764 list_del(&clear->clear_list);
766 /* drop lock so HCD can concurrently report other TT errors */
767 spin_unlock_irqrestore(&hub->tt.lock, flags);
768 status = hub_clear_tt_buffer(hdev, clear->devinfo, clear->tt);
769 if (status && status != -ENODEV)
770 dev_err(&hdev->dev,
771 "clear tt %d (%04x) error %d\n",
772 clear->tt, clear->devinfo, status);
774 /* Tell the HCD, even if the operation failed */
775 drv = clear->hcd->driver;
776 if (drv->clear_tt_buffer_complete)
777 (drv->clear_tt_buffer_complete)(clear->hcd, clear->ep);
779 kfree(clear);
780 spin_lock_irqsave(&hub->tt.lock, flags);
782 spin_unlock_irqrestore(&hub->tt.lock, flags);
786 * usb_hub_set_port_power - control hub port's power state
787 * @hdev: USB device belonging to the usb hub
788 * @hub: target hub
789 * @port1: port index
790 * @set: expected status
792 * call this function to control port's power via setting or
793 * clearing the port's PORT_POWER feature.
795 * Return: 0 if successful. A negative error code otherwise.
797 int usb_hub_set_port_power(struct usb_device *hdev, struct usb_hub *hub,
798 int port1, bool set)
800 int ret;
802 if (set)
803 ret = set_port_feature(hdev, port1, USB_PORT_FEAT_POWER);
804 else
805 ret = usb_clear_port_feature(hdev, port1, USB_PORT_FEAT_POWER);
807 if (ret)
808 return ret;
810 if (set)
811 set_bit(port1, hub->power_bits);
812 else
813 clear_bit(port1, hub->power_bits);
814 return 0;
818 * usb_hub_clear_tt_buffer - clear control/bulk TT state in high speed hub
819 * @urb: an URB associated with the failed or incomplete split transaction
821 * High speed HCDs use this to tell the hub driver that some split control or
822 * bulk transaction failed in a way that requires clearing internal state of
823 * a transaction translator. This is normally detected (and reported) from
824 * interrupt context.
826 * It may not be possible for that hub to handle additional full (or low)
827 * speed transactions until that state is fully cleared out.
829 * Return: 0 if successful. A negative error code otherwise.
831 int usb_hub_clear_tt_buffer(struct urb *urb)
833 struct usb_device *udev = urb->dev;
834 int pipe = urb->pipe;
835 struct usb_tt *tt = udev->tt;
836 unsigned long flags;
837 struct usb_tt_clear *clear;
839 /* we've got to cope with an arbitrary number of pending TT clears,
840 * since each TT has "at least two" buffers that can need it (and
841 * there can be many TTs per hub). even if they're uncommon.
843 clear = kmalloc(sizeof *clear, GFP_ATOMIC);
844 if (clear == NULL) {
845 dev_err(&udev->dev, "can't save CLEAR_TT_BUFFER state\n");
846 /* FIXME recover somehow ... RESET_TT? */
847 return -ENOMEM;
850 /* info that CLEAR_TT_BUFFER needs */
851 clear->tt = tt->multi ? udev->ttport : 1;
852 clear->devinfo = usb_pipeendpoint (pipe);
853 clear->devinfo |= udev->devnum << 4;
854 clear->devinfo |= usb_pipecontrol(pipe)
855 ? (USB_ENDPOINT_XFER_CONTROL << 11)
856 : (USB_ENDPOINT_XFER_BULK << 11);
857 if (usb_pipein(pipe))
858 clear->devinfo |= 1 << 15;
860 /* info for completion callback */
861 clear->hcd = bus_to_hcd(udev->bus);
862 clear->ep = urb->ep;
864 /* tell keventd to clear state for this TT */
865 spin_lock_irqsave(&tt->lock, flags);
866 list_add_tail(&clear->clear_list, &tt->clear_list);
867 schedule_work(&tt->clear_work);
868 spin_unlock_irqrestore(&tt->lock, flags);
869 return 0;
871 EXPORT_SYMBOL_GPL(usb_hub_clear_tt_buffer);
873 static void hub_power_on(struct usb_hub *hub, bool do_delay)
875 int port1;
877 /* Enable power on each port. Some hubs have reserved values
878 * of LPSM (> 2) in their descriptors, even though they are
879 * USB 2.0 hubs. Some hubs do not implement port-power switching
880 * but only emulate it. In all cases, the ports won't work
881 * unless we send these messages to the hub.
883 if (hub_is_port_power_switchable(hub))
884 dev_dbg(hub->intfdev, "enabling power on all ports\n");
885 else
886 dev_dbg(hub->intfdev, "trying to enable port power on "
887 "non-switchable hub\n");
888 for (port1 = 1; port1 <= hub->hdev->maxchild; port1++)
889 if (test_bit(port1, hub->power_bits))
890 set_port_feature(hub->hdev, port1, USB_PORT_FEAT_POWER);
891 else
892 usb_clear_port_feature(hub->hdev, port1,
893 USB_PORT_FEAT_POWER);
894 if (do_delay)
895 msleep(hub_power_on_good_delay(hub));
898 static int hub_hub_status(struct usb_hub *hub,
899 u16 *status, u16 *change)
901 int ret;
903 mutex_lock(&hub->status_mutex);
904 ret = get_hub_status(hub->hdev, &hub->status->hub);
905 if (ret < 0) {
906 if (ret != -ENODEV)
907 dev_err(hub->intfdev,
908 "%s failed (err = %d)\n", __func__, ret);
909 } else {
910 *status = le16_to_cpu(hub->status->hub.wHubStatus);
911 *change = le16_to_cpu(hub->status->hub.wHubChange);
912 ret = 0;
914 mutex_unlock(&hub->status_mutex);
915 return ret;
918 static int hub_set_port_link_state(struct usb_hub *hub, int port1,
919 unsigned int link_status)
921 return set_port_feature(hub->hdev,
922 port1 | (link_status << 3),
923 USB_PORT_FEAT_LINK_STATE);
927 * Disable a port and mark a logical connect-change event, so that some
928 * time later hub_wq will disconnect() any existing usb_device on the port
929 * and will re-enumerate if there actually is a device attached.
931 static void hub_port_logical_disconnect(struct usb_hub *hub, int port1)
933 dev_dbg(&hub->ports[port1 - 1]->dev, "logical disconnect\n");
934 hub_port_disable(hub, port1, 1);
936 /* FIXME let caller ask to power down the port:
937 * - some devices won't enumerate without a VBUS power cycle
938 * - SRP saves power that way
939 * - ... new call, TBD ...
940 * That's easy if this hub can switch power per-port, and
941 * hub_wq reactivates the port later (timer, SRP, etc).
942 * Powerdown must be optional, because of reset/DFU.
945 set_bit(port1, hub->change_bits);
946 kick_hub_wq(hub);
950 * usb_remove_device - disable a device's port on its parent hub
951 * @udev: device to be disabled and removed
952 * Context: @udev locked, must be able to sleep.
954 * After @udev's port has been disabled, hub_wq is notified and it will
955 * see that the device has been disconnected. When the device is
956 * physically unplugged and something is plugged in, the events will
957 * be received and processed normally.
959 * Return: 0 if successful. A negative error code otherwise.
961 int usb_remove_device(struct usb_device *udev)
963 struct usb_hub *hub;
964 struct usb_interface *intf;
965 int ret;
967 if (!udev->parent) /* Can't remove a root hub */
968 return -EINVAL;
969 hub = usb_hub_to_struct_hub(udev->parent);
970 intf = to_usb_interface(hub->intfdev);
972 ret = usb_autopm_get_interface(intf);
973 if (ret < 0)
974 return ret;
976 set_bit(udev->portnum, hub->removed_bits);
977 hub_port_logical_disconnect(hub, udev->portnum);
978 usb_autopm_put_interface(intf);
979 return 0;
982 enum hub_activation_type {
983 HUB_INIT, HUB_INIT2, HUB_INIT3, /* INITs must come first */
984 HUB_POST_RESET, HUB_RESUME, HUB_RESET_RESUME,
987 static void hub_init_func2(struct work_struct *ws);
988 static void hub_init_func3(struct work_struct *ws);
990 static void hub_activate(struct usb_hub *hub, enum hub_activation_type type)
992 struct usb_device *hdev = hub->hdev;
993 struct usb_hcd *hcd;
994 int ret;
995 int port1;
996 int status;
997 bool need_debounce_delay = false;
998 unsigned delay;
1000 /* Continue a partial initialization */
1001 if (type == HUB_INIT2 || type == HUB_INIT3) {
1002 device_lock(&hdev->dev);
1004 /* Was the hub disconnected while we were waiting? */
1005 if (hub->disconnected)
1006 goto disconnected;
1007 if (type == HUB_INIT2)
1008 goto init2;
1009 goto init3;
1011 kref_get(&hub->kref);
1013 /* The superspeed hub except for root hub has to use Hub Depth
1014 * value as an offset into the route string to locate the bits
1015 * it uses to determine the downstream port number. So hub driver
1016 * should send a set hub depth request to superspeed hub after
1017 * the superspeed hub is set configuration in initialization or
1018 * reset procedure.
1020 * After a resume, port power should still be on.
1021 * For any other type of activation, turn it on.
1023 if (type != HUB_RESUME) {
1024 if (hdev->parent && hub_is_superspeed(hdev)) {
1025 ret = usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
1026 HUB_SET_DEPTH, USB_RT_HUB,
1027 hdev->level - 1, 0, NULL, 0,
1028 USB_CTRL_SET_TIMEOUT);
1029 if (ret < 0)
1030 dev_err(hub->intfdev,
1031 "set hub depth failed\n");
1034 /* Speed up system boot by using a delayed_work for the
1035 * hub's initial power-up delays. This is pretty awkward
1036 * and the implementation looks like a home-brewed sort of
1037 * setjmp/longjmp, but it saves at least 100 ms for each
1038 * root hub (assuming usbcore is compiled into the kernel
1039 * rather than as a module). It adds up.
1041 * This can't be done for HUB_RESUME or HUB_RESET_RESUME
1042 * because for those activation types the ports have to be
1043 * operational when we return. In theory this could be done
1044 * for HUB_POST_RESET, but it's easier not to.
1046 if (type == HUB_INIT) {
1047 delay = hub_power_on_good_delay(hub);
1049 hub_power_on(hub, false);
1050 INIT_DELAYED_WORK(&hub->init_work, hub_init_func2);
1051 queue_delayed_work(system_power_efficient_wq,
1052 &hub->init_work,
1053 msecs_to_jiffies(delay));
1055 /* Suppress autosuspend until init is done */
1056 usb_autopm_get_interface_no_resume(
1057 to_usb_interface(hub->intfdev));
1058 return; /* Continues at init2: below */
1059 } else if (type == HUB_RESET_RESUME) {
1060 /* The internal host controller state for the hub device
1061 * may be gone after a host power loss on system resume.
1062 * Update the device's info so the HW knows it's a hub.
1064 hcd = bus_to_hcd(hdev->bus);
1065 if (hcd->driver->update_hub_device) {
1066 ret = hcd->driver->update_hub_device(hcd, hdev,
1067 &hub->tt, GFP_NOIO);
1068 if (ret < 0) {
1069 dev_err(hub->intfdev,
1070 "Host not accepting hub info update\n");
1071 dev_err(hub->intfdev,
1072 "LS/FS devices and hubs may not work under this hub\n");
1075 hub_power_on(hub, true);
1076 } else {
1077 hub_power_on(hub, true);
1080 init2:
1083 * Check each port and set hub->change_bits to let hub_wq know
1084 * which ports need attention.
1086 for (port1 = 1; port1 <= hdev->maxchild; ++port1) {
1087 struct usb_port *port_dev = hub->ports[port1 - 1];
1088 struct usb_device *udev = port_dev->child;
1089 u16 portstatus, portchange;
1091 portstatus = portchange = 0;
1092 status = hub_port_status(hub, port1, &portstatus, &portchange);
1093 if (status)
1094 goto abort;
1096 if (udev || (portstatus & USB_PORT_STAT_CONNECTION))
1097 dev_dbg(&port_dev->dev, "status %04x change %04x\n",
1098 portstatus, portchange);
1101 * After anything other than HUB_RESUME (i.e., initialization
1102 * or any sort of reset), every port should be disabled.
1103 * Unconnected ports should likewise be disabled (paranoia),
1104 * and so should ports for which we have no usb_device.
1106 if ((portstatus & USB_PORT_STAT_ENABLE) && (
1107 type != HUB_RESUME ||
1108 !(portstatus & USB_PORT_STAT_CONNECTION) ||
1109 !udev ||
1110 udev->state == USB_STATE_NOTATTACHED)) {
1112 * USB3 protocol ports will automatically transition
1113 * to Enabled state when detect an USB3.0 device attach.
1114 * Do not disable USB3 protocol ports, just pretend
1115 * power was lost
1117 portstatus &= ~USB_PORT_STAT_ENABLE;
1118 if (!hub_is_superspeed(hdev))
1119 usb_clear_port_feature(hdev, port1,
1120 USB_PORT_FEAT_ENABLE);
1123 /* Make sure a warm-reset request is handled by port_event */
1124 if (type == HUB_RESUME &&
1125 hub_port_warm_reset_required(hub, port1, portstatus))
1126 set_bit(port1, hub->event_bits);
1129 * Add debounce if USB3 link is in polling/link training state.
1130 * Link will automatically transition to Enabled state after
1131 * link training completes.
1133 if (hub_is_superspeed(hdev) &&
1134 ((portstatus & USB_PORT_STAT_LINK_STATE) ==
1135 USB_SS_PORT_LS_POLLING))
1136 need_debounce_delay = true;
1138 /* Clear status-change flags; we'll debounce later */
1139 if (portchange & USB_PORT_STAT_C_CONNECTION) {
1140 need_debounce_delay = true;
1141 usb_clear_port_feature(hub->hdev, port1,
1142 USB_PORT_FEAT_C_CONNECTION);
1144 if (portchange & USB_PORT_STAT_C_ENABLE) {
1145 need_debounce_delay = true;
1146 usb_clear_port_feature(hub->hdev, port1,
1147 USB_PORT_FEAT_C_ENABLE);
1149 if (portchange & USB_PORT_STAT_C_RESET) {
1150 need_debounce_delay = true;
1151 usb_clear_port_feature(hub->hdev, port1,
1152 USB_PORT_FEAT_C_RESET);
1154 if ((portchange & USB_PORT_STAT_C_BH_RESET) &&
1155 hub_is_superspeed(hub->hdev)) {
1156 need_debounce_delay = true;
1157 usb_clear_port_feature(hub->hdev, port1,
1158 USB_PORT_FEAT_C_BH_PORT_RESET);
1160 /* We can forget about a "removed" device when there's a
1161 * physical disconnect or the connect status changes.
1163 if (!(portstatus & USB_PORT_STAT_CONNECTION) ||
1164 (portchange & USB_PORT_STAT_C_CONNECTION))
1165 clear_bit(port1, hub->removed_bits);
1167 if (!udev || udev->state == USB_STATE_NOTATTACHED) {
1168 /* Tell hub_wq to disconnect the device or
1169 * check for a new connection or over current condition.
1170 * Based on USB2.0 Spec Section 11.12.5,
1171 * C_PORT_OVER_CURRENT could be set while
1172 * PORT_OVER_CURRENT is not. So check for any of them.
1174 if (udev || (portstatus & USB_PORT_STAT_CONNECTION) ||
1175 (portchange & USB_PORT_STAT_C_CONNECTION) ||
1176 (portstatus & USB_PORT_STAT_OVERCURRENT) ||
1177 (portchange & USB_PORT_STAT_C_OVERCURRENT))
1178 set_bit(port1, hub->change_bits);
1180 } else if (portstatus & USB_PORT_STAT_ENABLE) {
1181 bool port_resumed = (portstatus &
1182 USB_PORT_STAT_LINK_STATE) ==
1183 USB_SS_PORT_LS_U0;
1184 /* The power session apparently survived the resume.
1185 * If there was an overcurrent or suspend change
1186 * (i.e., remote wakeup request), have hub_wq
1187 * take care of it. Look at the port link state
1188 * for USB 3.0 hubs, since they don't have a suspend
1189 * change bit, and they don't set the port link change
1190 * bit on device-initiated resume.
1192 if (portchange || (hub_is_superspeed(hub->hdev) &&
1193 port_resumed))
1194 set_bit(port1, hub->change_bits);
1196 } else if (udev->persist_enabled) {
1197 #ifdef CONFIG_PM
1198 udev->reset_resume = 1;
1199 #endif
1200 /* Don't set the change_bits when the device
1201 * was powered off.
1203 if (test_bit(port1, hub->power_bits))
1204 set_bit(port1, hub->change_bits);
1206 } else {
1207 /* The power session is gone; tell hub_wq */
1208 usb_set_device_state(udev, USB_STATE_NOTATTACHED);
1209 set_bit(port1, hub->change_bits);
1213 /* If no port-status-change flags were set, we don't need any
1214 * debouncing. If flags were set we can try to debounce the
1215 * ports all at once right now, instead of letting hub_wq do them
1216 * one at a time later on.
1218 * If any port-status changes do occur during this delay, hub_wq
1219 * will see them later and handle them normally.
1221 if (need_debounce_delay) {
1222 delay = HUB_DEBOUNCE_STABLE;
1224 /* Don't do a long sleep inside a workqueue routine */
1225 if (type == HUB_INIT2) {
1226 INIT_DELAYED_WORK(&hub->init_work, hub_init_func3);
1227 queue_delayed_work(system_power_efficient_wq,
1228 &hub->init_work,
1229 msecs_to_jiffies(delay));
1230 device_unlock(&hdev->dev);
1231 return; /* Continues at init3: below */
1232 } else {
1233 msleep(delay);
1236 init3:
1237 hub->quiescing = 0;
1239 status = usb_submit_urb(hub->urb, GFP_NOIO);
1240 if (status < 0)
1241 dev_err(hub->intfdev, "activate --> %d\n", status);
1242 if (hub->has_indicators && blinkenlights)
1243 queue_delayed_work(system_power_efficient_wq,
1244 &hub->leds, LED_CYCLE_PERIOD);
1246 /* Scan all ports that need attention */
1247 kick_hub_wq(hub);
1248 abort:
1249 if (type == HUB_INIT2 || type == HUB_INIT3) {
1250 /* Allow autosuspend if it was suppressed */
1251 disconnected:
1252 usb_autopm_put_interface_async(to_usb_interface(hub->intfdev));
1253 device_unlock(&hdev->dev);
1256 kref_put(&hub->kref, hub_release);
1259 /* Implement the continuations for the delays above */
1260 static void hub_init_func2(struct work_struct *ws)
1262 struct usb_hub *hub = container_of(ws, struct usb_hub, init_work.work);
1264 hub_activate(hub, HUB_INIT2);
1267 static void hub_init_func3(struct work_struct *ws)
1269 struct usb_hub *hub = container_of(ws, struct usb_hub, init_work.work);
1271 hub_activate(hub, HUB_INIT3);
1274 enum hub_quiescing_type {
1275 HUB_DISCONNECT, HUB_PRE_RESET, HUB_SUSPEND
1278 static void hub_quiesce(struct usb_hub *hub, enum hub_quiescing_type type)
1280 struct usb_device *hdev = hub->hdev;
1281 int i;
1283 /* hub_wq and related activity won't re-trigger */
1284 hub->quiescing = 1;
1286 if (type != HUB_SUSPEND) {
1287 /* Disconnect all the children */
1288 for (i = 0; i < hdev->maxchild; ++i) {
1289 if (hub->ports[i]->child)
1290 usb_disconnect(&hub->ports[i]->child);
1294 /* Stop hub_wq and related activity */
1295 usb_kill_urb(hub->urb);
1296 if (hub->has_indicators)
1297 cancel_delayed_work_sync(&hub->leds);
1298 if (hub->tt.hub)
1299 flush_work(&hub->tt.clear_work);
1302 static void hub_pm_barrier_for_all_ports(struct usb_hub *hub)
1304 int i;
1306 for (i = 0; i < hub->hdev->maxchild; ++i)
1307 pm_runtime_barrier(&hub->ports[i]->dev);
1310 /* caller has locked the hub device */
1311 static int hub_pre_reset(struct usb_interface *intf)
1313 struct usb_hub *hub = usb_get_intfdata(intf);
1315 hub_quiesce(hub, HUB_PRE_RESET);
1316 hub->in_reset = 1;
1317 hub_pm_barrier_for_all_ports(hub);
1318 return 0;
1321 /* caller has locked the hub device */
1322 static int hub_post_reset(struct usb_interface *intf)
1324 struct usb_hub *hub = usb_get_intfdata(intf);
1326 hub->in_reset = 0;
1327 hub_pm_barrier_for_all_ports(hub);
1328 hub_activate(hub, HUB_POST_RESET);
1329 return 0;
1332 static int hub_configure(struct usb_hub *hub,
1333 struct usb_endpoint_descriptor *endpoint)
1335 struct usb_hcd *hcd;
1336 struct usb_device *hdev = hub->hdev;
1337 struct device *hub_dev = hub->intfdev;
1338 u16 hubstatus, hubchange;
1339 u16 wHubCharacteristics;
1340 unsigned int pipe;
1341 int maxp, ret, i;
1342 char *message = "out of memory";
1343 unsigned unit_load;
1344 unsigned full_load;
1345 unsigned maxchild;
1347 hub->buffer = kmalloc(sizeof(*hub->buffer), GFP_KERNEL);
1348 if (!hub->buffer) {
1349 ret = -ENOMEM;
1350 goto fail;
1353 hub->status = kmalloc(sizeof(*hub->status), GFP_KERNEL);
1354 if (!hub->status) {
1355 ret = -ENOMEM;
1356 goto fail;
1358 mutex_init(&hub->status_mutex);
1360 hub->descriptor = kzalloc(sizeof(*hub->descriptor), GFP_KERNEL);
1361 if (!hub->descriptor) {
1362 ret = -ENOMEM;
1363 goto fail;
1366 /* Request the entire hub descriptor.
1367 * hub->descriptor can handle USB_MAXCHILDREN ports,
1368 * but a (non-SS) hub can/will return fewer bytes here.
1370 ret = get_hub_descriptor(hdev, hub->descriptor);
1371 if (ret < 0) {
1372 message = "can't read hub descriptor";
1373 goto fail;
1376 maxchild = USB_MAXCHILDREN;
1377 if (hub_is_superspeed(hdev))
1378 maxchild = min_t(unsigned, maxchild, USB_SS_MAXPORTS);
1380 if (hub->descriptor->bNbrPorts > maxchild) {
1381 message = "hub has too many ports!";
1382 ret = -ENODEV;
1383 goto fail;
1384 } else if (hub->descriptor->bNbrPorts == 0) {
1385 message = "hub doesn't have any ports!";
1386 ret = -ENODEV;
1387 goto fail;
1391 * Accumulate wHubDelay + 40ns for every hub in the tree of devices.
1392 * The resulting value will be used for SetIsochDelay() request.
1394 if (hub_is_superspeed(hdev) || hub_is_superspeedplus(hdev)) {
1395 u32 delay = __le16_to_cpu(hub->descriptor->u.ss.wHubDelay);
1397 if (hdev->parent)
1398 delay += hdev->parent->hub_delay;
1400 delay += USB_TP_TRANSMISSION_DELAY;
1401 hdev->hub_delay = min_t(u32, delay, USB_TP_TRANSMISSION_DELAY_MAX);
1404 maxchild = hub->descriptor->bNbrPorts;
1405 dev_info(hub_dev, "%d port%s detected\n", maxchild,
1406 (maxchild == 1) ? "" : "s");
1408 hub->ports = kcalloc(maxchild, sizeof(struct usb_port *), GFP_KERNEL);
1409 if (!hub->ports) {
1410 ret = -ENOMEM;
1411 goto fail;
1414 wHubCharacteristics = le16_to_cpu(hub->descriptor->wHubCharacteristics);
1415 if (hub_is_superspeed(hdev)) {
1416 unit_load = 150;
1417 full_load = 900;
1418 } else {
1419 unit_load = 100;
1420 full_load = 500;
1423 /* FIXME for USB 3.0, skip for now */
1424 if ((wHubCharacteristics & HUB_CHAR_COMPOUND) &&
1425 !(hub_is_superspeed(hdev))) {
1426 char portstr[USB_MAXCHILDREN + 1];
1428 for (i = 0; i < maxchild; i++)
1429 portstr[i] = hub->descriptor->u.hs.DeviceRemovable
1430 [((i + 1) / 8)] & (1 << ((i + 1) % 8))
1431 ? 'F' : 'R';
1432 portstr[maxchild] = 0;
1433 dev_dbg(hub_dev, "compound device; port removable status: %s\n", portstr);
1434 } else
1435 dev_dbg(hub_dev, "standalone hub\n");
1437 switch (wHubCharacteristics & HUB_CHAR_LPSM) {
1438 case HUB_CHAR_COMMON_LPSM:
1439 dev_dbg(hub_dev, "ganged power switching\n");
1440 break;
1441 case HUB_CHAR_INDV_PORT_LPSM:
1442 dev_dbg(hub_dev, "individual port power switching\n");
1443 break;
1444 case HUB_CHAR_NO_LPSM:
1445 case HUB_CHAR_LPSM:
1446 dev_dbg(hub_dev, "no power switching (usb 1.0)\n");
1447 break;
1450 switch (wHubCharacteristics & HUB_CHAR_OCPM) {
1451 case HUB_CHAR_COMMON_OCPM:
1452 dev_dbg(hub_dev, "global over-current protection\n");
1453 break;
1454 case HUB_CHAR_INDV_PORT_OCPM:
1455 dev_dbg(hub_dev, "individual port over-current protection\n");
1456 break;
1457 case HUB_CHAR_NO_OCPM:
1458 case HUB_CHAR_OCPM:
1459 dev_dbg(hub_dev, "no over-current protection\n");
1460 break;
1463 spin_lock_init(&hub->tt.lock);
1464 INIT_LIST_HEAD(&hub->tt.clear_list);
1465 INIT_WORK(&hub->tt.clear_work, hub_tt_work);
1466 switch (hdev->descriptor.bDeviceProtocol) {
1467 case USB_HUB_PR_FS:
1468 break;
1469 case USB_HUB_PR_HS_SINGLE_TT:
1470 dev_dbg(hub_dev, "Single TT\n");
1471 hub->tt.hub = hdev;
1472 break;
1473 case USB_HUB_PR_HS_MULTI_TT:
1474 ret = usb_set_interface(hdev, 0, 1);
1475 if (ret == 0) {
1476 dev_dbg(hub_dev, "TT per port\n");
1477 hub->tt.multi = 1;
1478 } else
1479 dev_err(hub_dev, "Using single TT (err %d)\n",
1480 ret);
1481 hub->tt.hub = hdev;
1482 break;
1483 case USB_HUB_PR_SS:
1484 /* USB 3.0 hubs don't have a TT */
1485 break;
1486 default:
1487 dev_dbg(hub_dev, "Unrecognized hub protocol %d\n",
1488 hdev->descriptor.bDeviceProtocol);
1489 break;
1492 /* Note 8 FS bit times == (8 bits / 12000000 bps) ~= 666ns */
1493 switch (wHubCharacteristics & HUB_CHAR_TTTT) {
1494 case HUB_TTTT_8_BITS:
1495 if (hdev->descriptor.bDeviceProtocol != 0) {
1496 hub->tt.think_time = 666;
1497 dev_dbg(hub_dev, "TT requires at most %d "
1498 "FS bit times (%d ns)\n",
1499 8, hub->tt.think_time);
1501 break;
1502 case HUB_TTTT_16_BITS:
1503 hub->tt.think_time = 666 * 2;
1504 dev_dbg(hub_dev, "TT requires at most %d "
1505 "FS bit times (%d ns)\n",
1506 16, hub->tt.think_time);
1507 break;
1508 case HUB_TTTT_24_BITS:
1509 hub->tt.think_time = 666 * 3;
1510 dev_dbg(hub_dev, "TT requires at most %d "
1511 "FS bit times (%d ns)\n",
1512 24, hub->tt.think_time);
1513 break;
1514 case HUB_TTTT_32_BITS:
1515 hub->tt.think_time = 666 * 4;
1516 dev_dbg(hub_dev, "TT requires at most %d "
1517 "FS bit times (%d ns)\n",
1518 32, hub->tt.think_time);
1519 break;
1522 /* probe() zeroes hub->indicator[] */
1523 if (wHubCharacteristics & HUB_CHAR_PORTIND) {
1524 hub->has_indicators = 1;
1525 dev_dbg(hub_dev, "Port indicators are supported\n");
1528 dev_dbg(hub_dev, "power on to power good time: %dms\n",
1529 hub->descriptor->bPwrOn2PwrGood * 2);
1531 /* power budgeting mostly matters with bus-powered hubs,
1532 * and battery-powered root hubs (may provide just 8 mA).
1534 ret = usb_get_std_status(hdev, USB_RECIP_DEVICE, 0, &hubstatus);
1535 if (ret) {
1536 message = "can't get hub status";
1537 goto fail;
1539 hcd = bus_to_hcd(hdev->bus);
1540 if (hdev == hdev->bus->root_hub) {
1541 if (hcd->power_budget > 0)
1542 hdev->bus_mA = hcd->power_budget;
1543 else
1544 hdev->bus_mA = full_load * maxchild;
1545 if (hdev->bus_mA >= full_load)
1546 hub->mA_per_port = full_load;
1547 else {
1548 hub->mA_per_port = hdev->bus_mA;
1549 hub->limited_power = 1;
1551 } else if ((hubstatus & (1 << USB_DEVICE_SELF_POWERED)) == 0) {
1552 int remaining = hdev->bus_mA -
1553 hub->descriptor->bHubContrCurrent;
1555 dev_dbg(hub_dev, "hub controller current requirement: %dmA\n",
1556 hub->descriptor->bHubContrCurrent);
1557 hub->limited_power = 1;
1559 if (remaining < maxchild * unit_load)
1560 dev_warn(hub_dev,
1561 "insufficient power available "
1562 "to use all downstream ports\n");
1563 hub->mA_per_port = unit_load; /* 7.2.1 */
1565 } else { /* Self-powered external hub */
1566 /* FIXME: What about battery-powered external hubs that
1567 * provide less current per port? */
1568 hub->mA_per_port = full_load;
1570 if (hub->mA_per_port < full_load)
1571 dev_dbg(hub_dev, "%umA bus power budget for each child\n",
1572 hub->mA_per_port);
1574 ret = hub_hub_status(hub, &hubstatus, &hubchange);
1575 if (ret < 0) {
1576 message = "can't get hub status";
1577 goto fail;
1580 /* local power status reports aren't always correct */
1581 if (hdev->actconfig->desc.bmAttributes & USB_CONFIG_ATT_SELFPOWER)
1582 dev_dbg(hub_dev, "local power source is %s\n",
1583 (hubstatus & HUB_STATUS_LOCAL_POWER)
1584 ? "lost (inactive)" : "good");
1586 if ((wHubCharacteristics & HUB_CHAR_OCPM) == 0)
1587 dev_dbg(hub_dev, "%sover-current condition exists\n",
1588 (hubstatus & HUB_STATUS_OVERCURRENT) ? "" : "no ");
1590 /* set up the interrupt endpoint
1591 * We use the EP's maxpacket size instead of (PORTS+1+7)/8
1592 * bytes as USB2.0[11.12.3] says because some hubs are known
1593 * to send more data (and thus cause overflow). For root hubs,
1594 * maxpktsize is defined in hcd.c's fake endpoint descriptors
1595 * to be big enough for at least USB_MAXCHILDREN ports. */
1596 pipe = usb_rcvintpipe(hdev, endpoint->bEndpointAddress);
1597 maxp = usb_maxpacket(hdev, pipe, usb_pipeout(pipe));
1599 if (maxp > sizeof(*hub->buffer))
1600 maxp = sizeof(*hub->buffer);
1602 hub->urb = usb_alloc_urb(0, GFP_KERNEL);
1603 if (!hub->urb) {
1604 ret = -ENOMEM;
1605 goto fail;
1608 usb_fill_int_urb(hub->urb, hdev, pipe, *hub->buffer, maxp, hub_irq,
1609 hub, endpoint->bInterval);
1611 /* maybe cycle the hub leds */
1612 if (hub->has_indicators && blinkenlights)
1613 hub->indicator[0] = INDICATOR_CYCLE;
1615 mutex_lock(&usb_port_peer_mutex);
1616 for (i = 0; i < maxchild; i++) {
1617 ret = usb_hub_create_port_device(hub, i + 1);
1618 if (ret < 0) {
1619 dev_err(hub->intfdev,
1620 "couldn't create port%d device.\n", i + 1);
1621 break;
1624 hdev->maxchild = i;
1625 for (i = 0; i < hdev->maxchild; i++) {
1626 struct usb_port *port_dev = hub->ports[i];
1628 pm_runtime_put(&port_dev->dev);
1631 mutex_unlock(&usb_port_peer_mutex);
1632 if (ret < 0)
1633 goto fail;
1635 /* Update the HCD's internal representation of this hub before hub_wq
1636 * starts getting port status changes for devices under the hub.
1638 if (hcd->driver->update_hub_device) {
1639 ret = hcd->driver->update_hub_device(hcd, hdev,
1640 &hub->tt, GFP_KERNEL);
1641 if (ret < 0) {
1642 message = "can't update HCD hub info";
1643 goto fail;
1647 usb_hub_adjust_deviceremovable(hdev, hub->descriptor);
1649 hub_activate(hub, HUB_INIT);
1650 return 0;
1652 fail:
1653 dev_err(hub_dev, "config failed, %s (err %d)\n",
1654 message, ret);
1655 /* hub_disconnect() frees urb and descriptor */
1656 return ret;
1659 static void hub_release(struct kref *kref)
1661 struct usb_hub *hub = container_of(kref, struct usb_hub, kref);
1663 usb_put_dev(hub->hdev);
1664 usb_put_intf(to_usb_interface(hub->intfdev));
1665 kfree(hub);
1668 static unsigned highspeed_hubs;
1670 static void hub_disconnect(struct usb_interface *intf)
1672 struct usb_hub *hub = usb_get_intfdata(intf);
1673 struct usb_device *hdev = interface_to_usbdev(intf);
1674 int port1;
1677 * Stop adding new hub events. We do not want to block here and thus
1678 * will not try to remove any pending work item.
1680 hub->disconnected = 1;
1682 /* Disconnect all children and quiesce the hub */
1683 hub->error = 0;
1684 hub_quiesce(hub, HUB_DISCONNECT);
1686 mutex_lock(&usb_port_peer_mutex);
1688 /* Avoid races with recursively_mark_NOTATTACHED() */
1689 spin_lock_irq(&device_state_lock);
1690 port1 = hdev->maxchild;
1691 hdev->maxchild = 0;
1692 usb_set_intfdata(intf, NULL);
1693 spin_unlock_irq(&device_state_lock);
1695 for (; port1 > 0; --port1)
1696 usb_hub_remove_port_device(hub, port1);
1698 mutex_unlock(&usb_port_peer_mutex);
1700 if (hub->hdev->speed == USB_SPEED_HIGH)
1701 highspeed_hubs--;
1703 usb_free_urb(hub->urb);
1704 kfree(hub->ports);
1705 kfree(hub->descriptor);
1706 kfree(hub->status);
1707 kfree(hub->buffer);
1709 pm_suspend_ignore_children(&intf->dev, false);
1711 if (hub->quirk_disable_autosuspend)
1712 usb_autopm_put_interface(intf);
1714 kref_put(&hub->kref, hub_release);
1717 static bool hub_descriptor_is_sane(struct usb_host_interface *desc)
1719 /* Some hubs have a subclass of 1, which AFAICT according to the */
1720 /* specs is not defined, but it works */
1721 if (desc->desc.bInterfaceSubClass != 0 &&
1722 desc->desc.bInterfaceSubClass != 1)
1723 return false;
1725 /* Multiple endpoints? What kind of mutant ninja-hub is this? */
1726 if (desc->desc.bNumEndpoints != 1)
1727 return false;
1729 /* If the first endpoint is not interrupt IN, we'd better punt! */
1730 if (!usb_endpoint_is_int_in(&desc->endpoint[0].desc))
1731 return false;
1733 return true;
1736 static int hub_probe(struct usb_interface *intf, const struct usb_device_id *id)
1738 struct usb_host_interface *desc;
1739 struct usb_device *hdev;
1740 struct usb_hub *hub;
1742 desc = intf->cur_altsetting;
1743 hdev = interface_to_usbdev(intf);
1746 * Set default autosuspend delay as 0 to speedup bus suspend,
1747 * based on the below considerations:
1749 * - Unlike other drivers, the hub driver does not rely on the
1750 * autosuspend delay to provide enough time to handle a wakeup
1751 * event, and the submitted status URB is just to check future
1752 * change on hub downstream ports, so it is safe to do it.
1754 * - The patch might cause one or more auto supend/resume for
1755 * below very rare devices when they are plugged into hub
1756 * first time:
1758 * devices having trouble initializing, and disconnect
1759 * themselves from the bus and then reconnect a second
1760 * or so later
1762 * devices just for downloading firmware, and disconnects
1763 * themselves after completing it
1765 * For these quite rare devices, their drivers may change the
1766 * autosuspend delay of their parent hub in the probe() to one
1767 * appropriate value to avoid the subtle problem if someone
1768 * does care it.
1770 * - The patch may cause one or more auto suspend/resume on
1771 * hub during running 'lsusb', but it is probably too
1772 * infrequent to worry about.
1774 * - Change autosuspend delay of hub can avoid unnecessary auto
1775 * suspend timer for hub, also may decrease power consumption
1776 * of USB bus.
1778 * - If user has indicated to prevent autosuspend by passing
1779 * usbcore.autosuspend = -1 then keep autosuspend disabled.
1781 #ifdef CONFIG_PM
1782 if (hdev->dev.power.autosuspend_delay >= 0)
1783 pm_runtime_set_autosuspend_delay(&hdev->dev, 0);
1784 #endif
1787 * Hubs have proper suspend/resume support, except for root hubs
1788 * where the controller driver doesn't have bus_suspend and
1789 * bus_resume methods.
1791 if (hdev->parent) { /* normal device */
1792 usb_enable_autosuspend(hdev);
1793 } else { /* root hub */
1794 const struct hc_driver *drv = bus_to_hcd(hdev->bus)->driver;
1796 if (drv->bus_suspend && drv->bus_resume)
1797 usb_enable_autosuspend(hdev);
1800 if (hdev->level == MAX_TOPO_LEVEL) {
1801 dev_err(&intf->dev,
1802 "Unsupported bus topology: hub nested too deep\n");
1803 return -E2BIG;
1806 #ifdef CONFIG_USB_OTG_BLACKLIST_HUB
1807 if (hdev->parent) {
1808 dev_warn(&intf->dev, "ignoring external hub\n");
1809 return -ENODEV;
1811 #endif
1813 if (!hub_descriptor_is_sane(desc)) {
1814 dev_err(&intf->dev, "bad descriptor, ignoring hub\n");
1815 return -EIO;
1818 /* We found a hub */
1819 dev_info(&intf->dev, "USB hub found\n");
1821 hub = kzalloc(sizeof(*hub), GFP_KERNEL);
1822 if (!hub)
1823 return -ENOMEM;
1825 kref_init(&hub->kref);
1826 hub->intfdev = &intf->dev;
1827 hub->hdev = hdev;
1828 INIT_DELAYED_WORK(&hub->leds, led_work);
1829 INIT_DELAYED_WORK(&hub->init_work, NULL);
1830 INIT_WORK(&hub->events, hub_event);
1831 usb_get_intf(intf);
1832 usb_get_dev(hdev);
1834 usb_set_intfdata(intf, hub);
1835 intf->needs_remote_wakeup = 1;
1836 pm_suspend_ignore_children(&intf->dev, true);
1838 if (hdev->speed == USB_SPEED_HIGH)
1839 highspeed_hubs++;
1841 if (id->driver_info & HUB_QUIRK_CHECK_PORT_AUTOSUSPEND)
1842 hub->quirk_check_port_auto_suspend = 1;
1844 if (id->driver_info & HUB_QUIRK_DISABLE_AUTOSUSPEND) {
1845 hub->quirk_disable_autosuspend = 1;
1846 usb_autopm_get_interface_no_resume(intf);
1849 if (hub_configure(hub, &desc->endpoint[0].desc) >= 0)
1850 return 0;
1852 hub_disconnect(intf);
1853 return -ENODEV;
1856 static int
1857 hub_ioctl(struct usb_interface *intf, unsigned int code, void *user_data)
1859 struct usb_device *hdev = interface_to_usbdev(intf);
1860 struct usb_hub *hub = usb_hub_to_struct_hub(hdev);
1862 /* assert ifno == 0 (part of hub spec) */
1863 switch (code) {
1864 case USBDEVFS_HUB_PORTINFO: {
1865 struct usbdevfs_hub_portinfo *info = user_data;
1866 int i;
1868 spin_lock_irq(&device_state_lock);
1869 if (hdev->devnum <= 0)
1870 info->nports = 0;
1871 else {
1872 info->nports = hdev->maxchild;
1873 for (i = 0; i < info->nports; i++) {
1874 if (hub->ports[i]->child == NULL)
1875 info->port[i] = 0;
1876 else
1877 info->port[i] =
1878 hub->ports[i]->child->devnum;
1881 spin_unlock_irq(&device_state_lock);
1883 return info->nports + 1;
1886 default:
1887 return -ENOSYS;
1892 * Allow user programs to claim ports on a hub. When a device is attached
1893 * to one of these "claimed" ports, the program will "own" the device.
1895 static int find_port_owner(struct usb_device *hdev, unsigned port1,
1896 struct usb_dev_state ***ppowner)
1898 struct usb_hub *hub = usb_hub_to_struct_hub(hdev);
1900 if (hdev->state == USB_STATE_NOTATTACHED)
1901 return -ENODEV;
1902 if (port1 == 0 || port1 > hdev->maxchild)
1903 return -EINVAL;
1905 /* Devices not managed by the hub driver
1906 * will always have maxchild equal to 0.
1908 *ppowner = &(hub->ports[port1 - 1]->port_owner);
1909 return 0;
1912 /* In the following three functions, the caller must hold hdev's lock */
1913 int usb_hub_claim_port(struct usb_device *hdev, unsigned port1,
1914 struct usb_dev_state *owner)
1916 int rc;
1917 struct usb_dev_state **powner;
1919 rc = find_port_owner(hdev, port1, &powner);
1920 if (rc)
1921 return rc;
1922 if (*powner)
1923 return -EBUSY;
1924 *powner = owner;
1925 return rc;
1927 EXPORT_SYMBOL_GPL(usb_hub_claim_port);
1929 int usb_hub_release_port(struct usb_device *hdev, unsigned port1,
1930 struct usb_dev_state *owner)
1932 int rc;
1933 struct usb_dev_state **powner;
1935 rc = find_port_owner(hdev, port1, &powner);
1936 if (rc)
1937 return rc;
1938 if (*powner != owner)
1939 return -ENOENT;
1940 *powner = NULL;
1941 return rc;
1943 EXPORT_SYMBOL_GPL(usb_hub_release_port);
1945 void usb_hub_release_all_ports(struct usb_device *hdev, struct usb_dev_state *owner)
1947 struct usb_hub *hub = usb_hub_to_struct_hub(hdev);
1948 int n;
1950 for (n = 0; n < hdev->maxchild; n++) {
1951 if (hub->ports[n]->port_owner == owner)
1952 hub->ports[n]->port_owner = NULL;
1957 /* The caller must hold udev's lock */
1958 bool usb_device_is_owned(struct usb_device *udev)
1960 struct usb_hub *hub;
1962 if (udev->state == USB_STATE_NOTATTACHED || !udev->parent)
1963 return false;
1964 hub = usb_hub_to_struct_hub(udev->parent);
1965 return !!hub->ports[udev->portnum - 1]->port_owner;
1968 static void recursively_mark_NOTATTACHED(struct usb_device *udev)
1970 struct usb_hub *hub = usb_hub_to_struct_hub(udev);
1971 int i;
1973 for (i = 0; i < udev->maxchild; ++i) {
1974 if (hub->ports[i]->child)
1975 recursively_mark_NOTATTACHED(hub->ports[i]->child);
1977 if (udev->state == USB_STATE_SUSPENDED)
1978 udev->active_duration -= jiffies;
1979 udev->state = USB_STATE_NOTATTACHED;
1983 * usb_set_device_state - change a device's current state (usbcore, hcds)
1984 * @udev: pointer to device whose state should be changed
1985 * @new_state: new state value to be stored
1987 * udev->state is _not_ fully protected by the device lock. Although
1988 * most transitions are made only while holding the lock, the state can
1989 * can change to USB_STATE_NOTATTACHED at almost any time. This
1990 * is so that devices can be marked as disconnected as soon as possible,
1991 * without having to wait for any semaphores to be released. As a result,
1992 * all changes to any device's state must be protected by the
1993 * device_state_lock spinlock.
1995 * Once a device has been added to the device tree, all changes to its state
1996 * should be made using this routine. The state should _not_ be set directly.
1998 * If udev->state is already USB_STATE_NOTATTACHED then no change is made.
1999 * Otherwise udev->state is set to new_state, and if new_state is
2000 * USB_STATE_NOTATTACHED then all of udev's descendants' states are also set
2001 * to USB_STATE_NOTATTACHED.
2003 void usb_set_device_state(struct usb_device *udev,
2004 enum usb_device_state new_state)
2006 unsigned long flags;
2007 int wakeup = -1;
2009 spin_lock_irqsave(&device_state_lock, flags);
2010 if (udev->state == USB_STATE_NOTATTACHED)
2011 ; /* do nothing */
2012 else if (new_state != USB_STATE_NOTATTACHED) {
2014 /* root hub wakeup capabilities are managed out-of-band
2015 * and may involve silicon errata ... ignore them here.
2017 if (udev->parent) {
2018 if (udev->state == USB_STATE_SUSPENDED
2019 || new_state == USB_STATE_SUSPENDED)
2020 ; /* No change to wakeup settings */
2021 else if (new_state == USB_STATE_CONFIGURED)
2022 wakeup = (udev->quirks &
2023 USB_QUIRK_IGNORE_REMOTE_WAKEUP) ? 0 :
2024 udev->actconfig->desc.bmAttributes &
2025 USB_CONFIG_ATT_WAKEUP;
2026 else
2027 wakeup = 0;
2029 if (udev->state == USB_STATE_SUSPENDED &&
2030 new_state != USB_STATE_SUSPENDED)
2031 udev->active_duration -= jiffies;
2032 else if (new_state == USB_STATE_SUSPENDED &&
2033 udev->state != USB_STATE_SUSPENDED)
2034 udev->active_duration += jiffies;
2035 udev->state = new_state;
2036 } else
2037 recursively_mark_NOTATTACHED(udev);
2038 spin_unlock_irqrestore(&device_state_lock, flags);
2039 if (wakeup >= 0)
2040 device_set_wakeup_capable(&udev->dev, wakeup);
2042 EXPORT_SYMBOL_GPL(usb_set_device_state);
2045 * Choose a device number.
2047 * Device numbers are used as filenames in usbfs. On USB-1.1 and
2048 * USB-2.0 buses they are also used as device addresses, however on
2049 * USB-3.0 buses the address is assigned by the controller hardware
2050 * and it usually is not the same as the device number.
2052 * WUSB devices are simple: they have no hubs behind, so the mapping
2053 * device <-> virtual port number becomes 1:1. Why? to simplify the
2054 * life of the device connection logic in
2055 * drivers/usb/wusbcore/devconnect.c. When we do the initial secret
2056 * handshake we need to assign a temporary address in the unauthorized
2057 * space. For simplicity we use the first virtual port number found to
2058 * be free [drivers/usb/wusbcore/devconnect.c:wusbhc_devconnect_ack()]
2059 * and that becomes it's address [X < 128] or its unauthorized address
2060 * [X | 0x80].
2062 * We add 1 as an offset to the one-based USB-stack port number
2063 * (zero-based wusb virtual port index) for two reasons: (a) dev addr
2064 * 0 is reserved by USB for default address; (b) Linux's USB stack
2065 * uses always #1 for the root hub of the controller. So USB stack's
2066 * port #1, which is wusb virtual-port #0 has address #2.
2068 * Devices connected under xHCI are not as simple. The host controller
2069 * supports virtualization, so the hardware assigns device addresses and
2070 * the HCD must setup data structures before issuing a set address
2071 * command to the hardware.
2073 static void choose_devnum(struct usb_device *udev)
2075 int devnum;
2076 struct usb_bus *bus = udev->bus;
2078 /* be safe when more hub events are proceed in parallel */
2079 mutex_lock(&bus->devnum_next_mutex);
2080 if (udev->wusb) {
2081 devnum = udev->portnum + 1;
2082 BUG_ON(test_bit(devnum, bus->devmap.devicemap));
2083 } else {
2084 /* Try to allocate the next devnum beginning at
2085 * bus->devnum_next. */
2086 devnum = find_next_zero_bit(bus->devmap.devicemap, 128,
2087 bus->devnum_next);
2088 if (devnum >= 128)
2089 devnum = find_next_zero_bit(bus->devmap.devicemap,
2090 128, 1);
2091 bus->devnum_next = (devnum >= 127 ? 1 : devnum + 1);
2093 if (devnum < 128) {
2094 set_bit(devnum, bus->devmap.devicemap);
2095 udev->devnum = devnum;
2097 mutex_unlock(&bus->devnum_next_mutex);
2100 static void release_devnum(struct usb_device *udev)
2102 if (udev->devnum > 0) {
2103 clear_bit(udev->devnum, udev->bus->devmap.devicemap);
2104 udev->devnum = -1;
2108 static void update_devnum(struct usb_device *udev, int devnum)
2110 /* The address for a WUSB device is managed by wusbcore. */
2111 if (!udev->wusb)
2112 udev->devnum = devnum;
2115 static void hub_free_dev(struct usb_device *udev)
2117 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
2119 /* Root hubs aren't real devices, so don't free HCD resources */
2120 if (hcd->driver->free_dev && udev->parent)
2121 hcd->driver->free_dev(hcd, udev);
2124 static void hub_disconnect_children(struct usb_device *udev)
2126 struct usb_hub *hub = usb_hub_to_struct_hub(udev);
2127 int i;
2129 /* Free up all the children before we remove this device */
2130 for (i = 0; i < udev->maxchild; i++) {
2131 if (hub->ports[i]->child)
2132 usb_disconnect(&hub->ports[i]->child);
2137 * usb_disconnect - disconnect a device (usbcore-internal)
2138 * @pdev: pointer to device being disconnected
2139 * Context: !in_interrupt ()
2141 * Something got disconnected. Get rid of it and all of its children.
2143 * If *pdev is a normal device then the parent hub must already be locked.
2144 * If *pdev is a root hub then the caller must hold the usb_bus_idr_lock,
2145 * which protects the set of root hubs as well as the list of buses.
2147 * Only hub drivers (including virtual root hub drivers for host
2148 * controllers) should ever call this.
2150 * This call is synchronous, and may not be used in an interrupt context.
2152 void usb_disconnect(struct usb_device **pdev)
2154 struct usb_port *port_dev = NULL;
2155 struct usb_device *udev = *pdev;
2156 struct usb_hub *hub = NULL;
2157 int port1 = 1;
2159 /* mark the device as inactive, so any further urb submissions for
2160 * this device (and any of its children) will fail immediately.
2161 * this quiesces everything except pending urbs.
2163 usb_set_device_state(udev, USB_STATE_NOTATTACHED);
2164 dev_info(&udev->dev, "USB disconnect, device number %d\n",
2165 udev->devnum);
2168 * Ensure that the pm runtime code knows that the USB device
2169 * is in the process of being disconnected.
2171 pm_runtime_barrier(&udev->dev);
2173 usb_lock_device(udev);
2175 hub_disconnect_children(udev);
2177 /* deallocate hcd/hardware state ... nuking all pending urbs and
2178 * cleaning up all state associated with the current configuration
2179 * so that the hardware is now fully quiesced.
2181 dev_dbg(&udev->dev, "unregistering device\n");
2182 usb_disable_device(udev, 0);
2183 usb_hcd_synchronize_unlinks(udev);
2185 if (udev->parent) {
2186 port1 = udev->portnum;
2187 hub = usb_hub_to_struct_hub(udev->parent);
2188 port_dev = hub->ports[port1 - 1];
2190 sysfs_remove_link(&udev->dev.kobj, "port");
2191 sysfs_remove_link(&port_dev->dev.kobj, "device");
2194 * As usb_port_runtime_resume() de-references udev, make
2195 * sure no resumes occur during removal
2197 if (!test_and_set_bit(port1, hub->child_usage_bits))
2198 pm_runtime_get_sync(&port_dev->dev);
2201 usb_remove_ep_devs(&udev->ep0);
2202 usb_unlock_device(udev);
2204 /* Unregister the device. The device driver is responsible
2205 * for de-configuring the device and invoking the remove-device
2206 * notifier chain (used by usbfs and possibly others).
2208 device_del(&udev->dev);
2210 /* Free the device number and delete the parent's children[]
2211 * (or root_hub) pointer.
2213 release_devnum(udev);
2215 /* Avoid races with recursively_mark_NOTATTACHED() */
2216 spin_lock_irq(&device_state_lock);
2217 *pdev = NULL;
2218 spin_unlock_irq(&device_state_lock);
2220 if (port_dev && test_and_clear_bit(port1, hub->child_usage_bits))
2221 pm_runtime_put(&port_dev->dev);
2223 hub_free_dev(udev);
2225 put_device(&udev->dev);
2228 #ifdef CONFIG_USB_ANNOUNCE_NEW_DEVICES
2229 static void show_string(struct usb_device *udev, char *id, char *string)
2231 if (!string)
2232 return;
2233 dev_info(&udev->dev, "%s: %s\n", id, string);
2236 static void announce_device(struct usb_device *udev)
2238 u16 bcdDevice = le16_to_cpu(udev->descriptor.bcdDevice);
2240 dev_info(&udev->dev,
2241 "New USB device found, idVendor=%04x, idProduct=%04x, bcdDevice=%2x.%02x\n",
2242 le16_to_cpu(udev->descriptor.idVendor),
2243 le16_to_cpu(udev->descriptor.idProduct),
2244 bcdDevice >> 8, bcdDevice & 0xff);
2245 dev_info(&udev->dev,
2246 "New USB device strings: Mfr=%d, Product=%d, SerialNumber=%d\n",
2247 udev->descriptor.iManufacturer,
2248 udev->descriptor.iProduct,
2249 udev->descriptor.iSerialNumber);
2250 show_string(udev, "Product", udev->product);
2251 show_string(udev, "Manufacturer", udev->manufacturer);
2252 show_string(udev, "SerialNumber", udev->serial);
2254 #else
2255 static inline void announce_device(struct usb_device *udev) { }
2256 #endif
2260 * usb_enumerate_device_otg - FIXME (usbcore-internal)
2261 * @udev: newly addressed device (in ADDRESS state)
2263 * Finish enumeration for On-The-Go devices
2265 * Return: 0 if successful. A negative error code otherwise.
2267 static int usb_enumerate_device_otg(struct usb_device *udev)
2269 int err = 0;
2271 #ifdef CONFIG_USB_OTG
2273 * OTG-aware devices on OTG-capable root hubs may be able to use SRP,
2274 * to wake us after we've powered off VBUS; and HNP, switching roles
2275 * "host" to "peripheral". The OTG descriptor helps figure this out.
2277 if (!udev->bus->is_b_host
2278 && udev->config
2279 && udev->parent == udev->bus->root_hub) {
2280 struct usb_otg_descriptor *desc = NULL;
2281 struct usb_bus *bus = udev->bus;
2282 unsigned port1 = udev->portnum;
2284 /* descriptor may appear anywhere in config */
2285 err = __usb_get_extra_descriptor(udev->rawdescriptors[0],
2286 le16_to_cpu(udev->config[0].desc.wTotalLength),
2287 USB_DT_OTG, (void **) &desc, sizeof(*desc));
2288 if (err || !(desc->bmAttributes & USB_OTG_HNP))
2289 return 0;
2291 dev_info(&udev->dev, "Dual-Role OTG device on %sHNP port\n",
2292 (port1 == bus->otg_port) ? "" : "non-");
2294 /* enable HNP before suspend, it's simpler */
2295 if (port1 == bus->otg_port) {
2296 bus->b_hnp_enable = 1;
2297 err = usb_control_msg(udev,
2298 usb_sndctrlpipe(udev, 0),
2299 USB_REQ_SET_FEATURE, 0,
2300 USB_DEVICE_B_HNP_ENABLE,
2301 0, NULL, 0,
2302 USB_CTRL_SET_TIMEOUT);
2303 if (err < 0) {
2305 * OTG MESSAGE: report errors here,
2306 * customize to match your product.
2308 dev_err(&udev->dev, "can't set HNP mode: %d\n",
2309 err);
2310 bus->b_hnp_enable = 0;
2312 } else if (desc->bLength == sizeof
2313 (struct usb_otg_descriptor)) {
2314 /* Set a_alt_hnp_support for legacy otg device */
2315 err = usb_control_msg(udev,
2316 usb_sndctrlpipe(udev, 0),
2317 USB_REQ_SET_FEATURE, 0,
2318 USB_DEVICE_A_ALT_HNP_SUPPORT,
2319 0, NULL, 0,
2320 USB_CTRL_SET_TIMEOUT);
2321 if (err < 0)
2322 dev_err(&udev->dev,
2323 "set a_alt_hnp_support failed: %d\n",
2324 err);
2327 #endif
2328 return err;
2333 * usb_enumerate_device - Read device configs/intfs/otg (usbcore-internal)
2334 * @udev: newly addressed device (in ADDRESS state)
2336 * This is only called by usb_new_device() and usb_authorize_device()
2337 * and FIXME -- all comments that apply to them apply here wrt to
2338 * environment.
2340 * If the device is WUSB and not authorized, we don't attempt to read
2341 * the string descriptors, as they will be errored out by the device
2342 * until it has been authorized.
2344 * Return: 0 if successful. A negative error code otherwise.
2346 static int usb_enumerate_device(struct usb_device *udev)
2348 int err;
2349 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
2351 if (udev->config == NULL) {
2352 err = usb_get_configuration(udev);
2353 if (err < 0) {
2354 if (err != -ENODEV)
2355 dev_err(&udev->dev, "can't read configurations, error %d\n",
2356 err);
2357 return err;
2361 /* read the standard strings and cache them if present */
2362 udev->product = usb_cache_string(udev, udev->descriptor.iProduct);
2363 udev->manufacturer = usb_cache_string(udev,
2364 udev->descriptor.iManufacturer);
2365 udev->serial = usb_cache_string(udev, udev->descriptor.iSerialNumber);
2367 err = usb_enumerate_device_otg(udev);
2368 if (err < 0)
2369 return err;
2371 if (IS_ENABLED(CONFIG_USB_OTG_WHITELIST) && hcd->tpl_support &&
2372 !is_targeted(udev)) {
2373 /* Maybe it can talk to us, though we can't talk to it.
2374 * (Includes HNP test device.)
2376 if (IS_ENABLED(CONFIG_USB_OTG) && (udev->bus->b_hnp_enable
2377 || udev->bus->is_b_host)) {
2378 err = usb_port_suspend(udev, PMSG_AUTO_SUSPEND);
2379 if (err < 0)
2380 dev_dbg(&udev->dev, "HNP fail, %d\n", err);
2382 return -ENOTSUPP;
2385 usb_detect_interface_quirks(udev);
2387 return 0;
2390 static void set_usb_port_removable(struct usb_device *udev)
2392 struct usb_device *hdev = udev->parent;
2393 struct usb_hub *hub;
2394 u8 port = udev->portnum;
2395 u16 wHubCharacteristics;
2396 bool removable = true;
2398 if (!hdev)
2399 return;
2401 hub = usb_hub_to_struct_hub(udev->parent);
2404 * If the platform firmware has provided information about a port,
2405 * use that to determine whether it's removable.
2407 switch (hub->ports[udev->portnum - 1]->connect_type) {
2408 case USB_PORT_CONNECT_TYPE_HOT_PLUG:
2409 udev->removable = USB_DEVICE_REMOVABLE;
2410 return;
2411 case USB_PORT_CONNECT_TYPE_HARD_WIRED:
2412 case USB_PORT_NOT_USED:
2413 udev->removable = USB_DEVICE_FIXED;
2414 return;
2415 default:
2416 break;
2420 * Otherwise, check whether the hub knows whether a port is removable
2421 * or not
2423 wHubCharacteristics = le16_to_cpu(hub->descriptor->wHubCharacteristics);
2425 if (!(wHubCharacteristics & HUB_CHAR_COMPOUND))
2426 return;
2428 if (hub_is_superspeed(hdev)) {
2429 if (le16_to_cpu(hub->descriptor->u.ss.DeviceRemovable)
2430 & (1 << port))
2431 removable = false;
2432 } else {
2433 if (hub->descriptor->u.hs.DeviceRemovable[port / 8] & (1 << (port % 8)))
2434 removable = false;
2437 if (removable)
2438 udev->removable = USB_DEVICE_REMOVABLE;
2439 else
2440 udev->removable = USB_DEVICE_FIXED;
2445 * usb_new_device - perform initial device setup (usbcore-internal)
2446 * @udev: newly addressed device (in ADDRESS state)
2448 * This is called with devices which have been detected but not fully
2449 * enumerated. The device descriptor is available, but not descriptors
2450 * for any device configuration. The caller must have locked either
2451 * the parent hub (if udev is a normal device) or else the
2452 * usb_bus_idr_lock (if udev is a root hub). The parent's pointer to
2453 * udev has already been installed, but udev is not yet visible through
2454 * sysfs or other filesystem code.
2456 * This call is synchronous, and may not be used in an interrupt context.
2458 * Only the hub driver or root-hub registrar should ever call this.
2460 * Return: Whether the device is configured properly or not. Zero if the
2461 * interface was registered with the driver core; else a negative errno
2462 * value.
2465 int usb_new_device(struct usb_device *udev)
2467 int err;
2469 if (udev->parent) {
2470 /* Initialize non-root-hub device wakeup to disabled;
2471 * device (un)configuration controls wakeup capable
2472 * sysfs power/wakeup controls wakeup enabled/disabled
2474 device_init_wakeup(&udev->dev, 0);
2477 /* Tell the runtime-PM framework the device is active */
2478 pm_runtime_set_active(&udev->dev);
2479 pm_runtime_get_noresume(&udev->dev);
2480 pm_runtime_use_autosuspend(&udev->dev);
2481 pm_runtime_enable(&udev->dev);
2483 /* By default, forbid autosuspend for all devices. It will be
2484 * allowed for hubs during binding.
2486 usb_disable_autosuspend(udev);
2488 err = usb_enumerate_device(udev); /* Read descriptors */
2489 if (err < 0)
2490 goto fail;
2491 dev_dbg(&udev->dev, "udev %d, busnum %d, minor = %d\n",
2492 udev->devnum, udev->bus->busnum,
2493 (((udev->bus->busnum-1) * 128) + (udev->devnum-1)));
2494 /* export the usbdev device-node for libusb */
2495 udev->dev.devt = MKDEV(USB_DEVICE_MAJOR,
2496 (((udev->bus->busnum-1) * 128) + (udev->devnum-1)));
2498 /* Tell the world! */
2499 announce_device(udev);
2501 if (udev->serial)
2502 add_device_randomness(udev->serial, strlen(udev->serial));
2503 if (udev->product)
2504 add_device_randomness(udev->product, strlen(udev->product));
2505 if (udev->manufacturer)
2506 add_device_randomness(udev->manufacturer,
2507 strlen(udev->manufacturer));
2509 device_enable_async_suspend(&udev->dev);
2511 /* check whether the hub or firmware marks this port as non-removable */
2512 if (udev->parent)
2513 set_usb_port_removable(udev);
2515 /* Register the device. The device driver is responsible
2516 * for configuring the device and invoking the add-device
2517 * notifier chain (used by usbfs and possibly others).
2519 err = device_add(&udev->dev);
2520 if (err) {
2521 dev_err(&udev->dev, "can't device_add, error %d\n", err);
2522 goto fail;
2525 /* Create link files between child device and usb port device. */
2526 if (udev->parent) {
2527 struct usb_hub *hub = usb_hub_to_struct_hub(udev->parent);
2528 int port1 = udev->portnum;
2529 struct usb_port *port_dev = hub->ports[port1 - 1];
2531 err = sysfs_create_link(&udev->dev.kobj,
2532 &port_dev->dev.kobj, "port");
2533 if (err)
2534 goto fail;
2536 err = sysfs_create_link(&port_dev->dev.kobj,
2537 &udev->dev.kobj, "device");
2538 if (err) {
2539 sysfs_remove_link(&udev->dev.kobj, "port");
2540 goto fail;
2543 if (!test_and_set_bit(port1, hub->child_usage_bits))
2544 pm_runtime_get_sync(&port_dev->dev);
2547 (void) usb_create_ep_devs(&udev->dev, &udev->ep0, udev);
2548 usb_mark_last_busy(udev);
2549 pm_runtime_put_sync_autosuspend(&udev->dev);
2550 return err;
2552 fail:
2553 usb_set_device_state(udev, USB_STATE_NOTATTACHED);
2554 pm_runtime_disable(&udev->dev);
2555 pm_runtime_set_suspended(&udev->dev);
2556 return err;
2561 * usb_deauthorize_device - deauthorize a device (usbcore-internal)
2562 * @usb_dev: USB device
2564 * Move the USB device to a very basic state where interfaces are disabled
2565 * and the device is in fact unconfigured and unusable.
2567 * We share a lock (that we have) with device_del(), so we need to
2568 * defer its call.
2570 * Return: 0.
2572 int usb_deauthorize_device(struct usb_device *usb_dev)
2574 usb_lock_device(usb_dev);
2575 if (usb_dev->authorized == 0)
2576 goto out_unauthorized;
2578 usb_dev->authorized = 0;
2579 usb_set_configuration(usb_dev, -1);
2581 out_unauthorized:
2582 usb_unlock_device(usb_dev);
2583 return 0;
2587 int usb_authorize_device(struct usb_device *usb_dev)
2589 int result = 0, c;
2591 usb_lock_device(usb_dev);
2592 if (usb_dev->authorized == 1)
2593 goto out_authorized;
2595 result = usb_autoresume_device(usb_dev);
2596 if (result < 0) {
2597 dev_err(&usb_dev->dev,
2598 "can't autoresume for authorization: %d\n", result);
2599 goto error_autoresume;
2602 if (usb_dev->wusb) {
2603 result = usb_get_device_descriptor(usb_dev, sizeof(usb_dev->descriptor));
2604 if (result < 0) {
2605 dev_err(&usb_dev->dev, "can't re-read device descriptor for "
2606 "authorization: %d\n", result);
2607 goto error_device_descriptor;
2611 usb_dev->authorized = 1;
2612 /* Choose and set the configuration. This registers the interfaces
2613 * with the driver core and lets interface drivers bind to them.
2615 c = usb_choose_configuration(usb_dev);
2616 if (c >= 0) {
2617 result = usb_set_configuration(usb_dev, c);
2618 if (result) {
2619 dev_err(&usb_dev->dev,
2620 "can't set config #%d, error %d\n", c, result);
2621 /* This need not be fatal. The user can try to
2622 * set other configurations. */
2625 dev_info(&usb_dev->dev, "authorized to connect\n");
2627 error_device_descriptor:
2628 usb_autosuspend_device(usb_dev);
2629 error_autoresume:
2630 out_authorized:
2631 usb_unlock_device(usb_dev); /* complements locktree */
2632 return result;
2636 * Return 1 if port speed is SuperSpeedPlus, 0 otherwise
2637 * check it from the link protocol field of the current speed ID attribute.
2638 * current speed ID is got from ext port status request. Sublink speed attribute
2639 * table is returned with the hub BOS SSP device capability descriptor
2641 static int port_speed_is_ssp(struct usb_device *hdev, int speed_id)
2643 int ssa_count;
2644 u32 ss_attr;
2645 int i;
2646 struct usb_ssp_cap_descriptor *ssp_cap = hdev->bos->ssp_cap;
2648 if (!ssp_cap)
2649 return 0;
2651 ssa_count = le32_to_cpu(ssp_cap->bmAttributes) &
2652 USB_SSP_SUBLINK_SPEED_ATTRIBS;
2654 for (i = 0; i <= ssa_count; i++) {
2655 ss_attr = le32_to_cpu(ssp_cap->bmSublinkSpeedAttr[i]);
2656 if (speed_id == (ss_attr & USB_SSP_SUBLINK_SPEED_SSID))
2657 return !!(ss_attr & USB_SSP_SUBLINK_SPEED_LP);
2659 return 0;
2662 /* Returns 1 if @hub is a WUSB root hub, 0 otherwise */
2663 static unsigned hub_is_wusb(struct usb_hub *hub)
2665 struct usb_hcd *hcd;
2666 if (hub->hdev->parent != NULL) /* not a root hub? */
2667 return 0;
2668 hcd = bus_to_hcd(hub->hdev->bus);
2669 return hcd->wireless;
2673 #define PORT_RESET_TRIES 5
2674 #define SET_ADDRESS_TRIES 2
2675 #define GET_DESCRIPTOR_TRIES 2
2676 #define SET_CONFIG_TRIES (2 * (use_both_schemes + 1))
2677 #define USE_NEW_SCHEME(i, scheme) ((i) / 2 == (int)(scheme))
2679 #define HUB_ROOT_RESET_TIME 60 /* times are in msec */
2680 #define HUB_SHORT_RESET_TIME 10
2681 #define HUB_BH_RESET_TIME 50
2682 #define HUB_LONG_RESET_TIME 200
2683 #define HUB_RESET_TIMEOUT 800
2686 * "New scheme" enumeration causes an extra state transition to be
2687 * exposed to an xhci host and causes USB3 devices to receive control
2688 * commands in the default state. This has been seen to cause
2689 * enumeration failures, so disable this enumeration scheme for USB3
2690 * devices.
2692 static bool use_new_scheme(struct usb_device *udev, int retry,
2693 struct usb_port *port_dev)
2695 int old_scheme_first_port =
2696 port_dev->quirks & USB_PORT_QUIRK_OLD_SCHEME;
2698 if (udev->speed >= USB_SPEED_SUPER)
2699 return false;
2701 return USE_NEW_SCHEME(retry, old_scheme_first_port || old_scheme_first);
2704 /* Is a USB 3.0 port in the Inactive or Compliance Mode state?
2705 * Port worm reset is required to recover
2707 static bool hub_port_warm_reset_required(struct usb_hub *hub, int port1,
2708 u16 portstatus)
2710 u16 link_state;
2712 if (!hub_is_superspeed(hub->hdev))
2713 return false;
2715 if (test_bit(port1, hub->warm_reset_bits))
2716 return true;
2718 link_state = portstatus & USB_PORT_STAT_LINK_STATE;
2719 return link_state == USB_SS_PORT_LS_SS_INACTIVE
2720 || link_state == USB_SS_PORT_LS_COMP_MOD;
2723 static int hub_port_wait_reset(struct usb_hub *hub, int port1,
2724 struct usb_device *udev, unsigned int delay, bool warm)
2726 int delay_time, ret;
2727 u16 portstatus;
2728 u16 portchange;
2729 u32 ext_portstatus = 0;
2731 for (delay_time = 0;
2732 delay_time < HUB_RESET_TIMEOUT;
2733 delay_time += delay) {
2734 /* wait to give the device a chance to reset */
2735 msleep(delay);
2737 /* read and decode port status */
2738 if (hub_is_superspeedplus(hub->hdev))
2739 ret = hub_ext_port_status(hub, port1,
2740 HUB_EXT_PORT_STATUS,
2741 &portstatus, &portchange,
2742 &ext_portstatus);
2743 else
2744 ret = hub_port_status(hub, port1, &portstatus,
2745 &portchange);
2746 if (ret < 0)
2747 return ret;
2750 * The port state is unknown until the reset completes.
2752 * On top of that, some chips may require additional time
2753 * to re-establish a connection after the reset is complete,
2754 * so also wait for the connection to be re-established.
2756 if (!(portstatus & USB_PORT_STAT_RESET) &&
2757 (portstatus & USB_PORT_STAT_CONNECTION))
2758 break;
2760 /* switch to the long delay after two short delay failures */
2761 if (delay_time >= 2 * HUB_SHORT_RESET_TIME)
2762 delay = HUB_LONG_RESET_TIME;
2764 dev_dbg(&hub->ports[port1 - 1]->dev,
2765 "not %sreset yet, waiting %dms\n",
2766 warm ? "warm " : "", delay);
2769 if ((portstatus & USB_PORT_STAT_RESET))
2770 return -EBUSY;
2772 if (hub_port_warm_reset_required(hub, port1, portstatus))
2773 return -ENOTCONN;
2775 /* Device went away? */
2776 if (!(portstatus & USB_PORT_STAT_CONNECTION))
2777 return -ENOTCONN;
2779 /* Retry if connect change is set but status is still connected.
2780 * A USB 3.0 connection may bounce if multiple warm resets were issued,
2781 * but the device may have successfully re-connected. Ignore it.
2783 if (!hub_is_superspeed(hub->hdev) &&
2784 (portchange & USB_PORT_STAT_C_CONNECTION)) {
2785 usb_clear_port_feature(hub->hdev, port1,
2786 USB_PORT_FEAT_C_CONNECTION);
2787 return -EAGAIN;
2790 if (!(portstatus & USB_PORT_STAT_ENABLE))
2791 return -EBUSY;
2793 if (!udev)
2794 return 0;
2796 if (hub_is_superspeedplus(hub->hdev)) {
2797 /* extended portstatus Rx and Tx lane count are zero based */
2798 udev->rx_lanes = USB_EXT_PORT_RX_LANES(ext_portstatus) + 1;
2799 udev->tx_lanes = USB_EXT_PORT_TX_LANES(ext_portstatus) + 1;
2800 } else {
2801 udev->rx_lanes = 1;
2802 udev->tx_lanes = 1;
2804 if (hub_is_wusb(hub))
2805 udev->speed = USB_SPEED_WIRELESS;
2806 else if (hub_is_superspeedplus(hub->hdev) &&
2807 port_speed_is_ssp(hub->hdev, ext_portstatus &
2808 USB_EXT_PORT_STAT_RX_SPEED_ID))
2809 udev->speed = USB_SPEED_SUPER_PLUS;
2810 else if (hub_is_superspeed(hub->hdev))
2811 udev->speed = USB_SPEED_SUPER;
2812 else if (portstatus & USB_PORT_STAT_HIGH_SPEED)
2813 udev->speed = USB_SPEED_HIGH;
2814 else if (portstatus & USB_PORT_STAT_LOW_SPEED)
2815 udev->speed = USB_SPEED_LOW;
2816 else
2817 udev->speed = USB_SPEED_FULL;
2818 return 0;
2821 /* Handle port reset and port warm(BH) reset (for USB3 protocol ports) */
2822 static int hub_port_reset(struct usb_hub *hub, int port1,
2823 struct usb_device *udev, unsigned int delay, bool warm)
2825 int i, status;
2826 u16 portchange, portstatus;
2827 struct usb_port *port_dev = hub->ports[port1 - 1];
2828 int reset_recovery_time;
2830 if (!hub_is_superspeed(hub->hdev)) {
2831 if (warm) {
2832 dev_err(hub->intfdev, "only USB3 hub support "
2833 "warm reset\n");
2834 return -EINVAL;
2836 /* Block EHCI CF initialization during the port reset.
2837 * Some companion controllers don't like it when they mix.
2839 down_read(&ehci_cf_port_reset_rwsem);
2840 } else if (!warm) {
2842 * If the caller hasn't explicitly requested a warm reset,
2843 * double check and see if one is needed.
2845 if (hub_port_status(hub, port1, &portstatus, &portchange) == 0)
2846 if (hub_port_warm_reset_required(hub, port1,
2847 portstatus))
2848 warm = true;
2850 clear_bit(port1, hub->warm_reset_bits);
2852 /* Reset the port */
2853 for (i = 0; i < PORT_RESET_TRIES; i++) {
2854 status = set_port_feature(hub->hdev, port1, (warm ?
2855 USB_PORT_FEAT_BH_PORT_RESET :
2856 USB_PORT_FEAT_RESET));
2857 if (status == -ENODEV) {
2858 ; /* The hub is gone */
2859 } else if (status) {
2860 dev_err(&port_dev->dev,
2861 "cannot %sreset (err = %d)\n",
2862 warm ? "warm " : "", status);
2863 } else {
2864 status = hub_port_wait_reset(hub, port1, udev, delay,
2865 warm);
2866 if (status && status != -ENOTCONN && status != -ENODEV)
2867 dev_dbg(hub->intfdev,
2868 "port_wait_reset: err = %d\n",
2869 status);
2872 /* Check for disconnect or reset */
2873 if (status == 0 || status == -ENOTCONN || status == -ENODEV) {
2874 usb_clear_port_feature(hub->hdev, port1,
2875 USB_PORT_FEAT_C_RESET);
2877 if (!hub_is_superspeed(hub->hdev))
2878 goto done;
2880 usb_clear_port_feature(hub->hdev, port1,
2881 USB_PORT_FEAT_C_BH_PORT_RESET);
2882 usb_clear_port_feature(hub->hdev, port1,
2883 USB_PORT_FEAT_C_PORT_LINK_STATE);
2885 if (udev)
2886 usb_clear_port_feature(hub->hdev, port1,
2887 USB_PORT_FEAT_C_CONNECTION);
2890 * If a USB 3.0 device migrates from reset to an error
2891 * state, re-issue the warm reset.
2893 if (hub_port_status(hub, port1,
2894 &portstatus, &portchange) < 0)
2895 goto done;
2897 if (!hub_port_warm_reset_required(hub, port1,
2898 portstatus))
2899 goto done;
2902 * If the port is in SS.Inactive or Compliance Mode, the
2903 * hot or warm reset failed. Try another warm reset.
2905 if (!warm) {
2906 dev_dbg(&port_dev->dev,
2907 "hot reset failed, warm reset\n");
2908 warm = true;
2912 dev_dbg(&port_dev->dev,
2913 "not enabled, trying %sreset again...\n",
2914 warm ? "warm " : "");
2915 delay = HUB_LONG_RESET_TIME;
2918 dev_err(&port_dev->dev, "Cannot enable. Maybe the USB cable is bad?\n");
2920 done:
2921 if (status == 0) {
2922 if (port_dev->quirks & USB_PORT_QUIRK_FAST_ENUM)
2923 usleep_range(10000, 12000);
2924 else {
2925 /* TRSTRCY = 10 ms; plus some extra */
2926 reset_recovery_time = 10 + 40;
2928 /* Hub needs extra delay after resetting its port. */
2929 if (hub->hdev->quirks & USB_QUIRK_HUB_SLOW_RESET)
2930 reset_recovery_time += 100;
2932 msleep(reset_recovery_time);
2935 if (udev) {
2936 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
2938 update_devnum(udev, 0);
2939 /* The xHC may think the device is already reset,
2940 * so ignore the status.
2942 if (hcd->driver->reset_device)
2943 hcd->driver->reset_device(hcd, udev);
2945 usb_set_device_state(udev, USB_STATE_DEFAULT);
2947 } else {
2948 if (udev)
2949 usb_set_device_state(udev, USB_STATE_NOTATTACHED);
2952 if (!hub_is_superspeed(hub->hdev))
2953 up_read(&ehci_cf_port_reset_rwsem);
2955 return status;
2958 /* Check if a port is power on */
2959 static int port_is_power_on(struct usb_hub *hub, unsigned portstatus)
2961 int ret = 0;
2963 if (hub_is_superspeed(hub->hdev)) {
2964 if (portstatus & USB_SS_PORT_STAT_POWER)
2965 ret = 1;
2966 } else {
2967 if (portstatus & USB_PORT_STAT_POWER)
2968 ret = 1;
2971 return ret;
2974 static void usb_lock_port(struct usb_port *port_dev)
2975 __acquires(&port_dev->status_lock)
2977 mutex_lock(&port_dev->status_lock);
2978 __acquire(&port_dev->status_lock);
2981 static void usb_unlock_port(struct usb_port *port_dev)
2982 __releases(&port_dev->status_lock)
2984 mutex_unlock(&port_dev->status_lock);
2985 __release(&port_dev->status_lock);
2988 #ifdef CONFIG_PM
2990 /* Check if a port is suspended(USB2.0 port) or in U3 state(USB3.0 port) */
2991 static int port_is_suspended(struct usb_hub *hub, unsigned portstatus)
2993 int ret = 0;
2995 if (hub_is_superspeed(hub->hdev)) {
2996 if ((portstatus & USB_PORT_STAT_LINK_STATE)
2997 == USB_SS_PORT_LS_U3)
2998 ret = 1;
2999 } else {
3000 if (portstatus & USB_PORT_STAT_SUSPEND)
3001 ret = 1;
3004 return ret;
3007 /* Determine whether the device on a port is ready for a normal resume,
3008 * is ready for a reset-resume, or should be disconnected.
3010 static int check_port_resume_type(struct usb_device *udev,
3011 struct usb_hub *hub, int port1,
3012 int status, u16 portchange, u16 portstatus)
3014 struct usb_port *port_dev = hub->ports[port1 - 1];
3015 int retries = 3;
3017 retry:
3018 /* Is a warm reset needed to recover the connection? */
3019 if (status == 0 && udev->reset_resume
3020 && hub_port_warm_reset_required(hub, port1, portstatus)) {
3021 /* pass */;
3023 /* Is the device still present? */
3024 else if (status || port_is_suspended(hub, portstatus) ||
3025 !port_is_power_on(hub, portstatus)) {
3026 if (status >= 0)
3027 status = -ENODEV;
3028 } else if (!(portstatus & USB_PORT_STAT_CONNECTION)) {
3029 if (retries--) {
3030 usleep_range(200, 300);
3031 status = hub_port_status(hub, port1, &portstatus,
3032 &portchange);
3033 goto retry;
3035 status = -ENODEV;
3038 /* Can't do a normal resume if the port isn't enabled,
3039 * so try a reset-resume instead.
3041 else if (!(portstatus & USB_PORT_STAT_ENABLE) && !udev->reset_resume) {
3042 if (udev->persist_enabled)
3043 udev->reset_resume = 1;
3044 else
3045 status = -ENODEV;
3048 if (status) {
3049 dev_dbg(&port_dev->dev, "status %04x.%04x after resume, %d\n",
3050 portchange, portstatus, status);
3051 } else if (udev->reset_resume) {
3053 /* Late port handoff can set status-change bits */
3054 if (portchange & USB_PORT_STAT_C_CONNECTION)
3055 usb_clear_port_feature(hub->hdev, port1,
3056 USB_PORT_FEAT_C_CONNECTION);
3057 if (portchange & USB_PORT_STAT_C_ENABLE)
3058 usb_clear_port_feature(hub->hdev, port1,
3059 USB_PORT_FEAT_C_ENABLE);
3062 * Whatever made this reset-resume necessary may have
3063 * turned on the port1 bit in hub->change_bits. But after
3064 * a successful reset-resume we want the bit to be clear;
3065 * if it was on it would indicate that something happened
3066 * following the reset-resume.
3068 clear_bit(port1, hub->change_bits);
3071 return status;
3074 int usb_disable_ltm(struct usb_device *udev)
3076 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
3078 /* Check if the roothub and device supports LTM. */
3079 if (!usb_device_supports_ltm(hcd->self.root_hub) ||
3080 !usb_device_supports_ltm(udev))
3081 return 0;
3083 /* Clear Feature LTM Enable can only be sent if the device is
3084 * configured.
3086 if (!udev->actconfig)
3087 return 0;
3089 return usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
3090 USB_REQ_CLEAR_FEATURE, USB_RECIP_DEVICE,
3091 USB_DEVICE_LTM_ENABLE, 0, NULL, 0,
3092 USB_CTRL_SET_TIMEOUT);
3094 EXPORT_SYMBOL_GPL(usb_disable_ltm);
3096 void usb_enable_ltm(struct usb_device *udev)
3098 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
3100 /* Check if the roothub and device supports LTM. */
3101 if (!usb_device_supports_ltm(hcd->self.root_hub) ||
3102 !usb_device_supports_ltm(udev))
3103 return;
3105 /* Set Feature LTM Enable can only be sent if the device is
3106 * configured.
3108 if (!udev->actconfig)
3109 return;
3111 usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
3112 USB_REQ_SET_FEATURE, USB_RECIP_DEVICE,
3113 USB_DEVICE_LTM_ENABLE, 0, NULL, 0,
3114 USB_CTRL_SET_TIMEOUT);
3116 EXPORT_SYMBOL_GPL(usb_enable_ltm);
3119 * usb_enable_remote_wakeup - enable remote wakeup for a device
3120 * @udev: target device
3122 * For USB-2 devices: Set the device's remote wakeup feature.
3124 * For USB-3 devices: Assume there's only one function on the device and
3125 * enable remote wake for the first interface. FIXME if the interface
3126 * association descriptor shows there's more than one function.
3128 static int usb_enable_remote_wakeup(struct usb_device *udev)
3130 if (udev->speed < USB_SPEED_SUPER)
3131 return usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
3132 USB_REQ_SET_FEATURE, USB_RECIP_DEVICE,
3133 USB_DEVICE_REMOTE_WAKEUP, 0, NULL, 0,
3134 USB_CTRL_SET_TIMEOUT);
3135 else
3136 return usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
3137 USB_REQ_SET_FEATURE, USB_RECIP_INTERFACE,
3138 USB_INTRF_FUNC_SUSPEND,
3139 USB_INTRF_FUNC_SUSPEND_RW |
3140 USB_INTRF_FUNC_SUSPEND_LP,
3141 NULL, 0, USB_CTRL_SET_TIMEOUT);
3145 * usb_disable_remote_wakeup - disable remote wakeup for a device
3146 * @udev: target device
3148 * For USB-2 devices: Clear the device's remote wakeup feature.
3150 * For USB-3 devices: Assume there's only one function on the device and
3151 * disable remote wake for the first interface. FIXME if the interface
3152 * association descriptor shows there's more than one function.
3154 static int usb_disable_remote_wakeup(struct usb_device *udev)
3156 if (udev->speed < USB_SPEED_SUPER)
3157 return usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
3158 USB_REQ_CLEAR_FEATURE, USB_RECIP_DEVICE,
3159 USB_DEVICE_REMOTE_WAKEUP, 0, NULL, 0,
3160 USB_CTRL_SET_TIMEOUT);
3161 else
3162 return usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
3163 USB_REQ_SET_FEATURE, USB_RECIP_INTERFACE,
3164 USB_INTRF_FUNC_SUSPEND, 0, NULL, 0,
3165 USB_CTRL_SET_TIMEOUT);
3168 /* Count of wakeup-enabled devices at or below udev */
3169 static unsigned wakeup_enabled_descendants(struct usb_device *udev)
3171 struct usb_hub *hub = usb_hub_to_struct_hub(udev);
3173 return udev->do_remote_wakeup +
3174 (hub ? hub->wakeup_enabled_descendants : 0);
3178 * usb_port_suspend - suspend a usb device's upstream port
3179 * @udev: device that's no longer in active use, not a root hub
3180 * Context: must be able to sleep; device not locked; pm locks held
3182 * Suspends a USB device that isn't in active use, conserving power.
3183 * Devices may wake out of a suspend, if anything important happens,
3184 * using the remote wakeup mechanism. They may also be taken out of
3185 * suspend by the host, using usb_port_resume(). It's also routine
3186 * to disconnect devices while they are suspended.
3188 * This only affects the USB hardware for a device; its interfaces
3189 * (and, for hubs, child devices) must already have been suspended.
3191 * Selective port suspend reduces power; most suspended devices draw
3192 * less than 500 uA. It's also used in OTG, along with remote wakeup.
3193 * All devices below the suspended port are also suspended.
3195 * Devices leave suspend state when the host wakes them up. Some devices
3196 * also support "remote wakeup", where the device can activate the USB
3197 * tree above them to deliver data, such as a keypress or packet. In
3198 * some cases, this wakes the USB host.
3200 * Suspending OTG devices may trigger HNP, if that's been enabled
3201 * between a pair of dual-role devices. That will change roles, such
3202 * as from A-Host to A-Peripheral or from B-Host back to B-Peripheral.
3204 * Devices on USB hub ports have only one "suspend" state, corresponding
3205 * to ACPI D2, "may cause the device to lose some context".
3206 * State transitions include:
3208 * - suspend, resume ... when the VBUS power link stays live
3209 * - suspend, disconnect ... VBUS lost
3211 * Once VBUS drop breaks the circuit, the port it's using has to go through
3212 * normal re-enumeration procedures, starting with enabling VBUS power.
3213 * Other than re-initializing the hub (plug/unplug, except for root hubs),
3214 * Linux (2.6) currently has NO mechanisms to initiate that: no hub_wq
3215 * timer, no SRP, no requests through sysfs.
3217 * If Runtime PM isn't enabled or used, non-SuperSpeed devices may not get
3218 * suspended until their bus goes into global suspend (i.e., the root
3219 * hub is suspended). Nevertheless, we change @udev->state to
3220 * USB_STATE_SUSPENDED as this is the device's "logical" state. The actual
3221 * upstream port setting is stored in @udev->port_is_suspended.
3223 * Returns 0 on success, else negative errno.
3225 int usb_port_suspend(struct usb_device *udev, pm_message_t msg)
3227 struct usb_hub *hub = usb_hub_to_struct_hub(udev->parent);
3228 struct usb_port *port_dev = hub->ports[udev->portnum - 1];
3229 int port1 = udev->portnum;
3230 int status;
3231 bool really_suspend = true;
3233 usb_lock_port(port_dev);
3235 /* enable remote wakeup when appropriate; this lets the device
3236 * wake up the upstream hub (including maybe the root hub).
3238 * NOTE: OTG devices may issue remote wakeup (or SRP) even when
3239 * we don't explicitly enable it here.
3241 if (udev->do_remote_wakeup) {
3242 status = usb_enable_remote_wakeup(udev);
3243 if (status) {
3244 dev_dbg(&udev->dev, "won't remote wakeup, status %d\n",
3245 status);
3246 /* bail if autosuspend is requested */
3247 if (PMSG_IS_AUTO(msg))
3248 goto err_wakeup;
3252 /* disable USB2 hardware LPM */
3253 usb_disable_usb2_hardware_lpm(udev);
3255 if (usb_disable_ltm(udev)) {
3256 dev_err(&udev->dev, "Failed to disable LTM before suspend\n");
3257 status = -ENOMEM;
3258 if (PMSG_IS_AUTO(msg))
3259 goto err_ltm;
3262 /* see 7.1.7.6 */
3263 if (hub_is_superspeed(hub->hdev))
3264 status = hub_set_port_link_state(hub, port1, USB_SS_PORT_LS_U3);
3267 * For system suspend, we do not need to enable the suspend feature
3268 * on individual USB-2 ports. The devices will automatically go
3269 * into suspend a few ms after the root hub stops sending packets.
3270 * The USB 2.0 spec calls this "global suspend".
3272 * However, many USB hubs have a bug: They don't relay wakeup requests
3273 * from a downstream port if the port's suspend feature isn't on.
3274 * Therefore we will turn on the suspend feature if udev or any of its
3275 * descendants is enabled for remote wakeup.
3277 else if (PMSG_IS_AUTO(msg) || wakeup_enabled_descendants(udev) > 0)
3278 status = set_port_feature(hub->hdev, port1,
3279 USB_PORT_FEAT_SUSPEND);
3280 else {
3281 really_suspend = false;
3282 status = 0;
3284 if (status) {
3285 dev_dbg(&port_dev->dev, "can't suspend, status %d\n", status);
3287 /* Try to enable USB3 LTM again */
3288 usb_enable_ltm(udev);
3289 err_ltm:
3290 /* Try to enable USB2 hardware LPM again */
3291 usb_enable_usb2_hardware_lpm(udev);
3293 if (udev->do_remote_wakeup)
3294 (void) usb_disable_remote_wakeup(udev);
3295 err_wakeup:
3297 /* System sleep transitions should never fail */
3298 if (!PMSG_IS_AUTO(msg))
3299 status = 0;
3300 } else {
3301 dev_dbg(&udev->dev, "usb %ssuspend, wakeup %d\n",
3302 (PMSG_IS_AUTO(msg) ? "auto-" : ""),
3303 udev->do_remote_wakeup);
3304 if (really_suspend) {
3305 udev->port_is_suspended = 1;
3307 /* device has up to 10 msec to fully suspend */
3308 msleep(10);
3310 usb_set_device_state(udev, USB_STATE_SUSPENDED);
3313 if (status == 0 && !udev->do_remote_wakeup && udev->persist_enabled
3314 && test_and_clear_bit(port1, hub->child_usage_bits))
3315 pm_runtime_put_sync(&port_dev->dev);
3317 usb_mark_last_busy(hub->hdev);
3319 usb_unlock_port(port_dev);
3320 return status;
3324 * If the USB "suspend" state is in use (rather than "global suspend"),
3325 * many devices will be individually taken out of suspend state using
3326 * special "resume" signaling. This routine kicks in shortly after
3327 * hardware resume signaling is finished, either because of selective
3328 * resume (by host) or remote wakeup (by device) ... now see what changed
3329 * in the tree that's rooted at this device.
3331 * If @udev->reset_resume is set then the device is reset before the
3332 * status check is done.
3334 static int finish_port_resume(struct usb_device *udev)
3336 int status = 0;
3337 u16 devstatus = 0;
3339 /* caller owns the udev device lock */
3340 dev_dbg(&udev->dev, "%s\n",
3341 udev->reset_resume ? "finish reset-resume" : "finish resume");
3343 /* usb ch9 identifies four variants of SUSPENDED, based on what
3344 * state the device resumes to. Linux currently won't see the
3345 * first two on the host side; they'd be inside hub_port_init()
3346 * during many timeouts, but hub_wq can't suspend until later.
3348 usb_set_device_state(udev, udev->actconfig
3349 ? USB_STATE_CONFIGURED
3350 : USB_STATE_ADDRESS);
3352 /* 10.5.4.5 says not to reset a suspended port if the attached
3353 * device is enabled for remote wakeup. Hence the reset
3354 * operation is carried out here, after the port has been
3355 * resumed.
3357 if (udev->reset_resume) {
3359 * If the device morphs or switches modes when it is reset,
3360 * we don't want to perform a reset-resume. We'll fail the
3361 * resume, which will cause a logical disconnect, and then
3362 * the device will be rediscovered.
3364 retry_reset_resume:
3365 if (udev->quirks & USB_QUIRK_RESET)
3366 status = -ENODEV;
3367 else
3368 status = usb_reset_and_verify_device(udev);
3371 /* 10.5.4.5 says be sure devices in the tree are still there.
3372 * For now let's assume the device didn't go crazy on resume,
3373 * and device drivers will know about any resume quirks.
3375 if (status == 0) {
3376 devstatus = 0;
3377 status = usb_get_std_status(udev, USB_RECIP_DEVICE, 0, &devstatus);
3379 /* If a normal resume failed, try doing a reset-resume */
3380 if (status && !udev->reset_resume && udev->persist_enabled) {
3381 dev_dbg(&udev->dev, "retry with reset-resume\n");
3382 udev->reset_resume = 1;
3383 goto retry_reset_resume;
3387 if (status) {
3388 dev_dbg(&udev->dev, "gone after usb resume? status %d\n",
3389 status);
3391 * There are a few quirky devices which violate the standard
3392 * by claiming to have remote wakeup enabled after a reset,
3393 * which crash if the feature is cleared, hence check for
3394 * udev->reset_resume
3396 } else if (udev->actconfig && !udev->reset_resume) {
3397 if (udev->speed < USB_SPEED_SUPER) {
3398 if (devstatus & (1 << USB_DEVICE_REMOTE_WAKEUP))
3399 status = usb_disable_remote_wakeup(udev);
3400 } else {
3401 status = usb_get_std_status(udev, USB_RECIP_INTERFACE, 0,
3402 &devstatus);
3403 if (!status && devstatus & (USB_INTRF_STAT_FUNC_RW_CAP
3404 | USB_INTRF_STAT_FUNC_RW))
3405 status = usb_disable_remote_wakeup(udev);
3408 if (status)
3409 dev_dbg(&udev->dev,
3410 "disable remote wakeup, status %d\n",
3411 status);
3412 status = 0;
3414 return status;
3418 * There are some SS USB devices which take longer time for link training.
3419 * XHCI specs 4.19.4 says that when Link training is successful, port
3420 * sets CCS bit to 1. So if SW reads port status before successful link
3421 * training, then it will not find device to be present.
3422 * USB Analyzer log with such buggy devices show that in some cases
3423 * device switch on the RX termination after long delay of host enabling
3424 * the VBUS. In few other cases it has been seen that device fails to
3425 * negotiate link training in first attempt. It has been
3426 * reported till now that few devices take as long as 2000 ms to train
3427 * the link after host enabling its VBUS and termination. Following
3428 * routine implements a 2000 ms timeout for link training. If in a case
3429 * link trains before timeout, loop will exit earlier.
3431 * There are also some 2.0 hard drive based devices and 3.0 thumb
3432 * drives that, when plugged into a 2.0 only port, take a long
3433 * time to set CCS after VBUS enable.
3435 * FIXME: If a device was connected before suspend, but was removed
3436 * while system was asleep, then the loop in the following routine will
3437 * only exit at timeout.
3439 * This routine should only be called when persist is enabled.
3441 static int wait_for_connected(struct usb_device *udev,
3442 struct usb_hub *hub, int *port1,
3443 u16 *portchange, u16 *portstatus)
3445 int status = 0, delay_ms = 0;
3447 while (delay_ms < 2000) {
3448 if (status || *portstatus & USB_PORT_STAT_CONNECTION)
3449 break;
3450 if (!port_is_power_on(hub, *portstatus)) {
3451 status = -ENODEV;
3452 break;
3454 msleep(20);
3455 delay_ms += 20;
3456 status = hub_port_status(hub, *port1, portstatus, portchange);
3458 dev_dbg(&udev->dev, "Waited %dms for CONNECT\n", delay_ms);
3459 return status;
3463 * usb_port_resume - re-activate a suspended usb device's upstream port
3464 * @udev: device to re-activate, not a root hub
3465 * Context: must be able to sleep; device not locked; pm locks held
3467 * This will re-activate the suspended device, increasing power usage
3468 * while letting drivers communicate again with its endpoints.
3469 * USB resume explicitly guarantees that the power session between
3470 * the host and the device is the same as it was when the device
3471 * suspended.
3473 * If @udev->reset_resume is set then this routine won't check that the
3474 * port is still enabled. Furthermore, finish_port_resume() above will
3475 * reset @udev. The end result is that a broken power session can be
3476 * recovered and @udev will appear to persist across a loss of VBUS power.
3478 * For example, if a host controller doesn't maintain VBUS suspend current
3479 * during a system sleep or is reset when the system wakes up, all the USB
3480 * power sessions below it will be broken. This is especially troublesome
3481 * for mass-storage devices containing mounted filesystems, since the
3482 * device will appear to have disconnected and all the memory mappings
3483 * to it will be lost. Using the USB_PERSIST facility, the device can be
3484 * made to appear as if it had not disconnected.
3486 * This facility can be dangerous. Although usb_reset_and_verify_device() makes
3487 * every effort to insure that the same device is present after the
3488 * reset as before, it cannot provide a 100% guarantee. Furthermore it's
3489 * quite possible for a device to remain unaltered but its media to be
3490 * changed. If the user replaces a flash memory card while the system is
3491 * asleep, he will have only himself to blame when the filesystem on the
3492 * new card is corrupted and the system crashes.
3494 * Returns 0 on success, else negative errno.
3496 int usb_port_resume(struct usb_device *udev, pm_message_t msg)
3498 struct usb_hub *hub = usb_hub_to_struct_hub(udev->parent);
3499 struct usb_port *port_dev = hub->ports[udev->portnum - 1];
3500 int port1 = udev->portnum;
3501 int status;
3502 u16 portchange, portstatus;
3504 if (!test_and_set_bit(port1, hub->child_usage_bits)) {
3505 status = pm_runtime_get_sync(&port_dev->dev);
3506 if (status < 0) {
3507 dev_dbg(&udev->dev, "can't resume usb port, status %d\n",
3508 status);
3509 return status;
3513 usb_lock_port(port_dev);
3515 /* Skip the initial Clear-Suspend step for a remote wakeup */
3516 status = hub_port_status(hub, port1, &portstatus, &portchange);
3517 if (status == 0 && !port_is_suspended(hub, portstatus)) {
3518 if (portchange & USB_PORT_STAT_C_SUSPEND)
3519 pm_wakeup_event(&udev->dev, 0);
3520 goto SuspendCleared;
3523 /* see 7.1.7.7; affects power usage, but not budgeting */
3524 if (hub_is_superspeed(hub->hdev))
3525 status = hub_set_port_link_state(hub, port1, USB_SS_PORT_LS_U0);
3526 else
3527 status = usb_clear_port_feature(hub->hdev,
3528 port1, USB_PORT_FEAT_SUSPEND);
3529 if (status) {
3530 dev_dbg(&port_dev->dev, "can't resume, status %d\n", status);
3531 } else {
3532 /* drive resume for USB_RESUME_TIMEOUT msec */
3533 dev_dbg(&udev->dev, "usb %sresume\n",
3534 (PMSG_IS_AUTO(msg) ? "auto-" : ""));
3535 msleep(USB_RESUME_TIMEOUT);
3537 /* Virtual root hubs can trigger on GET_PORT_STATUS to
3538 * stop resume signaling. Then finish the resume
3539 * sequence.
3541 status = hub_port_status(hub, port1, &portstatus, &portchange);
3543 /* TRSMRCY = 10 msec */
3544 msleep(10);
3547 SuspendCleared:
3548 if (status == 0) {
3549 udev->port_is_suspended = 0;
3550 if (hub_is_superspeed(hub->hdev)) {
3551 if (portchange & USB_PORT_STAT_C_LINK_STATE)
3552 usb_clear_port_feature(hub->hdev, port1,
3553 USB_PORT_FEAT_C_PORT_LINK_STATE);
3554 } else {
3555 if (portchange & USB_PORT_STAT_C_SUSPEND)
3556 usb_clear_port_feature(hub->hdev, port1,
3557 USB_PORT_FEAT_C_SUSPEND);
3561 if (udev->persist_enabled)
3562 status = wait_for_connected(udev, hub, &port1, &portchange,
3563 &portstatus);
3565 status = check_port_resume_type(udev,
3566 hub, port1, status, portchange, portstatus);
3567 if (status == 0)
3568 status = finish_port_resume(udev);
3569 if (status < 0) {
3570 dev_dbg(&udev->dev, "can't resume, status %d\n", status);
3571 hub_port_logical_disconnect(hub, port1);
3572 } else {
3573 /* Try to enable USB2 hardware LPM */
3574 usb_enable_usb2_hardware_lpm(udev);
3576 /* Try to enable USB3 LTM */
3577 usb_enable_ltm(udev);
3580 usb_unlock_port(port_dev);
3582 return status;
3585 int usb_remote_wakeup(struct usb_device *udev)
3587 int status = 0;
3589 usb_lock_device(udev);
3590 if (udev->state == USB_STATE_SUSPENDED) {
3591 dev_dbg(&udev->dev, "usb %sresume\n", "wakeup-");
3592 status = usb_autoresume_device(udev);
3593 if (status == 0) {
3594 /* Let the drivers do their thing, then... */
3595 usb_autosuspend_device(udev);
3598 usb_unlock_device(udev);
3599 return status;
3602 /* Returns 1 if there was a remote wakeup and a connect status change. */
3603 static int hub_handle_remote_wakeup(struct usb_hub *hub, unsigned int port,
3604 u16 portstatus, u16 portchange)
3605 __must_hold(&port_dev->status_lock)
3607 struct usb_port *port_dev = hub->ports[port - 1];
3608 struct usb_device *hdev;
3609 struct usb_device *udev;
3610 int connect_change = 0;
3611 u16 link_state;
3612 int ret;
3614 hdev = hub->hdev;
3615 udev = port_dev->child;
3616 if (!hub_is_superspeed(hdev)) {
3617 if (!(portchange & USB_PORT_STAT_C_SUSPEND))
3618 return 0;
3619 usb_clear_port_feature(hdev, port, USB_PORT_FEAT_C_SUSPEND);
3620 } else {
3621 link_state = portstatus & USB_PORT_STAT_LINK_STATE;
3622 if (!udev || udev->state != USB_STATE_SUSPENDED ||
3623 (link_state != USB_SS_PORT_LS_U0 &&
3624 link_state != USB_SS_PORT_LS_U1 &&
3625 link_state != USB_SS_PORT_LS_U2))
3626 return 0;
3629 if (udev) {
3630 /* TRSMRCY = 10 msec */
3631 msleep(10);
3633 usb_unlock_port(port_dev);
3634 ret = usb_remote_wakeup(udev);
3635 usb_lock_port(port_dev);
3636 if (ret < 0)
3637 connect_change = 1;
3638 } else {
3639 ret = -ENODEV;
3640 hub_port_disable(hub, port, 1);
3642 dev_dbg(&port_dev->dev, "resume, status %d\n", ret);
3643 return connect_change;
3646 static int check_ports_changed(struct usb_hub *hub)
3648 int port1;
3650 for (port1 = 1; port1 <= hub->hdev->maxchild; ++port1) {
3651 u16 portstatus, portchange;
3652 int status;
3654 status = hub_port_status(hub, port1, &portstatus, &portchange);
3655 if (!status && portchange)
3656 return 1;
3658 return 0;
3661 static int hub_suspend(struct usb_interface *intf, pm_message_t msg)
3663 struct usb_hub *hub = usb_get_intfdata(intf);
3664 struct usb_device *hdev = hub->hdev;
3665 unsigned port1;
3666 int status;
3669 * Warn if children aren't already suspended.
3670 * Also, add up the number of wakeup-enabled descendants.
3672 hub->wakeup_enabled_descendants = 0;
3673 for (port1 = 1; port1 <= hdev->maxchild; port1++) {
3674 struct usb_port *port_dev = hub->ports[port1 - 1];
3675 struct usb_device *udev = port_dev->child;
3677 if (udev && udev->can_submit) {
3678 dev_warn(&port_dev->dev, "device %s not suspended yet\n",
3679 dev_name(&udev->dev));
3680 if (PMSG_IS_AUTO(msg))
3681 return -EBUSY;
3683 if (udev)
3684 hub->wakeup_enabled_descendants +=
3685 wakeup_enabled_descendants(udev);
3688 if (hdev->do_remote_wakeup && hub->quirk_check_port_auto_suspend) {
3689 /* check if there are changes pending on hub ports */
3690 if (check_ports_changed(hub)) {
3691 if (PMSG_IS_AUTO(msg))
3692 return -EBUSY;
3693 pm_wakeup_event(&hdev->dev, 2000);
3697 if (hub_is_superspeed(hdev) && hdev->do_remote_wakeup) {
3698 /* Enable hub to send remote wakeup for all ports. */
3699 for (port1 = 1; port1 <= hdev->maxchild; port1++) {
3700 status = set_port_feature(hdev,
3701 port1 |
3702 USB_PORT_FEAT_REMOTE_WAKE_CONNECT |
3703 USB_PORT_FEAT_REMOTE_WAKE_DISCONNECT |
3704 USB_PORT_FEAT_REMOTE_WAKE_OVER_CURRENT,
3705 USB_PORT_FEAT_REMOTE_WAKE_MASK);
3709 dev_dbg(&intf->dev, "%s\n", __func__);
3711 /* stop hub_wq and related activity */
3712 hub_quiesce(hub, HUB_SUSPEND);
3713 return 0;
3716 /* Report wakeup requests from the ports of a resuming root hub */
3717 static void report_wakeup_requests(struct usb_hub *hub)
3719 struct usb_device *hdev = hub->hdev;
3720 struct usb_device *udev;
3721 struct usb_hcd *hcd;
3722 unsigned long resuming_ports;
3723 int i;
3725 if (hdev->parent)
3726 return; /* Not a root hub */
3728 hcd = bus_to_hcd(hdev->bus);
3729 if (hcd->driver->get_resuming_ports) {
3732 * The get_resuming_ports() method returns a bitmap (origin 0)
3733 * of ports which have started wakeup signaling but have not
3734 * yet finished resuming. During system resume we will
3735 * resume all the enabled ports, regardless of any wakeup
3736 * signals, which means the wakeup requests would be lost.
3737 * To prevent this, report them to the PM core here.
3739 resuming_ports = hcd->driver->get_resuming_ports(hcd);
3740 for (i = 0; i < hdev->maxchild; ++i) {
3741 if (test_bit(i, &resuming_ports)) {
3742 udev = hub->ports[i]->child;
3743 if (udev)
3744 pm_wakeup_event(&udev->dev, 0);
3750 static int hub_resume(struct usb_interface *intf)
3752 struct usb_hub *hub = usb_get_intfdata(intf);
3754 dev_dbg(&intf->dev, "%s\n", __func__);
3755 hub_activate(hub, HUB_RESUME);
3758 * This should be called only for system resume, not runtime resume.
3759 * We can't tell the difference here, so some wakeup requests will be
3760 * reported at the wrong time or more than once. This shouldn't
3761 * matter much, so long as they do get reported.
3763 report_wakeup_requests(hub);
3764 return 0;
3767 static int hub_reset_resume(struct usb_interface *intf)
3769 struct usb_hub *hub = usb_get_intfdata(intf);
3771 dev_dbg(&intf->dev, "%s\n", __func__);
3772 hub_activate(hub, HUB_RESET_RESUME);
3773 return 0;
3777 * usb_root_hub_lost_power - called by HCD if the root hub lost Vbus power
3778 * @rhdev: struct usb_device for the root hub
3780 * The USB host controller driver calls this function when its root hub
3781 * is resumed and Vbus power has been interrupted or the controller
3782 * has been reset. The routine marks @rhdev as having lost power.
3783 * When the hub driver is resumed it will take notice and carry out
3784 * power-session recovery for all the "USB-PERSIST"-enabled child devices;
3785 * the others will be disconnected.
3787 void usb_root_hub_lost_power(struct usb_device *rhdev)
3789 dev_notice(&rhdev->dev, "root hub lost power or was reset\n");
3790 rhdev->reset_resume = 1;
3792 EXPORT_SYMBOL_GPL(usb_root_hub_lost_power);
3794 static const char * const usb3_lpm_names[] = {
3795 "U0",
3796 "U1",
3797 "U2",
3798 "U3",
3802 * Send a Set SEL control transfer to the device, prior to enabling
3803 * device-initiated U1 or U2. This lets the device know the exit latencies from
3804 * the time the device initiates a U1 or U2 exit, to the time it will receive a
3805 * packet from the host.
3807 * This function will fail if the SEL or PEL values for udev are greater than
3808 * the maximum allowed values for the link state to be enabled.
3810 static int usb_req_set_sel(struct usb_device *udev, enum usb3_link_state state)
3812 struct usb_set_sel_req *sel_values;
3813 unsigned long long u1_sel;
3814 unsigned long long u1_pel;
3815 unsigned long long u2_sel;
3816 unsigned long long u2_pel;
3817 int ret;
3819 if (udev->state != USB_STATE_CONFIGURED)
3820 return 0;
3822 /* Convert SEL and PEL stored in ns to us */
3823 u1_sel = DIV_ROUND_UP(udev->u1_params.sel, 1000);
3824 u1_pel = DIV_ROUND_UP(udev->u1_params.pel, 1000);
3825 u2_sel = DIV_ROUND_UP(udev->u2_params.sel, 1000);
3826 u2_pel = DIV_ROUND_UP(udev->u2_params.pel, 1000);
3829 * Make sure that the calculated SEL and PEL values for the link
3830 * state we're enabling aren't bigger than the max SEL/PEL
3831 * value that will fit in the SET SEL control transfer.
3832 * Otherwise the device would get an incorrect idea of the exit
3833 * latency for the link state, and could start a device-initiated
3834 * U1/U2 when the exit latencies are too high.
3836 if ((state == USB3_LPM_U1 &&
3837 (u1_sel > USB3_LPM_MAX_U1_SEL_PEL ||
3838 u1_pel > USB3_LPM_MAX_U1_SEL_PEL)) ||
3839 (state == USB3_LPM_U2 &&
3840 (u2_sel > USB3_LPM_MAX_U2_SEL_PEL ||
3841 u2_pel > USB3_LPM_MAX_U2_SEL_PEL))) {
3842 dev_dbg(&udev->dev, "Device-initiated %s disabled due to long SEL %llu us or PEL %llu us\n",
3843 usb3_lpm_names[state], u1_sel, u1_pel);
3844 return -EINVAL;
3848 * If we're enabling device-initiated LPM for one link state,
3849 * but the other link state has a too high SEL or PEL value,
3850 * just set those values to the max in the Set SEL request.
3852 if (u1_sel > USB3_LPM_MAX_U1_SEL_PEL)
3853 u1_sel = USB3_LPM_MAX_U1_SEL_PEL;
3855 if (u1_pel > USB3_LPM_MAX_U1_SEL_PEL)
3856 u1_pel = USB3_LPM_MAX_U1_SEL_PEL;
3858 if (u2_sel > USB3_LPM_MAX_U2_SEL_PEL)
3859 u2_sel = USB3_LPM_MAX_U2_SEL_PEL;
3861 if (u2_pel > USB3_LPM_MAX_U2_SEL_PEL)
3862 u2_pel = USB3_LPM_MAX_U2_SEL_PEL;
3865 * usb_enable_lpm() can be called as part of a failed device reset,
3866 * which may be initiated by an error path of a mass storage driver.
3867 * Therefore, use GFP_NOIO.
3869 sel_values = kmalloc(sizeof *(sel_values), GFP_NOIO);
3870 if (!sel_values)
3871 return -ENOMEM;
3873 sel_values->u1_sel = u1_sel;
3874 sel_values->u1_pel = u1_pel;
3875 sel_values->u2_sel = cpu_to_le16(u2_sel);
3876 sel_values->u2_pel = cpu_to_le16(u2_pel);
3878 ret = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
3879 USB_REQ_SET_SEL,
3880 USB_RECIP_DEVICE,
3881 0, 0,
3882 sel_values, sizeof *(sel_values),
3883 USB_CTRL_SET_TIMEOUT);
3884 kfree(sel_values);
3885 return ret;
3889 * Enable or disable device-initiated U1 or U2 transitions.
3891 static int usb_set_device_initiated_lpm(struct usb_device *udev,
3892 enum usb3_link_state state, bool enable)
3894 int ret;
3895 int feature;
3897 switch (state) {
3898 case USB3_LPM_U1:
3899 feature = USB_DEVICE_U1_ENABLE;
3900 break;
3901 case USB3_LPM_U2:
3902 feature = USB_DEVICE_U2_ENABLE;
3903 break;
3904 default:
3905 dev_warn(&udev->dev, "%s: Can't %s non-U1 or U2 state.\n",
3906 __func__, enable ? "enable" : "disable");
3907 return -EINVAL;
3910 if (udev->state != USB_STATE_CONFIGURED) {
3911 dev_dbg(&udev->dev, "%s: Can't %s %s state "
3912 "for unconfigured device.\n",
3913 __func__, enable ? "enable" : "disable",
3914 usb3_lpm_names[state]);
3915 return 0;
3918 if (enable) {
3920 * Now send the control transfer to enable device-initiated LPM
3921 * for either U1 or U2.
3923 ret = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
3924 USB_REQ_SET_FEATURE,
3925 USB_RECIP_DEVICE,
3926 feature,
3927 0, NULL, 0,
3928 USB_CTRL_SET_TIMEOUT);
3929 } else {
3930 ret = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
3931 USB_REQ_CLEAR_FEATURE,
3932 USB_RECIP_DEVICE,
3933 feature,
3934 0, NULL, 0,
3935 USB_CTRL_SET_TIMEOUT);
3937 if (ret < 0) {
3938 dev_warn(&udev->dev, "%s of device-initiated %s failed.\n",
3939 enable ? "Enable" : "Disable",
3940 usb3_lpm_names[state]);
3941 return -EBUSY;
3943 return 0;
3946 static int usb_set_lpm_timeout(struct usb_device *udev,
3947 enum usb3_link_state state, int timeout)
3949 int ret;
3950 int feature;
3952 switch (state) {
3953 case USB3_LPM_U1:
3954 feature = USB_PORT_FEAT_U1_TIMEOUT;
3955 break;
3956 case USB3_LPM_U2:
3957 feature = USB_PORT_FEAT_U2_TIMEOUT;
3958 break;
3959 default:
3960 dev_warn(&udev->dev, "%s: Can't set timeout for non-U1 or U2 state.\n",
3961 __func__);
3962 return -EINVAL;
3965 if (state == USB3_LPM_U1 && timeout > USB3_LPM_U1_MAX_TIMEOUT &&
3966 timeout != USB3_LPM_DEVICE_INITIATED) {
3967 dev_warn(&udev->dev, "Failed to set %s timeout to 0x%x, "
3968 "which is a reserved value.\n",
3969 usb3_lpm_names[state], timeout);
3970 return -EINVAL;
3973 ret = set_port_feature(udev->parent,
3974 USB_PORT_LPM_TIMEOUT(timeout) | udev->portnum,
3975 feature);
3976 if (ret < 0) {
3977 dev_warn(&udev->dev, "Failed to set %s timeout to 0x%x,"
3978 "error code %i\n", usb3_lpm_names[state],
3979 timeout, ret);
3980 return -EBUSY;
3982 if (state == USB3_LPM_U1)
3983 udev->u1_params.timeout = timeout;
3984 else
3985 udev->u2_params.timeout = timeout;
3986 return 0;
3990 * Enable the hub-initiated U1/U2 idle timeouts, and enable device-initiated
3991 * U1/U2 entry.
3993 * We will attempt to enable U1 or U2, but there are no guarantees that the
3994 * control transfers to set the hub timeout or enable device-initiated U1/U2
3995 * will be successful.
3997 * If the control transfer to enable device-initiated U1/U2 entry fails, then
3998 * hub-initiated U1/U2 will be disabled.
4000 * If we cannot set the parent hub U1/U2 timeout, we attempt to let the xHCI
4001 * driver know about it. If that call fails, it should be harmless, and just
4002 * take up more slightly more bus bandwidth for unnecessary U1/U2 exit latency.
4004 static void usb_enable_link_state(struct usb_hcd *hcd, struct usb_device *udev,
4005 enum usb3_link_state state)
4007 int timeout, ret;
4008 __u8 u1_mel = udev->bos->ss_cap->bU1devExitLat;
4009 __le16 u2_mel = udev->bos->ss_cap->bU2DevExitLat;
4011 /* If the device says it doesn't have *any* exit latency to come out of
4012 * U1 or U2, it's probably lying. Assume it doesn't implement that link
4013 * state.
4015 if ((state == USB3_LPM_U1 && u1_mel == 0) ||
4016 (state == USB3_LPM_U2 && u2_mel == 0))
4017 return;
4020 * First, let the device know about the exit latencies
4021 * associated with the link state we're about to enable.
4023 ret = usb_req_set_sel(udev, state);
4024 if (ret < 0) {
4025 dev_warn(&udev->dev, "Set SEL for device-initiated %s failed.\n",
4026 usb3_lpm_names[state]);
4027 return;
4030 /* We allow the host controller to set the U1/U2 timeout internally
4031 * first, so that it can change its schedule to account for the
4032 * additional latency to send data to a device in a lower power
4033 * link state.
4035 timeout = hcd->driver->enable_usb3_lpm_timeout(hcd, udev, state);
4037 /* xHCI host controller doesn't want to enable this LPM state. */
4038 if (timeout == 0)
4039 return;
4041 if (timeout < 0) {
4042 dev_warn(&udev->dev, "Could not enable %s link state, "
4043 "xHCI error %i.\n", usb3_lpm_names[state],
4044 timeout);
4045 return;
4048 if (usb_set_lpm_timeout(udev, state, timeout)) {
4049 /* If we can't set the parent hub U1/U2 timeout,
4050 * device-initiated LPM won't be allowed either, so let the xHCI
4051 * host know that this link state won't be enabled.
4053 hcd->driver->disable_usb3_lpm_timeout(hcd, udev, state);
4054 return;
4057 /* Only a configured device will accept the Set Feature
4058 * U1/U2_ENABLE
4060 if (udev->actconfig &&
4061 usb_set_device_initiated_lpm(udev, state, true) == 0) {
4062 if (state == USB3_LPM_U1)
4063 udev->usb3_lpm_u1_enabled = 1;
4064 else if (state == USB3_LPM_U2)
4065 udev->usb3_lpm_u2_enabled = 1;
4066 } else {
4067 /* Don't request U1/U2 entry if the device
4068 * cannot transition to U1/U2.
4070 usb_set_lpm_timeout(udev, state, 0);
4071 hcd->driver->disable_usb3_lpm_timeout(hcd, udev, state);
4076 * Disable the hub-initiated U1/U2 idle timeouts, and disable device-initiated
4077 * U1/U2 entry.
4079 * If this function returns -EBUSY, the parent hub will still allow U1/U2 entry.
4080 * If zero is returned, the parent will not allow the link to go into U1/U2.
4082 * If zero is returned, device-initiated U1/U2 entry may still be enabled, but
4083 * it won't have an effect on the bus link state because the parent hub will
4084 * still disallow device-initiated U1/U2 entry.
4086 * If zero is returned, the xHCI host controller may still think U1/U2 entry is
4087 * possible. The result will be slightly more bus bandwidth will be taken up
4088 * (to account for U1/U2 exit latency), but it should be harmless.
4090 static int usb_disable_link_state(struct usb_hcd *hcd, struct usb_device *udev,
4091 enum usb3_link_state state)
4093 switch (state) {
4094 case USB3_LPM_U1:
4095 case USB3_LPM_U2:
4096 break;
4097 default:
4098 dev_warn(&udev->dev, "%s: Can't disable non-U1 or U2 state.\n",
4099 __func__);
4100 return -EINVAL;
4103 if (usb_set_lpm_timeout(udev, state, 0))
4104 return -EBUSY;
4106 usb_set_device_initiated_lpm(udev, state, false);
4108 if (hcd->driver->disable_usb3_lpm_timeout(hcd, udev, state))
4109 dev_warn(&udev->dev, "Could not disable xHCI %s timeout, "
4110 "bus schedule bandwidth may be impacted.\n",
4111 usb3_lpm_names[state]);
4113 /* As soon as usb_set_lpm_timeout(0) return 0, hub initiated LPM
4114 * is disabled. Hub will disallows link to enter U1/U2 as well,
4115 * even device is initiating LPM. Hence LPM is disabled if hub LPM
4116 * timeout set to 0, no matter device-initiated LPM is disabled or
4117 * not.
4119 if (state == USB3_LPM_U1)
4120 udev->usb3_lpm_u1_enabled = 0;
4121 else if (state == USB3_LPM_U2)
4122 udev->usb3_lpm_u2_enabled = 0;
4124 return 0;
4128 * Disable hub-initiated and device-initiated U1 and U2 entry.
4129 * Caller must own the bandwidth_mutex.
4131 * This will call usb_enable_lpm() on failure, which will decrement
4132 * lpm_disable_count, and will re-enable LPM if lpm_disable_count reaches zero.
4134 int usb_disable_lpm(struct usb_device *udev)
4136 struct usb_hcd *hcd;
4138 if (!udev || !udev->parent ||
4139 udev->speed < USB_SPEED_SUPER ||
4140 !udev->lpm_capable ||
4141 udev->state < USB_STATE_DEFAULT)
4142 return 0;
4144 hcd = bus_to_hcd(udev->bus);
4145 if (!hcd || !hcd->driver->disable_usb3_lpm_timeout)
4146 return 0;
4148 udev->lpm_disable_count++;
4149 if ((udev->u1_params.timeout == 0 && udev->u2_params.timeout == 0))
4150 return 0;
4152 /* If LPM is enabled, attempt to disable it. */
4153 if (usb_disable_link_state(hcd, udev, USB3_LPM_U1))
4154 goto enable_lpm;
4155 if (usb_disable_link_state(hcd, udev, USB3_LPM_U2))
4156 goto enable_lpm;
4158 return 0;
4160 enable_lpm:
4161 usb_enable_lpm(udev);
4162 return -EBUSY;
4164 EXPORT_SYMBOL_GPL(usb_disable_lpm);
4166 /* Grab the bandwidth_mutex before calling usb_disable_lpm() */
4167 int usb_unlocked_disable_lpm(struct usb_device *udev)
4169 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
4170 int ret;
4172 if (!hcd)
4173 return -EINVAL;
4175 mutex_lock(hcd->bandwidth_mutex);
4176 ret = usb_disable_lpm(udev);
4177 mutex_unlock(hcd->bandwidth_mutex);
4179 return ret;
4181 EXPORT_SYMBOL_GPL(usb_unlocked_disable_lpm);
4184 * Attempt to enable device-initiated and hub-initiated U1 and U2 entry. The
4185 * xHCI host policy may prevent U1 or U2 from being enabled.
4187 * Other callers may have disabled link PM, so U1 and U2 entry will be disabled
4188 * until the lpm_disable_count drops to zero. Caller must own the
4189 * bandwidth_mutex.
4191 void usb_enable_lpm(struct usb_device *udev)
4193 struct usb_hcd *hcd;
4194 struct usb_hub *hub;
4195 struct usb_port *port_dev;
4197 if (!udev || !udev->parent ||
4198 udev->speed < USB_SPEED_SUPER ||
4199 !udev->lpm_capable ||
4200 udev->state < USB_STATE_DEFAULT)
4201 return;
4203 udev->lpm_disable_count--;
4204 hcd = bus_to_hcd(udev->bus);
4205 /* Double check that we can both enable and disable LPM.
4206 * Device must be configured to accept set feature U1/U2 timeout.
4208 if (!hcd || !hcd->driver->enable_usb3_lpm_timeout ||
4209 !hcd->driver->disable_usb3_lpm_timeout)
4210 return;
4212 if (udev->lpm_disable_count > 0)
4213 return;
4215 hub = usb_hub_to_struct_hub(udev->parent);
4216 if (!hub)
4217 return;
4219 port_dev = hub->ports[udev->portnum - 1];
4221 if (port_dev->usb3_lpm_u1_permit)
4222 usb_enable_link_state(hcd, udev, USB3_LPM_U1);
4224 if (port_dev->usb3_lpm_u2_permit)
4225 usb_enable_link_state(hcd, udev, USB3_LPM_U2);
4227 EXPORT_SYMBOL_GPL(usb_enable_lpm);
4229 /* Grab the bandwidth_mutex before calling usb_enable_lpm() */
4230 void usb_unlocked_enable_lpm(struct usb_device *udev)
4232 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
4234 if (!hcd)
4235 return;
4237 mutex_lock(hcd->bandwidth_mutex);
4238 usb_enable_lpm(udev);
4239 mutex_unlock(hcd->bandwidth_mutex);
4241 EXPORT_SYMBOL_GPL(usb_unlocked_enable_lpm);
4243 /* usb3 devices use U3 for disabled, make sure remote wakeup is disabled */
4244 static void hub_usb3_port_prepare_disable(struct usb_hub *hub,
4245 struct usb_port *port_dev)
4247 struct usb_device *udev = port_dev->child;
4248 int ret;
4250 if (udev && udev->port_is_suspended && udev->do_remote_wakeup) {
4251 ret = hub_set_port_link_state(hub, port_dev->portnum,
4252 USB_SS_PORT_LS_U0);
4253 if (!ret) {
4254 msleep(USB_RESUME_TIMEOUT);
4255 ret = usb_disable_remote_wakeup(udev);
4257 if (ret)
4258 dev_warn(&udev->dev,
4259 "Port disable: can't disable remote wake\n");
4260 udev->do_remote_wakeup = 0;
4264 #else /* CONFIG_PM */
4266 #define hub_suspend NULL
4267 #define hub_resume NULL
4268 #define hub_reset_resume NULL
4270 static inline void hub_usb3_port_prepare_disable(struct usb_hub *hub,
4271 struct usb_port *port_dev) { }
4273 int usb_disable_lpm(struct usb_device *udev)
4275 return 0;
4277 EXPORT_SYMBOL_GPL(usb_disable_lpm);
4279 void usb_enable_lpm(struct usb_device *udev) { }
4280 EXPORT_SYMBOL_GPL(usb_enable_lpm);
4282 int usb_unlocked_disable_lpm(struct usb_device *udev)
4284 return 0;
4286 EXPORT_SYMBOL_GPL(usb_unlocked_disable_lpm);
4288 void usb_unlocked_enable_lpm(struct usb_device *udev) { }
4289 EXPORT_SYMBOL_GPL(usb_unlocked_enable_lpm);
4291 int usb_disable_ltm(struct usb_device *udev)
4293 return 0;
4295 EXPORT_SYMBOL_GPL(usb_disable_ltm);
4297 void usb_enable_ltm(struct usb_device *udev) { }
4298 EXPORT_SYMBOL_GPL(usb_enable_ltm);
4300 static int hub_handle_remote_wakeup(struct usb_hub *hub, unsigned int port,
4301 u16 portstatus, u16 portchange)
4303 return 0;
4306 #endif /* CONFIG_PM */
4309 * USB-3 does not have a similar link state as USB-2 that will avoid negotiating
4310 * a connection with a plugged-in cable but will signal the host when the cable
4311 * is unplugged. Disable remote wake and set link state to U3 for USB-3 devices
4313 static int hub_port_disable(struct usb_hub *hub, int port1, int set_state)
4315 struct usb_port *port_dev = hub->ports[port1 - 1];
4316 struct usb_device *hdev = hub->hdev;
4317 int ret = 0;
4319 if (!hub->error) {
4320 if (hub_is_superspeed(hub->hdev)) {
4321 hub_usb3_port_prepare_disable(hub, port_dev);
4322 ret = hub_set_port_link_state(hub, port_dev->portnum,
4323 USB_SS_PORT_LS_U3);
4324 } else {
4325 ret = usb_clear_port_feature(hdev, port1,
4326 USB_PORT_FEAT_ENABLE);
4329 if (port_dev->child && set_state)
4330 usb_set_device_state(port_dev->child, USB_STATE_NOTATTACHED);
4331 if (ret && ret != -ENODEV)
4332 dev_err(&port_dev->dev, "cannot disable (err = %d)\n", ret);
4333 return ret;
4337 * usb_port_disable - disable a usb device's upstream port
4338 * @udev: device to disable
4339 * Context: @udev locked, must be able to sleep.
4341 * Disables a USB device that isn't in active use.
4343 int usb_port_disable(struct usb_device *udev)
4345 struct usb_hub *hub = usb_hub_to_struct_hub(udev->parent);
4347 return hub_port_disable(hub, udev->portnum, 0);
4350 /* USB 2.0 spec, 7.1.7.3 / fig 7-29:
4352 * Between connect detection and reset signaling there must be a delay
4353 * of 100ms at least for debounce and power-settling. The corresponding
4354 * timer shall restart whenever the downstream port detects a disconnect.
4356 * Apparently there are some bluetooth and irda-dongles and a number of
4357 * low-speed devices for which this debounce period may last over a second.
4358 * Not covered by the spec - but easy to deal with.
4360 * This implementation uses a 1500ms total debounce timeout; if the
4361 * connection isn't stable by then it returns -ETIMEDOUT. It checks
4362 * every 25ms for transient disconnects. When the port status has been
4363 * unchanged for 100ms it returns the port status.
4365 int hub_port_debounce(struct usb_hub *hub, int port1, bool must_be_connected)
4367 int ret;
4368 u16 portchange, portstatus;
4369 unsigned connection = 0xffff;
4370 int total_time, stable_time = 0;
4371 struct usb_port *port_dev = hub->ports[port1 - 1];
4373 for (total_time = 0; ; total_time += HUB_DEBOUNCE_STEP) {
4374 ret = hub_port_status(hub, port1, &portstatus, &portchange);
4375 if (ret < 0)
4376 return ret;
4378 if (!(portchange & USB_PORT_STAT_C_CONNECTION) &&
4379 (portstatus & USB_PORT_STAT_CONNECTION) == connection) {
4380 if (!must_be_connected ||
4381 (connection == USB_PORT_STAT_CONNECTION))
4382 stable_time += HUB_DEBOUNCE_STEP;
4383 if (stable_time >= HUB_DEBOUNCE_STABLE)
4384 break;
4385 } else {
4386 stable_time = 0;
4387 connection = portstatus & USB_PORT_STAT_CONNECTION;
4390 if (portchange & USB_PORT_STAT_C_CONNECTION) {
4391 usb_clear_port_feature(hub->hdev, port1,
4392 USB_PORT_FEAT_C_CONNECTION);
4395 if (total_time >= HUB_DEBOUNCE_TIMEOUT)
4396 break;
4397 msleep(HUB_DEBOUNCE_STEP);
4400 dev_dbg(&port_dev->dev, "debounce total %dms stable %dms status 0x%x\n",
4401 total_time, stable_time, portstatus);
4403 if (stable_time < HUB_DEBOUNCE_STABLE)
4404 return -ETIMEDOUT;
4405 return portstatus;
4408 void usb_ep0_reinit(struct usb_device *udev)
4410 usb_disable_endpoint(udev, 0 + USB_DIR_IN, true);
4411 usb_disable_endpoint(udev, 0 + USB_DIR_OUT, true);
4412 usb_enable_endpoint(udev, &udev->ep0, true);
4414 EXPORT_SYMBOL_GPL(usb_ep0_reinit);
4416 #define usb_sndaddr0pipe() (PIPE_CONTROL << 30)
4417 #define usb_rcvaddr0pipe() ((PIPE_CONTROL << 30) | USB_DIR_IN)
4419 static int hub_set_address(struct usb_device *udev, int devnum)
4421 int retval;
4422 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
4425 * The host controller will choose the device address,
4426 * instead of the core having chosen it earlier
4428 if (!hcd->driver->address_device && devnum <= 1)
4429 return -EINVAL;
4430 if (udev->state == USB_STATE_ADDRESS)
4431 return 0;
4432 if (udev->state != USB_STATE_DEFAULT)
4433 return -EINVAL;
4434 if (hcd->driver->address_device)
4435 retval = hcd->driver->address_device(hcd, udev);
4436 else
4437 retval = usb_control_msg(udev, usb_sndaddr0pipe(),
4438 USB_REQ_SET_ADDRESS, 0, devnum, 0,
4439 NULL, 0, USB_CTRL_SET_TIMEOUT);
4440 if (retval == 0) {
4441 update_devnum(udev, devnum);
4442 /* Device now using proper address. */
4443 usb_set_device_state(udev, USB_STATE_ADDRESS);
4444 usb_ep0_reinit(udev);
4446 return retval;
4450 * There are reports of USB 3.0 devices that say they support USB 2.0 Link PM
4451 * when they're plugged into a USB 2.0 port, but they don't work when LPM is
4452 * enabled.
4454 * Only enable USB 2.0 Link PM if the port is internal (hardwired), or the
4455 * device says it supports the new USB 2.0 Link PM errata by setting the BESL
4456 * support bit in the BOS descriptor.
4458 static void hub_set_initial_usb2_lpm_policy(struct usb_device *udev)
4460 struct usb_hub *hub = usb_hub_to_struct_hub(udev->parent);
4461 int connect_type = USB_PORT_CONNECT_TYPE_UNKNOWN;
4463 if (!udev->usb2_hw_lpm_capable || !udev->bos)
4464 return;
4466 if (hub)
4467 connect_type = hub->ports[udev->portnum - 1]->connect_type;
4469 if ((udev->bos->ext_cap->bmAttributes & cpu_to_le32(USB_BESL_SUPPORT)) ||
4470 connect_type == USB_PORT_CONNECT_TYPE_HARD_WIRED) {
4471 udev->usb2_hw_lpm_allowed = 1;
4472 usb_enable_usb2_hardware_lpm(udev);
4476 static int hub_enable_device(struct usb_device *udev)
4478 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
4480 if (!hcd->driver->enable_device)
4481 return 0;
4482 if (udev->state == USB_STATE_ADDRESS)
4483 return 0;
4484 if (udev->state != USB_STATE_DEFAULT)
4485 return -EINVAL;
4487 return hcd->driver->enable_device(hcd, udev);
4490 /* Reset device, (re)assign address, get device descriptor.
4491 * Device connection must be stable, no more debouncing needed.
4492 * Returns device in USB_STATE_ADDRESS, except on error.
4494 * If this is called for an already-existing device (as part of
4495 * usb_reset_and_verify_device), the caller must own the device lock and
4496 * the port lock. For a newly detected device that is not accessible
4497 * through any global pointers, it's not necessary to lock the device,
4498 * but it is still necessary to lock the port.
4500 static int
4501 hub_port_init(struct usb_hub *hub, struct usb_device *udev, int port1,
4502 int retry_counter)
4504 struct usb_device *hdev = hub->hdev;
4505 struct usb_hcd *hcd = bus_to_hcd(hdev->bus);
4506 struct usb_port *port_dev = hub->ports[port1 - 1];
4507 int retries, operations, retval, i;
4508 unsigned delay = HUB_SHORT_RESET_TIME;
4509 enum usb_device_speed oldspeed = udev->speed;
4510 const char *speed;
4511 int devnum = udev->devnum;
4512 const char *driver_name;
4514 /* root hub ports have a slightly longer reset period
4515 * (from USB 2.0 spec, section 7.1.7.5)
4517 if (!hdev->parent) {
4518 delay = HUB_ROOT_RESET_TIME;
4519 if (port1 == hdev->bus->otg_port)
4520 hdev->bus->b_hnp_enable = 0;
4523 /* Some low speed devices have problems with the quick delay, so */
4524 /* be a bit pessimistic with those devices. RHbug #23670 */
4525 if (oldspeed == USB_SPEED_LOW)
4526 delay = HUB_LONG_RESET_TIME;
4528 mutex_lock(hcd->address0_mutex);
4530 /* Reset the device; full speed may morph to high speed */
4531 /* FIXME a USB 2.0 device may morph into SuperSpeed on reset. */
4532 retval = hub_port_reset(hub, port1, udev, delay, false);
4533 if (retval < 0) /* error or disconnect */
4534 goto fail;
4535 /* success, speed is known */
4537 retval = -ENODEV;
4539 /* Don't allow speed changes at reset, except usb 3.0 to faster */
4540 if (oldspeed != USB_SPEED_UNKNOWN && oldspeed != udev->speed &&
4541 !(oldspeed == USB_SPEED_SUPER && udev->speed > oldspeed)) {
4542 dev_dbg(&udev->dev, "device reset changed speed!\n");
4543 goto fail;
4545 oldspeed = udev->speed;
4547 /* USB 2.0 section 5.5.3 talks about ep0 maxpacket ...
4548 * it's fixed size except for full speed devices.
4549 * For Wireless USB devices, ep0 max packet is always 512 (tho
4550 * reported as 0xff in the device descriptor). WUSB1.0[4.8.1].
4552 switch (udev->speed) {
4553 case USB_SPEED_SUPER_PLUS:
4554 case USB_SPEED_SUPER:
4555 case USB_SPEED_WIRELESS: /* fixed at 512 */
4556 udev->ep0.desc.wMaxPacketSize = cpu_to_le16(512);
4557 break;
4558 case USB_SPEED_HIGH: /* fixed at 64 */
4559 udev->ep0.desc.wMaxPacketSize = cpu_to_le16(64);
4560 break;
4561 case USB_SPEED_FULL: /* 8, 16, 32, or 64 */
4562 /* to determine the ep0 maxpacket size, try to read
4563 * the device descriptor to get bMaxPacketSize0 and
4564 * then correct our initial guess.
4566 udev->ep0.desc.wMaxPacketSize = cpu_to_le16(64);
4567 break;
4568 case USB_SPEED_LOW: /* fixed at 8 */
4569 udev->ep0.desc.wMaxPacketSize = cpu_to_le16(8);
4570 break;
4571 default:
4572 goto fail;
4575 if (udev->speed == USB_SPEED_WIRELESS)
4576 speed = "variable speed Wireless";
4577 else
4578 speed = usb_speed_string(udev->speed);
4581 * The controller driver may be NULL if the controller device
4582 * is the middle device between platform device and roothub.
4583 * This middle device may not need a device driver due to
4584 * all hardware control can be at platform device driver, this
4585 * platform device is usually a dual-role USB controller device.
4587 if (udev->bus->controller->driver)
4588 driver_name = udev->bus->controller->driver->name;
4589 else
4590 driver_name = udev->bus->sysdev->driver->name;
4592 if (udev->speed < USB_SPEED_SUPER)
4593 dev_info(&udev->dev,
4594 "%s %s USB device number %d using %s\n",
4595 (udev->config) ? "reset" : "new", speed,
4596 devnum, driver_name);
4598 /* Set up TT records, if needed */
4599 if (hdev->tt) {
4600 udev->tt = hdev->tt;
4601 udev->ttport = hdev->ttport;
4602 } else if (udev->speed != USB_SPEED_HIGH
4603 && hdev->speed == USB_SPEED_HIGH) {
4604 if (!hub->tt.hub) {
4605 dev_err(&udev->dev, "parent hub has no TT\n");
4606 retval = -EINVAL;
4607 goto fail;
4609 udev->tt = &hub->tt;
4610 udev->ttport = port1;
4613 /* Why interleave GET_DESCRIPTOR and SET_ADDRESS this way?
4614 * Because device hardware and firmware is sometimes buggy in
4615 * this area, and this is how Linux has done it for ages.
4616 * Change it cautiously.
4618 * NOTE: If use_new_scheme() is true we will start by issuing
4619 * a 64-byte GET_DESCRIPTOR request. This is what Windows does,
4620 * so it may help with some non-standards-compliant devices.
4621 * Otherwise we start with SET_ADDRESS and then try to read the
4622 * first 8 bytes of the device descriptor to get the ep0 maxpacket
4623 * value.
4625 for (retries = 0; retries < GET_DESCRIPTOR_TRIES; (++retries, msleep(100))) {
4626 bool did_new_scheme = false;
4628 if (use_new_scheme(udev, retry_counter, port_dev)) {
4629 struct usb_device_descriptor *buf;
4630 int r = 0;
4632 did_new_scheme = true;
4633 retval = hub_enable_device(udev);
4634 if (retval < 0) {
4635 dev_err(&udev->dev,
4636 "hub failed to enable device, error %d\n",
4637 retval);
4638 goto fail;
4641 #define GET_DESCRIPTOR_BUFSIZE 64
4642 buf = kmalloc(GET_DESCRIPTOR_BUFSIZE, GFP_NOIO);
4643 if (!buf) {
4644 retval = -ENOMEM;
4645 continue;
4648 /* Retry on all errors; some devices are flakey.
4649 * 255 is for WUSB devices, we actually need to use
4650 * 512 (WUSB1.0[4.8.1]).
4652 for (operations = 0; operations < 3; ++operations) {
4653 buf->bMaxPacketSize0 = 0;
4654 r = usb_control_msg(udev, usb_rcvaddr0pipe(),
4655 USB_REQ_GET_DESCRIPTOR, USB_DIR_IN,
4656 USB_DT_DEVICE << 8, 0,
4657 buf, GET_DESCRIPTOR_BUFSIZE,
4658 initial_descriptor_timeout);
4659 switch (buf->bMaxPacketSize0) {
4660 case 8: case 16: case 32: case 64: case 255:
4661 if (buf->bDescriptorType ==
4662 USB_DT_DEVICE) {
4663 r = 0;
4664 break;
4666 /* FALL THROUGH */
4667 default:
4668 if (r == 0)
4669 r = -EPROTO;
4670 break;
4673 * Some devices time out if they are powered on
4674 * when already connected. They need a second
4675 * reset. But only on the first attempt,
4676 * lest we get into a time out/reset loop
4678 if (r == 0 || (r == -ETIMEDOUT &&
4679 retries == 0 &&
4680 udev->speed > USB_SPEED_FULL))
4681 break;
4683 udev->descriptor.bMaxPacketSize0 =
4684 buf->bMaxPacketSize0;
4685 kfree(buf);
4687 retval = hub_port_reset(hub, port1, udev, delay, false);
4688 if (retval < 0) /* error or disconnect */
4689 goto fail;
4690 if (oldspeed != udev->speed) {
4691 dev_dbg(&udev->dev,
4692 "device reset changed speed!\n");
4693 retval = -ENODEV;
4694 goto fail;
4696 if (r) {
4697 if (r != -ENODEV)
4698 dev_err(&udev->dev, "device descriptor read/64, error %d\n",
4700 retval = -EMSGSIZE;
4701 continue;
4703 #undef GET_DESCRIPTOR_BUFSIZE
4707 * If device is WUSB, we already assigned an
4708 * unauthorized address in the Connect Ack sequence;
4709 * authorization will assign the final address.
4711 if (udev->wusb == 0) {
4712 for (operations = 0; operations < SET_ADDRESS_TRIES; ++operations) {
4713 retval = hub_set_address(udev, devnum);
4714 if (retval >= 0)
4715 break;
4716 msleep(200);
4718 if (retval < 0) {
4719 if (retval != -ENODEV)
4720 dev_err(&udev->dev, "device not accepting address %d, error %d\n",
4721 devnum, retval);
4722 goto fail;
4724 if (udev->speed >= USB_SPEED_SUPER) {
4725 devnum = udev->devnum;
4726 dev_info(&udev->dev,
4727 "%s SuperSpeed%s%s USB device number %d using %s\n",
4728 (udev->config) ? "reset" : "new",
4729 (udev->speed == USB_SPEED_SUPER_PLUS) ?
4730 "Plus Gen 2" : " Gen 1",
4731 (udev->rx_lanes == 2 && udev->tx_lanes == 2) ?
4732 "x2" : "",
4733 devnum, driver_name);
4736 /* cope with hardware quirkiness:
4737 * - let SET_ADDRESS settle, some device hardware wants it
4738 * - read ep0 maxpacket even for high and low speed,
4740 msleep(10);
4741 /* use_new_scheme() checks the speed which may have
4742 * changed since the initial look so we cache the result
4743 * in did_new_scheme
4745 if (did_new_scheme)
4746 break;
4749 retval = usb_get_device_descriptor(udev, 8);
4750 if (retval < 8) {
4751 if (retval != -ENODEV)
4752 dev_err(&udev->dev,
4753 "device descriptor read/8, error %d\n",
4754 retval);
4755 if (retval >= 0)
4756 retval = -EMSGSIZE;
4757 } else {
4758 u32 delay;
4760 retval = 0;
4762 delay = udev->parent->hub_delay;
4763 udev->hub_delay = min_t(u32, delay,
4764 USB_TP_TRANSMISSION_DELAY_MAX);
4765 retval = usb_set_isoch_delay(udev);
4766 if (retval) {
4767 dev_dbg(&udev->dev,
4768 "Failed set isoch delay, error %d\n",
4769 retval);
4770 retval = 0;
4772 break;
4775 if (retval)
4776 goto fail;
4779 * Some superspeed devices have finished the link training process
4780 * and attached to a superspeed hub port, but the device descriptor
4781 * got from those devices show they aren't superspeed devices. Warm
4782 * reset the port attached by the devices can fix them.
4784 if ((udev->speed >= USB_SPEED_SUPER) &&
4785 (le16_to_cpu(udev->descriptor.bcdUSB) < 0x0300)) {
4786 dev_err(&udev->dev, "got a wrong device descriptor, "
4787 "warm reset device\n");
4788 hub_port_reset(hub, port1, udev,
4789 HUB_BH_RESET_TIME, true);
4790 retval = -EINVAL;
4791 goto fail;
4794 if (udev->descriptor.bMaxPacketSize0 == 0xff ||
4795 udev->speed >= USB_SPEED_SUPER)
4796 i = 512;
4797 else
4798 i = udev->descriptor.bMaxPacketSize0;
4799 if (usb_endpoint_maxp(&udev->ep0.desc) != i) {
4800 if (udev->speed == USB_SPEED_LOW ||
4801 !(i == 8 || i == 16 || i == 32 || i == 64)) {
4802 dev_err(&udev->dev, "Invalid ep0 maxpacket: %d\n", i);
4803 retval = -EMSGSIZE;
4804 goto fail;
4806 if (udev->speed == USB_SPEED_FULL)
4807 dev_dbg(&udev->dev, "ep0 maxpacket = %d\n", i);
4808 else
4809 dev_warn(&udev->dev, "Using ep0 maxpacket: %d\n", i);
4810 udev->ep0.desc.wMaxPacketSize = cpu_to_le16(i);
4811 usb_ep0_reinit(udev);
4814 retval = usb_get_device_descriptor(udev, USB_DT_DEVICE_SIZE);
4815 if (retval < (signed)sizeof(udev->descriptor)) {
4816 if (retval != -ENODEV)
4817 dev_err(&udev->dev, "device descriptor read/all, error %d\n",
4818 retval);
4819 if (retval >= 0)
4820 retval = -ENOMSG;
4821 goto fail;
4824 usb_detect_quirks(udev);
4826 if (udev->wusb == 0 && le16_to_cpu(udev->descriptor.bcdUSB) >= 0x0201) {
4827 retval = usb_get_bos_descriptor(udev);
4828 if (!retval) {
4829 udev->lpm_capable = usb_device_supports_lpm(udev);
4830 usb_set_lpm_parameters(udev);
4834 retval = 0;
4835 /* notify HCD that we have a device connected and addressed */
4836 if (hcd->driver->update_device)
4837 hcd->driver->update_device(hcd, udev);
4838 hub_set_initial_usb2_lpm_policy(udev);
4839 fail:
4840 if (retval) {
4841 hub_port_disable(hub, port1, 0);
4842 update_devnum(udev, devnum); /* for disconnect processing */
4844 mutex_unlock(hcd->address0_mutex);
4845 return retval;
4848 static void
4849 check_highspeed(struct usb_hub *hub, struct usb_device *udev, int port1)
4851 struct usb_qualifier_descriptor *qual;
4852 int status;
4854 if (udev->quirks & USB_QUIRK_DEVICE_QUALIFIER)
4855 return;
4857 qual = kmalloc(sizeof *qual, GFP_KERNEL);
4858 if (qual == NULL)
4859 return;
4861 status = usb_get_descriptor(udev, USB_DT_DEVICE_QUALIFIER, 0,
4862 qual, sizeof *qual);
4863 if (status == sizeof *qual) {
4864 dev_info(&udev->dev, "not running at top speed; "
4865 "connect to a high speed hub\n");
4866 /* hub LEDs are probably harder to miss than syslog */
4867 if (hub->has_indicators) {
4868 hub->indicator[port1-1] = INDICATOR_GREEN_BLINK;
4869 queue_delayed_work(system_power_efficient_wq,
4870 &hub->leds, 0);
4873 kfree(qual);
4876 static unsigned
4877 hub_power_remaining(struct usb_hub *hub)
4879 struct usb_device *hdev = hub->hdev;
4880 int remaining;
4881 int port1;
4883 if (!hub->limited_power)
4884 return 0;
4886 remaining = hdev->bus_mA - hub->descriptor->bHubContrCurrent;
4887 for (port1 = 1; port1 <= hdev->maxchild; ++port1) {
4888 struct usb_port *port_dev = hub->ports[port1 - 1];
4889 struct usb_device *udev = port_dev->child;
4890 unsigned unit_load;
4891 int delta;
4893 if (!udev)
4894 continue;
4895 if (hub_is_superspeed(udev))
4896 unit_load = 150;
4897 else
4898 unit_load = 100;
4901 * Unconfigured devices may not use more than one unit load,
4902 * or 8mA for OTG ports
4904 if (udev->actconfig)
4905 delta = usb_get_max_power(udev, udev->actconfig);
4906 else if (port1 != udev->bus->otg_port || hdev->parent)
4907 delta = unit_load;
4908 else
4909 delta = 8;
4910 if (delta > hub->mA_per_port)
4911 dev_warn(&port_dev->dev, "%dmA is over %umA budget!\n",
4912 delta, hub->mA_per_port);
4913 remaining -= delta;
4915 if (remaining < 0) {
4916 dev_warn(hub->intfdev, "%dmA over power budget!\n",
4917 -remaining);
4918 remaining = 0;
4920 return remaining;
4923 static void hub_port_connect(struct usb_hub *hub, int port1, u16 portstatus,
4924 u16 portchange)
4926 int status = -ENODEV;
4927 int i;
4928 unsigned unit_load;
4929 struct usb_device *hdev = hub->hdev;
4930 struct usb_hcd *hcd = bus_to_hcd(hdev->bus);
4931 struct usb_port *port_dev = hub->ports[port1 - 1];
4932 struct usb_device *udev = port_dev->child;
4933 static int unreliable_port = -1;
4935 /* Disconnect any existing devices under this port */
4936 if (udev) {
4937 if (hcd->usb_phy && !hdev->parent)
4938 usb_phy_notify_disconnect(hcd->usb_phy, udev->speed);
4939 usb_disconnect(&port_dev->child);
4942 /* We can forget about a "removed" device when there's a physical
4943 * disconnect or the connect status changes.
4945 if (!(portstatus & USB_PORT_STAT_CONNECTION) ||
4946 (portchange & USB_PORT_STAT_C_CONNECTION))
4947 clear_bit(port1, hub->removed_bits);
4949 if (portchange & (USB_PORT_STAT_C_CONNECTION |
4950 USB_PORT_STAT_C_ENABLE)) {
4951 status = hub_port_debounce_be_stable(hub, port1);
4952 if (status < 0) {
4953 if (status != -ENODEV &&
4954 port1 != unreliable_port &&
4955 printk_ratelimit())
4956 dev_err(&port_dev->dev, "connect-debounce failed\n");
4957 portstatus &= ~USB_PORT_STAT_CONNECTION;
4958 unreliable_port = port1;
4959 } else {
4960 portstatus = status;
4964 /* Return now if debouncing failed or nothing is connected or
4965 * the device was "removed".
4967 if (!(portstatus & USB_PORT_STAT_CONNECTION) ||
4968 test_bit(port1, hub->removed_bits)) {
4971 * maybe switch power back on (e.g. root hub was reset)
4972 * but only if the port isn't owned by someone else.
4974 if (hub_is_port_power_switchable(hub)
4975 && !port_is_power_on(hub, portstatus)
4976 && !port_dev->port_owner)
4977 set_port_feature(hdev, port1, USB_PORT_FEAT_POWER);
4979 if (portstatus & USB_PORT_STAT_ENABLE)
4980 goto done;
4981 return;
4983 if (hub_is_superspeed(hub->hdev))
4984 unit_load = 150;
4985 else
4986 unit_load = 100;
4988 status = 0;
4989 for (i = 0; i < SET_CONFIG_TRIES; i++) {
4991 /* reallocate for each attempt, since references
4992 * to the previous one can escape in various ways
4994 udev = usb_alloc_dev(hdev, hdev->bus, port1);
4995 if (!udev) {
4996 dev_err(&port_dev->dev,
4997 "couldn't allocate usb_device\n");
4998 goto done;
5001 usb_set_device_state(udev, USB_STATE_POWERED);
5002 udev->bus_mA = hub->mA_per_port;
5003 udev->level = hdev->level + 1;
5004 udev->wusb = hub_is_wusb(hub);
5006 /* Devices connected to SuperSpeed hubs are USB 3.0 or later */
5007 if (hub_is_superspeed(hub->hdev))
5008 udev->speed = USB_SPEED_SUPER;
5009 else
5010 udev->speed = USB_SPEED_UNKNOWN;
5012 choose_devnum(udev);
5013 if (udev->devnum <= 0) {
5014 status = -ENOTCONN; /* Don't retry */
5015 goto loop;
5018 /* reset (non-USB 3.0 devices) and get descriptor */
5019 usb_lock_port(port_dev);
5020 status = hub_port_init(hub, udev, port1, i);
5021 usb_unlock_port(port_dev);
5022 if (status < 0)
5023 goto loop;
5025 if (udev->quirks & USB_QUIRK_DELAY_INIT)
5026 msleep(2000);
5028 /* consecutive bus-powered hubs aren't reliable; they can
5029 * violate the voltage drop budget. if the new child has
5030 * a "powered" LED, users should notice we didn't enable it
5031 * (without reading syslog), even without per-port LEDs
5032 * on the parent.
5034 if (udev->descriptor.bDeviceClass == USB_CLASS_HUB
5035 && udev->bus_mA <= unit_load) {
5036 u16 devstat;
5038 status = usb_get_std_status(udev, USB_RECIP_DEVICE, 0,
5039 &devstat);
5040 if (status) {
5041 dev_dbg(&udev->dev, "get status %d ?\n", status);
5042 goto loop_disable;
5044 if ((devstat & (1 << USB_DEVICE_SELF_POWERED)) == 0) {
5045 dev_err(&udev->dev,
5046 "can't connect bus-powered hub "
5047 "to this port\n");
5048 if (hub->has_indicators) {
5049 hub->indicator[port1-1] =
5050 INDICATOR_AMBER_BLINK;
5051 queue_delayed_work(
5052 system_power_efficient_wq,
5053 &hub->leds, 0);
5055 status = -ENOTCONN; /* Don't retry */
5056 goto loop_disable;
5060 /* check for devices running slower than they could */
5061 if (le16_to_cpu(udev->descriptor.bcdUSB) >= 0x0200
5062 && udev->speed == USB_SPEED_FULL
5063 && highspeed_hubs != 0)
5064 check_highspeed(hub, udev, port1);
5066 /* Store the parent's children[] pointer. At this point
5067 * udev becomes globally accessible, although presumably
5068 * no one will look at it until hdev is unlocked.
5070 status = 0;
5072 mutex_lock(&usb_port_peer_mutex);
5074 /* We mustn't add new devices if the parent hub has
5075 * been disconnected; we would race with the
5076 * recursively_mark_NOTATTACHED() routine.
5078 spin_lock_irq(&device_state_lock);
5079 if (hdev->state == USB_STATE_NOTATTACHED)
5080 status = -ENOTCONN;
5081 else
5082 port_dev->child = udev;
5083 spin_unlock_irq(&device_state_lock);
5084 mutex_unlock(&usb_port_peer_mutex);
5086 /* Run it through the hoops (find a driver, etc) */
5087 if (!status) {
5088 status = usb_new_device(udev);
5089 if (status) {
5090 mutex_lock(&usb_port_peer_mutex);
5091 spin_lock_irq(&device_state_lock);
5092 port_dev->child = NULL;
5093 spin_unlock_irq(&device_state_lock);
5094 mutex_unlock(&usb_port_peer_mutex);
5095 } else {
5096 if (hcd->usb_phy && !hdev->parent)
5097 usb_phy_notify_connect(hcd->usb_phy,
5098 udev->speed);
5102 if (status)
5103 goto loop_disable;
5105 status = hub_power_remaining(hub);
5106 if (status)
5107 dev_dbg(hub->intfdev, "%dmA power budget left\n", status);
5109 return;
5111 loop_disable:
5112 hub_port_disable(hub, port1, 1);
5113 loop:
5114 usb_ep0_reinit(udev);
5115 release_devnum(udev);
5116 hub_free_dev(udev);
5117 usb_put_dev(udev);
5118 if ((status == -ENOTCONN) || (status == -ENOTSUPP))
5119 break;
5121 /* When halfway through our retry count, power-cycle the port */
5122 if (i == (SET_CONFIG_TRIES / 2) - 1) {
5123 dev_info(&port_dev->dev, "attempt power cycle\n");
5124 usb_hub_set_port_power(hdev, hub, port1, false);
5125 msleep(2 * hub_power_on_good_delay(hub));
5126 usb_hub_set_port_power(hdev, hub, port1, true);
5127 msleep(hub_power_on_good_delay(hub));
5130 if (hub->hdev->parent ||
5131 !hcd->driver->port_handed_over ||
5132 !(hcd->driver->port_handed_over)(hcd, port1)) {
5133 if (status != -ENOTCONN && status != -ENODEV)
5134 dev_err(&port_dev->dev,
5135 "unable to enumerate USB device\n");
5138 done:
5139 hub_port_disable(hub, port1, 1);
5140 if (hcd->driver->relinquish_port && !hub->hdev->parent) {
5141 if (status != -ENOTCONN && status != -ENODEV)
5142 hcd->driver->relinquish_port(hcd, port1);
5146 /* Handle physical or logical connection change events.
5147 * This routine is called when:
5148 * a port connection-change occurs;
5149 * a port enable-change occurs (often caused by EMI);
5150 * usb_reset_and_verify_device() encounters changed descriptors (as from
5151 * a firmware download)
5152 * caller already locked the hub
5154 static void hub_port_connect_change(struct usb_hub *hub, int port1,
5155 u16 portstatus, u16 portchange)
5156 __must_hold(&port_dev->status_lock)
5158 struct usb_port *port_dev = hub->ports[port1 - 1];
5159 struct usb_device *udev = port_dev->child;
5160 int status = -ENODEV;
5162 dev_dbg(&port_dev->dev, "status %04x, change %04x, %s\n", portstatus,
5163 portchange, portspeed(hub, portstatus));
5165 if (hub->has_indicators) {
5166 set_port_led(hub, port1, HUB_LED_AUTO);
5167 hub->indicator[port1-1] = INDICATOR_AUTO;
5170 #ifdef CONFIG_USB_OTG
5171 /* during HNP, don't repeat the debounce */
5172 if (hub->hdev->bus->is_b_host)
5173 portchange &= ~(USB_PORT_STAT_C_CONNECTION |
5174 USB_PORT_STAT_C_ENABLE);
5175 #endif
5177 /* Try to resuscitate an existing device */
5178 if ((portstatus & USB_PORT_STAT_CONNECTION) && udev &&
5179 udev->state != USB_STATE_NOTATTACHED) {
5180 if (portstatus & USB_PORT_STAT_ENABLE) {
5181 status = 0; /* Nothing to do */
5182 #ifdef CONFIG_PM
5183 } else if (udev->state == USB_STATE_SUSPENDED &&
5184 udev->persist_enabled) {
5185 /* For a suspended device, treat this as a
5186 * remote wakeup event.
5188 usb_unlock_port(port_dev);
5189 status = usb_remote_wakeup(udev);
5190 usb_lock_port(port_dev);
5191 #endif
5192 } else {
5193 /* Don't resuscitate */;
5196 clear_bit(port1, hub->change_bits);
5198 /* successfully revalidated the connection */
5199 if (status == 0)
5200 return;
5202 usb_unlock_port(port_dev);
5203 hub_port_connect(hub, port1, portstatus, portchange);
5204 usb_lock_port(port_dev);
5207 static void port_event(struct usb_hub *hub, int port1)
5208 __must_hold(&port_dev->status_lock)
5210 int connect_change;
5211 struct usb_port *port_dev = hub->ports[port1 - 1];
5212 struct usb_device *udev = port_dev->child;
5213 struct usb_device *hdev = hub->hdev;
5214 u16 portstatus, portchange;
5216 connect_change = test_bit(port1, hub->change_bits);
5217 clear_bit(port1, hub->event_bits);
5218 clear_bit(port1, hub->wakeup_bits);
5220 if (hub_port_status(hub, port1, &portstatus, &portchange) < 0)
5221 return;
5223 if (portchange & USB_PORT_STAT_C_CONNECTION) {
5224 usb_clear_port_feature(hdev, port1, USB_PORT_FEAT_C_CONNECTION);
5225 connect_change = 1;
5228 if (portchange & USB_PORT_STAT_C_ENABLE) {
5229 if (!connect_change)
5230 dev_dbg(&port_dev->dev, "enable change, status %08x\n",
5231 portstatus);
5232 usb_clear_port_feature(hdev, port1, USB_PORT_FEAT_C_ENABLE);
5235 * EM interference sometimes causes badly shielded USB devices
5236 * to be shutdown by the hub, this hack enables them again.
5237 * Works at least with mouse driver.
5239 if (!(portstatus & USB_PORT_STAT_ENABLE)
5240 && !connect_change && udev) {
5241 dev_err(&port_dev->dev, "disabled by hub (EMI?), re-enabling...\n");
5242 connect_change = 1;
5246 if (portchange & USB_PORT_STAT_C_OVERCURRENT) {
5247 u16 status = 0, unused;
5248 port_dev->over_current_count++;
5250 dev_dbg(&port_dev->dev, "over-current change #%u\n",
5251 port_dev->over_current_count);
5252 usb_clear_port_feature(hdev, port1,
5253 USB_PORT_FEAT_C_OVER_CURRENT);
5254 msleep(100); /* Cool down */
5255 hub_power_on(hub, true);
5256 hub_port_status(hub, port1, &status, &unused);
5257 if (status & USB_PORT_STAT_OVERCURRENT)
5258 dev_err(&port_dev->dev, "over-current condition\n");
5261 if (portchange & USB_PORT_STAT_C_RESET) {
5262 dev_dbg(&port_dev->dev, "reset change\n");
5263 usb_clear_port_feature(hdev, port1, USB_PORT_FEAT_C_RESET);
5265 if ((portchange & USB_PORT_STAT_C_BH_RESET)
5266 && hub_is_superspeed(hdev)) {
5267 dev_dbg(&port_dev->dev, "warm reset change\n");
5268 usb_clear_port_feature(hdev, port1,
5269 USB_PORT_FEAT_C_BH_PORT_RESET);
5271 if (portchange & USB_PORT_STAT_C_LINK_STATE) {
5272 dev_dbg(&port_dev->dev, "link state change\n");
5273 usb_clear_port_feature(hdev, port1,
5274 USB_PORT_FEAT_C_PORT_LINK_STATE);
5276 if (portchange & USB_PORT_STAT_C_CONFIG_ERROR) {
5277 dev_warn(&port_dev->dev, "config error\n");
5278 usb_clear_port_feature(hdev, port1,
5279 USB_PORT_FEAT_C_PORT_CONFIG_ERROR);
5282 /* skip port actions that require the port to be powered on */
5283 if (!pm_runtime_active(&port_dev->dev))
5284 return;
5286 if (hub_handle_remote_wakeup(hub, port1, portstatus, portchange))
5287 connect_change = 1;
5290 * Warm reset a USB3 protocol port if it's in
5291 * SS.Inactive state.
5293 if (hub_port_warm_reset_required(hub, port1, portstatus)) {
5294 dev_dbg(&port_dev->dev, "do warm reset\n");
5295 if (!udev || !(portstatus & USB_PORT_STAT_CONNECTION)
5296 || udev->state == USB_STATE_NOTATTACHED) {
5297 if (hub_port_reset(hub, port1, NULL,
5298 HUB_BH_RESET_TIME, true) < 0)
5299 hub_port_disable(hub, port1, 1);
5300 } else {
5301 usb_unlock_port(port_dev);
5302 usb_lock_device(udev);
5303 usb_reset_device(udev);
5304 usb_unlock_device(udev);
5305 usb_lock_port(port_dev);
5306 connect_change = 0;
5310 if (connect_change)
5311 hub_port_connect_change(hub, port1, portstatus, portchange);
5314 static void hub_event(struct work_struct *work)
5316 struct usb_device *hdev;
5317 struct usb_interface *intf;
5318 struct usb_hub *hub;
5319 struct device *hub_dev;
5320 u16 hubstatus;
5321 u16 hubchange;
5322 int i, ret;
5324 hub = container_of(work, struct usb_hub, events);
5325 hdev = hub->hdev;
5326 hub_dev = hub->intfdev;
5327 intf = to_usb_interface(hub_dev);
5329 dev_dbg(hub_dev, "state %d ports %d chg %04x evt %04x\n",
5330 hdev->state, hdev->maxchild,
5331 /* NOTE: expects max 15 ports... */
5332 (u16) hub->change_bits[0],
5333 (u16) hub->event_bits[0]);
5335 /* Lock the device, then check to see if we were
5336 * disconnected while waiting for the lock to succeed. */
5337 usb_lock_device(hdev);
5338 if (unlikely(hub->disconnected))
5339 goto out_hdev_lock;
5341 /* If the hub has died, clean up after it */
5342 if (hdev->state == USB_STATE_NOTATTACHED) {
5343 hub->error = -ENODEV;
5344 hub_quiesce(hub, HUB_DISCONNECT);
5345 goto out_hdev_lock;
5348 /* Autoresume */
5349 ret = usb_autopm_get_interface(intf);
5350 if (ret) {
5351 dev_dbg(hub_dev, "Can't autoresume: %d\n", ret);
5352 goto out_hdev_lock;
5355 /* If this is an inactive hub, do nothing */
5356 if (hub->quiescing)
5357 goto out_autopm;
5359 if (hub->error) {
5360 dev_dbg(hub_dev, "resetting for error %d\n", hub->error);
5362 ret = usb_reset_device(hdev);
5363 if (ret) {
5364 dev_dbg(hub_dev, "error resetting hub: %d\n", ret);
5365 goto out_autopm;
5368 hub->nerrors = 0;
5369 hub->error = 0;
5372 /* deal with port status changes */
5373 for (i = 1; i <= hdev->maxchild; i++) {
5374 struct usb_port *port_dev = hub->ports[i - 1];
5376 if (test_bit(i, hub->event_bits)
5377 || test_bit(i, hub->change_bits)
5378 || test_bit(i, hub->wakeup_bits)) {
5380 * The get_noresume and barrier ensure that if
5381 * the port was in the process of resuming, we
5382 * flush that work and keep the port active for
5383 * the duration of the port_event(). However,
5384 * if the port is runtime pm suspended
5385 * (powered-off), we leave it in that state, run
5386 * an abbreviated port_event(), and move on.
5388 pm_runtime_get_noresume(&port_dev->dev);
5389 pm_runtime_barrier(&port_dev->dev);
5390 usb_lock_port(port_dev);
5391 port_event(hub, i);
5392 usb_unlock_port(port_dev);
5393 pm_runtime_put_sync(&port_dev->dev);
5397 /* deal with hub status changes */
5398 if (test_and_clear_bit(0, hub->event_bits) == 0)
5399 ; /* do nothing */
5400 else if (hub_hub_status(hub, &hubstatus, &hubchange) < 0)
5401 dev_err(hub_dev, "get_hub_status failed\n");
5402 else {
5403 if (hubchange & HUB_CHANGE_LOCAL_POWER) {
5404 dev_dbg(hub_dev, "power change\n");
5405 clear_hub_feature(hdev, C_HUB_LOCAL_POWER);
5406 if (hubstatus & HUB_STATUS_LOCAL_POWER)
5407 /* FIXME: Is this always true? */
5408 hub->limited_power = 1;
5409 else
5410 hub->limited_power = 0;
5412 if (hubchange & HUB_CHANGE_OVERCURRENT) {
5413 u16 status = 0;
5414 u16 unused;
5416 dev_dbg(hub_dev, "over-current change\n");
5417 clear_hub_feature(hdev, C_HUB_OVER_CURRENT);
5418 msleep(500); /* Cool down */
5419 hub_power_on(hub, true);
5420 hub_hub_status(hub, &status, &unused);
5421 if (status & HUB_STATUS_OVERCURRENT)
5422 dev_err(hub_dev, "over-current condition\n");
5426 out_autopm:
5427 /* Balance the usb_autopm_get_interface() above */
5428 usb_autopm_put_interface_no_suspend(intf);
5429 out_hdev_lock:
5430 usb_unlock_device(hdev);
5432 /* Balance the stuff in kick_hub_wq() and allow autosuspend */
5433 usb_autopm_put_interface(intf);
5434 kref_put(&hub->kref, hub_release);
5437 static const struct usb_device_id hub_id_table[] = {
5438 { .match_flags = USB_DEVICE_ID_MATCH_VENDOR
5439 | USB_DEVICE_ID_MATCH_PRODUCT
5440 | USB_DEVICE_ID_MATCH_INT_CLASS,
5441 .idVendor = USB_VENDOR_SMSC,
5442 .idProduct = USB_PRODUCT_USB5534B,
5443 .bInterfaceClass = USB_CLASS_HUB,
5444 .driver_info = HUB_QUIRK_DISABLE_AUTOSUSPEND},
5445 { .match_flags = USB_DEVICE_ID_MATCH_VENDOR
5446 | USB_DEVICE_ID_MATCH_INT_CLASS,
5447 .idVendor = USB_VENDOR_GENESYS_LOGIC,
5448 .bInterfaceClass = USB_CLASS_HUB,
5449 .driver_info = HUB_QUIRK_CHECK_PORT_AUTOSUSPEND},
5450 { .match_flags = USB_DEVICE_ID_MATCH_DEV_CLASS,
5451 .bDeviceClass = USB_CLASS_HUB},
5452 { .match_flags = USB_DEVICE_ID_MATCH_INT_CLASS,
5453 .bInterfaceClass = USB_CLASS_HUB},
5454 { } /* Terminating entry */
5457 MODULE_DEVICE_TABLE(usb, hub_id_table);
5459 static struct usb_driver hub_driver = {
5460 .name = "hub",
5461 .probe = hub_probe,
5462 .disconnect = hub_disconnect,
5463 .suspend = hub_suspend,
5464 .resume = hub_resume,
5465 .reset_resume = hub_reset_resume,
5466 .pre_reset = hub_pre_reset,
5467 .post_reset = hub_post_reset,
5468 .unlocked_ioctl = hub_ioctl,
5469 .id_table = hub_id_table,
5470 .supports_autosuspend = 1,
5473 int usb_hub_init(void)
5475 if (usb_register(&hub_driver) < 0) {
5476 printk(KERN_ERR "%s: can't register hub driver\n",
5477 usbcore_name);
5478 return -1;
5482 * The workqueue needs to be freezable to avoid interfering with
5483 * USB-PERSIST port handover. Otherwise it might see that a full-speed
5484 * device was gone before the EHCI controller had handed its port
5485 * over to the companion full-speed controller.
5487 hub_wq = alloc_workqueue("usb_hub_wq", WQ_FREEZABLE, 0);
5488 if (hub_wq)
5489 return 0;
5491 /* Fall through if kernel_thread failed */
5492 usb_deregister(&hub_driver);
5493 pr_err("%s: can't allocate workqueue for usb hub\n", usbcore_name);
5495 return -1;
5498 void usb_hub_cleanup(void)
5500 destroy_workqueue(hub_wq);
5503 * Hub resources are freed for us by usb_deregister. It calls
5504 * usb_driver_purge on every device which in turn calls that
5505 * devices disconnect function if it is using this driver.
5506 * The hub_disconnect function takes care of releasing the
5507 * individual hub resources. -greg
5509 usb_deregister(&hub_driver);
5510 } /* usb_hub_cleanup() */
5512 static int descriptors_changed(struct usb_device *udev,
5513 struct usb_device_descriptor *old_device_descriptor,
5514 struct usb_host_bos *old_bos)
5516 int changed = 0;
5517 unsigned index;
5518 unsigned serial_len = 0;
5519 unsigned len;
5520 unsigned old_length;
5521 int length;
5522 char *buf;
5524 if (memcmp(&udev->descriptor, old_device_descriptor,
5525 sizeof(*old_device_descriptor)) != 0)
5526 return 1;
5528 if ((old_bos && !udev->bos) || (!old_bos && udev->bos))
5529 return 1;
5530 if (udev->bos) {
5531 len = le16_to_cpu(udev->bos->desc->wTotalLength);
5532 if (len != le16_to_cpu(old_bos->desc->wTotalLength))
5533 return 1;
5534 if (memcmp(udev->bos->desc, old_bos->desc, len))
5535 return 1;
5538 /* Since the idVendor, idProduct, and bcdDevice values in the
5539 * device descriptor haven't changed, we will assume the
5540 * Manufacturer and Product strings haven't changed either.
5541 * But the SerialNumber string could be different (e.g., a
5542 * different flash card of the same brand).
5544 if (udev->serial)
5545 serial_len = strlen(udev->serial) + 1;
5547 len = serial_len;
5548 for (index = 0; index < udev->descriptor.bNumConfigurations; index++) {
5549 old_length = le16_to_cpu(udev->config[index].desc.wTotalLength);
5550 len = max(len, old_length);
5553 buf = kmalloc(len, GFP_NOIO);
5554 if (!buf)
5555 /* assume the worst */
5556 return 1;
5558 for (index = 0; index < udev->descriptor.bNumConfigurations; index++) {
5559 old_length = le16_to_cpu(udev->config[index].desc.wTotalLength);
5560 length = usb_get_descriptor(udev, USB_DT_CONFIG, index, buf,
5561 old_length);
5562 if (length != old_length) {
5563 dev_dbg(&udev->dev, "config index %d, error %d\n",
5564 index, length);
5565 changed = 1;
5566 break;
5568 if (memcmp(buf, udev->rawdescriptors[index], old_length)
5569 != 0) {
5570 dev_dbg(&udev->dev, "config index %d changed (#%d)\n",
5571 index,
5572 ((struct usb_config_descriptor *) buf)->
5573 bConfigurationValue);
5574 changed = 1;
5575 break;
5579 if (!changed && serial_len) {
5580 length = usb_string(udev, udev->descriptor.iSerialNumber,
5581 buf, serial_len);
5582 if (length + 1 != serial_len) {
5583 dev_dbg(&udev->dev, "serial string error %d\n",
5584 length);
5585 changed = 1;
5586 } else if (memcmp(buf, udev->serial, length) != 0) {
5587 dev_dbg(&udev->dev, "serial string changed\n");
5588 changed = 1;
5592 kfree(buf);
5593 return changed;
5597 * usb_reset_and_verify_device - perform a USB port reset to reinitialize a device
5598 * @udev: device to reset (not in SUSPENDED or NOTATTACHED state)
5600 * WARNING - don't use this routine to reset a composite device
5601 * (one with multiple interfaces owned by separate drivers)!
5602 * Use usb_reset_device() instead.
5604 * Do a port reset, reassign the device's address, and establish its
5605 * former operating configuration. If the reset fails, or the device's
5606 * descriptors change from their values before the reset, or the original
5607 * configuration and altsettings cannot be restored, a flag will be set
5608 * telling hub_wq to pretend the device has been disconnected and then
5609 * re-connected. All drivers will be unbound, and the device will be
5610 * re-enumerated and probed all over again.
5612 * Return: 0 if the reset succeeded, -ENODEV if the device has been
5613 * flagged for logical disconnection, or some other negative error code
5614 * if the reset wasn't even attempted.
5616 * Note:
5617 * The caller must own the device lock and the port lock, the latter is
5618 * taken by usb_reset_device(). For example, it's safe to use
5619 * usb_reset_device() from a driver probe() routine after downloading
5620 * new firmware. For calls that might not occur during probe(), drivers
5621 * should lock the device using usb_lock_device_for_reset().
5623 * Locking exception: This routine may also be called from within an
5624 * autoresume handler. Such usage won't conflict with other tasks
5625 * holding the device lock because these tasks should always call
5626 * usb_autopm_resume_device(), thereby preventing any unwanted
5627 * autoresume. The autoresume handler is expected to have already
5628 * acquired the port lock before calling this routine.
5630 static int usb_reset_and_verify_device(struct usb_device *udev)
5632 struct usb_device *parent_hdev = udev->parent;
5633 struct usb_hub *parent_hub;
5634 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
5635 struct usb_device_descriptor descriptor = udev->descriptor;
5636 struct usb_host_bos *bos;
5637 int i, j, ret = 0;
5638 int port1 = udev->portnum;
5640 if (udev->state == USB_STATE_NOTATTACHED ||
5641 udev->state == USB_STATE_SUSPENDED) {
5642 dev_dbg(&udev->dev, "device reset not allowed in state %d\n",
5643 udev->state);
5644 return -EINVAL;
5647 if (!parent_hdev)
5648 return -EISDIR;
5650 parent_hub = usb_hub_to_struct_hub(parent_hdev);
5652 /* Disable USB2 hardware LPM.
5653 * It will be re-enabled by the enumeration process.
5655 usb_disable_usb2_hardware_lpm(udev);
5657 /* Disable LPM while we reset the device and reinstall the alt settings.
5658 * Device-initiated LPM, and system exit latency settings are cleared
5659 * when the device is reset, so we have to set them up again.
5661 ret = usb_unlocked_disable_lpm(udev);
5662 if (ret) {
5663 dev_err(&udev->dev, "%s Failed to disable LPM\n", __func__);
5664 goto re_enumerate_no_bos;
5667 bos = udev->bos;
5668 udev->bos = NULL;
5670 for (i = 0; i < SET_CONFIG_TRIES; ++i) {
5672 /* ep0 maxpacket size may change; let the HCD know about it.
5673 * Other endpoints will be handled by re-enumeration. */
5674 usb_ep0_reinit(udev);
5675 ret = hub_port_init(parent_hub, udev, port1, i);
5676 if (ret >= 0 || ret == -ENOTCONN || ret == -ENODEV)
5677 break;
5680 if (ret < 0)
5681 goto re_enumerate;
5683 /* Device might have changed firmware (DFU or similar) */
5684 if (descriptors_changed(udev, &descriptor, bos)) {
5685 dev_info(&udev->dev, "device firmware changed\n");
5686 udev->descriptor = descriptor; /* for disconnect() calls */
5687 goto re_enumerate;
5690 /* Restore the device's previous configuration */
5691 if (!udev->actconfig)
5692 goto done;
5694 mutex_lock(hcd->bandwidth_mutex);
5695 ret = usb_hcd_alloc_bandwidth(udev, udev->actconfig, NULL, NULL);
5696 if (ret < 0) {
5697 dev_warn(&udev->dev,
5698 "Busted HC? Not enough HCD resources for "
5699 "old configuration.\n");
5700 mutex_unlock(hcd->bandwidth_mutex);
5701 goto re_enumerate;
5703 ret = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
5704 USB_REQ_SET_CONFIGURATION, 0,
5705 udev->actconfig->desc.bConfigurationValue, 0,
5706 NULL, 0, USB_CTRL_SET_TIMEOUT);
5707 if (ret < 0) {
5708 dev_err(&udev->dev,
5709 "can't restore configuration #%d (error=%d)\n",
5710 udev->actconfig->desc.bConfigurationValue, ret);
5711 mutex_unlock(hcd->bandwidth_mutex);
5712 goto re_enumerate;
5714 mutex_unlock(hcd->bandwidth_mutex);
5715 usb_set_device_state(udev, USB_STATE_CONFIGURED);
5717 /* Put interfaces back into the same altsettings as before.
5718 * Don't bother to send the Set-Interface request for interfaces
5719 * that were already in altsetting 0; besides being unnecessary,
5720 * many devices can't handle it. Instead just reset the host-side
5721 * endpoint state.
5723 for (i = 0; i < udev->actconfig->desc.bNumInterfaces; i++) {
5724 struct usb_host_config *config = udev->actconfig;
5725 struct usb_interface *intf = config->interface[i];
5726 struct usb_interface_descriptor *desc;
5728 desc = &intf->cur_altsetting->desc;
5729 if (desc->bAlternateSetting == 0) {
5730 usb_disable_interface(udev, intf, true);
5731 usb_enable_interface(udev, intf, true);
5732 ret = 0;
5733 } else {
5734 /* Let the bandwidth allocation function know that this
5735 * device has been reset, and it will have to use
5736 * alternate setting 0 as the current alternate setting.
5738 intf->resetting_device = 1;
5739 ret = usb_set_interface(udev, desc->bInterfaceNumber,
5740 desc->bAlternateSetting);
5741 intf->resetting_device = 0;
5743 if (ret < 0) {
5744 dev_err(&udev->dev, "failed to restore interface %d "
5745 "altsetting %d (error=%d)\n",
5746 desc->bInterfaceNumber,
5747 desc->bAlternateSetting,
5748 ret);
5749 goto re_enumerate;
5751 /* Resetting also frees any allocated streams */
5752 for (j = 0; j < intf->cur_altsetting->desc.bNumEndpoints; j++)
5753 intf->cur_altsetting->endpoint[j].streams = 0;
5756 done:
5757 /* Now that the alt settings are re-installed, enable LTM and LPM. */
5758 usb_enable_usb2_hardware_lpm(udev);
5759 usb_unlocked_enable_lpm(udev);
5760 usb_enable_ltm(udev);
5761 usb_release_bos_descriptor(udev);
5762 udev->bos = bos;
5763 return 0;
5765 re_enumerate:
5766 usb_release_bos_descriptor(udev);
5767 udev->bos = bos;
5768 re_enumerate_no_bos:
5769 /* LPM state doesn't matter when we're about to destroy the device. */
5770 hub_port_logical_disconnect(parent_hub, port1);
5771 return -ENODEV;
5775 * usb_reset_device - warn interface drivers and perform a USB port reset
5776 * @udev: device to reset (not in NOTATTACHED state)
5778 * Warns all drivers bound to registered interfaces (using their pre_reset
5779 * method), performs the port reset, and then lets the drivers know that
5780 * the reset is over (using their post_reset method).
5782 * Return: The same as for usb_reset_and_verify_device().
5784 * Note:
5785 * The caller must own the device lock. For example, it's safe to use
5786 * this from a driver probe() routine after downloading new firmware.
5787 * For calls that might not occur during probe(), drivers should lock
5788 * the device using usb_lock_device_for_reset().
5790 * If an interface is currently being probed or disconnected, we assume
5791 * its driver knows how to handle resets. For all other interfaces,
5792 * if the driver doesn't have pre_reset and post_reset methods then
5793 * we attempt to unbind it and rebind afterward.
5795 int usb_reset_device(struct usb_device *udev)
5797 int ret;
5798 int i;
5799 unsigned int noio_flag;
5800 struct usb_port *port_dev;
5801 struct usb_host_config *config = udev->actconfig;
5802 struct usb_hub *hub = usb_hub_to_struct_hub(udev->parent);
5804 if (udev->state == USB_STATE_NOTATTACHED) {
5805 dev_dbg(&udev->dev, "device reset not allowed in state %d\n",
5806 udev->state);
5807 return -EINVAL;
5810 if (!udev->parent) {
5811 /* this requires hcd-specific logic; see ohci_restart() */
5812 dev_dbg(&udev->dev, "%s for root hub!\n", __func__);
5813 return -EISDIR;
5816 port_dev = hub->ports[udev->portnum - 1];
5819 * Don't allocate memory with GFP_KERNEL in current
5820 * context to avoid possible deadlock if usb mass
5821 * storage interface or usbnet interface(iSCSI case)
5822 * is included in current configuration. The easist
5823 * approach is to do it for every device reset,
5824 * because the device 'memalloc_noio' flag may have
5825 * not been set before reseting the usb device.
5827 noio_flag = memalloc_noio_save();
5829 /* Prevent autosuspend during the reset */
5830 usb_autoresume_device(udev);
5832 if (config) {
5833 for (i = 0; i < config->desc.bNumInterfaces; ++i) {
5834 struct usb_interface *cintf = config->interface[i];
5835 struct usb_driver *drv;
5836 int unbind = 0;
5838 if (cintf->dev.driver) {
5839 drv = to_usb_driver(cintf->dev.driver);
5840 if (drv->pre_reset && drv->post_reset)
5841 unbind = (drv->pre_reset)(cintf);
5842 else if (cintf->condition ==
5843 USB_INTERFACE_BOUND)
5844 unbind = 1;
5845 if (unbind)
5846 usb_forced_unbind_intf(cintf);
5851 usb_lock_port(port_dev);
5852 ret = usb_reset_and_verify_device(udev);
5853 usb_unlock_port(port_dev);
5855 if (config) {
5856 for (i = config->desc.bNumInterfaces - 1; i >= 0; --i) {
5857 struct usb_interface *cintf = config->interface[i];
5858 struct usb_driver *drv;
5859 int rebind = cintf->needs_binding;
5861 if (!rebind && cintf->dev.driver) {
5862 drv = to_usb_driver(cintf->dev.driver);
5863 if (drv->post_reset)
5864 rebind = (drv->post_reset)(cintf);
5865 else if (cintf->condition ==
5866 USB_INTERFACE_BOUND)
5867 rebind = 1;
5868 if (rebind)
5869 cintf->needs_binding = 1;
5873 /* If the reset failed, hub_wq will unbind drivers later */
5874 if (ret == 0)
5875 usb_unbind_and_rebind_marked_interfaces(udev);
5878 usb_autosuspend_device(udev);
5879 memalloc_noio_restore(noio_flag);
5880 return ret;
5882 EXPORT_SYMBOL_GPL(usb_reset_device);
5886 * usb_queue_reset_device - Reset a USB device from an atomic context
5887 * @iface: USB interface belonging to the device to reset
5889 * This function can be used to reset a USB device from an atomic
5890 * context, where usb_reset_device() won't work (as it blocks).
5892 * Doing a reset via this method is functionally equivalent to calling
5893 * usb_reset_device(), except for the fact that it is delayed to a
5894 * workqueue. This means that any drivers bound to other interfaces
5895 * might be unbound, as well as users from usbfs in user space.
5897 * Corner cases:
5899 * - Scheduling two resets at the same time from two different drivers
5900 * attached to two different interfaces of the same device is
5901 * possible; depending on how the driver attached to each interface
5902 * handles ->pre_reset(), the second reset might happen or not.
5904 * - If the reset is delayed so long that the interface is unbound from
5905 * its driver, the reset will be skipped.
5907 * - This function can be called during .probe(). It can also be called
5908 * during .disconnect(), but doing so is pointless because the reset
5909 * will not occur. If you really want to reset the device during
5910 * .disconnect(), call usb_reset_device() directly -- but watch out
5911 * for nested unbinding issues!
5913 void usb_queue_reset_device(struct usb_interface *iface)
5915 if (schedule_work(&iface->reset_ws))
5916 usb_get_intf(iface);
5918 EXPORT_SYMBOL_GPL(usb_queue_reset_device);
5921 * usb_hub_find_child - Get the pointer of child device
5922 * attached to the port which is specified by @port1.
5923 * @hdev: USB device belonging to the usb hub
5924 * @port1: port num to indicate which port the child device
5925 * is attached to.
5927 * USB drivers call this function to get hub's child device
5928 * pointer.
5930 * Return: %NULL if input param is invalid and
5931 * child's usb_device pointer if non-NULL.
5933 struct usb_device *usb_hub_find_child(struct usb_device *hdev,
5934 int port1)
5936 struct usb_hub *hub = usb_hub_to_struct_hub(hdev);
5938 if (port1 < 1 || port1 > hdev->maxchild)
5939 return NULL;
5940 return hub->ports[port1 - 1]->child;
5942 EXPORT_SYMBOL_GPL(usb_hub_find_child);
5944 void usb_hub_adjust_deviceremovable(struct usb_device *hdev,
5945 struct usb_hub_descriptor *desc)
5947 struct usb_hub *hub = usb_hub_to_struct_hub(hdev);
5948 enum usb_port_connect_type connect_type;
5949 int i;
5951 if (!hub)
5952 return;
5954 if (!hub_is_superspeed(hdev)) {
5955 for (i = 1; i <= hdev->maxchild; i++) {
5956 struct usb_port *port_dev = hub->ports[i - 1];
5958 connect_type = port_dev->connect_type;
5959 if (connect_type == USB_PORT_CONNECT_TYPE_HARD_WIRED) {
5960 u8 mask = 1 << (i%8);
5962 if (!(desc->u.hs.DeviceRemovable[i/8] & mask)) {
5963 dev_dbg(&port_dev->dev, "DeviceRemovable is changed to 1 according to platform information.\n");
5964 desc->u.hs.DeviceRemovable[i/8] |= mask;
5968 } else {
5969 u16 port_removable = le16_to_cpu(desc->u.ss.DeviceRemovable);
5971 for (i = 1; i <= hdev->maxchild; i++) {
5972 struct usb_port *port_dev = hub->ports[i - 1];
5974 connect_type = port_dev->connect_type;
5975 if (connect_type == USB_PORT_CONNECT_TYPE_HARD_WIRED) {
5976 u16 mask = 1 << i;
5978 if (!(port_removable & mask)) {
5979 dev_dbg(&port_dev->dev, "DeviceRemovable is changed to 1 according to platform information.\n");
5980 port_removable |= mask;
5985 desc->u.ss.DeviceRemovable = cpu_to_le16(port_removable);
5989 #ifdef CONFIG_ACPI
5991 * usb_get_hub_port_acpi_handle - Get the usb port's acpi handle
5992 * @hdev: USB device belonging to the usb hub
5993 * @port1: port num of the port
5995 * Return: Port's acpi handle if successful, %NULL if params are
5996 * invalid.
5998 acpi_handle usb_get_hub_port_acpi_handle(struct usb_device *hdev,
5999 int port1)
6001 struct usb_hub *hub = usb_hub_to_struct_hub(hdev);
6003 if (!hub)
6004 return NULL;
6006 return ACPI_HANDLE(&hub->ports[port1 - 1]->dev);
6008 #endif