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