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