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/usb/hcd.h>
23 #include <linux/usb/otg.h>
24 #include <linux/usb/quirks.h>
25 #include <linux/workqueue.h>
26 #include <linux/mutex.h>
27 #include <linux/random.h>
28 #include <linux/pm_qos.h>
30 #include <asm/uaccess.h>
31 #include <asm/byteorder.h>
34 #include "otg_whitelist.h"
36 #define USB_VENDOR_GENESYS_LOGIC 0x05e3
37 #define HUB_QUIRK_CHECK_PORT_AUTOSUSPEND 0x01
39 /* Protect struct usb_device->state and ->children members
40 * Note: Both are also protected by ->dev.sem, except that ->state can
41 * change to USB_STATE_NOTATTACHED even when the semaphore isn't held. */
42 static DEFINE_SPINLOCK(device_state_lock
);
44 /* workqueue to process hub events */
45 static struct workqueue_struct
*hub_wq
;
46 static void hub_event(struct work_struct
*work
);
48 /* synchronize hub-port add/remove and peering operations */
49 DEFINE_MUTEX(usb_port_peer_mutex
);
51 /* cycle leds on hubs that aren't blinking for attention */
52 static bool blinkenlights
= 0;
53 module_param(blinkenlights
, bool, S_IRUGO
);
54 MODULE_PARM_DESC(blinkenlights
, "true to cycle leds on hubs");
57 * Device SATA8000 FW1.0 from DATAST0R Technology Corp requires about
58 * 10 seconds to send reply for the initial 64-byte descriptor request.
60 /* define initial 64-byte descriptor request timeout in milliseconds */
61 static int initial_descriptor_timeout
= USB_CTRL_GET_TIMEOUT
;
62 module_param(initial_descriptor_timeout
, int, S_IRUGO
|S_IWUSR
);
63 MODULE_PARM_DESC(initial_descriptor_timeout
,
64 "initial 64-byte descriptor request timeout in milliseconds "
65 "(default 5000 - 5.0 seconds)");
68 * As of 2.6.10 we introduce a new USB device initialization scheme which
69 * closely resembles the way Windows works. Hopefully it will be compatible
70 * with a wider range of devices than the old scheme. However some previously
71 * working devices may start giving rise to "device not accepting address"
72 * errors; if that happens the user can try the old scheme by adjusting the
73 * following module parameters.
75 * For maximum flexibility there are two boolean parameters to control the
76 * hub driver's behavior. On the first initialization attempt, if the
77 * "old_scheme_first" parameter is set then the old scheme will be used,
78 * otherwise the new scheme is used. If that fails and "use_both_schemes"
79 * is set, then the driver will make another attempt, using the other scheme.
81 static bool old_scheme_first
= 0;
82 module_param(old_scheme_first
, bool, S_IRUGO
| S_IWUSR
);
83 MODULE_PARM_DESC(old_scheme_first
,
84 "start with the old device initialization scheme");
86 static bool use_both_schemes
= 1;
87 module_param(use_both_schemes
, bool, S_IRUGO
| S_IWUSR
);
88 MODULE_PARM_DESC(use_both_schemes
,
89 "try the other device initialization scheme if the "
92 /* Mutual exclusion for EHCI CF initialization. This interferes with
93 * port reset on some companion controllers.
95 DECLARE_RWSEM(ehci_cf_port_reset_rwsem
);
96 EXPORT_SYMBOL_GPL(ehci_cf_port_reset_rwsem
);
98 #define HUB_DEBOUNCE_TIMEOUT 2000
99 #define HUB_DEBOUNCE_STEP 25
100 #define HUB_DEBOUNCE_STABLE 100
102 static void hub_release(struct kref
*kref
);
103 static int usb_reset_and_verify_device(struct usb_device
*udev
);
104 static int hub_port_disable(struct usb_hub
*hub
, int port1
, int set_state
);
106 static inline char *portspeed(struct usb_hub
*hub
, int portstatus
)
108 if (hub_is_superspeed(hub
->hdev
))
110 if (portstatus
& USB_PORT_STAT_HIGH_SPEED
)
112 else if (portstatus
& USB_PORT_STAT_LOW_SPEED
)
118 /* Note that hdev or one of its children must be locked! */
119 struct usb_hub
*usb_hub_to_struct_hub(struct usb_device
*hdev
)
121 if (!hdev
|| !hdev
->actconfig
|| !hdev
->maxchild
)
123 return usb_get_intfdata(hdev
->actconfig
->interface
[0]);
126 int usb_device_supports_lpm(struct usb_device
*udev
)
128 /* Some devices have trouble with LPM */
129 if (udev
->quirks
& USB_QUIRK_NO_LPM
)
132 /* USB 2.1 (and greater) devices indicate LPM support through
133 * their USB 2.0 Extended Capabilities BOS descriptor.
135 if (udev
->speed
== USB_SPEED_HIGH
|| udev
->speed
== USB_SPEED_FULL
) {
136 if (udev
->bos
->ext_cap
&&
138 le32_to_cpu(udev
->bos
->ext_cap
->bmAttributes
)))
144 * According to the USB 3.0 spec, all USB 3.0 devices must support LPM.
145 * However, there are some that don't, and they set the U1/U2 exit
148 if (!udev
->bos
->ss_cap
) {
149 dev_info(&udev
->dev
, "No LPM exit latency info found, disabling LPM.\n");
153 if (udev
->bos
->ss_cap
->bU1devExitLat
== 0 &&
154 udev
->bos
->ss_cap
->bU2DevExitLat
== 0) {
156 dev_info(&udev
->dev
, "LPM exit latency is zeroed, disabling LPM.\n");
158 dev_info(&udev
->dev
, "We don't know the algorithms for LPM for this host, disabling LPM.\n");
162 if (!udev
->parent
|| udev
->parent
->lpm_capable
)
168 * Set the Maximum Exit Latency (MEL) for the host to initiate a transition from
171 static void usb_set_lpm_mel(struct usb_device
*udev
,
172 struct usb3_lpm_parameters
*udev_lpm_params
,
173 unsigned int udev_exit_latency
,
175 struct usb3_lpm_parameters
*hub_lpm_params
,
176 unsigned int hub_exit_latency
)
178 unsigned int total_mel
;
179 unsigned int device_mel
;
180 unsigned int hub_mel
;
183 * Calculate the time it takes to transition all links from the roothub
184 * to the parent hub into U0. The parent hub must then decode the
185 * packet (hub header decode latency) to figure out which port it was
188 * The Hub Header decode latency is expressed in 0.1us intervals (0x1
189 * means 0.1us). Multiply that by 100 to get nanoseconds.
191 total_mel
= hub_lpm_params
->mel
+
192 (hub
->descriptor
->u
.ss
.bHubHdrDecLat
* 100);
195 * How long will it take to transition the downstream hub's port into
196 * U0? The greater of either the hub exit latency or the device exit
199 * The BOS U1/U2 exit latencies are expressed in 1us intervals.
200 * Multiply that by 1000 to get nanoseconds.
202 device_mel
= udev_exit_latency
* 1000;
203 hub_mel
= hub_exit_latency
* 1000;
204 if (device_mel
> hub_mel
)
205 total_mel
+= device_mel
;
207 total_mel
+= hub_mel
;
209 udev_lpm_params
->mel
= total_mel
;
213 * Set the maximum Device to Host Exit Latency (PEL) for the device to initiate
214 * a transition from either U1 or U2.
216 static void usb_set_lpm_pel(struct usb_device
*udev
,
217 struct usb3_lpm_parameters
*udev_lpm_params
,
218 unsigned int udev_exit_latency
,
220 struct usb3_lpm_parameters
*hub_lpm_params
,
221 unsigned int hub_exit_latency
,
222 unsigned int port_to_port_exit_latency
)
224 unsigned int first_link_pel
;
225 unsigned int hub_pel
;
228 * First, the device sends an LFPS to transition the link between the
229 * device and the parent hub into U0. The exit latency is the bigger of
230 * the device exit latency or the hub exit latency.
232 if (udev_exit_latency
> hub_exit_latency
)
233 first_link_pel
= udev_exit_latency
* 1000;
235 first_link_pel
= hub_exit_latency
* 1000;
238 * When the hub starts to receive the LFPS, there is a slight delay for
239 * it to figure out that one of the ports is sending an LFPS. Then it
240 * will forward the LFPS to its upstream link. The exit latency is the
241 * delay, plus the PEL that we calculated for this hub.
243 hub_pel
= port_to_port_exit_latency
* 1000 + hub_lpm_params
->pel
;
246 * According to figure C-7 in the USB 3.0 spec, the PEL for this device
247 * is the greater of the two exit latencies.
249 if (first_link_pel
> hub_pel
)
250 udev_lpm_params
->pel
= first_link_pel
;
252 udev_lpm_params
->pel
= hub_pel
;
256 * Set the System Exit Latency (SEL) to indicate the total worst-case time from
257 * when a device initiates a transition to U0, until when it will receive the
258 * first packet from the host controller.
260 * Section C.1.5.1 describes the four components to this:
262 * - t2: time for the ERDY to make it from the device to the host.
263 * - t3: a host-specific delay to process the ERDY.
264 * - t4: time for the packet to make it from the host to the device.
266 * t3 is specific to both the xHCI host and the platform the host is integrated
267 * into. The Intel HW folks have said it's negligible, FIXME if a different
268 * vendor says otherwise.
270 static void usb_set_lpm_sel(struct usb_device
*udev
,
271 struct usb3_lpm_parameters
*udev_lpm_params
)
273 struct usb_device
*parent
;
274 unsigned int num_hubs
;
275 unsigned int total_sel
;
277 /* t1 = device PEL */
278 total_sel
= udev_lpm_params
->pel
;
279 /* How many external hubs are in between the device & the root port. */
280 for (parent
= udev
->parent
, num_hubs
= 0; parent
->parent
;
281 parent
= parent
->parent
)
283 /* t2 = 2.1us + 250ns * (num_hubs - 1) */
285 total_sel
+= 2100 + 250 * (num_hubs
- 1);
287 /* t4 = 250ns * num_hubs */
288 total_sel
+= 250 * num_hubs
;
290 udev_lpm_params
->sel
= total_sel
;
293 static void usb_set_lpm_parameters(struct usb_device
*udev
)
296 unsigned int port_to_port_delay
;
297 unsigned int udev_u1_del
;
298 unsigned int udev_u2_del
;
299 unsigned int hub_u1_del
;
300 unsigned int hub_u2_del
;
302 if (!udev
->lpm_capable
|| udev
->speed
< USB_SPEED_SUPER
)
305 hub
= usb_hub_to_struct_hub(udev
->parent
);
306 /* It doesn't take time to transition the roothub into U0, since it
307 * doesn't have an upstream link.
312 udev_u1_del
= udev
->bos
->ss_cap
->bU1devExitLat
;
313 udev_u2_del
= le16_to_cpu(udev
->bos
->ss_cap
->bU2DevExitLat
);
314 hub_u1_del
= udev
->parent
->bos
->ss_cap
->bU1devExitLat
;
315 hub_u2_del
= le16_to_cpu(udev
->parent
->bos
->ss_cap
->bU2DevExitLat
);
317 usb_set_lpm_mel(udev
, &udev
->u1_params
, udev_u1_del
,
318 hub
, &udev
->parent
->u1_params
, hub_u1_del
);
320 usb_set_lpm_mel(udev
, &udev
->u2_params
, udev_u2_del
,
321 hub
, &udev
->parent
->u2_params
, hub_u2_del
);
324 * Appendix C, section C.2.2.2, says that there is a slight delay from
325 * when the parent hub notices the downstream port is trying to
326 * transition to U0 to when the hub initiates a U0 transition on its
327 * upstream port. The section says the delays are tPort2PortU1EL and
328 * tPort2PortU2EL, but it doesn't define what they are.
330 * The hub chapter, sections 10.4.2.4 and 10.4.2.5 seem to be talking
331 * about the same delays. Use the maximum delay calculations from those
332 * sections. For U1, it's tHubPort2PortExitLat, which is 1us max. For
333 * U2, it's tHubPort2PortExitLat + U2DevExitLat - U1DevExitLat. I
334 * assume the device exit latencies they are talking about are the hub
337 * What do we do if the U2 exit latency is less than the U1 exit
338 * latency? It's possible, although not likely...
340 port_to_port_delay
= 1;
342 usb_set_lpm_pel(udev
, &udev
->u1_params
, udev_u1_del
,
343 hub
, &udev
->parent
->u1_params
, hub_u1_del
,
346 if (hub_u2_del
> hub_u1_del
)
347 port_to_port_delay
= 1 + hub_u2_del
- hub_u1_del
;
349 port_to_port_delay
= 1 + hub_u1_del
;
351 usb_set_lpm_pel(udev
, &udev
->u2_params
, udev_u2_del
,
352 hub
, &udev
->parent
->u2_params
, hub_u2_del
,
355 /* Now that we've got PEL, calculate SEL. */
356 usb_set_lpm_sel(udev
, &udev
->u1_params
);
357 usb_set_lpm_sel(udev
, &udev
->u2_params
);
360 /* USB 2.0 spec Section 11.24.4.5 */
361 static int get_hub_descriptor(struct usb_device
*hdev
,
362 struct usb_hub_descriptor
*desc
)
367 if (hub_is_superspeed(hdev
)) {
368 dtype
= USB_DT_SS_HUB
;
369 size
= USB_DT_SS_HUB_SIZE
;
372 size
= sizeof(struct usb_hub_descriptor
);
375 for (i
= 0; i
< 3; i
++) {
376 ret
= usb_control_msg(hdev
, usb_rcvctrlpipe(hdev
, 0),
377 USB_REQ_GET_DESCRIPTOR
, USB_DIR_IN
| USB_RT_HUB
,
378 dtype
<< 8, 0, desc
, size
,
379 USB_CTRL_GET_TIMEOUT
);
380 if (hub_is_superspeed(hdev
)) {
383 } else if (ret
>= USB_DT_HUB_NONVAR_SIZE
+ 2) {
384 /* Make sure we have the DeviceRemovable field. */
385 size
= USB_DT_HUB_NONVAR_SIZE
+ desc
->bNbrPorts
/ 8 + 1;
395 * USB 2.0 spec Section 11.24.2.1
397 static int clear_hub_feature(struct usb_device
*hdev
, int feature
)
399 return usb_control_msg(hdev
, usb_sndctrlpipe(hdev
, 0),
400 USB_REQ_CLEAR_FEATURE
, USB_RT_HUB
, feature
, 0, NULL
, 0, 1000);
404 * USB 2.0 spec Section 11.24.2.2
406 int usb_clear_port_feature(struct usb_device
*hdev
, int port1
, int feature
)
408 return usb_control_msg(hdev
, usb_sndctrlpipe(hdev
, 0),
409 USB_REQ_CLEAR_FEATURE
, USB_RT_PORT
, feature
, port1
,
414 * USB 2.0 spec Section 11.24.2.13
416 static int set_port_feature(struct usb_device
*hdev
, int port1
, int feature
)
418 return usb_control_msg(hdev
, usb_sndctrlpipe(hdev
, 0),
419 USB_REQ_SET_FEATURE
, USB_RT_PORT
, feature
, port1
,
423 static char *to_led_name(int selector
)
440 * USB 2.0 spec Section 11.24.2.7.1.10 and table 11-7
441 * for info about using port indicators
443 static void set_port_led(struct usb_hub
*hub
, int port1
, int selector
)
445 struct usb_port
*port_dev
= hub
->ports
[port1
- 1];
448 status
= set_port_feature(hub
->hdev
, (selector
<< 8) | port1
,
449 USB_PORT_FEAT_INDICATOR
);
450 dev_dbg(&port_dev
->dev
, "indicator %s status %d\n",
451 to_led_name(selector
), status
);
454 #define LED_CYCLE_PERIOD ((2*HZ)/3)
456 static void led_work(struct work_struct
*work
)
458 struct usb_hub
*hub
=
459 container_of(work
, struct usb_hub
, leds
.work
);
460 struct usb_device
*hdev
= hub
->hdev
;
462 unsigned changed
= 0;
465 if (hdev
->state
!= USB_STATE_CONFIGURED
|| hub
->quiescing
)
468 for (i
= 0; i
< hdev
->maxchild
; i
++) {
469 unsigned selector
, mode
;
471 /* 30%-50% duty cycle */
473 switch (hub
->indicator
[i
]) {
475 case INDICATOR_CYCLE
:
477 selector
= HUB_LED_AUTO
;
478 mode
= INDICATOR_AUTO
;
480 /* blinking green = sw attention */
481 case INDICATOR_GREEN_BLINK
:
482 selector
= HUB_LED_GREEN
;
483 mode
= INDICATOR_GREEN_BLINK_OFF
;
485 case INDICATOR_GREEN_BLINK_OFF
:
486 selector
= HUB_LED_OFF
;
487 mode
= INDICATOR_GREEN_BLINK
;
489 /* blinking amber = hw attention */
490 case INDICATOR_AMBER_BLINK
:
491 selector
= HUB_LED_AMBER
;
492 mode
= INDICATOR_AMBER_BLINK_OFF
;
494 case INDICATOR_AMBER_BLINK_OFF
:
495 selector
= HUB_LED_OFF
;
496 mode
= INDICATOR_AMBER_BLINK
;
498 /* blink green/amber = reserved */
499 case INDICATOR_ALT_BLINK
:
500 selector
= HUB_LED_GREEN
;
501 mode
= INDICATOR_ALT_BLINK_OFF
;
503 case INDICATOR_ALT_BLINK_OFF
:
504 selector
= HUB_LED_AMBER
;
505 mode
= INDICATOR_ALT_BLINK
;
510 if (selector
!= HUB_LED_AUTO
)
512 set_port_led(hub
, i
+ 1, selector
);
513 hub
->indicator
[i
] = mode
;
515 if (!changed
&& blinkenlights
) {
517 cursor
%= hdev
->maxchild
;
518 set_port_led(hub
, cursor
+ 1, HUB_LED_GREEN
);
519 hub
->indicator
[cursor
] = INDICATOR_CYCLE
;
523 queue_delayed_work(system_power_efficient_wq
,
524 &hub
->leds
, LED_CYCLE_PERIOD
);
527 /* use a short timeout for hub/port status fetches */
528 #define USB_STS_TIMEOUT 1000
529 #define USB_STS_RETRIES 5
532 * USB 2.0 spec Section 11.24.2.6
534 static int get_hub_status(struct usb_device
*hdev
,
535 struct usb_hub_status
*data
)
537 int i
, status
= -ETIMEDOUT
;
539 for (i
= 0; i
< USB_STS_RETRIES
&&
540 (status
== -ETIMEDOUT
|| status
== -EPIPE
); i
++) {
541 status
= usb_control_msg(hdev
, usb_rcvctrlpipe(hdev
, 0),
542 USB_REQ_GET_STATUS
, USB_DIR_IN
| USB_RT_HUB
, 0, 0,
543 data
, sizeof(*data
), USB_STS_TIMEOUT
);
549 * USB 2.0 spec Section 11.24.2.7
551 static int get_port_status(struct usb_device
*hdev
, int port1
,
552 struct usb_port_status
*data
)
554 int i
, status
= -ETIMEDOUT
;
556 for (i
= 0; i
< USB_STS_RETRIES
&&
557 (status
== -ETIMEDOUT
|| status
== -EPIPE
); i
++) {
558 status
= usb_control_msg(hdev
, usb_rcvctrlpipe(hdev
, 0),
559 USB_REQ_GET_STATUS
, USB_DIR_IN
| USB_RT_PORT
, 0, port1
,
560 data
, sizeof(*data
), USB_STS_TIMEOUT
);
565 static int hub_port_status(struct usb_hub
*hub
, int port1
,
566 u16
*status
, u16
*change
)
570 mutex_lock(&hub
->status_mutex
);
571 ret
= get_port_status(hub
->hdev
, port1
, &hub
->status
->port
);
574 dev_err(hub
->intfdev
,
575 "%s failed (err = %d)\n", __func__
, ret
);
579 *status
= le16_to_cpu(hub
->status
->port
.wPortStatus
);
580 *change
= le16_to_cpu(hub
->status
->port
.wPortChange
);
584 mutex_unlock(&hub
->status_mutex
);
588 static void kick_hub_wq(struct usb_hub
*hub
)
590 struct usb_interface
*intf
;
592 if (hub
->disconnected
|| work_pending(&hub
->events
))
596 * Suppress autosuspend until the event is proceed.
598 * Be careful and make sure that the symmetric operation is
599 * always called. We are here only when there is no pending
600 * work for this hub. Therefore put the interface either when
601 * the new work is called or when it is canceled.
603 intf
= to_usb_interface(hub
->intfdev
);
604 usb_autopm_get_interface_no_resume(intf
);
605 kref_get(&hub
->kref
);
607 if (queue_work(hub_wq
, &hub
->events
))
610 /* the work has already been scheduled */
611 usb_autopm_put_interface_async(intf
);
612 kref_put(&hub
->kref
, hub_release
);
615 void usb_kick_hub_wq(struct usb_device
*hdev
)
617 struct usb_hub
*hub
= usb_hub_to_struct_hub(hdev
);
624 * Let the USB core know that a USB 3.0 device has sent a Function Wake Device
625 * Notification, which indicates it had initiated remote wakeup.
627 * USB 3.0 hubs do not report the port link state change from U3 to U0 when the
628 * device initiates resume, so the USB core will not receive notice of the
629 * resume through the normal hub interrupt URB.
631 void usb_wakeup_notification(struct usb_device
*hdev
,
632 unsigned int portnum
)
635 struct usb_port
*port_dev
;
640 hub
= usb_hub_to_struct_hub(hdev
);
642 port_dev
= hub
->ports
[portnum
- 1];
643 if (port_dev
&& port_dev
->child
)
644 pm_wakeup_event(&port_dev
->child
->dev
, 0);
646 set_bit(portnum
, hub
->wakeup_bits
);
650 EXPORT_SYMBOL_GPL(usb_wakeup_notification
);
652 /* completion function, fires on port status changes and various faults */
653 static void hub_irq(struct urb
*urb
)
655 struct usb_hub
*hub
= urb
->context
;
656 int status
= urb
->status
;
661 case -ENOENT
: /* synchronous unlink */
662 case -ECONNRESET
: /* async unlink */
663 case -ESHUTDOWN
: /* hardware going away */
666 default: /* presumably an error */
667 /* Cause a hub reset after 10 consecutive errors */
668 dev_dbg(hub
->intfdev
, "transfer --> %d\n", status
);
669 if ((++hub
->nerrors
< 10) || hub
->error
)
674 /* let hub_wq handle things */
675 case 0: /* we got data: port status changed */
677 for (i
= 0; i
< urb
->actual_length
; ++i
)
678 bits
|= ((unsigned long) ((*hub
->buffer
)[i
]))
680 hub
->event_bits
[0] = bits
;
686 /* Something happened, let hub_wq figure it out */
693 status
= usb_submit_urb(hub
->urb
, GFP_ATOMIC
);
694 if (status
!= 0 && status
!= -ENODEV
&& status
!= -EPERM
)
695 dev_err(hub
->intfdev
, "resubmit --> %d\n", status
);
698 /* USB 2.0 spec Section 11.24.2.3 */
700 hub_clear_tt_buffer(struct usb_device
*hdev
, u16 devinfo
, u16 tt
)
702 /* Need to clear both directions for control ep */
703 if (((devinfo
>> 11) & USB_ENDPOINT_XFERTYPE_MASK
) ==
704 USB_ENDPOINT_XFER_CONTROL
) {
705 int status
= usb_control_msg(hdev
, usb_sndctrlpipe(hdev
, 0),
706 HUB_CLEAR_TT_BUFFER
, USB_RT_PORT
,
707 devinfo
^ 0x8000, tt
, NULL
, 0, 1000);
711 return usb_control_msg(hdev
, usb_sndctrlpipe(hdev
, 0),
712 HUB_CLEAR_TT_BUFFER
, USB_RT_PORT
, devinfo
,
717 * enumeration blocks hub_wq for a long time. we use keventd instead, since
718 * long blocking there is the exception, not the rule. accordingly, HCDs
719 * talking to TTs must queue control transfers (not just bulk and iso), so
720 * both can talk to the same hub concurrently.
722 static void hub_tt_work(struct work_struct
*work
)
724 struct usb_hub
*hub
=
725 container_of(work
, struct usb_hub
, tt
.clear_work
);
728 spin_lock_irqsave(&hub
->tt
.lock
, flags
);
729 while (!list_empty(&hub
->tt
.clear_list
)) {
730 struct list_head
*next
;
731 struct usb_tt_clear
*clear
;
732 struct usb_device
*hdev
= hub
->hdev
;
733 const struct hc_driver
*drv
;
736 next
= hub
->tt
.clear_list
.next
;
737 clear
= list_entry(next
, struct usb_tt_clear
, clear_list
);
738 list_del(&clear
->clear_list
);
740 /* drop lock so HCD can concurrently report other TT errors */
741 spin_unlock_irqrestore(&hub
->tt
.lock
, flags
);
742 status
= hub_clear_tt_buffer(hdev
, clear
->devinfo
, clear
->tt
);
743 if (status
&& status
!= -ENODEV
)
745 "clear tt %d (%04x) error %d\n",
746 clear
->tt
, clear
->devinfo
, status
);
748 /* Tell the HCD, even if the operation failed */
749 drv
= clear
->hcd
->driver
;
750 if (drv
->clear_tt_buffer_complete
)
751 (drv
->clear_tt_buffer_complete
)(clear
->hcd
, clear
->ep
);
754 spin_lock_irqsave(&hub
->tt
.lock
, flags
);
756 spin_unlock_irqrestore(&hub
->tt
.lock
, flags
);
760 * usb_hub_set_port_power - control hub port's power state
761 * @hdev: USB device belonging to the usb hub
764 * @set: expected status
766 * call this function to control port's power via setting or
767 * clearing the port's PORT_POWER feature.
769 * Return: 0 if successful. A negative error code otherwise.
771 int usb_hub_set_port_power(struct usb_device
*hdev
, struct usb_hub
*hub
,
777 ret
= set_port_feature(hdev
, port1
, USB_PORT_FEAT_POWER
);
779 ret
= usb_clear_port_feature(hdev
, port1
, USB_PORT_FEAT_POWER
);
785 set_bit(port1
, hub
->power_bits
);
787 clear_bit(port1
, hub
->power_bits
);
792 * usb_hub_clear_tt_buffer - clear control/bulk TT state in high speed hub
793 * @urb: an URB associated with the failed or incomplete split transaction
795 * High speed HCDs use this to tell the hub driver that some split control or
796 * bulk transaction failed in a way that requires clearing internal state of
797 * a transaction translator. This is normally detected (and reported) from
800 * It may not be possible for that hub to handle additional full (or low)
801 * speed transactions until that state is fully cleared out.
803 * Return: 0 if successful. A negative error code otherwise.
805 int usb_hub_clear_tt_buffer(struct urb
*urb
)
807 struct usb_device
*udev
= urb
->dev
;
808 int pipe
= urb
->pipe
;
809 struct usb_tt
*tt
= udev
->tt
;
811 struct usb_tt_clear
*clear
;
813 /* we've got to cope with an arbitrary number of pending TT clears,
814 * since each TT has "at least two" buffers that can need it (and
815 * there can be many TTs per hub). even if they're uncommon.
817 clear
= kmalloc(sizeof *clear
, GFP_ATOMIC
);
819 dev_err(&udev
->dev
, "can't save CLEAR_TT_BUFFER state\n");
820 /* FIXME recover somehow ... RESET_TT? */
824 /* info that CLEAR_TT_BUFFER needs */
825 clear
->tt
= tt
->multi
? udev
->ttport
: 1;
826 clear
->devinfo
= usb_pipeendpoint (pipe
);
827 clear
->devinfo
|= udev
->devnum
<< 4;
828 clear
->devinfo
|= usb_pipecontrol(pipe
)
829 ? (USB_ENDPOINT_XFER_CONTROL
<< 11)
830 : (USB_ENDPOINT_XFER_BULK
<< 11);
831 if (usb_pipein(pipe
))
832 clear
->devinfo
|= 1 << 15;
834 /* info for completion callback */
835 clear
->hcd
= bus_to_hcd(udev
->bus
);
838 /* tell keventd to clear state for this TT */
839 spin_lock_irqsave(&tt
->lock
, flags
);
840 list_add_tail(&clear
->clear_list
, &tt
->clear_list
);
841 schedule_work(&tt
->clear_work
);
842 spin_unlock_irqrestore(&tt
->lock
, flags
);
845 EXPORT_SYMBOL_GPL(usb_hub_clear_tt_buffer
);
847 static void hub_power_on(struct usb_hub
*hub
, bool do_delay
)
851 /* Enable power on each port. Some hubs have reserved values
852 * of LPSM (> 2) in their descriptors, even though they are
853 * USB 2.0 hubs. Some hubs do not implement port-power switching
854 * but only emulate it. In all cases, the ports won't work
855 * unless we send these messages to the hub.
857 if (hub_is_port_power_switchable(hub
))
858 dev_dbg(hub
->intfdev
, "enabling power on all ports\n");
860 dev_dbg(hub
->intfdev
, "trying to enable port power on "
861 "non-switchable hub\n");
862 for (port1
= 1; port1
<= hub
->hdev
->maxchild
; port1
++)
863 if (test_bit(port1
, hub
->power_bits
))
864 set_port_feature(hub
->hdev
, port1
, USB_PORT_FEAT_POWER
);
866 usb_clear_port_feature(hub
->hdev
, port1
,
867 USB_PORT_FEAT_POWER
);
869 msleep(hub_power_on_good_delay(hub
));
872 static int hub_hub_status(struct usb_hub
*hub
,
873 u16
*status
, u16
*change
)
877 mutex_lock(&hub
->status_mutex
);
878 ret
= get_hub_status(hub
->hdev
, &hub
->status
->hub
);
881 dev_err(hub
->intfdev
,
882 "%s failed (err = %d)\n", __func__
, ret
);
884 *status
= le16_to_cpu(hub
->status
->hub
.wHubStatus
);
885 *change
= le16_to_cpu(hub
->status
->hub
.wHubChange
);
888 mutex_unlock(&hub
->status_mutex
);
892 static int hub_set_port_link_state(struct usb_hub
*hub
, int port1
,
893 unsigned int link_status
)
895 return set_port_feature(hub
->hdev
,
896 port1
| (link_status
<< 3),
897 USB_PORT_FEAT_LINK_STATE
);
901 * Disable a port and mark a logical connect-change event, so that some
902 * time later hub_wq will disconnect() any existing usb_device on the port
903 * and will re-enumerate if there actually is a device attached.
905 static void hub_port_logical_disconnect(struct usb_hub
*hub
, int port1
)
907 dev_dbg(&hub
->ports
[port1
- 1]->dev
, "logical disconnect\n");
908 hub_port_disable(hub
, port1
, 1);
910 /* FIXME let caller ask to power down the port:
911 * - some devices won't enumerate without a VBUS power cycle
912 * - SRP saves power that way
913 * - ... new call, TBD ...
914 * That's easy if this hub can switch power per-port, and
915 * hub_wq reactivates the port later (timer, SRP, etc).
916 * Powerdown must be optional, because of reset/DFU.
919 set_bit(port1
, hub
->change_bits
);
924 * usb_remove_device - disable a device's port on its parent hub
925 * @udev: device to be disabled and removed
926 * Context: @udev locked, must be able to sleep.
928 * After @udev's port has been disabled, hub_wq is notified and it will
929 * see that the device has been disconnected. When the device is
930 * physically unplugged and something is plugged in, the events will
931 * be received and processed normally.
933 * Return: 0 if successful. A negative error code otherwise.
935 int usb_remove_device(struct usb_device
*udev
)
938 struct usb_interface
*intf
;
940 if (!udev
->parent
) /* Can't remove a root hub */
942 hub
= usb_hub_to_struct_hub(udev
->parent
);
943 intf
= to_usb_interface(hub
->intfdev
);
945 usb_autopm_get_interface(intf
);
946 set_bit(udev
->portnum
, hub
->removed_bits
);
947 hub_port_logical_disconnect(hub
, udev
->portnum
);
948 usb_autopm_put_interface(intf
);
952 enum hub_activation_type
{
953 HUB_INIT
, HUB_INIT2
, HUB_INIT3
, /* INITs must come first */
954 HUB_POST_RESET
, HUB_RESUME
, HUB_RESET_RESUME
,
957 static void hub_init_func2(struct work_struct
*ws
);
958 static void hub_init_func3(struct work_struct
*ws
);
960 static void hub_activate(struct usb_hub
*hub
, enum hub_activation_type type
)
962 struct usb_device
*hdev
= hub
->hdev
;
967 bool need_debounce_delay
= false;
970 /* Continue a partial initialization */
971 if (type
== HUB_INIT2
|| type
== HUB_INIT3
) {
972 device_lock(&hdev
->dev
);
974 /* Was the hub disconnected while we were waiting? */
975 if (hub
->disconnected
)
977 if (type
== HUB_INIT2
)
981 kref_get(&hub
->kref
);
983 /* The superspeed hub except for root hub has to use Hub Depth
984 * value as an offset into the route string to locate the bits
985 * it uses to determine the downstream port number. So hub driver
986 * should send a set hub depth request to superspeed hub after
987 * the superspeed hub is set configuration in initialization or
990 * After a resume, port power should still be on.
991 * For any other type of activation, turn it on.
993 if (type
!= HUB_RESUME
) {
994 if (hdev
->parent
&& hub_is_superspeed(hdev
)) {
995 ret
= usb_control_msg(hdev
, usb_sndctrlpipe(hdev
, 0),
996 HUB_SET_DEPTH
, USB_RT_HUB
,
997 hdev
->level
- 1, 0, NULL
, 0,
998 USB_CTRL_SET_TIMEOUT
);
1000 dev_err(hub
->intfdev
,
1001 "set hub depth failed\n");
1004 /* Speed up system boot by using a delayed_work for the
1005 * hub's initial power-up delays. This is pretty awkward
1006 * and the implementation looks like a home-brewed sort of
1007 * setjmp/longjmp, but it saves at least 100 ms for each
1008 * root hub (assuming usbcore is compiled into the kernel
1009 * rather than as a module). It adds up.
1011 * This can't be done for HUB_RESUME or HUB_RESET_RESUME
1012 * because for those activation types the ports have to be
1013 * operational when we return. In theory this could be done
1014 * for HUB_POST_RESET, but it's easier not to.
1016 if (type
== HUB_INIT
) {
1017 delay
= hub_power_on_good_delay(hub
);
1019 hub_power_on(hub
, false);
1020 INIT_DELAYED_WORK(&hub
->init_work
, hub_init_func2
);
1021 queue_delayed_work(system_power_efficient_wq
,
1023 msecs_to_jiffies(delay
));
1025 /* Suppress autosuspend until init is done */
1026 usb_autopm_get_interface_no_resume(
1027 to_usb_interface(hub
->intfdev
));
1028 return; /* Continues at init2: below */
1029 } else if (type
== HUB_RESET_RESUME
) {
1030 /* The internal host controller state for the hub device
1031 * may be gone after a host power loss on system resume.
1032 * Update the device's info so the HW knows it's a hub.
1034 hcd
= bus_to_hcd(hdev
->bus
);
1035 if (hcd
->driver
->update_hub_device
) {
1036 ret
= hcd
->driver
->update_hub_device(hcd
, hdev
,
1037 &hub
->tt
, GFP_NOIO
);
1039 dev_err(hub
->intfdev
, "Host not "
1040 "accepting hub info "
1042 dev_err(hub
->intfdev
, "LS/FS devices "
1043 "and hubs may not work "
1044 "under this hub\n.");
1047 hub_power_on(hub
, true);
1049 hub_power_on(hub
, true);
1055 * Check each port and set hub->change_bits to let hub_wq know
1056 * which ports need attention.
1058 for (port1
= 1; port1
<= hdev
->maxchild
; ++port1
) {
1059 struct usb_port
*port_dev
= hub
->ports
[port1
- 1];
1060 struct usb_device
*udev
= port_dev
->child
;
1061 u16 portstatus
, portchange
;
1063 portstatus
= portchange
= 0;
1064 status
= hub_port_status(hub
, port1
, &portstatus
, &portchange
);
1068 if (udev
|| (portstatus
& USB_PORT_STAT_CONNECTION
))
1069 dev_dbg(&port_dev
->dev
, "status %04x change %04x\n",
1070 portstatus
, portchange
);
1073 * After anything other than HUB_RESUME (i.e., initialization
1074 * or any sort of reset), every port should be disabled.
1075 * Unconnected ports should likewise be disabled (paranoia),
1076 * and so should ports for which we have no usb_device.
1078 if ((portstatus
& USB_PORT_STAT_ENABLE
) && (
1079 type
!= HUB_RESUME
||
1080 !(portstatus
& USB_PORT_STAT_CONNECTION
) ||
1082 udev
->state
== USB_STATE_NOTATTACHED
)) {
1084 * USB3 protocol ports will automatically transition
1085 * to Enabled state when detect an USB3.0 device attach.
1086 * Do not disable USB3 protocol ports, just pretend
1089 portstatus
&= ~USB_PORT_STAT_ENABLE
;
1090 if (!hub_is_superspeed(hdev
))
1091 usb_clear_port_feature(hdev
, port1
,
1092 USB_PORT_FEAT_ENABLE
);
1095 /* Clear status-change flags; we'll debounce later */
1096 if (portchange
& USB_PORT_STAT_C_CONNECTION
) {
1097 need_debounce_delay
= true;
1098 usb_clear_port_feature(hub
->hdev
, port1
,
1099 USB_PORT_FEAT_C_CONNECTION
);
1101 if (portchange
& USB_PORT_STAT_C_ENABLE
) {
1102 need_debounce_delay
= true;
1103 usb_clear_port_feature(hub
->hdev
, port1
,
1104 USB_PORT_FEAT_C_ENABLE
);
1106 if (portchange
& USB_PORT_STAT_C_RESET
) {
1107 need_debounce_delay
= true;
1108 usb_clear_port_feature(hub
->hdev
, port1
,
1109 USB_PORT_FEAT_C_RESET
);
1111 if ((portchange
& USB_PORT_STAT_C_BH_RESET
) &&
1112 hub_is_superspeed(hub
->hdev
)) {
1113 need_debounce_delay
= true;
1114 usb_clear_port_feature(hub
->hdev
, port1
,
1115 USB_PORT_FEAT_C_BH_PORT_RESET
);
1117 /* We can forget about a "removed" device when there's a
1118 * physical disconnect or the connect status changes.
1120 if (!(portstatus
& USB_PORT_STAT_CONNECTION
) ||
1121 (portchange
& USB_PORT_STAT_C_CONNECTION
))
1122 clear_bit(port1
, hub
->removed_bits
);
1124 if (!udev
|| udev
->state
== USB_STATE_NOTATTACHED
) {
1125 /* Tell hub_wq to disconnect the device or
1126 * check for a new connection or over current condition.
1127 * Based on USB2.0 Spec Section 11.12.5,
1128 * C_PORT_OVER_CURRENT could be set while
1129 * PORT_OVER_CURRENT is not. So check for any of them.
1131 if (udev
|| (portstatus
& USB_PORT_STAT_CONNECTION
) ||
1132 (portstatus
& USB_PORT_STAT_OVERCURRENT
) ||
1133 (portchange
& USB_PORT_STAT_C_OVERCURRENT
))
1134 set_bit(port1
, hub
->change_bits
);
1136 } else if (portstatus
& USB_PORT_STAT_ENABLE
) {
1137 bool port_resumed
= (portstatus
&
1138 USB_PORT_STAT_LINK_STATE
) ==
1140 /* The power session apparently survived the resume.
1141 * If there was an overcurrent or suspend change
1142 * (i.e., remote wakeup request), have hub_wq
1143 * take care of it. Look at the port link state
1144 * for USB 3.0 hubs, since they don't have a suspend
1145 * change bit, and they don't set the port link change
1146 * bit on device-initiated resume.
1148 if (portchange
|| (hub_is_superspeed(hub
->hdev
) &&
1150 set_bit(port1
, hub
->change_bits
);
1152 } else if (udev
->persist_enabled
) {
1154 udev
->reset_resume
= 1;
1156 /* Don't set the change_bits when the device
1159 if (test_bit(port1
, hub
->power_bits
))
1160 set_bit(port1
, hub
->change_bits
);
1163 /* The power session is gone; tell hub_wq */
1164 usb_set_device_state(udev
, USB_STATE_NOTATTACHED
);
1165 set_bit(port1
, hub
->change_bits
);
1169 /* If no port-status-change flags were set, we don't need any
1170 * debouncing. If flags were set we can try to debounce the
1171 * ports all at once right now, instead of letting hub_wq do them
1172 * one at a time later on.
1174 * If any port-status changes do occur during this delay, hub_wq
1175 * will see them later and handle them normally.
1177 if (need_debounce_delay
) {
1178 delay
= HUB_DEBOUNCE_STABLE
;
1180 /* Don't do a long sleep inside a workqueue routine */
1181 if (type
== HUB_INIT2
) {
1182 INIT_DELAYED_WORK(&hub
->init_work
, hub_init_func3
);
1183 queue_delayed_work(system_power_efficient_wq
,
1185 msecs_to_jiffies(delay
));
1186 device_unlock(&hdev
->dev
);
1187 return; /* Continues at init3: below */
1195 status
= usb_submit_urb(hub
->urb
, GFP_NOIO
);
1197 dev_err(hub
->intfdev
, "activate --> %d\n", status
);
1198 if (hub
->has_indicators
&& blinkenlights
)
1199 queue_delayed_work(system_power_efficient_wq
,
1200 &hub
->leds
, LED_CYCLE_PERIOD
);
1202 /* Scan all ports that need attention */
1205 if (type
== HUB_INIT2
|| type
== HUB_INIT3
) {
1206 /* Allow autosuspend if it was suppressed */
1208 usb_autopm_put_interface_async(to_usb_interface(hub
->intfdev
));
1209 device_unlock(&hdev
->dev
);
1212 kref_put(&hub
->kref
, hub_release
);
1215 /* Implement the continuations for the delays above */
1216 static void hub_init_func2(struct work_struct
*ws
)
1218 struct usb_hub
*hub
= container_of(ws
, struct usb_hub
, init_work
.work
);
1220 hub_activate(hub
, HUB_INIT2
);
1223 static void hub_init_func3(struct work_struct
*ws
)
1225 struct usb_hub
*hub
= container_of(ws
, struct usb_hub
, init_work
.work
);
1227 hub_activate(hub
, HUB_INIT3
);
1230 enum hub_quiescing_type
{
1231 HUB_DISCONNECT
, HUB_PRE_RESET
, HUB_SUSPEND
1234 static void hub_quiesce(struct usb_hub
*hub
, enum hub_quiescing_type type
)
1236 struct usb_device
*hdev
= hub
->hdev
;
1239 /* hub_wq and related activity won't re-trigger */
1242 if (type
!= HUB_SUSPEND
) {
1243 /* Disconnect all the children */
1244 for (i
= 0; i
< hdev
->maxchild
; ++i
) {
1245 if (hub
->ports
[i
]->child
)
1246 usb_disconnect(&hub
->ports
[i
]->child
);
1250 /* Stop hub_wq and related activity */
1251 usb_kill_urb(hub
->urb
);
1252 if (hub
->has_indicators
)
1253 cancel_delayed_work_sync(&hub
->leds
);
1255 flush_work(&hub
->tt
.clear_work
);
1258 static void hub_pm_barrier_for_all_ports(struct usb_hub
*hub
)
1262 for (i
= 0; i
< hub
->hdev
->maxchild
; ++i
)
1263 pm_runtime_barrier(&hub
->ports
[i
]->dev
);
1266 /* caller has locked the hub device */
1267 static int hub_pre_reset(struct usb_interface
*intf
)
1269 struct usb_hub
*hub
= usb_get_intfdata(intf
);
1271 hub_quiesce(hub
, HUB_PRE_RESET
);
1273 hub_pm_barrier_for_all_ports(hub
);
1277 /* caller has locked the hub device */
1278 static int hub_post_reset(struct usb_interface
*intf
)
1280 struct usb_hub
*hub
= usb_get_intfdata(intf
);
1283 hub_pm_barrier_for_all_ports(hub
);
1284 hub_activate(hub
, HUB_POST_RESET
);
1288 static int hub_configure(struct usb_hub
*hub
,
1289 struct usb_endpoint_descriptor
*endpoint
)
1291 struct usb_hcd
*hcd
;
1292 struct usb_device
*hdev
= hub
->hdev
;
1293 struct device
*hub_dev
= hub
->intfdev
;
1294 u16 hubstatus
, hubchange
;
1295 u16 wHubCharacteristics
;
1298 char *message
= "out of memory";
1303 hub
->buffer
= kmalloc(sizeof(*hub
->buffer
), GFP_KERNEL
);
1309 hub
->status
= kmalloc(sizeof(*hub
->status
), GFP_KERNEL
);
1314 mutex_init(&hub
->status_mutex
);
1316 hub
->descriptor
= kzalloc(sizeof(*hub
->descriptor
), GFP_KERNEL
);
1317 if (!hub
->descriptor
) {
1322 /* Request the entire hub descriptor.
1323 * hub->descriptor can handle USB_MAXCHILDREN ports,
1324 * but a (non-SS) hub can/will return fewer bytes here.
1326 ret
= get_hub_descriptor(hdev
, hub
->descriptor
);
1328 message
= "can't read hub descriptor";
1332 maxchild
= USB_MAXCHILDREN
;
1333 if (hub_is_superspeed(hdev
))
1334 maxchild
= min_t(unsigned, maxchild
, USB_SS_MAXPORTS
);
1336 if (hub
->descriptor
->bNbrPorts
> maxchild
) {
1337 message
= "hub has too many ports!";
1340 } else if (hub
->descriptor
->bNbrPorts
== 0) {
1341 message
= "hub doesn't have any ports!";
1346 maxchild
= hub
->descriptor
->bNbrPorts
;
1347 dev_info(hub_dev
, "%d port%s detected\n", maxchild
,
1348 (maxchild
== 1) ? "" : "s");
1350 hub
->ports
= kzalloc(maxchild
* sizeof(struct usb_port
*), GFP_KERNEL
);
1356 wHubCharacteristics
= le16_to_cpu(hub
->descriptor
->wHubCharacteristics
);
1357 if (hub_is_superspeed(hdev
)) {
1365 /* FIXME for USB 3.0, skip for now */
1366 if ((wHubCharacteristics
& HUB_CHAR_COMPOUND
) &&
1367 !(hub_is_superspeed(hdev
))) {
1368 char portstr
[USB_MAXCHILDREN
+ 1];
1370 for (i
= 0; i
< maxchild
; i
++)
1371 portstr
[i
] = hub
->descriptor
->u
.hs
.DeviceRemovable
1372 [((i
+ 1) / 8)] & (1 << ((i
+ 1) % 8))
1374 portstr
[maxchild
] = 0;
1375 dev_dbg(hub_dev
, "compound device; port removable status: %s\n", portstr
);
1377 dev_dbg(hub_dev
, "standalone hub\n");
1379 switch (wHubCharacteristics
& HUB_CHAR_LPSM
) {
1380 case HUB_CHAR_COMMON_LPSM
:
1381 dev_dbg(hub_dev
, "ganged power switching\n");
1383 case HUB_CHAR_INDV_PORT_LPSM
:
1384 dev_dbg(hub_dev
, "individual port power switching\n");
1386 case HUB_CHAR_NO_LPSM
:
1388 dev_dbg(hub_dev
, "no power switching (usb 1.0)\n");
1392 switch (wHubCharacteristics
& HUB_CHAR_OCPM
) {
1393 case HUB_CHAR_COMMON_OCPM
:
1394 dev_dbg(hub_dev
, "global over-current protection\n");
1396 case HUB_CHAR_INDV_PORT_OCPM
:
1397 dev_dbg(hub_dev
, "individual port over-current protection\n");
1399 case HUB_CHAR_NO_OCPM
:
1401 dev_dbg(hub_dev
, "no over-current protection\n");
1405 spin_lock_init(&hub
->tt
.lock
);
1406 INIT_LIST_HEAD(&hub
->tt
.clear_list
);
1407 INIT_WORK(&hub
->tt
.clear_work
, hub_tt_work
);
1408 switch (hdev
->descriptor
.bDeviceProtocol
) {
1411 case USB_HUB_PR_HS_SINGLE_TT
:
1412 dev_dbg(hub_dev
, "Single TT\n");
1415 case USB_HUB_PR_HS_MULTI_TT
:
1416 ret
= usb_set_interface(hdev
, 0, 1);
1418 dev_dbg(hub_dev
, "TT per port\n");
1421 dev_err(hub_dev
, "Using single TT (err %d)\n",
1426 /* USB 3.0 hubs don't have a TT */
1429 dev_dbg(hub_dev
, "Unrecognized hub protocol %d\n",
1430 hdev
->descriptor
.bDeviceProtocol
);
1434 /* Note 8 FS bit times == (8 bits / 12000000 bps) ~= 666ns */
1435 switch (wHubCharacteristics
& HUB_CHAR_TTTT
) {
1436 case HUB_TTTT_8_BITS
:
1437 if (hdev
->descriptor
.bDeviceProtocol
!= 0) {
1438 hub
->tt
.think_time
= 666;
1439 dev_dbg(hub_dev
, "TT requires at most %d "
1440 "FS bit times (%d ns)\n",
1441 8, hub
->tt
.think_time
);
1444 case HUB_TTTT_16_BITS
:
1445 hub
->tt
.think_time
= 666 * 2;
1446 dev_dbg(hub_dev
, "TT requires at most %d "
1447 "FS bit times (%d ns)\n",
1448 16, hub
->tt
.think_time
);
1450 case HUB_TTTT_24_BITS
:
1451 hub
->tt
.think_time
= 666 * 3;
1452 dev_dbg(hub_dev
, "TT requires at most %d "
1453 "FS bit times (%d ns)\n",
1454 24, hub
->tt
.think_time
);
1456 case HUB_TTTT_32_BITS
:
1457 hub
->tt
.think_time
= 666 * 4;
1458 dev_dbg(hub_dev
, "TT requires at most %d "
1459 "FS bit times (%d ns)\n",
1460 32, hub
->tt
.think_time
);
1464 /* probe() zeroes hub->indicator[] */
1465 if (wHubCharacteristics
& HUB_CHAR_PORTIND
) {
1466 hub
->has_indicators
= 1;
1467 dev_dbg(hub_dev
, "Port indicators are supported\n");
1470 dev_dbg(hub_dev
, "power on to power good time: %dms\n",
1471 hub
->descriptor
->bPwrOn2PwrGood
* 2);
1473 /* power budgeting mostly matters with bus-powered hubs,
1474 * and battery-powered root hubs (may provide just 8 mA).
1476 ret
= usb_get_status(hdev
, USB_RECIP_DEVICE
, 0, &hubstatus
);
1478 message
= "can't get hub status";
1481 hcd
= bus_to_hcd(hdev
->bus
);
1482 if (hdev
== hdev
->bus
->root_hub
) {
1483 if (hcd
->power_budget
> 0)
1484 hdev
->bus_mA
= hcd
->power_budget
;
1486 hdev
->bus_mA
= full_load
* maxchild
;
1487 if (hdev
->bus_mA
>= full_load
)
1488 hub
->mA_per_port
= full_load
;
1490 hub
->mA_per_port
= hdev
->bus_mA
;
1491 hub
->limited_power
= 1;
1493 } else if ((hubstatus
& (1 << USB_DEVICE_SELF_POWERED
)) == 0) {
1494 int remaining
= hdev
->bus_mA
-
1495 hub
->descriptor
->bHubContrCurrent
;
1497 dev_dbg(hub_dev
, "hub controller current requirement: %dmA\n",
1498 hub
->descriptor
->bHubContrCurrent
);
1499 hub
->limited_power
= 1;
1501 if (remaining
< maxchild
* unit_load
)
1503 "insufficient power available "
1504 "to use all downstream ports\n");
1505 hub
->mA_per_port
= unit_load
; /* 7.2.1 */
1507 } else { /* Self-powered external hub */
1508 /* FIXME: What about battery-powered external hubs that
1509 * provide less current per port? */
1510 hub
->mA_per_port
= full_load
;
1512 if (hub
->mA_per_port
< full_load
)
1513 dev_dbg(hub_dev
, "%umA bus power budget for each child\n",
1516 ret
= hub_hub_status(hub
, &hubstatus
, &hubchange
);
1518 message
= "can't get hub status";
1522 /* local power status reports aren't always correct */
1523 if (hdev
->actconfig
->desc
.bmAttributes
& USB_CONFIG_ATT_SELFPOWER
)
1524 dev_dbg(hub_dev
, "local power source is %s\n",
1525 (hubstatus
& HUB_STATUS_LOCAL_POWER
)
1526 ? "lost (inactive)" : "good");
1528 if ((wHubCharacteristics
& HUB_CHAR_OCPM
) == 0)
1529 dev_dbg(hub_dev
, "%sover-current condition exists\n",
1530 (hubstatus
& HUB_STATUS_OVERCURRENT
) ? "" : "no ");
1532 /* set up the interrupt endpoint
1533 * We use the EP's maxpacket size instead of (PORTS+1+7)/8
1534 * bytes as USB2.0[11.12.3] says because some hubs are known
1535 * to send more data (and thus cause overflow). For root hubs,
1536 * maxpktsize is defined in hcd.c's fake endpoint descriptors
1537 * to be big enough for at least USB_MAXCHILDREN ports. */
1538 pipe
= usb_rcvintpipe(hdev
, endpoint
->bEndpointAddress
);
1539 maxp
= usb_maxpacket(hdev
, pipe
, usb_pipeout(pipe
));
1541 if (maxp
> sizeof(*hub
->buffer
))
1542 maxp
= sizeof(*hub
->buffer
);
1544 hub
->urb
= usb_alloc_urb(0, GFP_KERNEL
);
1550 usb_fill_int_urb(hub
->urb
, hdev
, pipe
, *hub
->buffer
, maxp
, hub_irq
,
1551 hub
, endpoint
->bInterval
);
1553 /* maybe cycle the hub leds */
1554 if (hub
->has_indicators
&& blinkenlights
)
1555 hub
->indicator
[0] = INDICATOR_CYCLE
;
1557 mutex_lock(&usb_port_peer_mutex
);
1558 for (i
= 0; i
< maxchild
; i
++) {
1559 ret
= usb_hub_create_port_device(hub
, i
+ 1);
1561 dev_err(hub
->intfdev
,
1562 "couldn't create port%d device.\n", i
+ 1);
1567 for (i
= 0; i
< hdev
->maxchild
; i
++) {
1568 struct usb_port
*port_dev
= hub
->ports
[i
];
1570 pm_runtime_put(&port_dev
->dev
);
1573 mutex_unlock(&usb_port_peer_mutex
);
1577 /* Update the HCD's internal representation of this hub before hub_wq
1578 * starts getting port status changes for devices under the hub.
1580 if (hcd
->driver
->update_hub_device
) {
1581 ret
= hcd
->driver
->update_hub_device(hcd
, hdev
,
1582 &hub
->tt
, GFP_KERNEL
);
1584 message
= "can't update HCD hub info";
1589 usb_hub_adjust_deviceremovable(hdev
, hub
->descriptor
);
1591 hub_activate(hub
, HUB_INIT
);
1595 dev_err(hub_dev
, "config failed, %s (err %d)\n",
1597 /* hub_disconnect() frees urb and descriptor */
1601 static void hub_release(struct kref
*kref
)
1603 struct usb_hub
*hub
= container_of(kref
, struct usb_hub
, kref
);
1605 usb_put_dev(hub
->hdev
);
1606 usb_put_intf(to_usb_interface(hub
->intfdev
));
1610 static unsigned highspeed_hubs
;
1612 static void hub_disconnect(struct usb_interface
*intf
)
1614 struct usb_hub
*hub
= usb_get_intfdata(intf
);
1615 struct usb_device
*hdev
= interface_to_usbdev(intf
);
1619 * Stop adding new hub events. We do not want to block here and thus
1620 * will not try to remove any pending work item.
1622 hub
->disconnected
= 1;
1624 /* Disconnect all children and quiesce the hub */
1626 hub_quiesce(hub
, HUB_DISCONNECT
);
1628 mutex_lock(&usb_port_peer_mutex
);
1630 /* Avoid races with recursively_mark_NOTATTACHED() */
1631 spin_lock_irq(&device_state_lock
);
1632 port1
= hdev
->maxchild
;
1634 usb_set_intfdata(intf
, NULL
);
1635 spin_unlock_irq(&device_state_lock
);
1637 for (; port1
> 0; --port1
)
1638 usb_hub_remove_port_device(hub
, port1
);
1640 mutex_unlock(&usb_port_peer_mutex
);
1642 if (hub
->hdev
->speed
== USB_SPEED_HIGH
)
1645 usb_free_urb(hub
->urb
);
1647 kfree(hub
->descriptor
);
1651 pm_suspend_ignore_children(&intf
->dev
, false);
1652 kref_put(&hub
->kref
, hub_release
);
1655 static int hub_probe(struct usb_interface
*intf
, const struct usb_device_id
*id
)
1657 struct usb_host_interface
*desc
;
1658 struct usb_endpoint_descriptor
*endpoint
;
1659 struct usb_device
*hdev
;
1660 struct usb_hub
*hub
;
1662 desc
= intf
->cur_altsetting
;
1663 hdev
= interface_to_usbdev(intf
);
1666 * Set default autosuspend delay as 0 to speedup bus suspend,
1667 * based on the below considerations:
1669 * - Unlike other drivers, the hub driver does not rely on the
1670 * autosuspend delay to provide enough time to handle a wakeup
1671 * event, and the submitted status URB is just to check future
1672 * change on hub downstream ports, so it is safe to do it.
1674 * - The patch might cause one or more auto supend/resume for
1675 * below very rare devices when they are plugged into hub
1678 * devices having trouble initializing, and disconnect
1679 * themselves from the bus and then reconnect a second
1682 * devices just for downloading firmware, and disconnects
1683 * themselves after completing it
1685 * For these quite rare devices, their drivers may change the
1686 * autosuspend delay of their parent hub in the probe() to one
1687 * appropriate value to avoid the subtle problem if someone
1690 * - The patch may cause one or more auto suspend/resume on
1691 * hub during running 'lsusb', but it is probably too
1692 * infrequent to worry about.
1694 * - Change autosuspend delay of hub can avoid unnecessary auto
1695 * suspend timer for hub, also may decrease power consumption
1698 * - If user has indicated to prevent autosuspend by passing
1699 * usbcore.autosuspend = -1 then keep autosuspend disabled.
1702 if (hdev
->dev
.power
.autosuspend_delay
>= 0)
1703 pm_runtime_set_autosuspend_delay(&hdev
->dev
, 0);
1707 * Hubs have proper suspend/resume support, except for root hubs
1708 * where the controller driver doesn't have bus_suspend and
1709 * bus_resume methods.
1711 if (hdev
->parent
) { /* normal device */
1712 usb_enable_autosuspend(hdev
);
1713 } else { /* root hub */
1714 const struct hc_driver
*drv
= bus_to_hcd(hdev
->bus
)->driver
;
1716 if (drv
->bus_suspend
&& drv
->bus_resume
)
1717 usb_enable_autosuspend(hdev
);
1720 if (hdev
->level
== MAX_TOPO_LEVEL
) {
1722 "Unsupported bus topology: hub nested too deep\n");
1726 #ifdef CONFIG_USB_OTG_BLACKLIST_HUB
1728 dev_warn(&intf
->dev
, "ignoring external hub\n");
1733 /* Some hubs have a subclass of 1, which AFAICT according to the */
1734 /* specs is not defined, but it works */
1735 if ((desc
->desc
.bInterfaceSubClass
!= 0) &&
1736 (desc
->desc
.bInterfaceSubClass
!= 1)) {
1738 dev_err(&intf
->dev
, "bad descriptor, ignoring hub\n");
1742 /* Multiple endpoints? What kind of mutant ninja-hub is this? */
1743 if (desc
->desc
.bNumEndpoints
!= 1)
1744 goto descriptor_error
;
1746 endpoint
= &desc
->endpoint
[0].desc
;
1748 /* If it's not an interrupt in endpoint, we'd better punt! */
1749 if (!usb_endpoint_is_int_in(endpoint
))
1750 goto descriptor_error
;
1752 /* We found a hub */
1753 dev_info(&intf
->dev
, "USB hub found\n");
1755 hub
= kzalloc(sizeof(*hub
), GFP_KERNEL
);
1757 dev_dbg(&intf
->dev
, "couldn't kmalloc hub struct\n");
1761 kref_init(&hub
->kref
);
1762 hub
->intfdev
= &intf
->dev
;
1764 INIT_DELAYED_WORK(&hub
->leds
, led_work
);
1765 INIT_DELAYED_WORK(&hub
->init_work
, NULL
);
1766 INIT_WORK(&hub
->events
, hub_event
);
1770 usb_set_intfdata(intf
, hub
);
1771 intf
->needs_remote_wakeup
= 1;
1772 pm_suspend_ignore_children(&intf
->dev
, true);
1774 if (hdev
->speed
== USB_SPEED_HIGH
)
1777 if (id
->driver_info
& HUB_QUIRK_CHECK_PORT_AUTOSUSPEND
)
1778 hub
->quirk_check_port_auto_suspend
= 1;
1780 if (hub_configure(hub
, endpoint
) >= 0)
1783 hub_disconnect(intf
);
1788 hub_ioctl(struct usb_interface
*intf
, unsigned int code
, void *user_data
)
1790 struct usb_device
*hdev
= interface_to_usbdev(intf
);
1791 struct usb_hub
*hub
= usb_hub_to_struct_hub(hdev
);
1793 /* assert ifno == 0 (part of hub spec) */
1795 case USBDEVFS_HUB_PORTINFO
: {
1796 struct usbdevfs_hub_portinfo
*info
= user_data
;
1799 spin_lock_irq(&device_state_lock
);
1800 if (hdev
->devnum
<= 0)
1803 info
->nports
= hdev
->maxchild
;
1804 for (i
= 0; i
< info
->nports
; i
++) {
1805 if (hub
->ports
[i
]->child
== NULL
)
1809 hub
->ports
[i
]->child
->devnum
;
1812 spin_unlock_irq(&device_state_lock
);
1814 return info
->nports
+ 1;
1823 * Allow user programs to claim ports on a hub. When a device is attached
1824 * to one of these "claimed" ports, the program will "own" the device.
1826 static int find_port_owner(struct usb_device
*hdev
, unsigned port1
,
1827 struct usb_dev_state
***ppowner
)
1829 struct usb_hub
*hub
= usb_hub_to_struct_hub(hdev
);
1831 if (hdev
->state
== USB_STATE_NOTATTACHED
)
1833 if (port1
== 0 || port1
> hdev
->maxchild
)
1836 /* Devices not managed by the hub driver
1837 * will always have maxchild equal to 0.
1839 *ppowner
= &(hub
->ports
[port1
- 1]->port_owner
);
1843 /* In the following three functions, the caller must hold hdev's lock */
1844 int usb_hub_claim_port(struct usb_device
*hdev
, unsigned port1
,
1845 struct usb_dev_state
*owner
)
1848 struct usb_dev_state
**powner
;
1850 rc
= find_port_owner(hdev
, port1
, &powner
);
1858 EXPORT_SYMBOL_GPL(usb_hub_claim_port
);
1860 int usb_hub_release_port(struct usb_device
*hdev
, unsigned port1
,
1861 struct usb_dev_state
*owner
)
1864 struct usb_dev_state
**powner
;
1866 rc
= find_port_owner(hdev
, port1
, &powner
);
1869 if (*powner
!= owner
)
1874 EXPORT_SYMBOL_GPL(usb_hub_release_port
);
1876 void usb_hub_release_all_ports(struct usb_device
*hdev
, struct usb_dev_state
*owner
)
1878 struct usb_hub
*hub
= usb_hub_to_struct_hub(hdev
);
1881 for (n
= 0; n
< hdev
->maxchild
; n
++) {
1882 if (hub
->ports
[n
]->port_owner
== owner
)
1883 hub
->ports
[n
]->port_owner
= NULL
;
1888 /* The caller must hold udev's lock */
1889 bool usb_device_is_owned(struct usb_device
*udev
)
1891 struct usb_hub
*hub
;
1893 if (udev
->state
== USB_STATE_NOTATTACHED
|| !udev
->parent
)
1895 hub
= usb_hub_to_struct_hub(udev
->parent
);
1896 return !!hub
->ports
[udev
->portnum
- 1]->port_owner
;
1899 static void recursively_mark_NOTATTACHED(struct usb_device
*udev
)
1901 struct usb_hub
*hub
= usb_hub_to_struct_hub(udev
);
1904 for (i
= 0; i
< udev
->maxchild
; ++i
) {
1905 if (hub
->ports
[i
]->child
)
1906 recursively_mark_NOTATTACHED(hub
->ports
[i
]->child
);
1908 if (udev
->state
== USB_STATE_SUSPENDED
)
1909 udev
->active_duration
-= jiffies
;
1910 udev
->state
= USB_STATE_NOTATTACHED
;
1914 * usb_set_device_state - change a device's current state (usbcore, hcds)
1915 * @udev: pointer to device whose state should be changed
1916 * @new_state: new state value to be stored
1918 * udev->state is _not_ fully protected by the device lock. Although
1919 * most transitions are made only while holding the lock, the state can
1920 * can change to USB_STATE_NOTATTACHED at almost any time. This
1921 * is so that devices can be marked as disconnected as soon as possible,
1922 * without having to wait for any semaphores to be released. As a result,
1923 * all changes to any device's state must be protected by the
1924 * device_state_lock spinlock.
1926 * Once a device has been added to the device tree, all changes to its state
1927 * should be made using this routine. The state should _not_ be set directly.
1929 * If udev->state is already USB_STATE_NOTATTACHED then no change is made.
1930 * Otherwise udev->state is set to new_state, and if new_state is
1931 * USB_STATE_NOTATTACHED then all of udev's descendants' states are also set
1932 * to USB_STATE_NOTATTACHED.
1934 void usb_set_device_state(struct usb_device
*udev
,
1935 enum usb_device_state new_state
)
1937 unsigned long flags
;
1940 spin_lock_irqsave(&device_state_lock
, flags
);
1941 if (udev
->state
== USB_STATE_NOTATTACHED
)
1943 else if (new_state
!= USB_STATE_NOTATTACHED
) {
1945 /* root hub wakeup capabilities are managed out-of-band
1946 * and may involve silicon errata ... ignore them here.
1949 if (udev
->state
== USB_STATE_SUSPENDED
1950 || new_state
== USB_STATE_SUSPENDED
)
1951 ; /* No change to wakeup settings */
1952 else if (new_state
== USB_STATE_CONFIGURED
)
1953 wakeup
= (udev
->quirks
&
1954 USB_QUIRK_IGNORE_REMOTE_WAKEUP
) ? 0 :
1955 udev
->actconfig
->desc
.bmAttributes
&
1956 USB_CONFIG_ATT_WAKEUP
;
1960 if (udev
->state
== USB_STATE_SUSPENDED
&&
1961 new_state
!= USB_STATE_SUSPENDED
)
1962 udev
->active_duration
-= jiffies
;
1963 else if (new_state
== USB_STATE_SUSPENDED
&&
1964 udev
->state
!= USB_STATE_SUSPENDED
)
1965 udev
->active_duration
+= jiffies
;
1966 udev
->state
= new_state
;
1968 recursively_mark_NOTATTACHED(udev
);
1969 spin_unlock_irqrestore(&device_state_lock
, flags
);
1971 device_set_wakeup_capable(&udev
->dev
, wakeup
);
1973 EXPORT_SYMBOL_GPL(usb_set_device_state
);
1976 * Choose a device number.
1978 * Device numbers are used as filenames in usbfs. On USB-1.1 and
1979 * USB-2.0 buses they are also used as device addresses, however on
1980 * USB-3.0 buses the address is assigned by the controller hardware
1981 * and it usually is not the same as the device number.
1983 * WUSB devices are simple: they have no hubs behind, so the mapping
1984 * device <-> virtual port number becomes 1:1. Why? to simplify the
1985 * life of the device connection logic in
1986 * drivers/usb/wusbcore/devconnect.c. When we do the initial secret
1987 * handshake we need to assign a temporary address in the unauthorized
1988 * space. For simplicity we use the first virtual port number found to
1989 * be free [drivers/usb/wusbcore/devconnect.c:wusbhc_devconnect_ack()]
1990 * and that becomes it's address [X < 128] or its unauthorized address
1993 * We add 1 as an offset to the one-based USB-stack port number
1994 * (zero-based wusb virtual port index) for two reasons: (a) dev addr
1995 * 0 is reserved by USB for default address; (b) Linux's USB stack
1996 * uses always #1 for the root hub of the controller. So USB stack's
1997 * port #1, which is wusb virtual-port #0 has address #2.
1999 * Devices connected under xHCI are not as simple. The host controller
2000 * supports virtualization, so the hardware assigns device addresses and
2001 * the HCD must setup data structures before issuing a set address
2002 * command to the hardware.
2004 static void choose_devnum(struct usb_device
*udev
)
2007 struct usb_bus
*bus
= udev
->bus
;
2009 /* be safe when more hub events are proceed in parallel */
2010 mutex_lock(&bus
->devnum_next_mutex
);
2012 devnum
= udev
->portnum
+ 1;
2013 BUG_ON(test_bit(devnum
, bus
->devmap
.devicemap
));
2015 /* Try to allocate the next devnum beginning at
2016 * bus->devnum_next. */
2017 devnum
= find_next_zero_bit(bus
->devmap
.devicemap
, 128,
2020 devnum
= find_next_zero_bit(bus
->devmap
.devicemap
,
2022 bus
->devnum_next
= (devnum
>= 127 ? 1 : devnum
+ 1);
2025 set_bit(devnum
, bus
->devmap
.devicemap
);
2026 udev
->devnum
= devnum
;
2028 mutex_unlock(&bus
->devnum_next_mutex
);
2031 static void release_devnum(struct usb_device
*udev
)
2033 if (udev
->devnum
> 0) {
2034 clear_bit(udev
->devnum
, udev
->bus
->devmap
.devicemap
);
2039 static void update_devnum(struct usb_device
*udev
, int devnum
)
2041 /* The address for a WUSB device is managed by wusbcore. */
2043 udev
->devnum
= devnum
;
2046 static void hub_free_dev(struct usb_device
*udev
)
2048 struct usb_hcd
*hcd
= bus_to_hcd(udev
->bus
);
2050 /* Root hubs aren't real devices, so don't free HCD resources */
2051 if (hcd
->driver
->free_dev
&& udev
->parent
)
2052 hcd
->driver
->free_dev(hcd
, udev
);
2055 static void hub_disconnect_children(struct usb_device
*udev
)
2057 struct usb_hub
*hub
= usb_hub_to_struct_hub(udev
);
2060 /* Free up all the children before we remove this device */
2061 for (i
= 0; i
< udev
->maxchild
; i
++) {
2062 if (hub
->ports
[i
]->child
)
2063 usb_disconnect(&hub
->ports
[i
]->child
);
2068 * usb_disconnect - disconnect a device (usbcore-internal)
2069 * @pdev: pointer to device being disconnected
2070 * Context: !in_interrupt ()
2072 * Something got disconnected. Get rid of it and all of its children.
2074 * If *pdev is a normal device then the parent hub must already be locked.
2075 * If *pdev is a root hub then the caller must hold the usb_bus_list_lock,
2076 * which protects the set of root hubs as well as the list of buses.
2078 * Only hub drivers (including virtual root hub drivers for host
2079 * controllers) should ever call this.
2081 * This call is synchronous, and may not be used in an interrupt context.
2083 void usb_disconnect(struct usb_device
**pdev
)
2085 struct usb_port
*port_dev
= NULL
;
2086 struct usb_device
*udev
= *pdev
;
2087 struct usb_hub
*hub
= NULL
;
2090 /* mark the device as inactive, so any further urb submissions for
2091 * this device (and any of its children) will fail immediately.
2092 * this quiesces everything except pending urbs.
2094 usb_set_device_state(udev
, USB_STATE_NOTATTACHED
);
2095 dev_info(&udev
->dev
, "USB disconnect, device number %d\n",
2099 * Ensure that the pm runtime code knows that the USB device
2100 * is in the process of being disconnected.
2102 pm_runtime_barrier(&udev
->dev
);
2104 usb_lock_device(udev
);
2106 hub_disconnect_children(udev
);
2108 /* deallocate hcd/hardware state ... nuking all pending urbs and
2109 * cleaning up all state associated with the current configuration
2110 * so that the hardware is now fully quiesced.
2112 dev_dbg(&udev
->dev
, "unregistering device\n");
2113 usb_disable_device(udev
, 0);
2114 usb_hcd_synchronize_unlinks(udev
);
2117 port1
= udev
->portnum
;
2118 hub
= usb_hub_to_struct_hub(udev
->parent
);
2119 port_dev
= hub
->ports
[port1
- 1];
2121 sysfs_remove_link(&udev
->dev
.kobj
, "port");
2122 sysfs_remove_link(&port_dev
->dev
.kobj
, "device");
2125 * As usb_port_runtime_resume() de-references udev, make
2126 * sure no resumes occur during removal
2128 if (!test_and_set_bit(port1
, hub
->child_usage_bits
))
2129 pm_runtime_get_sync(&port_dev
->dev
);
2132 usb_remove_ep_devs(&udev
->ep0
);
2133 usb_unlock_device(udev
);
2135 /* Unregister the device. The device driver is responsible
2136 * for de-configuring the device and invoking the remove-device
2137 * notifier chain (used by usbfs and possibly others).
2139 device_del(&udev
->dev
);
2141 /* Free the device number and delete the parent's children[]
2142 * (or root_hub) pointer.
2144 release_devnum(udev
);
2146 /* Avoid races with recursively_mark_NOTATTACHED() */
2147 spin_lock_irq(&device_state_lock
);
2149 spin_unlock_irq(&device_state_lock
);
2151 if (port_dev
&& test_and_clear_bit(port1
, hub
->child_usage_bits
))
2152 pm_runtime_put(&port_dev
->dev
);
2156 put_device(&udev
->dev
);
2159 #ifdef CONFIG_USB_ANNOUNCE_NEW_DEVICES
2160 static void show_string(struct usb_device
*udev
, char *id
, char *string
)
2164 dev_info(&udev
->dev
, "%s: %s\n", id
, string
);
2167 static void announce_device(struct usb_device
*udev
)
2169 dev_info(&udev
->dev
, "New USB device found, idVendor=%04x, idProduct=%04x\n",
2170 le16_to_cpu(udev
->descriptor
.idVendor
),
2171 le16_to_cpu(udev
->descriptor
.idProduct
));
2172 dev_info(&udev
->dev
,
2173 "New USB device strings: Mfr=%d, Product=%d, SerialNumber=%d\n",
2174 udev
->descriptor
.iManufacturer
,
2175 udev
->descriptor
.iProduct
,
2176 udev
->descriptor
.iSerialNumber
);
2177 show_string(udev
, "Product", udev
->product
);
2178 show_string(udev
, "Manufacturer", udev
->manufacturer
);
2179 show_string(udev
, "SerialNumber", udev
->serial
);
2182 static inline void announce_device(struct usb_device
*udev
) { }
2187 * usb_enumerate_device_otg - FIXME (usbcore-internal)
2188 * @udev: newly addressed device (in ADDRESS state)
2190 * Finish enumeration for On-The-Go devices
2192 * Return: 0 if successful. A negative error code otherwise.
2194 static int usb_enumerate_device_otg(struct usb_device
*udev
)
2198 #ifdef CONFIG_USB_OTG
2200 * OTG-aware devices on OTG-capable root hubs may be able to use SRP,
2201 * to wake us after we've powered off VBUS; and HNP, switching roles
2202 * "host" to "peripheral". The OTG descriptor helps figure this out.
2204 if (!udev
->bus
->is_b_host
2206 && udev
->parent
== udev
->bus
->root_hub
) {
2207 struct usb_otg_descriptor
*desc
= NULL
;
2208 struct usb_bus
*bus
= udev
->bus
;
2209 unsigned port1
= udev
->portnum
;
2211 /* descriptor may appear anywhere in config */
2212 err
= __usb_get_extra_descriptor(udev
->rawdescriptors
[0],
2213 le16_to_cpu(udev
->config
[0].desc
.wTotalLength
),
2214 USB_DT_OTG
, (void **) &desc
);
2215 if (err
|| !(desc
->bmAttributes
& USB_OTG_HNP
))
2218 dev_info(&udev
->dev
, "Dual-Role OTG device on %sHNP port\n",
2219 (port1
== bus
->otg_port
) ? "" : "non-");
2221 /* enable HNP before suspend, it's simpler */
2222 if (port1
== bus
->otg_port
) {
2223 bus
->b_hnp_enable
= 1;
2224 err
= usb_control_msg(udev
,
2225 usb_sndctrlpipe(udev
, 0),
2226 USB_REQ_SET_FEATURE
, 0,
2227 USB_DEVICE_B_HNP_ENABLE
,
2229 USB_CTRL_SET_TIMEOUT
);
2232 * OTG MESSAGE: report errors here,
2233 * customize to match your product.
2235 dev_err(&udev
->dev
, "can't set HNP mode: %d\n",
2237 bus
->b_hnp_enable
= 0;
2239 } else if (desc
->bLength
== sizeof
2240 (struct usb_otg_descriptor
)) {
2241 /* Set a_alt_hnp_support for legacy otg device */
2242 err
= usb_control_msg(udev
,
2243 usb_sndctrlpipe(udev
, 0),
2244 USB_REQ_SET_FEATURE
, 0,
2245 USB_DEVICE_A_ALT_HNP_SUPPORT
,
2247 USB_CTRL_SET_TIMEOUT
);
2250 "set a_alt_hnp_support failed: %d\n",
2260 * usb_enumerate_device - Read device configs/intfs/otg (usbcore-internal)
2261 * @udev: newly addressed device (in ADDRESS state)
2263 * This is only called by usb_new_device() and usb_authorize_device()
2264 * and FIXME -- all comments that apply to them apply here wrt to
2267 * If the device is WUSB and not authorized, we don't attempt to read
2268 * the string descriptors, as they will be errored out by the device
2269 * until it has been authorized.
2271 * Return: 0 if successful. A negative error code otherwise.
2273 static int usb_enumerate_device(struct usb_device
*udev
)
2276 struct usb_hcd
*hcd
= bus_to_hcd(udev
->bus
);
2278 if (udev
->config
== NULL
) {
2279 err
= usb_get_configuration(udev
);
2282 dev_err(&udev
->dev
, "can't read configurations, error %d\n",
2288 /* read the standard strings and cache them if present */
2289 udev
->product
= usb_cache_string(udev
, udev
->descriptor
.iProduct
);
2290 udev
->manufacturer
= usb_cache_string(udev
,
2291 udev
->descriptor
.iManufacturer
);
2292 udev
->serial
= usb_cache_string(udev
, udev
->descriptor
.iSerialNumber
);
2294 err
= usb_enumerate_device_otg(udev
);
2298 if (IS_ENABLED(CONFIG_USB_OTG_WHITELIST
) && hcd
->tpl_support
&&
2299 !is_targeted(udev
)) {
2300 /* Maybe it can talk to us, though we can't talk to it.
2301 * (Includes HNP test device.)
2303 if (IS_ENABLED(CONFIG_USB_OTG
) && (udev
->bus
->b_hnp_enable
2304 || udev
->bus
->is_b_host
)) {
2305 err
= usb_port_suspend(udev
, PMSG_AUTO_SUSPEND
);
2307 dev_dbg(&udev
->dev
, "HNP fail, %d\n", err
);
2312 usb_detect_interface_quirks(udev
);
2317 static void set_usb_port_removable(struct usb_device
*udev
)
2319 struct usb_device
*hdev
= udev
->parent
;
2320 struct usb_hub
*hub
;
2321 u8 port
= udev
->portnum
;
2322 u16 wHubCharacteristics
;
2323 bool removable
= true;
2328 hub
= usb_hub_to_struct_hub(udev
->parent
);
2331 * If the platform firmware has provided information about a port,
2332 * use that to determine whether it's removable.
2334 switch (hub
->ports
[udev
->portnum
- 1]->connect_type
) {
2335 case USB_PORT_CONNECT_TYPE_HOT_PLUG
:
2336 udev
->removable
= USB_DEVICE_REMOVABLE
;
2338 case USB_PORT_CONNECT_TYPE_HARD_WIRED
:
2339 case USB_PORT_NOT_USED
:
2340 udev
->removable
= USB_DEVICE_FIXED
;
2347 * Otherwise, check whether the hub knows whether a port is removable
2350 wHubCharacteristics
= le16_to_cpu(hub
->descriptor
->wHubCharacteristics
);
2352 if (!(wHubCharacteristics
& HUB_CHAR_COMPOUND
))
2355 if (hub_is_superspeed(hdev
)) {
2356 if (le16_to_cpu(hub
->descriptor
->u
.ss
.DeviceRemovable
)
2360 if (hub
->descriptor
->u
.hs
.DeviceRemovable
[port
/ 8] & (1 << (port
% 8)))
2365 udev
->removable
= USB_DEVICE_REMOVABLE
;
2367 udev
->removable
= USB_DEVICE_FIXED
;
2372 * usb_new_device - perform initial device setup (usbcore-internal)
2373 * @udev: newly addressed device (in ADDRESS state)
2375 * This is called with devices which have been detected but not fully
2376 * enumerated. The device descriptor is available, but not descriptors
2377 * for any device configuration. The caller must have locked either
2378 * the parent hub (if udev is a normal device) or else the
2379 * usb_bus_list_lock (if udev is a root hub). The parent's pointer to
2380 * udev has already been installed, but udev is not yet visible through
2381 * sysfs or other filesystem code.
2383 * This call is synchronous, and may not be used in an interrupt context.
2385 * Only the hub driver or root-hub registrar should ever call this.
2387 * Return: Whether the device is configured properly or not. Zero if the
2388 * interface was registered with the driver core; else a negative errno
2392 int usb_new_device(struct usb_device
*udev
)
2397 /* Initialize non-root-hub device wakeup to disabled;
2398 * device (un)configuration controls wakeup capable
2399 * sysfs power/wakeup controls wakeup enabled/disabled
2401 device_init_wakeup(&udev
->dev
, 0);
2404 /* Tell the runtime-PM framework the device is active */
2405 pm_runtime_set_active(&udev
->dev
);
2406 pm_runtime_get_noresume(&udev
->dev
);
2407 pm_runtime_use_autosuspend(&udev
->dev
);
2408 pm_runtime_enable(&udev
->dev
);
2410 /* By default, forbid autosuspend for all devices. It will be
2411 * allowed for hubs during binding.
2413 usb_disable_autosuspend(udev
);
2415 err
= usb_enumerate_device(udev
); /* Read descriptors */
2418 dev_dbg(&udev
->dev
, "udev %d, busnum %d, minor = %d\n",
2419 udev
->devnum
, udev
->bus
->busnum
,
2420 (((udev
->bus
->busnum
-1) * 128) + (udev
->devnum
-1)));
2421 /* export the usbdev device-node for libusb */
2422 udev
->dev
.devt
= MKDEV(USB_DEVICE_MAJOR
,
2423 (((udev
->bus
->busnum
-1) * 128) + (udev
->devnum
-1)));
2425 /* Tell the world! */
2426 announce_device(udev
);
2429 add_device_randomness(udev
->serial
, strlen(udev
->serial
));
2431 add_device_randomness(udev
->product
, strlen(udev
->product
));
2432 if (udev
->manufacturer
)
2433 add_device_randomness(udev
->manufacturer
,
2434 strlen(udev
->manufacturer
));
2436 device_enable_async_suspend(&udev
->dev
);
2438 /* check whether the hub or firmware marks this port as non-removable */
2440 set_usb_port_removable(udev
);
2442 /* Register the device. The device driver is responsible
2443 * for configuring the device and invoking the add-device
2444 * notifier chain (used by usbfs and possibly others).
2446 err
= device_add(&udev
->dev
);
2448 dev_err(&udev
->dev
, "can't device_add, error %d\n", err
);
2452 /* Create link files between child device and usb port device. */
2454 struct usb_hub
*hub
= usb_hub_to_struct_hub(udev
->parent
);
2455 int port1
= udev
->portnum
;
2456 struct usb_port
*port_dev
= hub
->ports
[port1
- 1];
2458 err
= sysfs_create_link(&udev
->dev
.kobj
,
2459 &port_dev
->dev
.kobj
, "port");
2463 err
= sysfs_create_link(&port_dev
->dev
.kobj
,
2464 &udev
->dev
.kobj
, "device");
2466 sysfs_remove_link(&udev
->dev
.kobj
, "port");
2470 if (!test_and_set_bit(port1
, hub
->child_usage_bits
))
2471 pm_runtime_get_sync(&port_dev
->dev
);
2474 (void) usb_create_ep_devs(&udev
->dev
, &udev
->ep0
, udev
);
2475 usb_mark_last_busy(udev
);
2476 pm_runtime_put_sync_autosuspend(&udev
->dev
);
2480 usb_set_device_state(udev
, USB_STATE_NOTATTACHED
);
2481 pm_runtime_disable(&udev
->dev
);
2482 pm_runtime_set_suspended(&udev
->dev
);
2488 * usb_deauthorize_device - deauthorize a device (usbcore-internal)
2489 * @usb_dev: USB device
2491 * Move the USB device to a very basic state where interfaces are disabled
2492 * and the device is in fact unconfigured and unusable.
2494 * We share a lock (that we have) with device_del(), so we need to
2499 int usb_deauthorize_device(struct usb_device
*usb_dev
)
2501 usb_lock_device(usb_dev
);
2502 if (usb_dev
->authorized
== 0)
2503 goto out_unauthorized
;
2505 usb_dev
->authorized
= 0;
2506 usb_set_configuration(usb_dev
, -1);
2509 usb_unlock_device(usb_dev
);
2514 int usb_authorize_device(struct usb_device
*usb_dev
)
2518 usb_lock_device(usb_dev
);
2519 if (usb_dev
->authorized
== 1)
2520 goto out_authorized
;
2522 result
= usb_autoresume_device(usb_dev
);
2524 dev_err(&usb_dev
->dev
,
2525 "can't autoresume for authorization: %d\n", result
);
2526 goto error_autoresume
;
2529 if (usb_dev
->wusb
) {
2530 result
= usb_get_device_descriptor(usb_dev
, sizeof(usb_dev
->descriptor
));
2532 dev_err(&usb_dev
->dev
, "can't re-read device descriptor for "
2533 "authorization: %d\n", result
);
2534 goto error_device_descriptor
;
2538 usb_dev
->authorized
= 1;
2539 /* Choose and set the configuration. This registers the interfaces
2540 * with the driver core and lets interface drivers bind to them.
2542 c
= usb_choose_configuration(usb_dev
);
2544 result
= usb_set_configuration(usb_dev
, c
);
2546 dev_err(&usb_dev
->dev
,
2547 "can't set config #%d, error %d\n", c
, result
);
2548 /* This need not be fatal. The user can try to
2549 * set other configurations. */
2552 dev_info(&usb_dev
->dev
, "authorized to connect\n");
2554 error_device_descriptor
:
2555 usb_autosuspend_device(usb_dev
);
2558 usb_unlock_device(usb_dev
); /* complements locktree */
2563 /* Returns 1 if @hub is a WUSB root hub, 0 otherwise */
2564 static unsigned hub_is_wusb(struct usb_hub
*hub
)
2566 struct usb_hcd
*hcd
;
2567 if (hub
->hdev
->parent
!= NULL
) /* not a root hub? */
2569 hcd
= container_of(hub
->hdev
->bus
, struct usb_hcd
, self
);
2570 return hcd
->wireless
;
2574 #define PORT_RESET_TRIES 5
2575 #define SET_ADDRESS_TRIES 2
2576 #define GET_DESCRIPTOR_TRIES 2
2577 #define SET_CONFIG_TRIES (2 * (use_both_schemes + 1))
2578 #define USE_NEW_SCHEME(i) ((i) / 2 == (int)old_scheme_first)
2580 #define HUB_ROOT_RESET_TIME 50 /* times are in msec */
2581 #define HUB_SHORT_RESET_TIME 10
2582 #define HUB_BH_RESET_TIME 50
2583 #define HUB_LONG_RESET_TIME 200
2584 #define HUB_RESET_TIMEOUT 800
2587 * "New scheme" enumeration causes an extra state transition to be
2588 * exposed to an xhci host and causes USB3 devices to receive control
2589 * commands in the default state. This has been seen to cause
2590 * enumeration failures, so disable this enumeration scheme for USB3
2593 static bool use_new_scheme(struct usb_device
*udev
, int retry
)
2595 if (udev
->speed
>= USB_SPEED_SUPER
)
2598 return USE_NEW_SCHEME(retry
);
2601 /* Is a USB 3.0 port in the Inactive or Compliance Mode state?
2602 * Port worm reset is required to recover
2604 static bool hub_port_warm_reset_required(struct usb_hub
*hub
, int port1
,
2609 if (!hub_is_superspeed(hub
->hdev
))
2612 if (test_bit(port1
, hub
->warm_reset_bits
))
2615 link_state
= portstatus
& USB_PORT_STAT_LINK_STATE
;
2616 return link_state
== USB_SS_PORT_LS_SS_INACTIVE
2617 || link_state
== USB_SS_PORT_LS_COMP_MOD
;
2620 static int hub_port_wait_reset(struct usb_hub
*hub
, int port1
,
2621 struct usb_device
*udev
, unsigned int delay
, bool warm
)
2623 int delay_time
, ret
;
2627 for (delay_time
= 0;
2628 delay_time
< HUB_RESET_TIMEOUT
;
2629 delay_time
+= delay
) {
2630 /* wait to give the device a chance to reset */
2633 /* read and decode port status */
2634 ret
= hub_port_status(hub
, port1
, &portstatus
, &portchange
);
2639 * The port state is unknown until the reset completes.
2641 * On top of that, some chips may require additional time
2642 * to re-establish a connection after the reset is complete,
2643 * so also wait for the connection to be re-established.
2645 if (!(portstatus
& USB_PORT_STAT_RESET
) &&
2646 (portstatus
& USB_PORT_STAT_CONNECTION
))
2649 /* switch to the long delay after two short delay failures */
2650 if (delay_time
>= 2 * HUB_SHORT_RESET_TIME
)
2651 delay
= HUB_LONG_RESET_TIME
;
2653 dev_dbg(&hub
->ports
[port1
- 1]->dev
,
2654 "not %sreset yet, waiting %dms\n",
2655 warm
? "warm " : "", delay
);
2658 if ((portstatus
& USB_PORT_STAT_RESET
))
2661 if (hub_port_warm_reset_required(hub
, port1
, portstatus
))
2664 /* Device went away? */
2665 if (!(portstatus
& USB_PORT_STAT_CONNECTION
))
2668 /* Retry if connect change is set but status is still connected.
2669 * A USB 3.0 connection may bounce if multiple warm resets were issued,
2670 * but the device may have successfully re-connected. Ignore it.
2672 if (!hub_is_superspeed(hub
->hdev
) &&
2673 (portchange
& USB_PORT_STAT_C_CONNECTION
)) {
2674 usb_clear_port_feature(hub
->hdev
, port1
,
2675 USB_PORT_FEAT_C_CONNECTION
);
2679 if (!(portstatus
& USB_PORT_STAT_ENABLE
))
2685 if (hub_is_wusb(hub
))
2686 udev
->speed
= USB_SPEED_WIRELESS
;
2687 else if (hub_is_superspeed(hub
->hdev
))
2688 udev
->speed
= USB_SPEED_SUPER
;
2689 else if (portstatus
& USB_PORT_STAT_HIGH_SPEED
)
2690 udev
->speed
= USB_SPEED_HIGH
;
2691 else if (portstatus
& USB_PORT_STAT_LOW_SPEED
)
2692 udev
->speed
= USB_SPEED_LOW
;
2694 udev
->speed
= USB_SPEED_FULL
;
2698 /* Handle port reset and port warm(BH) reset (for USB3 protocol ports) */
2699 static int hub_port_reset(struct usb_hub
*hub
, int port1
,
2700 struct usb_device
*udev
, unsigned int delay
, bool warm
)
2703 u16 portchange
, portstatus
;
2704 struct usb_port
*port_dev
= hub
->ports
[port1
- 1];
2706 if (!hub_is_superspeed(hub
->hdev
)) {
2708 dev_err(hub
->intfdev
, "only USB3 hub support "
2712 /* Block EHCI CF initialization during the port reset.
2713 * Some companion controllers don't like it when they mix.
2715 down_read(&ehci_cf_port_reset_rwsem
);
2718 * If the caller hasn't explicitly requested a warm reset,
2719 * double check and see if one is needed.
2721 if (hub_port_status(hub
, port1
, &portstatus
, &portchange
) == 0)
2722 if (hub_port_warm_reset_required(hub
, port1
,
2726 clear_bit(port1
, hub
->warm_reset_bits
);
2728 /* Reset the port */
2729 for (i
= 0; i
< PORT_RESET_TRIES
; i
++) {
2730 status
= set_port_feature(hub
->hdev
, port1
, (warm
?
2731 USB_PORT_FEAT_BH_PORT_RESET
:
2732 USB_PORT_FEAT_RESET
));
2733 if (status
== -ENODEV
) {
2734 ; /* The hub is gone */
2735 } else if (status
) {
2736 dev_err(&port_dev
->dev
,
2737 "cannot %sreset (err = %d)\n",
2738 warm
? "warm " : "", status
);
2740 status
= hub_port_wait_reset(hub
, port1
, udev
, delay
,
2742 if (status
&& status
!= -ENOTCONN
&& status
!= -ENODEV
)
2743 dev_dbg(hub
->intfdev
,
2744 "port_wait_reset: err = %d\n",
2748 /* Check for disconnect or reset */
2749 if (status
== 0 || status
== -ENOTCONN
|| status
== -ENODEV
) {
2750 usb_clear_port_feature(hub
->hdev
, port1
,
2751 USB_PORT_FEAT_C_RESET
);
2753 if (!hub_is_superspeed(hub
->hdev
))
2756 usb_clear_port_feature(hub
->hdev
, port1
,
2757 USB_PORT_FEAT_C_BH_PORT_RESET
);
2758 usb_clear_port_feature(hub
->hdev
, port1
,
2759 USB_PORT_FEAT_C_PORT_LINK_STATE
);
2760 usb_clear_port_feature(hub
->hdev
, port1
,
2761 USB_PORT_FEAT_C_CONNECTION
);
2764 * If a USB 3.0 device migrates from reset to an error
2765 * state, re-issue the warm reset.
2767 if (hub_port_status(hub
, port1
,
2768 &portstatus
, &portchange
) < 0)
2771 if (!hub_port_warm_reset_required(hub
, port1
,
2776 * If the port is in SS.Inactive or Compliance Mode, the
2777 * hot or warm reset failed. Try another warm reset.
2780 dev_dbg(&port_dev
->dev
,
2781 "hot reset failed, warm reset\n");
2786 dev_dbg(&port_dev
->dev
,
2787 "not enabled, trying %sreset again...\n",
2788 warm
? "warm " : "");
2789 delay
= HUB_LONG_RESET_TIME
;
2792 dev_err(&port_dev
->dev
, "Cannot enable. Maybe the USB cable is bad?\n");
2796 /* TRSTRCY = 10 ms; plus some extra */
2799 struct usb_hcd
*hcd
= bus_to_hcd(udev
->bus
);
2801 update_devnum(udev
, 0);
2802 /* The xHC may think the device is already reset,
2803 * so ignore the status.
2805 if (hcd
->driver
->reset_device
)
2806 hcd
->driver
->reset_device(hcd
, udev
);
2808 usb_set_device_state(udev
, USB_STATE_DEFAULT
);
2812 usb_set_device_state(udev
, USB_STATE_NOTATTACHED
);
2815 if (!hub_is_superspeed(hub
->hdev
))
2816 up_read(&ehci_cf_port_reset_rwsem
);
2821 /* Check if a port is power on */
2822 static int port_is_power_on(struct usb_hub
*hub
, unsigned portstatus
)
2826 if (hub_is_superspeed(hub
->hdev
)) {
2827 if (portstatus
& USB_SS_PORT_STAT_POWER
)
2830 if (portstatus
& USB_PORT_STAT_POWER
)
2837 static void usb_lock_port(struct usb_port
*port_dev
)
2838 __acquires(&port_dev
->status_lock
)
2840 mutex_lock(&port_dev
->status_lock
);
2841 __acquire(&port_dev
->status_lock
);
2844 static void usb_unlock_port(struct usb_port
*port_dev
)
2845 __releases(&port_dev
->status_lock
)
2847 mutex_unlock(&port_dev
->status_lock
);
2848 __release(&port_dev
->status_lock
);
2853 /* Check if a port is suspended(USB2.0 port) or in U3 state(USB3.0 port) */
2854 static int port_is_suspended(struct usb_hub
*hub
, unsigned portstatus
)
2858 if (hub_is_superspeed(hub
->hdev
)) {
2859 if ((portstatus
& USB_PORT_STAT_LINK_STATE
)
2860 == USB_SS_PORT_LS_U3
)
2863 if (portstatus
& USB_PORT_STAT_SUSPEND
)
2870 /* Determine whether the device on a port is ready for a normal resume,
2871 * is ready for a reset-resume, or should be disconnected.
2873 static int check_port_resume_type(struct usb_device
*udev
,
2874 struct usb_hub
*hub
, int port1
,
2875 int status
, u16 portchange
, u16 portstatus
)
2877 struct usb_port
*port_dev
= hub
->ports
[port1
- 1];
2881 /* Is a warm reset needed to recover the connection? */
2882 if (status
== 0 && udev
->reset_resume
2883 && hub_port_warm_reset_required(hub
, port1
, portstatus
)) {
2886 /* Is the device still present? */
2887 else if (status
|| port_is_suspended(hub
, portstatus
) ||
2888 !port_is_power_on(hub
, portstatus
)) {
2891 } else if (!(portstatus
& USB_PORT_STAT_CONNECTION
)) {
2893 usleep_range(200, 300);
2894 status
= hub_port_status(hub
, port1
, &portstatus
,
2901 /* Can't do a normal resume if the port isn't enabled,
2902 * so try a reset-resume instead.
2904 else if (!(portstatus
& USB_PORT_STAT_ENABLE
) && !udev
->reset_resume
) {
2905 if (udev
->persist_enabled
)
2906 udev
->reset_resume
= 1;
2912 dev_dbg(&port_dev
->dev
, "status %04x.%04x after resume, %d\n",
2913 portchange
, portstatus
, status
);
2914 } else if (udev
->reset_resume
) {
2916 /* Late port handoff can set status-change bits */
2917 if (portchange
& USB_PORT_STAT_C_CONNECTION
)
2918 usb_clear_port_feature(hub
->hdev
, port1
,
2919 USB_PORT_FEAT_C_CONNECTION
);
2920 if (portchange
& USB_PORT_STAT_C_ENABLE
)
2921 usb_clear_port_feature(hub
->hdev
, port1
,
2922 USB_PORT_FEAT_C_ENABLE
);
2928 int usb_disable_ltm(struct usb_device
*udev
)
2930 struct usb_hcd
*hcd
= bus_to_hcd(udev
->bus
);
2932 /* Check if the roothub and device supports LTM. */
2933 if (!usb_device_supports_ltm(hcd
->self
.root_hub
) ||
2934 !usb_device_supports_ltm(udev
))
2937 /* Clear Feature LTM Enable can only be sent if the device is
2940 if (!udev
->actconfig
)
2943 return usb_control_msg(udev
, usb_sndctrlpipe(udev
, 0),
2944 USB_REQ_CLEAR_FEATURE
, USB_RECIP_DEVICE
,
2945 USB_DEVICE_LTM_ENABLE
, 0, NULL
, 0,
2946 USB_CTRL_SET_TIMEOUT
);
2948 EXPORT_SYMBOL_GPL(usb_disable_ltm
);
2950 void usb_enable_ltm(struct usb_device
*udev
)
2952 struct usb_hcd
*hcd
= bus_to_hcd(udev
->bus
);
2954 /* Check if the roothub and device supports LTM. */
2955 if (!usb_device_supports_ltm(hcd
->self
.root_hub
) ||
2956 !usb_device_supports_ltm(udev
))
2959 /* Set Feature LTM Enable can only be sent if the device is
2962 if (!udev
->actconfig
)
2965 usb_control_msg(udev
, usb_sndctrlpipe(udev
, 0),
2966 USB_REQ_SET_FEATURE
, USB_RECIP_DEVICE
,
2967 USB_DEVICE_LTM_ENABLE
, 0, NULL
, 0,
2968 USB_CTRL_SET_TIMEOUT
);
2970 EXPORT_SYMBOL_GPL(usb_enable_ltm
);
2973 * usb_enable_remote_wakeup - enable remote wakeup for a device
2974 * @udev: target device
2976 * For USB-2 devices: Set the device's remote wakeup feature.
2978 * For USB-3 devices: Assume there's only one function on the device and
2979 * enable remote wake for the first interface. FIXME if the interface
2980 * association descriptor shows there's more than one function.
2982 static int usb_enable_remote_wakeup(struct usb_device
*udev
)
2984 if (udev
->speed
< USB_SPEED_SUPER
)
2985 return usb_control_msg(udev
, usb_sndctrlpipe(udev
, 0),
2986 USB_REQ_SET_FEATURE
, USB_RECIP_DEVICE
,
2987 USB_DEVICE_REMOTE_WAKEUP
, 0, NULL
, 0,
2988 USB_CTRL_SET_TIMEOUT
);
2990 return usb_control_msg(udev
, usb_sndctrlpipe(udev
, 0),
2991 USB_REQ_SET_FEATURE
, USB_RECIP_INTERFACE
,
2992 USB_INTRF_FUNC_SUSPEND
,
2993 USB_INTRF_FUNC_SUSPEND_RW
|
2994 USB_INTRF_FUNC_SUSPEND_LP
,
2995 NULL
, 0, USB_CTRL_SET_TIMEOUT
);
2999 * usb_disable_remote_wakeup - disable remote wakeup for a device
3000 * @udev: target device
3002 * For USB-2 devices: Clear the device's remote wakeup feature.
3004 * For USB-3 devices: Assume there's only one function on the device and
3005 * disable remote wake for the first interface. FIXME if the interface
3006 * association descriptor shows there's more than one function.
3008 static int usb_disable_remote_wakeup(struct usb_device
*udev
)
3010 if (udev
->speed
< USB_SPEED_SUPER
)
3011 return usb_control_msg(udev
, usb_sndctrlpipe(udev
, 0),
3012 USB_REQ_CLEAR_FEATURE
, USB_RECIP_DEVICE
,
3013 USB_DEVICE_REMOTE_WAKEUP
, 0, NULL
, 0,
3014 USB_CTRL_SET_TIMEOUT
);
3016 return usb_control_msg(udev
, usb_sndctrlpipe(udev
, 0),
3017 USB_REQ_CLEAR_FEATURE
, USB_RECIP_INTERFACE
,
3018 USB_INTRF_FUNC_SUSPEND
, 0, NULL
, 0,
3019 USB_CTRL_SET_TIMEOUT
);
3022 /* Count of wakeup-enabled devices at or below udev */
3023 static unsigned wakeup_enabled_descendants(struct usb_device
*udev
)
3025 struct usb_hub
*hub
= usb_hub_to_struct_hub(udev
);
3027 return udev
->do_remote_wakeup
+
3028 (hub
? hub
->wakeup_enabled_descendants
: 0);
3032 * usb_port_suspend - suspend a usb device's upstream port
3033 * @udev: device that's no longer in active use, not a root hub
3034 * Context: must be able to sleep; device not locked; pm locks held
3036 * Suspends a USB device that isn't in active use, conserving power.
3037 * Devices may wake out of a suspend, if anything important happens,
3038 * using the remote wakeup mechanism. They may also be taken out of
3039 * suspend by the host, using usb_port_resume(). It's also routine
3040 * to disconnect devices while they are suspended.
3042 * This only affects the USB hardware for a device; its interfaces
3043 * (and, for hubs, child devices) must already have been suspended.
3045 * Selective port suspend reduces power; most suspended devices draw
3046 * less than 500 uA. It's also used in OTG, along with remote wakeup.
3047 * All devices below the suspended port are also suspended.
3049 * Devices leave suspend state when the host wakes them up. Some devices
3050 * also support "remote wakeup", where the device can activate the USB
3051 * tree above them to deliver data, such as a keypress or packet. In
3052 * some cases, this wakes the USB host.
3054 * Suspending OTG devices may trigger HNP, if that's been enabled
3055 * between a pair of dual-role devices. That will change roles, such
3056 * as from A-Host to A-Peripheral or from B-Host back to B-Peripheral.
3058 * Devices on USB hub ports have only one "suspend" state, corresponding
3059 * to ACPI D2, "may cause the device to lose some context".
3060 * State transitions include:
3062 * - suspend, resume ... when the VBUS power link stays live
3063 * - suspend, disconnect ... VBUS lost
3065 * Once VBUS drop breaks the circuit, the port it's using has to go through
3066 * normal re-enumeration procedures, starting with enabling VBUS power.
3067 * Other than re-initializing the hub (plug/unplug, except for root hubs),
3068 * Linux (2.6) currently has NO mechanisms to initiate that: no hub_wq
3069 * timer, no SRP, no requests through sysfs.
3071 * If Runtime PM isn't enabled or used, non-SuperSpeed devices may not get
3072 * suspended until their bus goes into global suspend (i.e., the root
3073 * hub is suspended). Nevertheless, we change @udev->state to
3074 * USB_STATE_SUSPENDED as this is the device's "logical" state. The actual
3075 * upstream port setting is stored in @udev->port_is_suspended.
3077 * Returns 0 on success, else negative errno.
3079 int usb_port_suspend(struct usb_device
*udev
, pm_message_t msg
)
3081 struct usb_hub
*hub
= usb_hub_to_struct_hub(udev
->parent
);
3082 struct usb_port
*port_dev
= hub
->ports
[udev
->portnum
- 1];
3083 int port1
= udev
->portnum
;
3085 bool really_suspend
= true;
3087 usb_lock_port(port_dev
);
3089 /* enable remote wakeup when appropriate; this lets the device
3090 * wake up the upstream hub (including maybe the root hub).
3092 * NOTE: OTG devices may issue remote wakeup (or SRP) even when
3093 * we don't explicitly enable it here.
3095 if (udev
->do_remote_wakeup
) {
3096 status
= usb_enable_remote_wakeup(udev
);
3098 dev_dbg(&udev
->dev
, "won't remote wakeup, status %d\n",
3100 /* bail if autosuspend is requested */
3101 if (PMSG_IS_AUTO(msg
))
3106 /* disable USB2 hardware LPM */
3107 if (udev
->usb2_hw_lpm_enabled
== 1)
3108 usb_set_usb2_hardware_lpm(udev
, 0);
3110 if (usb_disable_ltm(udev
)) {
3111 dev_err(&udev
->dev
, "Failed to disable LTM before suspend\n.");
3113 if (PMSG_IS_AUTO(msg
))
3116 if (usb_unlocked_disable_lpm(udev
)) {
3117 dev_err(&udev
->dev
, "Failed to disable LPM before suspend\n.");
3119 if (PMSG_IS_AUTO(msg
))
3124 if (hub_is_superspeed(hub
->hdev
))
3125 status
= hub_set_port_link_state(hub
, port1
, USB_SS_PORT_LS_U3
);
3128 * For system suspend, we do not need to enable the suspend feature
3129 * on individual USB-2 ports. The devices will automatically go
3130 * into suspend a few ms after the root hub stops sending packets.
3131 * The USB 2.0 spec calls this "global suspend".
3133 * However, many USB hubs have a bug: They don't relay wakeup requests
3134 * from a downstream port if the port's suspend feature isn't on.
3135 * Therefore we will turn on the suspend feature if udev or any of its
3136 * descendants is enabled for remote wakeup.
3138 else if (PMSG_IS_AUTO(msg
) || wakeup_enabled_descendants(udev
) > 0)
3139 status
= set_port_feature(hub
->hdev
, port1
,
3140 USB_PORT_FEAT_SUSPEND
);
3142 really_suspend
= false;
3146 dev_dbg(&port_dev
->dev
, "can't suspend, status %d\n", status
);
3148 /* Try to enable USB3 LPM and LTM again */
3149 usb_unlocked_enable_lpm(udev
);
3151 usb_enable_ltm(udev
);
3153 /* Try to enable USB2 hardware LPM again */
3154 if (udev
->usb2_hw_lpm_capable
== 1)
3155 usb_set_usb2_hardware_lpm(udev
, 1);
3157 if (udev
->do_remote_wakeup
)
3158 (void) usb_disable_remote_wakeup(udev
);
3161 /* System sleep transitions should never fail */
3162 if (!PMSG_IS_AUTO(msg
))
3165 dev_dbg(&udev
->dev
, "usb %ssuspend, wakeup %d\n",
3166 (PMSG_IS_AUTO(msg
) ? "auto-" : ""),
3167 udev
->do_remote_wakeup
);
3168 if (really_suspend
) {
3169 udev
->port_is_suspended
= 1;
3171 /* device has up to 10 msec to fully suspend */
3174 usb_set_device_state(udev
, USB_STATE_SUSPENDED
);
3177 if (status
== 0 && !udev
->do_remote_wakeup
&& udev
->persist_enabled
3178 && test_and_clear_bit(port1
, hub
->child_usage_bits
))
3179 pm_runtime_put_sync(&port_dev
->dev
);
3181 usb_mark_last_busy(hub
->hdev
);
3183 usb_unlock_port(port_dev
);
3188 * If the USB "suspend" state is in use (rather than "global suspend"),
3189 * many devices will be individually taken out of suspend state using
3190 * special "resume" signaling. This routine kicks in shortly after
3191 * hardware resume signaling is finished, either because of selective
3192 * resume (by host) or remote wakeup (by device) ... now see what changed
3193 * in the tree that's rooted at this device.
3195 * If @udev->reset_resume is set then the device is reset before the
3196 * status check is done.
3198 static int finish_port_resume(struct usb_device
*udev
)
3203 /* caller owns the udev device lock */
3204 dev_dbg(&udev
->dev
, "%s\n",
3205 udev
->reset_resume
? "finish reset-resume" : "finish resume");
3207 /* usb ch9 identifies four variants of SUSPENDED, based on what
3208 * state the device resumes to. Linux currently won't see the
3209 * first two on the host side; they'd be inside hub_port_init()
3210 * during many timeouts, but hub_wq can't suspend until later.
3212 usb_set_device_state(udev
, udev
->actconfig
3213 ? USB_STATE_CONFIGURED
3214 : USB_STATE_ADDRESS
);
3216 /* 10.5.4.5 says not to reset a suspended port if the attached
3217 * device is enabled for remote wakeup. Hence the reset
3218 * operation is carried out here, after the port has been
3221 if (udev
->reset_resume
) {
3223 * If the device morphs or switches modes when it is reset,
3224 * we don't want to perform a reset-resume. We'll fail the
3225 * resume, which will cause a logical disconnect, and then
3226 * the device will be rediscovered.
3229 if (udev
->quirks
& USB_QUIRK_RESET
)
3232 status
= usb_reset_and_verify_device(udev
);
3235 /* 10.5.4.5 says be sure devices in the tree are still there.
3236 * For now let's assume the device didn't go crazy on resume,
3237 * and device drivers will know about any resume quirks.
3241 status
= usb_get_status(udev
, USB_RECIP_DEVICE
, 0, &devstatus
);
3243 /* If a normal resume failed, try doing a reset-resume */
3244 if (status
&& !udev
->reset_resume
&& udev
->persist_enabled
) {
3245 dev_dbg(&udev
->dev
, "retry with reset-resume\n");
3246 udev
->reset_resume
= 1;
3247 goto retry_reset_resume
;
3252 dev_dbg(&udev
->dev
, "gone after usb resume? status %d\n",
3255 * There are a few quirky devices which violate the standard
3256 * by claiming to have remote wakeup enabled after a reset,
3257 * which crash if the feature is cleared, hence check for
3258 * udev->reset_resume
3260 } else if (udev
->actconfig
&& !udev
->reset_resume
) {
3261 if (udev
->speed
< USB_SPEED_SUPER
) {
3262 if (devstatus
& (1 << USB_DEVICE_REMOTE_WAKEUP
))
3263 status
= usb_disable_remote_wakeup(udev
);
3265 status
= usb_get_status(udev
, USB_RECIP_INTERFACE
, 0,
3267 if (!status
&& devstatus
& (USB_INTRF_STAT_FUNC_RW_CAP
3268 | USB_INTRF_STAT_FUNC_RW
))
3269 status
= usb_disable_remote_wakeup(udev
);
3274 "disable remote wakeup, status %d\n",
3282 * There are some SS USB devices which take longer time for link training.
3283 * XHCI specs 4.19.4 says that when Link training is successful, port
3284 * sets CSC bit to 1. So if SW reads port status before successful link
3285 * training, then it will not find device to be present.
3286 * USB Analyzer log with such buggy devices show that in some cases
3287 * device switch on the RX termination after long delay of host enabling
3288 * the VBUS. In few other cases it has been seen that device fails to
3289 * negotiate link training in first attempt. It has been
3290 * reported till now that few devices take as long as 2000 ms to train
3291 * the link after host enabling its VBUS and termination. Following
3292 * routine implements a 2000 ms timeout for link training. If in a case
3293 * link trains before timeout, loop will exit earlier.
3295 * FIXME: If a device was connected before suspend, but was removed
3296 * while system was asleep, then the loop in the following routine will
3297 * only exit at timeout.
3299 * This routine should only be called when persist is enabled for a SS
3302 static int wait_for_ss_port_enable(struct usb_device
*udev
,
3303 struct usb_hub
*hub
, int *port1
,
3304 u16
*portchange
, u16
*portstatus
)
3306 int status
= 0, delay_ms
= 0;
3308 while (delay_ms
< 2000) {
3309 if (status
|| *portstatus
& USB_PORT_STAT_CONNECTION
)
3311 if (!port_is_power_on(hub
, *portstatus
)) {
3317 status
= hub_port_status(hub
, *port1
, portstatus
, portchange
);
3323 * usb_port_resume - re-activate a suspended usb device's upstream port
3324 * @udev: device to re-activate, not a root hub
3325 * Context: must be able to sleep; device not locked; pm locks held
3327 * This will re-activate the suspended device, increasing power usage
3328 * while letting drivers communicate again with its endpoints.
3329 * USB resume explicitly guarantees that the power session between
3330 * the host and the device is the same as it was when the device
3333 * If @udev->reset_resume is set then this routine won't check that the
3334 * port is still enabled. Furthermore, finish_port_resume() above will
3335 * reset @udev. The end result is that a broken power session can be
3336 * recovered and @udev will appear to persist across a loss of VBUS power.
3338 * For example, if a host controller doesn't maintain VBUS suspend current
3339 * during a system sleep or is reset when the system wakes up, all the USB
3340 * power sessions below it will be broken. This is especially troublesome
3341 * for mass-storage devices containing mounted filesystems, since the
3342 * device will appear to have disconnected and all the memory mappings
3343 * to it will be lost. Using the USB_PERSIST facility, the device can be
3344 * made to appear as if it had not disconnected.
3346 * This facility can be dangerous. Although usb_reset_and_verify_device() makes
3347 * every effort to insure that the same device is present after the
3348 * reset as before, it cannot provide a 100% guarantee. Furthermore it's
3349 * quite possible for a device to remain unaltered but its media to be
3350 * changed. If the user replaces a flash memory card while the system is
3351 * asleep, he will have only himself to blame when the filesystem on the
3352 * new card is corrupted and the system crashes.
3354 * Returns 0 on success, else negative errno.
3356 int usb_port_resume(struct usb_device
*udev
, pm_message_t msg
)
3358 struct usb_hub
*hub
= usb_hub_to_struct_hub(udev
->parent
);
3359 struct usb_port
*port_dev
= hub
->ports
[udev
->portnum
- 1];
3360 int port1
= udev
->portnum
;
3362 u16 portchange
, portstatus
;
3364 if (!test_and_set_bit(port1
, hub
->child_usage_bits
)) {
3365 status
= pm_runtime_get_sync(&port_dev
->dev
);
3367 dev_dbg(&udev
->dev
, "can't resume usb port, status %d\n",
3373 usb_lock_port(port_dev
);
3375 /* Skip the initial Clear-Suspend step for a remote wakeup */
3376 status
= hub_port_status(hub
, port1
, &portstatus
, &portchange
);
3377 if (status
== 0 && !port_is_suspended(hub
, portstatus
)) {
3378 if (portchange
& USB_PORT_STAT_C_SUSPEND
)
3379 pm_wakeup_event(&udev
->dev
, 0);
3380 goto SuspendCleared
;
3383 /* see 7.1.7.7; affects power usage, but not budgeting */
3384 if (hub_is_superspeed(hub
->hdev
))
3385 status
= hub_set_port_link_state(hub
, port1
, USB_SS_PORT_LS_U0
);
3387 status
= usb_clear_port_feature(hub
->hdev
,
3388 port1
, USB_PORT_FEAT_SUSPEND
);
3390 dev_dbg(&port_dev
->dev
, "can't resume, status %d\n", status
);
3392 /* drive resume for USB_RESUME_TIMEOUT msec */
3393 dev_dbg(&udev
->dev
, "usb %sresume\n",
3394 (PMSG_IS_AUTO(msg
) ? "auto-" : ""));
3395 msleep(USB_RESUME_TIMEOUT
);
3397 /* Virtual root hubs can trigger on GET_PORT_STATUS to
3398 * stop resume signaling. Then finish the resume
3401 status
= hub_port_status(hub
, port1
, &portstatus
, &portchange
);
3403 /* TRSMRCY = 10 msec */
3409 udev
->port_is_suspended
= 0;
3410 if (hub_is_superspeed(hub
->hdev
)) {
3411 if (portchange
& USB_PORT_STAT_C_LINK_STATE
)
3412 usb_clear_port_feature(hub
->hdev
, port1
,
3413 USB_PORT_FEAT_C_PORT_LINK_STATE
);
3415 if (portchange
& USB_PORT_STAT_C_SUSPEND
)
3416 usb_clear_port_feature(hub
->hdev
, port1
,
3417 USB_PORT_FEAT_C_SUSPEND
);
3421 if (udev
->persist_enabled
&& hub_is_superspeed(hub
->hdev
))
3422 status
= wait_for_ss_port_enable(udev
, hub
, &port1
, &portchange
,
3425 status
= check_port_resume_type(udev
,
3426 hub
, port1
, status
, portchange
, portstatus
);
3428 status
= finish_port_resume(udev
);
3430 dev_dbg(&udev
->dev
, "can't resume, status %d\n", status
);
3431 hub_port_logical_disconnect(hub
, port1
);
3433 /* Try to enable USB2 hardware LPM */
3434 if (udev
->usb2_hw_lpm_capable
== 1)
3435 usb_set_usb2_hardware_lpm(udev
, 1);
3437 /* Try to enable USB3 LTM and LPM */
3438 usb_enable_ltm(udev
);
3439 usb_unlocked_enable_lpm(udev
);
3442 usb_unlock_port(port_dev
);
3447 int usb_remote_wakeup(struct usb_device
*udev
)
3451 usb_lock_device(udev
);
3452 if (udev
->state
== USB_STATE_SUSPENDED
) {
3453 dev_dbg(&udev
->dev
, "usb %sresume\n", "wakeup-");
3454 status
= usb_autoresume_device(udev
);
3456 /* Let the drivers do their thing, then... */
3457 usb_autosuspend_device(udev
);
3460 usb_unlock_device(udev
);
3464 /* Returns 1 if there was a remote wakeup and a connect status change. */
3465 static int hub_handle_remote_wakeup(struct usb_hub
*hub
, unsigned int port
,
3466 u16 portstatus
, u16 portchange
)
3467 __must_hold(&port_dev
->status_lock
)
3469 struct usb_port
*port_dev
= hub
->ports
[port
- 1];
3470 struct usb_device
*hdev
;
3471 struct usb_device
*udev
;
3472 int connect_change
= 0;
3476 udev
= port_dev
->child
;
3477 if (!hub_is_superspeed(hdev
)) {
3478 if (!(portchange
& USB_PORT_STAT_C_SUSPEND
))
3480 usb_clear_port_feature(hdev
, port
, USB_PORT_FEAT_C_SUSPEND
);
3482 if (!udev
|| udev
->state
!= USB_STATE_SUSPENDED
||
3483 (portstatus
& USB_PORT_STAT_LINK_STATE
) !=
3489 /* TRSMRCY = 10 msec */
3492 usb_unlock_port(port_dev
);
3493 ret
= usb_remote_wakeup(udev
);
3494 usb_lock_port(port_dev
);
3499 hub_port_disable(hub
, port
, 1);
3501 dev_dbg(&port_dev
->dev
, "resume, status %d\n", ret
);
3502 return connect_change
;
3505 static int check_ports_changed(struct usb_hub
*hub
)
3509 for (port1
= 1; port1
<= hub
->hdev
->maxchild
; ++port1
) {
3510 u16 portstatus
, portchange
;
3513 status
= hub_port_status(hub
, port1
, &portstatus
, &portchange
);
3514 if (!status
&& portchange
)
3520 static int hub_suspend(struct usb_interface
*intf
, pm_message_t msg
)
3522 struct usb_hub
*hub
= usb_get_intfdata(intf
);
3523 struct usb_device
*hdev
= hub
->hdev
;
3528 * Warn if children aren't already suspended.
3529 * Also, add up the number of wakeup-enabled descendants.
3531 hub
->wakeup_enabled_descendants
= 0;
3532 for (port1
= 1; port1
<= hdev
->maxchild
; port1
++) {
3533 struct usb_port
*port_dev
= hub
->ports
[port1
- 1];
3534 struct usb_device
*udev
= port_dev
->child
;
3536 if (udev
&& udev
->can_submit
) {
3537 dev_warn(&port_dev
->dev
, "device %s not suspended yet\n",
3538 dev_name(&udev
->dev
));
3539 if (PMSG_IS_AUTO(msg
))
3543 hub
->wakeup_enabled_descendants
+=
3544 wakeup_enabled_descendants(udev
);
3547 if (hdev
->do_remote_wakeup
&& hub
->quirk_check_port_auto_suspend
) {
3548 /* check if there are changes pending on hub ports */
3549 if (check_ports_changed(hub
)) {
3550 if (PMSG_IS_AUTO(msg
))
3552 pm_wakeup_event(&hdev
->dev
, 2000);
3556 if (hub_is_superspeed(hdev
) && hdev
->do_remote_wakeup
) {
3557 /* Enable hub to send remote wakeup for all ports. */
3558 for (port1
= 1; port1
<= hdev
->maxchild
; port1
++) {
3559 status
= set_port_feature(hdev
,
3561 USB_PORT_FEAT_REMOTE_WAKE_CONNECT
|
3562 USB_PORT_FEAT_REMOTE_WAKE_DISCONNECT
|
3563 USB_PORT_FEAT_REMOTE_WAKE_OVER_CURRENT
,
3564 USB_PORT_FEAT_REMOTE_WAKE_MASK
);
3568 dev_dbg(&intf
->dev
, "%s\n", __func__
);
3570 /* stop hub_wq and related activity */
3571 hub_quiesce(hub
, HUB_SUSPEND
);
3575 static int hub_resume(struct usb_interface
*intf
)
3577 struct usb_hub
*hub
= usb_get_intfdata(intf
);
3579 dev_dbg(&intf
->dev
, "%s\n", __func__
);
3580 hub_activate(hub
, HUB_RESUME
);
3584 static int hub_reset_resume(struct usb_interface
*intf
)
3586 struct usb_hub
*hub
= usb_get_intfdata(intf
);
3588 dev_dbg(&intf
->dev
, "%s\n", __func__
);
3589 hub_activate(hub
, HUB_RESET_RESUME
);
3594 * usb_root_hub_lost_power - called by HCD if the root hub lost Vbus power
3595 * @rhdev: struct usb_device for the root hub
3597 * The USB host controller driver calls this function when its root hub
3598 * is resumed and Vbus power has been interrupted or the controller
3599 * has been reset. The routine marks @rhdev as having lost power.
3600 * When the hub driver is resumed it will take notice and carry out
3601 * power-session recovery for all the "USB-PERSIST"-enabled child devices;
3602 * the others will be disconnected.
3604 void usb_root_hub_lost_power(struct usb_device
*rhdev
)
3606 dev_warn(&rhdev
->dev
, "root hub lost power or was reset\n");
3607 rhdev
->reset_resume
= 1;
3609 EXPORT_SYMBOL_GPL(usb_root_hub_lost_power
);
3611 static const char * const usb3_lpm_names
[] = {
3619 * Send a Set SEL control transfer to the device, prior to enabling
3620 * device-initiated U1 or U2. This lets the device know the exit latencies from
3621 * the time the device initiates a U1 or U2 exit, to the time it will receive a
3622 * packet from the host.
3624 * This function will fail if the SEL or PEL values for udev are greater than
3625 * the maximum allowed values for the link state to be enabled.
3627 static int usb_req_set_sel(struct usb_device
*udev
, enum usb3_link_state state
)
3629 struct usb_set_sel_req
*sel_values
;
3630 unsigned long long u1_sel
;
3631 unsigned long long u1_pel
;
3632 unsigned long long u2_sel
;
3633 unsigned long long u2_pel
;
3636 if (udev
->state
!= USB_STATE_CONFIGURED
)
3639 /* Convert SEL and PEL stored in ns to us */
3640 u1_sel
= DIV_ROUND_UP(udev
->u1_params
.sel
, 1000);
3641 u1_pel
= DIV_ROUND_UP(udev
->u1_params
.pel
, 1000);
3642 u2_sel
= DIV_ROUND_UP(udev
->u2_params
.sel
, 1000);
3643 u2_pel
= DIV_ROUND_UP(udev
->u2_params
.pel
, 1000);
3646 * Make sure that the calculated SEL and PEL values for the link
3647 * state we're enabling aren't bigger than the max SEL/PEL
3648 * value that will fit in the SET SEL control transfer.
3649 * Otherwise the device would get an incorrect idea of the exit
3650 * latency for the link state, and could start a device-initiated
3651 * U1/U2 when the exit latencies are too high.
3653 if ((state
== USB3_LPM_U1
&&
3654 (u1_sel
> USB3_LPM_MAX_U1_SEL_PEL
||
3655 u1_pel
> USB3_LPM_MAX_U1_SEL_PEL
)) ||
3656 (state
== USB3_LPM_U2
&&
3657 (u2_sel
> USB3_LPM_MAX_U2_SEL_PEL
||
3658 u2_pel
> USB3_LPM_MAX_U2_SEL_PEL
))) {
3659 dev_dbg(&udev
->dev
, "Device-initiated %s disabled due to long SEL %llu us or PEL %llu us\n",
3660 usb3_lpm_names
[state
], u1_sel
, u1_pel
);
3665 * If we're enabling device-initiated LPM for one link state,
3666 * but the other link state has a too high SEL or PEL value,
3667 * just set those values to the max in the Set SEL request.
3669 if (u1_sel
> USB3_LPM_MAX_U1_SEL_PEL
)
3670 u1_sel
= USB3_LPM_MAX_U1_SEL_PEL
;
3672 if (u1_pel
> USB3_LPM_MAX_U1_SEL_PEL
)
3673 u1_pel
= USB3_LPM_MAX_U1_SEL_PEL
;
3675 if (u2_sel
> USB3_LPM_MAX_U2_SEL_PEL
)
3676 u2_sel
= USB3_LPM_MAX_U2_SEL_PEL
;
3678 if (u2_pel
> USB3_LPM_MAX_U2_SEL_PEL
)
3679 u2_pel
= USB3_LPM_MAX_U2_SEL_PEL
;
3682 * usb_enable_lpm() can be called as part of a failed device reset,
3683 * which may be initiated by an error path of a mass storage driver.
3684 * Therefore, use GFP_NOIO.
3686 sel_values
= kmalloc(sizeof *(sel_values
), GFP_NOIO
);
3690 sel_values
->u1_sel
= u1_sel
;
3691 sel_values
->u1_pel
= u1_pel
;
3692 sel_values
->u2_sel
= cpu_to_le16(u2_sel
);
3693 sel_values
->u2_pel
= cpu_to_le16(u2_pel
);
3695 ret
= usb_control_msg(udev
, usb_sndctrlpipe(udev
, 0),
3699 sel_values
, sizeof *(sel_values
),
3700 USB_CTRL_SET_TIMEOUT
);
3706 * Enable or disable device-initiated U1 or U2 transitions.
3708 static int usb_set_device_initiated_lpm(struct usb_device
*udev
,
3709 enum usb3_link_state state
, bool enable
)
3716 feature
= USB_DEVICE_U1_ENABLE
;
3719 feature
= USB_DEVICE_U2_ENABLE
;
3722 dev_warn(&udev
->dev
, "%s: Can't %s non-U1 or U2 state.\n",
3723 __func__
, enable
? "enable" : "disable");
3727 if (udev
->state
!= USB_STATE_CONFIGURED
) {
3728 dev_dbg(&udev
->dev
, "%s: Can't %s %s state "
3729 "for unconfigured device.\n",
3730 __func__
, enable
? "enable" : "disable",
3731 usb3_lpm_names
[state
]);
3737 * Now send the control transfer to enable device-initiated LPM
3738 * for either U1 or U2.
3740 ret
= usb_control_msg(udev
, usb_sndctrlpipe(udev
, 0),
3741 USB_REQ_SET_FEATURE
,
3745 USB_CTRL_SET_TIMEOUT
);
3747 ret
= usb_control_msg(udev
, usb_sndctrlpipe(udev
, 0),
3748 USB_REQ_CLEAR_FEATURE
,
3752 USB_CTRL_SET_TIMEOUT
);
3755 dev_warn(&udev
->dev
, "%s of device-initiated %s failed.\n",
3756 enable
? "Enable" : "Disable",
3757 usb3_lpm_names
[state
]);
3763 static int usb_set_lpm_timeout(struct usb_device
*udev
,
3764 enum usb3_link_state state
, int timeout
)
3771 feature
= USB_PORT_FEAT_U1_TIMEOUT
;
3774 feature
= USB_PORT_FEAT_U2_TIMEOUT
;
3777 dev_warn(&udev
->dev
, "%s: Can't set timeout for non-U1 or U2 state.\n",
3782 if (state
== USB3_LPM_U1
&& timeout
> USB3_LPM_U1_MAX_TIMEOUT
&&
3783 timeout
!= USB3_LPM_DEVICE_INITIATED
) {
3784 dev_warn(&udev
->dev
, "Failed to set %s timeout to 0x%x, "
3785 "which is a reserved value.\n",
3786 usb3_lpm_names
[state
], timeout
);
3790 ret
= set_port_feature(udev
->parent
,
3791 USB_PORT_LPM_TIMEOUT(timeout
) | udev
->portnum
,
3794 dev_warn(&udev
->dev
, "Failed to set %s timeout to 0x%x,"
3795 "error code %i\n", usb3_lpm_names
[state
],
3799 if (state
== USB3_LPM_U1
)
3800 udev
->u1_params
.timeout
= timeout
;
3802 udev
->u2_params
.timeout
= timeout
;
3807 * Enable the hub-initiated U1/U2 idle timeouts, and enable device-initiated
3810 * We will attempt to enable U1 or U2, but there are no guarantees that the
3811 * control transfers to set the hub timeout or enable device-initiated U1/U2
3812 * will be successful.
3814 * If we cannot set the parent hub U1/U2 timeout, we attempt to let the xHCI
3815 * driver know about it. If that call fails, it should be harmless, and just
3816 * take up more slightly more bus bandwidth for unnecessary U1/U2 exit latency.
3818 static void usb_enable_link_state(struct usb_hcd
*hcd
, struct usb_device
*udev
,
3819 enum usb3_link_state state
)
3822 __u8 u1_mel
= udev
->bos
->ss_cap
->bU1devExitLat
;
3823 __le16 u2_mel
= udev
->bos
->ss_cap
->bU2DevExitLat
;
3825 /* If the device says it doesn't have *any* exit latency to come out of
3826 * U1 or U2, it's probably lying. Assume it doesn't implement that link
3829 if ((state
== USB3_LPM_U1
&& u1_mel
== 0) ||
3830 (state
== USB3_LPM_U2
&& u2_mel
== 0))
3834 * First, let the device know about the exit latencies
3835 * associated with the link state we're about to enable.
3837 ret
= usb_req_set_sel(udev
, state
);
3839 dev_warn(&udev
->dev
, "Set SEL for device-initiated %s failed.\n",
3840 usb3_lpm_names
[state
]);
3844 /* We allow the host controller to set the U1/U2 timeout internally
3845 * first, so that it can change its schedule to account for the
3846 * additional latency to send data to a device in a lower power
3849 timeout
= hcd
->driver
->enable_usb3_lpm_timeout(hcd
, udev
, state
);
3851 /* xHCI host controller doesn't want to enable this LPM state. */
3856 dev_warn(&udev
->dev
, "Could not enable %s link state, "
3857 "xHCI error %i.\n", usb3_lpm_names
[state
],
3862 if (usb_set_lpm_timeout(udev
, state
, timeout
)) {
3863 /* If we can't set the parent hub U1/U2 timeout,
3864 * device-initiated LPM won't be allowed either, so let the xHCI
3865 * host know that this link state won't be enabled.
3867 hcd
->driver
->disable_usb3_lpm_timeout(hcd
, udev
, state
);
3869 /* Only a configured device will accept the Set Feature
3872 if (udev
->actconfig
)
3873 usb_set_device_initiated_lpm(udev
, state
, true);
3875 /* As soon as usb_set_lpm_timeout(timeout) returns 0, the
3876 * hub-initiated LPM is enabled. Thus, LPM is enabled no
3877 * matter the result of usb_set_device_initiated_lpm().
3878 * The only difference is whether device is able to initiate
3881 if (state
== USB3_LPM_U1
)
3882 udev
->usb3_lpm_u1_enabled
= 1;
3883 else if (state
== USB3_LPM_U2
)
3884 udev
->usb3_lpm_u2_enabled
= 1;
3889 * Disable the hub-initiated U1/U2 idle timeouts, and disable device-initiated
3892 * If this function returns -EBUSY, the parent hub will still allow U1/U2 entry.
3893 * If zero is returned, the parent will not allow the link to go into U1/U2.
3895 * If zero is returned, device-initiated U1/U2 entry may still be enabled, but
3896 * it won't have an effect on the bus link state because the parent hub will
3897 * still disallow device-initiated U1/U2 entry.
3899 * If zero is returned, the xHCI host controller may still think U1/U2 entry is
3900 * possible. The result will be slightly more bus bandwidth will be taken up
3901 * (to account for U1/U2 exit latency), but it should be harmless.
3903 static int usb_disable_link_state(struct usb_hcd
*hcd
, struct usb_device
*udev
,
3904 enum usb3_link_state state
)
3911 dev_warn(&udev
->dev
, "%s: Can't disable non-U1 or U2 state.\n",
3916 if (usb_set_lpm_timeout(udev
, state
, 0))
3919 usb_set_device_initiated_lpm(udev
, state
, false);
3921 if (hcd
->driver
->disable_usb3_lpm_timeout(hcd
, udev
, state
))
3922 dev_warn(&udev
->dev
, "Could not disable xHCI %s timeout, "
3923 "bus schedule bandwidth may be impacted.\n",
3924 usb3_lpm_names
[state
]);
3926 /* As soon as usb_set_lpm_timeout(0) return 0, hub initiated LPM
3927 * is disabled. Hub will disallows link to enter U1/U2 as well,
3928 * even device is initiating LPM. Hence LPM is disabled if hub LPM
3929 * timeout set to 0, no matter device-initiated LPM is disabled or
3932 if (state
== USB3_LPM_U1
)
3933 udev
->usb3_lpm_u1_enabled
= 0;
3934 else if (state
== USB3_LPM_U2
)
3935 udev
->usb3_lpm_u2_enabled
= 0;
3941 * Disable hub-initiated and device-initiated U1 and U2 entry.
3942 * Caller must own the bandwidth_mutex.
3944 * This will call usb_enable_lpm() on failure, which will decrement
3945 * lpm_disable_count, and will re-enable LPM if lpm_disable_count reaches zero.
3947 int usb_disable_lpm(struct usb_device
*udev
)
3949 struct usb_hcd
*hcd
;
3951 if (!udev
|| !udev
->parent
||
3952 udev
->speed
< USB_SPEED_SUPER
||
3953 !udev
->lpm_capable
||
3954 udev
->state
< USB_STATE_DEFAULT
)
3957 hcd
= bus_to_hcd(udev
->bus
);
3958 if (!hcd
|| !hcd
->driver
->disable_usb3_lpm_timeout
)
3961 udev
->lpm_disable_count
++;
3962 if ((udev
->u1_params
.timeout
== 0 && udev
->u2_params
.timeout
== 0))
3965 /* If LPM is enabled, attempt to disable it. */
3966 if (usb_disable_link_state(hcd
, udev
, USB3_LPM_U1
))
3968 if (usb_disable_link_state(hcd
, udev
, USB3_LPM_U2
))
3974 usb_enable_lpm(udev
);
3977 EXPORT_SYMBOL_GPL(usb_disable_lpm
);
3979 /* Grab the bandwidth_mutex before calling usb_disable_lpm() */
3980 int usb_unlocked_disable_lpm(struct usb_device
*udev
)
3982 struct usb_hcd
*hcd
= bus_to_hcd(udev
->bus
);
3988 mutex_lock(hcd
->bandwidth_mutex
);
3989 ret
= usb_disable_lpm(udev
);
3990 mutex_unlock(hcd
->bandwidth_mutex
);
3994 EXPORT_SYMBOL_GPL(usb_unlocked_disable_lpm
);
3997 * Attempt to enable device-initiated and hub-initiated U1 and U2 entry. The
3998 * xHCI host policy may prevent U1 or U2 from being enabled.
4000 * Other callers may have disabled link PM, so U1 and U2 entry will be disabled
4001 * until the lpm_disable_count drops to zero. Caller must own the
4004 void usb_enable_lpm(struct usb_device
*udev
)
4006 struct usb_hcd
*hcd
;
4008 if (!udev
|| !udev
->parent
||
4009 udev
->speed
< USB_SPEED_SUPER
||
4010 !udev
->lpm_capable
||
4011 udev
->state
< USB_STATE_DEFAULT
)
4014 udev
->lpm_disable_count
--;
4015 hcd
= bus_to_hcd(udev
->bus
);
4016 /* Double check that we can both enable and disable LPM.
4017 * Device must be configured to accept set feature U1/U2 timeout.
4019 if (!hcd
|| !hcd
->driver
->enable_usb3_lpm_timeout
||
4020 !hcd
->driver
->disable_usb3_lpm_timeout
)
4023 if (udev
->lpm_disable_count
> 0)
4026 usb_enable_link_state(hcd
, udev
, USB3_LPM_U1
);
4027 usb_enable_link_state(hcd
, udev
, USB3_LPM_U2
);
4029 EXPORT_SYMBOL_GPL(usb_enable_lpm
);
4031 /* Grab the bandwidth_mutex before calling usb_enable_lpm() */
4032 void usb_unlocked_enable_lpm(struct usb_device
*udev
)
4034 struct usb_hcd
*hcd
= bus_to_hcd(udev
->bus
);
4039 mutex_lock(hcd
->bandwidth_mutex
);
4040 usb_enable_lpm(udev
);
4041 mutex_unlock(hcd
->bandwidth_mutex
);
4043 EXPORT_SYMBOL_GPL(usb_unlocked_enable_lpm
);
4045 /* usb3 devices use U3 for disabled, make sure remote wakeup is disabled */
4046 static void hub_usb3_port_prepare_disable(struct usb_hub
*hub
,
4047 struct usb_port
*port_dev
)
4049 struct usb_device
*udev
= port_dev
->child
;
4052 if (udev
&& udev
->port_is_suspended
&& udev
->do_remote_wakeup
) {
4053 ret
= hub_set_port_link_state(hub
, port_dev
->portnum
,
4056 msleep(USB_RESUME_TIMEOUT
);
4057 ret
= usb_disable_remote_wakeup(udev
);
4060 dev_warn(&udev
->dev
,
4061 "Port disable: can't disable remote wake\n");
4062 udev
->do_remote_wakeup
= 0;
4066 #else /* CONFIG_PM */
4068 #define hub_suspend NULL
4069 #define hub_resume NULL
4070 #define hub_reset_resume NULL
4072 static inline void hub_usb3_port_prepare_disable(struct usb_hub
*hub
,
4073 struct usb_port
*port_dev
) { }
4075 int usb_disable_lpm(struct usb_device
*udev
)
4079 EXPORT_SYMBOL_GPL(usb_disable_lpm
);
4081 void usb_enable_lpm(struct usb_device
*udev
) { }
4082 EXPORT_SYMBOL_GPL(usb_enable_lpm
);
4084 int usb_unlocked_disable_lpm(struct usb_device
*udev
)
4088 EXPORT_SYMBOL_GPL(usb_unlocked_disable_lpm
);
4090 void usb_unlocked_enable_lpm(struct usb_device
*udev
) { }
4091 EXPORT_SYMBOL_GPL(usb_unlocked_enable_lpm
);
4093 int usb_disable_ltm(struct usb_device
*udev
)
4097 EXPORT_SYMBOL_GPL(usb_disable_ltm
);
4099 void usb_enable_ltm(struct usb_device
*udev
) { }
4100 EXPORT_SYMBOL_GPL(usb_enable_ltm
);
4102 static int hub_handle_remote_wakeup(struct usb_hub
*hub
, unsigned int port
,
4103 u16 portstatus
, u16 portchange
)
4108 #endif /* CONFIG_PM */
4111 * USB-3 does not have a similar link state as USB-2 that will avoid negotiating
4112 * a connection with a plugged-in cable but will signal the host when the cable
4113 * is unplugged. Disable remote wake and set link state to U3 for USB-3 devices
4115 static int hub_port_disable(struct usb_hub
*hub
, int port1
, int set_state
)
4117 struct usb_port
*port_dev
= hub
->ports
[port1
- 1];
4118 struct usb_device
*hdev
= hub
->hdev
;
4122 if (hub_is_superspeed(hub
->hdev
)) {
4123 hub_usb3_port_prepare_disable(hub
, port_dev
);
4124 ret
= hub_set_port_link_state(hub
, port_dev
->portnum
,
4127 ret
= usb_clear_port_feature(hdev
, port1
,
4128 USB_PORT_FEAT_ENABLE
);
4131 if (port_dev
->child
&& set_state
)
4132 usb_set_device_state(port_dev
->child
, USB_STATE_NOTATTACHED
);
4133 if (ret
&& ret
!= -ENODEV
)
4134 dev_err(&port_dev
->dev
, "cannot disable (err = %d)\n", ret
);
4139 /* USB 2.0 spec, 7.1.7.3 / fig 7-29:
4141 * Between connect detection and reset signaling there must be a delay
4142 * of 100ms at least for debounce and power-settling. The corresponding
4143 * timer shall restart whenever the downstream port detects a disconnect.
4145 * Apparently there are some bluetooth and irda-dongles and a number of
4146 * low-speed devices for which this debounce period may last over a second.
4147 * Not covered by the spec - but easy to deal with.
4149 * This implementation uses a 1500ms total debounce timeout; if the
4150 * connection isn't stable by then it returns -ETIMEDOUT. It checks
4151 * every 25ms for transient disconnects. When the port status has been
4152 * unchanged for 100ms it returns the port status.
4154 int hub_port_debounce(struct usb_hub
*hub
, int port1
, bool must_be_connected
)
4157 u16 portchange
, portstatus
;
4158 unsigned connection
= 0xffff;
4159 int total_time
, stable_time
= 0;
4160 struct usb_port
*port_dev
= hub
->ports
[port1
- 1];
4162 for (total_time
= 0; ; total_time
+= HUB_DEBOUNCE_STEP
) {
4163 ret
= hub_port_status(hub
, port1
, &portstatus
, &portchange
);
4167 if (!(portchange
& USB_PORT_STAT_C_CONNECTION
) &&
4168 (portstatus
& USB_PORT_STAT_CONNECTION
) == connection
) {
4169 if (!must_be_connected
||
4170 (connection
== USB_PORT_STAT_CONNECTION
))
4171 stable_time
+= HUB_DEBOUNCE_STEP
;
4172 if (stable_time
>= HUB_DEBOUNCE_STABLE
)
4176 connection
= portstatus
& USB_PORT_STAT_CONNECTION
;
4179 if (portchange
& USB_PORT_STAT_C_CONNECTION
) {
4180 usb_clear_port_feature(hub
->hdev
, port1
,
4181 USB_PORT_FEAT_C_CONNECTION
);
4184 if (total_time
>= HUB_DEBOUNCE_TIMEOUT
)
4186 msleep(HUB_DEBOUNCE_STEP
);
4189 dev_dbg(&port_dev
->dev
, "debounce total %dms stable %dms status 0x%x\n",
4190 total_time
, stable_time
, portstatus
);
4192 if (stable_time
< HUB_DEBOUNCE_STABLE
)
4197 void usb_ep0_reinit(struct usb_device
*udev
)
4199 usb_disable_endpoint(udev
, 0 + USB_DIR_IN
, true);
4200 usb_disable_endpoint(udev
, 0 + USB_DIR_OUT
, true);
4201 usb_enable_endpoint(udev
, &udev
->ep0
, true);
4203 EXPORT_SYMBOL_GPL(usb_ep0_reinit
);
4205 #define usb_sndaddr0pipe() (PIPE_CONTROL << 30)
4206 #define usb_rcvaddr0pipe() ((PIPE_CONTROL << 30) | USB_DIR_IN)
4208 static int hub_set_address(struct usb_device
*udev
, int devnum
)
4211 struct usb_hcd
*hcd
= bus_to_hcd(udev
->bus
);
4214 * The host controller will choose the device address,
4215 * instead of the core having chosen it earlier
4217 if (!hcd
->driver
->address_device
&& devnum
<= 1)
4219 if (udev
->state
== USB_STATE_ADDRESS
)
4221 if (udev
->state
!= USB_STATE_DEFAULT
)
4223 if (hcd
->driver
->address_device
)
4224 retval
= hcd
->driver
->address_device(hcd
, udev
);
4226 retval
= usb_control_msg(udev
, usb_sndaddr0pipe(),
4227 USB_REQ_SET_ADDRESS
, 0, devnum
, 0,
4228 NULL
, 0, USB_CTRL_SET_TIMEOUT
);
4230 update_devnum(udev
, devnum
);
4231 /* Device now using proper address. */
4232 usb_set_device_state(udev
, USB_STATE_ADDRESS
);
4233 usb_ep0_reinit(udev
);
4239 * There are reports of USB 3.0 devices that say they support USB 2.0 Link PM
4240 * when they're plugged into a USB 2.0 port, but they don't work when LPM is
4243 * Only enable USB 2.0 Link PM if the port is internal (hardwired), or the
4244 * device says it supports the new USB 2.0 Link PM errata by setting the BESL
4245 * support bit in the BOS descriptor.
4247 static void hub_set_initial_usb2_lpm_policy(struct usb_device
*udev
)
4249 struct usb_hub
*hub
= usb_hub_to_struct_hub(udev
->parent
);
4250 int connect_type
= USB_PORT_CONNECT_TYPE_UNKNOWN
;
4252 if (!udev
->usb2_hw_lpm_capable
|| !udev
->bos
)
4256 connect_type
= hub
->ports
[udev
->portnum
- 1]->connect_type
;
4258 if ((udev
->bos
->ext_cap
->bmAttributes
& cpu_to_le32(USB_BESL_SUPPORT
)) ||
4259 connect_type
== USB_PORT_CONNECT_TYPE_HARD_WIRED
) {
4260 udev
->usb2_hw_lpm_allowed
= 1;
4261 usb_set_usb2_hardware_lpm(udev
, 1);
4265 static int hub_enable_device(struct usb_device
*udev
)
4267 struct usb_hcd
*hcd
= bus_to_hcd(udev
->bus
);
4269 if (!hcd
->driver
->enable_device
)
4271 if (udev
->state
== USB_STATE_ADDRESS
)
4273 if (udev
->state
!= USB_STATE_DEFAULT
)
4276 return hcd
->driver
->enable_device(hcd
, udev
);
4279 /* Reset device, (re)assign address, get device descriptor.
4280 * Device connection must be stable, no more debouncing needed.
4281 * Returns device in USB_STATE_ADDRESS, except on error.
4283 * If this is called for an already-existing device (as part of
4284 * usb_reset_and_verify_device), the caller must own the device lock and
4285 * the port lock. For a newly detected device that is not accessible
4286 * through any global pointers, it's not necessary to lock the device,
4287 * but it is still necessary to lock the port.
4290 hub_port_init(struct usb_hub
*hub
, struct usb_device
*udev
, int port1
,
4293 struct usb_device
*hdev
= hub
->hdev
;
4294 struct usb_hcd
*hcd
= bus_to_hcd(hdev
->bus
);
4295 int retries
, operations
, retval
, i
;
4296 unsigned delay
= HUB_SHORT_RESET_TIME
;
4297 enum usb_device_speed oldspeed
= udev
->speed
;
4299 int devnum
= udev
->devnum
;
4301 /* root hub ports have a slightly longer reset period
4302 * (from USB 2.0 spec, section 7.1.7.5)
4304 if (!hdev
->parent
) {
4305 delay
= HUB_ROOT_RESET_TIME
;
4306 if (port1
== hdev
->bus
->otg_port
)
4307 hdev
->bus
->b_hnp_enable
= 0;
4310 /* Some low speed devices have problems with the quick delay, so */
4311 /* be a bit pessimistic with those devices. RHbug #23670 */
4312 if (oldspeed
== USB_SPEED_LOW
)
4313 delay
= HUB_LONG_RESET_TIME
;
4315 mutex_lock(hcd
->address0_mutex
);
4317 /* Reset the device; full speed may morph to high speed */
4318 /* FIXME a USB 2.0 device may morph into SuperSpeed on reset. */
4319 retval
= hub_port_reset(hub
, port1
, udev
, delay
, false);
4320 if (retval
< 0) /* error or disconnect */
4322 /* success, speed is known */
4326 /* Don't allow speed changes at reset, except usb 3.0 to faster */
4327 if (oldspeed
!= USB_SPEED_UNKNOWN
&& oldspeed
!= udev
->speed
&&
4328 !(oldspeed
== USB_SPEED_SUPER
&& udev
->speed
> oldspeed
)) {
4329 dev_dbg(&udev
->dev
, "device reset changed speed!\n");
4332 oldspeed
= udev
->speed
;
4334 /* USB 2.0 section 5.5.3 talks about ep0 maxpacket ...
4335 * it's fixed size except for full speed devices.
4336 * For Wireless USB devices, ep0 max packet is always 512 (tho
4337 * reported as 0xff in the device descriptor). WUSB1.0[4.8.1].
4339 switch (udev
->speed
) {
4340 case USB_SPEED_SUPER_PLUS
:
4341 case USB_SPEED_SUPER
:
4342 case USB_SPEED_WIRELESS
: /* fixed at 512 */
4343 udev
->ep0
.desc
.wMaxPacketSize
= cpu_to_le16(512);
4345 case USB_SPEED_HIGH
: /* fixed at 64 */
4346 udev
->ep0
.desc
.wMaxPacketSize
= cpu_to_le16(64);
4348 case USB_SPEED_FULL
: /* 8, 16, 32, or 64 */
4349 /* to determine the ep0 maxpacket size, try to read
4350 * the device descriptor to get bMaxPacketSize0 and
4351 * then correct our initial guess.
4353 udev
->ep0
.desc
.wMaxPacketSize
= cpu_to_le16(64);
4355 case USB_SPEED_LOW
: /* fixed at 8 */
4356 udev
->ep0
.desc
.wMaxPacketSize
= cpu_to_le16(8);
4362 if (udev
->speed
== USB_SPEED_WIRELESS
)
4363 speed
= "variable speed Wireless";
4365 speed
= usb_speed_string(udev
->speed
);
4367 if (udev
->speed
< USB_SPEED_SUPER
)
4368 dev_info(&udev
->dev
,
4369 "%s %s USB device number %d using %s\n",
4370 (udev
->config
) ? "reset" : "new", speed
,
4371 devnum
, udev
->bus
->controller
->driver
->name
);
4373 /* Set up TT records, if needed */
4375 udev
->tt
= hdev
->tt
;
4376 udev
->ttport
= hdev
->ttport
;
4377 } else if (udev
->speed
!= USB_SPEED_HIGH
4378 && hdev
->speed
== USB_SPEED_HIGH
) {
4380 dev_err(&udev
->dev
, "parent hub has no TT\n");
4384 udev
->tt
= &hub
->tt
;
4385 udev
->ttport
= port1
;
4388 /* Why interleave GET_DESCRIPTOR and SET_ADDRESS this way?
4389 * Because device hardware and firmware is sometimes buggy in
4390 * this area, and this is how Linux has done it for ages.
4391 * Change it cautiously.
4393 * NOTE: If use_new_scheme() is true we will start by issuing
4394 * a 64-byte GET_DESCRIPTOR request. This is what Windows does,
4395 * so it may help with some non-standards-compliant devices.
4396 * Otherwise we start with SET_ADDRESS and then try to read the
4397 * first 8 bytes of the device descriptor to get the ep0 maxpacket
4400 for (retries
= 0; retries
< GET_DESCRIPTOR_TRIES
; (++retries
, msleep(100))) {
4401 bool did_new_scheme
= false;
4403 if (use_new_scheme(udev
, retry_counter
)) {
4404 struct usb_device_descriptor
*buf
;
4407 did_new_scheme
= true;
4408 retval
= hub_enable_device(udev
);
4411 "hub failed to enable device, error %d\n",
4416 #define GET_DESCRIPTOR_BUFSIZE 64
4417 buf
= kmalloc(GET_DESCRIPTOR_BUFSIZE
, GFP_NOIO
);
4423 /* Retry on all errors; some devices are flakey.
4424 * 255 is for WUSB devices, we actually need to use
4425 * 512 (WUSB1.0[4.8.1]).
4427 for (operations
= 0; operations
< 3; ++operations
) {
4428 buf
->bMaxPacketSize0
= 0;
4429 r
= usb_control_msg(udev
, usb_rcvaddr0pipe(),
4430 USB_REQ_GET_DESCRIPTOR
, USB_DIR_IN
,
4431 USB_DT_DEVICE
<< 8, 0,
4432 buf
, GET_DESCRIPTOR_BUFSIZE
,
4433 initial_descriptor_timeout
);
4434 switch (buf
->bMaxPacketSize0
) {
4435 case 8: case 16: case 32: case 64: case 255:
4436 if (buf
->bDescriptorType
==
4448 * Some devices time out if they are powered on
4449 * when already connected. They need a second
4450 * reset. But only on the first attempt,
4451 * lest we get into a time out/reset loop
4453 if (r
== 0 || (r
== -ETIMEDOUT
&&
4455 udev
->speed
> USB_SPEED_FULL
))
4458 udev
->descriptor
.bMaxPacketSize0
=
4459 buf
->bMaxPacketSize0
;
4462 retval
= hub_port_reset(hub
, port1
, udev
, delay
, false);
4463 if (retval
< 0) /* error or disconnect */
4465 if (oldspeed
!= udev
->speed
) {
4467 "device reset changed speed!\n");
4473 dev_err(&udev
->dev
, "device descriptor read/64, error %d\n",
4478 #undef GET_DESCRIPTOR_BUFSIZE
4482 * If device is WUSB, we already assigned an
4483 * unauthorized address in the Connect Ack sequence;
4484 * authorization will assign the final address.
4486 if (udev
->wusb
== 0) {
4487 for (operations
= 0; operations
< SET_ADDRESS_TRIES
; ++operations
) {
4488 retval
= hub_set_address(udev
, devnum
);
4494 if (retval
!= -ENODEV
)
4495 dev_err(&udev
->dev
, "device not accepting address %d, error %d\n",
4499 if (udev
->speed
>= USB_SPEED_SUPER
) {
4500 devnum
= udev
->devnum
;
4501 dev_info(&udev
->dev
,
4502 "%s SuperSpeed%s USB device number %d using %s\n",
4503 (udev
->config
) ? "reset" : "new",
4504 (udev
->speed
== USB_SPEED_SUPER_PLUS
) ? "Plus" : "",
4505 devnum
, udev
->bus
->controller
->driver
->name
);
4508 /* cope with hardware quirkiness:
4509 * - let SET_ADDRESS settle, some device hardware wants it
4510 * - read ep0 maxpacket even for high and low speed,
4513 /* use_new_scheme() checks the speed which may have
4514 * changed since the initial look so we cache the result
4521 retval
= usb_get_device_descriptor(udev
, 8);
4523 if (retval
!= -ENODEV
)
4525 "device descriptor read/8, error %d\n",
4538 * Some superspeed devices have finished the link training process
4539 * and attached to a superspeed hub port, but the device descriptor
4540 * got from those devices show they aren't superspeed devices. Warm
4541 * reset the port attached by the devices can fix them.
4543 if ((udev
->speed
>= USB_SPEED_SUPER
) &&
4544 (le16_to_cpu(udev
->descriptor
.bcdUSB
) < 0x0300)) {
4545 dev_err(&udev
->dev
, "got a wrong device descriptor, "
4546 "warm reset device\n");
4547 hub_port_reset(hub
, port1
, udev
,
4548 HUB_BH_RESET_TIME
, true);
4553 if (udev
->descriptor
.bMaxPacketSize0
== 0xff ||
4554 udev
->speed
>= USB_SPEED_SUPER
)
4557 i
= udev
->descriptor
.bMaxPacketSize0
;
4558 if (usb_endpoint_maxp(&udev
->ep0
.desc
) != i
) {
4559 if (udev
->speed
== USB_SPEED_LOW
||
4560 !(i
== 8 || i
== 16 || i
== 32 || i
== 64)) {
4561 dev_err(&udev
->dev
, "Invalid ep0 maxpacket: %d\n", i
);
4565 if (udev
->speed
== USB_SPEED_FULL
)
4566 dev_dbg(&udev
->dev
, "ep0 maxpacket = %d\n", i
);
4568 dev_warn(&udev
->dev
, "Using ep0 maxpacket: %d\n", i
);
4569 udev
->ep0
.desc
.wMaxPacketSize
= cpu_to_le16(i
);
4570 usb_ep0_reinit(udev
);
4573 retval
= usb_get_device_descriptor(udev
, USB_DT_DEVICE_SIZE
);
4574 if (retval
< (signed)sizeof(udev
->descriptor
)) {
4575 if (retval
!= -ENODEV
)
4576 dev_err(&udev
->dev
, "device descriptor read/all, error %d\n",
4583 usb_detect_quirks(udev
);
4585 if (udev
->wusb
== 0 && le16_to_cpu(udev
->descriptor
.bcdUSB
) >= 0x0201) {
4586 retval
= usb_get_bos_descriptor(udev
);
4588 udev
->lpm_capable
= usb_device_supports_lpm(udev
);
4589 usb_set_lpm_parameters(udev
);
4594 /* notify HCD that we have a device connected and addressed */
4595 if (hcd
->driver
->update_device
)
4596 hcd
->driver
->update_device(hcd
, udev
);
4597 hub_set_initial_usb2_lpm_policy(udev
);
4600 hub_port_disable(hub
, port1
, 0);
4601 update_devnum(udev
, devnum
); /* for disconnect processing */
4603 mutex_unlock(hcd
->address0_mutex
);
4608 check_highspeed(struct usb_hub
*hub
, struct usb_device
*udev
, int port1
)
4610 struct usb_qualifier_descriptor
*qual
;
4613 if (udev
->quirks
& USB_QUIRK_DEVICE_QUALIFIER
)
4616 qual
= kmalloc(sizeof *qual
, GFP_KERNEL
);
4620 status
= usb_get_descriptor(udev
, USB_DT_DEVICE_QUALIFIER
, 0,
4621 qual
, sizeof *qual
);
4622 if (status
== sizeof *qual
) {
4623 dev_info(&udev
->dev
, "not running at top speed; "
4624 "connect to a high speed hub\n");
4625 /* hub LEDs are probably harder to miss than syslog */
4626 if (hub
->has_indicators
) {
4627 hub
->indicator
[port1
-1] = INDICATOR_GREEN_BLINK
;
4628 queue_delayed_work(system_power_efficient_wq
,
4636 hub_power_remaining(struct usb_hub
*hub
)
4638 struct usb_device
*hdev
= hub
->hdev
;
4642 if (!hub
->limited_power
)
4645 remaining
= hdev
->bus_mA
- hub
->descriptor
->bHubContrCurrent
;
4646 for (port1
= 1; port1
<= hdev
->maxchild
; ++port1
) {
4647 struct usb_port
*port_dev
= hub
->ports
[port1
- 1];
4648 struct usb_device
*udev
= port_dev
->child
;
4654 if (hub_is_superspeed(udev
))
4660 * Unconfigured devices may not use more than one unit load,
4661 * or 8mA for OTG ports
4663 if (udev
->actconfig
)
4664 delta
= usb_get_max_power(udev
, udev
->actconfig
);
4665 else if (port1
!= udev
->bus
->otg_port
|| hdev
->parent
)
4669 if (delta
> hub
->mA_per_port
)
4670 dev_warn(&port_dev
->dev
, "%dmA is over %umA budget!\n",
4671 delta
, hub
->mA_per_port
);
4674 if (remaining
< 0) {
4675 dev_warn(hub
->intfdev
, "%dmA over power budget!\n",
4682 static void hub_port_connect(struct usb_hub
*hub
, int port1
, u16 portstatus
,
4685 int status
= -ENODEV
;
4688 struct usb_device
*hdev
= hub
->hdev
;
4689 struct usb_hcd
*hcd
= bus_to_hcd(hdev
->bus
);
4690 struct usb_port
*port_dev
= hub
->ports
[port1
- 1];
4691 struct usb_device
*udev
= port_dev
->child
;
4692 static int unreliable_port
= -1;
4694 /* Disconnect any existing devices under this port */
4696 if (hcd
->usb_phy
&& !hdev
->parent
)
4697 usb_phy_notify_disconnect(hcd
->usb_phy
, udev
->speed
);
4698 usb_disconnect(&port_dev
->child
);
4701 /* We can forget about a "removed" device when there's a physical
4702 * disconnect or the connect status changes.
4704 if (!(portstatus
& USB_PORT_STAT_CONNECTION
) ||
4705 (portchange
& USB_PORT_STAT_C_CONNECTION
))
4706 clear_bit(port1
, hub
->removed_bits
);
4708 if (portchange
& (USB_PORT_STAT_C_CONNECTION
|
4709 USB_PORT_STAT_C_ENABLE
)) {
4710 status
= hub_port_debounce_be_stable(hub
, port1
);
4712 if (status
!= -ENODEV
&&
4713 port1
!= unreliable_port
&&
4715 dev_err(&port_dev
->dev
, "connect-debounce failed\n");
4716 portstatus
&= ~USB_PORT_STAT_CONNECTION
;
4717 unreliable_port
= port1
;
4719 portstatus
= status
;
4723 /* Return now if debouncing failed or nothing is connected or
4724 * the device was "removed".
4726 if (!(portstatus
& USB_PORT_STAT_CONNECTION
) ||
4727 test_bit(port1
, hub
->removed_bits
)) {
4730 * maybe switch power back on (e.g. root hub was reset)
4731 * but only if the port isn't owned by someone else.
4733 if (hub_is_port_power_switchable(hub
)
4734 && !port_is_power_on(hub
, portstatus
)
4735 && !port_dev
->port_owner
)
4736 set_port_feature(hdev
, port1
, USB_PORT_FEAT_POWER
);
4738 if (portstatus
& USB_PORT_STAT_ENABLE
)
4742 if (hub_is_superspeed(hub
->hdev
))
4748 for (i
= 0; i
< SET_CONFIG_TRIES
; i
++) {
4750 /* reallocate for each attempt, since references
4751 * to the previous one can escape in various ways
4753 udev
= usb_alloc_dev(hdev
, hdev
->bus
, port1
);
4755 dev_err(&port_dev
->dev
,
4756 "couldn't allocate usb_device\n");
4760 usb_set_device_state(udev
, USB_STATE_POWERED
);
4761 udev
->bus_mA
= hub
->mA_per_port
;
4762 udev
->level
= hdev
->level
+ 1;
4763 udev
->wusb
= hub_is_wusb(hub
);
4765 /* Devices connected to SuperSpeed hubs are USB 3.0 or later */
4766 if (hub_is_superspeed(hub
->hdev
))
4767 udev
->speed
= USB_SPEED_SUPER
;
4769 udev
->speed
= USB_SPEED_UNKNOWN
;
4771 choose_devnum(udev
);
4772 if (udev
->devnum
<= 0) {
4773 status
= -ENOTCONN
; /* Don't retry */
4777 /* reset (non-USB 3.0 devices) and get descriptor */
4778 usb_lock_port(port_dev
);
4779 status
= hub_port_init(hub
, udev
, port1
, i
);
4780 usb_unlock_port(port_dev
);
4784 if (udev
->quirks
& USB_QUIRK_DELAY_INIT
)
4787 /* consecutive bus-powered hubs aren't reliable; they can
4788 * violate the voltage drop budget. if the new child has
4789 * a "powered" LED, users should notice we didn't enable it
4790 * (without reading syslog), even without per-port LEDs
4793 if (udev
->descriptor
.bDeviceClass
== USB_CLASS_HUB
4794 && udev
->bus_mA
<= unit_load
) {
4797 status
= usb_get_status(udev
, USB_RECIP_DEVICE
, 0,
4800 dev_dbg(&udev
->dev
, "get status %d ?\n", status
);
4803 if ((devstat
& (1 << USB_DEVICE_SELF_POWERED
)) == 0) {
4805 "can't connect bus-powered hub "
4807 if (hub
->has_indicators
) {
4808 hub
->indicator
[port1
-1] =
4809 INDICATOR_AMBER_BLINK
;
4811 system_power_efficient_wq
,
4814 status
= -ENOTCONN
; /* Don't retry */
4819 /* check for devices running slower than they could */
4820 if (le16_to_cpu(udev
->descriptor
.bcdUSB
) >= 0x0200
4821 && udev
->speed
== USB_SPEED_FULL
4822 && highspeed_hubs
!= 0)
4823 check_highspeed(hub
, udev
, port1
);
4825 /* Store the parent's children[] pointer. At this point
4826 * udev becomes globally accessible, although presumably
4827 * no one will look at it until hdev is unlocked.
4831 mutex_lock(&usb_port_peer_mutex
);
4833 /* We mustn't add new devices if the parent hub has
4834 * been disconnected; we would race with the
4835 * recursively_mark_NOTATTACHED() routine.
4837 spin_lock_irq(&device_state_lock
);
4838 if (hdev
->state
== USB_STATE_NOTATTACHED
)
4841 port_dev
->child
= udev
;
4842 spin_unlock_irq(&device_state_lock
);
4843 mutex_unlock(&usb_port_peer_mutex
);
4845 /* Run it through the hoops (find a driver, etc) */
4847 status
= usb_new_device(udev
);
4849 mutex_lock(&usb_port_peer_mutex
);
4850 spin_lock_irq(&device_state_lock
);
4851 port_dev
->child
= NULL
;
4852 spin_unlock_irq(&device_state_lock
);
4853 mutex_unlock(&usb_port_peer_mutex
);
4855 if (hcd
->usb_phy
&& !hdev
->parent
)
4856 usb_phy_notify_connect(hcd
->usb_phy
,
4864 status
= hub_power_remaining(hub
);
4866 dev_dbg(hub
->intfdev
, "%dmA power budget left\n", status
);
4871 hub_port_disable(hub
, port1
, 1);
4873 usb_ep0_reinit(udev
);
4874 release_devnum(udev
);
4877 if ((status
== -ENOTCONN
) || (status
== -ENOTSUPP
))
4880 /* When halfway through our retry count, power-cycle the port */
4881 if (i
== (SET_CONFIG_TRIES
/ 2) - 1) {
4882 dev_info(&port_dev
->dev
, "attempt power cycle\n");
4883 usb_hub_set_port_power(hdev
, hub
, port1
, false);
4884 msleep(2 * hub_power_on_good_delay(hub
));
4885 usb_hub_set_port_power(hdev
, hub
, port1
, true);
4886 msleep(hub_power_on_good_delay(hub
));
4889 if (hub
->hdev
->parent
||
4890 !hcd
->driver
->port_handed_over
||
4891 !(hcd
->driver
->port_handed_over
)(hcd
, port1
)) {
4892 if (status
!= -ENOTCONN
&& status
!= -ENODEV
)
4893 dev_err(&port_dev
->dev
,
4894 "unable to enumerate USB device\n");
4898 hub_port_disable(hub
, port1
, 1);
4899 if (hcd
->driver
->relinquish_port
&& !hub
->hdev
->parent
) {
4900 if (status
!= -ENOTCONN
&& status
!= -ENODEV
)
4901 hcd
->driver
->relinquish_port(hcd
, port1
);
4905 /* Handle physical or logical connection change events.
4906 * This routine is called when:
4907 * a port connection-change occurs;
4908 * a port enable-change occurs (often caused by EMI);
4909 * usb_reset_and_verify_device() encounters changed descriptors (as from
4910 * a firmware download)
4911 * caller already locked the hub
4913 static void hub_port_connect_change(struct usb_hub
*hub
, int port1
,
4914 u16 portstatus
, u16 portchange
)
4915 __must_hold(&port_dev
->status_lock
)
4917 struct usb_port
*port_dev
= hub
->ports
[port1
- 1];
4918 struct usb_device
*udev
= port_dev
->child
;
4919 int status
= -ENODEV
;
4921 dev_dbg(&port_dev
->dev
, "status %04x, change %04x, %s\n", portstatus
,
4922 portchange
, portspeed(hub
, portstatus
));
4924 if (hub
->has_indicators
) {
4925 set_port_led(hub
, port1
, HUB_LED_AUTO
);
4926 hub
->indicator
[port1
-1] = INDICATOR_AUTO
;
4929 #ifdef CONFIG_USB_OTG
4930 /* during HNP, don't repeat the debounce */
4931 if (hub
->hdev
->bus
->is_b_host
)
4932 portchange
&= ~(USB_PORT_STAT_C_CONNECTION
|
4933 USB_PORT_STAT_C_ENABLE
);
4936 /* Try to resuscitate an existing device */
4937 if ((portstatus
& USB_PORT_STAT_CONNECTION
) && udev
&&
4938 udev
->state
!= USB_STATE_NOTATTACHED
) {
4939 if (portstatus
& USB_PORT_STAT_ENABLE
) {
4940 status
= 0; /* Nothing to do */
4942 } else if (udev
->state
== USB_STATE_SUSPENDED
&&
4943 udev
->persist_enabled
) {
4944 /* For a suspended device, treat this as a
4945 * remote wakeup event.
4947 usb_unlock_port(port_dev
);
4948 status
= usb_remote_wakeup(udev
);
4949 usb_lock_port(port_dev
);
4952 /* Don't resuscitate */;
4955 clear_bit(port1
, hub
->change_bits
);
4957 /* successfully revalidated the connection */
4961 usb_unlock_port(port_dev
);
4962 hub_port_connect(hub
, port1
, portstatus
, portchange
);
4963 usb_lock_port(port_dev
);
4966 static void port_event(struct usb_hub
*hub
, int port1
)
4967 __must_hold(&port_dev
->status_lock
)
4970 struct usb_port
*port_dev
= hub
->ports
[port1
- 1];
4971 struct usb_device
*udev
= port_dev
->child
;
4972 struct usb_device
*hdev
= hub
->hdev
;
4973 u16 portstatus
, portchange
;
4975 connect_change
= test_bit(port1
, hub
->change_bits
);
4976 clear_bit(port1
, hub
->event_bits
);
4977 clear_bit(port1
, hub
->wakeup_bits
);
4979 if (hub_port_status(hub
, port1
, &portstatus
, &portchange
) < 0)
4982 if (portchange
& USB_PORT_STAT_C_CONNECTION
) {
4983 usb_clear_port_feature(hdev
, port1
, USB_PORT_FEAT_C_CONNECTION
);
4987 if (portchange
& USB_PORT_STAT_C_ENABLE
) {
4988 if (!connect_change
)
4989 dev_dbg(&port_dev
->dev
, "enable change, status %08x\n",
4991 usb_clear_port_feature(hdev
, port1
, USB_PORT_FEAT_C_ENABLE
);
4994 * EM interference sometimes causes badly shielded USB devices
4995 * to be shutdown by the hub, this hack enables them again.
4996 * Works at least with mouse driver.
4998 if (!(portstatus
& USB_PORT_STAT_ENABLE
)
4999 && !connect_change
&& udev
) {
5000 dev_err(&port_dev
->dev
, "disabled by hub (EMI?), re-enabling...\n");
5005 if (portchange
& USB_PORT_STAT_C_OVERCURRENT
) {
5006 u16 status
= 0, unused
;
5008 dev_dbg(&port_dev
->dev
, "over-current change\n");
5009 usb_clear_port_feature(hdev
, port1
,
5010 USB_PORT_FEAT_C_OVER_CURRENT
);
5011 msleep(100); /* Cool down */
5012 hub_power_on(hub
, true);
5013 hub_port_status(hub
, port1
, &status
, &unused
);
5014 if (status
& USB_PORT_STAT_OVERCURRENT
)
5015 dev_err(&port_dev
->dev
, "over-current condition\n");
5018 if (portchange
& USB_PORT_STAT_C_RESET
) {
5019 dev_dbg(&port_dev
->dev
, "reset change\n");
5020 usb_clear_port_feature(hdev
, port1
, USB_PORT_FEAT_C_RESET
);
5022 if ((portchange
& USB_PORT_STAT_C_BH_RESET
)
5023 && hub_is_superspeed(hdev
)) {
5024 dev_dbg(&port_dev
->dev
, "warm reset change\n");
5025 usb_clear_port_feature(hdev
, port1
,
5026 USB_PORT_FEAT_C_BH_PORT_RESET
);
5028 if (portchange
& USB_PORT_STAT_C_LINK_STATE
) {
5029 dev_dbg(&port_dev
->dev
, "link state change\n");
5030 usb_clear_port_feature(hdev
, port1
,
5031 USB_PORT_FEAT_C_PORT_LINK_STATE
);
5033 if (portchange
& USB_PORT_STAT_C_CONFIG_ERROR
) {
5034 dev_warn(&port_dev
->dev
, "config error\n");
5035 usb_clear_port_feature(hdev
, port1
,
5036 USB_PORT_FEAT_C_PORT_CONFIG_ERROR
);
5039 /* skip port actions that require the port to be powered on */
5040 if (!pm_runtime_active(&port_dev
->dev
))
5043 if (hub_handle_remote_wakeup(hub
, port1
, portstatus
, portchange
))
5047 * Warm reset a USB3 protocol port if it's in
5048 * SS.Inactive state.
5050 if (hub_port_warm_reset_required(hub
, port1
, portstatus
)) {
5051 dev_dbg(&port_dev
->dev
, "do warm reset\n");
5052 if (!udev
|| !(portstatus
& USB_PORT_STAT_CONNECTION
)
5053 || udev
->state
== USB_STATE_NOTATTACHED
) {
5054 if (hub_port_reset(hub
, port1
, NULL
,
5055 HUB_BH_RESET_TIME
, true) < 0)
5056 hub_port_disable(hub
, port1
, 1);
5058 usb_unlock_port(port_dev
);
5059 usb_lock_device(udev
);
5060 usb_reset_device(udev
);
5061 usb_unlock_device(udev
);
5062 usb_lock_port(port_dev
);
5068 hub_port_connect_change(hub
, port1
, portstatus
, portchange
);
5071 static void hub_event(struct work_struct
*work
)
5073 struct usb_device
*hdev
;
5074 struct usb_interface
*intf
;
5075 struct usb_hub
*hub
;
5076 struct device
*hub_dev
;
5081 hub
= container_of(work
, struct usb_hub
, events
);
5083 hub_dev
= hub
->intfdev
;
5084 intf
= to_usb_interface(hub_dev
);
5086 dev_dbg(hub_dev
, "state %d ports %d chg %04x evt %04x\n",
5087 hdev
->state
, hdev
->maxchild
,
5088 /* NOTE: expects max 15 ports... */
5089 (u16
) hub
->change_bits
[0],
5090 (u16
) hub
->event_bits
[0]);
5092 /* Lock the device, then check to see if we were
5093 * disconnected while waiting for the lock to succeed. */
5094 usb_lock_device(hdev
);
5095 if (unlikely(hub
->disconnected
))
5098 /* If the hub has died, clean up after it */
5099 if (hdev
->state
== USB_STATE_NOTATTACHED
) {
5100 hub
->error
= -ENODEV
;
5101 hub_quiesce(hub
, HUB_DISCONNECT
);
5106 ret
= usb_autopm_get_interface(intf
);
5108 dev_dbg(hub_dev
, "Can't autoresume: %d\n", ret
);
5112 /* If this is an inactive hub, do nothing */
5117 dev_dbg(hub_dev
, "resetting for error %d\n", hub
->error
);
5119 ret
= usb_reset_device(hdev
);
5121 dev_dbg(hub_dev
, "error resetting hub: %d\n", ret
);
5129 /* deal with port status changes */
5130 for (i
= 1; i
<= hdev
->maxchild
; i
++) {
5131 struct usb_port
*port_dev
= hub
->ports
[i
- 1];
5133 if (test_bit(i
, hub
->event_bits
)
5134 || test_bit(i
, hub
->change_bits
)
5135 || test_bit(i
, hub
->wakeup_bits
)) {
5137 * The get_noresume and barrier ensure that if
5138 * the port was in the process of resuming, we
5139 * flush that work and keep the port active for
5140 * the duration of the port_event(). However,
5141 * if the port is runtime pm suspended
5142 * (powered-off), we leave it in that state, run
5143 * an abbreviated port_event(), and move on.
5145 pm_runtime_get_noresume(&port_dev
->dev
);
5146 pm_runtime_barrier(&port_dev
->dev
);
5147 usb_lock_port(port_dev
);
5149 usb_unlock_port(port_dev
);
5150 pm_runtime_put_sync(&port_dev
->dev
);
5154 /* deal with hub status changes */
5155 if (test_and_clear_bit(0, hub
->event_bits
) == 0)
5157 else if (hub_hub_status(hub
, &hubstatus
, &hubchange
) < 0)
5158 dev_err(hub_dev
, "get_hub_status failed\n");
5160 if (hubchange
& HUB_CHANGE_LOCAL_POWER
) {
5161 dev_dbg(hub_dev
, "power change\n");
5162 clear_hub_feature(hdev
, C_HUB_LOCAL_POWER
);
5163 if (hubstatus
& HUB_STATUS_LOCAL_POWER
)
5164 /* FIXME: Is this always true? */
5165 hub
->limited_power
= 1;
5167 hub
->limited_power
= 0;
5169 if (hubchange
& HUB_CHANGE_OVERCURRENT
) {
5173 dev_dbg(hub_dev
, "over-current change\n");
5174 clear_hub_feature(hdev
, C_HUB_OVER_CURRENT
);
5175 msleep(500); /* Cool down */
5176 hub_power_on(hub
, true);
5177 hub_hub_status(hub
, &status
, &unused
);
5178 if (status
& HUB_STATUS_OVERCURRENT
)
5179 dev_err(hub_dev
, "over-current condition\n");
5184 /* Balance the usb_autopm_get_interface() above */
5185 usb_autopm_put_interface_no_suspend(intf
);
5187 usb_unlock_device(hdev
);
5189 /* Balance the stuff in kick_hub_wq() and allow autosuspend */
5190 usb_autopm_put_interface(intf
);
5191 kref_put(&hub
->kref
, hub_release
);
5194 static const struct usb_device_id hub_id_table
[] = {
5195 { .match_flags
= USB_DEVICE_ID_MATCH_VENDOR
5196 | USB_DEVICE_ID_MATCH_INT_CLASS
,
5197 .idVendor
= USB_VENDOR_GENESYS_LOGIC
,
5198 .bInterfaceClass
= USB_CLASS_HUB
,
5199 .driver_info
= HUB_QUIRK_CHECK_PORT_AUTOSUSPEND
},
5200 { .match_flags
= USB_DEVICE_ID_MATCH_DEV_CLASS
,
5201 .bDeviceClass
= USB_CLASS_HUB
},
5202 { .match_flags
= USB_DEVICE_ID_MATCH_INT_CLASS
,
5203 .bInterfaceClass
= USB_CLASS_HUB
},
5204 { } /* Terminating entry */
5207 MODULE_DEVICE_TABLE(usb
, hub_id_table
);
5209 static struct usb_driver hub_driver
= {
5212 .disconnect
= hub_disconnect
,
5213 .suspend
= hub_suspend
,
5214 .resume
= hub_resume
,
5215 .reset_resume
= hub_reset_resume
,
5216 .pre_reset
= hub_pre_reset
,
5217 .post_reset
= hub_post_reset
,
5218 .unlocked_ioctl
= hub_ioctl
,
5219 .id_table
= hub_id_table
,
5220 .supports_autosuspend
= 1,
5223 int usb_hub_init(void)
5225 if (usb_register(&hub_driver
) < 0) {
5226 printk(KERN_ERR
"%s: can't register hub driver\n",
5232 * The workqueue needs to be freezable to avoid interfering with
5233 * USB-PERSIST port handover. Otherwise it might see that a full-speed
5234 * device was gone before the EHCI controller had handed its port
5235 * over to the companion full-speed controller.
5237 hub_wq
= alloc_workqueue("usb_hub_wq", WQ_FREEZABLE
, 0);
5241 /* Fall through if kernel_thread failed */
5242 usb_deregister(&hub_driver
);
5243 pr_err("%s: can't allocate workqueue for usb hub\n", usbcore_name
);
5248 void usb_hub_cleanup(void)
5250 destroy_workqueue(hub_wq
);
5253 * Hub resources are freed for us by usb_deregister. It calls
5254 * usb_driver_purge on every device which in turn calls that
5255 * devices disconnect function if it is using this driver.
5256 * The hub_disconnect function takes care of releasing the
5257 * individual hub resources. -greg
5259 usb_deregister(&hub_driver
);
5260 } /* usb_hub_cleanup() */
5262 static int descriptors_changed(struct usb_device
*udev
,
5263 struct usb_device_descriptor
*old_device_descriptor
,
5264 struct usb_host_bos
*old_bos
)
5268 unsigned serial_len
= 0;
5270 unsigned old_length
;
5274 if (memcmp(&udev
->descriptor
, old_device_descriptor
,
5275 sizeof(*old_device_descriptor
)) != 0)
5278 if ((old_bos
&& !udev
->bos
) || (!old_bos
&& udev
->bos
))
5281 len
= le16_to_cpu(udev
->bos
->desc
->wTotalLength
);
5282 if (len
!= le16_to_cpu(old_bos
->desc
->wTotalLength
))
5284 if (memcmp(udev
->bos
->desc
, old_bos
->desc
, len
))
5288 /* Since the idVendor, idProduct, and bcdDevice values in the
5289 * device descriptor haven't changed, we will assume the
5290 * Manufacturer and Product strings haven't changed either.
5291 * But the SerialNumber string could be different (e.g., a
5292 * different flash card of the same brand).
5295 serial_len
= strlen(udev
->serial
) + 1;
5298 for (index
= 0; index
< udev
->descriptor
.bNumConfigurations
; index
++) {
5299 old_length
= le16_to_cpu(udev
->config
[index
].desc
.wTotalLength
);
5300 len
= max(len
, old_length
);
5303 buf
= kmalloc(len
, GFP_NOIO
);
5305 dev_err(&udev
->dev
, "no mem to re-read configs after reset\n");
5306 /* assume the worst */
5309 for (index
= 0; index
< udev
->descriptor
.bNumConfigurations
; index
++) {
5310 old_length
= le16_to_cpu(udev
->config
[index
].desc
.wTotalLength
);
5311 length
= usb_get_descriptor(udev
, USB_DT_CONFIG
, index
, buf
,
5313 if (length
!= old_length
) {
5314 dev_dbg(&udev
->dev
, "config index %d, error %d\n",
5319 if (memcmp(buf
, udev
->rawdescriptors
[index
], old_length
)
5321 dev_dbg(&udev
->dev
, "config index %d changed (#%d)\n",
5323 ((struct usb_config_descriptor
*) buf
)->
5324 bConfigurationValue
);
5330 if (!changed
&& serial_len
) {
5331 length
= usb_string(udev
, udev
->descriptor
.iSerialNumber
,
5333 if (length
+ 1 != serial_len
) {
5334 dev_dbg(&udev
->dev
, "serial string error %d\n",
5337 } else if (memcmp(buf
, udev
->serial
, length
) != 0) {
5338 dev_dbg(&udev
->dev
, "serial string changed\n");
5348 * usb_reset_and_verify_device - perform a USB port reset to reinitialize a device
5349 * @udev: device to reset (not in SUSPENDED or NOTATTACHED state)
5351 * WARNING - don't use this routine to reset a composite device
5352 * (one with multiple interfaces owned by separate drivers)!
5353 * Use usb_reset_device() instead.
5355 * Do a port reset, reassign the device's address, and establish its
5356 * former operating configuration. If the reset fails, or the device's
5357 * descriptors change from their values before the reset, or the original
5358 * configuration and altsettings cannot be restored, a flag will be set
5359 * telling hub_wq to pretend the device has been disconnected and then
5360 * re-connected. All drivers will be unbound, and the device will be
5361 * re-enumerated and probed all over again.
5363 * Return: 0 if the reset succeeded, -ENODEV if the device has been
5364 * flagged for logical disconnection, or some other negative error code
5365 * if the reset wasn't even attempted.
5368 * The caller must own the device lock and the port lock, the latter is
5369 * taken by usb_reset_device(). For example, it's safe to use
5370 * usb_reset_device() from a driver probe() routine after downloading
5371 * new firmware. For calls that might not occur during probe(), drivers
5372 * should lock the device using usb_lock_device_for_reset().
5374 * Locking exception: This routine may also be called from within an
5375 * autoresume handler. Such usage won't conflict with other tasks
5376 * holding the device lock because these tasks should always call
5377 * usb_autopm_resume_device(), thereby preventing any unwanted
5378 * autoresume. The autoresume handler is expected to have already
5379 * acquired the port lock before calling this routine.
5381 static int usb_reset_and_verify_device(struct usb_device
*udev
)
5383 struct usb_device
*parent_hdev
= udev
->parent
;
5384 struct usb_hub
*parent_hub
;
5385 struct usb_hcd
*hcd
= bus_to_hcd(udev
->bus
);
5386 struct usb_device_descriptor descriptor
= udev
->descriptor
;
5387 struct usb_host_bos
*bos
;
5389 int port1
= udev
->portnum
;
5391 if (udev
->state
== USB_STATE_NOTATTACHED
||
5392 udev
->state
== USB_STATE_SUSPENDED
) {
5393 dev_dbg(&udev
->dev
, "device reset not allowed in state %d\n",
5401 parent_hub
= usb_hub_to_struct_hub(parent_hdev
);
5403 /* Disable USB2 hardware LPM.
5404 * It will be re-enabled by the enumeration process.
5406 if (udev
->usb2_hw_lpm_enabled
== 1)
5407 usb_set_usb2_hardware_lpm(udev
, 0);
5409 /* Disable LPM and LTM while we reset the device and reinstall the alt
5410 * settings. Device-initiated LPM settings, and system exit latency
5411 * settings are cleared when the device is reset, so we have to set
5414 ret
= usb_unlocked_disable_lpm(udev
);
5416 dev_err(&udev
->dev
, "%s Failed to disable LPM\n.", __func__
);
5417 goto re_enumerate_no_bos
;
5419 ret
= usb_disable_ltm(udev
);
5421 dev_err(&udev
->dev
, "%s Failed to disable LTM\n.",
5423 goto re_enumerate_no_bos
;
5429 for (i
= 0; i
< SET_CONFIG_TRIES
; ++i
) {
5431 /* ep0 maxpacket size may change; let the HCD know about it.
5432 * Other endpoints will be handled by re-enumeration. */
5433 usb_ep0_reinit(udev
);
5434 ret
= hub_port_init(parent_hub
, udev
, port1
, i
);
5435 if (ret
>= 0 || ret
== -ENOTCONN
|| ret
== -ENODEV
)
5442 /* Device might have changed firmware (DFU or similar) */
5443 if (descriptors_changed(udev
, &descriptor
, bos
)) {
5444 dev_info(&udev
->dev
, "device firmware changed\n");
5445 udev
->descriptor
= descriptor
; /* for disconnect() calls */
5449 /* Restore the device's previous configuration */
5450 if (!udev
->actconfig
)
5453 mutex_lock(hcd
->bandwidth_mutex
);
5454 ret
= usb_hcd_alloc_bandwidth(udev
, udev
->actconfig
, NULL
, NULL
);
5456 dev_warn(&udev
->dev
,
5457 "Busted HC? Not enough HCD resources for "
5458 "old configuration.\n");
5459 mutex_unlock(hcd
->bandwidth_mutex
);
5462 ret
= usb_control_msg(udev
, usb_sndctrlpipe(udev
, 0),
5463 USB_REQ_SET_CONFIGURATION
, 0,
5464 udev
->actconfig
->desc
.bConfigurationValue
, 0,
5465 NULL
, 0, USB_CTRL_SET_TIMEOUT
);
5468 "can't restore configuration #%d (error=%d)\n",
5469 udev
->actconfig
->desc
.bConfigurationValue
, ret
);
5470 mutex_unlock(hcd
->bandwidth_mutex
);
5473 mutex_unlock(hcd
->bandwidth_mutex
);
5474 usb_set_device_state(udev
, USB_STATE_CONFIGURED
);
5476 /* Put interfaces back into the same altsettings as before.
5477 * Don't bother to send the Set-Interface request for interfaces
5478 * that were already in altsetting 0; besides being unnecessary,
5479 * many devices can't handle it. Instead just reset the host-side
5482 for (i
= 0; i
< udev
->actconfig
->desc
.bNumInterfaces
; i
++) {
5483 struct usb_host_config
*config
= udev
->actconfig
;
5484 struct usb_interface
*intf
= config
->interface
[i
];
5485 struct usb_interface_descriptor
*desc
;
5487 desc
= &intf
->cur_altsetting
->desc
;
5488 if (desc
->bAlternateSetting
== 0) {
5489 usb_disable_interface(udev
, intf
, true);
5490 usb_enable_interface(udev
, intf
, true);
5493 /* Let the bandwidth allocation function know that this
5494 * device has been reset, and it will have to use
5495 * alternate setting 0 as the current alternate setting.
5497 intf
->resetting_device
= 1;
5498 ret
= usb_set_interface(udev
, desc
->bInterfaceNumber
,
5499 desc
->bAlternateSetting
);
5500 intf
->resetting_device
= 0;
5503 dev_err(&udev
->dev
, "failed to restore interface %d "
5504 "altsetting %d (error=%d)\n",
5505 desc
->bInterfaceNumber
,
5506 desc
->bAlternateSetting
,
5510 /* Resetting also frees any allocated streams */
5511 for (j
= 0; j
< intf
->cur_altsetting
->desc
.bNumEndpoints
; j
++)
5512 intf
->cur_altsetting
->endpoint
[j
].streams
= 0;
5516 /* Now that the alt settings are re-installed, enable LTM and LPM. */
5517 usb_set_usb2_hardware_lpm(udev
, 1);
5518 usb_unlocked_enable_lpm(udev
);
5519 usb_enable_ltm(udev
);
5520 usb_release_bos_descriptor(udev
);
5525 usb_release_bos_descriptor(udev
);
5527 re_enumerate_no_bos
:
5528 /* LPM state doesn't matter when we're about to destroy the device. */
5529 hub_port_logical_disconnect(parent_hub
, port1
);
5534 * usb_reset_device - warn interface drivers and perform a USB port reset
5535 * @udev: device to reset (not in SUSPENDED or NOTATTACHED state)
5537 * Warns all drivers bound to registered interfaces (using their pre_reset
5538 * method), performs the port reset, and then lets the drivers know that
5539 * the reset is over (using their post_reset method).
5541 * Return: The same as for usb_reset_and_verify_device().
5544 * The caller must own the device lock. For example, it's safe to use
5545 * this from a driver probe() routine after downloading new firmware.
5546 * For calls that might not occur during probe(), drivers should lock
5547 * the device using usb_lock_device_for_reset().
5549 * If an interface is currently being probed or disconnected, we assume
5550 * its driver knows how to handle resets. For all other interfaces,
5551 * if the driver doesn't have pre_reset and post_reset methods then
5552 * we attempt to unbind it and rebind afterward.
5554 int usb_reset_device(struct usb_device
*udev
)
5558 unsigned int noio_flag
;
5559 struct usb_port
*port_dev
;
5560 struct usb_host_config
*config
= udev
->actconfig
;
5561 struct usb_hub
*hub
= usb_hub_to_struct_hub(udev
->parent
);
5563 if (udev
->state
== USB_STATE_NOTATTACHED
||
5564 udev
->state
== USB_STATE_SUSPENDED
) {
5565 dev_dbg(&udev
->dev
, "device reset not allowed in state %d\n",
5570 if (!udev
->parent
) {
5571 /* this requires hcd-specific logic; see ohci_restart() */
5572 dev_dbg(&udev
->dev
, "%s for root hub!\n", __func__
);
5576 port_dev
= hub
->ports
[udev
->portnum
- 1];
5579 * Don't allocate memory with GFP_KERNEL in current
5580 * context to avoid possible deadlock if usb mass
5581 * storage interface or usbnet interface(iSCSI case)
5582 * is included in current configuration. The easist
5583 * approach is to do it for every device reset,
5584 * because the device 'memalloc_noio' flag may have
5585 * not been set before reseting the usb device.
5587 noio_flag
= memalloc_noio_save();
5589 /* Prevent autosuspend during the reset */
5590 usb_autoresume_device(udev
);
5593 for (i
= 0; i
< config
->desc
.bNumInterfaces
; ++i
) {
5594 struct usb_interface
*cintf
= config
->interface
[i
];
5595 struct usb_driver
*drv
;
5598 if (cintf
->dev
.driver
) {
5599 drv
= to_usb_driver(cintf
->dev
.driver
);
5600 if (drv
->pre_reset
&& drv
->post_reset
)
5601 unbind
= (drv
->pre_reset
)(cintf
);
5602 else if (cintf
->condition
==
5603 USB_INTERFACE_BOUND
)
5606 usb_forced_unbind_intf(cintf
);
5611 usb_lock_port(port_dev
);
5612 ret
= usb_reset_and_verify_device(udev
);
5613 usb_unlock_port(port_dev
);
5616 for (i
= config
->desc
.bNumInterfaces
- 1; i
>= 0; --i
) {
5617 struct usb_interface
*cintf
= config
->interface
[i
];
5618 struct usb_driver
*drv
;
5619 int rebind
= cintf
->needs_binding
;
5621 if (!rebind
&& cintf
->dev
.driver
) {
5622 drv
= to_usb_driver(cintf
->dev
.driver
);
5623 if (drv
->post_reset
)
5624 rebind
= (drv
->post_reset
)(cintf
);
5625 else if (cintf
->condition
==
5626 USB_INTERFACE_BOUND
)
5629 cintf
->needs_binding
= 1;
5632 usb_unbind_and_rebind_marked_interfaces(udev
);
5635 usb_autosuspend_device(udev
);
5636 memalloc_noio_restore(noio_flag
);
5639 EXPORT_SYMBOL_GPL(usb_reset_device
);
5643 * usb_queue_reset_device - Reset a USB device from an atomic context
5644 * @iface: USB interface belonging to the device to reset
5646 * This function can be used to reset a USB device from an atomic
5647 * context, where usb_reset_device() won't work (as it blocks).
5649 * Doing a reset via this method is functionally equivalent to calling
5650 * usb_reset_device(), except for the fact that it is delayed to a
5651 * workqueue. This means that any drivers bound to other interfaces
5652 * might be unbound, as well as users from usbfs in user space.
5656 * - Scheduling two resets at the same time from two different drivers
5657 * attached to two different interfaces of the same device is
5658 * possible; depending on how the driver attached to each interface
5659 * handles ->pre_reset(), the second reset might happen or not.
5661 * - If the reset is delayed so long that the interface is unbound from
5662 * its driver, the reset will be skipped.
5664 * - This function can be called during .probe(). It can also be called
5665 * during .disconnect(), but doing so is pointless because the reset
5666 * will not occur. If you really want to reset the device during
5667 * .disconnect(), call usb_reset_device() directly -- but watch out
5668 * for nested unbinding issues!
5670 void usb_queue_reset_device(struct usb_interface
*iface
)
5672 if (schedule_work(&iface
->reset_ws
))
5673 usb_get_intf(iface
);
5675 EXPORT_SYMBOL_GPL(usb_queue_reset_device
);
5678 * usb_hub_find_child - Get the pointer of child device
5679 * attached to the port which is specified by @port1.
5680 * @hdev: USB device belonging to the usb hub
5681 * @port1: port num to indicate which port the child device
5684 * USB drivers call this function to get hub's child device
5687 * Return: %NULL if input param is invalid and
5688 * child's usb_device pointer if non-NULL.
5690 struct usb_device
*usb_hub_find_child(struct usb_device
*hdev
,
5693 struct usb_hub
*hub
= usb_hub_to_struct_hub(hdev
);
5695 if (port1
< 1 || port1
> hdev
->maxchild
)
5697 return hub
->ports
[port1
- 1]->child
;
5699 EXPORT_SYMBOL_GPL(usb_hub_find_child
);
5701 void usb_hub_adjust_deviceremovable(struct usb_device
*hdev
,
5702 struct usb_hub_descriptor
*desc
)
5704 struct usb_hub
*hub
= usb_hub_to_struct_hub(hdev
);
5705 enum usb_port_connect_type connect_type
;
5711 if (!hub_is_superspeed(hdev
)) {
5712 for (i
= 1; i
<= hdev
->maxchild
; i
++) {
5713 struct usb_port
*port_dev
= hub
->ports
[i
- 1];
5715 connect_type
= port_dev
->connect_type
;
5716 if (connect_type
== USB_PORT_CONNECT_TYPE_HARD_WIRED
) {
5717 u8 mask
= 1 << (i
%8);
5719 if (!(desc
->u
.hs
.DeviceRemovable
[i
/8] & mask
)) {
5720 dev_dbg(&port_dev
->dev
, "DeviceRemovable is changed to 1 according to platform information.\n");
5721 desc
->u
.hs
.DeviceRemovable
[i
/8] |= mask
;
5726 u16 port_removable
= le16_to_cpu(desc
->u
.ss
.DeviceRemovable
);
5728 for (i
= 1; i
<= hdev
->maxchild
; i
++) {
5729 struct usb_port
*port_dev
= hub
->ports
[i
- 1];
5731 connect_type
= port_dev
->connect_type
;
5732 if (connect_type
== USB_PORT_CONNECT_TYPE_HARD_WIRED
) {
5735 if (!(port_removable
& mask
)) {
5736 dev_dbg(&port_dev
->dev
, "DeviceRemovable is changed to 1 according to platform information.\n");
5737 port_removable
|= mask
;
5742 desc
->u
.ss
.DeviceRemovable
= cpu_to_le16(port_removable
);
5748 * usb_get_hub_port_acpi_handle - Get the usb port's acpi handle
5749 * @hdev: USB device belonging to the usb hub
5750 * @port1: port num of the port
5752 * Return: Port's acpi handle if successful, %NULL if params are
5755 acpi_handle
usb_get_hub_port_acpi_handle(struct usb_device
*hdev
,
5758 struct usb_hub
*hub
= usb_hub_to_struct_hub(hdev
);
5763 return ACPI_HANDLE(&hub
->ports
[port1
- 1]->dev
);