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