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