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