0a8e042f6bde66646bfa5b8ad54c5201d82d549c
[cascardo/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/quirks.h>
24 #include <linux/kthread.h>
25 #include <linux/mutex.h>
26 #include <linux/freezer.h>
27
28 #include <asm/uaccess.h>
29 #include <asm/byteorder.h>
30
31 #include "usb.h"
32
33 /* if we are in debug mode, always announce new devices */
34 #ifdef DEBUG
35 #ifndef CONFIG_USB_ANNOUNCE_NEW_DEVICES
36 #define CONFIG_USB_ANNOUNCE_NEW_DEVICES
37 #endif
38 #endif
39
40 struct usb_hub {
41         struct device           *intfdev;       /* the "interface" device */
42         struct usb_device       *hdev;
43         struct kref             kref;
44         struct urb              *urb;           /* for interrupt polling pipe */
45
46         /* buffer for urb ... with extra space in case of babble */
47         char                    (*buffer)[8];
48         union {
49                 struct usb_hub_status   hub;
50                 struct usb_port_status  port;
51         }                       *status;        /* buffer for status reports */
52         struct mutex            status_mutex;   /* for the status buffer */
53
54         int                     error;          /* last reported error */
55         int                     nerrors;        /* track consecutive errors */
56
57         struct list_head        event_list;     /* hubs w/data or errs ready */
58         unsigned long           event_bits[1];  /* status change bitmask */
59         unsigned long           change_bits[1]; /* ports with logical connect
60                                                         status change */
61         unsigned long           busy_bits[1];   /* ports being reset or
62                                                         resumed */
63         unsigned long           removed_bits[1]; /* ports with a "removed"
64                                                         device present */
65         unsigned long           wakeup_bits[1]; /* ports that have signaled
66                                                         remote wakeup */
67 #if USB_MAXCHILDREN > 31 /* 8*sizeof(unsigned long) - 1 */
68 #error event_bits[] is too short!
69 #endif
70
71         struct usb_hub_descriptor *descriptor;  /* class descriptor */
72         struct usb_tt           tt;             /* Transaction Translator */
73
74         unsigned                mA_per_port;    /* current for each child */
75
76         unsigned                limited_power:1;
77         unsigned                quiescing:1;
78         unsigned                disconnected:1;
79
80         unsigned                has_indicators:1;
81         u8                      indicator[USB_MAXCHILDREN];
82         struct delayed_work     leds;
83         struct delayed_work     init_work;
84         void                    **port_owners;
85 };
86
87 static inline int hub_is_superspeed(struct usb_device *hdev)
88 {
89         return (hdev->descriptor.bDeviceProtocol == USB_HUB_PR_SS);
90 }
91
92 /* Protect struct usb_device->state and ->children members
93  * Note: Both are also protected by ->dev.sem, except that ->state can
94  * change to USB_STATE_NOTATTACHED even when the semaphore isn't held. */
95 static DEFINE_SPINLOCK(device_state_lock);
96
97 /* khubd's worklist and its lock */
98 static DEFINE_SPINLOCK(hub_event_lock);
99 static LIST_HEAD(hub_event_list);       /* List of hubs needing servicing */
100
101 /* Wakes up khubd */
102 static DECLARE_WAIT_QUEUE_HEAD(khubd_wait);
103
104 static struct task_struct *khubd_task;
105
106 /* cycle leds on hubs that aren't blinking for attention */
107 static bool blinkenlights = 0;
108 module_param (blinkenlights, bool, S_IRUGO);
109 MODULE_PARM_DESC (blinkenlights, "true to cycle leds on hubs");
110
111 /*
112  * Device SATA8000 FW1.0 from DATAST0R Technology Corp requires about
113  * 10 seconds to send reply for the initial 64-byte descriptor request.
114  */
115 /* define initial 64-byte descriptor request timeout in milliseconds */
116 static int initial_descriptor_timeout = USB_CTRL_GET_TIMEOUT;
117 module_param(initial_descriptor_timeout, int, S_IRUGO|S_IWUSR);
118 MODULE_PARM_DESC(initial_descriptor_timeout,
119                 "initial 64-byte descriptor request timeout in milliseconds "
120                 "(default 5000 - 5.0 seconds)");
121
122 /*
123  * As of 2.6.10 we introduce a new USB device initialization scheme which
124  * closely resembles the way Windows works.  Hopefully it will be compatible
125  * with a wider range of devices than the old scheme.  However some previously
126  * working devices may start giving rise to "device not accepting address"
127  * errors; if that happens the user can try the old scheme by adjusting the
128  * following module parameters.
129  *
130  * For maximum flexibility there are two boolean parameters to control the
131  * hub driver's behavior.  On the first initialization attempt, if the
132  * "old_scheme_first" parameter is set then the old scheme will be used,
133  * otherwise the new scheme is used.  If that fails and "use_both_schemes"
134  * is set, then the driver will make another attempt, using the other scheme.
135  */
136 static bool old_scheme_first = 0;
137 module_param(old_scheme_first, bool, S_IRUGO | S_IWUSR);
138 MODULE_PARM_DESC(old_scheme_first,
139                  "start with the old device initialization scheme");
140
141 static bool use_both_schemes = 1;
142 module_param(use_both_schemes, bool, S_IRUGO | S_IWUSR);
143 MODULE_PARM_DESC(use_both_schemes,
144                 "try the other device initialization scheme if the "
145                 "first one fails");
146
147 /* Mutual exclusion for EHCI CF initialization.  This interferes with
148  * port reset on some companion controllers.
149  */
150 DECLARE_RWSEM(ehci_cf_port_reset_rwsem);
151 EXPORT_SYMBOL_GPL(ehci_cf_port_reset_rwsem);
152
153 #define HUB_DEBOUNCE_TIMEOUT    1500
154 #define HUB_DEBOUNCE_STEP         25
155 #define HUB_DEBOUNCE_STABLE      100
156
157
158 static int usb_reset_and_verify_device(struct usb_device *udev);
159
160 static inline char *portspeed(struct usb_hub *hub, int portstatus)
161 {
162         if (hub_is_superspeed(hub->hdev))
163                 return "5.0 Gb/s";
164         if (portstatus & USB_PORT_STAT_HIGH_SPEED)
165                 return "480 Mb/s";
166         else if (portstatus & USB_PORT_STAT_LOW_SPEED)
167                 return "1.5 Mb/s";
168         else
169                 return "12 Mb/s";
170 }
171
172 /* Note that hdev or one of its children must be locked! */
173 static struct usb_hub *hdev_to_hub(struct usb_device *hdev)
174 {
175         if (!hdev || !hdev->actconfig)
176                 return NULL;
177         return usb_get_intfdata(hdev->actconfig->interface[0]);
178 }
179
180 /* USB 2.0 spec Section 11.24.4.5 */
181 static int get_hub_descriptor(struct usb_device *hdev, void *data)
182 {
183         int i, ret, size;
184         unsigned dtype;
185
186         if (hub_is_superspeed(hdev)) {
187                 dtype = USB_DT_SS_HUB;
188                 size = USB_DT_SS_HUB_SIZE;
189         } else {
190                 dtype = USB_DT_HUB;
191                 size = sizeof(struct usb_hub_descriptor);
192         }
193
194         for (i = 0; i < 3; i++) {
195                 ret = usb_control_msg(hdev, usb_rcvctrlpipe(hdev, 0),
196                         USB_REQ_GET_DESCRIPTOR, USB_DIR_IN | USB_RT_HUB,
197                         dtype << 8, 0, data, size,
198                         USB_CTRL_GET_TIMEOUT);
199                 if (ret >= (USB_DT_HUB_NONVAR_SIZE + 2))
200                         return ret;
201         }
202         return -EINVAL;
203 }
204
205 /*
206  * USB 2.0 spec Section 11.24.2.1
207  */
208 static int clear_hub_feature(struct usb_device *hdev, int feature)
209 {
210         return usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
211                 USB_REQ_CLEAR_FEATURE, USB_RT_HUB, feature, 0, NULL, 0, 1000);
212 }
213
214 /*
215  * USB 2.0 spec Section 11.24.2.2
216  */
217 static int clear_port_feature(struct usb_device *hdev, int port1, int feature)
218 {
219         return usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
220                 USB_REQ_CLEAR_FEATURE, USB_RT_PORT, feature, port1,
221                 NULL, 0, 1000);
222 }
223
224 /*
225  * USB 2.0 spec Section 11.24.2.13
226  */
227 static int set_port_feature(struct usb_device *hdev, int port1, int feature)
228 {
229         return usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
230                 USB_REQ_SET_FEATURE, USB_RT_PORT, feature, port1,
231                 NULL, 0, 1000);
232 }
233
234 /*
235  * USB 2.0 spec Section 11.24.2.7.1.10 and table 11-7
236  * for info about using port indicators
237  */
238 static void set_port_led(
239         struct usb_hub *hub,
240         int port1,
241         int selector
242 )
243 {
244         int status = set_port_feature(hub->hdev, (selector << 8) | port1,
245                         USB_PORT_FEAT_INDICATOR);
246         if (status < 0)
247                 dev_dbg (hub->intfdev,
248                         "port %d indicator %s status %d\n",
249                         port1,
250                         ({ char *s; switch (selector) {
251                         case HUB_LED_AMBER: s = "amber"; break;
252                         case HUB_LED_GREEN: s = "green"; break;
253                         case HUB_LED_OFF: s = "off"; break;
254                         case HUB_LED_AUTO: s = "auto"; break;
255                         default: s = "??"; break;
256                         }; s; }),
257                         status);
258 }
259
260 #define LED_CYCLE_PERIOD        ((2*HZ)/3)
261
262 static void led_work (struct work_struct *work)
263 {
264         struct usb_hub          *hub =
265                 container_of(work, struct usb_hub, leds.work);
266         struct usb_device       *hdev = hub->hdev;
267         unsigned                i;
268         unsigned                changed = 0;
269         int                     cursor = -1;
270
271         if (hdev->state != USB_STATE_CONFIGURED || hub->quiescing)
272                 return;
273
274         for (i = 0; i < hub->descriptor->bNbrPorts; i++) {
275                 unsigned        selector, mode;
276
277                 /* 30%-50% duty cycle */
278
279                 switch (hub->indicator[i]) {
280                 /* cycle marker */
281                 case INDICATOR_CYCLE:
282                         cursor = i;
283                         selector = HUB_LED_AUTO;
284                         mode = INDICATOR_AUTO;
285                         break;
286                 /* blinking green = sw attention */
287                 case INDICATOR_GREEN_BLINK:
288                         selector = HUB_LED_GREEN;
289                         mode = INDICATOR_GREEN_BLINK_OFF;
290                         break;
291                 case INDICATOR_GREEN_BLINK_OFF:
292                         selector = HUB_LED_OFF;
293                         mode = INDICATOR_GREEN_BLINK;
294                         break;
295                 /* blinking amber = hw attention */
296                 case INDICATOR_AMBER_BLINK:
297                         selector = HUB_LED_AMBER;
298                         mode = INDICATOR_AMBER_BLINK_OFF;
299                         break;
300                 case INDICATOR_AMBER_BLINK_OFF:
301                         selector = HUB_LED_OFF;
302                         mode = INDICATOR_AMBER_BLINK;
303                         break;
304                 /* blink green/amber = reserved */
305                 case INDICATOR_ALT_BLINK:
306                         selector = HUB_LED_GREEN;
307                         mode = INDICATOR_ALT_BLINK_OFF;
308                         break;
309                 case INDICATOR_ALT_BLINK_OFF:
310                         selector = HUB_LED_AMBER;
311                         mode = INDICATOR_ALT_BLINK;
312                         break;
313                 default:
314                         continue;
315                 }
316                 if (selector != HUB_LED_AUTO)
317                         changed = 1;
318                 set_port_led(hub, i + 1, selector);
319                 hub->indicator[i] = mode;
320         }
321         if (!changed && blinkenlights) {
322                 cursor++;
323                 cursor %= hub->descriptor->bNbrPorts;
324                 set_port_led(hub, cursor + 1, HUB_LED_GREEN);
325                 hub->indicator[cursor] = INDICATOR_CYCLE;
326                 changed++;
327         }
328         if (changed)
329                 schedule_delayed_work(&hub->leds, LED_CYCLE_PERIOD);
330 }
331
332 /* use a short timeout for hub/port status fetches */
333 #define USB_STS_TIMEOUT         1000
334 #define USB_STS_RETRIES         5
335
336 /*
337  * USB 2.0 spec Section 11.24.2.6
338  */
339 static int get_hub_status(struct usb_device *hdev,
340                 struct usb_hub_status *data)
341 {
342         int i, status = -ETIMEDOUT;
343
344         for (i = 0; i < USB_STS_RETRIES &&
345                         (status == -ETIMEDOUT || status == -EPIPE); i++) {
346                 status = usb_control_msg(hdev, usb_rcvctrlpipe(hdev, 0),
347                         USB_REQ_GET_STATUS, USB_DIR_IN | USB_RT_HUB, 0, 0,
348                         data, sizeof(*data), USB_STS_TIMEOUT);
349         }
350         return status;
351 }
352
353 /*
354  * USB 2.0 spec Section 11.24.2.7
355  */
356 static int get_port_status(struct usb_device *hdev, int port1,
357                 struct usb_port_status *data)
358 {
359         int i, status = -ETIMEDOUT;
360
361         for (i = 0; i < USB_STS_RETRIES &&
362                         (status == -ETIMEDOUT || status == -EPIPE); i++) {
363                 status = usb_control_msg(hdev, usb_rcvctrlpipe(hdev, 0),
364                         USB_REQ_GET_STATUS, USB_DIR_IN | USB_RT_PORT, 0, port1,
365                         data, sizeof(*data), USB_STS_TIMEOUT);
366         }
367         return status;
368 }
369
370 static int hub_port_status(struct usb_hub *hub, int port1,
371                 u16 *status, u16 *change)
372 {
373         int ret;
374
375         mutex_lock(&hub->status_mutex);
376         ret = get_port_status(hub->hdev, port1, &hub->status->port);
377         if (ret < 4) {
378                 dev_err(hub->intfdev,
379                         "%s failed (err = %d)\n", __func__, ret);
380                 if (ret >= 0)
381                         ret = -EIO;
382         } else {
383                 *status = le16_to_cpu(hub->status->port.wPortStatus);
384                 *change = le16_to_cpu(hub->status->port.wPortChange);
385
386                 ret = 0;
387         }
388         mutex_unlock(&hub->status_mutex);
389         return ret;
390 }
391
392 static void kick_khubd(struct usb_hub *hub)
393 {
394         unsigned long   flags;
395
396         spin_lock_irqsave(&hub_event_lock, flags);
397         if (!hub->disconnected && list_empty(&hub->event_list)) {
398                 list_add_tail(&hub->event_list, &hub_event_list);
399
400                 /* Suppress autosuspend until khubd runs */
401                 usb_autopm_get_interface_no_resume(
402                                 to_usb_interface(hub->intfdev));
403                 wake_up(&khubd_wait);
404         }
405         spin_unlock_irqrestore(&hub_event_lock, flags);
406 }
407
408 void usb_kick_khubd(struct usb_device *hdev)
409 {
410         struct usb_hub *hub = hdev_to_hub(hdev);
411
412         if (hub)
413                 kick_khubd(hub);
414 }
415
416 /*
417  * Let the USB core know that a USB 3.0 device has sent a Function Wake Device
418  * Notification, which indicates it had initiated remote wakeup.
419  *
420  * USB 3.0 hubs do not report the port link state change from U3 to U0 when the
421  * device initiates resume, so the USB core will not receive notice of the
422  * resume through the normal hub interrupt URB.
423  */
424 void usb_wakeup_notification(struct usb_device *hdev,
425                 unsigned int portnum)
426 {
427         struct usb_hub *hub;
428
429         if (!hdev)
430                 return;
431
432         hub = hdev_to_hub(hdev);
433         if (hub) {
434                 set_bit(portnum, hub->wakeup_bits);
435                 kick_khubd(hub);
436         }
437 }
438 EXPORT_SYMBOL_GPL(usb_wakeup_notification);
439
440 /* completion function, fires on port status changes and various faults */
441 static void hub_irq(struct urb *urb)
442 {
443         struct usb_hub *hub = urb->context;
444         int status = urb->status;
445         unsigned i;
446         unsigned long bits;
447
448         switch (status) {
449         case -ENOENT:           /* synchronous unlink */
450         case -ECONNRESET:       /* async unlink */
451         case -ESHUTDOWN:        /* hardware going away */
452                 return;
453
454         default:                /* presumably an error */
455                 /* Cause a hub reset after 10 consecutive errors */
456                 dev_dbg (hub->intfdev, "transfer --> %d\n", status);
457                 if ((++hub->nerrors < 10) || hub->error)
458                         goto resubmit;
459                 hub->error = status;
460                 /* FALL THROUGH */
461
462         /* let khubd handle things */
463         case 0:                 /* we got data:  port status changed */
464                 bits = 0;
465                 for (i = 0; i < urb->actual_length; ++i)
466                         bits |= ((unsigned long) ((*hub->buffer)[i]))
467                                         << (i*8);
468                 hub->event_bits[0] = bits;
469                 break;
470         }
471
472         hub->nerrors = 0;
473
474         /* Something happened, let khubd figure it out */
475         kick_khubd(hub);
476
477 resubmit:
478         if (hub->quiescing)
479                 return;
480
481         if ((status = usb_submit_urb (hub->urb, GFP_ATOMIC)) != 0
482                         && status != -ENODEV && status != -EPERM)
483                 dev_err (hub->intfdev, "resubmit --> %d\n", status);
484 }
485
486 /* USB 2.0 spec Section 11.24.2.3 */
487 static inline int
488 hub_clear_tt_buffer (struct usb_device *hdev, u16 devinfo, u16 tt)
489 {
490         return usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
491                                HUB_CLEAR_TT_BUFFER, USB_RT_PORT, devinfo,
492                                tt, NULL, 0, 1000);
493 }
494
495 /*
496  * enumeration blocks khubd for a long time. we use keventd instead, since
497  * long blocking there is the exception, not the rule.  accordingly, HCDs
498  * talking to TTs must queue control transfers (not just bulk and iso), so
499  * both can talk to the same hub concurrently.
500  */
501 static void hub_tt_work(struct work_struct *work)
502 {
503         struct usb_hub          *hub =
504                 container_of(work, struct usb_hub, tt.clear_work);
505         unsigned long           flags;
506         int                     limit = 100;
507
508         spin_lock_irqsave (&hub->tt.lock, flags);
509         while (!list_empty(&hub->tt.clear_list)) {
510                 struct list_head        *next;
511                 struct usb_tt_clear     *clear;
512                 struct usb_device       *hdev = hub->hdev;
513                 const struct hc_driver  *drv;
514                 int                     status;
515
516                 if (!hub->quiescing && --limit < 0)
517                         break;
518
519                 next = hub->tt.clear_list.next;
520                 clear = list_entry (next, struct usb_tt_clear, clear_list);
521                 list_del (&clear->clear_list);
522
523                 /* drop lock so HCD can concurrently report other TT errors */
524                 spin_unlock_irqrestore (&hub->tt.lock, flags);
525                 status = hub_clear_tt_buffer (hdev, clear->devinfo, clear->tt);
526                 if (status)
527                         dev_err (&hdev->dev,
528                                 "clear tt %d (%04x) error %d\n",
529                                 clear->tt, clear->devinfo, status);
530
531                 /* Tell the HCD, even if the operation failed */
532                 drv = clear->hcd->driver;
533                 if (drv->clear_tt_buffer_complete)
534                         (drv->clear_tt_buffer_complete)(clear->hcd, clear->ep);
535
536                 kfree(clear);
537                 spin_lock_irqsave(&hub->tt.lock, flags);
538         }
539         spin_unlock_irqrestore (&hub->tt.lock, flags);
540 }
541
542 /**
543  * usb_hub_clear_tt_buffer - clear control/bulk TT state in high speed hub
544  * @urb: an URB associated with the failed or incomplete split transaction
545  *
546  * High speed HCDs use this to tell the hub driver that some split control or
547  * bulk transaction failed in a way that requires clearing internal state of
548  * a transaction translator.  This is normally detected (and reported) from
549  * interrupt context.
550  *
551  * It may not be possible for that hub to handle additional full (or low)
552  * speed transactions until that state is fully cleared out.
553  */
554 int usb_hub_clear_tt_buffer(struct urb *urb)
555 {
556         struct usb_device       *udev = urb->dev;
557         int                     pipe = urb->pipe;
558         struct usb_tt           *tt = udev->tt;
559         unsigned long           flags;
560         struct usb_tt_clear     *clear;
561
562         /* we've got to cope with an arbitrary number of pending TT clears,
563          * since each TT has "at least two" buffers that can need it (and
564          * there can be many TTs per hub).  even if they're uncommon.
565          */
566         if ((clear = kmalloc (sizeof *clear, GFP_ATOMIC)) == NULL) {
567                 dev_err (&udev->dev, "can't save CLEAR_TT_BUFFER state\n");
568                 /* FIXME recover somehow ... RESET_TT? */
569                 return -ENOMEM;
570         }
571
572         /* info that CLEAR_TT_BUFFER needs */
573         clear->tt = tt->multi ? udev->ttport : 1;
574         clear->devinfo = usb_pipeendpoint (pipe);
575         clear->devinfo |= udev->devnum << 4;
576         clear->devinfo |= usb_pipecontrol (pipe)
577                         ? (USB_ENDPOINT_XFER_CONTROL << 11)
578                         : (USB_ENDPOINT_XFER_BULK << 11);
579         if (usb_pipein (pipe))
580                 clear->devinfo |= 1 << 15;
581
582         /* info for completion callback */
583         clear->hcd = bus_to_hcd(udev->bus);
584         clear->ep = urb->ep;
585
586         /* tell keventd to clear state for this TT */
587         spin_lock_irqsave (&tt->lock, flags);
588         list_add_tail (&clear->clear_list, &tt->clear_list);
589         schedule_work(&tt->clear_work);
590         spin_unlock_irqrestore (&tt->lock, flags);
591         return 0;
592 }
593 EXPORT_SYMBOL_GPL(usb_hub_clear_tt_buffer);
594
595 /* If do_delay is false, return the number of milliseconds the caller
596  * needs to delay.
597  */
598 static unsigned hub_power_on(struct usb_hub *hub, bool do_delay)
599 {
600         int port1;
601         unsigned pgood_delay = hub->descriptor->bPwrOn2PwrGood * 2;
602         unsigned delay;
603         u16 wHubCharacteristics =
604                         le16_to_cpu(hub->descriptor->wHubCharacteristics);
605
606         /* Enable power on each port.  Some hubs have reserved values
607          * of LPSM (> 2) in their descriptors, even though they are
608          * USB 2.0 hubs.  Some hubs do not implement port-power switching
609          * but only emulate it.  In all cases, the ports won't work
610          * unless we send these messages to the hub.
611          */
612         if ((wHubCharacteristics & HUB_CHAR_LPSM) < 2)
613                 dev_dbg(hub->intfdev, "enabling power on all ports\n");
614         else
615                 dev_dbg(hub->intfdev, "trying to enable port power on "
616                                 "non-switchable hub\n");
617         for (port1 = 1; port1 <= hub->descriptor->bNbrPorts; port1++)
618                 set_port_feature(hub->hdev, port1, USB_PORT_FEAT_POWER);
619
620         /* Wait at least 100 msec for power to become stable */
621         delay = max(pgood_delay, (unsigned) 100);
622         if (do_delay)
623                 msleep(delay);
624         return delay;
625 }
626
627 static int hub_hub_status(struct usb_hub *hub,
628                 u16 *status, u16 *change)
629 {
630         int ret;
631
632         mutex_lock(&hub->status_mutex);
633         ret = get_hub_status(hub->hdev, &hub->status->hub);
634         if (ret < 0)
635                 dev_err (hub->intfdev,
636                         "%s failed (err = %d)\n", __func__, ret);
637         else {
638                 *status = le16_to_cpu(hub->status->hub.wHubStatus);
639                 *change = le16_to_cpu(hub->status->hub.wHubChange); 
640                 ret = 0;
641         }
642         mutex_unlock(&hub->status_mutex);
643         return ret;
644 }
645
646 static int hub_port_disable(struct usb_hub *hub, int port1, int set_state)
647 {
648         struct usb_device *hdev = hub->hdev;
649         int ret = 0;
650
651         if (hdev->children[port1-1] && set_state)
652                 usb_set_device_state(hdev->children[port1-1],
653                                 USB_STATE_NOTATTACHED);
654         if (!hub->error && !hub_is_superspeed(hub->hdev))
655                 ret = clear_port_feature(hdev, port1, USB_PORT_FEAT_ENABLE);
656         if (ret)
657                 dev_err(hub->intfdev, "cannot disable port %d (err = %d)\n",
658                                 port1, ret);
659         return ret;
660 }
661
662 /*
663  * Disable a port and mark a logical connect-change event, so that some
664  * time later khubd will disconnect() any existing usb_device on the port
665  * and will re-enumerate if there actually is a device attached.
666  */
667 static void hub_port_logical_disconnect(struct usb_hub *hub, int port1)
668 {
669         dev_dbg(hub->intfdev, "logical disconnect on port %d\n", port1);
670         hub_port_disable(hub, port1, 1);
671
672         /* FIXME let caller ask to power down the port:
673          *  - some devices won't enumerate without a VBUS power cycle
674          *  - SRP saves power that way
675          *  - ... new call, TBD ...
676          * That's easy if this hub can switch power per-port, and
677          * khubd reactivates the port later (timer, SRP, etc).
678          * Powerdown must be optional, because of reset/DFU.
679          */
680
681         set_bit(port1, hub->change_bits);
682         kick_khubd(hub);
683 }
684
685 /**
686  * usb_remove_device - disable a device's port on its parent hub
687  * @udev: device to be disabled and removed
688  * Context: @udev locked, must be able to sleep.
689  *
690  * After @udev's port has been disabled, khubd is notified and it will
691  * see that the device has been disconnected.  When the device is
692  * physically unplugged and something is plugged in, the events will
693  * be received and processed normally.
694  */
695 int usb_remove_device(struct usb_device *udev)
696 {
697         struct usb_hub *hub;
698         struct usb_interface *intf;
699
700         if (!udev->parent)      /* Can't remove a root hub */
701                 return -EINVAL;
702         hub = hdev_to_hub(udev->parent);
703         intf = to_usb_interface(hub->intfdev);
704
705         usb_autopm_get_interface(intf);
706         set_bit(udev->portnum, hub->removed_bits);
707         hub_port_logical_disconnect(hub, udev->portnum);
708         usb_autopm_put_interface(intf);
709         return 0;
710 }
711
712 enum hub_activation_type {
713         HUB_INIT, HUB_INIT2, HUB_INIT3,         /* INITs must come first */
714         HUB_POST_RESET, HUB_RESUME, HUB_RESET_RESUME,
715 };
716
717 static void hub_init_func2(struct work_struct *ws);
718 static void hub_init_func3(struct work_struct *ws);
719
720 static void hub_activate(struct usb_hub *hub, enum hub_activation_type type)
721 {
722         struct usb_device *hdev = hub->hdev;
723         struct usb_hcd *hcd;
724         int ret;
725         int port1;
726         int status;
727         bool need_debounce_delay = false;
728         unsigned delay;
729
730         /* Continue a partial initialization */
731         if (type == HUB_INIT2)
732                 goto init2;
733         if (type == HUB_INIT3)
734                 goto init3;
735
736         /* The superspeed hub except for root hub has to use Hub Depth
737          * value as an offset into the route string to locate the bits
738          * it uses to determine the downstream port number. So hub driver
739          * should send a set hub depth request to superspeed hub after
740          * the superspeed hub is set configuration in initialization or
741          * reset procedure.
742          *
743          * After a resume, port power should still be on.
744          * For any other type of activation, turn it on.
745          */
746         if (type != HUB_RESUME) {
747                 if (hdev->parent && hub_is_superspeed(hdev)) {
748                         ret = usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
749                                         HUB_SET_DEPTH, USB_RT_HUB,
750                                         hdev->level - 1, 0, NULL, 0,
751                                         USB_CTRL_SET_TIMEOUT);
752                         if (ret < 0)
753                                 dev_err(hub->intfdev,
754                                                 "set hub depth failed\n");
755                 }
756
757                 /* Speed up system boot by using a delayed_work for the
758                  * hub's initial power-up delays.  This is pretty awkward
759                  * and the implementation looks like a home-brewed sort of
760                  * setjmp/longjmp, but it saves at least 100 ms for each
761                  * root hub (assuming usbcore is compiled into the kernel
762                  * rather than as a module).  It adds up.
763                  *
764                  * This can't be done for HUB_RESUME or HUB_RESET_RESUME
765                  * because for those activation types the ports have to be
766                  * operational when we return.  In theory this could be done
767                  * for HUB_POST_RESET, but it's easier not to.
768                  */
769                 if (type == HUB_INIT) {
770                         delay = hub_power_on(hub, false);
771                         PREPARE_DELAYED_WORK(&hub->init_work, hub_init_func2);
772                         schedule_delayed_work(&hub->init_work,
773                                         msecs_to_jiffies(delay));
774
775                         /* Suppress autosuspend until init is done */
776                         usb_autopm_get_interface_no_resume(
777                                         to_usb_interface(hub->intfdev));
778                         return;         /* Continues at init2: below */
779                 } else if (type == HUB_RESET_RESUME) {
780                         /* The internal host controller state for the hub device
781                          * may be gone after a host power loss on system resume.
782                          * Update the device's info so the HW knows it's a hub.
783                          */
784                         hcd = bus_to_hcd(hdev->bus);
785                         if (hcd->driver->update_hub_device) {
786                                 ret = hcd->driver->update_hub_device(hcd, hdev,
787                                                 &hub->tt, GFP_NOIO);
788                                 if (ret < 0) {
789                                         dev_err(hub->intfdev, "Host not "
790                                                         "accepting hub info "
791                                                         "update.\n");
792                                         dev_err(hub->intfdev, "LS/FS devices "
793                                                         "and hubs may not work "
794                                                         "under this hub\n.");
795                                 }
796                         }
797                         hub_power_on(hub, true);
798                 } else {
799                         hub_power_on(hub, true);
800                 }
801         }
802  init2:
803
804         /* Check each port and set hub->change_bits to let khubd know
805          * which ports need attention.
806          */
807         for (port1 = 1; port1 <= hdev->maxchild; ++port1) {
808                 struct usb_device *udev = hdev->children[port1-1];
809                 u16 portstatus, portchange;
810
811                 portstatus = portchange = 0;
812                 status = hub_port_status(hub, port1, &portstatus, &portchange);
813                 if (udev || (portstatus & USB_PORT_STAT_CONNECTION))
814                         dev_dbg(hub->intfdev,
815                                         "port %d: status %04x change %04x\n",
816                                         port1, portstatus, portchange);
817
818                 /* After anything other than HUB_RESUME (i.e., initialization
819                  * or any sort of reset), every port should be disabled.
820                  * Unconnected ports should likewise be disabled (paranoia),
821                  * and so should ports for which we have no usb_device.
822                  */
823                 if ((portstatus & USB_PORT_STAT_ENABLE) && (
824                                 type != HUB_RESUME ||
825                                 !(portstatus & USB_PORT_STAT_CONNECTION) ||
826                                 !udev ||
827                                 udev->state == USB_STATE_NOTATTACHED)) {
828                         /*
829                          * USB3 protocol ports will automatically transition
830                          * to Enabled state when detect an USB3.0 device attach.
831                          * Do not disable USB3 protocol ports.
832                          */
833                         if (!hub_is_superspeed(hdev)) {
834                                 clear_port_feature(hdev, port1,
835                                                    USB_PORT_FEAT_ENABLE);
836                                 portstatus &= ~USB_PORT_STAT_ENABLE;
837                         } else {
838                                 /* Pretend that power was lost for USB3 devs */
839                                 portstatus &= ~USB_PORT_STAT_ENABLE;
840                         }
841                 }
842
843                 /* Clear status-change flags; we'll debounce later */
844                 if (portchange & USB_PORT_STAT_C_CONNECTION) {
845                         need_debounce_delay = true;
846                         clear_port_feature(hub->hdev, port1,
847                                         USB_PORT_FEAT_C_CONNECTION);
848                 }
849                 if (portchange & USB_PORT_STAT_C_ENABLE) {
850                         need_debounce_delay = true;
851                         clear_port_feature(hub->hdev, port1,
852                                         USB_PORT_FEAT_C_ENABLE);
853                 }
854                 if ((portchange & USB_PORT_STAT_C_BH_RESET) &&
855                                 hub_is_superspeed(hub->hdev)) {
856                         need_debounce_delay = true;
857                         clear_port_feature(hub->hdev, port1,
858                                         USB_PORT_FEAT_C_BH_PORT_RESET);
859                 }
860                 /* We can forget about a "removed" device when there's a
861                  * physical disconnect or the connect status changes.
862                  */
863                 if (!(portstatus & USB_PORT_STAT_CONNECTION) ||
864                                 (portchange & USB_PORT_STAT_C_CONNECTION))
865                         clear_bit(port1, hub->removed_bits);
866
867                 if (!udev || udev->state == USB_STATE_NOTATTACHED) {
868                         /* Tell khubd to disconnect the device or
869                          * check for a new connection
870                          */
871                         if (udev || (portstatus & USB_PORT_STAT_CONNECTION))
872                                 set_bit(port1, hub->change_bits);
873
874                 } else if (portstatus & USB_PORT_STAT_ENABLE) {
875                         bool port_resumed = (portstatus &
876                                         USB_PORT_STAT_LINK_STATE) ==
877                                 USB_SS_PORT_LS_U0;
878                         /* The power session apparently survived the resume.
879                          * If there was an overcurrent or suspend change
880                          * (i.e., remote wakeup request), have khubd
881                          * take care of it.  Look at the port link state
882                          * for USB 3.0 hubs, since they don't have a suspend
883                          * change bit, and they don't set the port link change
884                          * bit on device-initiated resume.
885                          */
886                         if (portchange || (hub_is_superspeed(hub->hdev) &&
887                                                 port_resumed))
888                                 set_bit(port1, hub->change_bits);
889
890                 } else if (udev->persist_enabled) {
891 #ifdef CONFIG_PM
892                         udev->reset_resume = 1;
893 #endif
894                         set_bit(port1, hub->change_bits);
895
896                 } else {
897                         /* The power session is gone; tell khubd */
898                         usb_set_device_state(udev, USB_STATE_NOTATTACHED);
899                         set_bit(port1, hub->change_bits);
900                 }
901         }
902
903         /* If no port-status-change flags were set, we don't need any
904          * debouncing.  If flags were set we can try to debounce the
905          * ports all at once right now, instead of letting khubd do them
906          * one at a time later on.
907          *
908          * If any port-status changes do occur during this delay, khubd
909          * will see them later and handle them normally.
910          */
911         if (need_debounce_delay) {
912                 delay = HUB_DEBOUNCE_STABLE;
913
914                 /* Don't do a long sleep inside a workqueue routine */
915                 if (type == HUB_INIT2) {
916                         PREPARE_DELAYED_WORK(&hub->init_work, hub_init_func3);
917                         schedule_delayed_work(&hub->init_work,
918                                         msecs_to_jiffies(delay));
919                         return;         /* Continues at init3: below */
920                 } else {
921                         msleep(delay);
922                 }
923         }
924  init3:
925         hub->quiescing = 0;
926
927         status = usb_submit_urb(hub->urb, GFP_NOIO);
928         if (status < 0)
929                 dev_err(hub->intfdev, "activate --> %d\n", status);
930         if (hub->has_indicators && blinkenlights)
931                 schedule_delayed_work(&hub->leds, LED_CYCLE_PERIOD);
932
933         /* Scan all ports that need attention */
934         kick_khubd(hub);
935
936         /* Allow autosuspend if it was suppressed */
937         if (type <= HUB_INIT3)
938                 usb_autopm_put_interface_async(to_usb_interface(hub->intfdev));
939 }
940
941 /* Implement the continuations for the delays above */
942 static void hub_init_func2(struct work_struct *ws)
943 {
944         struct usb_hub *hub = container_of(ws, struct usb_hub, init_work.work);
945
946         hub_activate(hub, HUB_INIT2);
947 }
948
949 static void hub_init_func3(struct work_struct *ws)
950 {
951         struct usb_hub *hub = container_of(ws, struct usb_hub, init_work.work);
952
953         hub_activate(hub, HUB_INIT3);
954 }
955
956 enum hub_quiescing_type {
957         HUB_DISCONNECT, HUB_PRE_RESET, HUB_SUSPEND
958 };
959
960 static void hub_quiesce(struct usb_hub *hub, enum hub_quiescing_type type)
961 {
962         struct usb_device *hdev = hub->hdev;
963         int i;
964
965         cancel_delayed_work_sync(&hub->init_work);
966
967         /* khubd and related activity won't re-trigger */
968         hub->quiescing = 1;
969
970         if (type != HUB_SUSPEND) {
971                 /* Disconnect all the children */
972                 for (i = 0; i < hdev->maxchild; ++i) {
973                         if (hdev->children[i])
974                                 usb_disconnect(&hdev->children[i]);
975                 }
976         }
977
978         /* Stop khubd and related activity */
979         usb_kill_urb(hub->urb);
980         if (hub->has_indicators)
981                 cancel_delayed_work_sync(&hub->leds);
982         if (hub->tt.hub)
983                 flush_work_sync(&hub->tt.clear_work);
984 }
985
986 /* caller has locked the hub device */
987 static int hub_pre_reset(struct usb_interface *intf)
988 {
989         struct usb_hub *hub = usb_get_intfdata(intf);
990
991         hub_quiesce(hub, HUB_PRE_RESET);
992         return 0;
993 }
994
995 /* caller has locked the hub device */
996 static int hub_post_reset(struct usb_interface *intf)
997 {
998         struct usb_hub *hub = usb_get_intfdata(intf);
999
1000         hub_activate(hub, HUB_POST_RESET);
1001         return 0;
1002 }
1003
1004 static int hub_configure(struct usb_hub *hub,
1005         struct usb_endpoint_descriptor *endpoint)
1006 {
1007         struct usb_hcd *hcd;
1008         struct usb_device *hdev = hub->hdev;
1009         struct device *hub_dev = hub->intfdev;
1010         u16 hubstatus, hubchange;
1011         u16 wHubCharacteristics;
1012         unsigned int pipe;
1013         int maxp, ret;
1014         char *message = "out of memory";
1015
1016         hub->buffer = kmalloc(sizeof(*hub->buffer), GFP_KERNEL);
1017         if (!hub->buffer) {
1018                 ret = -ENOMEM;
1019                 goto fail;
1020         }
1021
1022         hub->status = kmalloc(sizeof(*hub->status), GFP_KERNEL);
1023         if (!hub->status) {
1024                 ret = -ENOMEM;
1025                 goto fail;
1026         }
1027         mutex_init(&hub->status_mutex);
1028
1029         hub->descriptor = kmalloc(sizeof(*hub->descriptor), GFP_KERNEL);
1030         if (!hub->descriptor) {
1031                 ret = -ENOMEM;
1032                 goto fail;
1033         }
1034
1035         /* Request the entire hub descriptor.
1036          * hub->descriptor can handle USB_MAXCHILDREN ports,
1037          * but the hub can/will return fewer bytes here.
1038          */
1039         ret = get_hub_descriptor(hdev, hub->descriptor);
1040         if (ret < 0) {
1041                 message = "can't read hub descriptor";
1042                 goto fail;
1043         } else if (hub->descriptor->bNbrPorts > USB_MAXCHILDREN) {
1044                 message = "hub has too many ports!";
1045                 ret = -ENODEV;
1046                 goto fail;
1047         }
1048
1049         hdev->maxchild = hub->descriptor->bNbrPorts;
1050         dev_info (hub_dev, "%d port%s detected\n", hdev->maxchild,
1051                 (hdev->maxchild == 1) ? "" : "s");
1052
1053         hdev->children = kzalloc(hdev->maxchild *
1054                                 sizeof(struct usb_device *), GFP_KERNEL);
1055         hub->port_owners = kzalloc(hdev->maxchild * sizeof(void *), GFP_KERNEL);
1056         if (!hdev->children || !hub->port_owners) {
1057                 ret = -ENOMEM;
1058                 goto fail;
1059         }
1060
1061         wHubCharacteristics = le16_to_cpu(hub->descriptor->wHubCharacteristics);
1062
1063         /* FIXME for USB 3.0, skip for now */
1064         if ((wHubCharacteristics & HUB_CHAR_COMPOUND) &&
1065                         !(hub_is_superspeed(hdev))) {
1066                 int     i;
1067                 char    portstr [USB_MAXCHILDREN + 1];
1068
1069                 for (i = 0; i < hdev->maxchild; i++)
1070                         portstr[i] = hub->descriptor->u.hs.DeviceRemovable
1071                                     [((i + 1) / 8)] & (1 << ((i + 1) % 8))
1072                                 ? 'F' : 'R';
1073                 portstr[hdev->maxchild] = 0;
1074                 dev_dbg(hub_dev, "compound device; port removable status: %s\n", portstr);
1075         } else
1076                 dev_dbg(hub_dev, "standalone hub\n");
1077
1078         switch (wHubCharacteristics & HUB_CHAR_LPSM) {
1079         case HUB_CHAR_COMMON_LPSM:
1080                 dev_dbg(hub_dev, "ganged power switching\n");
1081                 break;
1082         case HUB_CHAR_INDV_PORT_LPSM:
1083                 dev_dbg(hub_dev, "individual port power switching\n");
1084                 break;
1085         case HUB_CHAR_NO_LPSM:
1086         case HUB_CHAR_LPSM:
1087                 dev_dbg(hub_dev, "no power switching (usb 1.0)\n");
1088                 break;
1089         }
1090
1091         switch (wHubCharacteristics & HUB_CHAR_OCPM) {
1092         case HUB_CHAR_COMMON_OCPM:
1093                 dev_dbg(hub_dev, "global over-current protection\n");
1094                 break;
1095         case HUB_CHAR_INDV_PORT_OCPM:
1096                 dev_dbg(hub_dev, "individual port over-current protection\n");
1097                 break;
1098         case HUB_CHAR_NO_OCPM:
1099         case HUB_CHAR_OCPM:
1100                 dev_dbg(hub_dev, "no over-current protection\n");
1101                 break;
1102         }
1103
1104         spin_lock_init (&hub->tt.lock);
1105         INIT_LIST_HEAD (&hub->tt.clear_list);
1106         INIT_WORK(&hub->tt.clear_work, hub_tt_work);
1107         switch (hdev->descriptor.bDeviceProtocol) {
1108         case USB_HUB_PR_FS:
1109                 break;
1110         case USB_HUB_PR_HS_SINGLE_TT:
1111                 dev_dbg(hub_dev, "Single TT\n");
1112                 hub->tt.hub = hdev;
1113                 break;
1114         case USB_HUB_PR_HS_MULTI_TT:
1115                 ret = usb_set_interface(hdev, 0, 1);
1116                 if (ret == 0) {
1117                         dev_dbg(hub_dev, "TT per port\n");
1118                         hub->tt.multi = 1;
1119                 } else
1120                         dev_err(hub_dev, "Using single TT (err %d)\n",
1121                                 ret);
1122                 hub->tt.hub = hdev;
1123                 break;
1124         case USB_HUB_PR_SS:
1125                 /* USB 3.0 hubs don't have a TT */
1126                 break;
1127         default:
1128                 dev_dbg(hub_dev, "Unrecognized hub protocol %d\n",
1129                         hdev->descriptor.bDeviceProtocol);
1130                 break;
1131         }
1132
1133         /* Note 8 FS bit times == (8 bits / 12000000 bps) ~= 666ns */
1134         switch (wHubCharacteristics & HUB_CHAR_TTTT) {
1135                 case HUB_TTTT_8_BITS:
1136                         if (hdev->descriptor.bDeviceProtocol != 0) {
1137                                 hub->tt.think_time = 666;
1138                                 dev_dbg(hub_dev, "TT requires at most %d "
1139                                                 "FS bit times (%d ns)\n",
1140                                         8, hub->tt.think_time);
1141                         }
1142                         break;
1143                 case HUB_TTTT_16_BITS:
1144                         hub->tt.think_time = 666 * 2;
1145                         dev_dbg(hub_dev, "TT requires at most %d "
1146                                         "FS bit times (%d ns)\n",
1147                                 16, hub->tt.think_time);
1148                         break;
1149                 case HUB_TTTT_24_BITS:
1150                         hub->tt.think_time = 666 * 3;
1151                         dev_dbg(hub_dev, "TT requires at most %d "
1152                                         "FS bit times (%d ns)\n",
1153                                 24, hub->tt.think_time);
1154                         break;
1155                 case HUB_TTTT_32_BITS:
1156                         hub->tt.think_time = 666 * 4;
1157                         dev_dbg(hub_dev, "TT requires at most %d "
1158                                         "FS bit times (%d ns)\n",
1159                                 32, hub->tt.think_time);
1160                         break;
1161         }
1162
1163         /* probe() zeroes hub->indicator[] */
1164         if (wHubCharacteristics & HUB_CHAR_PORTIND) {
1165                 hub->has_indicators = 1;
1166                 dev_dbg(hub_dev, "Port indicators are supported\n");
1167         }
1168
1169         dev_dbg(hub_dev, "power on to power good time: %dms\n",
1170                 hub->descriptor->bPwrOn2PwrGood * 2);
1171
1172         /* power budgeting mostly matters with bus-powered hubs,
1173          * and battery-powered root hubs (may provide just 8 mA).
1174          */
1175         ret = usb_get_status(hdev, USB_RECIP_DEVICE, 0, &hubstatus);
1176         if (ret < 2) {
1177                 message = "can't get hub status";
1178                 goto fail;
1179         }
1180         le16_to_cpus(&hubstatus);
1181         if (hdev == hdev->bus->root_hub) {
1182                 if (hdev->bus_mA == 0 || hdev->bus_mA >= 500)
1183                         hub->mA_per_port = 500;
1184                 else {
1185                         hub->mA_per_port = hdev->bus_mA;
1186                         hub->limited_power = 1;
1187                 }
1188         } else if ((hubstatus & (1 << USB_DEVICE_SELF_POWERED)) == 0) {
1189                 dev_dbg(hub_dev, "hub controller current requirement: %dmA\n",
1190                         hub->descriptor->bHubContrCurrent);
1191                 hub->limited_power = 1;
1192                 if (hdev->maxchild > 0) {
1193                         int remaining = hdev->bus_mA -
1194                                         hub->descriptor->bHubContrCurrent;
1195
1196                         if (remaining < hdev->maxchild * 100)
1197                                 dev_warn(hub_dev,
1198                                         "insufficient power available "
1199                                         "to use all downstream ports\n");
1200                         hub->mA_per_port = 100;         /* 7.2.1.1 */
1201                 }
1202         } else {        /* Self-powered external hub */
1203                 /* FIXME: What about battery-powered external hubs that
1204                  * provide less current per port? */
1205                 hub->mA_per_port = 500;
1206         }
1207         if (hub->mA_per_port < 500)
1208                 dev_dbg(hub_dev, "%umA bus power budget for each child\n",
1209                                 hub->mA_per_port);
1210
1211         /* Update the HCD's internal representation of this hub before khubd
1212          * starts getting port status changes for devices under the hub.
1213          */
1214         hcd = bus_to_hcd(hdev->bus);
1215         if (hcd->driver->update_hub_device) {
1216                 ret = hcd->driver->update_hub_device(hcd, hdev,
1217                                 &hub->tt, GFP_KERNEL);
1218                 if (ret < 0) {
1219                         message = "can't update HCD hub info";
1220                         goto fail;
1221                 }
1222         }
1223
1224         ret = hub_hub_status(hub, &hubstatus, &hubchange);
1225         if (ret < 0) {
1226                 message = "can't get hub status";
1227                 goto fail;
1228         }
1229
1230         /* local power status reports aren't always correct */
1231         if (hdev->actconfig->desc.bmAttributes & USB_CONFIG_ATT_SELFPOWER)
1232                 dev_dbg(hub_dev, "local power source is %s\n",
1233                         (hubstatus & HUB_STATUS_LOCAL_POWER)
1234                         ? "lost (inactive)" : "good");
1235
1236         if ((wHubCharacteristics & HUB_CHAR_OCPM) == 0)
1237                 dev_dbg(hub_dev, "%sover-current condition exists\n",
1238                         (hubstatus & HUB_STATUS_OVERCURRENT) ? "" : "no ");
1239
1240         /* set up the interrupt endpoint
1241          * We use the EP's maxpacket size instead of (PORTS+1+7)/8
1242          * bytes as USB2.0[11.12.3] says because some hubs are known
1243          * to send more data (and thus cause overflow). For root hubs,
1244          * maxpktsize is defined in hcd.c's fake endpoint descriptors
1245          * to be big enough for at least USB_MAXCHILDREN ports. */
1246         pipe = usb_rcvintpipe(hdev, endpoint->bEndpointAddress);
1247         maxp = usb_maxpacket(hdev, pipe, usb_pipeout(pipe));
1248
1249         if (maxp > sizeof(*hub->buffer))
1250                 maxp = sizeof(*hub->buffer);
1251
1252         hub->urb = usb_alloc_urb(0, GFP_KERNEL);
1253         if (!hub->urb) {
1254                 ret = -ENOMEM;
1255                 goto fail;
1256         }
1257
1258         usb_fill_int_urb(hub->urb, hdev, pipe, *hub->buffer, maxp, hub_irq,
1259                 hub, endpoint->bInterval);
1260
1261         /* maybe cycle the hub leds */
1262         if (hub->has_indicators && blinkenlights)
1263                 hub->indicator [0] = INDICATOR_CYCLE;
1264
1265         hub_activate(hub, HUB_INIT);
1266         return 0;
1267
1268 fail:
1269         dev_err (hub_dev, "config failed, %s (err %d)\n",
1270                         message, ret);
1271         /* hub_disconnect() frees urb and descriptor */
1272         return ret;
1273 }
1274
1275 static void hub_release(struct kref *kref)
1276 {
1277         struct usb_hub *hub = container_of(kref, struct usb_hub, kref);
1278
1279         usb_put_intf(to_usb_interface(hub->intfdev));
1280         kfree(hub);
1281 }
1282
1283 static unsigned highspeed_hubs;
1284
1285 static void hub_disconnect(struct usb_interface *intf)
1286 {
1287         struct usb_hub *hub = usb_get_intfdata(intf);
1288         struct usb_device *hdev = interface_to_usbdev(intf);
1289
1290         /* Take the hub off the event list and don't let it be added again */
1291         spin_lock_irq(&hub_event_lock);
1292         if (!list_empty(&hub->event_list)) {
1293                 list_del_init(&hub->event_list);
1294                 usb_autopm_put_interface_no_suspend(intf);
1295         }
1296         hub->disconnected = 1;
1297         spin_unlock_irq(&hub_event_lock);
1298
1299         /* Disconnect all children and quiesce the hub */
1300         hub->error = 0;
1301         hub_quiesce(hub, HUB_DISCONNECT);
1302
1303         usb_set_intfdata (intf, NULL);
1304         hub->hdev->maxchild = 0;
1305
1306         if (hub->hdev->speed == USB_SPEED_HIGH)
1307                 highspeed_hubs--;
1308
1309         usb_free_urb(hub->urb);
1310         kfree(hdev->children);
1311         kfree(hub->port_owners);
1312         kfree(hub->descriptor);
1313         kfree(hub->status);
1314         kfree(hub->buffer);
1315
1316         kref_put(&hub->kref, hub_release);
1317 }
1318
1319 static int hub_probe(struct usb_interface *intf, const struct usb_device_id *id)
1320 {
1321         struct usb_host_interface *desc;
1322         struct usb_endpoint_descriptor *endpoint;
1323         struct usb_device *hdev;
1324         struct usb_hub *hub;
1325
1326         desc = intf->cur_altsetting;
1327         hdev = interface_to_usbdev(intf);
1328
1329         /* Hubs have proper suspend/resume support. */
1330         usb_enable_autosuspend(hdev);
1331
1332         if (hdev->level == MAX_TOPO_LEVEL) {
1333                 dev_err(&intf->dev,
1334                         "Unsupported bus topology: hub nested too deep\n");
1335                 return -E2BIG;
1336         }
1337
1338 #ifdef  CONFIG_USB_OTG_BLACKLIST_HUB
1339         if (hdev->parent) {
1340                 dev_warn(&intf->dev, "ignoring external hub\n");
1341                 return -ENODEV;
1342         }
1343 #endif
1344
1345         /* Some hubs have a subclass of 1, which AFAICT according to the */
1346         /*  specs is not defined, but it works */
1347         if ((desc->desc.bInterfaceSubClass != 0) &&
1348             (desc->desc.bInterfaceSubClass != 1)) {
1349 descriptor_error:
1350                 dev_err (&intf->dev, "bad descriptor, ignoring hub\n");
1351                 return -EIO;
1352         }
1353
1354         /* Multiple endpoints? What kind of mutant ninja-hub is this? */
1355         if (desc->desc.bNumEndpoints != 1)
1356                 goto descriptor_error;
1357
1358         endpoint = &desc->endpoint[0].desc;
1359
1360         /* If it's not an interrupt in endpoint, we'd better punt! */
1361         if (!usb_endpoint_is_int_in(endpoint))
1362                 goto descriptor_error;
1363
1364         /* We found a hub */
1365         dev_info (&intf->dev, "USB hub found\n");
1366
1367         hub = kzalloc(sizeof(*hub), GFP_KERNEL);
1368         if (!hub) {
1369                 dev_dbg (&intf->dev, "couldn't kmalloc hub struct\n");
1370                 return -ENOMEM;
1371         }
1372
1373         kref_init(&hub->kref);
1374         INIT_LIST_HEAD(&hub->event_list);
1375         hub->intfdev = &intf->dev;
1376         hub->hdev = hdev;
1377         INIT_DELAYED_WORK(&hub->leds, led_work);
1378         INIT_DELAYED_WORK(&hub->init_work, NULL);
1379         usb_get_intf(intf);
1380
1381         usb_set_intfdata (intf, hub);
1382         intf->needs_remote_wakeup = 1;
1383
1384         if (hdev->speed == USB_SPEED_HIGH)
1385                 highspeed_hubs++;
1386
1387         if (hub_configure(hub, endpoint) >= 0)
1388                 return 0;
1389
1390         hub_disconnect (intf);
1391         return -ENODEV;
1392 }
1393
1394 static int
1395 hub_ioctl(struct usb_interface *intf, unsigned int code, void *user_data)
1396 {
1397         struct usb_device *hdev = interface_to_usbdev (intf);
1398
1399         /* assert ifno == 0 (part of hub spec) */
1400         switch (code) {
1401         case USBDEVFS_HUB_PORTINFO: {
1402                 struct usbdevfs_hub_portinfo *info = user_data;
1403                 int i;
1404
1405                 spin_lock_irq(&device_state_lock);
1406                 if (hdev->devnum <= 0)
1407                         info->nports = 0;
1408                 else {
1409                         info->nports = hdev->maxchild;
1410                         for (i = 0; i < info->nports; i++) {
1411                                 if (hdev->children[i] == NULL)
1412                                         info->port[i] = 0;
1413                                 else
1414                                         info->port[i] =
1415                                                 hdev->children[i]->devnum;
1416                         }
1417                 }
1418                 spin_unlock_irq(&device_state_lock);
1419
1420                 return info->nports + 1;
1421                 }
1422
1423         default:
1424                 return -ENOSYS;
1425         }
1426 }
1427
1428 /*
1429  * Allow user programs to claim ports on a hub.  When a device is attached
1430  * to one of these "claimed" ports, the program will "own" the device.
1431  */
1432 static int find_port_owner(struct usb_device *hdev, unsigned port1,
1433                 void ***ppowner)
1434 {
1435         if (hdev->state == USB_STATE_NOTATTACHED)
1436                 return -ENODEV;
1437         if (port1 == 0 || port1 > hdev->maxchild)
1438                 return -EINVAL;
1439
1440         /* This assumes that devices not managed by the hub driver
1441          * will always have maxchild equal to 0.
1442          */
1443         *ppowner = &(hdev_to_hub(hdev)->port_owners[port1 - 1]);
1444         return 0;
1445 }
1446
1447 /* In the following three functions, the caller must hold hdev's lock */
1448 int usb_hub_claim_port(struct usb_device *hdev, unsigned port1, void *owner)
1449 {
1450         int rc;
1451         void **powner;
1452
1453         rc = find_port_owner(hdev, port1, &powner);
1454         if (rc)
1455                 return rc;
1456         if (*powner)
1457                 return -EBUSY;
1458         *powner = owner;
1459         return rc;
1460 }
1461
1462 int usb_hub_release_port(struct usb_device *hdev, unsigned port1, void *owner)
1463 {
1464         int rc;
1465         void **powner;
1466
1467         rc = find_port_owner(hdev, port1, &powner);
1468         if (rc)
1469                 return rc;
1470         if (*powner != owner)
1471                 return -ENOENT;
1472         *powner = NULL;
1473         return rc;
1474 }
1475
1476 void usb_hub_release_all_ports(struct usb_device *hdev, void *owner)
1477 {
1478         int n;
1479         void **powner;
1480
1481         n = find_port_owner(hdev, 1, &powner);
1482         if (n == 0) {
1483                 for (; n < hdev->maxchild; (++n, ++powner)) {
1484                         if (*powner == owner)
1485                                 *powner = NULL;
1486                 }
1487         }
1488 }
1489
1490 /* The caller must hold udev's lock */
1491 bool usb_device_is_owned(struct usb_device *udev)
1492 {
1493         struct usb_hub *hub;
1494
1495         if (udev->state == USB_STATE_NOTATTACHED || !udev->parent)
1496                 return false;
1497         hub = hdev_to_hub(udev->parent);
1498         return !!hub->port_owners[udev->portnum - 1];
1499 }
1500
1501
1502 static void recursively_mark_NOTATTACHED(struct usb_device *udev)
1503 {
1504         int i;
1505
1506         for (i = 0; i < udev->maxchild; ++i) {
1507                 if (udev->children[i])
1508                         recursively_mark_NOTATTACHED(udev->children[i]);
1509         }
1510         if (udev->state == USB_STATE_SUSPENDED)
1511                 udev->active_duration -= jiffies;
1512         udev->state = USB_STATE_NOTATTACHED;
1513 }
1514
1515 /**
1516  * usb_set_device_state - change a device's current state (usbcore, hcds)
1517  * @udev: pointer to device whose state should be changed
1518  * @new_state: new state value to be stored
1519  *
1520  * udev->state is _not_ fully protected by the device lock.  Although
1521  * most transitions are made only while holding the lock, the state can
1522  * can change to USB_STATE_NOTATTACHED at almost any time.  This
1523  * is so that devices can be marked as disconnected as soon as possible,
1524  * without having to wait for any semaphores to be released.  As a result,
1525  * all changes to any device's state must be protected by the
1526  * device_state_lock spinlock.
1527  *
1528  * Once a device has been added to the device tree, all changes to its state
1529  * should be made using this routine.  The state should _not_ be set directly.
1530  *
1531  * If udev->state is already USB_STATE_NOTATTACHED then no change is made.
1532  * Otherwise udev->state is set to new_state, and if new_state is
1533  * USB_STATE_NOTATTACHED then all of udev's descendants' states are also set
1534  * to USB_STATE_NOTATTACHED.
1535  */
1536 void usb_set_device_state(struct usb_device *udev,
1537                 enum usb_device_state new_state)
1538 {
1539         unsigned long flags;
1540         int wakeup = -1;
1541
1542         spin_lock_irqsave(&device_state_lock, flags);
1543         if (udev->state == USB_STATE_NOTATTACHED)
1544                 ;       /* do nothing */
1545         else if (new_state != USB_STATE_NOTATTACHED) {
1546
1547                 /* root hub wakeup capabilities are managed out-of-band
1548                  * and may involve silicon errata ... ignore them here.
1549                  */
1550                 if (udev->parent) {
1551                         if (udev->state == USB_STATE_SUSPENDED
1552                                         || new_state == USB_STATE_SUSPENDED)
1553                                 ;       /* No change to wakeup settings */
1554                         else if (new_state == USB_STATE_CONFIGURED)
1555                                 wakeup = udev->actconfig->desc.bmAttributes
1556                                          & USB_CONFIG_ATT_WAKEUP;
1557                         else
1558                                 wakeup = 0;
1559                 }
1560                 if (udev->state == USB_STATE_SUSPENDED &&
1561                         new_state != USB_STATE_SUSPENDED)
1562                         udev->active_duration -= jiffies;
1563                 else if (new_state == USB_STATE_SUSPENDED &&
1564                                 udev->state != USB_STATE_SUSPENDED)
1565                         udev->active_duration += jiffies;
1566                 udev->state = new_state;
1567         } else
1568                 recursively_mark_NOTATTACHED(udev);
1569         spin_unlock_irqrestore(&device_state_lock, flags);
1570         if (wakeup >= 0)
1571                 device_set_wakeup_capable(&udev->dev, wakeup);
1572 }
1573 EXPORT_SYMBOL_GPL(usb_set_device_state);
1574
1575 /*
1576  * Choose a device number.
1577  *
1578  * Device numbers are used as filenames in usbfs.  On USB-1.1 and
1579  * USB-2.0 buses they are also used as device addresses, however on
1580  * USB-3.0 buses the address is assigned by the controller hardware
1581  * and it usually is not the same as the device number.
1582  *
1583  * WUSB devices are simple: they have no hubs behind, so the mapping
1584  * device <-> virtual port number becomes 1:1. Why? to simplify the
1585  * life of the device connection logic in
1586  * drivers/usb/wusbcore/devconnect.c. When we do the initial secret
1587  * handshake we need to assign a temporary address in the unauthorized
1588  * space. For simplicity we use the first virtual port number found to
1589  * be free [drivers/usb/wusbcore/devconnect.c:wusbhc_devconnect_ack()]
1590  * and that becomes it's address [X < 128] or its unauthorized address
1591  * [X | 0x80].
1592  *
1593  * We add 1 as an offset to the one-based USB-stack port number
1594  * (zero-based wusb virtual port index) for two reasons: (a) dev addr
1595  * 0 is reserved by USB for default address; (b) Linux's USB stack
1596  * uses always #1 for the root hub of the controller. So USB stack's
1597  * port #1, which is wusb virtual-port #0 has address #2.
1598  *
1599  * Devices connected under xHCI are not as simple.  The host controller
1600  * supports virtualization, so the hardware assigns device addresses and
1601  * the HCD must setup data structures before issuing a set address
1602  * command to the hardware.
1603  */
1604 static void choose_devnum(struct usb_device *udev)
1605 {
1606         int             devnum;
1607         struct usb_bus  *bus = udev->bus;
1608
1609         /* If khubd ever becomes multithreaded, this will need a lock */
1610         if (udev->wusb) {
1611                 devnum = udev->portnum + 1;
1612                 BUG_ON(test_bit(devnum, bus->devmap.devicemap));
1613         } else {
1614                 /* Try to allocate the next devnum beginning at
1615                  * bus->devnum_next. */
1616                 devnum = find_next_zero_bit(bus->devmap.devicemap, 128,
1617                                             bus->devnum_next);
1618                 if (devnum >= 128)
1619                         devnum = find_next_zero_bit(bus->devmap.devicemap,
1620                                                     128, 1);
1621                 bus->devnum_next = ( devnum >= 127 ? 1 : devnum + 1);
1622         }
1623         if (devnum < 128) {
1624                 set_bit(devnum, bus->devmap.devicemap);
1625                 udev->devnum = devnum;
1626         }
1627 }
1628
1629 static void release_devnum(struct usb_device *udev)
1630 {
1631         if (udev->devnum > 0) {
1632                 clear_bit(udev->devnum, udev->bus->devmap.devicemap);
1633                 udev->devnum = -1;
1634         }
1635 }
1636
1637 static void update_devnum(struct usb_device *udev, int devnum)
1638 {
1639         /* The address for a WUSB device is managed by wusbcore. */
1640         if (!udev->wusb)
1641                 udev->devnum = devnum;
1642 }
1643
1644 static void hub_free_dev(struct usb_device *udev)
1645 {
1646         struct usb_hcd *hcd = bus_to_hcd(udev->bus);
1647
1648         /* Root hubs aren't real devices, so don't free HCD resources */
1649         if (hcd->driver->free_dev && udev->parent)
1650                 hcd->driver->free_dev(hcd, udev);
1651 }
1652
1653 /**
1654  * usb_disconnect - disconnect a device (usbcore-internal)
1655  * @pdev: pointer to device being disconnected
1656  * Context: !in_interrupt ()
1657  *
1658  * Something got disconnected. Get rid of it and all of its children.
1659  *
1660  * If *pdev is a normal device then the parent hub must already be locked.
1661  * If *pdev is a root hub then this routine will acquire the
1662  * usb_bus_list_lock on behalf of the caller.
1663  *
1664  * Only hub drivers (including virtual root hub drivers for host
1665  * controllers) should ever call this.
1666  *
1667  * This call is synchronous, and may not be used in an interrupt context.
1668  */
1669 void usb_disconnect(struct usb_device **pdev)
1670 {
1671         struct usb_device       *udev = *pdev;
1672         int                     i;
1673
1674         /* mark the device as inactive, so any further urb submissions for
1675          * this device (and any of its children) will fail immediately.
1676          * this quiesces everything except pending urbs.
1677          */
1678         usb_set_device_state(udev, USB_STATE_NOTATTACHED);
1679         dev_info(&udev->dev, "USB disconnect, device number %d\n",
1680                         udev->devnum);
1681
1682         usb_lock_device(udev);
1683
1684         /* Free up all the children before we remove this device */
1685         for (i = 0; i < udev->maxchild; i++) {
1686                 if (udev->children[i])
1687                         usb_disconnect(&udev->children[i]);
1688         }
1689
1690         /* deallocate hcd/hardware state ... nuking all pending urbs and
1691          * cleaning up all state associated with the current configuration
1692          * so that the hardware is now fully quiesced.
1693          */
1694         dev_dbg (&udev->dev, "unregistering device\n");
1695         usb_disable_device(udev, 0);
1696         usb_hcd_synchronize_unlinks(udev);
1697
1698         usb_remove_ep_devs(&udev->ep0);
1699         usb_unlock_device(udev);
1700
1701         /* Unregister the device.  The device driver is responsible
1702          * for de-configuring the device and invoking the remove-device
1703          * notifier chain (used by usbfs and possibly others).
1704          */
1705         device_del(&udev->dev);
1706
1707         /* Free the device number and delete the parent's children[]
1708          * (or root_hub) pointer.
1709          */
1710         release_devnum(udev);
1711
1712         /* Avoid races with recursively_mark_NOTATTACHED() */
1713         spin_lock_irq(&device_state_lock);
1714         *pdev = NULL;
1715         spin_unlock_irq(&device_state_lock);
1716
1717         hub_free_dev(udev);
1718
1719         put_device(&udev->dev);
1720 }
1721
1722 #ifdef CONFIG_USB_ANNOUNCE_NEW_DEVICES
1723 static void show_string(struct usb_device *udev, char *id, char *string)
1724 {
1725         if (!string)
1726                 return;
1727         dev_printk(KERN_INFO, &udev->dev, "%s: %s\n", id, string);
1728 }
1729
1730 static void announce_device(struct usb_device *udev)
1731 {
1732         dev_info(&udev->dev, "New USB device found, idVendor=%04x, idProduct=%04x\n",
1733                 le16_to_cpu(udev->descriptor.idVendor),
1734                 le16_to_cpu(udev->descriptor.idProduct));
1735         dev_info(&udev->dev,
1736                 "New USB device strings: Mfr=%d, Product=%d, SerialNumber=%d\n",
1737                 udev->descriptor.iManufacturer,
1738                 udev->descriptor.iProduct,
1739                 udev->descriptor.iSerialNumber);
1740         show_string(udev, "Product", udev->product);
1741         show_string(udev, "Manufacturer", udev->manufacturer);
1742         show_string(udev, "SerialNumber", udev->serial);
1743 }
1744 #else
1745 static inline void announce_device(struct usb_device *udev) { }
1746 #endif
1747
1748 #ifdef  CONFIG_USB_OTG
1749 #include "otg_whitelist.h"
1750 #endif
1751
1752 /**
1753  * usb_enumerate_device_otg - FIXME (usbcore-internal)
1754  * @udev: newly addressed device (in ADDRESS state)
1755  *
1756  * Finish enumeration for On-The-Go devices
1757  */
1758 static int usb_enumerate_device_otg(struct usb_device *udev)
1759 {
1760         int err = 0;
1761
1762 #ifdef  CONFIG_USB_OTG
1763         /*
1764          * OTG-aware devices on OTG-capable root hubs may be able to use SRP,
1765          * to wake us after we've powered off VBUS; and HNP, switching roles
1766          * "host" to "peripheral".  The OTG descriptor helps figure this out.
1767          */
1768         if (!udev->bus->is_b_host
1769                         && udev->config
1770                         && udev->parent == udev->bus->root_hub) {
1771                 struct usb_otg_descriptor       *desc = NULL;
1772                 struct usb_bus                  *bus = udev->bus;
1773
1774                 /* descriptor may appear anywhere in config */
1775                 if (__usb_get_extra_descriptor (udev->rawdescriptors[0],
1776                                         le16_to_cpu(udev->config[0].desc.wTotalLength),
1777                                         USB_DT_OTG, (void **) &desc) == 0) {
1778                         if (desc->bmAttributes & USB_OTG_HNP) {
1779                                 unsigned                port1 = udev->portnum;
1780
1781                                 dev_info(&udev->dev,
1782                                         "Dual-Role OTG device on %sHNP port\n",
1783                                         (port1 == bus->otg_port)
1784                                                 ? "" : "non-");
1785
1786                                 /* enable HNP before suspend, it's simpler */
1787                                 if (port1 == bus->otg_port)
1788                                         bus->b_hnp_enable = 1;
1789                                 err = usb_control_msg(udev,
1790                                         usb_sndctrlpipe(udev, 0),
1791                                         USB_REQ_SET_FEATURE, 0,
1792                                         bus->b_hnp_enable
1793                                                 ? USB_DEVICE_B_HNP_ENABLE
1794                                                 : USB_DEVICE_A_ALT_HNP_SUPPORT,
1795                                         0, NULL, 0, USB_CTRL_SET_TIMEOUT);
1796                                 if (err < 0) {
1797                                         /* OTG MESSAGE: report errors here,
1798                                          * customize to match your product.
1799                                          */
1800                                         dev_info(&udev->dev,
1801                                                 "can't set HNP mode: %d\n",
1802                                                 err);
1803                                         bus->b_hnp_enable = 0;
1804                                 }
1805                         }
1806                 }
1807         }
1808
1809         if (!is_targeted(udev)) {
1810
1811                 /* Maybe it can talk to us, though we can't talk to it.
1812                  * (Includes HNP test device.)
1813                  */
1814                 if (udev->bus->b_hnp_enable || udev->bus->is_b_host) {
1815                         err = usb_port_suspend(udev, PMSG_SUSPEND);
1816                         if (err < 0)
1817                                 dev_dbg(&udev->dev, "HNP fail, %d\n", err);
1818                 }
1819                 err = -ENOTSUPP;
1820                 goto fail;
1821         }
1822 fail:
1823 #endif
1824         return err;
1825 }
1826
1827
1828 /**
1829  * usb_enumerate_device - Read device configs/intfs/otg (usbcore-internal)
1830  * @udev: newly addressed device (in ADDRESS state)
1831  *
1832  * This is only called by usb_new_device() and usb_authorize_device()
1833  * and FIXME -- all comments that apply to them apply here wrt to
1834  * environment.
1835  *
1836  * If the device is WUSB and not authorized, we don't attempt to read
1837  * the string descriptors, as they will be errored out by the device
1838  * until it has been authorized.
1839  */
1840 static int usb_enumerate_device(struct usb_device *udev)
1841 {
1842         int err;
1843
1844         if (udev->config == NULL) {
1845                 err = usb_get_configuration(udev);
1846                 if (err < 0) {
1847                         dev_err(&udev->dev, "can't read configurations, error %d\n",
1848                                 err);
1849                         goto fail;
1850                 }
1851         }
1852         if (udev->wusb == 1 && udev->authorized == 0) {
1853                 udev->product = kstrdup("n/a (unauthorized)", GFP_KERNEL);
1854                 udev->manufacturer = kstrdup("n/a (unauthorized)", GFP_KERNEL);
1855                 udev->serial = kstrdup("n/a (unauthorized)", GFP_KERNEL);
1856         }
1857         else {
1858                 /* read the standard strings and cache them if present */
1859                 udev->product = usb_cache_string(udev, udev->descriptor.iProduct);
1860                 udev->manufacturer = usb_cache_string(udev,
1861                                                       udev->descriptor.iManufacturer);
1862                 udev->serial = usb_cache_string(udev, udev->descriptor.iSerialNumber);
1863         }
1864         err = usb_enumerate_device_otg(udev);
1865 fail:
1866         return err;
1867 }
1868
1869 static void set_usb_port_removable(struct usb_device *udev)
1870 {
1871         struct usb_device *hdev = udev->parent;
1872         struct usb_hub *hub;
1873         u8 port = udev->portnum;
1874         u16 wHubCharacteristics;
1875         bool removable = true;
1876
1877         if (!hdev)
1878                 return;
1879
1880         hub = hdev_to_hub(udev->parent);
1881
1882         wHubCharacteristics = le16_to_cpu(hub->descriptor->wHubCharacteristics);
1883
1884         if (!(wHubCharacteristics & HUB_CHAR_COMPOUND))
1885                 return;
1886
1887         if (hub_is_superspeed(hdev)) {
1888                 if (hub->descriptor->u.ss.DeviceRemovable & (1 << port))
1889                         removable = false;
1890         } else {
1891                 if (hub->descriptor->u.hs.DeviceRemovable[port / 8] & (1 << (port % 8)))
1892                         removable = false;
1893         }
1894
1895         if (removable)
1896                 udev->removable = USB_DEVICE_REMOVABLE;
1897         else
1898                 udev->removable = USB_DEVICE_FIXED;
1899 }
1900
1901 /**
1902  * usb_new_device - perform initial device setup (usbcore-internal)
1903  * @udev: newly addressed device (in ADDRESS state)
1904  *
1905  * This is called with devices which have been detected but not fully
1906  * enumerated.  The device descriptor is available, but not descriptors
1907  * for any device configuration.  The caller must have locked either
1908  * the parent hub (if udev is a normal device) or else the
1909  * usb_bus_list_lock (if udev is a root hub).  The parent's pointer to
1910  * udev has already been installed, but udev is not yet visible through
1911  * sysfs or other filesystem code.
1912  *
1913  * It will return if the device is configured properly or not.  Zero if
1914  * the interface was registered with the driver core; else a negative
1915  * errno value.
1916  *
1917  * This call is synchronous, and may not be used in an interrupt context.
1918  *
1919  * Only the hub driver or root-hub registrar should ever call this.
1920  */
1921 int usb_new_device(struct usb_device *udev)
1922 {
1923         int err;
1924
1925         if (udev->parent) {
1926                 /* Initialize non-root-hub device wakeup to disabled;
1927                  * device (un)configuration controls wakeup capable
1928                  * sysfs power/wakeup controls wakeup enabled/disabled
1929                  */
1930                 device_init_wakeup(&udev->dev, 0);
1931         }
1932
1933         /* Tell the runtime-PM framework the device is active */
1934         pm_runtime_set_active(&udev->dev);
1935         pm_runtime_get_noresume(&udev->dev);
1936         pm_runtime_use_autosuspend(&udev->dev);
1937         pm_runtime_enable(&udev->dev);
1938
1939         /* By default, forbid autosuspend for all devices.  It will be
1940          * allowed for hubs during binding.
1941          */
1942         usb_disable_autosuspend(udev);
1943
1944         err = usb_enumerate_device(udev);       /* Read descriptors */
1945         if (err < 0)
1946                 goto fail;
1947         dev_dbg(&udev->dev, "udev %d, busnum %d, minor = %d\n",
1948                         udev->devnum, udev->bus->busnum,
1949                         (((udev->bus->busnum-1) * 128) + (udev->devnum-1)));
1950         /* export the usbdev device-node for libusb */
1951         udev->dev.devt = MKDEV(USB_DEVICE_MAJOR,
1952                         (((udev->bus->busnum-1) * 128) + (udev->devnum-1)));
1953
1954         /* Tell the world! */
1955         announce_device(udev);
1956
1957         device_enable_async_suspend(&udev->dev);
1958
1959         /*
1960          * check whether the hub marks this port as non-removable. Do it
1961          * now so that platform-specific data can override it in
1962          * device_add()
1963          */
1964         if (udev->parent)
1965                 set_usb_port_removable(udev);
1966
1967         /* Register the device.  The device driver is responsible
1968          * for configuring the device and invoking the add-device
1969          * notifier chain (used by usbfs and possibly others).
1970          */
1971         err = device_add(&udev->dev);
1972         if (err) {
1973                 dev_err(&udev->dev, "can't device_add, error %d\n", err);
1974                 goto fail;
1975         }
1976
1977         (void) usb_create_ep_devs(&udev->dev, &udev->ep0, udev);
1978         usb_mark_last_busy(udev);
1979         pm_runtime_put_sync_autosuspend(&udev->dev);
1980         return err;
1981
1982 fail:
1983         usb_set_device_state(udev, USB_STATE_NOTATTACHED);
1984         pm_runtime_disable(&udev->dev);
1985         pm_runtime_set_suspended(&udev->dev);
1986         return err;
1987 }
1988
1989
1990 /**
1991  * usb_deauthorize_device - deauthorize a device (usbcore-internal)
1992  * @usb_dev: USB device
1993  *
1994  * Move the USB device to a very basic state where interfaces are disabled
1995  * and the device is in fact unconfigured and unusable.
1996  *
1997  * We share a lock (that we have) with device_del(), so we need to
1998  * defer its call.
1999  */
2000 int usb_deauthorize_device(struct usb_device *usb_dev)
2001 {
2002         usb_lock_device(usb_dev);
2003         if (usb_dev->authorized == 0)
2004                 goto out_unauthorized;
2005
2006         usb_dev->authorized = 0;
2007         usb_set_configuration(usb_dev, -1);
2008
2009         kfree(usb_dev->product);
2010         usb_dev->product = kstrdup("n/a (unauthorized)", GFP_KERNEL);
2011         kfree(usb_dev->manufacturer);
2012         usb_dev->manufacturer = kstrdup("n/a (unauthorized)", GFP_KERNEL);
2013         kfree(usb_dev->serial);
2014         usb_dev->serial = kstrdup("n/a (unauthorized)", GFP_KERNEL);
2015
2016         usb_destroy_configuration(usb_dev);
2017         usb_dev->descriptor.bNumConfigurations = 0;
2018
2019 out_unauthorized:
2020         usb_unlock_device(usb_dev);
2021         return 0;
2022 }
2023
2024
2025 int usb_authorize_device(struct usb_device *usb_dev)
2026 {
2027         int result = 0, c;
2028
2029         usb_lock_device(usb_dev);
2030         if (usb_dev->authorized == 1)
2031                 goto out_authorized;
2032
2033         result = usb_autoresume_device(usb_dev);
2034         if (result < 0) {
2035                 dev_err(&usb_dev->dev,
2036                         "can't autoresume for authorization: %d\n", result);
2037                 goto error_autoresume;
2038         }
2039         result = usb_get_device_descriptor(usb_dev, sizeof(usb_dev->descriptor));
2040         if (result < 0) {
2041                 dev_err(&usb_dev->dev, "can't re-read device descriptor for "
2042                         "authorization: %d\n", result);
2043                 goto error_device_descriptor;
2044         }
2045
2046         kfree(usb_dev->product);
2047         usb_dev->product = NULL;
2048         kfree(usb_dev->manufacturer);
2049         usb_dev->manufacturer = NULL;
2050         kfree(usb_dev->serial);
2051         usb_dev->serial = NULL;
2052
2053         usb_dev->authorized = 1;
2054         result = usb_enumerate_device(usb_dev);
2055         if (result < 0)
2056                 goto error_enumerate;
2057         /* Choose and set the configuration.  This registers the interfaces
2058          * with the driver core and lets interface drivers bind to them.
2059          */
2060         c = usb_choose_configuration(usb_dev);
2061         if (c >= 0) {
2062                 result = usb_set_configuration(usb_dev, c);
2063                 if (result) {
2064                         dev_err(&usb_dev->dev,
2065                                 "can't set config #%d, error %d\n", c, result);
2066                         /* This need not be fatal.  The user can try to
2067                          * set other configurations. */
2068                 }
2069         }
2070         dev_info(&usb_dev->dev, "authorized to connect\n");
2071
2072 error_enumerate:
2073 error_device_descriptor:
2074         usb_autosuspend_device(usb_dev);
2075 error_autoresume:
2076 out_authorized:
2077         usb_unlock_device(usb_dev);     // complements locktree
2078         return result;
2079 }
2080
2081
2082 /* Returns 1 if @hub is a WUSB root hub, 0 otherwise */
2083 static unsigned hub_is_wusb(struct usb_hub *hub)
2084 {
2085         struct usb_hcd *hcd;
2086         if (hub->hdev->parent != NULL)  /* not a root hub? */
2087                 return 0;
2088         hcd = container_of(hub->hdev->bus, struct usb_hcd, self);
2089         return hcd->wireless;
2090 }
2091
2092
2093 #define PORT_RESET_TRIES        5
2094 #define SET_ADDRESS_TRIES       2
2095 #define GET_DESCRIPTOR_TRIES    2
2096 #define SET_CONFIG_TRIES        (2 * (use_both_schemes + 1))
2097 #define USE_NEW_SCHEME(i)       ((i) / 2 == (int)old_scheme_first)
2098
2099 #define HUB_ROOT_RESET_TIME     50      /* times are in msec */
2100 #define HUB_SHORT_RESET_TIME    10
2101 #define HUB_BH_RESET_TIME       50
2102 #define HUB_LONG_RESET_TIME     200
2103 #define HUB_RESET_TIMEOUT       500
2104
2105 static int hub_port_reset(struct usb_hub *hub, int port1,
2106                         struct usb_device *udev, unsigned int delay, bool warm);
2107
2108 /* Is a USB 3.0 port in the Inactive or Complinance Mode state?
2109  * Port worm reset is required to recover
2110  */
2111 static bool hub_port_warm_reset_required(struct usb_hub *hub, u16 portstatus)
2112 {
2113         return hub_is_superspeed(hub->hdev) &&
2114                 (((portstatus & USB_PORT_STAT_LINK_STATE) ==
2115                   USB_SS_PORT_LS_SS_INACTIVE) ||
2116                  ((portstatus & USB_PORT_STAT_LINK_STATE) ==
2117                   USB_SS_PORT_LS_COMP_MOD)) ;
2118 }
2119
2120 static int hub_port_wait_reset(struct usb_hub *hub, int port1,
2121                         struct usb_device *udev, unsigned int delay, bool warm)
2122 {
2123         int delay_time, ret;
2124         u16 portstatus;
2125         u16 portchange;
2126
2127         for (delay_time = 0;
2128                         delay_time < HUB_RESET_TIMEOUT;
2129                         delay_time += delay) {
2130                 /* wait to give the device a chance to reset */
2131                 msleep(delay);
2132
2133                 /* read and decode port status */
2134                 ret = hub_port_status(hub, port1, &portstatus, &portchange);
2135                 if (ret < 0)
2136                         return ret;
2137
2138                 /*
2139                  * Some buggy devices require a warm reset to be issued even
2140                  * when the port appears not to be connected.
2141                  */
2142                 if (!warm) {
2143                         /*
2144                          * Some buggy devices can cause an NEC host controller
2145                          * to transition to the "Error" state after a hot port
2146                          * reset.  This will show up as the port state in
2147                          * "Inactive", and the port may also report a
2148                          * disconnect.  Forcing a warm port reset seems to make
2149                          * the device work.
2150                          *
2151                          * See https://bugzilla.kernel.org/show_bug.cgi?id=41752
2152                          */
2153                         if (hub_port_warm_reset_required(hub, portstatus)) {
2154                                 int ret;
2155
2156                                 if ((portchange & USB_PORT_STAT_C_CONNECTION))
2157                                         clear_port_feature(hub->hdev, port1,
2158                                                         USB_PORT_FEAT_C_CONNECTION);
2159                                 if (portchange & USB_PORT_STAT_C_LINK_STATE)
2160                                         clear_port_feature(hub->hdev, port1,
2161                                                         USB_PORT_FEAT_C_PORT_LINK_STATE);
2162                                 if (portchange & USB_PORT_STAT_C_RESET)
2163                                         clear_port_feature(hub->hdev, port1,
2164                                                         USB_PORT_FEAT_C_RESET);
2165                                 dev_dbg(hub->intfdev, "hot reset failed, warm reset port %d\n",
2166                                                 port1);
2167                                 ret = hub_port_reset(hub, port1,
2168                                                 udev, HUB_BH_RESET_TIME,
2169                                                 true);
2170                                 if ((portchange & USB_PORT_STAT_C_CONNECTION))
2171                                         clear_port_feature(hub->hdev, port1,
2172                                                         USB_PORT_FEAT_C_CONNECTION);
2173                                 return ret;
2174                         }
2175                         /* Device went away? */
2176                         if (!(portstatus & USB_PORT_STAT_CONNECTION))
2177                                 return -ENOTCONN;
2178
2179                         /* bomb out completely if the connection bounced */
2180                         if ((portchange & USB_PORT_STAT_C_CONNECTION))
2181                                 return -ENOTCONN;
2182
2183                         /* if we`ve finished resetting, then break out of
2184                          * the loop
2185                          */
2186                         if (!(portstatus & USB_PORT_STAT_RESET) &&
2187                             (portstatus & USB_PORT_STAT_ENABLE)) {
2188                                 if (hub_is_wusb(hub))
2189                                         udev->speed = USB_SPEED_WIRELESS;
2190                                 else if (hub_is_superspeed(hub->hdev))
2191                                         udev->speed = USB_SPEED_SUPER;
2192                                 else if (portstatus & USB_PORT_STAT_HIGH_SPEED)
2193                                         udev->speed = USB_SPEED_HIGH;
2194                                 else if (portstatus & USB_PORT_STAT_LOW_SPEED)
2195                                         udev->speed = USB_SPEED_LOW;
2196                                 else
2197                                         udev->speed = USB_SPEED_FULL;
2198                                 return 0;
2199                         }
2200                 } else {
2201                         if (portchange & USB_PORT_STAT_C_BH_RESET)
2202                                 return 0;
2203                 }
2204
2205                 /* switch to the long delay after two short delay failures */
2206                 if (delay_time >= 2 * HUB_SHORT_RESET_TIME)
2207                         delay = HUB_LONG_RESET_TIME;
2208
2209                 dev_dbg (hub->intfdev,
2210                         "port %d not %sreset yet, waiting %dms\n",
2211                         port1, warm ? "warm " : "", delay);
2212         }
2213
2214         return -EBUSY;
2215 }
2216
2217 static void hub_port_finish_reset(struct usb_hub *hub, int port1,
2218                         struct usb_device *udev, int *status, bool warm)
2219 {
2220         switch (*status) {
2221         case 0:
2222                 if (!warm) {
2223                         struct usb_hcd *hcd;
2224                         /* TRSTRCY = 10 ms; plus some extra */
2225                         msleep(10 + 40);
2226                         update_devnum(udev, 0);
2227                         hcd = bus_to_hcd(udev->bus);
2228                         /* The xHC may think the device is already reset,
2229                          * so ignore the status.
2230                          */
2231                         if (hcd->driver->reset_device)
2232                                 hcd->driver->reset_device(hcd, udev);
2233                 }
2234                 /* FALL THROUGH */
2235         case -ENOTCONN:
2236         case -ENODEV:
2237                 clear_port_feature(hub->hdev,
2238                                 port1, USB_PORT_FEAT_C_RESET);
2239                 /* FIXME need disconnect() for NOTATTACHED device */
2240                 if (hub_is_superspeed(hub->hdev)) {
2241                         clear_port_feature(hub->hdev, port1,
2242                                         USB_PORT_FEAT_C_BH_PORT_RESET);
2243                         clear_port_feature(hub->hdev, port1,
2244                                         USB_PORT_FEAT_C_PORT_LINK_STATE);
2245                 }
2246                 if (!warm)
2247                         usb_set_device_state(udev, *status
2248                                         ? USB_STATE_NOTATTACHED
2249                                         : USB_STATE_DEFAULT);
2250                 break;
2251         }
2252 }
2253
2254 /* Handle port reset and port warm(BH) reset (for USB3 protocol ports) */
2255 static int hub_port_reset(struct usb_hub *hub, int port1,
2256                         struct usb_device *udev, unsigned int delay, bool warm)
2257 {
2258         int i, status;
2259
2260         if (!warm) {
2261                 /* Block EHCI CF initialization during the port reset.
2262                  * Some companion controllers don't like it when they mix.
2263                  */
2264                 down_read(&ehci_cf_port_reset_rwsem);
2265         } else {
2266                 if (!hub_is_superspeed(hub->hdev)) {
2267                         dev_err(hub->intfdev, "only USB3 hub support "
2268                                                 "warm reset\n");
2269                         return -EINVAL;
2270                 }
2271         }
2272
2273         /* Reset the port */
2274         for (i = 0; i < PORT_RESET_TRIES; i++) {
2275                 status = set_port_feature(hub->hdev, port1, (warm ?
2276                                         USB_PORT_FEAT_BH_PORT_RESET :
2277                                         USB_PORT_FEAT_RESET));
2278                 if (status) {
2279                         dev_err(hub->intfdev,
2280                                         "cannot %sreset port %d (err = %d)\n",
2281                                         warm ? "warm " : "", port1, status);
2282                 } else {
2283                         status = hub_port_wait_reset(hub, port1, udev, delay,
2284                                                                 warm);
2285                         if (status && status != -ENOTCONN)
2286                                 dev_dbg(hub->intfdev,
2287                                                 "port_wait_reset: err = %d\n",
2288                                                 status);
2289                 }
2290
2291                 /* return on disconnect or reset */
2292                 if (status == 0 || status == -ENOTCONN || status == -ENODEV) {
2293                         hub_port_finish_reset(hub, port1, udev, &status, warm);
2294                         goto done;
2295                 }
2296
2297                 dev_dbg (hub->intfdev,
2298                         "port %d not enabled, trying %sreset again...\n",
2299                         port1, warm ? "warm " : "");
2300                 delay = HUB_LONG_RESET_TIME;
2301         }
2302
2303         dev_err (hub->intfdev,
2304                 "Cannot enable port %i.  Maybe the USB cable is bad?\n",
2305                 port1);
2306
2307 done:
2308         if (!warm)
2309                 up_read(&ehci_cf_port_reset_rwsem);
2310
2311         return status;
2312 }
2313
2314 /* Check if a port is power on */
2315 static int port_is_power_on(struct usb_hub *hub, unsigned portstatus)
2316 {
2317         int ret = 0;
2318
2319         if (hub_is_superspeed(hub->hdev)) {
2320                 if (portstatus & USB_SS_PORT_STAT_POWER)
2321                         ret = 1;
2322         } else {
2323                 if (portstatus & USB_PORT_STAT_POWER)
2324                         ret = 1;
2325         }
2326
2327         return ret;
2328 }
2329
2330 #ifdef  CONFIG_PM
2331
2332 /* Check if a port is suspended(USB2.0 port) or in U3 state(USB3.0 port) */
2333 static int port_is_suspended(struct usb_hub *hub, unsigned portstatus)
2334 {
2335         int ret = 0;
2336
2337         if (hub_is_superspeed(hub->hdev)) {
2338                 if ((portstatus & USB_PORT_STAT_LINK_STATE)
2339                                 == USB_SS_PORT_LS_U3)
2340                         ret = 1;
2341         } else {
2342                 if (portstatus & USB_PORT_STAT_SUSPEND)
2343                         ret = 1;
2344         }
2345
2346         return ret;
2347 }
2348
2349 /* Determine whether the device on a port is ready for a normal resume,
2350  * is ready for a reset-resume, or should be disconnected.
2351  */
2352 static int check_port_resume_type(struct usb_device *udev,
2353                 struct usb_hub *hub, int port1,
2354                 int status, unsigned portchange, unsigned portstatus)
2355 {
2356         /* Is the device still present? */
2357         if (status || port_is_suspended(hub, portstatus) ||
2358                         !port_is_power_on(hub, portstatus) ||
2359                         !(portstatus & USB_PORT_STAT_CONNECTION)) {
2360                 if (status >= 0)
2361                         status = -ENODEV;
2362         }
2363
2364         /* Can't do a normal resume if the port isn't enabled,
2365          * so try a reset-resume instead.
2366          */
2367         else if (!(portstatus & USB_PORT_STAT_ENABLE) && !udev->reset_resume) {
2368                 if (udev->persist_enabled)
2369                         udev->reset_resume = 1;
2370                 else
2371                         status = -ENODEV;
2372         }
2373
2374         if (status) {
2375                 dev_dbg(hub->intfdev,
2376                                 "port %d status %04x.%04x after resume, %d\n",
2377                                 port1, portchange, portstatus, status);
2378         } else if (udev->reset_resume) {
2379
2380                 /* Late port handoff can set status-change bits */
2381                 if (portchange & USB_PORT_STAT_C_CONNECTION)
2382                         clear_port_feature(hub->hdev, port1,
2383                                         USB_PORT_FEAT_C_CONNECTION);
2384                 if (portchange & USB_PORT_STAT_C_ENABLE)
2385                         clear_port_feature(hub->hdev, port1,
2386                                         USB_PORT_FEAT_C_ENABLE);
2387         }
2388
2389         return status;
2390 }
2391
2392 #ifdef  CONFIG_USB_SUSPEND
2393
2394 /*
2395  * usb_port_suspend - suspend a usb device's upstream port
2396  * @udev: device that's no longer in active use, not a root hub
2397  * Context: must be able to sleep; device not locked; pm locks held
2398  *
2399  * Suspends a USB device that isn't in active use, conserving power.
2400  * Devices may wake out of a suspend, if anything important happens,
2401  * using the remote wakeup mechanism.  They may also be taken out of
2402  * suspend by the host, using usb_port_resume().  It's also routine
2403  * to disconnect devices while they are suspended.
2404  *
2405  * This only affects the USB hardware for a device; its interfaces
2406  * (and, for hubs, child devices) must already have been suspended.
2407  *
2408  * Selective port suspend reduces power; most suspended devices draw
2409  * less than 500 uA.  It's also used in OTG, along with remote wakeup.
2410  * All devices below the suspended port are also suspended.
2411  *
2412  * Devices leave suspend state when the host wakes them up.  Some devices
2413  * also support "remote wakeup", where the device can activate the USB
2414  * tree above them to deliver data, such as a keypress or packet.  In
2415  * some cases, this wakes the USB host.
2416  *
2417  * Suspending OTG devices may trigger HNP, if that's been enabled
2418  * between a pair of dual-role devices.  That will change roles, such
2419  * as from A-Host to A-Peripheral or from B-Host back to B-Peripheral.
2420  *
2421  * Devices on USB hub ports have only one "suspend" state, corresponding
2422  * to ACPI D2, "may cause the device to lose some context".
2423  * State transitions include:
2424  *
2425  *   - suspend, resume ... when the VBUS power link stays live
2426  *   - suspend, disconnect ... VBUS lost
2427  *
2428  * Once VBUS drop breaks the circuit, the port it's using has to go through
2429  * normal re-enumeration procedures, starting with enabling VBUS power.
2430  * Other than re-initializing the hub (plug/unplug, except for root hubs),
2431  * Linux (2.6) currently has NO mechanisms to initiate that:  no khubd
2432  * timer, no SRP, no requests through sysfs.
2433  *
2434  * If CONFIG_USB_SUSPEND isn't enabled, devices only really suspend when
2435  * the root hub for their bus goes into global suspend ... so we don't
2436  * (falsely) update the device power state to say it suspended.
2437  *
2438  * Returns 0 on success, else negative errno.
2439  */
2440 int usb_port_suspend(struct usb_device *udev, pm_message_t msg)
2441 {
2442         struct usb_hub  *hub = hdev_to_hub(udev->parent);
2443         int             port1 = udev->portnum;
2444         int             status;
2445
2446         /* enable remote wakeup when appropriate; this lets the device
2447          * wake up the upstream hub (including maybe the root hub).
2448          *
2449          * NOTE:  OTG devices may issue remote wakeup (or SRP) even when
2450          * we don't explicitly enable it here.
2451          */
2452         if (udev->do_remote_wakeup) {
2453                 if (!hub_is_superspeed(hub->hdev)) {
2454                         status = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
2455                                         USB_REQ_SET_FEATURE, USB_RECIP_DEVICE,
2456                                         USB_DEVICE_REMOTE_WAKEUP, 0,
2457                                         NULL, 0,
2458                                         USB_CTRL_SET_TIMEOUT);
2459                 } else {
2460                         /* Assume there's only one function on the USB 3.0
2461                          * device and enable remote wake for the first
2462                          * interface. FIXME if the interface association
2463                          * descriptor shows there's more than one function.
2464                          */
2465                         status = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
2466                                         USB_REQ_SET_FEATURE,
2467                                         USB_RECIP_INTERFACE,
2468                                         USB_INTRF_FUNC_SUSPEND,
2469                                         USB_INTRF_FUNC_SUSPEND_RW |
2470                                         USB_INTRF_FUNC_SUSPEND_LP,
2471                                         NULL, 0,
2472                                         USB_CTRL_SET_TIMEOUT);
2473                 }
2474                 if (status) {
2475                         dev_dbg(&udev->dev, "won't remote wakeup, status %d\n",
2476                                         status);
2477                         /* bail if autosuspend is requested */
2478                         if (PMSG_IS_AUTO(msg))
2479                                 return status;
2480                 }
2481         }
2482
2483         /* disable USB2 hardware LPM */
2484         if (udev->usb2_hw_lpm_enabled == 1)
2485                 usb_set_usb2_hardware_lpm(udev, 0);
2486
2487         /* see 7.1.7.6 */
2488         if (hub_is_superspeed(hub->hdev))
2489                 status = set_port_feature(hub->hdev,
2490                                 port1 | (USB_SS_PORT_LS_U3 << 3),
2491                                 USB_PORT_FEAT_LINK_STATE);
2492         else
2493                 status = set_port_feature(hub->hdev, port1,
2494                                                 USB_PORT_FEAT_SUSPEND);
2495         if (status) {
2496                 dev_dbg(hub->intfdev, "can't suspend port %d, status %d\n",
2497                                 port1, status);
2498                 /* paranoia:  "should not happen" */
2499                 if (udev->do_remote_wakeup)
2500                         (void) usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
2501                                 USB_REQ_CLEAR_FEATURE, USB_RECIP_DEVICE,
2502                                 USB_DEVICE_REMOTE_WAKEUP, 0,
2503                                 NULL, 0,
2504                                 USB_CTRL_SET_TIMEOUT);
2505
2506                 /* Try to enable USB2 hardware LPM again */
2507                 if (udev->usb2_hw_lpm_capable == 1)
2508                         usb_set_usb2_hardware_lpm(udev, 1);
2509
2510                 /* System sleep transitions should never fail */
2511                 if (!PMSG_IS_AUTO(msg))
2512                         status = 0;
2513         } else {
2514                 /* device has up to 10 msec to fully suspend */
2515                 dev_dbg(&udev->dev, "usb %ssuspend, wakeup %d\n",
2516                                 (PMSG_IS_AUTO(msg) ? "auto-" : ""),
2517                                 udev->do_remote_wakeup);
2518                 usb_set_device_state(udev, USB_STATE_SUSPENDED);
2519                 msleep(10);
2520         }
2521         usb_mark_last_busy(hub->hdev);
2522         return status;
2523 }
2524
2525 /*
2526  * If the USB "suspend" state is in use (rather than "global suspend"),
2527  * many devices will be individually taken out of suspend state using
2528  * special "resume" signaling.  This routine kicks in shortly after
2529  * hardware resume signaling is finished, either because of selective
2530  * resume (by host) or remote wakeup (by device) ... now see what changed
2531  * in the tree that's rooted at this device.
2532  *
2533  * If @udev->reset_resume is set then the device is reset before the
2534  * status check is done.
2535  */
2536 static int finish_port_resume(struct usb_device *udev)
2537 {
2538         int     status = 0;
2539         u16     devstatus;
2540
2541         /* caller owns the udev device lock */
2542         dev_dbg(&udev->dev, "%s\n",
2543                 udev->reset_resume ? "finish reset-resume" : "finish resume");
2544
2545         /* usb ch9 identifies four variants of SUSPENDED, based on what
2546          * state the device resumes to.  Linux currently won't see the
2547          * first two on the host side; they'd be inside hub_port_init()
2548          * during many timeouts, but khubd can't suspend until later.
2549          */
2550         usb_set_device_state(udev, udev->actconfig
2551                         ? USB_STATE_CONFIGURED
2552                         : USB_STATE_ADDRESS);
2553
2554         /* 10.5.4.5 says not to reset a suspended port if the attached
2555          * device is enabled for remote wakeup.  Hence the reset
2556          * operation is carried out here, after the port has been
2557          * resumed.
2558          */
2559         if (udev->reset_resume)
2560  retry_reset_resume:
2561                 status = usb_reset_and_verify_device(udev);
2562
2563         /* 10.5.4.5 says be sure devices in the tree are still there.
2564          * For now let's assume the device didn't go crazy on resume,
2565          * and device drivers will know about any resume quirks.
2566          */
2567         if (status == 0) {
2568                 devstatus = 0;
2569                 status = usb_get_status(udev, USB_RECIP_DEVICE, 0, &devstatus);
2570                 if (status >= 0)
2571                         status = (status > 0 ? 0 : -ENODEV);
2572
2573                 /* If a normal resume failed, try doing a reset-resume */
2574                 if (status && !udev->reset_resume && udev->persist_enabled) {
2575                         dev_dbg(&udev->dev, "retry with reset-resume\n");
2576                         udev->reset_resume = 1;
2577                         goto retry_reset_resume;
2578                 }
2579         }
2580
2581         if (status) {
2582                 dev_dbg(&udev->dev, "gone after usb resume? status %d\n",
2583                                 status);
2584         } else if (udev->actconfig) {
2585                 le16_to_cpus(&devstatus);
2586                 if (devstatus & (1 << USB_DEVICE_REMOTE_WAKEUP)) {
2587                         status = usb_control_msg(udev,
2588                                         usb_sndctrlpipe(udev, 0),
2589                                         USB_REQ_CLEAR_FEATURE,
2590                                                 USB_RECIP_DEVICE,
2591                                         USB_DEVICE_REMOTE_WAKEUP, 0,
2592                                         NULL, 0,
2593                                         USB_CTRL_SET_TIMEOUT);
2594                         if (status)
2595                                 dev_dbg(&udev->dev,
2596                                         "disable remote wakeup, status %d\n",
2597                                         status);
2598                 }
2599                 status = 0;
2600         }
2601         return status;
2602 }
2603
2604 /*
2605  * usb_port_resume - re-activate a suspended usb device's upstream port
2606  * @udev: device to re-activate, not a root hub
2607  * Context: must be able to sleep; device not locked; pm locks held
2608  *
2609  * This will re-activate the suspended device, increasing power usage
2610  * while letting drivers communicate again with its endpoints.
2611  * USB resume explicitly guarantees that the power session between
2612  * the host and the device is the same as it was when the device
2613  * suspended.
2614  *
2615  * If @udev->reset_resume is set then this routine won't check that the
2616  * port is still enabled.  Furthermore, finish_port_resume() above will
2617  * reset @udev.  The end result is that a broken power session can be
2618  * recovered and @udev will appear to persist across a loss of VBUS power.
2619  *
2620  * For example, if a host controller doesn't maintain VBUS suspend current
2621  * during a system sleep or is reset when the system wakes up, all the USB
2622  * power sessions below it will be broken.  This is especially troublesome
2623  * for mass-storage devices containing mounted filesystems, since the
2624  * device will appear to have disconnected and all the memory mappings
2625  * to it will be lost.  Using the USB_PERSIST facility, the device can be
2626  * made to appear as if it had not disconnected.
2627  *
2628  * This facility can be dangerous.  Although usb_reset_and_verify_device() makes
2629  * every effort to insure that the same device is present after the
2630  * reset as before, it cannot provide a 100% guarantee.  Furthermore it's
2631  * quite possible for a device to remain unaltered but its media to be
2632  * changed.  If the user replaces a flash memory card while the system is
2633  * asleep, he will have only himself to blame when the filesystem on the
2634  * new card is corrupted and the system crashes.
2635  *
2636  * Returns 0 on success, else negative errno.
2637  */
2638 int usb_port_resume(struct usb_device *udev, pm_message_t msg)
2639 {
2640         struct usb_hub  *hub = hdev_to_hub(udev->parent);
2641         int             port1 = udev->portnum;
2642         int             status;
2643         u16             portchange, portstatus;
2644
2645         /* Skip the initial Clear-Suspend step for a remote wakeup */
2646         status = hub_port_status(hub, port1, &portstatus, &portchange);
2647         if (status == 0 && !port_is_suspended(hub, portstatus))
2648                 goto SuspendCleared;
2649
2650         // dev_dbg(hub->intfdev, "resume port %d\n", port1);
2651
2652         set_bit(port1, hub->busy_bits);
2653
2654         /* see 7.1.7.7; affects power usage, but not budgeting */
2655         if (hub_is_superspeed(hub->hdev))
2656                 status = set_port_feature(hub->hdev,
2657                                 port1 | (USB_SS_PORT_LS_U0 << 3),
2658                                 USB_PORT_FEAT_LINK_STATE);
2659         else
2660                 status = clear_port_feature(hub->hdev,
2661                                 port1, USB_PORT_FEAT_SUSPEND);
2662         if (status) {
2663                 dev_dbg(hub->intfdev, "can't resume port %d, status %d\n",
2664                                 port1, status);
2665         } else {
2666                 /* drive resume for at least 20 msec */
2667                 dev_dbg(&udev->dev, "usb %sresume\n",
2668                                 (PMSG_IS_AUTO(msg) ? "auto-" : ""));
2669                 msleep(25);
2670
2671                 /* Virtual root hubs can trigger on GET_PORT_STATUS to
2672                  * stop resume signaling.  Then finish the resume
2673                  * sequence.
2674                  */
2675                 status = hub_port_status(hub, port1, &portstatus, &portchange);
2676
2677                 /* TRSMRCY = 10 msec */
2678                 msleep(10);
2679         }
2680
2681  SuspendCleared:
2682         if (status == 0) {
2683                 if (hub_is_superspeed(hub->hdev)) {
2684                         if (portchange & USB_PORT_STAT_C_LINK_STATE)
2685                                 clear_port_feature(hub->hdev, port1,
2686                                         USB_PORT_FEAT_C_PORT_LINK_STATE);
2687                 } else {
2688                         if (portchange & USB_PORT_STAT_C_SUSPEND)
2689                                 clear_port_feature(hub->hdev, port1,
2690                                                 USB_PORT_FEAT_C_SUSPEND);
2691                 }
2692         }
2693
2694         clear_bit(port1, hub->busy_bits);
2695
2696         status = check_port_resume_type(udev,
2697                         hub, port1, status, portchange, portstatus);
2698         if (status == 0)
2699                 status = finish_port_resume(udev);
2700         if (status < 0) {
2701                 dev_dbg(&udev->dev, "can't resume, status %d\n", status);
2702                 hub_port_logical_disconnect(hub, port1);
2703         } else  {
2704                 /* Try to enable USB2 hardware LPM */
2705                 if (udev->usb2_hw_lpm_capable == 1)
2706                         usb_set_usb2_hardware_lpm(udev, 1);
2707         }
2708
2709         return status;
2710 }
2711
2712 /* caller has locked udev */
2713 int usb_remote_wakeup(struct usb_device *udev)
2714 {
2715         int     status = 0;
2716
2717         if (udev->state == USB_STATE_SUSPENDED) {
2718                 dev_dbg(&udev->dev, "usb %sresume\n", "wakeup-");
2719                 status = usb_autoresume_device(udev);
2720                 if (status == 0) {
2721                         /* Let the drivers do their thing, then... */
2722                         usb_autosuspend_device(udev);
2723                 }
2724         }
2725         return status;
2726 }
2727
2728 #else   /* CONFIG_USB_SUSPEND */
2729
2730 /* When CONFIG_USB_SUSPEND isn't set, we never suspend or resume any ports. */
2731
2732 int usb_port_suspend(struct usb_device *udev, pm_message_t msg)
2733 {
2734         return 0;
2735 }
2736
2737 /* However we may need to do a reset-resume */
2738
2739 int usb_port_resume(struct usb_device *udev, pm_message_t msg)
2740 {
2741         struct usb_hub  *hub = hdev_to_hub(udev->parent);
2742         int             port1 = udev->portnum;
2743         int             status;
2744         u16             portchange, portstatus;
2745
2746         status = hub_port_status(hub, port1, &portstatus, &portchange);
2747         status = check_port_resume_type(udev,
2748                         hub, port1, status, portchange, portstatus);
2749
2750         if (status) {
2751                 dev_dbg(&udev->dev, "can't resume, status %d\n", status);
2752                 hub_port_logical_disconnect(hub, port1);
2753         } else if (udev->reset_resume) {
2754                 dev_dbg(&udev->dev, "reset-resume\n");
2755                 status = usb_reset_and_verify_device(udev);
2756         }
2757         return status;
2758 }
2759
2760 #endif
2761
2762 static int hub_suspend(struct usb_interface *intf, pm_message_t msg)
2763 {
2764         struct usb_hub          *hub = usb_get_intfdata (intf);
2765         struct usb_device       *hdev = hub->hdev;
2766         unsigned                port1;
2767         int                     status;
2768
2769         /* Warn if children aren't already suspended */
2770         for (port1 = 1; port1 <= hdev->maxchild; port1++) {
2771                 struct usb_device       *udev;
2772
2773                 udev = hdev->children [port1-1];
2774                 if (udev && udev->can_submit) {
2775                         dev_warn(&intf->dev, "port %d nyet suspended\n", port1);
2776                         if (PMSG_IS_AUTO(msg))
2777                                 return -EBUSY;
2778                 }
2779         }
2780         if (hub_is_superspeed(hdev) && hdev->do_remote_wakeup) {
2781                 /* Enable hub to send remote wakeup for all ports. */
2782                 for (port1 = 1; port1 <= hdev->maxchild; port1++) {
2783                         status = set_port_feature(hdev,
2784                                         port1 |
2785                                         USB_PORT_FEAT_REMOTE_WAKE_CONNECT |
2786                                         USB_PORT_FEAT_REMOTE_WAKE_DISCONNECT |
2787                                         USB_PORT_FEAT_REMOTE_WAKE_OVER_CURRENT,
2788                                         USB_PORT_FEAT_REMOTE_WAKE_MASK);
2789                 }
2790         }
2791
2792         dev_dbg(&intf->dev, "%s\n", __func__);
2793
2794         /* stop khubd and related activity */
2795         hub_quiesce(hub, HUB_SUSPEND);
2796         return 0;
2797 }
2798
2799 static int hub_resume(struct usb_interface *intf)
2800 {
2801         struct usb_hub *hub = usb_get_intfdata(intf);
2802
2803         dev_dbg(&intf->dev, "%s\n", __func__);
2804         hub_activate(hub, HUB_RESUME);
2805         return 0;
2806 }
2807
2808 static int hub_reset_resume(struct usb_interface *intf)
2809 {
2810         struct usb_hub *hub = usb_get_intfdata(intf);
2811
2812         dev_dbg(&intf->dev, "%s\n", __func__);
2813         hub_activate(hub, HUB_RESET_RESUME);
2814         return 0;
2815 }
2816
2817 /**
2818  * usb_root_hub_lost_power - called by HCD if the root hub lost Vbus power
2819  * @rhdev: struct usb_device for the root hub
2820  *
2821  * The USB host controller driver calls this function when its root hub
2822  * is resumed and Vbus power has been interrupted or the controller
2823  * has been reset.  The routine marks @rhdev as having lost power.
2824  * When the hub driver is resumed it will take notice and carry out
2825  * power-session recovery for all the "USB-PERSIST"-enabled child devices;
2826  * the others will be disconnected.
2827  */
2828 void usb_root_hub_lost_power(struct usb_device *rhdev)
2829 {
2830         dev_warn(&rhdev->dev, "root hub lost power or was reset\n");
2831         rhdev->reset_resume = 1;
2832 }
2833 EXPORT_SYMBOL_GPL(usb_root_hub_lost_power);
2834
2835 #else   /* CONFIG_PM */
2836
2837 #define hub_suspend             NULL
2838 #define hub_resume              NULL
2839 #define hub_reset_resume        NULL
2840 #endif
2841
2842
2843 /* USB 2.0 spec, 7.1.7.3 / fig 7-29:
2844  *
2845  * Between connect detection and reset signaling there must be a delay
2846  * of 100ms at least for debounce and power-settling.  The corresponding
2847  * timer shall restart whenever the downstream port detects a disconnect.
2848  * 
2849  * Apparently there are some bluetooth and irda-dongles and a number of
2850  * low-speed devices for which this debounce period may last over a second.
2851  * Not covered by the spec - but easy to deal with.
2852  *
2853  * This implementation uses a 1500ms total debounce timeout; if the
2854  * connection isn't stable by then it returns -ETIMEDOUT.  It checks
2855  * every 25ms for transient disconnects.  When the port status has been
2856  * unchanged for 100ms it returns the port status.
2857  */
2858 static int hub_port_debounce(struct usb_hub *hub, int port1)
2859 {
2860         int ret;
2861         int total_time, stable_time = 0;
2862         u16 portchange, portstatus;
2863         unsigned connection = 0xffff;
2864
2865         for (total_time = 0; ; total_time += HUB_DEBOUNCE_STEP) {
2866                 ret = hub_port_status(hub, port1, &portstatus, &portchange);
2867                 if (ret < 0)
2868                         return ret;
2869
2870                 if (!(portchange & USB_PORT_STAT_C_CONNECTION) &&
2871                      (portstatus & USB_PORT_STAT_CONNECTION) == connection) {
2872                         stable_time += HUB_DEBOUNCE_STEP;
2873                         if (stable_time >= HUB_DEBOUNCE_STABLE)
2874                                 break;
2875                 } else {
2876                         stable_time = 0;
2877                         connection = portstatus & USB_PORT_STAT_CONNECTION;
2878                 }
2879
2880                 if (portchange & USB_PORT_STAT_C_CONNECTION) {
2881                         clear_port_feature(hub->hdev, port1,
2882                                         USB_PORT_FEAT_C_CONNECTION);
2883                 }
2884
2885                 if (total_time >= HUB_DEBOUNCE_TIMEOUT)
2886                         break;
2887                 msleep(HUB_DEBOUNCE_STEP);
2888         }
2889
2890         dev_dbg (hub->intfdev,
2891                 "debounce: port %d: total %dms stable %dms status 0x%x\n",
2892                 port1, total_time, stable_time, portstatus);
2893
2894         if (stable_time < HUB_DEBOUNCE_STABLE)
2895                 return -ETIMEDOUT;
2896         return portstatus;
2897 }
2898
2899 void usb_ep0_reinit(struct usb_device *udev)
2900 {
2901         usb_disable_endpoint(udev, 0 + USB_DIR_IN, true);
2902         usb_disable_endpoint(udev, 0 + USB_DIR_OUT, true);
2903         usb_enable_endpoint(udev, &udev->ep0, true);
2904 }
2905 EXPORT_SYMBOL_GPL(usb_ep0_reinit);
2906
2907 #define usb_sndaddr0pipe()      (PIPE_CONTROL << 30)
2908 #define usb_rcvaddr0pipe()      ((PIPE_CONTROL << 30) | USB_DIR_IN)
2909
2910 static int hub_set_address(struct usb_device *udev, int devnum)
2911 {
2912         int retval;
2913         struct usb_hcd *hcd = bus_to_hcd(udev->bus);
2914
2915         /*
2916          * The host controller will choose the device address,
2917          * instead of the core having chosen it earlier
2918          */
2919         if (!hcd->driver->address_device && devnum <= 1)
2920                 return -EINVAL;
2921         if (udev->state == USB_STATE_ADDRESS)
2922                 return 0;
2923         if (udev->state != USB_STATE_DEFAULT)
2924                 return -EINVAL;
2925         if (hcd->driver->address_device)
2926                 retval = hcd->driver->address_device(hcd, udev);
2927         else
2928                 retval = usb_control_msg(udev, usb_sndaddr0pipe(),
2929                                 USB_REQ_SET_ADDRESS, 0, devnum, 0,
2930                                 NULL, 0, USB_CTRL_SET_TIMEOUT);
2931         if (retval == 0) {
2932                 update_devnum(udev, devnum);
2933                 /* Device now using proper address. */
2934                 usb_set_device_state(udev, USB_STATE_ADDRESS);
2935                 usb_ep0_reinit(udev);
2936         }
2937         return retval;
2938 }
2939
2940 /* Reset device, (re)assign address, get device descriptor.
2941  * Device connection must be stable, no more debouncing needed.
2942  * Returns device in USB_STATE_ADDRESS, except on error.
2943  *
2944  * If this is called for an already-existing device (as part of
2945  * usb_reset_and_verify_device), the caller must own the device lock.  For a
2946  * newly detected device that is not accessible through any global
2947  * pointers, it's not necessary to lock the device.
2948  */
2949 static int
2950 hub_port_init (struct usb_hub *hub, struct usb_device *udev, int port1,
2951                 int retry_counter)
2952 {
2953         static DEFINE_MUTEX(usb_address0_mutex);
2954
2955         struct usb_device       *hdev = hub->hdev;
2956         struct usb_hcd          *hcd = bus_to_hcd(hdev->bus);
2957         int                     i, j, retval;
2958         unsigned                delay = HUB_SHORT_RESET_TIME;
2959         enum usb_device_speed   oldspeed = udev->speed;
2960         const char              *speed;
2961         int                     devnum = udev->devnum;
2962
2963         /* root hub ports have a slightly longer reset period
2964          * (from USB 2.0 spec, section 7.1.7.5)
2965          */
2966         if (!hdev->parent) {
2967                 delay = HUB_ROOT_RESET_TIME;
2968                 if (port1 == hdev->bus->otg_port)
2969                         hdev->bus->b_hnp_enable = 0;
2970         }
2971
2972         /* Some low speed devices have problems with the quick delay, so */
2973         /*  be a bit pessimistic with those devices. RHbug #23670 */
2974         if (oldspeed == USB_SPEED_LOW)
2975                 delay = HUB_LONG_RESET_TIME;
2976
2977         mutex_lock(&usb_address0_mutex);
2978
2979         /* Reset the device; full speed may morph to high speed */
2980         /* FIXME a USB 2.0 device may morph into SuperSpeed on reset. */
2981         retval = hub_port_reset(hub, port1, udev, delay, false);
2982         if (retval < 0)         /* error or disconnect */
2983                 goto fail;
2984         /* success, speed is known */
2985
2986         retval = -ENODEV;
2987
2988         if (oldspeed != USB_SPEED_UNKNOWN && oldspeed != udev->speed) {
2989                 dev_dbg(&udev->dev, "device reset changed speed!\n");
2990                 goto fail;
2991         }
2992         oldspeed = udev->speed;
2993
2994         /* USB 2.0 section 5.5.3 talks about ep0 maxpacket ...
2995          * it's fixed size except for full speed devices.
2996          * For Wireless USB devices, ep0 max packet is always 512 (tho
2997          * reported as 0xff in the device descriptor). WUSB1.0[4.8.1].
2998          */
2999         switch (udev->speed) {
3000         case USB_SPEED_SUPER:
3001         case USB_SPEED_WIRELESS:        /* fixed at 512 */
3002                 udev->ep0.desc.wMaxPacketSize = cpu_to_le16(512);
3003                 break;
3004         case USB_SPEED_HIGH:            /* fixed at 64 */
3005                 udev->ep0.desc.wMaxPacketSize = cpu_to_le16(64);
3006                 break;
3007         case USB_SPEED_FULL:            /* 8, 16, 32, or 64 */
3008                 /* to determine the ep0 maxpacket size, try to read
3009                  * the device descriptor to get bMaxPacketSize0 and
3010                  * then correct our initial guess.
3011                  */
3012                 udev->ep0.desc.wMaxPacketSize = cpu_to_le16(64);
3013                 break;
3014         case USB_SPEED_LOW:             /* fixed at 8 */
3015                 udev->ep0.desc.wMaxPacketSize = cpu_to_le16(8);
3016                 break;
3017         default:
3018                 goto fail;
3019         }
3020
3021         if (udev->speed == USB_SPEED_WIRELESS)
3022                 speed = "variable speed Wireless";
3023         else
3024                 speed = usb_speed_string(udev->speed);
3025
3026         if (udev->speed != USB_SPEED_SUPER)
3027                 dev_info(&udev->dev,
3028                                 "%s %s USB device number %d using %s\n",
3029                                 (udev->config) ? "reset" : "new", speed,
3030                                 devnum, udev->bus->controller->driver->name);
3031
3032         /* Set up TT records, if needed  */
3033         if (hdev->tt) {
3034                 udev->tt = hdev->tt;
3035                 udev->ttport = hdev->ttport;
3036         } else if (udev->speed != USB_SPEED_HIGH
3037                         && hdev->speed == USB_SPEED_HIGH) {
3038                 if (!hub->tt.hub) {
3039                         dev_err(&udev->dev, "parent hub has no TT\n");
3040                         retval = -EINVAL;
3041                         goto fail;
3042                 }
3043                 udev->tt = &hub->tt;
3044                 udev->ttport = port1;
3045         }
3046  
3047         /* Why interleave GET_DESCRIPTOR and SET_ADDRESS this way?
3048          * Because device hardware and firmware is sometimes buggy in
3049          * this area, and this is how Linux has done it for ages.
3050          * Change it cautiously.
3051          *
3052          * NOTE:  If USE_NEW_SCHEME() is true we will start by issuing
3053          * a 64-byte GET_DESCRIPTOR request.  This is what Windows does,
3054          * so it may help with some non-standards-compliant devices.
3055          * Otherwise we start with SET_ADDRESS and then try to read the
3056          * first 8 bytes of the device descriptor to get the ep0 maxpacket
3057          * value.
3058          */
3059         for (i = 0; i < GET_DESCRIPTOR_TRIES; (++i, msleep(100))) {
3060                 if (USE_NEW_SCHEME(retry_counter) && !(hcd->driver->flags & HCD_USB3)) {
3061                         struct usb_device_descriptor *buf;
3062                         int r = 0;
3063
3064 #define GET_DESCRIPTOR_BUFSIZE  64
3065                         buf = kmalloc(GET_DESCRIPTOR_BUFSIZE, GFP_NOIO);
3066                         if (!buf) {
3067                                 retval = -ENOMEM;
3068                                 continue;
3069                         }
3070
3071                         /* Retry on all errors; some devices are flakey.
3072                          * 255 is for WUSB devices, we actually need to use
3073                          * 512 (WUSB1.0[4.8.1]).
3074                          */
3075                         for (j = 0; j < 3; ++j) {
3076                                 buf->bMaxPacketSize0 = 0;
3077                                 r = usb_control_msg(udev, usb_rcvaddr0pipe(),
3078                                         USB_REQ_GET_DESCRIPTOR, USB_DIR_IN,
3079                                         USB_DT_DEVICE << 8, 0,
3080                                         buf, GET_DESCRIPTOR_BUFSIZE,
3081                                         initial_descriptor_timeout);
3082                                 switch (buf->bMaxPacketSize0) {
3083                                 case 8: case 16: case 32: case 64: case 255:
3084                                         if (buf->bDescriptorType ==
3085                                                         USB_DT_DEVICE) {
3086                                                 r = 0;
3087                                                 break;
3088                                         }
3089                                         /* FALL THROUGH */
3090                                 default:
3091                                         if (r == 0)
3092                                                 r = -EPROTO;
3093                                         break;
3094                                 }
3095                                 if (r == 0)
3096                                         break;
3097                         }
3098                         udev->descriptor.bMaxPacketSize0 =
3099                                         buf->bMaxPacketSize0;
3100                         kfree(buf);
3101
3102                         retval = hub_port_reset(hub, port1, udev, delay, false);
3103                         if (retval < 0)         /* error or disconnect */
3104                                 goto fail;
3105                         if (oldspeed != udev->speed) {
3106                                 dev_dbg(&udev->dev,
3107                                         "device reset changed speed!\n");
3108                                 retval = -ENODEV;
3109                                 goto fail;
3110                         }
3111                         if (r) {
3112                                 dev_err(&udev->dev,
3113                                         "device descriptor read/64, error %d\n",
3114                                         r);
3115                                 retval = -EMSGSIZE;
3116                                 continue;
3117                         }
3118 #undef GET_DESCRIPTOR_BUFSIZE
3119                 }
3120
3121                 /*
3122                  * If device is WUSB, we already assigned an
3123                  * unauthorized address in the Connect Ack sequence;
3124                  * authorization will assign the final address.
3125                  */
3126                 if (udev->wusb == 0) {
3127                         for (j = 0; j < SET_ADDRESS_TRIES; ++j) {
3128                                 retval = hub_set_address(udev, devnum);
3129                                 if (retval >= 0)
3130                                         break;
3131                                 msleep(200);
3132                         }
3133                         if (retval < 0) {
3134                                 dev_err(&udev->dev,
3135                                         "device not accepting address %d, error %d\n",
3136                                         devnum, retval);
3137                                 goto fail;
3138                         }
3139                         if (udev->speed == USB_SPEED_SUPER) {
3140                                 devnum = udev->devnum;
3141                                 dev_info(&udev->dev,
3142                                                 "%s SuperSpeed USB device number %d using %s\n",
3143                                                 (udev->config) ? "reset" : "new",
3144                                                 devnum, udev->bus->controller->driver->name);
3145                         }
3146
3147                         /* cope with hardware quirkiness:
3148                          *  - let SET_ADDRESS settle, some device hardware wants it
3149                          *  - read ep0 maxpacket even for high and low speed,
3150                          */
3151                         msleep(10);
3152                         if (USE_NEW_SCHEME(retry_counter) && !(hcd->driver->flags & HCD_USB3))
3153                                 break;
3154                 }
3155
3156                 retval = usb_get_device_descriptor(udev, 8);
3157                 if (retval < 8) {
3158                         dev_err(&udev->dev,
3159                                         "device descriptor read/8, error %d\n",
3160                                         retval);
3161                         if (retval >= 0)
3162                                 retval = -EMSGSIZE;
3163                 } else {
3164                         retval = 0;
3165                         break;
3166                 }
3167         }
3168         if (retval)
3169                 goto fail;
3170
3171         /*
3172          * Some superspeed devices have finished the link training process
3173          * and attached to a superspeed hub port, but the device descriptor
3174          * got from those devices show they aren't superspeed devices. Warm
3175          * reset the port attached by the devices can fix them.
3176          */
3177         if ((udev->speed == USB_SPEED_SUPER) &&
3178                         (le16_to_cpu(udev->descriptor.bcdUSB) < 0x0300)) {
3179                 dev_err(&udev->dev, "got a wrong device descriptor, "
3180                                 "warm reset device\n");
3181                 hub_port_reset(hub, port1, udev,
3182                                 HUB_BH_RESET_TIME, true);
3183                 retval = -EINVAL;
3184                 goto fail;
3185         }
3186
3187         if (udev->descriptor.bMaxPacketSize0 == 0xff ||
3188                         udev->speed == USB_SPEED_SUPER)
3189                 i = 512;
3190         else
3191                 i = udev->descriptor.bMaxPacketSize0;
3192         if (usb_endpoint_maxp(&udev->ep0.desc) != i) {
3193                 if (udev->speed == USB_SPEED_LOW ||
3194                                 !(i == 8 || i == 16 || i == 32 || i == 64)) {
3195                         dev_err(&udev->dev, "Invalid ep0 maxpacket: %d\n", i);
3196                         retval = -EMSGSIZE;
3197                         goto fail;
3198                 }
3199                 if (udev->speed == USB_SPEED_FULL)
3200                         dev_dbg(&udev->dev, "ep0 maxpacket = %d\n", i);
3201                 else
3202                         dev_warn(&udev->dev, "Using ep0 maxpacket: %d\n", i);
3203                 udev->ep0.desc.wMaxPacketSize = cpu_to_le16(i);
3204                 usb_ep0_reinit(udev);
3205         }
3206   
3207         retval = usb_get_device_descriptor(udev, USB_DT_DEVICE_SIZE);
3208         if (retval < (signed)sizeof(udev->descriptor)) {
3209                 dev_err(&udev->dev, "device descriptor read/all, error %d\n",
3210                         retval);
3211                 if (retval >= 0)
3212                         retval = -ENOMSG;
3213                 goto fail;
3214         }
3215
3216         if (udev->wusb == 0 && le16_to_cpu(udev->descriptor.bcdUSB) >= 0x0201) {
3217                 retval = usb_get_bos_descriptor(udev);
3218                 if (!retval) {
3219                         if (udev->bos->ext_cap && (USB_LPM_SUPPORT &
3220                                 le32_to_cpu(udev->bos->ext_cap->bmAttributes)))
3221                                         udev->lpm_capable = 1;
3222                 }
3223         }
3224
3225         retval = 0;
3226         /* notify HCD that we have a device connected and addressed */
3227         if (hcd->driver->update_device)
3228                 hcd->driver->update_device(hcd, udev);
3229 fail:
3230         if (retval) {
3231                 hub_port_disable(hub, port1, 0);
3232                 update_devnum(udev, devnum);    /* for disconnect processing */
3233         }
3234         mutex_unlock(&usb_address0_mutex);
3235         return retval;
3236 }
3237
3238 static void
3239 check_highspeed (struct usb_hub *hub, struct usb_device *udev, int port1)
3240 {
3241         struct usb_qualifier_descriptor *qual;
3242         int                             status;
3243
3244         qual = kmalloc (sizeof *qual, GFP_KERNEL);
3245         if (qual == NULL)
3246                 return;
3247
3248         status = usb_get_descriptor (udev, USB_DT_DEVICE_QUALIFIER, 0,
3249                         qual, sizeof *qual);
3250         if (status == sizeof *qual) {
3251                 dev_info(&udev->dev, "not running at top speed; "
3252                         "connect to a high speed hub\n");
3253                 /* hub LEDs are probably harder to miss than syslog */
3254                 if (hub->has_indicators) {
3255                         hub->indicator[port1-1] = INDICATOR_GREEN_BLINK;
3256                         schedule_delayed_work (&hub->leds, 0);
3257                 }
3258         }
3259         kfree(qual);
3260 }
3261
3262 static unsigned
3263 hub_power_remaining (struct usb_hub *hub)
3264 {
3265         struct usb_device *hdev = hub->hdev;
3266         int remaining;
3267         int port1;
3268
3269         if (!hub->limited_power)
3270                 return 0;
3271
3272         remaining = hdev->bus_mA - hub->descriptor->bHubContrCurrent;
3273         for (port1 = 1; port1 <= hdev->maxchild; ++port1) {
3274                 struct usb_device       *udev = hdev->children[port1 - 1];
3275                 int                     delta;
3276
3277                 if (!udev)
3278                         continue;
3279
3280                 /* Unconfigured devices may not use more than 100mA,
3281                  * or 8mA for OTG ports */
3282                 if (udev->actconfig)
3283                         delta = udev->actconfig->desc.bMaxPower * 2;
3284                 else if (port1 != udev->bus->otg_port || hdev->parent)
3285                         delta = 100;
3286                 else
3287                         delta = 8;
3288                 if (delta > hub->mA_per_port)
3289                         dev_warn(&udev->dev,
3290                                  "%dmA is over %umA budget for port %d!\n",
3291                                  delta, hub->mA_per_port, port1);
3292                 remaining -= delta;
3293         }
3294         if (remaining < 0) {
3295                 dev_warn(hub->intfdev, "%dmA over power budget!\n",
3296                         - remaining);
3297                 remaining = 0;
3298         }
3299         return remaining;
3300 }
3301
3302 /* Handle physical or logical connection change events.
3303  * This routine is called when:
3304  *      a port connection-change occurs;
3305  *      a port enable-change occurs (often caused by EMI);
3306  *      usb_reset_and_verify_device() encounters changed descriptors (as from
3307  *              a firmware download)
3308  * caller already locked the hub
3309  */
3310 static void hub_port_connect_change(struct usb_hub *hub, int port1,
3311                                         u16 portstatus, u16 portchange)
3312 {
3313         struct usb_device *hdev = hub->hdev;
3314         struct device *hub_dev = hub->intfdev;
3315         struct usb_hcd *hcd = bus_to_hcd(hdev->bus);
3316         unsigned wHubCharacteristics =
3317                         le16_to_cpu(hub->descriptor->wHubCharacteristics);
3318         struct usb_device *udev;
3319         int status, i;
3320
3321         dev_dbg (hub_dev,
3322                 "port %d, status %04x, change %04x, %s\n",
3323                 port1, portstatus, portchange, portspeed(hub, portstatus));
3324
3325         if (hub->has_indicators) {
3326                 set_port_led(hub, port1, HUB_LED_AUTO);
3327                 hub->indicator[port1-1] = INDICATOR_AUTO;
3328         }
3329
3330 #ifdef  CONFIG_USB_OTG
3331         /* during HNP, don't repeat the debounce */
3332         if (hdev->bus->is_b_host)
3333                 portchange &= ~(USB_PORT_STAT_C_CONNECTION |
3334                                 USB_PORT_STAT_C_ENABLE);
3335 #endif
3336
3337         /* Try to resuscitate an existing device */
3338         udev = hdev->children[port1-1];
3339         if ((portstatus & USB_PORT_STAT_CONNECTION) && udev &&
3340                         udev->state != USB_STATE_NOTATTACHED) {
3341                 usb_lock_device(udev);
3342                 if (portstatus & USB_PORT_STAT_ENABLE) {
3343                         status = 0;             /* Nothing to do */
3344
3345 #ifdef CONFIG_USB_SUSPEND
3346                 } else if (udev->state == USB_STATE_SUSPENDED &&
3347                                 udev->persist_enabled) {
3348                         /* For a suspended device, treat this as a
3349                          * remote wakeup event.
3350                          */
3351                         status = usb_remote_wakeup(udev);
3352 #endif
3353
3354                 } else {
3355                         status = -ENODEV;       /* Don't resuscitate */
3356                 }
3357                 usb_unlock_device(udev);
3358
3359                 if (status == 0) {
3360                         clear_bit(port1, hub->change_bits);
3361                         return;
3362                 }
3363         }
3364
3365         /* Disconnect any existing devices under this port */
3366         if (udev)
3367                 usb_disconnect(&hdev->children[port1-1]);
3368         clear_bit(port1, hub->change_bits);
3369
3370         /* We can forget about a "removed" device when there's a physical
3371          * disconnect or the connect status changes.
3372          */
3373         if (!(portstatus & USB_PORT_STAT_CONNECTION) ||
3374                         (portchange & USB_PORT_STAT_C_CONNECTION))
3375                 clear_bit(port1, hub->removed_bits);
3376
3377         if (portchange & (USB_PORT_STAT_C_CONNECTION |
3378                                 USB_PORT_STAT_C_ENABLE)) {
3379                 status = hub_port_debounce(hub, port1);
3380                 if (status < 0) {
3381                         if (printk_ratelimit())
3382                                 dev_err(hub_dev, "connect-debounce failed, "
3383                                                 "port %d disabled\n", port1);
3384                         portstatus &= ~USB_PORT_STAT_CONNECTION;
3385                 } else {
3386                         portstatus = status;
3387                 }
3388         }
3389
3390         /* Return now if debouncing failed or nothing is connected or
3391          * the device was "removed".
3392          */
3393         if (!(portstatus & USB_PORT_STAT_CONNECTION) ||
3394                         test_bit(port1, hub->removed_bits)) {
3395
3396                 /* maybe switch power back on (e.g. root hub was reset) */
3397                 if ((wHubCharacteristics & HUB_CHAR_LPSM) < 2
3398                                 && !port_is_power_on(hub, portstatus))
3399                         set_port_feature(hdev, port1, USB_PORT_FEAT_POWER);
3400
3401                 if (portstatus & USB_PORT_STAT_ENABLE)
3402                         goto done;
3403                 return;
3404         }
3405
3406         for (i = 0; i < SET_CONFIG_TRIES; i++) {
3407
3408                 /* reallocate for each attempt, since references
3409                  * to the previous one can escape in various ways
3410                  */
3411                 udev = usb_alloc_dev(hdev, hdev->bus, port1);
3412                 if (!udev) {
3413                         dev_err (hub_dev,
3414                                 "couldn't allocate port %d usb_device\n",
3415                                 port1);
3416                         goto done;
3417                 }
3418
3419                 usb_set_device_state(udev, USB_STATE_POWERED);
3420                 udev->bus_mA = hub->mA_per_port;
3421                 udev->level = hdev->level + 1;
3422                 udev->wusb = hub_is_wusb(hub);
3423
3424                 /* Only USB 3.0 devices are connected to SuperSpeed hubs. */
3425                 if (hub_is_superspeed(hub->hdev))
3426                         udev->speed = USB_SPEED_SUPER;
3427                 else
3428                         udev->speed = USB_SPEED_UNKNOWN;
3429
3430                 choose_devnum(udev);
3431                 if (udev->devnum <= 0) {
3432                         status = -ENOTCONN;     /* Don't retry */
3433                         goto loop;
3434                 }
3435
3436                 /* reset (non-USB 3.0 devices) and get descriptor */
3437                 status = hub_port_init(hub, udev, port1, i);
3438                 if (status < 0)
3439                         goto loop;
3440
3441                 usb_detect_quirks(udev);
3442                 if (udev->quirks & USB_QUIRK_DELAY_INIT)
3443                         msleep(1000);
3444
3445                 /* consecutive bus-powered hubs aren't reliable; they can
3446                  * violate the voltage drop budget.  if the new child has
3447                  * a "powered" LED, users should notice we didn't enable it
3448                  * (without reading syslog), even without per-port LEDs
3449                  * on the parent.
3450                  */
3451                 if (udev->descriptor.bDeviceClass == USB_CLASS_HUB
3452                                 && udev->bus_mA <= 100) {
3453                         u16     devstat;
3454
3455                         status = usb_get_status(udev, USB_RECIP_DEVICE, 0,
3456                                         &devstat);
3457                         if (status < 2) {
3458                                 dev_dbg(&udev->dev, "get status %d ?\n", status);
3459                                 goto loop_disable;
3460                         }
3461                         le16_to_cpus(&devstat);
3462                         if ((devstat & (1 << USB_DEVICE_SELF_POWERED)) == 0) {
3463                                 dev_err(&udev->dev,
3464                                         "can't connect bus-powered hub "
3465                                         "to this port\n");
3466                                 if (hub->has_indicators) {
3467                                         hub->indicator[port1-1] =
3468                                                 INDICATOR_AMBER_BLINK;
3469                                         schedule_delayed_work (&hub->leds, 0);
3470                                 }
3471                                 status = -ENOTCONN;     /* Don't retry */
3472                                 goto loop_disable;
3473                         }
3474                 }
3475  
3476                 /* check for devices running slower than they could */
3477                 if (le16_to_cpu(udev->descriptor.bcdUSB) >= 0x0200
3478                                 && udev->speed == USB_SPEED_FULL
3479                                 && highspeed_hubs != 0)
3480                         check_highspeed (hub, udev, port1);
3481
3482                 /* Store the parent's children[] pointer.  At this point
3483                  * udev becomes globally accessible, although presumably
3484                  * no one will look at it until hdev is unlocked.
3485                  */
3486                 status = 0;
3487
3488                 /* We mustn't add new devices if the parent hub has
3489                  * been disconnected; we would race with the
3490                  * recursively_mark_NOTATTACHED() routine.
3491                  */
3492                 spin_lock_irq(&device_state_lock);
3493                 if (hdev->state == USB_STATE_NOTATTACHED)
3494                         status = -ENOTCONN;
3495                 else
3496                         hdev->children[port1-1] = udev;
3497                 spin_unlock_irq(&device_state_lock);
3498
3499                 /* Run it through the hoops (find a driver, etc) */
3500                 if (!status) {
3501                         status = usb_new_device(udev);
3502                         if (status) {
3503                                 spin_lock_irq(&device_state_lock);
3504                                 hdev->children[port1-1] = NULL;
3505                                 spin_unlock_irq(&device_state_lock);
3506                         }
3507                 }
3508
3509                 if (status)
3510                         goto loop_disable;
3511
3512                 status = hub_power_remaining(hub);
3513                 if (status)
3514                         dev_dbg(hub_dev, "%dmA power budget left\n", status);
3515
3516                 return;
3517
3518 loop_disable:
3519                 hub_port_disable(hub, port1, 1);
3520 loop:
3521                 usb_ep0_reinit(udev);
3522                 release_devnum(udev);
3523                 hub_free_dev(udev);
3524                 usb_put_dev(udev);
3525                 if ((status == -ENOTCONN) || (status == -ENOTSUPP))
3526                         break;
3527         }
3528         if (hub->hdev->parent ||
3529                         !hcd->driver->port_handed_over ||
3530                         !(hcd->driver->port_handed_over)(hcd, port1))
3531                 dev_err(hub_dev, "unable to enumerate USB device on port %d\n",
3532                                 port1);
3533  
3534 done:
3535         hub_port_disable(hub, port1, 1);
3536         if (hcd->driver->relinquish_port && !hub->hdev->parent)
3537                 hcd->driver->relinquish_port(hcd, port1);
3538 }
3539
3540 /* Returns 1 if there was a remote wakeup and a connect status change. */
3541 static int hub_handle_remote_wakeup(struct usb_hub *hub, unsigned int port,
3542                 u16 portstatus, u16 portchange)
3543 {
3544         struct usb_device *hdev;
3545         struct usb_device *udev;
3546         int connect_change = 0;
3547         int ret;
3548
3549         hdev = hub->hdev;
3550         udev = hdev->children[port-1];
3551         if (!hub_is_superspeed(hdev)) {
3552                 if (!(portchange & USB_PORT_STAT_C_SUSPEND))
3553                         return 0;
3554                 clear_port_feature(hdev, port, USB_PORT_FEAT_C_SUSPEND);
3555         } else {
3556                 if (!udev || udev->state != USB_STATE_SUSPENDED ||
3557                                  (portstatus & USB_PORT_STAT_LINK_STATE) !=
3558                                  USB_SS_PORT_LS_U0)
3559                         return 0;
3560         }
3561
3562         if (udev) {
3563                 /* TRSMRCY = 10 msec */
3564                 msleep(10);
3565
3566                 usb_lock_device(udev);
3567                 ret = usb_remote_wakeup(udev);
3568                 usb_unlock_device(udev);
3569                 if (ret < 0)
3570                         connect_change = 1;
3571         } else {
3572                 ret = -ENODEV;
3573                 hub_port_disable(hub, port, 1);
3574         }
3575         dev_dbg(hub->intfdev, "resume on port %d, status %d\n",
3576                         port, ret);
3577         return connect_change;
3578 }
3579
3580 static void hub_events(void)
3581 {
3582         struct list_head *tmp;
3583         struct usb_device *hdev;
3584         struct usb_interface *intf;
3585         struct usb_hub *hub;
3586         struct device *hub_dev;
3587         u16 hubstatus;
3588         u16 hubchange;
3589         u16 portstatus;
3590         u16 portchange;
3591         int i, ret;
3592         int connect_change, wakeup_change;
3593
3594         /*
3595          *  We restart the list every time to avoid a deadlock with
3596          * deleting hubs downstream from this one. This should be
3597          * safe since we delete the hub from the event list.
3598          * Not the most efficient, but avoids deadlocks.
3599          */
3600         while (1) {
3601
3602                 /* Grab the first entry at the beginning of the list */
3603                 spin_lock_irq(&hub_event_lock);
3604                 if (list_empty(&hub_event_list)) {
3605                         spin_unlock_irq(&hub_event_lock);
3606                         break;
3607                 }
3608
3609                 tmp = hub_event_list.next;
3610                 list_del_init(tmp);
3611
3612                 hub = list_entry(tmp, struct usb_hub, event_list);
3613                 kref_get(&hub->kref);
3614                 spin_unlock_irq(&hub_event_lock);
3615
3616                 hdev = hub->hdev;
3617                 hub_dev = hub->intfdev;
3618                 intf = to_usb_interface(hub_dev);
3619                 dev_dbg(hub_dev, "state %d ports %d chg %04x evt %04x\n",
3620                                 hdev->state, hub->descriptor
3621                                         ? hub->descriptor->bNbrPorts
3622                                         : 0,
3623                                 /* NOTE: expects max 15 ports... */
3624                                 (u16) hub->change_bits[0],
3625                                 (u16) hub->event_bits[0]);
3626
3627                 /* Lock the device, then check to see if we were
3628                  * disconnected while waiting for the lock to succeed. */
3629                 usb_lock_device(hdev);
3630                 if (unlikely(hub->disconnected))
3631                         goto loop_disconnected;
3632
3633                 /* If the hub has died, clean up after it */
3634                 if (hdev->state == USB_STATE_NOTATTACHED) {
3635                         hub->error = -ENODEV;
3636                         hub_quiesce(hub, HUB_DISCONNECT);
3637                         goto loop;
3638                 }
3639
3640                 /* Autoresume */
3641                 ret = usb_autopm_get_interface(intf);
3642                 if (ret) {
3643                         dev_dbg(hub_dev, "Can't autoresume: %d\n", ret);
3644                         goto loop;
3645                 }
3646
3647                 /* If this is an inactive hub, do nothing */
3648                 if (hub->quiescing)
3649                         goto loop_autopm;
3650
3651                 if (hub->error) {
3652                         dev_dbg (hub_dev, "resetting for error %d\n",
3653                                 hub->error);
3654
3655                         ret = usb_reset_device(hdev);
3656                         if (ret) {
3657                                 dev_dbg (hub_dev,
3658                                         "error resetting hub: %d\n", ret);
3659                                 goto loop_autopm;
3660                         }
3661
3662                         hub->nerrors = 0;
3663                         hub->error = 0;
3664                 }
3665
3666                 /* deal with port status changes */
3667                 for (i = 1; i <= hub->descriptor->bNbrPorts; i++) {
3668                         if (test_bit(i, hub->busy_bits))
3669                                 continue;
3670                         connect_change = test_bit(i, hub->change_bits);
3671                         wakeup_change = test_and_clear_bit(i, hub->wakeup_bits);
3672                         if (!test_and_clear_bit(i, hub->event_bits) &&
3673                                         !connect_change && !wakeup_change)
3674                                 continue;
3675
3676                         ret = hub_port_status(hub, i,
3677                                         &portstatus, &portchange);
3678                         if (ret < 0)
3679                                 continue;
3680
3681                         if (portchange & USB_PORT_STAT_C_CONNECTION) {
3682                                 clear_port_feature(hdev, i,
3683                                         USB_PORT_FEAT_C_CONNECTION);
3684                                 connect_change = 1;
3685                         }
3686
3687                         if (portchange & USB_PORT_STAT_C_ENABLE) {
3688                                 if (!connect_change)
3689                                         dev_dbg (hub_dev,
3690                                                 "port %d enable change, "
3691                                                 "status %08x\n",
3692                                                 i, portstatus);
3693                                 clear_port_feature(hdev, i,
3694                                         USB_PORT_FEAT_C_ENABLE);
3695
3696                                 /*
3697                                  * EM interference sometimes causes badly
3698                                  * shielded USB devices to be shutdown by
3699                                  * the hub, this hack enables them again.
3700                                  * Works at least with mouse driver. 
3701                                  */
3702                                 if (!(portstatus & USB_PORT_STAT_ENABLE)
3703                                     && !connect_change
3704                                     && hdev->children[i-1]) {
3705                                         dev_err (hub_dev,
3706                                             "port %i "
3707                                             "disabled by hub (EMI?), "
3708                                             "re-enabling...\n",
3709                                                 i);
3710                                         connect_change = 1;
3711                                 }
3712                         }
3713
3714                         if (hub_handle_remote_wakeup(hub, i,
3715                                                 portstatus, portchange))
3716                                 connect_change = 1;
3717
3718                         if (portchange & USB_PORT_STAT_C_OVERCURRENT) {
3719                                 u16 status = 0;
3720                                 u16 unused;
3721
3722                                 dev_dbg(hub_dev, "over-current change on port "
3723                                         "%d\n", i);
3724                                 clear_port_feature(hdev, i,
3725                                         USB_PORT_FEAT_C_OVER_CURRENT);
3726                                 msleep(100);    /* Cool down */
3727                                 hub_power_on(hub, true);
3728                                 hub_port_status(hub, i, &status, &unused);
3729                                 if (status & USB_PORT_STAT_OVERCURRENT)
3730                                         dev_err(hub_dev, "over-current "
3731                                                 "condition on port %d\n", i);
3732                         }
3733
3734                         if (portchange & USB_PORT_STAT_C_RESET) {
3735                                 dev_dbg (hub_dev,
3736                                         "reset change on port %d\n",
3737                                         i);
3738                                 clear_port_feature(hdev, i,
3739                                         USB_PORT_FEAT_C_RESET);
3740                         }
3741                         if ((portchange & USB_PORT_STAT_C_BH_RESET) &&
3742                                         hub_is_superspeed(hub->hdev)) {
3743                                 dev_dbg(hub_dev,
3744                                         "warm reset change on port %d\n",
3745                                         i);
3746                                 clear_port_feature(hdev, i,
3747                                         USB_PORT_FEAT_C_BH_PORT_RESET);
3748                         }
3749                         if (portchange & USB_PORT_STAT_C_LINK_STATE) {
3750                                 clear_port_feature(hub->hdev, i,
3751                                                 USB_PORT_FEAT_C_PORT_LINK_STATE);
3752                         }
3753                         if (portchange & USB_PORT_STAT_C_CONFIG_ERROR) {
3754                                 dev_warn(hub_dev,
3755                                         "config error on port %d\n",
3756                                         i);
3757                                 clear_port_feature(hub->hdev, i,
3758                                                 USB_PORT_FEAT_C_PORT_CONFIG_ERROR);
3759                         }
3760
3761                         /* Warm reset a USB3 protocol port if it's in
3762                          * SS.Inactive state.
3763                          */
3764                         if (hub_port_warm_reset_required(hub, portstatus)) {
3765                                 dev_dbg(hub_dev, "warm reset port %d\n", i);
3766                                 hub_port_reset(hub, i, NULL,
3767                                                 HUB_BH_RESET_TIME, true);
3768                         }
3769
3770                         if (connect_change)
3771                                 hub_port_connect_change(hub, i,
3772                                                 portstatus, portchange);
3773                 } /* end for i */
3774
3775                 /* deal with hub status changes */
3776                 if (test_and_clear_bit(0, hub->event_bits) == 0)
3777                         ;       /* do nothing */
3778                 else if (hub_hub_status(hub, &hubstatus, &hubchange) < 0)
3779                         dev_err (hub_dev, "get_hub_status failed\n");
3780                 else {
3781                         if (hubchange & HUB_CHANGE_LOCAL_POWER) {
3782                                 dev_dbg (hub_dev, "power change\n");
3783                                 clear_hub_feature(hdev, C_HUB_LOCAL_POWER);
3784                                 if (hubstatus & HUB_STATUS_LOCAL_POWER)
3785                                         /* FIXME: Is this always true? */
3786                                         hub->limited_power = 1;
3787                                 else
3788                                         hub->limited_power = 0;
3789                         }
3790                         if (hubchange & HUB_CHANGE_OVERCURRENT) {
3791                                 u16 status = 0;
3792                                 u16 unused;
3793
3794                                 dev_dbg(hub_dev, "over-current change\n");
3795                                 clear_hub_feature(hdev, C_HUB_OVER_CURRENT);
3796                                 msleep(500);    /* Cool down */
3797                                 hub_power_on(hub, true);
3798                                 hub_hub_status(hub, &status, &unused);
3799                                 if (status & HUB_STATUS_OVERCURRENT)
3800                                         dev_err(hub_dev, "over-current "
3801                                                 "condition\n");
3802                         }
3803                 }
3804
3805  loop_autopm:
3806                 /* Balance the usb_autopm_get_interface() above */
3807                 usb_autopm_put_interface_no_suspend(intf);
3808  loop:
3809                 /* Balance the usb_autopm_get_interface_no_resume() in
3810                  * kick_khubd() and allow autosuspend.
3811                  */
3812                 usb_autopm_put_interface(intf);
3813  loop_disconnected:
3814                 usb_unlock_device(hdev);
3815                 kref_put(&hub->kref, hub_release);
3816
3817         } /* end while (1) */
3818 }
3819
3820 static int hub_thread(void *__unused)
3821 {
3822         /* khubd needs to be freezable to avoid intefering with USB-PERSIST
3823          * port handover.  Otherwise it might see that a full-speed device
3824          * was gone before the EHCI controller had handed its port over to
3825          * the companion full-speed controller.
3826          */
3827         set_freezable();
3828
3829         do {
3830                 hub_events();
3831                 wait_event_freezable(khubd_wait,
3832                                 !list_empty(&hub_event_list) ||
3833                                 kthread_should_stop());
3834         } while (!kthread_should_stop() || !list_empty(&hub_event_list));
3835
3836         pr_debug("%s: khubd exiting\n", usbcore_name);
3837         return 0;
3838 }
3839
3840 static const struct usb_device_id hub_id_table[] = {
3841     { .match_flags = USB_DEVICE_ID_MATCH_DEV_CLASS,
3842       .bDeviceClass = USB_CLASS_HUB},
3843     { .match_flags = USB_DEVICE_ID_MATCH_INT_CLASS,
3844       .bInterfaceClass = USB_CLASS_HUB},
3845     { }                                         /* Terminating entry */
3846 };
3847
3848 MODULE_DEVICE_TABLE (usb, hub_id_table);
3849
3850 static struct usb_driver hub_driver = {
3851         .name =         "hub",
3852         .probe =        hub_probe,
3853         .disconnect =   hub_disconnect,
3854         .suspend =      hub_suspend,
3855         .resume =       hub_resume,
3856         .reset_resume = hub_reset_resume,
3857         .pre_reset =    hub_pre_reset,
3858         .post_reset =   hub_post_reset,
3859         .unlocked_ioctl = hub_ioctl,
3860         .id_table =     hub_id_table,
3861         .supports_autosuspend = 1,
3862 };
3863
3864 int usb_hub_init(void)
3865 {
3866         if (usb_register(&hub_driver) < 0) {
3867                 printk(KERN_ERR "%s: can't register hub driver\n",
3868                         usbcore_name);
3869                 return -1;
3870         }
3871
3872         khubd_task = kthread_run(hub_thread, NULL, "khubd");
3873         if (!IS_ERR(khubd_task))
3874                 return 0;
3875
3876         /* Fall through if kernel_thread failed */
3877         usb_deregister(&hub_driver);
3878         printk(KERN_ERR "%s: can't start khubd\n", usbcore_name);
3879
3880         return -1;
3881 }
3882
3883 void usb_hub_cleanup(void)
3884 {
3885         kthread_stop(khubd_task);
3886
3887         /*
3888          * Hub resources are freed for us by usb_deregister. It calls
3889          * usb_driver_purge on every device which in turn calls that
3890          * devices disconnect function if it is using this driver.
3891          * The hub_disconnect function takes care of releasing the
3892          * individual hub resources. -greg
3893          */
3894         usb_deregister(&hub_driver);
3895 } /* usb_hub_cleanup() */
3896
3897 static int descriptors_changed(struct usb_device *udev,
3898                 struct usb_device_descriptor *old_device_descriptor)
3899 {
3900         int             changed = 0;
3901         unsigned        index;
3902         unsigned        serial_len = 0;
3903         unsigned        len;
3904         unsigned        old_length;
3905         int             length;
3906         char            *buf;
3907
3908         if (memcmp(&udev->descriptor, old_device_descriptor,
3909                         sizeof(*old_device_descriptor)) != 0)
3910                 return 1;
3911
3912         /* Since the idVendor, idProduct, and bcdDevice values in the
3913          * device descriptor haven't changed, we will assume the
3914          * Manufacturer and Product strings haven't changed either.
3915          * But the SerialNumber string could be different (e.g., a
3916          * different flash card of the same brand).
3917          */
3918         if (udev->serial)
3919                 serial_len = strlen(udev->serial) + 1;
3920
3921         len = serial_len;
3922         for (index = 0; index < udev->descriptor.bNumConfigurations; index++) {
3923                 old_length = le16_to_cpu(udev->config[index].desc.wTotalLength);
3924                 len = max(len, old_length);
3925         }
3926
3927         buf = kmalloc(len, GFP_NOIO);
3928         if (buf == NULL) {
3929                 dev_err(&udev->dev, "no mem to re-read configs after reset\n");
3930                 /* assume the worst */
3931                 return 1;
3932         }
3933         for (index = 0; index < udev->descriptor.bNumConfigurations; index++) {
3934                 old_length = le16_to_cpu(udev->config[index].desc.wTotalLength);
3935                 length = usb_get_descriptor(udev, USB_DT_CONFIG, index, buf,
3936                                 old_length);
3937                 if (length != old_length) {
3938                         dev_dbg(&udev->dev, "config index %d, error %d\n",
3939                                         index, length);
3940                         changed = 1;
3941                         break;
3942                 }
3943                 if (memcmp (buf, udev->rawdescriptors[index], old_length)
3944                                 != 0) {
3945                         dev_dbg(&udev->dev, "config index %d changed (#%d)\n",
3946                                 index,
3947                                 ((struct usb_config_descriptor *) buf)->
3948                                         bConfigurationValue);
3949                         changed = 1;
3950                         break;
3951                 }
3952         }
3953
3954         if (!changed && serial_len) {
3955                 length = usb_string(udev, udev->descriptor.iSerialNumber,
3956                                 buf, serial_len);
3957                 if (length + 1 != serial_len) {
3958                         dev_dbg(&udev->dev, "serial string error %d\n",
3959                                         length);
3960                         changed = 1;
3961                 } else if (memcmp(buf, udev->serial, length) != 0) {
3962                         dev_dbg(&udev->dev, "serial string changed\n");
3963                         changed = 1;
3964                 }
3965         }
3966
3967         kfree(buf);
3968         return changed;
3969 }
3970
3971 /**
3972  * usb_reset_and_verify_device - perform a USB port reset to reinitialize a device
3973  * @udev: device to reset (not in SUSPENDED or NOTATTACHED state)
3974  *
3975  * WARNING - don't use this routine to reset a composite device
3976  * (one with multiple interfaces owned by separate drivers)!
3977  * Use usb_reset_device() instead.
3978  *
3979  * Do a port reset, reassign the device's address, and establish its
3980  * former operating configuration.  If the reset fails, or the device's
3981  * descriptors change from their values before the reset, or the original
3982  * configuration and altsettings cannot be restored, a flag will be set
3983  * telling khubd to pretend the device has been disconnected and then
3984  * re-connected.  All drivers will be unbound, and the device will be
3985  * re-enumerated and probed all over again.
3986  *
3987  * Returns 0 if the reset succeeded, -ENODEV if the device has been
3988  * flagged for logical disconnection, or some other negative error code
3989  * if the reset wasn't even attempted.
3990  *
3991  * The caller must own the device lock.  For example, it's safe to use
3992  * this from a driver probe() routine after downloading new firmware.
3993  * For calls that might not occur during probe(), drivers should lock
3994  * the device using usb_lock_device_for_reset().
3995  *
3996  * Locking exception: This routine may also be called from within an
3997  * autoresume handler.  Such usage won't conflict with other tasks
3998  * holding the device lock because these tasks should always call
3999  * usb_autopm_resume_device(), thereby preventing any unwanted autoresume.
4000  */
4001 static int usb_reset_and_verify_device(struct usb_device *udev)
4002 {
4003         struct usb_device               *parent_hdev = udev->parent;
4004         struct usb_hub                  *parent_hub;
4005         struct usb_hcd                  *hcd = bus_to_hcd(udev->bus);
4006         struct usb_device_descriptor    descriptor = udev->descriptor;
4007         int                             i, ret = 0;
4008         int                             port1 = udev->portnum;
4009
4010         if (udev->state == USB_STATE_NOTATTACHED ||
4011                         udev->state == USB_STATE_SUSPENDED) {
4012                 dev_dbg(&udev->dev, "device reset not allowed in state %d\n",
4013                                 udev->state);
4014                 return -EINVAL;
4015         }
4016
4017         if (!parent_hdev) {
4018                 /* this requires hcd-specific logic; see ohci_restart() */
4019                 dev_dbg(&udev->dev, "%s for root hub!\n", __func__);
4020                 return -EISDIR;
4021         }
4022         parent_hub = hdev_to_hub(parent_hdev);
4023
4024         set_bit(port1, parent_hub->busy_bits);
4025         for (i = 0; i < SET_CONFIG_TRIES; ++i) {
4026
4027                 /* ep0 maxpacket size may change; let the HCD know about it.
4028                  * Other endpoints will be handled by re-enumeration. */
4029                 usb_ep0_reinit(udev);
4030                 ret = hub_port_init(parent_hub, udev, port1, i);
4031                 if (ret >= 0 || ret == -ENOTCONN || ret == -ENODEV)
4032                         break;
4033         }
4034         clear_bit(port1, parent_hub->busy_bits);
4035
4036         if (ret < 0)
4037                 goto re_enumerate;
4038  
4039         /* Device might have changed firmware (DFU or similar) */
4040         if (descriptors_changed(udev, &descriptor)) {
4041                 dev_info(&udev->dev, "device firmware changed\n");
4042                 udev->descriptor = descriptor;  /* for disconnect() calls */
4043                 goto re_enumerate;
4044         }
4045
4046         /* Restore the device's previous configuration */
4047         if (!udev->actconfig)
4048                 goto done;
4049
4050         mutex_lock(hcd->bandwidth_mutex);
4051         ret = usb_hcd_alloc_bandwidth(udev, udev->actconfig, NULL, NULL);
4052         if (ret < 0) {
4053                 dev_warn(&udev->dev,
4054                                 "Busted HC?  Not enough HCD resources for "
4055                                 "old configuration.\n");
4056                 mutex_unlock(hcd->bandwidth_mutex);
4057                 goto re_enumerate;
4058         }
4059         ret = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
4060                         USB_REQ_SET_CONFIGURATION, 0,
4061                         udev->actconfig->desc.bConfigurationValue, 0,
4062                         NULL, 0, USB_CTRL_SET_TIMEOUT);
4063         if (ret < 0) {
4064                 dev_err(&udev->dev,
4065                         "can't restore configuration #%d (error=%d)\n",
4066                         udev->actconfig->desc.bConfigurationValue, ret);
4067                 mutex_unlock(hcd->bandwidth_mutex);
4068                 goto re_enumerate;
4069         }
4070         mutex_unlock(hcd->bandwidth_mutex);
4071         usb_set_device_state(udev, USB_STATE_CONFIGURED);
4072
4073         /* Put interfaces back into the same altsettings as before.
4074          * Don't bother to send the Set-Interface request for interfaces
4075          * that were already in altsetting 0; besides being unnecessary,
4076          * many devices can't handle it.  Instead just reset the host-side
4077          * endpoint state.
4078          */
4079         for (i = 0; i < udev->actconfig->desc.bNumInterfaces; i++) {
4080                 struct usb_host_config *config = udev->actconfig;
4081                 struct usb_interface *intf = config->interface[i];
4082                 struct usb_interface_descriptor *desc;
4083
4084                 desc = &intf->cur_altsetting->desc;
4085                 if (desc->bAlternateSetting == 0) {
4086                         usb_disable_interface(udev, intf, true);
4087                         usb_enable_interface(udev, intf, true);
4088                         ret = 0;
4089                 } else {
4090                         /* Let the bandwidth allocation function know that this
4091                          * device has been reset, and it will have to use
4092                          * alternate setting 0 as the current alternate setting.
4093                          */
4094                         intf->resetting_device = 1;
4095                         ret = usb_set_interface(udev, desc->bInterfaceNumber,
4096                                         desc->bAlternateSetting);
4097                         intf->resetting_device = 0;
4098                 }
4099                 if (ret < 0) {
4100                         dev_err(&udev->dev, "failed to restore interface %d "
4101                                 "altsetting %d (error=%d)\n",
4102                                 desc->bInterfaceNumber,
4103                                 desc->bAlternateSetting,
4104                                 ret);
4105                         goto re_enumerate;
4106                 }
4107         }
4108
4109 done:
4110         return 0;
4111  
4112 re_enumerate:
4113         hub_port_logical_disconnect(parent_hub, port1);
4114         return -ENODEV;
4115 }
4116
4117 /**
4118  * usb_reset_device - warn interface drivers and perform a USB port reset
4119  * @udev: device to reset (not in SUSPENDED or NOTATTACHED state)
4120  *
4121  * Warns all drivers bound to registered interfaces (using their pre_reset
4122  * method), performs the port reset, and then lets the drivers know that
4123  * the reset is over (using their post_reset method).
4124  *
4125  * Return value is the same as for usb_reset_and_verify_device().
4126  *
4127  * The caller must own the device lock.  For example, it's safe to use
4128  * this from a driver probe() routine after downloading new firmware.
4129  * For calls that might not occur during probe(), drivers should lock
4130  * the device using usb_lock_device_for_reset().
4131  *
4132  * If an interface is currently being probed or disconnected, we assume
4133  * its driver knows how to handle resets.  For all other interfaces,
4134  * if the driver doesn't have pre_reset and post_reset methods then
4135  * we attempt to unbind it and rebind afterward.
4136  */
4137 int usb_reset_device(struct usb_device *udev)
4138 {
4139         int ret;
4140         int i;
4141         struct usb_host_config *config = udev->actconfig;
4142
4143         if (udev->state == USB_STATE_NOTATTACHED ||
4144                         udev->state == USB_STATE_SUSPENDED) {
4145                 dev_dbg(&udev->dev, "device reset not allowed in state %d\n",
4146                                 udev->state);
4147                 return -EINVAL;
4148         }
4149
4150         /* Prevent autosuspend during the reset */
4151         usb_autoresume_device(udev);
4152
4153         if (config) {
4154                 for (i = 0; i < config->desc.bNumInterfaces; ++i) {
4155                         struct usb_interface *cintf = config->interface[i];
4156                         struct usb_driver *drv;
4157                         int unbind = 0;
4158
4159                         if (cintf->dev.driver) {
4160                                 drv = to_usb_driver(cintf->dev.driver);
4161                                 if (drv->pre_reset && drv->post_reset)
4162                                         unbind = (drv->pre_reset)(cintf);
4163                                 else if (cintf->condition ==
4164                                                 USB_INTERFACE_BOUND)
4165                                         unbind = 1;
4166                                 if (unbind)
4167                                         usb_forced_unbind_intf(cintf);
4168                         }
4169                 }
4170         }
4171
4172         ret = usb_reset_and_verify_device(udev);
4173
4174         if (config) {
4175                 for (i = config->desc.bNumInterfaces - 1; i >= 0; --i) {
4176                         struct usb_interface *cintf = config->interface[i];
4177                         struct usb_driver *drv;
4178                         int rebind = cintf->needs_binding;
4179
4180                         if (!rebind && cintf->dev.driver) {
4181                                 drv = to_usb_driver(cintf->dev.driver);
4182                                 if (drv->post_reset)
4183                                         rebind = (drv->post_reset)(cintf);
4184                                 else if (cintf->condition ==
4185                                                 USB_INTERFACE_BOUND)
4186                                         rebind = 1;
4187                         }
4188                         if (ret == 0 && rebind)
4189                                 usb_rebind_intf(cintf);
4190                 }
4191         }
4192
4193         usb_autosuspend_device(udev);
4194         return ret;
4195 }
4196 EXPORT_SYMBOL_GPL(usb_reset_device);
4197
4198
4199 /**
4200  * usb_queue_reset_device - Reset a USB device from an atomic context
4201  * @iface: USB interface belonging to the device to reset
4202  *
4203  * This function can be used to reset a USB device from an atomic
4204  * context, where usb_reset_device() won't work (as it blocks).
4205  *
4206  * Doing a reset via this method is functionally equivalent to calling
4207  * usb_reset_device(), except for the fact that it is delayed to a
4208  * workqueue. This means that any drivers bound to other interfaces
4209  * might be unbound, as well as users from usbfs in user space.
4210  *
4211  * Corner cases:
4212  *
4213  * - Scheduling two resets at the same time from two different drivers
4214  *   attached to two different interfaces of the same device is
4215  *   possible; depending on how the driver attached to each interface
4216  *   handles ->pre_reset(), the second reset might happen or not.
4217  *
4218  * - If a driver is unbound and it had a pending reset, the reset will
4219  *   be cancelled.
4220  *
4221  * - This function can be called during .probe() or .disconnect()
4222  *   times. On return from .disconnect(), any pending resets will be
4223  *   cancelled.
4224  *
4225  * There is no no need to lock/unlock the @reset_ws as schedule_work()
4226  * does its own.
4227  *
4228  * NOTE: We don't do any reference count tracking because it is not
4229  *     needed. The lifecycle of the work_struct is tied to the
4230  *     usb_interface. Before destroying the interface we cancel the
4231  *     work_struct, so the fact that work_struct is queued and or
4232  *     running means the interface (and thus, the device) exist and
4233  *     are referenced.
4234  */
4235 void usb_queue_reset_device(struct usb_interface *iface)
4236 {
4237         schedule_work(&iface->reset_ws);
4238 }
4239 EXPORT_SYMBOL_GPL(usb_queue_reset_device);