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