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