]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blob - drivers/usb/core/hub.c
83549f009ced19bf479af3567938a03f6e79a413
[mirror_ubuntu-jammy-kernel.git] / drivers / usb / core / hub.c
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3 * USB hub driver.
4 *
5 * (C) Copyright 1999 Linus Torvalds
6 * (C) Copyright 1999 Johannes Erdfelt
7 * (C) Copyright 1999 Gregory P. Smith
8 * (C) Copyright 2001 Brad Hards (bhards@bigpond.net.au)
9 *
10 * Released under the GPLv2 only.
11 */
12
13 #include <linux/kernel.h>
14 #include <linux/errno.h>
15 #include <linux/module.h>
16 #include <linux/moduleparam.h>
17 #include <linux/completion.h>
18 #include <linux/sched/mm.h>
19 #include <linux/list.h>
20 #include <linux/slab.h>
21 #include <linux/kcov.h>
22 #include <linux/ioctl.h>
23 #include <linux/usb.h>
24 #include <linux/usbdevice_fs.h>
25 #include <linux/usb/hcd.h>
26 #include <linux/usb/otg.h>
27 #include <linux/usb/quirks.h>
28 #include <linux/workqueue.h>
29 #include <linux/mutex.h>
30 #include <linux/random.h>
31 #include <linux/pm_qos.h>
32 #include <linux/kobject.h>
33
34 #include <linux/uaccess.h>
35 #include <asm/byteorder.h>
36
37 #include "hub.h"
38 #include "otg_whitelist.h"
39
40 #define USB_VENDOR_GENESYS_LOGIC 0x05e3
41 #define USB_VENDOR_SMSC 0x0424
42 #define HUB_QUIRK_CHECK_PORT_AUTOSUSPEND 0x01
43 #define HUB_QUIRK_DISABLE_AUTOSUSPEND 0x02
44
45 #define USB_TP_TRANSMISSION_DELAY 40 /* ns */
46 #define USB_TP_TRANSMISSION_DELAY_MAX 65535 /* ns */
47
48 /* Protect struct usb_device->state and ->children members
49 * Note: Both are also protected by ->dev.sem, except that ->state can
50 * change to USB_STATE_NOTATTACHED even when the semaphore isn't held. */
51 static DEFINE_SPINLOCK(device_state_lock);
52
53 /* workqueue to process hub events */
54 static struct workqueue_struct *hub_wq;
55 static void hub_event(struct work_struct *work);
56
57 /* synchronize hub-port add/remove and peering operations */
58 DEFINE_MUTEX(usb_port_peer_mutex);
59
60 /* cycle leds on hubs that aren't blinking for attention */
61 static bool blinkenlights;
62 module_param(blinkenlights, bool, S_IRUGO);
63 MODULE_PARM_DESC(blinkenlights, "true to cycle leds on hubs");
64
65 /*
66 * Device SATA8000 FW1.0 from DATAST0R Technology Corp requires about
67 * 10 seconds to send reply for the initial 64-byte descriptor request.
68 */
69 /* define initial 64-byte descriptor request timeout in milliseconds */
70 static int initial_descriptor_timeout = USB_CTRL_GET_TIMEOUT;
71 module_param(initial_descriptor_timeout, int, S_IRUGO|S_IWUSR);
72 MODULE_PARM_DESC(initial_descriptor_timeout,
73 "initial 64-byte descriptor request timeout in milliseconds "
74 "(default 5000 - 5.0 seconds)");
75
76 /*
77 * As of 2.6.10 we introduce a new USB device initialization scheme which
78 * closely resembles the way Windows works. Hopefully it will be compatible
79 * with a wider range of devices than the old scheme. However some previously
80 * working devices may start giving rise to "device not accepting address"
81 * errors; if that happens the user can try the old scheme by adjusting the
82 * following module parameters.
83 *
84 * For maximum flexibility there are two boolean parameters to control the
85 * hub driver's behavior. On the first initialization attempt, if the
86 * "old_scheme_first" parameter is set then the old scheme will be used,
87 * otherwise the new scheme is used. If that fails and "use_both_schemes"
88 * is set, then the driver will make another attempt, using the other scheme.
89 */
90 static bool old_scheme_first;
91 module_param(old_scheme_first, bool, S_IRUGO | S_IWUSR);
92 MODULE_PARM_DESC(old_scheme_first,
93 "start with the old device initialization scheme");
94
95 static bool use_both_schemes = 1;
96 module_param(use_both_schemes, bool, S_IRUGO | S_IWUSR);
97 MODULE_PARM_DESC(use_both_schemes,
98 "try the other device initialization scheme if the "
99 "first one fails");
100
101 /* Mutual exclusion for EHCI CF initialization. This interferes with
102 * port reset on some companion controllers.
103 */
104 DECLARE_RWSEM(ehci_cf_port_reset_rwsem);
105 EXPORT_SYMBOL_GPL(ehci_cf_port_reset_rwsem);
106
107 #define HUB_DEBOUNCE_TIMEOUT 2000
108 #define HUB_DEBOUNCE_STEP 25
109 #define HUB_DEBOUNCE_STABLE 100
110
111 static void hub_release(struct kref *kref);
112 static int usb_reset_and_verify_device(struct usb_device *udev);
113 static int hub_port_disable(struct usb_hub *hub, int port1, int set_state);
114 static bool hub_port_warm_reset_required(struct usb_hub *hub, int port1,
115 u16 portstatus);
116
117 static inline char *portspeed(struct usb_hub *hub, int portstatus)
118 {
119 if (hub_is_superspeedplus(hub->hdev))
120 return "10.0 Gb/s";
121 if (hub_is_superspeed(hub->hdev))
122 return "5.0 Gb/s";
123 if (portstatus & USB_PORT_STAT_HIGH_SPEED)
124 return "480 Mb/s";
125 else if (portstatus & USB_PORT_STAT_LOW_SPEED)
126 return "1.5 Mb/s";
127 else
128 return "12 Mb/s";
129 }
130
131 /* Note that hdev or one of its children must be locked! */
132 struct usb_hub *usb_hub_to_struct_hub(struct usb_device *hdev)
133 {
134 if (!hdev || !hdev->actconfig || !hdev->maxchild)
135 return NULL;
136 return usb_get_intfdata(hdev->actconfig->interface[0]);
137 }
138
139 int usb_device_supports_lpm(struct usb_device *udev)
140 {
141 /* Some devices have trouble with LPM */
142 if (udev->quirks & USB_QUIRK_NO_LPM)
143 return 0;
144
145 /* USB 2.1 (and greater) devices indicate LPM support through
146 * their USB 2.0 Extended Capabilities BOS descriptor.
147 */
148 if (udev->speed == USB_SPEED_HIGH || udev->speed == USB_SPEED_FULL) {
149 if (udev->bos->ext_cap &&
150 (USB_LPM_SUPPORT &
151 le32_to_cpu(udev->bos->ext_cap->bmAttributes)))
152 return 1;
153 return 0;
154 }
155
156 /*
157 * According to the USB 3.0 spec, all USB 3.0 devices must support LPM.
158 * However, there are some that don't, and they set the U1/U2 exit
159 * latencies to zero.
160 */
161 if (!udev->bos->ss_cap) {
162 dev_info(&udev->dev, "No LPM exit latency info found, disabling LPM.\n");
163 return 0;
164 }
165
166 if (udev->bos->ss_cap->bU1devExitLat == 0 &&
167 udev->bos->ss_cap->bU2DevExitLat == 0) {
168 if (udev->parent)
169 dev_info(&udev->dev, "LPM exit latency is zeroed, disabling LPM.\n");
170 else
171 dev_info(&udev->dev, "We don't know the algorithms for LPM for this host, disabling LPM.\n");
172 return 0;
173 }
174
175 if (!udev->parent || udev->parent->lpm_capable)
176 return 1;
177 return 0;
178 }
179
180 /*
181 * Set the Maximum Exit Latency (MEL) for the host to initiate a transition from
182 * either U1 or U2.
183 */
184 static void usb_set_lpm_mel(struct usb_device *udev,
185 struct usb3_lpm_parameters *udev_lpm_params,
186 unsigned int udev_exit_latency,
187 struct usb_hub *hub,
188 struct usb3_lpm_parameters *hub_lpm_params,
189 unsigned int hub_exit_latency)
190 {
191 unsigned int total_mel;
192 unsigned int device_mel;
193 unsigned int hub_mel;
194
195 /*
196 * Calculate the time it takes to transition all links from the roothub
197 * to the parent hub into U0. The parent hub must then decode the
198 * packet (hub header decode latency) to figure out which port it was
199 * bound for.
200 *
201 * The Hub Header decode latency is expressed in 0.1us intervals (0x1
202 * means 0.1us). Multiply that by 100 to get nanoseconds.
203 */
204 total_mel = hub_lpm_params->mel +
205 (hub->descriptor->u.ss.bHubHdrDecLat * 100);
206
207 /*
208 * How long will it take to transition the downstream hub's port into
209 * U0? The greater of either the hub exit latency or the device exit
210 * latency.
211 *
212 * The BOS U1/U2 exit latencies are expressed in 1us intervals.
213 * Multiply that by 1000 to get nanoseconds.
214 */
215 device_mel = udev_exit_latency * 1000;
216 hub_mel = hub_exit_latency * 1000;
217 if (device_mel > hub_mel)
218 total_mel += device_mel;
219 else
220 total_mel += hub_mel;
221
222 udev_lpm_params->mel = total_mel;
223 }
224
225 /*
226 * Set the maximum Device to Host Exit Latency (PEL) for the device to initiate
227 * a transition from either U1 or U2.
228 */
229 static void usb_set_lpm_pel(struct usb_device *udev,
230 struct usb3_lpm_parameters *udev_lpm_params,
231 unsigned int udev_exit_latency,
232 struct usb_hub *hub,
233 struct usb3_lpm_parameters *hub_lpm_params,
234 unsigned int hub_exit_latency,
235 unsigned int port_to_port_exit_latency)
236 {
237 unsigned int first_link_pel;
238 unsigned int hub_pel;
239
240 /*
241 * First, the device sends an LFPS to transition the link between the
242 * device and the parent hub into U0. The exit latency is the bigger of
243 * the device exit latency or the hub exit latency.
244 */
245 if (udev_exit_latency > hub_exit_latency)
246 first_link_pel = udev_exit_latency * 1000;
247 else
248 first_link_pel = hub_exit_latency * 1000;
249
250 /*
251 * When the hub starts to receive the LFPS, there is a slight delay for
252 * it to figure out that one of the ports is sending an LFPS. Then it
253 * will forward the LFPS to its upstream link. The exit latency is the
254 * delay, plus the PEL that we calculated for this hub.
255 */
256 hub_pel = port_to_port_exit_latency * 1000 + hub_lpm_params->pel;
257
258 /*
259 * According to figure C-7 in the USB 3.0 spec, the PEL for this device
260 * is the greater of the two exit latencies.
261 */
262 if (first_link_pel > hub_pel)
263 udev_lpm_params->pel = first_link_pel;
264 else
265 udev_lpm_params->pel = hub_pel;
266 }
267
268 /*
269 * Set the System Exit Latency (SEL) to indicate the total worst-case time from
270 * when a device initiates a transition to U0, until when it will receive the
271 * first packet from the host controller.
272 *
273 * Section C.1.5.1 describes the four components to this:
274 * - t1: device PEL
275 * - t2: time for the ERDY to make it from the device to the host.
276 * - t3: a host-specific delay to process the ERDY.
277 * - t4: time for the packet to make it from the host to the device.
278 *
279 * t3 is specific to both the xHCI host and the platform the host is integrated
280 * into. The Intel HW folks have said it's negligible, FIXME if a different
281 * vendor says otherwise.
282 */
283 static void usb_set_lpm_sel(struct usb_device *udev,
284 struct usb3_lpm_parameters *udev_lpm_params)
285 {
286 struct usb_device *parent;
287 unsigned int num_hubs;
288 unsigned int total_sel;
289
290 /* t1 = device PEL */
291 total_sel = udev_lpm_params->pel;
292 /* How many external hubs are in between the device & the root port. */
293 for (parent = udev->parent, num_hubs = 0; parent->parent;
294 parent = parent->parent)
295 num_hubs++;
296 /* t2 = 2.1us + 250ns * (num_hubs - 1) */
297 if (num_hubs > 0)
298 total_sel += 2100 + 250 * (num_hubs - 1);
299
300 /* t4 = 250ns * num_hubs */
301 total_sel += 250 * num_hubs;
302
303 udev_lpm_params->sel = total_sel;
304 }
305
306 static void usb_set_lpm_parameters(struct usb_device *udev)
307 {
308 struct usb_hub *hub;
309 unsigned int port_to_port_delay;
310 unsigned int udev_u1_del;
311 unsigned int udev_u2_del;
312 unsigned int hub_u1_del;
313 unsigned int hub_u2_del;
314
315 if (!udev->lpm_capable || udev->speed < USB_SPEED_SUPER)
316 return;
317
318 hub = usb_hub_to_struct_hub(udev->parent);
319 /* It doesn't take time to transition the roothub into U0, since it
320 * doesn't have an upstream link.
321 */
322 if (!hub)
323 return;
324
325 udev_u1_del = udev->bos->ss_cap->bU1devExitLat;
326 udev_u2_del = le16_to_cpu(udev->bos->ss_cap->bU2DevExitLat);
327 hub_u1_del = udev->parent->bos->ss_cap->bU1devExitLat;
328 hub_u2_del = le16_to_cpu(udev->parent->bos->ss_cap->bU2DevExitLat);
329
330 usb_set_lpm_mel(udev, &udev->u1_params, udev_u1_del,
331 hub, &udev->parent->u1_params, hub_u1_del);
332
333 usb_set_lpm_mel(udev, &udev->u2_params, udev_u2_del,
334 hub, &udev->parent->u2_params, hub_u2_del);
335
336 /*
337 * Appendix C, section C.2.2.2, says that there is a slight delay from
338 * when the parent hub notices the downstream port is trying to
339 * transition to U0 to when the hub initiates a U0 transition on its
340 * upstream port. The section says the delays are tPort2PortU1EL and
341 * tPort2PortU2EL, but it doesn't define what they are.
342 *
343 * The hub chapter, sections 10.4.2.4 and 10.4.2.5 seem to be talking
344 * about the same delays. Use the maximum delay calculations from those
345 * sections. For U1, it's tHubPort2PortExitLat, which is 1us max. For
346 * U2, it's tHubPort2PortExitLat + U2DevExitLat - U1DevExitLat. I
347 * assume the device exit latencies they are talking about are the hub
348 * exit latencies.
349 *
350 * What do we do if the U2 exit latency is less than the U1 exit
351 * latency? It's possible, although not likely...
352 */
353 port_to_port_delay = 1;
354
355 usb_set_lpm_pel(udev, &udev->u1_params, udev_u1_del,
356 hub, &udev->parent->u1_params, hub_u1_del,
357 port_to_port_delay);
358
359 if (hub_u2_del > hub_u1_del)
360 port_to_port_delay = 1 + hub_u2_del - hub_u1_del;
361 else
362 port_to_port_delay = 1 + hub_u1_del;
363
364 usb_set_lpm_pel(udev, &udev->u2_params, udev_u2_del,
365 hub, &udev->parent->u2_params, hub_u2_del,
366 port_to_port_delay);
367
368 /* Now that we've got PEL, calculate SEL. */
369 usb_set_lpm_sel(udev, &udev->u1_params);
370 usb_set_lpm_sel(udev, &udev->u2_params);
371 }
372
373 /* USB 2.0 spec Section 11.24.4.5 */
374 static int get_hub_descriptor(struct usb_device *hdev,
375 struct usb_hub_descriptor *desc)
376 {
377 int i, ret, size;
378 unsigned dtype;
379
380 if (hub_is_superspeed(hdev)) {
381 dtype = USB_DT_SS_HUB;
382 size = USB_DT_SS_HUB_SIZE;
383 } else {
384 dtype = USB_DT_HUB;
385 size = sizeof(struct usb_hub_descriptor);
386 }
387
388 for (i = 0; i < 3; i++) {
389 ret = usb_control_msg(hdev, usb_rcvctrlpipe(hdev, 0),
390 USB_REQ_GET_DESCRIPTOR, USB_DIR_IN | USB_RT_HUB,
391 dtype << 8, 0, desc, size,
392 USB_CTRL_GET_TIMEOUT);
393 if (hub_is_superspeed(hdev)) {
394 if (ret == size)
395 return ret;
396 } else if (ret >= USB_DT_HUB_NONVAR_SIZE + 2) {
397 /* Make sure we have the DeviceRemovable field. */
398 size = USB_DT_HUB_NONVAR_SIZE + desc->bNbrPorts / 8 + 1;
399 if (ret < size)
400 return -EMSGSIZE;
401 return ret;
402 }
403 }
404 return -EINVAL;
405 }
406
407 /*
408 * USB 2.0 spec Section 11.24.2.1
409 */
410 static int clear_hub_feature(struct usb_device *hdev, int feature)
411 {
412 return usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
413 USB_REQ_CLEAR_FEATURE, USB_RT_HUB, feature, 0, NULL, 0, 1000);
414 }
415
416 /*
417 * USB 2.0 spec Section 11.24.2.2
418 */
419 int usb_clear_port_feature(struct usb_device *hdev, int port1, int feature)
420 {
421 return usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
422 USB_REQ_CLEAR_FEATURE, USB_RT_PORT, feature, port1,
423 NULL, 0, 1000);
424 }
425
426 /*
427 * USB 2.0 spec Section 11.24.2.13
428 */
429 static int set_port_feature(struct usb_device *hdev, int port1, int feature)
430 {
431 return usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
432 USB_REQ_SET_FEATURE, USB_RT_PORT, feature, port1,
433 NULL, 0, 1000);
434 }
435
436 static char *to_led_name(int selector)
437 {
438 switch (selector) {
439 case HUB_LED_AMBER:
440 return "amber";
441 case HUB_LED_GREEN:
442 return "green";
443 case HUB_LED_OFF:
444 return "off";
445 case HUB_LED_AUTO:
446 return "auto";
447 default:
448 return "??";
449 }
450 }
451
452 /*
453 * USB 2.0 spec Section 11.24.2.7.1.10 and table 11-7
454 * for info about using port indicators
455 */
456 static void set_port_led(struct usb_hub *hub, int port1, int selector)
457 {
458 struct usb_port *port_dev = hub->ports[port1 - 1];
459 int status;
460
461 status = set_port_feature(hub->hdev, (selector << 8) | port1,
462 USB_PORT_FEAT_INDICATOR);
463 dev_dbg(&port_dev->dev, "indicator %s status %d\n",
464 to_led_name(selector), status);
465 }
466
467 #define LED_CYCLE_PERIOD ((2*HZ)/3)
468
469 static void led_work(struct work_struct *work)
470 {
471 struct usb_hub *hub =
472 container_of(work, struct usb_hub, leds.work);
473 struct usb_device *hdev = hub->hdev;
474 unsigned i;
475 unsigned changed = 0;
476 int cursor = -1;
477
478 if (hdev->state != USB_STATE_CONFIGURED || hub->quiescing)
479 return;
480
481 for (i = 0; i < hdev->maxchild; i++) {
482 unsigned selector, mode;
483
484 /* 30%-50% duty cycle */
485
486 switch (hub->indicator[i]) {
487 /* cycle marker */
488 case INDICATOR_CYCLE:
489 cursor = i;
490 selector = HUB_LED_AUTO;
491 mode = INDICATOR_AUTO;
492 break;
493 /* blinking green = sw attention */
494 case INDICATOR_GREEN_BLINK:
495 selector = HUB_LED_GREEN;
496 mode = INDICATOR_GREEN_BLINK_OFF;
497 break;
498 case INDICATOR_GREEN_BLINK_OFF:
499 selector = HUB_LED_OFF;
500 mode = INDICATOR_GREEN_BLINK;
501 break;
502 /* blinking amber = hw attention */
503 case INDICATOR_AMBER_BLINK:
504 selector = HUB_LED_AMBER;
505 mode = INDICATOR_AMBER_BLINK_OFF;
506 break;
507 case INDICATOR_AMBER_BLINK_OFF:
508 selector = HUB_LED_OFF;
509 mode = INDICATOR_AMBER_BLINK;
510 break;
511 /* blink green/amber = reserved */
512 case INDICATOR_ALT_BLINK:
513 selector = HUB_LED_GREEN;
514 mode = INDICATOR_ALT_BLINK_OFF;
515 break;
516 case INDICATOR_ALT_BLINK_OFF:
517 selector = HUB_LED_AMBER;
518 mode = INDICATOR_ALT_BLINK;
519 break;
520 default:
521 continue;
522 }
523 if (selector != HUB_LED_AUTO)
524 changed = 1;
525 set_port_led(hub, i + 1, selector);
526 hub->indicator[i] = mode;
527 }
528 if (!changed && blinkenlights) {
529 cursor++;
530 cursor %= hdev->maxchild;
531 set_port_led(hub, cursor + 1, HUB_LED_GREEN);
532 hub->indicator[cursor] = INDICATOR_CYCLE;
533 changed++;
534 }
535 if (changed)
536 queue_delayed_work(system_power_efficient_wq,
537 &hub->leds, LED_CYCLE_PERIOD);
538 }
539
540 /* use a short timeout for hub/port status fetches */
541 #define USB_STS_TIMEOUT 1000
542 #define USB_STS_RETRIES 5
543
544 /*
545 * USB 2.0 spec Section 11.24.2.6
546 */
547 static int get_hub_status(struct usb_device *hdev,
548 struct usb_hub_status *data)
549 {
550 int i, status = -ETIMEDOUT;
551
552 for (i = 0; i < USB_STS_RETRIES &&
553 (status == -ETIMEDOUT || status == -EPIPE); i++) {
554 status = usb_control_msg(hdev, usb_rcvctrlpipe(hdev, 0),
555 USB_REQ_GET_STATUS, USB_DIR_IN | USB_RT_HUB, 0, 0,
556 data, sizeof(*data), USB_STS_TIMEOUT);
557 }
558 return status;
559 }
560
561 /*
562 * USB 2.0 spec Section 11.24.2.7
563 * USB 3.1 takes into use the wValue and wLength fields, spec Section 10.16.2.6
564 */
565 static int get_port_status(struct usb_device *hdev, int port1,
566 void *data, u16 value, u16 length)
567 {
568 int i, status = -ETIMEDOUT;
569
570 for (i = 0; i < USB_STS_RETRIES &&
571 (status == -ETIMEDOUT || status == -EPIPE); i++) {
572 status = usb_control_msg(hdev, usb_rcvctrlpipe(hdev, 0),
573 USB_REQ_GET_STATUS, USB_DIR_IN | USB_RT_PORT, value,
574 port1, data, length, USB_STS_TIMEOUT);
575 }
576 return status;
577 }
578
579 static int hub_ext_port_status(struct usb_hub *hub, int port1, int type,
580 u16 *status, u16 *change, u32 *ext_status)
581 {
582 int ret;
583 int len = 4;
584
585 if (type != HUB_PORT_STATUS)
586 len = 8;
587
588 mutex_lock(&hub->status_mutex);
589 ret = get_port_status(hub->hdev, port1, &hub->status->port, type, len);
590 if (ret < len) {
591 if (ret != -ENODEV)
592 dev_err(hub->intfdev,
593 "%s failed (err = %d)\n", __func__, ret);
594 if (ret >= 0)
595 ret = -EIO;
596 } else {
597 *status = le16_to_cpu(hub->status->port.wPortStatus);
598 *change = le16_to_cpu(hub->status->port.wPortChange);
599 if (type != HUB_PORT_STATUS && ext_status)
600 *ext_status = le32_to_cpu(
601 hub->status->port.dwExtPortStatus);
602 ret = 0;
603 }
604 mutex_unlock(&hub->status_mutex);
605 return ret;
606 }
607
608 static int hub_port_status(struct usb_hub *hub, int port1,
609 u16 *status, u16 *change)
610 {
611 return hub_ext_port_status(hub, port1, HUB_PORT_STATUS,
612 status, change, NULL);
613 }
614
615 static void hub_resubmit_irq_urb(struct usb_hub *hub)
616 {
617 unsigned long flags;
618 int status;
619
620 spin_lock_irqsave(&hub->irq_urb_lock, flags);
621
622 if (hub->quiescing) {
623 spin_unlock_irqrestore(&hub->irq_urb_lock, flags);
624 return;
625 }
626
627 status = usb_submit_urb(hub->urb, GFP_ATOMIC);
628 if (status && status != -ENODEV && status != -EPERM &&
629 status != -ESHUTDOWN) {
630 dev_err(hub->intfdev, "resubmit --> %d\n", status);
631 mod_timer(&hub->irq_urb_retry, jiffies + HZ);
632 }
633
634 spin_unlock_irqrestore(&hub->irq_urb_lock, flags);
635 }
636
637 static void hub_retry_irq_urb(struct timer_list *t)
638 {
639 struct usb_hub *hub = from_timer(hub, t, irq_urb_retry);
640
641 hub_resubmit_irq_urb(hub);
642 }
643
644
645 static void kick_hub_wq(struct usb_hub *hub)
646 {
647 struct usb_interface *intf;
648
649 if (hub->disconnected || work_pending(&hub->events))
650 return;
651
652 /*
653 * Suppress autosuspend until the event is proceed.
654 *
655 * Be careful and make sure that the symmetric operation is
656 * always called. We are here only when there is no pending
657 * work for this hub. Therefore put the interface either when
658 * the new work is called or when it is canceled.
659 */
660 intf = to_usb_interface(hub->intfdev);
661 usb_autopm_get_interface_no_resume(intf);
662 kref_get(&hub->kref);
663
664 if (queue_work(hub_wq, &hub->events))
665 return;
666
667 /* the work has already been scheduled */
668 usb_autopm_put_interface_async(intf);
669 kref_put(&hub->kref, hub_release);
670 }
671
672 void usb_kick_hub_wq(struct usb_device *hdev)
673 {
674 struct usb_hub *hub = usb_hub_to_struct_hub(hdev);
675
676 if (hub)
677 kick_hub_wq(hub);
678 }
679
680 /*
681 * Let the USB core know that a USB 3.0 device has sent a Function Wake Device
682 * Notification, which indicates it had initiated remote wakeup.
683 *
684 * USB 3.0 hubs do not report the port link state change from U3 to U0 when the
685 * device initiates resume, so the USB core will not receive notice of the
686 * resume through the normal hub interrupt URB.
687 */
688 void usb_wakeup_notification(struct usb_device *hdev,
689 unsigned int portnum)
690 {
691 struct usb_hub *hub;
692 struct usb_port *port_dev;
693
694 if (!hdev)
695 return;
696
697 hub = usb_hub_to_struct_hub(hdev);
698 if (hub) {
699 port_dev = hub->ports[portnum - 1];
700 if (port_dev && port_dev->child)
701 pm_wakeup_event(&port_dev->child->dev, 0);
702
703 set_bit(portnum, hub->wakeup_bits);
704 kick_hub_wq(hub);
705 }
706 }
707 EXPORT_SYMBOL_GPL(usb_wakeup_notification);
708
709 /* completion function, fires on port status changes and various faults */
710 static void hub_irq(struct urb *urb)
711 {
712 struct usb_hub *hub = urb->context;
713 int status = urb->status;
714 unsigned i;
715 unsigned long bits;
716
717 switch (status) {
718 case -ENOENT: /* synchronous unlink */
719 case -ECONNRESET: /* async unlink */
720 case -ESHUTDOWN: /* hardware going away */
721 return;
722
723 default: /* presumably an error */
724 /* Cause a hub reset after 10 consecutive errors */
725 dev_dbg(hub->intfdev, "transfer --> %d\n", status);
726 if ((++hub->nerrors < 10) || hub->error)
727 goto resubmit;
728 hub->error = status;
729 /* FALL THROUGH */
730
731 /* let hub_wq handle things */
732 case 0: /* we got data: port status changed */
733 bits = 0;
734 for (i = 0; i < urb->actual_length; ++i)
735 bits |= ((unsigned long) ((*hub->buffer)[i]))
736 << (i*8);
737 hub->event_bits[0] = bits;
738 break;
739 }
740
741 hub->nerrors = 0;
742
743 /* Something happened, let hub_wq figure it out */
744 kick_hub_wq(hub);
745
746 resubmit:
747 hub_resubmit_irq_urb(hub);
748 }
749
750 /* USB 2.0 spec Section 11.24.2.3 */
751 static inline int
752 hub_clear_tt_buffer(struct usb_device *hdev, u16 devinfo, u16 tt)
753 {
754 /* Need to clear both directions for control ep */
755 if (((devinfo >> 11) & USB_ENDPOINT_XFERTYPE_MASK) ==
756 USB_ENDPOINT_XFER_CONTROL) {
757 int status = usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
758 HUB_CLEAR_TT_BUFFER, USB_RT_PORT,
759 devinfo ^ 0x8000, tt, NULL, 0, 1000);
760 if (status)
761 return status;
762 }
763 return usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
764 HUB_CLEAR_TT_BUFFER, USB_RT_PORT, devinfo,
765 tt, NULL, 0, 1000);
766 }
767
768 /*
769 * enumeration blocks hub_wq for a long time. we use keventd instead, since
770 * long blocking there is the exception, not the rule. accordingly, HCDs
771 * talking to TTs must queue control transfers (not just bulk and iso), so
772 * both can talk to the same hub concurrently.
773 */
774 static void hub_tt_work(struct work_struct *work)
775 {
776 struct usb_hub *hub =
777 container_of(work, struct usb_hub, tt.clear_work);
778 unsigned long flags;
779
780 spin_lock_irqsave(&hub->tt.lock, flags);
781 while (!list_empty(&hub->tt.clear_list)) {
782 struct list_head *next;
783 struct usb_tt_clear *clear;
784 struct usb_device *hdev = hub->hdev;
785 const struct hc_driver *drv;
786 int status;
787
788 next = hub->tt.clear_list.next;
789 clear = list_entry(next, struct usb_tt_clear, clear_list);
790 list_del(&clear->clear_list);
791
792 /* drop lock so HCD can concurrently report other TT errors */
793 spin_unlock_irqrestore(&hub->tt.lock, flags);
794 status = hub_clear_tt_buffer(hdev, clear->devinfo, clear->tt);
795 if (status && status != -ENODEV)
796 dev_err(&hdev->dev,
797 "clear tt %d (%04x) error %d\n",
798 clear->tt, clear->devinfo, status);
799
800 /* Tell the HCD, even if the operation failed */
801 drv = clear->hcd->driver;
802 if (drv->clear_tt_buffer_complete)
803 (drv->clear_tt_buffer_complete)(clear->hcd, clear->ep);
804
805 kfree(clear);
806 spin_lock_irqsave(&hub->tt.lock, flags);
807 }
808 spin_unlock_irqrestore(&hub->tt.lock, flags);
809 }
810
811 /**
812 * usb_hub_set_port_power - control hub port's power state
813 * @hdev: USB device belonging to the usb hub
814 * @hub: target hub
815 * @port1: port index
816 * @set: expected status
817 *
818 * call this function to control port's power via setting or
819 * clearing the port's PORT_POWER feature.
820 *
821 * Return: 0 if successful. A negative error code otherwise.
822 */
823 int usb_hub_set_port_power(struct usb_device *hdev, struct usb_hub *hub,
824 int port1, bool set)
825 {
826 int ret;
827
828 if (set)
829 ret = set_port_feature(hdev, port1, USB_PORT_FEAT_POWER);
830 else
831 ret = usb_clear_port_feature(hdev, port1, USB_PORT_FEAT_POWER);
832
833 if (ret)
834 return ret;
835
836 if (set)
837 set_bit(port1, hub->power_bits);
838 else
839 clear_bit(port1, hub->power_bits);
840 return 0;
841 }
842
843 /**
844 * usb_hub_clear_tt_buffer - clear control/bulk TT state in high speed hub
845 * @urb: an URB associated with the failed or incomplete split transaction
846 *
847 * High speed HCDs use this to tell the hub driver that some split control or
848 * bulk transaction failed in a way that requires clearing internal state of
849 * a transaction translator. This is normally detected (and reported) from
850 * interrupt context.
851 *
852 * It may not be possible for that hub to handle additional full (or low)
853 * speed transactions until that state is fully cleared out.
854 *
855 * Return: 0 if successful. A negative error code otherwise.
856 */
857 int usb_hub_clear_tt_buffer(struct urb *urb)
858 {
859 struct usb_device *udev = urb->dev;
860 int pipe = urb->pipe;
861 struct usb_tt *tt = udev->tt;
862 unsigned long flags;
863 struct usb_tt_clear *clear;
864
865 /* we've got to cope with an arbitrary number of pending TT clears,
866 * since each TT has "at least two" buffers that can need it (and
867 * there can be many TTs per hub). even if they're uncommon.
868 */
869 clear = kmalloc(sizeof *clear, GFP_ATOMIC);
870 if (clear == NULL) {
871 dev_err(&udev->dev, "can't save CLEAR_TT_BUFFER state\n");
872 /* FIXME recover somehow ... RESET_TT? */
873 return -ENOMEM;
874 }
875
876 /* info that CLEAR_TT_BUFFER needs */
877 clear->tt = tt->multi ? udev->ttport : 1;
878 clear->devinfo = usb_pipeendpoint (pipe);
879 clear->devinfo |= ((u16)udev->devaddr) << 4;
880 clear->devinfo |= usb_pipecontrol(pipe)
881 ? (USB_ENDPOINT_XFER_CONTROL << 11)
882 : (USB_ENDPOINT_XFER_BULK << 11);
883 if (usb_pipein(pipe))
884 clear->devinfo |= 1 << 15;
885
886 /* info for completion callback */
887 clear->hcd = bus_to_hcd(udev->bus);
888 clear->ep = urb->ep;
889
890 /* tell keventd to clear state for this TT */
891 spin_lock_irqsave(&tt->lock, flags);
892 list_add_tail(&clear->clear_list, &tt->clear_list);
893 schedule_work(&tt->clear_work);
894 spin_unlock_irqrestore(&tt->lock, flags);
895 return 0;
896 }
897 EXPORT_SYMBOL_GPL(usb_hub_clear_tt_buffer);
898
899 static void hub_power_on(struct usb_hub *hub, bool do_delay)
900 {
901 int port1;
902
903 /* Enable power on each port. Some hubs have reserved values
904 * of LPSM (> 2) in their descriptors, even though they are
905 * USB 2.0 hubs. Some hubs do not implement port-power switching
906 * but only emulate it. In all cases, the ports won't work
907 * unless we send these messages to the hub.
908 */
909 if (hub_is_port_power_switchable(hub))
910 dev_dbg(hub->intfdev, "enabling power on all ports\n");
911 else
912 dev_dbg(hub->intfdev, "trying to enable port power on "
913 "non-switchable hub\n");
914 for (port1 = 1; port1 <= hub->hdev->maxchild; port1++)
915 if (test_bit(port1, hub->power_bits))
916 set_port_feature(hub->hdev, port1, USB_PORT_FEAT_POWER);
917 else
918 usb_clear_port_feature(hub->hdev, port1,
919 USB_PORT_FEAT_POWER);
920 if (do_delay)
921 msleep(hub_power_on_good_delay(hub));
922 }
923
924 static int hub_hub_status(struct usb_hub *hub,
925 u16 *status, u16 *change)
926 {
927 int ret;
928
929 mutex_lock(&hub->status_mutex);
930 ret = get_hub_status(hub->hdev, &hub->status->hub);
931 if (ret < 0) {
932 if (ret != -ENODEV)
933 dev_err(hub->intfdev,
934 "%s failed (err = %d)\n", __func__, ret);
935 } else {
936 *status = le16_to_cpu(hub->status->hub.wHubStatus);
937 *change = le16_to_cpu(hub->status->hub.wHubChange);
938 ret = 0;
939 }
940 mutex_unlock(&hub->status_mutex);
941 return ret;
942 }
943
944 static int hub_set_port_link_state(struct usb_hub *hub, int port1,
945 unsigned int link_status)
946 {
947 return set_port_feature(hub->hdev,
948 port1 | (link_status << 3),
949 USB_PORT_FEAT_LINK_STATE);
950 }
951
952 /*
953 * Disable a port and mark a logical connect-change event, so that some
954 * time later hub_wq will disconnect() any existing usb_device on the port
955 * and will re-enumerate if there actually is a device attached.
956 */
957 static void hub_port_logical_disconnect(struct usb_hub *hub, int port1)
958 {
959 dev_dbg(&hub->ports[port1 - 1]->dev, "logical disconnect\n");
960 hub_port_disable(hub, port1, 1);
961
962 /* FIXME let caller ask to power down the port:
963 * - some devices won't enumerate without a VBUS power cycle
964 * - SRP saves power that way
965 * - ... new call, TBD ...
966 * That's easy if this hub can switch power per-port, and
967 * hub_wq reactivates the port later (timer, SRP, etc).
968 * Powerdown must be optional, because of reset/DFU.
969 */
970
971 set_bit(port1, hub->change_bits);
972 kick_hub_wq(hub);
973 }
974
975 /**
976 * usb_remove_device - disable a device's port on its parent hub
977 * @udev: device to be disabled and removed
978 * Context: @udev locked, must be able to sleep.
979 *
980 * After @udev's port has been disabled, hub_wq is notified and it will
981 * see that the device has been disconnected. When the device is
982 * physically unplugged and something is plugged in, the events will
983 * be received and processed normally.
984 *
985 * Return: 0 if successful. A negative error code otherwise.
986 */
987 int usb_remove_device(struct usb_device *udev)
988 {
989 struct usb_hub *hub;
990 struct usb_interface *intf;
991 int ret;
992
993 if (!udev->parent) /* Can't remove a root hub */
994 return -EINVAL;
995 hub = usb_hub_to_struct_hub(udev->parent);
996 intf = to_usb_interface(hub->intfdev);
997
998 ret = usb_autopm_get_interface(intf);
999 if (ret < 0)
1000 return ret;
1001
1002 set_bit(udev->portnum, hub->removed_bits);
1003 hub_port_logical_disconnect(hub, udev->portnum);
1004 usb_autopm_put_interface(intf);
1005 return 0;
1006 }
1007
1008 enum hub_activation_type {
1009 HUB_INIT, HUB_INIT2, HUB_INIT3, /* INITs must come first */
1010 HUB_POST_RESET, HUB_RESUME, HUB_RESET_RESUME,
1011 };
1012
1013 static void hub_init_func2(struct work_struct *ws);
1014 static void hub_init_func3(struct work_struct *ws);
1015
1016 static void hub_activate(struct usb_hub *hub, enum hub_activation_type type)
1017 {
1018 struct usb_device *hdev = hub->hdev;
1019 struct usb_hcd *hcd;
1020 int ret;
1021 int port1;
1022 int status;
1023 bool need_debounce_delay = false;
1024 unsigned delay;
1025
1026 /* Continue a partial initialization */
1027 if (type == HUB_INIT2 || type == HUB_INIT3) {
1028 device_lock(&hdev->dev);
1029
1030 /* Was the hub disconnected while we were waiting? */
1031 if (hub->disconnected)
1032 goto disconnected;
1033 if (type == HUB_INIT2)
1034 goto init2;
1035 goto init3;
1036 }
1037 kref_get(&hub->kref);
1038
1039 /* The superspeed hub except for root hub has to use Hub Depth
1040 * value as an offset into the route string to locate the bits
1041 * it uses to determine the downstream port number. So hub driver
1042 * should send a set hub depth request to superspeed hub after
1043 * the superspeed hub is set configuration in initialization or
1044 * reset procedure.
1045 *
1046 * After a resume, port power should still be on.
1047 * For any other type of activation, turn it on.
1048 */
1049 if (type != HUB_RESUME) {
1050 if (hdev->parent && hub_is_superspeed(hdev)) {
1051 ret = usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
1052 HUB_SET_DEPTH, USB_RT_HUB,
1053 hdev->level - 1, 0, NULL, 0,
1054 USB_CTRL_SET_TIMEOUT);
1055 if (ret < 0)
1056 dev_err(hub->intfdev,
1057 "set hub depth failed\n");
1058 }
1059
1060 /* Speed up system boot by using a delayed_work for the
1061 * hub's initial power-up delays. This is pretty awkward
1062 * and the implementation looks like a home-brewed sort of
1063 * setjmp/longjmp, but it saves at least 100 ms for each
1064 * root hub (assuming usbcore is compiled into the kernel
1065 * rather than as a module). It adds up.
1066 *
1067 * This can't be done for HUB_RESUME or HUB_RESET_RESUME
1068 * because for those activation types the ports have to be
1069 * operational when we return. In theory this could be done
1070 * for HUB_POST_RESET, but it's easier not to.
1071 */
1072 if (type == HUB_INIT) {
1073 delay = hub_power_on_good_delay(hub);
1074
1075 hub_power_on(hub, false);
1076 INIT_DELAYED_WORK(&hub->init_work, hub_init_func2);
1077 queue_delayed_work(system_power_efficient_wq,
1078 &hub->init_work,
1079 msecs_to_jiffies(delay));
1080
1081 /* Suppress autosuspend until init is done */
1082 usb_autopm_get_interface_no_resume(
1083 to_usb_interface(hub->intfdev));
1084 return; /* Continues at init2: below */
1085 } else if (type == HUB_RESET_RESUME) {
1086 /* The internal host controller state for the hub device
1087 * may be gone after a host power loss on system resume.
1088 * Update the device's info so the HW knows it's a hub.
1089 */
1090 hcd = bus_to_hcd(hdev->bus);
1091 if (hcd->driver->update_hub_device) {
1092 ret = hcd->driver->update_hub_device(hcd, hdev,
1093 &hub->tt, GFP_NOIO);
1094 if (ret < 0) {
1095 dev_err(hub->intfdev,
1096 "Host not accepting hub info update\n");
1097 dev_err(hub->intfdev,
1098 "LS/FS devices and hubs may not work under this hub\n");
1099 }
1100 }
1101 hub_power_on(hub, true);
1102 } else {
1103 hub_power_on(hub, true);
1104 }
1105 }
1106 init2:
1107
1108 /*
1109 * Check each port and set hub->change_bits to let hub_wq know
1110 * which ports need attention.
1111 */
1112 for (port1 = 1; port1 <= hdev->maxchild; ++port1) {
1113 struct usb_port *port_dev = hub->ports[port1 - 1];
1114 struct usb_device *udev = port_dev->child;
1115 u16 portstatus, portchange;
1116
1117 portstatus = portchange = 0;
1118 status = hub_port_status(hub, port1, &portstatus, &portchange);
1119 if (status)
1120 goto abort;
1121
1122 if (udev || (portstatus & USB_PORT_STAT_CONNECTION))
1123 dev_dbg(&port_dev->dev, "status %04x change %04x\n",
1124 portstatus, portchange);
1125
1126 /*
1127 * After anything other than HUB_RESUME (i.e., initialization
1128 * or any sort of reset), every port should be disabled.
1129 * Unconnected ports should likewise be disabled (paranoia),
1130 * and so should ports for which we have no usb_device.
1131 */
1132 if ((portstatus & USB_PORT_STAT_ENABLE) && (
1133 type != HUB_RESUME ||
1134 !(portstatus & USB_PORT_STAT_CONNECTION) ||
1135 !udev ||
1136 udev->state == USB_STATE_NOTATTACHED)) {
1137 /*
1138 * USB3 protocol ports will automatically transition
1139 * to Enabled state when detect an USB3.0 device attach.
1140 * Do not disable USB3 protocol ports, just pretend
1141 * power was lost
1142 */
1143 portstatus &= ~USB_PORT_STAT_ENABLE;
1144 if (!hub_is_superspeed(hdev))
1145 usb_clear_port_feature(hdev, port1,
1146 USB_PORT_FEAT_ENABLE);
1147 }
1148
1149 /* Make sure a warm-reset request is handled by port_event */
1150 if (type == HUB_RESUME &&
1151 hub_port_warm_reset_required(hub, port1, portstatus))
1152 set_bit(port1, hub->event_bits);
1153
1154 /*
1155 * Add debounce if USB3 link is in polling/link training state.
1156 * Link will automatically transition to Enabled state after
1157 * link training completes.
1158 */
1159 if (hub_is_superspeed(hdev) &&
1160 ((portstatus & USB_PORT_STAT_LINK_STATE) ==
1161 USB_SS_PORT_LS_POLLING))
1162 need_debounce_delay = true;
1163
1164 /* Clear status-change flags; we'll debounce later */
1165 if (portchange & USB_PORT_STAT_C_CONNECTION) {
1166 need_debounce_delay = true;
1167 usb_clear_port_feature(hub->hdev, port1,
1168 USB_PORT_FEAT_C_CONNECTION);
1169 }
1170 if (portchange & USB_PORT_STAT_C_ENABLE) {
1171 need_debounce_delay = true;
1172 usb_clear_port_feature(hub->hdev, port1,
1173 USB_PORT_FEAT_C_ENABLE);
1174 }
1175 if (portchange & USB_PORT_STAT_C_RESET) {
1176 need_debounce_delay = true;
1177 usb_clear_port_feature(hub->hdev, port1,
1178 USB_PORT_FEAT_C_RESET);
1179 }
1180 if ((portchange & USB_PORT_STAT_C_BH_RESET) &&
1181 hub_is_superspeed(hub->hdev)) {
1182 need_debounce_delay = true;
1183 usb_clear_port_feature(hub->hdev, port1,
1184 USB_PORT_FEAT_C_BH_PORT_RESET);
1185 }
1186 /* We can forget about a "removed" device when there's a
1187 * physical disconnect or the connect status changes.
1188 */
1189 if (!(portstatus & USB_PORT_STAT_CONNECTION) ||
1190 (portchange & USB_PORT_STAT_C_CONNECTION))
1191 clear_bit(port1, hub->removed_bits);
1192
1193 if (!udev || udev->state == USB_STATE_NOTATTACHED) {
1194 /* Tell hub_wq to disconnect the device or
1195 * check for a new connection or over current condition.
1196 * Based on USB2.0 Spec Section 11.12.5,
1197 * C_PORT_OVER_CURRENT could be set while
1198 * PORT_OVER_CURRENT is not. So check for any of them.
1199 */
1200 if (udev || (portstatus & USB_PORT_STAT_CONNECTION) ||
1201 (portchange & USB_PORT_STAT_C_CONNECTION) ||
1202 (portstatus & USB_PORT_STAT_OVERCURRENT) ||
1203 (portchange & USB_PORT_STAT_C_OVERCURRENT))
1204 set_bit(port1, hub->change_bits);
1205
1206 } else if (portstatus & USB_PORT_STAT_ENABLE) {
1207 bool port_resumed = (portstatus &
1208 USB_PORT_STAT_LINK_STATE) ==
1209 USB_SS_PORT_LS_U0;
1210 /* The power session apparently survived the resume.
1211 * If there was an overcurrent or suspend change
1212 * (i.e., remote wakeup request), have hub_wq
1213 * take care of it. Look at the port link state
1214 * for USB 3.0 hubs, since they don't have a suspend
1215 * change bit, and they don't set the port link change
1216 * bit on device-initiated resume.
1217 */
1218 if (portchange || (hub_is_superspeed(hub->hdev) &&
1219 port_resumed))
1220 set_bit(port1, hub->change_bits);
1221
1222 } else if (udev->persist_enabled) {
1223 #ifdef CONFIG_PM
1224 udev->reset_resume = 1;
1225 #endif
1226 /* Don't set the change_bits when the device
1227 * was powered off.
1228 */
1229 if (test_bit(port1, hub->power_bits))
1230 set_bit(port1, hub->change_bits);
1231
1232 } else {
1233 /* The power session is gone; tell hub_wq */
1234 usb_set_device_state(udev, USB_STATE_NOTATTACHED);
1235 set_bit(port1, hub->change_bits);
1236 }
1237 }
1238
1239 /* If no port-status-change flags were set, we don't need any
1240 * debouncing. If flags were set we can try to debounce the
1241 * ports all at once right now, instead of letting hub_wq do them
1242 * one at a time later on.
1243 *
1244 * If any port-status changes do occur during this delay, hub_wq
1245 * will see them later and handle them normally.
1246 */
1247 if (need_debounce_delay) {
1248 delay = HUB_DEBOUNCE_STABLE;
1249
1250 /* Don't do a long sleep inside a workqueue routine */
1251 if (type == HUB_INIT2) {
1252 INIT_DELAYED_WORK(&hub->init_work, hub_init_func3);
1253 queue_delayed_work(system_power_efficient_wq,
1254 &hub->init_work,
1255 msecs_to_jiffies(delay));
1256 device_unlock(&hdev->dev);
1257 return; /* Continues at init3: below */
1258 } else {
1259 msleep(delay);
1260 }
1261 }
1262 init3:
1263 hub->quiescing = 0;
1264
1265 status = usb_submit_urb(hub->urb, GFP_NOIO);
1266 if (status < 0)
1267 dev_err(hub->intfdev, "activate --> %d\n", status);
1268 if (hub->has_indicators && blinkenlights)
1269 queue_delayed_work(system_power_efficient_wq,
1270 &hub->leds, LED_CYCLE_PERIOD);
1271
1272 /* Scan all ports that need attention */
1273 kick_hub_wq(hub);
1274 abort:
1275 if (type == HUB_INIT2 || type == HUB_INIT3) {
1276 /* Allow autosuspend if it was suppressed */
1277 disconnected:
1278 usb_autopm_put_interface_async(to_usb_interface(hub->intfdev));
1279 device_unlock(&hdev->dev);
1280 }
1281
1282 kref_put(&hub->kref, hub_release);
1283 }
1284
1285 /* Implement the continuations for the delays above */
1286 static void hub_init_func2(struct work_struct *ws)
1287 {
1288 struct usb_hub *hub = container_of(ws, struct usb_hub, init_work.work);
1289
1290 hub_activate(hub, HUB_INIT2);
1291 }
1292
1293 static void hub_init_func3(struct work_struct *ws)
1294 {
1295 struct usb_hub *hub = container_of(ws, struct usb_hub, init_work.work);
1296
1297 hub_activate(hub, HUB_INIT3);
1298 }
1299
1300 enum hub_quiescing_type {
1301 HUB_DISCONNECT, HUB_PRE_RESET, HUB_SUSPEND
1302 };
1303
1304 static void hub_quiesce(struct usb_hub *hub, enum hub_quiescing_type type)
1305 {
1306 struct usb_device *hdev = hub->hdev;
1307 unsigned long flags;
1308 int i;
1309
1310 /* hub_wq and related activity won't re-trigger */
1311 spin_lock_irqsave(&hub->irq_urb_lock, flags);
1312 hub->quiescing = 1;
1313 spin_unlock_irqrestore(&hub->irq_urb_lock, flags);
1314
1315 if (type != HUB_SUSPEND) {
1316 /* Disconnect all the children */
1317 for (i = 0; i < hdev->maxchild; ++i) {
1318 if (hub->ports[i]->child)
1319 usb_disconnect(&hub->ports[i]->child);
1320 }
1321 }
1322
1323 /* Stop hub_wq and related activity */
1324 del_timer_sync(&hub->irq_urb_retry);
1325 usb_kill_urb(hub->urb);
1326 if (hub->has_indicators)
1327 cancel_delayed_work_sync(&hub->leds);
1328 if (hub->tt.hub)
1329 flush_work(&hub->tt.clear_work);
1330 }
1331
1332 static void hub_pm_barrier_for_all_ports(struct usb_hub *hub)
1333 {
1334 int i;
1335
1336 for (i = 0; i < hub->hdev->maxchild; ++i)
1337 pm_runtime_barrier(&hub->ports[i]->dev);
1338 }
1339
1340 /* caller has locked the hub device */
1341 static int hub_pre_reset(struct usb_interface *intf)
1342 {
1343 struct usb_hub *hub = usb_get_intfdata(intf);
1344
1345 hub_quiesce(hub, HUB_PRE_RESET);
1346 hub->in_reset = 1;
1347 hub_pm_barrier_for_all_ports(hub);
1348 return 0;
1349 }
1350
1351 /* caller has locked the hub device */
1352 static int hub_post_reset(struct usb_interface *intf)
1353 {
1354 struct usb_hub *hub = usb_get_intfdata(intf);
1355
1356 hub->in_reset = 0;
1357 hub_pm_barrier_for_all_ports(hub);
1358 hub_activate(hub, HUB_POST_RESET);
1359 return 0;
1360 }
1361
1362 static int hub_configure(struct usb_hub *hub,
1363 struct usb_endpoint_descriptor *endpoint)
1364 {
1365 struct usb_hcd *hcd;
1366 struct usb_device *hdev = hub->hdev;
1367 struct device *hub_dev = hub->intfdev;
1368 u16 hubstatus, hubchange;
1369 u16 wHubCharacteristics;
1370 unsigned int pipe;
1371 int maxp, ret, i;
1372 char *message = "out of memory";
1373 unsigned unit_load;
1374 unsigned full_load;
1375 unsigned maxchild;
1376
1377 hub->buffer = kmalloc(sizeof(*hub->buffer), GFP_KERNEL);
1378 if (!hub->buffer) {
1379 ret = -ENOMEM;
1380 goto fail;
1381 }
1382
1383 hub->status = kmalloc(sizeof(*hub->status), GFP_KERNEL);
1384 if (!hub->status) {
1385 ret = -ENOMEM;
1386 goto fail;
1387 }
1388 mutex_init(&hub->status_mutex);
1389
1390 hub->descriptor = kzalloc(sizeof(*hub->descriptor), GFP_KERNEL);
1391 if (!hub->descriptor) {
1392 ret = -ENOMEM;
1393 goto fail;
1394 }
1395
1396 /* Request the entire hub descriptor.
1397 * hub->descriptor can handle USB_MAXCHILDREN ports,
1398 * but a (non-SS) hub can/will return fewer bytes here.
1399 */
1400 ret = get_hub_descriptor(hdev, hub->descriptor);
1401 if (ret < 0) {
1402 message = "can't read hub descriptor";
1403 goto fail;
1404 }
1405
1406 maxchild = USB_MAXCHILDREN;
1407 if (hub_is_superspeed(hdev))
1408 maxchild = min_t(unsigned, maxchild, USB_SS_MAXPORTS);
1409
1410 if (hub->descriptor->bNbrPorts > maxchild) {
1411 message = "hub has too many ports!";
1412 ret = -ENODEV;
1413 goto fail;
1414 } else if (hub->descriptor->bNbrPorts == 0) {
1415 message = "hub doesn't have any ports!";
1416 ret = -ENODEV;
1417 goto fail;
1418 }
1419
1420 /*
1421 * Accumulate wHubDelay + 40ns for every hub in the tree of devices.
1422 * The resulting value will be used for SetIsochDelay() request.
1423 */
1424 if (hub_is_superspeed(hdev) || hub_is_superspeedplus(hdev)) {
1425 u32 delay = __le16_to_cpu(hub->descriptor->u.ss.wHubDelay);
1426
1427 if (hdev->parent)
1428 delay += hdev->parent->hub_delay;
1429
1430 delay += USB_TP_TRANSMISSION_DELAY;
1431 hdev->hub_delay = min_t(u32, delay, USB_TP_TRANSMISSION_DELAY_MAX);
1432 }
1433
1434 maxchild = hub->descriptor->bNbrPorts;
1435 dev_info(hub_dev, "%d port%s detected\n", maxchild,
1436 (maxchild == 1) ? "" : "s");
1437
1438 hub->ports = kcalloc(maxchild, sizeof(struct usb_port *), GFP_KERNEL);
1439 if (!hub->ports) {
1440 ret = -ENOMEM;
1441 goto fail;
1442 }
1443
1444 wHubCharacteristics = le16_to_cpu(hub->descriptor->wHubCharacteristics);
1445 if (hub_is_superspeed(hdev)) {
1446 unit_load = 150;
1447 full_load = 900;
1448 } else {
1449 unit_load = 100;
1450 full_load = 500;
1451 }
1452
1453 /* FIXME for USB 3.0, skip for now */
1454 if ((wHubCharacteristics & HUB_CHAR_COMPOUND) &&
1455 !(hub_is_superspeed(hdev))) {
1456 char portstr[USB_MAXCHILDREN + 1];
1457
1458 for (i = 0; i < maxchild; i++)
1459 portstr[i] = hub->descriptor->u.hs.DeviceRemovable
1460 [((i + 1) / 8)] & (1 << ((i + 1) % 8))
1461 ? 'F' : 'R';
1462 portstr[maxchild] = 0;
1463 dev_dbg(hub_dev, "compound device; port removable status: %s\n", portstr);
1464 } else
1465 dev_dbg(hub_dev, "standalone hub\n");
1466
1467 switch (wHubCharacteristics & HUB_CHAR_LPSM) {
1468 case HUB_CHAR_COMMON_LPSM:
1469 dev_dbg(hub_dev, "ganged power switching\n");
1470 break;
1471 case HUB_CHAR_INDV_PORT_LPSM:
1472 dev_dbg(hub_dev, "individual port power switching\n");
1473 break;
1474 case HUB_CHAR_NO_LPSM:
1475 case HUB_CHAR_LPSM:
1476 dev_dbg(hub_dev, "no power switching (usb 1.0)\n");
1477 break;
1478 }
1479
1480 switch (wHubCharacteristics & HUB_CHAR_OCPM) {
1481 case HUB_CHAR_COMMON_OCPM:
1482 dev_dbg(hub_dev, "global over-current protection\n");
1483 break;
1484 case HUB_CHAR_INDV_PORT_OCPM:
1485 dev_dbg(hub_dev, "individual port over-current protection\n");
1486 break;
1487 case HUB_CHAR_NO_OCPM:
1488 case HUB_CHAR_OCPM:
1489 dev_dbg(hub_dev, "no over-current protection\n");
1490 break;
1491 }
1492
1493 spin_lock_init(&hub->tt.lock);
1494 INIT_LIST_HEAD(&hub->tt.clear_list);
1495 INIT_WORK(&hub->tt.clear_work, hub_tt_work);
1496 switch (hdev->descriptor.bDeviceProtocol) {
1497 case USB_HUB_PR_FS:
1498 break;
1499 case USB_HUB_PR_HS_SINGLE_TT:
1500 dev_dbg(hub_dev, "Single TT\n");
1501 hub->tt.hub = hdev;
1502 break;
1503 case USB_HUB_PR_HS_MULTI_TT:
1504 ret = usb_set_interface(hdev, 0, 1);
1505 if (ret == 0) {
1506 dev_dbg(hub_dev, "TT per port\n");
1507 hub->tt.multi = 1;
1508 } else
1509 dev_err(hub_dev, "Using single TT (err %d)\n",
1510 ret);
1511 hub->tt.hub = hdev;
1512 break;
1513 case USB_HUB_PR_SS:
1514 /* USB 3.0 hubs don't have a TT */
1515 break;
1516 default:
1517 dev_dbg(hub_dev, "Unrecognized hub protocol %d\n",
1518 hdev->descriptor.bDeviceProtocol);
1519 break;
1520 }
1521
1522 /* Note 8 FS bit times == (8 bits / 12000000 bps) ~= 666ns */
1523 switch (wHubCharacteristics & HUB_CHAR_TTTT) {
1524 case HUB_TTTT_8_BITS:
1525 if (hdev->descriptor.bDeviceProtocol != 0) {
1526 hub->tt.think_time = 666;
1527 dev_dbg(hub_dev, "TT requires at most %d "
1528 "FS bit times (%d ns)\n",
1529 8, hub->tt.think_time);
1530 }
1531 break;
1532 case HUB_TTTT_16_BITS:
1533 hub->tt.think_time = 666 * 2;
1534 dev_dbg(hub_dev, "TT requires at most %d "
1535 "FS bit times (%d ns)\n",
1536 16, hub->tt.think_time);
1537 break;
1538 case HUB_TTTT_24_BITS:
1539 hub->tt.think_time = 666 * 3;
1540 dev_dbg(hub_dev, "TT requires at most %d "
1541 "FS bit times (%d ns)\n",
1542 24, hub->tt.think_time);
1543 break;
1544 case HUB_TTTT_32_BITS:
1545 hub->tt.think_time = 666 * 4;
1546 dev_dbg(hub_dev, "TT requires at most %d "
1547 "FS bit times (%d ns)\n",
1548 32, hub->tt.think_time);
1549 break;
1550 }
1551
1552 /* probe() zeroes hub->indicator[] */
1553 if (wHubCharacteristics & HUB_CHAR_PORTIND) {
1554 hub->has_indicators = 1;
1555 dev_dbg(hub_dev, "Port indicators are supported\n");
1556 }
1557
1558 dev_dbg(hub_dev, "power on to power good time: %dms\n",
1559 hub->descriptor->bPwrOn2PwrGood * 2);
1560
1561 /* power budgeting mostly matters with bus-powered hubs,
1562 * and battery-powered root hubs (may provide just 8 mA).
1563 */
1564 ret = usb_get_std_status(hdev, USB_RECIP_DEVICE, 0, &hubstatus);
1565 if (ret) {
1566 message = "can't get hub status";
1567 goto fail;
1568 }
1569 hcd = bus_to_hcd(hdev->bus);
1570 if (hdev == hdev->bus->root_hub) {
1571 if (hcd->power_budget > 0)
1572 hdev->bus_mA = hcd->power_budget;
1573 else
1574 hdev->bus_mA = full_load * maxchild;
1575 if (hdev->bus_mA >= full_load)
1576 hub->mA_per_port = full_load;
1577 else {
1578 hub->mA_per_port = hdev->bus_mA;
1579 hub->limited_power = 1;
1580 }
1581 } else if ((hubstatus & (1 << USB_DEVICE_SELF_POWERED)) == 0) {
1582 int remaining = hdev->bus_mA -
1583 hub->descriptor->bHubContrCurrent;
1584
1585 dev_dbg(hub_dev, "hub controller current requirement: %dmA\n",
1586 hub->descriptor->bHubContrCurrent);
1587 hub->limited_power = 1;
1588
1589 if (remaining < maxchild * unit_load)
1590 dev_warn(hub_dev,
1591 "insufficient power available "
1592 "to use all downstream ports\n");
1593 hub->mA_per_port = unit_load; /* 7.2.1 */
1594
1595 } else { /* Self-powered external hub */
1596 /* FIXME: What about battery-powered external hubs that
1597 * provide less current per port? */
1598 hub->mA_per_port = full_load;
1599 }
1600 if (hub->mA_per_port < full_load)
1601 dev_dbg(hub_dev, "%umA bus power budget for each child\n",
1602 hub->mA_per_port);
1603
1604 ret = hub_hub_status(hub, &hubstatus, &hubchange);
1605 if (ret < 0) {
1606 message = "can't get hub status";
1607 goto fail;
1608 }
1609
1610 /* local power status reports aren't always correct */
1611 if (hdev->actconfig->desc.bmAttributes & USB_CONFIG_ATT_SELFPOWER)
1612 dev_dbg(hub_dev, "local power source is %s\n",
1613 (hubstatus & HUB_STATUS_LOCAL_POWER)
1614 ? "lost (inactive)" : "good");
1615
1616 if ((wHubCharacteristics & HUB_CHAR_OCPM) == 0)
1617 dev_dbg(hub_dev, "%sover-current condition exists\n",
1618 (hubstatus & HUB_STATUS_OVERCURRENT) ? "" : "no ");
1619
1620 /* set up the interrupt endpoint
1621 * We use the EP's maxpacket size instead of (PORTS+1+7)/8
1622 * bytes as USB2.0[11.12.3] says because some hubs are known
1623 * to send more data (and thus cause overflow). For root hubs,
1624 * maxpktsize is defined in hcd.c's fake endpoint descriptors
1625 * to be big enough for at least USB_MAXCHILDREN ports. */
1626 pipe = usb_rcvintpipe(hdev, endpoint->bEndpointAddress);
1627 maxp = usb_maxpacket(hdev, pipe, usb_pipeout(pipe));
1628
1629 if (maxp > sizeof(*hub->buffer))
1630 maxp = sizeof(*hub->buffer);
1631
1632 hub->urb = usb_alloc_urb(0, GFP_KERNEL);
1633 if (!hub->urb) {
1634 ret = -ENOMEM;
1635 goto fail;
1636 }
1637
1638 usb_fill_int_urb(hub->urb, hdev, pipe, *hub->buffer, maxp, hub_irq,
1639 hub, endpoint->bInterval);
1640
1641 /* maybe cycle the hub leds */
1642 if (hub->has_indicators && blinkenlights)
1643 hub->indicator[0] = INDICATOR_CYCLE;
1644
1645 mutex_lock(&usb_port_peer_mutex);
1646 for (i = 0; i < maxchild; i++) {
1647 ret = usb_hub_create_port_device(hub, i + 1);
1648 if (ret < 0) {
1649 dev_err(hub->intfdev,
1650 "couldn't create port%d device.\n", i + 1);
1651 break;
1652 }
1653 }
1654 hdev->maxchild = i;
1655 for (i = 0; i < hdev->maxchild; i++) {
1656 struct usb_port *port_dev = hub->ports[i];
1657
1658 pm_runtime_put(&port_dev->dev);
1659 }
1660
1661 mutex_unlock(&usb_port_peer_mutex);
1662 if (ret < 0)
1663 goto fail;
1664
1665 /* Update the HCD's internal representation of this hub before hub_wq
1666 * starts getting port status changes for devices under the hub.
1667 */
1668 if (hcd->driver->update_hub_device) {
1669 ret = hcd->driver->update_hub_device(hcd, hdev,
1670 &hub->tt, GFP_KERNEL);
1671 if (ret < 0) {
1672 message = "can't update HCD hub info";
1673 goto fail;
1674 }
1675 }
1676
1677 usb_hub_adjust_deviceremovable(hdev, hub->descriptor);
1678
1679 hub_activate(hub, HUB_INIT);
1680 return 0;
1681
1682 fail:
1683 dev_err(hub_dev, "config failed, %s (err %d)\n",
1684 message, ret);
1685 /* hub_disconnect() frees urb and descriptor */
1686 return ret;
1687 }
1688
1689 static void hub_release(struct kref *kref)
1690 {
1691 struct usb_hub *hub = container_of(kref, struct usb_hub, kref);
1692
1693 usb_put_dev(hub->hdev);
1694 usb_put_intf(to_usb_interface(hub->intfdev));
1695 kfree(hub);
1696 }
1697
1698 static unsigned highspeed_hubs;
1699
1700 static void hub_disconnect(struct usb_interface *intf)
1701 {
1702 struct usb_hub *hub = usb_get_intfdata(intf);
1703 struct usb_device *hdev = interface_to_usbdev(intf);
1704 int port1;
1705
1706 /*
1707 * Stop adding new hub events. We do not want to block here and thus
1708 * will not try to remove any pending work item.
1709 */
1710 hub->disconnected = 1;
1711
1712 /* Disconnect all children and quiesce the hub */
1713 hub->error = 0;
1714 hub_quiesce(hub, HUB_DISCONNECT);
1715
1716 mutex_lock(&usb_port_peer_mutex);
1717
1718 /* Avoid races with recursively_mark_NOTATTACHED() */
1719 spin_lock_irq(&device_state_lock);
1720 port1 = hdev->maxchild;
1721 hdev->maxchild = 0;
1722 usb_set_intfdata(intf, NULL);
1723 spin_unlock_irq(&device_state_lock);
1724
1725 for (; port1 > 0; --port1)
1726 usb_hub_remove_port_device(hub, port1);
1727
1728 mutex_unlock(&usb_port_peer_mutex);
1729
1730 if (hub->hdev->speed == USB_SPEED_HIGH)
1731 highspeed_hubs--;
1732
1733 usb_free_urb(hub->urb);
1734 kfree(hub->ports);
1735 kfree(hub->descriptor);
1736 kfree(hub->status);
1737 kfree(hub->buffer);
1738
1739 pm_suspend_ignore_children(&intf->dev, false);
1740
1741 if (hub->quirk_disable_autosuspend)
1742 usb_autopm_put_interface(intf);
1743
1744 kref_put(&hub->kref, hub_release);
1745 }
1746
1747 static bool hub_descriptor_is_sane(struct usb_host_interface *desc)
1748 {
1749 /* Some hubs have a subclass of 1, which AFAICT according to the */
1750 /* specs is not defined, but it works */
1751 if (desc->desc.bInterfaceSubClass != 0 &&
1752 desc->desc.bInterfaceSubClass != 1)
1753 return false;
1754
1755 /* Multiple endpoints? What kind of mutant ninja-hub is this? */
1756 if (desc->desc.bNumEndpoints != 1)
1757 return false;
1758
1759 /* If the first endpoint is not interrupt IN, we'd better punt! */
1760 if (!usb_endpoint_is_int_in(&desc->endpoint[0].desc))
1761 return false;
1762
1763 return true;
1764 }
1765
1766 static int hub_probe(struct usb_interface *intf, const struct usb_device_id *id)
1767 {
1768 struct usb_host_interface *desc;
1769 struct usb_device *hdev;
1770 struct usb_hub *hub;
1771
1772 desc = intf->cur_altsetting;
1773 hdev = interface_to_usbdev(intf);
1774
1775 /*
1776 * Set default autosuspend delay as 0 to speedup bus suspend,
1777 * based on the below considerations:
1778 *
1779 * - Unlike other drivers, the hub driver does not rely on the
1780 * autosuspend delay to provide enough time to handle a wakeup
1781 * event, and the submitted status URB is just to check future
1782 * change on hub downstream ports, so it is safe to do it.
1783 *
1784 * - The patch might cause one or more auto supend/resume for
1785 * below very rare devices when they are plugged into hub
1786 * first time:
1787 *
1788 * devices having trouble initializing, and disconnect
1789 * themselves from the bus and then reconnect a second
1790 * or so later
1791 *
1792 * devices just for downloading firmware, and disconnects
1793 * themselves after completing it
1794 *
1795 * For these quite rare devices, their drivers may change the
1796 * autosuspend delay of their parent hub in the probe() to one
1797 * appropriate value to avoid the subtle problem if someone
1798 * does care it.
1799 *
1800 * - The patch may cause one or more auto suspend/resume on
1801 * hub during running 'lsusb', but it is probably too
1802 * infrequent to worry about.
1803 *
1804 * - Change autosuspend delay of hub can avoid unnecessary auto
1805 * suspend timer for hub, also may decrease power consumption
1806 * of USB bus.
1807 *
1808 * - If user has indicated to prevent autosuspend by passing
1809 * usbcore.autosuspend = -1 then keep autosuspend disabled.
1810 */
1811 #ifdef CONFIG_PM
1812 if (hdev->dev.power.autosuspend_delay >= 0)
1813 pm_runtime_set_autosuspend_delay(&hdev->dev, 0);
1814 #endif
1815
1816 /*
1817 * Hubs have proper suspend/resume support, except for root hubs
1818 * where the controller driver doesn't have bus_suspend and
1819 * bus_resume methods.
1820 */
1821 if (hdev->parent) { /* normal device */
1822 usb_enable_autosuspend(hdev);
1823 } else { /* root hub */
1824 const struct hc_driver *drv = bus_to_hcd(hdev->bus)->driver;
1825
1826 if (drv->bus_suspend && drv->bus_resume)
1827 usb_enable_autosuspend(hdev);
1828 }
1829
1830 if (hdev->level == MAX_TOPO_LEVEL) {
1831 dev_err(&intf->dev,
1832 "Unsupported bus topology: hub nested too deep\n");
1833 return -E2BIG;
1834 }
1835
1836 #ifdef CONFIG_USB_OTG_BLACKLIST_HUB
1837 if (hdev->parent) {
1838 dev_warn(&intf->dev, "ignoring external hub\n");
1839 return -ENODEV;
1840 }
1841 #endif
1842
1843 if (!hub_descriptor_is_sane(desc)) {
1844 dev_err(&intf->dev, "bad descriptor, ignoring hub\n");
1845 return -EIO;
1846 }
1847
1848 /* We found a hub */
1849 dev_info(&intf->dev, "USB hub found\n");
1850
1851 hub = kzalloc(sizeof(*hub), GFP_KERNEL);
1852 if (!hub)
1853 return -ENOMEM;
1854
1855 kref_init(&hub->kref);
1856 hub->intfdev = &intf->dev;
1857 hub->hdev = hdev;
1858 INIT_DELAYED_WORK(&hub->leds, led_work);
1859 INIT_DELAYED_WORK(&hub->init_work, NULL);
1860 INIT_WORK(&hub->events, hub_event);
1861 spin_lock_init(&hub->irq_urb_lock);
1862 timer_setup(&hub->irq_urb_retry, hub_retry_irq_urb, 0);
1863 usb_get_intf(intf);
1864 usb_get_dev(hdev);
1865
1866 usb_set_intfdata(intf, hub);
1867 intf->needs_remote_wakeup = 1;
1868 pm_suspend_ignore_children(&intf->dev, true);
1869
1870 if (hdev->speed == USB_SPEED_HIGH)
1871 highspeed_hubs++;
1872
1873 if (id->driver_info & HUB_QUIRK_CHECK_PORT_AUTOSUSPEND)
1874 hub->quirk_check_port_auto_suspend = 1;
1875
1876 if (id->driver_info & HUB_QUIRK_DISABLE_AUTOSUSPEND) {
1877 hub->quirk_disable_autosuspend = 1;
1878 usb_autopm_get_interface_no_resume(intf);
1879 }
1880
1881 if (hub_configure(hub, &desc->endpoint[0].desc) >= 0)
1882 return 0;
1883
1884 hub_disconnect(intf);
1885 return -ENODEV;
1886 }
1887
1888 static int
1889 hub_ioctl(struct usb_interface *intf, unsigned int code, void *user_data)
1890 {
1891 struct usb_device *hdev = interface_to_usbdev(intf);
1892 struct usb_hub *hub = usb_hub_to_struct_hub(hdev);
1893
1894 /* assert ifno == 0 (part of hub spec) */
1895 switch (code) {
1896 case USBDEVFS_HUB_PORTINFO: {
1897 struct usbdevfs_hub_portinfo *info = user_data;
1898 int i;
1899
1900 spin_lock_irq(&device_state_lock);
1901 if (hdev->devnum <= 0)
1902 info->nports = 0;
1903 else {
1904 info->nports = hdev->maxchild;
1905 for (i = 0; i < info->nports; i++) {
1906 if (hub->ports[i]->child == NULL)
1907 info->port[i] = 0;
1908 else
1909 info->port[i] =
1910 hub->ports[i]->child->devnum;
1911 }
1912 }
1913 spin_unlock_irq(&device_state_lock);
1914
1915 return info->nports + 1;
1916 }
1917
1918 default:
1919 return -ENOSYS;
1920 }
1921 }
1922
1923 /*
1924 * Allow user programs to claim ports on a hub. When a device is attached
1925 * to one of these "claimed" ports, the program will "own" the device.
1926 */
1927 static int find_port_owner(struct usb_device *hdev, unsigned port1,
1928 struct usb_dev_state ***ppowner)
1929 {
1930 struct usb_hub *hub = usb_hub_to_struct_hub(hdev);
1931
1932 if (hdev->state == USB_STATE_NOTATTACHED)
1933 return -ENODEV;
1934 if (port1 == 0 || port1 > hdev->maxchild)
1935 return -EINVAL;
1936
1937 /* Devices not managed by the hub driver
1938 * will always have maxchild equal to 0.
1939 */
1940 *ppowner = &(hub->ports[port1 - 1]->port_owner);
1941 return 0;
1942 }
1943
1944 /* In the following three functions, the caller must hold hdev's lock */
1945 int usb_hub_claim_port(struct usb_device *hdev, unsigned port1,
1946 struct usb_dev_state *owner)
1947 {
1948 int rc;
1949 struct usb_dev_state **powner;
1950
1951 rc = find_port_owner(hdev, port1, &powner);
1952 if (rc)
1953 return rc;
1954 if (*powner)
1955 return -EBUSY;
1956 *powner = owner;
1957 return rc;
1958 }
1959 EXPORT_SYMBOL_GPL(usb_hub_claim_port);
1960
1961 int usb_hub_release_port(struct usb_device *hdev, unsigned port1,
1962 struct usb_dev_state *owner)
1963 {
1964 int rc;
1965 struct usb_dev_state **powner;
1966
1967 rc = find_port_owner(hdev, port1, &powner);
1968 if (rc)
1969 return rc;
1970 if (*powner != owner)
1971 return -ENOENT;
1972 *powner = NULL;
1973 return rc;
1974 }
1975 EXPORT_SYMBOL_GPL(usb_hub_release_port);
1976
1977 void usb_hub_release_all_ports(struct usb_device *hdev, struct usb_dev_state *owner)
1978 {
1979 struct usb_hub *hub = usb_hub_to_struct_hub(hdev);
1980 int n;
1981
1982 for (n = 0; n < hdev->maxchild; n++) {
1983 if (hub->ports[n]->port_owner == owner)
1984 hub->ports[n]->port_owner = NULL;
1985 }
1986
1987 }
1988
1989 /* The caller must hold udev's lock */
1990 bool usb_device_is_owned(struct usb_device *udev)
1991 {
1992 struct usb_hub *hub;
1993
1994 if (udev->state == USB_STATE_NOTATTACHED || !udev->parent)
1995 return false;
1996 hub = usb_hub_to_struct_hub(udev->parent);
1997 return !!hub->ports[udev->portnum - 1]->port_owner;
1998 }
1999
2000 static void recursively_mark_NOTATTACHED(struct usb_device *udev)
2001 {
2002 struct usb_hub *hub = usb_hub_to_struct_hub(udev);
2003 int i;
2004
2005 for (i = 0; i < udev->maxchild; ++i) {
2006 if (hub->ports[i]->child)
2007 recursively_mark_NOTATTACHED(hub->ports[i]->child);
2008 }
2009 if (udev->state == USB_STATE_SUSPENDED)
2010 udev->active_duration -= jiffies;
2011 udev->state = USB_STATE_NOTATTACHED;
2012 }
2013
2014 /**
2015 * usb_set_device_state - change a device's current state (usbcore, hcds)
2016 * @udev: pointer to device whose state should be changed
2017 * @new_state: new state value to be stored
2018 *
2019 * udev->state is _not_ fully protected by the device lock. Although
2020 * most transitions are made only while holding the lock, the state can
2021 * can change to USB_STATE_NOTATTACHED at almost any time. This
2022 * is so that devices can be marked as disconnected as soon as possible,
2023 * without having to wait for any semaphores to be released. As a result,
2024 * all changes to any device's state must be protected by the
2025 * device_state_lock spinlock.
2026 *
2027 * Once a device has been added to the device tree, all changes to its state
2028 * should be made using this routine. The state should _not_ be set directly.
2029 *
2030 * If udev->state is already USB_STATE_NOTATTACHED then no change is made.
2031 * Otherwise udev->state is set to new_state, and if new_state is
2032 * USB_STATE_NOTATTACHED then all of udev's descendants' states are also set
2033 * to USB_STATE_NOTATTACHED.
2034 */
2035 void usb_set_device_state(struct usb_device *udev,
2036 enum usb_device_state new_state)
2037 {
2038 unsigned long flags;
2039 int wakeup = -1;
2040
2041 spin_lock_irqsave(&device_state_lock, flags);
2042 if (udev->state == USB_STATE_NOTATTACHED)
2043 ; /* do nothing */
2044 else if (new_state != USB_STATE_NOTATTACHED) {
2045
2046 /* root hub wakeup capabilities are managed out-of-band
2047 * and may involve silicon errata ... ignore them here.
2048 */
2049 if (udev->parent) {
2050 if (udev->state == USB_STATE_SUSPENDED
2051 || new_state == USB_STATE_SUSPENDED)
2052 ; /* No change to wakeup settings */
2053 else if (new_state == USB_STATE_CONFIGURED)
2054 wakeup = (udev->quirks &
2055 USB_QUIRK_IGNORE_REMOTE_WAKEUP) ? 0 :
2056 udev->actconfig->desc.bmAttributes &
2057 USB_CONFIG_ATT_WAKEUP;
2058 else
2059 wakeup = 0;
2060 }
2061 if (udev->state == USB_STATE_SUSPENDED &&
2062 new_state != USB_STATE_SUSPENDED)
2063 udev->active_duration -= jiffies;
2064 else if (new_state == USB_STATE_SUSPENDED &&
2065 udev->state != USB_STATE_SUSPENDED)
2066 udev->active_duration += jiffies;
2067 udev->state = new_state;
2068 } else
2069 recursively_mark_NOTATTACHED(udev);
2070 spin_unlock_irqrestore(&device_state_lock, flags);
2071 if (wakeup >= 0)
2072 device_set_wakeup_capable(&udev->dev, wakeup);
2073 }
2074 EXPORT_SYMBOL_GPL(usb_set_device_state);
2075
2076 /*
2077 * Choose a device number.
2078 *
2079 * Device numbers are used as filenames in usbfs. On USB-1.1 and
2080 * USB-2.0 buses they are also used as device addresses, however on
2081 * USB-3.0 buses the address is assigned by the controller hardware
2082 * and it usually is not the same as the device number.
2083 *
2084 * WUSB devices are simple: they have no hubs behind, so the mapping
2085 * device <-> virtual port number becomes 1:1. Why? to simplify the
2086 * life of the device connection logic in
2087 * drivers/usb/wusbcore/devconnect.c. When we do the initial secret
2088 * handshake we need to assign a temporary address in the unauthorized
2089 * space. For simplicity we use the first virtual port number found to
2090 * be free [drivers/usb/wusbcore/devconnect.c:wusbhc_devconnect_ack()]
2091 * and that becomes it's address [X < 128] or its unauthorized address
2092 * [X | 0x80].
2093 *
2094 * We add 1 as an offset to the one-based USB-stack port number
2095 * (zero-based wusb virtual port index) for two reasons: (a) dev addr
2096 * 0 is reserved by USB for default address; (b) Linux's USB stack
2097 * uses always #1 for the root hub of the controller. So USB stack's
2098 * port #1, which is wusb virtual-port #0 has address #2.
2099 *
2100 * Devices connected under xHCI are not as simple. The host controller
2101 * supports virtualization, so the hardware assigns device addresses and
2102 * the HCD must setup data structures before issuing a set address
2103 * command to the hardware.
2104 */
2105 static void choose_devnum(struct usb_device *udev)
2106 {
2107 int devnum;
2108 struct usb_bus *bus = udev->bus;
2109
2110 /* be safe when more hub events are proceed in parallel */
2111 mutex_lock(&bus->devnum_next_mutex);
2112 if (udev->wusb) {
2113 devnum = udev->portnum + 1;
2114 BUG_ON(test_bit(devnum, bus->devmap.devicemap));
2115 } else {
2116 /* Try to allocate the next devnum beginning at
2117 * bus->devnum_next. */
2118 devnum = find_next_zero_bit(bus->devmap.devicemap, 128,
2119 bus->devnum_next);
2120 if (devnum >= 128)
2121 devnum = find_next_zero_bit(bus->devmap.devicemap,
2122 128, 1);
2123 bus->devnum_next = (devnum >= 127 ? 1 : devnum + 1);
2124 }
2125 if (devnum < 128) {
2126 set_bit(devnum, bus->devmap.devicemap);
2127 udev->devnum = devnum;
2128 }
2129 mutex_unlock(&bus->devnum_next_mutex);
2130 }
2131
2132 static void release_devnum(struct usb_device *udev)
2133 {
2134 if (udev->devnum > 0) {
2135 clear_bit(udev->devnum, udev->bus->devmap.devicemap);
2136 udev->devnum = -1;
2137 }
2138 }
2139
2140 static void update_devnum(struct usb_device *udev, int devnum)
2141 {
2142 /* The address for a WUSB device is managed by wusbcore. */
2143 if (!udev->wusb)
2144 udev->devnum = devnum;
2145 if (!udev->devaddr)
2146 udev->devaddr = (u8)devnum;
2147 }
2148
2149 static void hub_free_dev(struct usb_device *udev)
2150 {
2151 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
2152
2153 /* Root hubs aren't real devices, so don't free HCD resources */
2154 if (hcd->driver->free_dev && udev->parent)
2155 hcd->driver->free_dev(hcd, udev);
2156 }
2157
2158 static void hub_disconnect_children(struct usb_device *udev)
2159 {
2160 struct usb_hub *hub = usb_hub_to_struct_hub(udev);
2161 int i;
2162
2163 /* Free up all the children before we remove this device */
2164 for (i = 0; i < udev->maxchild; i++) {
2165 if (hub->ports[i]->child)
2166 usb_disconnect(&hub->ports[i]->child);
2167 }
2168 }
2169
2170 /**
2171 * usb_disconnect - disconnect a device (usbcore-internal)
2172 * @pdev: pointer to device being disconnected
2173 * Context: !in_interrupt ()
2174 *
2175 * Something got disconnected. Get rid of it and all of its children.
2176 *
2177 * If *pdev is a normal device then the parent hub must already be locked.
2178 * If *pdev is a root hub then the caller must hold the usb_bus_idr_lock,
2179 * which protects the set of root hubs as well as the list of buses.
2180 *
2181 * Only hub drivers (including virtual root hub drivers for host
2182 * controllers) should ever call this.
2183 *
2184 * This call is synchronous, and may not be used in an interrupt context.
2185 */
2186 void usb_disconnect(struct usb_device **pdev)
2187 {
2188 struct usb_port *port_dev = NULL;
2189 struct usb_device *udev = *pdev;
2190 struct usb_hub *hub = NULL;
2191 int port1 = 1;
2192
2193 /* mark the device as inactive, so any further urb submissions for
2194 * this device (and any of its children) will fail immediately.
2195 * this quiesces everything except pending urbs.
2196 */
2197 usb_set_device_state(udev, USB_STATE_NOTATTACHED);
2198 dev_info(&udev->dev, "USB disconnect, device number %d\n",
2199 udev->devnum);
2200
2201 /*
2202 * Ensure that the pm runtime code knows that the USB device
2203 * is in the process of being disconnected.
2204 */
2205 pm_runtime_barrier(&udev->dev);
2206
2207 usb_lock_device(udev);
2208
2209 hub_disconnect_children(udev);
2210
2211 /* deallocate hcd/hardware state ... nuking all pending urbs and
2212 * cleaning up all state associated with the current configuration
2213 * so that the hardware is now fully quiesced.
2214 */
2215 dev_dbg(&udev->dev, "unregistering device\n");
2216 usb_disable_device(udev, 0);
2217 usb_hcd_synchronize_unlinks(udev);
2218
2219 if (udev->parent) {
2220 port1 = udev->portnum;
2221 hub = usb_hub_to_struct_hub(udev->parent);
2222 port_dev = hub->ports[port1 - 1];
2223
2224 sysfs_remove_link(&udev->dev.kobj, "port");
2225 sysfs_remove_link(&port_dev->dev.kobj, "device");
2226
2227 /*
2228 * As usb_port_runtime_resume() de-references udev, make
2229 * sure no resumes occur during removal
2230 */
2231 if (!test_and_set_bit(port1, hub->child_usage_bits))
2232 pm_runtime_get_sync(&port_dev->dev);
2233 }
2234
2235 usb_remove_ep_devs(&udev->ep0);
2236 usb_unlock_device(udev);
2237
2238 /* Unregister the device. The device driver is responsible
2239 * for de-configuring the device and invoking the remove-device
2240 * notifier chain (used by usbfs and possibly others).
2241 */
2242 device_del(&udev->dev);
2243
2244 /* Free the device number and delete the parent's children[]
2245 * (or root_hub) pointer.
2246 */
2247 release_devnum(udev);
2248
2249 /* Avoid races with recursively_mark_NOTATTACHED() */
2250 spin_lock_irq(&device_state_lock);
2251 *pdev = NULL;
2252 spin_unlock_irq(&device_state_lock);
2253
2254 if (port_dev && test_and_clear_bit(port1, hub->child_usage_bits))
2255 pm_runtime_put(&port_dev->dev);
2256
2257 hub_free_dev(udev);
2258
2259 put_device(&udev->dev);
2260 }
2261
2262 #ifdef CONFIG_USB_ANNOUNCE_NEW_DEVICES
2263 static void show_string(struct usb_device *udev, char *id, char *string)
2264 {
2265 if (!string)
2266 return;
2267 dev_info(&udev->dev, "%s: %s\n", id, string);
2268 }
2269
2270 static void announce_device(struct usb_device *udev)
2271 {
2272 u16 bcdDevice = le16_to_cpu(udev->descriptor.bcdDevice);
2273
2274 dev_info(&udev->dev,
2275 "New USB device found, idVendor=%04x, idProduct=%04x, bcdDevice=%2x.%02x\n",
2276 le16_to_cpu(udev->descriptor.idVendor),
2277 le16_to_cpu(udev->descriptor.idProduct),
2278 bcdDevice >> 8, bcdDevice & 0xff);
2279 dev_info(&udev->dev,
2280 "New USB device strings: Mfr=%d, Product=%d, SerialNumber=%d\n",
2281 udev->descriptor.iManufacturer,
2282 udev->descriptor.iProduct,
2283 udev->descriptor.iSerialNumber);
2284 show_string(udev, "Product", udev->product);
2285 show_string(udev, "Manufacturer", udev->manufacturer);
2286 show_string(udev, "SerialNumber", udev->serial);
2287 }
2288 #else
2289 static inline void announce_device(struct usb_device *udev) { }
2290 #endif
2291
2292
2293 /**
2294 * usb_enumerate_device_otg - FIXME (usbcore-internal)
2295 * @udev: newly addressed device (in ADDRESS state)
2296 *
2297 * Finish enumeration for On-The-Go devices
2298 *
2299 * Return: 0 if successful. A negative error code otherwise.
2300 */
2301 static int usb_enumerate_device_otg(struct usb_device *udev)
2302 {
2303 int err = 0;
2304
2305 #ifdef CONFIG_USB_OTG
2306 /*
2307 * OTG-aware devices on OTG-capable root hubs may be able to use SRP,
2308 * to wake us after we've powered off VBUS; and HNP, switching roles
2309 * "host" to "peripheral". The OTG descriptor helps figure this out.
2310 */
2311 if (!udev->bus->is_b_host
2312 && udev->config
2313 && udev->parent == udev->bus->root_hub) {
2314 struct usb_otg_descriptor *desc = NULL;
2315 struct usb_bus *bus = udev->bus;
2316 unsigned port1 = udev->portnum;
2317
2318 /* descriptor may appear anywhere in config */
2319 err = __usb_get_extra_descriptor(udev->rawdescriptors[0],
2320 le16_to_cpu(udev->config[0].desc.wTotalLength),
2321 USB_DT_OTG, (void **) &desc, sizeof(*desc));
2322 if (err || !(desc->bmAttributes & USB_OTG_HNP))
2323 return 0;
2324
2325 dev_info(&udev->dev, "Dual-Role OTG device on %sHNP port\n",
2326 (port1 == bus->otg_port) ? "" : "non-");
2327
2328 /* enable HNP before suspend, it's simpler */
2329 if (port1 == bus->otg_port) {
2330 bus->b_hnp_enable = 1;
2331 err = usb_control_msg(udev,
2332 usb_sndctrlpipe(udev, 0),
2333 USB_REQ_SET_FEATURE, 0,
2334 USB_DEVICE_B_HNP_ENABLE,
2335 0, NULL, 0,
2336 USB_CTRL_SET_TIMEOUT);
2337 if (err < 0) {
2338 /*
2339 * OTG MESSAGE: report errors here,
2340 * customize to match your product.
2341 */
2342 dev_err(&udev->dev, "can't set HNP mode: %d\n",
2343 err);
2344 bus->b_hnp_enable = 0;
2345 }
2346 } else if (desc->bLength == sizeof
2347 (struct usb_otg_descriptor)) {
2348 /* Set a_alt_hnp_support for legacy otg device */
2349 err = usb_control_msg(udev,
2350 usb_sndctrlpipe(udev, 0),
2351 USB_REQ_SET_FEATURE, 0,
2352 USB_DEVICE_A_ALT_HNP_SUPPORT,
2353 0, NULL, 0,
2354 USB_CTRL_SET_TIMEOUT);
2355 if (err < 0)
2356 dev_err(&udev->dev,
2357 "set a_alt_hnp_support failed: %d\n",
2358 err);
2359 }
2360 }
2361 #endif
2362 return err;
2363 }
2364
2365
2366 /**
2367 * usb_enumerate_device - Read device configs/intfs/otg (usbcore-internal)
2368 * @udev: newly addressed device (in ADDRESS state)
2369 *
2370 * This is only called by usb_new_device() and usb_authorize_device()
2371 * and FIXME -- all comments that apply to them apply here wrt to
2372 * environment.
2373 *
2374 * If the device is WUSB and not authorized, we don't attempt to read
2375 * the string descriptors, as they will be errored out by the device
2376 * until it has been authorized.
2377 *
2378 * Return: 0 if successful. A negative error code otherwise.
2379 */
2380 static int usb_enumerate_device(struct usb_device *udev)
2381 {
2382 int err;
2383 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
2384
2385 if (udev->config == NULL) {
2386 err = usb_get_configuration(udev);
2387 if (err < 0) {
2388 if (err != -ENODEV)
2389 dev_err(&udev->dev, "can't read configurations, error %d\n",
2390 err);
2391 return err;
2392 }
2393 }
2394
2395 /* read the standard strings and cache them if present */
2396 udev->product = usb_cache_string(udev, udev->descriptor.iProduct);
2397 udev->manufacturer = usb_cache_string(udev,
2398 udev->descriptor.iManufacturer);
2399 udev->serial = usb_cache_string(udev, udev->descriptor.iSerialNumber);
2400
2401 err = usb_enumerate_device_otg(udev);
2402 if (err < 0)
2403 return err;
2404
2405 if (IS_ENABLED(CONFIG_USB_OTG_WHITELIST) && hcd->tpl_support &&
2406 !is_targeted(udev)) {
2407 /* Maybe it can talk to us, though we can't talk to it.
2408 * (Includes HNP test device.)
2409 */
2410 if (IS_ENABLED(CONFIG_USB_OTG) && (udev->bus->b_hnp_enable
2411 || udev->bus->is_b_host)) {
2412 err = usb_port_suspend(udev, PMSG_AUTO_SUSPEND);
2413 if (err < 0)
2414 dev_dbg(&udev->dev, "HNP fail, %d\n", err);
2415 }
2416 return -ENOTSUPP;
2417 }
2418
2419 usb_detect_interface_quirks(udev);
2420
2421 return 0;
2422 }
2423
2424 static void set_usb_port_removable(struct usb_device *udev)
2425 {
2426 struct usb_device *hdev = udev->parent;
2427 struct usb_hub *hub;
2428 u8 port = udev->portnum;
2429 u16 wHubCharacteristics;
2430 bool removable = true;
2431
2432 if (!hdev)
2433 return;
2434
2435 hub = usb_hub_to_struct_hub(udev->parent);
2436
2437 /*
2438 * If the platform firmware has provided information about a port,
2439 * use that to determine whether it's removable.
2440 */
2441 switch (hub->ports[udev->portnum - 1]->connect_type) {
2442 case USB_PORT_CONNECT_TYPE_HOT_PLUG:
2443 udev->removable = USB_DEVICE_REMOVABLE;
2444 return;
2445 case USB_PORT_CONNECT_TYPE_HARD_WIRED:
2446 case USB_PORT_NOT_USED:
2447 udev->removable = USB_DEVICE_FIXED;
2448 return;
2449 default:
2450 break;
2451 }
2452
2453 /*
2454 * Otherwise, check whether the hub knows whether a port is removable
2455 * or not
2456 */
2457 wHubCharacteristics = le16_to_cpu(hub->descriptor->wHubCharacteristics);
2458
2459 if (!(wHubCharacteristics & HUB_CHAR_COMPOUND))
2460 return;
2461
2462 if (hub_is_superspeed(hdev)) {
2463 if (le16_to_cpu(hub->descriptor->u.ss.DeviceRemovable)
2464 & (1 << port))
2465 removable = false;
2466 } else {
2467 if (hub->descriptor->u.hs.DeviceRemovable[port / 8] & (1 << (port % 8)))
2468 removable = false;
2469 }
2470
2471 if (removable)
2472 udev->removable = USB_DEVICE_REMOVABLE;
2473 else
2474 udev->removable = USB_DEVICE_FIXED;
2475
2476 }
2477
2478 /**
2479 * usb_new_device - perform initial device setup (usbcore-internal)
2480 * @udev: newly addressed device (in ADDRESS state)
2481 *
2482 * This is called with devices which have been detected but not fully
2483 * enumerated. The device descriptor is available, but not descriptors
2484 * for any device configuration. The caller must have locked either
2485 * the parent hub (if udev is a normal device) or else the
2486 * usb_bus_idr_lock (if udev is a root hub). The parent's pointer to
2487 * udev has already been installed, but udev is not yet visible through
2488 * sysfs or other filesystem code.
2489 *
2490 * This call is synchronous, and may not be used in an interrupt context.
2491 *
2492 * Only the hub driver or root-hub registrar should ever call this.
2493 *
2494 * Return: Whether the device is configured properly or not. Zero if the
2495 * interface was registered with the driver core; else a negative errno
2496 * value.
2497 *
2498 */
2499 int usb_new_device(struct usb_device *udev)
2500 {
2501 int err;
2502
2503 if (udev->parent) {
2504 /* Initialize non-root-hub device wakeup to disabled;
2505 * device (un)configuration controls wakeup capable
2506 * sysfs power/wakeup controls wakeup enabled/disabled
2507 */
2508 device_init_wakeup(&udev->dev, 0);
2509 }
2510
2511 /* Tell the runtime-PM framework the device is active */
2512 pm_runtime_set_active(&udev->dev);
2513 pm_runtime_get_noresume(&udev->dev);
2514 pm_runtime_use_autosuspend(&udev->dev);
2515 pm_runtime_enable(&udev->dev);
2516
2517 /* By default, forbid autosuspend for all devices. It will be
2518 * allowed for hubs during binding.
2519 */
2520 usb_disable_autosuspend(udev);
2521
2522 err = usb_enumerate_device(udev); /* Read descriptors */
2523 if (err < 0)
2524 goto fail;
2525 dev_dbg(&udev->dev, "udev %d, busnum %d, minor = %d\n",
2526 udev->devnum, udev->bus->busnum,
2527 (((udev->bus->busnum-1) * 128) + (udev->devnum-1)));
2528 /* export the usbdev device-node for libusb */
2529 udev->dev.devt = MKDEV(USB_DEVICE_MAJOR,
2530 (((udev->bus->busnum-1) * 128) + (udev->devnum-1)));
2531
2532 /* Tell the world! */
2533 announce_device(udev);
2534
2535 if (udev->serial)
2536 add_device_randomness(udev->serial, strlen(udev->serial));
2537 if (udev->product)
2538 add_device_randomness(udev->product, strlen(udev->product));
2539 if (udev->manufacturer)
2540 add_device_randomness(udev->manufacturer,
2541 strlen(udev->manufacturer));
2542
2543 device_enable_async_suspend(&udev->dev);
2544
2545 /* check whether the hub or firmware marks this port as non-removable */
2546 if (udev->parent)
2547 set_usb_port_removable(udev);
2548
2549 /* Register the device. The device driver is responsible
2550 * for configuring the device and invoking the add-device
2551 * notifier chain (used by usbfs and possibly others).
2552 */
2553 err = device_add(&udev->dev);
2554 if (err) {
2555 dev_err(&udev->dev, "can't device_add, error %d\n", err);
2556 goto fail;
2557 }
2558
2559 /* Create link files between child device and usb port device. */
2560 if (udev->parent) {
2561 struct usb_hub *hub = usb_hub_to_struct_hub(udev->parent);
2562 int port1 = udev->portnum;
2563 struct usb_port *port_dev = hub->ports[port1 - 1];
2564
2565 err = sysfs_create_link(&udev->dev.kobj,
2566 &port_dev->dev.kobj, "port");
2567 if (err)
2568 goto fail;
2569
2570 err = sysfs_create_link(&port_dev->dev.kobj,
2571 &udev->dev.kobj, "device");
2572 if (err) {
2573 sysfs_remove_link(&udev->dev.kobj, "port");
2574 goto fail;
2575 }
2576
2577 if (!test_and_set_bit(port1, hub->child_usage_bits))
2578 pm_runtime_get_sync(&port_dev->dev);
2579 }
2580
2581 (void) usb_create_ep_devs(&udev->dev, &udev->ep0, udev);
2582 usb_mark_last_busy(udev);
2583 pm_runtime_put_sync_autosuspend(&udev->dev);
2584 return err;
2585
2586 fail:
2587 usb_set_device_state(udev, USB_STATE_NOTATTACHED);
2588 pm_runtime_disable(&udev->dev);
2589 pm_runtime_set_suspended(&udev->dev);
2590 return err;
2591 }
2592
2593
2594 /**
2595 * usb_deauthorize_device - deauthorize a device (usbcore-internal)
2596 * @usb_dev: USB device
2597 *
2598 * Move the USB device to a very basic state where interfaces are disabled
2599 * and the device is in fact unconfigured and unusable.
2600 *
2601 * We share a lock (that we have) with device_del(), so we need to
2602 * defer its call.
2603 *
2604 * Return: 0.
2605 */
2606 int usb_deauthorize_device(struct usb_device *usb_dev)
2607 {
2608 usb_lock_device(usb_dev);
2609 if (usb_dev->authorized == 0)
2610 goto out_unauthorized;
2611
2612 usb_dev->authorized = 0;
2613 usb_set_configuration(usb_dev, -1);
2614
2615 out_unauthorized:
2616 usb_unlock_device(usb_dev);
2617 return 0;
2618 }
2619
2620
2621 int usb_authorize_device(struct usb_device *usb_dev)
2622 {
2623 int result = 0, c;
2624
2625 usb_lock_device(usb_dev);
2626 if (usb_dev->authorized == 1)
2627 goto out_authorized;
2628
2629 result = usb_autoresume_device(usb_dev);
2630 if (result < 0) {
2631 dev_err(&usb_dev->dev,
2632 "can't autoresume for authorization: %d\n", result);
2633 goto error_autoresume;
2634 }
2635
2636 if (usb_dev->wusb) {
2637 result = usb_get_device_descriptor(usb_dev, sizeof(usb_dev->descriptor));
2638 if (result < 0) {
2639 dev_err(&usb_dev->dev, "can't re-read device descriptor for "
2640 "authorization: %d\n", result);
2641 goto error_device_descriptor;
2642 }
2643 }
2644
2645 usb_dev->authorized = 1;
2646 /* Choose and set the configuration. This registers the interfaces
2647 * with the driver core and lets interface drivers bind to them.
2648 */
2649 c = usb_choose_configuration(usb_dev);
2650 if (c >= 0) {
2651 result = usb_set_configuration(usb_dev, c);
2652 if (result) {
2653 dev_err(&usb_dev->dev,
2654 "can't set config #%d, error %d\n", c, result);
2655 /* This need not be fatal. The user can try to
2656 * set other configurations. */
2657 }
2658 }
2659 dev_info(&usb_dev->dev, "authorized to connect\n");
2660
2661 error_device_descriptor:
2662 usb_autosuspend_device(usb_dev);
2663 error_autoresume:
2664 out_authorized:
2665 usb_unlock_device(usb_dev); /* complements locktree */
2666 return result;
2667 }
2668
2669 /*
2670 * Return 1 if port speed is SuperSpeedPlus, 0 otherwise
2671 * check it from the link protocol field of the current speed ID attribute.
2672 * current speed ID is got from ext port status request. Sublink speed attribute
2673 * table is returned with the hub BOS SSP device capability descriptor
2674 */
2675 static int port_speed_is_ssp(struct usb_device *hdev, int speed_id)
2676 {
2677 int ssa_count;
2678 u32 ss_attr;
2679 int i;
2680 struct usb_ssp_cap_descriptor *ssp_cap = hdev->bos->ssp_cap;
2681
2682 if (!ssp_cap)
2683 return 0;
2684
2685 ssa_count = le32_to_cpu(ssp_cap->bmAttributes) &
2686 USB_SSP_SUBLINK_SPEED_ATTRIBS;
2687
2688 for (i = 0; i <= ssa_count; i++) {
2689 ss_attr = le32_to_cpu(ssp_cap->bmSublinkSpeedAttr[i]);
2690 if (speed_id == (ss_attr & USB_SSP_SUBLINK_SPEED_SSID))
2691 return !!(ss_attr & USB_SSP_SUBLINK_SPEED_LP);
2692 }
2693 return 0;
2694 }
2695
2696 /* Returns 1 if @hub is a WUSB root hub, 0 otherwise */
2697 static unsigned hub_is_wusb(struct usb_hub *hub)
2698 {
2699 struct usb_hcd *hcd;
2700 if (hub->hdev->parent != NULL) /* not a root hub? */
2701 return 0;
2702 hcd = bus_to_hcd(hub->hdev->bus);
2703 return hcd->wireless;
2704 }
2705
2706
2707 #define PORT_RESET_TRIES 5
2708 #define SET_ADDRESS_TRIES 2
2709 #define GET_DESCRIPTOR_TRIES 2
2710 #define SET_CONFIG_TRIES (2 * (use_both_schemes + 1))
2711 #define USE_NEW_SCHEME(i, scheme) ((i) / 2 == (int)(scheme))
2712
2713 #define HUB_ROOT_RESET_TIME 60 /* times are in msec */
2714 #define HUB_SHORT_RESET_TIME 10
2715 #define HUB_BH_RESET_TIME 50
2716 #define HUB_LONG_RESET_TIME 200
2717 #define HUB_RESET_TIMEOUT 800
2718
2719 /*
2720 * "New scheme" enumeration causes an extra state transition to be
2721 * exposed to an xhci host and causes USB3 devices to receive control
2722 * commands in the default state. This has been seen to cause
2723 * enumeration failures, so disable this enumeration scheme for USB3
2724 * devices.
2725 */
2726 static bool use_new_scheme(struct usb_device *udev, int retry,
2727 struct usb_port *port_dev)
2728 {
2729 int old_scheme_first_port =
2730 port_dev->quirks & USB_PORT_QUIRK_OLD_SCHEME;
2731 int quick_enumeration = (udev->speed == USB_SPEED_HIGH);
2732
2733 if (udev->speed >= USB_SPEED_SUPER)
2734 return false;
2735
2736 return USE_NEW_SCHEME(retry, old_scheme_first_port || old_scheme_first
2737 || quick_enumeration);
2738 }
2739
2740 /* Is a USB 3.0 port in the Inactive or Compliance Mode state?
2741 * Port warm reset is required to recover
2742 */
2743 static bool hub_port_warm_reset_required(struct usb_hub *hub, int port1,
2744 u16 portstatus)
2745 {
2746 u16 link_state;
2747
2748 if (!hub_is_superspeed(hub->hdev))
2749 return false;
2750
2751 if (test_bit(port1, hub->warm_reset_bits))
2752 return true;
2753
2754 link_state = portstatus & USB_PORT_STAT_LINK_STATE;
2755 return link_state == USB_SS_PORT_LS_SS_INACTIVE
2756 || link_state == USB_SS_PORT_LS_COMP_MOD;
2757 }
2758
2759 static int hub_port_wait_reset(struct usb_hub *hub, int port1,
2760 struct usb_device *udev, unsigned int delay, bool warm)
2761 {
2762 int delay_time, ret;
2763 u16 portstatus;
2764 u16 portchange;
2765 u32 ext_portstatus = 0;
2766
2767 for (delay_time = 0;
2768 delay_time < HUB_RESET_TIMEOUT;
2769 delay_time += delay) {
2770 /* wait to give the device a chance to reset */
2771 msleep(delay);
2772
2773 /* read and decode port status */
2774 if (hub_is_superspeedplus(hub->hdev))
2775 ret = hub_ext_port_status(hub, port1,
2776 HUB_EXT_PORT_STATUS,
2777 &portstatus, &portchange,
2778 &ext_portstatus);
2779 else
2780 ret = hub_port_status(hub, port1, &portstatus,
2781 &portchange);
2782 if (ret < 0)
2783 return ret;
2784
2785 /*
2786 * The port state is unknown until the reset completes.
2787 *
2788 * On top of that, some chips may require additional time
2789 * to re-establish a connection after the reset is complete,
2790 * so also wait for the connection to be re-established.
2791 */
2792 if (!(portstatus & USB_PORT_STAT_RESET) &&
2793 (portstatus & USB_PORT_STAT_CONNECTION))
2794 break;
2795
2796 /* switch to the long delay after two short delay failures */
2797 if (delay_time >= 2 * HUB_SHORT_RESET_TIME)
2798 delay = HUB_LONG_RESET_TIME;
2799
2800 dev_dbg(&hub->ports[port1 - 1]->dev,
2801 "not %sreset yet, waiting %dms\n",
2802 warm ? "warm " : "", delay);
2803 }
2804
2805 if ((portstatus & USB_PORT_STAT_RESET))
2806 return -EBUSY;
2807
2808 if (hub_port_warm_reset_required(hub, port1, portstatus))
2809 return -ENOTCONN;
2810
2811 /* Device went away? */
2812 if (!(portstatus & USB_PORT_STAT_CONNECTION))
2813 return -ENOTCONN;
2814
2815 /* Retry if connect change is set but status is still connected.
2816 * A USB 3.0 connection may bounce if multiple warm resets were issued,
2817 * but the device may have successfully re-connected. Ignore it.
2818 */
2819 if (!hub_is_superspeed(hub->hdev) &&
2820 (portchange & USB_PORT_STAT_C_CONNECTION)) {
2821 usb_clear_port_feature(hub->hdev, port1,
2822 USB_PORT_FEAT_C_CONNECTION);
2823 return -EAGAIN;
2824 }
2825
2826 if (!(portstatus & USB_PORT_STAT_ENABLE))
2827 return -EBUSY;
2828
2829 if (!udev)
2830 return 0;
2831
2832 if (hub_is_superspeedplus(hub->hdev)) {
2833 /* extended portstatus Rx and Tx lane count are zero based */
2834 udev->rx_lanes = USB_EXT_PORT_RX_LANES(ext_portstatus) + 1;
2835 udev->tx_lanes = USB_EXT_PORT_TX_LANES(ext_portstatus) + 1;
2836 } else {
2837 udev->rx_lanes = 1;
2838 udev->tx_lanes = 1;
2839 }
2840 if (hub_is_wusb(hub))
2841 udev->speed = USB_SPEED_WIRELESS;
2842 else if (hub_is_superspeedplus(hub->hdev) &&
2843 port_speed_is_ssp(hub->hdev, ext_portstatus &
2844 USB_EXT_PORT_STAT_RX_SPEED_ID))
2845 udev->speed = USB_SPEED_SUPER_PLUS;
2846 else if (hub_is_superspeed(hub->hdev))
2847 udev->speed = USB_SPEED_SUPER;
2848 else if (portstatus & USB_PORT_STAT_HIGH_SPEED)
2849 udev->speed = USB_SPEED_HIGH;
2850 else if (portstatus & USB_PORT_STAT_LOW_SPEED)
2851 udev->speed = USB_SPEED_LOW;
2852 else
2853 udev->speed = USB_SPEED_FULL;
2854 return 0;
2855 }
2856
2857 /* Handle port reset and port warm(BH) reset (for USB3 protocol ports) */
2858 static int hub_port_reset(struct usb_hub *hub, int port1,
2859 struct usb_device *udev, unsigned int delay, bool warm)
2860 {
2861 int i, status;
2862 u16 portchange, portstatus;
2863 struct usb_port *port_dev = hub->ports[port1 - 1];
2864 int reset_recovery_time;
2865
2866 if (!hub_is_superspeed(hub->hdev)) {
2867 if (warm) {
2868 dev_err(hub->intfdev, "only USB3 hub support "
2869 "warm reset\n");
2870 return -EINVAL;
2871 }
2872 /* Block EHCI CF initialization during the port reset.
2873 * Some companion controllers don't like it when they mix.
2874 */
2875 down_read(&ehci_cf_port_reset_rwsem);
2876 } else if (!warm) {
2877 /*
2878 * If the caller hasn't explicitly requested a warm reset,
2879 * double check and see if one is needed.
2880 */
2881 if (hub_port_status(hub, port1, &portstatus, &portchange) == 0)
2882 if (hub_port_warm_reset_required(hub, port1,
2883 portstatus))
2884 warm = true;
2885 }
2886 clear_bit(port1, hub->warm_reset_bits);
2887
2888 /* Reset the port */
2889 for (i = 0; i < PORT_RESET_TRIES; i++) {
2890 status = set_port_feature(hub->hdev, port1, (warm ?
2891 USB_PORT_FEAT_BH_PORT_RESET :
2892 USB_PORT_FEAT_RESET));
2893 if (status == -ENODEV) {
2894 ; /* The hub is gone */
2895 } else if (status) {
2896 dev_err(&port_dev->dev,
2897 "cannot %sreset (err = %d)\n",
2898 warm ? "warm " : "", status);
2899 } else {
2900 status = hub_port_wait_reset(hub, port1, udev, delay,
2901 warm);
2902 if (status && status != -ENOTCONN && status != -ENODEV)
2903 dev_dbg(hub->intfdev,
2904 "port_wait_reset: err = %d\n",
2905 status);
2906 }
2907
2908 /* Check for disconnect or reset */
2909 if (status == 0 || status == -ENOTCONN || status == -ENODEV) {
2910 usb_clear_port_feature(hub->hdev, port1,
2911 USB_PORT_FEAT_C_RESET);
2912
2913 if (!hub_is_superspeed(hub->hdev))
2914 goto done;
2915
2916 usb_clear_port_feature(hub->hdev, port1,
2917 USB_PORT_FEAT_C_BH_PORT_RESET);
2918 usb_clear_port_feature(hub->hdev, port1,
2919 USB_PORT_FEAT_C_PORT_LINK_STATE);
2920
2921 if (udev)
2922 usb_clear_port_feature(hub->hdev, port1,
2923 USB_PORT_FEAT_C_CONNECTION);
2924
2925 /*
2926 * If a USB 3.0 device migrates from reset to an error
2927 * state, re-issue the warm reset.
2928 */
2929 if (hub_port_status(hub, port1,
2930 &portstatus, &portchange) < 0)
2931 goto done;
2932
2933 if (!hub_port_warm_reset_required(hub, port1,
2934 portstatus))
2935 goto done;
2936
2937 /*
2938 * If the port is in SS.Inactive or Compliance Mode, the
2939 * hot or warm reset failed. Try another warm reset.
2940 */
2941 if (!warm) {
2942 dev_dbg(&port_dev->dev,
2943 "hot reset failed, warm reset\n");
2944 warm = true;
2945 }
2946 }
2947
2948 dev_dbg(&port_dev->dev,
2949 "not enabled, trying %sreset again...\n",
2950 warm ? "warm " : "");
2951 delay = HUB_LONG_RESET_TIME;
2952 }
2953
2954 dev_err(&port_dev->dev, "Cannot enable. Maybe the USB cable is bad?\n");
2955
2956 done:
2957 if (status == 0) {
2958 if (port_dev->quirks & USB_PORT_QUIRK_FAST_ENUM)
2959 usleep_range(10000, 12000);
2960 else {
2961 /* TRSTRCY = 10 ms; plus some extra */
2962 reset_recovery_time = 10 + 40;
2963
2964 /* Hub needs extra delay after resetting its port. */
2965 if (hub->hdev->quirks & USB_QUIRK_HUB_SLOW_RESET)
2966 reset_recovery_time += 100;
2967
2968 msleep(reset_recovery_time);
2969 }
2970
2971 if (udev) {
2972 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
2973
2974 update_devnum(udev, 0);
2975 /* The xHC may think the device is already reset,
2976 * so ignore the status.
2977 */
2978 if (hcd->driver->reset_device)
2979 hcd->driver->reset_device(hcd, udev);
2980
2981 usb_set_device_state(udev, USB_STATE_DEFAULT);
2982 }
2983 } else {
2984 if (udev)
2985 usb_set_device_state(udev, USB_STATE_NOTATTACHED);
2986 }
2987
2988 if (!hub_is_superspeed(hub->hdev))
2989 up_read(&ehci_cf_port_reset_rwsem);
2990
2991 return status;
2992 }
2993
2994 /* Check if a port is power on */
2995 static int port_is_power_on(struct usb_hub *hub, unsigned portstatus)
2996 {
2997 int ret = 0;
2998
2999 if (hub_is_superspeed(hub->hdev)) {
3000 if (portstatus & USB_SS_PORT_STAT_POWER)
3001 ret = 1;
3002 } else {
3003 if (portstatus & USB_PORT_STAT_POWER)
3004 ret = 1;
3005 }
3006
3007 return ret;
3008 }
3009
3010 static void usb_lock_port(struct usb_port *port_dev)
3011 __acquires(&port_dev->status_lock)
3012 {
3013 mutex_lock(&port_dev->status_lock);
3014 __acquire(&port_dev->status_lock);
3015 }
3016
3017 static void usb_unlock_port(struct usb_port *port_dev)
3018 __releases(&port_dev->status_lock)
3019 {
3020 mutex_unlock(&port_dev->status_lock);
3021 __release(&port_dev->status_lock);
3022 }
3023
3024 #ifdef CONFIG_PM
3025
3026 /* Check if a port is suspended(USB2.0 port) or in U3 state(USB3.0 port) */
3027 static int port_is_suspended(struct usb_hub *hub, unsigned portstatus)
3028 {
3029 int ret = 0;
3030
3031 if (hub_is_superspeed(hub->hdev)) {
3032 if ((portstatus & USB_PORT_STAT_LINK_STATE)
3033 == USB_SS_PORT_LS_U3)
3034 ret = 1;
3035 } else {
3036 if (portstatus & USB_PORT_STAT_SUSPEND)
3037 ret = 1;
3038 }
3039
3040 return ret;
3041 }
3042
3043 /* Determine whether the device on a port is ready for a normal resume,
3044 * is ready for a reset-resume, or should be disconnected.
3045 */
3046 static int check_port_resume_type(struct usb_device *udev,
3047 struct usb_hub *hub, int port1,
3048 int status, u16 portchange, u16 portstatus)
3049 {
3050 struct usb_port *port_dev = hub->ports[port1 - 1];
3051 int retries = 3;
3052
3053 retry:
3054 /* Is a warm reset needed to recover the connection? */
3055 if (status == 0 && udev->reset_resume
3056 && hub_port_warm_reset_required(hub, port1, portstatus)) {
3057 /* pass */;
3058 }
3059 /* Is the device still present? */
3060 else if (status || port_is_suspended(hub, portstatus) ||
3061 !port_is_power_on(hub, portstatus)) {
3062 if (status >= 0)
3063 status = -ENODEV;
3064 } else if (!(portstatus & USB_PORT_STAT_CONNECTION)) {
3065 if (retries--) {
3066 usleep_range(200, 300);
3067 status = hub_port_status(hub, port1, &portstatus,
3068 &portchange);
3069 goto retry;
3070 }
3071 status = -ENODEV;
3072 }
3073
3074 /* Can't do a normal resume if the port isn't enabled,
3075 * so try a reset-resume instead.
3076 */
3077 else if (!(portstatus & USB_PORT_STAT_ENABLE) && !udev->reset_resume) {
3078 if (udev->persist_enabled)
3079 udev->reset_resume = 1;
3080 else
3081 status = -ENODEV;
3082 }
3083
3084 if (status) {
3085 dev_dbg(&port_dev->dev, "status %04x.%04x after resume, %d\n",
3086 portchange, portstatus, status);
3087 } else if (udev->reset_resume) {
3088
3089 /* Late port handoff can set status-change bits */
3090 if (portchange & USB_PORT_STAT_C_CONNECTION)
3091 usb_clear_port_feature(hub->hdev, port1,
3092 USB_PORT_FEAT_C_CONNECTION);
3093 if (portchange & USB_PORT_STAT_C_ENABLE)
3094 usb_clear_port_feature(hub->hdev, port1,
3095 USB_PORT_FEAT_C_ENABLE);
3096
3097 /*
3098 * Whatever made this reset-resume necessary may have
3099 * turned on the port1 bit in hub->change_bits. But after
3100 * a successful reset-resume we want the bit to be clear;
3101 * if it was on it would indicate that something happened
3102 * following the reset-resume.
3103 */
3104 clear_bit(port1, hub->change_bits);
3105 }
3106
3107 return status;
3108 }
3109
3110 int usb_disable_ltm(struct usb_device *udev)
3111 {
3112 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
3113
3114 /* Check if the roothub and device supports LTM. */
3115 if (!usb_device_supports_ltm(hcd->self.root_hub) ||
3116 !usb_device_supports_ltm(udev))
3117 return 0;
3118
3119 /* Clear Feature LTM Enable can only be sent if the device is
3120 * configured.
3121 */
3122 if (!udev->actconfig)
3123 return 0;
3124
3125 return usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
3126 USB_REQ_CLEAR_FEATURE, USB_RECIP_DEVICE,
3127 USB_DEVICE_LTM_ENABLE, 0, NULL, 0,
3128 USB_CTRL_SET_TIMEOUT);
3129 }
3130 EXPORT_SYMBOL_GPL(usb_disable_ltm);
3131
3132 void usb_enable_ltm(struct usb_device *udev)
3133 {
3134 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
3135
3136 /* Check if the roothub and device supports LTM. */
3137 if (!usb_device_supports_ltm(hcd->self.root_hub) ||
3138 !usb_device_supports_ltm(udev))
3139 return;
3140
3141 /* Set Feature LTM Enable can only be sent if the device is
3142 * configured.
3143 */
3144 if (!udev->actconfig)
3145 return;
3146
3147 usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
3148 USB_REQ_SET_FEATURE, USB_RECIP_DEVICE,
3149 USB_DEVICE_LTM_ENABLE, 0, NULL, 0,
3150 USB_CTRL_SET_TIMEOUT);
3151 }
3152 EXPORT_SYMBOL_GPL(usb_enable_ltm);
3153
3154 /*
3155 * usb_enable_remote_wakeup - enable remote wakeup for a device
3156 * @udev: target device
3157 *
3158 * For USB-2 devices: Set the device's remote wakeup feature.
3159 *
3160 * For USB-3 devices: Assume there's only one function on the device and
3161 * enable remote wake for the first interface. FIXME if the interface
3162 * association descriptor shows there's more than one function.
3163 */
3164 static int usb_enable_remote_wakeup(struct usb_device *udev)
3165 {
3166 if (udev->speed < USB_SPEED_SUPER)
3167 return usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
3168 USB_REQ_SET_FEATURE, USB_RECIP_DEVICE,
3169 USB_DEVICE_REMOTE_WAKEUP, 0, NULL, 0,
3170 USB_CTRL_SET_TIMEOUT);
3171 else
3172 return usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
3173 USB_REQ_SET_FEATURE, USB_RECIP_INTERFACE,
3174 USB_INTRF_FUNC_SUSPEND,
3175 USB_INTRF_FUNC_SUSPEND_RW |
3176 USB_INTRF_FUNC_SUSPEND_LP,
3177 NULL, 0, USB_CTRL_SET_TIMEOUT);
3178 }
3179
3180 /*
3181 * usb_disable_remote_wakeup - disable remote wakeup for a device
3182 * @udev: target device
3183 *
3184 * For USB-2 devices: Clear the device's remote wakeup feature.
3185 *
3186 * For USB-3 devices: Assume there's only one function on the device and
3187 * disable remote wake for the first interface. FIXME if the interface
3188 * association descriptor shows there's more than one function.
3189 */
3190 static int usb_disable_remote_wakeup(struct usb_device *udev)
3191 {
3192 if (udev->speed < USB_SPEED_SUPER)
3193 return usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
3194 USB_REQ_CLEAR_FEATURE, USB_RECIP_DEVICE,
3195 USB_DEVICE_REMOTE_WAKEUP, 0, NULL, 0,
3196 USB_CTRL_SET_TIMEOUT);
3197 else
3198 return usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
3199 USB_REQ_SET_FEATURE, USB_RECIP_INTERFACE,
3200 USB_INTRF_FUNC_SUSPEND, 0, NULL, 0,
3201 USB_CTRL_SET_TIMEOUT);
3202 }
3203
3204 /* Count of wakeup-enabled devices at or below udev */
3205 unsigned usb_wakeup_enabled_descendants(struct usb_device *udev)
3206 {
3207 struct usb_hub *hub = usb_hub_to_struct_hub(udev);
3208
3209 return udev->do_remote_wakeup +
3210 (hub ? hub->wakeup_enabled_descendants : 0);
3211 }
3212 EXPORT_SYMBOL_GPL(usb_wakeup_enabled_descendants);
3213
3214 /*
3215 * usb_port_suspend - suspend a usb device's upstream port
3216 * @udev: device that's no longer in active use, not a root hub
3217 * Context: must be able to sleep; device not locked; pm locks held
3218 *
3219 * Suspends a USB device that isn't in active use, conserving power.
3220 * Devices may wake out of a suspend, if anything important happens,
3221 * using the remote wakeup mechanism. They may also be taken out of
3222 * suspend by the host, using usb_port_resume(). It's also routine
3223 * to disconnect devices while they are suspended.
3224 *
3225 * This only affects the USB hardware for a device; its interfaces
3226 * (and, for hubs, child devices) must already have been suspended.
3227 *
3228 * Selective port suspend reduces power; most suspended devices draw
3229 * less than 500 uA. It's also used in OTG, along with remote wakeup.
3230 * All devices below the suspended port are also suspended.
3231 *
3232 * Devices leave suspend state when the host wakes them up. Some devices
3233 * also support "remote wakeup", where the device can activate the USB
3234 * tree above them to deliver data, such as a keypress or packet. In
3235 * some cases, this wakes the USB host.
3236 *
3237 * Suspending OTG devices may trigger HNP, if that's been enabled
3238 * between a pair of dual-role devices. That will change roles, such
3239 * as from A-Host to A-Peripheral or from B-Host back to B-Peripheral.
3240 *
3241 * Devices on USB hub ports have only one "suspend" state, corresponding
3242 * to ACPI D2, "may cause the device to lose some context".
3243 * State transitions include:
3244 *
3245 * - suspend, resume ... when the VBUS power link stays live
3246 * - suspend, disconnect ... VBUS lost
3247 *
3248 * Once VBUS drop breaks the circuit, the port it's using has to go through
3249 * normal re-enumeration procedures, starting with enabling VBUS power.
3250 * Other than re-initializing the hub (plug/unplug, except for root hubs),
3251 * Linux (2.6) currently has NO mechanisms to initiate that: no hub_wq
3252 * timer, no SRP, no requests through sysfs.
3253 *
3254 * If Runtime PM isn't enabled or used, non-SuperSpeed devices may not get
3255 * suspended until their bus goes into global suspend (i.e., the root
3256 * hub is suspended). Nevertheless, we change @udev->state to
3257 * USB_STATE_SUSPENDED as this is the device's "logical" state. The actual
3258 * upstream port setting is stored in @udev->port_is_suspended.
3259 *
3260 * Returns 0 on success, else negative errno.
3261 */
3262 int usb_port_suspend(struct usb_device *udev, pm_message_t msg)
3263 {
3264 struct usb_hub *hub = usb_hub_to_struct_hub(udev->parent);
3265 struct usb_port *port_dev = hub->ports[udev->portnum - 1];
3266 int port1 = udev->portnum;
3267 int status;
3268 bool really_suspend = true;
3269
3270 usb_lock_port(port_dev);
3271
3272 /* enable remote wakeup when appropriate; this lets the device
3273 * wake up the upstream hub (including maybe the root hub).
3274 *
3275 * NOTE: OTG devices may issue remote wakeup (or SRP) even when
3276 * we don't explicitly enable it here.
3277 */
3278 if (udev->do_remote_wakeup) {
3279 status = usb_enable_remote_wakeup(udev);
3280 if (status) {
3281 dev_dbg(&udev->dev, "won't remote wakeup, status %d\n",
3282 status);
3283 /* bail if autosuspend is requested */
3284 if (PMSG_IS_AUTO(msg))
3285 goto err_wakeup;
3286 }
3287 }
3288
3289 /* disable USB2 hardware LPM */
3290 usb_disable_usb2_hardware_lpm(udev);
3291
3292 if (usb_disable_ltm(udev)) {
3293 dev_err(&udev->dev, "Failed to disable LTM before suspend\n");
3294 status = -ENOMEM;
3295 if (PMSG_IS_AUTO(msg))
3296 goto err_ltm;
3297 }
3298
3299 /* see 7.1.7.6 */
3300 if (hub_is_superspeed(hub->hdev))
3301 status = hub_set_port_link_state(hub, port1, USB_SS_PORT_LS_U3);
3302
3303 /*
3304 * For system suspend, we do not need to enable the suspend feature
3305 * on individual USB-2 ports. The devices will automatically go
3306 * into suspend a few ms after the root hub stops sending packets.
3307 * The USB 2.0 spec calls this "global suspend".
3308 *
3309 * However, many USB hubs have a bug: They don't relay wakeup requests
3310 * from a downstream port if the port's suspend feature isn't on.
3311 * Therefore we will turn on the suspend feature if udev or any of its
3312 * descendants is enabled for remote wakeup.
3313 */
3314 else if (PMSG_IS_AUTO(msg) || usb_wakeup_enabled_descendants(udev) > 0)
3315 status = set_port_feature(hub->hdev, port1,
3316 USB_PORT_FEAT_SUSPEND);
3317 else {
3318 really_suspend = false;
3319 status = 0;
3320 }
3321 if (status) {
3322 dev_dbg(&port_dev->dev, "can't suspend, status %d\n", status);
3323
3324 /* Try to enable USB3 LTM again */
3325 usb_enable_ltm(udev);
3326 err_ltm:
3327 /* Try to enable USB2 hardware LPM again */
3328 usb_enable_usb2_hardware_lpm(udev);
3329
3330 if (udev->do_remote_wakeup)
3331 (void) usb_disable_remote_wakeup(udev);
3332 err_wakeup:
3333
3334 /* System sleep transitions should never fail */
3335 if (!PMSG_IS_AUTO(msg))
3336 status = 0;
3337 } else {
3338 dev_dbg(&udev->dev, "usb %ssuspend, wakeup %d\n",
3339 (PMSG_IS_AUTO(msg) ? "auto-" : ""),
3340 udev->do_remote_wakeup);
3341 if (really_suspend) {
3342 udev->port_is_suspended = 1;
3343
3344 /* device has up to 10 msec to fully suspend */
3345 msleep(10);
3346 }
3347 usb_set_device_state(udev, USB_STATE_SUSPENDED);
3348 }
3349
3350 if (status == 0 && !udev->do_remote_wakeup && udev->persist_enabled
3351 && test_and_clear_bit(port1, hub->child_usage_bits))
3352 pm_runtime_put_sync(&port_dev->dev);
3353
3354 usb_mark_last_busy(hub->hdev);
3355
3356 usb_unlock_port(port_dev);
3357 return status;
3358 }
3359
3360 /*
3361 * If the USB "suspend" state is in use (rather than "global suspend"),
3362 * many devices will be individually taken out of suspend state using
3363 * special "resume" signaling. This routine kicks in shortly after
3364 * hardware resume signaling is finished, either because of selective
3365 * resume (by host) or remote wakeup (by device) ... now see what changed
3366 * in the tree that's rooted at this device.
3367 *
3368 * If @udev->reset_resume is set then the device is reset before the
3369 * status check is done.
3370 */
3371 static int finish_port_resume(struct usb_device *udev)
3372 {
3373 int status = 0;
3374 u16 devstatus = 0;
3375
3376 /* caller owns the udev device lock */
3377 dev_dbg(&udev->dev, "%s\n",
3378 udev->reset_resume ? "finish reset-resume" : "finish resume");
3379
3380 /* usb ch9 identifies four variants of SUSPENDED, based on what
3381 * state the device resumes to. Linux currently won't see the
3382 * first two on the host side; they'd be inside hub_port_init()
3383 * during many timeouts, but hub_wq can't suspend until later.
3384 */
3385 usb_set_device_state(udev, udev->actconfig
3386 ? USB_STATE_CONFIGURED
3387 : USB_STATE_ADDRESS);
3388
3389 /* 10.5.4.5 says not to reset a suspended port if the attached
3390 * device is enabled for remote wakeup. Hence the reset
3391 * operation is carried out here, after the port has been
3392 * resumed.
3393 */
3394 if (udev->reset_resume) {
3395 /*
3396 * If the device morphs or switches modes when it is reset,
3397 * we don't want to perform a reset-resume. We'll fail the
3398 * resume, which will cause a logical disconnect, and then
3399 * the device will be rediscovered.
3400 */
3401 retry_reset_resume:
3402 if (udev->quirks & USB_QUIRK_RESET)
3403 status = -ENODEV;
3404 else
3405 status = usb_reset_and_verify_device(udev);
3406 }
3407
3408 /* 10.5.4.5 says be sure devices in the tree are still there.
3409 * For now let's assume the device didn't go crazy on resume,
3410 * and device drivers will know about any resume quirks.
3411 */
3412 if (status == 0) {
3413 devstatus = 0;
3414 status = usb_get_std_status(udev, USB_RECIP_DEVICE, 0, &devstatus);
3415
3416 /* If a normal resume failed, try doing a reset-resume */
3417 if (status && !udev->reset_resume && udev->persist_enabled) {
3418 dev_dbg(&udev->dev, "retry with reset-resume\n");
3419 udev->reset_resume = 1;
3420 goto retry_reset_resume;
3421 }
3422 }
3423
3424 if (status) {
3425 dev_dbg(&udev->dev, "gone after usb resume? status %d\n",
3426 status);
3427 /*
3428 * There are a few quirky devices which violate the standard
3429 * by claiming to have remote wakeup enabled after a reset,
3430 * which crash if the feature is cleared, hence check for
3431 * udev->reset_resume
3432 */
3433 } else if (udev->actconfig && !udev->reset_resume) {
3434 if (udev->speed < USB_SPEED_SUPER) {
3435 if (devstatus & (1 << USB_DEVICE_REMOTE_WAKEUP))
3436 status = usb_disable_remote_wakeup(udev);
3437 } else {
3438 status = usb_get_std_status(udev, USB_RECIP_INTERFACE, 0,
3439 &devstatus);
3440 if (!status && devstatus & (USB_INTRF_STAT_FUNC_RW_CAP
3441 | USB_INTRF_STAT_FUNC_RW))
3442 status = usb_disable_remote_wakeup(udev);
3443 }
3444
3445 if (status)
3446 dev_dbg(&udev->dev,
3447 "disable remote wakeup, status %d\n",
3448 status);
3449 status = 0;
3450 }
3451 return status;
3452 }
3453
3454 /*
3455 * There are some SS USB devices which take longer time for link training.
3456 * XHCI specs 4.19.4 says that when Link training is successful, port
3457 * sets CCS bit to 1. So if SW reads port status before successful link
3458 * training, then it will not find device to be present.
3459 * USB Analyzer log with such buggy devices show that in some cases
3460 * device switch on the RX termination after long delay of host enabling
3461 * the VBUS. In few other cases it has been seen that device fails to
3462 * negotiate link training in first attempt. It has been
3463 * reported till now that few devices take as long as 2000 ms to train
3464 * the link after host enabling its VBUS and termination. Following
3465 * routine implements a 2000 ms timeout for link training. If in a case
3466 * link trains before timeout, loop will exit earlier.
3467 *
3468 * There are also some 2.0 hard drive based devices and 3.0 thumb
3469 * drives that, when plugged into a 2.0 only port, take a long
3470 * time to set CCS after VBUS enable.
3471 *
3472 * FIXME: If a device was connected before suspend, but was removed
3473 * while system was asleep, then the loop in the following routine will
3474 * only exit at timeout.
3475 *
3476 * This routine should only be called when persist is enabled.
3477 */
3478 static int wait_for_connected(struct usb_device *udev,
3479 struct usb_hub *hub, int *port1,
3480 u16 *portchange, u16 *portstatus)
3481 {
3482 int status = 0, delay_ms = 0;
3483
3484 while (delay_ms < 2000) {
3485 if (status || *portstatus & USB_PORT_STAT_CONNECTION)
3486 break;
3487 if (!port_is_power_on(hub, *portstatus)) {
3488 status = -ENODEV;
3489 break;
3490 }
3491 msleep(20);
3492 delay_ms += 20;
3493 status = hub_port_status(hub, *port1, portstatus, portchange);
3494 }
3495 dev_dbg(&udev->dev, "Waited %dms for CONNECT\n", delay_ms);
3496 return status;
3497 }
3498
3499 /*
3500 * usb_port_resume - re-activate a suspended usb device's upstream port
3501 * @udev: device to re-activate, not a root hub
3502 * Context: must be able to sleep; device not locked; pm locks held
3503 *
3504 * This will re-activate the suspended device, increasing power usage
3505 * while letting drivers communicate again with its endpoints.
3506 * USB resume explicitly guarantees that the power session between
3507 * the host and the device is the same as it was when the device
3508 * suspended.
3509 *
3510 * If @udev->reset_resume is set then this routine won't check that the
3511 * port is still enabled. Furthermore, finish_port_resume() above will
3512 * reset @udev. The end result is that a broken power session can be
3513 * recovered and @udev will appear to persist across a loss of VBUS power.
3514 *
3515 * For example, if a host controller doesn't maintain VBUS suspend current
3516 * during a system sleep or is reset when the system wakes up, all the USB
3517 * power sessions below it will be broken. This is especially troublesome
3518 * for mass-storage devices containing mounted filesystems, since the
3519 * device will appear to have disconnected and all the memory mappings
3520 * to it will be lost. Using the USB_PERSIST facility, the device can be
3521 * made to appear as if it had not disconnected.
3522 *
3523 * This facility can be dangerous. Although usb_reset_and_verify_device() makes
3524 * every effort to insure that the same device is present after the
3525 * reset as before, it cannot provide a 100% guarantee. Furthermore it's
3526 * quite possible for a device to remain unaltered but its media to be
3527 * changed. If the user replaces a flash memory card while the system is
3528 * asleep, he will have only himself to blame when the filesystem on the
3529 * new card is corrupted and the system crashes.
3530 *
3531 * Returns 0 on success, else negative errno.
3532 */
3533 int usb_port_resume(struct usb_device *udev, pm_message_t msg)
3534 {
3535 struct usb_hub *hub = usb_hub_to_struct_hub(udev->parent);
3536 struct usb_port *port_dev = hub->ports[udev->portnum - 1];
3537 int port1 = udev->portnum;
3538 int status;
3539 u16 portchange, portstatus;
3540
3541 if (!test_and_set_bit(port1, hub->child_usage_bits)) {
3542 status = pm_runtime_get_sync(&port_dev->dev);
3543 if (status < 0) {
3544 dev_dbg(&udev->dev, "can't resume usb port, status %d\n",
3545 status);
3546 return status;
3547 }
3548 }
3549
3550 usb_lock_port(port_dev);
3551
3552 /* Skip the initial Clear-Suspend step for a remote wakeup */
3553 status = hub_port_status(hub, port1, &portstatus, &portchange);
3554 if (status == 0 && !port_is_suspended(hub, portstatus)) {
3555 if (portchange & USB_PORT_STAT_C_SUSPEND)
3556 pm_wakeup_event(&udev->dev, 0);
3557 goto SuspendCleared;
3558 }
3559
3560 /* see 7.1.7.7; affects power usage, but not budgeting */
3561 if (hub_is_superspeed(hub->hdev))
3562 status = hub_set_port_link_state(hub, port1, USB_SS_PORT_LS_U0);
3563 else
3564 status = usb_clear_port_feature(hub->hdev,
3565 port1, USB_PORT_FEAT_SUSPEND);
3566 if (status) {
3567 dev_dbg(&port_dev->dev, "can't resume, status %d\n", status);
3568 } else {
3569 /* drive resume for USB_RESUME_TIMEOUT msec */
3570 dev_dbg(&udev->dev, "usb %sresume\n",
3571 (PMSG_IS_AUTO(msg) ? "auto-" : ""));
3572 msleep(USB_RESUME_TIMEOUT);
3573
3574 /* Virtual root hubs can trigger on GET_PORT_STATUS to
3575 * stop resume signaling. Then finish the resume
3576 * sequence.
3577 */
3578 status = hub_port_status(hub, port1, &portstatus, &portchange);
3579
3580 /* TRSMRCY = 10 msec */
3581 msleep(10);
3582 }
3583
3584 SuspendCleared:
3585 if (status == 0) {
3586 udev->port_is_suspended = 0;
3587 if (hub_is_superspeed(hub->hdev)) {
3588 if (portchange & USB_PORT_STAT_C_LINK_STATE)
3589 usb_clear_port_feature(hub->hdev, port1,
3590 USB_PORT_FEAT_C_PORT_LINK_STATE);
3591 } else {
3592 if (portchange & USB_PORT_STAT_C_SUSPEND)
3593 usb_clear_port_feature(hub->hdev, port1,
3594 USB_PORT_FEAT_C_SUSPEND);
3595 }
3596 }
3597
3598 if (udev->persist_enabled)
3599 status = wait_for_connected(udev, hub, &port1, &portchange,
3600 &portstatus);
3601
3602 status = check_port_resume_type(udev,
3603 hub, port1, status, portchange, portstatus);
3604 if (status == 0)
3605 status = finish_port_resume(udev);
3606 if (status < 0) {
3607 dev_dbg(&udev->dev, "can't resume, status %d\n", status);
3608 hub_port_logical_disconnect(hub, port1);
3609 } else {
3610 /* Try to enable USB2 hardware LPM */
3611 usb_enable_usb2_hardware_lpm(udev);
3612
3613 /* Try to enable USB3 LTM */
3614 usb_enable_ltm(udev);
3615 }
3616
3617 usb_unlock_port(port_dev);
3618
3619 return status;
3620 }
3621
3622 int usb_remote_wakeup(struct usb_device *udev)
3623 {
3624 int status = 0;
3625
3626 usb_lock_device(udev);
3627 if (udev->state == USB_STATE_SUSPENDED) {
3628 dev_dbg(&udev->dev, "usb %sresume\n", "wakeup-");
3629 status = usb_autoresume_device(udev);
3630 if (status == 0) {
3631 /* Let the drivers do their thing, then... */
3632 usb_autosuspend_device(udev);
3633 }
3634 }
3635 usb_unlock_device(udev);
3636 return status;
3637 }
3638
3639 /* Returns 1 if there was a remote wakeup and a connect status change. */
3640 static int hub_handle_remote_wakeup(struct usb_hub *hub, unsigned int port,
3641 u16 portstatus, u16 portchange)
3642 __must_hold(&port_dev->status_lock)
3643 {
3644 struct usb_port *port_dev = hub->ports[port - 1];
3645 struct usb_device *hdev;
3646 struct usb_device *udev;
3647 int connect_change = 0;
3648 u16 link_state;
3649 int ret;
3650
3651 hdev = hub->hdev;
3652 udev = port_dev->child;
3653 if (!hub_is_superspeed(hdev)) {
3654 if (!(portchange & USB_PORT_STAT_C_SUSPEND))
3655 return 0;
3656 usb_clear_port_feature(hdev, port, USB_PORT_FEAT_C_SUSPEND);
3657 } else {
3658 link_state = portstatus & USB_PORT_STAT_LINK_STATE;
3659 if (!udev || udev->state != USB_STATE_SUSPENDED ||
3660 (link_state != USB_SS_PORT_LS_U0 &&
3661 link_state != USB_SS_PORT_LS_U1 &&
3662 link_state != USB_SS_PORT_LS_U2))
3663 return 0;
3664 }
3665
3666 if (udev) {
3667 /* TRSMRCY = 10 msec */
3668 msleep(10);
3669
3670 usb_unlock_port(port_dev);
3671 ret = usb_remote_wakeup(udev);
3672 usb_lock_port(port_dev);
3673 if (ret < 0)
3674 connect_change = 1;
3675 } else {
3676 ret = -ENODEV;
3677 hub_port_disable(hub, port, 1);
3678 }
3679 dev_dbg(&port_dev->dev, "resume, status %d\n", ret);
3680 return connect_change;
3681 }
3682
3683 static int check_ports_changed(struct usb_hub *hub)
3684 {
3685 int port1;
3686
3687 for (port1 = 1; port1 <= hub->hdev->maxchild; ++port1) {
3688 u16 portstatus, portchange;
3689 int status;
3690
3691 status = hub_port_status(hub, port1, &portstatus, &portchange);
3692 if (!status && portchange)
3693 return 1;
3694 }
3695 return 0;
3696 }
3697
3698 static int hub_suspend(struct usb_interface *intf, pm_message_t msg)
3699 {
3700 struct usb_hub *hub = usb_get_intfdata(intf);
3701 struct usb_device *hdev = hub->hdev;
3702 unsigned port1;
3703
3704 /*
3705 * Warn if children aren't already suspended.
3706 * Also, add up the number of wakeup-enabled descendants.
3707 */
3708 hub->wakeup_enabled_descendants = 0;
3709 for (port1 = 1; port1 <= hdev->maxchild; port1++) {
3710 struct usb_port *port_dev = hub->ports[port1 - 1];
3711 struct usb_device *udev = port_dev->child;
3712
3713 if (udev && udev->can_submit) {
3714 dev_warn(&port_dev->dev, "device %s not suspended yet\n",
3715 dev_name(&udev->dev));
3716 if (PMSG_IS_AUTO(msg))
3717 return -EBUSY;
3718 }
3719 if (udev)
3720 hub->wakeup_enabled_descendants +=
3721 usb_wakeup_enabled_descendants(udev);
3722 }
3723
3724 if (hdev->do_remote_wakeup && hub->quirk_check_port_auto_suspend) {
3725 /* check if there are changes pending on hub ports */
3726 if (check_ports_changed(hub)) {
3727 if (PMSG_IS_AUTO(msg))
3728 return -EBUSY;
3729 pm_wakeup_event(&hdev->dev, 2000);
3730 }
3731 }
3732
3733 if (hub_is_superspeed(hdev) && hdev->do_remote_wakeup) {
3734 /* Enable hub to send remote wakeup for all ports. */
3735 for (port1 = 1; port1 <= hdev->maxchild; port1++) {
3736 set_port_feature(hdev,
3737 port1 |
3738 USB_PORT_FEAT_REMOTE_WAKE_CONNECT |
3739 USB_PORT_FEAT_REMOTE_WAKE_DISCONNECT |
3740 USB_PORT_FEAT_REMOTE_WAKE_OVER_CURRENT,
3741 USB_PORT_FEAT_REMOTE_WAKE_MASK);
3742 }
3743 }
3744
3745 dev_dbg(&intf->dev, "%s\n", __func__);
3746
3747 /* stop hub_wq and related activity */
3748 hub_quiesce(hub, HUB_SUSPEND);
3749 return 0;
3750 }
3751
3752 /* Report wakeup requests from the ports of a resuming root hub */
3753 static void report_wakeup_requests(struct usb_hub *hub)
3754 {
3755 struct usb_device *hdev = hub->hdev;
3756 struct usb_device *udev;
3757 struct usb_hcd *hcd;
3758 unsigned long resuming_ports;
3759 int i;
3760
3761 if (hdev->parent)
3762 return; /* Not a root hub */
3763
3764 hcd = bus_to_hcd(hdev->bus);
3765 if (hcd->driver->get_resuming_ports) {
3766
3767 /*
3768 * The get_resuming_ports() method returns a bitmap (origin 0)
3769 * of ports which have started wakeup signaling but have not
3770 * yet finished resuming. During system resume we will
3771 * resume all the enabled ports, regardless of any wakeup
3772 * signals, which means the wakeup requests would be lost.
3773 * To prevent this, report them to the PM core here.
3774 */
3775 resuming_ports = hcd->driver->get_resuming_ports(hcd);
3776 for (i = 0; i < hdev->maxchild; ++i) {
3777 if (test_bit(i, &resuming_ports)) {
3778 udev = hub->ports[i]->child;
3779 if (udev)
3780 pm_wakeup_event(&udev->dev, 0);
3781 }
3782 }
3783 }
3784 }
3785
3786 static int hub_resume(struct usb_interface *intf)
3787 {
3788 struct usb_hub *hub = usb_get_intfdata(intf);
3789
3790 dev_dbg(&intf->dev, "%s\n", __func__);
3791 hub_activate(hub, HUB_RESUME);
3792
3793 /*
3794 * This should be called only for system resume, not runtime resume.
3795 * We can't tell the difference here, so some wakeup requests will be
3796 * reported at the wrong time or more than once. This shouldn't
3797 * matter much, so long as they do get reported.
3798 */
3799 report_wakeup_requests(hub);
3800 return 0;
3801 }
3802
3803 static int hub_reset_resume(struct usb_interface *intf)
3804 {
3805 struct usb_hub *hub = usb_get_intfdata(intf);
3806
3807 dev_dbg(&intf->dev, "%s\n", __func__);
3808 hub_activate(hub, HUB_RESET_RESUME);
3809 return 0;
3810 }
3811
3812 /**
3813 * usb_root_hub_lost_power - called by HCD if the root hub lost Vbus power
3814 * @rhdev: struct usb_device for the root hub
3815 *
3816 * The USB host controller driver calls this function when its root hub
3817 * is resumed and Vbus power has been interrupted or the controller
3818 * has been reset. The routine marks @rhdev as having lost power.
3819 * When the hub driver is resumed it will take notice and carry out
3820 * power-session recovery for all the "USB-PERSIST"-enabled child devices;
3821 * the others will be disconnected.
3822 */
3823 void usb_root_hub_lost_power(struct usb_device *rhdev)
3824 {
3825 dev_notice(&rhdev->dev, "root hub lost power or was reset\n");
3826 rhdev->reset_resume = 1;
3827 }
3828 EXPORT_SYMBOL_GPL(usb_root_hub_lost_power);
3829
3830 static const char * const usb3_lpm_names[] = {
3831 "U0",
3832 "U1",
3833 "U2",
3834 "U3",
3835 };
3836
3837 /*
3838 * Send a Set SEL control transfer to the device, prior to enabling
3839 * device-initiated U1 or U2. This lets the device know the exit latencies from
3840 * the time the device initiates a U1 or U2 exit, to the time it will receive a
3841 * packet from the host.
3842 *
3843 * This function will fail if the SEL or PEL values for udev are greater than
3844 * the maximum allowed values for the link state to be enabled.
3845 */
3846 static int usb_req_set_sel(struct usb_device *udev, enum usb3_link_state state)
3847 {
3848 struct usb_set_sel_req *sel_values;
3849 unsigned long long u1_sel;
3850 unsigned long long u1_pel;
3851 unsigned long long u2_sel;
3852 unsigned long long u2_pel;
3853 int ret;
3854
3855 if (udev->state != USB_STATE_CONFIGURED)
3856 return 0;
3857
3858 /* Convert SEL and PEL stored in ns to us */
3859 u1_sel = DIV_ROUND_UP(udev->u1_params.sel, 1000);
3860 u1_pel = DIV_ROUND_UP(udev->u1_params.pel, 1000);
3861 u2_sel = DIV_ROUND_UP(udev->u2_params.sel, 1000);
3862 u2_pel = DIV_ROUND_UP(udev->u2_params.pel, 1000);
3863
3864 /*
3865 * Make sure that the calculated SEL and PEL values for the link
3866 * state we're enabling aren't bigger than the max SEL/PEL
3867 * value that will fit in the SET SEL control transfer.
3868 * Otherwise the device would get an incorrect idea of the exit
3869 * latency for the link state, and could start a device-initiated
3870 * U1/U2 when the exit latencies are too high.
3871 */
3872 if ((state == USB3_LPM_U1 &&
3873 (u1_sel > USB3_LPM_MAX_U1_SEL_PEL ||
3874 u1_pel > USB3_LPM_MAX_U1_SEL_PEL)) ||
3875 (state == USB3_LPM_U2 &&
3876 (u2_sel > USB3_LPM_MAX_U2_SEL_PEL ||
3877 u2_pel > USB3_LPM_MAX_U2_SEL_PEL))) {
3878 dev_dbg(&udev->dev, "Device-initiated %s disabled due to long SEL %llu us or PEL %llu us\n",
3879 usb3_lpm_names[state], u1_sel, u1_pel);
3880 return -EINVAL;
3881 }
3882
3883 /*
3884 * If we're enabling device-initiated LPM for one link state,
3885 * but the other link state has a too high SEL or PEL value,
3886 * just set those values to the max in the Set SEL request.
3887 */
3888 if (u1_sel > USB3_LPM_MAX_U1_SEL_PEL)
3889 u1_sel = USB3_LPM_MAX_U1_SEL_PEL;
3890
3891 if (u1_pel > USB3_LPM_MAX_U1_SEL_PEL)
3892 u1_pel = USB3_LPM_MAX_U1_SEL_PEL;
3893
3894 if (u2_sel > USB3_LPM_MAX_U2_SEL_PEL)
3895 u2_sel = USB3_LPM_MAX_U2_SEL_PEL;
3896
3897 if (u2_pel > USB3_LPM_MAX_U2_SEL_PEL)
3898 u2_pel = USB3_LPM_MAX_U2_SEL_PEL;
3899
3900 /*
3901 * usb_enable_lpm() can be called as part of a failed device reset,
3902 * which may be initiated by an error path of a mass storage driver.
3903 * Therefore, use GFP_NOIO.
3904 */
3905 sel_values = kmalloc(sizeof *(sel_values), GFP_NOIO);
3906 if (!sel_values)
3907 return -ENOMEM;
3908
3909 sel_values->u1_sel = u1_sel;
3910 sel_values->u1_pel = u1_pel;
3911 sel_values->u2_sel = cpu_to_le16(u2_sel);
3912 sel_values->u2_pel = cpu_to_le16(u2_pel);
3913
3914 ret = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
3915 USB_REQ_SET_SEL,
3916 USB_RECIP_DEVICE,
3917 0, 0,
3918 sel_values, sizeof *(sel_values),
3919 USB_CTRL_SET_TIMEOUT);
3920 kfree(sel_values);
3921 return ret;
3922 }
3923
3924 /*
3925 * Enable or disable device-initiated U1 or U2 transitions.
3926 */
3927 static int usb_set_device_initiated_lpm(struct usb_device *udev,
3928 enum usb3_link_state state, bool enable)
3929 {
3930 int ret;
3931 int feature;
3932
3933 switch (state) {
3934 case USB3_LPM_U1:
3935 feature = USB_DEVICE_U1_ENABLE;
3936 break;
3937 case USB3_LPM_U2:
3938 feature = USB_DEVICE_U2_ENABLE;
3939 break;
3940 default:
3941 dev_warn(&udev->dev, "%s: Can't %s non-U1 or U2 state.\n",
3942 __func__, enable ? "enable" : "disable");
3943 return -EINVAL;
3944 }
3945
3946 if (udev->state != USB_STATE_CONFIGURED) {
3947 dev_dbg(&udev->dev, "%s: Can't %s %s state "
3948 "for unconfigured device.\n",
3949 __func__, enable ? "enable" : "disable",
3950 usb3_lpm_names[state]);
3951 return 0;
3952 }
3953
3954 if (enable) {
3955 /*
3956 * Now send the control transfer to enable device-initiated LPM
3957 * for either U1 or U2.
3958 */
3959 ret = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
3960 USB_REQ_SET_FEATURE,
3961 USB_RECIP_DEVICE,
3962 feature,
3963 0, NULL, 0,
3964 USB_CTRL_SET_TIMEOUT);
3965 } else {
3966 ret = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
3967 USB_REQ_CLEAR_FEATURE,
3968 USB_RECIP_DEVICE,
3969 feature,
3970 0, NULL, 0,
3971 USB_CTRL_SET_TIMEOUT);
3972 }
3973 if (ret < 0) {
3974 dev_warn(&udev->dev, "%s of device-initiated %s failed.\n",
3975 enable ? "Enable" : "Disable",
3976 usb3_lpm_names[state]);
3977 return -EBUSY;
3978 }
3979 return 0;
3980 }
3981
3982 static int usb_set_lpm_timeout(struct usb_device *udev,
3983 enum usb3_link_state state, int timeout)
3984 {
3985 int ret;
3986 int feature;
3987
3988 switch (state) {
3989 case USB3_LPM_U1:
3990 feature = USB_PORT_FEAT_U1_TIMEOUT;
3991 break;
3992 case USB3_LPM_U2:
3993 feature = USB_PORT_FEAT_U2_TIMEOUT;
3994 break;
3995 default:
3996 dev_warn(&udev->dev, "%s: Can't set timeout for non-U1 or U2 state.\n",
3997 __func__);
3998 return -EINVAL;
3999 }
4000
4001 if (state == USB3_LPM_U1 && timeout > USB3_LPM_U1_MAX_TIMEOUT &&
4002 timeout != USB3_LPM_DEVICE_INITIATED) {
4003 dev_warn(&udev->dev, "Failed to set %s timeout to 0x%x, "
4004 "which is a reserved value.\n",
4005 usb3_lpm_names[state], timeout);
4006 return -EINVAL;
4007 }
4008
4009 ret = set_port_feature(udev->parent,
4010 USB_PORT_LPM_TIMEOUT(timeout) | udev->portnum,
4011 feature);
4012 if (ret < 0) {
4013 dev_warn(&udev->dev, "Failed to set %s timeout to 0x%x,"
4014 "error code %i\n", usb3_lpm_names[state],
4015 timeout, ret);
4016 return -EBUSY;
4017 }
4018 if (state == USB3_LPM_U1)
4019 udev->u1_params.timeout = timeout;
4020 else
4021 udev->u2_params.timeout = timeout;
4022 return 0;
4023 }
4024
4025 /*
4026 * Enable the hub-initiated U1/U2 idle timeouts, and enable device-initiated
4027 * U1/U2 entry.
4028 *
4029 * We will attempt to enable U1 or U2, but there are no guarantees that the
4030 * control transfers to set the hub timeout or enable device-initiated U1/U2
4031 * will be successful.
4032 *
4033 * If the control transfer to enable device-initiated U1/U2 entry fails, then
4034 * hub-initiated U1/U2 will be disabled.
4035 *
4036 * If we cannot set the parent hub U1/U2 timeout, we attempt to let the xHCI
4037 * driver know about it. If that call fails, it should be harmless, and just
4038 * take up more slightly more bus bandwidth for unnecessary U1/U2 exit latency.
4039 */
4040 static void usb_enable_link_state(struct usb_hcd *hcd, struct usb_device *udev,
4041 enum usb3_link_state state)
4042 {
4043 int timeout, ret;
4044 __u8 u1_mel = udev->bos->ss_cap->bU1devExitLat;
4045 __le16 u2_mel = udev->bos->ss_cap->bU2DevExitLat;
4046
4047 /* If the device says it doesn't have *any* exit latency to come out of
4048 * U1 or U2, it's probably lying. Assume it doesn't implement that link
4049 * state.
4050 */
4051 if ((state == USB3_LPM_U1 && u1_mel == 0) ||
4052 (state == USB3_LPM_U2 && u2_mel == 0))
4053 return;
4054
4055 /*
4056 * First, let the device know about the exit latencies
4057 * associated with the link state we're about to enable.
4058 */
4059 ret = usb_req_set_sel(udev, state);
4060 if (ret < 0) {
4061 dev_warn(&udev->dev, "Set SEL for device-initiated %s failed.\n",
4062 usb3_lpm_names[state]);
4063 return;
4064 }
4065
4066 /* We allow the host controller to set the U1/U2 timeout internally
4067 * first, so that it can change its schedule to account for the
4068 * additional latency to send data to a device in a lower power
4069 * link state.
4070 */
4071 timeout = hcd->driver->enable_usb3_lpm_timeout(hcd, udev, state);
4072
4073 /* xHCI host controller doesn't want to enable this LPM state. */
4074 if (timeout == 0)
4075 return;
4076
4077 if (timeout < 0) {
4078 dev_warn(&udev->dev, "Could not enable %s link state, "
4079 "xHCI error %i.\n", usb3_lpm_names[state],
4080 timeout);
4081 return;
4082 }
4083
4084 if (usb_set_lpm_timeout(udev, state, timeout)) {
4085 /* If we can't set the parent hub U1/U2 timeout,
4086 * device-initiated LPM won't be allowed either, so let the xHCI
4087 * host know that this link state won't be enabled.
4088 */
4089 hcd->driver->disable_usb3_lpm_timeout(hcd, udev, state);
4090 return;
4091 }
4092
4093 /* Only a configured device will accept the Set Feature
4094 * U1/U2_ENABLE
4095 */
4096 if (udev->actconfig &&
4097 usb_set_device_initiated_lpm(udev, state, true) == 0) {
4098 if (state == USB3_LPM_U1)
4099 udev->usb3_lpm_u1_enabled = 1;
4100 else if (state == USB3_LPM_U2)
4101 udev->usb3_lpm_u2_enabled = 1;
4102 } else {
4103 /* Don't request U1/U2 entry if the device
4104 * cannot transition to U1/U2.
4105 */
4106 usb_set_lpm_timeout(udev, state, 0);
4107 hcd->driver->disable_usb3_lpm_timeout(hcd, udev, state);
4108 }
4109 }
4110
4111 /*
4112 * Disable the hub-initiated U1/U2 idle timeouts, and disable device-initiated
4113 * U1/U2 entry.
4114 *
4115 * If this function returns -EBUSY, the parent hub will still allow U1/U2 entry.
4116 * If zero is returned, the parent will not allow the link to go into U1/U2.
4117 *
4118 * If zero is returned, device-initiated U1/U2 entry may still be enabled, but
4119 * it won't have an effect on the bus link state because the parent hub will
4120 * still disallow device-initiated U1/U2 entry.
4121 *
4122 * If zero is returned, the xHCI host controller may still think U1/U2 entry is
4123 * possible. The result will be slightly more bus bandwidth will be taken up
4124 * (to account for U1/U2 exit latency), but it should be harmless.
4125 */
4126 static int usb_disable_link_state(struct usb_hcd *hcd, struct usb_device *udev,
4127 enum usb3_link_state state)
4128 {
4129 switch (state) {
4130 case USB3_LPM_U1:
4131 case USB3_LPM_U2:
4132 break;
4133 default:
4134 dev_warn(&udev->dev, "%s: Can't disable non-U1 or U2 state.\n",
4135 __func__);
4136 return -EINVAL;
4137 }
4138
4139 if (usb_set_lpm_timeout(udev, state, 0))
4140 return -EBUSY;
4141
4142 usb_set_device_initiated_lpm(udev, state, false);
4143
4144 if (hcd->driver->disable_usb3_lpm_timeout(hcd, udev, state))
4145 dev_warn(&udev->dev, "Could not disable xHCI %s timeout, "
4146 "bus schedule bandwidth may be impacted.\n",
4147 usb3_lpm_names[state]);
4148
4149 /* As soon as usb_set_lpm_timeout(0) return 0, hub initiated LPM
4150 * is disabled. Hub will disallows link to enter U1/U2 as well,
4151 * even device is initiating LPM. Hence LPM is disabled if hub LPM
4152 * timeout set to 0, no matter device-initiated LPM is disabled or
4153 * not.
4154 */
4155 if (state == USB3_LPM_U1)
4156 udev->usb3_lpm_u1_enabled = 0;
4157 else if (state == USB3_LPM_U2)
4158 udev->usb3_lpm_u2_enabled = 0;
4159
4160 return 0;
4161 }
4162
4163 /*
4164 * Disable hub-initiated and device-initiated U1 and U2 entry.
4165 * Caller must own the bandwidth_mutex.
4166 *
4167 * This will call usb_enable_lpm() on failure, which will decrement
4168 * lpm_disable_count, and will re-enable LPM if lpm_disable_count reaches zero.
4169 */
4170 int usb_disable_lpm(struct usb_device *udev)
4171 {
4172 struct usb_hcd *hcd;
4173
4174 if (!udev || !udev->parent ||
4175 udev->speed < USB_SPEED_SUPER ||
4176 !udev->lpm_capable ||
4177 udev->state < USB_STATE_CONFIGURED)
4178 return 0;
4179
4180 hcd = bus_to_hcd(udev->bus);
4181 if (!hcd || !hcd->driver->disable_usb3_lpm_timeout)
4182 return 0;
4183
4184 udev->lpm_disable_count++;
4185 if ((udev->u1_params.timeout == 0 && udev->u2_params.timeout == 0))
4186 return 0;
4187
4188 /* If LPM is enabled, attempt to disable it. */
4189 if (usb_disable_link_state(hcd, udev, USB3_LPM_U1))
4190 goto enable_lpm;
4191 if (usb_disable_link_state(hcd, udev, USB3_LPM_U2))
4192 goto enable_lpm;
4193
4194 return 0;
4195
4196 enable_lpm:
4197 usb_enable_lpm(udev);
4198 return -EBUSY;
4199 }
4200 EXPORT_SYMBOL_GPL(usb_disable_lpm);
4201
4202 /* Grab the bandwidth_mutex before calling usb_disable_lpm() */
4203 int usb_unlocked_disable_lpm(struct usb_device *udev)
4204 {
4205 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
4206 int ret;
4207
4208 if (!hcd)
4209 return -EINVAL;
4210
4211 mutex_lock(hcd->bandwidth_mutex);
4212 ret = usb_disable_lpm(udev);
4213 mutex_unlock(hcd->bandwidth_mutex);
4214
4215 return ret;
4216 }
4217 EXPORT_SYMBOL_GPL(usb_unlocked_disable_lpm);
4218
4219 /*
4220 * Attempt to enable device-initiated and hub-initiated U1 and U2 entry. The
4221 * xHCI host policy may prevent U1 or U2 from being enabled.
4222 *
4223 * Other callers may have disabled link PM, so U1 and U2 entry will be disabled
4224 * until the lpm_disable_count drops to zero. Caller must own the
4225 * bandwidth_mutex.
4226 */
4227 void usb_enable_lpm(struct usb_device *udev)
4228 {
4229 struct usb_hcd *hcd;
4230 struct usb_hub *hub;
4231 struct usb_port *port_dev;
4232
4233 if (!udev || !udev->parent ||
4234 udev->speed < USB_SPEED_SUPER ||
4235 !udev->lpm_capable ||
4236 udev->state < USB_STATE_CONFIGURED)
4237 return;
4238
4239 udev->lpm_disable_count--;
4240 hcd = bus_to_hcd(udev->bus);
4241 /* Double check that we can both enable and disable LPM.
4242 * Device must be configured to accept set feature U1/U2 timeout.
4243 */
4244 if (!hcd || !hcd->driver->enable_usb3_lpm_timeout ||
4245 !hcd->driver->disable_usb3_lpm_timeout)
4246 return;
4247
4248 if (udev->lpm_disable_count > 0)
4249 return;
4250
4251 hub = usb_hub_to_struct_hub(udev->parent);
4252 if (!hub)
4253 return;
4254
4255 port_dev = hub->ports[udev->portnum - 1];
4256
4257 if (port_dev->usb3_lpm_u1_permit)
4258 usb_enable_link_state(hcd, udev, USB3_LPM_U1);
4259
4260 if (port_dev->usb3_lpm_u2_permit)
4261 usb_enable_link_state(hcd, udev, USB3_LPM_U2);
4262 }
4263 EXPORT_SYMBOL_GPL(usb_enable_lpm);
4264
4265 /* Grab the bandwidth_mutex before calling usb_enable_lpm() */
4266 void usb_unlocked_enable_lpm(struct usb_device *udev)
4267 {
4268 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
4269
4270 if (!hcd)
4271 return;
4272
4273 mutex_lock(hcd->bandwidth_mutex);
4274 usb_enable_lpm(udev);
4275 mutex_unlock(hcd->bandwidth_mutex);
4276 }
4277 EXPORT_SYMBOL_GPL(usb_unlocked_enable_lpm);
4278
4279 /* usb3 devices use U3 for disabled, make sure remote wakeup is disabled */
4280 static void hub_usb3_port_prepare_disable(struct usb_hub *hub,
4281 struct usb_port *port_dev)
4282 {
4283 struct usb_device *udev = port_dev->child;
4284 int ret;
4285
4286 if (udev && udev->port_is_suspended && udev->do_remote_wakeup) {
4287 ret = hub_set_port_link_state(hub, port_dev->portnum,
4288 USB_SS_PORT_LS_U0);
4289 if (!ret) {
4290 msleep(USB_RESUME_TIMEOUT);
4291 ret = usb_disable_remote_wakeup(udev);
4292 }
4293 if (ret)
4294 dev_warn(&udev->dev,
4295 "Port disable: can't disable remote wake\n");
4296 udev->do_remote_wakeup = 0;
4297 }
4298 }
4299
4300 #else /* CONFIG_PM */
4301
4302 #define hub_suspend NULL
4303 #define hub_resume NULL
4304 #define hub_reset_resume NULL
4305
4306 static inline void hub_usb3_port_prepare_disable(struct usb_hub *hub,
4307 struct usb_port *port_dev) { }
4308
4309 int usb_disable_lpm(struct usb_device *udev)
4310 {
4311 return 0;
4312 }
4313 EXPORT_SYMBOL_GPL(usb_disable_lpm);
4314
4315 void usb_enable_lpm(struct usb_device *udev) { }
4316 EXPORT_SYMBOL_GPL(usb_enable_lpm);
4317
4318 int usb_unlocked_disable_lpm(struct usb_device *udev)
4319 {
4320 return 0;
4321 }
4322 EXPORT_SYMBOL_GPL(usb_unlocked_disable_lpm);
4323
4324 void usb_unlocked_enable_lpm(struct usb_device *udev) { }
4325 EXPORT_SYMBOL_GPL(usb_unlocked_enable_lpm);
4326
4327 int usb_disable_ltm(struct usb_device *udev)
4328 {
4329 return 0;
4330 }
4331 EXPORT_SYMBOL_GPL(usb_disable_ltm);
4332
4333 void usb_enable_ltm(struct usb_device *udev) { }
4334 EXPORT_SYMBOL_GPL(usb_enable_ltm);
4335
4336 static int hub_handle_remote_wakeup(struct usb_hub *hub, unsigned int port,
4337 u16 portstatus, u16 portchange)
4338 {
4339 return 0;
4340 }
4341
4342 #endif /* CONFIG_PM */
4343
4344 /*
4345 * USB-3 does not have a similar link state as USB-2 that will avoid negotiating
4346 * a connection with a plugged-in cable but will signal the host when the cable
4347 * is unplugged. Disable remote wake and set link state to U3 for USB-3 devices
4348 */
4349 static int hub_port_disable(struct usb_hub *hub, int port1, int set_state)
4350 {
4351 struct usb_port *port_dev = hub->ports[port1 - 1];
4352 struct usb_device *hdev = hub->hdev;
4353 int ret = 0;
4354
4355 if (!hub->error) {
4356 if (hub_is_superspeed(hub->hdev)) {
4357 hub_usb3_port_prepare_disable(hub, port_dev);
4358 ret = hub_set_port_link_state(hub, port_dev->portnum,
4359 USB_SS_PORT_LS_U3);
4360 } else {
4361 ret = usb_clear_port_feature(hdev, port1,
4362 USB_PORT_FEAT_ENABLE);
4363 }
4364 }
4365 if (port_dev->child && set_state)
4366 usb_set_device_state(port_dev->child, USB_STATE_NOTATTACHED);
4367 if (ret && ret != -ENODEV)
4368 dev_err(&port_dev->dev, "cannot disable (err = %d)\n", ret);
4369 return ret;
4370 }
4371
4372 /*
4373 * usb_port_disable - disable a usb device's upstream port
4374 * @udev: device to disable
4375 * Context: @udev locked, must be able to sleep.
4376 *
4377 * Disables a USB device that isn't in active use.
4378 */
4379 int usb_port_disable(struct usb_device *udev)
4380 {
4381 struct usb_hub *hub = usb_hub_to_struct_hub(udev->parent);
4382
4383 return hub_port_disable(hub, udev->portnum, 0);
4384 }
4385
4386 /* USB 2.0 spec, 7.1.7.3 / fig 7-29:
4387 *
4388 * Between connect detection and reset signaling there must be a delay
4389 * of 100ms at least for debounce and power-settling. The corresponding
4390 * timer shall restart whenever the downstream port detects a disconnect.
4391 *
4392 * Apparently there are some bluetooth and irda-dongles and a number of
4393 * low-speed devices for which this debounce period may last over a second.
4394 * Not covered by the spec - but easy to deal with.
4395 *
4396 * This implementation uses a 1500ms total debounce timeout; if the
4397 * connection isn't stable by then it returns -ETIMEDOUT. It checks
4398 * every 25ms for transient disconnects. When the port status has been
4399 * unchanged for 100ms it returns the port status.
4400 */
4401 int hub_port_debounce(struct usb_hub *hub, int port1, bool must_be_connected)
4402 {
4403 int ret;
4404 u16 portchange, portstatus;
4405 unsigned connection = 0xffff;
4406 int total_time, stable_time = 0;
4407 struct usb_port *port_dev = hub->ports[port1 - 1];
4408
4409 for (total_time = 0; ; total_time += HUB_DEBOUNCE_STEP) {
4410 ret = hub_port_status(hub, port1, &portstatus, &portchange);
4411 if (ret < 0)
4412 return ret;
4413
4414 if (!(portchange & USB_PORT_STAT_C_CONNECTION) &&
4415 (portstatus & USB_PORT_STAT_CONNECTION) == connection) {
4416 if (!must_be_connected ||
4417 (connection == USB_PORT_STAT_CONNECTION))
4418 stable_time += HUB_DEBOUNCE_STEP;
4419 if (stable_time >= HUB_DEBOUNCE_STABLE)
4420 break;
4421 } else {
4422 stable_time = 0;
4423 connection = portstatus & USB_PORT_STAT_CONNECTION;
4424 }
4425
4426 if (portchange & USB_PORT_STAT_C_CONNECTION) {
4427 usb_clear_port_feature(hub->hdev, port1,
4428 USB_PORT_FEAT_C_CONNECTION);
4429 }
4430
4431 if (total_time >= HUB_DEBOUNCE_TIMEOUT)
4432 break;
4433 msleep(HUB_DEBOUNCE_STEP);
4434 }
4435
4436 dev_dbg(&port_dev->dev, "debounce total %dms stable %dms status 0x%x\n",
4437 total_time, stable_time, portstatus);
4438
4439 if (stable_time < HUB_DEBOUNCE_STABLE)
4440 return -ETIMEDOUT;
4441 return portstatus;
4442 }
4443
4444 void usb_ep0_reinit(struct usb_device *udev)
4445 {
4446 usb_disable_endpoint(udev, 0 + USB_DIR_IN, true);
4447 usb_disable_endpoint(udev, 0 + USB_DIR_OUT, true);
4448 usb_enable_endpoint(udev, &udev->ep0, true);
4449 }
4450 EXPORT_SYMBOL_GPL(usb_ep0_reinit);
4451
4452 #define usb_sndaddr0pipe() (PIPE_CONTROL << 30)
4453 #define usb_rcvaddr0pipe() ((PIPE_CONTROL << 30) | USB_DIR_IN)
4454
4455 static int hub_set_address(struct usb_device *udev, int devnum)
4456 {
4457 int retval;
4458 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
4459
4460 /*
4461 * The host controller will choose the device address,
4462 * instead of the core having chosen it earlier
4463 */
4464 if (!hcd->driver->address_device && devnum <= 1)
4465 return -EINVAL;
4466 if (udev->state == USB_STATE_ADDRESS)
4467 return 0;
4468 if (udev->state != USB_STATE_DEFAULT)
4469 return -EINVAL;
4470 if (hcd->driver->address_device)
4471 retval = hcd->driver->address_device(hcd, udev);
4472 else
4473 retval = usb_control_msg(udev, usb_sndaddr0pipe(),
4474 USB_REQ_SET_ADDRESS, 0, devnum, 0,
4475 NULL, 0, USB_CTRL_SET_TIMEOUT);
4476 if (retval == 0) {
4477 update_devnum(udev, devnum);
4478 /* Device now using proper address. */
4479 usb_set_device_state(udev, USB_STATE_ADDRESS);
4480 usb_ep0_reinit(udev);
4481 }
4482 return retval;
4483 }
4484
4485 /*
4486 * There are reports of USB 3.0 devices that say they support USB 2.0 Link PM
4487 * when they're plugged into a USB 2.0 port, but they don't work when LPM is
4488 * enabled.
4489 *
4490 * Only enable USB 2.0 Link PM if the port is internal (hardwired), or the
4491 * device says it supports the new USB 2.0 Link PM errata by setting the BESL
4492 * support bit in the BOS descriptor.
4493 */
4494 static void hub_set_initial_usb2_lpm_policy(struct usb_device *udev)
4495 {
4496 struct usb_hub *hub = usb_hub_to_struct_hub(udev->parent);
4497 int connect_type = USB_PORT_CONNECT_TYPE_UNKNOWN;
4498
4499 if (!udev->usb2_hw_lpm_capable || !udev->bos)
4500 return;
4501
4502 if (hub)
4503 connect_type = hub->ports[udev->portnum - 1]->connect_type;
4504
4505 if ((udev->bos->ext_cap->bmAttributes & cpu_to_le32(USB_BESL_SUPPORT)) ||
4506 connect_type == USB_PORT_CONNECT_TYPE_HARD_WIRED) {
4507 udev->usb2_hw_lpm_allowed = 1;
4508 usb_enable_usb2_hardware_lpm(udev);
4509 }
4510 }
4511
4512 static int hub_enable_device(struct usb_device *udev)
4513 {
4514 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
4515
4516 if (!hcd->driver->enable_device)
4517 return 0;
4518 if (udev->state == USB_STATE_ADDRESS)
4519 return 0;
4520 if (udev->state != USB_STATE_DEFAULT)
4521 return -EINVAL;
4522
4523 return hcd->driver->enable_device(hcd, udev);
4524 }
4525
4526 /* Reset device, (re)assign address, get device descriptor.
4527 * Device connection must be stable, no more debouncing needed.
4528 * Returns device in USB_STATE_ADDRESS, except on error.
4529 *
4530 * If this is called for an already-existing device (as part of
4531 * usb_reset_and_verify_device), the caller must own the device lock and
4532 * the port lock. For a newly detected device that is not accessible
4533 * through any global pointers, it's not necessary to lock the device,
4534 * but it is still necessary to lock the port.
4535 */
4536 static int
4537 hub_port_init(struct usb_hub *hub, struct usb_device *udev, int port1,
4538 int retry_counter)
4539 {
4540 struct usb_device *hdev = hub->hdev;
4541 struct usb_hcd *hcd = bus_to_hcd(hdev->bus);
4542 struct usb_port *port_dev = hub->ports[port1 - 1];
4543 int retries, operations, retval, i;
4544 unsigned delay = HUB_SHORT_RESET_TIME;
4545 enum usb_device_speed oldspeed = udev->speed;
4546 const char *speed;
4547 int devnum = udev->devnum;
4548 const char *driver_name;
4549
4550 /* root hub ports have a slightly longer reset period
4551 * (from USB 2.0 spec, section 7.1.7.5)
4552 */
4553 if (!hdev->parent) {
4554 delay = HUB_ROOT_RESET_TIME;
4555 if (port1 == hdev->bus->otg_port)
4556 hdev->bus->b_hnp_enable = 0;
4557 }
4558
4559 /* Some low speed devices have problems with the quick delay, so */
4560 /* be a bit pessimistic with those devices. RHbug #23670 */
4561 if (oldspeed == USB_SPEED_LOW)
4562 delay = HUB_LONG_RESET_TIME;
4563
4564 mutex_lock(hcd->address0_mutex);
4565
4566 /* Reset the device; full speed may morph to high speed */
4567 /* FIXME a USB 2.0 device may morph into SuperSpeed on reset. */
4568 retval = hub_port_reset(hub, port1, udev, delay, false);
4569 if (retval < 0) /* error or disconnect */
4570 goto fail;
4571 /* success, speed is known */
4572
4573 retval = -ENODEV;
4574
4575 /* Don't allow speed changes at reset, except usb 3.0 to faster */
4576 if (oldspeed != USB_SPEED_UNKNOWN && oldspeed != udev->speed &&
4577 !(oldspeed == USB_SPEED_SUPER && udev->speed > oldspeed)) {
4578 dev_dbg(&udev->dev, "device reset changed speed!\n");
4579 goto fail;
4580 }
4581 oldspeed = udev->speed;
4582
4583 /* USB 2.0 section 5.5.3 talks about ep0 maxpacket ...
4584 * it's fixed size except for full speed devices.
4585 * For Wireless USB devices, ep0 max packet is always 512 (tho
4586 * reported as 0xff in the device descriptor). WUSB1.0[4.8.1].
4587 */
4588 switch (udev->speed) {
4589 case USB_SPEED_SUPER_PLUS:
4590 case USB_SPEED_SUPER:
4591 case USB_SPEED_WIRELESS: /* fixed at 512 */
4592 udev->ep0.desc.wMaxPacketSize = cpu_to_le16(512);
4593 break;
4594 case USB_SPEED_HIGH: /* fixed at 64 */
4595 udev->ep0.desc.wMaxPacketSize = cpu_to_le16(64);
4596 break;
4597 case USB_SPEED_FULL: /* 8, 16, 32, or 64 */
4598 /* to determine the ep0 maxpacket size, try to read
4599 * the device descriptor to get bMaxPacketSize0 and
4600 * then correct our initial guess.
4601 */
4602 udev->ep0.desc.wMaxPacketSize = cpu_to_le16(64);
4603 break;
4604 case USB_SPEED_LOW: /* fixed at 8 */
4605 udev->ep0.desc.wMaxPacketSize = cpu_to_le16(8);
4606 break;
4607 default:
4608 goto fail;
4609 }
4610
4611 if (udev->speed == USB_SPEED_WIRELESS)
4612 speed = "variable speed Wireless";
4613 else
4614 speed = usb_speed_string(udev->speed);
4615
4616 /*
4617 * The controller driver may be NULL if the controller device
4618 * is the middle device between platform device and roothub.
4619 * This middle device may not need a device driver due to
4620 * all hardware control can be at platform device driver, this
4621 * platform device is usually a dual-role USB controller device.
4622 */
4623 if (udev->bus->controller->driver)
4624 driver_name = udev->bus->controller->driver->name;
4625 else
4626 driver_name = udev->bus->sysdev->driver->name;
4627
4628 if (udev->speed < USB_SPEED_SUPER)
4629 dev_info(&udev->dev,
4630 "%s %s USB device number %d using %s\n",
4631 (udev->config) ? "reset" : "new", speed,
4632 devnum, driver_name);
4633
4634 /* Set up TT records, if needed */
4635 if (hdev->tt) {
4636 udev->tt = hdev->tt;
4637 udev->ttport = hdev->ttport;
4638 } else if (udev->speed != USB_SPEED_HIGH
4639 && hdev->speed == USB_SPEED_HIGH) {
4640 if (!hub->tt.hub) {
4641 dev_err(&udev->dev, "parent hub has no TT\n");
4642 retval = -EINVAL;
4643 goto fail;
4644 }
4645 udev->tt = &hub->tt;
4646 udev->ttport = port1;
4647 }
4648
4649 /* Why interleave GET_DESCRIPTOR and SET_ADDRESS this way?
4650 * Because device hardware and firmware is sometimes buggy in
4651 * this area, and this is how Linux has done it for ages.
4652 * Change it cautiously.
4653 *
4654 * NOTE: If use_new_scheme() is true we will start by issuing
4655 * a 64-byte GET_DESCRIPTOR request. This is what Windows does,
4656 * so it may help with some non-standards-compliant devices.
4657 * Otherwise we start with SET_ADDRESS and then try to read the
4658 * first 8 bytes of the device descriptor to get the ep0 maxpacket
4659 * value.
4660 */
4661 for (retries = 0; retries < GET_DESCRIPTOR_TRIES; (++retries, msleep(100))) {
4662 bool did_new_scheme = false;
4663
4664 if (use_new_scheme(udev, retry_counter, port_dev)) {
4665 struct usb_device_descriptor *buf;
4666 int r = 0;
4667
4668 did_new_scheme = true;
4669 retval = hub_enable_device(udev);
4670 if (retval < 0) {
4671 dev_err(&udev->dev,
4672 "hub failed to enable device, error %d\n",
4673 retval);
4674 goto fail;
4675 }
4676
4677 #define GET_DESCRIPTOR_BUFSIZE 64
4678 buf = kmalloc(GET_DESCRIPTOR_BUFSIZE, GFP_NOIO);
4679 if (!buf) {
4680 retval = -ENOMEM;
4681 continue;
4682 }
4683
4684 /* Retry on all errors; some devices are flakey.
4685 * 255 is for WUSB devices, we actually need to use
4686 * 512 (WUSB1.0[4.8.1]).
4687 */
4688 for (operations = 0; operations < 3; ++operations) {
4689 buf->bMaxPacketSize0 = 0;
4690 r = usb_control_msg(udev, usb_rcvaddr0pipe(),
4691 USB_REQ_GET_DESCRIPTOR, USB_DIR_IN,
4692 USB_DT_DEVICE << 8, 0,
4693 buf, GET_DESCRIPTOR_BUFSIZE,
4694 initial_descriptor_timeout);
4695 switch (buf->bMaxPacketSize0) {
4696 case 8: case 16: case 32: case 64: case 255:
4697 if (buf->bDescriptorType ==
4698 USB_DT_DEVICE) {
4699 r = 0;
4700 break;
4701 }
4702 /* FALL THROUGH */
4703 default:
4704 if (r == 0)
4705 r = -EPROTO;
4706 break;
4707 }
4708 /*
4709 * Some devices time out if they are powered on
4710 * when already connected. They need a second
4711 * reset. But only on the first attempt,
4712 * lest we get into a time out/reset loop
4713 */
4714 if (r == 0 || (r == -ETIMEDOUT &&
4715 retries == 0 &&
4716 udev->speed > USB_SPEED_FULL))
4717 break;
4718 }
4719 udev->descriptor.bMaxPacketSize0 =
4720 buf->bMaxPacketSize0;
4721 kfree(buf);
4722
4723 retval = hub_port_reset(hub, port1, udev, delay, false);
4724 if (retval < 0) /* error or disconnect */
4725 goto fail;
4726 if (oldspeed != udev->speed) {
4727 dev_dbg(&udev->dev,
4728 "device reset changed speed!\n");
4729 retval = -ENODEV;
4730 goto fail;
4731 }
4732 if (r) {
4733 if (r != -ENODEV)
4734 dev_err(&udev->dev, "device descriptor read/64, error %d\n",
4735 r);
4736 retval = -EMSGSIZE;
4737 continue;
4738 }
4739 #undef GET_DESCRIPTOR_BUFSIZE
4740 }
4741
4742 /*
4743 * If device is WUSB, we already assigned an
4744 * unauthorized address in the Connect Ack sequence;
4745 * authorization will assign the final address.
4746 */
4747 if (udev->wusb == 0) {
4748 for (operations = 0; operations < SET_ADDRESS_TRIES; ++operations) {
4749 retval = hub_set_address(udev, devnum);
4750 if (retval >= 0)
4751 break;
4752 msleep(200);
4753 }
4754 if (retval < 0) {
4755 if (retval != -ENODEV)
4756 dev_err(&udev->dev, "device not accepting address %d, error %d\n",
4757 devnum, retval);
4758 goto fail;
4759 }
4760 if (udev->speed >= USB_SPEED_SUPER) {
4761 devnum = udev->devnum;
4762 dev_info(&udev->dev,
4763 "%s SuperSpeed%s%s USB device number %d using %s\n",
4764 (udev->config) ? "reset" : "new",
4765 (udev->speed == USB_SPEED_SUPER_PLUS) ?
4766 "Plus Gen 2" : " Gen 1",
4767 (udev->rx_lanes == 2 && udev->tx_lanes == 2) ?
4768 "x2" : "",
4769 devnum, driver_name);
4770 }
4771
4772 /* cope with hardware quirkiness:
4773 * - let SET_ADDRESS settle, some device hardware wants it
4774 * - read ep0 maxpacket even for high and low speed,
4775 */
4776 msleep(10);
4777 /* use_new_scheme() checks the speed which may have
4778 * changed since the initial look so we cache the result
4779 * in did_new_scheme
4780 */
4781 if (did_new_scheme)
4782 break;
4783 }
4784
4785 retval = usb_get_device_descriptor(udev, 8);
4786 if (retval < 8) {
4787 if (retval != -ENODEV)
4788 dev_err(&udev->dev,
4789 "device descriptor read/8, error %d\n",
4790 retval);
4791 if (retval >= 0)
4792 retval = -EMSGSIZE;
4793 } else {
4794 u32 delay;
4795
4796 retval = 0;
4797
4798 delay = udev->parent->hub_delay;
4799 udev->hub_delay = min_t(u32, delay,
4800 USB_TP_TRANSMISSION_DELAY_MAX);
4801 retval = usb_set_isoch_delay(udev);
4802 if (retval) {
4803 dev_dbg(&udev->dev,
4804 "Failed set isoch delay, error %d\n",
4805 retval);
4806 retval = 0;
4807 }
4808 break;
4809 }
4810 }
4811 if (retval)
4812 goto fail;
4813
4814 /*
4815 * Some superspeed devices have finished the link training process
4816 * and attached to a superspeed hub port, but the device descriptor
4817 * got from those devices show they aren't superspeed devices. Warm
4818 * reset the port attached by the devices can fix them.
4819 */
4820 if ((udev->speed >= USB_SPEED_SUPER) &&
4821 (le16_to_cpu(udev->descriptor.bcdUSB) < 0x0300)) {
4822 dev_err(&udev->dev, "got a wrong device descriptor, "
4823 "warm reset device\n");
4824 hub_port_reset(hub, port1, udev,
4825 HUB_BH_RESET_TIME, true);
4826 retval = -EINVAL;
4827 goto fail;
4828 }
4829
4830 if (udev->descriptor.bMaxPacketSize0 == 0xff ||
4831 udev->speed >= USB_SPEED_SUPER)
4832 i = 512;
4833 else
4834 i = udev->descriptor.bMaxPacketSize0;
4835 if (usb_endpoint_maxp(&udev->ep0.desc) != i) {
4836 if (udev->speed == USB_SPEED_LOW ||
4837 !(i == 8 || i == 16 || i == 32 || i == 64)) {
4838 dev_err(&udev->dev, "Invalid ep0 maxpacket: %d\n", i);
4839 retval = -EMSGSIZE;
4840 goto fail;
4841 }
4842 if (udev->speed == USB_SPEED_FULL)
4843 dev_dbg(&udev->dev, "ep0 maxpacket = %d\n", i);
4844 else
4845 dev_warn(&udev->dev, "Using ep0 maxpacket: %d\n", i);
4846 udev->ep0.desc.wMaxPacketSize = cpu_to_le16(i);
4847 usb_ep0_reinit(udev);
4848 }
4849
4850 retval = usb_get_device_descriptor(udev, USB_DT_DEVICE_SIZE);
4851 if (retval < (signed)sizeof(udev->descriptor)) {
4852 if (retval != -ENODEV)
4853 dev_err(&udev->dev, "device descriptor read/all, error %d\n",
4854 retval);
4855 if (retval >= 0)
4856 retval = -ENOMSG;
4857 goto fail;
4858 }
4859
4860 usb_detect_quirks(udev);
4861
4862 if (udev->wusb == 0 && le16_to_cpu(udev->descriptor.bcdUSB) >= 0x0201) {
4863 retval = usb_get_bos_descriptor(udev);
4864 if (!retval) {
4865 udev->lpm_capable = usb_device_supports_lpm(udev);
4866 usb_set_lpm_parameters(udev);
4867 }
4868 }
4869
4870 retval = 0;
4871 /* notify HCD that we have a device connected and addressed */
4872 if (hcd->driver->update_device)
4873 hcd->driver->update_device(hcd, udev);
4874 hub_set_initial_usb2_lpm_policy(udev);
4875 fail:
4876 if (retval) {
4877 hub_port_disable(hub, port1, 0);
4878 update_devnum(udev, devnum); /* for disconnect processing */
4879 }
4880 mutex_unlock(hcd->address0_mutex);
4881 return retval;
4882 }
4883
4884 static void
4885 check_highspeed(struct usb_hub *hub, struct usb_device *udev, int port1)
4886 {
4887 struct usb_qualifier_descriptor *qual;
4888 int status;
4889
4890 if (udev->quirks & USB_QUIRK_DEVICE_QUALIFIER)
4891 return;
4892
4893 qual = kmalloc(sizeof *qual, GFP_KERNEL);
4894 if (qual == NULL)
4895 return;
4896
4897 status = usb_get_descriptor(udev, USB_DT_DEVICE_QUALIFIER, 0,
4898 qual, sizeof *qual);
4899 if (status == sizeof *qual) {
4900 dev_info(&udev->dev, "not running at top speed; "
4901 "connect to a high speed hub\n");
4902 /* hub LEDs are probably harder to miss than syslog */
4903 if (hub->has_indicators) {
4904 hub->indicator[port1-1] = INDICATOR_GREEN_BLINK;
4905 queue_delayed_work(system_power_efficient_wq,
4906 &hub->leds, 0);
4907 }
4908 }
4909 kfree(qual);
4910 }
4911
4912 static unsigned
4913 hub_power_remaining(struct usb_hub *hub)
4914 {
4915 struct usb_device *hdev = hub->hdev;
4916 int remaining;
4917 int port1;
4918
4919 if (!hub->limited_power)
4920 return 0;
4921
4922 remaining = hdev->bus_mA - hub->descriptor->bHubContrCurrent;
4923 for (port1 = 1; port1 <= hdev->maxchild; ++port1) {
4924 struct usb_port *port_dev = hub->ports[port1 - 1];
4925 struct usb_device *udev = port_dev->child;
4926 unsigned unit_load;
4927 int delta;
4928
4929 if (!udev)
4930 continue;
4931 if (hub_is_superspeed(udev))
4932 unit_load = 150;
4933 else
4934 unit_load = 100;
4935
4936 /*
4937 * Unconfigured devices may not use more than one unit load,
4938 * or 8mA for OTG ports
4939 */
4940 if (udev->actconfig)
4941 delta = usb_get_max_power(udev, udev->actconfig);
4942 else if (port1 != udev->bus->otg_port || hdev->parent)
4943 delta = unit_load;
4944 else
4945 delta = 8;
4946 if (delta > hub->mA_per_port)
4947 dev_warn(&port_dev->dev, "%dmA is over %umA budget!\n",
4948 delta, hub->mA_per_port);
4949 remaining -= delta;
4950 }
4951 if (remaining < 0) {
4952 dev_warn(hub->intfdev, "%dmA over power budget!\n",
4953 -remaining);
4954 remaining = 0;
4955 }
4956 return remaining;
4957 }
4958
4959
4960 static int descriptors_changed(struct usb_device *udev,
4961 struct usb_device_descriptor *old_device_descriptor,
4962 struct usb_host_bos *old_bos)
4963 {
4964 int changed = 0;
4965 unsigned index;
4966 unsigned serial_len = 0;
4967 unsigned len;
4968 unsigned old_length;
4969 int length;
4970 char *buf;
4971
4972 if (memcmp(&udev->descriptor, old_device_descriptor,
4973 sizeof(*old_device_descriptor)) != 0)
4974 return 1;
4975
4976 if ((old_bos && !udev->bos) || (!old_bos && udev->bos))
4977 return 1;
4978 if (udev->bos) {
4979 len = le16_to_cpu(udev->bos->desc->wTotalLength);
4980 if (len != le16_to_cpu(old_bos->desc->wTotalLength))
4981 return 1;
4982 if (memcmp(udev->bos->desc, old_bos->desc, len))
4983 return 1;
4984 }
4985
4986 /* Since the idVendor, idProduct, and bcdDevice values in the
4987 * device descriptor haven't changed, we will assume the
4988 * Manufacturer and Product strings haven't changed either.
4989 * But the SerialNumber string could be different (e.g., a
4990 * different flash card of the same brand).
4991 */
4992 if (udev->serial)
4993 serial_len = strlen(udev->serial) + 1;
4994
4995 len = serial_len;
4996 for (index = 0; index < udev->descriptor.bNumConfigurations; index++) {
4997 old_length = le16_to_cpu(udev->config[index].desc.wTotalLength);
4998 len = max(len, old_length);
4999 }
5000
5001 buf = kmalloc(len, GFP_NOIO);
5002 if (!buf)
5003 /* assume the worst */
5004 return 1;
5005
5006 for (index = 0; index < udev->descriptor.bNumConfigurations; index++) {
5007 old_length = le16_to_cpu(udev->config[index].desc.wTotalLength);
5008 length = usb_get_descriptor(udev, USB_DT_CONFIG, index, buf,
5009 old_length);
5010 if (length != old_length) {
5011 dev_dbg(&udev->dev, "config index %d, error %d\n",
5012 index, length);
5013 changed = 1;
5014 break;
5015 }
5016 if (memcmp(buf, udev->rawdescriptors[index], old_length)
5017 != 0) {
5018 dev_dbg(&udev->dev, "config index %d changed (#%d)\n",
5019 index,
5020 ((struct usb_config_descriptor *) buf)->
5021 bConfigurationValue);
5022 changed = 1;
5023 break;
5024 }
5025 }
5026
5027 if (!changed && serial_len) {
5028 length = usb_string(udev, udev->descriptor.iSerialNumber,
5029 buf, serial_len);
5030 if (length + 1 != serial_len) {
5031 dev_dbg(&udev->dev, "serial string error %d\n",
5032 length);
5033 changed = 1;
5034 } else if (memcmp(buf, udev->serial, length) != 0) {
5035 dev_dbg(&udev->dev, "serial string changed\n");
5036 changed = 1;
5037 }
5038 }
5039
5040 kfree(buf);
5041 return changed;
5042 }
5043
5044 static void hub_port_connect(struct usb_hub *hub, int port1, u16 portstatus,
5045 u16 portchange)
5046 {
5047 int status = -ENODEV;
5048 int i;
5049 unsigned unit_load;
5050 struct usb_device *hdev = hub->hdev;
5051 struct usb_hcd *hcd = bus_to_hcd(hdev->bus);
5052 struct usb_port *port_dev = hub->ports[port1 - 1];
5053 struct usb_device *udev = port_dev->child;
5054 static int unreliable_port = -1;
5055
5056 /* Disconnect any existing devices under this port */
5057 if (udev) {
5058 if (hcd->usb_phy && !hdev->parent)
5059 usb_phy_notify_disconnect(hcd->usb_phy, udev->speed);
5060 usb_disconnect(&port_dev->child);
5061 }
5062
5063 /* We can forget about a "removed" device when there's a physical
5064 * disconnect or the connect status changes.
5065 */
5066 if (!(portstatus & USB_PORT_STAT_CONNECTION) ||
5067 (portchange & USB_PORT_STAT_C_CONNECTION))
5068 clear_bit(port1, hub->removed_bits);
5069
5070 if (portchange & (USB_PORT_STAT_C_CONNECTION |
5071 USB_PORT_STAT_C_ENABLE)) {
5072 status = hub_port_debounce_be_stable(hub, port1);
5073 if (status < 0) {
5074 if (status != -ENODEV &&
5075 port1 != unreliable_port &&
5076 printk_ratelimit())
5077 dev_err(&port_dev->dev, "connect-debounce failed\n");
5078 portstatus &= ~USB_PORT_STAT_CONNECTION;
5079 unreliable_port = port1;
5080 } else {
5081 portstatus = status;
5082 }
5083 }
5084
5085 /* Return now if debouncing failed or nothing is connected or
5086 * the device was "removed".
5087 */
5088 if (!(portstatus & USB_PORT_STAT_CONNECTION) ||
5089 test_bit(port1, hub->removed_bits)) {
5090
5091 /*
5092 * maybe switch power back on (e.g. root hub was reset)
5093 * but only if the port isn't owned by someone else.
5094 */
5095 if (hub_is_port_power_switchable(hub)
5096 && !port_is_power_on(hub, portstatus)
5097 && !port_dev->port_owner)
5098 set_port_feature(hdev, port1, USB_PORT_FEAT_POWER);
5099
5100 if (portstatus & USB_PORT_STAT_ENABLE)
5101 goto done;
5102 return;
5103 }
5104 if (hub_is_superspeed(hub->hdev))
5105 unit_load = 150;
5106 else
5107 unit_load = 100;
5108
5109 status = 0;
5110 for (i = 0; i < SET_CONFIG_TRIES; i++) {
5111
5112 /* reallocate for each attempt, since references
5113 * to the previous one can escape in various ways
5114 */
5115 udev = usb_alloc_dev(hdev, hdev->bus, port1);
5116 if (!udev) {
5117 dev_err(&port_dev->dev,
5118 "couldn't allocate usb_device\n");
5119 goto done;
5120 }
5121
5122 usb_set_device_state(udev, USB_STATE_POWERED);
5123 udev->bus_mA = hub->mA_per_port;
5124 udev->level = hdev->level + 1;
5125 udev->wusb = hub_is_wusb(hub);
5126
5127 /* Devices connected to SuperSpeed hubs are USB 3.0 or later */
5128 if (hub_is_superspeed(hub->hdev))
5129 udev->speed = USB_SPEED_SUPER;
5130 else
5131 udev->speed = USB_SPEED_UNKNOWN;
5132
5133 choose_devnum(udev);
5134 if (udev->devnum <= 0) {
5135 status = -ENOTCONN; /* Don't retry */
5136 goto loop;
5137 }
5138
5139 /* reset (non-USB 3.0 devices) and get descriptor */
5140 usb_lock_port(port_dev);
5141 status = hub_port_init(hub, udev, port1, i);
5142 usb_unlock_port(port_dev);
5143 if (status < 0)
5144 goto loop;
5145
5146 if (udev->quirks & USB_QUIRK_DELAY_INIT)
5147 msleep(2000);
5148
5149 /* consecutive bus-powered hubs aren't reliable; they can
5150 * violate the voltage drop budget. if the new child has
5151 * a "powered" LED, users should notice we didn't enable it
5152 * (without reading syslog), even without per-port LEDs
5153 * on the parent.
5154 */
5155 if (udev->descriptor.bDeviceClass == USB_CLASS_HUB
5156 && udev->bus_mA <= unit_load) {
5157 u16 devstat;
5158
5159 status = usb_get_std_status(udev, USB_RECIP_DEVICE, 0,
5160 &devstat);
5161 if (status) {
5162 dev_dbg(&udev->dev, "get status %d ?\n", status);
5163 goto loop_disable;
5164 }
5165 if ((devstat & (1 << USB_DEVICE_SELF_POWERED)) == 0) {
5166 dev_err(&udev->dev,
5167 "can't connect bus-powered hub "
5168 "to this port\n");
5169 if (hub->has_indicators) {
5170 hub->indicator[port1-1] =
5171 INDICATOR_AMBER_BLINK;
5172 queue_delayed_work(
5173 system_power_efficient_wq,
5174 &hub->leds, 0);
5175 }
5176 status = -ENOTCONN; /* Don't retry */
5177 goto loop_disable;
5178 }
5179 }
5180
5181 /* check for devices running slower than they could */
5182 if (le16_to_cpu(udev->descriptor.bcdUSB) >= 0x0200
5183 && udev->speed == USB_SPEED_FULL
5184 && highspeed_hubs != 0)
5185 check_highspeed(hub, udev, port1);
5186
5187 /* Store the parent's children[] pointer. At this point
5188 * udev becomes globally accessible, although presumably
5189 * no one will look at it until hdev is unlocked.
5190 */
5191 status = 0;
5192
5193 mutex_lock(&usb_port_peer_mutex);
5194
5195 /* We mustn't add new devices if the parent hub has
5196 * been disconnected; we would race with the
5197 * recursively_mark_NOTATTACHED() routine.
5198 */
5199 spin_lock_irq(&device_state_lock);
5200 if (hdev->state == USB_STATE_NOTATTACHED)
5201 status = -ENOTCONN;
5202 else
5203 port_dev->child = udev;
5204 spin_unlock_irq(&device_state_lock);
5205 mutex_unlock(&usb_port_peer_mutex);
5206
5207 /* Run it through the hoops (find a driver, etc) */
5208 if (!status) {
5209 status = usb_new_device(udev);
5210 if (status) {
5211 mutex_lock(&usb_port_peer_mutex);
5212 spin_lock_irq(&device_state_lock);
5213 port_dev->child = NULL;
5214 spin_unlock_irq(&device_state_lock);
5215 mutex_unlock(&usb_port_peer_mutex);
5216 } else {
5217 if (hcd->usb_phy && !hdev->parent)
5218 usb_phy_notify_connect(hcd->usb_phy,
5219 udev->speed);
5220 }
5221 }
5222
5223 if (status)
5224 goto loop_disable;
5225
5226 status = hub_power_remaining(hub);
5227 if (status)
5228 dev_dbg(hub->intfdev, "%dmA power budget left\n", status);
5229
5230 return;
5231
5232 loop_disable:
5233 hub_port_disable(hub, port1, 1);
5234 loop:
5235 usb_ep0_reinit(udev);
5236 release_devnum(udev);
5237 hub_free_dev(udev);
5238 usb_put_dev(udev);
5239 if ((status == -ENOTCONN) || (status == -ENOTSUPP))
5240 break;
5241
5242 /* When halfway through our retry count, power-cycle the port */
5243 if (i == (SET_CONFIG_TRIES / 2) - 1) {
5244 dev_info(&port_dev->dev, "attempt power cycle\n");
5245 usb_hub_set_port_power(hdev, hub, port1, false);
5246 msleep(2 * hub_power_on_good_delay(hub));
5247 usb_hub_set_port_power(hdev, hub, port1, true);
5248 msleep(hub_power_on_good_delay(hub));
5249 }
5250 }
5251 if (hub->hdev->parent ||
5252 !hcd->driver->port_handed_over ||
5253 !(hcd->driver->port_handed_over)(hcd, port1)) {
5254 if (status != -ENOTCONN && status != -ENODEV)
5255 dev_err(&port_dev->dev,
5256 "unable to enumerate USB device\n");
5257 }
5258
5259 done:
5260 hub_port_disable(hub, port1, 1);
5261 if (hcd->driver->relinquish_port && !hub->hdev->parent) {
5262 if (status != -ENOTCONN && status != -ENODEV)
5263 hcd->driver->relinquish_port(hcd, port1);
5264 }
5265 }
5266
5267 /* Handle physical or logical connection change events.
5268 * This routine is called when:
5269 * a port connection-change occurs;
5270 * a port enable-change occurs (often caused by EMI);
5271 * usb_reset_and_verify_device() encounters changed descriptors (as from
5272 * a firmware download)
5273 * caller already locked the hub
5274 */
5275 static void hub_port_connect_change(struct usb_hub *hub, int port1,
5276 u16 portstatus, u16 portchange)
5277 __must_hold(&port_dev->status_lock)
5278 {
5279 struct usb_port *port_dev = hub->ports[port1 - 1];
5280 struct usb_device *udev = port_dev->child;
5281 struct usb_device_descriptor descriptor;
5282 int status = -ENODEV;
5283 int retval;
5284
5285 dev_dbg(&port_dev->dev, "status %04x, change %04x, %s\n", portstatus,
5286 portchange, portspeed(hub, portstatus));
5287
5288 if (hub->has_indicators) {
5289 set_port_led(hub, port1, HUB_LED_AUTO);
5290 hub->indicator[port1-1] = INDICATOR_AUTO;
5291 }
5292
5293 #ifdef CONFIG_USB_OTG
5294 /* during HNP, don't repeat the debounce */
5295 if (hub->hdev->bus->is_b_host)
5296 portchange &= ~(USB_PORT_STAT_C_CONNECTION |
5297 USB_PORT_STAT_C_ENABLE);
5298 #endif
5299
5300 /* Try to resuscitate an existing device */
5301 if ((portstatus & USB_PORT_STAT_CONNECTION) && udev &&
5302 udev->state != USB_STATE_NOTATTACHED) {
5303 if (portstatus & USB_PORT_STAT_ENABLE) {
5304 /*
5305 * USB-3 connections are initialized automatically by
5306 * the hostcontroller hardware. Therefore check for
5307 * changed device descriptors before resuscitating the
5308 * device.
5309 */
5310 descriptor = udev->descriptor;
5311 retval = usb_get_device_descriptor(udev,
5312 sizeof(udev->descriptor));
5313 if (retval < 0) {
5314 dev_dbg(&udev->dev,
5315 "can't read device descriptor %d\n",
5316 retval);
5317 } else {
5318 if (descriptors_changed(udev, &descriptor,
5319 udev->bos)) {
5320 dev_dbg(&udev->dev,
5321 "device descriptor has changed\n");
5322 /* for disconnect() calls */
5323 udev->descriptor = descriptor;
5324 } else {
5325 status = 0; /* Nothing to do */
5326 }
5327 }
5328 #ifdef CONFIG_PM
5329 } else if (udev->state == USB_STATE_SUSPENDED &&
5330 udev->persist_enabled) {
5331 /* For a suspended device, treat this as a
5332 * remote wakeup event.
5333 */
5334 usb_unlock_port(port_dev);
5335 status = usb_remote_wakeup(udev);
5336 usb_lock_port(port_dev);
5337 #endif
5338 } else {
5339 /* Don't resuscitate */;
5340 }
5341 }
5342 clear_bit(port1, hub->change_bits);
5343
5344 /* successfully revalidated the connection */
5345 if (status == 0)
5346 return;
5347
5348 usb_unlock_port(port_dev);
5349 hub_port_connect(hub, port1, portstatus, portchange);
5350 usb_lock_port(port_dev);
5351 }
5352
5353 /* Handle notifying userspace about hub over-current events */
5354 static void port_over_current_notify(struct usb_port *port_dev)
5355 {
5356 char *envp[3];
5357 struct device *hub_dev;
5358 char *port_dev_path;
5359
5360 sysfs_notify(&port_dev->dev.kobj, NULL, "over_current_count");
5361
5362 hub_dev = port_dev->dev.parent;
5363
5364 if (!hub_dev)
5365 return;
5366
5367 port_dev_path = kobject_get_path(&port_dev->dev.kobj, GFP_KERNEL);
5368 if (!port_dev_path)
5369 return;
5370
5371 envp[0] = kasprintf(GFP_KERNEL, "OVER_CURRENT_PORT=%s", port_dev_path);
5372 if (!envp[0])
5373 goto exit_path;
5374
5375 envp[1] = kasprintf(GFP_KERNEL, "OVER_CURRENT_COUNT=%u",
5376 port_dev->over_current_count);
5377 if (!envp[1])
5378 goto exit;
5379
5380 envp[2] = NULL;
5381 kobject_uevent_env(&hub_dev->kobj, KOBJ_CHANGE, envp);
5382
5383 kfree(envp[1]);
5384 exit:
5385 kfree(envp[0]);
5386 exit_path:
5387 kfree(port_dev_path);
5388 }
5389
5390 static void port_event(struct usb_hub *hub, int port1)
5391 __must_hold(&port_dev->status_lock)
5392 {
5393 int connect_change;
5394 struct usb_port *port_dev = hub->ports[port1 - 1];
5395 struct usb_device *udev = port_dev->child;
5396 struct usb_device *hdev = hub->hdev;
5397 u16 portstatus, portchange;
5398
5399 connect_change = test_bit(port1, hub->change_bits);
5400 clear_bit(port1, hub->event_bits);
5401 clear_bit(port1, hub->wakeup_bits);
5402
5403 if (hub_port_status(hub, port1, &portstatus, &portchange) < 0)
5404 return;
5405
5406 if (portchange & USB_PORT_STAT_C_CONNECTION) {
5407 usb_clear_port_feature(hdev, port1, USB_PORT_FEAT_C_CONNECTION);
5408 connect_change = 1;
5409 }
5410
5411 if (portchange & USB_PORT_STAT_C_ENABLE) {
5412 if (!connect_change)
5413 dev_dbg(&port_dev->dev, "enable change, status %08x\n",
5414 portstatus);
5415 usb_clear_port_feature(hdev, port1, USB_PORT_FEAT_C_ENABLE);
5416
5417 /*
5418 * EM interference sometimes causes badly shielded USB devices
5419 * to be shutdown by the hub, this hack enables them again.
5420 * Works at least with mouse driver.
5421 */
5422 if (!(portstatus & USB_PORT_STAT_ENABLE)
5423 && !connect_change && udev) {
5424 dev_err(&port_dev->dev, "disabled by hub (EMI?), re-enabling...\n");
5425 connect_change = 1;
5426 }
5427 }
5428
5429 if (portchange & USB_PORT_STAT_C_OVERCURRENT) {
5430 u16 status = 0, unused;
5431 port_dev->over_current_count++;
5432 port_over_current_notify(port_dev);
5433
5434 dev_dbg(&port_dev->dev, "over-current change #%u\n",
5435 port_dev->over_current_count);
5436 usb_clear_port_feature(hdev, port1,
5437 USB_PORT_FEAT_C_OVER_CURRENT);
5438 msleep(100); /* Cool down */
5439 hub_power_on(hub, true);
5440 hub_port_status(hub, port1, &status, &unused);
5441 if (status & USB_PORT_STAT_OVERCURRENT)
5442 dev_err(&port_dev->dev, "over-current condition\n");
5443 }
5444
5445 if (portchange & USB_PORT_STAT_C_RESET) {
5446 dev_dbg(&port_dev->dev, "reset change\n");
5447 usb_clear_port_feature(hdev, port1, USB_PORT_FEAT_C_RESET);
5448 }
5449 if ((portchange & USB_PORT_STAT_C_BH_RESET)
5450 && hub_is_superspeed(hdev)) {
5451 dev_dbg(&port_dev->dev, "warm reset change\n");
5452 usb_clear_port_feature(hdev, port1,
5453 USB_PORT_FEAT_C_BH_PORT_RESET);
5454 }
5455 if (portchange & USB_PORT_STAT_C_LINK_STATE) {
5456 dev_dbg(&port_dev->dev, "link state change\n");
5457 usb_clear_port_feature(hdev, port1,
5458 USB_PORT_FEAT_C_PORT_LINK_STATE);
5459 }
5460 if (portchange & USB_PORT_STAT_C_CONFIG_ERROR) {
5461 dev_warn(&port_dev->dev, "config error\n");
5462 usb_clear_port_feature(hdev, port1,
5463 USB_PORT_FEAT_C_PORT_CONFIG_ERROR);
5464 }
5465
5466 /* skip port actions that require the port to be powered on */
5467 if (!pm_runtime_active(&port_dev->dev))
5468 return;
5469
5470 if (hub_handle_remote_wakeup(hub, port1, portstatus, portchange))
5471 connect_change = 1;
5472
5473 /*
5474 * Warm reset a USB3 protocol port if it's in
5475 * SS.Inactive state.
5476 */
5477 if (hub_port_warm_reset_required(hub, port1, portstatus)) {
5478 dev_dbg(&port_dev->dev, "do warm reset\n");
5479 if (!udev || !(portstatus & USB_PORT_STAT_CONNECTION)
5480 || udev->state == USB_STATE_NOTATTACHED) {
5481 if (hub_port_reset(hub, port1, NULL,
5482 HUB_BH_RESET_TIME, true) < 0)
5483 hub_port_disable(hub, port1, 1);
5484 } else {
5485 usb_unlock_port(port_dev);
5486 usb_lock_device(udev);
5487 usb_reset_device(udev);
5488 usb_unlock_device(udev);
5489 usb_lock_port(port_dev);
5490 connect_change = 0;
5491 }
5492 }
5493
5494 if (connect_change)
5495 hub_port_connect_change(hub, port1, portstatus, portchange);
5496 }
5497
5498 static void hub_event(struct work_struct *work)
5499 {
5500 struct usb_device *hdev;
5501 struct usb_interface *intf;
5502 struct usb_hub *hub;
5503 struct device *hub_dev;
5504 u16 hubstatus;
5505 u16 hubchange;
5506 int i, ret;
5507
5508 hub = container_of(work, struct usb_hub, events);
5509 hdev = hub->hdev;
5510 hub_dev = hub->intfdev;
5511 intf = to_usb_interface(hub_dev);
5512
5513 kcov_remote_start_usb((u64)hdev->bus->busnum);
5514
5515 dev_dbg(hub_dev, "state %d ports %d chg %04x evt %04x\n",
5516 hdev->state, hdev->maxchild,
5517 /* NOTE: expects max 15 ports... */
5518 (u16) hub->change_bits[0],
5519 (u16) hub->event_bits[0]);
5520
5521 /* Lock the device, then check to see if we were
5522 * disconnected while waiting for the lock to succeed. */
5523 usb_lock_device(hdev);
5524 if (unlikely(hub->disconnected))
5525 goto out_hdev_lock;
5526
5527 /* If the hub has died, clean up after it */
5528 if (hdev->state == USB_STATE_NOTATTACHED) {
5529 hub->error = -ENODEV;
5530 hub_quiesce(hub, HUB_DISCONNECT);
5531 goto out_hdev_lock;
5532 }
5533
5534 /* Autoresume */
5535 ret = usb_autopm_get_interface(intf);
5536 if (ret) {
5537 dev_dbg(hub_dev, "Can't autoresume: %d\n", ret);
5538 goto out_hdev_lock;
5539 }
5540
5541 /* If this is an inactive hub, do nothing */
5542 if (hub->quiescing)
5543 goto out_autopm;
5544
5545 if (hub->error) {
5546 dev_dbg(hub_dev, "resetting for error %d\n", hub->error);
5547
5548 ret = usb_reset_device(hdev);
5549 if (ret) {
5550 dev_dbg(hub_dev, "error resetting hub: %d\n", ret);
5551 goto out_autopm;
5552 }
5553
5554 hub->nerrors = 0;
5555 hub->error = 0;
5556 }
5557
5558 /* deal with port status changes */
5559 for (i = 1; i <= hdev->maxchild; i++) {
5560 struct usb_port *port_dev = hub->ports[i - 1];
5561
5562 if (test_bit(i, hub->event_bits)
5563 || test_bit(i, hub->change_bits)
5564 || test_bit(i, hub->wakeup_bits)) {
5565 /*
5566 * The get_noresume and barrier ensure that if
5567 * the port was in the process of resuming, we
5568 * flush that work and keep the port active for
5569 * the duration of the port_event(). However,
5570 * if the port is runtime pm suspended
5571 * (powered-off), we leave it in that state, run
5572 * an abbreviated port_event(), and move on.
5573 */
5574 pm_runtime_get_noresume(&port_dev->dev);
5575 pm_runtime_barrier(&port_dev->dev);
5576 usb_lock_port(port_dev);
5577 port_event(hub, i);
5578 usb_unlock_port(port_dev);
5579 pm_runtime_put_sync(&port_dev->dev);
5580 }
5581 }
5582
5583 /* deal with hub status changes */
5584 if (test_and_clear_bit(0, hub->event_bits) == 0)
5585 ; /* do nothing */
5586 else if (hub_hub_status(hub, &hubstatus, &hubchange) < 0)
5587 dev_err(hub_dev, "get_hub_status failed\n");
5588 else {
5589 if (hubchange & HUB_CHANGE_LOCAL_POWER) {
5590 dev_dbg(hub_dev, "power change\n");
5591 clear_hub_feature(hdev, C_HUB_LOCAL_POWER);
5592 if (hubstatus & HUB_STATUS_LOCAL_POWER)
5593 /* FIXME: Is this always true? */
5594 hub->limited_power = 1;
5595 else
5596 hub->limited_power = 0;
5597 }
5598 if (hubchange & HUB_CHANGE_OVERCURRENT) {
5599 u16 status = 0;
5600 u16 unused;
5601
5602 dev_dbg(hub_dev, "over-current change\n");
5603 clear_hub_feature(hdev, C_HUB_OVER_CURRENT);
5604 msleep(500); /* Cool down */
5605 hub_power_on(hub, true);
5606 hub_hub_status(hub, &status, &unused);
5607 if (status & HUB_STATUS_OVERCURRENT)
5608 dev_err(hub_dev, "over-current condition\n");
5609 }
5610 }
5611
5612 out_autopm:
5613 /* Balance the usb_autopm_get_interface() above */
5614 usb_autopm_put_interface_no_suspend(intf);
5615 out_hdev_lock:
5616 usb_unlock_device(hdev);
5617
5618 /* Balance the stuff in kick_hub_wq() and allow autosuspend */
5619 usb_autopm_put_interface(intf);
5620 kref_put(&hub->kref, hub_release);
5621
5622 kcov_remote_stop();
5623 }
5624
5625 static const struct usb_device_id hub_id_table[] = {
5626 { .match_flags = USB_DEVICE_ID_MATCH_VENDOR | USB_DEVICE_ID_MATCH_INT_CLASS,
5627 .idVendor = USB_VENDOR_SMSC,
5628 .bInterfaceClass = USB_CLASS_HUB,
5629 .driver_info = HUB_QUIRK_DISABLE_AUTOSUSPEND},
5630 { .match_flags = USB_DEVICE_ID_MATCH_VENDOR
5631 | USB_DEVICE_ID_MATCH_INT_CLASS,
5632 .idVendor = USB_VENDOR_GENESYS_LOGIC,
5633 .bInterfaceClass = USB_CLASS_HUB,
5634 .driver_info = HUB_QUIRK_CHECK_PORT_AUTOSUSPEND},
5635 { .match_flags = USB_DEVICE_ID_MATCH_DEV_CLASS,
5636 .bDeviceClass = USB_CLASS_HUB},
5637 { .match_flags = USB_DEVICE_ID_MATCH_INT_CLASS,
5638 .bInterfaceClass = USB_CLASS_HUB},
5639 { } /* Terminating entry */
5640 };
5641
5642 MODULE_DEVICE_TABLE(usb, hub_id_table);
5643
5644 static struct usb_driver hub_driver = {
5645 .name = "hub",
5646 .probe = hub_probe,
5647 .disconnect = hub_disconnect,
5648 .suspend = hub_suspend,
5649 .resume = hub_resume,
5650 .reset_resume = hub_reset_resume,
5651 .pre_reset = hub_pre_reset,
5652 .post_reset = hub_post_reset,
5653 .unlocked_ioctl = hub_ioctl,
5654 .id_table = hub_id_table,
5655 .supports_autosuspend = 1,
5656 };
5657
5658 int usb_hub_init(void)
5659 {
5660 if (usb_register(&hub_driver) < 0) {
5661 printk(KERN_ERR "%s: can't register hub driver\n",
5662 usbcore_name);
5663 return -1;
5664 }
5665
5666 /*
5667 * The workqueue needs to be freezable to avoid interfering with
5668 * USB-PERSIST port handover. Otherwise it might see that a full-speed
5669 * device was gone before the EHCI controller had handed its port
5670 * over to the companion full-speed controller.
5671 */
5672 hub_wq = alloc_workqueue("usb_hub_wq", WQ_FREEZABLE, 0);
5673 if (hub_wq)
5674 return 0;
5675
5676 /* Fall through if kernel_thread failed */
5677 usb_deregister(&hub_driver);
5678 pr_err("%s: can't allocate workqueue for usb hub\n", usbcore_name);
5679
5680 return -1;
5681 }
5682
5683 void usb_hub_cleanup(void)
5684 {
5685 destroy_workqueue(hub_wq);
5686
5687 /*
5688 * Hub resources are freed for us by usb_deregister. It calls
5689 * usb_driver_purge on every device which in turn calls that
5690 * devices disconnect function if it is using this driver.
5691 * The hub_disconnect function takes care of releasing the
5692 * individual hub resources. -greg
5693 */
5694 usb_deregister(&hub_driver);
5695 } /* usb_hub_cleanup() */
5696
5697 /**
5698 * usb_reset_and_verify_device - perform a USB port reset to reinitialize a device
5699 * @udev: device to reset (not in SUSPENDED or NOTATTACHED state)
5700 *
5701 * WARNING - don't use this routine to reset a composite device
5702 * (one with multiple interfaces owned by separate drivers)!
5703 * Use usb_reset_device() instead.
5704 *
5705 * Do a port reset, reassign the device's address, and establish its
5706 * former operating configuration. If the reset fails, or the device's
5707 * descriptors change from their values before the reset, or the original
5708 * configuration and altsettings cannot be restored, a flag will be set
5709 * telling hub_wq to pretend the device has been disconnected and then
5710 * re-connected. All drivers will be unbound, and the device will be
5711 * re-enumerated and probed all over again.
5712 *
5713 * Return: 0 if the reset succeeded, -ENODEV if the device has been
5714 * flagged for logical disconnection, or some other negative error code
5715 * if the reset wasn't even attempted.
5716 *
5717 * Note:
5718 * The caller must own the device lock and the port lock, the latter is
5719 * taken by usb_reset_device(). For example, it's safe to use
5720 * usb_reset_device() from a driver probe() routine after downloading
5721 * new firmware. For calls that might not occur during probe(), drivers
5722 * should lock the device using usb_lock_device_for_reset().
5723 *
5724 * Locking exception: This routine may also be called from within an
5725 * autoresume handler. Such usage won't conflict with other tasks
5726 * holding the device lock because these tasks should always call
5727 * usb_autopm_resume_device(), thereby preventing any unwanted
5728 * autoresume. The autoresume handler is expected to have already
5729 * acquired the port lock before calling this routine.
5730 */
5731 static int usb_reset_and_verify_device(struct usb_device *udev)
5732 {
5733 struct usb_device *parent_hdev = udev->parent;
5734 struct usb_hub *parent_hub;
5735 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
5736 struct usb_device_descriptor descriptor = udev->descriptor;
5737 struct usb_host_bos *bos;
5738 int i, j, ret = 0;
5739 int port1 = udev->portnum;
5740
5741 if (udev->state == USB_STATE_NOTATTACHED ||
5742 udev->state == USB_STATE_SUSPENDED) {
5743 dev_dbg(&udev->dev, "device reset not allowed in state %d\n",
5744 udev->state);
5745 return -EINVAL;
5746 }
5747
5748 if (!parent_hdev)
5749 return -EISDIR;
5750
5751 parent_hub = usb_hub_to_struct_hub(parent_hdev);
5752
5753 /* Disable USB2 hardware LPM.
5754 * It will be re-enabled by the enumeration process.
5755 */
5756 usb_disable_usb2_hardware_lpm(udev);
5757
5758 /* Disable LPM while we reset the device and reinstall the alt settings.
5759 * Device-initiated LPM, and system exit latency settings are cleared
5760 * when the device is reset, so we have to set them up again.
5761 */
5762 ret = usb_unlocked_disable_lpm(udev);
5763 if (ret) {
5764 dev_err(&udev->dev, "%s Failed to disable LPM\n", __func__);
5765 goto re_enumerate_no_bos;
5766 }
5767
5768 bos = udev->bos;
5769 udev->bos = NULL;
5770
5771 for (i = 0; i < SET_CONFIG_TRIES; ++i) {
5772
5773 /* ep0 maxpacket size may change; let the HCD know about it.
5774 * Other endpoints will be handled by re-enumeration. */
5775 usb_ep0_reinit(udev);
5776 ret = hub_port_init(parent_hub, udev, port1, i);
5777 if (ret >= 0 || ret == -ENOTCONN || ret == -ENODEV)
5778 break;
5779 }
5780
5781 if (ret < 0)
5782 goto re_enumerate;
5783
5784 /* Device might have changed firmware (DFU or similar) */
5785 if (descriptors_changed(udev, &descriptor, bos)) {
5786 dev_info(&udev->dev, "device firmware changed\n");
5787 udev->descriptor = descriptor; /* for disconnect() calls */
5788 goto re_enumerate;
5789 }
5790
5791 /* Restore the device's previous configuration */
5792 if (!udev->actconfig)
5793 goto done;
5794
5795 mutex_lock(hcd->bandwidth_mutex);
5796 ret = usb_hcd_alloc_bandwidth(udev, udev->actconfig, NULL, NULL);
5797 if (ret < 0) {
5798 dev_warn(&udev->dev,
5799 "Busted HC? Not enough HCD resources for "
5800 "old configuration.\n");
5801 mutex_unlock(hcd->bandwidth_mutex);
5802 goto re_enumerate;
5803 }
5804 ret = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
5805 USB_REQ_SET_CONFIGURATION, 0,
5806 udev->actconfig->desc.bConfigurationValue, 0,
5807 NULL, 0, USB_CTRL_SET_TIMEOUT);
5808 if (ret < 0) {
5809 dev_err(&udev->dev,
5810 "can't restore configuration #%d (error=%d)\n",
5811 udev->actconfig->desc.bConfigurationValue, ret);
5812 mutex_unlock(hcd->bandwidth_mutex);
5813 goto re_enumerate;
5814 }
5815 mutex_unlock(hcd->bandwidth_mutex);
5816 usb_set_device_state(udev, USB_STATE_CONFIGURED);
5817
5818 /* Put interfaces back into the same altsettings as before.
5819 * Don't bother to send the Set-Interface request for interfaces
5820 * that were already in altsetting 0; besides being unnecessary,
5821 * many devices can't handle it. Instead just reset the host-side
5822 * endpoint state.
5823 */
5824 for (i = 0; i < udev->actconfig->desc.bNumInterfaces; i++) {
5825 struct usb_host_config *config = udev->actconfig;
5826 struct usb_interface *intf = config->interface[i];
5827 struct usb_interface_descriptor *desc;
5828
5829 desc = &intf->cur_altsetting->desc;
5830 if (desc->bAlternateSetting == 0) {
5831 usb_disable_interface(udev, intf, true);
5832 usb_enable_interface(udev, intf, true);
5833 ret = 0;
5834 } else {
5835 /* Let the bandwidth allocation function know that this
5836 * device has been reset, and it will have to use
5837 * alternate setting 0 as the current alternate setting.
5838 */
5839 intf->resetting_device = 1;
5840 ret = usb_set_interface(udev, desc->bInterfaceNumber,
5841 desc->bAlternateSetting);
5842 intf->resetting_device = 0;
5843 }
5844 if (ret < 0) {
5845 dev_err(&udev->dev, "failed to restore interface %d "
5846 "altsetting %d (error=%d)\n",
5847 desc->bInterfaceNumber,
5848 desc->bAlternateSetting,
5849 ret);
5850 goto re_enumerate;
5851 }
5852 /* Resetting also frees any allocated streams */
5853 for (j = 0; j < intf->cur_altsetting->desc.bNumEndpoints; j++)
5854 intf->cur_altsetting->endpoint[j].streams = 0;
5855 }
5856
5857 done:
5858 /* Now that the alt settings are re-installed, enable LTM and LPM. */
5859 usb_enable_usb2_hardware_lpm(udev);
5860 usb_unlocked_enable_lpm(udev);
5861 usb_enable_ltm(udev);
5862 usb_release_bos_descriptor(udev);
5863 udev->bos = bos;
5864 return 0;
5865
5866 re_enumerate:
5867 usb_release_bos_descriptor(udev);
5868 udev->bos = bos;
5869 re_enumerate_no_bos:
5870 /* LPM state doesn't matter when we're about to destroy the device. */
5871 hub_port_logical_disconnect(parent_hub, port1);
5872 return -ENODEV;
5873 }
5874
5875 /**
5876 * usb_reset_device - warn interface drivers and perform a USB port reset
5877 * @udev: device to reset (not in NOTATTACHED state)
5878 *
5879 * Warns all drivers bound to registered interfaces (using their pre_reset
5880 * method), performs the port reset, and then lets the drivers know that
5881 * the reset is over (using their post_reset method).
5882 *
5883 * Return: The same as for usb_reset_and_verify_device().
5884 *
5885 * Note:
5886 * The caller must own the device lock. For example, it's safe to use
5887 * this from a driver probe() routine after downloading new firmware.
5888 * For calls that might not occur during probe(), drivers should lock
5889 * the device using usb_lock_device_for_reset().
5890 *
5891 * If an interface is currently being probed or disconnected, we assume
5892 * its driver knows how to handle resets. For all other interfaces,
5893 * if the driver doesn't have pre_reset and post_reset methods then
5894 * we attempt to unbind it and rebind afterward.
5895 */
5896 int usb_reset_device(struct usb_device *udev)
5897 {
5898 int ret;
5899 int i;
5900 unsigned int noio_flag;
5901 struct usb_port *port_dev;
5902 struct usb_host_config *config = udev->actconfig;
5903 struct usb_hub *hub = usb_hub_to_struct_hub(udev->parent);
5904
5905 if (udev->state == USB_STATE_NOTATTACHED) {
5906 dev_dbg(&udev->dev, "device reset not allowed in state %d\n",
5907 udev->state);
5908 return -EINVAL;
5909 }
5910
5911 if (!udev->parent) {
5912 /* this requires hcd-specific logic; see ohci_restart() */
5913 dev_dbg(&udev->dev, "%s for root hub!\n", __func__);
5914 return -EISDIR;
5915 }
5916
5917 port_dev = hub->ports[udev->portnum - 1];
5918
5919 /*
5920 * Don't allocate memory with GFP_KERNEL in current
5921 * context to avoid possible deadlock if usb mass
5922 * storage interface or usbnet interface(iSCSI case)
5923 * is included in current configuration. The easist
5924 * approach is to do it for every device reset,
5925 * because the device 'memalloc_noio' flag may have
5926 * not been set before reseting the usb device.
5927 */
5928 noio_flag = memalloc_noio_save();
5929
5930 /* Prevent autosuspend during the reset */
5931 usb_autoresume_device(udev);
5932
5933 if (config) {
5934 for (i = 0; i < config->desc.bNumInterfaces; ++i) {
5935 struct usb_interface *cintf = config->interface[i];
5936 struct usb_driver *drv;
5937 int unbind = 0;
5938
5939 if (cintf->dev.driver) {
5940 drv = to_usb_driver(cintf->dev.driver);
5941 if (drv->pre_reset && drv->post_reset)
5942 unbind = (drv->pre_reset)(cintf);
5943 else if (cintf->condition ==
5944 USB_INTERFACE_BOUND)
5945 unbind = 1;
5946 if (unbind)
5947 usb_forced_unbind_intf(cintf);
5948 }
5949 }
5950 }
5951
5952 usb_lock_port(port_dev);
5953 ret = usb_reset_and_verify_device(udev);
5954 usb_unlock_port(port_dev);
5955
5956 if (config) {
5957 for (i = config->desc.bNumInterfaces - 1; i >= 0; --i) {
5958 struct usb_interface *cintf = config->interface[i];
5959 struct usb_driver *drv;
5960 int rebind = cintf->needs_binding;
5961
5962 if (!rebind && cintf->dev.driver) {
5963 drv = to_usb_driver(cintf->dev.driver);
5964 if (drv->post_reset)
5965 rebind = (drv->post_reset)(cintf);
5966 else if (cintf->condition ==
5967 USB_INTERFACE_BOUND)
5968 rebind = 1;
5969 if (rebind)
5970 cintf->needs_binding = 1;
5971 }
5972 }
5973
5974 /* If the reset failed, hub_wq will unbind drivers later */
5975 if (ret == 0)
5976 usb_unbind_and_rebind_marked_interfaces(udev);
5977 }
5978
5979 usb_autosuspend_device(udev);
5980 memalloc_noio_restore(noio_flag);
5981 return ret;
5982 }
5983 EXPORT_SYMBOL_GPL(usb_reset_device);
5984
5985
5986 /**
5987 * usb_queue_reset_device - Reset a USB device from an atomic context
5988 * @iface: USB interface belonging to the device to reset
5989 *
5990 * This function can be used to reset a USB device from an atomic
5991 * context, where usb_reset_device() won't work (as it blocks).
5992 *
5993 * Doing a reset via this method is functionally equivalent to calling
5994 * usb_reset_device(), except for the fact that it is delayed to a
5995 * workqueue. This means that any drivers bound to other interfaces
5996 * might be unbound, as well as users from usbfs in user space.
5997 *
5998 * Corner cases:
5999 *
6000 * - Scheduling two resets at the same time from two different drivers
6001 * attached to two different interfaces of the same device is
6002 * possible; depending on how the driver attached to each interface
6003 * handles ->pre_reset(), the second reset might happen or not.
6004 *
6005 * - If the reset is delayed so long that the interface is unbound from
6006 * its driver, the reset will be skipped.
6007 *
6008 * - This function can be called during .probe(). It can also be called
6009 * during .disconnect(), but doing so is pointless because the reset
6010 * will not occur. If you really want to reset the device during
6011 * .disconnect(), call usb_reset_device() directly -- but watch out
6012 * for nested unbinding issues!
6013 */
6014 void usb_queue_reset_device(struct usb_interface *iface)
6015 {
6016 if (schedule_work(&iface->reset_ws))
6017 usb_get_intf(iface);
6018 }
6019 EXPORT_SYMBOL_GPL(usb_queue_reset_device);
6020
6021 /**
6022 * usb_hub_find_child - Get the pointer of child device
6023 * attached to the port which is specified by @port1.
6024 * @hdev: USB device belonging to the usb hub
6025 * @port1: port num to indicate which port the child device
6026 * is attached to.
6027 *
6028 * USB drivers call this function to get hub's child device
6029 * pointer.
6030 *
6031 * Return: %NULL if input param is invalid and
6032 * child's usb_device pointer if non-NULL.
6033 */
6034 struct usb_device *usb_hub_find_child(struct usb_device *hdev,
6035 int port1)
6036 {
6037 struct usb_hub *hub = usb_hub_to_struct_hub(hdev);
6038
6039 if (port1 < 1 || port1 > hdev->maxchild)
6040 return NULL;
6041 return hub->ports[port1 - 1]->child;
6042 }
6043 EXPORT_SYMBOL_GPL(usb_hub_find_child);
6044
6045 void usb_hub_adjust_deviceremovable(struct usb_device *hdev,
6046 struct usb_hub_descriptor *desc)
6047 {
6048 struct usb_hub *hub = usb_hub_to_struct_hub(hdev);
6049 enum usb_port_connect_type connect_type;
6050 int i;
6051
6052 if (!hub)
6053 return;
6054
6055 if (!hub_is_superspeed(hdev)) {
6056 for (i = 1; i <= hdev->maxchild; i++) {
6057 struct usb_port *port_dev = hub->ports[i - 1];
6058
6059 connect_type = port_dev->connect_type;
6060 if (connect_type == USB_PORT_CONNECT_TYPE_HARD_WIRED) {
6061 u8 mask = 1 << (i%8);
6062
6063 if (!(desc->u.hs.DeviceRemovable[i/8] & mask)) {
6064 dev_dbg(&port_dev->dev, "DeviceRemovable is changed to 1 according to platform information.\n");
6065 desc->u.hs.DeviceRemovable[i/8] |= mask;
6066 }
6067 }
6068 }
6069 } else {
6070 u16 port_removable = le16_to_cpu(desc->u.ss.DeviceRemovable);
6071
6072 for (i = 1; i <= hdev->maxchild; i++) {
6073 struct usb_port *port_dev = hub->ports[i - 1];
6074
6075 connect_type = port_dev->connect_type;
6076 if (connect_type == USB_PORT_CONNECT_TYPE_HARD_WIRED) {
6077 u16 mask = 1 << i;
6078
6079 if (!(port_removable & mask)) {
6080 dev_dbg(&port_dev->dev, "DeviceRemovable is changed to 1 according to platform information.\n");
6081 port_removable |= mask;
6082 }
6083 }
6084 }
6085
6086 desc->u.ss.DeviceRemovable = cpu_to_le16(port_removable);
6087 }
6088 }
6089
6090 #ifdef CONFIG_ACPI
6091 /**
6092 * usb_get_hub_port_acpi_handle - Get the usb port's acpi handle
6093 * @hdev: USB device belonging to the usb hub
6094 * @port1: port num of the port
6095 *
6096 * Return: Port's acpi handle if successful, %NULL if params are
6097 * invalid.
6098 */
6099 acpi_handle usb_get_hub_port_acpi_handle(struct usb_device *hdev,
6100 int port1)
6101 {
6102 struct usb_hub *hub = usb_hub_to_struct_hub(hdev);
6103
6104 if (!hub)
6105 return NULL;
6106
6107 return ACPI_HANDLE(&hub->ports[port1 - 1]->dev);
6108 }
6109 #endif