blob: 5abdc11be1e5e4a3483d3c3e53a267a338b27c08 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * USB hub driver.
3 *
4 * (C) Copyright 1999 Linus Torvalds
5 * (C) Copyright 1999 Johannes Erdfelt
6 * (C) Copyright 1999 Gregory P. Smith
7 * (C) Copyright 2001 Brad Hards (bhards@bigpond.net.au)
8 *
9 */
10
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/ioctl.h>
20#include <linux/usb.h>
21#include <linux/usbdevice_fs.h>
akpm@osdl.org9c8d6172005-06-20 14:29:58 -070022#include <linux/kthread.h>
Arjan van de Ven4186ecf2006-01-11 15:55:29 +010023#include <linux/mutex.h>
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080024#include <linux/freezer.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <asm/uaccess.h>
27#include <asm/byteorder.h>
28
29#include "usb.h"
30#include "hcd.h"
31#include "hub.h"
32
Greg Kroah-Hartmanf2a383e2007-11-26 22:11:55 -080033/* if we are in debug mode, always announce new devices */
34#ifdef DEBUG
35#ifndef CONFIG_USB_ANNOUNCE_NEW_DEVICES
36#define CONFIG_USB_ANNOUNCE_NEW_DEVICES
37#endif
38#endif
39
Alan Stern1bb5f662006-11-06 11:56:13 -050040struct usb_hub {
41 struct device *intfdev; /* the "interface" device */
42 struct usb_device *hdev;
Alan Sterne8054852007-05-04 11:55:11 -040043 struct kref kref;
Alan Stern1bb5f662006-11-06 11:56:13 -050044 struct urb *urb; /* for interrupt polling pipe */
45
46 /* buffer for urb ... with extra space in case of babble */
47 char (*buffer)[8];
48 dma_addr_t buffer_dma; /* DMA address for buffer */
49 union {
50 struct usb_hub_status hub;
51 struct usb_port_status port;
52 } *status; /* buffer for status reports */
Alan Sterndb90e7a2007-02-05 09:56:15 -050053 struct mutex status_mutex; /* for the status buffer */
Alan Stern1bb5f662006-11-06 11:56:13 -050054
55 int error; /* last reported error */
56 int nerrors; /* track consecutive errors */
57
58 struct list_head event_list; /* hubs w/data or errs ready */
59 unsigned long event_bits[1]; /* status change bitmask */
60 unsigned long change_bits[1]; /* ports with logical connect
61 status change */
62 unsigned long busy_bits[1]; /* ports being reset or
63 resumed */
64#if USB_MAXCHILDREN > 31 /* 8*sizeof(unsigned long) - 1 */
65#error event_bits[] is too short!
66#endif
67
68 struct usb_hub_descriptor *descriptor; /* class descriptor */
69 struct usb_tt tt; /* Transaction Translator */
70
71 unsigned mA_per_port; /* current for each child */
72
73 unsigned limited_power:1;
74 unsigned quiescing:1;
Alan Sterne8054852007-05-04 11:55:11 -040075 unsigned disconnected:1;
Alan Stern1bb5f662006-11-06 11:56:13 -050076
77 unsigned has_indicators:1;
78 u8 indicator[USB_MAXCHILDREN];
David Howells6d5aefb2006-12-05 19:36:26 +000079 struct delayed_work leds;
Alan Stern8520f382008-09-22 14:44:26 -040080 struct delayed_work init_work;
Alan Stern1bb5f662006-11-06 11:56:13 -050081};
82
83
Linus Torvalds1da177e2005-04-16 15:20:36 -070084/* Protect struct usb_device->state and ->children members
Alan Stern9ad3d6c2005-11-17 17:10:32 -050085 * Note: Both are also protected by ->dev.sem, except that ->state can
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 * change to USB_STATE_NOTATTACHED even when the semaphore isn't held. */
87static DEFINE_SPINLOCK(device_state_lock);
88
89/* khubd's worklist and its lock */
90static DEFINE_SPINLOCK(hub_event_lock);
91static LIST_HEAD(hub_event_list); /* List of hubs needing servicing */
92
93/* Wakes up khubd */
94static DECLARE_WAIT_QUEUE_HEAD(khubd_wait);
95
akpm@osdl.org9c8d6172005-06-20 14:29:58 -070096static struct task_struct *khubd_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
98/* cycle leds on hubs that aren't blinking for attention */
99static int blinkenlights = 0;
100module_param (blinkenlights, bool, S_IRUGO);
101MODULE_PARM_DESC (blinkenlights, "true to cycle leds on hubs");
102
103/*
Jaroslav Kyselafd7c5192008-10-10 16:24:45 +0200104 * Device SATA8000 FW1.0 from DATAST0R Technology Corp requires about
105 * 10 seconds to send reply for the initial 64-byte descriptor request.
106 */
107/* define initial 64-byte descriptor request timeout in milliseconds */
108static int initial_descriptor_timeout = USB_CTRL_GET_TIMEOUT;
109module_param(initial_descriptor_timeout, int, S_IRUGO|S_IWUSR);
Wu Fengguangb9cef6c2008-12-15 15:32:01 +0800110MODULE_PARM_DESC(initial_descriptor_timeout,
111 "initial 64-byte descriptor request timeout in milliseconds "
112 "(default 5000 - 5.0 seconds)");
Jaroslav Kyselafd7c5192008-10-10 16:24:45 +0200113
114/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 * As of 2.6.10 we introduce a new USB device initialization scheme which
116 * closely resembles the way Windows works. Hopefully it will be compatible
117 * with a wider range of devices than the old scheme. However some previously
118 * working devices may start giving rise to "device not accepting address"
119 * errors; if that happens the user can try the old scheme by adjusting the
120 * following module parameters.
121 *
122 * For maximum flexibility there are two boolean parameters to control the
123 * hub driver's behavior. On the first initialization attempt, if the
124 * "old_scheme_first" parameter is set then the old scheme will be used,
125 * otherwise the new scheme is used. If that fails and "use_both_schemes"
126 * is set, then the driver will make another attempt, using the other scheme.
127 */
128static int old_scheme_first = 0;
129module_param(old_scheme_first, bool, S_IRUGO | S_IWUSR);
130MODULE_PARM_DESC(old_scheme_first,
131 "start with the old device initialization scheme");
132
133static int use_both_schemes = 1;
134module_param(use_both_schemes, bool, S_IRUGO | S_IWUSR);
135MODULE_PARM_DESC(use_both_schemes,
136 "try the other device initialization scheme if the "
137 "first one fails");
138
Alan Stern32fe0192007-10-10 16:27:07 -0400139/* Mutual exclusion for EHCI CF initialization. This interferes with
140 * port reset on some companion controllers.
141 */
142DECLARE_RWSEM(ehci_cf_port_reset_rwsem);
143EXPORT_SYMBOL_GPL(ehci_cf_port_reset_rwsem);
144
Alan Stern948fea32008-04-28 11:07:07 -0400145#define HUB_DEBOUNCE_TIMEOUT 1500
146#define HUB_DEBOUNCE_STEP 25
147#define HUB_DEBOUNCE_STABLE 100
148
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
Ming Lei742120c2008-06-18 22:00:29 +0800150static int usb_reset_and_verify_device(struct usb_device *udev);
151
Dan Williams404d5b12007-04-26 00:12:10 -0700152static inline char *portspeed(int portstatus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153{
154 if (portstatus & (1 << USB_PORT_FEAT_HIGHSPEED))
155 return "480 Mb/s";
156 else if (portstatus & (1 << USB_PORT_FEAT_LOWSPEED))
157 return "1.5 Mb/s";
158 else
159 return "12 Mb/s";
160}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
162/* Note that hdev or one of its children must be locked! */
163static inline struct usb_hub *hdev_to_hub(struct usb_device *hdev)
164{
165 return usb_get_intfdata(hdev->actconfig->interface[0]);
166}
167
168/* USB 2.0 spec Section 11.24.4.5 */
169static int get_hub_descriptor(struct usb_device *hdev, void *data, int size)
170{
171 int i, ret;
172
173 for (i = 0; i < 3; i++) {
174 ret = usb_control_msg(hdev, usb_rcvctrlpipe(hdev, 0),
175 USB_REQ_GET_DESCRIPTOR, USB_DIR_IN | USB_RT_HUB,
176 USB_DT_HUB << 8, 0, data, size,
177 USB_CTRL_GET_TIMEOUT);
178 if (ret >= (USB_DT_HUB_NONVAR_SIZE + 2))
179 return ret;
180 }
181 return -EINVAL;
182}
183
184/*
185 * USB 2.0 spec Section 11.24.2.1
186 */
187static int clear_hub_feature(struct usb_device *hdev, int feature)
188{
189 return usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
190 USB_REQ_CLEAR_FEATURE, USB_RT_HUB, feature, 0, NULL, 0, 1000);
191}
192
193/*
194 * USB 2.0 spec Section 11.24.2.2
195 */
196static int clear_port_feature(struct usb_device *hdev, int port1, int feature)
197{
198 return usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
199 USB_REQ_CLEAR_FEATURE, USB_RT_PORT, feature, port1,
200 NULL, 0, 1000);
201}
202
203/*
204 * USB 2.0 spec Section 11.24.2.13
205 */
206static int set_port_feature(struct usb_device *hdev, int port1, int feature)
207{
208 return usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
209 USB_REQ_SET_FEATURE, USB_RT_PORT, feature, port1,
210 NULL, 0, 1000);
211}
212
213/*
214 * USB 2.0 spec Section 11.24.2.7.1.10 and table 11-7
215 * for info about using port indicators
216 */
217static void set_port_led(
218 struct usb_hub *hub,
219 int port1,
220 int selector
221)
222{
223 int status = set_port_feature(hub->hdev, (selector << 8) | port1,
224 USB_PORT_FEAT_INDICATOR);
225 if (status < 0)
226 dev_dbg (hub->intfdev,
227 "port %d indicator %s status %d\n",
228 port1,
229 ({ char *s; switch (selector) {
230 case HUB_LED_AMBER: s = "amber"; break;
231 case HUB_LED_GREEN: s = "green"; break;
232 case HUB_LED_OFF: s = "off"; break;
233 case HUB_LED_AUTO: s = "auto"; break;
234 default: s = "??"; break;
235 }; s; }),
236 status);
237}
238
239#define LED_CYCLE_PERIOD ((2*HZ)/3)
240
David Howellsc4028952006-11-22 14:57:56 +0000241static void led_work (struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242{
David Howellsc4028952006-11-22 14:57:56 +0000243 struct usb_hub *hub =
244 container_of(work, struct usb_hub, leds.work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 struct usb_device *hdev = hub->hdev;
246 unsigned i;
247 unsigned changed = 0;
248 int cursor = -1;
249
250 if (hdev->state != USB_STATE_CONFIGURED || hub->quiescing)
251 return;
252
253 for (i = 0; i < hub->descriptor->bNbrPorts; i++) {
254 unsigned selector, mode;
255
256 /* 30%-50% duty cycle */
257
258 switch (hub->indicator[i]) {
259 /* cycle marker */
260 case INDICATOR_CYCLE:
261 cursor = i;
262 selector = HUB_LED_AUTO;
263 mode = INDICATOR_AUTO;
264 break;
265 /* blinking green = sw attention */
266 case INDICATOR_GREEN_BLINK:
267 selector = HUB_LED_GREEN;
268 mode = INDICATOR_GREEN_BLINK_OFF;
269 break;
270 case INDICATOR_GREEN_BLINK_OFF:
271 selector = HUB_LED_OFF;
272 mode = INDICATOR_GREEN_BLINK;
273 break;
274 /* blinking amber = hw attention */
275 case INDICATOR_AMBER_BLINK:
276 selector = HUB_LED_AMBER;
277 mode = INDICATOR_AMBER_BLINK_OFF;
278 break;
279 case INDICATOR_AMBER_BLINK_OFF:
280 selector = HUB_LED_OFF;
281 mode = INDICATOR_AMBER_BLINK;
282 break;
283 /* blink green/amber = reserved */
284 case INDICATOR_ALT_BLINK:
285 selector = HUB_LED_GREEN;
286 mode = INDICATOR_ALT_BLINK_OFF;
287 break;
288 case INDICATOR_ALT_BLINK_OFF:
289 selector = HUB_LED_AMBER;
290 mode = INDICATOR_ALT_BLINK;
291 break;
292 default:
293 continue;
294 }
295 if (selector != HUB_LED_AUTO)
296 changed = 1;
297 set_port_led(hub, i + 1, selector);
298 hub->indicator[i] = mode;
299 }
300 if (!changed && blinkenlights) {
301 cursor++;
302 cursor %= hub->descriptor->bNbrPorts;
303 set_port_led(hub, cursor + 1, HUB_LED_GREEN);
304 hub->indicator[cursor] = INDICATOR_CYCLE;
305 changed++;
306 }
307 if (changed)
308 schedule_delayed_work(&hub->leds, LED_CYCLE_PERIOD);
309}
310
311/* use a short timeout for hub/port status fetches */
312#define USB_STS_TIMEOUT 1000
313#define USB_STS_RETRIES 5
314
315/*
316 * USB 2.0 spec Section 11.24.2.6
317 */
318static int get_hub_status(struct usb_device *hdev,
319 struct usb_hub_status *data)
320{
321 int i, status = -ETIMEDOUT;
322
323 for (i = 0; i < USB_STS_RETRIES && status == -ETIMEDOUT; i++) {
324 status = usb_control_msg(hdev, usb_rcvctrlpipe(hdev, 0),
325 USB_REQ_GET_STATUS, USB_DIR_IN | USB_RT_HUB, 0, 0,
326 data, sizeof(*data), USB_STS_TIMEOUT);
327 }
328 return status;
329}
330
331/*
332 * USB 2.0 spec Section 11.24.2.7
333 */
334static int get_port_status(struct usb_device *hdev, int port1,
335 struct usb_port_status *data)
336{
337 int i, status = -ETIMEDOUT;
338
339 for (i = 0; i < USB_STS_RETRIES && status == -ETIMEDOUT; i++) {
340 status = usb_control_msg(hdev, usb_rcvctrlpipe(hdev, 0),
341 USB_REQ_GET_STATUS, USB_DIR_IN | USB_RT_PORT, 0, port1,
342 data, sizeof(*data), USB_STS_TIMEOUT);
343 }
344 return status;
345}
346
Alan Stern3eb14912008-03-03 15:15:43 -0500347static int hub_port_status(struct usb_hub *hub, int port1,
348 u16 *status, u16 *change)
349{
350 int ret;
351
352 mutex_lock(&hub->status_mutex);
353 ret = get_port_status(hub->hdev, port1, &hub->status->port);
354 if (ret < 4) {
355 dev_err(hub->intfdev,
356 "%s failed (err = %d)\n", __func__, ret);
357 if (ret >= 0)
358 ret = -EIO;
359 } else {
360 *status = le16_to_cpu(hub->status->port.wPortStatus);
361 *change = le16_to_cpu(hub->status->port.wPortChange);
362 ret = 0;
363 }
364 mutex_unlock(&hub->status_mutex);
365 return ret;
366}
367
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368static void kick_khubd(struct usb_hub *hub)
369{
370 unsigned long flags;
371
Alan Stern40f122f2006-11-09 14:44:33 -0500372 /* Suppress autosuspend until khubd runs */
373 to_usb_interface(hub->intfdev)->pm_usage_cnt = 1;
374
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 spin_lock_irqsave(&hub_event_lock, flags);
Roel Kluin2e2c5ee2007-10-26 23:54:35 +0200376 if (!hub->disconnected && list_empty(&hub->event_list)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 list_add_tail(&hub->event_list, &hub_event_list);
378 wake_up(&khubd_wait);
379 }
380 spin_unlock_irqrestore(&hub_event_lock, flags);
381}
382
383void usb_kick_khubd(struct usb_device *hdev)
384{
Alan Sterne8054852007-05-04 11:55:11 -0400385 /* FIXME: What if hdev isn't bound to the hub driver? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 kick_khubd(hdev_to_hub(hdev));
387}
388
389
390/* completion function, fires on port status changes and various faults */
David Howells7d12e782006-10-05 14:55:46 +0100391static void hub_irq(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392{
Tobias Klauserec17cf12006-09-13 21:38:41 +0200393 struct usb_hub *hub = urb->context;
Alan Sterne0152682007-08-24 15:42:52 -0400394 int status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 int i;
396 unsigned long bits;
397
Alan Sterne0152682007-08-24 15:42:52 -0400398 switch (status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 case -ENOENT: /* synchronous unlink */
400 case -ECONNRESET: /* async unlink */
401 case -ESHUTDOWN: /* hardware going away */
402 return;
403
404 default: /* presumably an error */
405 /* Cause a hub reset after 10 consecutive errors */
Alan Sterne0152682007-08-24 15:42:52 -0400406 dev_dbg (hub->intfdev, "transfer --> %d\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 if ((++hub->nerrors < 10) || hub->error)
408 goto resubmit;
Alan Sterne0152682007-08-24 15:42:52 -0400409 hub->error = status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 /* FALL THROUGH */
Tobias Klauserec17cf12006-09-13 21:38:41 +0200411
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 /* let khubd handle things */
413 case 0: /* we got data: port status changed */
414 bits = 0;
415 for (i = 0; i < urb->actual_length; ++i)
416 bits |= ((unsigned long) ((*hub->buffer)[i]))
417 << (i*8);
418 hub->event_bits[0] = bits;
419 break;
420 }
421
422 hub->nerrors = 0;
423
424 /* Something happened, let khubd figure it out */
425 kick_khubd(hub);
426
427resubmit:
428 if (hub->quiescing)
429 return;
430
431 if ((status = usb_submit_urb (hub->urb, GFP_ATOMIC)) != 0
432 && status != -ENODEV && status != -EPERM)
433 dev_err (hub->intfdev, "resubmit --> %d\n", status);
434}
435
436/* USB 2.0 spec Section 11.24.2.3 */
437static inline int
438hub_clear_tt_buffer (struct usb_device *hdev, u16 devinfo, u16 tt)
439{
440 return usb_control_msg(hdev, usb_rcvctrlpipe(hdev, 0),
441 HUB_CLEAR_TT_BUFFER, USB_RT_PORT, devinfo,
442 tt, NULL, 0, 1000);
443}
444
445/*
446 * enumeration blocks khubd for a long time. we use keventd instead, since
447 * long blocking there is the exception, not the rule. accordingly, HCDs
448 * talking to TTs must queue control transfers (not just bulk and iso), so
449 * both can talk to the same hub concurrently.
450 */
David Howellsc4028952006-11-22 14:57:56 +0000451static void hub_tt_kevent (struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452{
David Howellsc4028952006-11-22 14:57:56 +0000453 struct usb_hub *hub =
454 container_of(work, struct usb_hub, tt.kevent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 unsigned long flags;
Mark Lord55e5fdf2007-05-14 19:48:02 -0400456 int limit = 100;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457
458 spin_lock_irqsave (&hub->tt.lock, flags);
Mark Lord55e5fdf2007-05-14 19:48:02 -0400459 while (--limit && !list_empty (&hub->tt.clear_list)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 struct list_head *temp;
461 struct usb_tt_clear *clear;
462 struct usb_device *hdev = hub->hdev;
463 int status;
464
465 temp = hub->tt.clear_list.next;
466 clear = list_entry (temp, struct usb_tt_clear, clear_list);
467 list_del (&clear->clear_list);
468
469 /* drop lock so HCD can concurrently report other TT errors */
470 spin_unlock_irqrestore (&hub->tt.lock, flags);
471 status = hub_clear_tt_buffer (hdev, clear->devinfo, clear->tt);
472 spin_lock_irqsave (&hub->tt.lock, flags);
473
474 if (status)
475 dev_err (&hdev->dev,
476 "clear tt %d (%04x) error %d\n",
477 clear->tt, clear->devinfo, status);
Jesper Juhl1bc3c9e2005-04-18 17:39:34 -0700478 kfree(clear);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 }
480 spin_unlock_irqrestore (&hub->tt.lock, flags);
481}
482
483/**
484 * usb_hub_tt_clear_buffer - clear control/bulk TT state in high speed hub
485 * @udev: the device whose split transaction failed
486 * @pipe: identifies the endpoint of the failed transaction
487 *
488 * High speed HCDs use this to tell the hub driver that some split control or
489 * bulk transaction failed in a way that requires clearing internal state of
490 * a transaction translator. This is normally detected (and reported) from
491 * interrupt context.
492 *
493 * It may not be possible for that hub to handle additional full (or low)
494 * speed transactions until that state is fully cleared out.
495 */
496void usb_hub_tt_clear_buffer (struct usb_device *udev, int pipe)
497{
498 struct usb_tt *tt = udev->tt;
499 unsigned long flags;
500 struct usb_tt_clear *clear;
501
502 /* we've got to cope with an arbitrary number of pending TT clears,
503 * since each TT has "at least two" buffers that can need it (and
504 * there can be many TTs per hub). even if they're uncommon.
505 */
Christoph Lameter54e6ecb2006-12-06 20:33:16 -0800506 if ((clear = kmalloc (sizeof *clear, GFP_ATOMIC)) == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 dev_err (&udev->dev, "can't save CLEAR_TT_BUFFER state\n");
508 /* FIXME recover somehow ... RESET_TT? */
509 return;
510 }
511
512 /* info that CLEAR_TT_BUFFER needs */
513 clear->tt = tt->multi ? udev->ttport : 1;
514 clear->devinfo = usb_pipeendpoint (pipe);
515 clear->devinfo |= udev->devnum << 4;
516 clear->devinfo |= usb_pipecontrol (pipe)
517 ? (USB_ENDPOINT_XFER_CONTROL << 11)
518 : (USB_ENDPOINT_XFER_BULK << 11);
519 if (usb_pipein (pipe))
520 clear->devinfo |= 1 << 15;
521
522 /* tell keventd to clear state for this TT */
523 spin_lock_irqsave (&tt->lock, flags);
524 list_add_tail (&clear->clear_list, &tt->clear_list);
525 schedule_work (&tt->kevent);
526 spin_unlock_irqrestore (&tt->lock, flags);
527}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -0600528EXPORT_SYMBOL_GPL(usb_hub_tt_clear_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529
Alan Stern8520f382008-09-22 14:44:26 -0400530/* If do_delay is false, return the number of milliseconds the caller
531 * needs to delay.
532 */
533static unsigned hub_power_on(struct usb_hub *hub, bool do_delay)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534{
535 int port1;
David Brownellb7896962005-08-31 10:41:44 -0700536 unsigned pgood_delay = hub->descriptor->bPwrOn2PwrGood * 2;
Alan Stern8520f382008-09-22 14:44:26 -0400537 unsigned delay;
Alan Stern4489a572006-04-27 15:54:22 -0400538 u16 wHubCharacteristics =
539 le16_to_cpu(hub->descriptor->wHubCharacteristics);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540
Alan Stern4489a572006-04-27 15:54:22 -0400541 /* Enable power on each port. Some hubs have reserved values
542 * of LPSM (> 2) in their descriptors, even though they are
543 * USB 2.0 hubs. Some hubs do not implement port-power switching
544 * but only emulate it. In all cases, the ports won't work
545 * unless we send these messages to the hub.
546 */
547 if ((wHubCharacteristics & HUB_CHAR_LPSM) < 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 dev_dbg(hub->intfdev, "enabling power on all ports\n");
Alan Stern4489a572006-04-27 15:54:22 -0400549 else
550 dev_dbg(hub->intfdev, "trying to enable port power on "
551 "non-switchable hub\n");
552 for (port1 = 1; port1 <= hub->descriptor->bNbrPorts; port1++)
553 set_port_feature(hub->hdev, port1, USB_PORT_FEAT_POWER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554
David Brownellb7896962005-08-31 10:41:44 -0700555 /* Wait at least 100 msec for power to become stable */
Alan Stern8520f382008-09-22 14:44:26 -0400556 delay = max(pgood_delay, (unsigned) 100);
557 if (do_delay)
558 msleep(delay);
559 return delay;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560}
561
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562static int hub_hub_status(struct usb_hub *hub,
563 u16 *status, u16 *change)
564{
565 int ret;
566
Alan Sterndb90e7a2007-02-05 09:56:15 -0500567 mutex_lock(&hub->status_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 ret = get_hub_status(hub->hdev, &hub->status->hub);
569 if (ret < 0)
570 dev_err (hub->intfdev,
Harvey Harrison441b62c2008-03-03 16:08:34 -0800571 "%s failed (err = %d)\n", __func__, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 else {
573 *status = le16_to_cpu(hub->status->hub.wHubStatus);
574 *change = le16_to_cpu(hub->status->hub.wHubChange);
575 ret = 0;
576 }
Alan Sterndb90e7a2007-02-05 09:56:15 -0500577 mutex_unlock(&hub->status_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 return ret;
579}
580
Alan Stern8b28c752005-08-10 17:04:13 -0400581static int hub_port_disable(struct usb_hub *hub, int port1, int set_state)
582{
583 struct usb_device *hdev = hub->hdev;
Alan Stern0458d5b2007-05-04 11:52:20 -0400584 int ret = 0;
Alan Stern8b28c752005-08-10 17:04:13 -0400585
Alan Stern0458d5b2007-05-04 11:52:20 -0400586 if (hdev->children[port1-1] && set_state)
Alan Stern8b28c752005-08-10 17:04:13 -0400587 usb_set_device_state(hdev->children[port1-1],
588 USB_STATE_NOTATTACHED);
Alan Stern0458d5b2007-05-04 11:52:20 -0400589 if (!hub->error)
590 ret = clear_port_feature(hdev, port1, USB_PORT_FEAT_ENABLE);
Alan Stern8b28c752005-08-10 17:04:13 -0400591 if (ret)
592 dev_err(hub->intfdev, "cannot disable port %d (err = %d)\n",
Alan Stern0458d5b2007-05-04 11:52:20 -0400593 port1, ret);
Alan Stern8b28c752005-08-10 17:04:13 -0400594 return ret;
595}
596
Alan Stern0458d5b2007-05-04 11:52:20 -0400597/*
598 * Disable a port and mark a logical connnect-change event, so that some
599 * time later khubd will disconnect() any existing usb_device on the port
600 * and will re-enumerate if there actually is a device attached.
601 */
602static void hub_port_logical_disconnect(struct usb_hub *hub, int port1)
603{
604 dev_dbg(hub->intfdev, "logical disconnect on port %d\n", port1);
605 hub_port_disable(hub, port1, 1);
606
607 /* FIXME let caller ask to power down the port:
608 * - some devices won't enumerate without a VBUS power cycle
609 * - SRP saves power that way
610 * - ... new call, TBD ...
611 * That's easy if this hub can switch power per-port, and
612 * khubd reactivates the port later (timer, SRP, etc).
613 * Powerdown must be optional, because of reset/DFU.
614 */
615
616 set_bit(port1, hub->change_bits);
617 kick_khubd(hub);
618}
619
Alan Stern6ee0b272008-04-28 11:06:42 -0400620enum hub_activation_type {
Alan Stern8520f382008-09-22 14:44:26 -0400621 HUB_INIT, HUB_INIT2, HUB_INIT3,
622 HUB_POST_RESET, HUB_RESUME, HUB_RESET_RESUME,
Alan Stern6ee0b272008-04-28 11:06:42 -0400623};
Alan Stern5e6effa2008-03-03 15:15:51 -0500624
Alan Stern8520f382008-09-22 14:44:26 -0400625static void hub_init_func2(struct work_struct *ws);
626static void hub_init_func3(struct work_struct *ws);
627
Alan Sternf2835212008-04-28 11:07:17 -0400628static void hub_activate(struct usb_hub *hub, enum hub_activation_type type)
Alan Stern5e6effa2008-03-03 15:15:51 -0500629{
630 struct usb_device *hdev = hub->hdev;
631 int port1;
Alan Sternf2835212008-04-28 11:07:17 -0400632 int status;
Alan Stern948fea32008-04-28 11:07:07 -0400633 bool need_debounce_delay = false;
Alan Stern8520f382008-09-22 14:44:26 -0400634 unsigned delay;
635
636 /* Continue a partial initialization */
637 if (type == HUB_INIT2)
638 goto init2;
639 if (type == HUB_INIT3)
640 goto init3;
Alan Stern5e6effa2008-03-03 15:15:51 -0500641
Alan Sternf2835212008-04-28 11:07:17 -0400642 /* After a resume, port power should still be on.
643 * For any other type of activation, turn it on.
644 */
Alan Stern8520f382008-09-22 14:44:26 -0400645 if (type != HUB_RESUME) {
646
647 /* Speed up system boot by using a delayed_work for the
648 * hub's initial power-up delays. This is pretty awkward
649 * and the implementation looks like a home-brewed sort of
650 * setjmp/longjmp, but it saves at least 100 ms for each
651 * root hub (assuming usbcore is compiled into the kernel
652 * rather than as a module). It adds up.
653 *
654 * This can't be done for HUB_RESUME or HUB_RESET_RESUME
655 * because for those activation types the ports have to be
656 * operational when we return. In theory this could be done
657 * for HUB_POST_RESET, but it's easier not to.
658 */
659 if (type == HUB_INIT) {
660 delay = hub_power_on(hub, false);
661 PREPARE_DELAYED_WORK(&hub->init_work, hub_init_func2);
662 schedule_delayed_work(&hub->init_work,
663 msecs_to_jiffies(delay));
Alan Stern61fbeba2008-10-27 12:07:44 -0400664
665 /* Suppress autosuspend until init is done */
666 to_usb_interface(hub->intfdev)->pm_usage_cnt = 1;
Alan Stern8520f382008-09-22 14:44:26 -0400667 return; /* Continues at init2: below */
668 } else {
669 hub_power_on(hub, true);
670 }
671 }
672 init2:
Alan Sternf2835212008-04-28 11:07:17 -0400673
Alan Stern6ee0b272008-04-28 11:06:42 -0400674 /* Check each port and set hub->change_bits to let khubd know
675 * which ports need attention.
Alan Stern5e6effa2008-03-03 15:15:51 -0500676 */
677 for (port1 = 1; port1 <= hdev->maxchild; ++port1) {
678 struct usb_device *udev = hdev->children[port1-1];
Alan Stern5e6effa2008-03-03 15:15:51 -0500679 u16 portstatus, portchange;
680
Alan Stern6ee0b272008-04-28 11:06:42 -0400681 portstatus = portchange = 0;
682 status = hub_port_status(hub, port1, &portstatus, &portchange);
683 if (udev || (portstatus & USB_PORT_STAT_CONNECTION))
684 dev_dbg(hub->intfdev,
685 "port %d: status %04x change %04x\n",
686 port1, portstatus, portchange);
Alan Stern5e6effa2008-03-03 15:15:51 -0500687
Alan Stern6ee0b272008-04-28 11:06:42 -0400688 /* After anything other than HUB_RESUME (i.e., initialization
689 * or any sort of reset), every port should be disabled.
690 * Unconnected ports should likewise be disabled (paranoia),
691 * and so should ports for which we have no usb_device.
Alan Stern5e6effa2008-03-03 15:15:51 -0500692 */
Alan Stern6ee0b272008-04-28 11:06:42 -0400693 if ((portstatus & USB_PORT_STAT_ENABLE) && (
694 type != HUB_RESUME ||
695 !(portstatus & USB_PORT_STAT_CONNECTION) ||
696 !udev ||
697 udev->state == USB_STATE_NOTATTACHED)) {
698 clear_port_feature(hdev, port1, USB_PORT_FEAT_ENABLE);
699 portstatus &= ~USB_PORT_STAT_ENABLE;
700 }
701
Alan Stern948fea32008-04-28 11:07:07 -0400702 /* Clear status-change flags; we'll debounce later */
703 if (portchange & USB_PORT_STAT_C_CONNECTION) {
704 need_debounce_delay = true;
705 clear_port_feature(hub->hdev, port1,
706 USB_PORT_FEAT_C_CONNECTION);
707 }
708 if (portchange & USB_PORT_STAT_C_ENABLE) {
709 need_debounce_delay = true;
710 clear_port_feature(hub->hdev, port1,
711 USB_PORT_FEAT_C_ENABLE);
712 }
713
Alan Stern6ee0b272008-04-28 11:06:42 -0400714 if (!udev || udev->state == USB_STATE_NOTATTACHED) {
715 /* Tell khubd to disconnect the device or
716 * check for a new connection
717 */
718 if (udev || (portstatus & USB_PORT_STAT_CONNECTION))
719 set_bit(port1, hub->change_bits);
720
721 } else if (portstatus & USB_PORT_STAT_ENABLE) {
722 /* The power session apparently survived the resume.
723 * If there was an overcurrent or suspend change
724 * (i.e., remote wakeup request), have khubd
725 * take care of it.
726 */
727 if (portchange)
728 set_bit(port1, hub->change_bits);
729
730 } else if (udev->persist_enabled) {
Alan Stern6ee0b272008-04-28 11:06:42 -0400731#ifdef CONFIG_PM
Alan Stern5e6effa2008-03-03 15:15:51 -0500732 udev->reset_resume = 1;
Alan Stern6ee0b272008-04-28 11:06:42 -0400733#endif
Alan Stern8808f002008-04-28 11:06:55 -0400734 set_bit(port1, hub->change_bits);
735
Alan Stern6ee0b272008-04-28 11:06:42 -0400736 } else {
737 /* The power session is gone; tell khubd */
738 usb_set_device_state(udev, USB_STATE_NOTATTACHED);
739 set_bit(port1, hub->change_bits);
Alan Stern5e6effa2008-03-03 15:15:51 -0500740 }
Alan Stern5e6effa2008-03-03 15:15:51 -0500741 }
742
Alan Stern948fea32008-04-28 11:07:07 -0400743 /* If no port-status-change flags were set, we don't need any
744 * debouncing. If flags were set we can try to debounce the
745 * ports all at once right now, instead of letting khubd do them
746 * one at a time later on.
747 *
748 * If any port-status changes do occur during this delay, khubd
749 * will see them later and handle them normally.
750 */
Alan Stern8520f382008-09-22 14:44:26 -0400751 if (need_debounce_delay) {
752 delay = HUB_DEBOUNCE_STABLE;
Alan Sternf2835212008-04-28 11:07:17 -0400753
Alan Stern8520f382008-09-22 14:44:26 -0400754 /* Don't do a long sleep inside a workqueue routine */
755 if (type == HUB_INIT2) {
756 PREPARE_DELAYED_WORK(&hub->init_work, hub_init_func3);
757 schedule_delayed_work(&hub->init_work,
758 msecs_to_jiffies(delay));
759 return; /* Continues at init3: below */
760 } else {
761 msleep(delay);
762 }
763 }
764 init3:
Alan Sternf2835212008-04-28 11:07:17 -0400765 hub->quiescing = 0;
766
767 status = usb_submit_urb(hub->urb, GFP_NOIO);
768 if (status < 0)
769 dev_err(hub->intfdev, "activate --> %d\n", status);
770 if (hub->has_indicators && blinkenlights)
771 schedule_delayed_work(&hub->leds, LED_CYCLE_PERIOD);
772
773 /* Scan all ports that need attention */
774 kick_khubd(hub);
Alan Stern5e6effa2008-03-03 15:15:51 -0500775}
776
Alan Stern8520f382008-09-22 14:44:26 -0400777/* Implement the continuations for the delays above */
778static void hub_init_func2(struct work_struct *ws)
779{
780 struct usb_hub *hub = container_of(ws, struct usb_hub, init_work.work);
781
782 hub_activate(hub, HUB_INIT2);
783}
784
785static void hub_init_func3(struct work_struct *ws)
786{
787 struct usb_hub *hub = container_of(ws, struct usb_hub, init_work.work);
788
789 hub_activate(hub, HUB_INIT3);
790}
791
Alan Stern43303542008-04-28 11:07:31 -0400792enum hub_quiescing_type {
793 HUB_DISCONNECT, HUB_PRE_RESET, HUB_SUSPEND
794};
795
796static void hub_quiesce(struct usb_hub *hub, enum hub_quiescing_type type)
797{
798 struct usb_device *hdev = hub->hdev;
799 int i;
800
Alan Stern8520f382008-09-22 14:44:26 -0400801 cancel_delayed_work_sync(&hub->init_work);
802
Alan Stern43303542008-04-28 11:07:31 -0400803 /* khubd and related activity won't re-trigger */
804 hub->quiescing = 1;
805
806 if (type != HUB_SUSPEND) {
807 /* Disconnect all the children */
808 for (i = 0; i < hdev->maxchild; ++i) {
809 if (hdev->children[i])
810 usb_disconnect(&hdev->children[i]);
811 }
812 }
813
814 /* Stop khubd and related activity */
815 usb_kill_urb(hub->urb);
816 if (hub->has_indicators)
817 cancel_delayed_work_sync(&hub->leds);
818 if (hub->tt.hub)
819 cancel_work_sync(&hub->tt.kevent);
820}
821
Alan Stern3eb14912008-03-03 15:15:43 -0500822/* caller has locked the hub device */
823static int hub_pre_reset(struct usb_interface *intf)
824{
825 struct usb_hub *hub = usb_get_intfdata(intf);
826
Alan Stern43303542008-04-28 11:07:31 -0400827 hub_quiesce(hub, HUB_PRE_RESET);
Alan Sternf07600c2007-05-30 15:38:16 -0400828 return 0;
Alan Stern7d069b72005-11-18 12:06:34 -0500829}
830
831/* caller has locked the hub device */
Alan Sternf07600c2007-05-30 15:38:16 -0400832static int hub_post_reset(struct usb_interface *intf)
Alan Stern7d069b72005-11-18 12:06:34 -0500833{
Alan Stern7de18d82006-06-01 13:37:24 -0400834 struct usb_hub *hub = usb_get_intfdata(intf);
835
Alan Sternf2835212008-04-28 11:07:17 -0400836 hub_activate(hub, HUB_POST_RESET);
Alan Sternf07600c2007-05-30 15:38:16 -0400837 return 0;
Alan Stern7d069b72005-11-18 12:06:34 -0500838}
839
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840static int hub_configure(struct usb_hub *hub,
841 struct usb_endpoint_descriptor *endpoint)
842{
843 struct usb_device *hdev = hub->hdev;
844 struct device *hub_dev = hub->intfdev;
845 u16 hubstatus, hubchange;
Greg Kroah-Hartman74ad9bd2005-06-20 21:15:16 -0700846 u16 wHubCharacteristics;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 unsigned int pipe;
848 int maxp, ret;
849 char *message;
850
851 hub->buffer = usb_buffer_alloc(hdev, sizeof(*hub->buffer), GFP_KERNEL,
852 &hub->buffer_dma);
853 if (!hub->buffer) {
854 message = "can't allocate hub irq buffer";
855 ret = -ENOMEM;
856 goto fail;
857 }
858
859 hub->status = kmalloc(sizeof(*hub->status), GFP_KERNEL);
860 if (!hub->status) {
861 message = "can't kmalloc hub status buffer";
862 ret = -ENOMEM;
863 goto fail;
864 }
Alan Sterndb90e7a2007-02-05 09:56:15 -0500865 mutex_init(&hub->status_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866
867 hub->descriptor = kmalloc(sizeof(*hub->descriptor), GFP_KERNEL);
868 if (!hub->descriptor) {
869 message = "can't kmalloc hub descriptor";
870 ret = -ENOMEM;
871 goto fail;
872 }
873
874 /* Request the entire hub descriptor.
875 * hub->descriptor can handle USB_MAXCHILDREN ports,
876 * but the hub can/will return fewer bytes here.
877 */
878 ret = get_hub_descriptor(hdev, hub->descriptor,
879 sizeof(*hub->descriptor));
880 if (ret < 0) {
881 message = "can't read hub descriptor";
882 goto fail;
883 } else if (hub->descriptor->bNbrPorts > USB_MAXCHILDREN) {
884 message = "hub has too many ports!";
885 ret = -ENODEV;
886 goto fail;
887 }
888
889 hdev->maxchild = hub->descriptor->bNbrPorts;
890 dev_info (hub_dev, "%d port%s detected\n", hdev->maxchild,
891 (hdev->maxchild == 1) ? "" : "s");
892
Greg Kroah-Hartman74ad9bd2005-06-20 21:15:16 -0700893 wHubCharacteristics = le16_to_cpu(hub->descriptor->wHubCharacteristics);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894
Greg Kroah-Hartman74ad9bd2005-06-20 21:15:16 -0700895 if (wHubCharacteristics & HUB_CHAR_COMPOUND) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 int i;
897 char portstr [USB_MAXCHILDREN + 1];
898
899 for (i = 0; i < hdev->maxchild; i++)
900 portstr[i] = hub->descriptor->DeviceRemovable
901 [((i + 1) / 8)] & (1 << ((i + 1) % 8))
902 ? 'F' : 'R';
903 portstr[hdev->maxchild] = 0;
904 dev_dbg(hub_dev, "compound device; port removable status: %s\n", portstr);
905 } else
906 dev_dbg(hub_dev, "standalone hub\n");
907
Greg Kroah-Hartman74ad9bd2005-06-20 21:15:16 -0700908 switch (wHubCharacteristics & HUB_CHAR_LPSM) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 case 0x00:
910 dev_dbg(hub_dev, "ganged power switching\n");
911 break;
912 case 0x01:
913 dev_dbg(hub_dev, "individual port power switching\n");
914 break;
915 case 0x02:
916 case 0x03:
917 dev_dbg(hub_dev, "no power switching (usb 1.0)\n");
918 break;
919 }
920
Greg Kroah-Hartman74ad9bd2005-06-20 21:15:16 -0700921 switch (wHubCharacteristics & HUB_CHAR_OCPM) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 case 0x00:
923 dev_dbg(hub_dev, "global over-current protection\n");
924 break;
925 case 0x08:
926 dev_dbg(hub_dev, "individual port over-current protection\n");
927 break;
928 case 0x10:
929 case 0x18:
930 dev_dbg(hub_dev, "no over-current protection\n");
931 break;
932 }
933
934 spin_lock_init (&hub->tt.lock);
935 INIT_LIST_HEAD (&hub->tt.clear_list);
David Howellsc4028952006-11-22 14:57:56 +0000936 INIT_WORK (&hub->tt.kevent, hub_tt_kevent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 switch (hdev->descriptor.bDeviceProtocol) {
938 case 0:
939 break;
940 case 1:
941 dev_dbg(hub_dev, "Single TT\n");
942 hub->tt.hub = hdev;
943 break;
944 case 2:
945 ret = usb_set_interface(hdev, 0, 1);
946 if (ret == 0) {
947 dev_dbg(hub_dev, "TT per port\n");
948 hub->tt.multi = 1;
949 } else
950 dev_err(hub_dev, "Using single TT (err %d)\n",
951 ret);
952 hub->tt.hub = hdev;
953 break;
954 default:
955 dev_dbg(hub_dev, "Unrecognized hub protocol %d\n",
956 hdev->descriptor.bDeviceProtocol);
957 break;
958 }
959
david-b@pacbell.nete09711a2005-08-13 18:41:04 -0700960 /* Note 8 FS bit times == (8 bits / 12000000 bps) ~= 666ns */
Greg Kroah-Hartman74ad9bd2005-06-20 21:15:16 -0700961 switch (wHubCharacteristics & HUB_CHAR_TTTT) {
david-b@pacbell.nete09711a2005-08-13 18:41:04 -0700962 case HUB_TTTT_8_BITS:
963 if (hdev->descriptor.bDeviceProtocol != 0) {
964 hub->tt.think_time = 666;
965 dev_dbg(hub_dev, "TT requires at most %d "
966 "FS bit times (%d ns)\n",
967 8, hub->tt.think_time);
968 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 break;
david-b@pacbell.nete09711a2005-08-13 18:41:04 -0700970 case HUB_TTTT_16_BITS:
971 hub->tt.think_time = 666 * 2;
972 dev_dbg(hub_dev, "TT requires at most %d "
973 "FS bit times (%d ns)\n",
974 16, hub->tt.think_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 break;
david-b@pacbell.nete09711a2005-08-13 18:41:04 -0700976 case HUB_TTTT_24_BITS:
977 hub->tt.think_time = 666 * 3;
978 dev_dbg(hub_dev, "TT requires at most %d "
979 "FS bit times (%d ns)\n",
980 24, hub->tt.think_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 break;
david-b@pacbell.nete09711a2005-08-13 18:41:04 -0700982 case HUB_TTTT_32_BITS:
983 hub->tt.think_time = 666 * 4;
984 dev_dbg(hub_dev, "TT requires at most %d "
985 "FS bit times (%d ns)\n",
986 32, hub->tt.think_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 break;
988 }
989
990 /* probe() zeroes hub->indicator[] */
Greg Kroah-Hartman74ad9bd2005-06-20 21:15:16 -0700991 if (wHubCharacteristics & HUB_CHAR_PORTIND) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 hub->has_indicators = 1;
993 dev_dbg(hub_dev, "Port indicators are supported\n");
994 }
995
996 dev_dbg(hub_dev, "power on to power good time: %dms\n",
997 hub->descriptor->bPwrOn2PwrGood * 2);
998
999 /* power budgeting mostly matters with bus-powered hubs,
1000 * and battery-powered root hubs (may provide just 8 mA).
1001 */
1002 ret = usb_get_status(hdev, USB_RECIP_DEVICE, 0, &hubstatus);
Alan Stern55c52712005-11-23 12:03:12 -05001003 if (ret < 2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 message = "can't get hub status";
1005 goto fail;
1006 }
Alan Stern7d35b922005-04-25 11:18:32 -04001007 le16_to_cpus(&hubstatus);
1008 if (hdev == hdev->bus->root_hub) {
Alan Stern55c52712005-11-23 12:03:12 -05001009 if (hdev->bus_mA == 0 || hdev->bus_mA >= 500)
1010 hub->mA_per_port = 500;
1011 else {
1012 hub->mA_per_port = hdev->bus_mA;
1013 hub->limited_power = 1;
1014 }
Alan Stern7d35b922005-04-25 11:18:32 -04001015 } else if ((hubstatus & (1 << USB_DEVICE_SELF_POWERED)) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 dev_dbg(hub_dev, "hub controller current requirement: %dmA\n",
1017 hub->descriptor->bHubContrCurrent);
Alan Stern55c52712005-11-23 12:03:12 -05001018 hub->limited_power = 1;
1019 if (hdev->maxchild > 0) {
1020 int remaining = hdev->bus_mA -
1021 hub->descriptor->bHubContrCurrent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022
Alan Stern55c52712005-11-23 12:03:12 -05001023 if (remaining < hdev->maxchild * 100)
1024 dev_warn(hub_dev,
1025 "insufficient power available "
1026 "to use all downstream ports\n");
1027 hub->mA_per_port = 100; /* 7.2.1.1 */
1028 }
1029 } else { /* Self-powered external hub */
1030 /* FIXME: What about battery-powered external hubs that
1031 * provide less current per port? */
1032 hub->mA_per_port = 500;
1033 }
1034 if (hub->mA_per_port < 500)
1035 dev_dbg(hub_dev, "%umA bus power budget for each child\n",
1036 hub->mA_per_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037
1038 ret = hub_hub_status(hub, &hubstatus, &hubchange);
1039 if (ret < 0) {
1040 message = "can't get hub status";
1041 goto fail;
1042 }
1043
1044 /* local power status reports aren't always correct */
1045 if (hdev->actconfig->desc.bmAttributes & USB_CONFIG_ATT_SELFPOWER)
1046 dev_dbg(hub_dev, "local power source is %s\n",
1047 (hubstatus & HUB_STATUS_LOCAL_POWER)
1048 ? "lost (inactive)" : "good");
1049
Greg Kroah-Hartman74ad9bd2005-06-20 21:15:16 -07001050 if ((wHubCharacteristics & HUB_CHAR_OCPM) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 dev_dbg(hub_dev, "%sover-current condition exists\n",
1052 (hubstatus & HUB_STATUS_OVERCURRENT) ? "" : "no ");
1053
inaky@linux.intel.com88fafff2006-10-11 20:05:59 -07001054 /* set up the interrupt endpoint
1055 * We use the EP's maxpacket size instead of (PORTS+1+7)/8
1056 * bytes as USB2.0[11.12.3] says because some hubs are known
1057 * to send more data (and thus cause overflow). For root hubs,
1058 * maxpktsize is defined in hcd.c's fake endpoint descriptors
1059 * to be big enough for at least USB_MAXCHILDREN ports. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 pipe = usb_rcvintpipe(hdev, endpoint->bEndpointAddress);
1061 maxp = usb_maxpacket(hdev, pipe, usb_pipeout(pipe));
1062
1063 if (maxp > sizeof(*hub->buffer))
1064 maxp = sizeof(*hub->buffer);
1065
1066 hub->urb = usb_alloc_urb(0, GFP_KERNEL);
1067 if (!hub->urb) {
1068 message = "couldn't allocate interrupt urb";
1069 ret = -ENOMEM;
1070 goto fail;
1071 }
1072
1073 usb_fill_int_urb(hub->urb, hdev, pipe, *hub->buffer, maxp, hub_irq,
1074 hub, endpoint->bInterval);
1075 hub->urb->transfer_dma = hub->buffer_dma;
1076 hub->urb->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
1077
1078 /* maybe cycle the hub leds */
1079 if (hub->has_indicators && blinkenlights)
1080 hub->indicator [0] = INDICATOR_CYCLE;
1081
Alan Sternf2835212008-04-28 11:07:17 -04001082 hub_activate(hub, HUB_INIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 return 0;
1084
1085fail:
1086 dev_err (hub_dev, "config failed, %s (err %d)\n",
1087 message, ret);
1088 /* hub_disconnect() frees urb and descriptor */
1089 return ret;
1090}
1091
Alan Sterne8054852007-05-04 11:55:11 -04001092static void hub_release(struct kref *kref)
1093{
1094 struct usb_hub *hub = container_of(kref, struct usb_hub, kref);
1095
1096 usb_put_intf(to_usb_interface(hub->intfdev));
1097 kfree(hub);
1098}
1099
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100static unsigned highspeed_hubs;
1101
1102static void hub_disconnect(struct usb_interface *intf)
1103{
1104 struct usb_hub *hub = usb_get_intfdata (intf);
Alan Sterne8054852007-05-04 11:55:11 -04001105
1106 /* Take the hub off the event list and don't let it be added again */
1107 spin_lock_irq(&hub_event_lock);
1108 list_del_init(&hub->event_list);
1109 hub->disconnected = 1;
1110 spin_unlock_irq(&hub_event_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111
Alan Stern7de18d82006-06-01 13:37:24 -04001112 /* Disconnect all children and quiesce the hub */
1113 hub->error = 0;
Alan Stern43303542008-04-28 11:07:31 -04001114 hub_quiesce(hub, HUB_DISCONNECT);
Alan Stern7de18d82006-06-01 13:37:24 -04001115
Alan Stern8b28c752005-08-10 17:04:13 -04001116 usb_set_intfdata (intf, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117
Alan Sterne8054852007-05-04 11:55:11 -04001118 if (hub->hdev->speed == USB_SPEED_HIGH)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 highspeed_hubs--;
1120
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 usb_free_urb(hub->urb);
Jesper Juhl1bc3c9e2005-04-18 17:39:34 -07001122 kfree(hub->descriptor);
Jesper Juhl1bc3c9e2005-04-18 17:39:34 -07001123 kfree(hub->status);
Alan Sterne8054852007-05-04 11:55:11 -04001124 usb_buffer_free(hub->hdev, sizeof(*hub->buffer), hub->buffer,
1125 hub->buffer_dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126
Alan Sterne8054852007-05-04 11:55:11 -04001127 kref_put(&hub->kref, hub_release);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128}
1129
1130static int hub_probe(struct usb_interface *intf, const struct usb_device_id *id)
1131{
1132 struct usb_host_interface *desc;
1133 struct usb_endpoint_descriptor *endpoint;
1134 struct usb_device *hdev;
1135 struct usb_hub *hub;
1136
1137 desc = intf->cur_altsetting;
1138 hdev = interface_to_usbdev(intf);
1139
Felipe Balbi38f3ad52008-06-12 10:49:47 +03001140 if (hdev->level == MAX_TOPO_LEVEL) {
Wu Fengguangb9cef6c2008-12-15 15:32:01 +08001141 dev_err(&intf->dev,
1142 "Unsupported bus topology: hub nested too deep\n");
Felipe Balbi38f3ad52008-06-12 10:49:47 +03001143 return -E2BIG;
1144 }
1145
David Brownell89ccbdc2006-04-02 10:18:09 -08001146#ifdef CONFIG_USB_OTG_BLACKLIST_HUB
1147 if (hdev->parent) {
1148 dev_warn(&intf->dev, "ignoring external hub\n");
1149 return -ENODEV;
1150 }
1151#endif
1152
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 /* Some hubs have a subclass of 1, which AFAICT according to the */
1154 /* specs is not defined, but it works */
1155 if ((desc->desc.bInterfaceSubClass != 0) &&
1156 (desc->desc.bInterfaceSubClass != 1)) {
1157descriptor_error:
1158 dev_err (&intf->dev, "bad descriptor, ignoring hub\n");
1159 return -EIO;
1160 }
1161
1162 /* Multiple endpoints? What kind of mutant ninja-hub is this? */
1163 if (desc->desc.bNumEndpoints != 1)
1164 goto descriptor_error;
1165
1166 endpoint = &desc->endpoint[0].desc;
1167
Luiz Fernando N. Capitulinofbf81c22006-09-27 11:58:53 -07001168 /* If it's not an interrupt in endpoint, we'd better punt! */
1169 if (!usb_endpoint_is_int_in(endpoint))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 goto descriptor_error;
1171
1172 /* We found a hub */
1173 dev_info (&intf->dev, "USB hub found\n");
1174
Alan Stern0a1ef3b2005-10-24 15:38:24 -04001175 hub = kzalloc(sizeof(*hub), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 if (!hub) {
1177 dev_dbg (&intf->dev, "couldn't kmalloc hub struct\n");
1178 return -ENOMEM;
1179 }
1180
Alan Sterne8054852007-05-04 11:55:11 -04001181 kref_init(&hub->kref);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 INIT_LIST_HEAD(&hub->event_list);
1183 hub->intfdev = &intf->dev;
1184 hub->hdev = hdev;
David Howellsc4028952006-11-22 14:57:56 +00001185 INIT_DELAYED_WORK(&hub->leds, led_work);
Alan Stern8520f382008-09-22 14:44:26 -04001186 INIT_DELAYED_WORK(&hub->init_work, NULL);
Alan Sterne8054852007-05-04 11:55:11 -04001187 usb_get_intf(intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188
1189 usb_set_intfdata (intf, hub);
Alan Stern40f122f2006-11-09 14:44:33 -05001190 intf->needs_remote_wakeup = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191
1192 if (hdev->speed == USB_SPEED_HIGH)
1193 highspeed_hubs++;
1194
1195 if (hub_configure(hub, endpoint) >= 0)
1196 return 0;
1197
1198 hub_disconnect (intf);
1199 return -ENODEV;
1200}
1201
1202static int
1203hub_ioctl(struct usb_interface *intf, unsigned int code, void *user_data)
1204{
1205 struct usb_device *hdev = interface_to_usbdev (intf);
1206
1207 /* assert ifno == 0 (part of hub spec) */
1208 switch (code) {
1209 case USBDEVFS_HUB_PORTINFO: {
1210 struct usbdevfs_hub_portinfo *info = user_data;
1211 int i;
1212
1213 spin_lock_irq(&device_state_lock);
1214 if (hdev->devnum <= 0)
1215 info->nports = 0;
1216 else {
1217 info->nports = hdev->maxchild;
1218 for (i = 0; i < info->nports; i++) {
1219 if (hdev->children[i] == NULL)
1220 info->port[i] = 0;
1221 else
1222 info->port[i] =
1223 hdev->children[i]->devnum;
1224 }
1225 }
1226 spin_unlock_irq(&device_state_lock);
1227
1228 return info->nports + 1;
1229 }
1230
1231 default:
1232 return -ENOSYS;
1233 }
1234}
1235
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237static void recursively_mark_NOTATTACHED(struct usb_device *udev)
1238{
1239 int i;
1240
1241 for (i = 0; i < udev->maxchild; ++i) {
1242 if (udev->children[i])
1243 recursively_mark_NOTATTACHED(udev->children[i]);
1244 }
Sarah Sharp15123002007-12-21 16:54:15 -08001245 if (udev->state == USB_STATE_SUSPENDED) {
Alan Sternee49fb52006-11-22 16:55:54 -05001246 udev->discon_suspended = 1;
Sarah Sharp15123002007-12-21 16:54:15 -08001247 udev->active_duration -= jiffies;
1248 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 udev->state = USB_STATE_NOTATTACHED;
1250}
1251
1252/**
1253 * usb_set_device_state - change a device's current state (usbcore, hcds)
1254 * @udev: pointer to device whose state should be changed
1255 * @new_state: new state value to be stored
1256 *
1257 * udev->state is _not_ fully protected by the device lock. Although
1258 * most transitions are made only while holding the lock, the state can
1259 * can change to USB_STATE_NOTATTACHED at almost any time. This
1260 * is so that devices can be marked as disconnected as soon as possible,
1261 * without having to wait for any semaphores to be released. As a result,
1262 * all changes to any device's state must be protected by the
1263 * device_state_lock spinlock.
1264 *
1265 * Once a device has been added to the device tree, all changes to its state
1266 * should be made using this routine. The state should _not_ be set directly.
1267 *
1268 * If udev->state is already USB_STATE_NOTATTACHED then no change is made.
1269 * Otherwise udev->state is set to new_state, and if new_state is
1270 * USB_STATE_NOTATTACHED then all of udev's descendants' states are also set
1271 * to USB_STATE_NOTATTACHED.
1272 */
1273void usb_set_device_state(struct usb_device *udev,
1274 enum usb_device_state new_state)
1275{
1276 unsigned long flags;
1277
1278 spin_lock_irqsave(&device_state_lock, flags);
1279 if (udev->state == USB_STATE_NOTATTACHED)
1280 ; /* do nothing */
David Brownellb94dc6b2005-09-12 19:39:39 -07001281 else if (new_state != USB_STATE_NOTATTACHED) {
David Brownellfb669cc2006-01-24 08:40:27 -08001282
1283 /* root hub wakeup capabilities are managed out-of-band
1284 * and may involve silicon errata ... ignore them here.
1285 */
1286 if (udev->parent) {
Alan Stern645daaa2006-08-30 15:47:02 -04001287 if (udev->state == USB_STATE_SUSPENDED
1288 || new_state == USB_STATE_SUSPENDED)
1289 ; /* No change to wakeup settings */
1290 else if (new_state == USB_STATE_CONFIGURED)
David Brownellfb669cc2006-01-24 08:40:27 -08001291 device_init_wakeup(&udev->dev,
1292 (udev->actconfig->desc.bmAttributes
1293 & USB_CONFIG_ATT_WAKEUP));
Alan Stern645daaa2006-08-30 15:47:02 -04001294 else
David Brownellfb669cc2006-01-24 08:40:27 -08001295 device_init_wakeup(&udev->dev, 0);
1296 }
Sarah Sharp15123002007-12-21 16:54:15 -08001297 if (udev->state == USB_STATE_SUSPENDED &&
1298 new_state != USB_STATE_SUSPENDED)
1299 udev->active_duration -= jiffies;
1300 else if (new_state == USB_STATE_SUSPENDED &&
1301 udev->state != USB_STATE_SUSPENDED)
1302 udev->active_duration += jiffies;
Alan Stern645daaa2006-08-30 15:47:02 -04001303 udev->state = new_state;
David Brownellb94dc6b2005-09-12 19:39:39 -07001304 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 recursively_mark_NOTATTACHED(udev);
1306 spin_unlock_irqrestore(&device_state_lock, flags);
1307}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308
Inaky Perez-Gonzalez8af548d2008-04-08 13:24:46 -07001309/*
1310 * WUSB devices are simple: they have no hubs behind, so the mapping
1311 * device <-> virtual port number becomes 1:1. Why? to simplify the
1312 * life of the device connection logic in
1313 * drivers/usb/wusbcore/devconnect.c. When we do the initial secret
1314 * handshake we need to assign a temporary address in the unauthorized
1315 * space. For simplicity we use the first virtual port number found to
1316 * be free [drivers/usb/wusbcore/devconnect.c:wusbhc_devconnect_ack()]
1317 * and that becomes it's address [X < 128] or its unauthorized address
1318 * [X | 0x80].
1319 *
1320 * We add 1 as an offset to the one-based USB-stack port number
1321 * (zero-based wusb virtual port index) for two reasons: (a) dev addr
1322 * 0 is reserved by USB for default address; (b) Linux's USB stack
1323 * uses always #1 for the root hub of the controller. So USB stack's
1324 * port #1, which is wusb virtual-port #0 has address #2.
1325 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326static void choose_address(struct usb_device *udev)
1327{
1328 int devnum;
1329 struct usb_bus *bus = udev->bus;
1330
1331 /* If khubd ever becomes multithreaded, this will need a lock */
Inaky Perez-Gonzalez8af548d2008-04-08 13:24:46 -07001332 if (udev->wusb) {
1333 devnum = udev->portnum + 1;
1334 BUG_ON(test_bit(devnum, bus->devmap.devicemap));
1335 } else {
1336 /* Try to allocate the next devnum beginning at
1337 * bus->devnum_next. */
1338 devnum = find_next_zero_bit(bus->devmap.devicemap, 128,
1339 bus->devnum_next);
1340 if (devnum >= 128)
1341 devnum = find_next_zero_bit(bus->devmap.devicemap,
1342 128, 1);
1343 bus->devnum_next = ( devnum >= 127 ? 1 : devnum + 1);
1344 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 if (devnum < 128) {
1346 set_bit(devnum, bus->devmap.devicemap);
1347 udev->devnum = devnum;
1348 }
1349}
1350
1351static void release_address(struct usb_device *udev)
1352{
1353 if (udev->devnum > 0) {
1354 clear_bit(udev->devnum, udev->bus->devmap.devicemap);
1355 udev->devnum = -1;
1356 }
1357}
1358
David Vrabel4953d142008-04-08 13:24:46 -07001359static void update_address(struct usb_device *udev, int devnum)
1360{
1361 /* The address for a WUSB device is managed by wusbcore. */
1362 if (!udev->wusb)
1363 udev->devnum = devnum;
1364}
1365
Alan Sternd5d4db72007-05-29 16:34:52 -04001366#ifdef CONFIG_USB_SUSPEND
1367
1368static void usb_stop_pm(struct usb_device *udev)
1369{
1370 /* Synchronize with the ksuspend thread to prevent any more
1371 * autosuspend requests from being submitted, and decrement
1372 * the parent's count of unsuspended children.
1373 */
1374 usb_pm_lock(udev);
1375 if (udev->parent && !udev->discon_suspended)
1376 usb_autosuspend_device(udev->parent);
1377 usb_pm_unlock(udev);
1378
Alan Stern9ac39f22008-11-12 16:19:49 -05001379 /* Stop any autosuspend or autoresume requests already submitted */
1380 cancel_delayed_work_sync(&udev->autosuspend);
1381 cancel_work_sync(&udev->autoresume);
Alan Sternd5d4db72007-05-29 16:34:52 -04001382}
1383
1384#else
1385
1386static inline void usb_stop_pm(struct usb_device *udev)
1387{ }
1388
1389#endif
1390
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391/**
1392 * usb_disconnect - disconnect a device (usbcore-internal)
1393 * @pdev: pointer to device being disconnected
1394 * Context: !in_interrupt ()
1395 *
1396 * Something got disconnected. Get rid of it and all of its children.
1397 *
1398 * If *pdev is a normal device then the parent hub must already be locked.
1399 * If *pdev is a root hub then this routine will acquire the
1400 * usb_bus_list_lock on behalf of the caller.
1401 *
1402 * Only hub drivers (including virtual root hub drivers for host
1403 * controllers) should ever call this.
1404 *
1405 * This call is synchronous, and may not be used in an interrupt context.
1406 */
1407void usb_disconnect(struct usb_device **pdev)
1408{
1409 struct usb_device *udev = *pdev;
1410 int i;
1411
1412 if (!udev) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08001413 pr_debug ("%s nodev\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 return;
1415 }
1416
1417 /* mark the device as inactive, so any further urb submissions for
1418 * this device (and any of its children) will fail immediately.
1419 * this quiesces everyting except pending urbs.
1420 */
1421 usb_set_device_state(udev, USB_STATE_NOTATTACHED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 dev_info (&udev->dev, "USB disconnect, address %d\n", udev->devnum);
1423
Alan Stern9ad3d6c2005-11-17 17:10:32 -05001424 usb_lock_device(udev);
1425
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 /* Free up all the children before we remove this device */
1427 for (i = 0; i < USB_MAXCHILDREN; i++) {
1428 if (udev->children[i])
1429 usb_disconnect(&udev->children[i]);
1430 }
1431
1432 /* deallocate hcd/hardware state ... nuking all pending urbs and
1433 * cleaning up all state associated with the current configuration
1434 * so that the hardware is now fully quiesced.
1435 */
Alan Stern782da722006-07-01 22:09:35 -04001436 dev_dbg (&udev->dev, "unregistering device\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 usb_disable_device(udev, 0);
Alan Sterncde217a2008-10-21 15:28:46 -04001438 usb_hcd_synchronize_unlinks(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439
Alan Stern782da722006-07-01 22:09:35 -04001440 usb_unlock_device(udev);
Greg Kroah-Hartman3099e752005-06-20 21:15:16 -07001441
Alan Sterne16362a2008-05-20 16:37:34 -04001442 /* Remove the device-specific files from sysfs. This must be
1443 * done with udev unlocked, because some of the attribute
1444 * routines try to acquire the device lock.
1445 */
1446 usb_remove_sysfs_dev_files(udev);
1447
Alan Stern782da722006-07-01 22:09:35 -04001448 /* Unregister the device. The device driver is responsible
1449 * for removing the device files from usbfs and sysfs and for
1450 * de-configuring the device.
1451 */
1452 device_del(&udev->dev);
1453
1454 /* Free the device number and delete the parent's children[]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 * (or root_hub) pointer.
1456 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 release_address(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458
1459 /* Avoid races with recursively_mark_NOTATTACHED() */
1460 spin_lock_irq(&device_state_lock);
1461 *pdev = NULL;
1462 spin_unlock_irq(&device_state_lock);
1463
Alan Sternd5d4db72007-05-29 16:34:52 -04001464 usb_stop_pm(udev);
Alan Sternee49fb52006-11-22 16:55:54 -05001465
Alan Stern782da722006-07-01 22:09:35 -04001466 put_device(&udev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467}
1468
Greg Kroah-Hartmanf2a383e2007-11-26 22:11:55 -08001469#ifdef CONFIG_USB_ANNOUNCE_NEW_DEVICES
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470static void show_string(struct usb_device *udev, char *id, char *string)
1471{
1472 if (!string)
1473 return;
1474 dev_printk(KERN_INFO, &udev->dev, "%s: %s\n", id, string);
1475}
1476
Greg Kroah-Hartmanf2a383e2007-11-26 22:11:55 -08001477static void announce_device(struct usb_device *udev)
1478{
1479 dev_info(&udev->dev, "New USB device found, idVendor=%04x, idProduct=%04x\n",
1480 le16_to_cpu(udev->descriptor.idVendor),
1481 le16_to_cpu(udev->descriptor.idProduct));
Wu Fengguangb9cef6c2008-12-15 15:32:01 +08001482 dev_info(&udev->dev,
1483 "New USB device strings: Mfr=%d, Product=%d, SerialNumber=%d\n",
Greg Kroah-Hartmanf2a383e2007-11-26 22:11:55 -08001484 udev->descriptor.iManufacturer,
1485 udev->descriptor.iProduct,
1486 udev->descriptor.iSerialNumber);
1487 show_string(udev, "Product", udev->product);
1488 show_string(udev, "Manufacturer", udev->manufacturer);
1489 show_string(udev, "SerialNumber", udev->serial);
1490}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491#else
Greg Kroah-Hartmanf2a383e2007-11-26 22:11:55 -08001492static inline void announce_device(struct usb_device *udev) { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493#endif
1494
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495#ifdef CONFIG_USB_OTG
1496#include "otg_whitelist.h"
1497#endif
1498
Oliver Neukum3ede7602007-01-11 14:35:50 +01001499/**
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07001500 * usb_configure_device_otg - FIXME (usbcore-internal)
Oliver Neukum3ede7602007-01-11 14:35:50 +01001501 * @udev: newly addressed device (in ADDRESS state)
1502 *
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07001503 * Do configuration for On-The-Go devices
Oliver Neukum3ede7602007-01-11 14:35:50 +01001504 */
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07001505static int usb_configure_device_otg(struct usb_device *udev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506{
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07001507 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508
1509#ifdef CONFIG_USB_OTG
1510 /*
1511 * OTG-aware devices on OTG-capable root hubs may be able to use SRP,
1512 * to wake us after we've powered off VBUS; and HNP, switching roles
1513 * "host" to "peripheral". The OTG descriptor helps figure this out.
1514 */
1515 if (!udev->bus->is_b_host
1516 && udev->config
1517 && udev->parent == udev->bus->root_hub) {
1518 struct usb_otg_descriptor *desc = 0;
1519 struct usb_bus *bus = udev->bus;
1520
1521 /* descriptor may appear anywhere in config */
1522 if (__usb_get_extra_descriptor (udev->rawdescriptors[0],
1523 le16_to_cpu(udev->config[0].desc.wTotalLength),
1524 USB_DT_OTG, (void **) &desc) == 0) {
1525 if (desc->bmAttributes & USB_OTG_HNP) {
Alan Stern12c3da32005-11-23 12:09:52 -05001526 unsigned port1 = udev->portnum;
David Brownellfc849b82006-09-18 16:53:26 -07001527
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 dev_info(&udev->dev,
1529 "Dual-Role OTG device on %sHNP port\n",
1530 (port1 == bus->otg_port)
1531 ? "" : "non-");
1532
1533 /* enable HNP before suspend, it's simpler */
1534 if (port1 == bus->otg_port)
1535 bus->b_hnp_enable = 1;
1536 err = usb_control_msg(udev,
1537 usb_sndctrlpipe(udev, 0),
1538 USB_REQ_SET_FEATURE, 0,
1539 bus->b_hnp_enable
1540 ? USB_DEVICE_B_HNP_ENABLE
1541 : USB_DEVICE_A_ALT_HNP_SUPPORT,
1542 0, NULL, 0, USB_CTRL_SET_TIMEOUT);
1543 if (err < 0) {
1544 /* OTG MESSAGE: report errors here,
1545 * customize to match your product.
1546 */
1547 dev_info(&udev->dev,
Wu Fengguangb9cef6c2008-12-15 15:32:01 +08001548 "can't set HNP mode: %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 err);
1550 bus->b_hnp_enable = 0;
1551 }
1552 }
1553 }
1554 }
1555
1556 if (!is_targeted(udev)) {
1557
1558 /* Maybe it can talk to us, though we can't talk to it.
1559 * (Includes HNP test device.)
1560 */
1561 if (udev->bus->b_hnp_enable || udev->bus->is_b_host) {
Alan Stern4956ecc2007-05-30 16:51:28 -04001562 err = usb_port_suspend(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 if (err < 0)
1564 dev_dbg(&udev->dev, "HNP fail, %d\n", err);
1565 }
Vikram Panditaffcdc182007-05-25 21:31:07 -07001566 err = -ENOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567 goto fail;
1568 }
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07001569fail:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570#endif
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07001571 return err;
1572}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07001574
1575/**
1576 * usb_configure_device - Detect and probe device intfs/otg (usbcore-internal)
1577 * @udev: newly addressed device (in ADDRESS state)
1578 *
1579 * This is only called by usb_new_device() and usb_authorize_device()
1580 * and FIXME -- all comments that apply to them apply here wrt to
1581 * environment.
1582 *
1583 * If the device is WUSB and not authorized, we don't attempt to read
1584 * the string descriptors, as they will be errored out by the device
1585 * until it has been authorized.
1586 */
1587static int usb_configure_device(struct usb_device *udev)
1588{
1589 int err;
1590
1591 if (udev->config == NULL) {
1592 err = usb_get_configuration(udev);
1593 if (err < 0) {
1594 dev_err(&udev->dev, "can't read configurations, error %d\n",
1595 err);
1596 goto fail;
1597 }
1598 }
1599 if (udev->wusb == 1 && udev->authorized == 0) {
1600 udev->product = kstrdup("n/a (unauthorized)", GFP_KERNEL);
1601 udev->manufacturer = kstrdup("n/a (unauthorized)", GFP_KERNEL);
1602 udev->serial = kstrdup("n/a (unauthorized)", GFP_KERNEL);
1603 }
1604 else {
1605 /* read the standard strings and cache them if present */
1606 udev->product = usb_cache_string(udev, udev->descriptor.iProduct);
1607 udev->manufacturer = usb_cache_string(udev,
1608 udev->descriptor.iManufacturer);
1609 udev->serial = usb_cache_string(udev, udev->descriptor.iSerialNumber);
1610 }
1611 err = usb_configure_device_otg(udev);
1612fail:
1613 return err;
1614}
1615
1616
1617/**
1618 * usb_new_device - perform initial device setup (usbcore-internal)
1619 * @udev: newly addressed device (in ADDRESS state)
1620 *
1621 * This is called with devices which have been enumerated, but not yet
1622 * configured. The device descriptor is available, but not descriptors
1623 * for any device configuration. The caller must have locked either
1624 * the parent hub (if udev is a normal device) or else the
1625 * usb_bus_list_lock (if udev is a root hub). The parent's pointer to
1626 * udev has already been installed, but udev is not yet visible through
1627 * sysfs or other filesystem code.
1628 *
1629 * It will return if the device is configured properly or not. Zero if
1630 * the interface was registered with the driver core; else a negative
1631 * errno value.
1632 *
1633 * This call is synchronous, and may not be used in an interrupt context.
1634 *
1635 * Only the hub driver or root-hub registrar should ever call this.
1636 */
1637int usb_new_device(struct usb_device *udev)
1638{
1639 int err;
1640
Alan Stern6cd13202008-11-13 15:08:30 -05001641 /* Increment the parent's count of unsuspended children */
1642 if (udev->parent)
1643 usb_autoresume_device(udev->parent);
1644
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07001645 usb_detect_quirks(udev); /* Determine quirks */
1646 err = usb_configure_device(udev); /* detect & probe dev/intfs */
1647 if (err < 0)
1648 goto fail;
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001649 /* export the usbdev device-node for libusb */
1650 udev->dev.devt = MKDEV(USB_DEVICE_MAJOR,
1651 (((udev->bus->busnum-1) * 128) + (udev->devnum-1)));
1652
Alan Stern6cd13202008-11-13 15:08:30 -05001653 /* Tell the world! */
1654 announce_device(udev);
Alan Stern195af2c2007-07-16 15:28:19 -04001655
Alan Stern782da722006-07-01 22:09:35 -04001656 /* Register the device. The device driver is responsible
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001657 * for adding the device files to sysfs and for configuring
1658 * the device.
Alan Stern782da722006-07-01 22:09:35 -04001659 */
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001660 err = device_add(&udev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 if (err) {
1662 dev_err(&udev->dev, "can't device_add, error %d\n", err);
1663 goto fail;
1664 }
Alan Stern9ad3d6c2005-11-17 17:10:32 -05001665
Alan Sterne16362a2008-05-20 16:37:34 -04001666 /* put device-specific files into sysfs */
1667 usb_create_sysfs_dev_files(udev);
Greg Kroah-Hartmanc0664752006-08-11 01:55:12 -07001668 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669
1670fail:
1671 usb_set_device_state(udev, USB_STATE_NOTATTACHED);
Alan Stern6cd13202008-11-13 15:08:30 -05001672 usb_stop_pm(udev);
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07001673 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674}
1675
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07001676
1677/**
Randy Dunlapfd39c862007-10-15 17:30:02 -07001678 * usb_deauthorize_device - deauthorize a device (usbcore-internal)
1679 * @usb_dev: USB device
1680 *
1681 * Move the USB device to a very basic state where interfaces are disabled
1682 * and the device is in fact unconfigured and unusable.
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07001683 *
1684 * We share a lock (that we have) with device_del(), so we need to
1685 * defer its call.
1686 */
1687int usb_deauthorize_device(struct usb_device *usb_dev)
1688{
1689 unsigned cnt;
1690 usb_lock_device(usb_dev);
1691 if (usb_dev->authorized == 0)
1692 goto out_unauthorized;
1693 usb_dev->authorized = 0;
1694 usb_set_configuration(usb_dev, -1);
1695 usb_dev->product = kstrdup("n/a (unauthorized)", GFP_KERNEL);
1696 usb_dev->manufacturer = kstrdup("n/a (unauthorized)", GFP_KERNEL);
1697 usb_dev->serial = kstrdup("n/a (unauthorized)", GFP_KERNEL);
1698 kfree(usb_dev->config);
1699 usb_dev->config = NULL;
1700 for (cnt = 0; cnt < usb_dev->descriptor.bNumConfigurations; cnt++)
1701 kfree(usb_dev->rawdescriptors[cnt]);
1702 usb_dev->descriptor.bNumConfigurations = 0;
1703 kfree(usb_dev->rawdescriptors);
1704out_unauthorized:
1705 usb_unlock_device(usb_dev);
1706 return 0;
1707}
1708
1709
1710int usb_authorize_device(struct usb_device *usb_dev)
1711{
1712 int result = 0, c;
1713 usb_lock_device(usb_dev);
1714 if (usb_dev->authorized == 1)
1715 goto out_authorized;
1716 kfree(usb_dev->product);
1717 usb_dev->product = NULL;
1718 kfree(usb_dev->manufacturer);
1719 usb_dev->manufacturer = NULL;
1720 kfree(usb_dev->serial);
1721 usb_dev->serial = NULL;
1722 result = usb_autoresume_device(usb_dev);
1723 if (result < 0) {
1724 dev_err(&usb_dev->dev,
1725 "can't autoresume for authorization: %d\n", result);
1726 goto error_autoresume;
1727 }
1728 result = usb_get_device_descriptor(usb_dev, sizeof(usb_dev->descriptor));
1729 if (result < 0) {
1730 dev_err(&usb_dev->dev, "can't re-read device descriptor for "
1731 "authorization: %d\n", result);
1732 goto error_device_descriptor;
1733 }
1734 usb_dev->authorized = 1;
1735 result = usb_configure_device(usb_dev);
1736 if (result < 0)
1737 goto error_configure;
1738 /* Choose and set the configuration. This registers the interfaces
1739 * with the driver core and lets interface drivers bind to them.
1740 */
Greg Kroah-Hartmanb5ea0602007-08-02 22:44:27 -06001741 c = usb_choose_configuration(usb_dev);
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07001742 if (c >= 0) {
1743 result = usb_set_configuration(usb_dev, c);
1744 if (result) {
1745 dev_err(&usb_dev->dev,
1746 "can't set config #%d, error %d\n", c, result);
1747 /* This need not be fatal. The user can try to
1748 * set other configurations. */
1749 }
1750 }
1751 dev_info(&usb_dev->dev, "authorized to connect\n");
1752error_configure:
1753error_device_descriptor:
1754error_autoresume:
1755out_authorized:
1756 usb_unlock_device(usb_dev); // complements locktree
1757 return result;
1758}
1759
1760
Inaky Perez-Gonzalez0165de02006-08-25 19:35:29 -07001761/* Returns 1 if @hub is a WUSB root hub, 0 otherwise */
1762static unsigned hub_is_wusb(struct usb_hub *hub)
1763{
1764 struct usb_hcd *hcd;
1765 if (hub->hdev->parent != NULL) /* not a root hub? */
1766 return 0;
1767 hcd = container_of(hub->hdev->bus, struct usb_hcd, self);
1768 return hcd->wireless;
1769}
1770
1771
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772#define PORT_RESET_TRIES 5
1773#define SET_ADDRESS_TRIES 2
1774#define GET_DESCRIPTOR_TRIES 2
1775#define SET_CONFIG_TRIES (2 * (use_both_schemes + 1))
1776#define USE_NEW_SCHEME(i) ((i) / 2 == old_scheme_first)
1777
1778#define HUB_ROOT_RESET_TIME 50 /* times are in msec */
1779#define HUB_SHORT_RESET_TIME 10
1780#define HUB_LONG_RESET_TIME 200
1781#define HUB_RESET_TIMEOUT 500
1782
1783static int hub_port_wait_reset(struct usb_hub *hub, int port1,
1784 struct usb_device *udev, unsigned int delay)
1785{
1786 int delay_time, ret;
1787 u16 portstatus;
1788 u16 portchange;
1789
1790 for (delay_time = 0;
1791 delay_time < HUB_RESET_TIMEOUT;
1792 delay_time += delay) {
1793 /* wait to give the device a chance to reset */
1794 msleep(delay);
1795
1796 /* read and decode port status */
1797 ret = hub_port_status(hub, port1, &portstatus, &portchange);
1798 if (ret < 0)
1799 return ret;
1800
1801 /* Device went away? */
1802 if (!(portstatus & USB_PORT_STAT_CONNECTION))
1803 return -ENOTCONN;
1804
Alan Sterndd4dd192007-05-04 11:55:54 -04001805 /* bomb out completely if the connection bounced */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806 if ((portchange & USB_PORT_STAT_C_CONNECTION))
Alan Sterndd4dd192007-05-04 11:55:54 -04001807 return -ENOTCONN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808
1809 /* if we`ve finished resetting, then break out of the loop */
1810 if (!(portstatus & USB_PORT_STAT_RESET) &&
1811 (portstatus & USB_PORT_STAT_ENABLE)) {
Inaky Perez-Gonzalez0165de02006-08-25 19:35:29 -07001812 if (hub_is_wusb(hub))
1813 udev->speed = USB_SPEED_VARIABLE;
1814 else if (portstatus & USB_PORT_STAT_HIGH_SPEED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815 udev->speed = USB_SPEED_HIGH;
1816 else if (portstatus & USB_PORT_STAT_LOW_SPEED)
1817 udev->speed = USB_SPEED_LOW;
1818 else
1819 udev->speed = USB_SPEED_FULL;
1820 return 0;
1821 }
1822
1823 /* switch to the long delay after two short delay failures */
1824 if (delay_time >= 2 * HUB_SHORT_RESET_TIME)
1825 delay = HUB_LONG_RESET_TIME;
1826
1827 dev_dbg (hub->intfdev,
1828 "port %d not reset yet, waiting %dms\n",
1829 port1, delay);
1830 }
1831
1832 return -EBUSY;
1833}
1834
1835static int hub_port_reset(struct usb_hub *hub, int port1,
1836 struct usb_device *udev, unsigned int delay)
1837{
1838 int i, status;
1839
Alan Stern32fe0192007-10-10 16:27:07 -04001840 /* Block EHCI CF initialization during the port reset.
1841 * Some companion controllers don't like it when they mix.
1842 */
1843 down_read(&ehci_cf_port_reset_rwsem);
1844
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845 /* Reset the port */
1846 for (i = 0; i < PORT_RESET_TRIES; i++) {
1847 status = set_port_feature(hub->hdev,
1848 port1, USB_PORT_FEAT_RESET);
1849 if (status)
1850 dev_err(hub->intfdev,
1851 "cannot reset port %d (err = %d)\n",
1852 port1, status);
1853 else {
1854 status = hub_port_wait_reset(hub, port1, udev, delay);
David Brownelldd165252005-08-31 10:45:25 -07001855 if (status && status != -ENOTCONN)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856 dev_dbg(hub->intfdev,
1857 "port_wait_reset: err = %d\n",
1858 status);
1859 }
1860
1861 /* return on disconnect or reset */
1862 switch (status) {
1863 case 0:
David Brownellb7896962005-08-31 10:41:44 -07001864 /* TRSTRCY = 10 ms; plus some extra */
1865 msleep(10 + 40);
David Vrabel4953d142008-04-08 13:24:46 -07001866 update_address(udev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867 /* FALL THROUGH */
1868 case -ENOTCONN:
1869 case -ENODEV:
1870 clear_port_feature(hub->hdev,
1871 port1, USB_PORT_FEAT_C_RESET);
1872 /* FIXME need disconnect() for NOTATTACHED device */
1873 usb_set_device_state(udev, status
1874 ? USB_STATE_NOTATTACHED
1875 : USB_STATE_DEFAULT);
Alan Stern32fe0192007-10-10 16:27:07 -04001876 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877 }
1878
1879 dev_dbg (hub->intfdev,
1880 "port %d not enabled, trying reset again...\n",
1881 port1);
1882 delay = HUB_LONG_RESET_TIME;
1883 }
1884
1885 dev_err (hub->intfdev,
1886 "Cannot enable port %i. Maybe the USB cable is bad?\n",
1887 port1);
1888
Alan Stern32fe0192007-10-10 16:27:07 -04001889 done:
1890 up_read(&ehci_cf_port_reset_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891 return status;
1892}
1893
Alan Sternd388dab2006-07-01 22:14:24 -04001894#ifdef CONFIG_PM
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895
Alan Sternb01b03f2008-04-28 11:06:11 -04001896#define MASK_BITS (USB_PORT_STAT_POWER | USB_PORT_STAT_CONNECTION | \
1897 USB_PORT_STAT_SUSPEND)
1898#define WANT_BITS (USB_PORT_STAT_POWER | USB_PORT_STAT_CONNECTION)
1899
1900/* Determine whether the device on a port is ready for a normal resume,
1901 * is ready for a reset-resume, or should be disconnected.
1902 */
1903static int check_port_resume_type(struct usb_device *udev,
1904 struct usb_hub *hub, int port1,
1905 int status, unsigned portchange, unsigned portstatus)
1906{
1907 /* Is the device still present? */
1908 if (status || (portstatus & MASK_BITS) != WANT_BITS) {
1909 if (status >= 0)
1910 status = -ENODEV;
1911 }
1912
Alan Stern86c57ed2008-06-30 11:14:43 -04001913 /* Can't do a normal resume if the port isn't enabled,
1914 * so try a reset-resume instead.
1915 */
1916 else if (!(portstatus & USB_PORT_STAT_ENABLE) && !udev->reset_resume) {
1917 if (udev->persist_enabled)
1918 udev->reset_resume = 1;
1919 else
1920 status = -ENODEV;
1921 }
Alan Sternb01b03f2008-04-28 11:06:11 -04001922
1923 if (status) {
1924 dev_dbg(hub->intfdev,
1925 "port %d status %04x.%04x after resume, %d\n",
1926 port1, portchange, portstatus, status);
1927 } else if (udev->reset_resume) {
1928
1929 /* Late port handoff can set status-change bits */
1930 if (portchange & USB_PORT_STAT_C_CONNECTION)
1931 clear_port_feature(hub->hdev, port1,
1932 USB_PORT_FEAT_C_CONNECTION);
1933 if (portchange & USB_PORT_STAT_C_ENABLE)
1934 clear_port_feature(hub->hdev, port1,
1935 USB_PORT_FEAT_C_ENABLE);
1936 }
1937
1938 return status;
1939}
1940
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941#ifdef CONFIG_USB_SUSPEND
1942
1943/*
Alan Stern140d8f62006-07-01 22:07:21 -04001944 * usb_port_suspend - suspend a usb device's upstream port
Alan Stern624d6c02007-05-30 15:35:16 -04001945 * @udev: device that's no longer in active use, not a root hub
David Brownell5edbfb72005-09-22 22:45:26 -07001946 * Context: must be able to sleep; device not locked; pm locks held
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947 *
1948 * Suspends a USB device that isn't in active use, conserving power.
1949 * Devices may wake out of a suspend, if anything important happens,
1950 * using the remote wakeup mechanism. They may also be taken out of
Alan Stern140d8f62006-07-01 22:07:21 -04001951 * suspend by the host, using usb_port_resume(). It's also routine
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952 * to disconnect devices while they are suspended.
1953 *
David Brownell390a8c32005-09-13 19:57:27 -07001954 * This only affects the USB hardware for a device; its interfaces
1955 * (and, for hubs, child devices) must already have been suspended.
1956 *
Alan Stern624d6c02007-05-30 15:35:16 -04001957 * Selective port suspend reduces power; most suspended devices draw
1958 * less than 500 uA. It's also used in OTG, along with remote wakeup.
1959 * All devices below the suspended port are also suspended.
1960 *
1961 * Devices leave suspend state when the host wakes them up. Some devices
1962 * also support "remote wakeup", where the device can activate the USB
1963 * tree above them to deliver data, such as a keypress or packet. In
1964 * some cases, this wakes the USB host.
1965 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966 * Suspending OTG devices may trigger HNP, if that's been enabled
1967 * between a pair of dual-role devices. That will change roles, such
1968 * as from A-Host to A-Peripheral or from B-Host back to B-Peripheral.
1969 *
Alan Stern4956ecc2007-05-30 16:51:28 -04001970 * Devices on USB hub ports have only one "suspend" state, corresponding
1971 * to ACPI D2, "may cause the device to lose some context".
1972 * State transitions include:
1973 *
1974 * - suspend, resume ... when the VBUS power link stays live
1975 * - suspend, disconnect ... VBUS lost
1976 *
1977 * Once VBUS drop breaks the circuit, the port it's using has to go through
1978 * normal re-enumeration procedures, starting with enabling VBUS power.
1979 * Other than re-initializing the hub (plug/unplug, except for root hubs),
1980 * Linux (2.6) currently has NO mechanisms to initiate that: no khubd
1981 * timer, no SRP, no requests through sysfs.
1982 *
1983 * If CONFIG_USB_SUSPEND isn't enabled, devices only really suspend when
1984 * the root hub for their bus goes into global suspend ... so we don't
1985 * (falsely) update the device power state to say it suspended.
1986 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987 * Returns 0 on success, else negative errno.
1988 */
Alan Stern65bfd292008-11-25 16:39:18 -05001989int usb_port_suspend(struct usb_device *udev, pm_message_t msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990{
Alan Stern624d6c02007-05-30 15:35:16 -04001991 struct usb_hub *hub = hdev_to_hub(udev->parent);
1992 int port1 = udev->portnum;
1993 int status;
Alan Stern4956ecc2007-05-30 16:51:28 -04001994
Alan Stern624d6c02007-05-30 15:35:16 -04001995 // dev_dbg(hub->intfdev, "suspend port %d\n", port1);
1996
1997 /* enable remote wakeup when appropriate; this lets the device
1998 * wake up the upstream hub (including maybe the root hub).
1999 *
2000 * NOTE: OTG devices may issue remote wakeup (or SRP) even when
2001 * we don't explicitly enable it here.
2002 */
2003 if (udev->do_remote_wakeup) {
2004 status = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
2005 USB_REQ_SET_FEATURE, USB_RECIP_DEVICE,
2006 USB_DEVICE_REMOTE_WAKEUP, 0,
2007 NULL, 0,
2008 USB_CTRL_SET_TIMEOUT);
2009 if (status)
2010 dev_dbg(&udev->dev, "won't remote wakeup, status %d\n",
2011 status);
2012 }
2013
2014 /* see 7.1.7.6 */
2015 status = set_port_feature(hub->hdev, port1, USB_PORT_FEAT_SUSPEND);
2016 if (status) {
2017 dev_dbg(hub->intfdev, "can't suspend port %d, status %d\n",
2018 port1, status);
2019 /* paranoia: "should not happen" */
2020 (void) usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
2021 USB_REQ_CLEAR_FEATURE, USB_RECIP_DEVICE,
2022 USB_DEVICE_REMOTE_WAKEUP, 0,
2023 NULL, 0,
2024 USB_CTRL_SET_TIMEOUT);
2025 } else {
2026 /* device has up to 10 msec to fully suspend */
2027 dev_dbg(&udev->dev, "usb %ssuspend\n",
Alan Stern65bfd292008-11-25 16:39:18 -05002028 (msg.event & PM_EVENT_AUTO ? "auto-" : ""));
Alan Stern624d6c02007-05-30 15:35:16 -04002029 usb_set_device_state(udev, USB_STATE_SUSPENDED);
2030 msleep(10);
2031 }
Alan Stern4956ecc2007-05-30 16:51:28 -04002032 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033}
David Brownellf3f32532005-09-22 22:37:29 -07002034
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035/*
David Brownell390a8c32005-09-13 19:57:27 -07002036 * If the USB "suspend" state is in use (rather than "global suspend"),
2037 * many devices will be individually taken out of suspend state using
Alan Stern54515fe2007-05-30 15:38:58 -04002038 * special "resume" signaling. This routine kicks in shortly after
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039 * hardware resume signaling is finished, either because of selective
2040 * resume (by host) or remote wakeup (by device) ... now see what changed
2041 * in the tree that's rooted at this device.
Alan Stern54515fe2007-05-30 15:38:58 -04002042 *
2043 * If @udev->reset_resume is set then the device is reset before the
2044 * status check is done.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045 */
Alan Stern140d8f62006-07-01 22:07:21 -04002046static int finish_port_resume(struct usb_device *udev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047{
Alan Stern54515fe2007-05-30 15:38:58 -04002048 int status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049 u16 devstatus;
2050
2051 /* caller owns the udev device lock */
Wu Fengguangb9cef6c2008-12-15 15:32:01 +08002052 dev_dbg(&udev->dev, "%s\n",
2053 udev->reset_resume ? "finish reset-resume" : "finish resume");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054
2055 /* usb ch9 identifies four variants of SUSPENDED, based on what
2056 * state the device resumes to. Linux currently won't see the
2057 * first two on the host side; they'd be inside hub_port_init()
2058 * during many timeouts, but khubd can't suspend until later.
2059 */
2060 usb_set_device_state(udev, udev->actconfig
2061 ? USB_STATE_CONFIGURED
2062 : USB_STATE_ADDRESS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063
Alan Stern54515fe2007-05-30 15:38:58 -04002064 /* 10.5.4.5 says not to reset a suspended port if the attached
2065 * device is enabled for remote wakeup. Hence the reset
2066 * operation is carried out here, after the port has been
2067 * resumed.
2068 */
2069 if (udev->reset_resume)
Alan Stern86c57ed2008-06-30 11:14:43 -04002070 retry_reset_resume:
Ming Lei742120c2008-06-18 22:00:29 +08002071 status = usb_reset_and_verify_device(udev);
Alan Stern54515fe2007-05-30 15:38:58 -04002072
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073 /* 10.5.4.5 says be sure devices in the tree are still there.
2074 * For now let's assume the device didn't go crazy on resume,
2075 * and device drivers will know about any resume quirks.
2076 */
Alan Stern54515fe2007-05-30 15:38:58 -04002077 if (status == 0) {
Alan Stern46dede42007-08-14 10:56:10 -04002078 devstatus = 0;
Alan Stern54515fe2007-05-30 15:38:58 -04002079 status = usb_get_status(udev, USB_RECIP_DEVICE, 0, &devstatus);
2080 if (status >= 0)
Alan Stern46dede42007-08-14 10:56:10 -04002081 status = (status > 0 ? 0 : -ENODEV);
Alan Stern86c57ed2008-06-30 11:14:43 -04002082
2083 /* If a normal resume failed, try doing a reset-resume */
2084 if (status && !udev->reset_resume && udev->persist_enabled) {
2085 dev_dbg(&udev->dev, "retry with reset-resume\n");
2086 udev->reset_resume = 1;
2087 goto retry_reset_resume;
2088 }
Alan Stern54515fe2007-05-30 15:38:58 -04002089 }
Alan Sternb40b7a92006-06-19 15:12:38 -04002090
Alan Stern624d6c02007-05-30 15:35:16 -04002091 if (status) {
2092 dev_dbg(&udev->dev, "gone after usb resume? status %d\n",
2093 status);
2094 } else if (udev->actconfig) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095 le16_to_cpus(&devstatus);
Alan Stern686314c2007-05-30 15:34:36 -04002096 if (devstatus & (1 << USB_DEVICE_REMOTE_WAKEUP)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097 status = usb_control_msg(udev,
2098 usb_sndctrlpipe(udev, 0),
2099 USB_REQ_CLEAR_FEATURE,
2100 USB_RECIP_DEVICE,
2101 USB_DEVICE_REMOTE_WAKEUP, 0,
2102 NULL, 0,
2103 USB_CTRL_SET_TIMEOUT);
Alan Sterna8e7c562006-07-01 22:11:02 -04002104 if (status)
Wu Fengguangb9cef6c2008-12-15 15:32:01 +08002105 dev_dbg(&udev->dev,
2106 "disable remote wakeup, status %d\n",
2107 status);
Alan Stern4bf0ba82005-11-21 11:58:07 -05002108 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109 status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110 }
2111 return status;
2112}
2113
Alan Stern624d6c02007-05-30 15:35:16 -04002114/*
2115 * usb_port_resume - re-activate a suspended usb device's upstream port
2116 * @udev: device to re-activate, not a root hub
2117 * Context: must be able to sleep; device not locked; pm locks held
2118 *
2119 * This will re-activate the suspended device, increasing power usage
2120 * while letting drivers communicate again with its endpoints.
2121 * USB resume explicitly guarantees that the power session between
2122 * the host and the device is the same as it was when the device
2123 * suspended.
2124 *
Alan Sternfeccc302008-03-03 15:15:59 -05002125 * If @udev->reset_resume is set then this routine won't check that the
2126 * port is still enabled. Furthermore, finish_port_resume() above will
Alan Stern54515fe2007-05-30 15:38:58 -04002127 * reset @udev. The end result is that a broken power session can be
2128 * recovered and @udev will appear to persist across a loss of VBUS power.
2129 *
2130 * For example, if a host controller doesn't maintain VBUS suspend current
2131 * during a system sleep or is reset when the system wakes up, all the USB
2132 * power sessions below it will be broken. This is especially troublesome
2133 * for mass-storage devices containing mounted filesystems, since the
2134 * device will appear to have disconnected and all the memory mappings
2135 * to it will be lost. Using the USB_PERSIST facility, the device can be
2136 * made to appear as if it had not disconnected.
2137 *
Ming Lei742120c2008-06-18 22:00:29 +08002138 * This facility can be dangerous. Although usb_reset_and_verify_device() makes
Alan Sternfeccc302008-03-03 15:15:59 -05002139 * every effort to insure that the same device is present after the
Alan Stern54515fe2007-05-30 15:38:58 -04002140 * reset as before, it cannot provide a 100% guarantee. Furthermore it's
2141 * quite possible for a device to remain unaltered but its media to be
2142 * changed. If the user replaces a flash memory card while the system is
2143 * asleep, he will have only himself to blame when the filesystem on the
2144 * new card is corrupted and the system crashes.
2145 *
Alan Stern624d6c02007-05-30 15:35:16 -04002146 * Returns 0 on success, else negative errno.
2147 */
Alan Stern65bfd292008-11-25 16:39:18 -05002148int usb_port_resume(struct usb_device *udev, pm_message_t msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149{
Alan Stern624d6c02007-05-30 15:35:16 -04002150 struct usb_hub *hub = hdev_to_hub(udev->parent);
2151 int port1 = udev->portnum;
2152 int status;
2153 u16 portchange, portstatus;
Alan Sternd25450c2006-11-20 11:14:30 -05002154
2155 /* Skip the initial Clear-Suspend step for a remote wakeup */
2156 status = hub_port_status(hub, port1, &portstatus, &portchange);
2157 if (status == 0 && !(portstatus & USB_PORT_STAT_SUSPEND))
2158 goto SuspendCleared;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159
2160 // dev_dbg(hub->intfdev, "resume port %d\n", port1);
2161
Alan Sternd5cbad42006-08-11 16:52:39 -04002162 set_bit(port1, hub->busy_bits);
2163
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164 /* see 7.1.7.7; affects power usage, but not budgeting */
2165 status = clear_port_feature(hub->hdev,
2166 port1, USB_PORT_FEAT_SUSPEND);
2167 if (status) {
Alan Stern624d6c02007-05-30 15:35:16 -04002168 dev_dbg(hub->intfdev, "can't resume port %d, status %d\n",
2169 port1, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171 /* drive resume for at least 20 msec */
Alan Stern686314c2007-05-30 15:34:36 -04002172 dev_dbg(&udev->dev, "usb %sresume\n",
Alan Stern65bfd292008-11-25 16:39:18 -05002173 (msg.event & PM_EVENT_AUTO ? "auto-" : ""));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174 msleep(25);
2175
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176 /* Virtual root hubs can trigger on GET_PORT_STATUS to
2177 * stop resume signaling. Then finish the resume
2178 * sequence.
2179 */
Alan Sternd25450c2006-11-20 11:14:30 -05002180 status = hub_port_status(hub, port1, &portstatus, &portchange);
Alan Stern54515fe2007-05-30 15:38:58 -04002181
Alan Sternb01b03f2008-04-28 11:06:11 -04002182 /* TRSMRCY = 10 msec */
2183 msleep(10);
2184 }
Alan Stern54515fe2007-05-30 15:38:58 -04002185
Alan Sternb01b03f2008-04-28 11:06:11 -04002186 SuspendCleared:
2187 if (status == 0) {
2188 if (portchange & USB_PORT_STAT_C_SUSPEND)
2189 clear_port_feature(hub->hdev, port1,
2190 USB_PORT_FEAT_C_SUSPEND);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192
Alan Sternd5cbad42006-08-11 16:52:39 -04002193 clear_bit(port1, hub->busy_bits);
Alan Sternd5cbad42006-08-11 16:52:39 -04002194
Alan Sternb01b03f2008-04-28 11:06:11 -04002195 status = check_port_resume_type(udev,
2196 hub, port1, status, portchange, portstatus);
Alan Stern54515fe2007-05-30 15:38:58 -04002197 if (status == 0)
2198 status = finish_port_resume(udev);
2199 if (status < 0) {
2200 dev_dbg(&udev->dev, "can't resume, status %d\n", status);
2201 hub_port_logical_disconnect(hub, port1);
2202 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203 return status;
2204}
2205
Alan Stern8808f002008-04-28 11:06:55 -04002206/* caller has locked udev */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207static int remote_wakeup(struct usb_device *udev)
2208{
2209 int status = 0;
2210
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211 if (udev->state == USB_STATE_SUSPENDED) {
Alan Stern645daaa2006-08-30 15:47:02 -04002212 dev_dbg(&udev->dev, "usb %sresume\n", "wakeup-");
Alan Stern19410442007-03-27 13:33:59 -04002213 usb_mark_last_busy(udev);
Alan Stern65bfd292008-11-25 16:39:18 -05002214 status = usb_external_resume_device(udev, PMSG_REMOTE_RESUME);
Alan Sternd25450c2006-11-20 11:14:30 -05002215 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216 return status;
2217}
2218
Alan Sternd388dab2006-07-01 22:14:24 -04002219#else /* CONFIG_USB_SUSPEND */
2220
2221/* When CONFIG_USB_SUSPEND isn't set, we never suspend or resume any ports. */
2222
Alan Stern65bfd292008-11-25 16:39:18 -05002223int usb_port_suspend(struct usb_device *udev, pm_message_t msg)
Alan Sternd388dab2006-07-01 22:14:24 -04002224{
2225 return 0;
2226}
2227
Alan Sternb01b03f2008-04-28 11:06:11 -04002228/* However we may need to do a reset-resume */
2229
Alan Stern65bfd292008-11-25 16:39:18 -05002230int usb_port_resume(struct usb_device *udev, pm_message_t msg)
Alan Sternd388dab2006-07-01 22:14:24 -04002231{
Alan Sternb01b03f2008-04-28 11:06:11 -04002232 struct usb_hub *hub = hdev_to_hub(udev->parent);
2233 int port1 = udev->portnum;
2234 int status;
2235 u16 portchange, portstatus;
Alan Stern54515fe2007-05-30 15:38:58 -04002236
Alan Sternb01b03f2008-04-28 11:06:11 -04002237 status = hub_port_status(hub, port1, &portstatus, &portchange);
2238 status = check_port_resume_type(udev,
2239 hub, port1, status, portchange, portstatus);
2240
2241 if (status) {
2242 dev_dbg(&udev->dev, "can't resume, status %d\n", status);
2243 hub_port_logical_disconnect(hub, port1);
2244 } else if (udev->reset_resume) {
Alan Stern54515fe2007-05-30 15:38:58 -04002245 dev_dbg(&udev->dev, "reset-resume\n");
Ming Lei742120c2008-06-18 22:00:29 +08002246 status = usb_reset_and_verify_device(udev);
Alan Stern54515fe2007-05-30 15:38:58 -04002247 }
2248 return status;
Alan Sternd388dab2006-07-01 22:14:24 -04002249}
2250
2251static inline int remote_wakeup(struct usb_device *udev)
2252{
2253 return 0;
2254}
2255
2256#endif
2257
David Brownelldb690872005-09-13 19:56:33 -07002258static int hub_suspend(struct usb_interface *intf, pm_message_t msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259{
2260 struct usb_hub *hub = usb_get_intfdata (intf);
2261 struct usb_device *hdev = hub->hdev;
2262 unsigned port1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263
David Brownellc9f89fa2005-09-13 19:57:04 -07002264 /* fail if children aren't already suspended */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265 for (port1 = 1; port1 <= hdev->maxchild; port1++) {
2266 struct usb_device *udev;
2267
2268 udev = hdev->children [port1-1];
Alan Stern6840d252007-09-10 11:34:26 -04002269 if (udev && udev->can_submit) {
Alan Stern65bfd292008-11-25 16:39:18 -05002270 if (!(msg.event & PM_EVENT_AUTO))
Alan Stern645daaa2006-08-30 15:47:02 -04002271 dev_dbg(&intf->dev, "port %d nyet suspended\n",
2272 port1);
David Brownellc9f89fa2005-09-13 19:57:04 -07002273 return -EBUSY;
2274 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275 }
2276
Harvey Harrison441b62c2008-03-03 16:08:34 -08002277 dev_dbg(&intf->dev, "%s\n", __func__);
Alan Stern40f122f2006-11-09 14:44:33 -05002278
David Brownellc9f89fa2005-09-13 19:57:04 -07002279 /* stop khubd and related activity */
Alan Stern43303542008-04-28 11:07:31 -04002280 hub_quiesce(hub, HUB_SUSPEND);
Alan Sternb6f64362007-05-04 11:51:54 -04002281 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282}
2283
2284static int hub_resume(struct usb_interface *intf)
2285{
Alan Stern5e6effa2008-03-03 15:15:51 -05002286 struct usb_hub *hub = usb_get_intfdata(intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287
Alan Stern5e6effa2008-03-03 15:15:51 -05002288 dev_dbg(&intf->dev, "%s\n", __func__);
Alan Sternf2835212008-04-28 11:07:17 -04002289 hub_activate(hub, HUB_RESUME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290 return 0;
2291}
2292
Alan Sternb41a60e2007-05-30 15:39:33 -04002293static int hub_reset_resume(struct usb_interface *intf)
Alan Sternf07600c2007-05-30 15:38:16 -04002294{
Alan Sternb41a60e2007-05-30 15:39:33 -04002295 struct usb_hub *hub = usb_get_intfdata(intf);
Alan Sternf07600c2007-05-30 15:38:16 -04002296
Alan Stern5e6effa2008-03-03 15:15:51 -05002297 dev_dbg(&intf->dev, "%s\n", __func__);
Alan Sternf2835212008-04-28 11:07:17 -04002298 hub_activate(hub, HUB_RESET_RESUME);
Alan Sternf07600c2007-05-30 15:38:16 -04002299 return 0;
2300}
2301
Alan Stern54515fe2007-05-30 15:38:58 -04002302/**
2303 * usb_root_hub_lost_power - called by HCD if the root hub lost Vbus power
2304 * @rhdev: struct usb_device for the root hub
2305 *
2306 * The USB host controller driver calls this function when its root hub
2307 * is resumed and Vbus power has been interrupted or the controller
Alan Sternfeccc302008-03-03 15:15:59 -05002308 * has been reset. The routine marks @rhdev as having lost power.
2309 * When the hub driver is resumed it will take notice and carry out
2310 * power-session recovery for all the "USB-PERSIST"-enabled child devices;
2311 * the others will be disconnected.
Alan Stern54515fe2007-05-30 15:38:58 -04002312 */
2313void usb_root_hub_lost_power(struct usb_device *rhdev)
2314{
2315 dev_warn(&rhdev->dev, "root hub lost power or was reset\n");
2316 rhdev->reset_resume = 1;
2317}
2318EXPORT_SYMBOL_GPL(usb_root_hub_lost_power);
2319
Alan Sternd388dab2006-07-01 22:14:24 -04002320#else /* CONFIG_PM */
2321
2322static inline int remote_wakeup(struct usb_device *udev)
2323{
2324 return 0;
2325}
2326
Alan Sternf07600c2007-05-30 15:38:16 -04002327#define hub_suspend NULL
2328#define hub_resume NULL
2329#define hub_reset_resume NULL
Alan Sternd388dab2006-07-01 22:14:24 -04002330#endif
2331
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332
2333/* USB 2.0 spec, 7.1.7.3 / fig 7-29:
2334 *
2335 * Between connect detection and reset signaling there must be a delay
2336 * of 100ms at least for debounce and power-settling. The corresponding
2337 * timer shall restart whenever the downstream port detects a disconnect.
2338 *
2339 * Apparently there are some bluetooth and irda-dongles and a number of
2340 * low-speed devices for which this debounce period may last over a second.
2341 * Not covered by the spec - but easy to deal with.
2342 *
2343 * This implementation uses a 1500ms total debounce timeout; if the
2344 * connection isn't stable by then it returns -ETIMEDOUT. It checks
2345 * every 25ms for transient disconnects. When the port status has been
2346 * unchanged for 100ms it returns the port status.
2347 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002348static int hub_port_debounce(struct usb_hub *hub, int port1)
2349{
2350 int ret;
2351 int total_time, stable_time = 0;
2352 u16 portchange, portstatus;
2353 unsigned connection = 0xffff;
2354
2355 for (total_time = 0; ; total_time += HUB_DEBOUNCE_STEP) {
2356 ret = hub_port_status(hub, port1, &portstatus, &portchange);
2357 if (ret < 0)
2358 return ret;
2359
2360 if (!(portchange & USB_PORT_STAT_C_CONNECTION) &&
2361 (portstatus & USB_PORT_STAT_CONNECTION) == connection) {
2362 stable_time += HUB_DEBOUNCE_STEP;
2363 if (stable_time >= HUB_DEBOUNCE_STABLE)
2364 break;
2365 } else {
2366 stable_time = 0;
2367 connection = portstatus & USB_PORT_STAT_CONNECTION;
2368 }
2369
2370 if (portchange & USB_PORT_STAT_C_CONNECTION) {
2371 clear_port_feature(hub->hdev, port1,
2372 USB_PORT_FEAT_C_CONNECTION);
2373 }
2374
2375 if (total_time >= HUB_DEBOUNCE_TIMEOUT)
2376 break;
2377 msleep(HUB_DEBOUNCE_STEP);
2378 }
2379
2380 dev_dbg (hub->intfdev,
2381 "debounce: port %d: total %dms stable %dms status 0x%x\n",
2382 port1, total_time, stable_time, portstatus);
2383
2384 if (stable_time < HUB_DEBOUNCE_STABLE)
2385 return -ETIMEDOUT;
2386 return portstatus;
2387}
2388
Inaky Perez-Gonzalezfc721f52008-04-08 13:24:46 -07002389void usb_ep0_reinit(struct usb_device *udev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390{
2391 usb_disable_endpoint(udev, 0 + USB_DIR_IN);
2392 usb_disable_endpoint(udev, 0 + USB_DIR_OUT);
Alan Sternbdd016b2007-07-30 17:05:22 -04002393 usb_enable_endpoint(udev, &udev->ep0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394}
Inaky Perez-Gonzalezfc721f52008-04-08 13:24:46 -07002395EXPORT_SYMBOL_GPL(usb_ep0_reinit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396
2397#define usb_sndaddr0pipe() (PIPE_CONTROL << 30)
2398#define usb_rcvaddr0pipe() ((PIPE_CONTROL << 30) | USB_DIR_IN)
2399
Alan Stern4326ed02007-07-30 17:08:43 -04002400static int hub_set_address(struct usb_device *udev, int devnum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401{
2402 int retval;
2403
Alan Stern4326ed02007-07-30 17:08:43 -04002404 if (devnum <= 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002405 return -EINVAL;
2406 if (udev->state == USB_STATE_ADDRESS)
2407 return 0;
2408 if (udev->state != USB_STATE_DEFAULT)
2409 return -EINVAL;
2410 retval = usb_control_msg(udev, usb_sndaddr0pipe(),
Alan Stern4326ed02007-07-30 17:08:43 -04002411 USB_REQ_SET_ADDRESS, 0, devnum, 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002412 NULL, 0, USB_CTRL_SET_TIMEOUT);
2413 if (retval == 0) {
David Vrabel4953d142008-04-08 13:24:46 -07002414 /* Device now using proper address. */
2415 update_address(udev, devnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416 usb_set_device_state(udev, USB_STATE_ADDRESS);
Inaky Perez-Gonzalezfc721f52008-04-08 13:24:46 -07002417 usb_ep0_reinit(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002418 }
2419 return retval;
2420}
2421
2422/* Reset device, (re)assign address, get device descriptor.
2423 * Device connection must be stable, no more debouncing needed.
2424 * Returns device in USB_STATE_ADDRESS, except on error.
2425 *
2426 * If this is called for an already-existing device (as part of
Ming Lei742120c2008-06-18 22:00:29 +08002427 * usb_reset_and_verify_device), the caller must own the device lock. For a
Linus Torvalds1da177e2005-04-16 15:20:36 -07002428 * newly detected device that is not accessible through any global
2429 * pointers, it's not necessary to lock the device.
2430 */
2431static int
2432hub_port_init (struct usb_hub *hub, struct usb_device *udev, int port1,
2433 int retry_counter)
2434{
Arjan van de Ven4186ecf2006-01-11 15:55:29 +01002435 static DEFINE_MUTEX(usb_address0_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436
2437 struct usb_device *hdev = hub->hdev;
2438 int i, j, retval;
2439 unsigned delay = HUB_SHORT_RESET_TIME;
2440 enum usb_device_speed oldspeed = udev->speed;
Inaky Perez-Gonzalez83a07192006-08-25 19:35:31 -07002441 char *speed, *type;
Alan Stern4326ed02007-07-30 17:08:43 -04002442 int devnum = udev->devnum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443
2444 /* root hub ports have a slightly longer reset period
2445 * (from USB 2.0 spec, section 7.1.7.5)
2446 */
2447 if (!hdev->parent) {
2448 delay = HUB_ROOT_RESET_TIME;
2449 if (port1 == hdev->bus->otg_port)
2450 hdev->bus->b_hnp_enable = 0;
2451 }
2452
2453 /* Some low speed devices have problems with the quick delay, so */
2454 /* be a bit pessimistic with those devices. RHbug #23670 */
2455 if (oldspeed == USB_SPEED_LOW)
2456 delay = HUB_LONG_RESET_TIME;
2457
Arjan van de Ven4186ecf2006-01-11 15:55:29 +01002458 mutex_lock(&usb_address0_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459
2460 /* Reset the device; full speed may morph to high speed */
2461 retval = hub_port_reset(hub, port1, udev, delay);
2462 if (retval < 0) /* error or disconnect */
2463 goto fail;
2464 /* success, speed is known */
2465 retval = -ENODEV;
2466
2467 if (oldspeed != USB_SPEED_UNKNOWN && oldspeed != udev->speed) {
2468 dev_dbg(&udev->dev, "device reset changed speed!\n");
2469 goto fail;
2470 }
2471 oldspeed = udev->speed;
Alan Stern4326ed02007-07-30 17:08:43 -04002472
Linus Torvalds1da177e2005-04-16 15:20:36 -07002473 /* USB 2.0 section 5.5.3 talks about ep0 maxpacket ...
2474 * it's fixed size except for full speed devices.
Inaky Perez-Gonzalez5bb6e0a2006-08-25 19:35:30 -07002475 * For Wireless USB devices, ep0 max packet is always 512 (tho
2476 * reported as 0xff in the device descriptor). WUSB1.0[4.8.1].
Linus Torvalds1da177e2005-04-16 15:20:36 -07002477 */
2478 switch (udev->speed) {
Inaky Perez-Gonzalez5bb6e0a2006-08-25 19:35:30 -07002479 case USB_SPEED_VARIABLE: /* fixed at 512 */
2480 udev->ep0.desc.wMaxPacketSize = __constant_cpu_to_le16(512);
2481 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002482 case USB_SPEED_HIGH: /* fixed at 64 */
2483 udev->ep0.desc.wMaxPacketSize = __constant_cpu_to_le16(64);
2484 break;
2485 case USB_SPEED_FULL: /* 8, 16, 32, or 64 */
2486 /* to determine the ep0 maxpacket size, try to read
2487 * the device descriptor to get bMaxPacketSize0 and
2488 * then correct our initial guess.
2489 */
2490 udev->ep0.desc.wMaxPacketSize = __constant_cpu_to_le16(64);
2491 break;
2492 case USB_SPEED_LOW: /* fixed at 8 */
2493 udev->ep0.desc.wMaxPacketSize = __constant_cpu_to_le16(8);
2494 break;
2495 default:
2496 goto fail;
2497 }
2498
Inaky Perez-Gonzalez83a07192006-08-25 19:35:31 -07002499 type = "";
2500 switch (udev->speed) {
2501 case USB_SPEED_LOW: speed = "low"; break;
2502 case USB_SPEED_FULL: speed = "full"; break;
2503 case USB_SPEED_HIGH: speed = "high"; break;
2504 case USB_SPEED_VARIABLE:
2505 speed = "variable";
2506 type = "Wireless ";
2507 break;
2508 default: speed = "?"; break;
2509 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510 dev_info (&udev->dev,
Inaky Perez-Gonzalez83a07192006-08-25 19:35:31 -07002511 "%s %s speed %sUSB device using %s and address %d\n",
2512 (udev->config) ? "reset" : "new", speed, type,
Alan Stern4326ed02007-07-30 17:08:43 -04002513 udev->bus->controller->driver->name, devnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514
2515 /* Set up TT records, if needed */
2516 if (hdev->tt) {
2517 udev->tt = hdev->tt;
2518 udev->ttport = hdev->ttport;
2519 } else if (udev->speed != USB_SPEED_HIGH
2520 && hdev->speed == USB_SPEED_HIGH) {
2521 udev->tt = &hub->tt;
2522 udev->ttport = port1;
2523 }
2524
2525 /* Why interleave GET_DESCRIPTOR and SET_ADDRESS this way?
2526 * Because device hardware and firmware is sometimes buggy in
2527 * this area, and this is how Linux has done it for ages.
2528 * Change it cautiously.
2529 *
2530 * NOTE: If USE_NEW_SCHEME() is true we will start by issuing
2531 * a 64-byte GET_DESCRIPTOR request. This is what Windows does,
2532 * so it may help with some non-standards-compliant devices.
2533 * Otherwise we start with SET_ADDRESS and then try to read the
2534 * first 8 bytes of the device descriptor to get the ep0 maxpacket
2535 * value.
2536 */
2537 for (i = 0; i < GET_DESCRIPTOR_TRIES; (++i, msleep(100))) {
2538 if (USE_NEW_SCHEME(retry_counter)) {
2539 struct usb_device_descriptor *buf;
2540 int r = 0;
2541
2542#define GET_DESCRIPTOR_BUFSIZE 64
2543 buf = kmalloc(GET_DESCRIPTOR_BUFSIZE, GFP_NOIO);
2544 if (!buf) {
2545 retval = -ENOMEM;
2546 continue;
2547 }
2548
Alan Sternb89ee192007-05-11 10:19:04 -04002549 /* Retry on all errors; some devices are flakey.
2550 * 255 is for WUSB devices, we actually need to use
2551 * 512 (WUSB1.0[4.8.1]).
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552 */
2553 for (j = 0; j < 3; ++j) {
2554 buf->bMaxPacketSize0 = 0;
2555 r = usb_control_msg(udev, usb_rcvaddr0pipe(),
2556 USB_REQ_GET_DESCRIPTOR, USB_DIR_IN,
2557 USB_DT_DEVICE << 8, 0,
2558 buf, GET_DESCRIPTOR_BUFSIZE,
Jaroslav Kyselafd7c5192008-10-10 16:24:45 +02002559 initial_descriptor_timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002560 switch (buf->bMaxPacketSize0) {
Inaky Perez-Gonzalez5bb6e0a2006-08-25 19:35:30 -07002561 case 8: case 16: case 32: case 64: case 255:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562 if (buf->bDescriptorType ==
2563 USB_DT_DEVICE) {
2564 r = 0;
2565 break;
2566 }
2567 /* FALL THROUGH */
2568 default:
2569 if (r == 0)
2570 r = -EPROTO;
2571 break;
2572 }
2573 if (r == 0)
2574 break;
2575 }
2576 udev->descriptor.bMaxPacketSize0 =
2577 buf->bMaxPacketSize0;
2578 kfree(buf);
2579
2580 retval = hub_port_reset(hub, port1, udev, delay);
2581 if (retval < 0) /* error or disconnect */
2582 goto fail;
2583 if (oldspeed != udev->speed) {
2584 dev_dbg(&udev->dev,
2585 "device reset changed speed!\n");
2586 retval = -ENODEV;
2587 goto fail;
2588 }
2589 if (r) {
Wu Fengguangb9cef6c2008-12-15 15:32:01 +08002590 dev_err(&udev->dev,
2591 "device descriptor read/64, error %d\n",
2592 r);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002593 retval = -EMSGSIZE;
2594 continue;
2595 }
2596#undef GET_DESCRIPTOR_BUFSIZE
2597 }
2598
Inaky Perez-Gonzalez6c529cd2008-04-08 13:24:46 -07002599 /*
2600 * If device is WUSB, we already assigned an
2601 * unauthorized address in the Connect Ack sequence;
2602 * authorization will assign the final address.
2603 */
2604 if (udev->wusb == 0) {
2605 for (j = 0; j < SET_ADDRESS_TRIES; ++j) {
2606 retval = hub_set_address(udev, devnum);
2607 if (retval >= 0)
2608 break;
2609 msleep(200);
2610 }
2611 if (retval < 0) {
2612 dev_err(&udev->dev,
2613 "device not accepting address %d, error %d\n",
2614 devnum, retval);
2615 goto fail;
2616 }
2617
2618 /* cope with hardware quirkiness:
2619 * - let SET_ADDRESS settle, some device hardware wants it
2620 * - read ep0 maxpacket even for high and low speed,
2621 */
2622 msleep(10);
2623 if (USE_NEW_SCHEME(retry_counter))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002624 break;
Inaky Perez-Gonzalez6c529cd2008-04-08 13:24:46 -07002625 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002626
2627 retval = usb_get_device_descriptor(udev, 8);
2628 if (retval < 8) {
Wu Fengguangb9cef6c2008-12-15 15:32:01 +08002629 dev_err(&udev->dev,
2630 "device descriptor read/8, error %d\n",
2631 retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002632 if (retval >= 0)
2633 retval = -EMSGSIZE;
2634 } else {
2635 retval = 0;
2636 break;
2637 }
2638 }
2639 if (retval)
2640 goto fail;
2641
Inaky Perez-Gonzalez6c529cd2008-04-08 13:24:46 -07002642 i = udev->descriptor.bMaxPacketSize0 == 0xff? /* wusb device? */
Inaky Perez-Gonzalez5bb6e0a2006-08-25 19:35:30 -07002643 512 : udev->descriptor.bMaxPacketSize0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002644 if (le16_to_cpu(udev->ep0.desc.wMaxPacketSize) != i) {
2645 if (udev->speed != USB_SPEED_FULL ||
2646 !(i == 8 || i == 16 || i == 32 || i == 64)) {
2647 dev_err(&udev->dev, "ep0 maxpacket = %d\n", i);
2648 retval = -EMSGSIZE;
2649 goto fail;
2650 }
2651 dev_dbg(&udev->dev, "ep0 maxpacket = %d\n", i);
2652 udev->ep0.desc.wMaxPacketSize = cpu_to_le16(i);
Inaky Perez-Gonzalezfc721f52008-04-08 13:24:46 -07002653 usb_ep0_reinit(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002654 }
2655
2656 retval = usb_get_device_descriptor(udev, USB_DT_DEVICE_SIZE);
2657 if (retval < (signed)sizeof(udev->descriptor)) {
Wu Fengguangb9cef6c2008-12-15 15:32:01 +08002658 dev_err(&udev->dev, "device descriptor read/all, error %d\n",
2659 retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660 if (retval >= 0)
2661 retval = -ENOMSG;
2662 goto fail;
2663 }
2664
2665 retval = 0;
2666
2667fail:
Alan Stern4326ed02007-07-30 17:08:43 -04002668 if (retval) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669 hub_port_disable(hub, port1, 0);
David Vrabel4953d142008-04-08 13:24:46 -07002670 update_address(udev, devnum); /* for disconnect processing */
Alan Stern4326ed02007-07-30 17:08:43 -04002671 }
Arjan van de Ven4186ecf2006-01-11 15:55:29 +01002672 mutex_unlock(&usb_address0_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002673 return retval;
2674}
2675
2676static void
2677check_highspeed (struct usb_hub *hub, struct usb_device *udev, int port1)
2678{
2679 struct usb_qualifier_descriptor *qual;
2680 int status;
2681
Christoph Lametere94b1762006-12-06 20:33:17 -08002682 qual = kmalloc (sizeof *qual, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683 if (qual == NULL)
2684 return;
2685
2686 status = usb_get_descriptor (udev, USB_DT_DEVICE_QUALIFIER, 0,
2687 qual, sizeof *qual);
2688 if (status == sizeof *qual) {
2689 dev_info(&udev->dev, "not running at top speed; "
2690 "connect to a high speed hub\n");
2691 /* hub LEDs are probably harder to miss than syslog */
2692 if (hub->has_indicators) {
2693 hub->indicator[port1-1] = INDICATOR_GREEN_BLINK;
David Howellsc4028952006-11-22 14:57:56 +00002694 schedule_delayed_work (&hub->leds, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002695 }
2696 }
Jesper Juhl1bc3c9e2005-04-18 17:39:34 -07002697 kfree(qual);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002698}
2699
2700static unsigned
2701hub_power_remaining (struct usb_hub *hub)
2702{
2703 struct usb_device *hdev = hub->hdev;
2704 int remaining;
Alan Stern55c52712005-11-23 12:03:12 -05002705 int port1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002706
Alan Stern55c52712005-11-23 12:03:12 -05002707 if (!hub->limited_power)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002708 return 0;
2709
Alan Stern55c52712005-11-23 12:03:12 -05002710 remaining = hdev->bus_mA - hub->descriptor->bHubContrCurrent;
2711 for (port1 = 1; port1 <= hdev->maxchild; ++port1) {
2712 struct usb_device *udev = hdev->children[port1 - 1];
2713 int delta;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002714
2715 if (!udev)
2716 continue;
2717
Alan Stern55c52712005-11-23 12:03:12 -05002718 /* Unconfigured devices may not use more than 100mA,
2719 * or 8mA for OTG ports */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002720 if (udev->actconfig)
Alan Stern55c52712005-11-23 12:03:12 -05002721 delta = udev->actconfig->desc.bMaxPower * 2;
2722 else if (port1 != udev->bus->otg_port || hdev->parent)
2723 delta = 100;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002724 else
Alan Stern55c52712005-11-23 12:03:12 -05002725 delta = 8;
2726 if (delta > hub->mA_per_port)
Wu Fengguangb9cef6c2008-12-15 15:32:01 +08002727 dev_warn(&udev->dev,
2728 "%dmA is over %umA budget for port %d!\n",
2729 delta, hub->mA_per_port, port1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002730 remaining -= delta;
2731 }
2732 if (remaining < 0) {
Alan Stern55c52712005-11-23 12:03:12 -05002733 dev_warn(hub->intfdev, "%dmA over power budget!\n",
2734 - remaining);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002735 remaining = 0;
2736 }
2737 return remaining;
2738}
2739
2740/* Handle physical or logical connection change events.
2741 * This routine is called when:
2742 * a port connection-change occurs;
2743 * a port enable-change occurs (often caused by EMI);
Ming Lei742120c2008-06-18 22:00:29 +08002744 * usb_reset_and_verify_device() encounters changed descriptors (as from
Linus Torvalds1da177e2005-04-16 15:20:36 -07002745 * a firmware download)
2746 * caller already locked the hub
2747 */
2748static void hub_port_connect_change(struct usb_hub *hub, int port1,
2749 u16 portstatus, u16 portchange)
2750{
2751 struct usb_device *hdev = hub->hdev;
2752 struct device *hub_dev = hub->intfdev;
Balaji Rao90da0962007-11-22 01:58:14 +05302753 struct usb_hcd *hcd = bus_to_hcd(hdev->bus);
Alan Stern24618b02008-04-28 11:06:28 -04002754 unsigned wHubCharacteristics =
2755 le16_to_cpu(hub->descriptor->wHubCharacteristics);
Alan Stern8808f002008-04-28 11:06:55 -04002756 struct usb_device *udev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002757 int status, i;
Alan Stern24618b02008-04-28 11:06:28 -04002758
Linus Torvalds1da177e2005-04-16 15:20:36 -07002759 dev_dbg (hub_dev,
2760 "port %d, status %04x, change %04x, %s\n",
2761 port1, portstatus, portchange, portspeed (portstatus));
2762
2763 if (hub->has_indicators) {
2764 set_port_led(hub, port1, HUB_LED_AUTO);
2765 hub->indicator[port1-1] = INDICATOR_AUTO;
2766 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002767
2768#ifdef CONFIG_USB_OTG
2769 /* during HNP, don't repeat the debounce */
2770 if (hdev->bus->is_b_host)
Alan Stern24618b02008-04-28 11:06:28 -04002771 portchange &= ~(USB_PORT_STAT_C_CONNECTION |
2772 USB_PORT_STAT_C_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002773#endif
2774
Alan Stern8808f002008-04-28 11:06:55 -04002775 /* Try to resuscitate an existing device */
2776 udev = hdev->children[port1-1];
2777 if ((portstatus & USB_PORT_STAT_CONNECTION) && udev &&
2778 udev->state != USB_STATE_NOTATTACHED) {
Alan Stern8808f002008-04-28 11:06:55 -04002779 usb_lock_device(udev);
2780 if (portstatus & USB_PORT_STAT_ENABLE) {
2781 status = 0; /* Nothing to do */
Alan Stern8808f002008-04-28 11:06:55 -04002782
2783#ifdef CONFIG_USB_SUSPEND
Alan Stern5257d972008-09-22 14:43:08 -04002784 } else if (udev->state == USB_STATE_SUSPENDED &&
2785 udev->persist_enabled) {
Alan Stern8808f002008-04-28 11:06:55 -04002786 /* For a suspended device, treat this as a
2787 * remote wakeup event.
2788 */
2789 if (udev->do_remote_wakeup)
2790 status = remote_wakeup(udev);
2791
2792 /* Otherwise leave it be; devices can't tell the
2793 * difference between suspended and disabled.
2794 */
2795 else
2796 status = 0;
2797#endif
2798
2799 } else {
Alan Stern5257d972008-09-22 14:43:08 -04002800 status = -ENODEV; /* Don't resuscitate */
Alan Stern8808f002008-04-28 11:06:55 -04002801 }
2802 usb_unlock_device(udev);
2803
2804 if (status == 0) {
2805 clear_bit(port1, hub->change_bits);
2806 return;
2807 }
2808 }
2809
Alan Stern24618b02008-04-28 11:06:28 -04002810 /* Disconnect any existing devices under this port */
Alan Stern8808f002008-04-28 11:06:55 -04002811 if (udev)
Alan Stern24618b02008-04-28 11:06:28 -04002812 usb_disconnect(&hdev->children[port1-1]);
2813 clear_bit(port1, hub->change_bits);
2814
Alan Stern5257d972008-09-22 14:43:08 -04002815 if (portchange & (USB_PORT_STAT_C_CONNECTION |
2816 USB_PORT_STAT_C_ENABLE)) {
2817 status = hub_port_debounce(hub, port1);
2818 if (status < 0) {
2819 if (printk_ratelimit())
2820 dev_err(hub_dev, "connect-debounce failed, "
2821 "port %d disabled\n", port1);
2822 portstatus &= ~USB_PORT_STAT_CONNECTION;
2823 } else {
2824 portstatus = status;
2825 }
2826 }
2827
Alan Stern24618b02008-04-28 11:06:28 -04002828 /* Return now if debouncing failed or nothing is connected */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002829 if (!(portstatus & USB_PORT_STAT_CONNECTION)) {
2830
2831 /* maybe switch power back on (e.g. root hub was reset) */
Greg Kroah-Hartman74ad9bd2005-06-20 21:15:16 -07002832 if ((wHubCharacteristics & HUB_CHAR_LPSM) < 2
Linus Torvalds1da177e2005-04-16 15:20:36 -07002833 && !(portstatus & (1 << USB_PORT_FEAT_POWER)))
2834 set_port_feature(hdev, port1, USB_PORT_FEAT_POWER);
Alan Stern5257d972008-09-22 14:43:08 -04002835
Linus Torvalds1da177e2005-04-16 15:20:36 -07002836 if (portstatus & USB_PORT_STAT_ENABLE)
2837 goto done;
2838 return;
2839 }
2840
Linus Torvalds1da177e2005-04-16 15:20:36 -07002841 for (i = 0; i < SET_CONFIG_TRIES; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002842
2843 /* reallocate for each attempt, since references
2844 * to the previous one can escape in various ways
2845 */
2846 udev = usb_alloc_dev(hdev, hdev->bus, port1);
2847 if (!udev) {
2848 dev_err (hub_dev,
2849 "couldn't allocate port %d usb_device\n",
2850 port1);
2851 goto done;
2852 }
2853
2854 usb_set_device_state(udev, USB_STATE_POWERED);
2855 udev->speed = USB_SPEED_UNKNOWN;
Alan Stern55c52712005-11-23 12:03:12 -05002856 udev->bus_mA = hub->mA_per_port;
Alan Sternb6956ff2006-08-30 15:46:48 -04002857 udev->level = hdev->level + 1;
Inaky Perez-Gonzalez8af548d2008-04-08 13:24:46 -07002858 udev->wusb = hub_is_wusb(hub);
Alan Stern55c52712005-11-23 12:03:12 -05002859
Linus Torvalds1da177e2005-04-16 15:20:36 -07002860 /* set the address */
2861 choose_address(udev);
2862 if (udev->devnum <= 0) {
2863 status = -ENOTCONN; /* Don't retry */
2864 goto loop;
2865 }
2866
2867 /* reset and get descriptor */
2868 status = hub_port_init(hub, udev, port1, i);
2869 if (status < 0)
2870 goto loop;
2871
2872 /* consecutive bus-powered hubs aren't reliable; they can
2873 * violate the voltage drop budget. if the new child has
2874 * a "powered" LED, users should notice we didn't enable it
2875 * (without reading syslog), even without per-port LEDs
2876 * on the parent.
2877 */
2878 if (udev->descriptor.bDeviceClass == USB_CLASS_HUB
Alan Stern55c52712005-11-23 12:03:12 -05002879 && udev->bus_mA <= 100) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002880 u16 devstat;
2881
2882 status = usb_get_status(udev, USB_RECIP_DEVICE, 0,
2883 &devstat);
Alan Stern55c52712005-11-23 12:03:12 -05002884 if (status < 2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002885 dev_dbg(&udev->dev, "get status %d ?\n", status);
2886 goto loop_disable;
2887 }
Alan Stern55c52712005-11-23 12:03:12 -05002888 le16_to_cpus(&devstat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002889 if ((devstat & (1 << USB_DEVICE_SELF_POWERED)) == 0) {
2890 dev_err(&udev->dev,
2891 "can't connect bus-powered hub "
2892 "to this port\n");
2893 if (hub->has_indicators) {
2894 hub->indicator[port1-1] =
2895 INDICATOR_AMBER_BLINK;
David Howellsc4028952006-11-22 14:57:56 +00002896 schedule_delayed_work (&hub->leds, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002897 }
2898 status = -ENOTCONN; /* Don't retry */
2899 goto loop_disable;
2900 }
2901 }
2902
2903 /* check for devices running slower than they could */
2904 if (le16_to_cpu(udev->descriptor.bcdUSB) >= 0x0200
2905 && udev->speed == USB_SPEED_FULL
2906 && highspeed_hubs != 0)
2907 check_highspeed (hub, udev, port1);
2908
2909 /* Store the parent's children[] pointer. At this point
2910 * udev becomes globally accessible, although presumably
2911 * no one will look at it until hdev is unlocked.
2912 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002913 status = 0;
2914
2915 /* We mustn't add new devices if the parent hub has
2916 * been disconnected; we would race with the
2917 * recursively_mark_NOTATTACHED() routine.
2918 */
2919 spin_lock_irq(&device_state_lock);
2920 if (hdev->state == USB_STATE_NOTATTACHED)
2921 status = -ENOTCONN;
2922 else
2923 hdev->children[port1-1] = udev;
2924 spin_unlock_irq(&device_state_lock);
2925
2926 /* Run it through the hoops (find a driver, etc) */
2927 if (!status) {
2928 status = usb_new_device(udev);
2929 if (status) {
2930 spin_lock_irq(&device_state_lock);
2931 hdev->children[port1-1] = NULL;
2932 spin_unlock_irq(&device_state_lock);
2933 }
2934 }
2935
Linus Torvalds1da177e2005-04-16 15:20:36 -07002936 if (status)
2937 goto loop_disable;
2938
2939 status = hub_power_remaining(hub);
2940 if (status)
Alan Stern55c52712005-11-23 12:03:12 -05002941 dev_dbg(hub_dev, "%dmA power budget left\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002942
2943 return;
2944
2945loop_disable:
2946 hub_port_disable(hub, port1, 1);
2947loop:
Inaky Perez-Gonzalezfc721f52008-04-08 13:24:46 -07002948 usb_ep0_reinit(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002949 release_address(udev);
2950 usb_put_dev(udev);
Vikram Panditaffcdc182007-05-25 21:31:07 -07002951 if ((status == -ENOTCONN) || (status == -ENOTSUPP))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002952 break;
2953 }
Alan Stern3a311552008-05-20 16:58:29 -04002954 if (hub->hdev->parent ||
2955 !hcd->driver->port_handed_over ||
2956 !(hcd->driver->port_handed_over)(hcd, port1))
2957 dev_err(hub_dev, "unable to enumerate USB device on port %d\n",
2958 port1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002959
2960done:
2961 hub_port_disable(hub, port1, 1);
Balaji Rao90da0962007-11-22 01:58:14 +05302962 if (hcd->driver->relinquish_port && !hub->hdev->parent)
2963 hcd->driver->relinquish_port(hcd, port1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002964}
2965
2966static void hub_events(void)
2967{
2968 struct list_head *tmp;
2969 struct usb_device *hdev;
2970 struct usb_interface *intf;
2971 struct usb_hub *hub;
2972 struct device *hub_dev;
2973 u16 hubstatus;
2974 u16 hubchange;
2975 u16 portstatus;
2976 u16 portchange;
2977 int i, ret;
2978 int connect_change;
2979
2980 /*
2981 * We restart the list every time to avoid a deadlock with
2982 * deleting hubs downstream from this one. This should be
2983 * safe since we delete the hub from the event list.
2984 * Not the most efficient, but avoids deadlocks.
2985 */
2986 while (1) {
2987
2988 /* Grab the first entry at the beginning of the list */
2989 spin_lock_irq(&hub_event_lock);
2990 if (list_empty(&hub_event_list)) {
2991 spin_unlock_irq(&hub_event_lock);
2992 break;
2993 }
2994
2995 tmp = hub_event_list.next;
2996 list_del_init(tmp);
2997
2998 hub = list_entry(tmp, struct usb_hub, event_list);
Alan Sterne8054852007-05-04 11:55:11 -04002999 kref_get(&hub->kref);
3000 spin_unlock_irq(&hub_event_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003001
Alan Sterne8054852007-05-04 11:55:11 -04003002 hdev = hub->hdev;
3003 hub_dev = hub->intfdev;
3004 intf = to_usb_interface(hub_dev);
Alan Stern40f122f2006-11-09 14:44:33 -05003005 dev_dbg(hub_dev, "state %d ports %d chg %04x evt %04x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003006 hdev->state, hub->descriptor
3007 ? hub->descriptor->bNbrPorts
3008 : 0,
3009 /* NOTE: expects max 15 ports... */
3010 (u16) hub->change_bits[0],
Alan Stern40f122f2006-11-09 14:44:33 -05003011 (u16) hub->event_bits[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003012
Linus Torvalds1da177e2005-04-16 15:20:36 -07003013 /* Lock the device, then check to see if we were
3014 * disconnected while waiting for the lock to succeed. */
Alan Stern06b84e82007-05-04 11:54:50 -04003015 usb_lock_device(hdev);
Alan Sterne8054852007-05-04 11:55:11 -04003016 if (unlikely(hub->disconnected))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003017 goto loop;
3018
3019 /* If the hub has died, clean up after it */
3020 if (hdev->state == USB_STATE_NOTATTACHED) {
Alan Stern7de18d82006-06-01 13:37:24 -04003021 hub->error = -ENODEV;
Alan Stern43303542008-04-28 11:07:31 -04003022 hub_quiesce(hub, HUB_DISCONNECT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003023 goto loop;
3024 }
3025
Alan Stern40f122f2006-11-09 14:44:33 -05003026 /* Autoresume */
3027 ret = usb_autopm_get_interface(intf);
3028 if (ret) {
3029 dev_dbg(hub_dev, "Can't autoresume: %d\n", ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003030 goto loop;
Alan Stern40f122f2006-11-09 14:44:33 -05003031 }
3032
3033 /* If this is an inactive hub, do nothing */
3034 if (hub->quiescing)
3035 goto loop_autopm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003036
3037 if (hub->error) {
3038 dev_dbg (hub_dev, "resetting for error %d\n",
3039 hub->error);
3040
Ming Lei742120c2008-06-18 22:00:29 +08003041 ret = usb_reset_device(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003042 if (ret) {
3043 dev_dbg (hub_dev,
3044 "error resetting hub: %d\n", ret);
Alan Stern40f122f2006-11-09 14:44:33 -05003045 goto loop_autopm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003046 }
3047
3048 hub->nerrors = 0;
3049 hub->error = 0;
3050 }
3051
3052 /* deal with port status changes */
3053 for (i = 1; i <= hub->descriptor->bNbrPorts; i++) {
3054 if (test_bit(i, hub->busy_bits))
3055 continue;
3056 connect_change = test_bit(i, hub->change_bits);
3057 if (!test_and_clear_bit(i, hub->event_bits) &&
Alan Stern6ee0b272008-04-28 11:06:42 -04003058 !connect_change)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003059 continue;
3060
3061 ret = hub_port_status(hub, i,
3062 &portstatus, &portchange);
3063 if (ret < 0)
3064 continue;
3065
Linus Torvalds1da177e2005-04-16 15:20:36 -07003066 if (portchange & USB_PORT_STAT_C_CONNECTION) {
3067 clear_port_feature(hdev, i,
3068 USB_PORT_FEAT_C_CONNECTION);
3069 connect_change = 1;
3070 }
3071
3072 if (portchange & USB_PORT_STAT_C_ENABLE) {
3073 if (!connect_change)
3074 dev_dbg (hub_dev,
3075 "port %d enable change, "
3076 "status %08x\n",
3077 i, portstatus);
3078 clear_port_feature(hdev, i,
3079 USB_PORT_FEAT_C_ENABLE);
3080
3081 /*
3082 * EM interference sometimes causes badly
3083 * shielded USB devices to be shutdown by
3084 * the hub, this hack enables them again.
3085 * Works at least with mouse driver.
3086 */
3087 if (!(portstatus & USB_PORT_STAT_ENABLE)
3088 && !connect_change
3089 && hdev->children[i-1]) {
3090 dev_err (hub_dev,
3091 "port %i "
3092 "disabled by hub (EMI?), "
3093 "re-enabling...\n",
3094 i);
3095 connect_change = 1;
3096 }
3097 }
3098
3099 if (portchange & USB_PORT_STAT_C_SUSPEND) {
Alan Stern8808f002008-04-28 11:06:55 -04003100 struct usb_device *udev;
3101
Linus Torvalds1da177e2005-04-16 15:20:36 -07003102 clear_port_feature(hdev, i,
3103 USB_PORT_FEAT_C_SUSPEND);
Alan Stern8808f002008-04-28 11:06:55 -04003104 udev = hdev->children[i-1];
3105 if (udev) {
3106 usb_lock_device(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003107 ret = remote_wakeup(hdev->
3108 children[i-1]);
Alan Stern8808f002008-04-28 11:06:55 -04003109 usb_unlock_device(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003110 if (ret < 0)
3111 connect_change = 1;
3112 } else {
3113 ret = -ENODEV;
3114 hub_port_disable(hub, i, 1);
3115 }
3116 dev_dbg (hub_dev,
3117 "resume on port %d, status %d\n",
3118 i, ret);
3119 }
3120
3121 if (portchange & USB_PORT_STAT_C_OVERCURRENT) {
3122 dev_err (hub_dev,
3123 "over-current change on port %d\n",
3124 i);
3125 clear_port_feature(hdev, i,
3126 USB_PORT_FEAT_C_OVER_CURRENT);
Alan Stern8520f382008-09-22 14:44:26 -04003127 hub_power_on(hub, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003128 }
3129
3130 if (portchange & USB_PORT_STAT_C_RESET) {
3131 dev_dbg (hub_dev,
3132 "reset change on port %d\n",
3133 i);
3134 clear_port_feature(hdev, i,
3135 USB_PORT_FEAT_C_RESET);
3136 }
3137
3138 if (connect_change)
3139 hub_port_connect_change(hub, i,
3140 portstatus, portchange);
3141 } /* end for i */
3142
3143 /* deal with hub status changes */
3144 if (test_and_clear_bit(0, hub->event_bits) == 0)
3145 ; /* do nothing */
3146 else if (hub_hub_status(hub, &hubstatus, &hubchange) < 0)
3147 dev_err (hub_dev, "get_hub_status failed\n");
3148 else {
3149 if (hubchange & HUB_CHANGE_LOCAL_POWER) {
3150 dev_dbg (hub_dev, "power change\n");
3151 clear_hub_feature(hdev, C_HUB_LOCAL_POWER);
Alan Stern55c52712005-11-23 12:03:12 -05003152 if (hubstatus & HUB_STATUS_LOCAL_POWER)
3153 /* FIXME: Is this always true? */
Alan Stern55c52712005-11-23 12:03:12 -05003154 hub->limited_power = 1;
jidong xiao403fae72007-09-14 00:08:51 +08003155 else
3156 hub->limited_power = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003157 }
3158 if (hubchange & HUB_CHANGE_OVERCURRENT) {
3159 dev_dbg (hub_dev, "overcurrent change\n");
3160 msleep(500); /* Cool down */
3161 clear_hub_feature(hdev, C_HUB_OVER_CURRENT);
Alan Stern8520f382008-09-22 14:44:26 -04003162 hub_power_on(hub, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003163 }
3164 }
3165
Alan Stern40f122f2006-11-09 14:44:33 -05003166loop_autopm:
3167 /* Allow autosuspend if we're not going to run again */
3168 if (list_empty(&hub->event_list))
3169 usb_autopm_enable(intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003170loop:
3171 usb_unlock_device(hdev);
Alan Sterne8054852007-05-04 11:55:11 -04003172 kref_put(&hub->kref, hub_release);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003173
3174 } /* end while (1) */
3175}
3176
3177static int hub_thread(void *__unused)
3178{
Alan Stern3bb1af52008-03-03 15:15:36 -05003179 /* khubd needs to be freezable to avoid intefering with USB-PERSIST
3180 * port handover. Otherwise it might see that a full-speed device
3181 * was gone before the EHCI controller had handed its port over to
3182 * the companion full-speed controller.
3183 */
Rafael J. Wysocki83144182007-07-17 04:03:35 -07003184 set_freezable();
Alan Stern3bb1af52008-03-03 15:15:36 -05003185
Linus Torvalds1da177e2005-04-16 15:20:36 -07003186 do {
3187 hub_events();
Rafael J. Wysockie42837b2007-10-18 03:04:45 -07003188 wait_event_freezable(khubd_wait,
akpm@osdl.org9c8d6172005-06-20 14:29:58 -07003189 !list_empty(&hub_event_list) ||
3190 kthread_should_stop());
akpm@osdl.org9c8d6172005-06-20 14:29:58 -07003191 } while (!kthread_should_stop() || !list_empty(&hub_event_list));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003192
akpm@osdl.org9c8d6172005-06-20 14:29:58 -07003193 pr_debug("%s: khubd exiting\n", usbcore_name);
3194 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003195}
3196
3197static struct usb_device_id hub_id_table [] = {
3198 { .match_flags = USB_DEVICE_ID_MATCH_DEV_CLASS,
3199 .bDeviceClass = USB_CLASS_HUB},
3200 { .match_flags = USB_DEVICE_ID_MATCH_INT_CLASS,
3201 .bInterfaceClass = USB_CLASS_HUB},
3202 { } /* Terminating entry */
3203};
3204
3205MODULE_DEVICE_TABLE (usb, hub_id_table);
3206
3207static struct usb_driver hub_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003208 .name = "hub",
3209 .probe = hub_probe,
3210 .disconnect = hub_disconnect,
3211 .suspend = hub_suspend,
3212 .resume = hub_resume,
Alan Sternf07600c2007-05-30 15:38:16 -04003213 .reset_resume = hub_reset_resume,
Alan Stern7de18d82006-06-01 13:37:24 -04003214 .pre_reset = hub_pre_reset,
3215 .post_reset = hub_post_reset,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003216 .ioctl = hub_ioctl,
3217 .id_table = hub_id_table,
Alan Stern40f122f2006-11-09 14:44:33 -05003218 .supports_autosuspend = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003219};
3220
3221int usb_hub_init(void)
3222{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003223 if (usb_register(&hub_driver) < 0) {
3224 printk(KERN_ERR "%s: can't register hub driver\n",
3225 usbcore_name);
3226 return -1;
3227 }
3228
akpm@osdl.org9c8d6172005-06-20 14:29:58 -07003229 khubd_task = kthread_run(hub_thread, NULL, "khubd");
3230 if (!IS_ERR(khubd_task))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003231 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003232
3233 /* Fall through if kernel_thread failed */
3234 usb_deregister(&hub_driver);
3235 printk(KERN_ERR "%s: can't start khubd\n", usbcore_name);
3236
3237 return -1;
3238}
3239
3240void usb_hub_cleanup(void)
3241{
akpm@osdl.org9c8d6172005-06-20 14:29:58 -07003242 kthread_stop(khubd_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003243
3244 /*
3245 * Hub resources are freed for us by usb_deregister. It calls
3246 * usb_driver_purge on every device which in turn calls that
3247 * devices disconnect function if it is using this driver.
3248 * The hub_disconnect function takes care of releasing the
3249 * individual hub resources. -greg
3250 */
3251 usb_deregister(&hub_driver);
3252} /* usb_hub_cleanup() */
3253
Alan Sterneb764c42008-03-03 15:16:04 -05003254static int descriptors_changed(struct usb_device *udev,
3255 struct usb_device_descriptor *old_device_descriptor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003256{
Alan Sterneb764c42008-03-03 15:16:04 -05003257 int changed = 0;
3258 unsigned index;
3259 unsigned serial_len = 0;
3260 unsigned len;
3261 unsigned old_length;
3262 int length;
3263 char *buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003264
Alan Sterneb764c42008-03-03 15:16:04 -05003265 if (memcmp(&udev->descriptor, old_device_descriptor,
3266 sizeof(*old_device_descriptor)) != 0)
3267 return 1;
3268
3269 /* Since the idVendor, idProduct, and bcdDevice values in the
3270 * device descriptor haven't changed, we will assume the
3271 * Manufacturer and Product strings haven't changed either.
3272 * But the SerialNumber string could be different (e.g., a
3273 * different flash card of the same brand).
3274 */
3275 if (udev->serial)
3276 serial_len = strlen(udev->serial) + 1;
3277
3278 len = serial_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003279 for (index = 0; index < udev->descriptor.bNumConfigurations; index++) {
Alan Sterneb764c42008-03-03 15:16:04 -05003280 old_length = le16_to_cpu(udev->config[index].desc.wTotalLength);
3281 len = max(len, old_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003282 }
Alan Sterneb764c42008-03-03 15:16:04 -05003283
Oliver Neukum0cc1a512008-01-10 10:31:48 +01003284 buf = kmalloc(len, GFP_NOIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003285 if (buf == NULL) {
3286 dev_err(&udev->dev, "no mem to re-read configs after reset\n");
3287 /* assume the worst */
3288 return 1;
3289 }
3290 for (index = 0; index < udev->descriptor.bNumConfigurations; index++) {
Alan Sterneb764c42008-03-03 15:16:04 -05003291 old_length = le16_to_cpu(udev->config[index].desc.wTotalLength);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003292 length = usb_get_descriptor(udev, USB_DT_CONFIG, index, buf,
3293 old_length);
Alan Sterneb764c42008-03-03 15:16:04 -05003294 if (length != old_length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003295 dev_dbg(&udev->dev, "config index %d, error %d\n",
3296 index, length);
Alan Sterneb764c42008-03-03 15:16:04 -05003297 changed = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003298 break;
3299 }
3300 if (memcmp (buf, udev->rawdescriptors[index], old_length)
3301 != 0) {
3302 dev_dbg(&udev->dev, "config index %d changed (#%d)\n",
Alan Sterneb764c42008-03-03 15:16:04 -05003303 index,
3304 ((struct usb_config_descriptor *) buf)->
3305 bConfigurationValue);
3306 changed = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003307 break;
3308 }
3309 }
Alan Sterneb764c42008-03-03 15:16:04 -05003310
3311 if (!changed && serial_len) {
3312 length = usb_string(udev, udev->descriptor.iSerialNumber,
3313 buf, serial_len);
3314 if (length + 1 != serial_len) {
3315 dev_dbg(&udev->dev, "serial string error %d\n",
3316 length);
3317 changed = 1;
3318 } else if (memcmp(buf, udev->serial, length) != 0) {
3319 dev_dbg(&udev->dev, "serial string changed\n");
3320 changed = 1;
3321 }
3322 }
3323
Linus Torvalds1da177e2005-04-16 15:20:36 -07003324 kfree(buf);
Alan Sterneb764c42008-03-03 15:16:04 -05003325 return changed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003326}
3327
3328/**
Ming Lei742120c2008-06-18 22:00:29 +08003329 * usb_reset_and_verify_device - perform a USB port reset to reinitialize a device
Linus Torvalds1da177e2005-04-16 15:20:36 -07003330 * @udev: device to reset (not in SUSPENDED or NOTATTACHED state)
3331 *
Alan Stern79efa092006-06-01 13:33:42 -04003332 * WARNING - don't use this routine to reset a composite device
3333 * (one with multiple interfaces owned by separate drivers)!
Ming Lei742120c2008-06-18 22:00:29 +08003334 * Use usb_reset_device() instead.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003335 *
3336 * Do a port reset, reassign the device's address, and establish its
3337 * former operating configuration. If the reset fails, or the device's
3338 * descriptors change from their values before the reset, or the original
3339 * configuration and altsettings cannot be restored, a flag will be set
3340 * telling khubd to pretend the device has been disconnected and then
3341 * re-connected. All drivers will be unbound, and the device will be
3342 * re-enumerated and probed all over again.
3343 *
3344 * Returns 0 if the reset succeeded, -ENODEV if the device has been
3345 * flagged for logical disconnection, or some other negative error code
3346 * if the reset wasn't even attempted.
3347 *
3348 * The caller must own the device lock. For example, it's safe to use
3349 * this from a driver probe() routine after downloading new firmware.
3350 * For calls that might not occur during probe(), drivers should lock
3351 * the device using usb_lock_device_for_reset().
Alan Stern6bc6cff2007-05-04 11:53:03 -04003352 *
3353 * Locking exception: This routine may also be called from within an
3354 * autoresume handler. Such usage won't conflict with other tasks
3355 * holding the device lock because these tasks should always call
3356 * usb_autopm_resume_device(), thereby preventing any unwanted autoresume.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003357 */
Ming Lei742120c2008-06-18 22:00:29 +08003358static int usb_reset_and_verify_device(struct usb_device *udev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003359{
3360 struct usb_device *parent_hdev = udev->parent;
3361 struct usb_hub *parent_hub;
3362 struct usb_device_descriptor descriptor = udev->descriptor;
Alan Stern12c3da32005-11-23 12:09:52 -05003363 int i, ret = 0;
3364 int port1 = udev->portnum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003365
3366 if (udev->state == USB_STATE_NOTATTACHED ||
3367 udev->state == USB_STATE_SUSPENDED) {
3368 dev_dbg(&udev->dev, "device reset not allowed in state %d\n",
3369 udev->state);
3370 return -EINVAL;
3371 }
3372
3373 if (!parent_hdev) {
3374 /* this requires hcd-specific logic; see OHCI hc_restart() */
Harvey Harrison441b62c2008-03-03 16:08:34 -08003375 dev_dbg(&udev->dev, "%s for root hub!\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003376 return -EISDIR;
3377 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003378 parent_hub = hdev_to_hub(parent_hdev);
3379
Linus Torvalds1da177e2005-04-16 15:20:36 -07003380 set_bit(port1, parent_hub->busy_bits);
3381 for (i = 0; i < SET_CONFIG_TRIES; ++i) {
3382
3383 /* ep0 maxpacket size may change; let the HCD know about it.
3384 * Other endpoints will be handled by re-enumeration. */
Inaky Perez-Gonzalezfc721f52008-04-08 13:24:46 -07003385 usb_ep0_reinit(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003386 ret = hub_port_init(parent_hub, udev, port1, i);
Alan Sterndd4dd192007-05-04 11:55:54 -04003387 if (ret >= 0 || ret == -ENOTCONN || ret == -ENODEV)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003388 break;
3389 }
3390 clear_bit(port1, parent_hub->busy_bits);
Alan Sternd5cbad42006-08-11 16:52:39 -04003391
Linus Torvalds1da177e2005-04-16 15:20:36 -07003392 if (ret < 0)
3393 goto re_enumerate;
3394
3395 /* Device might have changed firmware (DFU or similar) */
Alan Sterneb764c42008-03-03 15:16:04 -05003396 if (descriptors_changed(udev, &descriptor)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003397 dev_info(&udev->dev, "device firmware changed\n");
3398 udev->descriptor = descriptor; /* for disconnect() calls */
3399 goto re_enumerate;
3400 }
3401
3402 if (!udev->actconfig)
3403 goto done;
3404
3405 ret = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
3406 USB_REQ_SET_CONFIGURATION, 0,
3407 udev->actconfig->desc.bConfigurationValue, 0,
3408 NULL, 0, USB_CTRL_SET_TIMEOUT);
3409 if (ret < 0) {
3410 dev_err(&udev->dev,
3411 "can't restore configuration #%d (error=%d)\n",
3412 udev->actconfig->desc.bConfigurationValue, ret);
3413 goto re_enumerate;
3414 }
3415 usb_set_device_state(udev, USB_STATE_CONFIGURED);
3416
3417 for (i = 0; i < udev->actconfig->desc.bNumInterfaces; i++) {
3418 struct usb_interface *intf = udev->actconfig->interface[i];
3419 struct usb_interface_descriptor *desc;
3420
3421 /* set_interface resets host side toggle even
3422 * for altsetting zero. the interface may have no driver.
3423 */
3424 desc = &intf->cur_altsetting->desc;
3425 ret = usb_set_interface(udev, desc->bInterfaceNumber,
3426 desc->bAlternateSetting);
3427 if (ret < 0) {
3428 dev_err(&udev->dev, "failed to restore interface %d "
3429 "altsetting %d (error=%d)\n",
3430 desc->bInterfaceNumber,
3431 desc->bAlternateSetting,
3432 ret);
3433 goto re_enumerate;
3434 }
3435 }
3436
3437done:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003438 return 0;
3439
3440re_enumerate:
3441 hub_port_logical_disconnect(parent_hub, port1);
3442 return -ENODEV;
3443}
Alan Stern79efa092006-06-01 13:33:42 -04003444
3445/**
Ming Lei742120c2008-06-18 22:00:29 +08003446 * usb_reset_device - warn interface drivers and perform a USB port reset
Alan Stern79efa092006-06-01 13:33:42 -04003447 * @udev: device to reset (not in SUSPENDED or NOTATTACHED state)
Alan Stern79efa092006-06-01 13:33:42 -04003448 *
3449 * Warns all drivers bound to registered interfaces (using their pre_reset
3450 * method), performs the port reset, and then lets the drivers know that
3451 * the reset is over (using their post_reset method).
3452 *
Ming Lei742120c2008-06-18 22:00:29 +08003453 * Return value is the same as for usb_reset_and_verify_device().
Alan Stern79efa092006-06-01 13:33:42 -04003454 *
3455 * The caller must own the device lock. For example, it's safe to use
3456 * this from a driver probe() routine after downloading new firmware.
3457 * For calls that might not occur during probe(), drivers should lock
3458 * the device using usb_lock_device_for_reset().
Alan Stern78d9a482008-06-23 16:00:40 -04003459 *
3460 * If an interface is currently being probed or disconnected, we assume
3461 * its driver knows how to handle resets. For all other interfaces,
3462 * if the driver doesn't have pre_reset and post_reset methods then
3463 * we attempt to unbind it and rebind afterward.
Alan Stern79efa092006-06-01 13:33:42 -04003464 */
Ming Lei742120c2008-06-18 22:00:29 +08003465int usb_reset_device(struct usb_device *udev)
Alan Stern79efa092006-06-01 13:33:42 -04003466{
3467 int ret;
Alan Stern852c4b42007-12-03 15:44:29 -05003468 int i;
Alan Stern79efa092006-06-01 13:33:42 -04003469 struct usb_host_config *config = udev->actconfig;
3470
3471 if (udev->state == USB_STATE_NOTATTACHED ||
3472 udev->state == USB_STATE_SUSPENDED) {
3473 dev_dbg(&udev->dev, "device reset not allowed in state %d\n",
3474 udev->state);
3475 return -EINVAL;
3476 }
3477
Alan Stern645daaa2006-08-30 15:47:02 -04003478 /* Prevent autosuspend during the reset */
Alan Stern94fcda12006-11-20 11:38:46 -05003479 usb_autoresume_device(udev);
Alan Stern645daaa2006-08-30 15:47:02 -04003480
Alan Stern79efa092006-06-01 13:33:42 -04003481 if (config) {
Alan Stern79efa092006-06-01 13:33:42 -04003482 for (i = 0; i < config->desc.bNumInterfaces; ++i) {
Alan Stern852c4b42007-12-03 15:44:29 -05003483 struct usb_interface *cintf = config->interface[i];
3484 struct usb_driver *drv;
Alan Stern78d9a482008-06-23 16:00:40 -04003485 int unbind = 0;
Alan Stern852c4b42007-12-03 15:44:29 -05003486
3487 if (cintf->dev.driver) {
Alan Stern79efa092006-06-01 13:33:42 -04003488 drv = to_usb_driver(cintf->dev.driver);
Alan Stern78d9a482008-06-23 16:00:40 -04003489 if (drv->pre_reset && drv->post_reset)
3490 unbind = (drv->pre_reset)(cintf);
3491 else if (cintf->condition ==
3492 USB_INTERFACE_BOUND)
3493 unbind = 1;
3494 if (unbind)
3495 usb_forced_unbind_intf(cintf);
Alan Stern79efa092006-06-01 13:33:42 -04003496 }
3497 }
3498 }
3499
Ming Lei742120c2008-06-18 22:00:29 +08003500 ret = usb_reset_and_verify_device(udev);
Alan Stern79efa092006-06-01 13:33:42 -04003501
3502 if (config) {
Alan Stern79efa092006-06-01 13:33:42 -04003503 for (i = config->desc.bNumInterfaces - 1; i >= 0; --i) {
Alan Stern852c4b42007-12-03 15:44:29 -05003504 struct usb_interface *cintf = config->interface[i];
3505 struct usb_driver *drv;
Alan Stern78d9a482008-06-23 16:00:40 -04003506 int rebind = cintf->needs_binding;
Alan Stern852c4b42007-12-03 15:44:29 -05003507
Alan Stern78d9a482008-06-23 16:00:40 -04003508 if (!rebind && cintf->dev.driver) {
Alan Stern79efa092006-06-01 13:33:42 -04003509 drv = to_usb_driver(cintf->dev.driver);
3510 if (drv->post_reset)
Alan Stern78d9a482008-06-23 16:00:40 -04003511 rebind = (drv->post_reset)(cintf);
3512 else if (cintf->condition ==
3513 USB_INTERFACE_BOUND)
3514 rebind = 1;
Alan Stern79efa092006-06-01 13:33:42 -04003515 }
Alan Stern6c640942008-10-21 15:40:03 -04003516 if (ret == 0 && rebind)
Alan Stern78d9a482008-06-23 16:00:40 -04003517 usb_rebind_intf(cintf);
Alan Stern79efa092006-06-01 13:33:42 -04003518 }
3519 }
3520
Alan Stern94fcda12006-11-20 11:38:46 -05003521 usb_autosuspend_device(udev);
Alan Stern79efa092006-06-01 13:33:42 -04003522 return ret;
3523}
Ming Lei742120c2008-06-18 22:00:29 +08003524EXPORT_SYMBOL_GPL(usb_reset_device);
Inaky Perez-Gonzalezdc023dc2008-11-13 10:31:35 -08003525
3526
3527/**
3528 * usb_queue_reset_device - Reset a USB device from an atomic context
3529 * @iface: USB interface belonging to the device to reset
3530 *
3531 * This function can be used to reset a USB device from an atomic
3532 * context, where usb_reset_device() won't work (as it blocks).
3533 *
3534 * Doing a reset via this method is functionally equivalent to calling
3535 * usb_reset_device(), except for the fact that it is delayed to a
3536 * workqueue. This means that any drivers bound to other interfaces
3537 * might be unbound, as well as users from usbfs in user space.
3538 *
3539 * Corner cases:
3540 *
3541 * - Scheduling two resets at the same time from two different drivers
3542 * attached to two different interfaces of the same device is
3543 * possible; depending on how the driver attached to each interface
3544 * handles ->pre_reset(), the second reset might happen or not.
3545 *
3546 * - If a driver is unbound and it had a pending reset, the reset will
3547 * be cancelled.
3548 *
3549 * - This function can be called during .probe() or .disconnect()
3550 * times. On return from .disconnect(), any pending resets will be
3551 * cancelled.
3552 *
3553 * There is no no need to lock/unlock the @reset_ws as schedule_work()
3554 * does its own.
3555 *
3556 * NOTE: We don't do any reference count tracking because it is not
3557 * needed. The lifecycle of the work_struct is tied to the
3558 * usb_interface. Before destroying the interface we cancel the
3559 * work_struct, so the fact that work_struct is queued and or
3560 * running means the interface (and thus, the device) exist and
3561 * are referenced.
3562 */
3563void usb_queue_reset_device(struct usb_interface *iface)
3564{
3565 schedule_work(&iface->reset_ws);
3566}
3567EXPORT_SYMBOL_GPL(usb_queue_reset_device);