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