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