usb: pci_quirks: fix sparse 'symbol not declared' warning
[linux-block.git] / drivers / usb / core / hub.c
CommitLineData
1da177e4
LT
1/*
2 * USB hub driver.
3 *
4 * (C) Copyright 1999 Linus Torvalds
5 * (C) Copyright 1999 Johannes Erdfelt
6 * (C) Copyright 1999 Gregory P. Smith
7 * (C) Copyright 2001 Brad Hards (bhards@bigpond.net.au)
8 *
9 */
10
1da177e4
LT
11#include <linux/kernel.h>
12#include <linux/errno.h>
13#include <linux/module.h>
14#include <linux/moduleparam.h>
15#include <linux/completion.h>
16#include <linux/sched.h>
17#include <linux/list.h>
18#include <linux/slab.h>
1da177e4
LT
19#include <linux/ioctl.h>
20#include <linux/usb.h>
21#include <linux/usbdevice_fs.h>
27729aad 22#include <linux/usb/hcd.h>
925aa46b 23#include <linux/usb/otg.h>
93362a87 24#include <linux/usb/quirks.h>
9c8d6178 25#include <linux/kthread.h>
4186ecf8 26#include <linux/mutex.h>
7dfb7103 27#include <linux/freezer.h>
b04b3156 28#include <linux/random.h>
ad493e5e 29#include <linux/pm_qos.h>
1da177e4 30
1da177e4
LT
31#include <asm/uaccess.h>
32#include <asm/byteorder.h>
33
6e30d7cb 34#include "hub.h"
1da177e4 35
e6f30dea
ML
36#define USB_VENDOR_GENESYS_LOGIC 0x05e3
37#define HUB_QUIRK_CHECK_PORT_AUTOSUSPEND 0x01
38
dbe79bbe
JY
39static inline int hub_is_superspeed(struct usb_device *hdev)
40{
7bf01185 41 return (hdev->descriptor.bDeviceProtocol == USB_HUB_PR_SS);
dbe79bbe 42}
1bb5f66b 43
fa286188 44/* Protect struct usb_device->state and ->children members
9ad3d6cc 45 * Note: Both are also protected by ->dev.sem, except that ->state can
1da177e4
LT
46 * change to USB_STATE_NOTATTACHED even when the semaphore isn't held. */
47static DEFINE_SPINLOCK(device_state_lock);
48
49/* khubd's worklist and its lock */
50static DEFINE_SPINLOCK(hub_event_lock);
51static LIST_HEAD(hub_event_list); /* List of hubs needing servicing */
52
53/* Wakes up khubd */
54static DECLARE_WAIT_QUEUE_HEAD(khubd_wait);
55
9c8d6178 56static struct task_struct *khubd_task;
1da177e4
LT
57
58/* cycle leds on hubs that aren't blinking for attention */
90ab5ee9 59static bool blinkenlights = 0;
1da177e4
LT
60module_param (blinkenlights, bool, S_IRUGO);
61MODULE_PARM_DESC (blinkenlights, "true to cycle leds on hubs");
62
fd7c519d
JK
63/*
64 * Device SATA8000 FW1.0 from DATAST0R Technology Corp requires about
65 * 10 seconds to send reply for the initial 64-byte descriptor request.
66 */
67/* define initial 64-byte descriptor request timeout in milliseconds */
68static int initial_descriptor_timeout = USB_CTRL_GET_TIMEOUT;
69module_param(initial_descriptor_timeout, int, S_IRUGO|S_IWUSR);
b9cef6c3
WF
70MODULE_PARM_DESC(initial_descriptor_timeout,
71 "initial 64-byte descriptor request timeout in milliseconds "
72 "(default 5000 - 5.0 seconds)");
fd7c519d 73
1da177e4
LT
74/*
75 * As of 2.6.10 we introduce a new USB device initialization scheme which
76 * closely resembles the way Windows works. Hopefully it will be compatible
77 * with a wider range of devices than the old scheme. However some previously
78 * working devices may start giving rise to "device not accepting address"
79 * errors; if that happens the user can try the old scheme by adjusting the
80 * following module parameters.
81 *
82 * For maximum flexibility there are two boolean parameters to control the
83 * hub driver's behavior. On the first initialization attempt, if the
84 * "old_scheme_first" parameter is set then the old scheme will be used,
85 * otherwise the new scheme is used. If that fails and "use_both_schemes"
86 * is set, then the driver will make another attempt, using the other scheme.
87 */
90ab5ee9 88static bool old_scheme_first = 0;
1da177e4
LT
89module_param(old_scheme_first, bool, S_IRUGO | S_IWUSR);
90MODULE_PARM_DESC(old_scheme_first,
91 "start with the old device initialization scheme");
92
90ab5ee9 93static bool use_both_schemes = 1;
1da177e4
LT
94module_param(use_both_schemes, bool, S_IRUGO | S_IWUSR);
95MODULE_PARM_DESC(use_both_schemes,
96 "try the other device initialization scheme if the "
97 "first one fails");
98
32fe0198
AS
99/* Mutual exclusion for EHCI CF initialization. This interferes with
100 * port reset on some companion controllers.
101 */
102DECLARE_RWSEM(ehci_cf_port_reset_rwsem);
103EXPORT_SYMBOL_GPL(ehci_cf_port_reset_rwsem);
104
ad493e5e 105#define HUB_DEBOUNCE_TIMEOUT 2000
948fea37
AS
106#define HUB_DEBOUNCE_STEP 25
107#define HUB_DEBOUNCE_STABLE 100
108
742120c6
ML
109static int usb_reset_and_verify_device(struct usb_device *udev);
110
131dec34 111static inline char *portspeed(struct usb_hub *hub, int portstatus)
1da177e4 112{
131dec34
SS
113 if (hub_is_superspeed(hub->hdev))
114 return "5.0 Gb/s";
288ead45 115 if (portstatus & USB_PORT_STAT_HIGH_SPEED)
469271f8 116 return "480 Mb/s";
288ead45 117 else if (portstatus & USB_PORT_STAT_LOW_SPEED)
1da177e4
LT
118 return "1.5 Mb/s";
119 else
120 return "12 Mb/s";
121}
1da177e4
LT
122
123/* Note that hdev or one of its children must be locked! */
ad493e5e 124struct usb_hub *usb_hub_to_struct_hub(struct usb_device *hdev)
1da177e4 125{
ff823c79 126 if (!hdev || !hdev->actconfig || !hdev->maxchild)
25118084 127 return NULL;
1da177e4
LT
128 return usb_get_intfdata(hdev->actconfig->interface[0]);
129}
130
140e3026 131static int usb_device_supports_lpm(struct usb_device *udev)
d9b2099c
SS
132{
133 /* USB 2.1 (and greater) devices indicate LPM support through
134 * their USB 2.0 Extended Capabilities BOS descriptor.
135 */
136 if (udev->speed == USB_SPEED_HIGH) {
137 if (udev->bos->ext_cap &&
138 (USB_LPM_SUPPORT &
139 le32_to_cpu(udev->bos->ext_cap->bmAttributes)))
140 return 1;
141 return 0;
142 }
51e0a012 143
25cd2882
SS
144 /*
145 * According to the USB 3.0 spec, all USB 3.0 devices must support LPM.
146 * However, there are some that don't, and they set the U1/U2 exit
147 * latencies to zero.
51e0a012
SS
148 */
149 if (!udev->bos->ss_cap) {
25cd2882 150 dev_info(&udev->dev, "No LPM exit latency info found, disabling LPM.\n");
51e0a012
SS
151 return 0;
152 }
51e0a012 153
25cd2882
SS
154 if (udev->bos->ss_cap->bU1devExitLat == 0 &&
155 udev->bos->ss_cap->bU2DevExitLat == 0) {
156 if (udev->parent)
157 dev_info(&udev->dev, "LPM exit latency is zeroed, disabling LPM.\n");
158 else
159 dev_info(&udev->dev, "We don't know the algorithms for LPM for this host, disabling LPM.\n");
51e0a012
SS
160 return 0;
161 }
51e0a012 162
25cd2882
SS
163 if (!udev->parent || udev->parent->lpm_capable)
164 return 1;
d9b2099c
SS
165 return 0;
166}
167
51e0a012
SS
168/*
169 * Set the Maximum Exit Latency (MEL) for the host to initiate a transition from
170 * either U1 or U2.
171 */
172static void usb_set_lpm_mel(struct usb_device *udev,
173 struct usb3_lpm_parameters *udev_lpm_params,
174 unsigned int udev_exit_latency,
175 struct usb_hub *hub,
176 struct usb3_lpm_parameters *hub_lpm_params,
177 unsigned int hub_exit_latency)
178{
179 unsigned int total_mel;
180 unsigned int device_mel;
181 unsigned int hub_mel;
182
183 /*
184 * Calculate the time it takes to transition all links from the roothub
185 * to the parent hub into U0. The parent hub must then decode the
186 * packet (hub header decode latency) to figure out which port it was
187 * bound for.
188 *
189 * The Hub Header decode latency is expressed in 0.1us intervals (0x1
190 * means 0.1us). Multiply that by 100 to get nanoseconds.
191 */
192 total_mel = hub_lpm_params->mel +
193 (hub->descriptor->u.ss.bHubHdrDecLat * 100);
194
195 /*
196 * How long will it take to transition the downstream hub's port into
197 * U0? The greater of either the hub exit latency or the device exit
198 * latency.
199 *
200 * The BOS U1/U2 exit latencies are expressed in 1us intervals.
201 * Multiply that by 1000 to get nanoseconds.
202 */
203 device_mel = udev_exit_latency * 1000;
204 hub_mel = hub_exit_latency * 1000;
205 if (device_mel > hub_mel)
206 total_mel += device_mel;
207 else
208 total_mel += hub_mel;
209
210 udev_lpm_params->mel = total_mel;
211}
212
213/*
214 * Set the maximum Device to Host Exit Latency (PEL) for the device to initiate
215 * a transition from either U1 or U2.
216 */
217static void usb_set_lpm_pel(struct usb_device *udev,
218 struct usb3_lpm_parameters *udev_lpm_params,
219 unsigned int udev_exit_latency,
220 struct usb_hub *hub,
221 struct usb3_lpm_parameters *hub_lpm_params,
222 unsigned int hub_exit_latency,
223 unsigned int port_to_port_exit_latency)
224{
225 unsigned int first_link_pel;
226 unsigned int hub_pel;
227
228 /*
229 * First, the device sends an LFPS to transition the link between the
230 * device and the parent hub into U0. The exit latency is the bigger of
231 * the device exit latency or the hub exit latency.
232 */
233 if (udev_exit_latency > hub_exit_latency)
234 first_link_pel = udev_exit_latency * 1000;
235 else
236 first_link_pel = hub_exit_latency * 1000;
237
238 /*
239 * When the hub starts to receive the LFPS, there is a slight delay for
240 * it to figure out that one of the ports is sending an LFPS. Then it
241 * will forward the LFPS to its upstream link. The exit latency is the
242 * delay, plus the PEL that we calculated for this hub.
243 */
244 hub_pel = port_to_port_exit_latency * 1000 + hub_lpm_params->pel;
245
246 /*
247 * According to figure C-7 in the USB 3.0 spec, the PEL for this device
248 * is the greater of the two exit latencies.
249 */
250 if (first_link_pel > hub_pel)
251 udev_lpm_params->pel = first_link_pel;
252 else
253 udev_lpm_params->pel = hub_pel;
254}
255
256/*
257 * Set the System Exit Latency (SEL) to indicate the total worst-case time from
258 * when a device initiates a transition to U0, until when it will receive the
259 * first packet from the host controller.
260 *
261 * Section C.1.5.1 describes the four components to this:
262 * - t1: device PEL
263 * - t2: time for the ERDY to make it from the device to the host.
264 * - t3: a host-specific delay to process the ERDY.
265 * - t4: time for the packet to make it from the host to the device.
266 *
267 * t3 is specific to both the xHCI host and the platform the host is integrated
268 * into. The Intel HW folks have said it's negligible, FIXME if a different
269 * vendor says otherwise.
270 */
271static void usb_set_lpm_sel(struct usb_device *udev,
272 struct usb3_lpm_parameters *udev_lpm_params)
273{
274 struct usb_device *parent;
275 unsigned int num_hubs;
276 unsigned int total_sel;
277
278 /* t1 = device PEL */
279 total_sel = udev_lpm_params->pel;
280 /* How many external hubs are in between the device & the root port. */
281 for (parent = udev->parent, num_hubs = 0; parent->parent;
282 parent = parent->parent)
283 num_hubs++;
284 /* t2 = 2.1us + 250ns * (num_hubs - 1) */
285 if (num_hubs > 0)
286 total_sel += 2100 + 250 * (num_hubs - 1);
287
288 /* t4 = 250ns * num_hubs */
289 total_sel += 250 * num_hubs;
290
291 udev_lpm_params->sel = total_sel;
292}
293
294static void usb_set_lpm_parameters(struct usb_device *udev)
295{
296 struct usb_hub *hub;
297 unsigned int port_to_port_delay;
298 unsigned int udev_u1_del;
299 unsigned int udev_u2_del;
300 unsigned int hub_u1_del;
301 unsigned int hub_u2_del;
302
303 if (!udev->lpm_capable || udev->speed != USB_SPEED_SUPER)
304 return;
305
ad493e5e 306 hub = usb_hub_to_struct_hub(udev->parent);
51e0a012
SS
307 /* It doesn't take time to transition the roothub into U0, since it
308 * doesn't have an upstream link.
309 */
310 if (!hub)
311 return;
312
313 udev_u1_del = udev->bos->ss_cap->bU1devExitLat;
4d967995 314 udev_u2_del = le16_to_cpu(udev->bos->ss_cap->bU2DevExitLat);
51e0a012 315 hub_u1_del = udev->parent->bos->ss_cap->bU1devExitLat;
4d967995 316 hub_u2_del = le16_to_cpu(udev->parent->bos->ss_cap->bU2DevExitLat);
51e0a012
SS
317
318 usb_set_lpm_mel(udev, &udev->u1_params, udev_u1_del,
319 hub, &udev->parent->u1_params, hub_u1_del);
320
321 usb_set_lpm_mel(udev, &udev->u2_params, udev_u2_del,
322 hub, &udev->parent->u2_params, hub_u2_del);
323
324 /*
325 * Appendix C, section C.2.2.2, says that there is a slight delay from
326 * when the parent hub notices the downstream port is trying to
327 * transition to U0 to when the hub initiates a U0 transition on its
328 * upstream port. The section says the delays are tPort2PortU1EL and
329 * tPort2PortU2EL, but it doesn't define what they are.
330 *
331 * The hub chapter, sections 10.4.2.4 and 10.4.2.5 seem to be talking
332 * about the same delays. Use the maximum delay calculations from those
333 * sections. For U1, it's tHubPort2PortExitLat, which is 1us max. For
334 * U2, it's tHubPort2PortExitLat + U2DevExitLat - U1DevExitLat. I
335 * assume the device exit latencies they are talking about are the hub
336 * exit latencies.
337 *
338 * What do we do if the U2 exit latency is less than the U1 exit
339 * latency? It's possible, although not likely...
340 */
341 port_to_port_delay = 1;
342
343 usb_set_lpm_pel(udev, &udev->u1_params, udev_u1_del,
344 hub, &udev->parent->u1_params, hub_u1_del,
345 port_to_port_delay);
346
347 if (hub_u2_del > hub_u1_del)
348 port_to_port_delay = 1 + hub_u2_del - hub_u1_del;
349 else
350 port_to_port_delay = 1 + hub_u1_del;
351
352 usb_set_lpm_pel(udev, &udev->u2_params, udev_u2_del,
353 hub, &udev->parent->u2_params, hub_u2_del,
354 port_to_port_delay);
355
356 /* Now that we've got PEL, calculate SEL. */
357 usb_set_lpm_sel(udev, &udev->u1_params);
358 usb_set_lpm_sel(udev, &udev->u2_params);
359}
360
1da177e4 361/* USB 2.0 spec Section 11.24.4.5 */
dbe79bbe 362static int get_hub_descriptor(struct usb_device *hdev, void *data)
1da177e4 363{
dbe79bbe
JY
364 int i, ret, size;
365 unsigned dtype;
366
367 if (hub_is_superspeed(hdev)) {
368 dtype = USB_DT_SS_HUB;
369 size = USB_DT_SS_HUB_SIZE;
370 } else {
371 dtype = USB_DT_HUB;
372 size = sizeof(struct usb_hub_descriptor);
373 }
1da177e4
LT
374
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,
dbe79bbe 378 dtype << 8, 0, data, size,
1da177e4
LT
379 USB_CTRL_GET_TIMEOUT);
380 if (ret >= (USB_DT_HUB_NONVAR_SIZE + 2))
381 return ret;
382 }
383 return -EINVAL;
384}
385
386/*
387 * USB 2.0 spec Section 11.24.2.1
388 */
389static int clear_hub_feature(struct usb_device *hdev, int feature)
390{
391 return usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
392 USB_REQ_CLEAR_FEATURE, USB_RT_HUB, feature, 0, NULL, 0, 1000);
393}
394
395/*
396 * USB 2.0 spec Section 11.24.2.2
397 */
ad493e5e 398int usb_clear_port_feature(struct usb_device *hdev, int port1, int feature)
1da177e4
LT
399{
400 return usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
401 USB_REQ_CLEAR_FEATURE, USB_RT_PORT, feature, port1,
402 NULL, 0, 1000);
403}
404
405/*
406 * USB 2.0 spec Section 11.24.2.13
407 */
408static int set_port_feature(struct usb_device *hdev, int port1, int feature)
409{
410 return usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
411 USB_REQ_SET_FEATURE, USB_RT_PORT, feature, port1,
412 NULL, 0, 1000);
413}
414
415/*
416 * USB 2.0 spec Section 11.24.2.7.1.10 and table 11-7
417 * for info about using port indicators
418 */
419static void set_port_led(
420 struct usb_hub *hub,
421 int port1,
422 int selector
423)
424{
425 int status = set_port_feature(hub->hdev, (selector << 8) | port1,
426 USB_PORT_FEAT_INDICATOR);
427 if (status < 0)
428 dev_dbg (hub->intfdev,
429 "port %d indicator %s status %d\n",
430 port1,
431 ({ char *s; switch (selector) {
432 case HUB_LED_AMBER: s = "amber"; break;
433 case HUB_LED_GREEN: s = "green"; break;
434 case HUB_LED_OFF: s = "off"; break;
435 case HUB_LED_AUTO: s = "auto"; break;
436 default: s = "??"; break;
2b84f92b 437 } s; }),
1da177e4
LT
438 status);
439}
440
441#define LED_CYCLE_PERIOD ((2*HZ)/3)
442
c4028958 443static void led_work (struct work_struct *work)
1da177e4 444{
c4028958
DH
445 struct usb_hub *hub =
446 container_of(work, struct usb_hub, leds.work);
1da177e4
LT
447 struct usb_device *hdev = hub->hdev;
448 unsigned i;
449 unsigned changed = 0;
450 int cursor = -1;
451
452 if (hdev->state != USB_STATE_CONFIGURED || hub->quiescing)
453 return;
454
3bbc47d8 455 for (i = 0; i < hdev->maxchild; i++) {
1da177e4
LT
456 unsigned selector, mode;
457
458 /* 30%-50% duty cycle */
459
460 switch (hub->indicator[i]) {
461 /* cycle marker */
462 case INDICATOR_CYCLE:
463 cursor = i;
464 selector = HUB_LED_AUTO;
465 mode = INDICATOR_AUTO;
466 break;
467 /* blinking green = sw attention */
468 case INDICATOR_GREEN_BLINK:
469 selector = HUB_LED_GREEN;
470 mode = INDICATOR_GREEN_BLINK_OFF;
471 break;
472 case INDICATOR_GREEN_BLINK_OFF:
473 selector = HUB_LED_OFF;
474 mode = INDICATOR_GREEN_BLINK;
475 break;
476 /* blinking amber = hw attention */
477 case INDICATOR_AMBER_BLINK:
478 selector = HUB_LED_AMBER;
479 mode = INDICATOR_AMBER_BLINK_OFF;
480 break;
481 case INDICATOR_AMBER_BLINK_OFF:
482 selector = HUB_LED_OFF;
483 mode = INDICATOR_AMBER_BLINK;
484 break;
485 /* blink green/amber = reserved */
486 case INDICATOR_ALT_BLINK:
487 selector = HUB_LED_GREEN;
488 mode = INDICATOR_ALT_BLINK_OFF;
489 break;
490 case INDICATOR_ALT_BLINK_OFF:
491 selector = HUB_LED_AMBER;
492 mode = INDICATOR_ALT_BLINK;
493 break;
494 default:
495 continue;
496 }
497 if (selector != HUB_LED_AUTO)
498 changed = 1;
499 set_port_led(hub, i + 1, selector);
500 hub->indicator[i] = mode;
501 }
502 if (!changed && blinkenlights) {
503 cursor++;
3bbc47d8 504 cursor %= hdev->maxchild;
1da177e4
LT
505 set_port_led(hub, cursor + 1, HUB_LED_GREEN);
506 hub->indicator[cursor] = INDICATOR_CYCLE;
507 changed++;
508 }
509 if (changed)
22f6a0f0
SD
510 queue_delayed_work(system_power_efficient_wq,
511 &hub->leds, LED_CYCLE_PERIOD);
1da177e4
LT
512}
513
514/* use a short timeout for hub/port status fetches */
515#define USB_STS_TIMEOUT 1000
516#define USB_STS_RETRIES 5
517
518/*
519 * USB 2.0 spec Section 11.24.2.6
520 */
521static int get_hub_status(struct usb_device *hdev,
522 struct usb_hub_status *data)
523{
524 int i, status = -ETIMEDOUT;
525
3824c1dd
LP
526 for (i = 0; i < USB_STS_RETRIES &&
527 (status == -ETIMEDOUT || status == -EPIPE); i++) {
1da177e4
LT
528 status = usb_control_msg(hdev, usb_rcvctrlpipe(hdev, 0),
529 USB_REQ_GET_STATUS, USB_DIR_IN | USB_RT_HUB, 0, 0,
530 data, sizeof(*data), USB_STS_TIMEOUT);
531 }
532 return status;
533}
534
535/*
536 * USB 2.0 spec Section 11.24.2.7
537 */
538static int get_port_status(struct usb_device *hdev, int port1,
539 struct usb_port_status *data)
540{
541 int i, status = -ETIMEDOUT;
542
3824c1dd
LP
543 for (i = 0; i < USB_STS_RETRIES &&
544 (status == -ETIMEDOUT || status == -EPIPE); i++) {
1da177e4
LT
545 status = usb_control_msg(hdev, usb_rcvctrlpipe(hdev, 0),
546 USB_REQ_GET_STATUS, USB_DIR_IN | USB_RT_PORT, 0, port1,
547 data, sizeof(*data), USB_STS_TIMEOUT);
548 }
549 return status;
550}
551
3eb14915
AS
552static int hub_port_status(struct usb_hub *hub, int port1,
553 u16 *status, u16 *change)
554{
555 int ret;
556
557 mutex_lock(&hub->status_mutex);
558 ret = get_port_status(hub->hdev, port1, &hub->status->port);
559 if (ret < 4) {
e9e88fb7
AS
560 if (ret != -ENODEV)
561 dev_err(hub->intfdev,
562 "%s failed (err = %d)\n", __func__, ret);
3eb14915
AS
563 if (ret >= 0)
564 ret = -EIO;
565 } else {
566 *status = le16_to_cpu(hub->status->port.wPortStatus);
567 *change = le16_to_cpu(hub->status->port.wPortChange);
dbe79bbe 568
3eb14915
AS
569 ret = 0;
570 }
571 mutex_unlock(&hub->status_mutex);
572 return ret;
573}
574
1da177e4
LT
575static void kick_khubd(struct usb_hub *hub)
576{
577 unsigned long flags;
578
579 spin_lock_irqsave(&hub_event_lock, flags);
2e2c5eea 580 if (!hub->disconnected && list_empty(&hub->event_list)) {
1da177e4 581 list_add_tail(&hub->event_list, &hub_event_list);
8e4ceb38
AS
582
583 /* Suppress autosuspend until khubd runs */
584 usb_autopm_get_interface_no_resume(
585 to_usb_interface(hub->intfdev));
1da177e4
LT
586 wake_up(&khubd_wait);
587 }
588 spin_unlock_irqrestore(&hub_event_lock, flags);
589}
590
591void usb_kick_khubd(struct usb_device *hdev)
592{
ad493e5e 593 struct usb_hub *hub = usb_hub_to_struct_hub(hdev);
25118084
AS
594
595 if (hub)
596 kick_khubd(hub);
1da177e4
LT
597}
598
4ee823b8
SS
599/*
600 * Let the USB core know that a USB 3.0 device has sent a Function Wake Device
601 * Notification, which indicates it had initiated remote wakeup.
602 *
603 * USB 3.0 hubs do not report the port link state change from U3 to U0 when the
604 * device initiates resume, so the USB core will not receive notice of the
605 * resume through the normal hub interrupt URB.
606 */
607void usb_wakeup_notification(struct usb_device *hdev,
608 unsigned int portnum)
609{
610 struct usb_hub *hub;
611
612 if (!hdev)
613 return;
614
ad493e5e 615 hub = usb_hub_to_struct_hub(hdev);
4ee823b8
SS
616 if (hub) {
617 set_bit(portnum, hub->wakeup_bits);
618 kick_khubd(hub);
619 }
620}
621EXPORT_SYMBOL_GPL(usb_wakeup_notification);
1da177e4
LT
622
623/* completion function, fires on port status changes and various faults */
7d12e780 624static void hub_irq(struct urb *urb)
1da177e4 625{
ec17cf1c 626 struct usb_hub *hub = urb->context;
e015268d 627 int status = urb->status;
71d2718f 628 unsigned i;
1da177e4
LT
629 unsigned long bits;
630
e015268d 631 switch (status) {
1da177e4
LT
632 case -ENOENT: /* synchronous unlink */
633 case -ECONNRESET: /* async unlink */
634 case -ESHUTDOWN: /* hardware going away */
635 return;
636
637 default: /* presumably an error */
638 /* Cause a hub reset after 10 consecutive errors */
e015268d 639 dev_dbg (hub->intfdev, "transfer --> %d\n", status);
1da177e4
LT
640 if ((++hub->nerrors < 10) || hub->error)
641 goto resubmit;
e015268d 642 hub->error = status;
1da177e4 643 /* FALL THROUGH */
ec17cf1c 644
1da177e4
LT
645 /* let khubd handle things */
646 case 0: /* we got data: port status changed */
647 bits = 0;
648 for (i = 0; i < urb->actual_length; ++i)
649 bits |= ((unsigned long) ((*hub->buffer)[i]))
650 << (i*8);
651 hub->event_bits[0] = bits;
652 break;
653 }
654
655 hub->nerrors = 0;
656
657 /* Something happened, let khubd figure it out */
658 kick_khubd(hub);
659
660resubmit:
661 if (hub->quiescing)
662 return;
663
664 if ((status = usb_submit_urb (hub->urb, GFP_ATOMIC)) != 0
665 && status != -ENODEV && status != -EPERM)
666 dev_err (hub->intfdev, "resubmit --> %d\n", status);
667}
668
669/* USB 2.0 spec Section 11.24.2.3 */
670static inline int
671hub_clear_tt_buffer (struct usb_device *hdev, u16 devinfo, u16 tt)
672{
2c7b871b
WG
673 /* Need to clear both directions for control ep */
674 if (((devinfo >> 11) & USB_ENDPOINT_XFERTYPE_MASK) ==
675 USB_ENDPOINT_XFER_CONTROL) {
676 int status = usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
677 HUB_CLEAR_TT_BUFFER, USB_RT_PORT,
678 devinfo ^ 0x8000, tt, NULL, 0, 1000);
679 if (status)
680 return status;
681 }
c2f6595f 682 return usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
1da177e4
LT
683 HUB_CLEAR_TT_BUFFER, USB_RT_PORT, devinfo,
684 tt, NULL, 0, 1000);
685}
686
687/*
688 * enumeration blocks khubd for a long time. we use keventd instead, since
689 * long blocking there is the exception, not the rule. accordingly, HCDs
690 * talking to TTs must queue control transfers (not just bulk and iso), so
691 * both can talk to the same hub concurrently.
692 */
cb88a1b8 693static void hub_tt_work(struct work_struct *work)
1da177e4 694{
c4028958 695 struct usb_hub *hub =
cb88a1b8 696 container_of(work, struct usb_hub, tt.clear_work);
1da177e4
LT
697 unsigned long flags;
698
699 spin_lock_irqsave (&hub->tt.lock, flags);
3b6054da 700 while (!list_empty(&hub->tt.clear_list)) {
d0f830d3 701 struct list_head *next;
1da177e4
LT
702 struct usb_tt_clear *clear;
703 struct usb_device *hdev = hub->hdev;
cb88a1b8 704 const struct hc_driver *drv;
1da177e4
LT
705 int status;
706
d0f830d3
HS
707 next = hub->tt.clear_list.next;
708 clear = list_entry (next, struct usb_tt_clear, clear_list);
1da177e4
LT
709 list_del (&clear->clear_list);
710
711 /* drop lock so HCD can concurrently report other TT errors */
712 spin_unlock_irqrestore (&hub->tt.lock, flags);
713 status = hub_clear_tt_buffer (hdev, clear->devinfo, clear->tt);
e9e88fb7 714 if (status && status != -ENODEV)
1da177e4
LT
715 dev_err (&hdev->dev,
716 "clear tt %d (%04x) error %d\n",
717 clear->tt, clear->devinfo, status);
cb88a1b8
AS
718
719 /* Tell the HCD, even if the operation failed */
720 drv = clear->hcd->driver;
721 if (drv->clear_tt_buffer_complete)
722 (drv->clear_tt_buffer_complete)(clear->hcd, clear->ep);
723
1bc3c9e1 724 kfree(clear);
cb88a1b8 725 spin_lock_irqsave(&hub->tt.lock, flags);
1da177e4
LT
726 }
727 spin_unlock_irqrestore (&hub->tt.lock, flags);
728}
729
971fcd49
LT
730/**
731 * usb_hub_set_port_power - control hub port's power state
41341261
MN
732 * @hdev: USB device belonging to the usb hub
733 * @hub: target hub
971fcd49
LT
734 * @port1: port index
735 * @set: expected status
736 *
737 * call this function to control port's power via setting or
738 * clearing the port's PORT_POWER feature.
626f090c
YB
739 *
740 * Return: 0 if successful. A negative error code otherwise.
971fcd49 741 */
41341261
MN
742int usb_hub_set_port_power(struct usb_device *hdev, struct usb_hub *hub,
743 int port1, bool set)
971fcd49
LT
744{
745 int ret;
ad493e5e 746 struct usb_port *port_dev = hub->ports[port1 - 1];
971fcd49
LT
747
748 if (set)
749 ret = set_port_feature(hdev, port1, USB_PORT_FEAT_POWER);
750 else
ad493e5e
LT
751 ret = usb_clear_port_feature(hdev, port1, USB_PORT_FEAT_POWER);
752
753 if (!ret)
754 port_dev->power_is_on = set;
971fcd49
LT
755 return ret;
756}
757
1da177e4 758/**
cb88a1b8
AS
759 * usb_hub_clear_tt_buffer - clear control/bulk TT state in high speed hub
760 * @urb: an URB associated with the failed or incomplete split transaction
1da177e4
LT
761 *
762 * High speed HCDs use this to tell the hub driver that some split control or
763 * bulk transaction failed in a way that requires clearing internal state of
764 * a transaction translator. This is normally detected (and reported) from
765 * interrupt context.
766 *
767 * It may not be possible for that hub to handle additional full (or low)
768 * speed transactions until that state is fully cleared out.
626f090c
YB
769 *
770 * Return: 0 if successful. A negative error code otherwise.
1da177e4 771 */
cb88a1b8 772int usb_hub_clear_tt_buffer(struct urb *urb)
1da177e4 773{
cb88a1b8
AS
774 struct usb_device *udev = urb->dev;
775 int pipe = urb->pipe;
1da177e4
LT
776 struct usb_tt *tt = udev->tt;
777 unsigned long flags;
778 struct usb_tt_clear *clear;
779
780 /* we've got to cope with an arbitrary number of pending TT clears,
781 * since each TT has "at least two" buffers that can need it (and
782 * there can be many TTs per hub). even if they're uncommon.
783 */
54e6ecb2 784 if ((clear = kmalloc (sizeof *clear, GFP_ATOMIC)) == NULL) {
1da177e4
LT
785 dev_err (&udev->dev, "can't save CLEAR_TT_BUFFER state\n");
786 /* FIXME recover somehow ... RESET_TT? */
cb88a1b8 787 return -ENOMEM;
1da177e4
LT
788 }
789
790 /* info that CLEAR_TT_BUFFER needs */
791 clear->tt = tt->multi ? udev->ttport : 1;
792 clear->devinfo = usb_pipeendpoint (pipe);
793 clear->devinfo |= udev->devnum << 4;
794 clear->devinfo |= usb_pipecontrol (pipe)
795 ? (USB_ENDPOINT_XFER_CONTROL << 11)
796 : (USB_ENDPOINT_XFER_BULK << 11);
797 if (usb_pipein (pipe))
798 clear->devinfo |= 1 << 15;
cb88a1b8
AS
799
800 /* info for completion callback */
801 clear->hcd = bus_to_hcd(udev->bus);
802 clear->ep = urb->ep;
803
1da177e4
LT
804 /* tell keventd to clear state for this TT */
805 spin_lock_irqsave (&tt->lock, flags);
806 list_add_tail (&clear->clear_list, &tt->clear_list);
cb88a1b8 807 schedule_work(&tt->clear_work);
1da177e4 808 spin_unlock_irqrestore (&tt->lock, flags);
cb88a1b8 809 return 0;
1da177e4 810}
cb88a1b8 811EXPORT_SYMBOL_GPL(usb_hub_clear_tt_buffer);
1da177e4 812
8520f380
AS
813/* If do_delay is false, return the number of milliseconds the caller
814 * needs to delay.
815 */
816static unsigned hub_power_on(struct usb_hub *hub, bool do_delay)
1da177e4
LT
817{
818 int port1;
b789696a 819 unsigned pgood_delay = hub->descriptor->bPwrOn2PwrGood * 2;
8520f380 820 unsigned delay;
4489a571
AS
821 u16 wHubCharacteristics =
822 le16_to_cpu(hub->descriptor->wHubCharacteristics);
823
824 /* Enable power on each port. Some hubs have reserved values
825 * of LPSM (> 2) in their descriptors, even though they are
826 * USB 2.0 hubs. Some hubs do not implement port-power switching
827 * but only emulate it. In all cases, the ports won't work
828 * unless we send these messages to the hub.
829 */
830 if ((wHubCharacteristics & HUB_CHAR_LPSM) < 2)
1da177e4 831 dev_dbg(hub->intfdev, "enabling power on all ports\n");
4489a571
AS
832 else
833 dev_dbg(hub->intfdev, "trying to enable port power on "
834 "non-switchable hub\n");
3bbc47d8 835 for (port1 = 1; port1 <= hub->hdev->maxchild; port1++)
ad493e5e
LT
836 if (hub->ports[port1 - 1]->power_is_on)
837 set_port_feature(hub->hdev, port1, USB_PORT_FEAT_POWER);
838 else
839 usb_clear_port_feature(hub->hdev, port1,
840 USB_PORT_FEAT_POWER);
1da177e4 841
b789696a 842 /* Wait at least 100 msec for power to become stable */
8520f380
AS
843 delay = max(pgood_delay, (unsigned) 100);
844 if (do_delay)
845 msleep(delay);
846 return delay;
1da177e4
LT
847}
848
1da177e4
LT
849static int hub_hub_status(struct usb_hub *hub,
850 u16 *status, u16 *change)
851{
852 int ret;
853
db90e7a1 854 mutex_lock(&hub->status_mutex);
1da177e4 855 ret = get_hub_status(hub->hdev, &hub->status->hub);
e9e88fb7
AS
856 if (ret < 0) {
857 if (ret != -ENODEV)
858 dev_err(hub->intfdev,
859 "%s failed (err = %d)\n", __func__, ret);
860 } else {
1da177e4 861 *status = le16_to_cpu(hub->status->hub.wHubStatus);
469271f8 862 *change = le16_to_cpu(hub->status->hub.wHubChange);
1da177e4
LT
863 ret = 0;
864 }
db90e7a1 865 mutex_unlock(&hub->status_mutex);
1da177e4
LT
866 return ret;
867}
868
41e7e056
SS
869static int hub_set_port_link_state(struct usb_hub *hub, int port1,
870 unsigned int link_status)
871{
872 return set_port_feature(hub->hdev,
873 port1 | (link_status << 3),
874 USB_PORT_FEAT_LINK_STATE);
875}
876
877/*
878 * If USB 3.0 ports are placed into the Disabled state, they will no longer
879 * detect any device connects or disconnects. This is generally not what the
880 * USB core wants, since it expects a disabled port to produce a port status
881 * change event when a new device connects.
882 *
883 * Instead, set the link state to Disabled, wait for the link to settle into
884 * that state, clear any change bits, and then put the port into the RxDetect
885 * state.
886 */
887static int hub_usb3_port_disable(struct usb_hub *hub, int port1)
888{
889 int ret;
890 int total_time;
891 u16 portchange, portstatus;
892
893 if (!hub_is_superspeed(hub->hdev))
894 return -EINVAL;
895
896 ret = hub_set_port_link_state(hub, port1, USB_SS_PORT_LS_SS_DISABLED);
e9e88fb7 897 if (ret)
41e7e056 898 return ret;
41e7e056
SS
899
900 /* Wait for the link to enter the disabled state. */
901 for (total_time = 0; ; total_time += HUB_DEBOUNCE_STEP) {
902 ret = hub_port_status(hub, port1, &portstatus, &portchange);
903 if (ret < 0)
904 return ret;
905
906 if ((portstatus & USB_PORT_STAT_LINK_STATE) ==
907 USB_SS_PORT_LS_SS_DISABLED)
908 break;
909 if (total_time >= HUB_DEBOUNCE_TIMEOUT)
910 break;
911 msleep(HUB_DEBOUNCE_STEP);
912 }
913 if (total_time >= HUB_DEBOUNCE_TIMEOUT)
914 dev_warn(hub->intfdev, "Could not disable port %d after %d ms\n",
915 port1, total_time);
916
917 return hub_set_port_link_state(hub, port1, USB_SS_PORT_LS_RX_DETECT);
918}
919
8b28c752
AS
920static int hub_port_disable(struct usb_hub *hub, int port1, int set_state)
921{
922 struct usb_device *hdev = hub->hdev;
0458d5b4 923 int ret = 0;
8b28c752 924
ff823c79
LT
925 if (hub->ports[port1 - 1]->child && set_state)
926 usb_set_device_state(hub->ports[port1 - 1]->child,
8b28c752 927 USB_STATE_NOTATTACHED);
41e7e056
SS
928 if (!hub->error) {
929 if (hub_is_superspeed(hub->hdev))
930 ret = hub_usb3_port_disable(hub, port1);
931 else
ad493e5e 932 ret = usb_clear_port_feature(hdev, port1,
41e7e056
SS
933 USB_PORT_FEAT_ENABLE);
934 }
e9e88fb7 935 if (ret && ret != -ENODEV)
8b28c752 936 dev_err(hub->intfdev, "cannot disable port %d (err = %d)\n",
0458d5b4 937 port1, ret);
8b28c752
AS
938 return ret;
939}
940
0458d5b4 941/*
6d42fcdb 942 * Disable a port and mark a logical connect-change event, so that some
0458d5b4
AS
943 * time later khubd will disconnect() any existing usb_device on the port
944 * and will re-enumerate if there actually is a device attached.
945 */
946static void hub_port_logical_disconnect(struct usb_hub *hub, int port1)
947{
948 dev_dbg(hub->intfdev, "logical disconnect on port %d\n", port1);
949 hub_port_disable(hub, port1, 1);
7d069b7d 950
0458d5b4
AS
951 /* FIXME let caller ask to power down the port:
952 * - some devices won't enumerate without a VBUS power cycle
953 * - SRP saves power that way
954 * - ... new call, TBD ...
955 * That's easy if this hub can switch power per-port, and
956 * khubd reactivates the port later (timer, SRP, etc).
957 * Powerdown must be optional, because of reset/DFU.
958 */
959
960 set_bit(port1, hub->change_bits);
469271f8 961 kick_khubd(hub);
0458d5b4
AS
962}
963
253e0572
AS
964/**
965 * usb_remove_device - disable a device's port on its parent hub
966 * @udev: device to be disabled and removed
967 * Context: @udev locked, must be able to sleep.
968 *
969 * After @udev's port has been disabled, khubd is notified and it will
970 * see that the device has been disconnected. When the device is
971 * physically unplugged and something is plugged in, the events will
972 * be received and processed normally.
626f090c
YB
973 *
974 * Return: 0 if successful. A negative error code otherwise.
253e0572
AS
975 */
976int usb_remove_device(struct usb_device *udev)
977{
978 struct usb_hub *hub;
979 struct usb_interface *intf;
980
981 if (!udev->parent) /* Can't remove a root hub */
982 return -EINVAL;
ad493e5e 983 hub = usb_hub_to_struct_hub(udev->parent);
253e0572
AS
984 intf = to_usb_interface(hub->intfdev);
985
986 usb_autopm_get_interface(intf);
987 set_bit(udev->portnum, hub->removed_bits);
988 hub_port_logical_disconnect(hub, udev->portnum);
989 usb_autopm_put_interface(intf);
990 return 0;
991}
992
6ee0b270 993enum hub_activation_type {
8e4ceb38 994 HUB_INIT, HUB_INIT2, HUB_INIT3, /* INITs must come first */
8520f380 995 HUB_POST_RESET, HUB_RESUME, HUB_RESET_RESUME,
6ee0b270 996};
5e6effae 997
8520f380
AS
998static void hub_init_func2(struct work_struct *ws);
999static void hub_init_func3(struct work_struct *ws);
1000
f2835219 1001static void hub_activate(struct usb_hub *hub, enum hub_activation_type type)
5e6effae
AS
1002{
1003 struct usb_device *hdev = hub->hdev;
653a39d1
SS
1004 struct usb_hcd *hcd;
1005 int ret;
5e6effae 1006 int port1;
f2835219 1007 int status;
948fea37 1008 bool need_debounce_delay = false;
8520f380
AS
1009 unsigned delay;
1010
1011 /* Continue a partial initialization */
1012 if (type == HUB_INIT2)
1013 goto init2;
1014 if (type == HUB_INIT3)
1015 goto init3;
5e6effae 1016
a45aa3b3
EF
1017 /* The superspeed hub except for root hub has to use Hub Depth
1018 * value as an offset into the route string to locate the bits
1019 * it uses to determine the downstream port number. So hub driver
1020 * should send a set hub depth request to superspeed hub after
1021 * the superspeed hub is set configuration in initialization or
1022 * reset procedure.
1023 *
1024 * After a resume, port power should still be on.
f2835219
AS
1025 * For any other type of activation, turn it on.
1026 */
8520f380 1027 if (type != HUB_RESUME) {
a45aa3b3
EF
1028 if (hdev->parent && hub_is_superspeed(hdev)) {
1029 ret = usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
1030 HUB_SET_DEPTH, USB_RT_HUB,
1031 hdev->level - 1, 0, NULL, 0,
1032 USB_CTRL_SET_TIMEOUT);
1033 if (ret < 0)
1034 dev_err(hub->intfdev,
1035 "set hub depth failed\n");
1036 }
8520f380
AS
1037
1038 /* Speed up system boot by using a delayed_work for the
1039 * hub's initial power-up delays. This is pretty awkward
1040 * and the implementation looks like a home-brewed sort of
1041 * setjmp/longjmp, but it saves at least 100 ms for each
1042 * root hub (assuming usbcore is compiled into the kernel
1043 * rather than as a module). It adds up.
1044 *
1045 * This can't be done for HUB_RESUME or HUB_RESET_RESUME
1046 * because for those activation types the ports have to be
1047 * operational when we return. In theory this could be done
1048 * for HUB_POST_RESET, but it's easier not to.
1049 */
1050 if (type == HUB_INIT) {
1051 delay = hub_power_on(hub, false);
77fa83cf 1052 INIT_DELAYED_WORK(&hub->init_work, hub_init_func2);
22f6a0f0
SD
1053 queue_delayed_work(system_power_efficient_wq,
1054 &hub->init_work,
8520f380 1055 msecs_to_jiffies(delay));
61fbeba1
AS
1056
1057 /* Suppress autosuspend until init is done */
8e4ceb38
AS
1058 usb_autopm_get_interface_no_resume(
1059 to_usb_interface(hub->intfdev));
8520f380 1060 return; /* Continues at init2: below */
653a39d1
SS
1061 } else if (type == HUB_RESET_RESUME) {
1062 /* The internal host controller state for the hub device
1063 * may be gone after a host power loss on system resume.
1064 * Update the device's info so the HW knows it's a hub.
1065 */
1066 hcd = bus_to_hcd(hdev->bus);
1067 if (hcd->driver->update_hub_device) {
1068 ret = hcd->driver->update_hub_device(hcd, hdev,
1069 &hub->tt, GFP_NOIO);
1070 if (ret < 0) {
1071 dev_err(hub->intfdev, "Host not "
1072 "accepting hub info "
1073 "update.\n");
1074 dev_err(hub->intfdev, "LS/FS devices "
1075 "and hubs may not work "
1076 "under this hub\n.");
1077 }
1078 }
1079 hub_power_on(hub, true);
8520f380
AS
1080 } else {
1081 hub_power_on(hub, true);
1082 }
1083 }
1084 init2:
f2835219 1085
6ee0b270
AS
1086 /* Check each port and set hub->change_bits to let khubd know
1087 * which ports need attention.
5e6effae
AS
1088 */
1089 for (port1 = 1; port1 <= hdev->maxchild; ++port1) {
ff823c79 1090 struct usb_device *udev = hub->ports[port1 - 1]->child;
5e6effae
AS
1091 u16 portstatus, portchange;
1092
6ee0b270
AS
1093 portstatus = portchange = 0;
1094 status = hub_port_status(hub, port1, &portstatus, &portchange);
1095 if (udev || (portstatus & USB_PORT_STAT_CONNECTION))
1096 dev_dbg(hub->intfdev,
1097 "port %d: status %04x change %04x\n",
1098 port1, portstatus, portchange);
1099
1100 /* After anything other than HUB_RESUME (i.e., initialization
1101 * or any sort of reset), every port should be disabled.
1102 * Unconnected ports should likewise be disabled (paranoia),
1103 * and so should ports for which we have no usb_device.
1104 */
1105 if ((portstatus & USB_PORT_STAT_ENABLE) && (
1106 type != HUB_RESUME ||
1107 !(portstatus & USB_PORT_STAT_CONNECTION) ||
1108 !udev ||
1109 udev->state == USB_STATE_NOTATTACHED)) {
9f0a6cd3
AX
1110 /*
1111 * USB3 protocol ports will automatically transition
1112 * to Enabled state when detect an USB3.0 device attach.
fd1ac4cf
DW
1113 * Do not disable USB3 protocol ports, just pretend
1114 * power was lost
9f0a6cd3 1115 */
fd1ac4cf
DW
1116 portstatus &= ~USB_PORT_STAT_ENABLE;
1117 if (!hub_is_superspeed(hdev))
ad493e5e 1118 usb_clear_port_feature(hdev, port1,
9f0a6cd3 1119 USB_PORT_FEAT_ENABLE);
5e6effae
AS
1120 }
1121
948fea37
AS
1122 /* Clear status-change flags; we'll debounce later */
1123 if (portchange & USB_PORT_STAT_C_CONNECTION) {
1124 need_debounce_delay = true;
ad493e5e 1125 usb_clear_port_feature(hub->hdev, port1,
948fea37
AS
1126 USB_PORT_FEAT_C_CONNECTION);
1127 }
1128 if (portchange & USB_PORT_STAT_C_ENABLE) {
1129 need_debounce_delay = true;
ad493e5e 1130 usb_clear_port_feature(hub->hdev, port1,
948fea37
AS
1131 USB_PORT_FEAT_C_ENABLE);
1132 }
e92aee33
JW
1133 if (portchange & USB_PORT_STAT_C_RESET) {
1134 need_debounce_delay = true;
1135 usb_clear_port_feature(hub->hdev, port1,
1136 USB_PORT_FEAT_C_RESET);
1137 }
79c3dd81
DZ
1138 if ((portchange & USB_PORT_STAT_C_BH_RESET) &&
1139 hub_is_superspeed(hub->hdev)) {
1140 need_debounce_delay = true;
ad493e5e 1141 usb_clear_port_feature(hub->hdev, port1,
79c3dd81
DZ
1142 USB_PORT_FEAT_C_BH_PORT_RESET);
1143 }
253e0572
AS
1144 /* We can forget about a "removed" device when there's a
1145 * physical disconnect or the connect status changes.
1146 */
1147 if (!(portstatus & USB_PORT_STAT_CONNECTION) ||
1148 (portchange & USB_PORT_STAT_C_CONNECTION))
1149 clear_bit(port1, hub->removed_bits);
1150
6ee0b270
AS
1151 if (!udev || udev->state == USB_STATE_NOTATTACHED) {
1152 /* Tell khubd to disconnect the device or
1153 * check for a new connection
1154 */
08d1dec6
SG
1155 if (udev || (portstatus & USB_PORT_STAT_CONNECTION) ||
1156 (portstatus & USB_PORT_STAT_OVERCURRENT))
6ee0b270
AS
1157 set_bit(port1, hub->change_bits);
1158
1159 } else if (portstatus & USB_PORT_STAT_ENABLE) {
72937e1e
SS
1160 bool port_resumed = (portstatus &
1161 USB_PORT_STAT_LINK_STATE) ==
1162 USB_SS_PORT_LS_U0;
6ee0b270
AS
1163 /* The power session apparently survived the resume.
1164 * If there was an overcurrent or suspend change
1165 * (i.e., remote wakeup request), have khubd
72937e1e
SS
1166 * take care of it. Look at the port link state
1167 * for USB 3.0 hubs, since they don't have a suspend
1168 * change bit, and they don't set the port link change
1169 * bit on device-initiated resume.
6ee0b270 1170 */
72937e1e
SS
1171 if (portchange || (hub_is_superspeed(hub->hdev) &&
1172 port_resumed))
6ee0b270 1173 set_bit(port1, hub->change_bits);
5e6effae 1174
6ee0b270 1175 } else if (udev->persist_enabled) {
ad493e5e
LT
1176 struct usb_port *port_dev = hub->ports[port1 - 1];
1177
6ee0b270 1178#ifdef CONFIG_PM
5e6effae 1179 udev->reset_resume = 1;
6ee0b270 1180#endif
ad493e5e
LT
1181 /* Don't set the change_bits when the device
1182 * was powered off.
1183 */
1184 if (port_dev->power_is_on)
1185 set_bit(port1, hub->change_bits);
8808f00c 1186
6ee0b270
AS
1187 } else {
1188 /* The power session is gone; tell khubd */
1189 usb_set_device_state(udev, USB_STATE_NOTATTACHED);
1190 set_bit(port1, hub->change_bits);
5e6effae 1191 }
5e6effae
AS
1192 }
1193
948fea37
AS
1194 /* If no port-status-change flags were set, we don't need any
1195 * debouncing. If flags were set we can try to debounce the
1196 * ports all at once right now, instead of letting khubd do them
1197 * one at a time later on.
1198 *
1199 * If any port-status changes do occur during this delay, khubd
1200 * will see them later and handle them normally.
1201 */
8520f380
AS
1202 if (need_debounce_delay) {
1203 delay = HUB_DEBOUNCE_STABLE;
1204
1205 /* Don't do a long sleep inside a workqueue routine */
1206 if (type == HUB_INIT2) {
77fa83cf 1207 INIT_DELAYED_WORK(&hub->init_work, hub_init_func3);
22f6a0f0
SD
1208 queue_delayed_work(system_power_efficient_wq,
1209 &hub->init_work,
8520f380
AS
1210 msecs_to_jiffies(delay));
1211 return; /* Continues at init3: below */
1212 } else {
1213 msleep(delay);
1214 }
1215 }
1216 init3:
f2835219
AS
1217 hub->quiescing = 0;
1218
1219 status = usb_submit_urb(hub->urb, GFP_NOIO);
1220 if (status < 0)
1221 dev_err(hub->intfdev, "activate --> %d\n", status);
1222 if (hub->has_indicators && blinkenlights)
22f6a0f0
SD
1223 queue_delayed_work(system_power_efficient_wq,
1224 &hub->leds, LED_CYCLE_PERIOD);
f2835219
AS
1225
1226 /* Scan all ports that need attention */
1227 kick_khubd(hub);
8e4ceb38
AS
1228
1229 /* Allow autosuspend if it was suppressed */
1230 if (type <= HUB_INIT3)
1231 usb_autopm_put_interface_async(to_usb_interface(hub->intfdev));
5e6effae
AS
1232}
1233
8520f380
AS
1234/* Implement the continuations for the delays above */
1235static void hub_init_func2(struct work_struct *ws)
1236{
1237 struct usb_hub *hub = container_of(ws, struct usb_hub, init_work.work);
1238
1239 hub_activate(hub, HUB_INIT2);
1240}
1241
1242static void hub_init_func3(struct work_struct *ws)
1243{
1244 struct usb_hub *hub = container_of(ws, struct usb_hub, init_work.work);
1245
1246 hub_activate(hub, HUB_INIT3);
1247}
1248
4330354f
AS
1249enum hub_quiescing_type {
1250 HUB_DISCONNECT, HUB_PRE_RESET, HUB_SUSPEND
1251};
1252
1253static void hub_quiesce(struct usb_hub *hub, enum hub_quiescing_type type)
1254{
1255 struct usb_device *hdev = hub->hdev;
1256 int i;
1257
8520f380
AS
1258 cancel_delayed_work_sync(&hub->init_work);
1259
4330354f
AS
1260 /* khubd and related activity won't re-trigger */
1261 hub->quiescing = 1;
1262
1263 if (type != HUB_SUSPEND) {
1264 /* Disconnect all the children */
1265 for (i = 0; i < hdev->maxchild; ++i) {
ff823c79
LT
1266 if (hub->ports[i]->child)
1267 usb_disconnect(&hub->ports[i]->child);
4330354f
AS
1268 }
1269 }
1270
1271 /* Stop khubd and related activity */
1272 usb_kill_urb(hub->urb);
1273 if (hub->has_indicators)
1274 cancel_delayed_work_sync(&hub->leds);
1275 if (hub->tt.hub)
036546bf 1276 flush_work(&hub->tt.clear_work);
4330354f
AS
1277}
1278
3eb14915
AS
1279/* caller has locked the hub device */
1280static int hub_pre_reset(struct usb_interface *intf)
1281{
1282 struct usb_hub *hub = usb_get_intfdata(intf);
1283
4330354f 1284 hub_quiesce(hub, HUB_PRE_RESET);
f07600cf 1285 return 0;
7d069b7d
AS
1286}
1287
1288/* caller has locked the hub device */
f07600cf 1289static int hub_post_reset(struct usb_interface *intf)
7d069b7d 1290{
7de18d8b
AS
1291 struct usb_hub *hub = usb_get_intfdata(intf);
1292
f2835219 1293 hub_activate(hub, HUB_POST_RESET);
f07600cf 1294 return 0;
7d069b7d
AS
1295}
1296
1da177e4
LT
1297static int hub_configure(struct usb_hub *hub,
1298 struct usb_endpoint_descriptor *endpoint)
1299{
b356b7c7 1300 struct usb_hcd *hcd;
1da177e4
LT
1301 struct usb_device *hdev = hub->hdev;
1302 struct device *hub_dev = hub->intfdev;
1303 u16 hubstatus, hubchange;
74ad9bd2 1304 u16 wHubCharacteristics;
1da177e4 1305 unsigned int pipe;
fa2a9566 1306 int maxp, ret, i;
7cbe5dca 1307 char *message = "out of memory";
430ee58e
SAS
1308 unsigned unit_load;
1309 unsigned full_load;
1da177e4 1310
d697cdda 1311 hub->buffer = kmalloc(sizeof(*hub->buffer), GFP_KERNEL);
1da177e4 1312 if (!hub->buffer) {
1da177e4
LT
1313 ret = -ENOMEM;
1314 goto fail;
1315 }
1316
1317 hub->status = kmalloc(sizeof(*hub->status), GFP_KERNEL);
1318 if (!hub->status) {
1da177e4
LT
1319 ret = -ENOMEM;
1320 goto fail;
1321 }
db90e7a1 1322 mutex_init(&hub->status_mutex);
1da177e4
LT
1323
1324 hub->descriptor = kmalloc(sizeof(*hub->descriptor), GFP_KERNEL);
1325 if (!hub->descriptor) {
1da177e4
LT
1326 ret = -ENOMEM;
1327 goto fail;
1328 }
1329
1330 /* Request the entire hub descriptor.
1331 * hub->descriptor can handle USB_MAXCHILDREN ports,
1332 * but the hub can/will return fewer bytes here.
1333 */
dbe79bbe 1334 ret = get_hub_descriptor(hdev, hub->descriptor);
1da177e4
LT
1335 if (ret < 0) {
1336 message = "can't read hub descriptor";
1337 goto fail;
1338 } else if (hub->descriptor->bNbrPorts > USB_MAXCHILDREN) {
1339 message = "hub has too many ports!";
1340 ret = -ENODEV;
1341 goto fail;
769d7368
DL
1342 } else if (hub->descriptor->bNbrPorts == 0) {
1343 message = "hub doesn't have any ports!";
1344 ret = -ENODEV;
1345 goto fail;
1da177e4
LT
1346 }
1347
1348 hdev->maxchild = hub->descriptor->bNbrPorts;
1349 dev_info (hub_dev, "%d port%s detected\n", hdev->maxchild,
1350 (hdev->maxchild == 1) ? "" : "s");
1351
fa2a9566
LT
1352 hub->ports = kzalloc(hdev->maxchild * sizeof(struct usb_port *),
1353 GFP_KERNEL);
ff823c79 1354 if (!hub->ports) {
7cbe5dca
AS
1355 ret = -ENOMEM;
1356 goto fail;
1357 }
1358
74ad9bd2 1359 wHubCharacteristics = le16_to_cpu(hub->descriptor->wHubCharacteristics);
430ee58e
SAS
1360 if (hub_is_superspeed(hdev)) {
1361 unit_load = 150;
1362 full_load = 900;
1363 } else {
1364 unit_load = 100;
1365 full_load = 500;
1366 }
1da177e4 1367
dbe79bbe
JY
1368 /* FIXME for USB 3.0, skip for now */
1369 if ((wHubCharacteristics & HUB_CHAR_COMPOUND) &&
1370 !(hub_is_superspeed(hdev))) {
1da177e4 1371 int i;
469271f8 1372 char portstr[USB_MAXCHILDREN + 1];
1da177e4
LT
1373
1374 for (i = 0; i < hdev->maxchild; i++)
dbe79bbe 1375 portstr[i] = hub->descriptor->u.hs.DeviceRemovable
1da177e4
LT
1376 [((i + 1) / 8)] & (1 << ((i + 1) % 8))
1377 ? 'F' : 'R';
1378 portstr[hdev->maxchild] = 0;
1379 dev_dbg(hub_dev, "compound device; port removable status: %s\n", portstr);
1380 } else
1381 dev_dbg(hub_dev, "standalone hub\n");
1382
74ad9bd2 1383 switch (wHubCharacteristics & HUB_CHAR_LPSM) {
7bf01185
AD
1384 case HUB_CHAR_COMMON_LPSM:
1385 dev_dbg(hub_dev, "ganged power switching\n");
1386 break;
1387 case HUB_CHAR_INDV_PORT_LPSM:
1388 dev_dbg(hub_dev, "individual port power switching\n");
1389 break;
1390 case HUB_CHAR_NO_LPSM:
1391 case HUB_CHAR_LPSM:
1392 dev_dbg(hub_dev, "no power switching (usb 1.0)\n");
1393 break;
1da177e4
LT
1394 }
1395
74ad9bd2 1396 switch (wHubCharacteristics & HUB_CHAR_OCPM) {
7bf01185
AD
1397 case HUB_CHAR_COMMON_OCPM:
1398 dev_dbg(hub_dev, "global over-current protection\n");
1399 break;
1400 case HUB_CHAR_INDV_PORT_OCPM:
1401 dev_dbg(hub_dev, "individual port over-current protection\n");
1402 break;
1403 case HUB_CHAR_NO_OCPM:
1404 case HUB_CHAR_OCPM:
1405 dev_dbg(hub_dev, "no over-current protection\n");
1406 break;
1da177e4
LT
1407 }
1408
1409 spin_lock_init (&hub->tt.lock);
1410 INIT_LIST_HEAD (&hub->tt.clear_list);
cb88a1b8 1411 INIT_WORK(&hub->tt.clear_work, hub_tt_work);
1da177e4 1412 switch (hdev->descriptor.bDeviceProtocol) {
7bf01185
AD
1413 case USB_HUB_PR_FS:
1414 break;
1415 case USB_HUB_PR_HS_SINGLE_TT:
1416 dev_dbg(hub_dev, "Single TT\n");
1417 hub->tt.hub = hdev;
1418 break;
1419 case USB_HUB_PR_HS_MULTI_TT:
1420 ret = usb_set_interface(hdev, 0, 1);
1421 if (ret == 0) {
1422 dev_dbg(hub_dev, "TT per port\n");
1423 hub->tt.multi = 1;
1424 } else
1425 dev_err(hub_dev, "Using single TT (err %d)\n",
1426 ret);
1427 hub->tt.hub = hdev;
1428 break;
1429 case USB_HUB_PR_SS:
1430 /* USB 3.0 hubs don't have a TT */
1431 break;
1432 default:
1433 dev_dbg(hub_dev, "Unrecognized hub protocol %d\n",
1434 hdev->descriptor.bDeviceProtocol);
1435 break;
1da177e4
LT
1436 }
1437
e09711ae 1438 /* Note 8 FS bit times == (8 bits / 12000000 bps) ~= 666ns */
74ad9bd2 1439 switch (wHubCharacteristics & HUB_CHAR_TTTT) {
469271f8
MB
1440 case HUB_TTTT_8_BITS:
1441 if (hdev->descriptor.bDeviceProtocol != 0) {
1442 hub->tt.think_time = 666;
e09711ae 1443 dev_dbg(hub_dev, "TT requires at most %d "
1444 "FS bit times (%d ns)\n",
469271f8
MB
1445 8, hub->tt.think_time);
1446 }
1447 break;
1448 case HUB_TTTT_16_BITS:
1449 hub->tt.think_time = 666 * 2;
1450 dev_dbg(hub_dev, "TT requires at most %d "
1451 "FS bit times (%d ns)\n",
1452 16, hub->tt.think_time);
1453 break;
1454 case HUB_TTTT_24_BITS:
1455 hub->tt.think_time = 666 * 3;
1456 dev_dbg(hub_dev, "TT requires at most %d "
1457 "FS bit times (%d ns)\n",
1458 24, hub->tt.think_time);
1459 break;
1460 case HUB_TTTT_32_BITS:
1461 hub->tt.think_time = 666 * 4;
1462 dev_dbg(hub_dev, "TT requires at most %d "
1463 "FS bit times (%d ns)\n",
1464 32, hub->tt.think_time);
1465 break;
1da177e4
LT
1466 }
1467
1468 /* probe() zeroes hub->indicator[] */
74ad9bd2 1469 if (wHubCharacteristics & HUB_CHAR_PORTIND) {
1da177e4
LT
1470 hub->has_indicators = 1;
1471 dev_dbg(hub_dev, "Port indicators are supported\n");
1472 }
1473
1474 dev_dbg(hub_dev, "power on to power good time: %dms\n",
1475 hub->descriptor->bPwrOn2PwrGood * 2);
1476
1477 /* power budgeting mostly matters with bus-powered hubs,
1478 * and battery-powered root hubs (may provide just 8 mA).
1479 */
1480 ret = usb_get_status(hdev, USB_RECIP_DEVICE, 0, &hubstatus);
15b7336e 1481 if (ret) {
1da177e4
LT
1482 message = "can't get hub status";
1483 goto fail;
1484 }
430ee58e 1485 hcd = bus_to_hcd(hdev->bus);
7d35b929 1486 if (hdev == hdev->bus->root_hub) {
430ee58e
SAS
1487 if (hcd->power_budget > 0)
1488 hdev->bus_mA = hcd->power_budget;
1489 else
1490 hdev->bus_mA = full_load * hdev->maxchild;
1491 if (hdev->bus_mA >= full_load)
1492 hub->mA_per_port = full_load;
55c52718
AS
1493 else {
1494 hub->mA_per_port = hdev->bus_mA;
1495 hub->limited_power = 1;
1496 }
7d35b929 1497 } else if ((hubstatus & (1 << USB_DEVICE_SELF_POWERED)) == 0) {
430ee58e
SAS
1498 int remaining = hdev->bus_mA -
1499 hub->descriptor->bHubContrCurrent;
1500
1da177e4
LT
1501 dev_dbg(hub_dev, "hub controller current requirement: %dmA\n",
1502 hub->descriptor->bHubContrCurrent);
55c52718 1503 hub->limited_power = 1;
55c52718 1504
430ee58e
SAS
1505 if (remaining < hdev->maxchild * unit_load)
1506 dev_warn(hub_dev,
55c52718
AS
1507 "insufficient power available "
1508 "to use all downstream ports\n");
430ee58e
SAS
1509 hub->mA_per_port = unit_load; /* 7.2.1 */
1510
55c52718
AS
1511 } else { /* Self-powered external hub */
1512 /* FIXME: What about battery-powered external hubs that
1513 * provide less current per port? */
430ee58e 1514 hub->mA_per_port = full_load;
7d35b929 1515 }
430ee58e 1516 if (hub->mA_per_port < full_load)
55c52718
AS
1517 dev_dbg(hub_dev, "%umA bus power budget for each child\n",
1518 hub->mA_per_port);
1da177e4 1519
b356b7c7
SS
1520 /* Update the HCD's internal representation of this hub before khubd
1521 * starts getting port status changes for devices under the hub.
1522 */
b356b7c7
SS
1523 if (hcd->driver->update_hub_device) {
1524 ret = hcd->driver->update_hub_device(hcd, hdev,
1525 &hub->tt, GFP_KERNEL);
1526 if (ret < 0) {
1527 message = "can't update HCD hub info";
1528 goto fail;
1529 }
1530 }
1531
1da177e4
LT
1532 ret = hub_hub_status(hub, &hubstatus, &hubchange);
1533 if (ret < 0) {
1534 message = "can't get hub status";
1535 goto fail;
1536 }
1537
1538 /* local power status reports aren't always correct */
1539 if (hdev->actconfig->desc.bmAttributes & USB_CONFIG_ATT_SELFPOWER)
1540 dev_dbg(hub_dev, "local power source is %s\n",
1541 (hubstatus & HUB_STATUS_LOCAL_POWER)
1542 ? "lost (inactive)" : "good");
1543
74ad9bd2 1544 if ((wHubCharacteristics & HUB_CHAR_OCPM) == 0)
1da177e4
LT
1545 dev_dbg(hub_dev, "%sover-current condition exists\n",
1546 (hubstatus & HUB_STATUS_OVERCURRENT) ? "" : "no ");
1547
88fafff9 1548 /* set up the interrupt endpoint
1549 * We use the EP's maxpacket size instead of (PORTS+1+7)/8
1550 * bytes as USB2.0[11.12.3] says because some hubs are known
1551 * to send more data (and thus cause overflow). For root hubs,
1552 * maxpktsize is defined in hcd.c's fake endpoint descriptors
1553 * to be big enough for at least USB_MAXCHILDREN ports. */
1da177e4
LT
1554 pipe = usb_rcvintpipe(hdev, endpoint->bEndpointAddress);
1555 maxp = usb_maxpacket(hdev, pipe, usb_pipeout(pipe));
1556
1557 if (maxp > sizeof(*hub->buffer))
1558 maxp = sizeof(*hub->buffer);
1559
1560 hub->urb = usb_alloc_urb(0, GFP_KERNEL);
1561 if (!hub->urb) {
1da177e4
LT
1562 ret = -ENOMEM;
1563 goto fail;
1564 }
1565
1566 usb_fill_int_urb(hub->urb, hdev, pipe, *hub->buffer, maxp, hub_irq,
1567 hub, endpoint->bInterval);
1da177e4
LT
1568
1569 /* maybe cycle the hub leds */
1570 if (hub->has_indicators && blinkenlights)
469271f8 1571 hub->indicator[0] = INDICATOR_CYCLE;
1da177e4 1572
e58547eb
KM
1573 for (i = 0; i < hdev->maxchild; i++) {
1574 ret = usb_hub_create_port_device(hub, i + 1);
1575 if (ret < 0) {
fa2a9566
LT
1576 dev_err(hub->intfdev,
1577 "couldn't create port%d device.\n", i + 1);
e58547eb
KM
1578 hdev->maxchild = i;
1579 goto fail_keep_maxchild;
1580 }
1581 }
fa2a9566 1582
d2123fd9
LT
1583 usb_hub_adjust_deviceremovable(hdev, hub->descriptor);
1584
f2835219 1585 hub_activate(hub, HUB_INIT);
1da177e4
LT
1586 return 0;
1587
1588fail:
d0308d4b 1589 hdev->maxchild = 0;
e58547eb 1590fail_keep_maxchild:
1da177e4
LT
1591 dev_err (hub_dev, "config failed, %s (err %d)\n",
1592 message, ret);
1593 /* hub_disconnect() frees urb and descriptor */
1594 return ret;
1595}
1596
e8054854
AS
1597static void hub_release(struct kref *kref)
1598{
1599 struct usb_hub *hub = container_of(kref, struct usb_hub, kref);
1600
1601 usb_put_intf(to_usb_interface(hub->intfdev));
1602 kfree(hub);
1603}
1604
1da177e4
LT
1605static unsigned highspeed_hubs;
1606
1607static void hub_disconnect(struct usb_interface *intf)
1608{
8816230e 1609 struct usb_hub *hub = usb_get_intfdata(intf);
fa286188 1610 struct usb_device *hdev = interface_to_usbdev(intf);
543d7784 1611 int port1;
fa2a9566 1612
e8054854
AS
1613 /* Take the hub off the event list and don't let it be added again */
1614 spin_lock_irq(&hub_event_lock);
8e4ceb38
AS
1615 if (!list_empty(&hub->event_list)) {
1616 list_del_init(&hub->event_list);
1617 usb_autopm_put_interface_no_suspend(intf);
1618 }
e8054854
AS
1619 hub->disconnected = 1;
1620 spin_unlock_irq(&hub_event_lock);
1da177e4 1621
7de18d8b
AS
1622 /* Disconnect all children and quiesce the hub */
1623 hub->error = 0;
4330354f 1624 hub_quiesce(hub, HUB_DISCONNECT);
7de18d8b 1625
543d7784
AS
1626 /* Avoid races with recursively_mark_NOTATTACHED() */
1627 spin_lock_irq(&device_state_lock);
1628 port1 = hdev->maxchild;
1629 hdev->maxchild = 0;
1630 usb_set_intfdata(intf, NULL);
1631 spin_unlock_irq(&device_state_lock);
1f2235b8 1632
543d7784
AS
1633 for (; port1 > 0; --port1)
1634 usb_hub_remove_port_device(hub, port1);
1da177e4 1635
e8054854 1636 if (hub->hdev->speed == USB_SPEED_HIGH)
1da177e4
LT
1637 highspeed_hubs--;
1638
1da177e4 1639 usb_free_urb(hub->urb);
fa2a9566 1640 kfree(hub->ports);
1bc3c9e1 1641 kfree(hub->descriptor);
1bc3c9e1 1642 kfree(hub->status);
d697cdda 1643 kfree(hub->buffer);
1da177e4 1644
971fcd49 1645 pm_suspend_ignore_children(&intf->dev, false);
e8054854 1646 kref_put(&hub->kref, hub_release);
1da177e4
LT
1647}
1648
1649static int hub_probe(struct usb_interface *intf, const struct usb_device_id *id)
1650{
1651 struct usb_host_interface *desc;
1652 struct usb_endpoint_descriptor *endpoint;
1653 struct usb_device *hdev;
1654 struct usb_hub *hub;
1655
1656 desc = intf->cur_altsetting;
1657 hdev = interface_to_usbdev(intf);
1658
596d789a
ML
1659 /*
1660 * Set default autosuspend delay as 0 to speedup bus suspend,
1661 * based on the below considerations:
1662 *
1663 * - Unlike other drivers, the hub driver does not rely on the
1664 * autosuspend delay to provide enough time to handle a wakeup
1665 * event, and the submitted status URB is just to check future
1666 * change on hub downstream ports, so it is safe to do it.
1667 *
1668 * - The patch might cause one or more auto supend/resume for
1669 * below very rare devices when they are plugged into hub
1670 * first time:
1671 *
1672 * devices having trouble initializing, and disconnect
1673 * themselves from the bus and then reconnect a second
1674 * or so later
1675 *
1676 * devices just for downloading firmware, and disconnects
1677 * themselves after completing it
1678 *
1679 * For these quite rare devices, their drivers may change the
1680 * autosuspend delay of their parent hub in the probe() to one
1681 * appropriate value to avoid the subtle problem if someone
1682 * does care it.
1683 *
1684 * - The patch may cause one or more auto suspend/resume on
1685 * hub during running 'lsusb', but it is probably too
1686 * infrequent to worry about.
1687 *
1688 * - Change autosuspend delay of hub can avoid unnecessary auto
1689 * suspend timer for hub, also may decrease power consumption
1690 * of USB bus.
1691 */
1692 pm_runtime_set_autosuspend_delay(&hdev->dev, 0);
1693
2839f5bc
SS
1694 /* Hubs have proper suspend/resume support. */
1695 usb_enable_autosuspend(hdev);
088f7fec 1696
38f3ad5e 1697 if (hdev->level == MAX_TOPO_LEVEL) {
b9cef6c3
WF
1698 dev_err(&intf->dev,
1699 "Unsupported bus topology: hub nested too deep\n");
38f3ad5e
FB
1700 return -E2BIG;
1701 }
1702
89ccbdc9
DB
1703#ifdef CONFIG_USB_OTG_BLACKLIST_HUB
1704 if (hdev->parent) {
1705 dev_warn(&intf->dev, "ignoring external hub\n");
1706 return -ENODEV;
1707 }
1708#endif
1709
1da177e4
LT
1710 /* Some hubs have a subclass of 1, which AFAICT according to the */
1711 /* specs is not defined, but it works */
1712 if ((desc->desc.bInterfaceSubClass != 0) &&
1713 (desc->desc.bInterfaceSubClass != 1)) {
1714descriptor_error:
1715 dev_err (&intf->dev, "bad descriptor, ignoring hub\n");
1716 return -EIO;
1717 }
1718
1719 /* Multiple endpoints? What kind of mutant ninja-hub is this? */
1720 if (desc->desc.bNumEndpoints != 1)
1721 goto descriptor_error;
1722
1723 endpoint = &desc->endpoint[0].desc;
1724
fbf81c29
LFC
1725 /* If it's not an interrupt in endpoint, we'd better punt! */
1726 if (!usb_endpoint_is_int_in(endpoint))
1da177e4
LT
1727 goto descriptor_error;
1728
1729 /* We found a hub */
1730 dev_info (&intf->dev, "USB hub found\n");
1731
0a1ef3b5 1732 hub = kzalloc(sizeof(*hub), GFP_KERNEL);
1da177e4
LT
1733 if (!hub) {
1734 dev_dbg (&intf->dev, "couldn't kmalloc hub struct\n");
1735 return -ENOMEM;
1736 }
1737
e8054854 1738 kref_init(&hub->kref);
1da177e4
LT
1739 INIT_LIST_HEAD(&hub->event_list);
1740 hub->intfdev = &intf->dev;
1741 hub->hdev = hdev;
c4028958 1742 INIT_DELAYED_WORK(&hub->leds, led_work);
8520f380 1743 INIT_DELAYED_WORK(&hub->init_work, NULL);
e8054854 1744 usb_get_intf(intf);
1da177e4
LT
1745
1746 usb_set_intfdata (intf, hub);
40f122f3 1747 intf->needs_remote_wakeup = 1;
971fcd49 1748 pm_suspend_ignore_children(&intf->dev, true);
1da177e4
LT
1749
1750 if (hdev->speed == USB_SPEED_HIGH)
1751 highspeed_hubs++;
1752
e6f30dea
ML
1753 if (id->driver_info & HUB_QUIRK_CHECK_PORT_AUTOSUSPEND)
1754 hub->quirk_check_port_auto_suspend = 1;
1755
1da177e4
LT
1756 if (hub_configure(hub, endpoint) >= 0)
1757 return 0;
1758
1759 hub_disconnect (intf);
1760 return -ENODEV;
1761}
1762
1763static int
1764hub_ioctl(struct usb_interface *intf, unsigned int code, void *user_data)
1765{
1766 struct usb_device *hdev = interface_to_usbdev (intf);
ad493e5e 1767 struct usb_hub *hub = usb_hub_to_struct_hub(hdev);
1da177e4
LT
1768
1769 /* assert ifno == 0 (part of hub spec) */
1770 switch (code) {
1771 case USBDEVFS_HUB_PORTINFO: {
1772 struct usbdevfs_hub_portinfo *info = user_data;
1773 int i;
1774
1775 spin_lock_irq(&device_state_lock);
1776 if (hdev->devnum <= 0)
1777 info->nports = 0;
1778 else {
1779 info->nports = hdev->maxchild;
1780 for (i = 0; i < info->nports; i++) {
ff823c79 1781 if (hub->ports[i]->child == NULL)
1da177e4
LT
1782 info->port[i] = 0;
1783 else
1784 info->port[i] =
ff823c79 1785 hub->ports[i]->child->devnum;
1da177e4
LT
1786 }
1787 }
1788 spin_unlock_irq(&device_state_lock);
1789
1790 return info->nports + 1;
1791 }
1792
1793 default:
1794 return -ENOSYS;
1795 }
1796}
1797
7cbe5dca
AS
1798/*
1799 * Allow user programs to claim ports on a hub. When a device is attached
1800 * to one of these "claimed" ports, the program will "own" the device.
1801 */
1802static int find_port_owner(struct usb_device *hdev, unsigned port1,
9b6f0c4b 1803 struct usb_dev_state ***ppowner)
7cbe5dca 1804{
41341261
MN
1805 struct usb_hub *hub = usb_hub_to_struct_hub(hdev);
1806
7cbe5dca
AS
1807 if (hdev->state == USB_STATE_NOTATTACHED)
1808 return -ENODEV;
1809 if (port1 == 0 || port1 > hdev->maxchild)
1810 return -EINVAL;
1811
41341261 1812 /* Devices not managed by the hub driver
7cbe5dca
AS
1813 * will always have maxchild equal to 0.
1814 */
41341261 1815 *ppowner = &(hub->ports[port1 - 1]->port_owner);
7cbe5dca
AS
1816 return 0;
1817}
1818
1819/* In the following three functions, the caller must hold hdev's lock */
336c5c31 1820int usb_hub_claim_port(struct usb_device *hdev, unsigned port1,
9b6f0c4b 1821 struct usb_dev_state *owner)
7cbe5dca
AS
1822{
1823 int rc;
9b6f0c4b 1824 struct usb_dev_state **powner;
7cbe5dca
AS
1825
1826 rc = find_port_owner(hdev, port1, &powner);
1827 if (rc)
1828 return rc;
1829 if (*powner)
1830 return -EBUSY;
1831 *powner = owner;
1832 return rc;
1833}
6080cd0e 1834EXPORT_SYMBOL_GPL(usb_hub_claim_port);
7cbe5dca 1835
336c5c31 1836int usb_hub_release_port(struct usb_device *hdev, unsigned port1,
9b6f0c4b 1837 struct usb_dev_state *owner)
7cbe5dca
AS
1838{
1839 int rc;
9b6f0c4b 1840 struct usb_dev_state **powner;
7cbe5dca
AS
1841
1842 rc = find_port_owner(hdev, port1, &powner);
1843 if (rc)
1844 return rc;
1845 if (*powner != owner)
1846 return -ENOENT;
1847 *powner = NULL;
1848 return rc;
1849}
6080cd0e 1850EXPORT_SYMBOL_GPL(usb_hub_release_port);
7cbe5dca 1851
9b6f0c4b 1852void usb_hub_release_all_ports(struct usb_device *hdev, struct usb_dev_state *owner)
7cbe5dca 1853{
ad493e5e 1854 struct usb_hub *hub = usb_hub_to_struct_hub(hdev);
7cbe5dca 1855 int n;
7cbe5dca 1856
fa2a9566
LT
1857 for (n = 0; n < hdev->maxchild; n++) {
1858 if (hub->ports[n]->port_owner == owner)
1859 hub->ports[n]->port_owner = NULL;
7cbe5dca 1860 }
fa2a9566 1861
7cbe5dca
AS
1862}
1863
1864/* The caller must hold udev's lock */
1865bool usb_device_is_owned(struct usb_device *udev)
1866{
1867 struct usb_hub *hub;
1868
1869 if (udev->state == USB_STATE_NOTATTACHED || !udev->parent)
1870 return false;
ad493e5e 1871 hub = usb_hub_to_struct_hub(udev->parent);
fa2a9566 1872 return !!hub->ports[udev->portnum - 1]->port_owner;
7cbe5dca
AS
1873}
1874
1da177e4
LT
1875static void recursively_mark_NOTATTACHED(struct usb_device *udev)
1876{
ad493e5e 1877 struct usb_hub *hub = usb_hub_to_struct_hub(udev);
1da177e4
LT
1878 int i;
1879
1880 for (i = 0; i < udev->maxchild; ++i) {
ff823c79
LT
1881 if (hub->ports[i]->child)
1882 recursively_mark_NOTATTACHED(hub->ports[i]->child);
1da177e4 1883 }
9bbdf1e0 1884 if (udev->state == USB_STATE_SUSPENDED)
15123006 1885 udev->active_duration -= jiffies;
1da177e4
LT
1886 udev->state = USB_STATE_NOTATTACHED;
1887}
1888
1889/**
1890 * usb_set_device_state - change a device's current state (usbcore, hcds)
1891 * @udev: pointer to device whose state should be changed
1892 * @new_state: new state value to be stored
1893 *
1894 * udev->state is _not_ fully protected by the device lock. Although
1895 * most transitions are made only while holding the lock, the state can
1896 * can change to USB_STATE_NOTATTACHED at almost any time. This
1897 * is so that devices can be marked as disconnected as soon as possible,
1898 * without having to wait for any semaphores to be released. As a result,
1899 * all changes to any device's state must be protected by the
1900 * device_state_lock spinlock.
1901 *
1902 * Once a device has been added to the device tree, all changes to its state
1903 * should be made using this routine. The state should _not_ be set directly.
1904 *
1905 * If udev->state is already USB_STATE_NOTATTACHED then no change is made.
1906 * Otherwise udev->state is set to new_state, and if new_state is
1907 * USB_STATE_NOTATTACHED then all of udev's descendants' states are also set
1908 * to USB_STATE_NOTATTACHED.
1909 */
1910void usb_set_device_state(struct usb_device *udev,
1911 enum usb_device_state new_state)
1912{
1913 unsigned long flags;
4681b171 1914 int wakeup = -1;
1da177e4
LT
1915
1916 spin_lock_irqsave(&device_state_lock, flags);
1917 if (udev->state == USB_STATE_NOTATTACHED)
1918 ; /* do nothing */
b94dc6b5 1919 else if (new_state != USB_STATE_NOTATTACHED) {
fb669cc0
DB
1920
1921 /* root hub wakeup capabilities are managed out-of-band
1922 * and may involve silicon errata ... ignore them here.
1923 */
1924 if (udev->parent) {
645daaab
AS
1925 if (udev->state == USB_STATE_SUSPENDED
1926 || new_state == USB_STATE_SUSPENDED)
1927 ; /* No change to wakeup settings */
1928 else if (new_state == USB_STATE_CONFIGURED)
4681b171
RW
1929 wakeup = udev->actconfig->desc.bmAttributes
1930 & USB_CONFIG_ATT_WAKEUP;
645daaab 1931 else
4681b171 1932 wakeup = 0;
fb669cc0 1933 }
15123006
SS
1934 if (udev->state == USB_STATE_SUSPENDED &&
1935 new_state != USB_STATE_SUSPENDED)
1936 udev->active_duration -= jiffies;
1937 else if (new_state == USB_STATE_SUSPENDED &&
1938 udev->state != USB_STATE_SUSPENDED)
1939 udev->active_duration += jiffies;
645daaab 1940 udev->state = new_state;
b94dc6b5 1941 } else
1da177e4
LT
1942 recursively_mark_NOTATTACHED(udev);
1943 spin_unlock_irqrestore(&device_state_lock, flags);
4681b171
RW
1944 if (wakeup >= 0)
1945 device_set_wakeup_capable(&udev->dev, wakeup);
1da177e4 1946}
6da9c990 1947EXPORT_SYMBOL_GPL(usb_set_device_state);
1da177e4 1948
8af548dc 1949/*
3b29b68b
AS
1950 * Choose a device number.
1951 *
1952 * Device numbers are used as filenames in usbfs. On USB-1.1 and
1953 * USB-2.0 buses they are also used as device addresses, however on
1954 * USB-3.0 buses the address is assigned by the controller hardware
1955 * and it usually is not the same as the device number.
1956 *
8af548dc
IPG
1957 * WUSB devices are simple: they have no hubs behind, so the mapping
1958 * device <-> virtual port number becomes 1:1. Why? to simplify the
1959 * life of the device connection logic in
1960 * drivers/usb/wusbcore/devconnect.c. When we do the initial secret
1961 * handshake we need to assign a temporary address in the unauthorized
1962 * space. For simplicity we use the first virtual port number found to
1963 * be free [drivers/usb/wusbcore/devconnect.c:wusbhc_devconnect_ack()]
1964 * and that becomes it's address [X < 128] or its unauthorized address
1965 * [X | 0x80].
1966 *
1967 * We add 1 as an offset to the one-based USB-stack port number
1968 * (zero-based wusb virtual port index) for two reasons: (a) dev addr
1969 * 0 is reserved by USB for default address; (b) Linux's USB stack
1970 * uses always #1 for the root hub of the controller. So USB stack's
1971 * port #1, which is wusb virtual-port #0 has address #2.
c6515272
SS
1972 *
1973 * Devices connected under xHCI are not as simple. The host controller
1974 * supports virtualization, so the hardware assigns device addresses and
1975 * the HCD must setup data structures before issuing a set address
1976 * command to the hardware.
8af548dc 1977 */
3b29b68b 1978static void choose_devnum(struct usb_device *udev)
1da177e4
LT
1979{
1980 int devnum;
1981 struct usb_bus *bus = udev->bus;
1982
1983 /* If khubd ever becomes multithreaded, this will need a lock */
8af548dc
IPG
1984 if (udev->wusb) {
1985 devnum = udev->portnum + 1;
1986 BUG_ON(test_bit(devnum, bus->devmap.devicemap));
1987 } else {
1988 /* Try to allocate the next devnum beginning at
1989 * bus->devnum_next. */
1990 devnum = find_next_zero_bit(bus->devmap.devicemap, 128,
1991 bus->devnum_next);
1992 if (devnum >= 128)
1993 devnum = find_next_zero_bit(bus->devmap.devicemap,
1994 128, 1);
469271f8 1995 bus->devnum_next = (devnum >= 127 ? 1 : devnum + 1);
8af548dc 1996 }
1da177e4
LT
1997 if (devnum < 128) {
1998 set_bit(devnum, bus->devmap.devicemap);
1999 udev->devnum = devnum;
2000 }
2001}
2002
3b29b68b 2003static void release_devnum(struct usb_device *udev)
1da177e4
LT
2004{
2005 if (udev->devnum > 0) {
2006 clear_bit(udev->devnum, udev->bus->devmap.devicemap);
2007 udev->devnum = -1;
2008 }
2009}
2010
3b29b68b 2011static void update_devnum(struct usb_device *udev, int devnum)
4953d141
DV
2012{
2013 /* The address for a WUSB device is managed by wusbcore. */
2014 if (!udev->wusb)
2015 udev->devnum = devnum;
2016}
2017
f7410ced
HX
2018static void hub_free_dev(struct usb_device *udev)
2019{
2020 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
2021
2022 /* Root hubs aren't real devices, so don't free HCD resources */
2023 if (hcd->driver->free_dev && udev->parent)
2024 hcd->driver->free_dev(hcd, udev);
2025}
2026
1da177e4
LT
2027/**
2028 * usb_disconnect - disconnect a device (usbcore-internal)
2029 * @pdev: pointer to device being disconnected
2030 * Context: !in_interrupt ()
2031 *
2032 * Something got disconnected. Get rid of it and all of its children.
2033 *
2034 * If *pdev is a normal device then the parent hub must already be locked.
db8f2aa3
BH
2035 * If *pdev is a root hub then the caller must hold the usb_bus_list_lock,
2036 * which protects the set of root hubs as well as the list of buses.
1da177e4
LT
2037 *
2038 * Only hub drivers (including virtual root hub drivers for host
2039 * controllers) should ever call this.
2040 *
2041 * This call is synchronous, and may not be used in an interrupt context.
2042 */
2043void usb_disconnect(struct usb_device **pdev)
2044{
2045 struct usb_device *udev = *pdev;
ad493e5e 2046 struct usb_hub *hub = usb_hub_to_struct_hub(udev);
1da177e4
LT
2047 int i;
2048
1da177e4
LT
2049 /* mark the device as inactive, so any further urb submissions for
2050 * this device (and any of its children) will fail immediately.
25985edc 2051 * this quiesces everything except pending urbs.
1da177e4
LT
2052 */
2053 usb_set_device_state(udev, USB_STATE_NOTATTACHED);
3b29b68b
AS
2054 dev_info(&udev->dev, "USB disconnect, device number %d\n",
2055 udev->devnum);
1da177e4 2056
9ad3d6cc
AS
2057 usb_lock_device(udev);
2058
1da177e4 2059 /* Free up all the children before we remove this device */
8816230e 2060 for (i = 0; i < udev->maxchild; i++) {
ff823c79
LT
2061 if (hub->ports[i]->child)
2062 usb_disconnect(&hub->ports[i]->child);
1da177e4
LT
2063 }
2064
2065 /* deallocate hcd/hardware state ... nuking all pending urbs and
2066 * cleaning up all state associated with the current configuration
2067 * so that the hardware is now fully quiesced.
2068 */
782da727 2069 dev_dbg (&udev->dev, "unregistering device\n");
1da177e4 2070 usb_disable_device(udev, 0);
cde217a5 2071 usb_hcd_synchronize_unlinks(udev);
1da177e4 2072
fde26380 2073 if (udev->parent) {
ad493e5e
LT
2074 struct usb_hub *hub = usb_hub_to_struct_hub(udev->parent);
2075 struct usb_port *port_dev = hub->ports[udev->portnum - 1];
fde26380
LT
2076
2077 sysfs_remove_link(&udev->dev.kobj, "port");
2078 sysfs_remove_link(&port_dev->dev.kobj, "device");
971fcd49 2079
ad493e5e
LT
2080 if (!port_dev->did_runtime_put)
2081 pm_runtime_put(&port_dev->dev);
2082 else
2083 port_dev->did_runtime_put = false;
fde26380
LT
2084 }
2085
3b23dd6f 2086 usb_remove_ep_devs(&udev->ep0);
782da727
AS
2087 usb_unlock_device(udev);
2088
2089 /* Unregister the device. The device driver is responsible
3b23dd6f
AS
2090 * for de-configuring the device and invoking the remove-device
2091 * notifier chain (used by usbfs and possibly others).
782da727
AS
2092 */
2093 device_del(&udev->dev);
3099e75a 2094
782da727 2095 /* Free the device number and delete the parent's children[]
1da177e4
LT
2096 * (or root_hub) pointer.
2097 */
3b29b68b 2098 release_devnum(udev);
1da177e4
LT
2099
2100 /* Avoid races with recursively_mark_NOTATTACHED() */
2101 spin_lock_irq(&device_state_lock);
2102 *pdev = NULL;
2103 spin_unlock_irq(&device_state_lock);
2104
f7410ced
HX
2105 hub_free_dev(udev);
2106
782da727 2107 put_device(&udev->dev);
1da177e4
LT
2108}
2109
f2a383e4 2110#ifdef CONFIG_USB_ANNOUNCE_NEW_DEVICES
1da177e4
LT
2111static void show_string(struct usb_device *udev, char *id, char *string)
2112{
2113 if (!string)
2114 return;
f2ec522e 2115 dev_info(&udev->dev, "%s: %s\n", id, string);
1da177e4
LT
2116}
2117
f2a383e4
GKH
2118static void announce_device(struct usb_device *udev)
2119{
2120 dev_info(&udev->dev, "New USB device found, idVendor=%04x, idProduct=%04x\n",
2121 le16_to_cpu(udev->descriptor.idVendor),
2122 le16_to_cpu(udev->descriptor.idProduct));
b9cef6c3
WF
2123 dev_info(&udev->dev,
2124 "New USB device strings: Mfr=%d, Product=%d, SerialNumber=%d\n",
f2a383e4
GKH
2125 udev->descriptor.iManufacturer,
2126 udev->descriptor.iProduct,
2127 udev->descriptor.iSerialNumber);
2128 show_string(udev, "Product", udev->product);
2129 show_string(udev, "Manufacturer", udev->manufacturer);
2130 show_string(udev, "SerialNumber", udev->serial);
2131}
1da177e4 2132#else
f2a383e4 2133static inline void announce_device(struct usb_device *udev) { }
1da177e4
LT
2134#endif
2135
1da177e4
LT
2136#ifdef CONFIG_USB_OTG
2137#include "otg_whitelist.h"
2138#endif
2139
3ede760f 2140/**
8d8558d1 2141 * usb_enumerate_device_otg - FIXME (usbcore-internal)
3ede760f
ON
2142 * @udev: newly addressed device (in ADDRESS state)
2143 *
8d8558d1 2144 * Finish enumeration for On-The-Go devices
626f090c
YB
2145 *
2146 * Return: 0 if successful. A negative error code otherwise.
3ede760f 2147 */
8d8558d1 2148static int usb_enumerate_device_otg(struct usb_device *udev)
1da177e4 2149{
d9d16e8a 2150 int err = 0;
1da177e4
LT
2151
2152#ifdef CONFIG_USB_OTG
2153 /*
2154 * OTG-aware devices on OTG-capable root hubs may be able to use SRP,
2155 * to wake us after we've powered off VBUS; and HNP, switching roles
2156 * "host" to "peripheral". The OTG descriptor helps figure this out.
2157 */
2158 if (!udev->bus->is_b_host
2159 && udev->config
2160 && udev->parent == udev->bus->root_hub) {
2eb5052e 2161 struct usb_otg_descriptor *desc = NULL;
1da177e4
LT
2162 struct usb_bus *bus = udev->bus;
2163
2164 /* descriptor may appear anywhere in config */
2165 if (__usb_get_extra_descriptor (udev->rawdescriptors[0],
2166 le16_to_cpu(udev->config[0].desc.wTotalLength),
2167 USB_DT_OTG, (void **) &desc) == 0) {
2168 if (desc->bmAttributes & USB_OTG_HNP) {
12c3da34 2169 unsigned port1 = udev->portnum;
fc849b85 2170
1da177e4
LT
2171 dev_info(&udev->dev,
2172 "Dual-Role OTG device on %sHNP port\n",
2173 (port1 == bus->otg_port)
2174 ? "" : "non-");
2175
2176 /* enable HNP before suspend, it's simpler */
2177 if (port1 == bus->otg_port)
2178 bus->b_hnp_enable = 1;
2179 err = usb_control_msg(udev,
2180 usb_sndctrlpipe(udev, 0),
2181 USB_REQ_SET_FEATURE, 0,
2182 bus->b_hnp_enable
2183 ? USB_DEVICE_B_HNP_ENABLE
2184 : USB_DEVICE_A_ALT_HNP_SUPPORT,
2185 0, NULL, 0, USB_CTRL_SET_TIMEOUT);
2186 if (err < 0) {
2187 /* OTG MESSAGE: report errors here,
2188 * customize to match your product.
2189 */
2190 dev_info(&udev->dev,
b9cef6c3 2191 "can't set HNP mode: %d\n",
1da177e4
LT
2192 err);
2193 bus->b_hnp_enable = 0;
2194 }
2195 }
2196 }
2197 }
2198
2199 if (!is_targeted(udev)) {
2200
2201 /* Maybe it can talk to us, though we can't talk to it.
2202 * (Includes HNP test device.)
2203 */
2204 if (udev->bus->b_hnp_enable || udev->bus->is_b_host) {
634a84f8 2205 err = usb_port_suspend(udev, PMSG_SUSPEND);
1da177e4
LT
2206 if (err < 0)
2207 dev_dbg(&udev->dev, "HNP fail, %d\n", err);
2208 }
ffcdc18d 2209 err = -ENOTSUPP;
1da177e4
LT
2210 goto fail;
2211 }
d9d16e8a 2212fail:
1da177e4 2213#endif
d9d16e8a
IPG
2214 return err;
2215}
2216
2217
2218/**
8d8558d1 2219 * usb_enumerate_device - Read device configs/intfs/otg (usbcore-internal)
d9d16e8a
IPG
2220 * @udev: newly addressed device (in ADDRESS state)
2221 *
2222 * This is only called by usb_new_device() and usb_authorize_device()
2223 * and FIXME -- all comments that apply to them apply here wrt to
2224 * environment.
2225 *
2226 * If the device is WUSB and not authorized, we don't attempt to read
2227 * the string descriptors, as they will be errored out by the device
2228 * until it has been authorized.
626f090c
YB
2229 *
2230 * Return: 0 if successful. A negative error code otherwise.
d9d16e8a 2231 */
8d8558d1 2232static int usb_enumerate_device(struct usb_device *udev)
d9d16e8a
IPG
2233{
2234 int err;
1da177e4 2235
d9d16e8a
IPG
2236 if (udev->config == NULL) {
2237 err = usb_get_configuration(udev);
2238 if (err < 0) {
e9e88fb7
AS
2239 if (err != -ENODEV)
2240 dev_err(&udev->dev, "can't read configurations, error %d\n",
2241 err);
80da2e0d 2242 return err;
d9d16e8a
IPG
2243 }
2244 }
83e83ecb
TP
2245
2246 /* read the standard strings and cache them if present */
2247 udev->product = usb_cache_string(udev, udev->descriptor.iProduct);
2248 udev->manufacturer = usb_cache_string(udev,
2249 udev->descriptor.iManufacturer);
2250 udev->serial = usb_cache_string(udev, udev->descriptor.iSerialNumber);
2251
8d8558d1 2252 err = usb_enumerate_device_otg(udev);
80da2e0d
LP
2253 if (err < 0)
2254 return err;
2255
2256 usb_detect_interface_quirks(udev);
2257
2258 return 0;
d9d16e8a
IPG
2259}
2260
d35e70d5
MG
2261static void set_usb_port_removable(struct usb_device *udev)
2262{
2263 struct usb_device *hdev = udev->parent;
2264 struct usb_hub *hub;
2265 u8 port = udev->portnum;
2266 u16 wHubCharacteristics;
2267 bool removable = true;
2268
2269 if (!hdev)
2270 return;
2271
ad493e5e 2272 hub = usb_hub_to_struct_hub(udev->parent);
d35e70d5
MG
2273
2274 wHubCharacteristics = le16_to_cpu(hub->descriptor->wHubCharacteristics);
2275
2276 if (!(wHubCharacteristics & HUB_CHAR_COMPOUND))
2277 return;
2278
2279 if (hub_is_superspeed(hdev)) {
ca3c1539
LT
2280 if (le16_to_cpu(hub->descriptor->u.ss.DeviceRemovable)
2281 & (1 << port))
d35e70d5
MG
2282 removable = false;
2283 } else {
2284 if (hub->descriptor->u.hs.DeviceRemovable[port / 8] & (1 << (port % 8)))
2285 removable = false;
2286 }
2287
2288 if (removable)
2289 udev->removable = USB_DEVICE_REMOVABLE;
2290 else
2291 udev->removable = USB_DEVICE_FIXED;
2292}
d9d16e8a
IPG
2293
2294/**
2295 * usb_new_device - perform initial device setup (usbcore-internal)
2296 * @udev: newly addressed device (in ADDRESS state)
2297 *
8d8558d1
AS
2298 * This is called with devices which have been detected but not fully
2299 * enumerated. The device descriptor is available, but not descriptors
d9d16e8a
IPG
2300 * for any device configuration. The caller must have locked either
2301 * the parent hub (if udev is a normal device) or else the
2302 * usb_bus_list_lock (if udev is a root hub). The parent's pointer to
2303 * udev has already been installed, but udev is not yet visible through
2304 * sysfs or other filesystem code.
2305 *
d9d16e8a
IPG
2306 * This call is synchronous, and may not be used in an interrupt context.
2307 *
2308 * Only the hub driver or root-hub registrar should ever call this.
626f090c
YB
2309 *
2310 * Return: Whether the device is configured properly or not. Zero if the
2311 * interface was registered with the driver core; else a negative errno
2312 * value.
2313 *
d9d16e8a
IPG
2314 */
2315int usb_new_device(struct usb_device *udev)
2316{
2317 int err;
2318
16985408 2319 if (udev->parent) {
16985408
DS
2320 /* Initialize non-root-hub device wakeup to disabled;
2321 * device (un)configuration controls wakeup capable
2322 * sysfs power/wakeup controls wakeup enabled/disabled
2323 */
2324 device_init_wakeup(&udev->dev, 0);
16985408
DS
2325 }
2326
9bbdf1e0
AS
2327 /* Tell the runtime-PM framework the device is active */
2328 pm_runtime_set_active(&udev->dev);
c08512c7 2329 pm_runtime_get_noresume(&udev->dev);
fcc4a01e 2330 pm_runtime_use_autosuspend(&udev->dev);
9bbdf1e0
AS
2331 pm_runtime_enable(&udev->dev);
2332
c08512c7
AS
2333 /* By default, forbid autosuspend for all devices. It will be
2334 * allowed for hubs during binding.
2335 */
2336 usb_disable_autosuspend(udev);
2337
8d8558d1 2338 err = usb_enumerate_device(udev); /* Read descriptors */
d9d16e8a
IPG
2339 if (err < 0)
2340 goto fail;
c6515272
SS
2341 dev_dbg(&udev->dev, "udev %d, busnum %d, minor = %d\n",
2342 udev->devnum, udev->bus->busnum,
2343 (((udev->bus->busnum-1) * 128) + (udev->devnum-1)));
9f8b17e6
KS
2344 /* export the usbdev device-node for libusb */
2345 udev->dev.devt = MKDEV(USB_DEVICE_MAJOR,
2346 (((udev->bus->busnum-1) * 128) + (udev->devnum-1)));
2347
6cd13201
AS
2348 /* Tell the world! */
2349 announce_device(udev);
195af2cc 2350
b04b3156
TT
2351 if (udev->serial)
2352 add_device_randomness(udev->serial, strlen(udev->serial));
2353 if (udev->product)
2354 add_device_randomness(udev->product, strlen(udev->product));
2355 if (udev->manufacturer)
2356 add_device_randomness(udev->manufacturer,
2357 strlen(udev->manufacturer));
2358
927bc916 2359 device_enable_async_suspend(&udev->dev);
d35e70d5
MG
2360
2361 /*
2362 * check whether the hub marks this port as non-removable. Do it
2363 * now so that platform-specific data can override it in
2364 * device_add()
2365 */
2366 if (udev->parent)
2367 set_usb_port_removable(udev);
2368
782da727 2369 /* Register the device. The device driver is responsible
3b23dd6f
AS
2370 * for configuring the device and invoking the add-device
2371 * notifier chain (used by usbfs and possibly others).
782da727 2372 */
9f8b17e6 2373 err = device_add(&udev->dev);
1da177e4
LT
2374 if (err) {
2375 dev_err(&udev->dev, "can't device_add, error %d\n", err);
2376 goto fail;
2377 }
9ad3d6cc 2378
fde26380
LT
2379 /* Create link files between child device and usb port device. */
2380 if (udev->parent) {
ad493e5e
LT
2381 struct usb_hub *hub = usb_hub_to_struct_hub(udev->parent);
2382 struct usb_port *port_dev = hub->ports[udev->portnum - 1];
fde26380
LT
2383
2384 err = sysfs_create_link(&udev->dev.kobj,
2385 &port_dev->dev.kobj, "port");
2386 if (err)
2387 goto fail;
2388
2389 err = sysfs_create_link(&port_dev->dev.kobj,
2390 &udev->dev.kobj, "device");
2391 if (err) {
2392 sysfs_remove_link(&udev->dev.kobj, "port");
2393 goto fail;
2394 }
971fcd49
LT
2395
2396 pm_runtime_get_sync(&port_dev->dev);
fde26380
LT
2397 }
2398
3b23dd6f 2399 (void) usb_create_ep_devs(&udev->dev, &udev->ep0, udev);
c08512c7
AS
2400 usb_mark_last_busy(udev);
2401 pm_runtime_put_sync_autosuspend(&udev->dev);
c066475e 2402 return err;
1da177e4
LT
2403
2404fail:
2405 usb_set_device_state(udev, USB_STATE_NOTATTACHED);
9bbdf1e0
AS
2406 pm_runtime_disable(&udev->dev);
2407 pm_runtime_set_suspended(&udev->dev);
d9d16e8a 2408 return err;
1da177e4
LT
2409}
2410
93993a0a
IPG
2411
2412/**
fd39c86b
RD
2413 * usb_deauthorize_device - deauthorize a device (usbcore-internal)
2414 * @usb_dev: USB device
2415 *
2416 * Move the USB device to a very basic state where interfaces are disabled
2417 * and the device is in fact unconfigured and unusable.
93993a0a
IPG
2418 *
2419 * We share a lock (that we have) with device_del(), so we need to
2420 * defer its call.
626f090c
YB
2421 *
2422 * Return: 0.
93993a0a
IPG
2423 */
2424int usb_deauthorize_device(struct usb_device *usb_dev)
2425{
93993a0a
IPG
2426 usb_lock_device(usb_dev);
2427 if (usb_dev->authorized == 0)
2428 goto out_unauthorized;
da307123 2429
93993a0a
IPG
2430 usb_dev->authorized = 0;
2431 usb_set_configuration(usb_dev, -1);
da307123 2432
93993a0a
IPG
2433out_unauthorized:
2434 usb_unlock_device(usb_dev);
2435 return 0;
2436}
2437
2438
2439int usb_authorize_device(struct usb_device *usb_dev)
2440{
2441 int result = 0, c;
da307123 2442
93993a0a
IPG
2443 usb_lock_device(usb_dev);
2444 if (usb_dev->authorized == 1)
2445 goto out_authorized;
da307123 2446
93993a0a
IPG
2447 result = usb_autoresume_device(usb_dev);
2448 if (result < 0) {
2449 dev_err(&usb_dev->dev,
2450 "can't autoresume for authorization: %d\n", result);
2451 goto error_autoresume;
2452 }
2453 result = usb_get_device_descriptor(usb_dev, sizeof(usb_dev->descriptor));
2454 if (result < 0) {
2455 dev_err(&usb_dev->dev, "can't re-read device descriptor for "
2456 "authorization: %d\n", result);
2457 goto error_device_descriptor;
2458 }
da307123 2459
93993a0a 2460 usb_dev->authorized = 1;
93993a0a
IPG
2461 /* Choose and set the configuration. This registers the interfaces
2462 * with the driver core and lets interface drivers bind to them.
2463 */
b5ea060f 2464 c = usb_choose_configuration(usb_dev);
93993a0a
IPG
2465 if (c >= 0) {
2466 result = usb_set_configuration(usb_dev, c);
2467 if (result) {
2468 dev_err(&usb_dev->dev,
2469 "can't set config #%d, error %d\n", c, result);
2470 /* This need not be fatal. The user can try to
2471 * set other configurations. */
2472 }
2473 }
2474 dev_info(&usb_dev->dev, "authorized to connect\n");
da307123 2475
93993a0a 2476error_device_descriptor:
da307123 2477 usb_autosuspend_device(usb_dev);
93993a0a
IPG
2478error_autoresume:
2479out_authorized:
781b2137 2480 usb_unlock_device(usb_dev); /* complements locktree */
93993a0a
IPG
2481 return result;
2482}
2483
2484
0165de09
IPG
2485/* Returns 1 if @hub is a WUSB root hub, 0 otherwise */
2486static unsigned hub_is_wusb(struct usb_hub *hub)
2487{
2488 struct usb_hcd *hcd;
2489 if (hub->hdev->parent != NULL) /* not a root hub? */
2490 return 0;
2491 hcd = container_of(hub->hdev->bus, struct usb_hcd, self);
2492 return hcd->wireless;
2493}
2494
2495
1da177e4
LT
2496#define PORT_RESET_TRIES 5
2497#define SET_ADDRESS_TRIES 2
2498#define GET_DESCRIPTOR_TRIES 2
2499#define SET_CONFIG_TRIES (2 * (use_both_schemes + 1))
90ab5ee9 2500#define USE_NEW_SCHEME(i) ((i) / 2 == (int)old_scheme_first)
1da177e4
LT
2501
2502#define HUB_ROOT_RESET_TIME 50 /* times are in msec */
2503#define HUB_SHORT_RESET_TIME 10
75d7cf72 2504#define HUB_BH_RESET_TIME 50
1da177e4 2505#define HUB_LONG_RESET_TIME 200
77c7f072 2506#define HUB_RESET_TIMEOUT 800
1da177e4 2507
48fc7dbd
DW
2508/*
2509 * "New scheme" enumeration causes an extra state transition to be
2510 * exposed to an xhci host and causes USB3 devices to receive control
2511 * commands in the default state. This has been seen to cause
2512 * enumeration failures, so disable this enumeration scheme for USB3
2513 * devices.
2514 */
2515static bool use_new_scheme(struct usb_device *udev, int retry)
2516{
2517 if (udev->speed == USB_SPEED_SUPER)
2518 return false;
2519
2520 return USE_NEW_SCHEME(retry);
2521}
2522
10d674a8
SS
2523static int hub_port_reset(struct usb_hub *hub, int port1,
2524 struct usb_device *udev, unsigned int delay, bool warm);
2525
025d4430 2526/* Is a USB 3.0 port in the Inactive or Compliance Mode state?
8bea2bd3
SL
2527 * Port worm reset is required to recover
2528 */
2529static bool hub_port_warm_reset_required(struct usb_hub *hub, u16 portstatus)
10d674a8
SS
2530{
2531 return hub_is_superspeed(hub->hdev) &&
8bea2bd3
SL
2532 (((portstatus & USB_PORT_STAT_LINK_STATE) ==
2533 USB_SS_PORT_LS_SS_INACTIVE) ||
2534 ((portstatus & USB_PORT_STAT_LINK_STATE) ==
2535 USB_SS_PORT_LS_COMP_MOD)) ;
10d674a8
SS
2536}
2537
1da177e4 2538static int hub_port_wait_reset(struct usb_hub *hub, int port1,
75d7cf72 2539 struct usb_device *udev, unsigned int delay, bool warm)
1da177e4
LT
2540{
2541 int delay_time, ret;
2542 u16 portstatus;
2543 u16 portchange;
2544
2545 for (delay_time = 0;
2546 delay_time < HUB_RESET_TIMEOUT;
2547 delay_time += delay) {
2548 /* wait to give the device a chance to reset */
2549 msleep(delay);
2550
2551 /* read and decode port status */
2552 ret = hub_port_status(hub, port1, &portstatus, &portchange);
2553 if (ret < 0)
2554 return ret;
2555
4f43447e 2556 /* The port state is unknown until the reset completes. */
470f0be8
SS
2557 if (!(portstatus & USB_PORT_STAT_RESET))
2558 break;
1da177e4
LT
2559
2560 /* switch to the long delay after two short delay failures */
2561 if (delay_time >= 2 * HUB_SHORT_RESET_TIME)
2562 delay = HUB_LONG_RESET_TIME;
2563
2564 dev_dbg (hub->intfdev,
75d7cf72
AX
2565 "port %d not %sreset yet, waiting %dms\n",
2566 port1, warm ? "warm " : "", delay);
1da177e4
LT
2567 }
2568
470f0be8
SS
2569 if ((portstatus & USB_PORT_STAT_RESET))
2570 return -EBUSY;
2571
2572 if (hub_port_warm_reset_required(hub, portstatus))
2573 return -ENOTCONN;
2574
2575 /* Device went away? */
2576 if (!(portstatus & USB_PORT_STAT_CONNECTION))
2577 return -ENOTCONN;
2578
2579 /* bomb out completely if the connection bounced. A USB 3.0
2580 * connection may bounce if multiple warm resets were issued,
2581 * but the device may have successfully re-connected. Ignore it.
2582 */
2583 if (!hub_is_superspeed(hub->hdev) &&
2584 (portchange & USB_PORT_STAT_C_CONNECTION))
2585 return -ENOTCONN;
2586
2587 if (!(portstatus & USB_PORT_STAT_ENABLE))
2588 return -EBUSY;
2589
2590 if (!udev)
2591 return 0;
2592
2593 if (hub_is_wusb(hub))
2594 udev->speed = USB_SPEED_WIRELESS;
2595 else if (hub_is_superspeed(hub->hdev))
2596 udev->speed = USB_SPEED_SUPER;
2597 else if (portstatus & USB_PORT_STAT_HIGH_SPEED)
2598 udev->speed = USB_SPEED_HIGH;
2599 else if (portstatus & USB_PORT_STAT_LOW_SPEED)
2600 udev->speed = USB_SPEED_LOW;
2601 else
2602 udev->speed = USB_SPEED_FULL;
2603 return 0;
1da177e4
LT
2604}
2605
75d7cf72 2606static void hub_port_finish_reset(struct usb_hub *hub, int port1,
a24a6078 2607 struct usb_device *udev, int *status)
75d7cf72
AX
2608{
2609 switch (*status) {
2610 case 0:
a24a6078
SS
2611 /* TRSTRCY = 10 ms; plus some extra */
2612 msleep(10 + 40);
2613 if (udev) {
2614 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
2615
2616 update_devnum(udev, 0);
2617 /* The xHC may think the device is already reset,
2618 * so ignore the status.
2619 */
2620 if (hcd->driver->reset_device)
2621 hcd->driver->reset_device(hcd, udev);
75d7cf72
AX
2622 }
2623 /* FALL THROUGH */
2624 case -ENOTCONN:
2625 case -ENODEV:
ad493e5e 2626 usb_clear_port_feature(hub->hdev,
75d7cf72 2627 port1, USB_PORT_FEAT_C_RESET);
1c7439c6 2628 if (hub_is_superspeed(hub->hdev)) {
ad493e5e 2629 usb_clear_port_feature(hub->hdev, port1,
75d7cf72 2630 USB_PORT_FEAT_C_BH_PORT_RESET);
ad493e5e 2631 usb_clear_port_feature(hub->hdev, port1,
75d7cf72 2632 USB_PORT_FEAT_C_PORT_LINK_STATE);
ad493e5e 2633 usb_clear_port_feature(hub->hdev, port1,
a24a6078 2634 USB_PORT_FEAT_C_CONNECTION);
1c7439c6 2635 }
a24a6078 2636 if (udev)
75d7cf72
AX
2637 usb_set_device_state(udev, *status
2638 ? USB_STATE_NOTATTACHED
2639 : USB_STATE_DEFAULT);
75d7cf72
AX
2640 break;
2641 }
2642}
2643
2644/* Handle port reset and port warm(BH) reset (for USB3 protocol ports) */
1da177e4 2645static int hub_port_reset(struct usb_hub *hub, int port1,
75d7cf72 2646 struct usb_device *udev, unsigned int delay, bool warm)
1da177e4
LT
2647{
2648 int i, status;
a24a6078 2649 u16 portchange, portstatus;
1da177e4 2650
0fe51aa5
SS
2651 if (!hub_is_superspeed(hub->hdev)) {
2652 if (warm) {
75d7cf72
AX
2653 dev_err(hub->intfdev, "only USB3 hub support "
2654 "warm reset\n");
2655 return -EINVAL;
2656 }
0fe51aa5
SS
2657 /* Block EHCI CF initialization during the port reset.
2658 * Some companion controllers don't like it when they mix.
2659 */
2660 down_read(&ehci_cf_port_reset_rwsem);
d3b9d7a9
SS
2661 } else if (!warm) {
2662 /*
2663 * If the caller hasn't explicitly requested a warm reset,
2664 * double check and see if one is needed.
2665 */
2666 status = hub_port_status(hub, port1,
2667 &portstatus, &portchange);
2668 if (status < 0)
2669 goto done;
2670
2671 if (hub_port_warm_reset_required(hub, portstatus))
2672 warm = true;
75d7cf72 2673 }
32fe0198 2674
1da177e4
LT
2675 /* Reset the port */
2676 for (i = 0; i < PORT_RESET_TRIES; i++) {
75d7cf72
AX
2677 status = set_port_feature(hub->hdev, port1, (warm ?
2678 USB_PORT_FEAT_BH_PORT_RESET :
2679 USB_PORT_FEAT_RESET));
e9e88fb7
AS
2680 if (status == -ENODEV) {
2681 ; /* The hub is gone */
2682 } else if (status) {
1da177e4 2683 dev_err(hub->intfdev,
75d7cf72
AX
2684 "cannot %sreset port %d (err = %d)\n",
2685 warm ? "warm " : "", port1, status);
2686 } else {
2687 status = hub_port_wait_reset(hub, port1, udev, delay,
2688 warm);
e9e88fb7 2689 if (status && status != -ENOTCONN && status != -ENODEV)
1da177e4
LT
2690 dev_dbg(hub->intfdev,
2691 "port_wait_reset: err = %d\n",
2692 status);
2693 }
2694
a24a6078 2695 /* Check for disconnect or reset */
75d7cf72 2696 if (status == 0 || status == -ENOTCONN || status == -ENODEV) {
a24a6078
SS
2697 hub_port_finish_reset(hub, port1, udev, &status);
2698
2699 if (!hub_is_superspeed(hub->hdev))
2700 goto done;
2701
2702 /*
2703 * If a USB 3.0 device migrates from reset to an error
2704 * state, re-issue the warm reset.
2705 */
2706 if (hub_port_status(hub, port1,
2707 &portstatus, &portchange) < 0)
2708 goto done;
2709
2710 if (!hub_port_warm_reset_required(hub, portstatus))
2711 goto done;
2712
2713 /*
2714 * If the port is in SS.Inactive or Compliance Mode, the
2715 * hot or warm reset failed. Try another warm reset.
2716 */
2717 if (!warm) {
2718 dev_dbg(hub->intfdev, "hot reset failed, warm reset port %d\n",
2719 port1);
2720 warm = true;
2721 }
1da177e4
LT
2722 }
2723
2724 dev_dbg (hub->intfdev,
75d7cf72
AX
2725 "port %d not enabled, trying %sreset again...\n",
2726 port1, warm ? "warm " : "");
1da177e4
LT
2727 delay = HUB_LONG_RESET_TIME;
2728 }
2729
2730 dev_err (hub->intfdev,
2731 "Cannot enable port %i. Maybe the USB cable is bad?\n",
2732 port1);
2733
75d7cf72 2734done:
0fe51aa5 2735 if (!hub_is_superspeed(hub->hdev))
75d7cf72 2736 up_read(&ehci_cf_port_reset_rwsem);
5e467f6e 2737
75d7cf72 2738 return status;
5e467f6e
AX
2739}
2740
0ed9a57e
AX
2741/* Check if a port is power on */
2742static int port_is_power_on(struct usb_hub *hub, unsigned portstatus)
2743{
2744 int ret = 0;
2745
2746 if (hub_is_superspeed(hub->hdev)) {
2747 if (portstatus & USB_SS_PORT_STAT_POWER)
2748 ret = 1;
2749 } else {
2750 if (portstatus & USB_PORT_STAT_POWER)
2751 ret = 1;
2752 }
2753
2754 return ret;
2755}
2756
d388dab7 2757#ifdef CONFIG_PM
1da177e4 2758
0ed9a57e
AX
2759/* Check if a port is suspended(USB2.0 port) or in U3 state(USB3.0 port) */
2760static int port_is_suspended(struct usb_hub *hub, unsigned portstatus)
2761{
2762 int ret = 0;
2763
2764 if (hub_is_superspeed(hub->hdev)) {
2765 if ((portstatus & USB_PORT_STAT_LINK_STATE)
2766 == USB_SS_PORT_LS_U3)
2767 ret = 1;
2768 } else {
2769 if (portstatus & USB_PORT_STAT_SUSPEND)
2770 ret = 1;
2771 }
2772
2773 return ret;
2774}
b01b03f3
AS
2775
2776/* Determine whether the device on a port is ready for a normal resume,
2777 * is ready for a reset-resume, or should be disconnected.
2778 */
2779static int check_port_resume_type(struct usb_device *udev,
2780 struct usb_hub *hub, int port1,
2781 int status, unsigned portchange, unsigned portstatus)
2782{
2783 /* Is the device still present? */
0ed9a57e
AX
2784 if (status || port_is_suspended(hub, portstatus) ||
2785 !port_is_power_on(hub, portstatus) ||
2786 !(portstatus & USB_PORT_STAT_CONNECTION)) {
b01b03f3
AS
2787 if (status >= 0)
2788 status = -ENODEV;
2789 }
2790
86c57edf
AS
2791 /* Can't do a normal resume if the port isn't enabled,
2792 * so try a reset-resume instead.
2793 */
2794 else if (!(portstatus & USB_PORT_STAT_ENABLE) && !udev->reset_resume) {
2795 if (udev->persist_enabled)
2796 udev->reset_resume = 1;
2797 else
2798 status = -ENODEV;
2799 }
b01b03f3
AS
2800
2801 if (status) {
2802 dev_dbg(hub->intfdev,
2803 "port %d status %04x.%04x after resume, %d\n",
2804 port1, portchange, portstatus, status);
2805 } else if (udev->reset_resume) {
2806
2807 /* Late port handoff can set status-change bits */
2808 if (portchange & USB_PORT_STAT_C_CONNECTION)
ad493e5e 2809 usb_clear_port_feature(hub->hdev, port1,
b01b03f3
AS
2810 USB_PORT_FEAT_C_CONNECTION);
2811 if (portchange & USB_PORT_STAT_C_ENABLE)
ad493e5e 2812 usb_clear_port_feature(hub->hdev, port1,
b01b03f3
AS
2813 USB_PORT_FEAT_C_ENABLE);
2814 }
2815
2816 return status;
2817}
2818
f74631e3
SS
2819int usb_disable_ltm(struct usb_device *udev)
2820{
2821 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
2822
2823 /* Check if the roothub and device supports LTM. */
2824 if (!usb_device_supports_ltm(hcd->self.root_hub) ||
2825 !usb_device_supports_ltm(udev))
2826 return 0;
2827
2828 /* Clear Feature LTM Enable can only be sent if the device is
2829 * configured.
2830 */
2831 if (!udev->actconfig)
2832 return 0;
2833
2834 return usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
2835 USB_REQ_CLEAR_FEATURE, USB_RECIP_DEVICE,
2836 USB_DEVICE_LTM_ENABLE, 0, NULL, 0,
2837 USB_CTRL_SET_TIMEOUT);
2838}
2839EXPORT_SYMBOL_GPL(usb_disable_ltm);
2840
2841void usb_enable_ltm(struct usb_device *udev)
2842{
2843 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
2844
2845 /* Check if the roothub and device supports LTM. */
2846 if (!usb_device_supports_ltm(hcd->self.root_hub) ||
2847 !usb_device_supports_ltm(udev))
2848 return;
2849
2850 /* Set Feature LTM Enable can only be sent if the device is
2851 * configured.
2852 */
2853 if (!udev->actconfig)
2854 return;
2855
2856 usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
2857 USB_REQ_SET_FEATURE, USB_RECIP_DEVICE,
2858 USB_DEVICE_LTM_ENABLE, 0, NULL, 0,
2859 USB_CTRL_SET_TIMEOUT);
2860}
2861EXPORT_SYMBOL_GPL(usb_enable_ltm);
2862
54a3ac0c 2863/*
28e86165 2864 * usb_enable_remote_wakeup - enable remote wakeup for a device
54a3ac0c
LT
2865 * @udev: target device
2866 *
28e86165
AS
2867 * For USB-2 devices: Set the device's remote wakeup feature.
2868 *
2869 * For USB-3 devices: Assume there's only one function on the device and
2870 * enable remote wake for the first interface. FIXME if the interface
2871 * association descriptor shows there's more than one function.
54a3ac0c 2872 */
28e86165 2873static int usb_enable_remote_wakeup(struct usb_device *udev)
54a3ac0c 2874{
28e86165
AS
2875 if (udev->speed < USB_SPEED_SUPER)
2876 return usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
2877 USB_REQ_SET_FEATURE, USB_RECIP_DEVICE,
2878 USB_DEVICE_REMOTE_WAKEUP, 0, NULL, 0,
2879 USB_CTRL_SET_TIMEOUT);
2880 else
2881 return usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
2882 USB_REQ_SET_FEATURE, USB_RECIP_INTERFACE,
2883 USB_INTRF_FUNC_SUSPEND,
2884 USB_INTRF_FUNC_SUSPEND_RW |
2885 USB_INTRF_FUNC_SUSPEND_LP,
2886 NULL, 0, USB_CTRL_SET_TIMEOUT);
2887}
2888
2889/*
2890 * usb_disable_remote_wakeup - disable remote wakeup for a device
2891 * @udev: target device
2892 *
2893 * For USB-2 devices: Clear the device's remote wakeup feature.
2894 *
2895 * For USB-3 devices: Assume there's only one function on the device and
2896 * disable remote wake for the first interface. FIXME if the interface
2897 * association descriptor shows there's more than one function.
2898 */
2899static int usb_disable_remote_wakeup(struct usb_device *udev)
2900{
2901 if (udev->speed < USB_SPEED_SUPER)
2902 return usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
2903 USB_REQ_CLEAR_FEATURE, USB_RECIP_DEVICE,
2904 USB_DEVICE_REMOTE_WAKEUP, 0, NULL, 0,
2905 USB_CTRL_SET_TIMEOUT);
2906 else
2907 return usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
54a3ac0c
LT
2908 USB_REQ_CLEAR_FEATURE, USB_RECIP_INTERFACE,
2909 USB_INTRF_FUNC_SUSPEND, 0, NULL, 0,
2910 USB_CTRL_SET_TIMEOUT);
2911}
1da177e4 2912
e583d9db
AS
2913/* Count of wakeup-enabled devices at or below udev */
2914static unsigned wakeup_enabled_descendants(struct usb_device *udev)
2915{
2916 struct usb_hub *hub = usb_hub_to_struct_hub(udev);
2917
2918 return udev->do_remote_wakeup +
2919 (hub ? hub->wakeup_enabled_descendants : 0);
2920}
2921
1da177e4 2922/*
624d6c07
AS
2923 * usb_port_suspend - suspend a usb device's upstream port
2924 * @udev: device that's no longer in active use, not a root hub
2925 * Context: must be able to sleep; device not locked; pm locks held
2926 *
2927 * Suspends a USB device that isn't in active use, conserving power.
2928 * Devices may wake out of a suspend, if anything important happens,
2929 * using the remote wakeup mechanism. They may also be taken out of
2930 * suspend by the host, using usb_port_resume(). It's also routine
2931 * to disconnect devices while they are suspended.
2932 *
2933 * This only affects the USB hardware for a device; its interfaces
2934 * (and, for hubs, child devices) must already have been suspended.
2935 *
1da177e4
LT
2936 * Selective port suspend reduces power; most suspended devices draw
2937 * less than 500 uA. It's also used in OTG, along with remote wakeup.
2938 * All devices below the suspended port are also suspended.
2939 *
2940 * Devices leave suspend state when the host wakes them up. Some devices
2941 * also support "remote wakeup", where the device can activate the USB
2942 * tree above them to deliver data, such as a keypress or packet. In
2943 * some cases, this wakes the USB host.
624d6c07
AS
2944 *
2945 * Suspending OTG devices may trigger HNP, if that's been enabled
2946 * between a pair of dual-role devices. That will change roles, such
2947 * as from A-Host to A-Peripheral or from B-Host back to B-Peripheral.
2948 *
2949 * Devices on USB hub ports have only one "suspend" state, corresponding
2950 * to ACPI D2, "may cause the device to lose some context".
2951 * State transitions include:
2952 *
2953 * - suspend, resume ... when the VBUS power link stays live
2954 * - suspend, disconnect ... VBUS lost
2955 *
2956 * Once VBUS drop breaks the circuit, the port it's using has to go through
2957 * normal re-enumeration procedures, starting with enabling VBUS power.
2958 * Other than re-initializing the hub (plug/unplug, except for root hubs),
2959 * Linux (2.6) currently has NO mechanisms to initiate that: no khubd
2960 * timer, no SRP, no requests through sysfs.
2961 *
e583d9db
AS
2962 * If Runtime PM isn't enabled or used, non-SuperSpeed devices may not get
2963 * suspended until their bus goes into global suspend (i.e., the root
0aa2832d
AS
2964 * hub is suspended). Nevertheless, we change @udev->state to
2965 * USB_STATE_SUSPENDED as this is the device's "logical" state. The actual
2966 * upstream port setting is stored in @udev->port_is_suspended.
624d6c07
AS
2967 *
2968 * Returns 0 on success, else negative errno.
1da177e4 2969 */
65bfd296 2970int usb_port_suspend(struct usb_device *udev, pm_message_t msg)
1da177e4 2971{
ad493e5e
LT
2972 struct usb_hub *hub = usb_hub_to_struct_hub(udev->parent);
2973 struct usb_port *port_dev = hub->ports[udev->portnum - 1];
624d6c07
AS
2974 int port1 = udev->portnum;
2975 int status;
0aa2832d 2976 bool really_suspend = true;
1da177e4 2977
1da177e4
LT
2978 /* enable remote wakeup when appropriate; this lets the device
2979 * wake up the upstream hub (including maybe the root hub).
2980 *
2981 * NOTE: OTG devices may issue remote wakeup (or SRP) even when
2982 * we don't explicitly enable it here.
2983 */
645daaab 2984 if (udev->do_remote_wakeup) {
28e86165 2985 status = usb_enable_remote_wakeup(udev);
0c487206 2986 if (status) {
624d6c07
AS
2987 dev_dbg(&udev->dev, "won't remote wakeup, status %d\n",
2988 status);
0c487206 2989 /* bail if autosuspend is requested */
5b1b0b81 2990 if (PMSG_IS_AUTO(msg))
4fae6f0f 2991 goto err_wakeup;
0c487206 2992 }
1da177e4
LT
2993 }
2994
65580b43
AX
2995 /* disable USB2 hardware LPM */
2996 if (udev->usb2_hw_lpm_enabled == 1)
2997 usb_set_usb2_hardware_lpm(udev, 0);
2998
f74631e3 2999 if (usb_disable_ltm(udev)) {
4fae6f0f
AS
3000 dev_err(&udev->dev, "Failed to disable LTM before suspend\n.");
3001 status = -ENOMEM;
3002 if (PMSG_IS_AUTO(msg))
3003 goto err_ltm;
f74631e3 3004 }
8306095f 3005 if (usb_unlocked_disable_lpm(udev)) {
4fae6f0f
AS
3006 dev_err(&udev->dev, "Failed to disable LPM before suspend\n.");
3007 status = -ENOMEM;
3008 if (PMSG_IS_AUTO(msg))
3009 goto err_lpm3;
8306095f
SS
3010 }
3011
1da177e4 3012 /* see 7.1.7.6 */
a7114230 3013 if (hub_is_superspeed(hub->hdev))
c2f60db7 3014 status = hub_set_port_link_state(hub, port1, USB_SS_PORT_LS_U3);
e583d9db 3015
0aa2832d
AS
3016 /*
3017 * For system suspend, we do not need to enable the suspend feature
3018 * on individual USB-2 ports. The devices will automatically go
3019 * into suspend a few ms after the root hub stops sending packets.
3020 * The USB 2.0 spec calls this "global suspend".
e583d9db
AS
3021 *
3022 * However, many USB hubs have a bug: They don't relay wakeup requests
3023 * from a downstream port if the port's suspend feature isn't on.
3024 * Therefore we will turn on the suspend feature if udev or any of its
3025 * descendants is enabled for remote wakeup.
0aa2832d 3026 */
e583d9db
AS
3027 else if (PMSG_IS_AUTO(msg) || wakeup_enabled_descendants(udev) > 0)
3028 status = set_port_feature(hub->hdev, port1,
3029 USB_PORT_FEAT_SUSPEND);
0aa2832d
AS
3030 else {
3031 really_suspend = false;
3032 status = 0;
3033 }
1da177e4 3034 if (status) {
624d6c07
AS
3035 dev_dbg(hub->intfdev, "can't suspend port %d, status %d\n",
3036 port1, status);
cbb33004 3037
4fae6f0f
AS
3038 /* Try to enable USB3 LPM and LTM again */
3039 usb_unlocked_enable_lpm(udev);
3040 err_lpm3:
3041 usb_enable_ltm(udev);
3042 err_ltm:
c3e751e4
AX
3043 /* Try to enable USB2 hardware LPM again */
3044 if (udev->usb2_hw_lpm_capable == 1)
3045 usb_set_usb2_hardware_lpm(udev, 1);
3046
4fae6f0f
AS
3047 if (udev->do_remote_wakeup)
3048 (void) usb_disable_remote_wakeup(udev);
3049 err_wakeup:
8306095f 3050
cbb33004 3051 /* System sleep transitions should never fail */
5b1b0b81 3052 if (!PMSG_IS_AUTO(msg))
cbb33004 3053 status = 0;
1da177e4 3054 } else {
30b1a7a3
AS
3055 dev_dbg(&udev->dev, "usb %ssuspend, wakeup %d\n",
3056 (PMSG_IS_AUTO(msg) ? "auto-" : ""),
3057 udev->do_remote_wakeup);
0aa2832d
AS
3058 if (really_suspend) {
3059 udev->port_is_suspended = 1;
e583d9db
AS
3060
3061 /* device has up to 10 msec to fully suspend */
0aa2832d
AS
3062 msleep(10);
3063 }
e583d9db 3064 usb_set_device_state(udev, USB_STATE_SUSPENDED);
1da177e4 3065 }
ad493e5e 3066
4fae6f0f 3067 if (status == 0 && !udev->do_remote_wakeup && udev->persist_enabled) {
98a4f1ff
LT
3068 pm_runtime_put_sync(&port_dev->dev);
3069 port_dev->did_runtime_put = true;
ad493e5e
LT
3070 }
3071
c08512c7 3072 usb_mark_last_busy(hub->hdev);
1da177e4
LT
3073 return status;
3074}
3075
1da177e4 3076/*
390a8c34
DB
3077 * If the USB "suspend" state is in use (rather than "global suspend"),
3078 * many devices will be individually taken out of suspend state using
54515fe5 3079 * special "resume" signaling. This routine kicks in shortly after
1da177e4
LT
3080 * hardware resume signaling is finished, either because of selective
3081 * resume (by host) or remote wakeup (by device) ... now see what changed
3082 * in the tree that's rooted at this device.
54515fe5
AS
3083 *
3084 * If @udev->reset_resume is set then the device is reset before the
3085 * status check is done.
1da177e4 3086 */
140d8f68 3087static int finish_port_resume(struct usb_device *udev)
1da177e4 3088{
54515fe5 3089 int status = 0;
07e72b95 3090 u16 devstatus = 0;
1da177e4
LT
3091
3092 /* caller owns the udev device lock */
b9cef6c3
WF
3093 dev_dbg(&udev->dev, "%s\n",
3094 udev->reset_resume ? "finish reset-resume" : "finish resume");
1da177e4
LT
3095
3096 /* usb ch9 identifies four variants of SUSPENDED, based on what
3097 * state the device resumes to. Linux currently won't see the
3098 * first two on the host side; they'd be inside hub_port_init()
3099 * during many timeouts, but khubd can't suspend until later.
3100 */
3101 usb_set_device_state(udev, udev->actconfig
3102 ? USB_STATE_CONFIGURED
3103 : USB_STATE_ADDRESS);
1da177e4 3104
54515fe5
AS
3105 /* 10.5.4.5 says not to reset a suspended port if the attached
3106 * device is enabled for remote wakeup. Hence the reset
3107 * operation is carried out here, after the port has been
3108 * resumed.
3109 */
1d10255c
AS
3110 if (udev->reset_resume) {
3111 /*
3112 * If the device morphs or switches modes when it is reset,
3113 * we don't want to perform a reset-resume. We'll fail the
3114 * resume, which will cause a logical disconnect, and then
3115 * the device will be rediscovered.
3116 */
86c57edf 3117 retry_reset_resume:
1d10255c
AS
3118 if (udev->quirks & USB_QUIRK_RESET)
3119 status = -ENODEV;
3120 else
3121 status = usb_reset_and_verify_device(udev);
3122 }
54515fe5 3123
469271f8
MB
3124 /* 10.5.4.5 says be sure devices in the tree are still there.
3125 * For now let's assume the device didn't go crazy on resume,
1da177e4
LT
3126 * and device drivers will know about any resume quirks.
3127 */
54515fe5 3128 if (status == 0) {
46dede46 3129 devstatus = 0;
54515fe5 3130 status = usb_get_status(udev, USB_RECIP_DEVICE, 0, &devstatus);
86c57edf
AS
3131
3132 /* If a normal resume failed, try doing a reset-resume */
3133 if (status && !udev->reset_resume && udev->persist_enabled) {
3134 dev_dbg(&udev->dev, "retry with reset-resume\n");
3135 udev->reset_resume = 1;
3136 goto retry_reset_resume;
3137 }
54515fe5 3138 }
b40b7a90 3139
624d6c07
AS
3140 if (status) {
3141 dev_dbg(&udev->dev, "gone after usb resume? status %d\n",
3142 status);
07e72b95
ON
3143 /*
3144 * There are a few quirky devices which violate the standard
3145 * by claiming to have remote wakeup enabled after a reset,
3146 * which crash if the feature is cleared, hence check for
3147 * udev->reset_resume
3148 */
3149 } else if (udev->actconfig && !udev->reset_resume) {
28e86165 3150 if (udev->speed < USB_SPEED_SUPER) {
54a3ac0c 3151 if (devstatus & (1 << USB_DEVICE_REMOTE_WAKEUP))
28e86165 3152 status = usb_disable_remote_wakeup(udev);
54a3ac0c
LT
3153 } else {
3154 status = usb_get_status(udev, USB_RECIP_INTERFACE, 0,
3155 &devstatus);
54a3ac0c
LT
3156 if (!status && devstatus & (USB_INTRF_STAT_FUNC_RW_CAP
3157 | USB_INTRF_STAT_FUNC_RW))
28e86165 3158 status = usb_disable_remote_wakeup(udev);
4bf0ba86 3159 }
54a3ac0c
LT
3160
3161 if (status)
3162 dev_dbg(&udev->dev,
3163 "disable remote wakeup, status %d\n",
3164 status);
1da177e4 3165 status = 0;
1da177e4
LT
3166 }
3167 return status;
3168}
3169
624d6c07
AS
3170/*
3171 * usb_port_resume - re-activate a suspended usb device's upstream port
3172 * @udev: device to re-activate, not a root hub
3173 * Context: must be able to sleep; device not locked; pm locks held
3174 *
3175 * This will re-activate the suspended device, increasing power usage
3176 * while letting drivers communicate again with its endpoints.
3177 * USB resume explicitly guarantees that the power session between
3178 * the host and the device is the same as it was when the device
3179 * suspended.
3180 *
feccc30d
AS
3181 * If @udev->reset_resume is set then this routine won't check that the
3182 * port is still enabled. Furthermore, finish_port_resume() above will
54515fe5
AS
3183 * reset @udev. The end result is that a broken power session can be
3184 * recovered and @udev will appear to persist across a loss of VBUS power.
3185 *
3186 * For example, if a host controller doesn't maintain VBUS suspend current
3187 * during a system sleep or is reset when the system wakes up, all the USB
3188 * power sessions below it will be broken. This is especially troublesome
3189 * for mass-storage devices containing mounted filesystems, since the
3190 * device will appear to have disconnected and all the memory mappings
3191 * to it will be lost. Using the USB_PERSIST facility, the device can be
3192 * made to appear as if it had not disconnected.
3193 *
742120c6 3194 * This facility can be dangerous. Although usb_reset_and_verify_device() makes
feccc30d 3195 * every effort to insure that the same device is present after the
54515fe5
AS
3196 * reset as before, it cannot provide a 100% guarantee. Furthermore it's
3197 * quite possible for a device to remain unaltered but its media to be
3198 * changed. If the user replaces a flash memory card while the system is
3199 * asleep, he will have only himself to blame when the filesystem on the
3200 * new card is corrupted and the system crashes.
3201 *
624d6c07
AS
3202 * Returns 0 on success, else negative errno.
3203 */
65bfd296 3204int usb_port_resume(struct usb_device *udev, pm_message_t msg)
1da177e4 3205{
ad493e5e
LT
3206 struct usb_hub *hub = usb_hub_to_struct_hub(udev->parent);
3207 struct usb_port *port_dev = hub->ports[udev->portnum - 1];
624d6c07
AS
3208 int port1 = udev->portnum;
3209 int status;
3210 u16 portchange, portstatus;
d25450c6 3211
ad493e5e
LT
3212 if (port_dev->did_runtime_put) {
3213 status = pm_runtime_get_sync(&port_dev->dev);
3214 port_dev->did_runtime_put = false;
3215 if (status < 0) {
3216 dev_dbg(&udev->dev, "can't resume usb port, status %d\n",
3217 status);
3218 return status;
3219 }
3220 }
3221
d25450c6
AS
3222 /* Skip the initial Clear-Suspend step for a remote wakeup */
3223 status = hub_port_status(hub, port1, &portstatus, &portchange);
0ed9a57e 3224 if (status == 0 && !port_is_suspended(hub, portstatus))
d25450c6 3225 goto SuspendCleared;
1da177e4 3226
781b2137 3227 /* dev_dbg(hub->intfdev, "resume port %d\n", port1); */
1da177e4 3228
d5cbad4b
AS
3229 set_bit(port1, hub->busy_bits);
3230
1da177e4 3231 /* see 7.1.7.7; affects power usage, but not budgeting */
a7114230 3232 if (hub_is_superspeed(hub->hdev))
c2f60db7 3233 status = hub_set_port_link_state(hub, port1, USB_SS_PORT_LS_U0);
a7114230 3234 else
ad493e5e 3235 status = usb_clear_port_feature(hub->hdev,
a7114230 3236 port1, USB_PORT_FEAT_SUSPEND);
1da177e4 3237 if (status) {
624d6c07
AS
3238 dev_dbg(hub->intfdev, "can't resume port %d, status %d\n",
3239 port1, status);
1da177e4 3240 } else {
1da177e4 3241 /* drive resume for at least 20 msec */
686314cf 3242 dev_dbg(&udev->dev, "usb %sresume\n",
5b1b0b81 3243 (PMSG_IS_AUTO(msg) ? "auto-" : ""));
1da177e4
LT
3244 msleep(25);
3245
1da177e4
LT
3246 /* Virtual root hubs can trigger on GET_PORT_STATUS to
3247 * stop resume signaling. Then finish the resume
3248 * sequence.
3249 */
d25450c6 3250 status = hub_port_status(hub, port1, &portstatus, &portchange);
54515fe5 3251
b01b03f3
AS
3252 /* TRSMRCY = 10 msec */
3253 msleep(10);
3254 }
3255
54515fe5 3256 SuspendCleared:
b01b03f3 3257 if (status == 0) {
bfd1e910 3258 udev->port_is_suspended = 0;
a7114230
AX
3259 if (hub_is_superspeed(hub->hdev)) {
3260 if (portchange & USB_PORT_STAT_C_LINK_STATE)
ad493e5e 3261 usb_clear_port_feature(hub->hdev, port1,
a7114230
AX
3262 USB_PORT_FEAT_C_PORT_LINK_STATE);
3263 } else {
3264 if (portchange & USB_PORT_STAT_C_SUSPEND)
ad493e5e 3265 usb_clear_port_feature(hub->hdev, port1,
a7114230
AX
3266 USB_PORT_FEAT_C_SUSPEND);
3267 }
1da177e4 3268 }
1da177e4 3269
d5cbad4b 3270 clear_bit(port1, hub->busy_bits);
d5cbad4b 3271
b01b03f3
AS
3272 status = check_port_resume_type(udev,
3273 hub, port1, status, portchange, portstatus);
54515fe5
AS
3274 if (status == 0)
3275 status = finish_port_resume(udev);
3276 if (status < 0) {
3277 dev_dbg(&udev->dev, "can't resume, status %d\n", status);
3278 hub_port_logical_disconnect(hub, port1);
65580b43
AX
3279 } else {
3280 /* Try to enable USB2 hardware LPM */
3281 if (udev->usb2_hw_lpm_capable == 1)
3282 usb_set_usb2_hardware_lpm(udev, 1);
8306095f 3283
f74631e3
SS
3284 /* Try to enable USB3 LTM and LPM */
3285 usb_enable_ltm(udev);
8306095f 3286 usb_unlocked_enable_lpm(udev);
54515fe5 3287 }
65580b43 3288
1da177e4
LT
3289 return status;
3290}
3291
84ebc102
AS
3292#ifdef CONFIG_PM_RUNTIME
3293
8808f00c 3294/* caller has locked udev */
0534d468 3295int usb_remote_wakeup(struct usb_device *udev)
1da177e4
LT
3296{
3297 int status = 0;
3298
1da177e4 3299 if (udev->state == USB_STATE_SUSPENDED) {
645daaab 3300 dev_dbg(&udev->dev, "usb %sresume\n", "wakeup-");
9bbdf1e0
AS
3301 status = usb_autoresume_device(udev);
3302 if (status == 0) {
3303 /* Let the drivers do their thing, then... */
3304 usb_autosuspend_device(udev);
3305 }
1da177e4 3306 }
1da177e4
LT
3307 return status;
3308}
3309
d388dab7
AS
3310#endif
3311
e6f30dea
ML
3312static int check_ports_changed(struct usb_hub *hub)
3313{
3314 int port1;
3315
3316 for (port1 = 1; port1 <= hub->hdev->maxchild; ++port1) {
3317 u16 portstatus, portchange;
3318 int status;
3319
3320 status = hub_port_status(hub, port1, &portstatus, &portchange);
3321 if (!status && portchange)
3322 return 1;
3323 }
3324 return 0;
3325}
3326
db690874 3327static int hub_suspend(struct usb_interface *intf, pm_message_t msg)
1da177e4
LT
3328{
3329 struct usb_hub *hub = usb_get_intfdata (intf);
3330 struct usb_device *hdev = hub->hdev;
3331 unsigned port1;
4296c70a 3332 int status;
1da177e4 3333
e583d9db
AS
3334 /*
3335 * Warn if children aren't already suspended.
3336 * Also, add up the number of wakeup-enabled descendants.
3337 */
3338 hub->wakeup_enabled_descendants = 0;
1da177e4
LT
3339 for (port1 = 1; port1 <= hdev->maxchild; port1++) {
3340 struct usb_device *udev;
3341
ff823c79 3342 udev = hub->ports[port1 - 1]->child;
6840d255 3343 if (udev && udev->can_submit) {
025d4430
RB
3344 dev_warn(&intf->dev, "port %d not suspended yet\n",
3345 port1);
5b1b0b81 3346 if (PMSG_IS_AUTO(msg))
cbb33004 3347 return -EBUSY;
c9f89fa4 3348 }
e583d9db
AS
3349 if (udev)
3350 hub->wakeup_enabled_descendants +=
3351 wakeup_enabled_descendants(udev);
1da177e4 3352 }
e6f30dea
ML
3353
3354 if (hdev->do_remote_wakeup && hub->quirk_check_port_auto_suspend) {
3355 /* check if there are changes pending on hub ports */
3356 if (check_ports_changed(hub)) {
3357 if (PMSG_IS_AUTO(msg))
3358 return -EBUSY;
3359 pm_wakeup_event(&hdev->dev, 2000);
3360 }
3361 }
3362
4296c70a
SS
3363 if (hub_is_superspeed(hdev) && hdev->do_remote_wakeup) {
3364 /* Enable hub to send remote wakeup for all ports. */
3365 for (port1 = 1; port1 <= hdev->maxchild; port1++) {
3366 status = set_port_feature(hdev,
3367 port1 |
3368 USB_PORT_FEAT_REMOTE_WAKE_CONNECT |
3369 USB_PORT_FEAT_REMOTE_WAKE_DISCONNECT |
3370 USB_PORT_FEAT_REMOTE_WAKE_OVER_CURRENT,
3371 USB_PORT_FEAT_REMOTE_WAKE_MASK);
3372 }
3373 }
1da177e4 3374
441b62c1 3375 dev_dbg(&intf->dev, "%s\n", __func__);
40f122f3 3376
12f1ff83 3377 /* stop khubd and related activity */
4330354f 3378 hub_quiesce(hub, HUB_SUSPEND);
b6f6436d 3379 return 0;
1da177e4
LT
3380}
3381
3382static int hub_resume(struct usb_interface *intf)
3383{
5e6effae 3384 struct usb_hub *hub = usb_get_intfdata(intf);
40f122f3 3385
5e6effae 3386 dev_dbg(&intf->dev, "%s\n", __func__);
f2835219 3387 hub_activate(hub, HUB_RESUME);
1da177e4
LT
3388 return 0;
3389}
3390
b41a60ec 3391static int hub_reset_resume(struct usb_interface *intf)
f07600cf 3392{
b41a60ec 3393 struct usb_hub *hub = usb_get_intfdata(intf);
f07600cf 3394
5e6effae 3395 dev_dbg(&intf->dev, "%s\n", __func__);
f2835219 3396 hub_activate(hub, HUB_RESET_RESUME);
f07600cf
AS
3397 return 0;
3398}
3399
54515fe5
AS
3400/**
3401 * usb_root_hub_lost_power - called by HCD if the root hub lost Vbus power
3402 * @rhdev: struct usb_device for the root hub
3403 *
3404 * The USB host controller driver calls this function when its root hub
3405 * is resumed and Vbus power has been interrupted or the controller
feccc30d
AS
3406 * has been reset. The routine marks @rhdev as having lost power.
3407 * When the hub driver is resumed it will take notice and carry out
3408 * power-session recovery for all the "USB-PERSIST"-enabled child devices;
3409 * the others will be disconnected.
54515fe5
AS
3410 */
3411void usb_root_hub_lost_power(struct usb_device *rhdev)
3412{
3413 dev_warn(&rhdev->dev, "root hub lost power or was reset\n");
3414 rhdev->reset_resume = 1;
3415}
3416EXPORT_SYMBOL_GPL(usb_root_hub_lost_power);
3417
1ea7e0e8
SS
3418static const char * const usb3_lpm_names[] = {
3419 "U0",
3420 "U1",
3421 "U2",
3422 "U3",
3423};
3424
3425/*
3426 * Send a Set SEL control transfer to the device, prior to enabling
3427 * device-initiated U1 or U2. This lets the device know the exit latencies from
3428 * the time the device initiates a U1 or U2 exit, to the time it will receive a
3429 * packet from the host.
3430 *
3431 * This function will fail if the SEL or PEL values for udev are greater than
3432 * the maximum allowed values for the link state to be enabled.
3433 */
3434static int usb_req_set_sel(struct usb_device *udev, enum usb3_link_state state)
3435{
3436 struct usb_set_sel_req *sel_values;
3437 unsigned long long u1_sel;
3438 unsigned long long u1_pel;
3439 unsigned long long u2_sel;
3440 unsigned long long u2_pel;
3441 int ret;
3442
38d7f688
XR
3443 if (udev->state != USB_STATE_CONFIGURED)
3444 return 0;
3445
1ea7e0e8
SS
3446 /* Convert SEL and PEL stored in ns to us */
3447 u1_sel = DIV_ROUND_UP(udev->u1_params.sel, 1000);
3448 u1_pel = DIV_ROUND_UP(udev->u1_params.pel, 1000);
3449 u2_sel = DIV_ROUND_UP(udev->u2_params.sel, 1000);
3450 u2_pel = DIV_ROUND_UP(udev->u2_params.pel, 1000);
3451
3452 /*
3453 * Make sure that the calculated SEL and PEL values for the link
3454 * state we're enabling aren't bigger than the max SEL/PEL
3455 * value that will fit in the SET SEL control transfer.
3456 * Otherwise the device would get an incorrect idea of the exit
3457 * latency for the link state, and could start a device-initiated
3458 * U1/U2 when the exit latencies are too high.
3459 */
3460 if ((state == USB3_LPM_U1 &&
3461 (u1_sel > USB3_LPM_MAX_U1_SEL_PEL ||
3462 u1_pel > USB3_LPM_MAX_U1_SEL_PEL)) ||
3463 (state == USB3_LPM_U2 &&
3464 (u2_sel > USB3_LPM_MAX_U2_SEL_PEL ||
3465 u2_pel > USB3_LPM_MAX_U2_SEL_PEL))) {
1510a1a2 3466 dev_dbg(&udev->dev, "Device-initiated %s disabled due to long SEL %llu us or PEL %llu us\n",
1ea7e0e8
SS
3467 usb3_lpm_names[state], u1_sel, u1_pel);
3468 return -EINVAL;
3469 }
3470
3471 /*
3472 * If we're enabling device-initiated LPM for one link state,
3473 * but the other link state has a too high SEL or PEL value,
3474 * just set those values to the max in the Set SEL request.
3475 */
3476 if (u1_sel > USB3_LPM_MAX_U1_SEL_PEL)
3477 u1_sel = USB3_LPM_MAX_U1_SEL_PEL;
3478
3479 if (u1_pel > USB3_LPM_MAX_U1_SEL_PEL)
3480 u1_pel = USB3_LPM_MAX_U1_SEL_PEL;
3481
3482 if (u2_sel > USB3_LPM_MAX_U2_SEL_PEL)
3483 u2_sel = USB3_LPM_MAX_U2_SEL_PEL;
3484
3485 if (u2_pel > USB3_LPM_MAX_U2_SEL_PEL)
3486 u2_pel = USB3_LPM_MAX_U2_SEL_PEL;
3487
3488 /*
3489 * usb_enable_lpm() can be called as part of a failed device reset,
3490 * which may be initiated by an error path of a mass storage driver.
3491 * Therefore, use GFP_NOIO.
3492 */
3493 sel_values = kmalloc(sizeof *(sel_values), GFP_NOIO);
3494 if (!sel_values)
3495 return -ENOMEM;
3496
3497 sel_values->u1_sel = u1_sel;
3498 sel_values->u1_pel = u1_pel;
3499 sel_values->u2_sel = cpu_to_le16(u2_sel);
3500 sel_values->u2_pel = cpu_to_le16(u2_pel);
3501
3502 ret = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
3503 USB_REQ_SET_SEL,
3504 USB_RECIP_DEVICE,
3505 0, 0,
3506 sel_values, sizeof *(sel_values),
3507 USB_CTRL_SET_TIMEOUT);
3508 kfree(sel_values);
3509 return ret;
3510}
3511
3512/*
3513 * Enable or disable device-initiated U1 or U2 transitions.
3514 */
3515static int usb_set_device_initiated_lpm(struct usb_device *udev,
3516 enum usb3_link_state state, bool enable)
3517{
3518 int ret;
3519 int feature;
3520
3521 switch (state) {
3522 case USB3_LPM_U1:
3523 feature = USB_DEVICE_U1_ENABLE;
3524 break;
3525 case USB3_LPM_U2:
3526 feature = USB_DEVICE_U2_ENABLE;
3527 break;
3528 default:
3529 dev_warn(&udev->dev, "%s: Can't %s non-U1 or U2 state.\n",
3530 __func__, enable ? "enable" : "disable");
3531 return -EINVAL;
3532 }
3533
3534 if (udev->state != USB_STATE_CONFIGURED) {
3535 dev_dbg(&udev->dev, "%s: Can't %s %s state "
3536 "for unconfigured device.\n",
3537 __func__, enable ? "enable" : "disable",
3538 usb3_lpm_names[state]);
3539 return 0;
3540 }
3541
3542 if (enable) {
1ea7e0e8
SS
3543 /*
3544 * Now send the control transfer to enable device-initiated LPM
3545 * for either U1 or U2.
3546 */
3547 ret = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
3548 USB_REQ_SET_FEATURE,
3549 USB_RECIP_DEVICE,
3550 feature,
3551 0, NULL, 0,
3552 USB_CTRL_SET_TIMEOUT);
3553 } else {
3554 ret = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
3555 USB_REQ_CLEAR_FEATURE,
3556 USB_RECIP_DEVICE,
3557 feature,
3558 0, NULL, 0,
3559 USB_CTRL_SET_TIMEOUT);
3560 }
3561 if (ret < 0) {
3562 dev_warn(&udev->dev, "%s of device-initiated %s failed.\n",
3563 enable ? "Enable" : "Disable",
3564 usb3_lpm_names[state]);
3565 return -EBUSY;
3566 }
3567 return 0;
3568}
3569
3570static int usb_set_lpm_timeout(struct usb_device *udev,
3571 enum usb3_link_state state, int timeout)
3572{
3573 int ret;
3574 int feature;
3575
3576 switch (state) {
3577 case USB3_LPM_U1:
3578 feature = USB_PORT_FEAT_U1_TIMEOUT;
3579 break;
3580 case USB3_LPM_U2:
3581 feature = USB_PORT_FEAT_U2_TIMEOUT;
3582 break;
3583 default:
3584 dev_warn(&udev->dev, "%s: Can't set timeout for non-U1 or U2 state.\n",
3585 __func__);
3586 return -EINVAL;
3587 }
3588
3589 if (state == USB3_LPM_U1 && timeout > USB3_LPM_U1_MAX_TIMEOUT &&
3590 timeout != USB3_LPM_DEVICE_INITIATED) {
3591 dev_warn(&udev->dev, "Failed to set %s timeout to 0x%x, "
3592 "which is a reserved value.\n",
3593 usb3_lpm_names[state], timeout);
3594 return -EINVAL;
3595 }
3596
3597 ret = set_port_feature(udev->parent,
3598 USB_PORT_LPM_TIMEOUT(timeout) | udev->portnum,
3599 feature);
3600 if (ret < 0) {
3601 dev_warn(&udev->dev, "Failed to set %s timeout to 0x%x,"
3602 "error code %i\n", usb3_lpm_names[state],
3603 timeout, ret);
3604 return -EBUSY;
3605 }
3606 if (state == USB3_LPM_U1)
3607 udev->u1_params.timeout = timeout;
3608 else
3609 udev->u2_params.timeout = timeout;
3610 return 0;
3611}
3612
3613/*
3614 * Enable the hub-initiated U1/U2 idle timeouts, and enable device-initiated
3615 * U1/U2 entry.
3616 *
3617 * We will attempt to enable U1 or U2, but there are no guarantees that the
3618 * control transfers to set the hub timeout or enable device-initiated U1/U2
3619 * will be successful.
3620 *
3621 * If we cannot set the parent hub U1/U2 timeout, we attempt to let the xHCI
3622 * driver know about it. If that call fails, it should be harmless, and just
3623 * take up more slightly more bus bandwidth for unnecessary U1/U2 exit latency.
3624 */
3625static void usb_enable_link_state(struct usb_hcd *hcd, struct usb_device *udev,
3626 enum usb3_link_state state)
3627{
65a95b75 3628 int timeout, ret;
ae8963ad
SS
3629 __u8 u1_mel = udev->bos->ss_cap->bU1devExitLat;
3630 __le16 u2_mel = udev->bos->ss_cap->bU2DevExitLat;
3631
3632 /* If the device says it doesn't have *any* exit latency to come out of
3633 * U1 or U2, it's probably lying. Assume it doesn't implement that link
3634 * state.
3635 */
3636 if ((state == USB3_LPM_U1 && u1_mel == 0) ||
3637 (state == USB3_LPM_U2 && u2_mel == 0))
3638 return;
1ea7e0e8 3639
65a95b75
SS
3640 /*
3641 * First, let the device know about the exit latencies
3642 * associated with the link state we're about to enable.
3643 */
3644 ret = usb_req_set_sel(udev, state);
3645 if (ret < 0) {
3646 dev_warn(&udev->dev, "Set SEL for device-initiated %s failed.\n",
3647 usb3_lpm_names[state]);
3648 return;
3649 }
3650
1ea7e0e8
SS
3651 /* We allow the host controller to set the U1/U2 timeout internally
3652 * first, so that it can change its schedule to account for the
3653 * additional latency to send data to a device in a lower power
3654 * link state.
3655 */
3656 timeout = hcd->driver->enable_usb3_lpm_timeout(hcd, udev, state);
3657
3658 /* xHCI host controller doesn't want to enable this LPM state. */
3659 if (timeout == 0)
3660 return;
3661
3662 if (timeout < 0) {
3663 dev_warn(&udev->dev, "Could not enable %s link state, "
3664 "xHCI error %i.\n", usb3_lpm_names[state],
3665 timeout);
3666 return;
3667 }
3668
3669 if (usb_set_lpm_timeout(udev, state, timeout))
3670 /* If we can't set the parent hub U1/U2 timeout,
3671 * device-initiated LPM won't be allowed either, so let the xHCI
3672 * host know that this link state won't be enabled.
3673 */
3674 hcd->driver->disable_usb3_lpm_timeout(hcd, udev, state);
3675
3676 /* Only a configured device will accept the Set Feature U1/U2_ENABLE */
3677 else if (udev->actconfig)
3678 usb_set_device_initiated_lpm(udev, state, true);
3679
3680}
3681
3682/*
3683 * Disable the hub-initiated U1/U2 idle timeouts, and disable device-initiated
3684 * U1/U2 entry.
3685 *
3686 * If this function returns -EBUSY, the parent hub will still allow U1/U2 entry.
3687 * If zero is returned, the parent will not allow the link to go into U1/U2.
3688 *
3689 * If zero is returned, device-initiated U1/U2 entry may still be enabled, but
3690 * it won't have an effect on the bus link state because the parent hub will
3691 * still disallow device-initiated U1/U2 entry.
3692 *
3693 * If zero is returned, the xHCI host controller may still think U1/U2 entry is
3694 * possible. The result will be slightly more bus bandwidth will be taken up
3695 * (to account for U1/U2 exit latency), but it should be harmless.
3696 */
3697static int usb_disable_link_state(struct usb_hcd *hcd, struct usb_device *udev,
3698 enum usb3_link_state state)
3699{
3700 int feature;
3701
3702 switch (state) {
3703 case USB3_LPM_U1:
3704 feature = USB_PORT_FEAT_U1_TIMEOUT;
3705 break;
3706 case USB3_LPM_U2:
3707 feature = USB_PORT_FEAT_U2_TIMEOUT;
3708 break;
3709 default:
3710 dev_warn(&udev->dev, "%s: Can't disable non-U1 or U2 state.\n",
3711 __func__);
3712 return -EINVAL;
3713 }
3714
3715 if (usb_set_lpm_timeout(udev, state, 0))
3716 return -EBUSY;
3717
3718 usb_set_device_initiated_lpm(udev, state, false);
3719
3720 if (hcd->driver->disable_usb3_lpm_timeout(hcd, udev, state))
3721 dev_warn(&udev->dev, "Could not disable xHCI %s timeout, "
3722 "bus schedule bandwidth may be impacted.\n",
3723 usb3_lpm_names[state]);
3724 return 0;
3725}
3726
3727/*
3728 * Disable hub-initiated and device-initiated U1 and U2 entry.
3729 * Caller must own the bandwidth_mutex.
3730 *
3731 * This will call usb_enable_lpm() on failure, which will decrement
3732 * lpm_disable_count, and will re-enable LPM if lpm_disable_count reaches zero.
3733 */
3734int usb_disable_lpm(struct usb_device *udev)
3735{
3736 struct usb_hcd *hcd;
3737
3738 if (!udev || !udev->parent ||
3739 udev->speed != USB_SPEED_SUPER ||
3740 !udev->lpm_capable)
3741 return 0;
3742
3743 hcd = bus_to_hcd(udev->bus);
3744 if (!hcd || !hcd->driver->disable_usb3_lpm_timeout)
3745 return 0;
3746
3747 udev->lpm_disable_count++;
55558c33 3748 if ((udev->u1_params.timeout == 0 && udev->u2_params.timeout == 0))
1ea7e0e8
SS
3749 return 0;
3750
3751 /* If LPM is enabled, attempt to disable it. */
3752 if (usb_disable_link_state(hcd, udev, USB3_LPM_U1))
3753 goto enable_lpm;
3754 if (usb_disable_link_state(hcd, udev, USB3_LPM_U2))
3755 goto enable_lpm;
3756
3757 return 0;
3758
3759enable_lpm:
3760 usb_enable_lpm(udev);
3761 return -EBUSY;
3762}
3763EXPORT_SYMBOL_GPL(usb_disable_lpm);
3764
3765/* Grab the bandwidth_mutex before calling usb_disable_lpm() */
3766int usb_unlocked_disable_lpm(struct usb_device *udev)
3767{
3768 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
3769 int ret;
3770
3771 if (!hcd)
3772 return -EINVAL;
3773
3774 mutex_lock(hcd->bandwidth_mutex);
3775 ret = usb_disable_lpm(udev);
3776 mutex_unlock(hcd->bandwidth_mutex);
3777
3778 return ret;
3779}
3780EXPORT_SYMBOL_GPL(usb_unlocked_disable_lpm);
3781
3782/*
3783 * Attempt to enable device-initiated and hub-initiated U1 and U2 entry. The
3784 * xHCI host policy may prevent U1 or U2 from being enabled.
3785 *
3786 * Other callers may have disabled link PM, so U1 and U2 entry will be disabled
3787 * until the lpm_disable_count drops to zero. Caller must own the
3788 * bandwidth_mutex.
3789 */
3790void usb_enable_lpm(struct usb_device *udev)
3791{
3792 struct usb_hcd *hcd;
3793
3794 if (!udev || !udev->parent ||
3795 udev->speed != USB_SPEED_SUPER ||
3796 !udev->lpm_capable)
3797 return;
3798
3799 udev->lpm_disable_count--;
3800 hcd = bus_to_hcd(udev->bus);
3801 /* Double check that we can both enable and disable LPM.
3802 * Device must be configured to accept set feature U1/U2 timeout.
3803 */
3804 if (!hcd || !hcd->driver->enable_usb3_lpm_timeout ||
3805 !hcd->driver->disable_usb3_lpm_timeout)
3806 return;
3807
3808 if (udev->lpm_disable_count > 0)
3809 return;
3810
3811 usb_enable_link_state(hcd, udev, USB3_LPM_U1);
3812 usb_enable_link_state(hcd, udev, USB3_LPM_U2);
3813}
3814EXPORT_SYMBOL_GPL(usb_enable_lpm);
3815
3816/* Grab the bandwidth_mutex before calling usb_enable_lpm() */
3817void usb_unlocked_enable_lpm(struct usb_device *udev)
3818{
3819 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
3820
3821 if (!hcd)
3822 return;
3823
3824 mutex_lock(hcd->bandwidth_mutex);
3825 usb_enable_lpm(udev);
3826 mutex_unlock(hcd->bandwidth_mutex);
3827}
3828EXPORT_SYMBOL_GPL(usb_unlocked_enable_lpm);
3829
3830
d388dab7
AS
3831#else /* CONFIG_PM */
3832
f07600cf
AS
3833#define hub_suspend NULL
3834#define hub_resume NULL
3835#define hub_reset_resume NULL
1ea7e0e8
SS
3836
3837int usb_disable_lpm(struct usb_device *udev)
3838{
3839 return 0;
3840}
e9261fb6 3841EXPORT_SYMBOL_GPL(usb_disable_lpm);
1ea7e0e8
SS
3842
3843void usb_enable_lpm(struct usb_device *udev) { }
e9261fb6 3844EXPORT_SYMBOL_GPL(usb_enable_lpm);
1ea7e0e8
SS
3845
3846int usb_unlocked_disable_lpm(struct usb_device *udev)
3847{
3848 return 0;
3849}
e9261fb6 3850EXPORT_SYMBOL_GPL(usb_unlocked_disable_lpm);
1ea7e0e8
SS
3851
3852void usb_unlocked_enable_lpm(struct usb_device *udev) { }
e9261fb6 3853EXPORT_SYMBOL_GPL(usb_unlocked_enable_lpm);
f74631e3
SS
3854
3855int usb_disable_ltm(struct usb_device *udev)
3856{
3857 return 0;
3858}
3859EXPORT_SYMBOL_GPL(usb_disable_ltm);
3860
3861void usb_enable_ltm(struct usb_device *udev) { }
3862EXPORT_SYMBOL_GPL(usb_enable_ltm);
c4b51a43
AS
3863
3864#endif /* CONFIG_PM */
d388dab7 3865
1da177e4
LT
3866
3867/* USB 2.0 spec, 7.1.7.3 / fig 7-29:
3868 *
3869 * Between connect detection and reset signaling there must be a delay
3870 * of 100ms at least for debounce and power-settling. The corresponding
3871 * timer shall restart whenever the downstream port detects a disconnect.
469271f8 3872 *
1da177e4
LT
3873 * Apparently there are some bluetooth and irda-dongles and a number of
3874 * low-speed devices for which this debounce period may last over a second.
3875 * Not covered by the spec - but easy to deal with.
3876 *
3877 * This implementation uses a 1500ms total debounce timeout; if the
3878 * connection isn't stable by then it returns -ETIMEDOUT. It checks
3879 * every 25ms for transient disconnects. When the port status has been
3880 * unchanged for 100ms it returns the port status.
3881 */
ad493e5e 3882int hub_port_debounce(struct usb_hub *hub, int port1, bool must_be_connected)
1da177e4
LT
3883{
3884 int ret;
3885 int total_time, stable_time = 0;
3886 u16 portchange, portstatus;
3887 unsigned connection = 0xffff;
3888
3889 for (total_time = 0; ; total_time += HUB_DEBOUNCE_STEP) {
3890 ret = hub_port_status(hub, port1, &portstatus, &portchange);
3891 if (ret < 0)
3892 return ret;
3893
3894 if (!(portchange & USB_PORT_STAT_C_CONNECTION) &&
3895 (portstatus & USB_PORT_STAT_CONNECTION) == connection) {
ad493e5e
LT
3896 if (!must_be_connected ||
3897 (connection == USB_PORT_STAT_CONNECTION))
3898 stable_time += HUB_DEBOUNCE_STEP;
1da177e4
LT
3899 if (stable_time >= HUB_DEBOUNCE_STABLE)
3900 break;
3901 } else {
3902 stable_time = 0;
3903 connection = portstatus & USB_PORT_STAT_CONNECTION;
3904 }
3905
3906 if (portchange & USB_PORT_STAT_C_CONNECTION) {
ad493e5e 3907 usb_clear_port_feature(hub->hdev, port1,
1da177e4
LT
3908 USB_PORT_FEAT_C_CONNECTION);
3909 }
3910
3911 if (total_time >= HUB_DEBOUNCE_TIMEOUT)
3912 break;
3913 msleep(HUB_DEBOUNCE_STEP);
3914 }
3915
3916 dev_dbg (hub->intfdev,
3917 "debounce: port %d: total %dms stable %dms status 0x%x\n",
3918 port1, total_time, stable_time, portstatus);
3919
3920 if (stable_time < HUB_DEBOUNCE_STABLE)
3921 return -ETIMEDOUT;
3922 return portstatus;
3923}
3924
fc721f51 3925void usb_ep0_reinit(struct usb_device *udev)
1da177e4 3926{
ddeac4e7
AS
3927 usb_disable_endpoint(udev, 0 + USB_DIR_IN, true);
3928 usb_disable_endpoint(udev, 0 + USB_DIR_OUT, true);
2caf7fcd 3929 usb_enable_endpoint(udev, &udev->ep0, true);
1da177e4 3930}
fc721f51 3931EXPORT_SYMBOL_GPL(usb_ep0_reinit);
1da177e4
LT
3932
3933#define usb_sndaddr0pipe() (PIPE_CONTROL << 30)
3934#define usb_rcvaddr0pipe() ((PIPE_CONTROL << 30) | USB_DIR_IN)
3935
4326ed0b 3936static int hub_set_address(struct usb_device *udev, int devnum)
1da177e4
LT
3937{
3938 int retval;
c6515272 3939 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
1da177e4 3940
c6515272
SS
3941 /*
3942 * The host controller will choose the device address,
3943 * instead of the core having chosen it earlier
3944 */
3945 if (!hcd->driver->address_device && devnum <= 1)
1da177e4
LT
3946 return -EINVAL;
3947 if (udev->state == USB_STATE_ADDRESS)
3948 return 0;
3949 if (udev->state != USB_STATE_DEFAULT)
3950 return -EINVAL;
c8d4af8e 3951 if (hcd->driver->address_device)
c6515272 3952 retval = hcd->driver->address_device(hcd, udev);
c8d4af8e 3953 else
c6515272
SS
3954 retval = usb_control_msg(udev, usb_sndaddr0pipe(),
3955 USB_REQ_SET_ADDRESS, 0, devnum, 0,
3956 NULL, 0, USB_CTRL_SET_TIMEOUT);
1da177e4 3957 if (retval == 0) {
3b29b68b 3958 update_devnum(udev, devnum);
4953d141 3959 /* Device now using proper address. */
1da177e4 3960 usb_set_device_state(udev, USB_STATE_ADDRESS);
fc721f51 3961 usb_ep0_reinit(udev);
1da177e4
LT
3962 }
3963 return retval;
3964}
3965
890dae88
MN
3966/*
3967 * There are reports of USB 3.0 devices that say they support USB 2.0 Link PM
3968 * when they're plugged into a USB 2.0 port, but they don't work when LPM is
3969 * enabled.
3970 *
3971 * Only enable USB 2.0 Link PM if the port is internal (hardwired), or the
3972 * device says it supports the new USB 2.0 Link PM errata by setting the BESL
3973 * support bit in the BOS descriptor.
3974 */
3975static void hub_set_initial_usb2_lpm_policy(struct usb_device *udev)
3976{
3977 int connect_type;
3978
3979 if (!udev->usb2_hw_lpm_capable)
3980 return;
3981
3982 connect_type = usb_get_hub_port_connect_type(udev->parent,
3983 udev->portnum);
3984
23c05820 3985 if ((udev->bos->ext_cap->bmAttributes & cpu_to_le32(USB_BESL_SUPPORT)) ||
890dae88
MN
3986 connect_type == USB_PORT_CONNECT_TYPE_HARD_WIRED) {
3987 udev->usb2_hw_lpm_allowed = 1;
3988 usb_set_usb2_hardware_lpm(udev, 1);
3989 }
3990}
3991
48fc7dbd
DW
3992static int hub_enable_device(struct usb_device *udev)
3993{
3994 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
3995
3996 if (!hcd->driver->enable_device)
3997 return 0;
3998 if (udev->state == USB_STATE_ADDRESS)
3999 return 0;
4000 if (udev->state != USB_STATE_DEFAULT)
4001 return -EINVAL;
4002
4003 return hcd->driver->enable_device(hcd, udev);
4004}
4005
1da177e4
LT
4006/* Reset device, (re)assign address, get device descriptor.
4007 * Device connection must be stable, no more debouncing needed.
4008 * Returns device in USB_STATE_ADDRESS, except on error.
4009 *
4010 * If this is called for an already-existing device (as part of
742120c6 4011 * usb_reset_and_verify_device), the caller must own the device lock. For a
1da177e4
LT
4012 * newly detected device that is not accessible through any global
4013 * pointers, it's not necessary to lock the device.
4014 */
4015static int
4016hub_port_init (struct usb_hub *hub, struct usb_device *udev, int port1,
4017 int retry_counter)
4018{
1da177e4 4019 struct usb_device *hdev = hub->hdev;
e7b77172 4020 struct usb_hcd *hcd = bus_to_hcd(hdev->bus);
1da177e4
LT
4021 int i, j, retval;
4022 unsigned delay = HUB_SHORT_RESET_TIME;
4023 enum usb_device_speed oldspeed = udev->speed;
e538dfda 4024 const char *speed;
4326ed0b 4025 int devnum = udev->devnum;
1da177e4
LT
4026
4027 /* root hub ports have a slightly longer reset period
4028 * (from USB 2.0 spec, section 7.1.7.5)
4029 */
4030 if (!hdev->parent) {
4031 delay = HUB_ROOT_RESET_TIME;
4032 if (port1 == hdev->bus->otg_port)
4033 hdev->bus->b_hnp_enable = 0;
4034 }
4035
4036 /* Some low speed devices have problems with the quick delay, so */
4037 /* be a bit pessimistic with those devices. RHbug #23670 */
4038 if (oldspeed == USB_SPEED_LOW)
4039 delay = HUB_LONG_RESET_TIME;
4040
6fecd4f2 4041 mutex_lock(&hdev->bus->usb_address0_mutex);
1da177e4 4042
07194ab7
LT
4043 /* Reset the device; full speed may morph to high speed */
4044 /* FIXME a USB 2.0 device may morph into SuperSpeed on reset. */
75d7cf72 4045 retval = hub_port_reset(hub, port1, udev, delay, false);
07194ab7
LT
4046 if (retval < 0) /* error or disconnect */
4047 goto fail;
4048 /* success, speed is known */
4049
1da177e4
LT
4050 retval = -ENODEV;
4051
4052 if (oldspeed != USB_SPEED_UNKNOWN && oldspeed != udev->speed) {
4053 dev_dbg(&udev->dev, "device reset changed speed!\n");
4054 goto fail;
4055 }
4056 oldspeed = udev->speed;
4326ed0b 4057
1da177e4
LT
4058 /* USB 2.0 section 5.5.3 talks about ep0 maxpacket ...
4059 * it's fixed size except for full speed devices.
5bb6e0ae
IPG
4060 * For Wireless USB devices, ep0 max packet is always 512 (tho
4061 * reported as 0xff in the device descriptor). WUSB1.0[4.8.1].
1da177e4
LT
4062 */
4063 switch (udev->speed) {
6b403b02 4064 case USB_SPEED_SUPER:
551cdbbe 4065 case USB_SPEED_WIRELESS: /* fixed at 512 */
551509d2 4066 udev->ep0.desc.wMaxPacketSize = cpu_to_le16(512);
5bb6e0ae 4067 break;
1da177e4 4068 case USB_SPEED_HIGH: /* fixed at 64 */
551509d2 4069 udev->ep0.desc.wMaxPacketSize = cpu_to_le16(64);
1da177e4
LT
4070 break;
4071 case USB_SPEED_FULL: /* 8, 16, 32, or 64 */
4072 /* to determine the ep0 maxpacket size, try to read
4073 * the device descriptor to get bMaxPacketSize0 and
4074 * then correct our initial guess.
4075 */
551509d2 4076 udev->ep0.desc.wMaxPacketSize = cpu_to_le16(64);
1da177e4
LT
4077 break;
4078 case USB_SPEED_LOW: /* fixed at 8 */
551509d2 4079 udev->ep0.desc.wMaxPacketSize = cpu_to_le16(8);
1da177e4
LT
4080 break;
4081 default:
4082 goto fail;
4083 }
e538dfda
MN
4084
4085 if (udev->speed == USB_SPEED_WIRELESS)
4086 speed = "variable speed Wireless";
4087 else
4088 speed = usb_speed_string(udev->speed);
4089
c6515272
SS
4090 if (udev->speed != USB_SPEED_SUPER)
4091 dev_info(&udev->dev,
e538dfda
MN
4092 "%s %s USB device number %d using %s\n",
4093 (udev->config) ? "reset" : "new", speed,
3b29b68b 4094 devnum, udev->bus->controller->driver->name);
1da177e4
LT
4095
4096 /* Set up TT records, if needed */
4097 if (hdev->tt) {
4098 udev->tt = hdev->tt;
4099 udev->ttport = hdev->ttport;
4100 } else if (udev->speed != USB_SPEED_HIGH
4101 && hdev->speed == USB_SPEED_HIGH) {
d199c96d
AS
4102 if (!hub->tt.hub) {
4103 dev_err(&udev->dev, "parent hub has no TT\n");
4104 retval = -EINVAL;
4105 goto fail;
4106 }
1da177e4
LT
4107 udev->tt = &hub->tt;
4108 udev->ttport = port1;
4109 }
469271f8 4110
1da177e4
LT
4111 /* Why interleave GET_DESCRIPTOR and SET_ADDRESS this way?
4112 * Because device hardware and firmware is sometimes buggy in
4113 * this area, and this is how Linux has done it for ages.
4114 * Change it cautiously.
4115 *
48fc7dbd 4116 * NOTE: If use_new_scheme() is true we will start by issuing
1da177e4
LT
4117 * a 64-byte GET_DESCRIPTOR request. This is what Windows does,
4118 * so it may help with some non-standards-compliant devices.
4119 * Otherwise we start with SET_ADDRESS and then try to read the
4120 * first 8 bytes of the device descriptor to get the ep0 maxpacket
4121 * value.
4122 */
4123 for (i = 0; i < GET_DESCRIPTOR_TRIES; (++i, msleep(100))) {
48fc7dbd
DW
4124 bool did_new_scheme = false;
4125
4126 if (use_new_scheme(udev, retry_counter)) {
1da177e4
LT
4127 struct usb_device_descriptor *buf;
4128 int r = 0;
4129
48fc7dbd
DW
4130 did_new_scheme = true;
4131 retval = hub_enable_device(udev);
938569eb
ON
4132 if (retval < 0) {
4133 dev_err(&udev->dev,
4134 "hub failed to enable device, error %d\n",
4135 retval);
48fc7dbd 4136 goto fail;
938569eb 4137 }
48fc7dbd 4138
1da177e4
LT
4139#define GET_DESCRIPTOR_BUFSIZE 64
4140 buf = kmalloc(GET_DESCRIPTOR_BUFSIZE, GFP_NOIO);
4141 if (!buf) {
4142 retval = -ENOMEM;
4143 continue;
4144 }
4145
b89ee19a
AS
4146 /* Retry on all errors; some devices are flakey.
4147 * 255 is for WUSB devices, we actually need to use
4148 * 512 (WUSB1.0[4.8.1]).
1da177e4
LT
4149 */
4150 for (j = 0; j < 3; ++j) {
4151 buf->bMaxPacketSize0 = 0;
4152 r = usb_control_msg(udev, usb_rcvaddr0pipe(),
4153 USB_REQ_GET_DESCRIPTOR, USB_DIR_IN,
4154 USB_DT_DEVICE << 8, 0,
4155 buf, GET_DESCRIPTOR_BUFSIZE,
fd7c519d 4156 initial_descriptor_timeout);
1da177e4 4157 switch (buf->bMaxPacketSize0) {
5bb6e0ae 4158 case 8: case 16: case 32: case 64: case 255:
1da177e4
LT
4159 if (buf->bDescriptorType ==
4160 USB_DT_DEVICE) {
4161 r = 0;
4162 break;
4163 }
4164 /* FALL THROUGH */
4165 default:
4166 if (r == 0)
4167 r = -EPROTO;
4168 break;
4169 }
4170 if (r == 0)
4171 break;
4172 }
4173 udev->descriptor.bMaxPacketSize0 =
4174 buf->bMaxPacketSize0;
4175 kfree(buf);
4176
75d7cf72 4177 retval = hub_port_reset(hub, port1, udev, delay, false);
1da177e4
LT
4178 if (retval < 0) /* error or disconnect */
4179 goto fail;
4180 if (oldspeed != udev->speed) {
4181 dev_dbg(&udev->dev,
4182 "device reset changed speed!\n");
4183 retval = -ENODEV;
4184 goto fail;
4185 }
4186 if (r) {
e9e88fb7
AS
4187 if (r != -ENODEV)
4188 dev_err(&udev->dev, "device descriptor read/64, error %d\n",
4189 r);
1da177e4
LT
4190 retval = -EMSGSIZE;
4191 continue;
4192 }
4193#undef GET_DESCRIPTOR_BUFSIZE
4194 }
4195
469271f8
MB
4196 /*
4197 * If device is WUSB, we already assigned an
4198 * unauthorized address in the Connect Ack sequence;
4199 * authorization will assign the final address.
4200 */
c6515272 4201 if (udev->wusb == 0) {
6c529cdc
IPG
4202 for (j = 0; j < SET_ADDRESS_TRIES; ++j) {
4203 retval = hub_set_address(udev, devnum);
4204 if (retval >= 0)
4205 break;
4206 msleep(200);
4207 }
4208 if (retval < 0) {
e9e88fb7
AS
4209 if (retval != -ENODEV)
4210 dev_err(&udev->dev, "device not accepting address %d, error %d\n",
4211 devnum, retval);
6c529cdc
IPG
4212 goto fail;
4213 }
c6515272
SS
4214 if (udev->speed == USB_SPEED_SUPER) {
4215 devnum = udev->devnum;
4216 dev_info(&udev->dev,
3b29b68b 4217 "%s SuperSpeed USB device number %d using %s\n",
c6515272 4218 (udev->config) ? "reset" : "new",
3b29b68b 4219 devnum, udev->bus->controller->driver->name);
c6515272 4220 }
6c529cdc
IPG
4221
4222 /* cope with hardware quirkiness:
4223 * - let SET_ADDRESS settle, some device hardware wants it
4224 * - read ep0 maxpacket even for high and low speed,
4225 */
4226 msleep(10);
48fc7dbd
DW
4227 /* use_new_scheme() checks the speed which may have
4228 * changed since the initial look so we cache the result
4229 * in did_new_scheme
4230 */
4231 if (did_new_scheme)
1da177e4 4232 break;
469271f8 4233 }
1da177e4
LT
4234
4235 retval = usb_get_device_descriptor(udev, 8);
4236 if (retval < 8) {
e9e88fb7
AS
4237 if (retval != -ENODEV)
4238 dev_err(&udev->dev,
b9cef6c3
WF
4239 "device descriptor read/8, error %d\n",
4240 retval);
1da177e4
LT
4241 if (retval >= 0)
4242 retval = -EMSGSIZE;
4243 } else {
4244 retval = 0;
4245 break;
4246 }
4247 }
4248 if (retval)
4249 goto fail;
4250
b76baa81 4251 if (hcd->phy && !hdev->parent)
ac96511b 4252 usb_phy_notify_connect(hcd->phy, udev->speed);
b76baa81 4253
d8aec3db
EF
4254 /*
4255 * Some superspeed devices have finished the link training process
4256 * and attached to a superspeed hub port, but the device descriptor
4257 * got from those devices show they aren't superspeed devices. Warm
4258 * reset the port attached by the devices can fix them.
4259 */
4260 if ((udev->speed == USB_SPEED_SUPER) &&
4261 (le16_to_cpu(udev->descriptor.bcdUSB) < 0x0300)) {
4262 dev_err(&udev->dev, "got a wrong device descriptor, "
4263 "warm reset device\n");
4264 hub_port_reset(hub, port1, udev,
4265 HUB_BH_RESET_TIME, true);
4266 retval = -EINVAL;
4267 goto fail;
4268 }
4269
6b403b02
SS
4270 if (udev->descriptor.bMaxPacketSize0 == 0xff ||
4271 udev->speed == USB_SPEED_SUPER)
4272 i = 512;
4273 else
4274 i = udev->descriptor.bMaxPacketSize0;
29cc8897 4275 if (usb_endpoint_maxp(&udev->ep0.desc) != i) {
56626a72 4276 if (udev->speed == USB_SPEED_LOW ||
1da177e4 4277 !(i == 8 || i == 16 || i == 32 || i == 64)) {
56626a72 4278 dev_err(&udev->dev, "Invalid ep0 maxpacket: %d\n", i);
1da177e4
LT
4279 retval = -EMSGSIZE;
4280 goto fail;
4281 }
56626a72
AS
4282 if (udev->speed == USB_SPEED_FULL)
4283 dev_dbg(&udev->dev, "ep0 maxpacket = %d\n", i);
4284 else
4285 dev_warn(&udev->dev, "Using ep0 maxpacket: %d\n", i);
1da177e4 4286 udev->ep0.desc.wMaxPacketSize = cpu_to_le16(i);
fc721f51 4287 usb_ep0_reinit(udev);
1da177e4 4288 }
469271f8 4289
1da177e4
LT
4290 retval = usb_get_device_descriptor(udev, USB_DT_DEVICE_SIZE);
4291 if (retval < (signed)sizeof(udev->descriptor)) {
e9e88fb7
AS
4292 if (retval != -ENODEV)
4293 dev_err(&udev->dev, "device descriptor read/all, error %d\n",
4294 retval);
1da177e4
LT
4295 if (retval >= 0)
4296 retval = -ENOMSG;
4297 goto fail;
4298 }
4299
1ff4df56
AX
4300 if (udev->wusb == 0 && le16_to_cpu(udev->descriptor.bcdUSB) >= 0x0201) {
4301 retval = usb_get_bos_descriptor(udev);
51e0a012 4302 if (!retval) {
d9b2099c 4303 udev->lpm_capable = usb_device_supports_lpm(udev);
51e0a012
SS
4304 usb_set_lpm_parameters(udev);
4305 }
1ff4df56 4306 }
3148bf04 4307
1da177e4 4308 retval = 0;
48f24970
AD
4309 /* notify HCD that we have a device connected and addressed */
4310 if (hcd->driver->update_device)
4311 hcd->driver->update_device(hcd, udev);
890dae88 4312 hub_set_initial_usb2_lpm_policy(udev);
1da177e4 4313fail:
4326ed0b 4314 if (retval) {
1da177e4 4315 hub_port_disable(hub, port1, 0);
3b29b68b 4316 update_devnum(udev, devnum); /* for disconnect processing */
4326ed0b 4317 }
6fecd4f2 4318 mutex_unlock(&hdev->bus->usb_address0_mutex);
1da177e4
LT
4319 return retval;
4320}
4321
4322static void
4323check_highspeed (struct usb_hub *hub, struct usb_device *udev, int port1)
4324{
4325 struct usb_qualifier_descriptor *qual;
4326 int status;
4327
e94b1766 4328 qual = kmalloc (sizeof *qual, GFP_KERNEL);
1da177e4
LT
4329 if (qual == NULL)
4330 return;
4331
4332 status = usb_get_descriptor (udev, USB_DT_DEVICE_QUALIFIER, 0,
4333 qual, sizeof *qual);
4334 if (status == sizeof *qual) {
4335 dev_info(&udev->dev, "not running at top speed; "
4336 "connect to a high speed hub\n");
4337 /* hub LEDs are probably harder to miss than syslog */
4338 if (hub->has_indicators) {
4339 hub->indicator[port1-1] = INDICATOR_GREEN_BLINK;
22f6a0f0
SD
4340 queue_delayed_work(system_power_efficient_wq,
4341 &hub->leds, 0);
1da177e4
LT
4342 }
4343 }
1bc3c9e1 4344 kfree(qual);
1da177e4
LT
4345}
4346
4347static unsigned
4348hub_power_remaining (struct usb_hub *hub)
4349{
4350 struct usb_device *hdev = hub->hdev;
4351 int remaining;
55c52718 4352 int port1;
1da177e4 4353
55c52718 4354 if (!hub->limited_power)
1da177e4
LT
4355 return 0;
4356
55c52718
AS
4357 remaining = hdev->bus_mA - hub->descriptor->bHubContrCurrent;
4358 for (port1 = 1; port1 <= hdev->maxchild; ++port1) {
ff823c79 4359 struct usb_device *udev = hub->ports[port1 - 1]->child;
55c52718 4360 int delta;
430ee58e 4361 unsigned unit_load;
1da177e4
LT
4362
4363 if (!udev)
4364 continue;
430ee58e
SAS
4365 if (hub_is_superspeed(udev))
4366 unit_load = 150;
4367 else
4368 unit_load = 100;
1da177e4 4369
430ee58e
SAS
4370 /*
4371 * Unconfigured devices may not use more than one unit load,
4372 * or 8mA for OTG ports
4373 */
1da177e4 4374 if (udev->actconfig)
8d8479db 4375 delta = usb_get_max_power(udev, udev->actconfig);
55c52718 4376 else if (port1 != udev->bus->otg_port || hdev->parent)
430ee58e 4377 delta = unit_load;
1da177e4 4378 else
55c52718
AS
4379 delta = 8;
4380 if (delta > hub->mA_per_port)
b9cef6c3
WF
4381 dev_warn(&udev->dev,
4382 "%dmA is over %umA budget for port %d!\n",
4383 delta, hub->mA_per_port, port1);
1da177e4
LT
4384 remaining -= delta;
4385 }
4386 if (remaining < 0) {
55c52718 4387 dev_warn(hub->intfdev, "%dmA over power budget!\n",
469271f8 4388 -remaining);
1da177e4
LT
4389 remaining = 0;
4390 }
4391 return remaining;
4392}
4393
4394/* Handle physical or logical connection change events.
4395 * This routine is called when:
4396 * a port connection-change occurs;
4397 * a port enable-change occurs (often caused by EMI);
742120c6 4398 * usb_reset_and_verify_device() encounters changed descriptors (as from
1da177e4
LT
4399 * a firmware download)
4400 * caller already locked the hub
4401 */
4402static void hub_port_connect_change(struct usb_hub *hub, int port1,
4403 u16 portstatus, u16 portchange)
4404{
4405 struct usb_device *hdev = hub->hdev;
4406 struct device *hub_dev = hub->intfdev;
90da096e 4407 struct usb_hcd *hcd = bus_to_hcd(hdev->bus);
24618b0c
AS
4408 unsigned wHubCharacteristics =
4409 le16_to_cpu(hub->descriptor->wHubCharacteristics);
8808f00c 4410 struct usb_device *udev;
1da177e4 4411 int status, i;
430ee58e 4412 unsigned unit_load;
24618b0c 4413
1da177e4
LT
4414 dev_dbg (hub_dev,
4415 "port %d, status %04x, change %04x, %s\n",
131dec34 4416 port1, portstatus, portchange, portspeed(hub, portstatus));
1da177e4
LT
4417
4418 if (hub->has_indicators) {
4419 set_port_led(hub, port1, HUB_LED_AUTO);
4420 hub->indicator[port1-1] = INDICATOR_AUTO;
4421 }
1da177e4
LT
4422
4423#ifdef CONFIG_USB_OTG
4424 /* during HNP, don't repeat the debounce */
4425 if (hdev->bus->is_b_host)
24618b0c
AS
4426 portchange &= ~(USB_PORT_STAT_C_CONNECTION |
4427 USB_PORT_STAT_C_ENABLE);
1da177e4
LT
4428#endif
4429
8808f00c 4430 /* Try to resuscitate an existing device */
ff823c79 4431 udev = hub->ports[port1 - 1]->child;
8808f00c
AS
4432 if ((portstatus & USB_PORT_STAT_CONNECTION) && udev &&
4433 udev->state != USB_STATE_NOTATTACHED) {
8808f00c
AS
4434 usb_lock_device(udev);
4435 if (portstatus & USB_PORT_STAT_ENABLE) {
4436 status = 0; /* Nothing to do */
8808f00c 4437
84ebc102 4438#ifdef CONFIG_PM_RUNTIME
5257d97a
AS
4439 } else if (udev->state == USB_STATE_SUSPENDED &&
4440 udev->persist_enabled) {
8808f00c
AS
4441 /* For a suspended device, treat this as a
4442 * remote wakeup event.
4443 */
0534d468 4444 status = usb_remote_wakeup(udev);
8808f00c
AS
4445#endif
4446
4447 } else {
5257d97a 4448 status = -ENODEV; /* Don't resuscitate */
8808f00c
AS
4449 }
4450 usb_unlock_device(udev);
4451
4452 if (status == 0) {
4453 clear_bit(port1, hub->change_bits);
4454 return;
4455 }
4456 }
4457
24618b0c 4458 /* Disconnect any existing devices under this port */
b76baa81
PC
4459 if (udev) {
4460 if (hcd->phy && !hdev->parent &&
4461 !(portstatus & USB_PORT_STAT_CONNECTION))
ac96511b 4462 usb_phy_notify_disconnect(hcd->phy, udev->speed);
ff823c79 4463 usb_disconnect(&hub->ports[port1 - 1]->child);
b76baa81 4464 }
24618b0c
AS
4465 clear_bit(port1, hub->change_bits);
4466
253e0572
AS
4467 /* We can forget about a "removed" device when there's a physical
4468 * disconnect or the connect status changes.
4469 */
4470 if (!(portstatus & USB_PORT_STAT_CONNECTION) ||
4471 (portchange & USB_PORT_STAT_C_CONNECTION))
4472 clear_bit(port1, hub->removed_bits);
4473
5257d97a
AS
4474 if (portchange & (USB_PORT_STAT_C_CONNECTION |
4475 USB_PORT_STAT_C_ENABLE)) {
ad493e5e 4476 status = hub_port_debounce_be_stable(hub, port1);
5257d97a 4477 if (status < 0) {
e9e88fb7 4478 if (status != -ENODEV && printk_ratelimit())
5257d97a
AS
4479 dev_err(hub_dev, "connect-debounce failed, "
4480 "port %d disabled\n", port1);
4481 portstatus &= ~USB_PORT_STAT_CONNECTION;
4482 } else {
4483 portstatus = status;
4484 }
4485 }
4486
253e0572
AS
4487 /* Return now if debouncing failed or nothing is connected or
4488 * the device was "removed".
4489 */
4490 if (!(portstatus & USB_PORT_STAT_CONNECTION) ||
4491 test_bit(port1, hub->removed_bits)) {
1da177e4
LT
4492
4493 /* maybe switch power back on (e.g. root hub was reset) */
74ad9bd2 4494 if ((wHubCharacteristics & HUB_CHAR_LPSM) < 2
0ed9a57e 4495 && !port_is_power_on(hub, portstatus))
1da177e4 4496 set_port_feature(hdev, port1, USB_PORT_FEAT_POWER);
5257d97a 4497
1da177e4 4498 if (portstatus & USB_PORT_STAT_ENABLE)
469271f8 4499 goto done;
1da177e4
LT
4500 return;
4501 }
430ee58e
SAS
4502 if (hub_is_superspeed(hub->hdev))
4503 unit_load = 150;
4504 else
4505 unit_load = 100;
1da177e4 4506
e9e88fb7 4507 status = 0;
1da177e4 4508 for (i = 0; i < SET_CONFIG_TRIES; i++) {
1da177e4
LT
4509
4510 /* reallocate for each attempt, since references
4511 * to the previous one can escape in various ways
4512 */
4513 udev = usb_alloc_dev(hdev, hdev->bus, port1);
4514 if (!udev) {
4515 dev_err (hub_dev,
4516 "couldn't allocate port %d usb_device\n",
4517 port1);
4518 goto done;
4519 }
4520
4521 usb_set_device_state(udev, USB_STATE_POWERED);
469271f8 4522 udev->bus_mA = hub->mA_per_port;
b6956ffa 4523 udev->level = hdev->level + 1;
8af548dc 4524 udev->wusb = hub_is_wusb(hub);
55c52718 4525
131dec34
SS
4526 /* Only USB 3.0 devices are connected to SuperSpeed hubs. */
4527 if (hub_is_superspeed(hub->hdev))
e7b77172
SS
4528 udev->speed = USB_SPEED_SUPER;
4529 else
4530 udev->speed = USB_SPEED_UNKNOWN;
4531
3b29b68b 4532 choose_devnum(udev);
c8d4af8e
AX
4533 if (udev->devnum <= 0) {
4534 status = -ENOTCONN; /* Don't retry */
4535 goto loop;
c6515272
SS
4536 }
4537
e7b77172 4538 /* reset (non-USB 3.0 devices) and get descriptor */
1da177e4
LT
4539 status = hub_port_init(hub, udev, port1, i);
4540 if (status < 0)
4541 goto loop;
4542
93362a87
PD
4543 usb_detect_quirks(udev);
4544 if (udev->quirks & USB_QUIRK_DELAY_INIT)
4545 msleep(1000);
4546
1da177e4
LT
4547 /* consecutive bus-powered hubs aren't reliable; they can
4548 * violate the voltage drop budget. if the new child has
4549 * a "powered" LED, users should notice we didn't enable it
4550 * (without reading syslog), even without per-port LEDs
4551 * on the parent.
4552 */
4553 if (udev->descriptor.bDeviceClass == USB_CLASS_HUB
430ee58e 4554 && udev->bus_mA <= unit_load) {
1da177e4
LT
4555 u16 devstat;
4556
4557 status = usb_get_status(udev, USB_RECIP_DEVICE, 0,
4558 &devstat);
15b7336e 4559 if (status) {
1da177e4
LT
4560 dev_dbg(&udev->dev, "get status %d ?\n", status);
4561 goto loop_disable;
4562 }
1da177e4
LT
4563 if ((devstat & (1 << USB_DEVICE_SELF_POWERED)) == 0) {
4564 dev_err(&udev->dev,
4565 "can't connect bus-powered hub "
4566 "to this port\n");
4567 if (hub->has_indicators) {
4568 hub->indicator[port1-1] =
4569 INDICATOR_AMBER_BLINK;
22f6a0f0
SD
4570 queue_delayed_work(
4571 system_power_efficient_wq,
4572 &hub->leds, 0);
1da177e4
LT
4573 }
4574 status = -ENOTCONN; /* Don't retry */
4575 goto loop_disable;
4576 }
4577 }
469271f8 4578
1da177e4
LT
4579 /* check for devices running slower than they could */
4580 if (le16_to_cpu(udev->descriptor.bcdUSB) >= 0x0200
4581 && udev->speed == USB_SPEED_FULL
4582 && highspeed_hubs != 0)
4583 check_highspeed (hub, udev, port1);
4584
fa286188 4585 /* Store the parent's children[] pointer. At this point
1da177e4
LT
4586 * udev becomes globally accessible, although presumably
4587 * no one will look at it until hdev is unlocked.
4588 */
1da177e4
LT
4589 status = 0;
4590
4591 /* We mustn't add new devices if the parent hub has
4592 * been disconnected; we would race with the
4593 * recursively_mark_NOTATTACHED() routine.
4594 */
4595 spin_lock_irq(&device_state_lock);
4596 if (hdev->state == USB_STATE_NOTATTACHED)
4597 status = -ENOTCONN;
4598 else
ff823c79 4599 hub->ports[port1 - 1]->child = udev;
1da177e4
LT
4600 spin_unlock_irq(&device_state_lock);
4601
4602 /* Run it through the hoops (find a driver, etc) */
4603 if (!status) {
4604 status = usb_new_device(udev);
4605 if (status) {
4606 spin_lock_irq(&device_state_lock);
ff823c79 4607 hub->ports[port1 - 1]->child = NULL;
1da177e4
LT
4608 spin_unlock_irq(&device_state_lock);
4609 }
4610 }
4611
1da177e4
LT
4612 if (status)
4613 goto loop_disable;
4614
4615 status = hub_power_remaining(hub);
4616 if (status)
55c52718 4617 dev_dbg(hub_dev, "%dmA power budget left\n", status);
1da177e4
LT
4618
4619 return;
4620
4621loop_disable:
4622 hub_port_disable(hub, port1, 1);
4623loop:
fc721f51 4624 usb_ep0_reinit(udev);
3b29b68b 4625 release_devnum(udev);
f7410ced 4626 hub_free_dev(udev);
1da177e4 4627 usb_put_dev(udev);
ffcdc18d 4628 if ((status == -ENOTCONN) || (status == -ENOTSUPP))
1da177e4
LT
4629 break;
4630 }
3a31155c
AS
4631 if (hub->hdev->parent ||
4632 !hcd->driver->port_handed_over ||
e9e88fb7
AS
4633 !(hcd->driver->port_handed_over)(hcd, port1)) {
4634 if (status != -ENOTCONN && status != -ENODEV)
4635 dev_err(hub_dev, "unable to enumerate USB device on port %d\n",
4636 port1);
4637 }
469271f8 4638
1da177e4
LT
4639done:
4640 hub_port_disable(hub, port1, 1);
90da096e
BR
4641 if (hcd->driver->relinquish_port && !hub->hdev->parent)
4642 hcd->driver->relinquish_port(hcd, port1);
1da177e4
LT
4643}
4644
714b07be
SS
4645/* Returns 1 if there was a remote wakeup and a connect status change. */
4646static int hub_handle_remote_wakeup(struct usb_hub *hub, unsigned int port,
72937e1e 4647 u16 portstatus, u16 portchange)
714b07be
SS
4648{
4649 struct usb_device *hdev;
4650 struct usb_device *udev;
4651 int connect_change = 0;
4652 int ret;
4653
4654 hdev = hub->hdev;
ff823c79 4655 udev = hub->ports[port - 1]->child;
4ee823b8
SS
4656 if (!hub_is_superspeed(hdev)) {
4657 if (!(portchange & USB_PORT_STAT_C_SUSPEND))
4658 return 0;
ad493e5e 4659 usb_clear_port_feature(hdev, port, USB_PORT_FEAT_C_SUSPEND);
4ee823b8
SS
4660 } else {
4661 if (!udev || udev->state != USB_STATE_SUSPENDED ||
72937e1e
SS
4662 (portstatus & USB_PORT_STAT_LINK_STATE) !=
4663 USB_SS_PORT_LS_U0)
4ee823b8
SS
4664 return 0;
4665 }
4666
714b07be
SS
4667 if (udev) {
4668 /* TRSMRCY = 10 msec */
4669 msleep(10);
4670
4671 usb_lock_device(udev);
4672 ret = usb_remote_wakeup(udev);
4673 usb_unlock_device(udev);
4674 if (ret < 0)
4675 connect_change = 1;
4676 } else {
4677 ret = -ENODEV;
4678 hub_port_disable(hub, port, 1);
4679 }
4680 dev_dbg(hub->intfdev, "resume on port %d, status %d\n",
4681 port, ret);
4682 return connect_change;
4683}
4684
1da177e4
LT
4685static void hub_events(void)
4686{
4687 struct list_head *tmp;
4688 struct usb_device *hdev;
4689 struct usb_interface *intf;
4690 struct usb_hub *hub;
4691 struct device *hub_dev;
4692 u16 hubstatus;
4693 u16 hubchange;
4694 u16 portstatus;
4695 u16 portchange;
4696 int i, ret;
4ee823b8 4697 int connect_change, wakeup_change;
1da177e4
LT
4698
4699 /*
4700 * We restart the list every time to avoid a deadlock with
4701 * deleting hubs downstream from this one. This should be
4702 * safe since we delete the hub from the event list.
4703 * Not the most efficient, but avoids deadlocks.
4704 */
4705 while (1) {
4706
4707 /* Grab the first entry at the beginning of the list */
4708 spin_lock_irq(&hub_event_lock);
4709 if (list_empty(&hub_event_list)) {
4710 spin_unlock_irq(&hub_event_lock);
4711 break;
4712 }
4713
4714 tmp = hub_event_list.next;
4715 list_del_init(tmp);
4716
4717 hub = list_entry(tmp, struct usb_hub, event_list);
e8054854
AS
4718 kref_get(&hub->kref);
4719 spin_unlock_irq(&hub_event_lock);
1da177e4 4720
e8054854
AS
4721 hdev = hub->hdev;
4722 hub_dev = hub->intfdev;
4723 intf = to_usb_interface(hub_dev);
40f122f3 4724 dev_dbg(hub_dev, "state %d ports %d chg %04x evt %04x\n",
3bbc47d8 4725 hdev->state, hdev->maxchild,
1da177e4
LT
4726 /* NOTE: expects max 15 ports... */
4727 (u16) hub->change_bits[0],
40f122f3 4728 (u16) hub->event_bits[0]);
1da177e4 4729
1da177e4
LT
4730 /* Lock the device, then check to see if we were
4731 * disconnected while waiting for the lock to succeed. */
06b84e8a 4732 usb_lock_device(hdev);
e8054854 4733 if (unlikely(hub->disconnected))
9bbdf1e0 4734 goto loop_disconnected;
1da177e4
LT
4735
4736 /* If the hub has died, clean up after it */
4737 if (hdev->state == USB_STATE_NOTATTACHED) {
7de18d8b 4738 hub->error = -ENODEV;
4330354f 4739 hub_quiesce(hub, HUB_DISCONNECT);
1da177e4
LT
4740 goto loop;
4741 }
4742
40f122f3
AS
4743 /* Autoresume */
4744 ret = usb_autopm_get_interface(intf);
4745 if (ret) {
4746 dev_dbg(hub_dev, "Can't autoresume: %d\n", ret);
4747 goto loop;
4748 }
a8e7c565 4749
40f122f3 4750 /* If this is an inactive hub, do nothing */
1da177e4 4751 if (hub->quiescing)
40f122f3 4752 goto loop_autopm;
1da177e4
LT
4753
4754 if (hub->error) {
4755 dev_dbg (hub_dev, "resetting for error %d\n",
4756 hub->error);
4757
742120c6 4758 ret = usb_reset_device(hdev);
1da177e4
LT
4759 if (ret) {
4760 dev_dbg (hub_dev,
4761 "error resetting hub: %d\n", ret);
40f122f3 4762 goto loop_autopm;
1da177e4
LT
4763 }
4764
4765 hub->nerrors = 0;
4766 hub->error = 0;
4767 }
4768
4769 /* deal with port status changes */
3bbc47d8 4770 for (i = 1; i <= hdev->maxchild; i++) {
a82b76f7
HG
4771 struct usb_device *udev = hub->ports[i - 1]->child;
4772
1da177e4
LT
4773 if (test_bit(i, hub->busy_bits))
4774 continue;
4775 connect_change = test_bit(i, hub->change_bits);
72937e1e 4776 wakeup_change = test_and_clear_bit(i, hub->wakeup_bits);
1da177e4 4777 if (!test_and_clear_bit(i, hub->event_bits) &&
4ee823b8 4778 !connect_change && !wakeup_change)
1da177e4
LT
4779 continue;
4780
4781 ret = hub_port_status(hub, i,
4782 &portstatus, &portchange);
4783 if (ret < 0)
4784 continue;
4785
1da177e4 4786 if (portchange & USB_PORT_STAT_C_CONNECTION) {
ad493e5e 4787 usb_clear_port_feature(hdev, i,
1da177e4
LT
4788 USB_PORT_FEAT_C_CONNECTION);
4789 connect_change = 1;
4790 }
4791
4792 if (portchange & USB_PORT_STAT_C_ENABLE) {
4793 if (!connect_change)
4794 dev_dbg (hub_dev,
4795 "port %d enable change, "
4796 "status %08x\n",
4797 i, portstatus);
ad493e5e 4798 usb_clear_port_feature(hdev, i,
1da177e4
LT
4799 USB_PORT_FEAT_C_ENABLE);
4800
4801 /*
4802 * EM interference sometimes causes badly
4803 * shielded USB devices to be shutdown by
4804 * the hub, this hack enables them again.
469271f8 4805 * Works at least with mouse driver.
1da177e4
LT
4806 */
4807 if (!(portstatus & USB_PORT_STAT_ENABLE)
4808 && !connect_change
ff823c79 4809 && hub->ports[i - 1]->child) {
1da177e4
LT
4810 dev_err (hub_dev,
4811 "port %i "
4812 "disabled by hub (EMI?), "
4813 "re-enabling...\n",
4814 i);
4815 connect_change = 1;
4816 }
4817 }
4818
72937e1e
SS
4819 if (hub_handle_remote_wakeup(hub, i,
4820 portstatus, portchange))
714b07be 4821 connect_change = 1;
8808f00c 4822
1da177e4 4823 if (portchange & USB_PORT_STAT_C_OVERCURRENT) {
752d57a8
PB
4824 u16 status = 0;
4825 u16 unused;
4826
4827 dev_dbg(hub_dev, "over-current change on port "
4828 "%d\n", i);
ad493e5e 4829 usb_clear_port_feature(hdev, i,
1da177e4 4830 USB_PORT_FEAT_C_OVER_CURRENT);
752d57a8 4831 msleep(100); /* Cool down */
8520f380 4832 hub_power_on(hub, true);
752d57a8
PB
4833 hub_port_status(hub, i, &status, &unused);
4834 if (status & USB_PORT_STAT_OVERCURRENT)
4835 dev_err(hub_dev, "over-current "
4836 "condition on port %d\n", i);
1da177e4
LT
4837 }
4838
4839 if (portchange & USB_PORT_STAT_C_RESET) {
4840 dev_dbg (hub_dev,
4841 "reset change on port %d\n",
4842 i);
ad493e5e 4843 usb_clear_port_feature(hdev, i,
1da177e4
LT
4844 USB_PORT_FEAT_C_RESET);
4845 }
c7061574
SS
4846 if ((portchange & USB_PORT_STAT_C_BH_RESET) &&
4847 hub_is_superspeed(hub->hdev)) {
4848 dev_dbg(hub_dev,
4849 "warm reset change on port %d\n",
4850 i);
ad493e5e 4851 usb_clear_port_feature(hdev, i,
c7061574
SS
4852 USB_PORT_FEAT_C_BH_PORT_RESET);
4853 }
dbe79bbe 4854 if (portchange & USB_PORT_STAT_C_LINK_STATE) {
ad493e5e 4855 usb_clear_port_feature(hub->hdev, i,
dbe79bbe
JY
4856 USB_PORT_FEAT_C_PORT_LINK_STATE);
4857 }
4858 if (portchange & USB_PORT_STAT_C_CONFIG_ERROR) {
4859 dev_warn(hub_dev,
4860 "config error on port %d\n",
4861 i);
ad493e5e 4862 usb_clear_port_feature(hub->hdev, i,
dbe79bbe
JY
4863 USB_PORT_FEAT_C_PORT_CONFIG_ERROR);
4864 }
1da177e4 4865
5e467f6e
AX
4866 /* Warm reset a USB3 protocol port if it's in
4867 * SS.Inactive state.
4868 */
8bea2bd3 4869 if (hub_port_warm_reset_required(hub, portstatus)) {
65bdac5e
SS
4870 int status;
4871
5e467f6e 4872 dev_dbg(hub_dev, "warm reset port %d\n", i);
2d51f3cd
JW
4873 if (!udev ||
4874 !(portstatus & USB_PORT_STAT_CONNECTION) ||
4875 udev->state == USB_STATE_NOTATTACHED) {
d3b9d7a9
SS
4876 status = hub_port_reset(hub, i,
4877 NULL, HUB_BH_RESET_TIME,
4878 true);
4879 if (status < 0)
4880 hub_port_disable(hub, i, 1);
4881 } else {
4882 usb_lock_device(udev);
4883 status = usb_reset_device(udev);
4884 usb_unlock_device(udev);
f3e94aa1 4885 connect_change = 0;
d3b9d7a9 4886 }
a82b76f7
HG
4887 /*
4888 * On disconnect USB3 protocol ports transit from U0 to
4889 * SS.Inactive to Rx.Detect. If this happens a warm-
4890 * reset is not needed, but a (re)connect may happen
4891 * before khubd runs and sees the disconnect, and the
4892 * device may be an unknown state.
4893 *
4894 * If the port went through SS.Inactive without khubd
4895 * seeing it the C_LINK_STATE change flag will be set,
4896 * and we reset the dev to put it in a known state.
4897 */
4898 } else if (udev && hub_is_superspeed(hub->hdev) &&
4899 (portchange & USB_PORT_STAT_C_LINK_STATE) &&
4900 (portstatus & USB_PORT_STAT_CONNECTION)) {
4901 usb_lock_device(udev);
4902 usb_reset_device(udev);
4903 usb_unlock_device(udev);
4904 connect_change = 0;
5e467f6e
AX
4905 }
4906
1da177e4
LT
4907 if (connect_change)
4908 hub_port_connect_change(hub, i,
4909 portstatus, portchange);
4910 } /* end for i */
4911
4912 /* deal with hub status changes */
4913 if (test_and_clear_bit(0, hub->event_bits) == 0)
4914 ; /* do nothing */
4915 else if (hub_hub_status(hub, &hubstatus, &hubchange) < 0)
4916 dev_err (hub_dev, "get_hub_status failed\n");
4917 else {
4918 if (hubchange & HUB_CHANGE_LOCAL_POWER) {
4919 dev_dbg (hub_dev, "power change\n");
4920 clear_hub_feature(hdev, C_HUB_LOCAL_POWER);
55c52718
AS
4921 if (hubstatus & HUB_STATUS_LOCAL_POWER)
4922 /* FIXME: Is this always true? */
55c52718 4923 hub->limited_power = 1;
403fae78 4924 else
4925 hub->limited_power = 0;
1da177e4
LT
4926 }
4927 if (hubchange & HUB_CHANGE_OVERCURRENT) {
752d57a8
PB
4928 u16 status = 0;
4929 u16 unused;
4930
4931 dev_dbg(hub_dev, "over-current change\n");
1da177e4 4932 clear_hub_feature(hdev, C_HUB_OVER_CURRENT);
752d57a8 4933 msleep(500); /* Cool down */
469271f8 4934 hub_power_on(hub, true);
752d57a8
PB
4935 hub_hub_status(hub, &status, &unused);
4936 if (status & HUB_STATUS_OVERCURRENT)
4937 dev_err(hub_dev, "over-current "
4938 "condition\n");
1da177e4
LT
4939 }
4940 }
4941
8e4ceb38
AS
4942 loop_autopm:
4943 /* Balance the usb_autopm_get_interface() above */
4944 usb_autopm_put_interface_no_suspend(intf);
4945 loop:
4946 /* Balance the usb_autopm_get_interface_no_resume() in
4947 * kick_khubd() and allow autosuspend.
4948 */
4949 usb_autopm_put_interface(intf);
9bbdf1e0 4950 loop_disconnected:
1da177e4 4951 usb_unlock_device(hdev);
e8054854 4952 kref_put(&hub->kref, hub_release);
1da177e4 4953
469271f8 4954 } /* end while (1) */
1da177e4
LT
4955}
4956
4957static int hub_thread(void *__unused)
4958{
025d4430 4959 /* khubd needs to be freezable to avoid interfering with USB-PERSIST
3bb1af52
AS
4960 * port handover. Otherwise it might see that a full-speed device
4961 * was gone before the EHCI controller had handed its port over to
4962 * the companion full-speed controller.
4963 */
83144186 4964 set_freezable();
3bb1af52 4965
1da177e4
LT
4966 do {
4967 hub_events();
e42837bc 4968 wait_event_freezable(khubd_wait,
9c8d6178 4969 !list_empty(&hub_event_list) ||
4970 kthread_should_stop());
9c8d6178 4971 } while (!kthread_should_stop() || !list_empty(&hub_event_list));
1da177e4 4972
9c8d6178 4973 pr_debug("%s: khubd exiting\n", usbcore_name);
4974 return 0;
1da177e4
LT
4975}
4976
1e927d96 4977static const struct usb_device_id hub_id_table[] = {
e6f30dea 4978 { .match_flags = USB_DEVICE_ID_MATCH_VENDOR
469271f8 4979 | USB_DEVICE_ID_MATCH_INT_CLASS,
e6f30dea
ML
4980 .idVendor = USB_VENDOR_GENESYS_LOGIC,
4981 .bInterfaceClass = USB_CLASS_HUB,
4982 .driver_info = HUB_QUIRK_CHECK_PORT_AUTOSUSPEND},
1da177e4
LT
4983 { .match_flags = USB_DEVICE_ID_MATCH_DEV_CLASS,
4984 .bDeviceClass = USB_CLASS_HUB},
4985 { .match_flags = USB_DEVICE_ID_MATCH_INT_CLASS,
4986 .bInterfaceClass = USB_CLASS_HUB},
4987 { } /* Terminating entry */
4988};
4989
4990MODULE_DEVICE_TABLE (usb, hub_id_table);
4991
4992static struct usb_driver hub_driver = {
1da177e4
LT
4993 .name = "hub",
4994 .probe = hub_probe,
4995 .disconnect = hub_disconnect,
4996 .suspend = hub_suspend,
4997 .resume = hub_resume,
f07600cf 4998 .reset_resume = hub_reset_resume,
7de18d8b
AS
4999 .pre_reset = hub_pre_reset,
5000 .post_reset = hub_post_reset,
c532b29a 5001 .unlocked_ioctl = hub_ioctl,
1da177e4 5002 .id_table = hub_id_table,
40f122f3 5003 .supports_autosuspend = 1,
1da177e4
LT
5004};
5005
5006int usb_hub_init(void)
5007{
1da177e4
LT
5008 if (usb_register(&hub_driver) < 0) {
5009 printk(KERN_ERR "%s: can't register hub driver\n",
5010 usbcore_name);
5011 return -1;
5012 }
5013
9c8d6178 5014 khubd_task = kthread_run(hub_thread, NULL, "khubd");
5015 if (!IS_ERR(khubd_task))
1da177e4 5016 return 0;
1da177e4
LT
5017
5018 /* Fall through if kernel_thread failed */
5019 usb_deregister(&hub_driver);
5020 printk(KERN_ERR "%s: can't start khubd\n", usbcore_name);
5021
5022 return -1;
5023}
5024
5025void usb_hub_cleanup(void)
5026{
9c8d6178 5027 kthread_stop(khubd_task);
1da177e4
LT
5028
5029 /*
5030 * Hub resources are freed for us by usb_deregister. It calls
5031 * usb_driver_purge on every device which in turn calls that
5032 * devices disconnect function if it is using this driver.
5033 * The hub_disconnect function takes care of releasing the
5034 * individual hub resources. -greg
5035 */
5036 usb_deregister(&hub_driver);
5037} /* usb_hub_cleanup() */
5038
eb764c4b 5039static int descriptors_changed(struct usb_device *udev,
e3376d6c
XR
5040 struct usb_device_descriptor *old_device_descriptor,
5041 struct usb_host_bos *old_bos)
eb764c4b
AS
5042{
5043 int changed = 0;
5044 unsigned index;
5045 unsigned serial_len = 0;
5046 unsigned len;
5047 unsigned old_length;
5048 int length;
5049 char *buf;
5050
5051 if (memcmp(&udev->descriptor, old_device_descriptor,
5052 sizeof(*old_device_descriptor)) != 0)
5053 return 1;
5054
e3376d6c
XR
5055 if ((old_bos && !udev->bos) || (!old_bos && udev->bos))
5056 return 1;
5057 if (udev->bos) {
b9a10481
XR
5058 len = le16_to_cpu(udev->bos->desc->wTotalLength);
5059 if (len != le16_to_cpu(old_bos->desc->wTotalLength))
e3376d6c 5060 return 1;
b9a10481 5061 if (memcmp(udev->bos->desc, old_bos->desc, len))
e3376d6c
XR
5062 return 1;
5063 }
5064
eb764c4b
AS
5065 /* Since the idVendor, idProduct, and bcdDevice values in the
5066 * device descriptor haven't changed, we will assume the
5067 * Manufacturer and Product strings haven't changed either.
5068 * But the SerialNumber string could be different (e.g., a
5069 * different flash card of the same brand).
5070 */
5071 if (udev->serial)
5072 serial_len = strlen(udev->serial) + 1;
1da177e4 5073
eb764c4b 5074 len = serial_len;
1da177e4 5075 for (index = 0; index < udev->descriptor.bNumConfigurations; index++) {
eb764c4b
AS
5076 old_length = le16_to_cpu(udev->config[index].desc.wTotalLength);
5077 len = max(len, old_length);
1da177e4 5078 }
eb764c4b 5079
0cc1a51f 5080 buf = kmalloc(len, GFP_NOIO);
1da177e4
LT
5081 if (buf == NULL) {
5082 dev_err(&udev->dev, "no mem to re-read configs after reset\n");
5083 /* assume the worst */
5084 return 1;
5085 }
5086 for (index = 0; index < udev->descriptor.bNumConfigurations; index++) {
eb764c4b 5087 old_length = le16_to_cpu(udev->config[index].desc.wTotalLength);
1da177e4
LT
5088 length = usb_get_descriptor(udev, USB_DT_CONFIG, index, buf,
5089 old_length);
eb764c4b 5090 if (length != old_length) {
1da177e4
LT
5091 dev_dbg(&udev->dev, "config index %d, error %d\n",
5092 index, length);
eb764c4b 5093 changed = 1;
1da177e4
LT
5094 break;
5095 }
5096 if (memcmp (buf, udev->rawdescriptors[index], old_length)
5097 != 0) {
5098 dev_dbg(&udev->dev, "config index %d changed (#%d)\n",
eb764c4b
AS
5099 index,
5100 ((struct usb_config_descriptor *) buf)->
5101 bConfigurationValue);
5102 changed = 1;
1da177e4
LT
5103 break;
5104 }
5105 }
eb764c4b
AS
5106
5107 if (!changed && serial_len) {
5108 length = usb_string(udev, udev->descriptor.iSerialNumber,
5109 buf, serial_len);
5110 if (length + 1 != serial_len) {
5111 dev_dbg(&udev->dev, "serial string error %d\n",
5112 length);
5113 changed = 1;
5114 } else if (memcmp(buf, udev->serial, length) != 0) {
5115 dev_dbg(&udev->dev, "serial string changed\n");
5116 changed = 1;
5117 }
5118 }
5119
1da177e4 5120 kfree(buf);
eb764c4b 5121 return changed;
1da177e4
LT
5122}
5123
5124/**
742120c6 5125 * usb_reset_and_verify_device - perform a USB port reset to reinitialize a device
1da177e4
LT
5126 * @udev: device to reset (not in SUSPENDED or NOTATTACHED state)
5127 *
79efa097
AS
5128 * WARNING - don't use this routine to reset a composite device
5129 * (one with multiple interfaces owned by separate drivers)!
742120c6 5130 * Use usb_reset_device() instead.
1da177e4
LT
5131 *
5132 * Do a port reset, reassign the device's address, and establish its
5133 * former operating configuration. If the reset fails, or the device's
5134 * descriptors change from their values before the reset, or the original
5135 * configuration and altsettings cannot be restored, a flag will be set
5136 * telling khubd to pretend the device has been disconnected and then
5137 * re-connected. All drivers will be unbound, and the device will be
5138 * re-enumerated and probed all over again.
5139 *
626f090c 5140 * Return: 0 if the reset succeeded, -ENODEV if the device has been
1da177e4
LT
5141 * flagged for logical disconnection, or some other negative error code
5142 * if the reset wasn't even attempted.
5143 *
626f090c 5144 * Note:
1da177e4
LT
5145 * The caller must own the device lock. For example, it's safe to use
5146 * this from a driver probe() routine after downloading new firmware.
5147 * For calls that might not occur during probe(), drivers should lock
5148 * the device using usb_lock_device_for_reset().
6bc6cff5
AS
5149 *
5150 * Locking exception: This routine may also be called from within an
5151 * autoresume handler. Such usage won't conflict with other tasks
5152 * holding the device lock because these tasks should always call
5153 * usb_autopm_resume_device(), thereby preventing any unwanted autoresume.
1da177e4 5154 */
742120c6 5155static int usb_reset_and_verify_device(struct usb_device *udev)
1da177e4
LT
5156{
5157 struct usb_device *parent_hdev = udev->parent;
5158 struct usb_hub *parent_hub;
3f0479e0 5159 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
1da177e4 5160 struct usb_device_descriptor descriptor = udev->descriptor;
e3376d6c 5161 struct usb_host_bos *bos;
7a7b562d 5162 int i, j, ret = 0;
12c3da34 5163 int port1 = udev->portnum;
1da177e4
LT
5164
5165 if (udev->state == USB_STATE_NOTATTACHED ||
5166 udev->state == USB_STATE_SUSPENDED) {
5167 dev_dbg(&udev->dev, "device reset not allowed in state %d\n",
5168 udev->state);
5169 return -EINVAL;
5170 }
5171
5172 if (!parent_hdev) {
4bec9917 5173 /* this requires hcd-specific logic; see ohci_restart() */
441b62c1 5174 dev_dbg(&udev->dev, "%s for root hub!\n", __func__);
1da177e4
LT
5175 return -EISDIR;
5176 }
ad493e5e 5177 parent_hub = usb_hub_to_struct_hub(parent_hdev);
1da177e4 5178
dcc01c08
SS
5179 /* Disable USB2 hardware LPM.
5180 * It will be re-enabled by the enumeration process.
5181 */
5182 if (udev->usb2_hw_lpm_enabled == 1)
5183 usb_set_usb2_hardware_lpm(udev, 0);
5184
e3376d6c
XR
5185 bos = udev->bos;
5186 udev->bos = NULL;
5187
f74631e3
SS
5188 /* Disable LPM and LTM while we reset the device and reinstall the alt
5189 * settings. Device-initiated LPM settings, and system exit latency
5190 * settings are cleared when the device is reset, so we have to set
5191 * them up again.
6d1d0513
SS
5192 */
5193 ret = usb_unlocked_disable_lpm(udev);
5194 if (ret) {
5195 dev_err(&udev->dev, "%s Failed to disable LPM\n.", __func__);
5196 goto re_enumerate;
5197 }
f74631e3
SS
5198 ret = usb_disable_ltm(udev);
5199 if (ret) {
5200 dev_err(&udev->dev, "%s Failed to disable LTM\n.",
5201 __func__);
5202 goto re_enumerate;
5203 }
6d1d0513 5204
1da177e4
LT
5205 set_bit(port1, parent_hub->busy_bits);
5206 for (i = 0; i < SET_CONFIG_TRIES; ++i) {
5207
5208 /* ep0 maxpacket size may change; let the HCD know about it.
5209 * Other endpoints will be handled by re-enumeration. */
fc721f51 5210 usb_ep0_reinit(udev);
1da177e4 5211 ret = hub_port_init(parent_hub, udev, port1, i);
dd4dd19e 5212 if (ret >= 0 || ret == -ENOTCONN || ret == -ENODEV)
1da177e4
LT
5213 break;
5214 }
5215 clear_bit(port1, parent_hub->busy_bits);
d5cbad4b 5216
1da177e4
LT
5217 if (ret < 0)
5218 goto re_enumerate;
469271f8 5219
1da177e4 5220 /* Device might have changed firmware (DFU or similar) */
e3376d6c 5221 if (descriptors_changed(udev, &descriptor, bos)) {
1da177e4
LT
5222 dev_info(&udev->dev, "device firmware changed\n");
5223 udev->descriptor = descriptor; /* for disconnect() calls */
5224 goto re_enumerate;
469271f8 5225 }
4fe0387a
AS
5226
5227 /* Restore the device's previous configuration */
1da177e4
LT
5228 if (!udev->actconfig)
5229 goto done;
3f0479e0 5230
d673bfcb 5231 mutex_lock(hcd->bandwidth_mutex);
3f0479e0
SS
5232 ret = usb_hcd_alloc_bandwidth(udev, udev->actconfig, NULL, NULL);
5233 if (ret < 0) {
5234 dev_warn(&udev->dev,
5235 "Busted HC? Not enough HCD resources for "
5236 "old configuration.\n");
d673bfcb 5237 mutex_unlock(hcd->bandwidth_mutex);
3f0479e0
SS
5238 goto re_enumerate;
5239 }
1da177e4
LT
5240 ret = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
5241 USB_REQ_SET_CONFIGURATION, 0,
5242 udev->actconfig->desc.bConfigurationValue, 0,
5243 NULL, 0, USB_CTRL_SET_TIMEOUT);
5244 if (ret < 0) {
5245 dev_err(&udev->dev,
5246 "can't restore configuration #%d (error=%d)\n",
5247 udev->actconfig->desc.bConfigurationValue, ret);
d673bfcb 5248 mutex_unlock(hcd->bandwidth_mutex);
1da177e4 5249 goto re_enumerate;
469271f8 5250 }
d673bfcb 5251 mutex_unlock(hcd->bandwidth_mutex);
1da177e4
LT
5252 usb_set_device_state(udev, USB_STATE_CONFIGURED);
5253
4fe0387a
AS
5254 /* Put interfaces back into the same altsettings as before.
5255 * Don't bother to send the Set-Interface request for interfaces
5256 * that were already in altsetting 0; besides being unnecessary,
5257 * many devices can't handle it. Instead just reset the host-side
5258 * endpoint state.
5259 */
1da177e4 5260 for (i = 0; i < udev->actconfig->desc.bNumInterfaces; i++) {
3f0479e0
SS
5261 struct usb_host_config *config = udev->actconfig;
5262 struct usb_interface *intf = config->interface[i];
1da177e4
LT
5263 struct usb_interface_descriptor *desc;
5264
1da177e4 5265 desc = &intf->cur_altsetting->desc;
4fe0387a
AS
5266 if (desc->bAlternateSetting == 0) {
5267 usb_disable_interface(udev, intf, true);
5268 usb_enable_interface(udev, intf, true);
5269 ret = 0;
5270 } else {
04a723ea
SS
5271 /* Let the bandwidth allocation function know that this
5272 * device has been reset, and it will have to use
5273 * alternate setting 0 as the current alternate setting.
3f0479e0 5274 */
04a723ea 5275 intf->resetting_device = 1;
4fe0387a
AS
5276 ret = usb_set_interface(udev, desc->bInterfaceNumber,
5277 desc->bAlternateSetting);
04a723ea 5278 intf->resetting_device = 0;
4fe0387a 5279 }
1da177e4
LT
5280 if (ret < 0) {
5281 dev_err(&udev->dev, "failed to restore interface %d "
5282 "altsetting %d (error=%d)\n",
5283 desc->bInterfaceNumber,
5284 desc->bAlternateSetting,
5285 ret);
5286 goto re_enumerate;
5287 }
7a7b562d
HG
5288 /* Resetting also frees any allocated streams */
5289 for (j = 0; j < intf->cur_altsetting->desc.bNumEndpoints; j++)
5290 intf->cur_altsetting->endpoint[j].streams = 0;
1da177e4
LT
5291 }
5292
5293done:
f74631e3 5294 /* Now that the alt settings are re-installed, enable LTM and LPM. */
de68bab4 5295 usb_set_usb2_hardware_lpm(udev, 1);
8306095f 5296 usb_unlocked_enable_lpm(udev);
f74631e3 5297 usb_enable_ltm(udev);
e3376d6c
XR
5298 usb_release_bos_descriptor(udev);
5299 udev->bos = bos;
1da177e4 5300 return 0;
469271f8 5301
1da177e4 5302re_enumerate:
6d1d0513 5303 /* LPM state doesn't matter when we're about to destroy the device. */
1da177e4 5304 hub_port_logical_disconnect(parent_hub, port1);
e3376d6c
XR
5305 usb_release_bos_descriptor(udev);
5306 udev->bos = bos;
1da177e4
LT
5307 return -ENODEV;
5308}
79efa097
AS
5309
5310/**
742120c6 5311 * usb_reset_device - warn interface drivers and perform a USB port reset
79efa097 5312 * @udev: device to reset (not in SUSPENDED or NOTATTACHED state)
79efa097
AS
5313 *
5314 * Warns all drivers bound to registered interfaces (using their pre_reset
5315 * method), performs the port reset, and then lets the drivers know that
5316 * the reset is over (using their post_reset method).
5317 *
626f090c 5318 * Return: The same as for usb_reset_and_verify_device().
79efa097 5319 *
626f090c 5320 * Note:
79efa097
AS
5321 * The caller must own the device lock. For example, it's safe to use
5322 * this from a driver probe() routine after downloading new firmware.
5323 * For calls that might not occur during probe(), drivers should lock
5324 * the device using usb_lock_device_for_reset().
78d9a487
AS
5325 *
5326 * If an interface is currently being probed or disconnected, we assume
5327 * its driver knows how to handle resets. For all other interfaces,
5328 * if the driver doesn't have pre_reset and post_reset methods then
5329 * we attempt to unbind it and rebind afterward.
79efa097 5330 */
742120c6 5331int usb_reset_device(struct usb_device *udev)
79efa097
AS
5332{
5333 int ret;
852c4b43 5334 int i;
4d769def 5335 unsigned int noio_flag;
79efa097
AS
5336 struct usb_host_config *config = udev->actconfig;
5337
5338 if (udev->state == USB_STATE_NOTATTACHED ||
5339 udev->state == USB_STATE_SUSPENDED) {
5340 dev_dbg(&udev->dev, "device reset not allowed in state %d\n",
5341 udev->state);
5342 return -EINVAL;
5343 }
5344
4d769def
ML
5345 /*
5346 * Don't allocate memory with GFP_KERNEL in current
5347 * context to avoid possible deadlock if usb mass
5348 * storage interface or usbnet interface(iSCSI case)
5349 * is included in current configuration. The easist
5350 * approach is to do it for every device reset,
5351 * because the device 'memalloc_noio' flag may have
5352 * not been set before reseting the usb device.
5353 */
5354 noio_flag = memalloc_noio_save();
5355
645daaab 5356 /* Prevent autosuspend during the reset */
94fcda1f 5357 usb_autoresume_device(udev);
645daaab 5358
79efa097 5359 if (config) {
79efa097 5360 for (i = 0; i < config->desc.bNumInterfaces; ++i) {
852c4b43
AS
5361 struct usb_interface *cintf = config->interface[i];
5362 struct usb_driver *drv;
78d9a487 5363 int unbind = 0;
852c4b43
AS
5364
5365 if (cintf->dev.driver) {
79efa097 5366 drv = to_usb_driver(cintf->dev.driver);
78d9a487
AS
5367 if (drv->pre_reset && drv->post_reset)
5368 unbind = (drv->pre_reset)(cintf);
5369 else if (cintf->condition ==
5370 USB_INTERFACE_BOUND)
5371 unbind = 1;
5372 if (unbind)
5373 usb_forced_unbind_intf(cintf);
79efa097
AS
5374 }
5375 }
5376 }
5377
742120c6 5378 ret = usb_reset_and_verify_device(udev);
79efa097
AS
5379
5380 if (config) {
79efa097 5381 for (i = config->desc.bNumInterfaces - 1; i >= 0; --i) {
852c4b43
AS
5382 struct usb_interface *cintf = config->interface[i];
5383 struct usb_driver *drv;
78d9a487 5384 int rebind = cintf->needs_binding;
852c4b43 5385
78d9a487 5386 if (!rebind && cintf->dev.driver) {
79efa097
AS
5387 drv = to_usb_driver(cintf->dev.driver);
5388 if (drv->post_reset)
78d9a487
AS
5389 rebind = (drv->post_reset)(cintf);
5390 else if (cintf->condition ==
5391 USB_INTERFACE_BOUND)
5392 rebind = 1;
6aec044c
AS
5393 if (rebind)
5394 cintf->needs_binding = 1;
79efa097 5395 }
79efa097 5396 }
6aec044c 5397 usb_unbind_and_rebind_marked_interfaces(udev);
79efa097
AS
5398 }
5399
94fcda1f 5400 usb_autosuspend_device(udev);
4d769def 5401 memalloc_noio_restore(noio_flag);
79efa097
AS
5402 return ret;
5403}
742120c6 5404EXPORT_SYMBOL_GPL(usb_reset_device);
dc023dce
IPG
5405
5406
5407/**
5408 * usb_queue_reset_device - Reset a USB device from an atomic context
5409 * @iface: USB interface belonging to the device to reset
5410 *
5411 * This function can be used to reset a USB device from an atomic
5412 * context, where usb_reset_device() won't work (as it blocks).
5413 *
5414 * Doing a reset via this method is functionally equivalent to calling
5415 * usb_reset_device(), except for the fact that it is delayed to a
5416 * workqueue. This means that any drivers bound to other interfaces
5417 * might be unbound, as well as users from usbfs in user space.
5418 *
5419 * Corner cases:
5420 *
5421 * - Scheduling two resets at the same time from two different drivers
5422 * attached to two different interfaces of the same device is
5423 * possible; depending on how the driver attached to each interface
5424 * handles ->pre_reset(), the second reset might happen or not.
5425 *
5426 * - If a driver is unbound and it had a pending reset, the reset will
5427 * be cancelled.
5428 *
5429 * - This function can be called during .probe() or .disconnect()
5430 * times. On return from .disconnect(), any pending resets will be
5431 * cancelled.
5432 *
5433 * There is no no need to lock/unlock the @reset_ws as schedule_work()
5434 * does its own.
5435 *
5436 * NOTE: We don't do any reference count tracking because it is not
5437 * needed. The lifecycle of the work_struct is tied to the
5438 * usb_interface. Before destroying the interface we cancel the
5439 * work_struct, so the fact that work_struct is queued and or
5440 * running means the interface (and thus, the device) exist and
5441 * are referenced.
5442 */
5443void usb_queue_reset_device(struct usb_interface *iface)
5444{
5445 schedule_work(&iface->reset_ws);
5446}
5447EXPORT_SYMBOL_GPL(usb_queue_reset_device);
ff823c79
LT
5448
5449/**
5450 * usb_hub_find_child - Get the pointer of child device
5451 * attached to the port which is specified by @port1.
5452 * @hdev: USB device belonging to the usb hub
5453 * @port1: port num to indicate which port the child device
5454 * is attached to.
5455 *
5456 * USB drivers call this function to get hub's child device
5457 * pointer.
5458 *
626f090c 5459 * Return: %NULL if input param is invalid and
ff823c79
LT
5460 * child's usb_device pointer if non-NULL.
5461 */
5462struct usb_device *usb_hub_find_child(struct usb_device *hdev,
5463 int port1)
5464{
ad493e5e 5465 struct usb_hub *hub = usb_hub_to_struct_hub(hdev);
ff823c79
LT
5466
5467 if (port1 < 1 || port1 > hdev->maxchild)
5468 return NULL;
5469 return hub->ports[port1 - 1]->child;
5470}
5471EXPORT_SYMBOL_GPL(usb_hub_find_child);
d5575424 5472
05f91689
LT
5473/**
5474 * usb_set_hub_port_connect_type - set hub port connect type.
5475 * @hdev: USB device belonging to the usb hub
5476 * @port1: port num of the port
5477 * @type: connect type of the port
5478 */
5479void usb_set_hub_port_connect_type(struct usb_device *hdev, int port1,
5480 enum usb_port_connect_type type)
5481{
ad493e5e 5482 struct usb_hub *hub = usb_hub_to_struct_hub(hdev);
05f91689 5483
41341261
MN
5484 if (hub)
5485 hub->ports[port1 - 1]->connect_type = type;
05f91689
LT
5486}
5487
5488/**
5489 * usb_get_hub_port_connect_type - Get the port's connect type
5490 * @hdev: USB device belonging to the usb hub
5491 * @port1: port num of the port
5492 *
626f090c
YB
5493 * Return: The connect type of the port if successful. Or
5494 * USB_PORT_CONNECT_TYPE_UNKNOWN if input params are invalid.
05f91689
LT
5495 */
5496enum usb_port_connect_type
5497usb_get_hub_port_connect_type(struct usb_device *hdev, int port1)
5498{
ad493e5e 5499 struct usb_hub *hub = usb_hub_to_struct_hub(hdev);
05f91689 5500
41341261
MN
5501 if (!hub)
5502 return USB_PORT_CONNECT_TYPE_UNKNOWN;
5503
05f91689
LT
5504 return hub->ports[port1 - 1]->connect_type;
5505}
5506
d2123fd9
LT
5507void usb_hub_adjust_deviceremovable(struct usb_device *hdev,
5508 struct usb_hub_descriptor *desc)
5509{
5510 enum usb_port_connect_type connect_type;
5511 int i;
5512
5513 if (!hub_is_superspeed(hdev)) {
5514 for (i = 1; i <= hdev->maxchild; i++) {
5515 connect_type = usb_get_hub_port_connect_type(hdev, i);
5516
5517 if (connect_type == USB_PORT_CONNECT_TYPE_HARD_WIRED) {
5518 u8 mask = 1 << (i%8);
5519
5520 if (!(desc->u.hs.DeviceRemovable[i/8] & mask)) {
5521 dev_dbg(&hdev->dev, "usb port%d's DeviceRemovable is changed to 1 according to platform information.\n",
5522 i);
5523 desc->u.hs.DeviceRemovable[i/8] |= mask;
5524 }
5525 }
5526 }
5527 } else {
5528 u16 port_removable = le16_to_cpu(desc->u.ss.DeviceRemovable);
5529
5530 for (i = 1; i <= hdev->maxchild; i++) {
5531 connect_type = usb_get_hub_port_connect_type(hdev, i);
5532
5533 if (connect_type == USB_PORT_CONNECT_TYPE_HARD_WIRED) {
5534 u16 mask = 1 << i;
5535
5536 if (!(port_removable & mask)) {
5537 dev_dbg(&hdev->dev, "usb port%d's DeviceRemovable is changed to 1 according to platform information.\n",
5538 i);
5539 port_removable |= mask;
5540 }
5541 }
5542 }
5543
5544 desc->u.ss.DeviceRemovable = cpu_to_le16(port_removable);
5545 }
5546}
5547
d5575424
LT
5548#ifdef CONFIG_ACPI
5549/**
5550 * usb_get_hub_port_acpi_handle - Get the usb port's acpi handle
5551 * @hdev: USB device belonging to the usb hub
5552 * @port1: port num of the port
5553 *
626f090c
YB
5554 * Return: Port's acpi handle if successful, %NULL if params are
5555 * invalid.
d5575424
LT
5556 */
5557acpi_handle usb_get_hub_port_acpi_handle(struct usb_device *hdev,
5558 int port1)
5559{
ad493e5e 5560 struct usb_hub *hub = usb_hub_to_struct_hub(hdev);
d5575424 5561
41341261
MN
5562 if (!hub)
5563 return NULL;
5564
3a83f992 5565 return ACPI_HANDLE(&hub->ports[port1 - 1]->dev);
d5575424
LT
5566}
5567#endif