USB: fix concurrent buffer access in the hub driver
[safe/jmp/linux-2.6] / 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/smp_lock.h>
20 #include <linux/ioctl.h>
21 #include <linux/usb.h>
22 #include <linux/usbdevice_fs.h>
23 #include <linux/kthread.h>
24 #include <linux/mutex.h>
25 #include <linux/freezer.h>
26
27 #include <asm/semaphore.h>
28 #include <asm/uaccess.h>
29 #include <asm/byteorder.h>
30
31 #include "usb.h"
32 #include "hcd.h"
33 #include "hub.h"
34
35 struct usb_hub {
36         struct device           *intfdev;       /* the "interface" device */
37         struct usb_device       *hdev;
38         struct urb              *urb;           /* for interrupt polling pipe */
39
40         /* buffer for urb ... with extra space in case of babble */
41         char                    (*buffer)[8];
42         dma_addr_t              buffer_dma;     /* DMA address for buffer */
43         union {
44                 struct usb_hub_status   hub;
45                 struct usb_port_status  port;
46         }                       *status;        /* buffer for status reports */
47         struct mutex            status_mutex;   /* for the status buffer */
48
49         int                     error;          /* last reported error */
50         int                     nerrors;        /* track consecutive errors */
51
52         struct list_head        event_list;     /* hubs w/data or errs ready */
53         unsigned long           event_bits[1];  /* status change bitmask */
54         unsigned long           change_bits[1]; /* ports with logical connect
55                                                         status change */
56         unsigned long           busy_bits[1];   /* ports being reset or
57                                                         resumed */
58 #if USB_MAXCHILDREN > 31 /* 8*sizeof(unsigned long) - 1 */
59 #error event_bits[] is too short!
60 #endif
61
62         struct usb_hub_descriptor *descriptor;  /* class descriptor */
63         struct usb_tt           tt;             /* Transaction Translator */
64
65         unsigned                mA_per_port;    /* current for each child */
66
67         unsigned                limited_power:1;
68         unsigned                quiescing:1;
69         unsigned                activating:1;
70
71         unsigned                has_indicators:1;
72         u8                      indicator[USB_MAXCHILDREN];
73         struct delayed_work     leds;
74 };
75
76
77 /* Protect struct usb_device->state and ->children members
78  * Note: Both are also protected by ->dev.sem, except that ->state can
79  * change to USB_STATE_NOTATTACHED even when the semaphore isn't held. */
80 static DEFINE_SPINLOCK(device_state_lock);
81
82 /* khubd's worklist and its lock */
83 static DEFINE_SPINLOCK(hub_event_lock);
84 static LIST_HEAD(hub_event_list);       /* List of hubs needing servicing */
85
86 /* Wakes up khubd */
87 static DECLARE_WAIT_QUEUE_HEAD(khubd_wait);
88
89 static struct task_struct *khubd_task;
90
91 /* cycle leds on hubs that aren't blinking for attention */
92 static int blinkenlights = 0;
93 module_param (blinkenlights, bool, S_IRUGO);
94 MODULE_PARM_DESC (blinkenlights, "true to cycle leds on hubs");
95
96 /*
97  * As of 2.6.10 we introduce a new USB device initialization scheme which
98  * closely resembles the way Windows works.  Hopefully it will be compatible
99  * with a wider range of devices than the old scheme.  However some previously
100  * working devices may start giving rise to "device not accepting address"
101  * errors; if that happens the user can try the old scheme by adjusting the
102  * following module parameters.
103  *
104  * For maximum flexibility there are two boolean parameters to control the
105  * hub driver's behavior.  On the first initialization attempt, if the
106  * "old_scheme_first" parameter is set then the old scheme will be used,
107  * otherwise the new scheme is used.  If that fails and "use_both_schemes"
108  * is set, then the driver will make another attempt, using the other scheme.
109  */
110 static int old_scheme_first = 0;
111 module_param(old_scheme_first, bool, S_IRUGO | S_IWUSR);
112 MODULE_PARM_DESC(old_scheme_first,
113                  "start with the old device initialization scheme");
114
115 static int use_both_schemes = 1;
116 module_param(use_both_schemes, bool, S_IRUGO | S_IWUSR);
117 MODULE_PARM_DESC(use_both_schemes,
118                 "try the other device initialization scheme if the "
119                 "first one fails");
120
121
122 #ifdef  DEBUG
123 static inline char *portspeed (int portstatus)
124 {
125         if (portstatus & (1 << USB_PORT_FEAT_HIGHSPEED))
126                 return "480 Mb/s";
127         else if (portstatus & (1 << USB_PORT_FEAT_LOWSPEED))
128                 return "1.5 Mb/s";
129         else
130                 return "12 Mb/s";
131 }
132 #endif
133
134 /* Note that hdev or one of its children must be locked! */
135 static inline struct usb_hub *hdev_to_hub(struct usb_device *hdev)
136 {
137         return usb_get_intfdata(hdev->actconfig->interface[0]);
138 }
139
140 /* USB 2.0 spec Section 11.24.4.5 */
141 static int get_hub_descriptor(struct usb_device *hdev, void *data, int size)
142 {
143         int i, ret;
144
145         for (i = 0; i < 3; i++) {
146                 ret = usb_control_msg(hdev, usb_rcvctrlpipe(hdev, 0),
147                         USB_REQ_GET_DESCRIPTOR, USB_DIR_IN | USB_RT_HUB,
148                         USB_DT_HUB << 8, 0, data, size,
149                         USB_CTRL_GET_TIMEOUT);
150                 if (ret >= (USB_DT_HUB_NONVAR_SIZE + 2))
151                         return ret;
152         }
153         return -EINVAL;
154 }
155
156 /*
157  * USB 2.0 spec Section 11.24.2.1
158  */
159 static int clear_hub_feature(struct usb_device *hdev, int feature)
160 {
161         return usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
162                 USB_REQ_CLEAR_FEATURE, USB_RT_HUB, feature, 0, NULL, 0, 1000);
163 }
164
165 /*
166  * USB 2.0 spec Section 11.24.2.2
167  */
168 static int clear_port_feature(struct usb_device *hdev, int port1, int feature)
169 {
170         return usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
171                 USB_REQ_CLEAR_FEATURE, USB_RT_PORT, feature, port1,
172                 NULL, 0, 1000);
173 }
174
175 /*
176  * USB 2.0 spec Section 11.24.2.13
177  */
178 static int set_port_feature(struct usb_device *hdev, int port1, int feature)
179 {
180         return usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
181                 USB_REQ_SET_FEATURE, USB_RT_PORT, feature, port1,
182                 NULL, 0, 1000);
183 }
184
185 /*
186  * USB 2.0 spec Section 11.24.2.7.1.10 and table 11-7
187  * for info about using port indicators
188  */
189 static void set_port_led(
190         struct usb_hub *hub,
191         int port1,
192         int selector
193 )
194 {
195         int status = set_port_feature(hub->hdev, (selector << 8) | port1,
196                         USB_PORT_FEAT_INDICATOR);
197         if (status < 0)
198                 dev_dbg (hub->intfdev,
199                         "port %d indicator %s status %d\n",
200                         port1,
201                         ({ char *s; switch (selector) {
202                         case HUB_LED_AMBER: s = "amber"; break;
203                         case HUB_LED_GREEN: s = "green"; break;
204                         case HUB_LED_OFF: s = "off"; break;
205                         case HUB_LED_AUTO: s = "auto"; break;
206                         default: s = "??"; break;
207                         }; s; }),
208                         status);
209 }
210
211 #define LED_CYCLE_PERIOD        ((2*HZ)/3)
212
213 static void led_work (struct work_struct *work)
214 {
215         struct usb_hub          *hub =
216                 container_of(work, struct usb_hub, leds.work);
217         struct usb_device       *hdev = hub->hdev;
218         unsigned                i;
219         unsigned                changed = 0;
220         int                     cursor = -1;
221
222         if (hdev->state != USB_STATE_CONFIGURED || hub->quiescing)
223                 return;
224
225         for (i = 0; i < hub->descriptor->bNbrPorts; i++) {
226                 unsigned        selector, mode;
227
228                 /* 30%-50% duty cycle */
229
230                 switch (hub->indicator[i]) {
231                 /* cycle marker */
232                 case INDICATOR_CYCLE:
233                         cursor = i;
234                         selector = HUB_LED_AUTO;
235                         mode = INDICATOR_AUTO;
236                         break;
237                 /* blinking green = sw attention */
238                 case INDICATOR_GREEN_BLINK:
239                         selector = HUB_LED_GREEN;
240                         mode = INDICATOR_GREEN_BLINK_OFF;
241                         break;
242                 case INDICATOR_GREEN_BLINK_OFF:
243                         selector = HUB_LED_OFF;
244                         mode = INDICATOR_GREEN_BLINK;
245                         break;
246                 /* blinking amber = hw attention */
247                 case INDICATOR_AMBER_BLINK:
248                         selector = HUB_LED_AMBER;
249                         mode = INDICATOR_AMBER_BLINK_OFF;
250                         break;
251                 case INDICATOR_AMBER_BLINK_OFF:
252                         selector = HUB_LED_OFF;
253                         mode = INDICATOR_AMBER_BLINK;
254                         break;
255                 /* blink green/amber = reserved */
256                 case INDICATOR_ALT_BLINK:
257                         selector = HUB_LED_GREEN;
258                         mode = INDICATOR_ALT_BLINK_OFF;
259                         break;
260                 case INDICATOR_ALT_BLINK_OFF:
261                         selector = HUB_LED_AMBER;
262                         mode = INDICATOR_ALT_BLINK;
263                         break;
264                 default:
265                         continue;
266                 }
267                 if (selector != HUB_LED_AUTO)
268                         changed = 1;
269                 set_port_led(hub, i + 1, selector);
270                 hub->indicator[i] = mode;
271         }
272         if (!changed && blinkenlights) {
273                 cursor++;
274                 cursor %= hub->descriptor->bNbrPorts;
275                 set_port_led(hub, cursor + 1, HUB_LED_GREEN);
276                 hub->indicator[cursor] = INDICATOR_CYCLE;
277                 changed++;
278         }
279         if (changed)
280                 schedule_delayed_work(&hub->leds, LED_CYCLE_PERIOD);
281 }
282
283 /* use a short timeout for hub/port status fetches */
284 #define USB_STS_TIMEOUT         1000
285 #define USB_STS_RETRIES         5
286
287 /*
288  * USB 2.0 spec Section 11.24.2.6
289  */
290 static int get_hub_status(struct usb_device *hdev,
291                 struct usb_hub_status *data)
292 {
293         int i, status = -ETIMEDOUT;
294
295         for (i = 0; i < USB_STS_RETRIES && status == -ETIMEDOUT; i++) {
296                 status = usb_control_msg(hdev, usb_rcvctrlpipe(hdev, 0),
297                         USB_REQ_GET_STATUS, USB_DIR_IN | USB_RT_HUB, 0, 0,
298                         data, sizeof(*data), USB_STS_TIMEOUT);
299         }
300         return status;
301 }
302
303 /*
304  * USB 2.0 spec Section 11.24.2.7
305  */
306 static int get_port_status(struct usb_device *hdev, int port1,
307                 struct usb_port_status *data)
308 {
309         int i, status = -ETIMEDOUT;
310
311         for (i = 0; i < USB_STS_RETRIES && status == -ETIMEDOUT; i++) {
312                 status = usb_control_msg(hdev, usb_rcvctrlpipe(hdev, 0),
313                         USB_REQ_GET_STATUS, USB_DIR_IN | USB_RT_PORT, 0, port1,
314                         data, sizeof(*data), USB_STS_TIMEOUT);
315         }
316         return status;
317 }
318
319 static void kick_khubd(struct usb_hub *hub)
320 {
321         unsigned long   flags;
322
323         /* Suppress autosuspend until khubd runs */
324         to_usb_interface(hub->intfdev)->pm_usage_cnt = 1;
325
326         spin_lock_irqsave(&hub_event_lock, flags);
327         if (list_empty(&hub->event_list)) {
328                 list_add_tail(&hub->event_list, &hub_event_list);
329                 wake_up(&khubd_wait);
330         }
331         spin_unlock_irqrestore(&hub_event_lock, flags);
332 }
333
334 void usb_kick_khubd(struct usb_device *hdev)
335 {
336         kick_khubd(hdev_to_hub(hdev));
337 }
338
339
340 /* completion function, fires on port status changes and various faults */
341 static void hub_irq(struct urb *urb)
342 {
343         struct usb_hub *hub = urb->context;
344         int status;
345         int i;
346         unsigned long bits;
347
348         switch (urb->status) {
349         case -ENOENT:           /* synchronous unlink */
350         case -ECONNRESET:       /* async unlink */
351         case -ESHUTDOWN:        /* hardware going away */
352                 return;
353
354         default:                /* presumably an error */
355                 /* Cause a hub reset after 10 consecutive errors */
356                 dev_dbg (hub->intfdev, "transfer --> %d\n", urb->status);
357                 if ((++hub->nerrors < 10) || hub->error)
358                         goto resubmit;
359                 hub->error = urb->status;
360                 /* FALL THROUGH */
361
362         /* let khubd handle things */
363         case 0:                 /* we got data:  port status changed */
364                 bits = 0;
365                 for (i = 0; i < urb->actual_length; ++i)
366                         bits |= ((unsigned long) ((*hub->buffer)[i]))
367                                         << (i*8);
368                 hub->event_bits[0] = bits;
369                 break;
370         }
371
372         hub->nerrors = 0;
373
374         /* Something happened, let khubd figure it out */
375         kick_khubd(hub);
376
377 resubmit:
378         if (hub->quiescing)
379                 return;
380
381         if ((status = usb_submit_urb (hub->urb, GFP_ATOMIC)) != 0
382                         && status != -ENODEV && status != -EPERM)
383                 dev_err (hub->intfdev, "resubmit --> %d\n", status);
384 }
385
386 /* USB 2.0 spec Section 11.24.2.3 */
387 static inline int
388 hub_clear_tt_buffer (struct usb_device *hdev, u16 devinfo, u16 tt)
389 {
390         return usb_control_msg(hdev, usb_rcvctrlpipe(hdev, 0),
391                                HUB_CLEAR_TT_BUFFER, USB_RT_PORT, devinfo,
392                                tt, NULL, 0, 1000);
393 }
394
395 /*
396  * enumeration blocks khubd for a long time. we use keventd instead, since
397  * long blocking there is the exception, not the rule.  accordingly, HCDs
398  * talking to TTs must queue control transfers (not just bulk and iso), so
399  * both can talk to the same hub concurrently.
400  */
401 static void hub_tt_kevent (struct work_struct *work)
402 {
403         struct usb_hub          *hub =
404                 container_of(work, struct usb_hub, tt.kevent);
405         unsigned long           flags;
406
407         spin_lock_irqsave (&hub->tt.lock, flags);
408         while (!list_empty (&hub->tt.clear_list)) {
409                 struct list_head        *temp;
410                 struct usb_tt_clear     *clear;
411                 struct usb_device       *hdev = hub->hdev;
412                 int                     status;
413
414                 temp = hub->tt.clear_list.next;
415                 clear = list_entry (temp, struct usb_tt_clear, clear_list);
416                 list_del (&clear->clear_list);
417
418                 /* drop lock so HCD can concurrently report other TT errors */
419                 spin_unlock_irqrestore (&hub->tt.lock, flags);
420                 status = hub_clear_tt_buffer (hdev, clear->devinfo, clear->tt);
421                 spin_lock_irqsave (&hub->tt.lock, flags);
422
423                 if (status)
424                         dev_err (&hdev->dev,
425                                 "clear tt %d (%04x) error %d\n",
426                                 clear->tt, clear->devinfo, status);
427                 kfree(clear);
428         }
429         spin_unlock_irqrestore (&hub->tt.lock, flags);
430 }
431
432 /**
433  * usb_hub_tt_clear_buffer - clear control/bulk TT state in high speed hub
434  * @udev: the device whose split transaction failed
435  * @pipe: identifies the endpoint of the failed transaction
436  *
437  * High speed HCDs use this to tell the hub driver that some split control or
438  * bulk transaction failed in a way that requires clearing internal state of
439  * a transaction translator.  This is normally detected (and reported) from
440  * interrupt context.
441  *
442  * It may not be possible for that hub to handle additional full (or low)
443  * speed transactions until that state is fully cleared out.
444  */
445 void usb_hub_tt_clear_buffer (struct usb_device *udev, int pipe)
446 {
447         struct usb_tt           *tt = udev->tt;
448         unsigned long           flags;
449         struct usb_tt_clear     *clear;
450
451         /* we've got to cope with an arbitrary number of pending TT clears,
452          * since each TT has "at least two" buffers that can need it (and
453          * there can be many TTs per hub).  even if they're uncommon.
454          */
455         if ((clear = kmalloc (sizeof *clear, GFP_ATOMIC)) == NULL) {
456                 dev_err (&udev->dev, "can't save CLEAR_TT_BUFFER state\n");
457                 /* FIXME recover somehow ... RESET_TT? */
458                 return;
459         }
460
461         /* info that CLEAR_TT_BUFFER needs */
462         clear->tt = tt->multi ? udev->ttport : 1;
463         clear->devinfo = usb_pipeendpoint (pipe);
464         clear->devinfo |= udev->devnum << 4;
465         clear->devinfo |= usb_pipecontrol (pipe)
466                         ? (USB_ENDPOINT_XFER_CONTROL << 11)
467                         : (USB_ENDPOINT_XFER_BULK << 11);
468         if (usb_pipein (pipe))
469                 clear->devinfo |= 1 << 15;
470         
471         /* tell keventd to clear state for this TT */
472         spin_lock_irqsave (&tt->lock, flags);
473         list_add_tail (&clear->clear_list, &tt->clear_list);
474         schedule_work (&tt->kevent);
475         spin_unlock_irqrestore (&tt->lock, flags);
476 }
477
478 static void hub_power_on(struct usb_hub *hub)
479 {
480         int port1;
481         unsigned pgood_delay = hub->descriptor->bPwrOn2PwrGood * 2;
482         u16 wHubCharacteristics =
483                         le16_to_cpu(hub->descriptor->wHubCharacteristics);
484
485         /* Enable power on each port.  Some hubs have reserved values
486          * of LPSM (> 2) in their descriptors, even though they are
487          * USB 2.0 hubs.  Some hubs do not implement port-power switching
488          * but only emulate it.  In all cases, the ports won't work
489          * unless we send these messages to the hub.
490          */
491         if ((wHubCharacteristics & HUB_CHAR_LPSM) < 2)
492                 dev_dbg(hub->intfdev, "enabling power on all ports\n");
493         else
494                 dev_dbg(hub->intfdev, "trying to enable port power on "
495                                 "non-switchable hub\n");
496         for (port1 = 1; port1 <= hub->descriptor->bNbrPorts; port1++)
497                 set_port_feature(hub->hdev, port1, USB_PORT_FEAT_POWER);
498
499         /* Wait at least 100 msec for power to become stable */
500         msleep(max(pgood_delay, (unsigned) 100));
501 }
502
503 static void hub_quiesce(struct usb_hub *hub)
504 {
505         /* (nonblocking) khubd and related activity won't re-trigger */
506         hub->quiescing = 1;
507         hub->activating = 0;
508
509         /* (blocking) stop khubd and related activity */
510         usb_kill_urb(hub->urb);
511         if (hub->has_indicators)
512                 cancel_delayed_work(&hub->leds);
513         if (hub->has_indicators || hub->tt.hub)
514                 flush_scheduled_work();
515 }
516
517 static void hub_activate(struct usb_hub *hub)
518 {
519         int     status;
520
521         hub->quiescing = 0;
522         hub->activating = 1;
523
524         status = usb_submit_urb(hub->urb, GFP_NOIO);
525         if (status < 0)
526                 dev_err(hub->intfdev, "activate --> %d\n", status);
527         if (hub->has_indicators && blinkenlights)
528                 schedule_delayed_work(&hub->leds, LED_CYCLE_PERIOD);
529
530         /* scan all ports ASAP */
531         kick_khubd(hub);
532 }
533
534 static int hub_hub_status(struct usb_hub *hub,
535                 u16 *status, u16 *change)
536 {
537         int ret;
538
539         mutex_lock(&hub->status_mutex);
540         ret = get_hub_status(hub->hdev, &hub->status->hub);
541         if (ret < 0)
542                 dev_err (hub->intfdev,
543                         "%s failed (err = %d)\n", __FUNCTION__, ret);
544         else {
545                 *status = le16_to_cpu(hub->status->hub.wHubStatus);
546                 *change = le16_to_cpu(hub->status->hub.wHubChange); 
547                 ret = 0;
548         }
549         mutex_unlock(&hub->status_mutex);
550         return ret;
551 }
552
553 static int hub_port_disable(struct usb_hub *hub, int port1, int set_state)
554 {
555         struct usb_device *hdev = hub->hdev;
556         int ret;
557
558         if (hdev->children[port1-1] && set_state) {
559                 usb_set_device_state(hdev->children[port1-1],
560                                 USB_STATE_NOTATTACHED);
561         }
562         ret = clear_port_feature(hdev, port1, USB_PORT_FEAT_ENABLE);
563         if (ret)
564                 dev_err(hub->intfdev, "cannot disable port %d (err = %d)\n",
565                         port1, ret);
566
567         return ret;
568 }
569
570
571 /* caller has locked the hub device */
572 static void hub_pre_reset(struct usb_interface *intf)
573 {
574         struct usb_hub *hub = usb_get_intfdata(intf);
575         struct usb_device *hdev = hub->hdev;
576         int port1;
577
578         for (port1 = 1; port1 <= hdev->maxchild; ++port1) {
579                 if (hdev->children[port1 - 1]) {
580                         usb_disconnect(&hdev->children[port1 - 1]);
581                         if (hub->error == 0)
582                                 hub_port_disable(hub, port1, 0);
583                 }
584         }
585         hub_quiesce(hub);
586 }
587
588 /* caller has locked the hub device */
589 static void hub_post_reset(struct usb_interface *intf)
590 {
591         struct usb_hub *hub = usb_get_intfdata(intf);
592
593         hub_activate(hub);
594         hub_power_on(hub);
595 }
596
597
598 static int hub_configure(struct usb_hub *hub,
599         struct usb_endpoint_descriptor *endpoint)
600 {
601         struct usb_device *hdev = hub->hdev;
602         struct device *hub_dev = hub->intfdev;
603         u16 hubstatus, hubchange;
604         u16 wHubCharacteristics;
605         unsigned int pipe;
606         int maxp, ret;
607         char *message;
608
609         hub->buffer = usb_buffer_alloc(hdev, sizeof(*hub->buffer), GFP_KERNEL,
610                         &hub->buffer_dma);
611         if (!hub->buffer) {
612                 message = "can't allocate hub irq buffer";
613                 ret = -ENOMEM;
614                 goto fail;
615         }
616
617         hub->status = kmalloc(sizeof(*hub->status), GFP_KERNEL);
618         if (!hub->status) {
619                 message = "can't kmalloc hub status buffer";
620                 ret = -ENOMEM;
621                 goto fail;
622         }
623         mutex_init(&hub->status_mutex);
624
625         hub->descriptor = kmalloc(sizeof(*hub->descriptor), GFP_KERNEL);
626         if (!hub->descriptor) {
627                 message = "can't kmalloc hub descriptor";
628                 ret = -ENOMEM;
629                 goto fail;
630         }
631
632         /* Request the entire hub descriptor.
633          * hub->descriptor can handle USB_MAXCHILDREN ports,
634          * but the hub can/will return fewer bytes here.
635          */
636         ret = get_hub_descriptor(hdev, hub->descriptor,
637                         sizeof(*hub->descriptor));
638         if (ret < 0) {
639                 message = "can't read hub descriptor";
640                 goto fail;
641         } else if (hub->descriptor->bNbrPorts > USB_MAXCHILDREN) {
642                 message = "hub has too many ports!";
643                 ret = -ENODEV;
644                 goto fail;
645         }
646
647         hdev->maxchild = hub->descriptor->bNbrPorts;
648         dev_info (hub_dev, "%d port%s detected\n", hdev->maxchild,
649                 (hdev->maxchild == 1) ? "" : "s");
650
651         wHubCharacteristics = le16_to_cpu(hub->descriptor->wHubCharacteristics);
652
653         if (wHubCharacteristics & HUB_CHAR_COMPOUND) {
654                 int     i;
655                 char    portstr [USB_MAXCHILDREN + 1];
656
657                 for (i = 0; i < hdev->maxchild; i++)
658                         portstr[i] = hub->descriptor->DeviceRemovable
659                                     [((i + 1) / 8)] & (1 << ((i + 1) % 8))
660                                 ? 'F' : 'R';
661                 portstr[hdev->maxchild] = 0;
662                 dev_dbg(hub_dev, "compound device; port removable status: %s\n", portstr);
663         } else
664                 dev_dbg(hub_dev, "standalone hub\n");
665
666         switch (wHubCharacteristics & HUB_CHAR_LPSM) {
667                 case 0x00:
668                         dev_dbg(hub_dev, "ganged power switching\n");
669                         break;
670                 case 0x01:
671                         dev_dbg(hub_dev, "individual port power switching\n");
672                         break;
673                 case 0x02:
674                 case 0x03:
675                         dev_dbg(hub_dev, "no power switching (usb 1.0)\n");
676                         break;
677         }
678
679         switch (wHubCharacteristics & HUB_CHAR_OCPM) {
680                 case 0x00:
681                         dev_dbg(hub_dev, "global over-current protection\n");
682                         break;
683                 case 0x08:
684                         dev_dbg(hub_dev, "individual port over-current protection\n");
685                         break;
686                 case 0x10:
687                 case 0x18:
688                         dev_dbg(hub_dev, "no over-current protection\n");
689                         break;
690         }
691
692         spin_lock_init (&hub->tt.lock);
693         INIT_LIST_HEAD (&hub->tt.clear_list);
694         INIT_WORK (&hub->tt.kevent, hub_tt_kevent);
695         switch (hdev->descriptor.bDeviceProtocol) {
696                 case 0:
697                         break;
698                 case 1:
699                         dev_dbg(hub_dev, "Single TT\n");
700                         hub->tt.hub = hdev;
701                         break;
702                 case 2:
703                         ret = usb_set_interface(hdev, 0, 1);
704                         if (ret == 0) {
705                                 dev_dbg(hub_dev, "TT per port\n");
706                                 hub->tt.multi = 1;
707                         } else
708                                 dev_err(hub_dev, "Using single TT (err %d)\n",
709                                         ret);
710                         hub->tt.hub = hdev;
711                         break;
712                 default:
713                         dev_dbg(hub_dev, "Unrecognized hub protocol %d\n",
714                                 hdev->descriptor.bDeviceProtocol);
715                         break;
716         }
717
718         /* Note 8 FS bit times == (8 bits / 12000000 bps) ~= 666ns */
719         switch (wHubCharacteristics & HUB_CHAR_TTTT) {
720                 case HUB_TTTT_8_BITS:
721                         if (hdev->descriptor.bDeviceProtocol != 0) {
722                                 hub->tt.think_time = 666;
723                                 dev_dbg(hub_dev, "TT requires at most %d "
724                                                 "FS bit times (%d ns)\n",
725                                         8, hub->tt.think_time);
726                         }
727                         break;
728                 case HUB_TTTT_16_BITS:
729                         hub->tt.think_time = 666 * 2;
730                         dev_dbg(hub_dev, "TT requires at most %d "
731                                         "FS bit times (%d ns)\n",
732                                 16, hub->tt.think_time);
733                         break;
734                 case HUB_TTTT_24_BITS:
735                         hub->tt.think_time = 666 * 3;
736                         dev_dbg(hub_dev, "TT requires at most %d "
737                                         "FS bit times (%d ns)\n",
738                                 24, hub->tt.think_time);
739                         break;
740                 case HUB_TTTT_32_BITS:
741                         hub->tt.think_time = 666 * 4;
742                         dev_dbg(hub_dev, "TT requires at most %d "
743                                         "FS bit times (%d ns)\n",
744                                 32, hub->tt.think_time);
745                         break;
746         }
747
748         /* probe() zeroes hub->indicator[] */
749         if (wHubCharacteristics & HUB_CHAR_PORTIND) {
750                 hub->has_indicators = 1;
751                 dev_dbg(hub_dev, "Port indicators are supported\n");
752         }
753
754         dev_dbg(hub_dev, "power on to power good time: %dms\n",
755                 hub->descriptor->bPwrOn2PwrGood * 2);
756
757         /* power budgeting mostly matters with bus-powered hubs,
758          * and battery-powered root hubs (may provide just 8 mA).
759          */
760         ret = usb_get_status(hdev, USB_RECIP_DEVICE, 0, &hubstatus);
761         if (ret < 2) {
762                 message = "can't get hub status";
763                 goto fail;
764         }
765         le16_to_cpus(&hubstatus);
766         if (hdev == hdev->bus->root_hub) {
767                 if (hdev->bus_mA == 0 || hdev->bus_mA >= 500)
768                         hub->mA_per_port = 500;
769                 else {
770                         hub->mA_per_port = hdev->bus_mA;
771                         hub->limited_power = 1;
772                 }
773         } else if ((hubstatus & (1 << USB_DEVICE_SELF_POWERED)) == 0) {
774                 dev_dbg(hub_dev, "hub controller current requirement: %dmA\n",
775                         hub->descriptor->bHubContrCurrent);
776                 hub->limited_power = 1;
777                 if (hdev->maxchild > 0) {
778                         int remaining = hdev->bus_mA -
779                                         hub->descriptor->bHubContrCurrent;
780
781                         if (remaining < hdev->maxchild * 100)
782                                 dev_warn(hub_dev,
783                                         "insufficient power available "
784                                         "to use all downstream ports\n");
785                         hub->mA_per_port = 100;         /* 7.2.1.1 */
786                 }
787         } else {        /* Self-powered external hub */
788                 /* FIXME: What about battery-powered external hubs that
789                  * provide less current per port? */
790                 hub->mA_per_port = 500;
791         }
792         if (hub->mA_per_port < 500)
793                 dev_dbg(hub_dev, "%umA bus power budget for each child\n",
794                                 hub->mA_per_port);
795
796         ret = hub_hub_status(hub, &hubstatus, &hubchange);
797         if (ret < 0) {
798                 message = "can't get hub status";
799                 goto fail;
800         }
801
802         /* local power status reports aren't always correct */
803         if (hdev->actconfig->desc.bmAttributes & USB_CONFIG_ATT_SELFPOWER)
804                 dev_dbg(hub_dev, "local power source is %s\n",
805                         (hubstatus & HUB_STATUS_LOCAL_POWER)
806                         ? "lost (inactive)" : "good");
807
808         if ((wHubCharacteristics & HUB_CHAR_OCPM) == 0)
809                 dev_dbg(hub_dev, "%sover-current condition exists\n",
810                         (hubstatus & HUB_STATUS_OVERCURRENT) ? "" : "no ");
811
812         /* set up the interrupt endpoint
813          * We use the EP's maxpacket size instead of (PORTS+1+7)/8
814          * bytes as USB2.0[11.12.3] says because some hubs are known
815          * to send more data (and thus cause overflow). For root hubs,
816          * maxpktsize is defined in hcd.c's fake endpoint descriptors
817          * to be big enough for at least USB_MAXCHILDREN ports. */
818         pipe = usb_rcvintpipe(hdev, endpoint->bEndpointAddress);
819         maxp = usb_maxpacket(hdev, pipe, usb_pipeout(pipe));
820
821         if (maxp > sizeof(*hub->buffer))
822                 maxp = sizeof(*hub->buffer);
823
824         hub->urb = usb_alloc_urb(0, GFP_KERNEL);
825         if (!hub->urb) {
826                 message = "couldn't allocate interrupt urb";
827                 ret = -ENOMEM;
828                 goto fail;
829         }
830
831         usb_fill_int_urb(hub->urb, hdev, pipe, *hub->buffer, maxp, hub_irq,
832                 hub, endpoint->bInterval);
833         hub->urb->transfer_dma = hub->buffer_dma;
834         hub->urb->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
835
836         /* maybe cycle the hub leds */
837         if (hub->has_indicators && blinkenlights)
838                 hub->indicator [0] = INDICATOR_CYCLE;
839
840         hub_power_on(hub);
841         hub_activate(hub);
842         return 0;
843
844 fail:
845         dev_err (hub_dev, "config failed, %s (err %d)\n",
846                         message, ret);
847         /* hub_disconnect() frees urb and descriptor */
848         return ret;
849 }
850
851 static unsigned highspeed_hubs;
852
853 static void hub_disconnect(struct usb_interface *intf)
854 {
855         struct usb_hub *hub = usb_get_intfdata (intf);
856         struct usb_device *hdev;
857
858         /* Disconnect all children and quiesce the hub */
859         hub->error = 0;
860         hub_pre_reset(intf);
861
862         usb_set_intfdata (intf, NULL);
863         hdev = hub->hdev;
864
865         if (hdev->speed == USB_SPEED_HIGH)
866                 highspeed_hubs--;
867
868         usb_free_urb(hub->urb);
869         hub->urb = NULL;
870
871         spin_lock_irq(&hub_event_lock);
872         list_del_init(&hub->event_list);
873         spin_unlock_irq(&hub_event_lock);
874
875         kfree(hub->descriptor);
876         hub->descriptor = NULL;
877
878         kfree(hub->status);
879         hub->status = NULL;
880
881         if (hub->buffer) {
882                 usb_buffer_free(hdev, sizeof(*hub->buffer), hub->buffer,
883                                 hub->buffer_dma);
884                 hub->buffer = NULL;
885         }
886
887         kfree(hub);
888 }
889
890 static int hub_probe(struct usb_interface *intf, const struct usb_device_id *id)
891 {
892         struct usb_host_interface *desc;
893         struct usb_endpoint_descriptor *endpoint;
894         struct usb_device *hdev;
895         struct usb_hub *hub;
896
897         desc = intf->cur_altsetting;
898         hdev = interface_to_usbdev(intf);
899
900 #ifdef  CONFIG_USB_OTG_BLACKLIST_HUB
901         if (hdev->parent) {
902                 dev_warn(&intf->dev, "ignoring external hub\n");
903                 return -ENODEV;
904         }
905 #endif
906
907         /* Some hubs have a subclass of 1, which AFAICT according to the */
908         /*  specs is not defined, but it works */
909         if ((desc->desc.bInterfaceSubClass != 0) &&
910             (desc->desc.bInterfaceSubClass != 1)) {
911 descriptor_error:
912                 dev_err (&intf->dev, "bad descriptor, ignoring hub\n");
913                 return -EIO;
914         }
915
916         /* Multiple endpoints? What kind of mutant ninja-hub is this? */
917         if (desc->desc.bNumEndpoints != 1)
918                 goto descriptor_error;
919
920         endpoint = &desc->endpoint[0].desc;
921
922         /* If it's not an interrupt in endpoint, we'd better punt! */
923         if (!usb_endpoint_is_int_in(endpoint))
924                 goto descriptor_error;
925
926         /* We found a hub */
927         dev_info (&intf->dev, "USB hub found\n");
928
929         hub = kzalloc(sizeof(*hub), GFP_KERNEL);
930         if (!hub) {
931                 dev_dbg (&intf->dev, "couldn't kmalloc hub struct\n");
932                 return -ENOMEM;
933         }
934
935         INIT_LIST_HEAD(&hub->event_list);
936         hub->intfdev = &intf->dev;
937         hub->hdev = hdev;
938         INIT_DELAYED_WORK(&hub->leds, led_work);
939
940         usb_set_intfdata (intf, hub);
941         intf->needs_remote_wakeup = 1;
942
943         if (hdev->speed == USB_SPEED_HIGH)
944                 highspeed_hubs++;
945
946         if (hub_configure(hub, endpoint) >= 0)
947                 return 0;
948
949         hub_disconnect (intf);
950         return -ENODEV;
951 }
952
953 static int
954 hub_ioctl(struct usb_interface *intf, unsigned int code, void *user_data)
955 {
956         struct usb_device *hdev = interface_to_usbdev (intf);
957
958         /* assert ifno == 0 (part of hub spec) */
959         switch (code) {
960         case USBDEVFS_HUB_PORTINFO: {
961                 struct usbdevfs_hub_portinfo *info = user_data;
962                 int i;
963
964                 spin_lock_irq(&device_state_lock);
965                 if (hdev->devnum <= 0)
966                         info->nports = 0;
967                 else {
968                         info->nports = hdev->maxchild;
969                         for (i = 0; i < info->nports; i++) {
970                                 if (hdev->children[i] == NULL)
971                                         info->port[i] = 0;
972                                 else
973                                         info->port[i] =
974                                                 hdev->children[i]->devnum;
975                         }
976                 }
977                 spin_unlock_irq(&device_state_lock);
978
979                 return info->nports + 1;
980                 }
981
982         default:
983                 return -ENOSYS;
984         }
985 }
986
987
988 /* grab device/port lock, returning index of that port (zero based).
989  * protects the upstream link used by this device from concurrent
990  * tree operations like suspend, resume, reset, and disconnect, which
991  * apply to everything downstream of a given port.
992  */
993 static int locktree(struct usb_device *udev)
994 {
995         int                     t;
996         struct usb_device       *hdev;
997
998         if (!udev)
999                 return -ENODEV;
1000
1001         /* root hub is always the first lock in the series */
1002         hdev = udev->parent;
1003         if (!hdev) {
1004                 usb_lock_device(udev);
1005                 return 0;
1006         }
1007
1008         /* on the path from root to us, lock everything from
1009          * top down, dropping parent locks when not needed
1010          */
1011         t = locktree(hdev);
1012         if (t < 0)
1013                 return t;
1014
1015         /* everything is fail-fast once disconnect
1016          * processing starts
1017          */
1018         if (udev->state == USB_STATE_NOTATTACHED) {
1019                 usb_unlock_device(hdev);
1020                 return -ENODEV;
1021         }
1022
1023         /* when everyone grabs locks top->bottom,
1024          * non-overlapping work may be concurrent
1025          */
1026         usb_lock_device(udev);
1027         usb_unlock_device(hdev);
1028         return udev->portnum;
1029 }
1030
1031 static void recursively_mark_NOTATTACHED(struct usb_device *udev)
1032 {
1033         int i;
1034
1035         for (i = 0; i < udev->maxchild; ++i) {
1036                 if (udev->children[i])
1037                         recursively_mark_NOTATTACHED(udev->children[i]);
1038         }
1039         if (udev->state == USB_STATE_SUSPENDED)
1040                 udev->discon_suspended = 1;
1041         udev->state = USB_STATE_NOTATTACHED;
1042 }
1043
1044 /**
1045  * usb_set_device_state - change a device's current state (usbcore, hcds)
1046  * @udev: pointer to device whose state should be changed
1047  * @new_state: new state value to be stored
1048  *
1049  * udev->state is _not_ fully protected by the device lock.  Although
1050  * most transitions are made only while holding the lock, the state can
1051  * can change to USB_STATE_NOTATTACHED at almost any time.  This
1052  * is so that devices can be marked as disconnected as soon as possible,
1053  * without having to wait for any semaphores to be released.  As a result,
1054  * all changes to any device's state must be protected by the
1055  * device_state_lock spinlock.
1056  *
1057  * Once a device has been added to the device tree, all changes to its state
1058  * should be made using this routine.  The state should _not_ be set directly.
1059  *
1060  * If udev->state is already USB_STATE_NOTATTACHED then no change is made.
1061  * Otherwise udev->state is set to new_state, and if new_state is
1062  * USB_STATE_NOTATTACHED then all of udev's descendants' states are also set
1063  * to USB_STATE_NOTATTACHED.
1064  */
1065 void usb_set_device_state(struct usb_device *udev,
1066                 enum usb_device_state new_state)
1067 {
1068         unsigned long flags;
1069
1070         spin_lock_irqsave(&device_state_lock, flags);
1071         if (udev->state == USB_STATE_NOTATTACHED)
1072                 ;       /* do nothing */
1073         else if (new_state != USB_STATE_NOTATTACHED) {
1074
1075                 /* root hub wakeup capabilities are managed out-of-band
1076                  * and may involve silicon errata ... ignore them here.
1077                  */
1078                 if (udev->parent) {
1079                         if (udev->state == USB_STATE_SUSPENDED
1080                                         || new_state == USB_STATE_SUSPENDED)
1081                                 ;       /* No change to wakeup settings */
1082                         else if (new_state == USB_STATE_CONFIGURED)
1083                                 device_init_wakeup(&udev->dev,
1084                                         (udev->actconfig->desc.bmAttributes
1085                                          & USB_CONFIG_ATT_WAKEUP));
1086                         else
1087                                 device_init_wakeup(&udev->dev, 0);
1088                 }
1089                 udev->state = new_state;
1090         } else
1091                 recursively_mark_NOTATTACHED(udev);
1092         spin_unlock_irqrestore(&device_state_lock, flags);
1093 }
1094
1095
1096 #ifdef  CONFIG_PM
1097
1098 /**
1099  * usb_root_hub_lost_power - called by HCD if the root hub lost Vbus power
1100  * @rhdev: struct usb_device for the root hub
1101  *
1102  * The USB host controller driver calls this function when its root hub
1103  * is resumed and Vbus power has been interrupted or the controller
1104  * has been reset.  The routine marks all the children of the root hub
1105  * as NOTATTACHED and marks logical connect-change events on their ports.
1106  */
1107 void usb_root_hub_lost_power(struct usb_device *rhdev)
1108 {
1109         struct usb_hub *hub;
1110         int port1;
1111         unsigned long flags;
1112
1113         dev_warn(&rhdev->dev, "root hub lost power or was reset\n");
1114
1115         /* Make sure no potential wakeup events get lost,
1116          * by forcing the root hub to be resumed.
1117          */
1118         rhdev->dev.power.prev_state.event = PM_EVENT_ON;
1119
1120         spin_lock_irqsave(&device_state_lock, flags);
1121         hub = hdev_to_hub(rhdev);
1122         for (port1 = 1; port1 <= rhdev->maxchild; ++port1) {
1123                 if (rhdev->children[port1 - 1]) {
1124                         recursively_mark_NOTATTACHED(
1125                                         rhdev->children[port1 - 1]);
1126                         set_bit(port1, hub->change_bits);
1127                 }
1128         }
1129         spin_unlock_irqrestore(&device_state_lock, flags);
1130 }
1131 EXPORT_SYMBOL_GPL(usb_root_hub_lost_power);
1132
1133 #endif  /* CONFIG_PM */
1134
1135 static void choose_address(struct usb_device *udev)
1136 {
1137         int             devnum;
1138         struct usb_bus  *bus = udev->bus;
1139
1140         /* If khubd ever becomes multithreaded, this will need a lock */
1141
1142         /* Try to allocate the next devnum beginning at bus->devnum_next. */
1143         devnum = find_next_zero_bit(bus->devmap.devicemap, 128,
1144                         bus->devnum_next);
1145         if (devnum >= 128)
1146                 devnum = find_next_zero_bit(bus->devmap.devicemap, 128, 1);
1147
1148         bus->devnum_next = ( devnum >= 127 ? 1 : devnum + 1);
1149
1150         if (devnum < 128) {
1151                 set_bit(devnum, bus->devmap.devicemap);
1152                 udev->devnum = devnum;
1153         }
1154 }
1155
1156 static void release_address(struct usb_device *udev)
1157 {
1158         if (udev->devnum > 0) {
1159                 clear_bit(udev->devnum, udev->bus->devmap.devicemap);
1160                 udev->devnum = -1;
1161         }
1162 }
1163
1164 /**
1165  * usb_disconnect - disconnect a device (usbcore-internal)
1166  * @pdev: pointer to device being disconnected
1167  * Context: !in_interrupt ()
1168  *
1169  * Something got disconnected. Get rid of it and all of its children.
1170  *
1171  * If *pdev is a normal device then the parent hub must already be locked.
1172  * If *pdev is a root hub then this routine will acquire the
1173  * usb_bus_list_lock on behalf of the caller.
1174  *
1175  * Only hub drivers (including virtual root hub drivers for host
1176  * controllers) should ever call this.
1177  *
1178  * This call is synchronous, and may not be used in an interrupt context.
1179  */
1180 void usb_disconnect(struct usb_device **pdev)
1181 {
1182         struct usb_device       *udev = *pdev;
1183         int                     i;
1184
1185         if (!udev) {
1186                 pr_debug ("%s nodev\n", __FUNCTION__);
1187                 return;
1188         }
1189
1190         /* mark the device as inactive, so any further urb submissions for
1191          * this device (and any of its children) will fail immediately.
1192          * this quiesces everyting except pending urbs.
1193          */
1194         usb_set_device_state(udev, USB_STATE_NOTATTACHED);
1195         dev_info (&udev->dev, "USB disconnect, address %d\n", udev->devnum);
1196
1197         usb_lock_device(udev);
1198
1199         /* Free up all the children before we remove this device */
1200         for (i = 0; i < USB_MAXCHILDREN; i++) {
1201                 if (udev->children[i])
1202                         usb_disconnect(&udev->children[i]);
1203         }
1204
1205         /* deallocate hcd/hardware state ... nuking all pending urbs and
1206          * cleaning up all state associated with the current configuration
1207          * so that the hardware is now fully quiesced.
1208          */
1209         dev_dbg (&udev->dev, "unregistering device\n");
1210         usb_disable_device(udev, 0);
1211
1212         usb_unlock_device(udev);
1213
1214         /* Unregister the device.  The device driver is responsible
1215          * for removing the device files from usbfs and sysfs and for
1216          * de-configuring the device.
1217          */
1218         device_del(&udev->dev);
1219
1220         /* Free the device number and delete the parent's children[]
1221          * (or root_hub) pointer.
1222          */
1223         release_address(udev);
1224
1225         /* Avoid races with recursively_mark_NOTATTACHED() */
1226         spin_lock_irq(&device_state_lock);
1227         *pdev = NULL;
1228         spin_unlock_irq(&device_state_lock);
1229
1230         /* Decrement the parent's count of unsuspended children */
1231         if (udev->parent) {
1232                 usb_pm_lock(udev);
1233                 if (!udev->discon_suspended)
1234                         usb_autosuspend_device(udev->parent);
1235                 usb_pm_unlock(udev);
1236         }
1237
1238         put_device(&udev->dev);
1239 }
1240
1241 #ifdef DEBUG
1242 static void show_string(struct usb_device *udev, char *id, char *string)
1243 {
1244         if (!string)
1245                 return;
1246         dev_printk(KERN_INFO, &udev->dev, "%s: %s\n", id, string);
1247 }
1248
1249 #else
1250 static inline void show_string(struct usb_device *udev, char *id, char *string)
1251 {}
1252 #endif
1253
1254
1255 #ifdef  CONFIG_USB_OTG
1256 #include "otg_whitelist.h"
1257 static int __usb_port_suspend(struct usb_device *, int port1);
1258 #endif
1259
1260 /**
1261  * usb_new_device - perform initial device setup (usbcore-internal)
1262  * @udev: newly addressed device (in ADDRESS state)
1263  *
1264  * This is called with devices which have been enumerated, but not yet
1265  * configured.  The device descriptor is available, but not descriptors
1266  * for any device configuration.  The caller must have locked either
1267  * the parent hub (if udev is a normal device) or else the
1268  * usb_bus_list_lock (if udev is a root hub).  The parent's pointer to
1269  * udev has already been installed, but udev is not yet visible through
1270  * sysfs or other filesystem code.
1271  *
1272  * It will return if the device is configured properly or not.  Zero if
1273  * the interface was registered with the driver core; else a negative
1274  * errno value.
1275  *
1276  * This call is synchronous, and may not be used in an interrupt context.
1277  *
1278  * Only the hub driver or root-hub registrar should ever call this.
1279  */
1280 int usb_new_device(struct usb_device *udev)
1281 {
1282         int err;
1283
1284         /* Lock ourself into memory in order to keep a probe sequence
1285          * sleeping in a new thread from allowing us to be unloaded.
1286          */
1287         if (!try_module_get(THIS_MODULE))
1288                 return -EINVAL;
1289
1290         err = usb_get_configuration(udev);
1291         if (err < 0) {
1292                 dev_err(&udev->dev, "can't read configurations, error %d\n",
1293                         err);
1294                 goto fail;
1295         }
1296
1297         /* read the standard strings and cache them if present */
1298         udev->product = usb_cache_string(udev, udev->descriptor.iProduct);
1299         udev->manufacturer = usb_cache_string(udev,
1300                         udev->descriptor.iManufacturer);
1301         udev->serial = usb_cache_string(udev, udev->descriptor.iSerialNumber);
1302
1303         /* Tell the world! */
1304         dev_dbg(&udev->dev, "new device strings: Mfr=%d, Product=%d, "
1305                         "SerialNumber=%d\n",
1306                         udev->descriptor.iManufacturer,
1307                         udev->descriptor.iProduct,
1308                         udev->descriptor.iSerialNumber);
1309         show_string(udev, "Product", udev->product);
1310         show_string(udev, "Manufacturer", udev->manufacturer);
1311         show_string(udev, "SerialNumber", udev->serial);
1312
1313 #ifdef  CONFIG_USB_OTG
1314         /*
1315          * OTG-aware devices on OTG-capable root hubs may be able to use SRP,
1316          * to wake us after we've powered off VBUS; and HNP, switching roles
1317          * "host" to "peripheral".  The OTG descriptor helps figure this out.
1318          */
1319         if (!udev->bus->is_b_host
1320                         && udev->config
1321                         && udev->parent == udev->bus->root_hub) {
1322                 struct usb_otg_descriptor       *desc = 0;
1323                 struct usb_bus                  *bus = udev->bus;
1324
1325                 /* descriptor may appear anywhere in config */
1326                 if (__usb_get_extra_descriptor (udev->rawdescriptors[0],
1327                                         le16_to_cpu(udev->config[0].desc.wTotalLength),
1328                                         USB_DT_OTG, (void **) &desc) == 0) {
1329                         if (desc->bmAttributes & USB_OTG_HNP) {
1330                                 unsigned                port1 = udev->portnum;
1331
1332                                 dev_info(&udev->dev,
1333                                         "Dual-Role OTG device on %sHNP port\n",
1334                                         (port1 == bus->otg_port)
1335                                                 ? "" : "non-");
1336
1337                                 /* enable HNP before suspend, it's simpler */
1338                                 if (port1 == bus->otg_port)
1339                                         bus->b_hnp_enable = 1;
1340                                 err = usb_control_msg(udev,
1341                                         usb_sndctrlpipe(udev, 0),
1342                                         USB_REQ_SET_FEATURE, 0,
1343                                         bus->b_hnp_enable
1344                                                 ? USB_DEVICE_B_HNP_ENABLE
1345                                                 : USB_DEVICE_A_ALT_HNP_SUPPORT,
1346                                         0, NULL, 0, USB_CTRL_SET_TIMEOUT);
1347                                 if (err < 0) {
1348                                         /* OTG MESSAGE: report errors here,
1349                                          * customize to match your product.
1350                                          */
1351                                         dev_info(&udev->dev,
1352                                                 "can't set HNP mode; %d\n",
1353                                                 err);
1354                                         bus->b_hnp_enable = 0;
1355                                 }
1356                         }
1357                 }
1358         }
1359
1360         if (!is_targeted(udev)) {
1361
1362                 /* Maybe it can talk to us, though we can't talk to it.
1363                  * (Includes HNP test device.)
1364                  */
1365                 if (udev->bus->b_hnp_enable || udev->bus->is_b_host) {
1366                         err = __usb_port_suspend(udev, udev->bus->otg_port);
1367                         if (err < 0)
1368                                 dev_dbg(&udev->dev, "HNP fail, %d\n", err);
1369                 }
1370                 err = -ENODEV;
1371                 goto fail;
1372         }
1373 #endif
1374
1375         /* Register the device.  The device driver is responsible
1376          * for adding the device files to usbfs and sysfs and for
1377          * configuring the device.
1378          */
1379         err = device_add (&udev->dev);
1380         if (err) {
1381                 dev_err(&udev->dev, "can't device_add, error %d\n", err);
1382                 goto fail;
1383         }
1384
1385         /* Increment the parent's count of unsuspended children */
1386         if (udev->parent)
1387                 usb_autoresume_device(udev->parent);
1388
1389 exit:
1390         module_put(THIS_MODULE);
1391         return err;
1392
1393 fail:
1394         usb_set_device_state(udev, USB_STATE_NOTATTACHED);
1395         goto exit;
1396 }
1397
1398 static int hub_port_status(struct usb_hub *hub, int port1,
1399                                u16 *status, u16 *change)
1400 {
1401         int ret;
1402
1403         mutex_lock(&hub->status_mutex);
1404         ret = get_port_status(hub->hdev, port1, &hub->status->port);
1405         if (ret < 4) {
1406                 dev_err (hub->intfdev,
1407                         "%s failed (err = %d)\n", __FUNCTION__, ret);
1408                 if (ret >= 0)
1409                         ret = -EIO;
1410         } else {
1411                 *status = le16_to_cpu(hub->status->port.wPortStatus);
1412                 *change = le16_to_cpu(hub->status->port.wPortChange); 
1413                 ret = 0;
1414         }
1415         mutex_unlock(&hub->status_mutex);
1416         return ret;
1417 }
1418
1419
1420 /* Returns 1 if @hub is a WUSB root hub, 0 otherwise */
1421 static unsigned hub_is_wusb(struct usb_hub *hub)
1422 {
1423         struct usb_hcd *hcd;
1424         if (hub->hdev->parent != NULL)  /* not a root hub? */
1425                 return 0;
1426         hcd = container_of(hub->hdev->bus, struct usb_hcd, self);
1427         return hcd->wireless;
1428 }
1429
1430
1431 #define PORT_RESET_TRIES        5
1432 #define SET_ADDRESS_TRIES       2
1433 #define GET_DESCRIPTOR_TRIES    2
1434 #define SET_CONFIG_TRIES        (2 * (use_both_schemes + 1))
1435 #define USE_NEW_SCHEME(i)       ((i) / 2 == old_scheme_first)
1436
1437 #define HUB_ROOT_RESET_TIME     50      /* times are in msec */
1438 #define HUB_SHORT_RESET_TIME    10
1439 #define HUB_LONG_RESET_TIME     200
1440 #define HUB_RESET_TIMEOUT       500
1441
1442 static int hub_port_wait_reset(struct usb_hub *hub, int port1,
1443                                 struct usb_device *udev, unsigned int delay)
1444 {
1445         int delay_time, ret;
1446         u16 portstatus;
1447         u16 portchange;
1448
1449         for (delay_time = 0;
1450                         delay_time < HUB_RESET_TIMEOUT;
1451                         delay_time += delay) {
1452                 /* wait to give the device a chance to reset */
1453                 msleep(delay);
1454
1455                 /* read and decode port status */
1456                 ret = hub_port_status(hub, port1, &portstatus, &portchange);
1457                 if (ret < 0)
1458                         return ret;
1459
1460                 /* Device went away? */
1461                 if (!(portstatus & USB_PORT_STAT_CONNECTION))
1462                         return -ENOTCONN;
1463
1464                 /* bomb out completely if something weird happened */
1465                 if ((portchange & USB_PORT_STAT_C_CONNECTION))
1466                         return -EINVAL;
1467
1468                 /* if we`ve finished resetting, then break out of the loop */
1469                 if (!(portstatus & USB_PORT_STAT_RESET) &&
1470                     (portstatus & USB_PORT_STAT_ENABLE)) {
1471                         if (hub_is_wusb(hub))
1472                                 udev->speed = USB_SPEED_VARIABLE;
1473                         else if (portstatus & USB_PORT_STAT_HIGH_SPEED)
1474                                 udev->speed = USB_SPEED_HIGH;
1475                         else if (portstatus & USB_PORT_STAT_LOW_SPEED)
1476                                 udev->speed = USB_SPEED_LOW;
1477                         else
1478                                 udev->speed = USB_SPEED_FULL;
1479                         return 0;
1480                 }
1481
1482                 /* switch to the long delay after two short delay failures */
1483                 if (delay_time >= 2 * HUB_SHORT_RESET_TIME)
1484                         delay = HUB_LONG_RESET_TIME;
1485
1486                 dev_dbg (hub->intfdev,
1487                         "port %d not reset yet, waiting %dms\n",
1488                         port1, delay);
1489         }
1490
1491         return -EBUSY;
1492 }
1493
1494 static int hub_port_reset(struct usb_hub *hub, int port1,
1495                                 struct usb_device *udev, unsigned int delay)
1496 {
1497         int i, status;
1498
1499         /* Reset the port */
1500         for (i = 0; i < PORT_RESET_TRIES; i++) {
1501                 status = set_port_feature(hub->hdev,
1502                                 port1, USB_PORT_FEAT_RESET);
1503                 if (status)
1504                         dev_err(hub->intfdev,
1505                                         "cannot reset port %d (err = %d)\n",
1506                                         port1, status);
1507                 else {
1508                         status = hub_port_wait_reset(hub, port1, udev, delay);
1509                         if (status && status != -ENOTCONN)
1510                                 dev_dbg(hub->intfdev,
1511                                                 "port_wait_reset: err = %d\n",
1512                                                 status);
1513                 }
1514
1515                 /* return on disconnect or reset */
1516                 switch (status) {
1517                 case 0:
1518                         /* TRSTRCY = 10 ms; plus some extra */
1519                         msleep(10 + 40);
1520                         /* FALL THROUGH */
1521                 case -ENOTCONN:
1522                 case -ENODEV:
1523                         clear_port_feature(hub->hdev,
1524                                 port1, USB_PORT_FEAT_C_RESET);
1525                         /* FIXME need disconnect() for NOTATTACHED device */
1526                         usb_set_device_state(udev, status
1527                                         ? USB_STATE_NOTATTACHED
1528                                         : USB_STATE_DEFAULT);
1529                         return status;
1530                 }
1531
1532                 dev_dbg (hub->intfdev,
1533                         "port %d not enabled, trying reset again...\n",
1534                         port1);
1535                 delay = HUB_LONG_RESET_TIME;
1536         }
1537
1538         dev_err (hub->intfdev,
1539                 "Cannot enable port %i.  Maybe the USB cable is bad?\n",
1540                 port1);
1541
1542         return status;
1543 }
1544
1545 /*
1546  * Disable a port and mark a logical connnect-change event, so that some
1547  * time later khubd will disconnect() any existing usb_device on the port
1548  * and will re-enumerate if there actually is a device attached.
1549  */
1550 static void hub_port_logical_disconnect(struct usb_hub *hub, int port1)
1551 {
1552         dev_dbg(hub->intfdev, "logical disconnect on port %d\n", port1);
1553         hub_port_disable(hub, port1, 1);
1554
1555         /* FIXME let caller ask to power down the port:
1556          *  - some devices won't enumerate without a VBUS power cycle
1557          *  - SRP saves power that way
1558          *  - ... new call, TBD ...
1559          * That's easy if this hub can switch power per-port, and
1560          * khubd reactivates the port later (timer, SRP, etc).
1561          * Powerdown must be optional, because of reset/DFU.
1562          */
1563
1564         set_bit(port1, hub->change_bits);
1565         kick_khubd(hub);
1566 }
1567
1568 #ifdef  CONFIG_PM
1569
1570 #ifdef  CONFIG_USB_SUSPEND
1571
1572 /*
1573  * Selective port suspend reduces power; most suspended devices draw
1574  * less than 500 uA.  It's also used in OTG, along with remote wakeup.
1575  * All devices below the suspended port are also suspended.
1576  *
1577  * Devices leave suspend state when the host wakes them up.  Some devices
1578  * also support "remote wakeup", where the device can activate the USB
1579  * tree above them to deliver data, such as a keypress or packet.  In
1580  * some cases, this wakes the USB host.
1581  */
1582 static int hub_port_suspend(struct usb_hub *hub, int port1,
1583                 struct usb_device *udev)
1584 {
1585         int     status;
1586
1587         // dev_dbg(hub->intfdev, "suspend port %d\n", port1);
1588
1589         /* enable remote wakeup when appropriate; this lets the device
1590          * wake up the upstream hub (including maybe the root hub).
1591          *
1592          * NOTE:  OTG devices may issue remote wakeup (or SRP) even when
1593          * we don't explicitly enable it here.
1594          */
1595         if (udev->do_remote_wakeup) {
1596                 status = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
1597                                 USB_REQ_SET_FEATURE, USB_RECIP_DEVICE,
1598                                 USB_DEVICE_REMOTE_WAKEUP, 0,
1599                                 NULL, 0,
1600                                 USB_CTRL_SET_TIMEOUT);
1601                 if (status)
1602                         dev_dbg(&udev->dev,
1603                                 "won't remote wakeup, status %d\n",
1604                                 status);
1605         }
1606
1607         /* see 7.1.7.6 */
1608         status = set_port_feature(hub->hdev, port1, USB_PORT_FEAT_SUSPEND);
1609         if (status) {
1610                 dev_dbg(hub->intfdev,
1611                         "can't suspend port %d, status %d\n",
1612                         port1, status);
1613                 /* paranoia:  "should not happen" */
1614                 (void) usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
1615                                 USB_REQ_CLEAR_FEATURE, USB_RECIP_DEVICE,
1616                                 USB_DEVICE_REMOTE_WAKEUP, 0,
1617                                 NULL, 0,
1618                                 USB_CTRL_SET_TIMEOUT);
1619         } else {
1620                 /* device has up to 10 msec to fully suspend */
1621                 dev_dbg(&udev->dev, "usb %ssuspend\n",
1622                                 udev->auto_pm ? "auto-" : "");
1623                 usb_set_device_state(udev, USB_STATE_SUSPENDED);
1624                 msleep(10);
1625         }
1626         return status;
1627 }
1628
1629 /*
1630  * Devices on USB hub ports have only one "suspend" state, corresponding
1631  * to ACPI D2, "may cause the device to lose some context".
1632  * State transitions include:
1633  *
1634  *   - suspend, resume ... when the VBUS power link stays live
1635  *   - suspend, disconnect ... VBUS lost
1636  *
1637  * Once VBUS drop breaks the circuit, the port it's using has to go through
1638  * normal re-enumeration procedures, starting with enabling VBUS power.
1639  * Other than re-initializing the hub (plug/unplug, except for root hubs),
1640  * Linux (2.6) currently has NO mechanisms to initiate that:  no khubd
1641  * timer, no SRP, no requests through sysfs.
1642  *
1643  * If CONFIG_USB_SUSPEND isn't enabled, devices only really suspend when
1644  * the root hub for their bus goes into global suspend ... so we don't
1645  * (falsely) update the device power state to say it suspended.
1646  */
1647 static int __usb_port_suspend (struct usb_device *udev, int port1)
1648 {
1649         int     status = 0;
1650
1651         /* caller owns the udev device lock */
1652         if (port1 < 0)
1653                 return port1;
1654
1655         /* we change the device's upstream USB link,
1656          * but root hubs have no upstream USB link.
1657          */
1658         if (udev->parent)
1659                 status = hub_port_suspend(hdev_to_hub(udev->parent), port1,
1660                                 udev);
1661         else {
1662                 dev_dbg(&udev->dev, "usb %ssuspend\n",
1663                                 udev->auto_pm ? "auto-" : "");
1664                 usb_set_device_state(udev, USB_STATE_SUSPENDED);
1665         }
1666         return status;
1667 }
1668
1669 /*
1670  * usb_port_suspend - suspend a usb device's upstream port
1671  * @udev: device that's no longer in active use
1672  * Context: must be able to sleep; device not locked; pm locks held
1673  *
1674  * Suspends a USB device that isn't in active use, conserving power.
1675  * Devices may wake out of a suspend, if anything important happens,
1676  * using the remote wakeup mechanism.  They may also be taken out of
1677  * suspend by the host, using usb_port_resume().  It's also routine
1678  * to disconnect devices while they are suspended.
1679  *
1680  * This only affects the USB hardware for a device; its interfaces
1681  * (and, for hubs, child devices) must already have been suspended.
1682  *
1683  * Suspending OTG devices may trigger HNP, if that's been enabled
1684  * between a pair of dual-role devices.  That will change roles, such
1685  * as from A-Host to A-Peripheral or from B-Host back to B-Peripheral.
1686  *
1687  * Returns 0 on success, else negative errno.
1688  */
1689 int usb_port_suspend(struct usb_device *udev)
1690 {
1691         return __usb_port_suspend(udev, udev->portnum);
1692 }
1693
1694 /*
1695  * If the USB "suspend" state is in use (rather than "global suspend"),
1696  * many devices will be individually taken out of suspend state using
1697  * special" resume" signaling.  These routines kick in shortly after
1698  * hardware resume signaling is finished, either because of selective
1699  * resume (by host) or remote wakeup (by device) ... now see what changed
1700  * in the tree that's rooted at this device.
1701  */
1702 static int finish_port_resume(struct usb_device *udev)
1703 {
1704         int     status;
1705         u16     devstatus;
1706
1707         /* caller owns the udev device lock */
1708         dev_dbg(&udev->dev, "finish resume\n");
1709
1710         /* usb ch9 identifies four variants of SUSPENDED, based on what
1711          * state the device resumes to.  Linux currently won't see the
1712          * first two on the host side; they'd be inside hub_port_init()
1713          * during many timeouts, but khubd can't suspend until later.
1714          */
1715         usb_set_device_state(udev, udev->actconfig
1716                         ? USB_STATE_CONFIGURED
1717                         : USB_STATE_ADDRESS);
1718
1719         /* 10.5.4.5 says be sure devices in the tree are still there.
1720          * For now let's assume the device didn't go crazy on resume,
1721          * and device drivers will know about any resume quirks.
1722          */
1723         status = usb_get_status(udev, USB_RECIP_DEVICE, 0, &devstatus);
1724         if (status >= 0)
1725                 status = (status == 2 ? 0 : -ENODEV);
1726
1727         if (status)
1728                 dev_dbg(&udev->dev,
1729                         "gone after usb resume? status %d\n",
1730                         status);
1731         else if (udev->actconfig) {
1732                 le16_to_cpus(&devstatus);
1733                 if ((devstatus & (1 << USB_DEVICE_REMOTE_WAKEUP))
1734                                 && udev->parent) {
1735                         status = usb_control_msg(udev,
1736                                         usb_sndctrlpipe(udev, 0),
1737                                         USB_REQ_CLEAR_FEATURE,
1738                                                 USB_RECIP_DEVICE,
1739                                         USB_DEVICE_REMOTE_WAKEUP, 0,
1740                                         NULL, 0,
1741                                         USB_CTRL_SET_TIMEOUT);
1742                         if (status)
1743                                 dev_dbg(&udev->dev, "disable remote "
1744                                         "wakeup, status %d\n", status);
1745                 }
1746                 status = 0;
1747
1748         } else if (udev->devnum <= 0) {
1749                 dev_dbg(&udev->dev, "bogus resume!\n");
1750                 status = -EINVAL;
1751         }
1752         return status;
1753 }
1754
1755 static int
1756 hub_port_resume(struct usb_hub *hub, int port1, struct usb_device *udev)
1757 {
1758         int     status;
1759         u16     portchange, portstatus;
1760
1761         /* Skip the initial Clear-Suspend step for a remote wakeup */
1762         status = hub_port_status(hub, port1, &portstatus, &portchange);
1763         if (status == 0 && !(portstatus & USB_PORT_STAT_SUSPEND))
1764                 goto SuspendCleared;
1765
1766         // dev_dbg(hub->intfdev, "resume port %d\n", port1);
1767
1768         set_bit(port1, hub->busy_bits);
1769
1770         /* see 7.1.7.7; affects power usage, but not budgeting */
1771         status = clear_port_feature(hub->hdev,
1772                         port1, USB_PORT_FEAT_SUSPEND);
1773         if (status) {
1774                 dev_dbg(hub->intfdev,
1775                         "can't resume port %d, status %d\n",
1776                         port1, status);
1777         } else {
1778                 /* drive resume for at least 20 msec */
1779                 if (udev)
1780                         dev_dbg(&udev->dev, "usb %sresume\n",
1781                                         udev->auto_pm ? "auto-" : "");
1782                 msleep(25);
1783
1784 #define LIVE_FLAGS      ( USB_PORT_STAT_POWER \
1785                         | USB_PORT_STAT_ENABLE \
1786                         | USB_PORT_STAT_CONNECTION)
1787
1788                 /* Virtual root hubs can trigger on GET_PORT_STATUS to
1789                  * stop resume signaling.  Then finish the resume
1790                  * sequence.
1791                  */
1792                 status = hub_port_status(hub, port1, &portstatus, &portchange);
1793 SuspendCleared:
1794                 if (status < 0
1795                                 || (portstatus & LIVE_FLAGS) != LIVE_FLAGS
1796                                 || (portstatus & USB_PORT_STAT_SUSPEND) != 0
1797                                 ) {
1798                         dev_dbg(hub->intfdev,
1799                                 "port %d status %04x.%04x after resume, %d\n",
1800                                 port1, portchange, portstatus, status);
1801                         if (status >= 0)
1802                                 status = -ENODEV;
1803                 } else {
1804                         if (portchange & USB_PORT_STAT_C_SUSPEND)
1805                                 clear_port_feature(hub->hdev, port1,
1806                                                 USB_PORT_FEAT_C_SUSPEND);
1807                         /* TRSMRCY = 10 msec */
1808                         msleep(10);
1809                         if (udev)
1810                                 status = finish_port_resume(udev);
1811                 }
1812         }
1813         if (status < 0)
1814                 hub_port_logical_disconnect(hub, port1);
1815
1816         clear_bit(port1, hub->busy_bits);
1817         if (!hub->hdev->parent && !hub->busy_bits[0])
1818                 usb_enable_root_hub_irq(hub->hdev->bus);
1819
1820         return status;
1821 }
1822
1823 /*
1824  * usb_port_resume - re-activate a suspended usb device's upstream port
1825  * @udev: device to re-activate
1826  * Context: must be able to sleep; device not locked; pm locks held
1827  *
1828  * This will re-activate the suspended device, increasing power usage
1829  * while letting drivers communicate again with its endpoints.
1830  * USB resume explicitly guarantees that the power session between
1831  * the host and the device is the same as it was when the device
1832  * suspended.
1833  *
1834  * Returns 0 on success, else negative errno.
1835  */
1836 int usb_port_resume(struct usb_device *udev)
1837 {
1838         int     status;
1839
1840         /* we change the device's upstream USB link,
1841          * but root hubs have no upstream USB link.
1842          */
1843         if (udev->parent) {
1844                 // NOTE this fails if parent is also suspended...
1845                 status = hub_port_resume(hdev_to_hub(udev->parent),
1846                                 udev->portnum, udev);
1847         } else {
1848                 dev_dbg(&udev->dev, "usb %sresume\n",
1849                                 udev->auto_pm ? "auto-" : "");
1850                 status = finish_port_resume(udev);
1851         }
1852         if (status < 0)
1853                 dev_dbg(&udev->dev, "can't resume, status %d\n", status);
1854         return status;
1855 }
1856
1857 static int remote_wakeup(struct usb_device *udev)
1858 {
1859         int     status = 0;
1860
1861         usb_lock_device(udev);
1862         if (udev->state == USB_STATE_SUSPENDED) {
1863                 dev_dbg(&udev->dev, "usb %sresume\n", "wakeup-");
1864                 status = usb_autoresume_device(udev);
1865
1866                 /* Give the interface drivers a chance to do something,
1867                  * then autosuspend the device again. */
1868                 if (status == 0)
1869                         usb_autosuspend_device(udev);
1870         }
1871         usb_unlock_device(udev);
1872         return status;
1873 }
1874
1875 #else   /* CONFIG_USB_SUSPEND */
1876
1877 /* When CONFIG_USB_SUSPEND isn't set, we never suspend or resume any ports. */
1878
1879 int usb_port_suspend(struct usb_device *udev)
1880 {
1881         return 0;
1882 }
1883
1884 static inline int
1885 finish_port_resume(struct usb_device *udev)
1886 {
1887         return 0;
1888 }
1889
1890 static inline int
1891 hub_port_resume(struct usb_hub *hub, int port1, struct usb_device *udev)
1892 {
1893         return 0;
1894 }
1895
1896 int usb_port_resume(struct usb_device *udev)
1897 {
1898         return 0;
1899 }
1900
1901 static inline int remote_wakeup(struct usb_device *udev)
1902 {
1903         return 0;
1904 }
1905
1906 #endif
1907
1908 static int hub_suspend(struct usb_interface *intf, pm_message_t msg)
1909 {
1910         struct usb_hub          *hub = usb_get_intfdata (intf);
1911         struct usb_device       *hdev = hub->hdev;
1912         unsigned                port1;
1913         int                     status = 0;
1914
1915         /* fail if children aren't already suspended */
1916         for (port1 = 1; port1 <= hdev->maxchild; port1++) {
1917                 struct usb_device       *udev;
1918
1919                 udev = hdev->children [port1-1];
1920                 if (udev && msg.event == PM_EVENT_SUSPEND &&
1921 #ifdef  CONFIG_USB_SUSPEND
1922                                 udev->state != USB_STATE_SUSPENDED
1923 #else
1924                                 udev->dev.power.power_state.event
1925                                         == PM_EVENT_ON
1926 #endif
1927                                 ) {
1928                         if (!hdev->auto_pm)
1929                                 dev_dbg(&intf->dev, "port %d nyet suspended\n",
1930                                                 port1);
1931                         return -EBUSY;
1932                 }
1933         }
1934
1935         dev_dbg(&intf->dev, "%s\n", __FUNCTION__);
1936
1937         /* stop khubd and related activity */
1938         hub_quiesce(hub);
1939
1940         /* "global suspend" of the downstream HC-to-USB interface */
1941         if (!hdev->parent) {
1942                 status = hcd_bus_suspend(hdev->bus);
1943                 if (status != 0) {
1944                         dev_dbg(&hdev->dev, "'global' suspend %d\n", status);
1945                         hub_activate(hub);
1946                 }
1947         }
1948         return status;
1949 }
1950
1951 static int hub_resume(struct usb_interface *intf)
1952 {
1953         struct usb_hub          *hub = usb_get_intfdata (intf);
1954         struct usb_device       *hdev = hub->hdev;
1955         int                     status;
1956
1957         dev_dbg(&intf->dev, "%s\n", __FUNCTION__);
1958
1959         /* "global resume" of the downstream HC-to-USB interface */
1960         if (!hdev->parent) {
1961                 struct usb_bus  *bus = hdev->bus;
1962                 if (bus) {
1963                         status = hcd_bus_resume (bus);
1964                         if (status) {
1965                                 dev_dbg(&intf->dev, "'global' resume %d\n",
1966                                         status);
1967                                 return status;
1968                         }
1969                 } else
1970                         return -EOPNOTSUPP;
1971                 if (status == 0) {
1972                         /* TRSMRCY = 10 msec */
1973                         msleep(10);
1974                 }
1975         }
1976
1977         /* tell khubd to look for changes on this hub */
1978         hub_activate(hub);
1979         return 0;
1980 }
1981
1982 #else   /* CONFIG_PM */
1983
1984 static inline int remote_wakeup(struct usb_device *udev)
1985 {
1986         return 0;
1987 }
1988
1989 #define hub_suspend NULL
1990 #define hub_resume NULL
1991 #endif
1992
1993 void usb_resume_root_hub(struct usb_device *hdev)
1994 {
1995         struct usb_hub *hub = hdev_to_hub(hdev);
1996
1997         kick_khubd(hub);
1998 }
1999
2000
2001 /* USB 2.0 spec, 7.1.7.3 / fig 7-29:
2002  *
2003  * Between connect detection and reset signaling there must be a delay
2004  * of 100ms at least for debounce and power-settling.  The corresponding
2005  * timer shall restart whenever the downstream port detects a disconnect.
2006  * 
2007  * Apparently there are some bluetooth and irda-dongles and a number of
2008  * low-speed devices for which this debounce period may last over a second.
2009  * Not covered by the spec - but easy to deal with.
2010  *
2011  * This implementation uses a 1500ms total debounce timeout; if the
2012  * connection isn't stable by then it returns -ETIMEDOUT.  It checks
2013  * every 25ms for transient disconnects.  When the port status has been
2014  * unchanged for 100ms it returns the port status.
2015  */
2016
2017 #define HUB_DEBOUNCE_TIMEOUT    1500
2018 #define HUB_DEBOUNCE_STEP         25
2019 #define HUB_DEBOUNCE_STABLE      100
2020
2021 static int hub_port_debounce(struct usb_hub *hub, int port1)
2022 {
2023         int ret;
2024         int total_time, stable_time = 0;
2025         u16 portchange, portstatus;
2026         unsigned connection = 0xffff;
2027
2028         for (total_time = 0; ; total_time += HUB_DEBOUNCE_STEP) {
2029                 ret = hub_port_status(hub, port1, &portstatus, &portchange);
2030                 if (ret < 0)
2031                         return ret;
2032
2033                 if (!(portchange & USB_PORT_STAT_C_CONNECTION) &&
2034                      (portstatus & USB_PORT_STAT_CONNECTION) == connection) {
2035                         stable_time += HUB_DEBOUNCE_STEP;
2036                         if (stable_time >= HUB_DEBOUNCE_STABLE)
2037                                 break;
2038                 } else {
2039                         stable_time = 0;
2040                         connection = portstatus & USB_PORT_STAT_CONNECTION;
2041                 }
2042
2043                 if (portchange & USB_PORT_STAT_C_CONNECTION) {
2044                         clear_port_feature(hub->hdev, port1,
2045                                         USB_PORT_FEAT_C_CONNECTION);
2046                 }
2047
2048                 if (total_time >= HUB_DEBOUNCE_TIMEOUT)
2049                         break;
2050                 msleep(HUB_DEBOUNCE_STEP);
2051         }
2052
2053         dev_dbg (hub->intfdev,
2054                 "debounce: port %d: total %dms stable %dms status 0x%x\n",
2055                 port1, total_time, stable_time, portstatus);
2056
2057         if (stable_time < HUB_DEBOUNCE_STABLE)
2058                 return -ETIMEDOUT;
2059         return portstatus;
2060 }
2061
2062 static void ep0_reinit(struct usb_device *udev)
2063 {
2064         usb_disable_endpoint(udev, 0 + USB_DIR_IN);
2065         usb_disable_endpoint(udev, 0 + USB_DIR_OUT);
2066         udev->ep_in[0] = udev->ep_out[0] = &udev->ep0;
2067 }
2068
2069 #define usb_sndaddr0pipe()      (PIPE_CONTROL << 30)
2070 #define usb_rcvaddr0pipe()      ((PIPE_CONTROL << 30) | USB_DIR_IN)
2071
2072 static int hub_set_address(struct usb_device *udev)
2073 {
2074         int retval;
2075
2076         if (udev->devnum == 0)
2077                 return -EINVAL;
2078         if (udev->state == USB_STATE_ADDRESS)
2079                 return 0;
2080         if (udev->state != USB_STATE_DEFAULT)
2081                 return -EINVAL;
2082         retval = usb_control_msg(udev, usb_sndaddr0pipe(),
2083                 USB_REQ_SET_ADDRESS, 0, udev->devnum, 0,
2084                 NULL, 0, USB_CTRL_SET_TIMEOUT);
2085         if (retval == 0) {
2086                 usb_set_device_state(udev, USB_STATE_ADDRESS);
2087                 ep0_reinit(udev);
2088         }
2089         return retval;
2090 }
2091
2092 /* Reset device, (re)assign address, get device descriptor.
2093  * Device connection must be stable, no more debouncing needed.
2094  * Returns device in USB_STATE_ADDRESS, except on error.
2095  *
2096  * If this is called for an already-existing device (as part of
2097  * usb_reset_device), the caller must own the device lock.  For a
2098  * newly detected device that is not accessible through any global
2099  * pointers, it's not necessary to lock the device.
2100  */
2101 static int
2102 hub_port_init (struct usb_hub *hub, struct usb_device *udev, int port1,
2103                 int retry_counter)
2104 {
2105         static DEFINE_MUTEX(usb_address0_mutex);
2106
2107         struct usb_device       *hdev = hub->hdev;
2108         int                     i, j, retval;
2109         unsigned                delay = HUB_SHORT_RESET_TIME;
2110         enum usb_device_speed   oldspeed = udev->speed;
2111         char                    *speed, *type;
2112
2113         /* root hub ports have a slightly longer reset period
2114          * (from USB 2.0 spec, section 7.1.7.5)
2115          */
2116         if (!hdev->parent) {
2117                 delay = HUB_ROOT_RESET_TIME;
2118                 if (port1 == hdev->bus->otg_port)
2119                         hdev->bus->b_hnp_enable = 0;
2120         }
2121
2122         /* Some low speed devices have problems with the quick delay, so */
2123         /*  be a bit pessimistic with those devices. RHbug #23670 */
2124         if (oldspeed == USB_SPEED_LOW)
2125                 delay = HUB_LONG_RESET_TIME;
2126
2127         mutex_lock(&usb_address0_mutex);
2128
2129         /* Reset the device; full speed may morph to high speed */
2130         retval = hub_port_reset(hub, port1, udev, delay);
2131         if (retval < 0)         /* error or disconnect */
2132                 goto fail;
2133                                 /* success, speed is known */
2134         retval = -ENODEV;
2135
2136         if (oldspeed != USB_SPEED_UNKNOWN && oldspeed != udev->speed) {
2137                 dev_dbg(&udev->dev, "device reset changed speed!\n");
2138                 goto fail;
2139         }
2140         oldspeed = udev->speed;
2141   
2142         /* USB 2.0 section 5.5.3 talks about ep0 maxpacket ...
2143          * it's fixed size except for full speed devices.
2144          * For Wireless USB devices, ep0 max packet is always 512 (tho
2145          * reported as 0xff in the device descriptor). WUSB1.0[4.8.1].
2146          */
2147         switch (udev->speed) {
2148         case USB_SPEED_VARIABLE:        /* fixed at 512 */
2149                 udev->ep0.desc.wMaxPacketSize = __constant_cpu_to_le16(512);
2150                 break;
2151         case USB_SPEED_HIGH:            /* fixed at 64 */
2152                 udev->ep0.desc.wMaxPacketSize = __constant_cpu_to_le16(64);
2153                 break;
2154         case USB_SPEED_FULL:            /* 8, 16, 32, or 64 */
2155                 /* to determine the ep0 maxpacket size, try to read
2156                  * the device descriptor to get bMaxPacketSize0 and
2157                  * then correct our initial guess.
2158                  */
2159                 udev->ep0.desc.wMaxPacketSize = __constant_cpu_to_le16(64);
2160                 break;
2161         case USB_SPEED_LOW:             /* fixed at 8 */
2162                 udev->ep0.desc.wMaxPacketSize = __constant_cpu_to_le16(8);
2163                 break;
2164         default:
2165                 goto fail;
2166         }
2167  
2168         type = "";
2169         switch (udev->speed) {
2170         case USB_SPEED_LOW:     speed = "low";  break;
2171         case USB_SPEED_FULL:    speed = "full"; break;
2172         case USB_SPEED_HIGH:    speed = "high"; break;
2173         case USB_SPEED_VARIABLE:
2174                                 speed = "variable";
2175                                 type = "Wireless ";
2176                                 break;
2177         default:                speed = "?";    break;
2178         }
2179         dev_info (&udev->dev,
2180                   "%s %s speed %sUSB device using %s and address %d\n",
2181                   (udev->config) ? "reset" : "new", speed, type,
2182                   udev->bus->controller->driver->name, udev->devnum);
2183
2184         /* Set up TT records, if needed  */
2185         if (hdev->tt) {
2186                 udev->tt = hdev->tt;
2187                 udev->ttport = hdev->ttport;
2188         } else if (udev->speed != USB_SPEED_HIGH
2189                         && hdev->speed == USB_SPEED_HIGH) {
2190                 udev->tt = &hub->tt;
2191                 udev->ttport = port1;
2192         }
2193  
2194         /* Why interleave GET_DESCRIPTOR and SET_ADDRESS this way?
2195          * Because device hardware and firmware is sometimes buggy in
2196          * this area, and this is how Linux has done it for ages.
2197          * Change it cautiously.
2198          *
2199          * NOTE:  If USE_NEW_SCHEME() is true we will start by issuing
2200          * a 64-byte GET_DESCRIPTOR request.  This is what Windows does,
2201          * so it may help with some non-standards-compliant devices.
2202          * Otherwise we start with SET_ADDRESS and then try to read the
2203          * first 8 bytes of the device descriptor to get the ep0 maxpacket
2204          * value.
2205          */
2206         for (i = 0; i < GET_DESCRIPTOR_TRIES; (++i, msleep(100))) {
2207                 if (USE_NEW_SCHEME(retry_counter)) {
2208                         struct usb_device_descriptor *buf;
2209                         int r = 0;
2210
2211 #define GET_DESCRIPTOR_BUFSIZE  64
2212                         buf = kmalloc(GET_DESCRIPTOR_BUFSIZE, GFP_NOIO);
2213                         if (!buf) {
2214                                 retval = -ENOMEM;
2215                                 continue;
2216                         }
2217
2218                         /* Use a short timeout the first time through,
2219                          * so that recalcitrant full-speed devices with
2220                          * 8- or 16-byte ep0-maxpackets won't slow things
2221                          * down tremendously by NAKing the unexpectedly
2222                          * early status stage.  Also, retry on all errors;
2223                          * some devices are flakey.
2224                          * 255 is for WUSB devices, we actually need to use 512.
2225                          * WUSB1.0[4.8.1].
2226                          */
2227                         for (j = 0; j < 3; ++j) {
2228                                 buf->bMaxPacketSize0 = 0;
2229                                 r = usb_control_msg(udev, usb_rcvaddr0pipe(),
2230                                         USB_REQ_GET_DESCRIPTOR, USB_DIR_IN,
2231                                         USB_DT_DEVICE << 8, 0,
2232                                         buf, GET_DESCRIPTOR_BUFSIZE,
2233                                         (i ? USB_CTRL_GET_TIMEOUT : 1000));
2234                                 switch (buf->bMaxPacketSize0) {
2235                                 case 8: case 16: case 32: case 64: case 255:
2236                                         if (buf->bDescriptorType ==
2237                                                         USB_DT_DEVICE) {
2238                                                 r = 0;
2239                                                 break;
2240                                         }
2241                                         /* FALL THROUGH */
2242                                 default:
2243                                         if (r == 0)
2244                                                 r = -EPROTO;
2245                                         break;
2246                                 }
2247                                 if (r == 0)
2248                                         break;
2249                         }
2250                         udev->descriptor.bMaxPacketSize0 =
2251                                         buf->bMaxPacketSize0;
2252                         kfree(buf);
2253
2254                         retval = hub_port_reset(hub, port1, udev, delay);
2255                         if (retval < 0)         /* error or disconnect */
2256                                 goto fail;
2257                         if (oldspeed != udev->speed) {
2258                                 dev_dbg(&udev->dev,
2259                                         "device reset changed speed!\n");
2260                                 retval = -ENODEV;
2261                                 goto fail;
2262                         }
2263                         if (r) {
2264                                 dev_err(&udev->dev, "device descriptor "
2265                                                 "read/%s, error %d\n",
2266                                                 "64", r);
2267                                 retval = -EMSGSIZE;
2268                                 continue;
2269                         }
2270 #undef GET_DESCRIPTOR_BUFSIZE
2271                 }
2272
2273                 for (j = 0; j < SET_ADDRESS_TRIES; ++j) {
2274                         retval = hub_set_address(udev);
2275                         if (retval >= 0)
2276                                 break;
2277                         msleep(200);
2278                 }
2279                 if (retval < 0) {
2280                         dev_err(&udev->dev,
2281                                 "device not accepting address %d, error %d\n",
2282                                 udev->devnum, retval);
2283                         goto fail;
2284                 }
2285  
2286                 /* cope with hardware quirkiness:
2287                  *  - let SET_ADDRESS settle, some device hardware wants it
2288                  *  - read ep0 maxpacket even for high and low speed,
2289                  */
2290                 msleep(10);
2291                 if (USE_NEW_SCHEME(retry_counter))
2292                         break;
2293
2294                 retval = usb_get_device_descriptor(udev, 8);
2295                 if (retval < 8) {
2296                         dev_err(&udev->dev, "device descriptor "
2297                                         "read/%s, error %d\n",
2298                                         "8", retval);
2299                         if (retval >= 0)
2300                                 retval = -EMSGSIZE;
2301                 } else {
2302                         retval = 0;
2303                         break;
2304                 }
2305         }
2306         if (retval)
2307                 goto fail;
2308
2309         i = udev->descriptor.bMaxPacketSize0 == 0xff?
2310             512 : udev->descriptor.bMaxPacketSize0;
2311         if (le16_to_cpu(udev->ep0.desc.wMaxPacketSize) != i) {
2312                 if (udev->speed != USB_SPEED_FULL ||
2313                                 !(i == 8 || i == 16 || i == 32 || i == 64)) {
2314                         dev_err(&udev->dev, "ep0 maxpacket = %d\n", i);
2315                         retval = -EMSGSIZE;
2316                         goto fail;
2317                 }
2318                 dev_dbg(&udev->dev, "ep0 maxpacket = %d\n", i);
2319                 udev->ep0.desc.wMaxPacketSize = cpu_to_le16(i);
2320                 ep0_reinit(udev);
2321         }
2322   
2323         retval = usb_get_device_descriptor(udev, USB_DT_DEVICE_SIZE);
2324         if (retval < (signed)sizeof(udev->descriptor)) {
2325                 dev_err(&udev->dev, "device descriptor read/%s, error %d\n",
2326                         "all", retval);
2327                 if (retval >= 0)
2328                         retval = -ENOMSG;
2329                 goto fail;
2330         }
2331
2332         retval = 0;
2333
2334 fail:
2335         if (retval)
2336                 hub_port_disable(hub, port1, 0);
2337         mutex_unlock(&usb_address0_mutex);
2338         return retval;
2339 }
2340
2341 static void
2342 check_highspeed (struct usb_hub *hub, struct usb_device *udev, int port1)
2343 {
2344         struct usb_qualifier_descriptor *qual;
2345         int                             status;
2346
2347         qual = kmalloc (sizeof *qual, GFP_KERNEL);
2348         if (qual == NULL)
2349                 return;
2350
2351         status = usb_get_descriptor (udev, USB_DT_DEVICE_QUALIFIER, 0,
2352                         qual, sizeof *qual);
2353         if (status == sizeof *qual) {
2354                 dev_info(&udev->dev, "not running at top speed; "
2355                         "connect to a high speed hub\n");
2356                 /* hub LEDs are probably harder to miss than syslog */
2357                 if (hub->has_indicators) {
2358                         hub->indicator[port1-1] = INDICATOR_GREEN_BLINK;
2359                         schedule_delayed_work (&hub->leds, 0);
2360                 }
2361         }
2362         kfree(qual);
2363 }
2364
2365 static unsigned
2366 hub_power_remaining (struct usb_hub *hub)
2367 {
2368         struct usb_device *hdev = hub->hdev;
2369         int remaining;
2370         int port1;
2371
2372         if (!hub->limited_power)
2373                 return 0;
2374
2375         remaining = hdev->bus_mA - hub->descriptor->bHubContrCurrent;
2376         for (port1 = 1; port1 <= hdev->maxchild; ++port1) {
2377                 struct usb_device       *udev = hdev->children[port1 - 1];
2378                 int                     delta;
2379
2380                 if (!udev)
2381                         continue;
2382
2383                 /* Unconfigured devices may not use more than 100mA,
2384                  * or 8mA for OTG ports */
2385                 if (udev->actconfig)
2386                         delta = udev->actconfig->desc.bMaxPower * 2;
2387                 else if (port1 != udev->bus->otg_port || hdev->parent)
2388                         delta = 100;
2389                 else
2390                         delta = 8;
2391                 if (delta > hub->mA_per_port)
2392                         dev_warn(&udev->dev, "%dmA is over %umA budget "
2393                                         "for port %d!\n",
2394                                         delta, hub->mA_per_port, port1);
2395                 remaining -= delta;
2396         }
2397         if (remaining < 0) {
2398                 dev_warn(hub->intfdev, "%dmA over power budget!\n",
2399                         - remaining);
2400                 remaining = 0;
2401         }
2402         return remaining;
2403 }
2404
2405 /* Handle physical or logical connection change events.
2406  * This routine is called when:
2407  *      a port connection-change occurs;
2408  *      a port enable-change occurs (often caused by EMI);
2409  *      usb_reset_device() encounters changed descriptors (as from
2410  *              a firmware download)
2411  * caller already locked the hub
2412  */
2413 static void hub_port_connect_change(struct usb_hub *hub, int port1,
2414                                         u16 portstatus, u16 portchange)
2415 {
2416         struct usb_device *hdev = hub->hdev;
2417         struct device *hub_dev = hub->intfdev;
2418         u16 wHubCharacteristics = le16_to_cpu(hub->descriptor->wHubCharacteristics);
2419         int status, i;
2420  
2421         dev_dbg (hub_dev,
2422                 "port %d, status %04x, change %04x, %s\n",
2423                 port1, portstatus, portchange, portspeed (portstatus));
2424
2425         if (hub->has_indicators) {
2426                 set_port_led(hub, port1, HUB_LED_AUTO);
2427                 hub->indicator[port1-1] = INDICATOR_AUTO;
2428         }
2429  
2430         /* Disconnect any existing devices under this port */
2431         if (hdev->children[port1-1])
2432                 usb_disconnect(&hdev->children[port1-1]);
2433         clear_bit(port1, hub->change_bits);
2434
2435 #ifdef  CONFIG_USB_OTG
2436         /* during HNP, don't repeat the debounce */
2437         if (hdev->bus->is_b_host)
2438                 portchange &= ~USB_PORT_STAT_C_CONNECTION;
2439 #endif
2440
2441         if (portchange & USB_PORT_STAT_C_CONNECTION) {
2442                 status = hub_port_debounce(hub, port1);
2443                 if (status < 0) {
2444                         dev_err (hub_dev,
2445                                 "connect-debounce failed, port %d disabled\n",
2446                                 port1);
2447                         goto done;
2448                 }
2449                 portstatus = status;
2450         }
2451
2452         /* Return now if nothing is connected */
2453         if (!(portstatus & USB_PORT_STAT_CONNECTION)) {
2454
2455                 /* maybe switch power back on (e.g. root hub was reset) */
2456                 if ((wHubCharacteristics & HUB_CHAR_LPSM) < 2
2457                                 && !(portstatus & (1 << USB_PORT_FEAT_POWER)))
2458                         set_port_feature(hdev, port1, USB_PORT_FEAT_POWER);
2459  
2460                 if (portstatus & USB_PORT_STAT_ENABLE)
2461                         goto done;
2462                 return;
2463         }
2464
2465 #ifdef  CONFIG_USB_SUSPEND
2466         /* If something is connected, but the port is suspended, wake it up. */
2467         if (portstatus & USB_PORT_STAT_SUSPEND) {
2468                 status = hub_port_resume(hub, port1, NULL);
2469                 if (status < 0) {
2470                         dev_dbg(hub_dev,
2471                                 "can't clear suspend on port %d; %d\n",
2472                                 port1, status);
2473                         goto done;
2474                 }
2475         }
2476 #endif
2477
2478         for (i = 0; i < SET_CONFIG_TRIES; i++) {
2479                 struct usb_device *udev;
2480
2481                 /* reallocate for each attempt, since references
2482                  * to the previous one can escape in various ways
2483                  */
2484                 udev = usb_alloc_dev(hdev, hdev->bus, port1);
2485                 if (!udev) {
2486                         dev_err (hub_dev,
2487                                 "couldn't allocate port %d usb_device\n",
2488                                 port1);
2489                         goto done;
2490                 }
2491
2492                 usb_set_device_state(udev, USB_STATE_POWERED);
2493                 udev->speed = USB_SPEED_UNKNOWN;
2494                 udev->bus_mA = hub->mA_per_port;
2495                 udev->level = hdev->level + 1;
2496
2497                 /* set the address */
2498                 choose_address(udev);
2499                 if (udev->devnum <= 0) {
2500                         status = -ENOTCONN;     /* Don't retry */
2501                         goto loop;
2502                 }
2503
2504                 /* reset and get descriptor */
2505                 status = hub_port_init(hub, udev, port1, i);
2506                 if (status < 0)
2507                         goto loop;
2508
2509                 /* consecutive bus-powered hubs aren't reliable; they can
2510                  * violate the voltage drop budget.  if the new child has
2511                  * a "powered" LED, users should notice we didn't enable it
2512                  * (without reading syslog), even without per-port LEDs
2513                  * on the parent.
2514                  */
2515                 if (udev->descriptor.bDeviceClass == USB_CLASS_HUB
2516                                 && udev->bus_mA <= 100) {
2517                         u16     devstat;
2518
2519                         status = usb_get_status(udev, USB_RECIP_DEVICE, 0,
2520                                         &devstat);
2521                         if (status < 2) {
2522                                 dev_dbg(&udev->dev, "get status %d ?\n", status);
2523                                 goto loop_disable;
2524                         }
2525                         le16_to_cpus(&devstat);
2526                         if ((devstat & (1 << USB_DEVICE_SELF_POWERED)) == 0) {
2527                                 dev_err(&udev->dev,
2528                                         "can't connect bus-powered hub "
2529                                         "to this port\n");
2530                                 if (hub->has_indicators) {
2531                                         hub->indicator[port1-1] =
2532                                                 INDICATOR_AMBER_BLINK;
2533                                         schedule_delayed_work (&hub->leds, 0);
2534                                 }
2535                                 status = -ENOTCONN;     /* Don't retry */
2536                                 goto loop_disable;
2537                         }
2538                 }
2539  
2540                 /* check for devices running slower than they could */
2541                 if (le16_to_cpu(udev->descriptor.bcdUSB) >= 0x0200
2542                                 && udev->speed == USB_SPEED_FULL
2543                                 && highspeed_hubs != 0)
2544                         check_highspeed (hub, udev, port1);
2545
2546                 /* Store the parent's children[] pointer.  At this point
2547                  * udev becomes globally accessible, although presumably
2548                  * no one will look at it until hdev is unlocked.
2549                  */
2550                 status = 0;
2551
2552                 /* We mustn't add new devices if the parent hub has
2553                  * been disconnected; we would race with the
2554                  * recursively_mark_NOTATTACHED() routine.
2555                  */
2556                 spin_lock_irq(&device_state_lock);
2557                 if (hdev->state == USB_STATE_NOTATTACHED)
2558                         status = -ENOTCONN;
2559                 else
2560                         hdev->children[port1-1] = udev;
2561                 spin_unlock_irq(&device_state_lock);
2562
2563                 /* Run it through the hoops (find a driver, etc) */
2564                 if (!status) {
2565                         status = usb_new_device(udev);
2566                         if (status) {
2567                                 spin_lock_irq(&device_state_lock);
2568                                 hdev->children[port1-1] = NULL;
2569                                 spin_unlock_irq(&device_state_lock);
2570                         }
2571                 }
2572
2573                 if (status)
2574                         goto loop_disable;
2575
2576                 status = hub_power_remaining(hub);
2577                 if (status)
2578                         dev_dbg(hub_dev, "%dmA power budget left\n", status);
2579
2580                 return;
2581
2582 loop_disable:
2583                 hub_port_disable(hub, port1, 1);
2584 loop:
2585                 ep0_reinit(udev);
2586                 release_address(udev);
2587                 usb_put_dev(udev);
2588                 if (status == -ENOTCONN)
2589                         break;
2590         }
2591  
2592 done:
2593         hub_port_disable(hub, port1, 1);
2594 }
2595
2596 static void hub_events(void)
2597 {
2598         struct list_head *tmp;
2599         struct usb_device *hdev;
2600         struct usb_interface *intf;
2601         struct usb_hub *hub;
2602         struct device *hub_dev;
2603         u16 hubstatus;
2604         u16 hubchange;
2605         u16 portstatus;
2606         u16 portchange;
2607         int i, ret;
2608         int connect_change;
2609
2610         /*
2611          *  We restart the list every time to avoid a deadlock with
2612          * deleting hubs downstream from this one. This should be
2613          * safe since we delete the hub from the event list.
2614          * Not the most efficient, but avoids deadlocks.
2615          */
2616         while (1) {
2617
2618                 /* Grab the first entry at the beginning of the list */
2619                 spin_lock_irq(&hub_event_lock);
2620                 if (list_empty(&hub_event_list)) {
2621                         spin_unlock_irq(&hub_event_lock);
2622                         break;
2623                 }
2624
2625                 tmp = hub_event_list.next;
2626                 list_del_init(tmp);
2627
2628                 hub = list_entry(tmp, struct usb_hub, event_list);
2629                 hdev = hub->hdev;
2630                 intf = to_usb_interface(hub->intfdev);
2631                 hub_dev = &intf->dev;
2632
2633                 dev_dbg(hub_dev, "state %d ports %d chg %04x evt %04x\n",
2634                                 hdev->state, hub->descriptor
2635                                         ? hub->descriptor->bNbrPorts
2636                                         : 0,
2637                                 /* NOTE: expects max 15 ports... */
2638                                 (u16) hub->change_bits[0],
2639                                 (u16) hub->event_bits[0]);
2640
2641                 usb_get_intf(intf);
2642                 spin_unlock_irq(&hub_event_lock);
2643
2644                 /* Lock the device, then check to see if we were
2645                  * disconnected while waiting for the lock to succeed. */
2646                 if (locktree(hdev) < 0) {
2647                         usb_put_intf(intf);
2648                         continue;
2649                 }
2650                 if (hub != usb_get_intfdata(intf))
2651                         goto loop;
2652
2653                 /* If the hub has died, clean up after it */
2654                 if (hdev->state == USB_STATE_NOTATTACHED) {
2655                         hub->error = -ENODEV;
2656                         hub_pre_reset(intf);
2657                         goto loop;
2658                 }
2659
2660                 /* Autoresume */
2661                 ret = usb_autopm_get_interface(intf);
2662                 if (ret) {
2663                         dev_dbg(hub_dev, "Can't autoresume: %d\n", ret);
2664                         goto loop;
2665                 }
2666
2667                 /* If this is an inactive hub, do nothing */
2668                 if (hub->quiescing)
2669                         goto loop_autopm;
2670
2671                 if (hub->error) {
2672                         dev_dbg (hub_dev, "resetting for error %d\n",
2673                                 hub->error);
2674
2675                         ret = usb_reset_composite_device(hdev, intf);
2676                         if (ret) {
2677                                 dev_dbg (hub_dev,
2678                                         "error resetting hub: %d\n", ret);
2679                                 goto loop_autopm;
2680                         }
2681
2682                         hub->nerrors = 0;
2683                         hub->error = 0;
2684                 }
2685
2686                 /* deal with port status changes */
2687                 for (i = 1; i <= hub->descriptor->bNbrPorts; i++) {
2688                         if (test_bit(i, hub->busy_bits))
2689                                 continue;
2690                         connect_change = test_bit(i, hub->change_bits);
2691                         if (!test_and_clear_bit(i, hub->event_bits) &&
2692                                         !connect_change && !hub->activating)
2693                                 continue;
2694
2695                         ret = hub_port_status(hub, i,
2696                                         &portstatus, &portchange);
2697                         if (ret < 0)
2698                                 continue;
2699
2700                         if (hub->activating && !hdev->children[i-1] &&
2701                                         (portstatus &
2702                                                 USB_PORT_STAT_CONNECTION))
2703                                 connect_change = 1;
2704
2705                         if (portchange & USB_PORT_STAT_C_CONNECTION) {
2706                                 clear_port_feature(hdev, i,
2707                                         USB_PORT_FEAT_C_CONNECTION);
2708                                 connect_change = 1;
2709                         }
2710
2711                         if (portchange & USB_PORT_STAT_C_ENABLE) {
2712                                 if (!connect_change)
2713                                         dev_dbg (hub_dev,
2714                                                 "port %d enable change, "
2715                                                 "status %08x\n",
2716                                                 i, portstatus);
2717                                 clear_port_feature(hdev, i,
2718                                         USB_PORT_FEAT_C_ENABLE);
2719
2720                                 /*
2721                                  * EM interference sometimes causes badly
2722                                  * shielded USB devices to be shutdown by
2723                                  * the hub, this hack enables them again.
2724                                  * Works at least with mouse driver. 
2725                                  */
2726                                 if (!(portstatus & USB_PORT_STAT_ENABLE)
2727                                     && !connect_change
2728                                     && hdev->children[i-1]) {
2729                                         dev_err (hub_dev,
2730                                             "port %i "
2731                                             "disabled by hub (EMI?), "
2732                                             "re-enabling...\n",
2733                                                 i);
2734                                         connect_change = 1;
2735                                 }
2736                         }
2737
2738                         if (portchange & USB_PORT_STAT_C_SUSPEND) {
2739                                 clear_port_feature(hdev, i,
2740                                         USB_PORT_FEAT_C_SUSPEND);
2741                                 if (hdev->children[i-1]) {
2742                                         ret = remote_wakeup(hdev->
2743                                                         children[i-1]);
2744                                         if (ret < 0)
2745                                                 connect_change = 1;
2746                                 } else {
2747                                         ret = -ENODEV;
2748                                         hub_port_disable(hub, i, 1);
2749                                 }
2750                                 dev_dbg (hub_dev,
2751                                         "resume on port %d, status %d\n",
2752                                         i, ret);
2753                         }
2754                         
2755                         if (portchange & USB_PORT_STAT_C_OVERCURRENT) {
2756                                 dev_err (hub_dev,
2757                                         "over-current change on port %d\n",
2758                                         i);
2759                                 clear_port_feature(hdev, i,
2760                                         USB_PORT_FEAT_C_OVER_CURRENT);
2761                                 hub_power_on(hub);
2762                         }
2763
2764                         if (portchange & USB_PORT_STAT_C_RESET) {
2765                                 dev_dbg (hub_dev,
2766                                         "reset change on port %d\n",
2767                                         i);
2768                                 clear_port_feature(hdev, i,
2769                                         USB_PORT_FEAT_C_RESET);
2770                         }
2771
2772                         if (connect_change)
2773                                 hub_port_connect_change(hub, i,
2774                                                 portstatus, portchange);
2775                 } /* end for i */
2776
2777                 /* deal with hub status changes */
2778                 if (test_and_clear_bit(0, hub->event_bits) == 0)
2779                         ;       /* do nothing */
2780                 else if (hub_hub_status(hub, &hubstatus, &hubchange) < 0)
2781                         dev_err (hub_dev, "get_hub_status failed\n");
2782                 else {
2783                         if (hubchange & HUB_CHANGE_LOCAL_POWER) {
2784                                 dev_dbg (hub_dev, "power change\n");
2785                                 clear_hub_feature(hdev, C_HUB_LOCAL_POWER);
2786                                 if (hubstatus & HUB_STATUS_LOCAL_POWER)
2787                                         /* FIXME: Is this always true? */
2788                                         hub->limited_power = 0;
2789                                 else
2790                                         hub->limited_power = 1;
2791                         }
2792                         if (hubchange & HUB_CHANGE_OVERCURRENT) {
2793                                 dev_dbg (hub_dev, "overcurrent change\n");
2794                                 msleep(500);    /* Cool down */
2795                                 clear_hub_feature(hdev, C_HUB_OVER_CURRENT);
2796                                 hub_power_on(hub);
2797                         }
2798                 }
2799
2800                 hub->activating = 0;
2801
2802                 /* If this is a root hub, tell the HCD it's okay to
2803                  * re-enable port-change interrupts now. */
2804                 if (!hdev->parent && !hub->busy_bits[0])
2805                         usb_enable_root_hub_irq(hdev->bus);
2806
2807 loop_autopm:
2808                 /* Allow autosuspend if we're not going to run again */
2809                 if (list_empty(&hub->event_list))
2810                         usb_autopm_enable(intf);
2811 loop:
2812                 usb_unlock_device(hdev);
2813                 usb_put_intf(intf);
2814
2815         } /* end while (1) */
2816 }
2817
2818 static int hub_thread(void *__unused)
2819 {
2820         do {
2821                 hub_events();
2822                 wait_event_interruptible(khubd_wait,
2823                                 !list_empty(&hub_event_list) ||
2824                                 kthread_should_stop());
2825                 try_to_freeze();
2826         } while (!kthread_should_stop() || !list_empty(&hub_event_list));
2827
2828         pr_debug("%s: khubd exiting\n", usbcore_name);
2829         return 0;
2830 }
2831
2832 static struct usb_device_id hub_id_table [] = {
2833     { .match_flags = USB_DEVICE_ID_MATCH_DEV_CLASS,
2834       .bDeviceClass = USB_CLASS_HUB},
2835     { .match_flags = USB_DEVICE_ID_MATCH_INT_CLASS,
2836       .bInterfaceClass = USB_CLASS_HUB},
2837     { }                                         /* Terminating entry */
2838 };
2839
2840 MODULE_DEVICE_TABLE (usb, hub_id_table);
2841
2842 static struct usb_driver hub_driver = {
2843         .name =         "hub",
2844         .probe =        hub_probe,
2845         .disconnect =   hub_disconnect,
2846         .suspend =      hub_suspend,
2847         .resume =       hub_resume,
2848         .pre_reset =    hub_pre_reset,
2849         .post_reset =   hub_post_reset,
2850         .ioctl =        hub_ioctl,
2851         .id_table =     hub_id_table,
2852         .supports_autosuspend = 1,
2853 };
2854
2855 int usb_hub_init(void)
2856 {
2857         if (usb_register(&hub_driver) < 0) {
2858                 printk(KERN_ERR "%s: can't register hub driver\n",
2859                         usbcore_name);
2860                 return -1;
2861         }
2862
2863         khubd_task = kthread_run(hub_thread, NULL, "khubd");
2864         if (!IS_ERR(khubd_task))
2865                 return 0;
2866
2867         /* Fall through if kernel_thread failed */
2868         usb_deregister(&hub_driver);
2869         printk(KERN_ERR "%s: can't start khubd\n", usbcore_name);
2870
2871         return -1;
2872 }
2873
2874 void usb_hub_cleanup(void)
2875 {
2876         kthread_stop(khubd_task);
2877
2878         /*
2879          * Hub resources are freed for us by usb_deregister. It calls
2880          * usb_driver_purge on every device which in turn calls that
2881          * devices disconnect function if it is using this driver.
2882          * The hub_disconnect function takes care of releasing the
2883          * individual hub resources. -greg
2884          */
2885         usb_deregister(&hub_driver);
2886 } /* usb_hub_cleanup() */
2887
2888 static int config_descriptors_changed(struct usb_device *udev)
2889 {
2890         unsigned                        index;
2891         unsigned                        len = 0;
2892         struct usb_config_descriptor    *buf;
2893
2894         for (index = 0; index < udev->descriptor.bNumConfigurations; index++) {
2895                 if (len < le16_to_cpu(udev->config[index].desc.wTotalLength))
2896                         len = le16_to_cpu(udev->config[index].desc.wTotalLength);
2897         }
2898         buf = kmalloc (len, GFP_KERNEL);
2899         if (buf == NULL) {
2900                 dev_err(&udev->dev, "no mem to re-read configs after reset\n");
2901                 /* assume the worst */
2902                 return 1;
2903         }
2904         for (index = 0; index < udev->descriptor.bNumConfigurations; index++) {
2905                 int length;
2906                 int old_length = le16_to_cpu(udev->config[index].desc.wTotalLength);
2907
2908                 length = usb_get_descriptor(udev, USB_DT_CONFIG, index, buf,
2909                                 old_length);
2910                 if (length < old_length) {
2911                         dev_dbg(&udev->dev, "config index %d, error %d\n",
2912                                         index, length);
2913                         break;
2914                 }
2915                 if (memcmp (buf, udev->rawdescriptors[index], old_length)
2916                                 != 0) {
2917                         dev_dbg(&udev->dev, "config index %d changed (#%d)\n",
2918                                 index, buf->bConfigurationValue);
2919                         break;
2920                 }
2921         }
2922         kfree(buf);
2923         return index != udev->descriptor.bNumConfigurations;
2924 }
2925
2926 /**
2927  * usb_reset_device - perform a USB port reset to reinitialize a device
2928  * @udev: device to reset (not in SUSPENDED or NOTATTACHED state)
2929  *
2930  * WARNING - don't use this routine to reset a composite device
2931  * (one with multiple interfaces owned by separate drivers)!
2932  * Use usb_reset_composite_device() instead.
2933  *
2934  * Do a port reset, reassign the device's address, and establish its
2935  * former operating configuration.  If the reset fails, or the device's
2936  * descriptors change from their values before the reset, or the original
2937  * configuration and altsettings cannot be restored, a flag will be set
2938  * telling khubd to pretend the device has been disconnected and then
2939  * re-connected.  All drivers will be unbound, and the device will be
2940  * re-enumerated and probed all over again.
2941  *
2942  * Returns 0 if the reset succeeded, -ENODEV if the device has been
2943  * flagged for logical disconnection, or some other negative error code
2944  * if the reset wasn't even attempted.
2945  *
2946  * The caller must own the device lock.  For example, it's safe to use
2947  * this from a driver probe() routine after downloading new firmware.
2948  * For calls that might not occur during probe(), drivers should lock
2949  * the device using usb_lock_device_for_reset().
2950  */
2951 int usb_reset_device(struct usb_device *udev)
2952 {
2953         struct usb_device               *parent_hdev = udev->parent;
2954         struct usb_hub                  *parent_hub;
2955         struct usb_device_descriptor    descriptor = udev->descriptor;
2956         int                             i, ret = 0;
2957         int                             port1 = udev->portnum;
2958
2959         if (udev->state == USB_STATE_NOTATTACHED ||
2960                         udev->state == USB_STATE_SUSPENDED) {
2961                 dev_dbg(&udev->dev, "device reset not allowed in state %d\n",
2962                                 udev->state);
2963                 return -EINVAL;
2964         }
2965
2966         if (!parent_hdev) {
2967                 /* this requires hcd-specific logic; see OHCI hc_restart() */
2968                 dev_dbg(&udev->dev, "%s for root hub!\n", __FUNCTION__);
2969                 return -EISDIR;
2970         }
2971         parent_hub = hdev_to_hub(parent_hdev);
2972
2973         set_bit(port1, parent_hub->busy_bits);
2974         for (i = 0; i < SET_CONFIG_TRIES; ++i) {
2975
2976                 /* ep0 maxpacket size may change; let the HCD know about it.
2977                  * Other endpoints will be handled by re-enumeration. */
2978                 ep0_reinit(udev);
2979                 ret = hub_port_init(parent_hub, udev, port1, i);
2980                 if (ret >= 0)
2981                         break;
2982         }
2983         clear_bit(port1, parent_hub->busy_bits);
2984         if (!parent_hdev->parent && !parent_hub->busy_bits[0])
2985                 usb_enable_root_hub_irq(parent_hdev->bus);
2986
2987         if (ret < 0)
2988                 goto re_enumerate;
2989  
2990         /* Device might have changed firmware (DFU or similar) */
2991         if (memcmp(&udev->descriptor, &descriptor, sizeof descriptor)
2992                         || config_descriptors_changed (udev)) {
2993                 dev_info(&udev->dev, "device firmware changed\n");
2994                 udev->descriptor = descriptor;  /* for disconnect() calls */
2995                 goto re_enumerate;
2996         }
2997   
2998         if (!udev->actconfig)
2999                 goto done;
3000
3001         ret = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
3002                         USB_REQ_SET_CONFIGURATION, 0,
3003                         udev->actconfig->desc.bConfigurationValue, 0,
3004                         NULL, 0, USB_CTRL_SET_TIMEOUT);
3005         if (ret < 0) {
3006                 dev_err(&udev->dev,
3007                         "can't restore configuration #%d (error=%d)\n",
3008                         udev->actconfig->desc.bConfigurationValue, ret);
3009                 goto re_enumerate;
3010         }
3011         usb_set_device_state(udev, USB_STATE_CONFIGURED);
3012
3013         for (i = 0; i < udev->actconfig->desc.bNumInterfaces; i++) {
3014                 struct usb_interface *intf = udev->actconfig->interface[i];
3015                 struct usb_interface_descriptor *desc;
3016
3017                 /* set_interface resets host side toggle even
3018                  * for altsetting zero.  the interface may have no driver.
3019                  */
3020                 desc = &intf->cur_altsetting->desc;
3021                 ret = usb_set_interface(udev, desc->bInterfaceNumber,
3022                         desc->bAlternateSetting);
3023                 if (ret < 0) {
3024                         dev_err(&udev->dev, "failed to restore interface %d "
3025                                 "altsetting %d (error=%d)\n",
3026                                 desc->bInterfaceNumber,
3027                                 desc->bAlternateSetting,
3028                                 ret);
3029                         goto re_enumerate;
3030                 }
3031         }
3032
3033 done:
3034         return 0;
3035  
3036 re_enumerate:
3037         hub_port_logical_disconnect(parent_hub, port1);
3038         return -ENODEV;
3039 }
3040 EXPORT_SYMBOL(usb_reset_device);
3041
3042 /**
3043  * usb_reset_composite_device - warn interface drivers and perform a USB port reset
3044  * @udev: device to reset (not in SUSPENDED or NOTATTACHED state)
3045  * @iface: interface bound to the driver making the request (optional)
3046  *
3047  * Warns all drivers bound to registered interfaces (using their pre_reset
3048  * method), performs the port reset, and then lets the drivers know that
3049  * the reset is over (using their post_reset method).
3050  *
3051  * Return value is the same as for usb_reset_device().
3052  *
3053  * The caller must own the device lock.  For example, it's safe to use
3054  * this from a driver probe() routine after downloading new firmware.
3055  * For calls that might not occur during probe(), drivers should lock
3056  * the device using usb_lock_device_for_reset().
3057  *
3058  * The interface locks are acquired during the pre_reset stage and released
3059  * during the post_reset stage.  However if iface is not NULL and is
3060  * currently being probed, we assume that the caller already owns its
3061  * lock.
3062  */
3063 int usb_reset_composite_device(struct usb_device *udev,
3064                 struct usb_interface *iface)
3065 {
3066         int ret;
3067         struct usb_host_config *config = udev->actconfig;
3068
3069         if (udev->state == USB_STATE_NOTATTACHED ||
3070                         udev->state == USB_STATE_SUSPENDED) {
3071                 dev_dbg(&udev->dev, "device reset not allowed in state %d\n",
3072                                 udev->state);
3073                 return -EINVAL;
3074         }
3075
3076         /* Prevent autosuspend during the reset */
3077         usb_autoresume_device(udev);
3078
3079         if (iface && iface->condition != USB_INTERFACE_BINDING)
3080                 iface = NULL;
3081
3082         if (config) {
3083                 int i;
3084                 struct usb_interface *cintf;
3085                 struct usb_driver *drv;
3086
3087                 for (i = 0; i < config->desc.bNumInterfaces; ++i) {
3088                         cintf = config->interface[i];
3089                         if (cintf != iface)
3090                                 down(&cintf->dev.sem);
3091                         if (device_is_registered(&cintf->dev) &&
3092                                         cintf->dev.driver) {
3093                                 drv = to_usb_driver(cintf->dev.driver);
3094                                 if (drv->pre_reset)
3095                                         (drv->pre_reset)(cintf);
3096                         }
3097                 }
3098         }
3099
3100         ret = usb_reset_device(udev);
3101
3102         if (config) {
3103                 int i;
3104                 struct usb_interface *cintf;
3105                 struct usb_driver *drv;
3106
3107                 for (i = config->desc.bNumInterfaces - 1; i >= 0; --i) {
3108                         cintf = config->interface[i];
3109                         if (device_is_registered(&cintf->dev) &&
3110                                         cintf->dev.driver) {
3111                                 drv = to_usb_driver(cintf->dev.driver);
3112                                 if (drv->post_reset)
3113                                         (drv->post_reset)(cintf);
3114                         }
3115                         if (cintf != iface)
3116                                 up(&cintf->dev.sem);
3117                 }
3118         }
3119
3120         usb_autosuspend_device(udev);
3121         return ret;
3122 }
3123 EXPORT_SYMBOL(usb_reset_composite_device);