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