dm thin metadata: fix __udivdi3 undefined on 32-bit
[linux/fpc-iii.git] / drivers / usb / core / hub.c
blob2facffea2ee059882f0e5f758405082ac585cb42
1 /*
2 * USB hub driver.
4 * (C) Copyright 1999 Linus Torvalds
5 * (C) Copyright 1999 Johannes Erdfelt
6 * (C) Copyright 1999 Gregory P. Smith
7 * (C) Copyright 2001 Brad Hards (bhards@bigpond.net.au)
9 */
11 #include <linux/kernel.h>
12 #include <linux/errno.h>
13 #include <linux/module.h>
14 #include <linux/moduleparam.h>
15 #include <linux/completion.h>
16 #include <linux/sched.h>
17 #include <linux/list.h>
18 #include <linux/slab.h>
19 #include <linux/ioctl.h>
20 #include <linux/usb.h>
21 #include <linux/usbdevice_fs.h>
22 #include <linux/usb/hcd.h>
23 #include <linux/usb/otg.h>
24 #include <linux/usb/quirks.h>
25 #include <linux/workqueue.h>
26 #include <linux/mutex.h>
27 #include <linux/random.h>
28 #include <linux/pm_qos.h>
30 #include <asm/uaccess.h>
31 #include <asm/byteorder.h>
33 #include "hub.h"
34 #include "otg_whitelist.h"
36 #define USB_VENDOR_GENESYS_LOGIC 0x05e3
37 #define HUB_QUIRK_CHECK_PORT_AUTOSUSPEND 0x01
39 /* Protect struct usb_device->state and ->children members
40 * Note: Both are also protected by ->dev.sem, except that ->state can
41 * change to USB_STATE_NOTATTACHED even when the semaphore isn't held. */
42 static DEFINE_SPINLOCK(device_state_lock);
44 /* workqueue to process hub events */
45 static struct workqueue_struct *hub_wq;
46 static void hub_event(struct work_struct *work);
48 /* synchronize hub-port add/remove and peering operations */
49 DEFINE_MUTEX(usb_port_peer_mutex);
51 /* cycle leds on hubs that aren't blinking for attention */
52 static bool blinkenlights = 0;
53 module_param(blinkenlights, bool, S_IRUGO);
54 MODULE_PARM_DESC(blinkenlights, "true to cycle leds on hubs");
57 * Device SATA8000 FW1.0 from DATAST0R Technology Corp requires about
58 * 10 seconds to send reply for the initial 64-byte descriptor request.
60 /* define initial 64-byte descriptor request timeout in milliseconds */
61 static int initial_descriptor_timeout = USB_CTRL_GET_TIMEOUT;
62 module_param(initial_descriptor_timeout, int, S_IRUGO|S_IWUSR);
63 MODULE_PARM_DESC(initial_descriptor_timeout,
64 "initial 64-byte descriptor request timeout in milliseconds "
65 "(default 5000 - 5.0 seconds)");
68 * As of 2.6.10 we introduce a new USB device initialization scheme which
69 * closely resembles the way Windows works. Hopefully it will be compatible
70 * with a wider range of devices than the old scheme. However some previously
71 * working devices may start giving rise to "device not accepting address"
72 * errors; if that happens the user can try the old scheme by adjusting the
73 * following module parameters.
75 * For maximum flexibility there are two boolean parameters to control the
76 * hub driver's behavior. On the first initialization attempt, if the
77 * "old_scheme_first" parameter is set then the old scheme will be used,
78 * otherwise the new scheme is used. If that fails and "use_both_schemes"
79 * is set, then the driver will make another attempt, using the other scheme.
81 static bool old_scheme_first = 0;
82 module_param(old_scheme_first, bool, S_IRUGO | S_IWUSR);
83 MODULE_PARM_DESC(old_scheme_first,
84 "start with the old device initialization scheme");
86 static bool use_both_schemes = 1;
87 module_param(use_both_schemes, bool, S_IRUGO | S_IWUSR);
88 MODULE_PARM_DESC(use_both_schemes,
89 "try the other device initialization scheme if the "
90 "first one fails");
92 /* Mutual exclusion for EHCI CF initialization. This interferes with
93 * port reset on some companion controllers.
95 DECLARE_RWSEM(ehci_cf_port_reset_rwsem);
96 EXPORT_SYMBOL_GPL(ehci_cf_port_reset_rwsem);
98 #define HUB_DEBOUNCE_TIMEOUT 2000
99 #define HUB_DEBOUNCE_STEP 25
100 #define HUB_DEBOUNCE_STABLE 100
102 static void hub_release(struct kref *kref);
103 static int usb_reset_and_verify_device(struct usb_device *udev);
104 static int hub_port_disable(struct usb_hub *hub, int port1, int set_state);
106 static inline char *portspeed(struct usb_hub *hub, int portstatus)
108 if (hub_is_superspeed(hub->hdev))
109 return "5.0 Gb/s";
110 if (portstatus & USB_PORT_STAT_HIGH_SPEED)
111 return "480 Mb/s";
112 else if (portstatus & USB_PORT_STAT_LOW_SPEED)
113 return "1.5 Mb/s";
114 else
115 return "12 Mb/s";
118 /* Note that hdev or one of its children must be locked! */
119 struct usb_hub *usb_hub_to_struct_hub(struct usb_device *hdev)
121 if (!hdev || !hdev->actconfig || !hdev->maxchild)
122 return NULL;
123 return usb_get_intfdata(hdev->actconfig->interface[0]);
126 int usb_device_supports_lpm(struct usb_device *udev)
128 /* Some devices have trouble with LPM */
129 if (udev->quirks & USB_QUIRK_NO_LPM)
130 return 0;
132 /* USB 2.1 (and greater) devices indicate LPM support through
133 * their USB 2.0 Extended Capabilities BOS descriptor.
135 if (udev->speed == USB_SPEED_HIGH || udev->speed == USB_SPEED_FULL) {
136 if (udev->bos->ext_cap &&
137 (USB_LPM_SUPPORT &
138 le32_to_cpu(udev->bos->ext_cap->bmAttributes)))
139 return 1;
140 return 0;
144 * According to the USB 3.0 spec, all USB 3.0 devices must support LPM.
145 * However, there are some that don't, and they set the U1/U2 exit
146 * latencies to zero.
148 if (!udev->bos->ss_cap) {
149 dev_info(&udev->dev, "No LPM exit latency info found, disabling LPM.\n");
150 return 0;
153 if (udev->bos->ss_cap->bU1devExitLat == 0 &&
154 udev->bos->ss_cap->bU2DevExitLat == 0) {
155 if (udev->parent)
156 dev_info(&udev->dev, "LPM exit latency is zeroed, disabling LPM.\n");
157 else
158 dev_info(&udev->dev, "We don't know the algorithms for LPM for this host, disabling LPM.\n");
159 return 0;
162 if (!udev->parent || udev->parent->lpm_capable)
163 return 1;
164 return 0;
168 * Set the Maximum Exit Latency (MEL) for the host to initiate a transition from
169 * either U1 or U2.
171 static void usb_set_lpm_mel(struct usb_device *udev,
172 struct usb3_lpm_parameters *udev_lpm_params,
173 unsigned int udev_exit_latency,
174 struct usb_hub *hub,
175 struct usb3_lpm_parameters *hub_lpm_params,
176 unsigned int hub_exit_latency)
178 unsigned int total_mel;
179 unsigned int device_mel;
180 unsigned int hub_mel;
183 * Calculate the time it takes to transition all links from the roothub
184 * to the parent hub into U0. The parent hub must then decode the
185 * packet (hub header decode latency) to figure out which port it was
186 * bound for.
188 * The Hub Header decode latency is expressed in 0.1us intervals (0x1
189 * means 0.1us). Multiply that by 100 to get nanoseconds.
191 total_mel = hub_lpm_params->mel +
192 (hub->descriptor->u.ss.bHubHdrDecLat * 100);
195 * How long will it take to transition the downstream hub's port into
196 * U0? The greater of either the hub exit latency or the device exit
197 * latency.
199 * The BOS U1/U2 exit latencies are expressed in 1us intervals.
200 * Multiply that by 1000 to get nanoseconds.
202 device_mel = udev_exit_latency * 1000;
203 hub_mel = hub_exit_latency * 1000;
204 if (device_mel > hub_mel)
205 total_mel += device_mel;
206 else
207 total_mel += hub_mel;
209 udev_lpm_params->mel = total_mel;
213 * Set the maximum Device to Host Exit Latency (PEL) for the device to initiate
214 * a transition from either U1 or U2.
216 static void usb_set_lpm_pel(struct usb_device *udev,
217 struct usb3_lpm_parameters *udev_lpm_params,
218 unsigned int udev_exit_latency,
219 struct usb_hub *hub,
220 struct usb3_lpm_parameters *hub_lpm_params,
221 unsigned int hub_exit_latency,
222 unsigned int port_to_port_exit_latency)
224 unsigned int first_link_pel;
225 unsigned int hub_pel;
228 * First, the device sends an LFPS to transition the link between the
229 * device and the parent hub into U0. The exit latency is the bigger of
230 * the device exit latency or the hub exit latency.
232 if (udev_exit_latency > hub_exit_latency)
233 first_link_pel = udev_exit_latency * 1000;
234 else
235 first_link_pel = hub_exit_latency * 1000;
238 * When the hub starts to receive the LFPS, there is a slight delay for
239 * it to figure out that one of the ports is sending an LFPS. Then it
240 * will forward the LFPS to its upstream link. The exit latency is the
241 * delay, plus the PEL that we calculated for this hub.
243 hub_pel = port_to_port_exit_latency * 1000 + hub_lpm_params->pel;
246 * According to figure C-7 in the USB 3.0 spec, the PEL for this device
247 * is the greater of the two exit latencies.
249 if (first_link_pel > hub_pel)
250 udev_lpm_params->pel = first_link_pel;
251 else
252 udev_lpm_params->pel = hub_pel;
256 * Set the System Exit Latency (SEL) to indicate the total worst-case time from
257 * when a device initiates a transition to U0, until when it will receive the
258 * first packet from the host controller.
260 * Section C.1.5.1 describes the four components to this:
261 * - t1: device PEL
262 * - t2: time for the ERDY to make it from the device to the host.
263 * - t3: a host-specific delay to process the ERDY.
264 * - t4: time for the packet to make it from the host to the device.
266 * t3 is specific to both the xHCI host and the platform the host is integrated
267 * into. The Intel HW folks have said it's negligible, FIXME if a different
268 * vendor says otherwise.
270 static void usb_set_lpm_sel(struct usb_device *udev,
271 struct usb3_lpm_parameters *udev_lpm_params)
273 struct usb_device *parent;
274 unsigned int num_hubs;
275 unsigned int total_sel;
277 /* t1 = device PEL */
278 total_sel = udev_lpm_params->pel;
279 /* How many external hubs are in between the device & the root port. */
280 for (parent = udev->parent, num_hubs = 0; parent->parent;
281 parent = parent->parent)
282 num_hubs++;
283 /* t2 = 2.1us + 250ns * (num_hubs - 1) */
284 if (num_hubs > 0)
285 total_sel += 2100 + 250 * (num_hubs - 1);
287 /* t4 = 250ns * num_hubs */
288 total_sel += 250 * num_hubs;
290 udev_lpm_params->sel = total_sel;
293 static void usb_set_lpm_parameters(struct usb_device *udev)
295 struct usb_hub *hub;
296 unsigned int port_to_port_delay;
297 unsigned int udev_u1_del;
298 unsigned int udev_u2_del;
299 unsigned int hub_u1_del;
300 unsigned int hub_u2_del;
302 if (!udev->lpm_capable || udev->speed < USB_SPEED_SUPER)
303 return;
305 hub = usb_hub_to_struct_hub(udev->parent);
306 /* It doesn't take time to transition the roothub into U0, since it
307 * doesn't have an upstream link.
309 if (!hub)
310 return;
312 udev_u1_del = udev->bos->ss_cap->bU1devExitLat;
313 udev_u2_del = le16_to_cpu(udev->bos->ss_cap->bU2DevExitLat);
314 hub_u1_del = udev->parent->bos->ss_cap->bU1devExitLat;
315 hub_u2_del = le16_to_cpu(udev->parent->bos->ss_cap->bU2DevExitLat);
317 usb_set_lpm_mel(udev, &udev->u1_params, udev_u1_del,
318 hub, &udev->parent->u1_params, hub_u1_del);
320 usb_set_lpm_mel(udev, &udev->u2_params, udev_u2_del,
321 hub, &udev->parent->u2_params, hub_u2_del);
324 * Appendix C, section C.2.2.2, says that there is a slight delay from
325 * when the parent hub notices the downstream port is trying to
326 * transition to U0 to when the hub initiates a U0 transition on its
327 * upstream port. The section says the delays are tPort2PortU1EL and
328 * tPort2PortU2EL, but it doesn't define what they are.
330 * The hub chapter, sections 10.4.2.4 and 10.4.2.5 seem to be talking
331 * about the same delays. Use the maximum delay calculations from those
332 * sections. For U1, it's tHubPort2PortExitLat, which is 1us max. For
333 * U2, it's tHubPort2PortExitLat + U2DevExitLat - U1DevExitLat. I
334 * assume the device exit latencies they are talking about are the hub
335 * exit latencies.
337 * What do we do if the U2 exit latency is less than the U1 exit
338 * latency? It's possible, although not likely...
340 port_to_port_delay = 1;
342 usb_set_lpm_pel(udev, &udev->u1_params, udev_u1_del,
343 hub, &udev->parent->u1_params, hub_u1_del,
344 port_to_port_delay);
346 if (hub_u2_del > hub_u1_del)
347 port_to_port_delay = 1 + hub_u2_del - hub_u1_del;
348 else
349 port_to_port_delay = 1 + hub_u1_del;
351 usb_set_lpm_pel(udev, &udev->u2_params, udev_u2_del,
352 hub, &udev->parent->u2_params, hub_u2_del,
353 port_to_port_delay);
355 /* Now that we've got PEL, calculate SEL. */
356 usb_set_lpm_sel(udev, &udev->u1_params);
357 usb_set_lpm_sel(udev, &udev->u2_params);
360 /* USB 2.0 spec Section 11.24.4.5 */
361 static int get_hub_descriptor(struct usb_device *hdev,
362 struct usb_hub_descriptor *desc)
364 int i, ret, size;
365 unsigned dtype;
367 if (hub_is_superspeed(hdev)) {
368 dtype = USB_DT_SS_HUB;
369 size = USB_DT_SS_HUB_SIZE;
370 } else {
371 dtype = USB_DT_HUB;
372 size = sizeof(struct usb_hub_descriptor);
375 for (i = 0; i < 3; i++) {
376 ret = usb_control_msg(hdev, usb_rcvctrlpipe(hdev, 0),
377 USB_REQ_GET_DESCRIPTOR, USB_DIR_IN | USB_RT_HUB,
378 dtype << 8, 0, desc, size,
379 USB_CTRL_GET_TIMEOUT);
380 if (hub_is_superspeed(hdev)) {
381 if (ret == size)
382 return ret;
383 } else if (ret >= USB_DT_HUB_NONVAR_SIZE + 2) {
384 /* Make sure we have the DeviceRemovable field. */
385 size = USB_DT_HUB_NONVAR_SIZE + desc->bNbrPorts / 8 + 1;
386 if (ret < size)
387 return -EMSGSIZE;
388 return ret;
391 return -EINVAL;
395 * USB 2.0 spec Section 11.24.2.1
397 static int clear_hub_feature(struct usb_device *hdev, int feature)
399 return usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
400 USB_REQ_CLEAR_FEATURE, USB_RT_HUB, feature, 0, NULL, 0, 1000);
404 * USB 2.0 spec Section 11.24.2.2
406 int usb_clear_port_feature(struct usb_device *hdev, int port1, int feature)
408 return usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
409 USB_REQ_CLEAR_FEATURE, USB_RT_PORT, feature, port1,
410 NULL, 0, 1000);
414 * USB 2.0 spec Section 11.24.2.13
416 static int set_port_feature(struct usb_device *hdev, int port1, int feature)
418 return usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
419 USB_REQ_SET_FEATURE, USB_RT_PORT, feature, port1,
420 NULL, 0, 1000);
423 static char *to_led_name(int selector)
425 switch (selector) {
426 case HUB_LED_AMBER:
427 return "amber";
428 case HUB_LED_GREEN:
429 return "green";
430 case HUB_LED_OFF:
431 return "off";
432 case HUB_LED_AUTO:
433 return "auto";
434 default:
435 return "??";
440 * USB 2.0 spec Section 11.24.2.7.1.10 and table 11-7
441 * for info about using port indicators
443 static void set_port_led(struct usb_hub *hub, int port1, int selector)
445 struct usb_port *port_dev = hub->ports[port1 - 1];
446 int status;
448 status = set_port_feature(hub->hdev, (selector << 8) | port1,
449 USB_PORT_FEAT_INDICATOR);
450 dev_dbg(&port_dev->dev, "indicator %s status %d\n",
451 to_led_name(selector), status);
454 #define LED_CYCLE_PERIOD ((2*HZ)/3)
456 static void led_work(struct work_struct *work)
458 struct usb_hub *hub =
459 container_of(work, struct usb_hub, leds.work);
460 struct usb_device *hdev = hub->hdev;
461 unsigned i;
462 unsigned changed = 0;
463 int cursor = -1;
465 if (hdev->state != USB_STATE_CONFIGURED || hub->quiescing)
466 return;
468 for (i = 0; i < hdev->maxchild; i++) {
469 unsigned selector, mode;
471 /* 30%-50% duty cycle */
473 switch (hub->indicator[i]) {
474 /* cycle marker */
475 case INDICATOR_CYCLE:
476 cursor = i;
477 selector = HUB_LED_AUTO;
478 mode = INDICATOR_AUTO;
479 break;
480 /* blinking green = sw attention */
481 case INDICATOR_GREEN_BLINK:
482 selector = HUB_LED_GREEN;
483 mode = INDICATOR_GREEN_BLINK_OFF;
484 break;
485 case INDICATOR_GREEN_BLINK_OFF:
486 selector = HUB_LED_OFF;
487 mode = INDICATOR_GREEN_BLINK;
488 break;
489 /* blinking amber = hw attention */
490 case INDICATOR_AMBER_BLINK:
491 selector = HUB_LED_AMBER;
492 mode = INDICATOR_AMBER_BLINK_OFF;
493 break;
494 case INDICATOR_AMBER_BLINK_OFF:
495 selector = HUB_LED_OFF;
496 mode = INDICATOR_AMBER_BLINK;
497 break;
498 /* blink green/amber = reserved */
499 case INDICATOR_ALT_BLINK:
500 selector = HUB_LED_GREEN;
501 mode = INDICATOR_ALT_BLINK_OFF;
502 break;
503 case INDICATOR_ALT_BLINK_OFF:
504 selector = HUB_LED_AMBER;
505 mode = INDICATOR_ALT_BLINK;
506 break;
507 default:
508 continue;
510 if (selector != HUB_LED_AUTO)
511 changed = 1;
512 set_port_led(hub, i + 1, selector);
513 hub->indicator[i] = mode;
515 if (!changed && blinkenlights) {
516 cursor++;
517 cursor %= hdev->maxchild;
518 set_port_led(hub, cursor + 1, HUB_LED_GREEN);
519 hub->indicator[cursor] = INDICATOR_CYCLE;
520 changed++;
522 if (changed)
523 queue_delayed_work(system_power_efficient_wq,
524 &hub->leds, LED_CYCLE_PERIOD);
527 /* use a short timeout for hub/port status fetches */
528 #define USB_STS_TIMEOUT 1000
529 #define USB_STS_RETRIES 5
532 * USB 2.0 spec Section 11.24.2.6
534 static int get_hub_status(struct usb_device *hdev,
535 struct usb_hub_status *data)
537 int i, status = -ETIMEDOUT;
539 for (i = 0; i < USB_STS_RETRIES &&
540 (status == -ETIMEDOUT || status == -EPIPE); i++) {
541 status = usb_control_msg(hdev, usb_rcvctrlpipe(hdev, 0),
542 USB_REQ_GET_STATUS, USB_DIR_IN | USB_RT_HUB, 0, 0,
543 data, sizeof(*data), USB_STS_TIMEOUT);
545 return status;
549 * USB 2.0 spec Section 11.24.2.7
551 static int get_port_status(struct usb_device *hdev, int port1,
552 struct usb_port_status *data)
554 int i, status = -ETIMEDOUT;
556 for (i = 0; i < USB_STS_RETRIES &&
557 (status == -ETIMEDOUT || status == -EPIPE); i++) {
558 status = usb_control_msg(hdev, usb_rcvctrlpipe(hdev, 0),
559 USB_REQ_GET_STATUS, USB_DIR_IN | USB_RT_PORT, 0, port1,
560 data, sizeof(*data), USB_STS_TIMEOUT);
562 return status;
565 static int hub_port_status(struct usb_hub *hub, int port1,
566 u16 *status, u16 *change)
568 int ret;
570 mutex_lock(&hub->status_mutex);
571 ret = get_port_status(hub->hdev, port1, &hub->status->port);
572 if (ret < 4) {
573 if (ret != -ENODEV)
574 dev_err(hub->intfdev,
575 "%s failed (err = %d)\n", __func__, ret);
576 if (ret >= 0)
577 ret = -EIO;
578 } else {
579 *status = le16_to_cpu(hub->status->port.wPortStatus);
580 *change = le16_to_cpu(hub->status->port.wPortChange);
582 ret = 0;
584 mutex_unlock(&hub->status_mutex);
585 return ret;
588 static void kick_hub_wq(struct usb_hub *hub)
590 struct usb_interface *intf;
592 if (hub->disconnected || work_pending(&hub->events))
593 return;
596 * Suppress autosuspend until the event is proceed.
598 * Be careful and make sure that the symmetric operation is
599 * always called. We are here only when there is no pending
600 * work for this hub. Therefore put the interface either when
601 * the new work is called or when it is canceled.
603 intf = to_usb_interface(hub->intfdev);
604 usb_autopm_get_interface_no_resume(intf);
605 kref_get(&hub->kref);
607 if (queue_work(hub_wq, &hub->events))
608 return;
610 /* the work has already been scheduled */
611 usb_autopm_put_interface_async(intf);
612 kref_put(&hub->kref, hub_release);
615 void usb_kick_hub_wq(struct usb_device *hdev)
617 struct usb_hub *hub = usb_hub_to_struct_hub(hdev);
619 if (hub)
620 kick_hub_wq(hub);
624 * Let the USB core know that a USB 3.0 device has sent a Function Wake Device
625 * Notification, which indicates it had initiated remote wakeup.
627 * USB 3.0 hubs do not report the port link state change from U3 to U0 when the
628 * device initiates resume, so the USB core will not receive notice of the
629 * resume through the normal hub interrupt URB.
631 void usb_wakeup_notification(struct usb_device *hdev,
632 unsigned int portnum)
634 struct usb_hub *hub;
635 struct usb_port *port_dev;
637 if (!hdev)
638 return;
640 hub = usb_hub_to_struct_hub(hdev);
641 if (hub) {
642 port_dev = hub->ports[portnum - 1];
643 if (port_dev && port_dev->child)
644 pm_wakeup_event(&port_dev->child->dev, 0);
646 set_bit(portnum, hub->wakeup_bits);
647 kick_hub_wq(hub);
650 EXPORT_SYMBOL_GPL(usb_wakeup_notification);
652 /* completion function, fires on port status changes and various faults */
653 static void hub_irq(struct urb *urb)
655 struct usb_hub *hub = urb->context;
656 int status = urb->status;
657 unsigned i;
658 unsigned long bits;
660 switch (status) {
661 case -ENOENT: /* synchronous unlink */
662 case -ECONNRESET: /* async unlink */
663 case -ESHUTDOWN: /* hardware going away */
664 return;
666 default: /* presumably an error */
667 /* Cause a hub reset after 10 consecutive errors */
668 dev_dbg(hub->intfdev, "transfer --> %d\n", status);
669 if ((++hub->nerrors < 10) || hub->error)
670 goto resubmit;
671 hub->error = status;
672 /* FALL THROUGH */
674 /* let hub_wq handle things */
675 case 0: /* we got data: port status changed */
676 bits = 0;
677 for (i = 0; i < urb->actual_length; ++i)
678 bits |= ((unsigned long) ((*hub->buffer)[i]))
679 << (i*8);
680 hub->event_bits[0] = bits;
681 break;
684 hub->nerrors = 0;
686 /* Something happened, let hub_wq figure it out */
687 kick_hub_wq(hub);
689 resubmit:
690 if (hub->quiescing)
691 return;
693 status = usb_submit_urb(hub->urb, GFP_ATOMIC);
694 if (status != 0 && status != -ENODEV && status != -EPERM)
695 dev_err(hub->intfdev, "resubmit --> %d\n", status);
698 /* USB 2.0 spec Section 11.24.2.3 */
699 static inline int
700 hub_clear_tt_buffer(struct usb_device *hdev, u16 devinfo, u16 tt)
702 /* Need to clear both directions for control ep */
703 if (((devinfo >> 11) & USB_ENDPOINT_XFERTYPE_MASK) ==
704 USB_ENDPOINT_XFER_CONTROL) {
705 int status = usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
706 HUB_CLEAR_TT_BUFFER, USB_RT_PORT,
707 devinfo ^ 0x8000, tt, NULL, 0, 1000);
708 if (status)
709 return status;
711 return usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
712 HUB_CLEAR_TT_BUFFER, USB_RT_PORT, devinfo,
713 tt, NULL, 0, 1000);
717 * enumeration blocks hub_wq for a long time. we use keventd instead, since
718 * long blocking there is the exception, not the rule. accordingly, HCDs
719 * talking to TTs must queue control transfers (not just bulk and iso), so
720 * both can talk to the same hub concurrently.
722 static void hub_tt_work(struct work_struct *work)
724 struct usb_hub *hub =
725 container_of(work, struct usb_hub, tt.clear_work);
726 unsigned long flags;
728 spin_lock_irqsave(&hub->tt.lock, flags);
729 while (!list_empty(&hub->tt.clear_list)) {
730 struct list_head *next;
731 struct usb_tt_clear *clear;
732 struct usb_device *hdev = hub->hdev;
733 const struct hc_driver *drv;
734 int status;
736 next = hub->tt.clear_list.next;
737 clear = list_entry(next, struct usb_tt_clear, clear_list);
738 list_del(&clear->clear_list);
740 /* drop lock so HCD can concurrently report other TT errors */
741 spin_unlock_irqrestore(&hub->tt.lock, flags);
742 status = hub_clear_tt_buffer(hdev, clear->devinfo, clear->tt);
743 if (status && status != -ENODEV)
744 dev_err(&hdev->dev,
745 "clear tt %d (%04x) error %d\n",
746 clear->tt, clear->devinfo, status);
748 /* Tell the HCD, even if the operation failed */
749 drv = clear->hcd->driver;
750 if (drv->clear_tt_buffer_complete)
751 (drv->clear_tt_buffer_complete)(clear->hcd, clear->ep);
753 kfree(clear);
754 spin_lock_irqsave(&hub->tt.lock, flags);
756 spin_unlock_irqrestore(&hub->tt.lock, flags);
760 * usb_hub_set_port_power - control hub port's power state
761 * @hdev: USB device belonging to the usb hub
762 * @hub: target hub
763 * @port1: port index
764 * @set: expected status
766 * call this function to control port's power via setting or
767 * clearing the port's PORT_POWER feature.
769 * Return: 0 if successful. A negative error code otherwise.
771 int usb_hub_set_port_power(struct usb_device *hdev, struct usb_hub *hub,
772 int port1, bool set)
774 int ret;
776 if (set)
777 ret = set_port_feature(hdev, port1, USB_PORT_FEAT_POWER);
778 else
779 ret = usb_clear_port_feature(hdev, port1, USB_PORT_FEAT_POWER);
781 if (ret)
782 return ret;
784 if (set)
785 set_bit(port1, hub->power_bits);
786 else
787 clear_bit(port1, hub->power_bits);
788 return 0;
792 * usb_hub_clear_tt_buffer - clear control/bulk TT state in high speed hub
793 * @urb: an URB associated with the failed or incomplete split transaction
795 * High speed HCDs use this to tell the hub driver that some split control or
796 * bulk transaction failed in a way that requires clearing internal state of
797 * a transaction translator. This is normally detected (and reported) from
798 * interrupt context.
800 * It may not be possible for that hub to handle additional full (or low)
801 * speed transactions until that state is fully cleared out.
803 * Return: 0 if successful. A negative error code otherwise.
805 int usb_hub_clear_tt_buffer(struct urb *urb)
807 struct usb_device *udev = urb->dev;
808 int pipe = urb->pipe;
809 struct usb_tt *tt = udev->tt;
810 unsigned long flags;
811 struct usb_tt_clear *clear;
813 /* we've got to cope with an arbitrary number of pending TT clears,
814 * since each TT has "at least two" buffers that can need it (and
815 * there can be many TTs per hub). even if they're uncommon.
817 clear = kmalloc(sizeof *clear, GFP_ATOMIC);
818 if (clear == NULL) {
819 dev_err(&udev->dev, "can't save CLEAR_TT_BUFFER state\n");
820 /* FIXME recover somehow ... RESET_TT? */
821 return -ENOMEM;
824 /* info that CLEAR_TT_BUFFER needs */
825 clear->tt = tt->multi ? udev->ttport : 1;
826 clear->devinfo = usb_pipeendpoint (pipe);
827 clear->devinfo |= udev->devnum << 4;
828 clear->devinfo |= usb_pipecontrol(pipe)
829 ? (USB_ENDPOINT_XFER_CONTROL << 11)
830 : (USB_ENDPOINT_XFER_BULK << 11);
831 if (usb_pipein(pipe))
832 clear->devinfo |= 1 << 15;
834 /* info for completion callback */
835 clear->hcd = bus_to_hcd(udev->bus);
836 clear->ep = urb->ep;
838 /* tell keventd to clear state for this TT */
839 spin_lock_irqsave(&tt->lock, flags);
840 list_add_tail(&clear->clear_list, &tt->clear_list);
841 schedule_work(&tt->clear_work);
842 spin_unlock_irqrestore(&tt->lock, flags);
843 return 0;
845 EXPORT_SYMBOL_GPL(usb_hub_clear_tt_buffer);
847 static void hub_power_on(struct usb_hub *hub, bool do_delay)
849 int port1;
851 /* Enable power on each port. Some hubs have reserved values
852 * of LPSM (> 2) in their descriptors, even though they are
853 * USB 2.0 hubs. Some hubs do not implement port-power switching
854 * but only emulate it. In all cases, the ports won't work
855 * unless we send these messages to the hub.
857 if (hub_is_port_power_switchable(hub))
858 dev_dbg(hub->intfdev, "enabling power on all ports\n");
859 else
860 dev_dbg(hub->intfdev, "trying to enable port power on "
861 "non-switchable hub\n");
862 for (port1 = 1; port1 <= hub->hdev->maxchild; port1++)
863 if (test_bit(port1, hub->power_bits))
864 set_port_feature(hub->hdev, port1, USB_PORT_FEAT_POWER);
865 else
866 usb_clear_port_feature(hub->hdev, port1,
867 USB_PORT_FEAT_POWER);
868 if (do_delay)
869 msleep(hub_power_on_good_delay(hub));
872 static int hub_hub_status(struct usb_hub *hub,
873 u16 *status, u16 *change)
875 int ret;
877 mutex_lock(&hub->status_mutex);
878 ret = get_hub_status(hub->hdev, &hub->status->hub);
879 if (ret < 0) {
880 if (ret != -ENODEV)
881 dev_err(hub->intfdev,
882 "%s failed (err = %d)\n", __func__, ret);
883 } else {
884 *status = le16_to_cpu(hub->status->hub.wHubStatus);
885 *change = le16_to_cpu(hub->status->hub.wHubChange);
886 ret = 0;
888 mutex_unlock(&hub->status_mutex);
889 return ret;
892 static int hub_set_port_link_state(struct usb_hub *hub, int port1,
893 unsigned int link_status)
895 return set_port_feature(hub->hdev,
896 port1 | (link_status << 3),
897 USB_PORT_FEAT_LINK_STATE);
901 * Disable a port and mark a logical connect-change event, so that some
902 * time later hub_wq will disconnect() any existing usb_device on the port
903 * and will re-enumerate if there actually is a device attached.
905 static void hub_port_logical_disconnect(struct usb_hub *hub, int port1)
907 dev_dbg(&hub->ports[port1 - 1]->dev, "logical disconnect\n");
908 hub_port_disable(hub, port1, 1);
910 /* FIXME let caller ask to power down the port:
911 * - some devices won't enumerate without a VBUS power cycle
912 * - SRP saves power that way
913 * - ... new call, TBD ...
914 * That's easy if this hub can switch power per-port, and
915 * hub_wq reactivates the port later (timer, SRP, etc).
916 * Powerdown must be optional, because of reset/DFU.
919 set_bit(port1, hub->change_bits);
920 kick_hub_wq(hub);
924 * usb_remove_device - disable a device's port on its parent hub
925 * @udev: device to be disabled and removed
926 * Context: @udev locked, must be able to sleep.
928 * After @udev's port has been disabled, hub_wq is notified and it will
929 * see that the device has been disconnected. When the device is
930 * physically unplugged and something is plugged in, the events will
931 * be received and processed normally.
933 * Return: 0 if successful. A negative error code otherwise.
935 int usb_remove_device(struct usb_device *udev)
937 struct usb_hub *hub;
938 struct usb_interface *intf;
940 if (!udev->parent) /* Can't remove a root hub */
941 return -EINVAL;
942 hub = usb_hub_to_struct_hub(udev->parent);
943 intf = to_usb_interface(hub->intfdev);
945 usb_autopm_get_interface(intf);
946 set_bit(udev->portnum, hub->removed_bits);
947 hub_port_logical_disconnect(hub, udev->portnum);
948 usb_autopm_put_interface(intf);
949 return 0;
952 enum hub_activation_type {
953 HUB_INIT, HUB_INIT2, HUB_INIT3, /* INITs must come first */
954 HUB_POST_RESET, HUB_RESUME, HUB_RESET_RESUME,
957 static void hub_init_func2(struct work_struct *ws);
958 static void hub_init_func3(struct work_struct *ws);
960 static void hub_activate(struct usb_hub *hub, enum hub_activation_type type)
962 struct usb_device *hdev = hub->hdev;
963 struct usb_hcd *hcd;
964 int ret;
965 int port1;
966 int status;
967 bool need_debounce_delay = false;
968 unsigned delay;
970 /* Continue a partial initialization */
971 if (type == HUB_INIT2 || type == HUB_INIT3) {
972 device_lock(&hdev->dev);
974 /* Was the hub disconnected while we were waiting? */
975 if (hub->disconnected)
976 goto disconnected;
977 if (type == HUB_INIT2)
978 goto init2;
979 goto init3;
981 kref_get(&hub->kref);
983 /* The superspeed hub except for root hub has to use Hub Depth
984 * value as an offset into the route string to locate the bits
985 * it uses to determine the downstream port number. So hub driver
986 * should send a set hub depth request to superspeed hub after
987 * the superspeed hub is set configuration in initialization or
988 * reset procedure.
990 * After a resume, port power should still be on.
991 * For any other type of activation, turn it on.
993 if (type != HUB_RESUME) {
994 if (hdev->parent && hub_is_superspeed(hdev)) {
995 ret = usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
996 HUB_SET_DEPTH, USB_RT_HUB,
997 hdev->level - 1, 0, NULL, 0,
998 USB_CTRL_SET_TIMEOUT);
999 if (ret < 0)
1000 dev_err(hub->intfdev,
1001 "set hub depth failed\n");
1004 /* Speed up system boot by using a delayed_work for the
1005 * hub's initial power-up delays. This is pretty awkward
1006 * and the implementation looks like a home-brewed sort of
1007 * setjmp/longjmp, but it saves at least 100 ms for each
1008 * root hub (assuming usbcore is compiled into the kernel
1009 * rather than as a module). It adds up.
1011 * This can't be done for HUB_RESUME or HUB_RESET_RESUME
1012 * because for those activation types the ports have to be
1013 * operational when we return. In theory this could be done
1014 * for HUB_POST_RESET, but it's easier not to.
1016 if (type == HUB_INIT) {
1017 delay = hub_power_on_good_delay(hub);
1019 hub_power_on(hub, false);
1020 INIT_DELAYED_WORK(&hub->init_work, hub_init_func2);
1021 queue_delayed_work(system_power_efficient_wq,
1022 &hub->init_work,
1023 msecs_to_jiffies(delay));
1025 /* Suppress autosuspend until init is done */
1026 usb_autopm_get_interface_no_resume(
1027 to_usb_interface(hub->intfdev));
1028 return; /* Continues at init2: below */
1029 } else if (type == HUB_RESET_RESUME) {
1030 /* The internal host controller state for the hub device
1031 * may be gone after a host power loss on system resume.
1032 * Update the device's info so the HW knows it's a hub.
1034 hcd = bus_to_hcd(hdev->bus);
1035 if (hcd->driver->update_hub_device) {
1036 ret = hcd->driver->update_hub_device(hcd, hdev,
1037 &hub->tt, GFP_NOIO);
1038 if (ret < 0) {
1039 dev_err(hub->intfdev, "Host not "
1040 "accepting hub info "
1041 "update.\n");
1042 dev_err(hub->intfdev, "LS/FS devices "
1043 "and hubs may not work "
1044 "under this hub\n.");
1047 hub_power_on(hub, true);
1048 } else {
1049 hub_power_on(hub, true);
1052 init2:
1055 * Check each port and set hub->change_bits to let hub_wq know
1056 * which ports need attention.
1058 for (port1 = 1; port1 <= hdev->maxchild; ++port1) {
1059 struct usb_port *port_dev = hub->ports[port1 - 1];
1060 struct usb_device *udev = port_dev->child;
1061 u16 portstatus, portchange;
1063 portstatus = portchange = 0;
1064 status = hub_port_status(hub, port1, &portstatus, &portchange);
1065 if (status)
1066 goto abort;
1068 if (udev || (portstatus & USB_PORT_STAT_CONNECTION))
1069 dev_dbg(&port_dev->dev, "status %04x change %04x\n",
1070 portstatus, portchange);
1073 * After anything other than HUB_RESUME (i.e., initialization
1074 * or any sort of reset), every port should be disabled.
1075 * Unconnected ports should likewise be disabled (paranoia),
1076 * and so should ports for which we have no usb_device.
1078 if ((portstatus & USB_PORT_STAT_ENABLE) && (
1079 type != HUB_RESUME ||
1080 !(portstatus & USB_PORT_STAT_CONNECTION) ||
1081 !udev ||
1082 udev->state == USB_STATE_NOTATTACHED)) {
1084 * USB3 protocol ports will automatically transition
1085 * to Enabled state when detect an USB3.0 device attach.
1086 * Do not disable USB3 protocol ports, just pretend
1087 * power was lost
1089 portstatus &= ~USB_PORT_STAT_ENABLE;
1090 if (!hub_is_superspeed(hdev))
1091 usb_clear_port_feature(hdev, port1,
1092 USB_PORT_FEAT_ENABLE);
1095 /* Clear status-change flags; we'll debounce later */
1096 if (portchange & USB_PORT_STAT_C_CONNECTION) {
1097 need_debounce_delay = true;
1098 usb_clear_port_feature(hub->hdev, port1,
1099 USB_PORT_FEAT_C_CONNECTION);
1101 if (portchange & USB_PORT_STAT_C_ENABLE) {
1102 need_debounce_delay = true;
1103 usb_clear_port_feature(hub->hdev, port1,
1104 USB_PORT_FEAT_C_ENABLE);
1106 if (portchange & USB_PORT_STAT_C_RESET) {
1107 need_debounce_delay = true;
1108 usb_clear_port_feature(hub->hdev, port1,
1109 USB_PORT_FEAT_C_RESET);
1111 if ((portchange & USB_PORT_STAT_C_BH_RESET) &&
1112 hub_is_superspeed(hub->hdev)) {
1113 need_debounce_delay = true;
1114 usb_clear_port_feature(hub->hdev, port1,
1115 USB_PORT_FEAT_C_BH_PORT_RESET);
1117 /* We can forget about a "removed" device when there's a
1118 * physical disconnect or the connect status changes.
1120 if (!(portstatus & USB_PORT_STAT_CONNECTION) ||
1121 (portchange & USB_PORT_STAT_C_CONNECTION))
1122 clear_bit(port1, hub->removed_bits);
1124 if (!udev || udev->state == USB_STATE_NOTATTACHED) {
1125 /* Tell hub_wq to disconnect the device or
1126 * check for a new connection or over current condition.
1127 * Based on USB2.0 Spec Section 11.12.5,
1128 * C_PORT_OVER_CURRENT could be set while
1129 * PORT_OVER_CURRENT is not. So check for any of them.
1131 if (udev || (portstatus & USB_PORT_STAT_CONNECTION) ||
1132 (portstatus & USB_PORT_STAT_OVERCURRENT) ||
1133 (portchange & USB_PORT_STAT_C_OVERCURRENT))
1134 set_bit(port1, hub->change_bits);
1136 } else if (portstatus & USB_PORT_STAT_ENABLE) {
1137 bool port_resumed = (portstatus &
1138 USB_PORT_STAT_LINK_STATE) ==
1139 USB_SS_PORT_LS_U0;
1140 /* The power session apparently survived the resume.
1141 * If there was an overcurrent or suspend change
1142 * (i.e., remote wakeup request), have hub_wq
1143 * take care of it. Look at the port link state
1144 * for USB 3.0 hubs, since they don't have a suspend
1145 * change bit, and they don't set the port link change
1146 * bit on device-initiated resume.
1148 if (portchange || (hub_is_superspeed(hub->hdev) &&
1149 port_resumed))
1150 set_bit(port1, hub->change_bits);
1152 } else if (udev->persist_enabled) {
1153 #ifdef CONFIG_PM
1154 udev->reset_resume = 1;
1155 #endif
1156 /* Don't set the change_bits when the device
1157 * was powered off.
1159 if (test_bit(port1, hub->power_bits))
1160 set_bit(port1, hub->change_bits);
1162 } else {
1163 /* The power session is gone; tell hub_wq */
1164 usb_set_device_state(udev, USB_STATE_NOTATTACHED);
1165 set_bit(port1, hub->change_bits);
1169 /* If no port-status-change flags were set, we don't need any
1170 * debouncing. If flags were set we can try to debounce the
1171 * ports all at once right now, instead of letting hub_wq do them
1172 * one at a time later on.
1174 * If any port-status changes do occur during this delay, hub_wq
1175 * will see them later and handle them normally.
1177 if (need_debounce_delay) {
1178 delay = HUB_DEBOUNCE_STABLE;
1180 /* Don't do a long sleep inside a workqueue routine */
1181 if (type == HUB_INIT2) {
1182 INIT_DELAYED_WORK(&hub->init_work, hub_init_func3);
1183 queue_delayed_work(system_power_efficient_wq,
1184 &hub->init_work,
1185 msecs_to_jiffies(delay));
1186 device_unlock(&hdev->dev);
1187 return; /* Continues at init3: below */
1188 } else {
1189 msleep(delay);
1192 init3:
1193 hub->quiescing = 0;
1195 status = usb_submit_urb(hub->urb, GFP_NOIO);
1196 if (status < 0)
1197 dev_err(hub->intfdev, "activate --> %d\n", status);
1198 if (hub->has_indicators && blinkenlights)
1199 queue_delayed_work(system_power_efficient_wq,
1200 &hub->leds, LED_CYCLE_PERIOD);
1202 /* Scan all ports that need attention */
1203 kick_hub_wq(hub);
1204 abort:
1205 if (type == HUB_INIT2 || type == HUB_INIT3) {
1206 /* Allow autosuspend if it was suppressed */
1207 disconnected:
1208 usb_autopm_put_interface_async(to_usb_interface(hub->intfdev));
1209 device_unlock(&hdev->dev);
1212 kref_put(&hub->kref, hub_release);
1215 /* Implement the continuations for the delays above */
1216 static void hub_init_func2(struct work_struct *ws)
1218 struct usb_hub *hub = container_of(ws, struct usb_hub, init_work.work);
1220 hub_activate(hub, HUB_INIT2);
1223 static void hub_init_func3(struct work_struct *ws)
1225 struct usb_hub *hub = container_of(ws, struct usb_hub, init_work.work);
1227 hub_activate(hub, HUB_INIT3);
1230 enum hub_quiescing_type {
1231 HUB_DISCONNECT, HUB_PRE_RESET, HUB_SUSPEND
1234 static void hub_quiesce(struct usb_hub *hub, enum hub_quiescing_type type)
1236 struct usb_device *hdev = hub->hdev;
1237 int i;
1239 /* hub_wq and related activity won't re-trigger */
1240 hub->quiescing = 1;
1242 if (type != HUB_SUSPEND) {
1243 /* Disconnect all the children */
1244 for (i = 0; i < hdev->maxchild; ++i) {
1245 if (hub->ports[i]->child)
1246 usb_disconnect(&hub->ports[i]->child);
1250 /* Stop hub_wq and related activity */
1251 usb_kill_urb(hub->urb);
1252 if (hub->has_indicators)
1253 cancel_delayed_work_sync(&hub->leds);
1254 if (hub->tt.hub)
1255 flush_work(&hub->tt.clear_work);
1258 static void hub_pm_barrier_for_all_ports(struct usb_hub *hub)
1260 int i;
1262 for (i = 0; i < hub->hdev->maxchild; ++i)
1263 pm_runtime_barrier(&hub->ports[i]->dev);
1266 /* caller has locked the hub device */
1267 static int hub_pre_reset(struct usb_interface *intf)
1269 struct usb_hub *hub = usb_get_intfdata(intf);
1271 hub_quiesce(hub, HUB_PRE_RESET);
1272 hub->in_reset = 1;
1273 hub_pm_barrier_for_all_ports(hub);
1274 return 0;
1277 /* caller has locked the hub device */
1278 static int hub_post_reset(struct usb_interface *intf)
1280 struct usb_hub *hub = usb_get_intfdata(intf);
1282 hub->in_reset = 0;
1283 hub_pm_barrier_for_all_ports(hub);
1284 hub_activate(hub, HUB_POST_RESET);
1285 return 0;
1288 static int hub_configure(struct usb_hub *hub,
1289 struct usb_endpoint_descriptor *endpoint)
1291 struct usb_hcd *hcd;
1292 struct usb_device *hdev = hub->hdev;
1293 struct device *hub_dev = hub->intfdev;
1294 u16 hubstatus, hubchange;
1295 u16 wHubCharacteristics;
1296 unsigned int pipe;
1297 int maxp, ret, i;
1298 char *message = "out of memory";
1299 unsigned unit_load;
1300 unsigned full_load;
1301 unsigned maxchild;
1303 hub->buffer = kmalloc(sizeof(*hub->buffer), GFP_KERNEL);
1304 if (!hub->buffer) {
1305 ret = -ENOMEM;
1306 goto fail;
1309 hub->status = kmalloc(sizeof(*hub->status), GFP_KERNEL);
1310 if (!hub->status) {
1311 ret = -ENOMEM;
1312 goto fail;
1314 mutex_init(&hub->status_mutex);
1316 hub->descriptor = kzalloc(sizeof(*hub->descriptor), GFP_KERNEL);
1317 if (!hub->descriptor) {
1318 ret = -ENOMEM;
1319 goto fail;
1322 /* Request the entire hub descriptor.
1323 * hub->descriptor can handle USB_MAXCHILDREN ports,
1324 * but a (non-SS) hub can/will return fewer bytes here.
1326 ret = get_hub_descriptor(hdev, hub->descriptor);
1327 if (ret < 0) {
1328 message = "can't read hub descriptor";
1329 goto fail;
1332 maxchild = USB_MAXCHILDREN;
1333 if (hub_is_superspeed(hdev))
1334 maxchild = min_t(unsigned, maxchild, USB_SS_MAXPORTS);
1336 if (hub->descriptor->bNbrPorts > maxchild) {
1337 message = "hub has too many ports!";
1338 ret = -ENODEV;
1339 goto fail;
1340 } else if (hub->descriptor->bNbrPorts == 0) {
1341 message = "hub doesn't have any ports!";
1342 ret = -ENODEV;
1343 goto fail;
1346 maxchild = hub->descriptor->bNbrPorts;
1347 dev_info(hub_dev, "%d port%s detected\n", maxchild,
1348 (maxchild == 1) ? "" : "s");
1350 hub->ports = kzalloc(maxchild * sizeof(struct usb_port *), GFP_KERNEL);
1351 if (!hub->ports) {
1352 ret = -ENOMEM;
1353 goto fail;
1356 wHubCharacteristics = le16_to_cpu(hub->descriptor->wHubCharacteristics);
1357 if (hub_is_superspeed(hdev)) {
1358 unit_load = 150;
1359 full_load = 900;
1360 } else {
1361 unit_load = 100;
1362 full_load = 500;
1365 /* FIXME for USB 3.0, skip for now */
1366 if ((wHubCharacteristics & HUB_CHAR_COMPOUND) &&
1367 !(hub_is_superspeed(hdev))) {
1368 char portstr[USB_MAXCHILDREN + 1];
1370 for (i = 0; i < maxchild; i++)
1371 portstr[i] = hub->descriptor->u.hs.DeviceRemovable
1372 [((i + 1) / 8)] & (1 << ((i + 1) % 8))
1373 ? 'F' : 'R';
1374 portstr[maxchild] = 0;
1375 dev_dbg(hub_dev, "compound device; port removable status: %s\n", portstr);
1376 } else
1377 dev_dbg(hub_dev, "standalone hub\n");
1379 switch (wHubCharacteristics & HUB_CHAR_LPSM) {
1380 case HUB_CHAR_COMMON_LPSM:
1381 dev_dbg(hub_dev, "ganged power switching\n");
1382 break;
1383 case HUB_CHAR_INDV_PORT_LPSM:
1384 dev_dbg(hub_dev, "individual port power switching\n");
1385 break;
1386 case HUB_CHAR_NO_LPSM:
1387 case HUB_CHAR_LPSM:
1388 dev_dbg(hub_dev, "no power switching (usb 1.0)\n");
1389 break;
1392 switch (wHubCharacteristics & HUB_CHAR_OCPM) {
1393 case HUB_CHAR_COMMON_OCPM:
1394 dev_dbg(hub_dev, "global over-current protection\n");
1395 break;
1396 case HUB_CHAR_INDV_PORT_OCPM:
1397 dev_dbg(hub_dev, "individual port over-current protection\n");
1398 break;
1399 case HUB_CHAR_NO_OCPM:
1400 case HUB_CHAR_OCPM:
1401 dev_dbg(hub_dev, "no over-current protection\n");
1402 break;
1405 spin_lock_init(&hub->tt.lock);
1406 INIT_LIST_HEAD(&hub->tt.clear_list);
1407 INIT_WORK(&hub->tt.clear_work, hub_tt_work);
1408 switch (hdev->descriptor.bDeviceProtocol) {
1409 case USB_HUB_PR_FS:
1410 break;
1411 case USB_HUB_PR_HS_SINGLE_TT:
1412 dev_dbg(hub_dev, "Single TT\n");
1413 hub->tt.hub = hdev;
1414 break;
1415 case USB_HUB_PR_HS_MULTI_TT:
1416 ret = usb_set_interface(hdev, 0, 1);
1417 if (ret == 0) {
1418 dev_dbg(hub_dev, "TT per port\n");
1419 hub->tt.multi = 1;
1420 } else
1421 dev_err(hub_dev, "Using single TT (err %d)\n",
1422 ret);
1423 hub->tt.hub = hdev;
1424 break;
1425 case USB_HUB_PR_SS:
1426 /* USB 3.0 hubs don't have a TT */
1427 break;
1428 default:
1429 dev_dbg(hub_dev, "Unrecognized hub protocol %d\n",
1430 hdev->descriptor.bDeviceProtocol);
1431 break;
1434 /* Note 8 FS bit times == (8 bits / 12000000 bps) ~= 666ns */
1435 switch (wHubCharacteristics & HUB_CHAR_TTTT) {
1436 case HUB_TTTT_8_BITS:
1437 if (hdev->descriptor.bDeviceProtocol != 0) {
1438 hub->tt.think_time = 666;
1439 dev_dbg(hub_dev, "TT requires at most %d "
1440 "FS bit times (%d ns)\n",
1441 8, hub->tt.think_time);
1443 break;
1444 case HUB_TTTT_16_BITS:
1445 hub->tt.think_time = 666 * 2;
1446 dev_dbg(hub_dev, "TT requires at most %d "
1447 "FS bit times (%d ns)\n",
1448 16, hub->tt.think_time);
1449 break;
1450 case HUB_TTTT_24_BITS:
1451 hub->tt.think_time = 666 * 3;
1452 dev_dbg(hub_dev, "TT requires at most %d "
1453 "FS bit times (%d ns)\n",
1454 24, hub->tt.think_time);
1455 break;
1456 case HUB_TTTT_32_BITS:
1457 hub->tt.think_time = 666 * 4;
1458 dev_dbg(hub_dev, "TT requires at most %d "
1459 "FS bit times (%d ns)\n",
1460 32, hub->tt.think_time);
1461 break;
1464 /* probe() zeroes hub->indicator[] */
1465 if (wHubCharacteristics & HUB_CHAR_PORTIND) {
1466 hub->has_indicators = 1;
1467 dev_dbg(hub_dev, "Port indicators are supported\n");
1470 dev_dbg(hub_dev, "power on to power good time: %dms\n",
1471 hub->descriptor->bPwrOn2PwrGood * 2);
1473 /* power budgeting mostly matters with bus-powered hubs,
1474 * and battery-powered root hubs (may provide just 8 mA).
1476 ret = usb_get_status(hdev, USB_RECIP_DEVICE, 0, &hubstatus);
1477 if (ret) {
1478 message = "can't get hub status";
1479 goto fail;
1481 hcd = bus_to_hcd(hdev->bus);
1482 if (hdev == hdev->bus->root_hub) {
1483 if (hcd->power_budget > 0)
1484 hdev->bus_mA = hcd->power_budget;
1485 else
1486 hdev->bus_mA = full_load * maxchild;
1487 if (hdev->bus_mA >= full_load)
1488 hub->mA_per_port = full_load;
1489 else {
1490 hub->mA_per_port = hdev->bus_mA;
1491 hub->limited_power = 1;
1493 } else if ((hubstatus & (1 << USB_DEVICE_SELF_POWERED)) == 0) {
1494 int remaining = hdev->bus_mA -
1495 hub->descriptor->bHubContrCurrent;
1497 dev_dbg(hub_dev, "hub controller current requirement: %dmA\n",
1498 hub->descriptor->bHubContrCurrent);
1499 hub->limited_power = 1;
1501 if (remaining < maxchild * unit_load)
1502 dev_warn(hub_dev,
1503 "insufficient power available "
1504 "to use all downstream ports\n");
1505 hub->mA_per_port = unit_load; /* 7.2.1 */
1507 } else { /* Self-powered external hub */
1508 /* FIXME: What about battery-powered external hubs that
1509 * provide less current per port? */
1510 hub->mA_per_port = full_load;
1512 if (hub->mA_per_port < full_load)
1513 dev_dbg(hub_dev, "%umA bus power budget for each child\n",
1514 hub->mA_per_port);
1516 ret = hub_hub_status(hub, &hubstatus, &hubchange);
1517 if (ret < 0) {
1518 message = "can't get hub status";
1519 goto fail;
1522 /* local power status reports aren't always correct */
1523 if (hdev->actconfig->desc.bmAttributes & USB_CONFIG_ATT_SELFPOWER)
1524 dev_dbg(hub_dev, "local power source is %s\n",
1525 (hubstatus & HUB_STATUS_LOCAL_POWER)
1526 ? "lost (inactive)" : "good");
1528 if ((wHubCharacteristics & HUB_CHAR_OCPM) == 0)
1529 dev_dbg(hub_dev, "%sover-current condition exists\n",
1530 (hubstatus & HUB_STATUS_OVERCURRENT) ? "" : "no ");
1532 /* set up the interrupt endpoint
1533 * We use the EP's maxpacket size instead of (PORTS+1+7)/8
1534 * bytes as USB2.0[11.12.3] says because some hubs are known
1535 * to send more data (and thus cause overflow). For root hubs,
1536 * maxpktsize is defined in hcd.c's fake endpoint descriptors
1537 * to be big enough for at least USB_MAXCHILDREN ports. */
1538 pipe = usb_rcvintpipe(hdev, endpoint->bEndpointAddress);
1539 maxp = usb_maxpacket(hdev, pipe, usb_pipeout(pipe));
1541 if (maxp > sizeof(*hub->buffer))
1542 maxp = sizeof(*hub->buffer);
1544 hub->urb = usb_alloc_urb(0, GFP_KERNEL);
1545 if (!hub->urb) {
1546 ret = -ENOMEM;
1547 goto fail;
1550 usb_fill_int_urb(hub->urb, hdev, pipe, *hub->buffer, maxp, hub_irq,
1551 hub, endpoint->bInterval);
1553 /* maybe cycle the hub leds */
1554 if (hub->has_indicators && blinkenlights)
1555 hub->indicator[0] = INDICATOR_CYCLE;
1557 mutex_lock(&usb_port_peer_mutex);
1558 for (i = 0; i < maxchild; i++) {
1559 ret = usb_hub_create_port_device(hub, i + 1);
1560 if (ret < 0) {
1561 dev_err(hub->intfdev,
1562 "couldn't create port%d device.\n", i + 1);
1563 break;
1566 hdev->maxchild = i;
1567 for (i = 0; i < hdev->maxchild; i++) {
1568 struct usb_port *port_dev = hub->ports[i];
1570 pm_runtime_put(&port_dev->dev);
1573 mutex_unlock(&usb_port_peer_mutex);
1574 if (ret < 0)
1575 goto fail;
1577 /* Update the HCD's internal representation of this hub before hub_wq
1578 * starts getting port status changes for devices under the hub.
1580 if (hcd->driver->update_hub_device) {
1581 ret = hcd->driver->update_hub_device(hcd, hdev,
1582 &hub->tt, GFP_KERNEL);
1583 if (ret < 0) {
1584 message = "can't update HCD hub info";
1585 goto fail;
1589 usb_hub_adjust_deviceremovable(hdev, hub->descriptor);
1591 hub_activate(hub, HUB_INIT);
1592 return 0;
1594 fail:
1595 dev_err(hub_dev, "config failed, %s (err %d)\n",
1596 message, ret);
1597 /* hub_disconnect() frees urb and descriptor */
1598 return ret;
1601 static void hub_release(struct kref *kref)
1603 struct usb_hub *hub = container_of(kref, struct usb_hub, kref);
1605 usb_put_dev(hub->hdev);
1606 usb_put_intf(to_usb_interface(hub->intfdev));
1607 kfree(hub);
1610 static unsigned highspeed_hubs;
1612 static void hub_disconnect(struct usb_interface *intf)
1614 struct usb_hub *hub = usb_get_intfdata(intf);
1615 struct usb_device *hdev = interface_to_usbdev(intf);
1616 int port1;
1619 * Stop adding new hub events. We do not want to block here and thus
1620 * will not try to remove any pending work item.
1622 hub->disconnected = 1;
1624 /* Disconnect all children and quiesce the hub */
1625 hub->error = 0;
1626 hub_quiesce(hub, HUB_DISCONNECT);
1628 mutex_lock(&usb_port_peer_mutex);
1630 /* Avoid races with recursively_mark_NOTATTACHED() */
1631 spin_lock_irq(&device_state_lock);
1632 port1 = hdev->maxchild;
1633 hdev->maxchild = 0;
1634 usb_set_intfdata(intf, NULL);
1635 spin_unlock_irq(&device_state_lock);
1637 for (; port1 > 0; --port1)
1638 usb_hub_remove_port_device(hub, port1);
1640 mutex_unlock(&usb_port_peer_mutex);
1642 if (hub->hdev->speed == USB_SPEED_HIGH)
1643 highspeed_hubs--;
1645 usb_free_urb(hub->urb);
1646 kfree(hub->ports);
1647 kfree(hub->descriptor);
1648 kfree(hub->status);
1649 kfree(hub->buffer);
1651 pm_suspend_ignore_children(&intf->dev, false);
1652 kref_put(&hub->kref, hub_release);
1655 static int hub_probe(struct usb_interface *intf, const struct usb_device_id *id)
1657 struct usb_host_interface *desc;
1658 struct usb_endpoint_descriptor *endpoint;
1659 struct usb_device *hdev;
1660 struct usb_hub *hub;
1662 desc = intf->cur_altsetting;
1663 hdev = interface_to_usbdev(intf);
1666 * Set default autosuspend delay as 0 to speedup bus suspend,
1667 * based on the below considerations:
1669 * - Unlike other drivers, the hub driver does not rely on the
1670 * autosuspend delay to provide enough time to handle a wakeup
1671 * event, and the submitted status URB is just to check future
1672 * change on hub downstream ports, so it is safe to do it.
1674 * - The patch might cause one or more auto supend/resume for
1675 * below very rare devices when they are plugged into hub
1676 * first time:
1678 * devices having trouble initializing, and disconnect
1679 * themselves from the bus and then reconnect a second
1680 * or so later
1682 * devices just for downloading firmware, and disconnects
1683 * themselves after completing it
1685 * For these quite rare devices, their drivers may change the
1686 * autosuspend delay of their parent hub in the probe() to one
1687 * appropriate value to avoid the subtle problem if someone
1688 * does care it.
1690 * - The patch may cause one or more auto suspend/resume on
1691 * hub during running 'lsusb', but it is probably too
1692 * infrequent to worry about.
1694 * - Change autosuspend delay of hub can avoid unnecessary auto
1695 * suspend timer for hub, also may decrease power consumption
1696 * of USB bus.
1698 * - If user has indicated to prevent autosuspend by passing
1699 * usbcore.autosuspend = -1 then keep autosuspend disabled.
1701 #ifdef CONFIG_PM
1702 if (hdev->dev.power.autosuspend_delay >= 0)
1703 pm_runtime_set_autosuspend_delay(&hdev->dev, 0);
1704 #endif
1707 * Hubs have proper suspend/resume support, except for root hubs
1708 * where the controller driver doesn't have bus_suspend and
1709 * bus_resume methods.
1711 if (hdev->parent) { /* normal device */
1712 usb_enable_autosuspend(hdev);
1713 } else { /* root hub */
1714 const struct hc_driver *drv = bus_to_hcd(hdev->bus)->driver;
1716 if (drv->bus_suspend && drv->bus_resume)
1717 usb_enable_autosuspend(hdev);
1720 if (hdev->level == MAX_TOPO_LEVEL) {
1721 dev_err(&intf->dev,
1722 "Unsupported bus topology: hub nested too deep\n");
1723 return -E2BIG;
1726 #ifdef CONFIG_USB_OTG_BLACKLIST_HUB
1727 if (hdev->parent) {
1728 dev_warn(&intf->dev, "ignoring external hub\n");
1729 return -ENODEV;
1731 #endif
1733 /* Some hubs have a subclass of 1, which AFAICT according to the */
1734 /* specs is not defined, but it works */
1735 if ((desc->desc.bInterfaceSubClass != 0) &&
1736 (desc->desc.bInterfaceSubClass != 1)) {
1737 descriptor_error:
1738 dev_err(&intf->dev, "bad descriptor, ignoring hub\n");
1739 return -EIO;
1742 /* Multiple endpoints? What kind of mutant ninja-hub is this? */
1743 if (desc->desc.bNumEndpoints != 1)
1744 goto descriptor_error;
1746 endpoint = &desc->endpoint[0].desc;
1748 /* If it's not an interrupt in endpoint, we'd better punt! */
1749 if (!usb_endpoint_is_int_in(endpoint))
1750 goto descriptor_error;
1752 /* We found a hub */
1753 dev_info(&intf->dev, "USB hub found\n");
1755 hub = kzalloc(sizeof(*hub), GFP_KERNEL);
1756 if (!hub) {
1757 dev_dbg(&intf->dev, "couldn't kmalloc hub struct\n");
1758 return -ENOMEM;
1761 kref_init(&hub->kref);
1762 hub->intfdev = &intf->dev;
1763 hub->hdev = hdev;
1764 INIT_DELAYED_WORK(&hub->leds, led_work);
1765 INIT_DELAYED_WORK(&hub->init_work, NULL);
1766 INIT_WORK(&hub->events, hub_event);
1767 usb_get_intf(intf);
1768 usb_get_dev(hdev);
1770 usb_set_intfdata(intf, hub);
1771 intf->needs_remote_wakeup = 1;
1772 pm_suspend_ignore_children(&intf->dev, true);
1774 if (hdev->speed == USB_SPEED_HIGH)
1775 highspeed_hubs++;
1777 if (id->driver_info & HUB_QUIRK_CHECK_PORT_AUTOSUSPEND)
1778 hub->quirk_check_port_auto_suspend = 1;
1780 if (hub_configure(hub, endpoint) >= 0)
1781 return 0;
1783 hub_disconnect(intf);
1784 return -ENODEV;
1787 static int
1788 hub_ioctl(struct usb_interface *intf, unsigned int code, void *user_data)
1790 struct usb_device *hdev = interface_to_usbdev(intf);
1791 struct usb_hub *hub = usb_hub_to_struct_hub(hdev);
1793 /* assert ifno == 0 (part of hub spec) */
1794 switch (code) {
1795 case USBDEVFS_HUB_PORTINFO: {
1796 struct usbdevfs_hub_portinfo *info = user_data;
1797 int i;
1799 spin_lock_irq(&device_state_lock);
1800 if (hdev->devnum <= 0)
1801 info->nports = 0;
1802 else {
1803 info->nports = hdev->maxchild;
1804 for (i = 0; i < info->nports; i++) {
1805 if (hub->ports[i]->child == NULL)
1806 info->port[i] = 0;
1807 else
1808 info->port[i] =
1809 hub->ports[i]->child->devnum;
1812 spin_unlock_irq(&device_state_lock);
1814 return info->nports + 1;
1817 default:
1818 return -ENOSYS;
1823 * Allow user programs to claim ports on a hub. When a device is attached
1824 * to one of these "claimed" ports, the program will "own" the device.
1826 static int find_port_owner(struct usb_device *hdev, unsigned port1,
1827 struct usb_dev_state ***ppowner)
1829 struct usb_hub *hub = usb_hub_to_struct_hub(hdev);
1831 if (hdev->state == USB_STATE_NOTATTACHED)
1832 return -ENODEV;
1833 if (port1 == 0 || port1 > hdev->maxchild)
1834 return -EINVAL;
1836 /* Devices not managed by the hub driver
1837 * will always have maxchild equal to 0.
1839 *ppowner = &(hub->ports[port1 - 1]->port_owner);
1840 return 0;
1843 /* In the following three functions, the caller must hold hdev's lock */
1844 int usb_hub_claim_port(struct usb_device *hdev, unsigned port1,
1845 struct usb_dev_state *owner)
1847 int rc;
1848 struct usb_dev_state **powner;
1850 rc = find_port_owner(hdev, port1, &powner);
1851 if (rc)
1852 return rc;
1853 if (*powner)
1854 return -EBUSY;
1855 *powner = owner;
1856 return rc;
1858 EXPORT_SYMBOL_GPL(usb_hub_claim_port);
1860 int usb_hub_release_port(struct usb_device *hdev, unsigned port1,
1861 struct usb_dev_state *owner)
1863 int rc;
1864 struct usb_dev_state **powner;
1866 rc = find_port_owner(hdev, port1, &powner);
1867 if (rc)
1868 return rc;
1869 if (*powner != owner)
1870 return -ENOENT;
1871 *powner = NULL;
1872 return rc;
1874 EXPORT_SYMBOL_GPL(usb_hub_release_port);
1876 void usb_hub_release_all_ports(struct usb_device *hdev, struct usb_dev_state *owner)
1878 struct usb_hub *hub = usb_hub_to_struct_hub(hdev);
1879 int n;
1881 for (n = 0; n < hdev->maxchild; n++) {
1882 if (hub->ports[n]->port_owner == owner)
1883 hub->ports[n]->port_owner = NULL;
1888 /* The caller must hold udev's lock */
1889 bool usb_device_is_owned(struct usb_device *udev)
1891 struct usb_hub *hub;
1893 if (udev->state == USB_STATE_NOTATTACHED || !udev->parent)
1894 return false;
1895 hub = usb_hub_to_struct_hub(udev->parent);
1896 return !!hub->ports[udev->portnum - 1]->port_owner;
1899 static void recursively_mark_NOTATTACHED(struct usb_device *udev)
1901 struct usb_hub *hub = usb_hub_to_struct_hub(udev);
1902 int i;
1904 for (i = 0; i < udev->maxchild; ++i) {
1905 if (hub->ports[i]->child)
1906 recursively_mark_NOTATTACHED(hub->ports[i]->child);
1908 if (udev->state == USB_STATE_SUSPENDED)
1909 udev->active_duration -= jiffies;
1910 udev->state = USB_STATE_NOTATTACHED;
1914 * usb_set_device_state - change a device's current state (usbcore, hcds)
1915 * @udev: pointer to device whose state should be changed
1916 * @new_state: new state value to be stored
1918 * udev->state is _not_ fully protected by the device lock. Although
1919 * most transitions are made only while holding the lock, the state can
1920 * can change to USB_STATE_NOTATTACHED at almost any time. This
1921 * is so that devices can be marked as disconnected as soon as possible,
1922 * without having to wait for any semaphores to be released. As a result,
1923 * all changes to any device's state must be protected by the
1924 * device_state_lock spinlock.
1926 * Once a device has been added to the device tree, all changes to its state
1927 * should be made using this routine. The state should _not_ be set directly.
1929 * If udev->state is already USB_STATE_NOTATTACHED then no change is made.
1930 * Otherwise udev->state is set to new_state, and if new_state is
1931 * USB_STATE_NOTATTACHED then all of udev's descendants' states are also set
1932 * to USB_STATE_NOTATTACHED.
1934 void usb_set_device_state(struct usb_device *udev,
1935 enum usb_device_state new_state)
1937 unsigned long flags;
1938 int wakeup = -1;
1940 spin_lock_irqsave(&device_state_lock, flags);
1941 if (udev->state == USB_STATE_NOTATTACHED)
1942 ; /* do nothing */
1943 else if (new_state != USB_STATE_NOTATTACHED) {
1945 /* root hub wakeup capabilities are managed out-of-band
1946 * and may involve silicon errata ... ignore them here.
1948 if (udev->parent) {
1949 if (udev->state == USB_STATE_SUSPENDED
1950 || new_state == USB_STATE_SUSPENDED)
1951 ; /* No change to wakeup settings */
1952 else if (new_state == USB_STATE_CONFIGURED)
1953 wakeup = (udev->quirks &
1954 USB_QUIRK_IGNORE_REMOTE_WAKEUP) ? 0 :
1955 udev->actconfig->desc.bmAttributes &
1956 USB_CONFIG_ATT_WAKEUP;
1957 else
1958 wakeup = 0;
1960 if (udev->state == USB_STATE_SUSPENDED &&
1961 new_state != USB_STATE_SUSPENDED)
1962 udev->active_duration -= jiffies;
1963 else if (new_state == USB_STATE_SUSPENDED &&
1964 udev->state != USB_STATE_SUSPENDED)
1965 udev->active_duration += jiffies;
1966 udev->state = new_state;
1967 } else
1968 recursively_mark_NOTATTACHED(udev);
1969 spin_unlock_irqrestore(&device_state_lock, flags);
1970 if (wakeup >= 0)
1971 device_set_wakeup_capable(&udev->dev, wakeup);
1973 EXPORT_SYMBOL_GPL(usb_set_device_state);
1976 * Choose a device number.
1978 * Device numbers are used as filenames in usbfs. On USB-1.1 and
1979 * USB-2.0 buses they are also used as device addresses, however on
1980 * USB-3.0 buses the address is assigned by the controller hardware
1981 * and it usually is not the same as the device number.
1983 * WUSB devices are simple: they have no hubs behind, so the mapping
1984 * device <-> virtual port number becomes 1:1. Why? to simplify the
1985 * life of the device connection logic in
1986 * drivers/usb/wusbcore/devconnect.c. When we do the initial secret
1987 * handshake we need to assign a temporary address in the unauthorized
1988 * space. For simplicity we use the first virtual port number found to
1989 * be free [drivers/usb/wusbcore/devconnect.c:wusbhc_devconnect_ack()]
1990 * and that becomes it's address [X < 128] or its unauthorized address
1991 * [X | 0x80].
1993 * We add 1 as an offset to the one-based USB-stack port number
1994 * (zero-based wusb virtual port index) for two reasons: (a) dev addr
1995 * 0 is reserved by USB for default address; (b) Linux's USB stack
1996 * uses always #1 for the root hub of the controller. So USB stack's
1997 * port #1, which is wusb virtual-port #0 has address #2.
1999 * Devices connected under xHCI are not as simple. The host controller
2000 * supports virtualization, so the hardware assigns device addresses and
2001 * the HCD must setup data structures before issuing a set address
2002 * command to the hardware.
2004 static void choose_devnum(struct usb_device *udev)
2006 int devnum;
2007 struct usb_bus *bus = udev->bus;
2009 /* be safe when more hub events are proceed in parallel */
2010 mutex_lock(&bus->devnum_next_mutex);
2011 if (udev->wusb) {
2012 devnum = udev->portnum + 1;
2013 BUG_ON(test_bit(devnum, bus->devmap.devicemap));
2014 } else {
2015 /* Try to allocate the next devnum beginning at
2016 * bus->devnum_next. */
2017 devnum = find_next_zero_bit(bus->devmap.devicemap, 128,
2018 bus->devnum_next);
2019 if (devnum >= 128)
2020 devnum = find_next_zero_bit(bus->devmap.devicemap,
2021 128, 1);
2022 bus->devnum_next = (devnum >= 127 ? 1 : devnum + 1);
2024 if (devnum < 128) {
2025 set_bit(devnum, bus->devmap.devicemap);
2026 udev->devnum = devnum;
2028 mutex_unlock(&bus->devnum_next_mutex);
2031 static void release_devnum(struct usb_device *udev)
2033 if (udev->devnum > 0) {
2034 clear_bit(udev->devnum, udev->bus->devmap.devicemap);
2035 udev->devnum = -1;
2039 static void update_devnum(struct usb_device *udev, int devnum)
2041 /* The address for a WUSB device is managed by wusbcore. */
2042 if (!udev->wusb)
2043 udev->devnum = devnum;
2046 static void hub_free_dev(struct usb_device *udev)
2048 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
2050 /* Root hubs aren't real devices, so don't free HCD resources */
2051 if (hcd->driver->free_dev && udev->parent)
2052 hcd->driver->free_dev(hcd, udev);
2055 static void hub_disconnect_children(struct usb_device *udev)
2057 struct usb_hub *hub = usb_hub_to_struct_hub(udev);
2058 int i;
2060 /* Free up all the children before we remove this device */
2061 for (i = 0; i < udev->maxchild; i++) {
2062 if (hub->ports[i]->child)
2063 usb_disconnect(&hub->ports[i]->child);
2068 * usb_disconnect - disconnect a device (usbcore-internal)
2069 * @pdev: pointer to device being disconnected
2070 * Context: !in_interrupt ()
2072 * Something got disconnected. Get rid of it and all of its children.
2074 * If *pdev is a normal device then the parent hub must already be locked.
2075 * If *pdev is a root hub then the caller must hold the usb_bus_list_lock,
2076 * which protects the set of root hubs as well as the list of buses.
2078 * Only hub drivers (including virtual root hub drivers for host
2079 * controllers) should ever call this.
2081 * This call is synchronous, and may not be used in an interrupt context.
2083 void usb_disconnect(struct usb_device **pdev)
2085 struct usb_port *port_dev = NULL;
2086 struct usb_device *udev = *pdev;
2087 struct usb_hub *hub = NULL;
2088 int port1 = 1;
2090 /* mark the device as inactive, so any further urb submissions for
2091 * this device (and any of its children) will fail immediately.
2092 * this quiesces everything except pending urbs.
2094 usb_set_device_state(udev, USB_STATE_NOTATTACHED);
2095 dev_info(&udev->dev, "USB disconnect, device number %d\n",
2096 udev->devnum);
2099 * Ensure that the pm runtime code knows that the USB device
2100 * is in the process of being disconnected.
2102 pm_runtime_barrier(&udev->dev);
2104 usb_lock_device(udev);
2106 hub_disconnect_children(udev);
2108 /* deallocate hcd/hardware state ... nuking all pending urbs and
2109 * cleaning up all state associated with the current configuration
2110 * so that the hardware is now fully quiesced.
2112 dev_dbg(&udev->dev, "unregistering device\n");
2113 usb_disable_device(udev, 0);
2114 usb_hcd_synchronize_unlinks(udev);
2116 if (udev->parent) {
2117 port1 = udev->portnum;
2118 hub = usb_hub_to_struct_hub(udev->parent);
2119 port_dev = hub->ports[port1 - 1];
2121 sysfs_remove_link(&udev->dev.kobj, "port");
2122 sysfs_remove_link(&port_dev->dev.kobj, "device");
2125 * As usb_port_runtime_resume() de-references udev, make
2126 * sure no resumes occur during removal
2128 if (!test_and_set_bit(port1, hub->child_usage_bits))
2129 pm_runtime_get_sync(&port_dev->dev);
2132 usb_remove_ep_devs(&udev->ep0);
2133 usb_unlock_device(udev);
2135 /* Unregister the device. The device driver is responsible
2136 * for de-configuring the device and invoking the remove-device
2137 * notifier chain (used by usbfs and possibly others).
2139 device_del(&udev->dev);
2141 /* Free the device number and delete the parent's children[]
2142 * (or root_hub) pointer.
2144 release_devnum(udev);
2146 /* Avoid races with recursively_mark_NOTATTACHED() */
2147 spin_lock_irq(&device_state_lock);
2148 *pdev = NULL;
2149 spin_unlock_irq(&device_state_lock);
2151 if (port_dev && test_and_clear_bit(port1, hub->child_usage_bits))
2152 pm_runtime_put(&port_dev->dev);
2154 hub_free_dev(udev);
2156 put_device(&udev->dev);
2159 #ifdef CONFIG_USB_ANNOUNCE_NEW_DEVICES
2160 static void show_string(struct usb_device *udev, char *id, char *string)
2162 if (!string)
2163 return;
2164 dev_info(&udev->dev, "%s: %s\n", id, string);
2167 static void announce_device(struct usb_device *udev)
2169 dev_info(&udev->dev, "New USB device found, idVendor=%04x, idProduct=%04x\n",
2170 le16_to_cpu(udev->descriptor.idVendor),
2171 le16_to_cpu(udev->descriptor.idProduct));
2172 dev_info(&udev->dev,
2173 "New USB device strings: Mfr=%d, Product=%d, SerialNumber=%d\n",
2174 udev->descriptor.iManufacturer,
2175 udev->descriptor.iProduct,
2176 udev->descriptor.iSerialNumber);
2177 show_string(udev, "Product", udev->product);
2178 show_string(udev, "Manufacturer", udev->manufacturer);
2179 show_string(udev, "SerialNumber", udev->serial);
2181 #else
2182 static inline void announce_device(struct usb_device *udev) { }
2183 #endif
2187 * usb_enumerate_device_otg - FIXME (usbcore-internal)
2188 * @udev: newly addressed device (in ADDRESS state)
2190 * Finish enumeration for On-The-Go devices
2192 * Return: 0 if successful. A negative error code otherwise.
2194 static int usb_enumerate_device_otg(struct usb_device *udev)
2196 int err = 0;
2198 #ifdef CONFIG_USB_OTG
2200 * OTG-aware devices on OTG-capable root hubs may be able to use SRP,
2201 * to wake us after we've powered off VBUS; and HNP, switching roles
2202 * "host" to "peripheral". The OTG descriptor helps figure this out.
2204 if (!udev->bus->is_b_host
2205 && udev->config
2206 && udev->parent == udev->bus->root_hub) {
2207 struct usb_otg_descriptor *desc = NULL;
2208 struct usb_bus *bus = udev->bus;
2209 unsigned port1 = udev->portnum;
2211 /* descriptor may appear anywhere in config */
2212 err = __usb_get_extra_descriptor(udev->rawdescriptors[0],
2213 le16_to_cpu(udev->config[0].desc.wTotalLength),
2214 USB_DT_OTG, (void **) &desc);
2215 if (err || !(desc->bmAttributes & USB_OTG_HNP))
2216 return 0;
2218 dev_info(&udev->dev, "Dual-Role OTG device on %sHNP port\n",
2219 (port1 == bus->otg_port) ? "" : "non-");
2221 /* enable HNP before suspend, it's simpler */
2222 if (port1 == bus->otg_port) {
2223 bus->b_hnp_enable = 1;
2224 err = usb_control_msg(udev,
2225 usb_sndctrlpipe(udev, 0),
2226 USB_REQ_SET_FEATURE, 0,
2227 USB_DEVICE_B_HNP_ENABLE,
2228 0, NULL, 0,
2229 USB_CTRL_SET_TIMEOUT);
2230 if (err < 0) {
2232 * OTG MESSAGE: report errors here,
2233 * customize to match your product.
2235 dev_err(&udev->dev, "can't set HNP mode: %d\n",
2236 err);
2237 bus->b_hnp_enable = 0;
2239 } else if (desc->bLength == sizeof
2240 (struct usb_otg_descriptor)) {
2241 /* Set a_alt_hnp_support for legacy otg device */
2242 err = usb_control_msg(udev,
2243 usb_sndctrlpipe(udev, 0),
2244 USB_REQ_SET_FEATURE, 0,
2245 USB_DEVICE_A_ALT_HNP_SUPPORT,
2246 0, NULL, 0,
2247 USB_CTRL_SET_TIMEOUT);
2248 if (err < 0)
2249 dev_err(&udev->dev,
2250 "set a_alt_hnp_support failed: %d\n",
2251 err);
2254 #endif
2255 return err;
2260 * usb_enumerate_device - Read device configs/intfs/otg (usbcore-internal)
2261 * @udev: newly addressed device (in ADDRESS state)
2263 * This is only called by usb_new_device() and usb_authorize_device()
2264 * and FIXME -- all comments that apply to them apply here wrt to
2265 * environment.
2267 * If the device is WUSB and not authorized, we don't attempt to read
2268 * the string descriptors, as they will be errored out by the device
2269 * until it has been authorized.
2271 * Return: 0 if successful. A negative error code otherwise.
2273 static int usb_enumerate_device(struct usb_device *udev)
2275 int err;
2276 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
2278 if (udev->config == NULL) {
2279 err = usb_get_configuration(udev);
2280 if (err < 0) {
2281 if (err != -ENODEV)
2282 dev_err(&udev->dev, "can't read configurations, error %d\n",
2283 err);
2284 return err;
2288 /* read the standard strings and cache them if present */
2289 udev->product = usb_cache_string(udev, udev->descriptor.iProduct);
2290 udev->manufacturer = usb_cache_string(udev,
2291 udev->descriptor.iManufacturer);
2292 udev->serial = usb_cache_string(udev, udev->descriptor.iSerialNumber);
2294 err = usb_enumerate_device_otg(udev);
2295 if (err < 0)
2296 return err;
2298 if (IS_ENABLED(CONFIG_USB_OTG_WHITELIST) && hcd->tpl_support &&
2299 !is_targeted(udev)) {
2300 /* Maybe it can talk to us, though we can't talk to it.
2301 * (Includes HNP test device.)
2303 if (IS_ENABLED(CONFIG_USB_OTG) && (udev->bus->b_hnp_enable
2304 || udev->bus->is_b_host)) {
2305 err = usb_port_suspend(udev, PMSG_AUTO_SUSPEND);
2306 if (err < 0)
2307 dev_dbg(&udev->dev, "HNP fail, %d\n", err);
2309 return -ENOTSUPP;
2312 usb_detect_interface_quirks(udev);
2314 return 0;
2317 static void set_usb_port_removable(struct usb_device *udev)
2319 struct usb_device *hdev = udev->parent;
2320 struct usb_hub *hub;
2321 u8 port = udev->portnum;
2322 u16 wHubCharacteristics;
2323 bool removable = true;
2325 if (!hdev)
2326 return;
2328 hub = usb_hub_to_struct_hub(udev->parent);
2331 * If the platform firmware has provided information about a port,
2332 * use that to determine whether it's removable.
2334 switch (hub->ports[udev->portnum - 1]->connect_type) {
2335 case USB_PORT_CONNECT_TYPE_HOT_PLUG:
2336 udev->removable = USB_DEVICE_REMOVABLE;
2337 return;
2338 case USB_PORT_CONNECT_TYPE_HARD_WIRED:
2339 case USB_PORT_NOT_USED:
2340 udev->removable = USB_DEVICE_FIXED;
2341 return;
2342 default:
2343 break;
2347 * Otherwise, check whether the hub knows whether a port is removable
2348 * or not
2350 wHubCharacteristics = le16_to_cpu(hub->descriptor->wHubCharacteristics);
2352 if (!(wHubCharacteristics & HUB_CHAR_COMPOUND))
2353 return;
2355 if (hub_is_superspeed(hdev)) {
2356 if (le16_to_cpu(hub->descriptor->u.ss.DeviceRemovable)
2357 & (1 << port))
2358 removable = false;
2359 } else {
2360 if (hub->descriptor->u.hs.DeviceRemovable[port / 8] & (1 << (port % 8)))
2361 removable = false;
2364 if (removable)
2365 udev->removable = USB_DEVICE_REMOVABLE;
2366 else
2367 udev->removable = USB_DEVICE_FIXED;
2372 * usb_new_device - perform initial device setup (usbcore-internal)
2373 * @udev: newly addressed device (in ADDRESS state)
2375 * This is called with devices which have been detected but not fully
2376 * enumerated. The device descriptor is available, but not descriptors
2377 * for any device configuration. The caller must have locked either
2378 * the parent hub (if udev is a normal device) or else the
2379 * usb_bus_list_lock (if udev is a root hub). The parent's pointer to
2380 * udev has already been installed, but udev is not yet visible through
2381 * sysfs or other filesystem code.
2383 * This call is synchronous, and may not be used in an interrupt context.
2385 * Only the hub driver or root-hub registrar should ever call this.
2387 * Return: Whether the device is configured properly or not. Zero if the
2388 * interface was registered with the driver core; else a negative errno
2389 * value.
2392 int usb_new_device(struct usb_device *udev)
2394 int err;
2396 if (udev->parent) {
2397 /* Initialize non-root-hub device wakeup to disabled;
2398 * device (un)configuration controls wakeup capable
2399 * sysfs power/wakeup controls wakeup enabled/disabled
2401 device_init_wakeup(&udev->dev, 0);
2404 /* Tell the runtime-PM framework the device is active */
2405 pm_runtime_set_active(&udev->dev);
2406 pm_runtime_get_noresume(&udev->dev);
2407 pm_runtime_use_autosuspend(&udev->dev);
2408 pm_runtime_enable(&udev->dev);
2410 /* By default, forbid autosuspend for all devices. It will be
2411 * allowed for hubs during binding.
2413 usb_disable_autosuspend(udev);
2415 err = usb_enumerate_device(udev); /* Read descriptors */
2416 if (err < 0)
2417 goto fail;
2418 dev_dbg(&udev->dev, "udev %d, busnum %d, minor = %d\n",
2419 udev->devnum, udev->bus->busnum,
2420 (((udev->bus->busnum-1) * 128) + (udev->devnum-1)));
2421 /* export the usbdev device-node for libusb */
2422 udev->dev.devt = MKDEV(USB_DEVICE_MAJOR,
2423 (((udev->bus->busnum-1) * 128) + (udev->devnum-1)));
2425 /* Tell the world! */
2426 announce_device(udev);
2428 if (udev->serial)
2429 add_device_randomness(udev->serial, strlen(udev->serial));
2430 if (udev->product)
2431 add_device_randomness(udev->product, strlen(udev->product));
2432 if (udev->manufacturer)
2433 add_device_randomness(udev->manufacturer,
2434 strlen(udev->manufacturer));
2436 device_enable_async_suspend(&udev->dev);
2438 /* check whether the hub or firmware marks this port as non-removable */
2439 if (udev->parent)
2440 set_usb_port_removable(udev);
2442 /* Register the device. The device driver is responsible
2443 * for configuring the device and invoking the add-device
2444 * notifier chain (used by usbfs and possibly others).
2446 err = device_add(&udev->dev);
2447 if (err) {
2448 dev_err(&udev->dev, "can't device_add, error %d\n", err);
2449 goto fail;
2452 /* Create link files between child device and usb port device. */
2453 if (udev->parent) {
2454 struct usb_hub *hub = usb_hub_to_struct_hub(udev->parent);
2455 int port1 = udev->portnum;
2456 struct usb_port *port_dev = hub->ports[port1 - 1];
2458 err = sysfs_create_link(&udev->dev.kobj,
2459 &port_dev->dev.kobj, "port");
2460 if (err)
2461 goto fail;
2463 err = sysfs_create_link(&port_dev->dev.kobj,
2464 &udev->dev.kobj, "device");
2465 if (err) {
2466 sysfs_remove_link(&udev->dev.kobj, "port");
2467 goto fail;
2470 if (!test_and_set_bit(port1, hub->child_usage_bits))
2471 pm_runtime_get_sync(&port_dev->dev);
2474 (void) usb_create_ep_devs(&udev->dev, &udev->ep0, udev);
2475 usb_mark_last_busy(udev);
2476 pm_runtime_put_sync_autosuspend(&udev->dev);
2477 return err;
2479 fail:
2480 usb_set_device_state(udev, USB_STATE_NOTATTACHED);
2481 pm_runtime_disable(&udev->dev);
2482 pm_runtime_set_suspended(&udev->dev);
2483 return err;
2488 * usb_deauthorize_device - deauthorize a device (usbcore-internal)
2489 * @usb_dev: USB device
2491 * Move the USB device to a very basic state where interfaces are disabled
2492 * and the device is in fact unconfigured and unusable.
2494 * We share a lock (that we have) with device_del(), so we need to
2495 * defer its call.
2497 * Return: 0.
2499 int usb_deauthorize_device(struct usb_device *usb_dev)
2501 usb_lock_device(usb_dev);
2502 if (usb_dev->authorized == 0)
2503 goto out_unauthorized;
2505 usb_dev->authorized = 0;
2506 usb_set_configuration(usb_dev, -1);
2508 out_unauthorized:
2509 usb_unlock_device(usb_dev);
2510 return 0;
2514 int usb_authorize_device(struct usb_device *usb_dev)
2516 int result = 0, c;
2518 usb_lock_device(usb_dev);
2519 if (usb_dev->authorized == 1)
2520 goto out_authorized;
2522 result = usb_autoresume_device(usb_dev);
2523 if (result < 0) {
2524 dev_err(&usb_dev->dev,
2525 "can't autoresume for authorization: %d\n", result);
2526 goto error_autoresume;
2529 if (usb_dev->wusb) {
2530 result = usb_get_device_descriptor(usb_dev, sizeof(usb_dev->descriptor));
2531 if (result < 0) {
2532 dev_err(&usb_dev->dev, "can't re-read device descriptor for "
2533 "authorization: %d\n", result);
2534 goto error_device_descriptor;
2538 usb_dev->authorized = 1;
2539 /* Choose and set the configuration. This registers the interfaces
2540 * with the driver core and lets interface drivers bind to them.
2542 c = usb_choose_configuration(usb_dev);
2543 if (c >= 0) {
2544 result = usb_set_configuration(usb_dev, c);
2545 if (result) {
2546 dev_err(&usb_dev->dev,
2547 "can't set config #%d, error %d\n", c, result);
2548 /* This need not be fatal. The user can try to
2549 * set other configurations. */
2552 dev_info(&usb_dev->dev, "authorized to connect\n");
2554 error_device_descriptor:
2555 usb_autosuspend_device(usb_dev);
2556 error_autoresume:
2557 out_authorized:
2558 usb_unlock_device(usb_dev); /* complements locktree */
2559 return result;
2563 /* Returns 1 if @hub is a WUSB root hub, 0 otherwise */
2564 static unsigned hub_is_wusb(struct usb_hub *hub)
2566 struct usb_hcd *hcd;
2567 if (hub->hdev->parent != NULL) /* not a root hub? */
2568 return 0;
2569 hcd = container_of(hub->hdev->bus, struct usb_hcd, self);
2570 return hcd->wireless;
2574 #define PORT_RESET_TRIES 5
2575 #define SET_ADDRESS_TRIES 2
2576 #define GET_DESCRIPTOR_TRIES 2
2577 #define SET_CONFIG_TRIES (2 * (use_both_schemes + 1))
2578 #define USE_NEW_SCHEME(i) ((i) / 2 == (int)old_scheme_first)
2580 #define HUB_ROOT_RESET_TIME 50 /* times are in msec */
2581 #define HUB_SHORT_RESET_TIME 10
2582 #define HUB_BH_RESET_TIME 50
2583 #define HUB_LONG_RESET_TIME 200
2584 #define HUB_RESET_TIMEOUT 800
2587 * "New scheme" enumeration causes an extra state transition to be
2588 * exposed to an xhci host and causes USB3 devices to receive control
2589 * commands in the default state. This has been seen to cause
2590 * enumeration failures, so disable this enumeration scheme for USB3
2591 * devices.
2593 static bool use_new_scheme(struct usb_device *udev, int retry)
2595 if (udev->speed >= USB_SPEED_SUPER)
2596 return false;
2598 return USE_NEW_SCHEME(retry);
2601 /* Is a USB 3.0 port in the Inactive or Compliance Mode state?
2602 * Port worm reset is required to recover
2604 static bool hub_port_warm_reset_required(struct usb_hub *hub, int port1,
2605 u16 portstatus)
2607 u16 link_state;
2609 if (!hub_is_superspeed(hub->hdev))
2610 return false;
2612 if (test_bit(port1, hub->warm_reset_bits))
2613 return true;
2615 link_state = portstatus & USB_PORT_STAT_LINK_STATE;
2616 return link_state == USB_SS_PORT_LS_SS_INACTIVE
2617 || link_state == USB_SS_PORT_LS_COMP_MOD;
2620 static int hub_port_wait_reset(struct usb_hub *hub, int port1,
2621 struct usb_device *udev, unsigned int delay, bool warm)
2623 int delay_time, ret;
2624 u16 portstatus;
2625 u16 portchange;
2627 for (delay_time = 0;
2628 delay_time < HUB_RESET_TIMEOUT;
2629 delay_time += delay) {
2630 /* wait to give the device a chance to reset */
2631 msleep(delay);
2633 /* read and decode port status */
2634 ret = hub_port_status(hub, port1, &portstatus, &portchange);
2635 if (ret < 0)
2636 return ret;
2639 * The port state is unknown until the reset completes.
2641 * On top of that, some chips may require additional time
2642 * to re-establish a connection after the reset is complete,
2643 * so also wait for the connection to be re-established.
2645 if (!(portstatus & USB_PORT_STAT_RESET) &&
2646 (portstatus & USB_PORT_STAT_CONNECTION))
2647 break;
2649 /* switch to the long delay after two short delay failures */
2650 if (delay_time >= 2 * HUB_SHORT_RESET_TIME)
2651 delay = HUB_LONG_RESET_TIME;
2653 dev_dbg(&hub->ports[port1 - 1]->dev,
2654 "not %sreset yet, waiting %dms\n",
2655 warm ? "warm " : "", delay);
2658 if ((portstatus & USB_PORT_STAT_RESET))
2659 return -EBUSY;
2661 if (hub_port_warm_reset_required(hub, port1, portstatus))
2662 return -ENOTCONN;
2664 /* Device went away? */
2665 if (!(portstatus & USB_PORT_STAT_CONNECTION))
2666 return -ENOTCONN;
2668 /* Retry if connect change is set but status is still connected.
2669 * A USB 3.0 connection may bounce if multiple warm resets were issued,
2670 * but the device may have successfully re-connected. Ignore it.
2672 if (!hub_is_superspeed(hub->hdev) &&
2673 (portchange & USB_PORT_STAT_C_CONNECTION)) {
2674 usb_clear_port_feature(hub->hdev, port1,
2675 USB_PORT_FEAT_C_CONNECTION);
2676 return -EAGAIN;
2679 if (!(portstatus & USB_PORT_STAT_ENABLE))
2680 return -EBUSY;
2682 if (!udev)
2683 return 0;
2685 if (hub_is_wusb(hub))
2686 udev->speed = USB_SPEED_WIRELESS;
2687 else if (hub_is_superspeed(hub->hdev))
2688 udev->speed = USB_SPEED_SUPER;
2689 else if (portstatus & USB_PORT_STAT_HIGH_SPEED)
2690 udev->speed = USB_SPEED_HIGH;
2691 else if (portstatus & USB_PORT_STAT_LOW_SPEED)
2692 udev->speed = USB_SPEED_LOW;
2693 else
2694 udev->speed = USB_SPEED_FULL;
2695 return 0;
2698 /* Handle port reset and port warm(BH) reset (for USB3 protocol ports) */
2699 static int hub_port_reset(struct usb_hub *hub, int port1,
2700 struct usb_device *udev, unsigned int delay, bool warm)
2702 int i, status;
2703 u16 portchange, portstatus;
2704 struct usb_port *port_dev = hub->ports[port1 - 1];
2706 if (!hub_is_superspeed(hub->hdev)) {
2707 if (warm) {
2708 dev_err(hub->intfdev, "only USB3 hub support "
2709 "warm reset\n");
2710 return -EINVAL;
2712 /* Block EHCI CF initialization during the port reset.
2713 * Some companion controllers don't like it when they mix.
2715 down_read(&ehci_cf_port_reset_rwsem);
2716 } else if (!warm) {
2718 * If the caller hasn't explicitly requested a warm reset,
2719 * double check and see if one is needed.
2721 if (hub_port_status(hub, port1, &portstatus, &portchange) == 0)
2722 if (hub_port_warm_reset_required(hub, port1,
2723 portstatus))
2724 warm = true;
2726 clear_bit(port1, hub->warm_reset_bits);
2728 /* Reset the port */
2729 for (i = 0; i < PORT_RESET_TRIES; i++) {
2730 status = set_port_feature(hub->hdev, port1, (warm ?
2731 USB_PORT_FEAT_BH_PORT_RESET :
2732 USB_PORT_FEAT_RESET));
2733 if (status == -ENODEV) {
2734 ; /* The hub is gone */
2735 } else if (status) {
2736 dev_err(&port_dev->dev,
2737 "cannot %sreset (err = %d)\n",
2738 warm ? "warm " : "", status);
2739 } else {
2740 status = hub_port_wait_reset(hub, port1, udev, delay,
2741 warm);
2742 if (status && status != -ENOTCONN && status != -ENODEV)
2743 dev_dbg(hub->intfdev,
2744 "port_wait_reset: err = %d\n",
2745 status);
2748 /* Check for disconnect or reset */
2749 if (status == 0 || status == -ENOTCONN || status == -ENODEV) {
2750 usb_clear_port_feature(hub->hdev, port1,
2751 USB_PORT_FEAT_C_RESET);
2753 if (!hub_is_superspeed(hub->hdev))
2754 goto done;
2756 usb_clear_port_feature(hub->hdev, port1,
2757 USB_PORT_FEAT_C_BH_PORT_RESET);
2758 usb_clear_port_feature(hub->hdev, port1,
2759 USB_PORT_FEAT_C_PORT_LINK_STATE);
2760 usb_clear_port_feature(hub->hdev, port1,
2761 USB_PORT_FEAT_C_CONNECTION);
2764 * If a USB 3.0 device migrates from reset to an error
2765 * state, re-issue the warm reset.
2767 if (hub_port_status(hub, port1,
2768 &portstatus, &portchange) < 0)
2769 goto done;
2771 if (!hub_port_warm_reset_required(hub, port1,
2772 portstatus))
2773 goto done;
2776 * If the port is in SS.Inactive or Compliance Mode, the
2777 * hot or warm reset failed. Try another warm reset.
2779 if (!warm) {
2780 dev_dbg(&port_dev->dev,
2781 "hot reset failed, warm reset\n");
2782 warm = true;
2786 dev_dbg(&port_dev->dev,
2787 "not enabled, trying %sreset again...\n",
2788 warm ? "warm " : "");
2789 delay = HUB_LONG_RESET_TIME;
2792 dev_err(&port_dev->dev, "Cannot enable. Maybe the USB cable is bad?\n");
2794 done:
2795 if (status == 0) {
2796 /* TRSTRCY = 10 ms; plus some extra */
2797 msleep(10 + 40);
2798 if (udev) {
2799 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
2801 update_devnum(udev, 0);
2802 /* The xHC may think the device is already reset,
2803 * so ignore the status.
2805 if (hcd->driver->reset_device)
2806 hcd->driver->reset_device(hcd, udev);
2808 usb_set_device_state(udev, USB_STATE_DEFAULT);
2810 } else {
2811 if (udev)
2812 usb_set_device_state(udev, USB_STATE_NOTATTACHED);
2815 if (!hub_is_superspeed(hub->hdev))
2816 up_read(&ehci_cf_port_reset_rwsem);
2818 return status;
2821 /* Check if a port is power on */
2822 static int port_is_power_on(struct usb_hub *hub, unsigned portstatus)
2824 int ret = 0;
2826 if (hub_is_superspeed(hub->hdev)) {
2827 if (portstatus & USB_SS_PORT_STAT_POWER)
2828 ret = 1;
2829 } else {
2830 if (portstatus & USB_PORT_STAT_POWER)
2831 ret = 1;
2834 return ret;
2837 static void usb_lock_port(struct usb_port *port_dev)
2838 __acquires(&port_dev->status_lock)
2840 mutex_lock(&port_dev->status_lock);
2841 __acquire(&port_dev->status_lock);
2844 static void usb_unlock_port(struct usb_port *port_dev)
2845 __releases(&port_dev->status_lock)
2847 mutex_unlock(&port_dev->status_lock);
2848 __release(&port_dev->status_lock);
2851 #ifdef CONFIG_PM
2853 /* Check if a port is suspended(USB2.0 port) or in U3 state(USB3.0 port) */
2854 static int port_is_suspended(struct usb_hub *hub, unsigned portstatus)
2856 int ret = 0;
2858 if (hub_is_superspeed(hub->hdev)) {
2859 if ((portstatus & USB_PORT_STAT_LINK_STATE)
2860 == USB_SS_PORT_LS_U3)
2861 ret = 1;
2862 } else {
2863 if (portstatus & USB_PORT_STAT_SUSPEND)
2864 ret = 1;
2867 return ret;
2870 /* Determine whether the device on a port is ready for a normal resume,
2871 * is ready for a reset-resume, or should be disconnected.
2873 static int check_port_resume_type(struct usb_device *udev,
2874 struct usb_hub *hub, int port1,
2875 int status, u16 portchange, u16 portstatus)
2877 struct usb_port *port_dev = hub->ports[port1 - 1];
2878 int retries = 3;
2880 retry:
2881 /* Is a warm reset needed to recover the connection? */
2882 if (status == 0 && udev->reset_resume
2883 && hub_port_warm_reset_required(hub, port1, portstatus)) {
2884 /* pass */;
2886 /* Is the device still present? */
2887 else if (status || port_is_suspended(hub, portstatus) ||
2888 !port_is_power_on(hub, portstatus)) {
2889 if (status >= 0)
2890 status = -ENODEV;
2891 } else if (!(portstatus & USB_PORT_STAT_CONNECTION)) {
2892 if (retries--) {
2893 usleep_range(200, 300);
2894 status = hub_port_status(hub, port1, &portstatus,
2895 &portchange);
2896 goto retry;
2898 status = -ENODEV;
2901 /* Can't do a normal resume if the port isn't enabled,
2902 * so try a reset-resume instead.
2904 else if (!(portstatus & USB_PORT_STAT_ENABLE) && !udev->reset_resume) {
2905 if (udev->persist_enabled)
2906 udev->reset_resume = 1;
2907 else
2908 status = -ENODEV;
2911 if (status) {
2912 dev_dbg(&port_dev->dev, "status %04x.%04x after resume, %d\n",
2913 portchange, portstatus, status);
2914 } else if (udev->reset_resume) {
2916 /* Late port handoff can set status-change bits */
2917 if (portchange & USB_PORT_STAT_C_CONNECTION)
2918 usb_clear_port_feature(hub->hdev, port1,
2919 USB_PORT_FEAT_C_CONNECTION);
2920 if (portchange & USB_PORT_STAT_C_ENABLE)
2921 usb_clear_port_feature(hub->hdev, port1,
2922 USB_PORT_FEAT_C_ENABLE);
2925 return status;
2928 int usb_disable_ltm(struct usb_device *udev)
2930 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
2932 /* Check if the roothub and device supports LTM. */
2933 if (!usb_device_supports_ltm(hcd->self.root_hub) ||
2934 !usb_device_supports_ltm(udev))
2935 return 0;
2937 /* Clear Feature LTM Enable can only be sent if the device is
2938 * configured.
2940 if (!udev->actconfig)
2941 return 0;
2943 return usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
2944 USB_REQ_CLEAR_FEATURE, USB_RECIP_DEVICE,
2945 USB_DEVICE_LTM_ENABLE, 0, NULL, 0,
2946 USB_CTRL_SET_TIMEOUT);
2948 EXPORT_SYMBOL_GPL(usb_disable_ltm);
2950 void usb_enable_ltm(struct usb_device *udev)
2952 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
2954 /* Check if the roothub and device supports LTM. */
2955 if (!usb_device_supports_ltm(hcd->self.root_hub) ||
2956 !usb_device_supports_ltm(udev))
2957 return;
2959 /* Set Feature LTM Enable can only be sent if the device is
2960 * configured.
2962 if (!udev->actconfig)
2963 return;
2965 usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
2966 USB_REQ_SET_FEATURE, USB_RECIP_DEVICE,
2967 USB_DEVICE_LTM_ENABLE, 0, NULL, 0,
2968 USB_CTRL_SET_TIMEOUT);
2970 EXPORT_SYMBOL_GPL(usb_enable_ltm);
2973 * usb_enable_remote_wakeup - enable remote wakeup for a device
2974 * @udev: target device
2976 * For USB-2 devices: Set the device's remote wakeup feature.
2978 * For USB-3 devices: Assume there's only one function on the device and
2979 * enable remote wake for the first interface. FIXME if the interface
2980 * association descriptor shows there's more than one function.
2982 static int usb_enable_remote_wakeup(struct usb_device *udev)
2984 if (udev->speed < USB_SPEED_SUPER)
2985 return usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
2986 USB_REQ_SET_FEATURE, USB_RECIP_DEVICE,
2987 USB_DEVICE_REMOTE_WAKEUP, 0, NULL, 0,
2988 USB_CTRL_SET_TIMEOUT);
2989 else
2990 return usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
2991 USB_REQ_SET_FEATURE, USB_RECIP_INTERFACE,
2992 USB_INTRF_FUNC_SUSPEND,
2993 USB_INTRF_FUNC_SUSPEND_RW |
2994 USB_INTRF_FUNC_SUSPEND_LP,
2995 NULL, 0, USB_CTRL_SET_TIMEOUT);
2999 * usb_disable_remote_wakeup - disable remote wakeup for a device
3000 * @udev: target device
3002 * For USB-2 devices: Clear the device's remote wakeup feature.
3004 * For USB-3 devices: Assume there's only one function on the device and
3005 * disable remote wake for the first interface. FIXME if the interface
3006 * association descriptor shows there's more than one function.
3008 static int usb_disable_remote_wakeup(struct usb_device *udev)
3010 if (udev->speed < USB_SPEED_SUPER)
3011 return usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
3012 USB_REQ_CLEAR_FEATURE, USB_RECIP_DEVICE,
3013 USB_DEVICE_REMOTE_WAKEUP, 0, NULL, 0,
3014 USB_CTRL_SET_TIMEOUT);
3015 else
3016 return usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
3017 USB_REQ_CLEAR_FEATURE, USB_RECIP_INTERFACE,
3018 USB_INTRF_FUNC_SUSPEND, 0, NULL, 0,
3019 USB_CTRL_SET_TIMEOUT);
3022 /* Count of wakeup-enabled devices at or below udev */
3023 static unsigned wakeup_enabled_descendants(struct usb_device *udev)
3025 struct usb_hub *hub = usb_hub_to_struct_hub(udev);
3027 return udev->do_remote_wakeup +
3028 (hub ? hub->wakeup_enabled_descendants : 0);
3032 * usb_port_suspend - suspend a usb device's upstream port
3033 * @udev: device that's no longer in active use, not a root hub
3034 * Context: must be able to sleep; device not locked; pm locks held
3036 * Suspends a USB device that isn't in active use, conserving power.
3037 * Devices may wake out of a suspend, if anything important happens,
3038 * using the remote wakeup mechanism. They may also be taken out of
3039 * suspend by the host, using usb_port_resume(). It's also routine
3040 * to disconnect devices while they are suspended.
3042 * This only affects the USB hardware for a device; its interfaces
3043 * (and, for hubs, child devices) must already have been suspended.
3045 * Selective port suspend reduces power; most suspended devices draw
3046 * less than 500 uA. It's also used in OTG, along with remote wakeup.
3047 * All devices below the suspended port are also suspended.
3049 * Devices leave suspend state when the host wakes them up. Some devices
3050 * also support "remote wakeup", where the device can activate the USB
3051 * tree above them to deliver data, such as a keypress or packet. In
3052 * some cases, this wakes the USB host.
3054 * Suspending OTG devices may trigger HNP, if that's been enabled
3055 * between a pair of dual-role devices. That will change roles, such
3056 * as from A-Host to A-Peripheral or from B-Host back to B-Peripheral.
3058 * Devices on USB hub ports have only one "suspend" state, corresponding
3059 * to ACPI D2, "may cause the device to lose some context".
3060 * State transitions include:
3062 * - suspend, resume ... when the VBUS power link stays live
3063 * - suspend, disconnect ... VBUS lost
3065 * Once VBUS drop breaks the circuit, the port it's using has to go through
3066 * normal re-enumeration procedures, starting with enabling VBUS power.
3067 * Other than re-initializing the hub (plug/unplug, except for root hubs),
3068 * Linux (2.6) currently has NO mechanisms to initiate that: no hub_wq
3069 * timer, no SRP, no requests through sysfs.
3071 * If Runtime PM isn't enabled or used, non-SuperSpeed devices may not get
3072 * suspended until their bus goes into global suspend (i.e., the root
3073 * hub is suspended). Nevertheless, we change @udev->state to
3074 * USB_STATE_SUSPENDED as this is the device's "logical" state. The actual
3075 * upstream port setting is stored in @udev->port_is_suspended.
3077 * Returns 0 on success, else negative errno.
3079 int usb_port_suspend(struct usb_device *udev, pm_message_t msg)
3081 struct usb_hub *hub = usb_hub_to_struct_hub(udev->parent);
3082 struct usb_port *port_dev = hub->ports[udev->portnum - 1];
3083 int port1 = udev->portnum;
3084 int status;
3085 bool really_suspend = true;
3087 usb_lock_port(port_dev);
3089 /* enable remote wakeup when appropriate; this lets the device
3090 * wake up the upstream hub (including maybe the root hub).
3092 * NOTE: OTG devices may issue remote wakeup (or SRP) even when
3093 * we don't explicitly enable it here.
3095 if (udev->do_remote_wakeup) {
3096 status = usb_enable_remote_wakeup(udev);
3097 if (status) {
3098 dev_dbg(&udev->dev, "won't remote wakeup, status %d\n",
3099 status);
3100 /* bail if autosuspend is requested */
3101 if (PMSG_IS_AUTO(msg))
3102 goto err_wakeup;
3106 /* disable USB2 hardware LPM */
3107 if (udev->usb2_hw_lpm_enabled == 1)
3108 usb_set_usb2_hardware_lpm(udev, 0);
3110 if (usb_disable_ltm(udev)) {
3111 dev_err(&udev->dev, "Failed to disable LTM before suspend\n.");
3112 status = -ENOMEM;
3113 if (PMSG_IS_AUTO(msg))
3114 goto err_ltm;
3116 if (usb_unlocked_disable_lpm(udev)) {
3117 dev_err(&udev->dev, "Failed to disable LPM before suspend\n.");
3118 status = -ENOMEM;
3119 if (PMSG_IS_AUTO(msg))
3120 goto err_lpm3;
3123 /* see 7.1.7.6 */
3124 if (hub_is_superspeed(hub->hdev))
3125 status = hub_set_port_link_state(hub, port1, USB_SS_PORT_LS_U3);
3128 * For system suspend, we do not need to enable the suspend feature
3129 * on individual USB-2 ports. The devices will automatically go
3130 * into suspend a few ms after the root hub stops sending packets.
3131 * The USB 2.0 spec calls this "global suspend".
3133 * However, many USB hubs have a bug: They don't relay wakeup requests
3134 * from a downstream port if the port's suspend feature isn't on.
3135 * Therefore we will turn on the suspend feature if udev or any of its
3136 * descendants is enabled for remote wakeup.
3138 else if (PMSG_IS_AUTO(msg) || wakeup_enabled_descendants(udev) > 0)
3139 status = set_port_feature(hub->hdev, port1,
3140 USB_PORT_FEAT_SUSPEND);
3141 else {
3142 really_suspend = false;
3143 status = 0;
3145 if (status) {
3146 dev_dbg(&port_dev->dev, "can't suspend, status %d\n", status);
3148 /* Try to enable USB3 LPM and LTM again */
3149 usb_unlocked_enable_lpm(udev);
3150 err_lpm3:
3151 usb_enable_ltm(udev);
3152 err_ltm:
3153 /* Try to enable USB2 hardware LPM again */
3154 if (udev->usb2_hw_lpm_capable == 1)
3155 usb_set_usb2_hardware_lpm(udev, 1);
3157 if (udev->do_remote_wakeup)
3158 (void) usb_disable_remote_wakeup(udev);
3159 err_wakeup:
3161 /* System sleep transitions should never fail */
3162 if (!PMSG_IS_AUTO(msg))
3163 status = 0;
3164 } else {
3165 dev_dbg(&udev->dev, "usb %ssuspend, wakeup %d\n",
3166 (PMSG_IS_AUTO(msg) ? "auto-" : ""),
3167 udev->do_remote_wakeup);
3168 if (really_suspend) {
3169 udev->port_is_suspended = 1;
3171 /* device has up to 10 msec to fully suspend */
3172 msleep(10);
3174 usb_set_device_state(udev, USB_STATE_SUSPENDED);
3177 if (status == 0 && !udev->do_remote_wakeup && udev->persist_enabled
3178 && test_and_clear_bit(port1, hub->child_usage_bits))
3179 pm_runtime_put_sync(&port_dev->dev);
3181 usb_mark_last_busy(hub->hdev);
3183 usb_unlock_port(port_dev);
3184 return status;
3188 * If the USB "suspend" state is in use (rather than "global suspend"),
3189 * many devices will be individually taken out of suspend state using
3190 * special "resume" signaling. This routine kicks in shortly after
3191 * hardware resume signaling is finished, either because of selective
3192 * resume (by host) or remote wakeup (by device) ... now see what changed
3193 * in the tree that's rooted at this device.
3195 * If @udev->reset_resume is set then the device is reset before the
3196 * status check is done.
3198 static int finish_port_resume(struct usb_device *udev)
3200 int status = 0;
3201 u16 devstatus = 0;
3203 /* caller owns the udev device lock */
3204 dev_dbg(&udev->dev, "%s\n",
3205 udev->reset_resume ? "finish reset-resume" : "finish resume");
3207 /* usb ch9 identifies four variants of SUSPENDED, based on what
3208 * state the device resumes to. Linux currently won't see the
3209 * first two on the host side; they'd be inside hub_port_init()
3210 * during many timeouts, but hub_wq can't suspend until later.
3212 usb_set_device_state(udev, udev->actconfig
3213 ? USB_STATE_CONFIGURED
3214 : USB_STATE_ADDRESS);
3216 /* 10.5.4.5 says not to reset a suspended port if the attached
3217 * device is enabled for remote wakeup. Hence the reset
3218 * operation is carried out here, after the port has been
3219 * resumed.
3221 if (udev->reset_resume) {
3223 * If the device morphs or switches modes when it is reset,
3224 * we don't want to perform a reset-resume. We'll fail the
3225 * resume, which will cause a logical disconnect, and then
3226 * the device will be rediscovered.
3228 retry_reset_resume:
3229 if (udev->quirks & USB_QUIRK_RESET)
3230 status = -ENODEV;
3231 else
3232 status = usb_reset_and_verify_device(udev);
3235 /* 10.5.4.5 says be sure devices in the tree are still there.
3236 * For now let's assume the device didn't go crazy on resume,
3237 * and device drivers will know about any resume quirks.
3239 if (status == 0) {
3240 devstatus = 0;
3241 status = usb_get_status(udev, USB_RECIP_DEVICE, 0, &devstatus);
3243 /* If a normal resume failed, try doing a reset-resume */
3244 if (status && !udev->reset_resume && udev->persist_enabled) {
3245 dev_dbg(&udev->dev, "retry with reset-resume\n");
3246 udev->reset_resume = 1;
3247 goto retry_reset_resume;
3251 if (status) {
3252 dev_dbg(&udev->dev, "gone after usb resume? status %d\n",
3253 status);
3255 * There are a few quirky devices which violate the standard
3256 * by claiming to have remote wakeup enabled after a reset,
3257 * which crash if the feature is cleared, hence check for
3258 * udev->reset_resume
3260 } else if (udev->actconfig && !udev->reset_resume) {
3261 if (udev->speed < USB_SPEED_SUPER) {
3262 if (devstatus & (1 << USB_DEVICE_REMOTE_WAKEUP))
3263 status = usb_disable_remote_wakeup(udev);
3264 } else {
3265 status = usb_get_status(udev, USB_RECIP_INTERFACE, 0,
3266 &devstatus);
3267 if (!status && devstatus & (USB_INTRF_STAT_FUNC_RW_CAP
3268 | USB_INTRF_STAT_FUNC_RW))
3269 status = usb_disable_remote_wakeup(udev);
3272 if (status)
3273 dev_dbg(&udev->dev,
3274 "disable remote wakeup, status %d\n",
3275 status);
3276 status = 0;
3278 return status;
3282 * There are some SS USB devices which take longer time for link training.
3283 * XHCI specs 4.19.4 says that when Link training is successful, port
3284 * sets CSC bit to 1. So if SW reads port status before successful link
3285 * training, then it will not find device to be present.
3286 * USB Analyzer log with such buggy devices show that in some cases
3287 * device switch on the RX termination after long delay of host enabling
3288 * the VBUS. In few other cases it has been seen that device fails to
3289 * negotiate link training in first attempt. It has been
3290 * reported till now that few devices take as long as 2000 ms to train
3291 * the link after host enabling its VBUS and termination. Following
3292 * routine implements a 2000 ms timeout for link training. If in a case
3293 * link trains before timeout, loop will exit earlier.
3295 * FIXME: If a device was connected before suspend, but was removed
3296 * while system was asleep, then the loop in the following routine will
3297 * only exit at timeout.
3299 * This routine should only be called when persist is enabled for a SS
3300 * device.
3302 static int wait_for_ss_port_enable(struct usb_device *udev,
3303 struct usb_hub *hub, int *port1,
3304 u16 *portchange, u16 *portstatus)
3306 int status = 0, delay_ms = 0;
3308 while (delay_ms < 2000) {
3309 if (status || *portstatus & USB_PORT_STAT_CONNECTION)
3310 break;
3311 if (!port_is_power_on(hub, *portstatus)) {
3312 status = -ENODEV;
3313 break;
3315 msleep(20);
3316 delay_ms += 20;
3317 status = hub_port_status(hub, *port1, portstatus, portchange);
3319 return status;
3323 * usb_port_resume - re-activate a suspended usb device's upstream port
3324 * @udev: device to re-activate, not a root hub
3325 * Context: must be able to sleep; device not locked; pm locks held
3327 * This will re-activate the suspended device, increasing power usage
3328 * while letting drivers communicate again with its endpoints.
3329 * USB resume explicitly guarantees that the power session between
3330 * the host and the device is the same as it was when the device
3331 * suspended.
3333 * If @udev->reset_resume is set then this routine won't check that the
3334 * port is still enabled. Furthermore, finish_port_resume() above will
3335 * reset @udev. The end result is that a broken power session can be
3336 * recovered and @udev will appear to persist across a loss of VBUS power.
3338 * For example, if a host controller doesn't maintain VBUS suspend current
3339 * during a system sleep or is reset when the system wakes up, all the USB
3340 * power sessions below it will be broken. This is especially troublesome
3341 * for mass-storage devices containing mounted filesystems, since the
3342 * device will appear to have disconnected and all the memory mappings
3343 * to it will be lost. Using the USB_PERSIST facility, the device can be
3344 * made to appear as if it had not disconnected.
3346 * This facility can be dangerous. Although usb_reset_and_verify_device() makes
3347 * every effort to insure that the same device is present after the
3348 * reset as before, it cannot provide a 100% guarantee. Furthermore it's
3349 * quite possible for a device to remain unaltered but its media to be
3350 * changed. If the user replaces a flash memory card while the system is
3351 * asleep, he will have only himself to blame when the filesystem on the
3352 * new card is corrupted and the system crashes.
3354 * Returns 0 on success, else negative errno.
3356 int usb_port_resume(struct usb_device *udev, pm_message_t msg)
3358 struct usb_hub *hub = usb_hub_to_struct_hub(udev->parent);
3359 struct usb_port *port_dev = hub->ports[udev->portnum - 1];
3360 int port1 = udev->portnum;
3361 int status;
3362 u16 portchange, portstatus;
3364 if (!test_and_set_bit(port1, hub->child_usage_bits)) {
3365 status = pm_runtime_get_sync(&port_dev->dev);
3366 if (status < 0) {
3367 dev_dbg(&udev->dev, "can't resume usb port, status %d\n",
3368 status);
3369 return status;
3373 usb_lock_port(port_dev);
3375 /* Skip the initial Clear-Suspend step for a remote wakeup */
3376 status = hub_port_status(hub, port1, &portstatus, &portchange);
3377 if (status == 0 && !port_is_suspended(hub, portstatus)) {
3378 if (portchange & USB_PORT_STAT_C_SUSPEND)
3379 pm_wakeup_event(&udev->dev, 0);
3380 goto SuspendCleared;
3383 /* see 7.1.7.7; affects power usage, but not budgeting */
3384 if (hub_is_superspeed(hub->hdev))
3385 status = hub_set_port_link_state(hub, port1, USB_SS_PORT_LS_U0);
3386 else
3387 status = usb_clear_port_feature(hub->hdev,
3388 port1, USB_PORT_FEAT_SUSPEND);
3389 if (status) {
3390 dev_dbg(&port_dev->dev, "can't resume, status %d\n", status);
3391 } else {
3392 /* drive resume for USB_RESUME_TIMEOUT msec */
3393 dev_dbg(&udev->dev, "usb %sresume\n",
3394 (PMSG_IS_AUTO(msg) ? "auto-" : ""));
3395 msleep(USB_RESUME_TIMEOUT);
3397 /* Virtual root hubs can trigger on GET_PORT_STATUS to
3398 * stop resume signaling. Then finish the resume
3399 * sequence.
3401 status = hub_port_status(hub, port1, &portstatus, &portchange);
3403 /* TRSMRCY = 10 msec */
3404 msleep(10);
3407 SuspendCleared:
3408 if (status == 0) {
3409 udev->port_is_suspended = 0;
3410 if (hub_is_superspeed(hub->hdev)) {
3411 if (portchange & USB_PORT_STAT_C_LINK_STATE)
3412 usb_clear_port_feature(hub->hdev, port1,
3413 USB_PORT_FEAT_C_PORT_LINK_STATE);
3414 } else {
3415 if (portchange & USB_PORT_STAT_C_SUSPEND)
3416 usb_clear_port_feature(hub->hdev, port1,
3417 USB_PORT_FEAT_C_SUSPEND);
3421 if (udev->persist_enabled && hub_is_superspeed(hub->hdev))
3422 status = wait_for_ss_port_enable(udev, hub, &port1, &portchange,
3423 &portstatus);
3425 status = check_port_resume_type(udev,
3426 hub, port1, status, portchange, portstatus);
3427 if (status == 0)
3428 status = finish_port_resume(udev);
3429 if (status < 0) {
3430 dev_dbg(&udev->dev, "can't resume, status %d\n", status);
3431 hub_port_logical_disconnect(hub, port1);
3432 } else {
3433 /* Try to enable USB2 hardware LPM */
3434 if (udev->usb2_hw_lpm_capable == 1)
3435 usb_set_usb2_hardware_lpm(udev, 1);
3437 /* Try to enable USB3 LTM and LPM */
3438 usb_enable_ltm(udev);
3439 usb_unlocked_enable_lpm(udev);
3442 usb_unlock_port(port_dev);
3444 return status;
3447 int usb_remote_wakeup(struct usb_device *udev)
3449 int status = 0;
3451 usb_lock_device(udev);
3452 if (udev->state == USB_STATE_SUSPENDED) {
3453 dev_dbg(&udev->dev, "usb %sresume\n", "wakeup-");
3454 status = usb_autoresume_device(udev);
3455 if (status == 0) {
3456 /* Let the drivers do their thing, then... */
3457 usb_autosuspend_device(udev);
3460 usb_unlock_device(udev);
3461 return status;
3464 /* Returns 1 if there was a remote wakeup and a connect status change. */
3465 static int hub_handle_remote_wakeup(struct usb_hub *hub, unsigned int port,
3466 u16 portstatus, u16 portchange)
3467 __must_hold(&port_dev->status_lock)
3469 struct usb_port *port_dev = hub->ports[port - 1];
3470 struct usb_device *hdev;
3471 struct usb_device *udev;
3472 int connect_change = 0;
3473 int ret;
3475 hdev = hub->hdev;
3476 udev = port_dev->child;
3477 if (!hub_is_superspeed(hdev)) {
3478 if (!(portchange & USB_PORT_STAT_C_SUSPEND))
3479 return 0;
3480 usb_clear_port_feature(hdev, port, USB_PORT_FEAT_C_SUSPEND);
3481 } else {
3482 if (!udev || udev->state != USB_STATE_SUSPENDED ||
3483 (portstatus & USB_PORT_STAT_LINK_STATE) !=
3484 USB_SS_PORT_LS_U0)
3485 return 0;
3488 if (udev) {
3489 /* TRSMRCY = 10 msec */
3490 msleep(10);
3492 usb_unlock_port(port_dev);
3493 ret = usb_remote_wakeup(udev);
3494 usb_lock_port(port_dev);
3495 if (ret < 0)
3496 connect_change = 1;
3497 } else {
3498 ret = -ENODEV;
3499 hub_port_disable(hub, port, 1);
3501 dev_dbg(&port_dev->dev, "resume, status %d\n", ret);
3502 return connect_change;
3505 static int check_ports_changed(struct usb_hub *hub)
3507 int port1;
3509 for (port1 = 1; port1 <= hub->hdev->maxchild; ++port1) {
3510 u16 portstatus, portchange;
3511 int status;
3513 status = hub_port_status(hub, port1, &portstatus, &portchange);
3514 if (!status && portchange)
3515 return 1;
3517 return 0;
3520 static int hub_suspend(struct usb_interface *intf, pm_message_t msg)
3522 struct usb_hub *hub = usb_get_intfdata(intf);
3523 struct usb_device *hdev = hub->hdev;
3524 unsigned port1;
3525 int status;
3528 * Warn if children aren't already suspended.
3529 * Also, add up the number of wakeup-enabled descendants.
3531 hub->wakeup_enabled_descendants = 0;
3532 for (port1 = 1; port1 <= hdev->maxchild; port1++) {
3533 struct usb_port *port_dev = hub->ports[port1 - 1];
3534 struct usb_device *udev = port_dev->child;
3536 if (udev && udev->can_submit) {
3537 dev_warn(&port_dev->dev, "device %s not suspended yet\n",
3538 dev_name(&udev->dev));
3539 if (PMSG_IS_AUTO(msg))
3540 return -EBUSY;
3542 if (udev)
3543 hub->wakeup_enabled_descendants +=
3544 wakeup_enabled_descendants(udev);
3547 if (hdev->do_remote_wakeup && hub->quirk_check_port_auto_suspend) {
3548 /* check if there are changes pending on hub ports */
3549 if (check_ports_changed(hub)) {
3550 if (PMSG_IS_AUTO(msg))
3551 return -EBUSY;
3552 pm_wakeup_event(&hdev->dev, 2000);
3556 if (hub_is_superspeed(hdev) && hdev->do_remote_wakeup) {
3557 /* Enable hub to send remote wakeup for all ports. */
3558 for (port1 = 1; port1 <= hdev->maxchild; port1++) {
3559 status = set_port_feature(hdev,
3560 port1 |
3561 USB_PORT_FEAT_REMOTE_WAKE_CONNECT |
3562 USB_PORT_FEAT_REMOTE_WAKE_DISCONNECT |
3563 USB_PORT_FEAT_REMOTE_WAKE_OVER_CURRENT,
3564 USB_PORT_FEAT_REMOTE_WAKE_MASK);
3568 dev_dbg(&intf->dev, "%s\n", __func__);
3570 /* stop hub_wq and related activity */
3571 hub_quiesce(hub, HUB_SUSPEND);
3572 return 0;
3575 static int hub_resume(struct usb_interface *intf)
3577 struct usb_hub *hub = usb_get_intfdata(intf);
3579 dev_dbg(&intf->dev, "%s\n", __func__);
3580 hub_activate(hub, HUB_RESUME);
3581 return 0;
3584 static int hub_reset_resume(struct usb_interface *intf)
3586 struct usb_hub *hub = usb_get_intfdata(intf);
3588 dev_dbg(&intf->dev, "%s\n", __func__);
3589 hub_activate(hub, HUB_RESET_RESUME);
3590 return 0;
3594 * usb_root_hub_lost_power - called by HCD if the root hub lost Vbus power
3595 * @rhdev: struct usb_device for the root hub
3597 * The USB host controller driver calls this function when its root hub
3598 * is resumed and Vbus power has been interrupted or the controller
3599 * has been reset. The routine marks @rhdev as having lost power.
3600 * When the hub driver is resumed it will take notice and carry out
3601 * power-session recovery for all the "USB-PERSIST"-enabled child devices;
3602 * the others will be disconnected.
3604 void usb_root_hub_lost_power(struct usb_device *rhdev)
3606 dev_warn(&rhdev->dev, "root hub lost power or was reset\n");
3607 rhdev->reset_resume = 1;
3609 EXPORT_SYMBOL_GPL(usb_root_hub_lost_power);
3611 static const char * const usb3_lpm_names[] = {
3612 "U0",
3613 "U1",
3614 "U2",
3615 "U3",
3619 * Send a Set SEL control transfer to the device, prior to enabling
3620 * device-initiated U1 or U2. This lets the device know the exit latencies from
3621 * the time the device initiates a U1 or U2 exit, to the time it will receive a
3622 * packet from the host.
3624 * This function will fail if the SEL or PEL values for udev are greater than
3625 * the maximum allowed values for the link state to be enabled.
3627 static int usb_req_set_sel(struct usb_device *udev, enum usb3_link_state state)
3629 struct usb_set_sel_req *sel_values;
3630 unsigned long long u1_sel;
3631 unsigned long long u1_pel;
3632 unsigned long long u2_sel;
3633 unsigned long long u2_pel;
3634 int ret;
3636 if (udev->state != USB_STATE_CONFIGURED)
3637 return 0;
3639 /* Convert SEL and PEL stored in ns to us */
3640 u1_sel = DIV_ROUND_UP(udev->u1_params.sel, 1000);
3641 u1_pel = DIV_ROUND_UP(udev->u1_params.pel, 1000);
3642 u2_sel = DIV_ROUND_UP(udev->u2_params.sel, 1000);
3643 u2_pel = DIV_ROUND_UP(udev->u2_params.pel, 1000);
3646 * Make sure that the calculated SEL and PEL values for the link
3647 * state we're enabling aren't bigger than the max SEL/PEL
3648 * value that will fit in the SET SEL control transfer.
3649 * Otherwise the device would get an incorrect idea of the exit
3650 * latency for the link state, and could start a device-initiated
3651 * U1/U2 when the exit latencies are too high.
3653 if ((state == USB3_LPM_U1 &&
3654 (u1_sel > USB3_LPM_MAX_U1_SEL_PEL ||
3655 u1_pel > USB3_LPM_MAX_U1_SEL_PEL)) ||
3656 (state == USB3_LPM_U2 &&
3657 (u2_sel > USB3_LPM_MAX_U2_SEL_PEL ||
3658 u2_pel > USB3_LPM_MAX_U2_SEL_PEL))) {
3659 dev_dbg(&udev->dev, "Device-initiated %s disabled due to long SEL %llu us or PEL %llu us\n",
3660 usb3_lpm_names[state], u1_sel, u1_pel);
3661 return -EINVAL;
3665 * If we're enabling device-initiated LPM for one link state,
3666 * but the other link state has a too high SEL or PEL value,
3667 * just set those values to the max in the Set SEL request.
3669 if (u1_sel > USB3_LPM_MAX_U1_SEL_PEL)
3670 u1_sel = USB3_LPM_MAX_U1_SEL_PEL;
3672 if (u1_pel > USB3_LPM_MAX_U1_SEL_PEL)
3673 u1_pel = USB3_LPM_MAX_U1_SEL_PEL;
3675 if (u2_sel > USB3_LPM_MAX_U2_SEL_PEL)
3676 u2_sel = USB3_LPM_MAX_U2_SEL_PEL;
3678 if (u2_pel > USB3_LPM_MAX_U2_SEL_PEL)
3679 u2_pel = USB3_LPM_MAX_U2_SEL_PEL;
3682 * usb_enable_lpm() can be called as part of a failed device reset,
3683 * which may be initiated by an error path of a mass storage driver.
3684 * Therefore, use GFP_NOIO.
3686 sel_values = kmalloc(sizeof *(sel_values), GFP_NOIO);
3687 if (!sel_values)
3688 return -ENOMEM;
3690 sel_values->u1_sel = u1_sel;
3691 sel_values->u1_pel = u1_pel;
3692 sel_values->u2_sel = cpu_to_le16(u2_sel);
3693 sel_values->u2_pel = cpu_to_le16(u2_pel);
3695 ret = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
3696 USB_REQ_SET_SEL,
3697 USB_RECIP_DEVICE,
3698 0, 0,
3699 sel_values, sizeof *(sel_values),
3700 USB_CTRL_SET_TIMEOUT);
3701 kfree(sel_values);
3702 return ret;
3706 * Enable or disable device-initiated U1 or U2 transitions.
3708 static int usb_set_device_initiated_lpm(struct usb_device *udev,
3709 enum usb3_link_state state, bool enable)
3711 int ret;
3712 int feature;
3714 switch (state) {
3715 case USB3_LPM_U1:
3716 feature = USB_DEVICE_U1_ENABLE;
3717 break;
3718 case USB3_LPM_U2:
3719 feature = USB_DEVICE_U2_ENABLE;
3720 break;
3721 default:
3722 dev_warn(&udev->dev, "%s: Can't %s non-U1 or U2 state.\n",
3723 __func__, enable ? "enable" : "disable");
3724 return -EINVAL;
3727 if (udev->state != USB_STATE_CONFIGURED) {
3728 dev_dbg(&udev->dev, "%s: Can't %s %s state "
3729 "for unconfigured device.\n",
3730 __func__, enable ? "enable" : "disable",
3731 usb3_lpm_names[state]);
3732 return 0;
3735 if (enable) {
3737 * Now send the control transfer to enable device-initiated LPM
3738 * for either U1 or U2.
3740 ret = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
3741 USB_REQ_SET_FEATURE,
3742 USB_RECIP_DEVICE,
3743 feature,
3744 0, NULL, 0,
3745 USB_CTRL_SET_TIMEOUT);
3746 } else {
3747 ret = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
3748 USB_REQ_CLEAR_FEATURE,
3749 USB_RECIP_DEVICE,
3750 feature,
3751 0, NULL, 0,
3752 USB_CTRL_SET_TIMEOUT);
3754 if (ret < 0) {
3755 dev_warn(&udev->dev, "%s of device-initiated %s failed.\n",
3756 enable ? "Enable" : "Disable",
3757 usb3_lpm_names[state]);
3758 return -EBUSY;
3760 return 0;
3763 static int usb_set_lpm_timeout(struct usb_device *udev,
3764 enum usb3_link_state state, int timeout)
3766 int ret;
3767 int feature;
3769 switch (state) {
3770 case USB3_LPM_U1:
3771 feature = USB_PORT_FEAT_U1_TIMEOUT;
3772 break;
3773 case USB3_LPM_U2:
3774 feature = USB_PORT_FEAT_U2_TIMEOUT;
3775 break;
3776 default:
3777 dev_warn(&udev->dev, "%s: Can't set timeout for non-U1 or U2 state.\n",
3778 __func__);
3779 return -EINVAL;
3782 if (state == USB3_LPM_U1 && timeout > USB3_LPM_U1_MAX_TIMEOUT &&
3783 timeout != USB3_LPM_DEVICE_INITIATED) {
3784 dev_warn(&udev->dev, "Failed to set %s timeout to 0x%x, "
3785 "which is a reserved value.\n",
3786 usb3_lpm_names[state], timeout);
3787 return -EINVAL;
3790 ret = set_port_feature(udev->parent,
3791 USB_PORT_LPM_TIMEOUT(timeout) | udev->portnum,
3792 feature);
3793 if (ret < 0) {
3794 dev_warn(&udev->dev, "Failed to set %s timeout to 0x%x,"
3795 "error code %i\n", usb3_lpm_names[state],
3796 timeout, ret);
3797 return -EBUSY;
3799 if (state == USB3_LPM_U1)
3800 udev->u1_params.timeout = timeout;
3801 else
3802 udev->u2_params.timeout = timeout;
3803 return 0;
3807 * Enable the hub-initiated U1/U2 idle timeouts, and enable device-initiated
3808 * U1/U2 entry.
3810 * We will attempt to enable U1 or U2, but there are no guarantees that the
3811 * control transfers to set the hub timeout or enable device-initiated U1/U2
3812 * will be successful.
3814 * If we cannot set the parent hub U1/U2 timeout, we attempt to let the xHCI
3815 * driver know about it. If that call fails, it should be harmless, and just
3816 * take up more slightly more bus bandwidth for unnecessary U1/U2 exit latency.
3818 static void usb_enable_link_state(struct usb_hcd *hcd, struct usb_device *udev,
3819 enum usb3_link_state state)
3821 int timeout, ret;
3822 __u8 u1_mel = udev->bos->ss_cap->bU1devExitLat;
3823 __le16 u2_mel = udev->bos->ss_cap->bU2DevExitLat;
3825 /* If the device says it doesn't have *any* exit latency to come out of
3826 * U1 or U2, it's probably lying. Assume it doesn't implement that link
3827 * state.
3829 if ((state == USB3_LPM_U1 && u1_mel == 0) ||
3830 (state == USB3_LPM_U2 && u2_mel == 0))
3831 return;
3834 * First, let the device know about the exit latencies
3835 * associated with the link state we're about to enable.
3837 ret = usb_req_set_sel(udev, state);
3838 if (ret < 0) {
3839 dev_warn(&udev->dev, "Set SEL for device-initiated %s failed.\n",
3840 usb3_lpm_names[state]);
3841 return;
3844 /* We allow the host controller to set the U1/U2 timeout internally
3845 * first, so that it can change its schedule to account for the
3846 * additional latency to send data to a device in a lower power
3847 * link state.
3849 timeout = hcd->driver->enable_usb3_lpm_timeout(hcd, udev, state);
3851 /* xHCI host controller doesn't want to enable this LPM state. */
3852 if (timeout == 0)
3853 return;
3855 if (timeout < 0) {
3856 dev_warn(&udev->dev, "Could not enable %s link state, "
3857 "xHCI error %i.\n", usb3_lpm_names[state],
3858 timeout);
3859 return;
3862 if (usb_set_lpm_timeout(udev, state, timeout)) {
3863 /* If we can't set the parent hub U1/U2 timeout,
3864 * device-initiated LPM won't be allowed either, so let the xHCI
3865 * host know that this link state won't be enabled.
3867 hcd->driver->disable_usb3_lpm_timeout(hcd, udev, state);
3868 } else {
3869 /* Only a configured device will accept the Set Feature
3870 * U1/U2_ENABLE
3872 if (udev->actconfig)
3873 usb_set_device_initiated_lpm(udev, state, true);
3875 /* As soon as usb_set_lpm_timeout(timeout) returns 0, the
3876 * hub-initiated LPM is enabled. Thus, LPM is enabled no
3877 * matter the result of usb_set_device_initiated_lpm().
3878 * The only difference is whether device is able to initiate
3879 * LPM.
3881 if (state == USB3_LPM_U1)
3882 udev->usb3_lpm_u1_enabled = 1;
3883 else if (state == USB3_LPM_U2)
3884 udev->usb3_lpm_u2_enabled = 1;
3889 * Disable the hub-initiated U1/U2 idle timeouts, and disable device-initiated
3890 * U1/U2 entry.
3892 * If this function returns -EBUSY, the parent hub will still allow U1/U2 entry.
3893 * If zero is returned, the parent will not allow the link to go into U1/U2.
3895 * If zero is returned, device-initiated U1/U2 entry may still be enabled, but
3896 * it won't have an effect on the bus link state because the parent hub will
3897 * still disallow device-initiated U1/U2 entry.
3899 * If zero is returned, the xHCI host controller may still think U1/U2 entry is
3900 * possible. The result will be slightly more bus bandwidth will be taken up
3901 * (to account for U1/U2 exit latency), but it should be harmless.
3903 static int usb_disable_link_state(struct usb_hcd *hcd, struct usb_device *udev,
3904 enum usb3_link_state state)
3906 switch (state) {
3907 case USB3_LPM_U1:
3908 case USB3_LPM_U2:
3909 break;
3910 default:
3911 dev_warn(&udev->dev, "%s: Can't disable non-U1 or U2 state.\n",
3912 __func__);
3913 return -EINVAL;
3916 if (usb_set_lpm_timeout(udev, state, 0))
3917 return -EBUSY;
3919 usb_set_device_initiated_lpm(udev, state, false);
3921 if (hcd->driver->disable_usb3_lpm_timeout(hcd, udev, state))
3922 dev_warn(&udev->dev, "Could not disable xHCI %s timeout, "
3923 "bus schedule bandwidth may be impacted.\n",
3924 usb3_lpm_names[state]);
3926 /* As soon as usb_set_lpm_timeout(0) return 0, hub initiated LPM
3927 * is disabled. Hub will disallows link to enter U1/U2 as well,
3928 * even device is initiating LPM. Hence LPM is disabled if hub LPM
3929 * timeout set to 0, no matter device-initiated LPM is disabled or
3930 * not.
3932 if (state == USB3_LPM_U1)
3933 udev->usb3_lpm_u1_enabled = 0;
3934 else if (state == USB3_LPM_U2)
3935 udev->usb3_lpm_u2_enabled = 0;
3937 return 0;
3941 * Disable hub-initiated and device-initiated U1 and U2 entry.
3942 * Caller must own the bandwidth_mutex.
3944 * This will call usb_enable_lpm() on failure, which will decrement
3945 * lpm_disable_count, and will re-enable LPM if lpm_disable_count reaches zero.
3947 int usb_disable_lpm(struct usb_device *udev)
3949 struct usb_hcd *hcd;
3951 if (!udev || !udev->parent ||
3952 udev->speed < USB_SPEED_SUPER ||
3953 !udev->lpm_capable ||
3954 udev->state < USB_STATE_DEFAULT)
3955 return 0;
3957 hcd = bus_to_hcd(udev->bus);
3958 if (!hcd || !hcd->driver->disable_usb3_lpm_timeout)
3959 return 0;
3961 udev->lpm_disable_count++;
3962 if ((udev->u1_params.timeout == 0 && udev->u2_params.timeout == 0))
3963 return 0;
3965 /* If LPM is enabled, attempt to disable it. */
3966 if (usb_disable_link_state(hcd, udev, USB3_LPM_U1))
3967 goto enable_lpm;
3968 if (usb_disable_link_state(hcd, udev, USB3_LPM_U2))
3969 goto enable_lpm;
3971 return 0;
3973 enable_lpm:
3974 usb_enable_lpm(udev);
3975 return -EBUSY;
3977 EXPORT_SYMBOL_GPL(usb_disable_lpm);
3979 /* Grab the bandwidth_mutex before calling usb_disable_lpm() */
3980 int usb_unlocked_disable_lpm(struct usb_device *udev)
3982 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
3983 int ret;
3985 if (!hcd)
3986 return -EINVAL;
3988 mutex_lock(hcd->bandwidth_mutex);
3989 ret = usb_disable_lpm(udev);
3990 mutex_unlock(hcd->bandwidth_mutex);
3992 return ret;
3994 EXPORT_SYMBOL_GPL(usb_unlocked_disable_lpm);
3997 * Attempt to enable device-initiated and hub-initiated U1 and U2 entry. The
3998 * xHCI host policy may prevent U1 or U2 from being enabled.
4000 * Other callers may have disabled link PM, so U1 and U2 entry will be disabled
4001 * until the lpm_disable_count drops to zero. Caller must own the
4002 * bandwidth_mutex.
4004 void usb_enable_lpm(struct usb_device *udev)
4006 struct usb_hcd *hcd;
4008 if (!udev || !udev->parent ||
4009 udev->speed < USB_SPEED_SUPER ||
4010 !udev->lpm_capable ||
4011 udev->state < USB_STATE_DEFAULT)
4012 return;
4014 udev->lpm_disable_count--;
4015 hcd = bus_to_hcd(udev->bus);
4016 /* Double check that we can both enable and disable LPM.
4017 * Device must be configured to accept set feature U1/U2 timeout.
4019 if (!hcd || !hcd->driver->enable_usb3_lpm_timeout ||
4020 !hcd->driver->disable_usb3_lpm_timeout)
4021 return;
4023 if (udev->lpm_disable_count > 0)
4024 return;
4026 usb_enable_link_state(hcd, udev, USB3_LPM_U1);
4027 usb_enable_link_state(hcd, udev, USB3_LPM_U2);
4029 EXPORT_SYMBOL_GPL(usb_enable_lpm);
4031 /* Grab the bandwidth_mutex before calling usb_enable_lpm() */
4032 void usb_unlocked_enable_lpm(struct usb_device *udev)
4034 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
4036 if (!hcd)
4037 return;
4039 mutex_lock(hcd->bandwidth_mutex);
4040 usb_enable_lpm(udev);
4041 mutex_unlock(hcd->bandwidth_mutex);
4043 EXPORT_SYMBOL_GPL(usb_unlocked_enable_lpm);
4045 /* usb3 devices use U3 for disabled, make sure remote wakeup is disabled */
4046 static void hub_usb3_port_prepare_disable(struct usb_hub *hub,
4047 struct usb_port *port_dev)
4049 struct usb_device *udev = port_dev->child;
4050 int ret;
4052 if (udev && udev->port_is_suspended && udev->do_remote_wakeup) {
4053 ret = hub_set_port_link_state(hub, port_dev->portnum,
4054 USB_SS_PORT_LS_U0);
4055 if (!ret) {
4056 msleep(USB_RESUME_TIMEOUT);
4057 ret = usb_disable_remote_wakeup(udev);
4059 if (ret)
4060 dev_warn(&udev->dev,
4061 "Port disable: can't disable remote wake\n");
4062 udev->do_remote_wakeup = 0;
4066 #else /* CONFIG_PM */
4068 #define hub_suspend NULL
4069 #define hub_resume NULL
4070 #define hub_reset_resume NULL
4072 static inline void hub_usb3_port_prepare_disable(struct usb_hub *hub,
4073 struct usb_port *port_dev) { }
4075 int usb_disable_lpm(struct usb_device *udev)
4077 return 0;
4079 EXPORT_SYMBOL_GPL(usb_disable_lpm);
4081 void usb_enable_lpm(struct usb_device *udev) { }
4082 EXPORT_SYMBOL_GPL(usb_enable_lpm);
4084 int usb_unlocked_disable_lpm(struct usb_device *udev)
4086 return 0;
4088 EXPORT_SYMBOL_GPL(usb_unlocked_disable_lpm);
4090 void usb_unlocked_enable_lpm(struct usb_device *udev) { }
4091 EXPORT_SYMBOL_GPL(usb_unlocked_enable_lpm);
4093 int usb_disable_ltm(struct usb_device *udev)
4095 return 0;
4097 EXPORT_SYMBOL_GPL(usb_disable_ltm);
4099 void usb_enable_ltm(struct usb_device *udev) { }
4100 EXPORT_SYMBOL_GPL(usb_enable_ltm);
4102 static int hub_handle_remote_wakeup(struct usb_hub *hub, unsigned int port,
4103 u16 portstatus, u16 portchange)
4105 return 0;
4108 #endif /* CONFIG_PM */
4111 * USB-3 does not have a similar link state as USB-2 that will avoid negotiating
4112 * a connection with a plugged-in cable but will signal the host when the cable
4113 * is unplugged. Disable remote wake and set link state to U3 for USB-3 devices
4115 static int hub_port_disable(struct usb_hub *hub, int port1, int set_state)
4117 struct usb_port *port_dev = hub->ports[port1 - 1];
4118 struct usb_device *hdev = hub->hdev;
4119 int ret = 0;
4121 if (!hub->error) {
4122 if (hub_is_superspeed(hub->hdev)) {
4123 hub_usb3_port_prepare_disable(hub, port_dev);
4124 ret = hub_set_port_link_state(hub, port_dev->portnum,
4125 USB_SS_PORT_LS_U3);
4126 } else {
4127 ret = usb_clear_port_feature(hdev, port1,
4128 USB_PORT_FEAT_ENABLE);
4131 if (port_dev->child && set_state)
4132 usb_set_device_state(port_dev->child, USB_STATE_NOTATTACHED);
4133 if (ret && ret != -ENODEV)
4134 dev_err(&port_dev->dev, "cannot disable (err = %d)\n", ret);
4135 return ret;
4139 /* USB 2.0 spec, 7.1.7.3 / fig 7-29:
4141 * Between connect detection and reset signaling there must be a delay
4142 * of 100ms at least for debounce and power-settling. The corresponding
4143 * timer shall restart whenever the downstream port detects a disconnect.
4145 * Apparently there are some bluetooth and irda-dongles and a number of
4146 * low-speed devices for which this debounce period may last over a second.
4147 * Not covered by the spec - but easy to deal with.
4149 * This implementation uses a 1500ms total debounce timeout; if the
4150 * connection isn't stable by then it returns -ETIMEDOUT. It checks
4151 * every 25ms for transient disconnects. When the port status has been
4152 * unchanged for 100ms it returns the port status.
4154 int hub_port_debounce(struct usb_hub *hub, int port1, bool must_be_connected)
4156 int ret;
4157 u16 portchange, portstatus;
4158 unsigned connection = 0xffff;
4159 int total_time, stable_time = 0;
4160 struct usb_port *port_dev = hub->ports[port1 - 1];
4162 for (total_time = 0; ; total_time += HUB_DEBOUNCE_STEP) {
4163 ret = hub_port_status(hub, port1, &portstatus, &portchange);
4164 if (ret < 0)
4165 return ret;
4167 if (!(portchange & USB_PORT_STAT_C_CONNECTION) &&
4168 (portstatus & USB_PORT_STAT_CONNECTION) == connection) {
4169 if (!must_be_connected ||
4170 (connection == USB_PORT_STAT_CONNECTION))
4171 stable_time += HUB_DEBOUNCE_STEP;
4172 if (stable_time >= HUB_DEBOUNCE_STABLE)
4173 break;
4174 } else {
4175 stable_time = 0;
4176 connection = portstatus & USB_PORT_STAT_CONNECTION;
4179 if (portchange & USB_PORT_STAT_C_CONNECTION) {
4180 usb_clear_port_feature(hub->hdev, port1,
4181 USB_PORT_FEAT_C_CONNECTION);
4184 if (total_time >= HUB_DEBOUNCE_TIMEOUT)
4185 break;
4186 msleep(HUB_DEBOUNCE_STEP);
4189 dev_dbg(&port_dev->dev, "debounce total %dms stable %dms status 0x%x\n",
4190 total_time, stable_time, portstatus);
4192 if (stable_time < HUB_DEBOUNCE_STABLE)
4193 return -ETIMEDOUT;
4194 return portstatus;
4197 void usb_ep0_reinit(struct usb_device *udev)
4199 usb_disable_endpoint(udev, 0 + USB_DIR_IN, true);
4200 usb_disable_endpoint(udev, 0 + USB_DIR_OUT, true);
4201 usb_enable_endpoint(udev, &udev->ep0, true);
4203 EXPORT_SYMBOL_GPL(usb_ep0_reinit);
4205 #define usb_sndaddr0pipe() (PIPE_CONTROL << 30)
4206 #define usb_rcvaddr0pipe() ((PIPE_CONTROL << 30) | USB_DIR_IN)
4208 static int hub_set_address(struct usb_device *udev, int devnum)
4210 int retval;
4211 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
4214 * The host controller will choose the device address,
4215 * instead of the core having chosen it earlier
4217 if (!hcd->driver->address_device && devnum <= 1)
4218 return -EINVAL;
4219 if (udev->state == USB_STATE_ADDRESS)
4220 return 0;
4221 if (udev->state != USB_STATE_DEFAULT)
4222 return -EINVAL;
4223 if (hcd->driver->address_device)
4224 retval = hcd->driver->address_device(hcd, udev);
4225 else
4226 retval = usb_control_msg(udev, usb_sndaddr0pipe(),
4227 USB_REQ_SET_ADDRESS, 0, devnum, 0,
4228 NULL, 0, USB_CTRL_SET_TIMEOUT);
4229 if (retval == 0) {
4230 update_devnum(udev, devnum);
4231 /* Device now using proper address. */
4232 usb_set_device_state(udev, USB_STATE_ADDRESS);
4233 usb_ep0_reinit(udev);
4235 return retval;
4239 * There are reports of USB 3.0 devices that say they support USB 2.0 Link PM
4240 * when they're plugged into a USB 2.0 port, but they don't work when LPM is
4241 * enabled.
4243 * Only enable USB 2.0 Link PM if the port is internal (hardwired), or the
4244 * device says it supports the new USB 2.0 Link PM errata by setting the BESL
4245 * support bit in the BOS descriptor.
4247 static void hub_set_initial_usb2_lpm_policy(struct usb_device *udev)
4249 struct usb_hub *hub = usb_hub_to_struct_hub(udev->parent);
4250 int connect_type = USB_PORT_CONNECT_TYPE_UNKNOWN;
4252 if (!udev->usb2_hw_lpm_capable || !udev->bos)
4253 return;
4255 if (hub)
4256 connect_type = hub->ports[udev->portnum - 1]->connect_type;
4258 if ((udev->bos->ext_cap->bmAttributes & cpu_to_le32(USB_BESL_SUPPORT)) ||
4259 connect_type == USB_PORT_CONNECT_TYPE_HARD_WIRED) {
4260 udev->usb2_hw_lpm_allowed = 1;
4261 usb_set_usb2_hardware_lpm(udev, 1);
4265 static int hub_enable_device(struct usb_device *udev)
4267 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
4269 if (!hcd->driver->enable_device)
4270 return 0;
4271 if (udev->state == USB_STATE_ADDRESS)
4272 return 0;
4273 if (udev->state != USB_STATE_DEFAULT)
4274 return -EINVAL;
4276 return hcd->driver->enable_device(hcd, udev);
4279 /* Reset device, (re)assign address, get device descriptor.
4280 * Device connection must be stable, no more debouncing needed.
4281 * Returns device in USB_STATE_ADDRESS, except on error.
4283 * If this is called for an already-existing device (as part of
4284 * usb_reset_and_verify_device), the caller must own the device lock and
4285 * the port lock. For a newly detected device that is not accessible
4286 * through any global pointers, it's not necessary to lock the device,
4287 * but it is still necessary to lock the port.
4289 static int
4290 hub_port_init(struct usb_hub *hub, struct usb_device *udev, int port1,
4291 int retry_counter)
4293 struct usb_device *hdev = hub->hdev;
4294 struct usb_hcd *hcd = bus_to_hcd(hdev->bus);
4295 int retries, operations, retval, i;
4296 unsigned delay = HUB_SHORT_RESET_TIME;
4297 enum usb_device_speed oldspeed = udev->speed;
4298 const char *speed;
4299 int devnum = udev->devnum;
4301 /* root hub ports have a slightly longer reset period
4302 * (from USB 2.0 spec, section 7.1.7.5)
4304 if (!hdev->parent) {
4305 delay = HUB_ROOT_RESET_TIME;
4306 if (port1 == hdev->bus->otg_port)
4307 hdev->bus->b_hnp_enable = 0;
4310 /* Some low speed devices have problems with the quick delay, so */
4311 /* be a bit pessimistic with those devices. RHbug #23670 */
4312 if (oldspeed == USB_SPEED_LOW)
4313 delay = HUB_LONG_RESET_TIME;
4315 mutex_lock(hcd->address0_mutex);
4317 /* Reset the device; full speed may morph to high speed */
4318 /* FIXME a USB 2.0 device may morph into SuperSpeed on reset. */
4319 retval = hub_port_reset(hub, port1, udev, delay, false);
4320 if (retval < 0) /* error or disconnect */
4321 goto fail;
4322 /* success, speed is known */
4324 retval = -ENODEV;
4326 /* Don't allow speed changes at reset, except usb 3.0 to faster */
4327 if (oldspeed != USB_SPEED_UNKNOWN && oldspeed != udev->speed &&
4328 !(oldspeed == USB_SPEED_SUPER && udev->speed > oldspeed)) {
4329 dev_dbg(&udev->dev, "device reset changed speed!\n");
4330 goto fail;
4332 oldspeed = udev->speed;
4334 /* USB 2.0 section 5.5.3 talks about ep0 maxpacket ...
4335 * it's fixed size except for full speed devices.
4336 * For Wireless USB devices, ep0 max packet is always 512 (tho
4337 * reported as 0xff in the device descriptor). WUSB1.0[4.8.1].
4339 switch (udev->speed) {
4340 case USB_SPEED_SUPER_PLUS:
4341 case USB_SPEED_SUPER:
4342 case USB_SPEED_WIRELESS: /* fixed at 512 */
4343 udev->ep0.desc.wMaxPacketSize = cpu_to_le16(512);
4344 break;
4345 case USB_SPEED_HIGH: /* fixed at 64 */
4346 udev->ep0.desc.wMaxPacketSize = cpu_to_le16(64);
4347 break;
4348 case USB_SPEED_FULL: /* 8, 16, 32, or 64 */
4349 /* to determine the ep0 maxpacket size, try to read
4350 * the device descriptor to get bMaxPacketSize0 and
4351 * then correct our initial guess.
4353 udev->ep0.desc.wMaxPacketSize = cpu_to_le16(64);
4354 break;
4355 case USB_SPEED_LOW: /* fixed at 8 */
4356 udev->ep0.desc.wMaxPacketSize = cpu_to_le16(8);
4357 break;
4358 default:
4359 goto fail;
4362 if (udev->speed == USB_SPEED_WIRELESS)
4363 speed = "variable speed Wireless";
4364 else
4365 speed = usb_speed_string(udev->speed);
4367 if (udev->speed < USB_SPEED_SUPER)
4368 dev_info(&udev->dev,
4369 "%s %s USB device number %d using %s\n",
4370 (udev->config) ? "reset" : "new", speed,
4371 devnum, udev->bus->controller->driver->name);
4373 /* Set up TT records, if needed */
4374 if (hdev->tt) {
4375 udev->tt = hdev->tt;
4376 udev->ttport = hdev->ttport;
4377 } else if (udev->speed != USB_SPEED_HIGH
4378 && hdev->speed == USB_SPEED_HIGH) {
4379 if (!hub->tt.hub) {
4380 dev_err(&udev->dev, "parent hub has no TT\n");
4381 retval = -EINVAL;
4382 goto fail;
4384 udev->tt = &hub->tt;
4385 udev->ttport = port1;
4388 /* Why interleave GET_DESCRIPTOR and SET_ADDRESS this way?
4389 * Because device hardware and firmware is sometimes buggy in
4390 * this area, and this is how Linux has done it for ages.
4391 * Change it cautiously.
4393 * NOTE: If use_new_scheme() is true we will start by issuing
4394 * a 64-byte GET_DESCRIPTOR request. This is what Windows does,
4395 * so it may help with some non-standards-compliant devices.
4396 * Otherwise we start with SET_ADDRESS and then try to read the
4397 * first 8 bytes of the device descriptor to get the ep0 maxpacket
4398 * value.
4400 for (retries = 0; retries < GET_DESCRIPTOR_TRIES; (++retries, msleep(100))) {
4401 bool did_new_scheme = false;
4403 if (use_new_scheme(udev, retry_counter)) {
4404 struct usb_device_descriptor *buf;
4405 int r = 0;
4407 did_new_scheme = true;
4408 retval = hub_enable_device(udev);
4409 if (retval < 0) {
4410 dev_err(&udev->dev,
4411 "hub failed to enable device, error %d\n",
4412 retval);
4413 goto fail;
4416 #define GET_DESCRIPTOR_BUFSIZE 64
4417 buf = kmalloc(GET_DESCRIPTOR_BUFSIZE, GFP_NOIO);
4418 if (!buf) {
4419 retval = -ENOMEM;
4420 continue;
4423 /* Retry on all errors; some devices are flakey.
4424 * 255 is for WUSB devices, we actually need to use
4425 * 512 (WUSB1.0[4.8.1]).
4427 for (operations = 0; operations < 3; ++operations) {
4428 buf->bMaxPacketSize0 = 0;
4429 r = usb_control_msg(udev, usb_rcvaddr0pipe(),
4430 USB_REQ_GET_DESCRIPTOR, USB_DIR_IN,
4431 USB_DT_DEVICE << 8, 0,
4432 buf, GET_DESCRIPTOR_BUFSIZE,
4433 initial_descriptor_timeout);
4434 switch (buf->bMaxPacketSize0) {
4435 case 8: case 16: case 32: case 64: case 255:
4436 if (buf->bDescriptorType ==
4437 USB_DT_DEVICE) {
4438 r = 0;
4439 break;
4441 /* FALL THROUGH */
4442 default:
4443 if (r == 0)
4444 r = -EPROTO;
4445 break;
4448 * Some devices time out if they are powered on
4449 * when already connected. They need a second
4450 * reset. But only on the first attempt,
4451 * lest we get into a time out/reset loop
4453 if (r == 0 || (r == -ETIMEDOUT &&
4454 retries == 0 &&
4455 udev->speed > USB_SPEED_FULL))
4456 break;
4458 udev->descriptor.bMaxPacketSize0 =
4459 buf->bMaxPacketSize0;
4460 kfree(buf);
4462 retval = hub_port_reset(hub, port1, udev, delay, false);
4463 if (retval < 0) /* error or disconnect */
4464 goto fail;
4465 if (oldspeed != udev->speed) {
4466 dev_dbg(&udev->dev,
4467 "device reset changed speed!\n");
4468 retval = -ENODEV;
4469 goto fail;
4471 if (r) {
4472 if (r != -ENODEV)
4473 dev_err(&udev->dev, "device descriptor read/64, error %d\n",
4475 retval = -EMSGSIZE;
4476 continue;
4478 #undef GET_DESCRIPTOR_BUFSIZE
4482 * If device is WUSB, we already assigned an
4483 * unauthorized address in the Connect Ack sequence;
4484 * authorization will assign the final address.
4486 if (udev->wusb == 0) {
4487 for (operations = 0; operations < SET_ADDRESS_TRIES; ++operations) {
4488 retval = hub_set_address(udev, devnum);
4489 if (retval >= 0)
4490 break;
4491 msleep(200);
4493 if (retval < 0) {
4494 if (retval != -ENODEV)
4495 dev_err(&udev->dev, "device not accepting address %d, error %d\n",
4496 devnum, retval);
4497 goto fail;
4499 if (udev->speed >= USB_SPEED_SUPER) {
4500 devnum = udev->devnum;
4501 dev_info(&udev->dev,
4502 "%s SuperSpeed%s USB device number %d using %s\n",
4503 (udev->config) ? "reset" : "new",
4504 (udev->speed == USB_SPEED_SUPER_PLUS) ? "Plus" : "",
4505 devnum, udev->bus->controller->driver->name);
4508 /* cope with hardware quirkiness:
4509 * - let SET_ADDRESS settle, some device hardware wants it
4510 * - read ep0 maxpacket even for high and low speed,
4512 msleep(10);
4513 /* use_new_scheme() checks the speed which may have
4514 * changed since the initial look so we cache the result
4515 * in did_new_scheme
4517 if (did_new_scheme)
4518 break;
4521 retval = usb_get_device_descriptor(udev, 8);
4522 if (retval < 8) {
4523 if (retval != -ENODEV)
4524 dev_err(&udev->dev,
4525 "device descriptor read/8, error %d\n",
4526 retval);
4527 if (retval >= 0)
4528 retval = -EMSGSIZE;
4529 } else {
4530 retval = 0;
4531 break;
4534 if (retval)
4535 goto fail;
4538 * Some superspeed devices have finished the link training process
4539 * and attached to a superspeed hub port, but the device descriptor
4540 * got from those devices show they aren't superspeed devices. Warm
4541 * reset the port attached by the devices can fix them.
4543 if ((udev->speed >= USB_SPEED_SUPER) &&
4544 (le16_to_cpu(udev->descriptor.bcdUSB) < 0x0300)) {
4545 dev_err(&udev->dev, "got a wrong device descriptor, "
4546 "warm reset device\n");
4547 hub_port_reset(hub, port1, udev,
4548 HUB_BH_RESET_TIME, true);
4549 retval = -EINVAL;
4550 goto fail;
4553 if (udev->descriptor.bMaxPacketSize0 == 0xff ||
4554 udev->speed >= USB_SPEED_SUPER)
4555 i = 512;
4556 else
4557 i = udev->descriptor.bMaxPacketSize0;
4558 if (usb_endpoint_maxp(&udev->ep0.desc) != i) {
4559 if (udev->speed == USB_SPEED_LOW ||
4560 !(i == 8 || i == 16 || i == 32 || i == 64)) {
4561 dev_err(&udev->dev, "Invalid ep0 maxpacket: %d\n", i);
4562 retval = -EMSGSIZE;
4563 goto fail;
4565 if (udev->speed == USB_SPEED_FULL)
4566 dev_dbg(&udev->dev, "ep0 maxpacket = %d\n", i);
4567 else
4568 dev_warn(&udev->dev, "Using ep0 maxpacket: %d\n", i);
4569 udev->ep0.desc.wMaxPacketSize = cpu_to_le16(i);
4570 usb_ep0_reinit(udev);
4573 retval = usb_get_device_descriptor(udev, USB_DT_DEVICE_SIZE);
4574 if (retval < (signed)sizeof(udev->descriptor)) {
4575 if (retval != -ENODEV)
4576 dev_err(&udev->dev, "device descriptor read/all, error %d\n",
4577 retval);
4578 if (retval >= 0)
4579 retval = -ENOMSG;
4580 goto fail;
4583 usb_detect_quirks(udev);
4585 if (udev->wusb == 0 && le16_to_cpu(udev->descriptor.bcdUSB) >= 0x0201) {
4586 retval = usb_get_bos_descriptor(udev);
4587 if (!retval) {
4588 udev->lpm_capable = usb_device_supports_lpm(udev);
4589 usb_set_lpm_parameters(udev);
4593 retval = 0;
4594 /* notify HCD that we have a device connected and addressed */
4595 if (hcd->driver->update_device)
4596 hcd->driver->update_device(hcd, udev);
4597 hub_set_initial_usb2_lpm_policy(udev);
4598 fail:
4599 if (retval) {
4600 hub_port_disable(hub, port1, 0);
4601 update_devnum(udev, devnum); /* for disconnect processing */
4603 mutex_unlock(hcd->address0_mutex);
4604 return retval;
4607 static void
4608 check_highspeed(struct usb_hub *hub, struct usb_device *udev, int port1)
4610 struct usb_qualifier_descriptor *qual;
4611 int status;
4613 if (udev->quirks & USB_QUIRK_DEVICE_QUALIFIER)
4614 return;
4616 qual = kmalloc(sizeof *qual, GFP_KERNEL);
4617 if (qual == NULL)
4618 return;
4620 status = usb_get_descriptor(udev, USB_DT_DEVICE_QUALIFIER, 0,
4621 qual, sizeof *qual);
4622 if (status == sizeof *qual) {
4623 dev_info(&udev->dev, "not running at top speed; "
4624 "connect to a high speed hub\n");
4625 /* hub LEDs are probably harder to miss than syslog */
4626 if (hub->has_indicators) {
4627 hub->indicator[port1-1] = INDICATOR_GREEN_BLINK;
4628 queue_delayed_work(system_power_efficient_wq,
4629 &hub->leds, 0);
4632 kfree(qual);
4635 static unsigned
4636 hub_power_remaining(struct usb_hub *hub)
4638 struct usb_device *hdev = hub->hdev;
4639 int remaining;
4640 int port1;
4642 if (!hub->limited_power)
4643 return 0;
4645 remaining = hdev->bus_mA - hub->descriptor->bHubContrCurrent;
4646 for (port1 = 1; port1 <= hdev->maxchild; ++port1) {
4647 struct usb_port *port_dev = hub->ports[port1 - 1];
4648 struct usb_device *udev = port_dev->child;
4649 unsigned unit_load;
4650 int delta;
4652 if (!udev)
4653 continue;
4654 if (hub_is_superspeed(udev))
4655 unit_load = 150;
4656 else
4657 unit_load = 100;
4660 * Unconfigured devices may not use more than one unit load,
4661 * or 8mA for OTG ports
4663 if (udev->actconfig)
4664 delta = usb_get_max_power(udev, udev->actconfig);
4665 else if (port1 != udev->bus->otg_port || hdev->parent)
4666 delta = unit_load;
4667 else
4668 delta = 8;
4669 if (delta > hub->mA_per_port)
4670 dev_warn(&port_dev->dev, "%dmA is over %umA budget!\n",
4671 delta, hub->mA_per_port);
4672 remaining -= delta;
4674 if (remaining < 0) {
4675 dev_warn(hub->intfdev, "%dmA over power budget!\n",
4676 -remaining);
4677 remaining = 0;
4679 return remaining;
4682 static void hub_port_connect(struct usb_hub *hub, int port1, u16 portstatus,
4683 u16 portchange)
4685 int status = -ENODEV;
4686 int i;
4687 unsigned unit_load;
4688 struct usb_device *hdev = hub->hdev;
4689 struct usb_hcd *hcd = bus_to_hcd(hdev->bus);
4690 struct usb_port *port_dev = hub->ports[port1 - 1];
4691 struct usb_device *udev = port_dev->child;
4692 static int unreliable_port = -1;
4694 /* Disconnect any existing devices under this port */
4695 if (udev) {
4696 if (hcd->usb_phy && !hdev->parent)
4697 usb_phy_notify_disconnect(hcd->usb_phy, udev->speed);
4698 usb_disconnect(&port_dev->child);
4701 /* We can forget about a "removed" device when there's a physical
4702 * disconnect or the connect status changes.
4704 if (!(portstatus & USB_PORT_STAT_CONNECTION) ||
4705 (portchange & USB_PORT_STAT_C_CONNECTION))
4706 clear_bit(port1, hub->removed_bits);
4708 if (portchange & (USB_PORT_STAT_C_CONNECTION |
4709 USB_PORT_STAT_C_ENABLE)) {
4710 status = hub_port_debounce_be_stable(hub, port1);
4711 if (status < 0) {
4712 if (status != -ENODEV &&
4713 port1 != unreliable_port &&
4714 printk_ratelimit())
4715 dev_err(&port_dev->dev, "connect-debounce failed\n");
4716 portstatus &= ~USB_PORT_STAT_CONNECTION;
4717 unreliable_port = port1;
4718 } else {
4719 portstatus = status;
4723 /* Return now if debouncing failed or nothing is connected or
4724 * the device was "removed".
4726 if (!(portstatus & USB_PORT_STAT_CONNECTION) ||
4727 test_bit(port1, hub->removed_bits)) {
4730 * maybe switch power back on (e.g. root hub was reset)
4731 * but only if the port isn't owned by someone else.
4733 if (hub_is_port_power_switchable(hub)
4734 && !port_is_power_on(hub, portstatus)
4735 && !port_dev->port_owner)
4736 set_port_feature(hdev, port1, USB_PORT_FEAT_POWER);
4738 if (portstatus & USB_PORT_STAT_ENABLE)
4739 goto done;
4740 return;
4742 if (hub_is_superspeed(hub->hdev))
4743 unit_load = 150;
4744 else
4745 unit_load = 100;
4747 status = 0;
4748 for (i = 0; i < SET_CONFIG_TRIES; i++) {
4750 /* reallocate for each attempt, since references
4751 * to the previous one can escape in various ways
4753 udev = usb_alloc_dev(hdev, hdev->bus, port1);
4754 if (!udev) {
4755 dev_err(&port_dev->dev,
4756 "couldn't allocate usb_device\n");
4757 goto done;
4760 usb_set_device_state(udev, USB_STATE_POWERED);
4761 udev->bus_mA = hub->mA_per_port;
4762 udev->level = hdev->level + 1;
4763 udev->wusb = hub_is_wusb(hub);
4765 /* Devices connected to SuperSpeed hubs are USB 3.0 or later */
4766 if (hub_is_superspeed(hub->hdev))
4767 udev->speed = USB_SPEED_SUPER;
4768 else
4769 udev->speed = USB_SPEED_UNKNOWN;
4771 choose_devnum(udev);
4772 if (udev->devnum <= 0) {
4773 status = -ENOTCONN; /* Don't retry */
4774 goto loop;
4777 /* reset (non-USB 3.0 devices) and get descriptor */
4778 usb_lock_port(port_dev);
4779 status = hub_port_init(hub, udev, port1, i);
4780 usb_unlock_port(port_dev);
4781 if (status < 0)
4782 goto loop;
4784 if (udev->quirks & USB_QUIRK_DELAY_INIT)
4785 msleep(2000);
4787 /* consecutive bus-powered hubs aren't reliable; they can
4788 * violate the voltage drop budget. if the new child has
4789 * a "powered" LED, users should notice we didn't enable it
4790 * (without reading syslog), even without per-port LEDs
4791 * on the parent.
4793 if (udev->descriptor.bDeviceClass == USB_CLASS_HUB
4794 && udev->bus_mA <= unit_load) {
4795 u16 devstat;
4797 status = usb_get_status(udev, USB_RECIP_DEVICE, 0,
4798 &devstat);
4799 if (status) {
4800 dev_dbg(&udev->dev, "get status %d ?\n", status);
4801 goto loop_disable;
4803 if ((devstat & (1 << USB_DEVICE_SELF_POWERED)) == 0) {
4804 dev_err(&udev->dev,
4805 "can't connect bus-powered hub "
4806 "to this port\n");
4807 if (hub->has_indicators) {
4808 hub->indicator[port1-1] =
4809 INDICATOR_AMBER_BLINK;
4810 queue_delayed_work(
4811 system_power_efficient_wq,
4812 &hub->leds, 0);
4814 status = -ENOTCONN; /* Don't retry */
4815 goto loop_disable;
4819 /* check for devices running slower than they could */
4820 if (le16_to_cpu(udev->descriptor.bcdUSB) >= 0x0200
4821 && udev->speed == USB_SPEED_FULL
4822 && highspeed_hubs != 0)
4823 check_highspeed(hub, udev, port1);
4825 /* Store the parent's children[] pointer. At this point
4826 * udev becomes globally accessible, although presumably
4827 * no one will look at it until hdev is unlocked.
4829 status = 0;
4831 mutex_lock(&usb_port_peer_mutex);
4833 /* We mustn't add new devices if the parent hub has
4834 * been disconnected; we would race with the
4835 * recursively_mark_NOTATTACHED() routine.
4837 spin_lock_irq(&device_state_lock);
4838 if (hdev->state == USB_STATE_NOTATTACHED)
4839 status = -ENOTCONN;
4840 else
4841 port_dev->child = udev;
4842 spin_unlock_irq(&device_state_lock);
4843 mutex_unlock(&usb_port_peer_mutex);
4845 /* Run it through the hoops (find a driver, etc) */
4846 if (!status) {
4847 status = usb_new_device(udev);
4848 if (status) {
4849 mutex_lock(&usb_port_peer_mutex);
4850 spin_lock_irq(&device_state_lock);
4851 port_dev->child = NULL;
4852 spin_unlock_irq(&device_state_lock);
4853 mutex_unlock(&usb_port_peer_mutex);
4854 } else {
4855 if (hcd->usb_phy && !hdev->parent)
4856 usb_phy_notify_connect(hcd->usb_phy,
4857 udev->speed);
4861 if (status)
4862 goto loop_disable;
4864 status = hub_power_remaining(hub);
4865 if (status)
4866 dev_dbg(hub->intfdev, "%dmA power budget left\n", status);
4868 return;
4870 loop_disable:
4871 hub_port_disable(hub, port1, 1);
4872 loop:
4873 usb_ep0_reinit(udev);
4874 release_devnum(udev);
4875 hub_free_dev(udev);
4876 usb_put_dev(udev);
4877 if ((status == -ENOTCONN) || (status == -ENOTSUPP))
4878 break;
4880 /* When halfway through our retry count, power-cycle the port */
4881 if (i == (SET_CONFIG_TRIES / 2) - 1) {
4882 dev_info(&port_dev->dev, "attempt power cycle\n");
4883 usb_hub_set_port_power(hdev, hub, port1, false);
4884 msleep(2 * hub_power_on_good_delay(hub));
4885 usb_hub_set_port_power(hdev, hub, port1, true);
4886 msleep(hub_power_on_good_delay(hub));
4889 if (hub->hdev->parent ||
4890 !hcd->driver->port_handed_over ||
4891 !(hcd->driver->port_handed_over)(hcd, port1)) {
4892 if (status != -ENOTCONN && status != -ENODEV)
4893 dev_err(&port_dev->dev,
4894 "unable to enumerate USB device\n");
4897 done:
4898 hub_port_disable(hub, port1, 1);
4899 if (hcd->driver->relinquish_port && !hub->hdev->parent) {
4900 if (status != -ENOTCONN && status != -ENODEV)
4901 hcd->driver->relinquish_port(hcd, port1);
4905 /* Handle physical or logical connection change events.
4906 * This routine is called when:
4907 * a port connection-change occurs;
4908 * a port enable-change occurs (often caused by EMI);
4909 * usb_reset_and_verify_device() encounters changed descriptors (as from
4910 * a firmware download)
4911 * caller already locked the hub
4913 static void hub_port_connect_change(struct usb_hub *hub, int port1,
4914 u16 portstatus, u16 portchange)
4915 __must_hold(&port_dev->status_lock)
4917 struct usb_port *port_dev = hub->ports[port1 - 1];
4918 struct usb_device *udev = port_dev->child;
4919 int status = -ENODEV;
4921 dev_dbg(&port_dev->dev, "status %04x, change %04x, %s\n", portstatus,
4922 portchange, portspeed(hub, portstatus));
4924 if (hub->has_indicators) {
4925 set_port_led(hub, port1, HUB_LED_AUTO);
4926 hub->indicator[port1-1] = INDICATOR_AUTO;
4929 #ifdef CONFIG_USB_OTG
4930 /* during HNP, don't repeat the debounce */
4931 if (hub->hdev->bus->is_b_host)
4932 portchange &= ~(USB_PORT_STAT_C_CONNECTION |
4933 USB_PORT_STAT_C_ENABLE);
4934 #endif
4936 /* Try to resuscitate an existing device */
4937 if ((portstatus & USB_PORT_STAT_CONNECTION) && udev &&
4938 udev->state != USB_STATE_NOTATTACHED) {
4939 if (portstatus & USB_PORT_STAT_ENABLE) {
4940 status = 0; /* Nothing to do */
4941 #ifdef CONFIG_PM
4942 } else if (udev->state == USB_STATE_SUSPENDED &&
4943 udev->persist_enabled) {
4944 /* For a suspended device, treat this as a
4945 * remote wakeup event.
4947 usb_unlock_port(port_dev);
4948 status = usb_remote_wakeup(udev);
4949 usb_lock_port(port_dev);
4950 #endif
4951 } else {
4952 /* Don't resuscitate */;
4955 clear_bit(port1, hub->change_bits);
4957 /* successfully revalidated the connection */
4958 if (status == 0)
4959 return;
4961 usb_unlock_port(port_dev);
4962 hub_port_connect(hub, port1, portstatus, portchange);
4963 usb_lock_port(port_dev);
4966 static void port_event(struct usb_hub *hub, int port1)
4967 __must_hold(&port_dev->status_lock)
4969 int connect_change;
4970 struct usb_port *port_dev = hub->ports[port1 - 1];
4971 struct usb_device *udev = port_dev->child;
4972 struct usb_device *hdev = hub->hdev;
4973 u16 portstatus, portchange;
4975 connect_change = test_bit(port1, hub->change_bits);
4976 clear_bit(port1, hub->event_bits);
4977 clear_bit(port1, hub->wakeup_bits);
4979 if (hub_port_status(hub, port1, &portstatus, &portchange) < 0)
4980 return;
4982 if (portchange & USB_PORT_STAT_C_CONNECTION) {
4983 usb_clear_port_feature(hdev, port1, USB_PORT_FEAT_C_CONNECTION);
4984 connect_change = 1;
4987 if (portchange & USB_PORT_STAT_C_ENABLE) {
4988 if (!connect_change)
4989 dev_dbg(&port_dev->dev, "enable change, status %08x\n",
4990 portstatus);
4991 usb_clear_port_feature(hdev, port1, USB_PORT_FEAT_C_ENABLE);
4994 * EM interference sometimes causes badly shielded USB devices
4995 * to be shutdown by the hub, this hack enables them again.
4996 * Works at least with mouse driver.
4998 if (!(portstatus & USB_PORT_STAT_ENABLE)
4999 && !connect_change && udev) {
5000 dev_err(&port_dev->dev, "disabled by hub (EMI?), re-enabling...\n");
5001 connect_change = 1;
5005 if (portchange & USB_PORT_STAT_C_OVERCURRENT) {
5006 u16 status = 0, unused;
5008 dev_dbg(&port_dev->dev, "over-current change\n");
5009 usb_clear_port_feature(hdev, port1,
5010 USB_PORT_FEAT_C_OVER_CURRENT);
5011 msleep(100); /* Cool down */
5012 hub_power_on(hub, true);
5013 hub_port_status(hub, port1, &status, &unused);
5014 if (status & USB_PORT_STAT_OVERCURRENT)
5015 dev_err(&port_dev->dev, "over-current condition\n");
5018 if (portchange & USB_PORT_STAT_C_RESET) {
5019 dev_dbg(&port_dev->dev, "reset change\n");
5020 usb_clear_port_feature(hdev, port1, USB_PORT_FEAT_C_RESET);
5022 if ((portchange & USB_PORT_STAT_C_BH_RESET)
5023 && hub_is_superspeed(hdev)) {
5024 dev_dbg(&port_dev->dev, "warm reset change\n");
5025 usb_clear_port_feature(hdev, port1,
5026 USB_PORT_FEAT_C_BH_PORT_RESET);
5028 if (portchange & USB_PORT_STAT_C_LINK_STATE) {
5029 dev_dbg(&port_dev->dev, "link state change\n");
5030 usb_clear_port_feature(hdev, port1,
5031 USB_PORT_FEAT_C_PORT_LINK_STATE);
5033 if (portchange & USB_PORT_STAT_C_CONFIG_ERROR) {
5034 dev_warn(&port_dev->dev, "config error\n");
5035 usb_clear_port_feature(hdev, port1,
5036 USB_PORT_FEAT_C_PORT_CONFIG_ERROR);
5039 /* skip port actions that require the port to be powered on */
5040 if (!pm_runtime_active(&port_dev->dev))
5041 return;
5043 if (hub_handle_remote_wakeup(hub, port1, portstatus, portchange))
5044 connect_change = 1;
5047 * Warm reset a USB3 protocol port if it's in
5048 * SS.Inactive state.
5050 if (hub_port_warm_reset_required(hub, port1, portstatus)) {
5051 dev_dbg(&port_dev->dev, "do warm reset\n");
5052 if (!udev || !(portstatus & USB_PORT_STAT_CONNECTION)
5053 || udev->state == USB_STATE_NOTATTACHED) {
5054 if (hub_port_reset(hub, port1, NULL,
5055 HUB_BH_RESET_TIME, true) < 0)
5056 hub_port_disable(hub, port1, 1);
5057 } else {
5058 usb_unlock_port(port_dev);
5059 usb_lock_device(udev);
5060 usb_reset_device(udev);
5061 usb_unlock_device(udev);
5062 usb_lock_port(port_dev);
5063 connect_change = 0;
5067 if (connect_change)
5068 hub_port_connect_change(hub, port1, portstatus, portchange);
5071 static void hub_event(struct work_struct *work)
5073 struct usb_device *hdev;
5074 struct usb_interface *intf;
5075 struct usb_hub *hub;
5076 struct device *hub_dev;
5077 u16 hubstatus;
5078 u16 hubchange;
5079 int i, ret;
5081 hub = container_of(work, struct usb_hub, events);
5082 hdev = hub->hdev;
5083 hub_dev = hub->intfdev;
5084 intf = to_usb_interface(hub_dev);
5086 dev_dbg(hub_dev, "state %d ports %d chg %04x evt %04x\n",
5087 hdev->state, hdev->maxchild,
5088 /* NOTE: expects max 15 ports... */
5089 (u16) hub->change_bits[0],
5090 (u16) hub->event_bits[0]);
5092 /* Lock the device, then check to see if we were
5093 * disconnected while waiting for the lock to succeed. */
5094 usb_lock_device(hdev);
5095 if (unlikely(hub->disconnected))
5096 goto out_hdev_lock;
5098 /* If the hub has died, clean up after it */
5099 if (hdev->state == USB_STATE_NOTATTACHED) {
5100 hub->error = -ENODEV;
5101 hub_quiesce(hub, HUB_DISCONNECT);
5102 goto out_hdev_lock;
5105 /* Autoresume */
5106 ret = usb_autopm_get_interface(intf);
5107 if (ret) {
5108 dev_dbg(hub_dev, "Can't autoresume: %d\n", ret);
5109 goto out_hdev_lock;
5112 /* If this is an inactive hub, do nothing */
5113 if (hub->quiescing)
5114 goto out_autopm;
5116 if (hub->error) {
5117 dev_dbg(hub_dev, "resetting for error %d\n", hub->error);
5119 ret = usb_reset_device(hdev);
5120 if (ret) {
5121 dev_dbg(hub_dev, "error resetting hub: %d\n", ret);
5122 goto out_autopm;
5125 hub->nerrors = 0;
5126 hub->error = 0;
5129 /* deal with port status changes */
5130 for (i = 1; i <= hdev->maxchild; i++) {
5131 struct usb_port *port_dev = hub->ports[i - 1];
5133 if (test_bit(i, hub->event_bits)
5134 || test_bit(i, hub->change_bits)
5135 || test_bit(i, hub->wakeup_bits)) {
5137 * The get_noresume and barrier ensure that if
5138 * the port was in the process of resuming, we
5139 * flush that work and keep the port active for
5140 * the duration of the port_event(). However,
5141 * if the port is runtime pm suspended
5142 * (powered-off), we leave it in that state, run
5143 * an abbreviated port_event(), and move on.
5145 pm_runtime_get_noresume(&port_dev->dev);
5146 pm_runtime_barrier(&port_dev->dev);
5147 usb_lock_port(port_dev);
5148 port_event(hub, i);
5149 usb_unlock_port(port_dev);
5150 pm_runtime_put_sync(&port_dev->dev);
5154 /* deal with hub status changes */
5155 if (test_and_clear_bit(0, hub->event_bits) == 0)
5156 ; /* do nothing */
5157 else if (hub_hub_status(hub, &hubstatus, &hubchange) < 0)
5158 dev_err(hub_dev, "get_hub_status failed\n");
5159 else {
5160 if (hubchange & HUB_CHANGE_LOCAL_POWER) {
5161 dev_dbg(hub_dev, "power change\n");
5162 clear_hub_feature(hdev, C_HUB_LOCAL_POWER);
5163 if (hubstatus & HUB_STATUS_LOCAL_POWER)
5164 /* FIXME: Is this always true? */
5165 hub->limited_power = 1;
5166 else
5167 hub->limited_power = 0;
5169 if (hubchange & HUB_CHANGE_OVERCURRENT) {
5170 u16 status = 0;
5171 u16 unused;
5173 dev_dbg(hub_dev, "over-current change\n");
5174 clear_hub_feature(hdev, C_HUB_OVER_CURRENT);
5175 msleep(500); /* Cool down */
5176 hub_power_on(hub, true);
5177 hub_hub_status(hub, &status, &unused);
5178 if (status & HUB_STATUS_OVERCURRENT)
5179 dev_err(hub_dev, "over-current condition\n");
5183 out_autopm:
5184 /* Balance the usb_autopm_get_interface() above */
5185 usb_autopm_put_interface_no_suspend(intf);
5186 out_hdev_lock:
5187 usb_unlock_device(hdev);
5189 /* Balance the stuff in kick_hub_wq() and allow autosuspend */
5190 usb_autopm_put_interface(intf);
5191 kref_put(&hub->kref, hub_release);
5194 static const struct usb_device_id hub_id_table[] = {
5195 { .match_flags = USB_DEVICE_ID_MATCH_VENDOR
5196 | USB_DEVICE_ID_MATCH_INT_CLASS,
5197 .idVendor = USB_VENDOR_GENESYS_LOGIC,
5198 .bInterfaceClass = USB_CLASS_HUB,
5199 .driver_info = HUB_QUIRK_CHECK_PORT_AUTOSUSPEND},
5200 { .match_flags = USB_DEVICE_ID_MATCH_DEV_CLASS,
5201 .bDeviceClass = USB_CLASS_HUB},
5202 { .match_flags = USB_DEVICE_ID_MATCH_INT_CLASS,
5203 .bInterfaceClass = USB_CLASS_HUB},
5204 { } /* Terminating entry */
5207 MODULE_DEVICE_TABLE(usb, hub_id_table);
5209 static struct usb_driver hub_driver = {
5210 .name = "hub",
5211 .probe = hub_probe,
5212 .disconnect = hub_disconnect,
5213 .suspend = hub_suspend,
5214 .resume = hub_resume,
5215 .reset_resume = hub_reset_resume,
5216 .pre_reset = hub_pre_reset,
5217 .post_reset = hub_post_reset,
5218 .unlocked_ioctl = hub_ioctl,
5219 .id_table = hub_id_table,
5220 .supports_autosuspend = 1,
5223 int usb_hub_init(void)
5225 if (usb_register(&hub_driver) < 0) {
5226 printk(KERN_ERR "%s: can't register hub driver\n",
5227 usbcore_name);
5228 return -1;
5232 * The workqueue needs to be freezable to avoid interfering with
5233 * USB-PERSIST port handover. Otherwise it might see that a full-speed
5234 * device was gone before the EHCI controller had handed its port
5235 * over to the companion full-speed controller.
5237 hub_wq = alloc_workqueue("usb_hub_wq", WQ_FREEZABLE, 0);
5238 if (hub_wq)
5239 return 0;
5241 /* Fall through if kernel_thread failed */
5242 usb_deregister(&hub_driver);
5243 pr_err("%s: can't allocate workqueue for usb hub\n", usbcore_name);
5245 return -1;
5248 void usb_hub_cleanup(void)
5250 destroy_workqueue(hub_wq);
5253 * Hub resources are freed for us by usb_deregister. It calls
5254 * usb_driver_purge on every device which in turn calls that
5255 * devices disconnect function if it is using this driver.
5256 * The hub_disconnect function takes care of releasing the
5257 * individual hub resources. -greg
5259 usb_deregister(&hub_driver);
5260 } /* usb_hub_cleanup() */
5262 static int descriptors_changed(struct usb_device *udev,
5263 struct usb_device_descriptor *old_device_descriptor,
5264 struct usb_host_bos *old_bos)
5266 int changed = 0;
5267 unsigned index;
5268 unsigned serial_len = 0;
5269 unsigned len;
5270 unsigned old_length;
5271 int length;
5272 char *buf;
5274 if (memcmp(&udev->descriptor, old_device_descriptor,
5275 sizeof(*old_device_descriptor)) != 0)
5276 return 1;
5278 if ((old_bos && !udev->bos) || (!old_bos && udev->bos))
5279 return 1;
5280 if (udev->bos) {
5281 len = le16_to_cpu(udev->bos->desc->wTotalLength);
5282 if (len != le16_to_cpu(old_bos->desc->wTotalLength))
5283 return 1;
5284 if (memcmp(udev->bos->desc, old_bos->desc, len))
5285 return 1;
5288 /* Since the idVendor, idProduct, and bcdDevice values in the
5289 * device descriptor haven't changed, we will assume the
5290 * Manufacturer and Product strings haven't changed either.
5291 * But the SerialNumber string could be different (e.g., a
5292 * different flash card of the same brand).
5294 if (udev->serial)
5295 serial_len = strlen(udev->serial) + 1;
5297 len = serial_len;
5298 for (index = 0; index < udev->descriptor.bNumConfigurations; index++) {
5299 old_length = le16_to_cpu(udev->config[index].desc.wTotalLength);
5300 len = max(len, old_length);
5303 buf = kmalloc(len, GFP_NOIO);
5304 if (buf == NULL) {
5305 dev_err(&udev->dev, "no mem to re-read configs after reset\n");
5306 /* assume the worst */
5307 return 1;
5309 for (index = 0; index < udev->descriptor.bNumConfigurations; index++) {
5310 old_length = le16_to_cpu(udev->config[index].desc.wTotalLength);
5311 length = usb_get_descriptor(udev, USB_DT_CONFIG, index, buf,
5312 old_length);
5313 if (length != old_length) {
5314 dev_dbg(&udev->dev, "config index %d, error %d\n",
5315 index, length);
5316 changed = 1;
5317 break;
5319 if (memcmp(buf, udev->rawdescriptors[index], old_length)
5320 != 0) {
5321 dev_dbg(&udev->dev, "config index %d changed (#%d)\n",
5322 index,
5323 ((struct usb_config_descriptor *) buf)->
5324 bConfigurationValue);
5325 changed = 1;
5326 break;
5330 if (!changed && serial_len) {
5331 length = usb_string(udev, udev->descriptor.iSerialNumber,
5332 buf, serial_len);
5333 if (length + 1 != serial_len) {
5334 dev_dbg(&udev->dev, "serial string error %d\n",
5335 length);
5336 changed = 1;
5337 } else if (memcmp(buf, udev->serial, length) != 0) {
5338 dev_dbg(&udev->dev, "serial string changed\n");
5339 changed = 1;
5343 kfree(buf);
5344 return changed;
5348 * usb_reset_and_verify_device - perform a USB port reset to reinitialize a device
5349 * @udev: device to reset (not in SUSPENDED or NOTATTACHED state)
5351 * WARNING - don't use this routine to reset a composite device
5352 * (one with multiple interfaces owned by separate drivers)!
5353 * Use usb_reset_device() instead.
5355 * Do a port reset, reassign the device's address, and establish its
5356 * former operating configuration. If the reset fails, or the device's
5357 * descriptors change from their values before the reset, or the original
5358 * configuration and altsettings cannot be restored, a flag will be set
5359 * telling hub_wq to pretend the device has been disconnected and then
5360 * re-connected. All drivers will be unbound, and the device will be
5361 * re-enumerated and probed all over again.
5363 * Return: 0 if the reset succeeded, -ENODEV if the device has been
5364 * flagged for logical disconnection, or some other negative error code
5365 * if the reset wasn't even attempted.
5367 * Note:
5368 * The caller must own the device lock and the port lock, the latter is
5369 * taken by usb_reset_device(). For example, it's safe to use
5370 * usb_reset_device() from a driver probe() routine after downloading
5371 * new firmware. For calls that might not occur during probe(), drivers
5372 * should lock the device using usb_lock_device_for_reset().
5374 * Locking exception: This routine may also be called from within an
5375 * autoresume handler. Such usage won't conflict with other tasks
5376 * holding the device lock because these tasks should always call
5377 * usb_autopm_resume_device(), thereby preventing any unwanted
5378 * autoresume. The autoresume handler is expected to have already
5379 * acquired the port lock before calling this routine.
5381 static int usb_reset_and_verify_device(struct usb_device *udev)
5383 struct usb_device *parent_hdev = udev->parent;
5384 struct usb_hub *parent_hub;
5385 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
5386 struct usb_device_descriptor descriptor = udev->descriptor;
5387 struct usb_host_bos *bos;
5388 int i, j, ret = 0;
5389 int port1 = udev->portnum;
5391 if (udev->state == USB_STATE_NOTATTACHED ||
5392 udev->state == USB_STATE_SUSPENDED) {
5393 dev_dbg(&udev->dev, "device reset not allowed in state %d\n",
5394 udev->state);
5395 return -EINVAL;
5398 if (!parent_hdev)
5399 return -EISDIR;
5401 parent_hub = usb_hub_to_struct_hub(parent_hdev);
5403 /* Disable USB2 hardware LPM.
5404 * It will be re-enabled by the enumeration process.
5406 if (udev->usb2_hw_lpm_enabled == 1)
5407 usb_set_usb2_hardware_lpm(udev, 0);
5409 /* Disable LPM and LTM while we reset the device and reinstall the alt
5410 * settings. Device-initiated LPM settings, and system exit latency
5411 * settings are cleared when the device is reset, so we have to set
5412 * them up again.
5414 ret = usb_unlocked_disable_lpm(udev);
5415 if (ret) {
5416 dev_err(&udev->dev, "%s Failed to disable LPM\n.", __func__);
5417 goto re_enumerate_no_bos;
5419 ret = usb_disable_ltm(udev);
5420 if (ret) {
5421 dev_err(&udev->dev, "%s Failed to disable LTM\n.",
5422 __func__);
5423 goto re_enumerate_no_bos;
5426 bos = udev->bos;
5427 udev->bos = NULL;
5429 for (i = 0; i < SET_CONFIG_TRIES; ++i) {
5431 /* ep0 maxpacket size may change; let the HCD know about it.
5432 * Other endpoints will be handled by re-enumeration. */
5433 usb_ep0_reinit(udev);
5434 ret = hub_port_init(parent_hub, udev, port1, i);
5435 if (ret >= 0 || ret == -ENOTCONN || ret == -ENODEV)
5436 break;
5439 if (ret < 0)
5440 goto re_enumerate;
5442 /* Device might have changed firmware (DFU or similar) */
5443 if (descriptors_changed(udev, &descriptor, bos)) {
5444 dev_info(&udev->dev, "device firmware changed\n");
5445 udev->descriptor = descriptor; /* for disconnect() calls */
5446 goto re_enumerate;
5449 /* Restore the device's previous configuration */
5450 if (!udev->actconfig)
5451 goto done;
5453 mutex_lock(hcd->bandwidth_mutex);
5454 ret = usb_hcd_alloc_bandwidth(udev, udev->actconfig, NULL, NULL);
5455 if (ret < 0) {
5456 dev_warn(&udev->dev,
5457 "Busted HC? Not enough HCD resources for "
5458 "old configuration.\n");
5459 mutex_unlock(hcd->bandwidth_mutex);
5460 goto re_enumerate;
5462 ret = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
5463 USB_REQ_SET_CONFIGURATION, 0,
5464 udev->actconfig->desc.bConfigurationValue, 0,
5465 NULL, 0, USB_CTRL_SET_TIMEOUT);
5466 if (ret < 0) {
5467 dev_err(&udev->dev,
5468 "can't restore configuration #%d (error=%d)\n",
5469 udev->actconfig->desc.bConfigurationValue, ret);
5470 mutex_unlock(hcd->bandwidth_mutex);
5471 goto re_enumerate;
5473 mutex_unlock(hcd->bandwidth_mutex);
5474 usb_set_device_state(udev, USB_STATE_CONFIGURED);
5476 /* Put interfaces back into the same altsettings as before.
5477 * Don't bother to send the Set-Interface request for interfaces
5478 * that were already in altsetting 0; besides being unnecessary,
5479 * many devices can't handle it. Instead just reset the host-side
5480 * endpoint state.
5482 for (i = 0; i < udev->actconfig->desc.bNumInterfaces; i++) {
5483 struct usb_host_config *config = udev->actconfig;
5484 struct usb_interface *intf = config->interface[i];
5485 struct usb_interface_descriptor *desc;
5487 desc = &intf->cur_altsetting->desc;
5488 if (desc->bAlternateSetting == 0) {
5489 usb_disable_interface(udev, intf, true);
5490 usb_enable_interface(udev, intf, true);
5491 ret = 0;
5492 } else {
5493 /* Let the bandwidth allocation function know that this
5494 * device has been reset, and it will have to use
5495 * alternate setting 0 as the current alternate setting.
5497 intf->resetting_device = 1;
5498 ret = usb_set_interface(udev, desc->bInterfaceNumber,
5499 desc->bAlternateSetting);
5500 intf->resetting_device = 0;
5502 if (ret < 0) {
5503 dev_err(&udev->dev, "failed to restore interface %d "
5504 "altsetting %d (error=%d)\n",
5505 desc->bInterfaceNumber,
5506 desc->bAlternateSetting,
5507 ret);
5508 goto re_enumerate;
5510 /* Resetting also frees any allocated streams */
5511 for (j = 0; j < intf->cur_altsetting->desc.bNumEndpoints; j++)
5512 intf->cur_altsetting->endpoint[j].streams = 0;
5515 done:
5516 /* Now that the alt settings are re-installed, enable LTM and LPM. */
5517 usb_set_usb2_hardware_lpm(udev, 1);
5518 usb_unlocked_enable_lpm(udev);
5519 usb_enable_ltm(udev);
5520 usb_release_bos_descriptor(udev);
5521 udev->bos = bos;
5522 return 0;
5524 re_enumerate:
5525 usb_release_bos_descriptor(udev);
5526 udev->bos = bos;
5527 re_enumerate_no_bos:
5528 /* LPM state doesn't matter when we're about to destroy the device. */
5529 hub_port_logical_disconnect(parent_hub, port1);
5530 return -ENODEV;
5534 * usb_reset_device - warn interface drivers and perform a USB port reset
5535 * @udev: device to reset (not in SUSPENDED or NOTATTACHED state)
5537 * Warns all drivers bound to registered interfaces (using their pre_reset
5538 * method), performs the port reset, and then lets the drivers know that
5539 * the reset is over (using their post_reset method).
5541 * Return: The same as for usb_reset_and_verify_device().
5543 * Note:
5544 * The caller must own the device lock. For example, it's safe to use
5545 * this from a driver probe() routine after downloading new firmware.
5546 * For calls that might not occur during probe(), drivers should lock
5547 * the device using usb_lock_device_for_reset().
5549 * If an interface is currently being probed or disconnected, we assume
5550 * its driver knows how to handle resets. For all other interfaces,
5551 * if the driver doesn't have pre_reset and post_reset methods then
5552 * we attempt to unbind it and rebind afterward.
5554 int usb_reset_device(struct usb_device *udev)
5556 int ret;
5557 int i;
5558 unsigned int noio_flag;
5559 struct usb_port *port_dev;
5560 struct usb_host_config *config = udev->actconfig;
5561 struct usb_hub *hub = usb_hub_to_struct_hub(udev->parent);
5563 if (udev->state == USB_STATE_NOTATTACHED ||
5564 udev->state == USB_STATE_SUSPENDED) {
5565 dev_dbg(&udev->dev, "device reset not allowed in state %d\n",
5566 udev->state);
5567 return -EINVAL;
5570 if (!udev->parent) {
5571 /* this requires hcd-specific logic; see ohci_restart() */
5572 dev_dbg(&udev->dev, "%s for root hub!\n", __func__);
5573 return -EISDIR;
5576 port_dev = hub->ports[udev->portnum - 1];
5579 * Don't allocate memory with GFP_KERNEL in current
5580 * context to avoid possible deadlock if usb mass
5581 * storage interface or usbnet interface(iSCSI case)
5582 * is included in current configuration. The easist
5583 * approach is to do it for every device reset,
5584 * because the device 'memalloc_noio' flag may have
5585 * not been set before reseting the usb device.
5587 noio_flag = memalloc_noio_save();
5589 /* Prevent autosuspend during the reset */
5590 usb_autoresume_device(udev);
5592 if (config) {
5593 for (i = 0; i < config->desc.bNumInterfaces; ++i) {
5594 struct usb_interface *cintf = config->interface[i];
5595 struct usb_driver *drv;
5596 int unbind = 0;
5598 if (cintf->dev.driver) {
5599 drv = to_usb_driver(cintf->dev.driver);
5600 if (drv->pre_reset && drv->post_reset)
5601 unbind = (drv->pre_reset)(cintf);
5602 else if (cintf->condition ==
5603 USB_INTERFACE_BOUND)
5604 unbind = 1;
5605 if (unbind)
5606 usb_forced_unbind_intf(cintf);
5611 usb_lock_port(port_dev);
5612 ret = usb_reset_and_verify_device(udev);
5613 usb_unlock_port(port_dev);
5615 if (config) {
5616 for (i = config->desc.bNumInterfaces - 1; i >= 0; --i) {
5617 struct usb_interface *cintf = config->interface[i];
5618 struct usb_driver *drv;
5619 int rebind = cintf->needs_binding;
5621 if (!rebind && cintf->dev.driver) {
5622 drv = to_usb_driver(cintf->dev.driver);
5623 if (drv->post_reset)
5624 rebind = (drv->post_reset)(cintf);
5625 else if (cintf->condition ==
5626 USB_INTERFACE_BOUND)
5627 rebind = 1;
5628 if (rebind)
5629 cintf->needs_binding = 1;
5632 usb_unbind_and_rebind_marked_interfaces(udev);
5635 usb_autosuspend_device(udev);
5636 memalloc_noio_restore(noio_flag);
5637 return ret;
5639 EXPORT_SYMBOL_GPL(usb_reset_device);
5643 * usb_queue_reset_device - Reset a USB device from an atomic context
5644 * @iface: USB interface belonging to the device to reset
5646 * This function can be used to reset a USB device from an atomic
5647 * context, where usb_reset_device() won't work (as it blocks).
5649 * Doing a reset via this method is functionally equivalent to calling
5650 * usb_reset_device(), except for the fact that it is delayed to a
5651 * workqueue. This means that any drivers bound to other interfaces
5652 * might be unbound, as well as users from usbfs in user space.
5654 * Corner cases:
5656 * - Scheduling two resets at the same time from two different drivers
5657 * attached to two different interfaces of the same device is
5658 * possible; depending on how the driver attached to each interface
5659 * handles ->pre_reset(), the second reset might happen or not.
5661 * - If the reset is delayed so long that the interface is unbound from
5662 * its driver, the reset will be skipped.
5664 * - This function can be called during .probe(). It can also be called
5665 * during .disconnect(), but doing so is pointless because the reset
5666 * will not occur. If you really want to reset the device during
5667 * .disconnect(), call usb_reset_device() directly -- but watch out
5668 * for nested unbinding issues!
5670 void usb_queue_reset_device(struct usb_interface *iface)
5672 if (schedule_work(&iface->reset_ws))
5673 usb_get_intf(iface);
5675 EXPORT_SYMBOL_GPL(usb_queue_reset_device);
5678 * usb_hub_find_child - Get the pointer of child device
5679 * attached to the port which is specified by @port1.
5680 * @hdev: USB device belonging to the usb hub
5681 * @port1: port num to indicate which port the child device
5682 * is attached to.
5684 * USB drivers call this function to get hub's child device
5685 * pointer.
5687 * Return: %NULL if input param is invalid and
5688 * child's usb_device pointer if non-NULL.
5690 struct usb_device *usb_hub_find_child(struct usb_device *hdev,
5691 int port1)
5693 struct usb_hub *hub = usb_hub_to_struct_hub(hdev);
5695 if (port1 < 1 || port1 > hdev->maxchild)
5696 return NULL;
5697 return hub->ports[port1 - 1]->child;
5699 EXPORT_SYMBOL_GPL(usb_hub_find_child);
5701 void usb_hub_adjust_deviceremovable(struct usb_device *hdev,
5702 struct usb_hub_descriptor *desc)
5704 struct usb_hub *hub = usb_hub_to_struct_hub(hdev);
5705 enum usb_port_connect_type connect_type;
5706 int i;
5708 if (!hub)
5709 return;
5711 if (!hub_is_superspeed(hdev)) {
5712 for (i = 1; i <= hdev->maxchild; i++) {
5713 struct usb_port *port_dev = hub->ports[i - 1];
5715 connect_type = port_dev->connect_type;
5716 if (connect_type == USB_PORT_CONNECT_TYPE_HARD_WIRED) {
5717 u8 mask = 1 << (i%8);
5719 if (!(desc->u.hs.DeviceRemovable[i/8] & mask)) {
5720 dev_dbg(&port_dev->dev, "DeviceRemovable is changed to 1 according to platform information.\n");
5721 desc->u.hs.DeviceRemovable[i/8] |= mask;
5725 } else {
5726 u16 port_removable = le16_to_cpu(desc->u.ss.DeviceRemovable);
5728 for (i = 1; i <= hdev->maxchild; i++) {
5729 struct usb_port *port_dev = hub->ports[i - 1];
5731 connect_type = port_dev->connect_type;
5732 if (connect_type == USB_PORT_CONNECT_TYPE_HARD_WIRED) {
5733 u16 mask = 1 << i;
5735 if (!(port_removable & mask)) {
5736 dev_dbg(&port_dev->dev, "DeviceRemovable is changed to 1 according to platform information.\n");
5737 port_removable |= mask;
5742 desc->u.ss.DeviceRemovable = cpu_to_le16(port_removable);
5746 #ifdef CONFIG_ACPI
5748 * usb_get_hub_port_acpi_handle - Get the usb port's acpi handle
5749 * @hdev: USB device belonging to the usb hub
5750 * @port1: port num of the port
5752 * Return: Port's acpi handle if successful, %NULL if params are
5753 * invalid.
5755 acpi_handle usb_get_hub_port_acpi_handle(struct usb_device *hdev,
5756 int port1)
5758 struct usb_hub *hub = usb_hub_to_struct_hub(hdev);
5760 if (!hub)
5761 return NULL;
5763 return ACPI_HANDLE(&hub->ports[port1 - 1]->dev);
5765 #endif