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)
11 #include <linux/kernel.h>
12 #include <linux/errno.h>
13 #include <linux/module.h>
14 #include <linux/moduleparam.h>
15 #include <linux/completion.h>
16 #include <linux/sched.h>
17 #include <linux/list.h>
18 #include <linux/slab.h>
19 #include <linux/ioctl.h>
20 #include <linux/usb.h>
21 #include <linux/usbdevice_fs.h>
22 #include <linux/kthread.h>
23 #include <linux/mutex.h>
24 #include <linux/freezer.h>
26 #include <asm/uaccess.h>
27 #include <asm/byteorder.h>
33 /* if we are in debug mode, always announce new devices */
35 #ifndef CONFIG_USB_ANNOUNCE_NEW_DEVICES
36 #define CONFIG_USB_ANNOUNCE_NEW_DEVICES
41 struct device
*intfdev
; /* the "interface" device */
42 struct usb_device
*hdev
;
44 struct urb
*urb
; /* for interrupt polling pipe */
46 /* buffer for urb ... with extra space in case of babble */
48 dma_addr_t buffer_dma
; /* DMA address for buffer */
50 struct usb_hub_status hub
;
51 struct usb_port_status port
;
52 } *status
; /* buffer for status reports */
53 struct mutex status_mutex
; /* for the status buffer */
55 int error
; /* last reported error */
56 int nerrors
; /* track consecutive errors */
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
62 unsigned long busy_bits
[1]; /* ports being reset or
64 #if USB_MAXCHILDREN > 31 /* 8*sizeof(unsigned long) - 1 */
65 #error event_bits[] is too short!
68 struct usb_hub_descriptor
*descriptor
; /* class descriptor */
69 struct usb_tt tt
; /* Transaction Translator */
71 unsigned mA_per_port
; /* current for each child */
73 unsigned limited_power
:1;
75 unsigned disconnected
:1;
77 unsigned has_indicators
:1;
78 u8 indicator
[USB_MAXCHILDREN
];
79 struct delayed_work leds
;
80 struct delayed_work init_work
;
84 /* Protect struct usb_device->state and ->children members
85 * Note: Both are also protected by ->dev.sem, except that ->state can
86 * change to USB_STATE_NOTATTACHED even when the semaphore isn't held. */
87 static DEFINE_SPINLOCK(device_state_lock
);
89 /* khubd's worklist and its lock */
90 static DEFINE_SPINLOCK(hub_event_lock
);
91 static LIST_HEAD(hub_event_list
); /* List of hubs needing servicing */
94 static DECLARE_WAIT_QUEUE_HEAD(khubd_wait
);
96 static struct task_struct
*khubd_task
;
98 /* cycle leds on hubs that aren't blinking for attention */
99 static int blinkenlights
= 0;
100 module_param (blinkenlights
, bool, S_IRUGO
);
101 MODULE_PARM_DESC (blinkenlights
, "true to cycle leds on hubs");
104 * Device SATA8000 FW1.0 from DATAST0R Technology Corp requires about
105 * 10 seconds to send reply for the initial 64-byte descriptor request.
107 /* define initial 64-byte descriptor request timeout in milliseconds */
108 static int initial_descriptor_timeout
= USB_CTRL_GET_TIMEOUT
;
109 module_param(initial_descriptor_timeout
, int, S_IRUGO
|S_IWUSR
);
110 MODULE_PARM_DESC(initial_descriptor_timeout
, "initial 64-byte descriptor request timeout in milliseconds (default 5000 - 5.0 seconds)");
113 * As of 2.6.10 we introduce a new USB device initialization scheme which
114 * closely resembles the way Windows works. Hopefully it will be compatible
115 * with a wider range of devices than the old scheme. However some previously
116 * working devices may start giving rise to "device not accepting address"
117 * errors; if that happens the user can try the old scheme by adjusting the
118 * following module parameters.
120 * For maximum flexibility there are two boolean parameters to control the
121 * hub driver's behavior. On the first initialization attempt, if the
122 * "old_scheme_first" parameter is set then the old scheme will be used,
123 * otherwise the new scheme is used. If that fails and "use_both_schemes"
124 * is set, then the driver will make another attempt, using the other scheme.
126 static int old_scheme_first
= 0;
127 module_param(old_scheme_first
, bool, S_IRUGO
| S_IWUSR
);
128 MODULE_PARM_DESC(old_scheme_first
,
129 "start with the old device initialization scheme");
131 static int use_both_schemes
= 1;
132 module_param(use_both_schemes
, bool, S_IRUGO
| S_IWUSR
);
133 MODULE_PARM_DESC(use_both_schemes
,
134 "try the other device initialization scheme if the "
137 /* Mutual exclusion for EHCI CF initialization. This interferes with
138 * port reset on some companion controllers.
140 DECLARE_RWSEM(ehci_cf_port_reset_rwsem
);
141 EXPORT_SYMBOL_GPL(ehci_cf_port_reset_rwsem
);
143 #define HUB_DEBOUNCE_TIMEOUT 1500
144 #define HUB_DEBOUNCE_STEP 25
145 #define HUB_DEBOUNCE_STABLE 100
148 static int usb_reset_and_verify_device(struct usb_device
*udev
);
150 static inline char *portspeed(int portstatus
)
152 if (portstatus
& (1 << USB_PORT_FEAT_HIGHSPEED
))
154 else if (portstatus
& (1 << USB_PORT_FEAT_LOWSPEED
))
160 /* Note that hdev or one of its children must be locked! */
161 static inline struct usb_hub
*hdev_to_hub(struct usb_device
*hdev
)
163 return usb_get_intfdata(hdev
->actconfig
->interface
[0]);
166 /* USB 2.0 spec Section 11.24.4.5 */
167 static int get_hub_descriptor(struct usb_device
*hdev
, void *data
, int size
)
171 for (i
= 0; i
< 3; i
++) {
172 ret
= usb_control_msg(hdev
, usb_rcvctrlpipe(hdev
, 0),
173 USB_REQ_GET_DESCRIPTOR
, USB_DIR_IN
| USB_RT_HUB
,
174 USB_DT_HUB
<< 8, 0, data
, size
,
175 USB_CTRL_GET_TIMEOUT
);
176 if (ret
>= (USB_DT_HUB_NONVAR_SIZE
+ 2))
183 * USB 2.0 spec Section 11.24.2.1
185 static int clear_hub_feature(struct usb_device
*hdev
, int feature
)
187 return usb_control_msg(hdev
, usb_sndctrlpipe(hdev
, 0),
188 USB_REQ_CLEAR_FEATURE
, USB_RT_HUB
, feature
, 0, NULL
, 0, 1000);
192 * USB 2.0 spec Section 11.24.2.2
194 static int clear_port_feature(struct usb_device
*hdev
, int port1
, int feature
)
196 return usb_control_msg(hdev
, usb_sndctrlpipe(hdev
, 0),
197 USB_REQ_CLEAR_FEATURE
, USB_RT_PORT
, feature
, port1
,
202 * USB 2.0 spec Section 11.24.2.13
204 static int set_port_feature(struct usb_device
*hdev
, int port1
, int feature
)
206 return usb_control_msg(hdev
, usb_sndctrlpipe(hdev
, 0),
207 USB_REQ_SET_FEATURE
, USB_RT_PORT
, feature
, port1
,
212 * USB 2.0 spec Section 11.24.2.7.1.10 and table 11-7
213 * for info about using port indicators
215 static void set_port_led(
221 int status
= set_port_feature(hub
->hdev
, (selector
<< 8) | port1
,
222 USB_PORT_FEAT_INDICATOR
);
224 dev_dbg (hub
->intfdev
,
225 "port %d indicator %s status %d\n",
227 ({ char *s
; switch (selector
) {
228 case HUB_LED_AMBER
: s
= "amber"; break;
229 case HUB_LED_GREEN
: s
= "green"; break;
230 case HUB_LED_OFF
: s
= "off"; break;
231 case HUB_LED_AUTO
: s
= "auto"; break;
232 default: s
= "??"; break;
237 #define LED_CYCLE_PERIOD ((2*HZ)/3)
239 static void led_work (struct work_struct
*work
)
241 struct usb_hub
*hub
=
242 container_of(work
, struct usb_hub
, leds
.work
);
243 struct usb_device
*hdev
= hub
->hdev
;
245 unsigned changed
= 0;
248 if (hdev
->state
!= USB_STATE_CONFIGURED
|| hub
->quiescing
)
251 for (i
= 0; i
< hub
->descriptor
->bNbrPorts
; i
++) {
252 unsigned selector
, mode
;
254 /* 30%-50% duty cycle */
256 switch (hub
->indicator
[i
]) {
258 case INDICATOR_CYCLE
:
260 selector
= HUB_LED_AUTO
;
261 mode
= INDICATOR_AUTO
;
263 /* blinking green = sw attention */
264 case INDICATOR_GREEN_BLINK
:
265 selector
= HUB_LED_GREEN
;
266 mode
= INDICATOR_GREEN_BLINK_OFF
;
268 case INDICATOR_GREEN_BLINK_OFF
:
269 selector
= HUB_LED_OFF
;
270 mode
= INDICATOR_GREEN_BLINK
;
272 /* blinking amber = hw attention */
273 case INDICATOR_AMBER_BLINK
:
274 selector
= HUB_LED_AMBER
;
275 mode
= INDICATOR_AMBER_BLINK_OFF
;
277 case INDICATOR_AMBER_BLINK_OFF
:
278 selector
= HUB_LED_OFF
;
279 mode
= INDICATOR_AMBER_BLINK
;
281 /* blink green/amber = reserved */
282 case INDICATOR_ALT_BLINK
:
283 selector
= HUB_LED_GREEN
;
284 mode
= INDICATOR_ALT_BLINK_OFF
;
286 case INDICATOR_ALT_BLINK_OFF
:
287 selector
= HUB_LED_AMBER
;
288 mode
= INDICATOR_ALT_BLINK
;
293 if (selector
!= HUB_LED_AUTO
)
295 set_port_led(hub
, i
+ 1, selector
);
296 hub
->indicator
[i
] = mode
;
298 if (!changed
&& blinkenlights
) {
300 cursor
%= hub
->descriptor
->bNbrPorts
;
301 set_port_led(hub
, cursor
+ 1, HUB_LED_GREEN
);
302 hub
->indicator
[cursor
] = INDICATOR_CYCLE
;
306 schedule_delayed_work(&hub
->leds
, LED_CYCLE_PERIOD
);
309 /* use a short timeout for hub/port status fetches */
310 #define USB_STS_TIMEOUT 1000
311 #define USB_STS_RETRIES 5
314 * USB 2.0 spec Section 11.24.2.6
316 static int get_hub_status(struct usb_device
*hdev
,
317 struct usb_hub_status
*data
)
319 int i
, status
= -ETIMEDOUT
;
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_HUB
, 0, 0,
324 data
, sizeof(*data
), USB_STS_TIMEOUT
);
330 * USB 2.0 spec Section 11.24.2.7
332 static int get_port_status(struct usb_device
*hdev
, int port1
,
333 struct usb_port_status
*data
)
335 int i
, status
= -ETIMEDOUT
;
337 for (i
= 0; i
< USB_STS_RETRIES
&& status
== -ETIMEDOUT
; i
++) {
338 status
= usb_control_msg(hdev
, usb_rcvctrlpipe(hdev
, 0),
339 USB_REQ_GET_STATUS
, USB_DIR_IN
| USB_RT_PORT
, 0, port1
,
340 data
, sizeof(*data
), USB_STS_TIMEOUT
);
345 static int hub_port_status(struct usb_hub
*hub
, int port1
,
346 u16
*status
, u16
*change
)
350 mutex_lock(&hub
->status_mutex
);
351 ret
= get_port_status(hub
->hdev
, port1
, &hub
->status
->port
);
353 dev_err(hub
->intfdev
,
354 "%s failed (err = %d)\n", __func__
, ret
);
358 *status
= le16_to_cpu(hub
->status
->port
.wPortStatus
);
359 *change
= le16_to_cpu(hub
->status
->port
.wPortChange
);
362 mutex_unlock(&hub
->status_mutex
);
366 static void kick_khubd(struct usb_hub
*hub
)
370 /* Suppress autosuspend until khubd runs */
371 to_usb_interface(hub
->intfdev
)->pm_usage_cnt
= 1;
373 spin_lock_irqsave(&hub_event_lock
, flags
);
374 if (!hub
->disconnected
&& list_empty(&hub
->event_list
)) {
375 list_add_tail(&hub
->event_list
, &hub_event_list
);
376 wake_up(&khubd_wait
);
378 spin_unlock_irqrestore(&hub_event_lock
, flags
);
381 void usb_kick_khubd(struct usb_device
*hdev
)
383 /* FIXME: What if hdev isn't bound to the hub driver? */
384 kick_khubd(hdev_to_hub(hdev
));
388 /* completion function, fires on port status changes and various faults */
389 static void hub_irq(struct urb
*urb
)
391 struct usb_hub
*hub
= urb
->context
;
392 int status
= urb
->status
;
397 case -ENOENT
: /* synchronous unlink */
398 case -ECONNRESET
: /* async unlink */
399 case -ESHUTDOWN
: /* hardware going away */
402 default: /* presumably an error */
403 /* Cause a hub reset after 10 consecutive errors */
404 dev_dbg (hub
->intfdev
, "transfer --> %d\n", status
);
405 if ((++hub
->nerrors
< 10) || hub
->error
)
410 /* let khubd handle things */
411 case 0: /* we got data: port status changed */
413 for (i
= 0; i
< urb
->actual_length
; ++i
)
414 bits
|= ((unsigned long) ((*hub
->buffer
)[i
]))
416 hub
->event_bits
[0] = bits
;
422 /* Something happened, let khubd figure it out */
429 if ((status
= usb_submit_urb (hub
->urb
, GFP_ATOMIC
)) != 0
430 && status
!= -ENODEV
&& status
!= -EPERM
)
431 dev_err (hub
->intfdev
, "resubmit --> %d\n", status
);
434 /* USB 2.0 spec Section 11.24.2.3 */
436 hub_clear_tt_buffer (struct usb_device
*hdev
, u16 devinfo
, u16 tt
)
438 return usb_control_msg(hdev
, usb_rcvctrlpipe(hdev
, 0),
439 HUB_CLEAR_TT_BUFFER
, USB_RT_PORT
, devinfo
,
444 * enumeration blocks khubd for a long time. we use keventd instead, since
445 * long blocking there is the exception, not the rule. accordingly, HCDs
446 * talking to TTs must queue control transfers (not just bulk and iso), so
447 * both can talk to the same hub concurrently.
449 static void hub_tt_kevent (struct work_struct
*work
)
451 struct usb_hub
*hub
=
452 container_of(work
, struct usb_hub
, tt
.kevent
);
456 spin_lock_irqsave (&hub
->tt
.lock
, flags
);
457 while (--limit
&& !list_empty (&hub
->tt
.clear_list
)) {
458 struct list_head
*temp
;
459 struct usb_tt_clear
*clear
;
460 struct usb_device
*hdev
= hub
->hdev
;
463 temp
= hub
->tt
.clear_list
.next
;
464 clear
= list_entry (temp
, struct usb_tt_clear
, clear_list
);
465 list_del (&clear
->clear_list
);
467 /* drop lock so HCD can concurrently report other TT errors */
468 spin_unlock_irqrestore (&hub
->tt
.lock
, flags
);
469 status
= hub_clear_tt_buffer (hdev
, clear
->devinfo
, clear
->tt
);
470 spin_lock_irqsave (&hub
->tt
.lock
, flags
);
474 "clear tt %d (%04x) error %d\n",
475 clear
->tt
, clear
->devinfo
, status
);
478 spin_unlock_irqrestore (&hub
->tt
.lock
, flags
);
482 * usb_hub_tt_clear_buffer - clear control/bulk TT state in high speed hub
483 * @udev: the device whose split transaction failed
484 * @pipe: identifies the endpoint of the failed transaction
486 * High speed HCDs use this to tell the hub driver that some split control or
487 * bulk transaction failed in a way that requires clearing internal state of
488 * a transaction translator. This is normally detected (and reported) from
491 * It may not be possible for that hub to handle additional full (or low)
492 * speed transactions until that state is fully cleared out.
494 void usb_hub_tt_clear_buffer (struct usb_device
*udev
, int pipe
)
496 struct usb_tt
*tt
= udev
->tt
;
498 struct usb_tt_clear
*clear
;
500 /* we've got to cope with an arbitrary number of pending TT clears,
501 * since each TT has "at least two" buffers that can need it (and
502 * there can be many TTs per hub). even if they're uncommon.
504 if ((clear
= kmalloc (sizeof *clear
, GFP_ATOMIC
)) == NULL
) {
505 dev_err (&udev
->dev
, "can't save CLEAR_TT_BUFFER state\n");
506 /* FIXME recover somehow ... RESET_TT? */
510 /* info that CLEAR_TT_BUFFER needs */
511 clear
->tt
= tt
->multi
? udev
->ttport
: 1;
512 clear
->devinfo
= usb_pipeendpoint (pipe
);
513 clear
->devinfo
|= udev
->devnum
<< 4;
514 clear
->devinfo
|= usb_pipecontrol (pipe
)
515 ? (USB_ENDPOINT_XFER_CONTROL
<< 11)
516 : (USB_ENDPOINT_XFER_BULK
<< 11);
517 if (usb_pipein (pipe
))
518 clear
->devinfo
|= 1 << 15;
520 /* tell keventd to clear state for this TT */
521 spin_lock_irqsave (&tt
->lock
, flags
);
522 list_add_tail (&clear
->clear_list
, &tt
->clear_list
);
523 schedule_work (&tt
->kevent
);
524 spin_unlock_irqrestore (&tt
->lock
, flags
);
526 EXPORT_SYMBOL_GPL(usb_hub_tt_clear_buffer
);
528 /* If do_delay is false, return the number of milliseconds the caller
531 static unsigned hub_power_on(struct usb_hub
*hub
, bool do_delay
)
534 unsigned pgood_delay
= hub
->descriptor
->bPwrOn2PwrGood
* 2;
536 u16 wHubCharacteristics
=
537 le16_to_cpu(hub
->descriptor
->wHubCharacteristics
);
539 /* Enable power on each port. Some hubs have reserved values
540 * of LPSM (> 2) in their descriptors, even though they are
541 * USB 2.0 hubs. Some hubs do not implement port-power switching
542 * but only emulate it. In all cases, the ports won't work
543 * unless we send these messages to the hub.
545 if ((wHubCharacteristics
& HUB_CHAR_LPSM
) < 2)
546 dev_dbg(hub
->intfdev
, "enabling power on all ports\n");
548 dev_dbg(hub
->intfdev
, "trying to enable port power on "
549 "non-switchable hub\n");
550 for (port1
= 1; port1
<= hub
->descriptor
->bNbrPorts
; port1
++)
551 set_port_feature(hub
->hdev
, port1
, USB_PORT_FEAT_POWER
);
553 /* Wait at least 100 msec for power to become stable */
554 delay
= max(pgood_delay
, (unsigned) 100);
560 static int hub_hub_status(struct usb_hub
*hub
,
561 u16
*status
, u16
*change
)
565 mutex_lock(&hub
->status_mutex
);
566 ret
= get_hub_status(hub
->hdev
, &hub
->status
->hub
);
568 dev_err (hub
->intfdev
,
569 "%s failed (err = %d)\n", __func__
, ret
);
571 *status
= le16_to_cpu(hub
->status
->hub
.wHubStatus
);
572 *change
= le16_to_cpu(hub
->status
->hub
.wHubChange
);
575 mutex_unlock(&hub
->status_mutex
);
579 static int hub_port_disable(struct usb_hub
*hub
, int port1
, int set_state
)
581 struct usb_device
*hdev
= hub
->hdev
;
584 if (hdev
->children
[port1
-1] && set_state
)
585 usb_set_device_state(hdev
->children
[port1
-1],
586 USB_STATE_NOTATTACHED
);
588 ret
= clear_port_feature(hdev
, port1
, USB_PORT_FEAT_ENABLE
);
590 dev_err(hub
->intfdev
, "cannot disable port %d (err = %d)\n",
596 * Disable a port and mark a logical connnect-change event, so that some
597 * time later khubd will disconnect() any existing usb_device on the port
598 * and will re-enumerate if there actually is a device attached.
600 static void hub_port_logical_disconnect(struct usb_hub
*hub
, int port1
)
602 dev_dbg(hub
->intfdev
, "logical disconnect on port %d\n", port1
);
603 hub_port_disable(hub
, port1
, 1);
605 /* FIXME let caller ask to power down the port:
606 * - some devices won't enumerate without a VBUS power cycle
607 * - SRP saves power that way
608 * - ... new call, TBD ...
609 * That's easy if this hub can switch power per-port, and
610 * khubd reactivates the port later (timer, SRP, etc).
611 * Powerdown must be optional, because of reset/DFU.
614 set_bit(port1
, hub
->change_bits
);
618 enum hub_activation_type
{
619 HUB_INIT
, HUB_INIT2
, HUB_INIT3
,
620 HUB_POST_RESET
, HUB_RESUME
, HUB_RESET_RESUME
,
623 static void hub_init_func2(struct work_struct
*ws
);
624 static void hub_init_func3(struct work_struct
*ws
);
626 static void hub_activate(struct usb_hub
*hub
, enum hub_activation_type type
)
628 struct usb_device
*hdev
= hub
->hdev
;
631 bool need_debounce_delay
= false;
634 /* Continue a partial initialization */
635 if (type
== HUB_INIT2
)
637 if (type
== HUB_INIT3
)
640 /* After a resume, port power should still be on.
641 * For any other type of activation, turn it on.
643 if (type
!= HUB_RESUME
) {
645 /* Speed up system boot by using a delayed_work for the
646 * hub's initial power-up delays. This is pretty awkward
647 * and the implementation looks like a home-brewed sort of
648 * setjmp/longjmp, but it saves at least 100 ms for each
649 * root hub (assuming usbcore is compiled into the kernel
650 * rather than as a module). It adds up.
652 * This can't be done for HUB_RESUME or HUB_RESET_RESUME
653 * because for those activation types the ports have to be
654 * operational when we return. In theory this could be done
655 * for HUB_POST_RESET, but it's easier not to.
657 if (type
== HUB_INIT
) {
658 delay
= hub_power_on(hub
, false);
659 PREPARE_DELAYED_WORK(&hub
->init_work
, hub_init_func2
);
660 schedule_delayed_work(&hub
->init_work
,
661 msecs_to_jiffies(delay
));
663 /* Suppress autosuspend until init is done */
664 to_usb_interface(hub
->intfdev
)->pm_usage_cnt
= 1;
665 return; /* Continues at init2: below */
667 hub_power_on(hub
, true);
672 /* Check each port and set hub->change_bits to let khubd know
673 * which ports need attention.
675 for (port1
= 1; port1
<= hdev
->maxchild
; ++port1
) {
676 struct usb_device
*udev
= hdev
->children
[port1
-1];
677 u16 portstatus
, portchange
;
679 portstatus
= portchange
= 0;
680 status
= hub_port_status(hub
, port1
, &portstatus
, &portchange
);
681 if (udev
|| (portstatus
& USB_PORT_STAT_CONNECTION
))
682 dev_dbg(hub
->intfdev
,
683 "port %d: status %04x change %04x\n",
684 port1
, portstatus
, portchange
);
686 /* After anything other than HUB_RESUME (i.e., initialization
687 * or any sort of reset), every port should be disabled.
688 * Unconnected ports should likewise be disabled (paranoia),
689 * and so should ports for which we have no usb_device.
691 if ((portstatus
& USB_PORT_STAT_ENABLE
) && (
692 type
!= HUB_RESUME
||
693 !(portstatus
& USB_PORT_STAT_CONNECTION
) ||
695 udev
->state
== USB_STATE_NOTATTACHED
)) {
696 clear_port_feature(hdev
, port1
, USB_PORT_FEAT_ENABLE
);
697 portstatus
&= ~USB_PORT_STAT_ENABLE
;
700 /* Clear status-change flags; we'll debounce later */
701 if (portchange
& USB_PORT_STAT_C_CONNECTION
) {
702 need_debounce_delay
= true;
703 clear_port_feature(hub
->hdev
, port1
,
704 USB_PORT_FEAT_C_CONNECTION
);
706 if (portchange
& USB_PORT_STAT_C_ENABLE
) {
707 need_debounce_delay
= true;
708 clear_port_feature(hub
->hdev
, port1
,
709 USB_PORT_FEAT_C_ENABLE
);
712 if (!udev
|| udev
->state
== USB_STATE_NOTATTACHED
) {
713 /* Tell khubd to disconnect the device or
714 * check for a new connection
716 if (udev
|| (portstatus
& USB_PORT_STAT_CONNECTION
))
717 set_bit(port1
, hub
->change_bits
);
719 } else if (portstatus
& USB_PORT_STAT_ENABLE
) {
720 /* The power session apparently survived the resume.
721 * If there was an overcurrent or suspend change
722 * (i.e., remote wakeup request), have khubd
726 set_bit(port1
, hub
->change_bits
);
728 } else if (udev
->persist_enabled
) {
730 udev
->reset_resume
= 1;
732 set_bit(port1
, hub
->change_bits
);
735 /* The power session is gone; tell khubd */
736 usb_set_device_state(udev
, USB_STATE_NOTATTACHED
);
737 set_bit(port1
, hub
->change_bits
);
741 /* If no port-status-change flags were set, we don't need any
742 * debouncing. If flags were set we can try to debounce the
743 * ports all at once right now, instead of letting khubd do them
744 * one at a time later on.
746 * If any port-status changes do occur during this delay, khubd
747 * will see them later and handle them normally.
749 if (need_debounce_delay
) {
750 delay
= HUB_DEBOUNCE_STABLE
;
752 /* Don't do a long sleep inside a workqueue routine */
753 if (type
== HUB_INIT2
) {
754 PREPARE_DELAYED_WORK(&hub
->init_work
, hub_init_func3
);
755 schedule_delayed_work(&hub
->init_work
,
756 msecs_to_jiffies(delay
));
757 return; /* Continues at init3: below */
765 status
= usb_submit_urb(hub
->urb
, GFP_NOIO
);
767 dev_err(hub
->intfdev
, "activate --> %d\n", status
);
768 if (hub
->has_indicators
&& blinkenlights
)
769 schedule_delayed_work(&hub
->leds
, LED_CYCLE_PERIOD
);
771 /* Scan all ports that need attention */
775 /* Implement the continuations for the delays above */
776 static void hub_init_func2(struct work_struct
*ws
)
778 struct usb_hub
*hub
= container_of(ws
, struct usb_hub
, init_work
.work
);
780 hub_activate(hub
, HUB_INIT2
);
783 static void hub_init_func3(struct work_struct
*ws
)
785 struct usb_hub
*hub
= container_of(ws
, struct usb_hub
, init_work
.work
);
787 hub_activate(hub
, HUB_INIT3
);
790 enum hub_quiescing_type
{
791 HUB_DISCONNECT
, HUB_PRE_RESET
, HUB_SUSPEND
794 static void hub_quiesce(struct usb_hub
*hub
, enum hub_quiescing_type type
)
796 struct usb_device
*hdev
= hub
->hdev
;
799 cancel_delayed_work_sync(&hub
->init_work
);
801 /* khubd and related activity won't re-trigger */
804 if (type
!= HUB_SUSPEND
) {
805 /* Disconnect all the children */
806 for (i
= 0; i
< hdev
->maxchild
; ++i
) {
807 if (hdev
->children
[i
])
808 usb_disconnect(&hdev
->children
[i
]);
812 /* Stop khubd and related activity */
813 usb_kill_urb(hub
->urb
);
814 if (hub
->has_indicators
)
815 cancel_delayed_work_sync(&hub
->leds
);
817 cancel_work_sync(&hub
->tt
.kevent
);
820 /* caller has locked the hub device */
821 static int hub_pre_reset(struct usb_interface
*intf
)
823 struct usb_hub
*hub
= usb_get_intfdata(intf
);
825 hub_quiesce(hub
, HUB_PRE_RESET
);
829 /* caller has locked the hub device */
830 static int hub_post_reset(struct usb_interface
*intf
)
832 struct usb_hub
*hub
= usb_get_intfdata(intf
);
834 hub_activate(hub
, HUB_POST_RESET
);
838 static int hub_configure(struct usb_hub
*hub
,
839 struct usb_endpoint_descriptor
*endpoint
)
841 struct usb_device
*hdev
= hub
->hdev
;
842 struct device
*hub_dev
= hub
->intfdev
;
843 u16 hubstatus
, hubchange
;
844 u16 wHubCharacteristics
;
849 hub
->buffer
= usb_buffer_alloc(hdev
, sizeof(*hub
->buffer
), GFP_KERNEL
,
852 message
= "can't allocate hub irq buffer";
857 hub
->status
= kmalloc(sizeof(*hub
->status
), GFP_KERNEL
);
859 message
= "can't kmalloc hub status buffer";
863 mutex_init(&hub
->status_mutex
);
865 hub
->descriptor
= kmalloc(sizeof(*hub
->descriptor
), GFP_KERNEL
);
866 if (!hub
->descriptor
) {
867 message
= "can't kmalloc hub descriptor";
872 /* Request the entire hub descriptor.
873 * hub->descriptor can handle USB_MAXCHILDREN ports,
874 * but the hub can/will return fewer bytes here.
876 ret
= get_hub_descriptor(hdev
, hub
->descriptor
,
877 sizeof(*hub
->descriptor
));
879 message
= "can't read hub descriptor";
881 } else if (hub
->descriptor
->bNbrPorts
> USB_MAXCHILDREN
) {
882 message
= "hub has too many ports!";
887 hdev
->maxchild
= hub
->descriptor
->bNbrPorts
;
888 dev_info (hub_dev
, "%d port%s detected\n", hdev
->maxchild
,
889 (hdev
->maxchild
== 1) ? "" : "s");
891 wHubCharacteristics
= le16_to_cpu(hub
->descriptor
->wHubCharacteristics
);
893 if (wHubCharacteristics
& HUB_CHAR_COMPOUND
) {
895 char portstr
[USB_MAXCHILDREN
+ 1];
897 for (i
= 0; i
< hdev
->maxchild
; i
++)
898 portstr
[i
] = hub
->descriptor
->DeviceRemovable
899 [((i
+ 1) / 8)] & (1 << ((i
+ 1) % 8))
901 portstr
[hdev
->maxchild
] = 0;
902 dev_dbg(hub_dev
, "compound device; port removable status: %s\n", portstr
);
904 dev_dbg(hub_dev
, "standalone hub\n");
906 switch (wHubCharacteristics
& HUB_CHAR_LPSM
) {
908 dev_dbg(hub_dev
, "ganged power switching\n");
911 dev_dbg(hub_dev
, "individual port power switching\n");
915 dev_dbg(hub_dev
, "no power switching (usb 1.0)\n");
919 switch (wHubCharacteristics
& HUB_CHAR_OCPM
) {
921 dev_dbg(hub_dev
, "global over-current protection\n");
924 dev_dbg(hub_dev
, "individual port over-current protection\n");
928 dev_dbg(hub_dev
, "no over-current protection\n");
932 spin_lock_init (&hub
->tt
.lock
);
933 INIT_LIST_HEAD (&hub
->tt
.clear_list
);
934 INIT_WORK (&hub
->tt
.kevent
, hub_tt_kevent
);
935 switch (hdev
->descriptor
.bDeviceProtocol
) {
939 dev_dbg(hub_dev
, "Single TT\n");
943 ret
= usb_set_interface(hdev
, 0, 1);
945 dev_dbg(hub_dev
, "TT per port\n");
948 dev_err(hub_dev
, "Using single TT (err %d)\n",
953 dev_dbg(hub_dev
, "Unrecognized hub protocol %d\n",
954 hdev
->descriptor
.bDeviceProtocol
);
958 /* Note 8 FS bit times == (8 bits / 12000000 bps) ~= 666ns */
959 switch (wHubCharacteristics
& HUB_CHAR_TTTT
) {
960 case HUB_TTTT_8_BITS
:
961 if (hdev
->descriptor
.bDeviceProtocol
!= 0) {
962 hub
->tt
.think_time
= 666;
963 dev_dbg(hub_dev
, "TT requires at most %d "
964 "FS bit times (%d ns)\n",
965 8, hub
->tt
.think_time
);
968 case HUB_TTTT_16_BITS
:
969 hub
->tt
.think_time
= 666 * 2;
970 dev_dbg(hub_dev
, "TT requires at most %d "
971 "FS bit times (%d ns)\n",
972 16, hub
->tt
.think_time
);
974 case HUB_TTTT_24_BITS
:
975 hub
->tt
.think_time
= 666 * 3;
976 dev_dbg(hub_dev
, "TT requires at most %d "
977 "FS bit times (%d ns)\n",
978 24, hub
->tt
.think_time
);
980 case HUB_TTTT_32_BITS
:
981 hub
->tt
.think_time
= 666 * 4;
982 dev_dbg(hub_dev
, "TT requires at most %d "
983 "FS bit times (%d ns)\n",
984 32, hub
->tt
.think_time
);
988 /* probe() zeroes hub->indicator[] */
989 if (wHubCharacteristics
& HUB_CHAR_PORTIND
) {
990 hub
->has_indicators
= 1;
991 dev_dbg(hub_dev
, "Port indicators are supported\n");
994 dev_dbg(hub_dev
, "power on to power good time: %dms\n",
995 hub
->descriptor
->bPwrOn2PwrGood
* 2);
997 /* power budgeting mostly matters with bus-powered hubs,
998 * and battery-powered root hubs (may provide just 8 mA).
1000 ret
= usb_get_status(hdev
, USB_RECIP_DEVICE
, 0, &hubstatus
);
1002 message
= "can't get hub status";
1005 le16_to_cpus(&hubstatus
);
1006 if (hdev
== hdev
->bus
->root_hub
) {
1007 if (hdev
->bus_mA
== 0 || hdev
->bus_mA
>= 500)
1008 hub
->mA_per_port
= 500;
1010 hub
->mA_per_port
= hdev
->bus_mA
;
1011 hub
->limited_power
= 1;
1013 } else if ((hubstatus
& (1 << USB_DEVICE_SELF_POWERED
)) == 0) {
1014 dev_dbg(hub_dev
, "hub controller current requirement: %dmA\n",
1015 hub
->descriptor
->bHubContrCurrent
);
1016 hub
->limited_power
= 1;
1017 if (hdev
->maxchild
> 0) {
1018 int remaining
= hdev
->bus_mA
-
1019 hub
->descriptor
->bHubContrCurrent
;
1021 if (remaining
< hdev
->maxchild
* 100)
1023 "insufficient power available "
1024 "to use all downstream ports\n");
1025 hub
->mA_per_port
= 100; /* 7.2.1.1 */
1027 } else { /* Self-powered external hub */
1028 /* FIXME: What about battery-powered external hubs that
1029 * provide less current per port? */
1030 hub
->mA_per_port
= 500;
1032 if (hub
->mA_per_port
< 500)
1033 dev_dbg(hub_dev
, "%umA bus power budget for each child\n",
1036 ret
= hub_hub_status(hub
, &hubstatus
, &hubchange
);
1038 message
= "can't get hub status";
1042 /* local power status reports aren't always correct */
1043 if (hdev
->actconfig
->desc
.bmAttributes
& USB_CONFIG_ATT_SELFPOWER
)
1044 dev_dbg(hub_dev
, "local power source is %s\n",
1045 (hubstatus
& HUB_STATUS_LOCAL_POWER
)
1046 ? "lost (inactive)" : "good");
1048 if ((wHubCharacteristics
& HUB_CHAR_OCPM
) == 0)
1049 dev_dbg(hub_dev
, "%sover-current condition exists\n",
1050 (hubstatus
& HUB_STATUS_OVERCURRENT
) ? "" : "no ");
1052 /* set up the interrupt endpoint
1053 * We use the EP's maxpacket size instead of (PORTS+1+7)/8
1054 * bytes as USB2.0[11.12.3] says because some hubs are known
1055 * to send more data (and thus cause overflow). For root hubs,
1056 * maxpktsize is defined in hcd.c's fake endpoint descriptors
1057 * to be big enough for at least USB_MAXCHILDREN ports. */
1058 pipe
= usb_rcvintpipe(hdev
, endpoint
->bEndpointAddress
);
1059 maxp
= usb_maxpacket(hdev
, pipe
, usb_pipeout(pipe
));
1061 if (maxp
> sizeof(*hub
->buffer
))
1062 maxp
= sizeof(*hub
->buffer
);
1064 hub
->urb
= usb_alloc_urb(0, GFP_KERNEL
);
1066 message
= "couldn't allocate interrupt urb";
1071 usb_fill_int_urb(hub
->urb
, hdev
, pipe
, *hub
->buffer
, maxp
, hub_irq
,
1072 hub
, endpoint
->bInterval
);
1073 hub
->urb
->transfer_dma
= hub
->buffer_dma
;
1074 hub
->urb
->transfer_flags
|= URB_NO_TRANSFER_DMA_MAP
;
1076 /* maybe cycle the hub leds */
1077 if (hub
->has_indicators
&& blinkenlights
)
1078 hub
->indicator
[0] = INDICATOR_CYCLE
;
1080 hub_activate(hub
, HUB_INIT
);
1084 dev_err (hub_dev
, "config failed, %s (err %d)\n",
1086 /* hub_disconnect() frees urb and descriptor */
1090 static void hub_release(struct kref
*kref
)
1092 struct usb_hub
*hub
= container_of(kref
, struct usb_hub
, kref
);
1094 usb_put_intf(to_usb_interface(hub
->intfdev
));
1098 static unsigned highspeed_hubs
;
1100 static void hub_disconnect(struct usb_interface
*intf
)
1102 struct usb_hub
*hub
= usb_get_intfdata (intf
);
1104 /* Take the hub off the event list and don't let it be added again */
1105 spin_lock_irq(&hub_event_lock
);
1106 list_del_init(&hub
->event_list
);
1107 hub
->disconnected
= 1;
1108 spin_unlock_irq(&hub_event_lock
);
1110 /* Disconnect all children and quiesce the hub */
1112 hub_quiesce(hub
, HUB_DISCONNECT
);
1114 usb_set_intfdata (intf
, NULL
);
1116 if (hub
->hdev
->speed
== USB_SPEED_HIGH
)
1119 usb_free_urb(hub
->urb
);
1120 kfree(hub
->descriptor
);
1122 usb_buffer_free(hub
->hdev
, sizeof(*hub
->buffer
), hub
->buffer
,
1125 kref_put(&hub
->kref
, hub_release
);
1128 static int hub_probe(struct usb_interface
*intf
, const struct usb_device_id
*id
)
1130 struct usb_host_interface
*desc
;
1131 struct usb_endpoint_descriptor
*endpoint
;
1132 struct usb_device
*hdev
;
1133 struct usb_hub
*hub
;
1135 desc
= intf
->cur_altsetting
;
1136 hdev
= interface_to_usbdev(intf
);
1138 if (hdev
->level
== MAX_TOPO_LEVEL
) {
1139 dev_err(&intf
->dev
, "Unsupported bus topology: "
1140 "hub nested too deep\n");
1144 #ifdef CONFIG_USB_OTG_BLACKLIST_HUB
1146 dev_warn(&intf
->dev
, "ignoring external hub\n");
1151 /* Some hubs have a subclass of 1, which AFAICT according to the */
1152 /* specs is not defined, but it works */
1153 if ((desc
->desc
.bInterfaceSubClass
!= 0) &&
1154 (desc
->desc
.bInterfaceSubClass
!= 1)) {
1156 dev_err (&intf
->dev
, "bad descriptor, ignoring hub\n");
1160 /* Multiple endpoints? What kind of mutant ninja-hub is this? */
1161 if (desc
->desc
.bNumEndpoints
!= 1)
1162 goto descriptor_error
;
1164 endpoint
= &desc
->endpoint
[0].desc
;
1166 /* If it's not an interrupt in endpoint, we'd better punt! */
1167 if (!usb_endpoint_is_int_in(endpoint
))
1168 goto descriptor_error
;
1170 /* We found a hub */
1171 dev_info (&intf
->dev
, "USB hub found\n");
1173 hub
= kzalloc(sizeof(*hub
), GFP_KERNEL
);
1175 dev_dbg (&intf
->dev
, "couldn't kmalloc hub struct\n");
1179 kref_init(&hub
->kref
);
1180 INIT_LIST_HEAD(&hub
->event_list
);
1181 hub
->intfdev
= &intf
->dev
;
1183 INIT_DELAYED_WORK(&hub
->leds
, led_work
);
1184 INIT_DELAYED_WORK(&hub
->init_work
, NULL
);
1187 usb_set_intfdata (intf
, hub
);
1188 intf
->needs_remote_wakeup
= 1;
1190 if (hdev
->speed
== USB_SPEED_HIGH
)
1193 if (hub_configure(hub
, endpoint
) >= 0)
1196 hub_disconnect (intf
);
1201 hub_ioctl(struct usb_interface
*intf
, unsigned int code
, void *user_data
)
1203 struct usb_device
*hdev
= interface_to_usbdev (intf
);
1205 /* assert ifno == 0 (part of hub spec) */
1207 case USBDEVFS_HUB_PORTINFO
: {
1208 struct usbdevfs_hub_portinfo
*info
= user_data
;
1211 spin_lock_irq(&device_state_lock
);
1212 if (hdev
->devnum
<= 0)
1215 info
->nports
= hdev
->maxchild
;
1216 for (i
= 0; i
< info
->nports
; i
++) {
1217 if (hdev
->children
[i
] == NULL
)
1221 hdev
->children
[i
]->devnum
;
1224 spin_unlock_irq(&device_state_lock
);
1226 return info
->nports
+ 1;
1235 static void recursively_mark_NOTATTACHED(struct usb_device
*udev
)
1239 for (i
= 0; i
< udev
->maxchild
; ++i
) {
1240 if (udev
->children
[i
])
1241 recursively_mark_NOTATTACHED(udev
->children
[i
]);
1243 if (udev
->state
== USB_STATE_SUSPENDED
) {
1244 udev
->discon_suspended
= 1;
1245 udev
->active_duration
-= jiffies
;
1247 udev
->state
= USB_STATE_NOTATTACHED
;
1251 * usb_set_device_state - change a device's current state (usbcore, hcds)
1252 * @udev: pointer to device whose state should be changed
1253 * @new_state: new state value to be stored
1255 * udev->state is _not_ fully protected by the device lock. Although
1256 * most transitions are made only while holding the lock, the state can
1257 * can change to USB_STATE_NOTATTACHED at almost any time. This
1258 * is so that devices can be marked as disconnected as soon as possible,
1259 * without having to wait for any semaphores to be released. As a result,
1260 * all changes to any device's state must be protected by the
1261 * device_state_lock spinlock.
1263 * Once a device has been added to the device tree, all changes to its state
1264 * should be made using this routine. The state should _not_ be set directly.
1266 * If udev->state is already USB_STATE_NOTATTACHED then no change is made.
1267 * Otherwise udev->state is set to new_state, and if new_state is
1268 * USB_STATE_NOTATTACHED then all of udev's descendants' states are also set
1269 * to USB_STATE_NOTATTACHED.
1271 void usb_set_device_state(struct usb_device
*udev
,
1272 enum usb_device_state new_state
)
1274 unsigned long flags
;
1276 spin_lock_irqsave(&device_state_lock
, flags
);
1277 if (udev
->state
== USB_STATE_NOTATTACHED
)
1279 else if (new_state
!= USB_STATE_NOTATTACHED
) {
1281 /* root hub wakeup capabilities are managed out-of-band
1282 * and may involve silicon errata ... ignore them here.
1285 if (udev
->state
== USB_STATE_SUSPENDED
1286 || new_state
== USB_STATE_SUSPENDED
)
1287 ; /* No change to wakeup settings */
1288 else if (new_state
== USB_STATE_CONFIGURED
)
1289 device_init_wakeup(&udev
->dev
,
1290 (udev
->actconfig
->desc
.bmAttributes
1291 & USB_CONFIG_ATT_WAKEUP
));
1293 device_init_wakeup(&udev
->dev
, 0);
1295 if (udev
->state
== USB_STATE_SUSPENDED
&&
1296 new_state
!= USB_STATE_SUSPENDED
)
1297 udev
->active_duration
-= jiffies
;
1298 else if (new_state
== USB_STATE_SUSPENDED
&&
1299 udev
->state
!= USB_STATE_SUSPENDED
)
1300 udev
->active_duration
+= jiffies
;
1301 udev
->state
= new_state
;
1303 recursively_mark_NOTATTACHED(udev
);
1304 spin_unlock_irqrestore(&device_state_lock
, flags
);
1308 * WUSB devices are simple: they have no hubs behind, so the mapping
1309 * device <-> virtual port number becomes 1:1. Why? to simplify the
1310 * life of the device connection logic in
1311 * drivers/usb/wusbcore/devconnect.c. When we do the initial secret
1312 * handshake we need to assign a temporary address in the unauthorized
1313 * space. For simplicity we use the first virtual port number found to
1314 * be free [drivers/usb/wusbcore/devconnect.c:wusbhc_devconnect_ack()]
1315 * and that becomes it's address [X < 128] or its unauthorized address
1318 * We add 1 as an offset to the one-based USB-stack port number
1319 * (zero-based wusb virtual port index) for two reasons: (a) dev addr
1320 * 0 is reserved by USB for default address; (b) Linux's USB stack
1321 * uses always #1 for the root hub of the controller. So USB stack's
1322 * port #1, which is wusb virtual-port #0 has address #2.
1324 static void choose_address(struct usb_device
*udev
)
1327 struct usb_bus
*bus
= udev
->bus
;
1329 /* If khubd ever becomes multithreaded, this will need a lock */
1331 devnum
= udev
->portnum
+ 1;
1332 BUG_ON(test_bit(devnum
, bus
->devmap
.devicemap
));
1334 /* Try to allocate the next devnum beginning at
1335 * bus->devnum_next. */
1336 devnum
= find_next_zero_bit(bus
->devmap
.devicemap
, 128,
1339 devnum
= find_next_zero_bit(bus
->devmap
.devicemap
,
1341 bus
->devnum_next
= ( devnum
>= 127 ? 1 : devnum
+ 1);
1344 set_bit(devnum
, bus
->devmap
.devicemap
);
1345 udev
->devnum
= devnum
;
1349 static void release_address(struct usb_device
*udev
)
1351 if (udev
->devnum
> 0) {
1352 clear_bit(udev
->devnum
, udev
->bus
->devmap
.devicemap
);
1357 static void update_address(struct usb_device
*udev
, int devnum
)
1359 /* The address for a WUSB device is managed by wusbcore. */
1361 udev
->devnum
= devnum
;
1364 #ifdef CONFIG_USB_SUSPEND
1366 static void usb_stop_pm(struct usb_device
*udev
)
1368 /* Synchronize with the ksuspend thread to prevent any more
1369 * autosuspend requests from being submitted, and decrement
1370 * the parent's count of unsuspended children.
1373 if (udev
->parent
&& !udev
->discon_suspended
)
1374 usb_autosuspend_device(udev
->parent
);
1375 usb_pm_unlock(udev
);
1377 /* Stop any autosuspend or autoresume requests already submitted */
1378 cancel_delayed_work_sync(&udev
->autosuspend
);
1379 cancel_work_sync(&udev
->autoresume
);
1384 static inline void usb_stop_pm(struct usb_device
*udev
)
1390 * usb_disconnect - disconnect a device (usbcore-internal)
1391 * @pdev: pointer to device being disconnected
1392 * Context: !in_interrupt ()
1394 * Something got disconnected. Get rid of it and all of its children.
1396 * If *pdev is a normal device then the parent hub must already be locked.
1397 * If *pdev is a root hub then this routine will acquire the
1398 * usb_bus_list_lock on behalf of the caller.
1400 * Only hub drivers (including virtual root hub drivers for host
1401 * controllers) should ever call this.
1403 * This call is synchronous, and may not be used in an interrupt context.
1405 void usb_disconnect(struct usb_device
**pdev
)
1407 struct usb_device
*udev
= *pdev
;
1411 pr_debug ("%s nodev\n", __func__
);
1415 /* mark the device as inactive, so any further urb submissions for
1416 * this device (and any of its children) will fail immediately.
1417 * this quiesces everyting except pending urbs.
1419 usb_set_device_state(udev
, USB_STATE_NOTATTACHED
);
1420 dev_info (&udev
->dev
, "USB disconnect, address %d\n", udev
->devnum
);
1422 usb_lock_device(udev
);
1424 /* Free up all the children before we remove this device */
1425 for (i
= 0; i
< USB_MAXCHILDREN
; i
++) {
1426 if (udev
->children
[i
])
1427 usb_disconnect(&udev
->children
[i
]);
1430 /* deallocate hcd/hardware state ... nuking all pending urbs and
1431 * cleaning up all state associated with the current configuration
1432 * so that the hardware is now fully quiesced.
1434 dev_dbg (&udev
->dev
, "unregistering device\n");
1435 usb_disable_device(udev
, 0);
1436 usb_hcd_synchronize_unlinks(udev
);
1438 usb_unlock_device(udev
);
1440 /* Remove the device-specific files from sysfs. This must be
1441 * done with udev unlocked, because some of the attribute
1442 * routines try to acquire the device lock.
1444 usb_remove_sysfs_dev_files(udev
);
1446 /* Unregister the device. The device driver is responsible
1447 * for removing the device files from usbfs and sysfs and for
1448 * de-configuring the device.
1450 device_del(&udev
->dev
);
1452 /* Free the device number and delete the parent's children[]
1453 * (or root_hub) pointer.
1455 release_address(udev
);
1457 /* Avoid races with recursively_mark_NOTATTACHED() */
1458 spin_lock_irq(&device_state_lock
);
1460 spin_unlock_irq(&device_state_lock
);
1464 put_device(&udev
->dev
);
1467 #ifdef CONFIG_USB_ANNOUNCE_NEW_DEVICES
1468 static void show_string(struct usb_device
*udev
, char *id
, char *string
)
1472 dev_printk(KERN_INFO
, &udev
->dev
, "%s: %s\n", id
, string
);
1475 static void announce_device(struct usb_device
*udev
)
1477 dev_info(&udev
->dev
, "New USB device found, idVendor=%04x, idProduct=%04x\n",
1478 le16_to_cpu(udev
->descriptor
.idVendor
),
1479 le16_to_cpu(udev
->descriptor
.idProduct
));
1480 dev_info(&udev
->dev
, "New USB device strings: Mfr=%d, Product=%d, "
1481 "SerialNumber=%d\n",
1482 udev
->descriptor
.iManufacturer
,
1483 udev
->descriptor
.iProduct
,
1484 udev
->descriptor
.iSerialNumber
);
1485 show_string(udev
, "Product", udev
->product
);
1486 show_string(udev
, "Manufacturer", udev
->manufacturer
);
1487 show_string(udev
, "SerialNumber", udev
->serial
);
1490 static inline void announce_device(struct usb_device
*udev
) { }
1493 #ifdef CONFIG_USB_OTG
1494 #include "otg_whitelist.h"
1498 * usb_configure_device_otg - FIXME (usbcore-internal)
1499 * @udev: newly addressed device (in ADDRESS state)
1501 * Do configuration for On-The-Go devices
1503 static int usb_configure_device_otg(struct usb_device
*udev
)
1507 #ifdef CONFIG_USB_OTG
1509 * OTG-aware devices on OTG-capable root hubs may be able to use SRP,
1510 * to wake us after we've powered off VBUS; and HNP, switching roles
1511 * "host" to "peripheral". The OTG descriptor helps figure this out.
1513 if (!udev
->bus
->is_b_host
1515 && udev
->parent
== udev
->bus
->root_hub
) {
1516 struct usb_otg_descriptor
*desc
= 0;
1517 struct usb_bus
*bus
= udev
->bus
;
1519 /* descriptor may appear anywhere in config */
1520 if (__usb_get_extra_descriptor (udev
->rawdescriptors
[0],
1521 le16_to_cpu(udev
->config
[0].desc
.wTotalLength
),
1522 USB_DT_OTG
, (void **) &desc
) == 0) {
1523 if (desc
->bmAttributes
& USB_OTG_HNP
) {
1524 unsigned port1
= udev
->portnum
;
1526 dev_info(&udev
->dev
,
1527 "Dual-Role OTG device on %sHNP port\n",
1528 (port1
== bus
->otg_port
)
1531 /* enable HNP before suspend, it's simpler */
1532 if (port1
== bus
->otg_port
)
1533 bus
->b_hnp_enable
= 1;
1534 err
= usb_control_msg(udev
,
1535 usb_sndctrlpipe(udev
, 0),
1536 USB_REQ_SET_FEATURE
, 0,
1538 ? USB_DEVICE_B_HNP_ENABLE
1539 : USB_DEVICE_A_ALT_HNP_SUPPORT
,
1540 0, NULL
, 0, USB_CTRL_SET_TIMEOUT
);
1542 /* OTG MESSAGE: report errors here,
1543 * customize to match your product.
1545 dev_info(&udev
->dev
,
1546 "can't set HNP mode; %d\n",
1548 bus
->b_hnp_enable
= 0;
1554 if (!is_targeted(udev
)) {
1556 /* Maybe it can talk to us, though we can't talk to it.
1557 * (Includes HNP test device.)
1559 if (udev
->bus
->b_hnp_enable
|| udev
->bus
->is_b_host
) {
1560 err
= usb_port_suspend(udev
);
1562 dev_dbg(&udev
->dev
, "HNP fail, %d\n", err
);
1574 * usb_configure_device - Detect and probe device intfs/otg (usbcore-internal)
1575 * @udev: newly addressed device (in ADDRESS state)
1577 * This is only called by usb_new_device() and usb_authorize_device()
1578 * and FIXME -- all comments that apply to them apply here wrt to
1581 * If the device is WUSB and not authorized, we don't attempt to read
1582 * the string descriptors, as they will be errored out by the device
1583 * until it has been authorized.
1585 static int usb_configure_device(struct usb_device
*udev
)
1589 if (udev
->config
== NULL
) {
1590 err
= usb_get_configuration(udev
);
1592 dev_err(&udev
->dev
, "can't read configurations, error %d\n",
1597 if (udev
->wusb
== 1 && udev
->authorized
== 0) {
1598 udev
->product
= kstrdup("n/a (unauthorized)", GFP_KERNEL
);
1599 udev
->manufacturer
= kstrdup("n/a (unauthorized)", GFP_KERNEL
);
1600 udev
->serial
= kstrdup("n/a (unauthorized)", GFP_KERNEL
);
1603 /* read the standard strings and cache them if present */
1604 udev
->product
= usb_cache_string(udev
, udev
->descriptor
.iProduct
);
1605 udev
->manufacturer
= usb_cache_string(udev
,
1606 udev
->descriptor
.iManufacturer
);
1607 udev
->serial
= usb_cache_string(udev
, udev
->descriptor
.iSerialNumber
);
1609 err
= usb_configure_device_otg(udev
);
1616 * usb_new_device - perform initial device setup (usbcore-internal)
1617 * @udev: newly addressed device (in ADDRESS state)
1619 * This is called with devices which have been enumerated, but not yet
1620 * configured. The device descriptor is available, but not descriptors
1621 * for any device configuration. The caller must have locked either
1622 * the parent hub (if udev is a normal device) or else the
1623 * usb_bus_list_lock (if udev is a root hub). The parent's pointer to
1624 * udev has already been installed, but udev is not yet visible through
1625 * sysfs or other filesystem code.
1627 * It will return if the device is configured properly or not. Zero if
1628 * the interface was registered with the driver core; else a negative
1631 * This call is synchronous, and may not be used in an interrupt context.
1633 * Only the hub driver or root-hub registrar should ever call this.
1635 int usb_new_device(struct usb_device
*udev
)
1639 usb_detect_quirks(udev
); /* Determine quirks */
1640 err
= usb_configure_device(udev
); /* detect & probe dev/intfs */
1643 /* export the usbdev device-node for libusb */
1644 udev
->dev
.devt
= MKDEV(USB_DEVICE_MAJOR
,
1645 (((udev
->bus
->busnum
-1) * 128) + (udev
->devnum
-1)));
1647 /* Increment the parent's count of unsuspended children */
1649 usb_autoresume_device(udev
->parent
);
1651 /* Register the device. The device driver is responsible
1652 * for adding the device files to sysfs and for configuring
1655 err
= device_add(&udev
->dev
);
1657 dev_err(&udev
->dev
, "can't device_add, error %d\n", err
);
1661 /* put device-specific files into sysfs */
1662 usb_create_sysfs_dev_files(udev
);
1664 /* Tell the world! */
1665 announce_device(udev
);
1669 usb_set_device_state(udev
, USB_STATE_NOTATTACHED
);
1675 * usb_deauthorize_device - deauthorize a device (usbcore-internal)
1676 * @usb_dev: USB device
1678 * Move the USB device to a very basic state where interfaces are disabled
1679 * and the device is in fact unconfigured and unusable.
1681 * We share a lock (that we have) with device_del(), so we need to
1684 int usb_deauthorize_device(struct usb_device
*usb_dev
)
1687 usb_lock_device(usb_dev
);
1688 if (usb_dev
->authorized
== 0)
1689 goto out_unauthorized
;
1690 usb_dev
->authorized
= 0;
1691 usb_set_configuration(usb_dev
, -1);
1692 usb_dev
->product
= kstrdup("n/a (unauthorized)", GFP_KERNEL
);
1693 usb_dev
->manufacturer
= kstrdup("n/a (unauthorized)", GFP_KERNEL
);
1694 usb_dev
->serial
= kstrdup("n/a (unauthorized)", GFP_KERNEL
);
1695 kfree(usb_dev
->config
);
1696 usb_dev
->config
= NULL
;
1697 for (cnt
= 0; cnt
< usb_dev
->descriptor
.bNumConfigurations
; cnt
++)
1698 kfree(usb_dev
->rawdescriptors
[cnt
]);
1699 usb_dev
->descriptor
.bNumConfigurations
= 0;
1700 kfree(usb_dev
->rawdescriptors
);
1702 usb_unlock_device(usb_dev
);
1707 int usb_authorize_device(struct usb_device
*usb_dev
)
1710 usb_lock_device(usb_dev
);
1711 if (usb_dev
->authorized
== 1)
1712 goto out_authorized
;
1713 kfree(usb_dev
->product
);
1714 usb_dev
->product
= NULL
;
1715 kfree(usb_dev
->manufacturer
);
1716 usb_dev
->manufacturer
= NULL
;
1717 kfree(usb_dev
->serial
);
1718 usb_dev
->serial
= NULL
;
1719 result
= usb_autoresume_device(usb_dev
);
1721 dev_err(&usb_dev
->dev
,
1722 "can't autoresume for authorization: %d\n", result
);
1723 goto error_autoresume
;
1725 result
= usb_get_device_descriptor(usb_dev
, sizeof(usb_dev
->descriptor
));
1727 dev_err(&usb_dev
->dev
, "can't re-read device descriptor for "
1728 "authorization: %d\n", result
);
1729 goto error_device_descriptor
;
1731 usb_dev
->authorized
= 1;
1732 result
= usb_configure_device(usb_dev
);
1734 goto error_configure
;
1735 /* Choose and set the configuration. This registers the interfaces
1736 * with the driver core and lets interface drivers bind to them.
1738 c
= usb_choose_configuration(usb_dev
);
1740 result
= usb_set_configuration(usb_dev
, c
);
1742 dev_err(&usb_dev
->dev
,
1743 "can't set config #%d, error %d\n", c
, result
);
1744 /* This need not be fatal. The user can try to
1745 * set other configurations. */
1748 dev_info(&usb_dev
->dev
, "authorized to connect\n");
1750 error_device_descriptor
:
1753 usb_unlock_device(usb_dev
); // complements locktree
1758 /* Returns 1 if @hub is a WUSB root hub, 0 otherwise */
1759 static unsigned hub_is_wusb(struct usb_hub
*hub
)
1761 struct usb_hcd
*hcd
;
1762 if (hub
->hdev
->parent
!= NULL
) /* not a root hub? */
1764 hcd
= container_of(hub
->hdev
->bus
, struct usb_hcd
, self
);
1765 return hcd
->wireless
;
1769 #define PORT_RESET_TRIES 5
1770 #define SET_ADDRESS_TRIES 2
1771 #define GET_DESCRIPTOR_TRIES 2
1772 #define SET_CONFIG_TRIES (2 * (use_both_schemes + 1))
1773 #define USE_NEW_SCHEME(i) ((i) / 2 == old_scheme_first)
1775 #define HUB_ROOT_RESET_TIME 50 /* times are in msec */
1776 #define HUB_SHORT_RESET_TIME 10
1777 #define HUB_LONG_RESET_TIME 200
1778 #define HUB_RESET_TIMEOUT 500
1780 static int hub_port_wait_reset(struct usb_hub
*hub
, int port1
,
1781 struct usb_device
*udev
, unsigned int delay
)
1783 int delay_time
, ret
;
1787 for (delay_time
= 0;
1788 delay_time
< HUB_RESET_TIMEOUT
;
1789 delay_time
+= delay
) {
1790 /* wait to give the device a chance to reset */
1793 /* read and decode port status */
1794 ret
= hub_port_status(hub
, port1
, &portstatus
, &portchange
);
1798 /* Device went away? */
1799 if (!(portstatus
& USB_PORT_STAT_CONNECTION
))
1802 /* bomb out completely if the connection bounced */
1803 if ((portchange
& USB_PORT_STAT_C_CONNECTION
))
1806 /* if we`ve finished resetting, then break out of the loop */
1807 if (!(portstatus
& USB_PORT_STAT_RESET
) &&
1808 (portstatus
& USB_PORT_STAT_ENABLE
)) {
1809 if (hub_is_wusb(hub
))
1810 udev
->speed
= USB_SPEED_VARIABLE
;
1811 else if (portstatus
& USB_PORT_STAT_HIGH_SPEED
)
1812 udev
->speed
= USB_SPEED_HIGH
;
1813 else if (portstatus
& USB_PORT_STAT_LOW_SPEED
)
1814 udev
->speed
= USB_SPEED_LOW
;
1816 udev
->speed
= USB_SPEED_FULL
;
1820 /* switch to the long delay after two short delay failures */
1821 if (delay_time
>= 2 * HUB_SHORT_RESET_TIME
)
1822 delay
= HUB_LONG_RESET_TIME
;
1824 dev_dbg (hub
->intfdev
,
1825 "port %d not reset yet, waiting %dms\n",
1832 static int hub_port_reset(struct usb_hub
*hub
, int port1
,
1833 struct usb_device
*udev
, unsigned int delay
)
1837 /* Block EHCI CF initialization during the port reset.
1838 * Some companion controllers don't like it when they mix.
1840 down_read(&ehci_cf_port_reset_rwsem
);
1842 /* Reset the port */
1843 for (i
= 0; i
< PORT_RESET_TRIES
; i
++) {
1844 status
= set_port_feature(hub
->hdev
,
1845 port1
, USB_PORT_FEAT_RESET
);
1847 dev_err(hub
->intfdev
,
1848 "cannot reset port %d (err = %d)\n",
1851 status
= hub_port_wait_reset(hub
, port1
, udev
, delay
);
1852 if (status
&& status
!= -ENOTCONN
)
1853 dev_dbg(hub
->intfdev
,
1854 "port_wait_reset: err = %d\n",
1858 /* return on disconnect or reset */
1861 /* TRSTRCY = 10 ms; plus some extra */
1863 update_address(udev
, 0);
1867 clear_port_feature(hub
->hdev
,
1868 port1
, USB_PORT_FEAT_C_RESET
);
1869 /* FIXME need disconnect() for NOTATTACHED device */
1870 usb_set_device_state(udev
, status
1871 ? USB_STATE_NOTATTACHED
1872 : USB_STATE_DEFAULT
);
1876 dev_dbg (hub
->intfdev
,
1877 "port %d not enabled, trying reset again...\n",
1879 delay
= HUB_LONG_RESET_TIME
;
1882 dev_err (hub
->intfdev
,
1883 "Cannot enable port %i. Maybe the USB cable is bad?\n",
1887 up_read(&ehci_cf_port_reset_rwsem
);
1893 #define MASK_BITS (USB_PORT_STAT_POWER | USB_PORT_STAT_CONNECTION | \
1894 USB_PORT_STAT_SUSPEND)
1895 #define WANT_BITS (USB_PORT_STAT_POWER | USB_PORT_STAT_CONNECTION)
1897 /* Determine whether the device on a port is ready for a normal resume,
1898 * is ready for a reset-resume, or should be disconnected.
1900 static int check_port_resume_type(struct usb_device
*udev
,
1901 struct usb_hub
*hub
, int port1
,
1902 int status
, unsigned portchange
, unsigned portstatus
)
1904 /* Is the device still present? */
1905 if (status
|| (portstatus
& MASK_BITS
) != WANT_BITS
) {
1910 /* Can't do a normal resume if the port isn't enabled,
1911 * so try a reset-resume instead.
1913 else if (!(portstatus
& USB_PORT_STAT_ENABLE
) && !udev
->reset_resume
) {
1914 if (udev
->persist_enabled
)
1915 udev
->reset_resume
= 1;
1921 dev_dbg(hub
->intfdev
,
1922 "port %d status %04x.%04x after resume, %d\n",
1923 port1
, portchange
, portstatus
, status
);
1924 } else if (udev
->reset_resume
) {
1926 /* Late port handoff can set status-change bits */
1927 if (portchange
& USB_PORT_STAT_C_CONNECTION
)
1928 clear_port_feature(hub
->hdev
, port1
,
1929 USB_PORT_FEAT_C_CONNECTION
);
1930 if (portchange
& USB_PORT_STAT_C_ENABLE
)
1931 clear_port_feature(hub
->hdev
, port1
,
1932 USB_PORT_FEAT_C_ENABLE
);
1938 #ifdef CONFIG_USB_SUSPEND
1941 * usb_port_suspend - suspend a usb device's upstream port
1942 * @udev: device that's no longer in active use, not a root hub
1943 * Context: must be able to sleep; device not locked; pm locks held
1945 * Suspends a USB device that isn't in active use, conserving power.
1946 * Devices may wake out of a suspend, if anything important happens,
1947 * using the remote wakeup mechanism. They may also be taken out of
1948 * suspend by the host, using usb_port_resume(). It's also routine
1949 * to disconnect devices while they are suspended.
1951 * This only affects the USB hardware for a device; its interfaces
1952 * (and, for hubs, child devices) must already have been suspended.
1954 * Selective port suspend reduces power; most suspended devices draw
1955 * less than 500 uA. It's also used in OTG, along with remote wakeup.
1956 * All devices below the suspended port are also suspended.
1958 * Devices leave suspend state when the host wakes them up. Some devices
1959 * also support "remote wakeup", where the device can activate the USB
1960 * tree above them to deliver data, such as a keypress or packet. In
1961 * some cases, this wakes the USB host.
1963 * Suspending OTG devices may trigger HNP, if that's been enabled
1964 * between a pair of dual-role devices. That will change roles, such
1965 * as from A-Host to A-Peripheral or from B-Host back to B-Peripheral.
1967 * Devices on USB hub ports have only one "suspend" state, corresponding
1968 * to ACPI D2, "may cause the device to lose some context".
1969 * State transitions include:
1971 * - suspend, resume ... when the VBUS power link stays live
1972 * - suspend, disconnect ... VBUS lost
1974 * Once VBUS drop breaks the circuit, the port it's using has to go through
1975 * normal re-enumeration procedures, starting with enabling VBUS power.
1976 * Other than re-initializing the hub (plug/unplug, except for root hubs),
1977 * Linux (2.6) currently has NO mechanisms to initiate that: no khubd
1978 * timer, no SRP, no requests through sysfs.
1980 * If CONFIG_USB_SUSPEND isn't enabled, devices only really suspend when
1981 * the root hub for their bus goes into global suspend ... so we don't
1982 * (falsely) update the device power state to say it suspended.
1984 * Returns 0 on success, else negative errno.
1986 int usb_port_suspend(struct usb_device
*udev
)
1988 struct usb_hub
*hub
= hdev_to_hub(udev
->parent
);
1989 int port1
= udev
->portnum
;
1992 // dev_dbg(hub->intfdev, "suspend port %d\n", port1);
1994 /* enable remote wakeup when appropriate; this lets the device
1995 * wake up the upstream hub (including maybe the root hub).
1997 * NOTE: OTG devices may issue remote wakeup (or SRP) even when
1998 * we don't explicitly enable it here.
2000 if (udev
->do_remote_wakeup
) {
2001 status
= usb_control_msg(udev
, usb_sndctrlpipe(udev
, 0),
2002 USB_REQ_SET_FEATURE
, USB_RECIP_DEVICE
,
2003 USB_DEVICE_REMOTE_WAKEUP
, 0,
2005 USB_CTRL_SET_TIMEOUT
);
2007 dev_dbg(&udev
->dev
, "won't remote wakeup, status %d\n",
2012 status
= set_port_feature(hub
->hdev
, port1
, USB_PORT_FEAT_SUSPEND
);
2014 dev_dbg(hub
->intfdev
, "can't suspend port %d, status %d\n",
2016 /* paranoia: "should not happen" */
2017 (void) usb_control_msg(udev
, usb_sndctrlpipe(udev
, 0),
2018 USB_REQ_CLEAR_FEATURE
, USB_RECIP_DEVICE
,
2019 USB_DEVICE_REMOTE_WAKEUP
, 0,
2021 USB_CTRL_SET_TIMEOUT
);
2023 /* device has up to 10 msec to fully suspend */
2024 dev_dbg(&udev
->dev
, "usb %ssuspend\n",
2025 udev
->auto_pm
? "auto-" : "");
2026 usb_set_device_state(udev
, USB_STATE_SUSPENDED
);
2033 * If the USB "suspend" state is in use (rather than "global suspend"),
2034 * many devices will be individually taken out of suspend state using
2035 * special "resume" signaling. This routine kicks in shortly after
2036 * hardware resume signaling is finished, either because of selective
2037 * resume (by host) or remote wakeup (by device) ... now see what changed
2038 * in the tree that's rooted at this device.
2040 * If @udev->reset_resume is set then the device is reset before the
2041 * status check is done.
2043 static int finish_port_resume(struct usb_device
*udev
)
2048 /* caller owns the udev device lock */
2049 dev_dbg(&udev
->dev
, "finish %sresume\n",
2050 udev
->reset_resume
? "reset-" : "");
2052 /* usb ch9 identifies four variants of SUSPENDED, based on what
2053 * state the device resumes to. Linux currently won't see the
2054 * first two on the host side; they'd be inside hub_port_init()
2055 * during many timeouts, but khubd can't suspend until later.
2057 usb_set_device_state(udev
, udev
->actconfig
2058 ? USB_STATE_CONFIGURED
2059 : USB_STATE_ADDRESS
);
2061 /* 10.5.4.5 says not to reset a suspended port if the attached
2062 * device is enabled for remote wakeup. Hence the reset
2063 * operation is carried out here, after the port has been
2066 if (udev
->reset_resume
)
2068 status
= usb_reset_and_verify_device(udev
);
2070 /* 10.5.4.5 says be sure devices in the tree are still there.
2071 * For now let's assume the device didn't go crazy on resume,
2072 * and device drivers will know about any resume quirks.
2076 status
= usb_get_status(udev
, USB_RECIP_DEVICE
, 0, &devstatus
);
2078 status
= (status
> 0 ? 0 : -ENODEV
);
2080 /* If a normal resume failed, try doing a reset-resume */
2081 if (status
&& !udev
->reset_resume
&& udev
->persist_enabled
) {
2082 dev_dbg(&udev
->dev
, "retry with reset-resume\n");
2083 udev
->reset_resume
= 1;
2084 goto retry_reset_resume
;
2089 dev_dbg(&udev
->dev
, "gone after usb resume? status %d\n",
2091 } else if (udev
->actconfig
) {
2092 le16_to_cpus(&devstatus
);
2093 if (devstatus
& (1 << USB_DEVICE_REMOTE_WAKEUP
)) {
2094 status
= usb_control_msg(udev
,
2095 usb_sndctrlpipe(udev
, 0),
2096 USB_REQ_CLEAR_FEATURE
,
2098 USB_DEVICE_REMOTE_WAKEUP
, 0,
2100 USB_CTRL_SET_TIMEOUT
);
2102 dev_dbg(&udev
->dev
, "disable remote "
2103 "wakeup, status %d\n", status
);
2111 * usb_port_resume - re-activate a suspended usb device's upstream port
2112 * @udev: device to re-activate, not a root hub
2113 * Context: must be able to sleep; device not locked; pm locks held
2115 * This will re-activate the suspended device, increasing power usage
2116 * while letting drivers communicate again with its endpoints.
2117 * USB resume explicitly guarantees that the power session between
2118 * the host and the device is the same as it was when the device
2121 * If @udev->reset_resume is set then this routine won't check that the
2122 * port is still enabled. Furthermore, finish_port_resume() above will
2123 * reset @udev. The end result is that a broken power session can be
2124 * recovered and @udev will appear to persist across a loss of VBUS power.
2126 * For example, if a host controller doesn't maintain VBUS suspend current
2127 * during a system sleep or is reset when the system wakes up, all the USB
2128 * power sessions below it will be broken. This is especially troublesome
2129 * for mass-storage devices containing mounted filesystems, since the
2130 * device will appear to have disconnected and all the memory mappings
2131 * to it will be lost. Using the USB_PERSIST facility, the device can be
2132 * made to appear as if it had not disconnected.
2134 * This facility can be dangerous. Although usb_reset_and_verify_device() makes
2135 * every effort to insure that the same device is present after the
2136 * reset as before, it cannot provide a 100% guarantee. Furthermore it's
2137 * quite possible for a device to remain unaltered but its media to be
2138 * changed. If the user replaces a flash memory card while the system is
2139 * asleep, he will have only himself to blame when the filesystem on the
2140 * new card is corrupted and the system crashes.
2142 * Returns 0 on success, else negative errno.
2144 int usb_port_resume(struct usb_device
*udev
)
2146 struct usb_hub
*hub
= hdev_to_hub(udev
->parent
);
2147 int port1
= udev
->portnum
;
2149 u16 portchange
, portstatus
;
2151 /* Skip the initial Clear-Suspend step for a remote wakeup */
2152 status
= hub_port_status(hub
, port1
, &portstatus
, &portchange
);
2153 if (status
== 0 && !(portstatus
& USB_PORT_STAT_SUSPEND
))
2154 goto SuspendCleared
;
2156 // dev_dbg(hub->intfdev, "resume port %d\n", port1);
2158 set_bit(port1
, hub
->busy_bits
);
2160 /* see 7.1.7.7; affects power usage, but not budgeting */
2161 status
= clear_port_feature(hub
->hdev
,
2162 port1
, USB_PORT_FEAT_SUSPEND
);
2164 dev_dbg(hub
->intfdev
, "can't resume port %d, status %d\n",
2167 /* drive resume for at least 20 msec */
2168 dev_dbg(&udev
->dev
, "usb %sresume\n",
2169 udev
->auto_pm
? "auto-" : "");
2172 /* Virtual root hubs can trigger on GET_PORT_STATUS to
2173 * stop resume signaling. Then finish the resume
2176 status
= hub_port_status(hub
, port1
, &portstatus
, &portchange
);
2178 /* TRSMRCY = 10 msec */
2184 if (portchange
& USB_PORT_STAT_C_SUSPEND
)
2185 clear_port_feature(hub
->hdev
, port1
,
2186 USB_PORT_FEAT_C_SUSPEND
);
2189 clear_bit(port1
, hub
->busy_bits
);
2191 status
= check_port_resume_type(udev
,
2192 hub
, port1
, status
, portchange
, portstatus
);
2194 status
= finish_port_resume(udev
);
2196 dev_dbg(&udev
->dev
, "can't resume, status %d\n", status
);
2197 hub_port_logical_disconnect(hub
, port1
);
2202 /* caller has locked udev */
2203 static int remote_wakeup(struct usb_device
*udev
)
2207 if (udev
->state
== USB_STATE_SUSPENDED
) {
2208 dev_dbg(&udev
->dev
, "usb %sresume\n", "wakeup-");
2209 usb_mark_last_busy(udev
);
2210 status
= usb_external_resume_device(udev
);
2215 #else /* CONFIG_USB_SUSPEND */
2217 /* When CONFIG_USB_SUSPEND isn't set, we never suspend or resume any ports. */
2219 int usb_port_suspend(struct usb_device
*udev
)
2224 /* However we may need to do a reset-resume */
2226 int usb_port_resume(struct usb_device
*udev
)
2228 struct usb_hub
*hub
= hdev_to_hub(udev
->parent
);
2229 int port1
= udev
->portnum
;
2231 u16 portchange
, portstatus
;
2233 status
= hub_port_status(hub
, port1
, &portstatus
, &portchange
);
2234 status
= check_port_resume_type(udev
,
2235 hub
, port1
, status
, portchange
, portstatus
);
2238 dev_dbg(&udev
->dev
, "can't resume, status %d\n", status
);
2239 hub_port_logical_disconnect(hub
, port1
);
2240 } else if (udev
->reset_resume
) {
2241 dev_dbg(&udev
->dev
, "reset-resume\n");
2242 status
= usb_reset_and_verify_device(udev
);
2247 static inline int remote_wakeup(struct usb_device
*udev
)
2254 static int hub_suspend(struct usb_interface
*intf
, pm_message_t msg
)
2256 struct usb_hub
*hub
= usb_get_intfdata (intf
);
2257 struct usb_device
*hdev
= hub
->hdev
;
2260 /* fail if children aren't already suspended */
2261 for (port1
= 1; port1
<= hdev
->maxchild
; port1
++) {
2262 struct usb_device
*udev
;
2264 udev
= hdev
->children
[port1
-1];
2265 if (udev
&& udev
->can_submit
) {
2267 dev_dbg(&intf
->dev
, "port %d nyet suspended\n",
2273 dev_dbg(&intf
->dev
, "%s\n", __func__
);
2275 /* stop khubd and related activity */
2276 hub_quiesce(hub
, HUB_SUSPEND
);
2280 static int hub_resume(struct usb_interface
*intf
)
2282 struct usb_hub
*hub
= usb_get_intfdata(intf
);
2284 dev_dbg(&intf
->dev
, "%s\n", __func__
);
2285 hub_activate(hub
, HUB_RESUME
);
2289 static int hub_reset_resume(struct usb_interface
*intf
)
2291 struct usb_hub
*hub
= usb_get_intfdata(intf
);
2293 dev_dbg(&intf
->dev
, "%s\n", __func__
);
2294 hub_activate(hub
, HUB_RESET_RESUME
);
2299 * usb_root_hub_lost_power - called by HCD if the root hub lost Vbus power
2300 * @rhdev: struct usb_device for the root hub
2302 * The USB host controller driver calls this function when its root hub
2303 * is resumed and Vbus power has been interrupted or the controller
2304 * has been reset. The routine marks @rhdev as having lost power.
2305 * When the hub driver is resumed it will take notice and carry out
2306 * power-session recovery for all the "USB-PERSIST"-enabled child devices;
2307 * the others will be disconnected.
2309 void usb_root_hub_lost_power(struct usb_device
*rhdev
)
2311 dev_warn(&rhdev
->dev
, "root hub lost power or was reset\n");
2312 rhdev
->reset_resume
= 1;
2314 EXPORT_SYMBOL_GPL(usb_root_hub_lost_power
);
2316 #else /* CONFIG_PM */
2318 static inline int remote_wakeup(struct usb_device
*udev
)
2323 #define hub_suspend NULL
2324 #define hub_resume NULL
2325 #define hub_reset_resume NULL
2329 /* USB 2.0 spec, 7.1.7.3 / fig 7-29:
2331 * Between connect detection and reset signaling there must be a delay
2332 * of 100ms at least for debounce and power-settling. The corresponding
2333 * timer shall restart whenever the downstream port detects a disconnect.
2335 * Apparently there are some bluetooth and irda-dongles and a number of
2336 * low-speed devices for which this debounce period may last over a second.
2337 * Not covered by the spec - but easy to deal with.
2339 * This implementation uses a 1500ms total debounce timeout; if the
2340 * connection isn't stable by then it returns -ETIMEDOUT. It checks
2341 * every 25ms for transient disconnects. When the port status has been
2342 * unchanged for 100ms it returns the port status.
2344 static int hub_port_debounce(struct usb_hub
*hub
, int port1
)
2347 int total_time
, stable_time
= 0;
2348 u16 portchange
, portstatus
;
2349 unsigned connection
= 0xffff;
2351 for (total_time
= 0; ; total_time
+= HUB_DEBOUNCE_STEP
) {
2352 ret
= hub_port_status(hub
, port1
, &portstatus
, &portchange
);
2356 if (!(portchange
& USB_PORT_STAT_C_CONNECTION
) &&
2357 (portstatus
& USB_PORT_STAT_CONNECTION
) == connection
) {
2358 stable_time
+= HUB_DEBOUNCE_STEP
;
2359 if (stable_time
>= HUB_DEBOUNCE_STABLE
)
2363 connection
= portstatus
& USB_PORT_STAT_CONNECTION
;
2366 if (portchange
& USB_PORT_STAT_C_CONNECTION
) {
2367 clear_port_feature(hub
->hdev
, port1
,
2368 USB_PORT_FEAT_C_CONNECTION
);
2371 if (total_time
>= HUB_DEBOUNCE_TIMEOUT
)
2373 msleep(HUB_DEBOUNCE_STEP
);
2376 dev_dbg (hub
->intfdev
,
2377 "debounce: port %d: total %dms stable %dms status 0x%x\n",
2378 port1
, total_time
, stable_time
, portstatus
);
2380 if (stable_time
< HUB_DEBOUNCE_STABLE
)
2385 void usb_ep0_reinit(struct usb_device
*udev
)
2387 usb_disable_endpoint(udev
, 0 + USB_DIR_IN
);
2388 usb_disable_endpoint(udev
, 0 + USB_DIR_OUT
);
2389 usb_enable_endpoint(udev
, &udev
->ep0
);
2391 EXPORT_SYMBOL_GPL(usb_ep0_reinit
);
2393 #define usb_sndaddr0pipe() (PIPE_CONTROL << 30)
2394 #define usb_rcvaddr0pipe() ((PIPE_CONTROL << 30) | USB_DIR_IN)
2396 static int hub_set_address(struct usb_device
*udev
, int devnum
)
2402 if (udev
->state
== USB_STATE_ADDRESS
)
2404 if (udev
->state
!= USB_STATE_DEFAULT
)
2406 retval
= usb_control_msg(udev
, usb_sndaddr0pipe(),
2407 USB_REQ_SET_ADDRESS
, 0, devnum
, 0,
2408 NULL
, 0, USB_CTRL_SET_TIMEOUT
);
2410 /* Device now using proper address. */
2411 update_address(udev
, devnum
);
2412 usb_set_device_state(udev
, USB_STATE_ADDRESS
);
2413 usb_ep0_reinit(udev
);
2418 /* Reset device, (re)assign address, get device descriptor.
2419 * Device connection must be stable, no more debouncing needed.
2420 * Returns device in USB_STATE_ADDRESS, except on error.
2422 * If this is called for an already-existing device (as part of
2423 * usb_reset_and_verify_device), the caller must own the device lock. For a
2424 * newly detected device that is not accessible through any global
2425 * pointers, it's not necessary to lock the device.
2428 hub_port_init (struct usb_hub
*hub
, struct usb_device
*udev
, int port1
,
2431 static DEFINE_MUTEX(usb_address0_mutex
);
2433 struct usb_device
*hdev
= hub
->hdev
;
2435 unsigned delay
= HUB_SHORT_RESET_TIME
;
2436 enum usb_device_speed oldspeed
= udev
->speed
;
2438 int devnum
= udev
->devnum
;
2440 /* root hub ports have a slightly longer reset period
2441 * (from USB 2.0 spec, section 7.1.7.5)
2443 if (!hdev
->parent
) {
2444 delay
= HUB_ROOT_RESET_TIME
;
2445 if (port1
== hdev
->bus
->otg_port
)
2446 hdev
->bus
->b_hnp_enable
= 0;
2449 /* Some low speed devices have problems with the quick delay, so */
2450 /* be a bit pessimistic with those devices. RHbug #23670 */
2451 if (oldspeed
== USB_SPEED_LOW
)
2452 delay
= HUB_LONG_RESET_TIME
;
2454 mutex_lock(&usb_address0_mutex
);
2456 /* Reset the device; full speed may morph to high speed */
2457 retval
= hub_port_reset(hub
, port1
, udev
, delay
);
2458 if (retval
< 0) /* error or disconnect */
2460 /* success, speed is known */
2463 if (oldspeed
!= USB_SPEED_UNKNOWN
&& oldspeed
!= udev
->speed
) {
2464 dev_dbg(&udev
->dev
, "device reset changed speed!\n");
2467 oldspeed
= udev
->speed
;
2469 /* USB 2.0 section 5.5.3 talks about ep0 maxpacket ...
2470 * it's fixed size except for full speed devices.
2471 * For Wireless USB devices, ep0 max packet is always 512 (tho
2472 * reported as 0xff in the device descriptor). WUSB1.0[4.8.1].
2474 switch (udev
->speed
) {
2475 case USB_SPEED_VARIABLE
: /* fixed at 512 */
2476 udev
->ep0
.desc
.wMaxPacketSize
= __constant_cpu_to_le16(512);
2478 case USB_SPEED_HIGH
: /* fixed at 64 */
2479 udev
->ep0
.desc
.wMaxPacketSize
= __constant_cpu_to_le16(64);
2481 case USB_SPEED_FULL
: /* 8, 16, 32, or 64 */
2482 /* to determine the ep0 maxpacket size, try to read
2483 * the device descriptor to get bMaxPacketSize0 and
2484 * then correct our initial guess.
2486 udev
->ep0
.desc
.wMaxPacketSize
= __constant_cpu_to_le16(64);
2488 case USB_SPEED_LOW
: /* fixed at 8 */
2489 udev
->ep0
.desc
.wMaxPacketSize
= __constant_cpu_to_le16(8);
2496 switch (udev
->speed
) {
2497 case USB_SPEED_LOW
: speed
= "low"; break;
2498 case USB_SPEED_FULL
: speed
= "full"; break;
2499 case USB_SPEED_HIGH
: speed
= "high"; break;
2500 case USB_SPEED_VARIABLE
:
2504 default: speed
= "?"; break;
2506 dev_info (&udev
->dev
,
2507 "%s %s speed %sUSB device using %s and address %d\n",
2508 (udev
->config
) ? "reset" : "new", speed
, type
,
2509 udev
->bus
->controller
->driver
->name
, devnum
);
2511 /* Set up TT records, if needed */
2513 udev
->tt
= hdev
->tt
;
2514 udev
->ttport
= hdev
->ttport
;
2515 } else if (udev
->speed
!= USB_SPEED_HIGH
2516 && hdev
->speed
== USB_SPEED_HIGH
) {
2517 udev
->tt
= &hub
->tt
;
2518 udev
->ttport
= port1
;
2521 /* Why interleave GET_DESCRIPTOR and SET_ADDRESS this way?
2522 * Because device hardware and firmware is sometimes buggy in
2523 * this area, and this is how Linux has done it for ages.
2524 * Change it cautiously.
2526 * NOTE: If USE_NEW_SCHEME() is true we will start by issuing
2527 * a 64-byte GET_DESCRIPTOR request. This is what Windows does,
2528 * so it may help with some non-standards-compliant devices.
2529 * Otherwise we start with SET_ADDRESS and then try to read the
2530 * first 8 bytes of the device descriptor to get the ep0 maxpacket
2533 for (i
= 0; i
< GET_DESCRIPTOR_TRIES
; (++i
, msleep(100))) {
2534 if (USE_NEW_SCHEME(retry_counter
)) {
2535 struct usb_device_descriptor
*buf
;
2538 #define GET_DESCRIPTOR_BUFSIZE 64
2539 buf
= kmalloc(GET_DESCRIPTOR_BUFSIZE
, GFP_NOIO
);
2545 /* Retry on all errors; some devices are flakey.
2546 * 255 is for WUSB devices, we actually need to use
2547 * 512 (WUSB1.0[4.8.1]).
2549 for (j
= 0; j
< 3; ++j
) {
2550 buf
->bMaxPacketSize0
= 0;
2551 r
= usb_control_msg(udev
, usb_rcvaddr0pipe(),
2552 USB_REQ_GET_DESCRIPTOR
, USB_DIR_IN
,
2553 USB_DT_DEVICE
<< 8, 0,
2554 buf
, GET_DESCRIPTOR_BUFSIZE
,
2555 initial_descriptor_timeout
);
2556 switch (buf
->bMaxPacketSize0
) {
2557 case 8: case 16: case 32: case 64: case 255:
2558 if (buf
->bDescriptorType
==
2572 udev
->descriptor
.bMaxPacketSize0
=
2573 buf
->bMaxPacketSize0
;
2576 retval
= hub_port_reset(hub
, port1
, udev
, delay
);
2577 if (retval
< 0) /* error or disconnect */
2579 if (oldspeed
!= udev
->speed
) {
2581 "device reset changed speed!\n");
2586 dev_err(&udev
->dev
, "device descriptor "
2587 "read/%s, error %d\n",
2592 #undef GET_DESCRIPTOR_BUFSIZE
2596 * If device is WUSB, we already assigned an
2597 * unauthorized address in the Connect Ack sequence;
2598 * authorization will assign the final address.
2600 if (udev
->wusb
== 0) {
2601 for (j
= 0; j
< SET_ADDRESS_TRIES
; ++j
) {
2602 retval
= hub_set_address(udev
, devnum
);
2609 "device not accepting address %d, error %d\n",
2614 /* cope with hardware quirkiness:
2615 * - let SET_ADDRESS settle, some device hardware wants it
2616 * - read ep0 maxpacket even for high and low speed,
2619 if (USE_NEW_SCHEME(retry_counter
))
2623 retval
= usb_get_device_descriptor(udev
, 8);
2625 dev_err(&udev
->dev
, "device descriptor "
2626 "read/%s, error %d\n",
2638 i
= udev
->descriptor
.bMaxPacketSize0
== 0xff? /* wusb device? */
2639 512 : udev
->descriptor
.bMaxPacketSize0
;
2640 if (le16_to_cpu(udev
->ep0
.desc
.wMaxPacketSize
) != i
) {
2641 if (udev
->speed
!= USB_SPEED_FULL
||
2642 !(i
== 8 || i
== 16 || i
== 32 || i
== 64)) {
2643 dev_err(&udev
->dev
, "ep0 maxpacket = %d\n", i
);
2647 dev_dbg(&udev
->dev
, "ep0 maxpacket = %d\n", i
);
2648 udev
->ep0
.desc
.wMaxPacketSize
= cpu_to_le16(i
);
2649 usb_ep0_reinit(udev
);
2652 retval
= usb_get_device_descriptor(udev
, USB_DT_DEVICE_SIZE
);
2653 if (retval
< (signed)sizeof(udev
->descriptor
)) {
2654 dev_err(&udev
->dev
, "device descriptor read/%s, error %d\n",
2665 hub_port_disable(hub
, port1
, 0);
2666 update_address(udev
, devnum
); /* for disconnect processing */
2668 mutex_unlock(&usb_address0_mutex
);
2673 check_highspeed (struct usb_hub
*hub
, struct usb_device
*udev
, int port1
)
2675 struct usb_qualifier_descriptor
*qual
;
2678 qual
= kmalloc (sizeof *qual
, GFP_KERNEL
);
2682 status
= usb_get_descriptor (udev
, USB_DT_DEVICE_QUALIFIER
, 0,
2683 qual
, sizeof *qual
);
2684 if (status
== sizeof *qual
) {
2685 dev_info(&udev
->dev
, "not running at top speed; "
2686 "connect to a high speed hub\n");
2687 /* hub LEDs are probably harder to miss than syslog */
2688 if (hub
->has_indicators
) {
2689 hub
->indicator
[port1
-1] = INDICATOR_GREEN_BLINK
;
2690 schedule_delayed_work (&hub
->leds
, 0);
2697 hub_power_remaining (struct usb_hub
*hub
)
2699 struct usb_device
*hdev
= hub
->hdev
;
2703 if (!hub
->limited_power
)
2706 remaining
= hdev
->bus_mA
- hub
->descriptor
->bHubContrCurrent
;
2707 for (port1
= 1; port1
<= hdev
->maxchild
; ++port1
) {
2708 struct usb_device
*udev
= hdev
->children
[port1
- 1];
2714 /* Unconfigured devices may not use more than 100mA,
2715 * or 8mA for OTG ports */
2716 if (udev
->actconfig
)
2717 delta
= udev
->actconfig
->desc
.bMaxPower
* 2;
2718 else if (port1
!= udev
->bus
->otg_port
|| hdev
->parent
)
2722 if (delta
> hub
->mA_per_port
)
2723 dev_warn(&udev
->dev
, "%dmA is over %umA budget "
2725 delta
, hub
->mA_per_port
, port1
);
2728 if (remaining
< 0) {
2729 dev_warn(hub
->intfdev
, "%dmA over power budget!\n",
2736 /* Handle physical or logical connection change events.
2737 * This routine is called when:
2738 * a port connection-change occurs;
2739 * a port enable-change occurs (often caused by EMI);
2740 * usb_reset_and_verify_device() encounters changed descriptors (as from
2741 * a firmware download)
2742 * caller already locked the hub
2744 static void hub_port_connect_change(struct usb_hub
*hub
, int port1
,
2745 u16 portstatus
, u16 portchange
)
2747 struct usb_device
*hdev
= hub
->hdev
;
2748 struct device
*hub_dev
= hub
->intfdev
;
2749 struct usb_hcd
*hcd
= bus_to_hcd(hdev
->bus
);
2750 unsigned wHubCharacteristics
=
2751 le16_to_cpu(hub
->descriptor
->wHubCharacteristics
);
2752 struct usb_device
*udev
;
2756 "port %d, status %04x, change %04x, %s\n",
2757 port1
, portstatus
, portchange
, portspeed (portstatus
));
2759 if (hub
->has_indicators
) {
2760 set_port_led(hub
, port1
, HUB_LED_AUTO
);
2761 hub
->indicator
[port1
-1] = INDICATOR_AUTO
;
2764 #ifdef CONFIG_USB_OTG
2765 /* during HNP, don't repeat the debounce */
2766 if (hdev
->bus
->is_b_host
)
2767 portchange
&= ~(USB_PORT_STAT_C_CONNECTION
|
2768 USB_PORT_STAT_C_ENABLE
);
2771 /* Try to resuscitate an existing device */
2772 udev
= hdev
->children
[port1
-1];
2773 if ((portstatus
& USB_PORT_STAT_CONNECTION
) && udev
&&
2774 udev
->state
!= USB_STATE_NOTATTACHED
) {
2775 usb_lock_device(udev
);
2776 if (portstatus
& USB_PORT_STAT_ENABLE
) {
2777 status
= 0; /* Nothing to do */
2779 #ifdef CONFIG_USB_SUSPEND
2780 } else if (udev
->state
== USB_STATE_SUSPENDED
&&
2781 udev
->persist_enabled
) {
2782 /* For a suspended device, treat this as a
2783 * remote wakeup event.
2785 if (udev
->do_remote_wakeup
)
2786 status
= remote_wakeup(udev
);
2788 /* Otherwise leave it be; devices can't tell the
2789 * difference between suspended and disabled.
2796 status
= -ENODEV
; /* Don't resuscitate */
2798 usb_unlock_device(udev
);
2801 clear_bit(port1
, hub
->change_bits
);
2806 /* Disconnect any existing devices under this port */
2808 usb_disconnect(&hdev
->children
[port1
-1]);
2809 clear_bit(port1
, hub
->change_bits
);
2811 if (portchange
& (USB_PORT_STAT_C_CONNECTION
|
2812 USB_PORT_STAT_C_ENABLE
)) {
2813 status
= hub_port_debounce(hub
, port1
);
2815 if (printk_ratelimit())
2816 dev_err(hub_dev
, "connect-debounce failed, "
2817 "port %d disabled\n", port1
);
2818 portstatus
&= ~USB_PORT_STAT_CONNECTION
;
2820 portstatus
= status
;
2824 /* Return now if debouncing failed or nothing is connected */
2825 if (!(portstatus
& USB_PORT_STAT_CONNECTION
)) {
2827 /* maybe switch power back on (e.g. root hub was reset) */
2828 if ((wHubCharacteristics
& HUB_CHAR_LPSM
) < 2
2829 && !(portstatus
& (1 << USB_PORT_FEAT_POWER
)))
2830 set_port_feature(hdev
, port1
, USB_PORT_FEAT_POWER
);
2832 if (portstatus
& USB_PORT_STAT_ENABLE
)
2837 for (i
= 0; i
< SET_CONFIG_TRIES
; i
++) {
2839 /* reallocate for each attempt, since references
2840 * to the previous one can escape in various ways
2842 udev
= usb_alloc_dev(hdev
, hdev
->bus
, port1
);
2845 "couldn't allocate port %d usb_device\n",
2850 usb_set_device_state(udev
, USB_STATE_POWERED
);
2851 udev
->speed
= USB_SPEED_UNKNOWN
;
2852 udev
->bus_mA
= hub
->mA_per_port
;
2853 udev
->level
= hdev
->level
+ 1;
2854 udev
->wusb
= hub_is_wusb(hub
);
2856 /* set the address */
2857 choose_address(udev
);
2858 if (udev
->devnum
<= 0) {
2859 status
= -ENOTCONN
; /* Don't retry */
2863 /* reset and get descriptor */
2864 status
= hub_port_init(hub
, udev
, port1
, i
);
2868 /* consecutive bus-powered hubs aren't reliable; they can
2869 * violate the voltage drop budget. if the new child has
2870 * a "powered" LED, users should notice we didn't enable it
2871 * (without reading syslog), even without per-port LEDs
2874 if (udev
->descriptor
.bDeviceClass
== USB_CLASS_HUB
2875 && udev
->bus_mA
<= 100) {
2878 status
= usb_get_status(udev
, USB_RECIP_DEVICE
, 0,
2881 dev_dbg(&udev
->dev
, "get status %d ?\n", status
);
2884 le16_to_cpus(&devstat
);
2885 if ((devstat
& (1 << USB_DEVICE_SELF_POWERED
)) == 0) {
2887 "can't connect bus-powered hub "
2889 if (hub
->has_indicators
) {
2890 hub
->indicator
[port1
-1] =
2891 INDICATOR_AMBER_BLINK
;
2892 schedule_delayed_work (&hub
->leds
, 0);
2894 status
= -ENOTCONN
; /* Don't retry */
2899 /* check for devices running slower than they could */
2900 if (le16_to_cpu(udev
->descriptor
.bcdUSB
) >= 0x0200
2901 && udev
->speed
== USB_SPEED_FULL
2902 && highspeed_hubs
!= 0)
2903 check_highspeed (hub
, udev
, port1
);
2905 /* Store the parent's children[] pointer. At this point
2906 * udev becomes globally accessible, although presumably
2907 * no one will look at it until hdev is unlocked.
2911 /* We mustn't add new devices if the parent hub has
2912 * been disconnected; we would race with the
2913 * recursively_mark_NOTATTACHED() routine.
2915 spin_lock_irq(&device_state_lock
);
2916 if (hdev
->state
== USB_STATE_NOTATTACHED
)
2919 hdev
->children
[port1
-1] = udev
;
2920 spin_unlock_irq(&device_state_lock
);
2922 /* Run it through the hoops (find a driver, etc) */
2924 status
= usb_new_device(udev
);
2926 spin_lock_irq(&device_state_lock
);
2927 hdev
->children
[port1
-1] = NULL
;
2928 spin_unlock_irq(&device_state_lock
);
2935 status
= hub_power_remaining(hub
);
2937 dev_dbg(hub_dev
, "%dmA power budget left\n", status
);
2942 hub_port_disable(hub
, port1
, 1);
2944 usb_ep0_reinit(udev
);
2945 release_address(udev
);
2947 if ((status
== -ENOTCONN
) || (status
== -ENOTSUPP
))
2950 if (hub
->hdev
->parent
||
2951 !hcd
->driver
->port_handed_over
||
2952 !(hcd
->driver
->port_handed_over
)(hcd
, port1
))
2953 dev_err(hub_dev
, "unable to enumerate USB device on port %d\n",
2957 hub_port_disable(hub
, port1
, 1);
2958 if (hcd
->driver
->relinquish_port
&& !hub
->hdev
->parent
)
2959 hcd
->driver
->relinquish_port(hcd
, port1
);
2962 static void hub_events(void)
2964 struct list_head
*tmp
;
2965 struct usb_device
*hdev
;
2966 struct usb_interface
*intf
;
2967 struct usb_hub
*hub
;
2968 struct device
*hub_dev
;
2977 * We restart the list every time to avoid a deadlock with
2978 * deleting hubs downstream from this one. This should be
2979 * safe since we delete the hub from the event list.
2980 * Not the most efficient, but avoids deadlocks.
2984 /* Grab the first entry at the beginning of the list */
2985 spin_lock_irq(&hub_event_lock
);
2986 if (list_empty(&hub_event_list
)) {
2987 spin_unlock_irq(&hub_event_lock
);
2991 tmp
= hub_event_list
.next
;
2994 hub
= list_entry(tmp
, struct usb_hub
, event_list
);
2995 kref_get(&hub
->kref
);
2996 spin_unlock_irq(&hub_event_lock
);
2999 hub_dev
= hub
->intfdev
;
3000 intf
= to_usb_interface(hub_dev
);
3001 dev_dbg(hub_dev
, "state %d ports %d chg %04x evt %04x\n",
3002 hdev
->state
, hub
->descriptor
3003 ? hub
->descriptor
->bNbrPorts
3005 /* NOTE: expects max 15 ports... */
3006 (u16
) hub
->change_bits
[0],
3007 (u16
) hub
->event_bits
[0]);
3009 /* Lock the device, then check to see if we were
3010 * disconnected while waiting for the lock to succeed. */
3011 usb_lock_device(hdev
);
3012 if (unlikely(hub
->disconnected
))
3015 /* If the hub has died, clean up after it */
3016 if (hdev
->state
== USB_STATE_NOTATTACHED
) {
3017 hub
->error
= -ENODEV
;
3018 hub_quiesce(hub
, HUB_DISCONNECT
);
3023 ret
= usb_autopm_get_interface(intf
);
3025 dev_dbg(hub_dev
, "Can't autoresume: %d\n", ret
);
3029 /* If this is an inactive hub, do nothing */
3034 dev_dbg (hub_dev
, "resetting for error %d\n",
3037 ret
= usb_reset_device(hdev
);
3040 "error resetting hub: %d\n", ret
);
3048 /* deal with port status changes */
3049 for (i
= 1; i
<= hub
->descriptor
->bNbrPorts
; i
++) {
3050 if (test_bit(i
, hub
->busy_bits
))
3052 connect_change
= test_bit(i
, hub
->change_bits
);
3053 if (!test_and_clear_bit(i
, hub
->event_bits
) &&
3057 ret
= hub_port_status(hub
, i
,
3058 &portstatus
, &portchange
);
3062 if (portchange
& USB_PORT_STAT_C_CONNECTION
) {
3063 clear_port_feature(hdev
, i
,
3064 USB_PORT_FEAT_C_CONNECTION
);
3068 if (portchange
& USB_PORT_STAT_C_ENABLE
) {
3069 if (!connect_change
)
3071 "port %d enable change, "
3074 clear_port_feature(hdev
, i
,
3075 USB_PORT_FEAT_C_ENABLE
);
3078 * EM interference sometimes causes badly
3079 * shielded USB devices to be shutdown by
3080 * the hub, this hack enables them again.
3081 * Works at least with mouse driver.
3083 if (!(portstatus
& USB_PORT_STAT_ENABLE
)
3085 && hdev
->children
[i
-1]) {
3088 "disabled by hub (EMI?), "
3095 if (portchange
& USB_PORT_STAT_C_SUSPEND
) {
3096 struct usb_device
*udev
;
3098 clear_port_feature(hdev
, i
,
3099 USB_PORT_FEAT_C_SUSPEND
);
3100 udev
= hdev
->children
[i
-1];
3102 usb_lock_device(udev
);
3103 ret
= remote_wakeup(hdev
->
3105 usb_unlock_device(udev
);
3110 hub_port_disable(hub
, i
, 1);
3113 "resume on port %d, status %d\n",
3117 if (portchange
& USB_PORT_STAT_C_OVERCURRENT
) {
3119 "over-current change on port %d\n",
3121 clear_port_feature(hdev
, i
,
3122 USB_PORT_FEAT_C_OVER_CURRENT
);
3123 hub_power_on(hub
, true);
3126 if (portchange
& USB_PORT_STAT_C_RESET
) {
3128 "reset change on port %d\n",
3130 clear_port_feature(hdev
, i
,
3131 USB_PORT_FEAT_C_RESET
);
3135 hub_port_connect_change(hub
, i
,
3136 portstatus
, portchange
);
3139 /* deal with hub status changes */
3140 if (test_and_clear_bit(0, hub
->event_bits
) == 0)
3142 else if (hub_hub_status(hub
, &hubstatus
, &hubchange
) < 0)
3143 dev_err (hub_dev
, "get_hub_status failed\n");
3145 if (hubchange
& HUB_CHANGE_LOCAL_POWER
) {
3146 dev_dbg (hub_dev
, "power change\n");
3147 clear_hub_feature(hdev
, C_HUB_LOCAL_POWER
);
3148 if (hubstatus
& HUB_STATUS_LOCAL_POWER
)
3149 /* FIXME: Is this always true? */
3150 hub
->limited_power
= 1;
3152 hub
->limited_power
= 0;
3154 if (hubchange
& HUB_CHANGE_OVERCURRENT
) {
3155 dev_dbg (hub_dev
, "overcurrent change\n");
3156 msleep(500); /* Cool down */
3157 clear_hub_feature(hdev
, C_HUB_OVER_CURRENT
);
3158 hub_power_on(hub
, true);
3163 /* Allow autosuspend if we're not going to run again */
3164 if (list_empty(&hub
->event_list
))
3165 usb_autopm_enable(intf
);
3167 usb_unlock_device(hdev
);
3168 kref_put(&hub
->kref
, hub_release
);
3170 } /* end while (1) */
3173 static int hub_thread(void *__unused
)
3175 /* khubd needs to be freezable to avoid intefering with USB-PERSIST
3176 * port handover. Otherwise it might see that a full-speed device
3177 * was gone before the EHCI controller had handed its port over to
3178 * the companion full-speed controller.
3184 wait_event_freezable(khubd_wait
,
3185 !list_empty(&hub_event_list
) ||
3186 kthread_should_stop());
3187 } while (!kthread_should_stop() || !list_empty(&hub_event_list
));
3189 pr_debug("%s: khubd exiting\n", usbcore_name
);
3193 static struct usb_device_id hub_id_table
[] = {
3194 { .match_flags
= USB_DEVICE_ID_MATCH_DEV_CLASS
,
3195 .bDeviceClass
= USB_CLASS_HUB
},
3196 { .match_flags
= USB_DEVICE_ID_MATCH_INT_CLASS
,
3197 .bInterfaceClass
= USB_CLASS_HUB
},
3198 { } /* Terminating entry */
3201 MODULE_DEVICE_TABLE (usb
, hub_id_table
);
3203 static struct usb_driver hub_driver
= {
3206 .disconnect
= hub_disconnect
,
3207 .suspend
= hub_suspend
,
3208 .resume
= hub_resume
,
3209 .reset_resume
= hub_reset_resume
,
3210 .pre_reset
= hub_pre_reset
,
3211 .post_reset
= hub_post_reset
,
3213 .id_table
= hub_id_table
,
3214 .supports_autosuspend
= 1,
3217 int usb_hub_init(void)
3219 if (usb_register(&hub_driver
) < 0) {
3220 printk(KERN_ERR
"%s: can't register hub driver\n",
3225 khubd_task
= kthread_run(hub_thread
, NULL
, "khubd");
3226 if (!IS_ERR(khubd_task
))
3229 /* Fall through if kernel_thread failed */
3230 usb_deregister(&hub_driver
);
3231 printk(KERN_ERR
"%s: can't start khubd\n", usbcore_name
);
3236 void usb_hub_cleanup(void)
3238 kthread_stop(khubd_task
);
3241 * Hub resources are freed for us by usb_deregister. It calls
3242 * usb_driver_purge on every device which in turn calls that
3243 * devices disconnect function if it is using this driver.
3244 * The hub_disconnect function takes care of releasing the
3245 * individual hub resources. -greg
3247 usb_deregister(&hub_driver
);
3248 } /* usb_hub_cleanup() */
3250 static int descriptors_changed(struct usb_device
*udev
,
3251 struct usb_device_descriptor
*old_device_descriptor
)
3255 unsigned serial_len
= 0;
3257 unsigned old_length
;
3261 if (memcmp(&udev
->descriptor
, old_device_descriptor
,
3262 sizeof(*old_device_descriptor
)) != 0)
3265 /* Since the idVendor, idProduct, and bcdDevice values in the
3266 * device descriptor haven't changed, we will assume the
3267 * Manufacturer and Product strings haven't changed either.
3268 * But the SerialNumber string could be different (e.g., a
3269 * different flash card of the same brand).
3272 serial_len
= strlen(udev
->serial
) + 1;
3275 for (index
= 0; index
< udev
->descriptor
.bNumConfigurations
; index
++) {
3276 old_length
= le16_to_cpu(udev
->config
[index
].desc
.wTotalLength
);
3277 len
= max(len
, old_length
);
3280 buf
= kmalloc(len
, GFP_NOIO
);
3282 dev_err(&udev
->dev
, "no mem to re-read configs after reset\n");
3283 /* assume the worst */
3286 for (index
= 0; index
< udev
->descriptor
.bNumConfigurations
; index
++) {
3287 old_length
= le16_to_cpu(udev
->config
[index
].desc
.wTotalLength
);
3288 length
= usb_get_descriptor(udev
, USB_DT_CONFIG
, index
, buf
,
3290 if (length
!= old_length
) {
3291 dev_dbg(&udev
->dev
, "config index %d, error %d\n",
3296 if (memcmp (buf
, udev
->rawdescriptors
[index
], old_length
)
3298 dev_dbg(&udev
->dev
, "config index %d changed (#%d)\n",
3300 ((struct usb_config_descriptor
*) buf
)->
3301 bConfigurationValue
);
3307 if (!changed
&& serial_len
) {
3308 length
= usb_string(udev
, udev
->descriptor
.iSerialNumber
,
3310 if (length
+ 1 != serial_len
) {
3311 dev_dbg(&udev
->dev
, "serial string error %d\n",
3314 } else if (memcmp(buf
, udev
->serial
, length
) != 0) {
3315 dev_dbg(&udev
->dev
, "serial string changed\n");
3325 * usb_reset_and_verify_device - perform a USB port reset to reinitialize a device
3326 * @udev: device to reset (not in SUSPENDED or NOTATTACHED state)
3328 * WARNING - don't use this routine to reset a composite device
3329 * (one with multiple interfaces owned by separate drivers)!
3330 * Use usb_reset_device() instead.
3332 * Do a port reset, reassign the device's address, and establish its
3333 * former operating configuration. If the reset fails, or the device's
3334 * descriptors change from their values before the reset, or the original
3335 * configuration and altsettings cannot be restored, a flag will be set
3336 * telling khubd to pretend the device has been disconnected and then
3337 * re-connected. All drivers will be unbound, and the device will be
3338 * re-enumerated and probed all over again.
3340 * Returns 0 if the reset succeeded, -ENODEV if the device has been
3341 * flagged for logical disconnection, or some other negative error code
3342 * if the reset wasn't even attempted.
3344 * The caller must own the device lock. For example, it's safe to use
3345 * this from a driver probe() routine after downloading new firmware.
3346 * For calls that might not occur during probe(), drivers should lock
3347 * the device using usb_lock_device_for_reset().
3349 * Locking exception: This routine may also be called from within an
3350 * autoresume handler. Such usage won't conflict with other tasks
3351 * holding the device lock because these tasks should always call
3352 * usb_autopm_resume_device(), thereby preventing any unwanted autoresume.
3354 static int usb_reset_and_verify_device(struct usb_device
*udev
)
3356 struct usb_device
*parent_hdev
= udev
->parent
;
3357 struct usb_hub
*parent_hub
;
3358 struct usb_device_descriptor descriptor
= udev
->descriptor
;
3360 int port1
= udev
->portnum
;
3362 if (udev
->state
== USB_STATE_NOTATTACHED
||
3363 udev
->state
== USB_STATE_SUSPENDED
) {
3364 dev_dbg(&udev
->dev
, "device reset not allowed in state %d\n",
3370 /* this requires hcd-specific logic; see OHCI hc_restart() */
3371 dev_dbg(&udev
->dev
, "%s for root hub!\n", __func__
);
3374 parent_hub
= hdev_to_hub(parent_hdev
);
3376 set_bit(port1
, parent_hub
->busy_bits
);
3377 for (i
= 0; i
< SET_CONFIG_TRIES
; ++i
) {
3379 /* ep0 maxpacket size may change; let the HCD know about it.
3380 * Other endpoints will be handled by re-enumeration. */
3381 usb_ep0_reinit(udev
);
3382 ret
= hub_port_init(parent_hub
, udev
, port1
, i
);
3383 if (ret
>= 0 || ret
== -ENOTCONN
|| ret
== -ENODEV
)
3386 clear_bit(port1
, parent_hub
->busy_bits
);
3391 /* Device might have changed firmware (DFU or similar) */
3392 if (descriptors_changed(udev
, &descriptor
)) {
3393 dev_info(&udev
->dev
, "device firmware changed\n");
3394 udev
->descriptor
= descriptor
; /* for disconnect() calls */
3398 if (!udev
->actconfig
)
3401 ret
= usb_control_msg(udev
, usb_sndctrlpipe(udev
, 0),
3402 USB_REQ_SET_CONFIGURATION
, 0,
3403 udev
->actconfig
->desc
.bConfigurationValue
, 0,
3404 NULL
, 0, USB_CTRL_SET_TIMEOUT
);
3407 "can't restore configuration #%d (error=%d)\n",
3408 udev
->actconfig
->desc
.bConfigurationValue
, ret
);
3411 usb_set_device_state(udev
, USB_STATE_CONFIGURED
);
3413 for (i
= 0; i
< udev
->actconfig
->desc
.bNumInterfaces
; i
++) {
3414 struct usb_interface
*intf
= udev
->actconfig
->interface
[i
];
3415 struct usb_interface_descriptor
*desc
;
3417 /* set_interface resets host side toggle even
3418 * for altsetting zero. the interface may have no driver.
3420 desc
= &intf
->cur_altsetting
->desc
;
3421 ret
= usb_set_interface(udev
, desc
->bInterfaceNumber
,
3422 desc
->bAlternateSetting
);
3424 dev_err(&udev
->dev
, "failed to restore interface %d "
3425 "altsetting %d (error=%d)\n",
3426 desc
->bInterfaceNumber
,
3427 desc
->bAlternateSetting
,
3437 hub_port_logical_disconnect(parent_hub
, port1
);
3442 * usb_reset_device - warn interface drivers and perform a USB port reset
3443 * @udev: device to reset (not in SUSPENDED or NOTATTACHED state)
3445 * Warns all drivers bound to registered interfaces (using their pre_reset
3446 * method), performs the port reset, and then lets the drivers know that
3447 * the reset is over (using their post_reset method).
3449 * Return value is the same as for usb_reset_and_verify_device().
3451 * The caller must own the device lock. For example, it's safe to use
3452 * this from a driver probe() routine after downloading new firmware.
3453 * For calls that might not occur during probe(), drivers should lock
3454 * the device using usb_lock_device_for_reset().
3456 * If an interface is currently being probed or disconnected, we assume
3457 * its driver knows how to handle resets. For all other interfaces,
3458 * if the driver doesn't have pre_reset and post_reset methods then
3459 * we attempt to unbind it and rebind afterward.
3461 int usb_reset_device(struct usb_device
*udev
)
3465 struct usb_host_config
*config
= udev
->actconfig
;
3467 if (udev
->state
== USB_STATE_NOTATTACHED
||
3468 udev
->state
== USB_STATE_SUSPENDED
) {
3469 dev_dbg(&udev
->dev
, "device reset not allowed in state %d\n",
3474 /* Prevent autosuspend during the reset */
3475 usb_autoresume_device(udev
);
3478 for (i
= 0; i
< config
->desc
.bNumInterfaces
; ++i
) {
3479 struct usb_interface
*cintf
= config
->interface
[i
];
3480 struct usb_driver
*drv
;
3483 if (cintf
->dev
.driver
) {
3484 drv
= to_usb_driver(cintf
->dev
.driver
);
3485 if (drv
->pre_reset
&& drv
->post_reset
)
3486 unbind
= (drv
->pre_reset
)(cintf
);
3487 else if (cintf
->condition
==
3488 USB_INTERFACE_BOUND
)
3491 usb_forced_unbind_intf(cintf
);
3496 ret
= usb_reset_and_verify_device(udev
);
3499 for (i
= config
->desc
.bNumInterfaces
- 1; i
>= 0; --i
) {
3500 struct usb_interface
*cintf
= config
->interface
[i
];
3501 struct usb_driver
*drv
;
3502 int rebind
= cintf
->needs_binding
;
3504 if (!rebind
&& cintf
->dev
.driver
) {
3505 drv
= to_usb_driver(cintf
->dev
.driver
);
3506 if (drv
->post_reset
)
3507 rebind
= (drv
->post_reset
)(cintf
);
3508 else if (cintf
->condition
==
3509 USB_INTERFACE_BOUND
)
3512 if (ret
== 0 && rebind
)
3513 usb_rebind_intf(cintf
);
3517 usb_autosuspend_device(udev
);
3520 EXPORT_SYMBOL_GPL(usb_reset_device
);