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