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