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