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