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