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