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