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