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