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