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