blob: 054a76dc5d5be49ca2c248e7c1b788effd96e729 [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 Stern1bb5f662006-11-06 11:56:13 -050080};
81
82
Linus Torvalds1da177e2005-04-16 15:20:36 -070083/* Protect struct usb_device->state and ->children members
Alan Stern9ad3d6c2005-11-17 17:10:32 -050084 * Note: Both are also protected by ->dev.sem, except that ->state can
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 * change to USB_STATE_NOTATTACHED even when the semaphore isn't held. */
86static DEFINE_SPINLOCK(device_state_lock);
87
88/* khubd's worklist and its lock */
89static DEFINE_SPINLOCK(hub_event_lock);
90static LIST_HEAD(hub_event_list); /* List of hubs needing servicing */
91
92/* Wakes up khubd */
93static DECLARE_WAIT_QUEUE_HEAD(khubd_wait);
94
akpm@osdl.org9c8d6172005-06-20 14:29:58 -070095static struct task_struct *khubd_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
97/* cycle leds on hubs that aren't blinking for attention */
98static int blinkenlights = 0;
99module_param (blinkenlights, bool, S_IRUGO);
100MODULE_PARM_DESC (blinkenlights, "true to cycle leds on hubs");
101
102/*
103 * As of 2.6.10 we introduce a new USB device initialization scheme which
104 * closely resembles the way Windows works. Hopefully it will be compatible
105 * with a wider range of devices than the old scheme. However some previously
106 * working devices may start giving rise to "device not accepting address"
107 * errors; if that happens the user can try the old scheme by adjusting the
108 * following module parameters.
109 *
110 * For maximum flexibility there are two boolean parameters to control the
111 * hub driver's behavior. On the first initialization attempt, if the
112 * "old_scheme_first" parameter is set then the old scheme will be used,
113 * otherwise the new scheme is used. If that fails and "use_both_schemes"
114 * is set, then the driver will make another attempt, using the other scheme.
115 */
116static int old_scheme_first = 0;
117module_param(old_scheme_first, bool, S_IRUGO | S_IWUSR);
118MODULE_PARM_DESC(old_scheme_first,
119 "start with the old device initialization scheme");
120
121static int use_both_schemes = 1;
122module_param(use_both_schemes, bool, S_IRUGO | S_IWUSR);
123MODULE_PARM_DESC(use_both_schemes,
124 "try the other device initialization scheme if the "
125 "first one fails");
126
Alan Stern32fe0192007-10-10 16:27:07 -0400127/* Mutual exclusion for EHCI CF initialization. This interferes with
128 * port reset on some companion controllers.
129 */
130DECLARE_RWSEM(ehci_cf_port_reset_rwsem);
131EXPORT_SYMBOL_GPL(ehci_cf_port_reset_rwsem);
132
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
Dan Williams404d5b12007-04-26 00:12:10 -0700134static inline char *portspeed(int portstatus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135{
136 if (portstatus & (1 << USB_PORT_FEAT_HIGHSPEED))
137 return "480 Mb/s";
138 else if (portstatus & (1 << USB_PORT_FEAT_LOWSPEED))
139 return "1.5 Mb/s";
140 else
141 return "12 Mb/s";
142}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
144/* Note that hdev or one of its children must be locked! */
145static inline struct usb_hub *hdev_to_hub(struct usb_device *hdev)
146{
147 return usb_get_intfdata(hdev->actconfig->interface[0]);
148}
149
150/* USB 2.0 spec Section 11.24.4.5 */
151static int get_hub_descriptor(struct usb_device *hdev, void *data, int size)
152{
153 int i, ret;
154
155 for (i = 0; i < 3; i++) {
156 ret = usb_control_msg(hdev, usb_rcvctrlpipe(hdev, 0),
157 USB_REQ_GET_DESCRIPTOR, USB_DIR_IN | USB_RT_HUB,
158 USB_DT_HUB << 8, 0, data, size,
159 USB_CTRL_GET_TIMEOUT);
160 if (ret >= (USB_DT_HUB_NONVAR_SIZE + 2))
161 return ret;
162 }
163 return -EINVAL;
164}
165
166/*
167 * USB 2.0 spec Section 11.24.2.1
168 */
169static int clear_hub_feature(struct usb_device *hdev, int feature)
170{
171 return usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
172 USB_REQ_CLEAR_FEATURE, USB_RT_HUB, feature, 0, NULL, 0, 1000);
173}
174
175/*
176 * USB 2.0 spec Section 11.24.2.2
177 */
178static int clear_port_feature(struct usb_device *hdev, int port1, int feature)
179{
180 return usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
181 USB_REQ_CLEAR_FEATURE, USB_RT_PORT, feature, port1,
182 NULL, 0, 1000);
183}
184
185/*
186 * USB 2.0 spec Section 11.24.2.13
187 */
188static int set_port_feature(struct usb_device *hdev, int port1, int feature)
189{
190 return usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
191 USB_REQ_SET_FEATURE, USB_RT_PORT, feature, port1,
192 NULL, 0, 1000);
193}
194
195/*
196 * USB 2.0 spec Section 11.24.2.7.1.10 and table 11-7
197 * for info about using port indicators
198 */
199static void set_port_led(
200 struct usb_hub *hub,
201 int port1,
202 int selector
203)
204{
205 int status = set_port_feature(hub->hdev, (selector << 8) | port1,
206 USB_PORT_FEAT_INDICATOR);
207 if (status < 0)
208 dev_dbg (hub->intfdev,
209 "port %d indicator %s status %d\n",
210 port1,
211 ({ char *s; switch (selector) {
212 case HUB_LED_AMBER: s = "amber"; break;
213 case HUB_LED_GREEN: s = "green"; break;
214 case HUB_LED_OFF: s = "off"; break;
215 case HUB_LED_AUTO: s = "auto"; break;
216 default: s = "??"; break;
217 }; s; }),
218 status);
219}
220
221#define LED_CYCLE_PERIOD ((2*HZ)/3)
222
David Howellsc4028952006-11-22 14:57:56 +0000223static void led_work (struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224{
David Howellsc4028952006-11-22 14:57:56 +0000225 struct usb_hub *hub =
226 container_of(work, struct usb_hub, leds.work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 struct usb_device *hdev = hub->hdev;
228 unsigned i;
229 unsigned changed = 0;
230 int cursor = -1;
231
232 if (hdev->state != USB_STATE_CONFIGURED || hub->quiescing)
233 return;
234
235 for (i = 0; i < hub->descriptor->bNbrPorts; i++) {
236 unsigned selector, mode;
237
238 /* 30%-50% duty cycle */
239
240 switch (hub->indicator[i]) {
241 /* cycle marker */
242 case INDICATOR_CYCLE:
243 cursor = i;
244 selector = HUB_LED_AUTO;
245 mode = INDICATOR_AUTO;
246 break;
247 /* blinking green = sw attention */
248 case INDICATOR_GREEN_BLINK:
249 selector = HUB_LED_GREEN;
250 mode = INDICATOR_GREEN_BLINK_OFF;
251 break;
252 case INDICATOR_GREEN_BLINK_OFF:
253 selector = HUB_LED_OFF;
254 mode = INDICATOR_GREEN_BLINK;
255 break;
256 /* blinking amber = hw attention */
257 case INDICATOR_AMBER_BLINK:
258 selector = HUB_LED_AMBER;
259 mode = INDICATOR_AMBER_BLINK_OFF;
260 break;
261 case INDICATOR_AMBER_BLINK_OFF:
262 selector = HUB_LED_OFF;
263 mode = INDICATOR_AMBER_BLINK;
264 break;
265 /* blink green/amber = reserved */
266 case INDICATOR_ALT_BLINK:
267 selector = HUB_LED_GREEN;
268 mode = INDICATOR_ALT_BLINK_OFF;
269 break;
270 case INDICATOR_ALT_BLINK_OFF:
271 selector = HUB_LED_AMBER;
272 mode = INDICATOR_ALT_BLINK;
273 break;
274 default:
275 continue;
276 }
277 if (selector != HUB_LED_AUTO)
278 changed = 1;
279 set_port_led(hub, i + 1, selector);
280 hub->indicator[i] = mode;
281 }
282 if (!changed && blinkenlights) {
283 cursor++;
284 cursor %= hub->descriptor->bNbrPorts;
285 set_port_led(hub, cursor + 1, HUB_LED_GREEN);
286 hub->indicator[cursor] = INDICATOR_CYCLE;
287 changed++;
288 }
289 if (changed)
290 schedule_delayed_work(&hub->leds, LED_CYCLE_PERIOD);
291}
292
293/* use a short timeout for hub/port status fetches */
294#define USB_STS_TIMEOUT 1000
295#define USB_STS_RETRIES 5
296
297/*
298 * USB 2.0 spec Section 11.24.2.6
299 */
300static int get_hub_status(struct usb_device *hdev,
301 struct usb_hub_status *data)
302{
303 int i, status = -ETIMEDOUT;
304
305 for (i = 0; i < USB_STS_RETRIES && status == -ETIMEDOUT; i++) {
306 status = usb_control_msg(hdev, usb_rcvctrlpipe(hdev, 0),
307 USB_REQ_GET_STATUS, USB_DIR_IN | USB_RT_HUB, 0, 0,
308 data, sizeof(*data), USB_STS_TIMEOUT);
309 }
310 return status;
311}
312
313/*
314 * USB 2.0 spec Section 11.24.2.7
315 */
316static int get_port_status(struct usb_device *hdev, int port1,
317 struct usb_port_status *data)
318{
319 int i, status = -ETIMEDOUT;
320
321 for (i = 0; i < USB_STS_RETRIES && status == -ETIMEDOUT; i++) {
322 status = usb_control_msg(hdev, usb_rcvctrlpipe(hdev, 0),
323 USB_REQ_GET_STATUS, USB_DIR_IN | USB_RT_PORT, 0, port1,
324 data, sizeof(*data), USB_STS_TIMEOUT);
325 }
326 return status;
327}
328
Alan Stern3eb14912008-03-03 15:15:43 -0500329static int hub_port_status(struct usb_hub *hub, int port1,
330 u16 *status, u16 *change)
331{
332 int ret;
333
334 mutex_lock(&hub->status_mutex);
335 ret = get_port_status(hub->hdev, port1, &hub->status->port);
336 if (ret < 4) {
337 dev_err(hub->intfdev,
338 "%s failed (err = %d)\n", __func__, ret);
339 if (ret >= 0)
340 ret = -EIO;
341 } else {
342 *status = le16_to_cpu(hub->status->port.wPortStatus);
343 *change = le16_to_cpu(hub->status->port.wPortChange);
344 ret = 0;
345 }
346 mutex_unlock(&hub->status_mutex);
347 return ret;
348}
349
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350static void kick_khubd(struct usb_hub *hub)
351{
352 unsigned long flags;
353
Alan Stern40f122f2006-11-09 14:44:33 -0500354 /* Suppress autosuspend until khubd runs */
355 to_usb_interface(hub->intfdev)->pm_usage_cnt = 1;
356
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 spin_lock_irqsave(&hub_event_lock, flags);
Roel Kluin2e2c5ee2007-10-26 23:54:35 +0200358 if (!hub->disconnected && list_empty(&hub->event_list)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 list_add_tail(&hub->event_list, &hub_event_list);
360 wake_up(&khubd_wait);
361 }
362 spin_unlock_irqrestore(&hub_event_lock, flags);
363}
364
365void usb_kick_khubd(struct usb_device *hdev)
366{
Alan Sterne8054852007-05-04 11:55:11 -0400367 /* FIXME: What if hdev isn't bound to the hub driver? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 kick_khubd(hdev_to_hub(hdev));
369}
370
371
372/* completion function, fires on port status changes and various faults */
David Howells7d12e782006-10-05 14:55:46 +0100373static void hub_irq(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374{
Tobias Klauserec17cf12006-09-13 21:38:41 +0200375 struct usb_hub *hub = urb->context;
Alan Sterne0152682007-08-24 15:42:52 -0400376 int status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 int i;
378 unsigned long bits;
379
Alan Sterne0152682007-08-24 15:42:52 -0400380 switch (status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 case -ENOENT: /* synchronous unlink */
382 case -ECONNRESET: /* async unlink */
383 case -ESHUTDOWN: /* hardware going away */
384 return;
385
386 default: /* presumably an error */
387 /* Cause a hub reset after 10 consecutive errors */
Alan Sterne0152682007-08-24 15:42:52 -0400388 dev_dbg (hub->intfdev, "transfer --> %d\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 if ((++hub->nerrors < 10) || hub->error)
390 goto resubmit;
Alan Sterne0152682007-08-24 15:42:52 -0400391 hub->error = status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 /* FALL THROUGH */
Tobias Klauserec17cf12006-09-13 21:38:41 +0200393
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 /* let khubd handle things */
395 case 0: /* we got data: port status changed */
396 bits = 0;
397 for (i = 0; i < urb->actual_length; ++i)
398 bits |= ((unsigned long) ((*hub->buffer)[i]))
399 << (i*8);
400 hub->event_bits[0] = bits;
401 break;
402 }
403
404 hub->nerrors = 0;
405
406 /* Something happened, let khubd figure it out */
407 kick_khubd(hub);
408
409resubmit:
410 if (hub->quiescing)
411 return;
412
413 if ((status = usb_submit_urb (hub->urb, GFP_ATOMIC)) != 0
414 && status != -ENODEV && status != -EPERM)
415 dev_err (hub->intfdev, "resubmit --> %d\n", status);
416}
417
418/* USB 2.0 spec Section 11.24.2.3 */
419static inline int
420hub_clear_tt_buffer (struct usb_device *hdev, u16 devinfo, u16 tt)
421{
422 return usb_control_msg(hdev, usb_rcvctrlpipe(hdev, 0),
423 HUB_CLEAR_TT_BUFFER, USB_RT_PORT, devinfo,
424 tt, NULL, 0, 1000);
425}
426
427/*
428 * enumeration blocks khubd for a long time. we use keventd instead, since
429 * long blocking there is the exception, not the rule. accordingly, HCDs
430 * talking to TTs must queue control transfers (not just bulk and iso), so
431 * both can talk to the same hub concurrently.
432 */
David Howellsc4028952006-11-22 14:57:56 +0000433static void hub_tt_kevent (struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434{
David Howellsc4028952006-11-22 14:57:56 +0000435 struct usb_hub *hub =
436 container_of(work, struct usb_hub, tt.kevent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 unsigned long flags;
Mark Lord55e5fdf2007-05-14 19:48:02 -0400438 int limit = 100;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439
440 spin_lock_irqsave (&hub->tt.lock, flags);
Mark Lord55e5fdf2007-05-14 19:48:02 -0400441 while (--limit && !list_empty (&hub->tt.clear_list)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 struct list_head *temp;
443 struct usb_tt_clear *clear;
444 struct usb_device *hdev = hub->hdev;
445 int status;
446
447 temp = hub->tt.clear_list.next;
448 clear = list_entry (temp, struct usb_tt_clear, clear_list);
449 list_del (&clear->clear_list);
450
451 /* drop lock so HCD can concurrently report other TT errors */
452 spin_unlock_irqrestore (&hub->tt.lock, flags);
453 status = hub_clear_tt_buffer (hdev, clear->devinfo, clear->tt);
454 spin_lock_irqsave (&hub->tt.lock, flags);
455
456 if (status)
457 dev_err (&hdev->dev,
458 "clear tt %d (%04x) error %d\n",
459 clear->tt, clear->devinfo, status);
Jesper Juhl1bc3c9e2005-04-18 17:39:34 -0700460 kfree(clear);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 }
462 spin_unlock_irqrestore (&hub->tt.lock, flags);
463}
464
465/**
466 * usb_hub_tt_clear_buffer - clear control/bulk TT state in high speed hub
467 * @udev: the device whose split transaction failed
468 * @pipe: identifies the endpoint of the failed transaction
469 *
470 * High speed HCDs use this to tell the hub driver that some split control or
471 * bulk transaction failed in a way that requires clearing internal state of
472 * a transaction translator. This is normally detected (and reported) from
473 * interrupt context.
474 *
475 * It may not be possible for that hub to handle additional full (or low)
476 * speed transactions until that state is fully cleared out.
477 */
478void usb_hub_tt_clear_buffer (struct usb_device *udev, int pipe)
479{
480 struct usb_tt *tt = udev->tt;
481 unsigned long flags;
482 struct usb_tt_clear *clear;
483
484 /* we've got to cope with an arbitrary number of pending TT clears,
485 * since each TT has "at least two" buffers that can need it (and
486 * there can be many TTs per hub). even if they're uncommon.
487 */
Christoph Lameter54e6ecb2006-12-06 20:33:16 -0800488 if ((clear = kmalloc (sizeof *clear, GFP_ATOMIC)) == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 dev_err (&udev->dev, "can't save CLEAR_TT_BUFFER state\n");
490 /* FIXME recover somehow ... RESET_TT? */
491 return;
492 }
493
494 /* info that CLEAR_TT_BUFFER needs */
495 clear->tt = tt->multi ? udev->ttport : 1;
496 clear->devinfo = usb_pipeendpoint (pipe);
497 clear->devinfo |= udev->devnum << 4;
498 clear->devinfo |= usb_pipecontrol (pipe)
499 ? (USB_ENDPOINT_XFER_CONTROL << 11)
500 : (USB_ENDPOINT_XFER_BULK << 11);
501 if (usb_pipein (pipe))
502 clear->devinfo |= 1 << 15;
503
504 /* tell keventd to clear state for this TT */
505 spin_lock_irqsave (&tt->lock, flags);
506 list_add_tail (&clear->clear_list, &tt->clear_list);
507 schedule_work (&tt->kevent);
508 spin_unlock_irqrestore (&tt->lock, flags);
509}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -0600510EXPORT_SYMBOL_GPL(usb_hub_tt_clear_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511
512static void hub_power_on(struct usb_hub *hub)
513{
514 int port1;
David Brownellb7896962005-08-31 10:41:44 -0700515 unsigned pgood_delay = hub->descriptor->bPwrOn2PwrGood * 2;
Alan Stern4489a572006-04-27 15:54:22 -0400516 u16 wHubCharacteristics =
517 le16_to_cpu(hub->descriptor->wHubCharacteristics);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518
Alan Stern4489a572006-04-27 15:54:22 -0400519 /* Enable power on each port. Some hubs have reserved values
520 * of LPSM (> 2) in their descriptors, even though they are
521 * USB 2.0 hubs. Some hubs do not implement port-power switching
522 * but only emulate it. In all cases, the ports won't work
523 * unless we send these messages to the hub.
524 */
525 if ((wHubCharacteristics & HUB_CHAR_LPSM) < 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 dev_dbg(hub->intfdev, "enabling power on all ports\n");
Alan Stern4489a572006-04-27 15:54:22 -0400527 else
528 dev_dbg(hub->intfdev, "trying to enable port power on "
529 "non-switchable hub\n");
530 for (port1 = 1; port1 <= hub->descriptor->bNbrPorts; port1++)
531 set_port_feature(hub->hdev, port1, USB_PORT_FEAT_POWER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532
David Brownellb7896962005-08-31 10:41:44 -0700533 /* Wait at least 100 msec for power to become stable */
534 msleep(max(pgood_delay, (unsigned) 100));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535}
536
Alan Stern02c399e2006-08-30 15:47:11 -0400537static void hub_quiesce(struct usb_hub *hub)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538{
David Brownell979d5192005-09-22 22:32:24 -0700539 /* (nonblocking) khubd and related activity won't re-trigger */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 hub->quiescing = 1;
David Brownell979d5192005-09-22 22:32:24 -0700541
David Brownell979d5192005-09-22 22:32:24 -0700542 /* (blocking) stop khubd and related activity */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 usb_kill_urb(hub->urb);
544 if (hub->has_indicators)
Alan Sternd48bd972007-12-11 16:02:23 -0500545 cancel_delayed_work_sync(&hub->leds);
546 if (hub->tt.hub)
547 cancel_work_sync(&hub->tt.kevent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548}
549
550static void hub_activate(struct usb_hub *hub)
551{
552 int status;
553
554 hub->quiescing = 0;
Alan Stern40f122f2006-11-09 14:44:33 -0500555
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 status = usb_submit_urb(hub->urb, GFP_NOIO);
557 if (status < 0)
558 dev_err(hub->intfdev, "activate --> %d\n", status);
559 if (hub->has_indicators && blinkenlights)
560 schedule_delayed_work(&hub->leds, LED_CYCLE_PERIOD);
561
562 /* scan all ports ASAP */
563 kick_khubd(hub);
564}
565
566static int hub_hub_status(struct usb_hub *hub,
567 u16 *status, u16 *change)
568{
569 int ret;
570
Alan Sterndb90e7a2007-02-05 09:56:15 -0500571 mutex_lock(&hub->status_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 ret = get_hub_status(hub->hdev, &hub->status->hub);
573 if (ret < 0)
574 dev_err (hub->intfdev,
Harvey Harrison441b62c2008-03-03 16:08:34 -0800575 "%s failed (err = %d)\n", __func__, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 else {
577 *status = le16_to_cpu(hub->status->hub.wHubStatus);
578 *change = le16_to_cpu(hub->status->hub.wHubChange);
579 ret = 0;
580 }
Alan Sterndb90e7a2007-02-05 09:56:15 -0500581 mutex_unlock(&hub->status_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 return ret;
583}
584
Alan Stern8b28c752005-08-10 17:04:13 -0400585static int hub_port_disable(struct usb_hub *hub, int port1, int set_state)
586{
587 struct usb_device *hdev = hub->hdev;
Alan Stern0458d5b2007-05-04 11:52:20 -0400588 int ret = 0;
Alan Stern8b28c752005-08-10 17:04:13 -0400589
Alan Stern0458d5b2007-05-04 11:52:20 -0400590 if (hdev->children[port1-1] && set_state)
Alan Stern8b28c752005-08-10 17:04:13 -0400591 usb_set_device_state(hdev->children[port1-1],
592 USB_STATE_NOTATTACHED);
Alan Stern0458d5b2007-05-04 11:52:20 -0400593 if (!hub->error)
594 ret = clear_port_feature(hdev, port1, USB_PORT_FEAT_ENABLE);
Alan Stern8b28c752005-08-10 17:04:13 -0400595 if (ret)
596 dev_err(hub->intfdev, "cannot disable port %d (err = %d)\n",
Alan Stern0458d5b2007-05-04 11:52:20 -0400597 port1, ret);
Alan Stern8b28c752005-08-10 17:04:13 -0400598 return ret;
599}
600
Alan Stern0458d5b2007-05-04 11:52:20 -0400601/*
602 * Disable a port and mark a logical connnect-change event, so that some
603 * time later khubd will disconnect() any existing usb_device on the port
604 * and will re-enumerate if there actually is a device attached.
605 */
606static void hub_port_logical_disconnect(struct usb_hub *hub, int port1)
607{
608 dev_dbg(hub->intfdev, "logical disconnect on port %d\n", port1);
609 hub_port_disable(hub, port1, 1);
610
611 /* FIXME let caller ask to power down the port:
612 * - some devices won't enumerate without a VBUS power cycle
613 * - SRP saves power that way
614 * - ... new call, TBD ...
615 * That's easy if this hub can switch power per-port, and
616 * khubd reactivates the port later (timer, SRP, etc).
617 * Powerdown must be optional, because of reset/DFU.
618 */
619
620 set_bit(port1, hub->change_bits);
621 kick_khubd(hub);
622}
623
Alan Stern7d069b72005-11-18 12:06:34 -0500624/* caller has locked the hub device */
Alan Stern3eb14912008-03-03 15:15:43 -0500625static void hub_stop(struct usb_hub *hub)
Alan Stern7d069b72005-11-18 12:06:34 -0500626{
Alan Sternb41a60e2007-05-30 15:39:33 -0400627 struct usb_device *hdev = hub->hdev;
628 int i;
Alan Stern7d069b72005-11-18 12:06:34 -0500629
Alan Sternb41a60e2007-05-30 15:39:33 -0400630 /* Disconnect all the children */
631 for (i = 0; i < hdev->maxchild; ++i) {
632 if (hdev->children[i])
633 usb_disconnect(&hdev->children[i]);
634 }
Alan Stern7d069b72005-11-18 12:06:34 -0500635 hub_quiesce(hub);
Alan Stern3eb14912008-03-03 15:15:43 -0500636}
637
Alan Stern6ee0b272008-04-28 11:06:42 -0400638enum hub_activation_type {
639 HUB_INIT, HUB_POST_RESET, HUB_RESUME, HUB_RESET_RESUME
640};
Alan Stern5e6effa2008-03-03 15:15:51 -0500641
Alan Stern6ee0b272008-04-28 11:06:42 -0400642static void hub_restart(struct usb_hub *hub, enum hub_activation_type type)
Alan Stern5e6effa2008-03-03 15:15:51 -0500643{
644 struct usb_device *hdev = hub->hdev;
645 int port1;
646
Alan Stern6ee0b272008-04-28 11:06:42 -0400647 /* Check each port and set hub->change_bits to let khubd know
648 * which ports need attention.
Alan Stern5e6effa2008-03-03 15:15:51 -0500649 */
650 for (port1 = 1; port1 <= hdev->maxchild; ++port1) {
651 struct usb_device *udev = hdev->children[port1-1];
Alan Stern6ee0b272008-04-28 11:06:42 -0400652 int status;
Alan Stern5e6effa2008-03-03 15:15:51 -0500653 u16 portstatus, portchange;
654
Alan Stern6ee0b272008-04-28 11:06:42 -0400655 portstatus = portchange = 0;
656 status = hub_port_status(hub, port1, &portstatus, &portchange);
657 if (udev || (portstatus & USB_PORT_STAT_CONNECTION))
658 dev_dbg(hub->intfdev,
659 "port %d: status %04x change %04x\n",
660 port1, portstatus, portchange);
Alan Stern5e6effa2008-03-03 15:15:51 -0500661
Alan Stern6ee0b272008-04-28 11:06:42 -0400662 /* After anything other than HUB_RESUME (i.e., initialization
663 * or any sort of reset), every port should be disabled.
664 * Unconnected ports should likewise be disabled (paranoia),
665 * and so should ports for which we have no usb_device.
Alan Stern5e6effa2008-03-03 15:15:51 -0500666 */
Alan Stern6ee0b272008-04-28 11:06:42 -0400667 if ((portstatus & USB_PORT_STAT_ENABLE) && (
668 type != HUB_RESUME ||
669 !(portstatus & USB_PORT_STAT_CONNECTION) ||
670 !udev ||
671 udev->state == USB_STATE_NOTATTACHED)) {
672 clear_port_feature(hdev, port1, USB_PORT_FEAT_ENABLE);
673 portstatus &= ~USB_PORT_STAT_ENABLE;
674 }
675
676 if (!udev || udev->state == USB_STATE_NOTATTACHED) {
677 /* Tell khubd to disconnect the device or
678 * check for a new connection
679 */
680 if (udev || (portstatus & USB_PORT_STAT_CONNECTION))
681 set_bit(port1, hub->change_bits);
682
683 } else if (portstatus & USB_PORT_STAT_ENABLE) {
684 /* The power session apparently survived the resume.
685 * If there was an overcurrent or suspend change
686 * (i.e., remote wakeup request), have khubd
687 * take care of it.
688 */
689 if (portchange)
690 set_bit(port1, hub->change_bits);
691
692 } else if (udev->persist_enabled) {
693 /* Turn off the status changes to prevent khubd
694 * from disconnecting the device.
695 */
Alan Stern5e6effa2008-03-03 15:15:51 -0500696 if (portchange & USB_PORT_STAT_C_ENABLE)
697 clear_port_feature(hub->hdev, port1,
698 USB_PORT_FEAT_C_ENABLE);
699 if (portchange & USB_PORT_STAT_C_CONNECTION)
700 clear_port_feature(hub->hdev, port1,
701 USB_PORT_FEAT_C_CONNECTION);
Alan Stern6ee0b272008-04-28 11:06:42 -0400702#ifdef CONFIG_PM
Alan Stern5e6effa2008-03-03 15:15:51 -0500703 udev->reset_resume = 1;
Alan Stern6ee0b272008-04-28 11:06:42 -0400704#endif
705 } else {
706 /* The power session is gone; tell khubd */
707 usb_set_device_state(udev, USB_STATE_NOTATTACHED);
708 set_bit(port1, hub->change_bits);
Alan Stern5e6effa2008-03-03 15:15:51 -0500709 }
Alan Stern5e6effa2008-03-03 15:15:51 -0500710 }
711
712 hub_activate(hub);
713}
714
Alan Stern3eb14912008-03-03 15:15:43 -0500715/* caller has locked the hub device */
716static int hub_pre_reset(struct usb_interface *intf)
717{
718 struct usb_hub *hub = usb_get_intfdata(intf);
719
720 hub_stop(hub);
Alan Sternf07600c2007-05-30 15:38:16 -0400721 return 0;
Alan Stern7d069b72005-11-18 12:06:34 -0500722}
723
724/* caller has locked the hub device */
Alan Sternf07600c2007-05-30 15:38:16 -0400725static int hub_post_reset(struct usb_interface *intf)
Alan Stern7d069b72005-11-18 12:06:34 -0500726{
Alan Stern7de18d82006-06-01 13:37:24 -0400727 struct usb_hub *hub = usb_get_intfdata(intf);
728
Alan Stern7d069b72005-11-18 12:06:34 -0500729 hub_power_on(hub);
Alan Stern6ee0b272008-04-28 11:06:42 -0400730 hub_restart(hub, HUB_POST_RESET);
Alan Sternf07600c2007-05-30 15:38:16 -0400731 return 0;
Alan Stern7d069b72005-11-18 12:06:34 -0500732}
733
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734static int hub_configure(struct usb_hub *hub,
735 struct usb_endpoint_descriptor *endpoint)
736{
737 struct usb_device *hdev = hub->hdev;
738 struct device *hub_dev = hub->intfdev;
739 u16 hubstatus, hubchange;
Greg Kroah-Hartman74ad9bd2005-06-20 21:15:16 -0700740 u16 wHubCharacteristics;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 unsigned int pipe;
742 int maxp, ret;
743 char *message;
744
745 hub->buffer = usb_buffer_alloc(hdev, sizeof(*hub->buffer), GFP_KERNEL,
746 &hub->buffer_dma);
747 if (!hub->buffer) {
748 message = "can't allocate hub irq buffer";
749 ret = -ENOMEM;
750 goto fail;
751 }
752
753 hub->status = kmalloc(sizeof(*hub->status), GFP_KERNEL);
754 if (!hub->status) {
755 message = "can't kmalloc hub status buffer";
756 ret = -ENOMEM;
757 goto fail;
758 }
Alan Sterndb90e7a2007-02-05 09:56:15 -0500759 mutex_init(&hub->status_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760
761 hub->descriptor = kmalloc(sizeof(*hub->descriptor), GFP_KERNEL);
762 if (!hub->descriptor) {
763 message = "can't kmalloc hub descriptor";
764 ret = -ENOMEM;
765 goto fail;
766 }
767
768 /* Request the entire hub descriptor.
769 * hub->descriptor can handle USB_MAXCHILDREN ports,
770 * but the hub can/will return fewer bytes here.
771 */
772 ret = get_hub_descriptor(hdev, hub->descriptor,
773 sizeof(*hub->descriptor));
774 if (ret < 0) {
775 message = "can't read hub descriptor";
776 goto fail;
777 } else if (hub->descriptor->bNbrPorts > USB_MAXCHILDREN) {
778 message = "hub has too many ports!";
779 ret = -ENODEV;
780 goto fail;
781 }
782
783 hdev->maxchild = hub->descriptor->bNbrPorts;
784 dev_info (hub_dev, "%d port%s detected\n", hdev->maxchild,
785 (hdev->maxchild == 1) ? "" : "s");
786
Greg Kroah-Hartman74ad9bd2005-06-20 21:15:16 -0700787 wHubCharacteristics = le16_to_cpu(hub->descriptor->wHubCharacteristics);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788
Greg Kroah-Hartman74ad9bd2005-06-20 21:15:16 -0700789 if (wHubCharacteristics & HUB_CHAR_COMPOUND) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 int i;
791 char portstr [USB_MAXCHILDREN + 1];
792
793 for (i = 0; i < hdev->maxchild; i++)
794 portstr[i] = hub->descriptor->DeviceRemovable
795 [((i + 1) / 8)] & (1 << ((i + 1) % 8))
796 ? 'F' : 'R';
797 portstr[hdev->maxchild] = 0;
798 dev_dbg(hub_dev, "compound device; port removable status: %s\n", portstr);
799 } else
800 dev_dbg(hub_dev, "standalone hub\n");
801
Greg Kroah-Hartman74ad9bd2005-06-20 21:15:16 -0700802 switch (wHubCharacteristics & HUB_CHAR_LPSM) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 case 0x00:
804 dev_dbg(hub_dev, "ganged power switching\n");
805 break;
806 case 0x01:
807 dev_dbg(hub_dev, "individual port power switching\n");
808 break;
809 case 0x02:
810 case 0x03:
811 dev_dbg(hub_dev, "no power switching (usb 1.0)\n");
812 break;
813 }
814
Greg Kroah-Hartman74ad9bd2005-06-20 21:15:16 -0700815 switch (wHubCharacteristics & HUB_CHAR_OCPM) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 case 0x00:
817 dev_dbg(hub_dev, "global over-current protection\n");
818 break;
819 case 0x08:
820 dev_dbg(hub_dev, "individual port over-current protection\n");
821 break;
822 case 0x10:
823 case 0x18:
824 dev_dbg(hub_dev, "no over-current protection\n");
825 break;
826 }
827
828 spin_lock_init (&hub->tt.lock);
829 INIT_LIST_HEAD (&hub->tt.clear_list);
David Howellsc4028952006-11-22 14:57:56 +0000830 INIT_WORK (&hub->tt.kevent, hub_tt_kevent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 switch (hdev->descriptor.bDeviceProtocol) {
832 case 0:
833 break;
834 case 1:
835 dev_dbg(hub_dev, "Single TT\n");
836 hub->tt.hub = hdev;
837 break;
838 case 2:
839 ret = usb_set_interface(hdev, 0, 1);
840 if (ret == 0) {
841 dev_dbg(hub_dev, "TT per port\n");
842 hub->tt.multi = 1;
843 } else
844 dev_err(hub_dev, "Using single TT (err %d)\n",
845 ret);
846 hub->tt.hub = hdev;
847 break;
848 default:
849 dev_dbg(hub_dev, "Unrecognized hub protocol %d\n",
850 hdev->descriptor.bDeviceProtocol);
851 break;
852 }
853
david-b@pacbell.nete09711a2005-08-13 18:41:04 -0700854 /* Note 8 FS bit times == (8 bits / 12000000 bps) ~= 666ns */
Greg Kroah-Hartman74ad9bd2005-06-20 21:15:16 -0700855 switch (wHubCharacteristics & HUB_CHAR_TTTT) {
david-b@pacbell.nete09711a2005-08-13 18:41:04 -0700856 case HUB_TTTT_8_BITS:
857 if (hdev->descriptor.bDeviceProtocol != 0) {
858 hub->tt.think_time = 666;
859 dev_dbg(hub_dev, "TT requires at most %d "
860 "FS bit times (%d ns)\n",
861 8, hub->tt.think_time);
862 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 break;
david-b@pacbell.nete09711a2005-08-13 18:41:04 -0700864 case HUB_TTTT_16_BITS:
865 hub->tt.think_time = 666 * 2;
866 dev_dbg(hub_dev, "TT requires at most %d "
867 "FS bit times (%d ns)\n",
868 16, hub->tt.think_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 break;
david-b@pacbell.nete09711a2005-08-13 18:41:04 -0700870 case HUB_TTTT_24_BITS:
871 hub->tt.think_time = 666 * 3;
872 dev_dbg(hub_dev, "TT requires at most %d "
873 "FS bit times (%d ns)\n",
874 24, hub->tt.think_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 break;
david-b@pacbell.nete09711a2005-08-13 18:41:04 -0700876 case HUB_TTTT_32_BITS:
877 hub->tt.think_time = 666 * 4;
878 dev_dbg(hub_dev, "TT requires at most %d "
879 "FS bit times (%d ns)\n",
880 32, hub->tt.think_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 break;
882 }
883
884 /* probe() zeroes hub->indicator[] */
Greg Kroah-Hartman74ad9bd2005-06-20 21:15:16 -0700885 if (wHubCharacteristics & HUB_CHAR_PORTIND) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 hub->has_indicators = 1;
887 dev_dbg(hub_dev, "Port indicators are supported\n");
888 }
889
890 dev_dbg(hub_dev, "power on to power good time: %dms\n",
891 hub->descriptor->bPwrOn2PwrGood * 2);
892
893 /* power budgeting mostly matters with bus-powered hubs,
894 * and battery-powered root hubs (may provide just 8 mA).
895 */
896 ret = usb_get_status(hdev, USB_RECIP_DEVICE, 0, &hubstatus);
Alan Stern55c52712005-11-23 12:03:12 -0500897 if (ret < 2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 message = "can't get hub status";
899 goto fail;
900 }
Alan Stern7d35b922005-04-25 11:18:32 -0400901 le16_to_cpus(&hubstatus);
902 if (hdev == hdev->bus->root_hub) {
Alan Stern55c52712005-11-23 12:03:12 -0500903 if (hdev->bus_mA == 0 || hdev->bus_mA >= 500)
904 hub->mA_per_port = 500;
905 else {
906 hub->mA_per_port = hdev->bus_mA;
907 hub->limited_power = 1;
908 }
Alan Stern7d35b922005-04-25 11:18:32 -0400909 } else if ((hubstatus & (1 << USB_DEVICE_SELF_POWERED)) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 dev_dbg(hub_dev, "hub controller current requirement: %dmA\n",
911 hub->descriptor->bHubContrCurrent);
Alan Stern55c52712005-11-23 12:03:12 -0500912 hub->limited_power = 1;
913 if (hdev->maxchild > 0) {
914 int remaining = hdev->bus_mA -
915 hub->descriptor->bHubContrCurrent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916
Alan Stern55c52712005-11-23 12:03:12 -0500917 if (remaining < hdev->maxchild * 100)
918 dev_warn(hub_dev,
919 "insufficient power available "
920 "to use all downstream ports\n");
921 hub->mA_per_port = 100; /* 7.2.1.1 */
922 }
923 } else { /* Self-powered external hub */
924 /* FIXME: What about battery-powered external hubs that
925 * provide less current per port? */
926 hub->mA_per_port = 500;
927 }
928 if (hub->mA_per_port < 500)
929 dev_dbg(hub_dev, "%umA bus power budget for each child\n",
930 hub->mA_per_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931
932 ret = hub_hub_status(hub, &hubstatus, &hubchange);
933 if (ret < 0) {
934 message = "can't get hub status";
935 goto fail;
936 }
937
938 /* local power status reports aren't always correct */
939 if (hdev->actconfig->desc.bmAttributes & USB_CONFIG_ATT_SELFPOWER)
940 dev_dbg(hub_dev, "local power source is %s\n",
941 (hubstatus & HUB_STATUS_LOCAL_POWER)
942 ? "lost (inactive)" : "good");
943
Greg Kroah-Hartman74ad9bd2005-06-20 21:15:16 -0700944 if ((wHubCharacteristics & HUB_CHAR_OCPM) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 dev_dbg(hub_dev, "%sover-current condition exists\n",
946 (hubstatus & HUB_STATUS_OVERCURRENT) ? "" : "no ");
947
inaky@linux.intel.com88fafff2006-10-11 20:05:59 -0700948 /* set up the interrupt endpoint
949 * We use the EP's maxpacket size instead of (PORTS+1+7)/8
950 * bytes as USB2.0[11.12.3] says because some hubs are known
951 * to send more data (and thus cause overflow). For root hubs,
952 * maxpktsize is defined in hcd.c's fake endpoint descriptors
953 * to be big enough for at least USB_MAXCHILDREN ports. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 pipe = usb_rcvintpipe(hdev, endpoint->bEndpointAddress);
955 maxp = usb_maxpacket(hdev, pipe, usb_pipeout(pipe));
956
957 if (maxp > sizeof(*hub->buffer))
958 maxp = sizeof(*hub->buffer);
959
960 hub->urb = usb_alloc_urb(0, GFP_KERNEL);
961 if (!hub->urb) {
962 message = "couldn't allocate interrupt urb";
963 ret = -ENOMEM;
964 goto fail;
965 }
966
967 usb_fill_int_urb(hub->urb, hdev, pipe, *hub->buffer, maxp, hub_irq,
968 hub, endpoint->bInterval);
969 hub->urb->transfer_dma = hub->buffer_dma;
970 hub->urb->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
971
972 /* maybe cycle the hub leds */
973 if (hub->has_indicators && blinkenlights)
974 hub->indicator [0] = INDICATOR_CYCLE;
975
976 hub_power_on(hub);
977 hub_activate(hub);
978 return 0;
979
980fail:
981 dev_err (hub_dev, "config failed, %s (err %d)\n",
982 message, ret);
983 /* hub_disconnect() frees urb and descriptor */
984 return ret;
985}
986
Alan Sterne8054852007-05-04 11:55:11 -0400987static void hub_release(struct kref *kref)
988{
989 struct usb_hub *hub = container_of(kref, struct usb_hub, kref);
990
991 usb_put_intf(to_usb_interface(hub->intfdev));
992 kfree(hub);
993}
994
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995static unsigned highspeed_hubs;
996
997static void hub_disconnect(struct usb_interface *intf)
998{
999 struct usb_hub *hub = usb_get_intfdata (intf);
Alan Sterne8054852007-05-04 11:55:11 -04001000
1001 /* Take the hub off the event list and don't let it be added again */
1002 spin_lock_irq(&hub_event_lock);
1003 list_del_init(&hub->event_list);
1004 hub->disconnected = 1;
1005 spin_unlock_irq(&hub_event_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006
Alan Stern7de18d82006-06-01 13:37:24 -04001007 /* Disconnect all children and quiesce the hub */
1008 hub->error = 0;
Alan Stern3eb14912008-03-03 15:15:43 -05001009 hub_stop(hub);
Alan Stern7de18d82006-06-01 13:37:24 -04001010
Alan Stern8b28c752005-08-10 17:04:13 -04001011 usb_set_intfdata (intf, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012
Alan Sterne8054852007-05-04 11:55:11 -04001013 if (hub->hdev->speed == USB_SPEED_HIGH)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 highspeed_hubs--;
1015
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 usb_free_urb(hub->urb);
Jesper Juhl1bc3c9e2005-04-18 17:39:34 -07001017 kfree(hub->descriptor);
Jesper Juhl1bc3c9e2005-04-18 17:39:34 -07001018 kfree(hub->status);
Alan Sterne8054852007-05-04 11:55:11 -04001019 usb_buffer_free(hub->hdev, sizeof(*hub->buffer), hub->buffer,
1020 hub->buffer_dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021
Alan Sterne8054852007-05-04 11:55:11 -04001022 kref_put(&hub->kref, hub_release);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023}
1024
1025static int hub_probe(struct usb_interface *intf, const struct usb_device_id *id)
1026{
1027 struct usb_host_interface *desc;
1028 struct usb_endpoint_descriptor *endpoint;
1029 struct usb_device *hdev;
1030 struct usb_hub *hub;
1031
1032 desc = intf->cur_altsetting;
1033 hdev = interface_to_usbdev(intf);
1034
David Brownell89ccbdc2006-04-02 10:18:09 -08001035#ifdef CONFIG_USB_OTG_BLACKLIST_HUB
1036 if (hdev->parent) {
1037 dev_warn(&intf->dev, "ignoring external hub\n");
1038 return -ENODEV;
1039 }
1040#endif
1041
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 /* Some hubs have a subclass of 1, which AFAICT according to the */
1043 /* specs is not defined, but it works */
1044 if ((desc->desc.bInterfaceSubClass != 0) &&
1045 (desc->desc.bInterfaceSubClass != 1)) {
1046descriptor_error:
1047 dev_err (&intf->dev, "bad descriptor, ignoring hub\n");
1048 return -EIO;
1049 }
1050
1051 /* Multiple endpoints? What kind of mutant ninja-hub is this? */
1052 if (desc->desc.bNumEndpoints != 1)
1053 goto descriptor_error;
1054
1055 endpoint = &desc->endpoint[0].desc;
1056
Luiz Fernando N. Capitulinofbf81c22006-09-27 11:58:53 -07001057 /* If it's not an interrupt in endpoint, we'd better punt! */
1058 if (!usb_endpoint_is_int_in(endpoint))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 goto descriptor_error;
1060
1061 /* We found a hub */
1062 dev_info (&intf->dev, "USB hub found\n");
1063
Alan Stern0a1ef3b2005-10-24 15:38:24 -04001064 hub = kzalloc(sizeof(*hub), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 if (!hub) {
1066 dev_dbg (&intf->dev, "couldn't kmalloc hub struct\n");
1067 return -ENOMEM;
1068 }
1069
Alan Sterne8054852007-05-04 11:55:11 -04001070 kref_init(&hub->kref);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 INIT_LIST_HEAD(&hub->event_list);
1072 hub->intfdev = &intf->dev;
1073 hub->hdev = hdev;
David Howellsc4028952006-11-22 14:57:56 +00001074 INIT_DELAYED_WORK(&hub->leds, led_work);
Alan Sterne8054852007-05-04 11:55:11 -04001075 usb_get_intf(intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076
1077 usb_set_intfdata (intf, hub);
Alan Stern40f122f2006-11-09 14:44:33 -05001078 intf->needs_remote_wakeup = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079
1080 if (hdev->speed == USB_SPEED_HIGH)
1081 highspeed_hubs++;
1082
1083 if (hub_configure(hub, endpoint) >= 0)
1084 return 0;
1085
1086 hub_disconnect (intf);
1087 return -ENODEV;
1088}
1089
1090static int
1091hub_ioctl(struct usb_interface *intf, unsigned int code, void *user_data)
1092{
1093 struct usb_device *hdev = interface_to_usbdev (intf);
1094
1095 /* assert ifno == 0 (part of hub spec) */
1096 switch (code) {
1097 case USBDEVFS_HUB_PORTINFO: {
1098 struct usbdevfs_hub_portinfo *info = user_data;
1099 int i;
1100
1101 spin_lock_irq(&device_state_lock);
1102 if (hdev->devnum <= 0)
1103 info->nports = 0;
1104 else {
1105 info->nports = hdev->maxchild;
1106 for (i = 0; i < info->nports; i++) {
1107 if (hdev->children[i] == NULL)
1108 info->port[i] = 0;
1109 else
1110 info->port[i] =
1111 hdev->children[i]->devnum;
1112 }
1113 }
1114 spin_unlock_irq(&device_state_lock);
1115
1116 return info->nports + 1;
1117 }
1118
1119 default:
1120 return -ENOSYS;
1121 }
1122}
1123
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125static void recursively_mark_NOTATTACHED(struct usb_device *udev)
1126{
1127 int i;
1128
1129 for (i = 0; i < udev->maxchild; ++i) {
1130 if (udev->children[i])
1131 recursively_mark_NOTATTACHED(udev->children[i]);
1132 }
Sarah Sharp15123002007-12-21 16:54:15 -08001133 if (udev->state == USB_STATE_SUSPENDED) {
Alan Sternee49fb52006-11-22 16:55:54 -05001134 udev->discon_suspended = 1;
Sarah Sharp15123002007-12-21 16:54:15 -08001135 udev->active_duration -= jiffies;
1136 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 udev->state = USB_STATE_NOTATTACHED;
1138}
1139
1140/**
1141 * usb_set_device_state - change a device's current state (usbcore, hcds)
1142 * @udev: pointer to device whose state should be changed
1143 * @new_state: new state value to be stored
1144 *
1145 * udev->state is _not_ fully protected by the device lock. Although
1146 * most transitions are made only while holding the lock, the state can
1147 * can change to USB_STATE_NOTATTACHED at almost any time. This
1148 * is so that devices can be marked as disconnected as soon as possible,
1149 * without having to wait for any semaphores to be released. As a result,
1150 * all changes to any device's state must be protected by the
1151 * device_state_lock spinlock.
1152 *
1153 * Once a device has been added to the device tree, all changes to its state
1154 * should be made using this routine. The state should _not_ be set directly.
1155 *
1156 * If udev->state is already USB_STATE_NOTATTACHED then no change is made.
1157 * Otherwise udev->state is set to new_state, and if new_state is
1158 * USB_STATE_NOTATTACHED then all of udev's descendants' states are also set
1159 * to USB_STATE_NOTATTACHED.
1160 */
1161void usb_set_device_state(struct usb_device *udev,
1162 enum usb_device_state new_state)
1163{
1164 unsigned long flags;
1165
1166 spin_lock_irqsave(&device_state_lock, flags);
1167 if (udev->state == USB_STATE_NOTATTACHED)
1168 ; /* do nothing */
David Brownellb94dc6b2005-09-12 19:39:39 -07001169 else if (new_state != USB_STATE_NOTATTACHED) {
David Brownellfb669cc2006-01-24 08:40:27 -08001170
1171 /* root hub wakeup capabilities are managed out-of-band
1172 * and may involve silicon errata ... ignore them here.
1173 */
1174 if (udev->parent) {
Alan Stern645daaa2006-08-30 15:47:02 -04001175 if (udev->state == USB_STATE_SUSPENDED
1176 || new_state == USB_STATE_SUSPENDED)
1177 ; /* No change to wakeup settings */
1178 else if (new_state == USB_STATE_CONFIGURED)
David Brownellfb669cc2006-01-24 08:40:27 -08001179 device_init_wakeup(&udev->dev,
1180 (udev->actconfig->desc.bmAttributes
1181 & USB_CONFIG_ATT_WAKEUP));
Alan Stern645daaa2006-08-30 15:47:02 -04001182 else
David Brownellfb669cc2006-01-24 08:40:27 -08001183 device_init_wakeup(&udev->dev, 0);
1184 }
Sarah Sharp15123002007-12-21 16:54:15 -08001185 if (udev->state == USB_STATE_SUSPENDED &&
1186 new_state != USB_STATE_SUSPENDED)
1187 udev->active_duration -= jiffies;
1188 else if (new_state == USB_STATE_SUSPENDED &&
1189 udev->state != USB_STATE_SUSPENDED)
1190 udev->active_duration += jiffies;
Alan Stern645daaa2006-08-30 15:47:02 -04001191 udev->state = new_state;
David Brownellb94dc6b2005-09-12 19:39:39 -07001192 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 recursively_mark_NOTATTACHED(udev);
1194 spin_unlock_irqrestore(&device_state_lock, flags);
1195}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196
Inaky Perez-Gonzalez8af548d2008-04-08 13:24:46 -07001197/*
1198 * WUSB devices are simple: they have no hubs behind, so the mapping
1199 * device <-> virtual port number becomes 1:1. Why? to simplify the
1200 * life of the device connection logic in
1201 * drivers/usb/wusbcore/devconnect.c. When we do the initial secret
1202 * handshake we need to assign a temporary address in the unauthorized
1203 * space. For simplicity we use the first virtual port number found to
1204 * be free [drivers/usb/wusbcore/devconnect.c:wusbhc_devconnect_ack()]
1205 * and that becomes it's address [X < 128] or its unauthorized address
1206 * [X | 0x80].
1207 *
1208 * We add 1 as an offset to the one-based USB-stack port number
1209 * (zero-based wusb virtual port index) for two reasons: (a) dev addr
1210 * 0 is reserved by USB for default address; (b) Linux's USB stack
1211 * uses always #1 for the root hub of the controller. So USB stack's
1212 * port #1, which is wusb virtual-port #0 has address #2.
1213 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214static void choose_address(struct usb_device *udev)
1215{
1216 int devnum;
1217 struct usb_bus *bus = udev->bus;
1218
1219 /* If khubd ever becomes multithreaded, this will need a lock */
Inaky Perez-Gonzalez8af548d2008-04-08 13:24:46 -07001220 if (udev->wusb) {
1221 devnum = udev->portnum + 1;
1222 BUG_ON(test_bit(devnum, bus->devmap.devicemap));
1223 } else {
1224 /* Try to allocate the next devnum beginning at
1225 * bus->devnum_next. */
1226 devnum = find_next_zero_bit(bus->devmap.devicemap, 128,
1227 bus->devnum_next);
1228 if (devnum >= 128)
1229 devnum = find_next_zero_bit(bus->devmap.devicemap,
1230 128, 1);
1231 bus->devnum_next = ( devnum >= 127 ? 1 : devnum + 1);
1232 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 if (devnum < 128) {
1234 set_bit(devnum, bus->devmap.devicemap);
1235 udev->devnum = devnum;
1236 }
1237}
1238
1239static void release_address(struct usb_device *udev)
1240{
1241 if (udev->devnum > 0) {
1242 clear_bit(udev->devnum, udev->bus->devmap.devicemap);
1243 udev->devnum = -1;
1244 }
1245}
1246
David Vrabel4953d142008-04-08 13:24:46 -07001247static void update_address(struct usb_device *udev, int devnum)
1248{
1249 /* The address for a WUSB device is managed by wusbcore. */
1250 if (!udev->wusb)
1251 udev->devnum = devnum;
1252}
1253
Alan Sternd5d4db72007-05-29 16:34:52 -04001254#ifdef CONFIG_USB_SUSPEND
1255
1256static void usb_stop_pm(struct usb_device *udev)
1257{
1258 /* Synchronize with the ksuspend thread to prevent any more
1259 * autosuspend requests from being submitted, and decrement
1260 * the parent's count of unsuspended children.
1261 */
1262 usb_pm_lock(udev);
1263 if (udev->parent && !udev->discon_suspended)
1264 usb_autosuspend_device(udev->parent);
1265 usb_pm_unlock(udev);
1266
1267 /* Stop any autosuspend requests already submitted */
1268 cancel_rearming_delayed_work(&udev->autosuspend);
1269}
1270
1271#else
1272
1273static inline void usb_stop_pm(struct usb_device *udev)
1274{ }
1275
1276#endif
1277
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278/**
1279 * usb_disconnect - disconnect a device (usbcore-internal)
1280 * @pdev: pointer to device being disconnected
1281 * Context: !in_interrupt ()
1282 *
1283 * Something got disconnected. Get rid of it and all of its children.
1284 *
1285 * If *pdev is a normal device then the parent hub must already be locked.
1286 * If *pdev is a root hub then this routine will acquire the
1287 * usb_bus_list_lock on behalf of the caller.
1288 *
1289 * Only hub drivers (including virtual root hub drivers for host
1290 * controllers) should ever call this.
1291 *
1292 * This call is synchronous, and may not be used in an interrupt context.
1293 */
1294void usb_disconnect(struct usb_device **pdev)
1295{
1296 struct usb_device *udev = *pdev;
1297 int i;
1298
1299 if (!udev) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08001300 pr_debug ("%s nodev\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 return;
1302 }
1303
1304 /* mark the device as inactive, so any further urb submissions for
1305 * this device (and any of its children) will fail immediately.
1306 * this quiesces everyting except pending urbs.
1307 */
1308 usb_set_device_state(udev, USB_STATE_NOTATTACHED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 dev_info (&udev->dev, "USB disconnect, address %d\n", udev->devnum);
1310
Alan Stern9ad3d6c2005-11-17 17:10:32 -05001311 usb_lock_device(udev);
1312
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 /* Free up all the children before we remove this device */
1314 for (i = 0; i < USB_MAXCHILDREN; i++) {
1315 if (udev->children[i])
1316 usb_disconnect(&udev->children[i]);
1317 }
1318
1319 /* deallocate hcd/hardware state ... nuking all pending urbs and
1320 * cleaning up all state associated with the current configuration
1321 * so that the hardware is now fully quiesced.
1322 */
Alan Stern782da722006-07-01 22:09:35 -04001323 dev_dbg (&udev->dev, "unregistering device\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 usb_disable_device(udev, 0);
1325
Alan Stern782da722006-07-01 22:09:35 -04001326 usb_unlock_device(udev);
Greg Kroah-Hartman3099e752005-06-20 21:15:16 -07001327
Alan Sterne16362a2008-05-20 16:37:34 -04001328 /* Remove the device-specific files from sysfs. This must be
1329 * done with udev unlocked, because some of the attribute
1330 * routines try to acquire the device lock.
1331 */
1332 usb_remove_sysfs_dev_files(udev);
1333
Alan Stern782da722006-07-01 22:09:35 -04001334 /* Unregister the device. The device driver is responsible
1335 * for removing the device files from usbfs and sysfs and for
1336 * de-configuring the device.
1337 */
1338 device_del(&udev->dev);
1339
1340 /* Free the device number and delete the parent's children[]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 * (or root_hub) pointer.
1342 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 release_address(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344
1345 /* Avoid races with recursively_mark_NOTATTACHED() */
1346 spin_lock_irq(&device_state_lock);
1347 *pdev = NULL;
1348 spin_unlock_irq(&device_state_lock);
1349
Alan Sternd5d4db72007-05-29 16:34:52 -04001350 usb_stop_pm(udev);
Alan Sternee49fb52006-11-22 16:55:54 -05001351
Alan Stern782da722006-07-01 22:09:35 -04001352 put_device(&udev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353}
1354
Greg Kroah-Hartmanf2a383e2007-11-26 22:11:55 -08001355#ifdef CONFIG_USB_ANNOUNCE_NEW_DEVICES
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356static void show_string(struct usb_device *udev, char *id, char *string)
1357{
1358 if (!string)
1359 return;
1360 dev_printk(KERN_INFO, &udev->dev, "%s: %s\n", id, string);
1361}
1362
Greg Kroah-Hartmanf2a383e2007-11-26 22:11:55 -08001363static void announce_device(struct usb_device *udev)
1364{
1365 dev_info(&udev->dev, "New USB device found, idVendor=%04x, idProduct=%04x\n",
1366 le16_to_cpu(udev->descriptor.idVendor),
1367 le16_to_cpu(udev->descriptor.idProduct));
1368 dev_info(&udev->dev, "New USB device strings: Mfr=%d, Product=%d, "
1369 "SerialNumber=%d\n",
1370 udev->descriptor.iManufacturer,
1371 udev->descriptor.iProduct,
1372 udev->descriptor.iSerialNumber);
1373 show_string(udev, "Product", udev->product);
1374 show_string(udev, "Manufacturer", udev->manufacturer);
1375 show_string(udev, "SerialNumber", udev->serial);
1376}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377#else
Greg Kroah-Hartmanf2a383e2007-11-26 22:11:55 -08001378static inline void announce_device(struct usb_device *udev) { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379#endif
1380
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381#ifdef CONFIG_USB_OTG
1382#include "otg_whitelist.h"
1383#endif
1384
Oliver Neukum3ede7602007-01-11 14:35:50 +01001385/**
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07001386 * usb_configure_device_otg - FIXME (usbcore-internal)
Oliver Neukum3ede7602007-01-11 14:35:50 +01001387 * @udev: newly addressed device (in ADDRESS state)
1388 *
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07001389 * Do configuration for On-The-Go devices
Oliver Neukum3ede7602007-01-11 14:35:50 +01001390 */
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07001391static int usb_configure_device_otg(struct usb_device *udev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392{
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07001393 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394
1395#ifdef CONFIG_USB_OTG
1396 /*
1397 * OTG-aware devices on OTG-capable root hubs may be able to use SRP,
1398 * to wake us after we've powered off VBUS; and HNP, switching roles
1399 * "host" to "peripheral". The OTG descriptor helps figure this out.
1400 */
1401 if (!udev->bus->is_b_host
1402 && udev->config
1403 && udev->parent == udev->bus->root_hub) {
1404 struct usb_otg_descriptor *desc = 0;
1405 struct usb_bus *bus = udev->bus;
1406
1407 /* descriptor may appear anywhere in config */
1408 if (__usb_get_extra_descriptor (udev->rawdescriptors[0],
1409 le16_to_cpu(udev->config[0].desc.wTotalLength),
1410 USB_DT_OTG, (void **) &desc) == 0) {
1411 if (desc->bmAttributes & USB_OTG_HNP) {
Alan Stern12c3da32005-11-23 12:09:52 -05001412 unsigned port1 = udev->portnum;
David Brownellfc849b82006-09-18 16:53:26 -07001413
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 dev_info(&udev->dev,
1415 "Dual-Role OTG device on %sHNP port\n",
1416 (port1 == bus->otg_port)
1417 ? "" : "non-");
1418
1419 /* enable HNP before suspend, it's simpler */
1420 if (port1 == bus->otg_port)
1421 bus->b_hnp_enable = 1;
1422 err = usb_control_msg(udev,
1423 usb_sndctrlpipe(udev, 0),
1424 USB_REQ_SET_FEATURE, 0,
1425 bus->b_hnp_enable
1426 ? USB_DEVICE_B_HNP_ENABLE
1427 : USB_DEVICE_A_ALT_HNP_SUPPORT,
1428 0, NULL, 0, USB_CTRL_SET_TIMEOUT);
1429 if (err < 0) {
1430 /* OTG MESSAGE: report errors here,
1431 * customize to match your product.
1432 */
1433 dev_info(&udev->dev,
1434 "can't set HNP mode; %d\n",
1435 err);
1436 bus->b_hnp_enable = 0;
1437 }
1438 }
1439 }
1440 }
1441
1442 if (!is_targeted(udev)) {
1443
1444 /* Maybe it can talk to us, though we can't talk to it.
1445 * (Includes HNP test device.)
1446 */
1447 if (udev->bus->b_hnp_enable || udev->bus->is_b_host) {
Alan Stern4956ecc2007-05-30 16:51:28 -04001448 err = usb_port_suspend(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 if (err < 0)
1450 dev_dbg(&udev->dev, "HNP fail, %d\n", err);
1451 }
Vikram Panditaffcdc182007-05-25 21:31:07 -07001452 err = -ENOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 goto fail;
1454 }
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07001455fail:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456#endif
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07001457 return err;
1458}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07001460
1461/**
1462 * usb_configure_device - Detect and probe device intfs/otg (usbcore-internal)
1463 * @udev: newly addressed device (in ADDRESS state)
1464 *
1465 * This is only called by usb_new_device() and usb_authorize_device()
1466 * and FIXME -- all comments that apply to them apply here wrt to
1467 * environment.
1468 *
1469 * If the device is WUSB and not authorized, we don't attempt to read
1470 * the string descriptors, as they will be errored out by the device
1471 * until it has been authorized.
1472 */
1473static int usb_configure_device(struct usb_device *udev)
1474{
1475 int err;
1476
1477 if (udev->config == NULL) {
1478 err = usb_get_configuration(udev);
1479 if (err < 0) {
1480 dev_err(&udev->dev, "can't read configurations, error %d\n",
1481 err);
1482 goto fail;
1483 }
1484 }
1485 if (udev->wusb == 1 && udev->authorized == 0) {
1486 udev->product = kstrdup("n/a (unauthorized)", GFP_KERNEL);
1487 udev->manufacturer = kstrdup("n/a (unauthorized)", GFP_KERNEL);
1488 udev->serial = kstrdup("n/a (unauthorized)", GFP_KERNEL);
1489 }
1490 else {
1491 /* read the standard strings and cache them if present */
1492 udev->product = usb_cache_string(udev, udev->descriptor.iProduct);
1493 udev->manufacturer = usb_cache_string(udev,
1494 udev->descriptor.iManufacturer);
1495 udev->serial = usb_cache_string(udev, udev->descriptor.iSerialNumber);
1496 }
1497 err = usb_configure_device_otg(udev);
1498fail:
1499 return err;
1500}
1501
1502
1503/**
1504 * usb_new_device - perform initial device setup (usbcore-internal)
1505 * @udev: newly addressed device (in ADDRESS state)
1506 *
1507 * This is called with devices which have been enumerated, but not yet
1508 * configured. The device descriptor is available, but not descriptors
1509 * for any device configuration. The caller must have locked either
1510 * the parent hub (if udev is a normal device) or else the
1511 * usb_bus_list_lock (if udev is a root hub). The parent's pointer to
1512 * udev has already been installed, but udev is not yet visible through
1513 * sysfs or other filesystem code.
1514 *
1515 * It will return if the device is configured properly or not. Zero if
1516 * the interface was registered with the driver core; else a negative
1517 * errno value.
1518 *
1519 * This call is synchronous, and may not be used in an interrupt context.
1520 *
1521 * Only the hub driver or root-hub registrar should ever call this.
1522 */
1523int usb_new_device(struct usb_device *udev)
1524{
1525 int err;
1526
1527 usb_detect_quirks(udev); /* Determine quirks */
1528 err = usb_configure_device(udev); /* detect & probe dev/intfs */
1529 if (err < 0)
1530 goto fail;
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001531 /* export the usbdev device-node for libusb */
1532 udev->dev.devt = MKDEV(USB_DEVICE_MAJOR,
1533 (((udev->bus->busnum-1) * 128) + (udev->devnum-1)));
1534
Alan Stern195af2c2007-07-16 15:28:19 -04001535 /* Increment the parent's count of unsuspended children */
1536 if (udev->parent)
1537 usb_autoresume_device(udev->parent);
1538
Alan Stern782da722006-07-01 22:09:35 -04001539 /* Register the device. The device driver is responsible
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001540 * for adding the device files to sysfs and for configuring
1541 * the device.
Alan Stern782da722006-07-01 22:09:35 -04001542 */
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001543 err = device_add(&udev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 if (err) {
1545 dev_err(&udev->dev, "can't device_add, error %d\n", err);
1546 goto fail;
1547 }
Alan Stern9ad3d6c2005-11-17 17:10:32 -05001548
Alan Sterne16362a2008-05-20 16:37:34 -04001549 /* put device-specific files into sysfs */
1550 usb_create_sysfs_dev_files(udev);
1551
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07001552 /* Tell the world! */
Greg Kroah-Hartmanf2a383e2007-11-26 22:11:55 -08001553 announce_device(udev);
Greg Kroah-Hartmanc0664752006-08-11 01:55:12 -07001554 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555
1556fail:
1557 usb_set_device_state(udev, USB_STATE_NOTATTACHED);
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07001558 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559}
1560
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07001561
1562/**
Randy Dunlapfd39c862007-10-15 17:30:02 -07001563 * usb_deauthorize_device - deauthorize a device (usbcore-internal)
1564 * @usb_dev: USB device
1565 *
1566 * Move the USB device to a very basic state where interfaces are disabled
1567 * and the device is in fact unconfigured and unusable.
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07001568 *
1569 * We share a lock (that we have) with device_del(), so we need to
1570 * defer its call.
1571 */
1572int usb_deauthorize_device(struct usb_device *usb_dev)
1573{
1574 unsigned cnt;
1575 usb_lock_device(usb_dev);
1576 if (usb_dev->authorized == 0)
1577 goto out_unauthorized;
1578 usb_dev->authorized = 0;
1579 usb_set_configuration(usb_dev, -1);
1580 usb_dev->product = kstrdup("n/a (unauthorized)", GFP_KERNEL);
1581 usb_dev->manufacturer = kstrdup("n/a (unauthorized)", GFP_KERNEL);
1582 usb_dev->serial = kstrdup("n/a (unauthorized)", GFP_KERNEL);
1583 kfree(usb_dev->config);
1584 usb_dev->config = NULL;
1585 for (cnt = 0; cnt < usb_dev->descriptor.bNumConfigurations; cnt++)
1586 kfree(usb_dev->rawdescriptors[cnt]);
1587 usb_dev->descriptor.bNumConfigurations = 0;
1588 kfree(usb_dev->rawdescriptors);
1589out_unauthorized:
1590 usb_unlock_device(usb_dev);
1591 return 0;
1592}
1593
1594
1595int usb_authorize_device(struct usb_device *usb_dev)
1596{
1597 int result = 0, c;
1598 usb_lock_device(usb_dev);
1599 if (usb_dev->authorized == 1)
1600 goto out_authorized;
1601 kfree(usb_dev->product);
1602 usb_dev->product = NULL;
1603 kfree(usb_dev->manufacturer);
1604 usb_dev->manufacturer = NULL;
1605 kfree(usb_dev->serial);
1606 usb_dev->serial = NULL;
1607 result = usb_autoresume_device(usb_dev);
1608 if (result < 0) {
1609 dev_err(&usb_dev->dev,
1610 "can't autoresume for authorization: %d\n", result);
1611 goto error_autoresume;
1612 }
1613 result = usb_get_device_descriptor(usb_dev, sizeof(usb_dev->descriptor));
1614 if (result < 0) {
1615 dev_err(&usb_dev->dev, "can't re-read device descriptor for "
1616 "authorization: %d\n", result);
1617 goto error_device_descriptor;
1618 }
1619 usb_dev->authorized = 1;
1620 result = usb_configure_device(usb_dev);
1621 if (result < 0)
1622 goto error_configure;
1623 /* Choose and set the configuration. This registers the interfaces
1624 * with the driver core and lets interface drivers bind to them.
1625 */
Greg Kroah-Hartmanb5ea0602007-08-02 22:44:27 -06001626 c = usb_choose_configuration(usb_dev);
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07001627 if (c >= 0) {
1628 result = usb_set_configuration(usb_dev, c);
1629 if (result) {
1630 dev_err(&usb_dev->dev,
1631 "can't set config #%d, error %d\n", c, result);
1632 /* This need not be fatal. The user can try to
1633 * set other configurations. */
1634 }
1635 }
1636 dev_info(&usb_dev->dev, "authorized to connect\n");
1637error_configure:
1638error_device_descriptor:
1639error_autoresume:
1640out_authorized:
1641 usb_unlock_device(usb_dev); // complements locktree
1642 return result;
1643}
1644
1645
Inaky Perez-Gonzalez0165de02006-08-25 19:35:29 -07001646/* Returns 1 if @hub is a WUSB root hub, 0 otherwise */
1647static unsigned hub_is_wusb(struct usb_hub *hub)
1648{
1649 struct usb_hcd *hcd;
1650 if (hub->hdev->parent != NULL) /* not a root hub? */
1651 return 0;
1652 hcd = container_of(hub->hdev->bus, struct usb_hcd, self);
1653 return hcd->wireless;
1654}
1655
1656
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657#define PORT_RESET_TRIES 5
1658#define SET_ADDRESS_TRIES 2
1659#define GET_DESCRIPTOR_TRIES 2
1660#define SET_CONFIG_TRIES (2 * (use_both_schemes + 1))
1661#define USE_NEW_SCHEME(i) ((i) / 2 == old_scheme_first)
1662
1663#define HUB_ROOT_RESET_TIME 50 /* times are in msec */
1664#define HUB_SHORT_RESET_TIME 10
1665#define HUB_LONG_RESET_TIME 200
1666#define HUB_RESET_TIMEOUT 500
1667
1668static int hub_port_wait_reset(struct usb_hub *hub, int port1,
1669 struct usb_device *udev, unsigned int delay)
1670{
1671 int delay_time, ret;
1672 u16 portstatus;
1673 u16 portchange;
1674
1675 for (delay_time = 0;
1676 delay_time < HUB_RESET_TIMEOUT;
1677 delay_time += delay) {
1678 /* wait to give the device a chance to reset */
1679 msleep(delay);
1680
1681 /* read and decode port status */
1682 ret = hub_port_status(hub, port1, &portstatus, &portchange);
1683 if (ret < 0)
1684 return ret;
1685
1686 /* Device went away? */
1687 if (!(portstatus & USB_PORT_STAT_CONNECTION))
1688 return -ENOTCONN;
1689
Alan Sterndd4dd192007-05-04 11:55:54 -04001690 /* bomb out completely if the connection bounced */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 if ((portchange & USB_PORT_STAT_C_CONNECTION))
Alan Sterndd4dd192007-05-04 11:55:54 -04001692 return -ENOTCONN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693
1694 /* if we`ve finished resetting, then break out of the loop */
1695 if (!(portstatus & USB_PORT_STAT_RESET) &&
1696 (portstatus & USB_PORT_STAT_ENABLE)) {
Inaky Perez-Gonzalez0165de02006-08-25 19:35:29 -07001697 if (hub_is_wusb(hub))
1698 udev->speed = USB_SPEED_VARIABLE;
1699 else if (portstatus & USB_PORT_STAT_HIGH_SPEED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700 udev->speed = USB_SPEED_HIGH;
1701 else if (portstatus & USB_PORT_STAT_LOW_SPEED)
1702 udev->speed = USB_SPEED_LOW;
1703 else
1704 udev->speed = USB_SPEED_FULL;
1705 return 0;
1706 }
1707
1708 /* switch to the long delay after two short delay failures */
1709 if (delay_time >= 2 * HUB_SHORT_RESET_TIME)
1710 delay = HUB_LONG_RESET_TIME;
1711
1712 dev_dbg (hub->intfdev,
1713 "port %d not reset yet, waiting %dms\n",
1714 port1, delay);
1715 }
1716
1717 return -EBUSY;
1718}
1719
1720static int hub_port_reset(struct usb_hub *hub, int port1,
1721 struct usb_device *udev, unsigned int delay)
1722{
1723 int i, status;
1724
Alan Stern32fe0192007-10-10 16:27:07 -04001725 /* Block EHCI CF initialization during the port reset.
1726 * Some companion controllers don't like it when they mix.
1727 */
1728 down_read(&ehci_cf_port_reset_rwsem);
1729
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730 /* Reset the port */
1731 for (i = 0; i < PORT_RESET_TRIES; i++) {
1732 status = set_port_feature(hub->hdev,
1733 port1, USB_PORT_FEAT_RESET);
1734 if (status)
1735 dev_err(hub->intfdev,
1736 "cannot reset port %d (err = %d)\n",
1737 port1, status);
1738 else {
1739 status = hub_port_wait_reset(hub, port1, udev, delay);
David Brownelldd165252005-08-31 10:45:25 -07001740 if (status && status != -ENOTCONN)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741 dev_dbg(hub->intfdev,
1742 "port_wait_reset: err = %d\n",
1743 status);
1744 }
1745
1746 /* return on disconnect or reset */
1747 switch (status) {
1748 case 0:
David Brownellb7896962005-08-31 10:41:44 -07001749 /* TRSTRCY = 10 ms; plus some extra */
1750 msleep(10 + 40);
David Vrabel4953d142008-04-08 13:24:46 -07001751 update_address(udev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 /* FALL THROUGH */
1753 case -ENOTCONN:
1754 case -ENODEV:
1755 clear_port_feature(hub->hdev,
1756 port1, USB_PORT_FEAT_C_RESET);
1757 /* FIXME need disconnect() for NOTATTACHED device */
1758 usb_set_device_state(udev, status
1759 ? USB_STATE_NOTATTACHED
1760 : USB_STATE_DEFAULT);
Alan Stern32fe0192007-10-10 16:27:07 -04001761 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762 }
1763
1764 dev_dbg (hub->intfdev,
1765 "port %d not enabled, trying reset again...\n",
1766 port1);
1767 delay = HUB_LONG_RESET_TIME;
1768 }
1769
1770 dev_err (hub->intfdev,
1771 "Cannot enable port %i. Maybe the USB cable is bad?\n",
1772 port1);
1773
Alan Stern32fe0192007-10-10 16:27:07 -04001774 done:
1775 up_read(&ehci_cf_port_reset_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 return status;
1777}
1778
Alan Sternd388dab2006-07-01 22:14:24 -04001779#ifdef CONFIG_PM
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780
Alan Sternb01b03f2008-04-28 11:06:11 -04001781#define MASK_BITS (USB_PORT_STAT_POWER | USB_PORT_STAT_CONNECTION | \
1782 USB_PORT_STAT_SUSPEND)
1783#define WANT_BITS (USB_PORT_STAT_POWER | USB_PORT_STAT_CONNECTION)
1784
1785/* Determine whether the device on a port is ready for a normal resume,
1786 * is ready for a reset-resume, or should be disconnected.
1787 */
1788static int check_port_resume_type(struct usb_device *udev,
1789 struct usb_hub *hub, int port1,
1790 int status, unsigned portchange, unsigned portstatus)
1791{
1792 /* Is the device still present? */
1793 if (status || (portstatus & MASK_BITS) != WANT_BITS) {
1794 if (status >= 0)
1795 status = -ENODEV;
1796 }
1797
1798 /* Can't do a normal resume if the port isn't enabled */
1799 else if (!(portstatus & USB_PORT_STAT_ENABLE) && !udev->reset_resume)
1800 status = -ENODEV;
1801
1802 if (status) {
1803 dev_dbg(hub->intfdev,
1804 "port %d status %04x.%04x after resume, %d\n",
1805 port1, portchange, portstatus, status);
1806 } else if (udev->reset_resume) {
1807
1808 /* Late port handoff can set status-change bits */
1809 if (portchange & USB_PORT_STAT_C_CONNECTION)
1810 clear_port_feature(hub->hdev, port1,
1811 USB_PORT_FEAT_C_CONNECTION);
1812 if (portchange & USB_PORT_STAT_C_ENABLE)
1813 clear_port_feature(hub->hdev, port1,
1814 USB_PORT_FEAT_C_ENABLE);
1815 }
1816
1817 return status;
1818}
1819
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820#ifdef CONFIG_USB_SUSPEND
1821
1822/*
Alan Stern140d8f62006-07-01 22:07:21 -04001823 * usb_port_suspend - suspend a usb device's upstream port
Alan Stern624d6c02007-05-30 15:35:16 -04001824 * @udev: device that's no longer in active use, not a root hub
David Brownell5edbfb72005-09-22 22:45:26 -07001825 * Context: must be able to sleep; device not locked; pm locks held
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826 *
1827 * Suspends a USB device that isn't in active use, conserving power.
1828 * Devices may wake out of a suspend, if anything important happens,
1829 * using the remote wakeup mechanism. They may also be taken out of
Alan Stern140d8f62006-07-01 22:07:21 -04001830 * suspend by the host, using usb_port_resume(). It's also routine
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 * to disconnect devices while they are suspended.
1832 *
David Brownell390a8c32005-09-13 19:57:27 -07001833 * This only affects the USB hardware for a device; its interfaces
1834 * (and, for hubs, child devices) must already have been suspended.
1835 *
Alan Stern624d6c02007-05-30 15:35:16 -04001836 * Selective port suspend reduces power; most suspended devices draw
1837 * less than 500 uA. It's also used in OTG, along with remote wakeup.
1838 * All devices below the suspended port are also suspended.
1839 *
1840 * Devices leave suspend state when the host wakes them up. Some devices
1841 * also support "remote wakeup", where the device can activate the USB
1842 * tree above them to deliver data, such as a keypress or packet. In
1843 * some cases, this wakes the USB host.
1844 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845 * Suspending OTG devices may trigger HNP, if that's been enabled
1846 * between a pair of dual-role devices. That will change roles, such
1847 * as from A-Host to A-Peripheral or from B-Host back to B-Peripheral.
1848 *
Alan Stern4956ecc2007-05-30 16:51:28 -04001849 * Devices on USB hub ports have only one "suspend" state, corresponding
1850 * to ACPI D2, "may cause the device to lose some context".
1851 * State transitions include:
1852 *
1853 * - suspend, resume ... when the VBUS power link stays live
1854 * - suspend, disconnect ... VBUS lost
1855 *
1856 * Once VBUS drop breaks the circuit, the port it's using has to go through
1857 * normal re-enumeration procedures, starting with enabling VBUS power.
1858 * Other than re-initializing the hub (plug/unplug, except for root hubs),
1859 * Linux (2.6) currently has NO mechanisms to initiate that: no khubd
1860 * timer, no SRP, no requests through sysfs.
1861 *
1862 * If CONFIG_USB_SUSPEND isn't enabled, devices only really suspend when
1863 * the root hub for their bus goes into global suspend ... so we don't
1864 * (falsely) update the device power state to say it suspended.
1865 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 * Returns 0 on success, else negative errno.
1867 */
Alan Stern140d8f62006-07-01 22:07:21 -04001868int usb_port_suspend(struct usb_device *udev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869{
Alan Stern624d6c02007-05-30 15:35:16 -04001870 struct usb_hub *hub = hdev_to_hub(udev->parent);
1871 int port1 = udev->portnum;
1872 int status;
Alan Stern4956ecc2007-05-30 16:51:28 -04001873
Alan Stern624d6c02007-05-30 15:35:16 -04001874 // dev_dbg(hub->intfdev, "suspend port %d\n", port1);
1875
1876 /* enable remote wakeup when appropriate; this lets the device
1877 * wake up the upstream hub (including maybe the root hub).
1878 *
1879 * NOTE: OTG devices may issue remote wakeup (or SRP) even when
1880 * we don't explicitly enable it here.
1881 */
1882 if (udev->do_remote_wakeup) {
1883 status = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
1884 USB_REQ_SET_FEATURE, USB_RECIP_DEVICE,
1885 USB_DEVICE_REMOTE_WAKEUP, 0,
1886 NULL, 0,
1887 USB_CTRL_SET_TIMEOUT);
1888 if (status)
1889 dev_dbg(&udev->dev, "won't remote wakeup, status %d\n",
1890 status);
1891 }
1892
1893 /* see 7.1.7.6 */
1894 status = set_port_feature(hub->hdev, port1, USB_PORT_FEAT_SUSPEND);
1895 if (status) {
1896 dev_dbg(hub->intfdev, "can't suspend port %d, status %d\n",
1897 port1, status);
1898 /* paranoia: "should not happen" */
1899 (void) usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
1900 USB_REQ_CLEAR_FEATURE, USB_RECIP_DEVICE,
1901 USB_DEVICE_REMOTE_WAKEUP, 0,
1902 NULL, 0,
1903 USB_CTRL_SET_TIMEOUT);
1904 } else {
1905 /* device has up to 10 msec to fully suspend */
1906 dev_dbg(&udev->dev, "usb %ssuspend\n",
1907 udev->auto_pm ? "auto-" : "");
1908 usb_set_device_state(udev, USB_STATE_SUSPENDED);
1909 msleep(10);
1910 }
Alan Stern4956ecc2007-05-30 16:51:28 -04001911 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912}
David Brownellf3f32532005-09-22 22:37:29 -07001913
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914/*
David Brownell390a8c32005-09-13 19:57:27 -07001915 * If the USB "suspend" state is in use (rather than "global suspend"),
1916 * many devices will be individually taken out of suspend state using
Alan Stern54515fe2007-05-30 15:38:58 -04001917 * special "resume" signaling. This routine kicks in shortly after
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918 * hardware resume signaling is finished, either because of selective
1919 * resume (by host) or remote wakeup (by device) ... now see what changed
1920 * in the tree that's rooted at this device.
Alan Stern54515fe2007-05-30 15:38:58 -04001921 *
1922 * If @udev->reset_resume is set then the device is reset before the
1923 * status check is done.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924 */
Alan Stern140d8f62006-07-01 22:07:21 -04001925static int finish_port_resume(struct usb_device *udev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926{
Alan Stern54515fe2007-05-30 15:38:58 -04001927 int status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928 u16 devstatus;
1929
1930 /* caller owns the udev device lock */
Alan Stern54515fe2007-05-30 15:38:58 -04001931 dev_dbg(&udev->dev, "finish %sresume\n",
1932 udev->reset_resume ? "reset-" : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933
1934 /* usb ch9 identifies four variants of SUSPENDED, based on what
1935 * state the device resumes to. Linux currently won't see the
1936 * first two on the host side; they'd be inside hub_port_init()
1937 * during many timeouts, but khubd can't suspend until later.
1938 */
1939 usb_set_device_state(udev, udev->actconfig
1940 ? USB_STATE_CONFIGURED
1941 : USB_STATE_ADDRESS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942
Alan Stern54515fe2007-05-30 15:38:58 -04001943 /* 10.5.4.5 says not to reset a suspended port if the attached
1944 * device is enabled for remote wakeup. Hence the reset
1945 * operation is carried out here, after the port has been
1946 * resumed.
1947 */
1948 if (udev->reset_resume)
1949 status = usb_reset_device(udev);
1950
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951 /* 10.5.4.5 says be sure devices in the tree are still there.
1952 * For now let's assume the device didn't go crazy on resume,
1953 * and device drivers will know about any resume quirks.
1954 */
Alan Stern54515fe2007-05-30 15:38:58 -04001955 if (status == 0) {
Alan Stern46dede42007-08-14 10:56:10 -04001956 devstatus = 0;
Alan Stern54515fe2007-05-30 15:38:58 -04001957 status = usb_get_status(udev, USB_RECIP_DEVICE, 0, &devstatus);
1958 if (status >= 0)
Alan Stern46dede42007-08-14 10:56:10 -04001959 status = (status > 0 ? 0 : -ENODEV);
Alan Stern54515fe2007-05-30 15:38:58 -04001960 }
Alan Sternb40b7a92006-06-19 15:12:38 -04001961
Alan Stern624d6c02007-05-30 15:35:16 -04001962 if (status) {
1963 dev_dbg(&udev->dev, "gone after usb resume? status %d\n",
1964 status);
1965 } else if (udev->actconfig) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966 le16_to_cpus(&devstatus);
Alan Stern686314c2007-05-30 15:34:36 -04001967 if (devstatus & (1 << USB_DEVICE_REMOTE_WAKEUP)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968 status = usb_control_msg(udev,
1969 usb_sndctrlpipe(udev, 0),
1970 USB_REQ_CLEAR_FEATURE,
1971 USB_RECIP_DEVICE,
1972 USB_DEVICE_REMOTE_WAKEUP, 0,
1973 NULL, 0,
1974 USB_CTRL_SET_TIMEOUT);
Alan Sterna8e7c562006-07-01 22:11:02 -04001975 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976 dev_dbg(&udev->dev, "disable remote "
1977 "wakeup, status %d\n", status);
Alan Stern4bf0ba82005-11-21 11:58:07 -05001978 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979 status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980 }
1981 return status;
1982}
1983
Alan Stern624d6c02007-05-30 15:35:16 -04001984/*
1985 * usb_port_resume - re-activate a suspended usb device's upstream port
1986 * @udev: device to re-activate, not a root hub
1987 * Context: must be able to sleep; device not locked; pm locks held
1988 *
1989 * This will re-activate the suspended device, increasing power usage
1990 * while letting drivers communicate again with its endpoints.
1991 * USB resume explicitly guarantees that the power session between
1992 * the host and the device is the same as it was when the device
1993 * suspended.
1994 *
Alan Sternfeccc302008-03-03 15:15:59 -05001995 * If @udev->reset_resume is set then this routine won't check that the
1996 * port is still enabled. Furthermore, finish_port_resume() above will
Alan Stern54515fe2007-05-30 15:38:58 -04001997 * reset @udev. The end result is that a broken power session can be
1998 * recovered and @udev will appear to persist across a loss of VBUS power.
1999 *
2000 * For example, if a host controller doesn't maintain VBUS suspend current
2001 * during a system sleep or is reset when the system wakes up, all the USB
2002 * power sessions below it will be broken. This is especially troublesome
2003 * for mass-storage devices containing mounted filesystems, since the
2004 * device will appear to have disconnected and all the memory mappings
2005 * to it will be lost. Using the USB_PERSIST facility, the device can be
2006 * made to appear as if it had not disconnected.
2007 *
Alan Sternfeccc302008-03-03 15:15:59 -05002008 * This facility can be dangerous. Although usb_reset_device() makes
2009 * every effort to insure that the same device is present after the
Alan Stern54515fe2007-05-30 15:38:58 -04002010 * reset as before, it cannot provide a 100% guarantee. Furthermore it's
2011 * quite possible for a device to remain unaltered but its media to be
2012 * changed. If the user replaces a flash memory card while the system is
2013 * asleep, he will have only himself to blame when the filesystem on the
2014 * new card is corrupted and the system crashes.
2015 *
Alan Stern624d6c02007-05-30 15:35:16 -04002016 * Returns 0 on success, else negative errno.
2017 */
2018int usb_port_resume(struct usb_device *udev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019{
Alan Stern624d6c02007-05-30 15:35:16 -04002020 struct usb_hub *hub = hdev_to_hub(udev->parent);
2021 int port1 = udev->portnum;
2022 int status;
2023 u16 portchange, portstatus;
Alan Sternd25450c2006-11-20 11:14:30 -05002024
2025 /* Skip the initial Clear-Suspend step for a remote wakeup */
2026 status = hub_port_status(hub, port1, &portstatus, &portchange);
2027 if (status == 0 && !(portstatus & USB_PORT_STAT_SUSPEND))
2028 goto SuspendCleared;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029
2030 // dev_dbg(hub->intfdev, "resume port %d\n", port1);
2031
Alan Sternd5cbad42006-08-11 16:52:39 -04002032 set_bit(port1, hub->busy_bits);
2033
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034 /* see 7.1.7.7; affects power usage, but not budgeting */
2035 status = clear_port_feature(hub->hdev,
2036 port1, USB_PORT_FEAT_SUSPEND);
2037 if (status) {
Alan Stern624d6c02007-05-30 15:35:16 -04002038 dev_dbg(hub->intfdev, "can't resume port %d, status %d\n",
2039 port1, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041 /* drive resume for at least 20 msec */
Alan Stern686314c2007-05-30 15:34:36 -04002042 dev_dbg(&udev->dev, "usb %sresume\n",
2043 udev->auto_pm ? "auto-" : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044 msleep(25);
2045
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046 /* Virtual root hubs can trigger on GET_PORT_STATUS to
2047 * stop resume signaling. Then finish the resume
2048 * sequence.
2049 */
Alan Sternd25450c2006-11-20 11:14:30 -05002050 status = hub_port_status(hub, port1, &portstatus, &portchange);
Alan Stern54515fe2007-05-30 15:38:58 -04002051
Alan Sternb01b03f2008-04-28 11:06:11 -04002052 /* TRSMRCY = 10 msec */
2053 msleep(10);
2054 }
Alan Stern54515fe2007-05-30 15:38:58 -04002055
Alan Sternb01b03f2008-04-28 11:06:11 -04002056 SuspendCleared:
2057 if (status == 0) {
2058 if (portchange & USB_PORT_STAT_C_SUSPEND)
2059 clear_port_feature(hub->hdev, port1,
2060 USB_PORT_FEAT_C_SUSPEND);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062
Alan Sternd5cbad42006-08-11 16:52:39 -04002063 clear_bit(port1, hub->busy_bits);
Linus Torvalds09ca8ad2008-07-06 10:27:25 -07002064 if (!hub->hdev->parent && !hub->busy_bits[0])
2065 usb_enable_root_hub_irq(hub->hdev->bus);
Alan Sternd5cbad42006-08-11 16:52:39 -04002066
Alan Sternb01b03f2008-04-28 11:06:11 -04002067 status = check_port_resume_type(udev,
2068 hub, port1, status, portchange, portstatus);
Alan Stern54515fe2007-05-30 15:38:58 -04002069 if (status == 0)
2070 status = finish_port_resume(udev);
2071 if (status < 0) {
2072 dev_dbg(&udev->dev, "can't resume, status %d\n", status);
2073 hub_port_logical_disconnect(hub, port1);
2074 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075 return status;
2076}
2077
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078static int remote_wakeup(struct usb_device *udev)
2079{
2080 int status = 0;
2081
Alan Stern9ad3d6c2005-11-17 17:10:32 -05002082 usb_lock_device(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083 if (udev->state == USB_STATE_SUSPENDED) {
Alan Stern645daaa2006-08-30 15:47:02 -04002084 dev_dbg(&udev->dev, "usb %sresume\n", "wakeup-");
Alan Stern19410442007-03-27 13:33:59 -04002085 usb_mark_last_busy(udev);
Alan Stern6b157c92007-03-13 16:37:30 -04002086 status = usb_external_resume_device(udev);
Alan Sternd25450c2006-11-20 11:14:30 -05002087 }
Alan Stern9ad3d6c2005-11-17 17:10:32 -05002088 usb_unlock_device(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089 return status;
2090}
2091
Alan Sternd388dab2006-07-01 22:14:24 -04002092#else /* CONFIG_USB_SUSPEND */
2093
2094/* When CONFIG_USB_SUSPEND isn't set, we never suspend or resume any ports. */
2095
2096int usb_port_suspend(struct usb_device *udev)
2097{
2098 return 0;
2099}
2100
Alan Sternb01b03f2008-04-28 11:06:11 -04002101/* However we may need to do a reset-resume */
2102
Alan Sternd388dab2006-07-01 22:14:24 -04002103int usb_port_resume(struct usb_device *udev)
2104{
Alan Sternb01b03f2008-04-28 11:06:11 -04002105 struct usb_hub *hub = hdev_to_hub(udev->parent);
2106 int port1 = udev->portnum;
2107 int status;
2108 u16 portchange, portstatus;
Alan Stern54515fe2007-05-30 15:38:58 -04002109
Alan Sternb01b03f2008-04-28 11:06:11 -04002110 status = hub_port_status(hub, port1, &portstatus, &portchange);
2111 status = check_port_resume_type(udev,
2112 hub, port1, status, portchange, portstatus);
2113
2114 if (status) {
2115 dev_dbg(&udev->dev, "can't resume, status %d\n", status);
2116 hub_port_logical_disconnect(hub, port1);
2117 } else if (udev->reset_resume) {
Alan Stern54515fe2007-05-30 15:38:58 -04002118 dev_dbg(&udev->dev, "reset-resume\n");
2119 status = usb_reset_device(udev);
2120 }
2121 return status;
Alan Sternd388dab2006-07-01 22:14:24 -04002122}
2123
2124static inline int remote_wakeup(struct usb_device *udev)
2125{
2126 return 0;
2127}
2128
2129#endif
2130
David Brownelldb690872005-09-13 19:56:33 -07002131static int hub_suspend(struct usb_interface *intf, pm_message_t msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132{
2133 struct usb_hub *hub = usb_get_intfdata (intf);
2134 struct usb_device *hdev = hub->hdev;
2135 unsigned port1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136
David Brownellc9f89fa2005-09-13 19:57:04 -07002137 /* fail if children aren't already suspended */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138 for (port1 = 1; port1 <= hdev->maxchild; port1++) {
2139 struct usb_device *udev;
2140
2141 udev = hdev->children [port1-1];
Alan Stern6840d252007-09-10 11:34:26 -04002142 if (udev && udev->can_submit) {
Alan Stern645daaa2006-08-30 15:47:02 -04002143 if (!hdev->auto_pm)
2144 dev_dbg(&intf->dev, "port %d nyet suspended\n",
2145 port1);
David Brownellc9f89fa2005-09-13 19:57:04 -07002146 return -EBUSY;
2147 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148 }
2149
Harvey Harrison441b62c2008-03-03 16:08:34 -08002150 dev_dbg(&intf->dev, "%s\n", __func__);
Alan Stern40f122f2006-11-09 14:44:33 -05002151
David Brownellc9f89fa2005-09-13 19:57:04 -07002152 /* stop khubd and related activity */
2153 hub_quiesce(hub);
Alan Sternb6f64362007-05-04 11:51:54 -04002154 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155}
2156
2157static int hub_resume(struct usb_interface *intf)
2158{
Alan Stern5e6effa2008-03-03 15:15:51 -05002159 struct usb_hub *hub = usb_get_intfdata(intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160
Alan Stern5e6effa2008-03-03 15:15:51 -05002161 dev_dbg(&intf->dev, "%s\n", __func__);
2162 hub_restart(hub, HUB_RESUME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163 return 0;
2164}
2165
Alan Sternb41a60e2007-05-30 15:39:33 -04002166static int hub_reset_resume(struct usb_interface *intf)
Alan Sternf07600c2007-05-30 15:38:16 -04002167{
Alan Sternb41a60e2007-05-30 15:39:33 -04002168 struct usb_hub *hub = usb_get_intfdata(intf);
Alan Sternf07600c2007-05-30 15:38:16 -04002169
Alan Stern5e6effa2008-03-03 15:15:51 -05002170 dev_dbg(&intf->dev, "%s\n", __func__);
Alan Sternb41a60e2007-05-30 15:39:33 -04002171 hub_power_on(hub);
Alan Stern5e6effa2008-03-03 15:15:51 -05002172 hub_restart(hub, HUB_RESET_RESUME);
Alan Sternf07600c2007-05-30 15:38:16 -04002173 return 0;
2174}
2175
Alan Stern54515fe2007-05-30 15:38:58 -04002176/**
2177 * usb_root_hub_lost_power - called by HCD if the root hub lost Vbus power
2178 * @rhdev: struct usb_device for the root hub
2179 *
2180 * The USB host controller driver calls this function when its root hub
2181 * is resumed and Vbus power has been interrupted or the controller
Alan Sternfeccc302008-03-03 15:15:59 -05002182 * has been reset. The routine marks @rhdev as having lost power.
2183 * When the hub driver is resumed it will take notice and carry out
2184 * power-session recovery for all the "USB-PERSIST"-enabled child devices;
2185 * the others will be disconnected.
Alan Stern54515fe2007-05-30 15:38:58 -04002186 */
2187void usb_root_hub_lost_power(struct usb_device *rhdev)
2188{
2189 dev_warn(&rhdev->dev, "root hub lost power or was reset\n");
2190 rhdev->reset_resume = 1;
2191}
2192EXPORT_SYMBOL_GPL(usb_root_hub_lost_power);
2193
Alan Sternd388dab2006-07-01 22:14:24 -04002194#else /* CONFIG_PM */
2195
2196static inline int remote_wakeup(struct usb_device *udev)
2197{
2198 return 0;
2199}
2200
Alan Sternf07600c2007-05-30 15:38:16 -04002201#define hub_suspend NULL
2202#define hub_resume NULL
2203#define hub_reset_resume NULL
Alan Sternd388dab2006-07-01 22:14:24 -04002204#endif
2205
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206
2207/* USB 2.0 spec, 7.1.7.3 / fig 7-29:
2208 *
2209 * Between connect detection and reset signaling there must be a delay
2210 * of 100ms at least for debounce and power-settling. The corresponding
2211 * timer shall restart whenever the downstream port detects a disconnect.
2212 *
2213 * Apparently there are some bluetooth and irda-dongles and a number of
2214 * low-speed devices for which this debounce period may last over a second.
2215 * Not covered by the spec - but easy to deal with.
2216 *
2217 * This implementation uses a 1500ms total debounce timeout; if the
2218 * connection isn't stable by then it returns -ETIMEDOUT. It checks
2219 * every 25ms for transient disconnects. When the port status has been
2220 * unchanged for 100ms it returns the port status.
2221 */
2222
2223#define HUB_DEBOUNCE_TIMEOUT 1500
2224#define HUB_DEBOUNCE_STEP 25
2225#define HUB_DEBOUNCE_STABLE 100
2226
2227static int hub_port_debounce(struct usb_hub *hub, int port1)
2228{
2229 int ret;
2230 int total_time, stable_time = 0;
2231 u16 portchange, portstatus;
2232 unsigned connection = 0xffff;
2233
2234 for (total_time = 0; ; total_time += HUB_DEBOUNCE_STEP) {
2235 ret = hub_port_status(hub, port1, &portstatus, &portchange);
2236 if (ret < 0)
2237 return ret;
2238
2239 if (!(portchange & USB_PORT_STAT_C_CONNECTION) &&
2240 (portstatus & USB_PORT_STAT_CONNECTION) == connection) {
2241 stable_time += HUB_DEBOUNCE_STEP;
2242 if (stable_time >= HUB_DEBOUNCE_STABLE)
2243 break;
2244 } else {
2245 stable_time = 0;
2246 connection = portstatus & USB_PORT_STAT_CONNECTION;
2247 }
2248
2249 if (portchange & USB_PORT_STAT_C_CONNECTION) {
2250 clear_port_feature(hub->hdev, port1,
2251 USB_PORT_FEAT_C_CONNECTION);
2252 }
2253
2254 if (total_time >= HUB_DEBOUNCE_TIMEOUT)
2255 break;
2256 msleep(HUB_DEBOUNCE_STEP);
2257 }
2258
2259 dev_dbg (hub->intfdev,
2260 "debounce: port %d: total %dms stable %dms status 0x%x\n",
2261 port1, total_time, stable_time, portstatus);
2262
2263 if (stable_time < HUB_DEBOUNCE_STABLE)
2264 return -ETIMEDOUT;
2265 return portstatus;
2266}
2267
Inaky Perez-Gonzalezfc721f52008-04-08 13:24:46 -07002268void usb_ep0_reinit(struct usb_device *udev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269{
2270 usb_disable_endpoint(udev, 0 + USB_DIR_IN);
2271 usb_disable_endpoint(udev, 0 + USB_DIR_OUT);
Alan Sternbdd016b2007-07-30 17:05:22 -04002272 usb_enable_endpoint(udev, &udev->ep0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273}
Inaky Perez-Gonzalezfc721f52008-04-08 13:24:46 -07002274EXPORT_SYMBOL_GPL(usb_ep0_reinit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275
2276#define usb_sndaddr0pipe() (PIPE_CONTROL << 30)
2277#define usb_rcvaddr0pipe() ((PIPE_CONTROL << 30) | USB_DIR_IN)
2278
Alan Stern4326ed02007-07-30 17:08:43 -04002279static int hub_set_address(struct usb_device *udev, int devnum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280{
2281 int retval;
2282
Alan Stern4326ed02007-07-30 17:08:43 -04002283 if (devnum <= 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284 return -EINVAL;
2285 if (udev->state == USB_STATE_ADDRESS)
2286 return 0;
2287 if (udev->state != USB_STATE_DEFAULT)
2288 return -EINVAL;
2289 retval = usb_control_msg(udev, usb_sndaddr0pipe(),
Alan Stern4326ed02007-07-30 17:08:43 -04002290 USB_REQ_SET_ADDRESS, 0, devnum, 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291 NULL, 0, USB_CTRL_SET_TIMEOUT);
2292 if (retval == 0) {
David Vrabel4953d142008-04-08 13:24:46 -07002293 /* Device now using proper address. */
2294 update_address(udev, devnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295 usb_set_device_state(udev, USB_STATE_ADDRESS);
Inaky Perez-Gonzalezfc721f52008-04-08 13:24:46 -07002296 usb_ep0_reinit(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297 }
2298 return retval;
2299}
2300
2301/* Reset device, (re)assign address, get device descriptor.
2302 * Device connection must be stable, no more debouncing needed.
2303 * Returns device in USB_STATE_ADDRESS, except on error.
2304 *
2305 * If this is called for an already-existing device (as part of
2306 * usb_reset_device), the caller must own the device lock. For a
2307 * newly detected device that is not accessible through any global
2308 * pointers, it's not necessary to lock the device.
2309 */
2310static int
2311hub_port_init (struct usb_hub *hub, struct usb_device *udev, int port1,
2312 int retry_counter)
2313{
Arjan van de Ven4186ecf2006-01-11 15:55:29 +01002314 static DEFINE_MUTEX(usb_address0_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315
2316 struct usb_device *hdev = hub->hdev;
2317 int i, j, retval;
2318 unsigned delay = HUB_SHORT_RESET_TIME;
2319 enum usb_device_speed oldspeed = udev->speed;
Inaky Perez-Gonzalez83a07192006-08-25 19:35:31 -07002320 char *speed, *type;
Alan Stern4326ed02007-07-30 17:08:43 -04002321 int devnum = udev->devnum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322
2323 /* root hub ports have a slightly longer reset period
2324 * (from USB 2.0 spec, section 7.1.7.5)
2325 */
2326 if (!hdev->parent) {
2327 delay = HUB_ROOT_RESET_TIME;
2328 if (port1 == hdev->bus->otg_port)
2329 hdev->bus->b_hnp_enable = 0;
2330 }
2331
2332 /* Some low speed devices have problems with the quick delay, so */
2333 /* be a bit pessimistic with those devices. RHbug #23670 */
2334 if (oldspeed == USB_SPEED_LOW)
2335 delay = HUB_LONG_RESET_TIME;
2336
Arjan van de Ven4186ecf2006-01-11 15:55:29 +01002337 mutex_lock(&usb_address0_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338
2339 /* Reset the device; full speed may morph to high speed */
2340 retval = hub_port_reset(hub, port1, udev, delay);
2341 if (retval < 0) /* error or disconnect */
2342 goto fail;
2343 /* success, speed is known */
2344 retval = -ENODEV;
2345
2346 if (oldspeed != USB_SPEED_UNKNOWN && oldspeed != udev->speed) {
2347 dev_dbg(&udev->dev, "device reset changed speed!\n");
2348 goto fail;
2349 }
2350 oldspeed = udev->speed;
Alan Stern4326ed02007-07-30 17:08:43 -04002351
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352 /* USB 2.0 section 5.5.3 talks about ep0 maxpacket ...
2353 * it's fixed size except for full speed devices.
Inaky Perez-Gonzalez5bb6e0a2006-08-25 19:35:30 -07002354 * For Wireless USB devices, ep0 max packet is always 512 (tho
2355 * reported as 0xff in the device descriptor). WUSB1.0[4.8.1].
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356 */
2357 switch (udev->speed) {
Inaky Perez-Gonzalez5bb6e0a2006-08-25 19:35:30 -07002358 case USB_SPEED_VARIABLE: /* fixed at 512 */
2359 udev->ep0.desc.wMaxPacketSize = __constant_cpu_to_le16(512);
2360 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361 case USB_SPEED_HIGH: /* fixed at 64 */
2362 udev->ep0.desc.wMaxPacketSize = __constant_cpu_to_le16(64);
2363 break;
2364 case USB_SPEED_FULL: /* 8, 16, 32, or 64 */
2365 /* to determine the ep0 maxpacket size, try to read
2366 * the device descriptor to get bMaxPacketSize0 and
2367 * then correct our initial guess.
2368 */
2369 udev->ep0.desc.wMaxPacketSize = __constant_cpu_to_le16(64);
2370 break;
2371 case USB_SPEED_LOW: /* fixed at 8 */
2372 udev->ep0.desc.wMaxPacketSize = __constant_cpu_to_le16(8);
2373 break;
2374 default:
2375 goto fail;
2376 }
2377
Inaky Perez-Gonzalez83a07192006-08-25 19:35:31 -07002378 type = "";
2379 switch (udev->speed) {
2380 case USB_SPEED_LOW: speed = "low"; break;
2381 case USB_SPEED_FULL: speed = "full"; break;
2382 case USB_SPEED_HIGH: speed = "high"; break;
2383 case USB_SPEED_VARIABLE:
2384 speed = "variable";
2385 type = "Wireless ";
2386 break;
2387 default: speed = "?"; break;
2388 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002389 dev_info (&udev->dev,
Inaky Perez-Gonzalez83a07192006-08-25 19:35:31 -07002390 "%s %s speed %sUSB device using %s and address %d\n",
2391 (udev->config) ? "reset" : "new", speed, type,
Alan Stern4326ed02007-07-30 17:08:43 -04002392 udev->bus->controller->driver->name, devnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393
2394 /* Set up TT records, if needed */
2395 if (hdev->tt) {
2396 udev->tt = hdev->tt;
2397 udev->ttport = hdev->ttport;
2398 } else if (udev->speed != USB_SPEED_HIGH
2399 && hdev->speed == USB_SPEED_HIGH) {
2400 udev->tt = &hub->tt;
2401 udev->ttport = port1;
2402 }
2403
2404 /* Why interleave GET_DESCRIPTOR and SET_ADDRESS this way?
2405 * Because device hardware and firmware is sometimes buggy in
2406 * this area, and this is how Linux has done it for ages.
2407 * Change it cautiously.
2408 *
2409 * NOTE: If USE_NEW_SCHEME() is true we will start by issuing
2410 * a 64-byte GET_DESCRIPTOR request. This is what Windows does,
2411 * so it may help with some non-standards-compliant devices.
2412 * Otherwise we start with SET_ADDRESS and then try to read the
2413 * first 8 bytes of the device descriptor to get the ep0 maxpacket
2414 * value.
2415 */
2416 for (i = 0; i < GET_DESCRIPTOR_TRIES; (++i, msleep(100))) {
2417 if (USE_NEW_SCHEME(retry_counter)) {
2418 struct usb_device_descriptor *buf;
2419 int r = 0;
2420
2421#define GET_DESCRIPTOR_BUFSIZE 64
2422 buf = kmalloc(GET_DESCRIPTOR_BUFSIZE, GFP_NOIO);
2423 if (!buf) {
2424 retval = -ENOMEM;
2425 continue;
2426 }
2427
Alan Sternb89ee192007-05-11 10:19:04 -04002428 /* Retry on all errors; some devices are flakey.
2429 * 255 is for WUSB devices, we actually need to use
2430 * 512 (WUSB1.0[4.8.1]).
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431 */
2432 for (j = 0; j < 3; ++j) {
2433 buf->bMaxPacketSize0 = 0;
2434 r = usb_control_msg(udev, usb_rcvaddr0pipe(),
2435 USB_REQ_GET_DESCRIPTOR, USB_DIR_IN,
2436 USB_DT_DEVICE << 8, 0,
2437 buf, GET_DESCRIPTOR_BUFSIZE,
Alan Sternb89ee192007-05-11 10:19:04 -04002438 USB_CTRL_GET_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439 switch (buf->bMaxPacketSize0) {
Inaky Perez-Gonzalez5bb6e0a2006-08-25 19:35:30 -07002440 case 8: case 16: case 32: case 64: case 255:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441 if (buf->bDescriptorType ==
2442 USB_DT_DEVICE) {
2443 r = 0;
2444 break;
2445 }
2446 /* FALL THROUGH */
2447 default:
2448 if (r == 0)
2449 r = -EPROTO;
2450 break;
2451 }
2452 if (r == 0)
2453 break;
2454 }
2455 udev->descriptor.bMaxPacketSize0 =
2456 buf->bMaxPacketSize0;
2457 kfree(buf);
2458
2459 retval = hub_port_reset(hub, port1, udev, delay);
2460 if (retval < 0) /* error or disconnect */
2461 goto fail;
2462 if (oldspeed != udev->speed) {
2463 dev_dbg(&udev->dev,
2464 "device reset changed speed!\n");
2465 retval = -ENODEV;
2466 goto fail;
2467 }
2468 if (r) {
2469 dev_err(&udev->dev, "device descriptor "
2470 "read/%s, error %d\n",
2471 "64", r);
2472 retval = -EMSGSIZE;
2473 continue;
2474 }
2475#undef GET_DESCRIPTOR_BUFSIZE
2476 }
2477
Inaky Perez-Gonzalez6c529cd2008-04-08 13:24:46 -07002478 /*
2479 * If device is WUSB, we already assigned an
2480 * unauthorized address in the Connect Ack sequence;
2481 * authorization will assign the final address.
2482 */
2483 if (udev->wusb == 0) {
2484 for (j = 0; j < SET_ADDRESS_TRIES; ++j) {
2485 retval = hub_set_address(udev, devnum);
2486 if (retval >= 0)
2487 break;
2488 msleep(200);
2489 }
2490 if (retval < 0) {
2491 dev_err(&udev->dev,
2492 "device not accepting address %d, error %d\n",
2493 devnum, retval);
2494 goto fail;
2495 }
2496
2497 /* cope with hardware quirkiness:
2498 * - let SET_ADDRESS settle, some device hardware wants it
2499 * - read ep0 maxpacket even for high and low speed,
2500 */
2501 msleep(10);
2502 if (USE_NEW_SCHEME(retry_counter))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002503 break;
Inaky Perez-Gonzalez6c529cd2008-04-08 13:24:46 -07002504 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002505
2506 retval = usb_get_device_descriptor(udev, 8);
2507 if (retval < 8) {
2508 dev_err(&udev->dev, "device descriptor "
2509 "read/%s, error %d\n",
2510 "8", retval);
2511 if (retval >= 0)
2512 retval = -EMSGSIZE;
2513 } else {
2514 retval = 0;
2515 break;
2516 }
2517 }
2518 if (retval)
2519 goto fail;
2520
Inaky Perez-Gonzalez6c529cd2008-04-08 13:24:46 -07002521 i = udev->descriptor.bMaxPacketSize0 == 0xff? /* wusb device? */
Inaky Perez-Gonzalez5bb6e0a2006-08-25 19:35:30 -07002522 512 : udev->descriptor.bMaxPacketSize0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002523 if (le16_to_cpu(udev->ep0.desc.wMaxPacketSize) != i) {
2524 if (udev->speed != USB_SPEED_FULL ||
2525 !(i == 8 || i == 16 || i == 32 || i == 64)) {
2526 dev_err(&udev->dev, "ep0 maxpacket = %d\n", i);
2527 retval = -EMSGSIZE;
2528 goto fail;
2529 }
2530 dev_dbg(&udev->dev, "ep0 maxpacket = %d\n", i);
2531 udev->ep0.desc.wMaxPacketSize = cpu_to_le16(i);
Inaky Perez-Gonzalezfc721f52008-04-08 13:24:46 -07002532 usb_ep0_reinit(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533 }
2534
2535 retval = usb_get_device_descriptor(udev, USB_DT_DEVICE_SIZE);
2536 if (retval < (signed)sizeof(udev->descriptor)) {
2537 dev_err(&udev->dev, "device descriptor read/%s, error %d\n",
2538 "all", retval);
2539 if (retval >= 0)
2540 retval = -ENOMSG;
2541 goto fail;
2542 }
2543
2544 retval = 0;
2545
2546fail:
Alan Stern4326ed02007-07-30 17:08:43 -04002547 if (retval) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548 hub_port_disable(hub, port1, 0);
David Vrabel4953d142008-04-08 13:24:46 -07002549 update_address(udev, devnum); /* for disconnect processing */
Alan Stern4326ed02007-07-30 17:08:43 -04002550 }
Arjan van de Ven4186ecf2006-01-11 15:55:29 +01002551 mutex_unlock(&usb_address0_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552 return retval;
2553}
2554
2555static void
2556check_highspeed (struct usb_hub *hub, struct usb_device *udev, int port1)
2557{
2558 struct usb_qualifier_descriptor *qual;
2559 int status;
2560
Christoph Lametere94b1762006-12-06 20:33:17 -08002561 qual = kmalloc (sizeof *qual, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562 if (qual == NULL)
2563 return;
2564
2565 status = usb_get_descriptor (udev, USB_DT_DEVICE_QUALIFIER, 0,
2566 qual, sizeof *qual);
2567 if (status == sizeof *qual) {
2568 dev_info(&udev->dev, "not running at top speed; "
2569 "connect to a high speed hub\n");
2570 /* hub LEDs are probably harder to miss than syslog */
2571 if (hub->has_indicators) {
2572 hub->indicator[port1-1] = INDICATOR_GREEN_BLINK;
David Howellsc4028952006-11-22 14:57:56 +00002573 schedule_delayed_work (&hub->leds, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002574 }
2575 }
Jesper Juhl1bc3c9e2005-04-18 17:39:34 -07002576 kfree(qual);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002577}
2578
2579static unsigned
2580hub_power_remaining (struct usb_hub *hub)
2581{
2582 struct usb_device *hdev = hub->hdev;
2583 int remaining;
Alan Stern55c52712005-11-23 12:03:12 -05002584 int port1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002585
Alan Stern55c52712005-11-23 12:03:12 -05002586 if (!hub->limited_power)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002587 return 0;
2588
Alan Stern55c52712005-11-23 12:03:12 -05002589 remaining = hdev->bus_mA - hub->descriptor->bHubContrCurrent;
2590 for (port1 = 1; port1 <= hdev->maxchild; ++port1) {
2591 struct usb_device *udev = hdev->children[port1 - 1];
2592 int delta;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002593
2594 if (!udev)
2595 continue;
2596
Alan Stern55c52712005-11-23 12:03:12 -05002597 /* Unconfigured devices may not use more than 100mA,
2598 * or 8mA for OTG ports */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002599 if (udev->actconfig)
Alan Stern55c52712005-11-23 12:03:12 -05002600 delta = udev->actconfig->desc.bMaxPower * 2;
2601 else if (port1 != udev->bus->otg_port || hdev->parent)
2602 delta = 100;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002603 else
Alan Stern55c52712005-11-23 12:03:12 -05002604 delta = 8;
2605 if (delta > hub->mA_per_port)
2606 dev_warn(&udev->dev, "%dmA is over %umA budget "
2607 "for port %d!\n",
2608 delta, hub->mA_per_port, port1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002609 remaining -= delta;
2610 }
2611 if (remaining < 0) {
Alan Stern55c52712005-11-23 12:03:12 -05002612 dev_warn(hub->intfdev, "%dmA over power budget!\n",
2613 - remaining);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002614 remaining = 0;
2615 }
2616 return remaining;
2617}
2618
2619/* Handle physical or logical connection change events.
2620 * This routine is called when:
2621 * a port connection-change occurs;
2622 * a port enable-change occurs (often caused by EMI);
2623 * usb_reset_device() encounters changed descriptors (as from
2624 * a firmware download)
2625 * caller already locked the hub
2626 */
2627static void hub_port_connect_change(struct usb_hub *hub, int port1,
2628 u16 portstatus, u16 portchange)
2629{
2630 struct usb_device *hdev = hub->hdev;
2631 struct device *hub_dev = hub->intfdev;
Balaji Rao90da0962007-11-22 01:58:14 +05302632 struct usb_hcd *hcd = bus_to_hcd(hdev->bus);
Alan Stern24618b02008-04-28 11:06:28 -04002633 unsigned wHubCharacteristics =
2634 le16_to_cpu(hub->descriptor->wHubCharacteristics);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635 int status, i;
Alan Stern24618b02008-04-28 11:06:28 -04002636
Linus Torvalds1da177e2005-04-16 15:20:36 -07002637 dev_dbg (hub_dev,
2638 "port %d, status %04x, change %04x, %s\n",
2639 port1, portstatus, portchange, portspeed (portstatus));
2640
2641 if (hub->has_indicators) {
2642 set_port_led(hub, port1, HUB_LED_AUTO);
2643 hub->indicator[port1-1] = INDICATOR_AUTO;
2644 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002645
2646#ifdef CONFIG_USB_OTG
2647 /* during HNP, don't repeat the debounce */
2648 if (hdev->bus->is_b_host)
Alan Stern24618b02008-04-28 11:06:28 -04002649 portchange &= ~(USB_PORT_STAT_C_CONNECTION |
2650 USB_PORT_STAT_C_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002651#endif
2652
Alan Stern24618b02008-04-28 11:06:28 -04002653 /* Try to use the debounce delay for protection against
2654 * port-enable changes caused, for example, by EMI.
2655 */
2656 if (portchange & (USB_PORT_STAT_C_CONNECTION |
2657 USB_PORT_STAT_C_ENABLE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002658 status = hub_port_debounce(hub, port1);
Alan Sternd4b7d8e2007-05-22 11:48:17 -04002659 if (status < 0) {
2660 if (printk_ratelimit())
2661 dev_err (hub_dev, "connect-debounce failed, "
2662 "port %d disabled\n", port1);
Alan Stern24618b02008-04-28 11:06:28 -04002663 portstatus &= ~USB_PORT_STAT_CONNECTION;
2664 } else {
2665 portstatus = status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002667 }
2668
Alan Stern24618b02008-04-28 11:06:28 -04002669 /* Disconnect any existing devices under this port */
2670 if (hdev->children[port1-1])
2671 usb_disconnect(&hdev->children[port1-1]);
2672 clear_bit(port1, hub->change_bits);
2673
2674 /* Return now if debouncing failed or nothing is connected */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002675 if (!(portstatus & USB_PORT_STAT_CONNECTION)) {
2676
2677 /* maybe switch power back on (e.g. root hub was reset) */
Greg Kroah-Hartman74ad9bd2005-06-20 21:15:16 -07002678 if ((wHubCharacteristics & HUB_CHAR_LPSM) < 2
Linus Torvalds1da177e2005-04-16 15:20:36 -07002679 && !(portstatus & (1 << USB_PORT_FEAT_POWER)))
2680 set_port_feature(hdev, port1, USB_PORT_FEAT_POWER);
2681
2682 if (portstatus & USB_PORT_STAT_ENABLE)
2683 goto done;
2684 return;
2685 }
2686
Linus Torvalds1da177e2005-04-16 15:20:36 -07002687 for (i = 0; i < SET_CONFIG_TRIES; i++) {
2688 struct usb_device *udev;
2689
2690 /* reallocate for each attempt, since references
2691 * to the previous one can escape in various ways
2692 */
2693 udev = usb_alloc_dev(hdev, hdev->bus, port1);
2694 if (!udev) {
2695 dev_err (hub_dev,
2696 "couldn't allocate port %d usb_device\n",
2697 port1);
2698 goto done;
2699 }
2700
2701 usb_set_device_state(udev, USB_STATE_POWERED);
2702 udev->speed = USB_SPEED_UNKNOWN;
Alan Stern55c52712005-11-23 12:03:12 -05002703 udev->bus_mA = hub->mA_per_port;
Alan Sternb6956ff2006-08-30 15:46:48 -04002704 udev->level = hdev->level + 1;
Inaky Perez-Gonzalez8af548d2008-04-08 13:24:46 -07002705 udev->wusb = hub_is_wusb(hub);
Alan Stern55c52712005-11-23 12:03:12 -05002706
Linus Torvalds1da177e2005-04-16 15:20:36 -07002707 /* set the address */
2708 choose_address(udev);
2709 if (udev->devnum <= 0) {
2710 status = -ENOTCONN; /* Don't retry */
2711 goto loop;
2712 }
2713
2714 /* reset and get descriptor */
2715 status = hub_port_init(hub, udev, port1, i);
2716 if (status < 0)
2717 goto loop;
2718
2719 /* consecutive bus-powered hubs aren't reliable; they can
2720 * violate the voltage drop budget. if the new child has
2721 * a "powered" LED, users should notice we didn't enable it
2722 * (without reading syslog), even without per-port LEDs
2723 * on the parent.
2724 */
2725 if (udev->descriptor.bDeviceClass == USB_CLASS_HUB
Alan Stern55c52712005-11-23 12:03:12 -05002726 && udev->bus_mA <= 100) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002727 u16 devstat;
2728
2729 status = usb_get_status(udev, USB_RECIP_DEVICE, 0,
2730 &devstat);
Alan Stern55c52712005-11-23 12:03:12 -05002731 if (status < 2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002732 dev_dbg(&udev->dev, "get status %d ?\n", status);
2733 goto loop_disable;
2734 }
Alan Stern55c52712005-11-23 12:03:12 -05002735 le16_to_cpus(&devstat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002736 if ((devstat & (1 << USB_DEVICE_SELF_POWERED)) == 0) {
2737 dev_err(&udev->dev,
2738 "can't connect bus-powered hub "
2739 "to this port\n");
2740 if (hub->has_indicators) {
2741 hub->indicator[port1-1] =
2742 INDICATOR_AMBER_BLINK;
David Howellsc4028952006-11-22 14:57:56 +00002743 schedule_delayed_work (&hub->leds, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002744 }
2745 status = -ENOTCONN; /* Don't retry */
2746 goto loop_disable;
2747 }
2748 }
2749
2750 /* check for devices running slower than they could */
2751 if (le16_to_cpu(udev->descriptor.bcdUSB) >= 0x0200
2752 && udev->speed == USB_SPEED_FULL
2753 && highspeed_hubs != 0)
2754 check_highspeed (hub, udev, port1);
2755
2756 /* Store the parent's children[] pointer. At this point
2757 * udev becomes globally accessible, although presumably
2758 * no one will look at it until hdev is unlocked.
2759 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002760 status = 0;
2761
2762 /* We mustn't add new devices if the parent hub has
2763 * been disconnected; we would race with the
2764 * recursively_mark_NOTATTACHED() routine.
2765 */
2766 spin_lock_irq(&device_state_lock);
2767 if (hdev->state == USB_STATE_NOTATTACHED)
2768 status = -ENOTCONN;
2769 else
2770 hdev->children[port1-1] = udev;
2771 spin_unlock_irq(&device_state_lock);
2772
2773 /* Run it through the hoops (find a driver, etc) */
2774 if (!status) {
2775 status = usb_new_device(udev);
2776 if (status) {
2777 spin_lock_irq(&device_state_lock);
2778 hdev->children[port1-1] = NULL;
2779 spin_unlock_irq(&device_state_lock);
2780 }
2781 }
2782
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783 if (status)
2784 goto loop_disable;
2785
2786 status = hub_power_remaining(hub);
2787 if (status)
Alan Stern55c52712005-11-23 12:03:12 -05002788 dev_dbg(hub_dev, "%dmA power budget left\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002789
2790 return;
2791
2792loop_disable:
2793 hub_port_disable(hub, port1, 1);
2794loop:
Inaky Perez-Gonzalezfc721f52008-04-08 13:24:46 -07002795 usb_ep0_reinit(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002796 release_address(udev);
2797 usb_put_dev(udev);
Vikram Panditaffcdc182007-05-25 21:31:07 -07002798 if ((status == -ENOTCONN) || (status == -ENOTSUPP))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002799 break;
2800 }
Alan Stern3a311552008-05-20 16:58:29 -04002801 if (hub->hdev->parent ||
2802 !hcd->driver->port_handed_over ||
2803 !(hcd->driver->port_handed_over)(hcd, port1))
2804 dev_err(hub_dev, "unable to enumerate USB device on port %d\n",
2805 port1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002806
2807done:
2808 hub_port_disable(hub, port1, 1);
Balaji Rao90da0962007-11-22 01:58:14 +05302809 if (hcd->driver->relinquish_port && !hub->hdev->parent)
2810 hcd->driver->relinquish_port(hcd, port1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002811}
2812
2813static void hub_events(void)
2814{
2815 struct list_head *tmp;
2816 struct usb_device *hdev;
2817 struct usb_interface *intf;
2818 struct usb_hub *hub;
2819 struct device *hub_dev;
2820 u16 hubstatus;
2821 u16 hubchange;
2822 u16 portstatus;
2823 u16 portchange;
2824 int i, ret;
2825 int connect_change;
2826
2827 /*
2828 * We restart the list every time to avoid a deadlock with
2829 * deleting hubs downstream from this one. This should be
2830 * safe since we delete the hub from the event list.
2831 * Not the most efficient, but avoids deadlocks.
2832 */
2833 while (1) {
2834
2835 /* Grab the first entry at the beginning of the list */
2836 spin_lock_irq(&hub_event_lock);
2837 if (list_empty(&hub_event_list)) {
2838 spin_unlock_irq(&hub_event_lock);
2839 break;
2840 }
2841
2842 tmp = hub_event_list.next;
2843 list_del_init(tmp);
2844
2845 hub = list_entry(tmp, struct usb_hub, event_list);
Alan Sterne8054852007-05-04 11:55:11 -04002846 kref_get(&hub->kref);
2847 spin_unlock_irq(&hub_event_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002848
Alan Sterne8054852007-05-04 11:55:11 -04002849 hdev = hub->hdev;
2850 hub_dev = hub->intfdev;
2851 intf = to_usb_interface(hub_dev);
Alan Stern40f122f2006-11-09 14:44:33 -05002852 dev_dbg(hub_dev, "state %d ports %d chg %04x evt %04x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002853 hdev->state, hub->descriptor
2854 ? hub->descriptor->bNbrPorts
2855 : 0,
2856 /* NOTE: expects max 15 ports... */
2857 (u16) hub->change_bits[0],
Alan Stern40f122f2006-11-09 14:44:33 -05002858 (u16) hub->event_bits[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002859
Linus Torvalds1da177e2005-04-16 15:20:36 -07002860 /* Lock the device, then check to see if we were
2861 * disconnected while waiting for the lock to succeed. */
Alan Stern06b84e82007-05-04 11:54:50 -04002862 usb_lock_device(hdev);
Alan Sterne8054852007-05-04 11:55:11 -04002863 if (unlikely(hub->disconnected))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002864 goto loop;
2865
2866 /* If the hub has died, clean up after it */
2867 if (hdev->state == USB_STATE_NOTATTACHED) {
Alan Stern7de18d82006-06-01 13:37:24 -04002868 hub->error = -ENODEV;
Alan Stern3eb14912008-03-03 15:15:43 -05002869 hub_stop(hub);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002870 goto loop;
2871 }
2872
Alan Stern40f122f2006-11-09 14:44:33 -05002873 /* Autoresume */
2874 ret = usb_autopm_get_interface(intf);
2875 if (ret) {
2876 dev_dbg(hub_dev, "Can't autoresume: %d\n", ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002877 goto loop;
Alan Stern40f122f2006-11-09 14:44:33 -05002878 }
2879
2880 /* If this is an inactive hub, do nothing */
2881 if (hub->quiescing)
2882 goto loop_autopm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002883
2884 if (hub->error) {
2885 dev_dbg (hub_dev, "resetting for error %d\n",
2886 hub->error);
2887
Alan Stern7de18d82006-06-01 13:37:24 -04002888 ret = usb_reset_composite_device(hdev, intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002889 if (ret) {
2890 dev_dbg (hub_dev,
2891 "error resetting hub: %d\n", ret);
Alan Stern40f122f2006-11-09 14:44:33 -05002892 goto loop_autopm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002893 }
2894
2895 hub->nerrors = 0;
2896 hub->error = 0;
2897 }
2898
2899 /* deal with port status changes */
2900 for (i = 1; i <= hub->descriptor->bNbrPorts; i++) {
2901 if (test_bit(i, hub->busy_bits))
2902 continue;
2903 connect_change = test_bit(i, hub->change_bits);
2904 if (!test_and_clear_bit(i, hub->event_bits) &&
Alan Stern6ee0b272008-04-28 11:06:42 -04002905 !connect_change)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002906 continue;
2907
2908 ret = hub_port_status(hub, i,
2909 &portstatus, &portchange);
2910 if (ret < 0)
2911 continue;
2912
Linus Torvalds1da177e2005-04-16 15:20:36 -07002913 if (portchange & USB_PORT_STAT_C_CONNECTION) {
2914 clear_port_feature(hdev, i,
2915 USB_PORT_FEAT_C_CONNECTION);
2916 connect_change = 1;
2917 }
2918
2919 if (portchange & USB_PORT_STAT_C_ENABLE) {
2920 if (!connect_change)
2921 dev_dbg (hub_dev,
2922 "port %d enable change, "
2923 "status %08x\n",
2924 i, portstatus);
2925 clear_port_feature(hdev, i,
2926 USB_PORT_FEAT_C_ENABLE);
2927
2928 /*
2929 * EM interference sometimes causes badly
2930 * shielded USB devices to be shutdown by
2931 * the hub, this hack enables them again.
2932 * Works at least with mouse driver.
2933 */
2934 if (!(portstatus & USB_PORT_STAT_ENABLE)
2935 && !connect_change
2936 && hdev->children[i-1]) {
2937 dev_err (hub_dev,
2938 "port %i "
2939 "disabled by hub (EMI?), "
2940 "re-enabling...\n",
2941 i);
2942 connect_change = 1;
2943 }
2944 }
2945
2946 if (portchange & USB_PORT_STAT_C_SUSPEND) {
2947 clear_port_feature(hdev, i,
2948 USB_PORT_FEAT_C_SUSPEND);
2949 if (hdev->children[i-1]) {
2950 ret = remote_wakeup(hdev->
2951 children[i-1]);
2952 if (ret < 0)
2953 connect_change = 1;
2954 } else {
2955 ret = -ENODEV;
2956 hub_port_disable(hub, i, 1);
2957 }
2958 dev_dbg (hub_dev,
2959 "resume on port %d, status %d\n",
2960 i, ret);
2961 }
2962
2963 if (portchange & USB_PORT_STAT_C_OVERCURRENT) {
2964 dev_err (hub_dev,
2965 "over-current change on port %d\n",
2966 i);
2967 clear_port_feature(hdev, i,
2968 USB_PORT_FEAT_C_OVER_CURRENT);
2969 hub_power_on(hub);
2970 }
2971
2972 if (portchange & USB_PORT_STAT_C_RESET) {
2973 dev_dbg (hub_dev,
2974 "reset change on port %d\n",
2975 i);
2976 clear_port_feature(hdev, i,
2977 USB_PORT_FEAT_C_RESET);
2978 }
2979
2980 if (connect_change)
2981 hub_port_connect_change(hub, i,
2982 portstatus, portchange);
2983 } /* end for i */
2984
2985 /* deal with hub status changes */
2986 if (test_and_clear_bit(0, hub->event_bits) == 0)
2987 ; /* do nothing */
2988 else if (hub_hub_status(hub, &hubstatus, &hubchange) < 0)
2989 dev_err (hub_dev, "get_hub_status failed\n");
2990 else {
2991 if (hubchange & HUB_CHANGE_LOCAL_POWER) {
2992 dev_dbg (hub_dev, "power change\n");
2993 clear_hub_feature(hdev, C_HUB_LOCAL_POWER);
Alan Stern55c52712005-11-23 12:03:12 -05002994 if (hubstatus & HUB_STATUS_LOCAL_POWER)
2995 /* FIXME: Is this always true? */
Alan Stern55c52712005-11-23 12:03:12 -05002996 hub->limited_power = 1;
jidong xiao403fae72007-09-14 00:08:51 +08002997 else
2998 hub->limited_power = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002999 }
3000 if (hubchange & HUB_CHANGE_OVERCURRENT) {
3001 dev_dbg (hub_dev, "overcurrent change\n");
3002 msleep(500); /* Cool down */
3003 clear_hub_feature(hdev, C_HUB_OVER_CURRENT);
3004 hub_power_on(hub);
3005 }
3006 }
3007
Linus Torvalds09ca8ad2008-07-06 10:27:25 -07003008 /* If this is a root hub, tell the HCD it's okay to
3009 * re-enable port-change interrupts now. */
3010 if (!hdev->parent && !hub->busy_bits[0])
3011 usb_enable_root_hub_irq(hdev->bus);
3012
Alan Stern40f122f2006-11-09 14:44:33 -05003013loop_autopm:
3014 /* Allow autosuspend if we're not going to run again */
3015 if (list_empty(&hub->event_list))
3016 usb_autopm_enable(intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003017loop:
3018 usb_unlock_device(hdev);
Alan Sterne8054852007-05-04 11:55:11 -04003019 kref_put(&hub->kref, hub_release);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003020
3021 } /* end while (1) */
3022}
3023
3024static int hub_thread(void *__unused)
3025{
Alan Stern3bb1af52008-03-03 15:15:36 -05003026 /* khubd needs to be freezable to avoid intefering with USB-PERSIST
3027 * port handover. Otherwise it might see that a full-speed device
3028 * was gone before the EHCI controller had handed its port over to
3029 * the companion full-speed controller.
3030 */
Rafael J. Wysocki83144182007-07-17 04:03:35 -07003031 set_freezable();
Alan Stern3bb1af52008-03-03 15:15:36 -05003032
Linus Torvalds1da177e2005-04-16 15:20:36 -07003033 do {
3034 hub_events();
Rafael J. Wysockie42837b2007-10-18 03:04:45 -07003035 wait_event_freezable(khubd_wait,
akpm@osdl.org9c8d6172005-06-20 14:29:58 -07003036 !list_empty(&hub_event_list) ||
3037 kthread_should_stop());
akpm@osdl.org9c8d6172005-06-20 14:29:58 -07003038 } while (!kthread_should_stop() || !list_empty(&hub_event_list));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003039
akpm@osdl.org9c8d6172005-06-20 14:29:58 -07003040 pr_debug("%s: khubd exiting\n", usbcore_name);
3041 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003042}
3043
3044static struct usb_device_id hub_id_table [] = {
3045 { .match_flags = USB_DEVICE_ID_MATCH_DEV_CLASS,
3046 .bDeviceClass = USB_CLASS_HUB},
3047 { .match_flags = USB_DEVICE_ID_MATCH_INT_CLASS,
3048 .bInterfaceClass = USB_CLASS_HUB},
3049 { } /* Terminating entry */
3050};
3051
3052MODULE_DEVICE_TABLE (usb, hub_id_table);
3053
3054static struct usb_driver hub_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003055 .name = "hub",
3056 .probe = hub_probe,
3057 .disconnect = hub_disconnect,
3058 .suspend = hub_suspend,
3059 .resume = hub_resume,
Alan Sternf07600c2007-05-30 15:38:16 -04003060 .reset_resume = hub_reset_resume,
Alan Stern7de18d82006-06-01 13:37:24 -04003061 .pre_reset = hub_pre_reset,
3062 .post_reset = hub_post_reset,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003063 .ioctl = hub_ioctl,
3064 .id_table = hub_id_table,
Alan Stern40f122f2006-11-09 14:44:33 -05003065 .supports_autosuspend = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003066};
3067
3068int usb_hub_init(void)
3069{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003070 if (usb_register(&hub_driver) < 0) {
3071 printk(KERN_ERR "%s: can't register hub driver\n",
3072 usbcore_name);
3073 return -1;
3074 }
3075
akpm@osdl.org9c8d6172005-06-20 14:29:58 -07003076 khubd_task = kthread_run(hub_thread, NULL, "khubd");
3077 if (!IS_ERR(khubd_task))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003078 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003079
3080 /* Fall through if kernel_thread failed */
3081 usb_deregister(&hub_driver);
3082 printk(KERN_ERR "%s: can't start khubd\n", usbcore_name);
3083
3084 return -1;
3085}
3086
3087void usb_hub_cleanup(void)
3088{
akpm@osdl.org9c8d6172005-06-20 14:29:58 -07003089 kthread_stop(khubd_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003090
3091 /*
3092 * Hub resources are freed for us by usb_deregister. It calls
3093 * usb_driver_purge on every device which in turn calls that
3094 * devices disconnect function if it is using this driver.
3095 * The hub_disconnect function takes care of releasing the
3096 * individual hub resources. -greg
3097 */
3098 usb_deregister(&hub_driver);
3099} /* usb_hub_cleanup() */
3100
Alan Sterneb764c42008-03-03 15:16:04 -05003101static int descriptors_changed(struct usb_device *udev,
3102 struct usb_device_descriptor *old_device_descriptor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003103{
Alan Sterneb764c42008-03-03 15:16:04 -05003104 int changed = 0;
3105 unsigned index;
3106 unsigned serial_len = 0;
3107 unsigned len;
3108 unsigned old_length;
3109 int length;
3110 char *buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003111
Alan Sterneb764c42008-03-03 15:16:04 -05003112 if (memcmp(&udev->descriptor, old_device_descriptor,
3113 sizeof(*old_device_descriptor)) != 0)
3114 return 1;
3115
3116 /* Since the idVendor, idProduct, and bcdDevice values in the
3117 * device descriptor haven't changed, we will assume the
3118 * Manufacturer and Product strings haven't changed either.
3119 * But the SerialNumber string could be different (e.g., a
3120 * different flash card of the same brand).
3121 */
3122 if (udev->serial)
3123 serial_len = strlen(udev->serial) + 1;
3124
3125 len = serial_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003126 for (index = 0; index < udev->descriptor.bNumConfigurations; index++) {
Alan Sterneb764c42008-03-03 15:16:04 -05003127 old_length = le16_to_cpu(udev->config[index].desc.wTotalLength);
3128 len = max(len, old_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003129 }
Alan Sterneb764c42008-03-03 15:16:04 -05003130
Oliver Neukum0cc1a512008-01-10 10:31:48 +01003131 buf = kmalloc(len, GFP_NOIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003132 if (buf == NULL) {
3133 dev_err(&udev->dev, "no mem to re-read configs after reset\n");
3134 /* assume the worst */
3135 return 1;
3136 }
3137 for (index = 0; index < udev->descriptor.bNumConfigurations; index++) {
Alan Sterneb764c42008-03-03 15:16:04 -05003138 old_length = le16_to_cpu(udev->config[index].desc.wTotalLength);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003139 length = usb_get_descriptor(udev, USB_DT_CONFIG, index, buf,
3140 old_length);
Alan Sterneb764c42008-03-03 15:16:04 -05003141 if (length != old_length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003142 dev_dbg(&udev->dev, "config index %d, error %d\n",
3143 index, length);
Alan Sterneb764c42008-03-03 15:16:04 -05003144 changed = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003145 break;
3146 }
3147 if (memcmp (buf, udev->rawdescriptors[index], old_length)
3148 != 0) {
3149 dev_dbg(&udev->dev, "config index %d changed (#%d)\n",
Alan Sterneb764c42008-03-03 15:16:04 -05003150 index,
3151 ((struct usb_config_descriptor *) buf)->
3152 bConfigurationValue);
3153 changed = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003154 break;
3155 }
3156 }
Alan Sterneb764c42008-03-03 15:16:04 -05003157
3158 if (!changed && serial_len) {
3159 length = usb_string(udev, udev->descriptor.iSerialNumber,
3160 buf, serial_len);
3161 if (length + 1 != serial_len) {
3162 dev_dbg(&udev->dev, "serial string error %d\n",
3163 length);
3164 changed = 1;
3165 } else if (memcmp(buf, udev->serial, length) != 0) {
3166 dev_dbg(&udev->dev, "serial string changed\n");
3167 changed = 1;
3168 }
3169 }
3170
Linus Torvalds1da177e2005-04-16 15:20:36 -07003171 kfree(buf);
Alan Sterneb764c42008-03-03 15:16:04 -05003172 return changed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003173}
3174
3175/**
3176 * usb_reset_device - perform a USB port reset to reinitialize a device
3177 * @udev: device to reset (not in SUSPENDED or NOTATTACHED state)
3178 *
Alan Stern79efa092006-06-01 13:33:42 -04003179 * WARNING - don't use this routine to reset a composite device
3180 * (one with multiple interfaces owned by separate drivers)!
3181 * Use usb_reset_composite_device() instead.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003182 *
3183 * Do a port reset, reassign the device's address, and establish its
3184 * former operating configuration. If the reset fails, or the device's
3185 * descriptors change from their values before the reset, or the original
3186 * configuration and altsettings cannot be restored, a flag will be set
3187 * telling khubd to pretend the device has been disconnected and then
3188 * re-connected. All drivers will be unbound, and the device will be
3189 * re-enumerated and probed all over again.
3190 *
3191 * Returns 0 if the reset succeeded, -ENODEV if the device has been
3192 * flagged for logical disconnection, or some other negative error code
3193 * if the reset wasn't even attempted.
3194 *
3195 * The caller must own the device lock. For example, it's safe to use
3196 * this from a driver probe() routine after downloading new firmware.
3197 * For calls that might not occur during probe(), drivers should lock
3198 * the device using usb_lock_device_for_reset().
Alan Stern6bc6cff2007-05-04 11:53:03 -04003199 *
3200 * Locking exception: This routine may also be called from within an
3201 * autoresume handler. Such usage won't conflict with other tasks
3202 * holding the device lock because these tasks should always call
3203 * usb_autopm_resume_device(), thereby preventing any unwanted autoresume.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003204 */
3205int usb_reset_device(struct usb_device *udev)
3206{
3207 struct usb_device *parent_hdev = udev->parent;
3208 struct usb_hub *parent_hub;
3209 struct usb_device_descriptor descriptor = udev->descriptor;
Alan Stern12c3da32005-11-23 12:09:52 -05003210 int i, ret = 0;
3211 int port1 = udev->portnum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003212
3213 if (udev->state == USB_STATE_NOTATTACHED ||
3214 udev->state == USB_STATE_SUSPENDED) {
3215 dev_dbg(&udev->dev, "device reset not allowed in state %d\n",
3216 udev->state);
3217 return -EINVAL;
3218 }
3219
3220 if (!parent_hdev) {
3221 /* this requires hcd-specific logic; see OHCI hc_restart() */
Harvey Harrison441b62c2008-03-03 16:08:34 -08003222 dev_dbg(&udev->dev, "%s for root hub!\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003223 return -EISDIR;
3224 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003225 parent_hub = hdev_to_hub(parent_hdev);
3226
Linus Torvalds1da177e2005-04-16 15:20:36 -07003227 set_bit(port1, parent_hub->busy_bits);
3228 for (i = 0; i < SET_CONFIG_TRIES; ++i) {
3229
3230 /* ep0 maxpacket size may change; let the HCD know about it.
3231 * Other endpoints will be handled by re-enumeration. */
Inaky Perez-Gonzalezfc721f52008-04-08 13:24:46 -07003232 usb_ep0_reinit(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003233 ret = hub_port_init(parent_hub, udev, port1, i);
Alan Sterndd4dd192007-05-04 11:55:54 -04003234 if (ret >= 0 || ret == -ENOTCONN || ret == -ENODEV)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003235 break;
3236 }
3237 clear_bit(port1, parent_hub->busy_bits);
Linus Torvalds09ca8ad2008-07-06 10:27:25 -07003238 if (!parent_hdev->parent && !parent_hub->busy_bits[0])
3239 usb_enable_root_hub_irq(parent_hdev->bus);
Alan Sternd5cbad42006-08-11 16:52:39 -04003240
Linus Torvalds1da177e2005-04-16 15:20:36 -07003241 if (ret < 0)
3242 goto re_enumerate;
3243
3244 /* Device might have changed firmware (DFU or similar) */
Alan Sterneb764c42008-03-03 15:16:04 -05003245 if (descriptors_changed(udev, &descriptor)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003246 dev_info(&udev->dev, "device firmware changed\n");
3247 udev->descriptor = descriptor; /* for disconnect() calls */
3248 goto re_enumerate;
3249 }
3250
3251 if (!udev->actconfig)
3252 goto done;
3253
3254 ret = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
3255 USB_REQ_SET_CONFIGURATION, 0,
3256 udev->actconfig->desc.bConfigurationValue, 0,
3257 NULL, 0, USB_CTRL_SET_TIMEOUT);
3258 if (ret < 0) {
3259 dev_err(&udev->dev,
3260 "can't restore configuration #%d (error=%d)\n",
3261 udev->actconfig->desc.bConfigurationValue, ret);
3262 goto re_enumerate;
3263 }
3264 usb_set_device_state(udev, USB_STATE_CONFIGURED);
3265
3266 for (i = 0; i < udev->actconfig->desc.bNumInterfaces; i++) {
3267 struct usb_interface *intf = udev->actconfig->interface[i];
3268 struct usb_interface_descriptor *desc;
3269
3270 /* set_interface resets host side toggle even
3271 * for altsetting zero. the interface may have no driver.
3272 */
3273 desc = &intf->cur_altsetting->desc;
3274 ret = usb_set_interface(udev, desc->bInterfaceNumber,
3275 desc->bAlternateSetting);
3276 if (ret < 0) {
3277 dev_err(&udev->dev, "failed to restore interface %d "
3278 "altsetting %d (error=%d)\n",
3279 desc->bInterfaceNumber,
3280 desc->bAlternateSetting,
3281 ret);
3282 goto re_enumerate;
3283 }
3284 }
3285
3286done:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003287 return 0;
3288
3289re_enumerate:
3290 hub_port_logical_disconnect(parent_hub, port1);
3291 return -ENODEV;
3292}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -06003293EXPORT_SYMBOL_GPL(usb_reset_device);
Alan Stern79efa092006-06-01 13:33:42 -04003294
3295/**
3296 * usb_reset_composite_device - warn interface drivers and perform a USB port reset
3297 * @udev: device to reset (not in SUSPENDED or NOTATTACHED state)
3298 * @iface: interface bound to the driver making the request (optional)
3299 *
3300 * Warns all drivers bound to registered interfaces (using their pre_reset
3301 * method), performs the port reset, and then lets the drivers know that
3302 * the reset is over (using their post_reset method).
3303 *
3304 * Return value is the same as for usb_reset_device().
3305 *
3306 * The caller must own the device lock. For example, it's safe to use
3307 * this from a driver probe() routine after downloading new firmware.
3308 * For calls that might not occur during probe(), drivers should lock
3309 * the device using usb_lock_device_for_reset().
Alan Stern79efa092006-06-01 13:33:42 -04003310 */
3311int usb_reset_composite_device(struct usb_device *udev,
3312 struct usb_interface *iface)
3313{
3314 int ret;
Alan Stern852c4b42007-12-03 15:44:29 -05003315 int i;
Alan Stern79efa092006-06-01 13:33:42 -04003316 struct usb_host_config *config = udev->actconfig;
3317
3318 if (udev->state == USB_STATE_NOTATTACHED ||
3319 udev->state == USB_STATE_SUSPENDED) {
3320 dev_dbg(&udev->dev, "device reset not allowed in state %d\n",
3321 udev->state);
3322 return -EINVAL;
3323 }
3324
Alan Stern645daaa2006-08-30 15:47:02 -04003325 /* Prevent autosuspend during the reset */
Alan Stern94fcda12006-11-20 11:38:46 -05003326 usb_autoresume_device(udev);
Alan Stern645daaa2006-08-30 15:47:02 -04003327
Alan Stern79efa092006-06-01 13:33:42 -04003328 if (iface && iface->condition != USB_INTERFACE_BINDING)
3329 iface = NULL;
3330
3331 if (config) {
Alan Stern79efa092006-06-01 13:33:42 -04003332 for (i = 0; i < config->desc.bNumInterfaces; ++i) {
Alan Stern852c4b42007-12-03 15:44:29 -05003333 struct usb_interface *cintf = config->interface[i];
3334 struct usb_driver *drv;
3335
3336 if (cintf->dev.driver) {
Alan Stern79efa092006-06-01 13:33:42 -04003337 drv = to_usb_driver(cintf->dev.driver);
3338 if (drv->pre_reset)
3339 (drv->pre_reset)(cintf);
Alan Sternf07600c2007-05-30 15:38:16 -04003340 /* FIXME: Unbind if pre_reset returns an error or isn't defined */
Alan Stern79efa092006-06-01 13:33:42 -04003341 }
3342 }
3343 }
3344
3345 ret = usb_reset_device(udev);
3346
3347 if (config) {
Alan Stern79efa092006-06-01 13:33:42 -04003348 for (i = config->desc.bNumInterfaces - 1; i >= 0; --i) {
Alan Stern852c4b42007-12-03 15:44:29 -05003349 struct usb_interface *cintf = config->interface[i];
3350 struct usb_driver *drv;
3351
3352 if (cintf->dev.driver) {
Alan Stern79efa092006-06-01 13:33:42 -04003353 drv = to_usb_driver(cintf->dev.driver);
3354 if (drv->post_reset)
Alan Sternf07600c2007-05-30 15:38:16 -04003355 (drv->post_reset)(cintf);
3356 /* FIXME: Unbind if post_reset returns an error or isn't defined */
Alan Stern79efa092006-06-01 13:33:42 -04003357 }
Alan Stern79efa092006-06-01 13:33:42 -04003358 }
3359 }
3360
Alan Stern94fcda12006-11-20 11:38:46 -05003361 usb_autosuspend_device(udev);
Alan Stern79efa092006-06-01 13:33:42 -04003362 return ret;
3363}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -06003364EXPORT_SYMBOL_GPL(usb_reset_composite_device);