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