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