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