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