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