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 0x01
49 #define HUB_QUIRK_DISABLE_AUTOSUSPEND 0x02
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 /* Set a_alt_hnp_support for legacy otg device */
2370 err = usb_control_msg(udev,
2371 usb_sndctrlpipe(udev, 0),
2372 USB_REQ_SET_FEATURE, 0,
2373 USB_DEVICE_A_ALT_HNP_SUPPORT,
2374 0, NULL, 0,
2375 USB_CTRL_SET_TIMEOUT);
2376 if (err < 0)
2377 dev_err(&udev->dev,
2378 "set a_alt_hnp_support failed: %d\n",
2379 err);
2380 }
2381 }
2382 #endif
2383 return err;
2384 }
2385
2386
2387 /**
2388 * usb_enumerate_device - Read device configs/intfs/otg (usbcore-internal)
2389 * @udev: newly addressed device (in ADDRESS state)
2390 *
2391 * This is only called by usb_new_device() -- all comments that apply there
2392 * apply here wrt to environment.
2393 *
2394 * If the device is WUSB and not authorized, we don't attempt to read
2395 * the string descriptors, as they will be errored out by the device
2396 * until it has been authorized.
2397 *
2398 * Return: 0 if successful. A negative error code otherwise.
2399 */
usb_enumerate_device(struct usb_device * udev)2400 static int usb_enumerate_device(struct usb_device *udev)
2401 {
2402 int err;
2403 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
2404
2405 if (udev->config == NULL) {
2406 err = usb_get_configuration(udev);
2407 if (err < 0) {
2408 if (err != -ENODEV)
2409 dev_err(&udev->dev, "can't read configurations, error %d\n",
2410 err);
2411 return err;
2412 }
2413 }
2414
2415 /* read the standard strings and cache them if present */
2416 udev->product = usb_cache_string(udev, udev->descriptor.iProduct);
2417 udev->manufacturer = usb_cache_string(udev,
2418 udev->descriptor.iManufacturer);
2419 udev->serial = usb_cache_string(udev, udev->descriptor.iSerialNumber);
2420
2421 err = usb_enumerate_device_otg(udev);
2422 if (err < 0)
2423 return err;
2424
2425 if (IS_ENABLED(CONFIG_USB_OTG_PRODUCTLIST) && hcd->tpl_support &&
2426 !is_targeted(udev)) {
2427 /* Maybe it can talk to us, though we can't talk to it.
2428 * (Includes HNP test device.)
2429 */
2430 if (IS_ENABLED(CONFIG_USB_OTG) && (udev->bus->b_hnp_enable
2431 || udev->bus->is_b_host)) {
2432 err = usb_port_suspend(udev, PMSG_AUTO_SUSPEND);
2433 if (err < 0)
2434 dev_dbg(&udev->dev, "HNP fail, %d\n", err);
2435 }
2436 return -ENOTSUPP;
2437 }
2438
2439 usb_detect_interface_quirks(udev);
2440
2441 return 0;
2442 }
2443
set_usb_port_removable(struct usb_device * udev)2444 static void set_usb_port_removable(struct usb_device *udev)
2445 {
2446 struct usb_device *hdev = udev->parent;
2447 struct usb_hub *hub;
2448 u8 port = udev->portnum;
2449 u16 wHubCharacteristics;
2450 bool removable = true;
2451
2452 if (!hdev)
2453 return;
2454
2455 hub = usb_hub_to_struct_hub(udev->parent);
2456
2457 /*
2458 * If the platform firmware has provided information about a port,
2459 * use that to determine whether it's removable.
2460 */
2461 switch (hub->ports[udev->portnum - 1]->connect_type) {
2462 case USB_PORT_CONNECT_TYPE_HOT_PLUG:
2463 udev->removable = USB_DEVICE_REMOVABLE;
2464 return;
2465 case USB_PORT_CONNECT_TYPE_HARD_WIRED:
2466 case USB_PORT_NOT_USED:
2467 udev->removable = USB_DEVICE_FIXED;
2468 return;
2469 default:
2470 break;
2471 }
2472
2473 /*
2474 * Otherwise, check whether the hub knows whether a port is removable
2475 * or not
2476 */
2477 wHubCharacteristics = le16_to_cpu(hub->descriptor->wHubCharacteristics);
2478
2479 if (!(wHubCharacteristics & HUB_CHAR_COMPOUND))
2480 return;
2481
2482 if (hub_is_superspeed(hdev)) {
2483 if (le16_to_cpu(hub->descriptor->u.ss.DeviceRemovable)
2484 & (1 << port))
2485 removable = false;
2486 } else {
2487 if (hub->descriptor->u.hs.DeviceRemovable[port / 8] & (1 << (port % 8)))
2488 removable = false;
2489 }
2490
2491 if (removable)
2492 udev->removable = USB_DEVICE_REMOVABLE;
2493 else
2494 udev->removable = USB_DEVICE_FIXED;
2495
2496 }
2497
2498 /**
2499 * usb_new_device - perform initial device setup (usbcore-internal)
2500 * @udev: newly addressed device (in ADDRESS state)
2501 *
2502 * This is called with devices which have been detected but not fully
2503 * enumerated. The device descriptor is available, but not descriptors
2504 * for any device configuration. The caller must have locked either
2505 * the parent hub (if udev is a normal device) or else the
2506 * usb_bus_idr_lock (if udev is a root hub). The parent's pointer to
2507 * udev has already been installed, but udev is not yet visible through
2508 * sysfs or other filesystem code.
2509 *
2510 * This call is synchronous, and may not be used in an interrupt context.
2511 *
2512 * Only the hub driver or root-hub registrar should ever call this.
2513 *
2514 * Return: Whether the device is configured properly or not. Zero if the
2515 * interface was registered with the driver core; else a negative errno
2516 * value.
2517 *
2518 */
usb_new_device(struct usb_device * udev)2519 int usb_new_device(struct usb_device *udev)
2520 {
2521 int err;
2522
2523 if (udev->parent) {
2524 /* Initialize non-root-hub device wakeup to disabled;
2525 * device (un)configuration controls wakeup capable
2526 * sysfs power/wakeup controls wakeup enabled/disabled
2527 */
2528 device_init_wakeup(&udev->dev, 0);
2529 }
2530
2531 /* Tell the runtime-PM framework the device is active */
2532 pm_runtime_set_active(&udev->dev);
2533 pm_runtime_get_noresume(&udev->dev);
2534 pm_runtime_use_autosuspend(&udev->dev);
2535 pm_runtime_enable(&udev->dev);
2536
2537 /* By default, forbid autosuspend for all devices. It will be
2538 * allowed for hubs during binding.
2539 */
2540 usb_disable_autosuspend(udev);
2541
2542 err = usb_enumerate_device(udev); /* Read descriptors */
2543 if (err < 0)
2544 goto fail;
2545 dev_dbg(&udev->dev, "udev %d, busnum %d, minor = %d\n",
2546 udev->devnum, udev->bus->busnum,
2547 (((udev->bus->busnum-1) * 128) + (udev->devnum-1)));
2548 /* export the usbdev device-node for libusb */
2549 udev->dev.devt = MKDEV(USB_DEVICE_MAJOR,
2550 (((udev->bus->busnum-1) * 128) + (udev->devnum-1)));
2551
2552 /* Tell the world! */
2553 announce_device(udev);
2554
2555 if (udev->serial)
2556 add_device_randomness(udev->serial, strlen(udev->serial));
2557 if (udev->product)
2558 add_device_randomness(udev->product, strlen(udev->product));
2559 if (udev->manufacturer)
2560 add_device_randomness(udev->manufacturer,
2561 strlen(udev->manufacturer));
2562
2563 device_enable_async_suspend(&udev->dev);
2564
2565 /* check whether the hub or firmware marks this port as non-removable */
2566 if (udev->parent)
2567 set_usb_port_removable(udev);
2568
2569 /* Register the device. The device driver is responsible
2570 * for configuring the device and invoking the add-device
2571 * notifier chain (used by usbfs and possibly others).
2572 */
2573 err = device_add(&udev->dev);
2574 if (err) {
2575 dev_err(&udev->dev, "can't device_add, error %d\n", err);
2576 goto fail;
2577 }
2578
2579 /* Create link files between child device and usb port device. */
2580 if (udev->parent) {
2581 struct usb_hub *hub = usb_hub_to_struct_hub(udev->parent);
2582 int port1 = udev->portnum;
2583 struct usb_port *port_dev = hub->ports[port1 - 1];
2584
2585 err = sysfs_create_link(&udev->dev.kobj,
2586 &port_dev->dev.kobj, "port");
2587 if (err)
2588 goto fail;
2589
2590 err = sysfs_create_link(&port_dev->dev.kobj,
2591 &udev->dev.kobj, "device");
2592 if (err) {
2593 sysfs_remove_link(&udev->dev.kobj, "port");
2594 goto fail;
2595 }
2596
2597 if (!test_and_set_bit(port1, hub->child_usage_bits))
2598 pm_runtime_get_sync(&port_dev->dev);
2599 }
2600
2601 (void) usb_create_ep_devs(&udev->dev, &udev->ep0, udev);
2602 usb_mark_last_busy(udev);
2603 pm_runtime_put_sync_autosuspend(&udev->dev);
2604 return err;
2605
2606 fail:
2607 usb_set_device_state(udev, USB_STATE_NOTATTACHED);
2608 pm_runtime_disable(&udev->dev);
2609 pm_runtime_set_suspended(&udev->dev);
2610 return err;
2611 }
2612
2613
2614 /**
2615 * usb_deauthorize_device - deauthorize a device (usbcore-internal)
2616 * @usb_dev: USB device
2617 *
2618 * Move the USB device to a very basic state where interfaces are disabled
2619 * and the device is in fact unconfigured and unusable.
2620 *
2621 * We share a lock (that we have) with device_del(), so we need to
2622 * defer its call.
2623 *
2624 * Return: 0.
2625 */
usb_deauthorize_device(struct usb_device * usb_dev)2626 int usb_deauthorize_device(struct usb_device *usb_dev)
2627 {
2628 usb_lock_device(usb_dev);
2629 if (usb_dev->authorized == 0)
2630 goto out_unauthorized;
2631
2632 usb_dev->authorized = 0;
2633 usb_set_configuration(usb_dev, -1);
2634
2635 out_unauthorized:
2636 usb_unlock_device(usb_dev);
2637 return 0;
2638 }
2639
2640
usb_authorize_device(struct usb_device * usb_dev)2641 int usb_authorize_device(struct usb_device *usb_dev)
2642 {
2643 int result = 0, c;
2644
2645 usb_lock_device(usb_dev);
2646 if (usb_dev->authorized == 1)
2647 goto out_authorized;
2648
2649 result = usb_autoresume_device(usb_dev);
2650 if (result < 0) {
2651 dev_err(&usb_dev->dev,
2652 "can't autoresume for authorization: %d\n", result);
2653 goto error_autoresume;
2654 }
2655
2656 if (usb_dev->wusb) {
2657 struct usb_device_descriptor *descr;
2658
2659 descr = usb_get_device_descriptor(usb_dev);
2660 if (IS_ERR(descr)) {
2661 result = PTR_ERR(descr);
2662 dev_err(&usb_dev->dev, "can't re-read device descriptor for "
2663 "authorization: %d\n", result);
2664 goto error_device_descriptor;
2665 }
2666 usb_dev->descriptor = *descr;
2667 kfree(descr);
2668 }
2669
2670 usb_dev->authorized = 1;
2671 /* Choose and set the configuration. This registers the interfaces
2672 * with the driver core and lets interface drivers bind to them.
2673 */
2674 c = usb_choose_configuration(usb_dev);
2675 if (c >= 0) {
2676 result = usb_set_configuration(usb_dev, c);
2677 if (result) {
2678 dev_err(&usb_dev->dev,
2679 "can't set config #%d, error %d\n", c, result);
2680 /* This need not be fatal. The user can try to
2681 * set other configurations. */
2682 }
2683 }
2684 dev_info(&usb_dev->dev, "authorized to connect\n");
2685
2686 error_device_descriptor:
2687 usb_autosuspend_device(usb_dev);
2688 error_autoresume:
2689 out_authorized:
2690 usb_unlock_device(usb_dev); /* complements locktree */
2691 return result;
2692 }
2693
2694 /*
2695 * Return 1 if port speed is SuperSpeedPlus, 0 otherwise or if the
2696 * capability couldn't be checked.
2697 * check it from the link protocol field of the current speed ID attribute.
2698 * current speed ID is got from ext port status request. Sublink speed attribute
2699 * table is returned with the hub BOS SSP device capability descriptor
2700 */
port_speed_is_ssp(struct usb_device * hdev,int speed_id)2701 static int port_speed_is_ssp(struct usb_device *hdev, int speed_id)
2702 {
2703 int ssa_count;
2704 u32 ss_attr;
2705 int i;
2706 struct usb_ssp_cap_descriptor *ssp_cap;
2707
2708 if (!hdev->bos)
2709 return 0;
2710
2711 ssp_cap = hdev->bos->ssp_cap;
2712 if (!ssp_cap)
2713 return 0;
2714
2715 ssa_count = le32_to_cpu(ssp_cap->bmAttributes) &
2716 USB_SSP_SUBLINK_SPEED_ATTRIBS;
2717
2718 for (i = 0; i <= ssa_count; i++) {
2719 ss_attr = le32_to_cpu(ssp_cap->bmSublinkSpeedAttr[i]);
2720 if (speed_id == (ss_attr & USB_SSP_SUBLINK_SPEED_SSID))
2721 return !!(ss_attr & USB_SSP_SUBLINK_SPEED_LP);
2722 }
2723 return 0;
2724 }
2725
2726 /* Returns 1 if @hub is a WUSB root hub, 0 otherwise */
hub_is_wusb(struct usb_hub * hub)2727 static unsigned hub_is_wusb(struct usb_hub *hub)
2728 {
2729 struct usb_hcd *hcd;
2730 if (hub->hdev->parent != NULL) /* not a root hub? */
2731 return 0;
2732 hcd = bus_to_hcd(hub->hdev->bus);
2733 return hcd->wireless;
2734 }
2735
2736
2737 #ifdef CONFIG_USB_FEW_INIT_RETRIES
2738 #define PORT_RESET_TRIES 2
2739 #define SET_ADDRESS_TRIES 1
2740 #define GET_DESCRIPTOR_TRIES 1
2741 #define GET_MAXPACKET0_TRIES 1
2742 #define PORT_INIT_TRIES 4
2743
2744 #else
2745 #define PORT_RESET_TRIES 5
2746 #define SET_ADDRESS_TRIES 2
2747 #define GET_DESCRIPTOR_TRIES 2
2748 #define GET_MAXPACKET0_TRIES 3
2749 #define PORT_INIT_TRIES 4
2750 #endif /* CONFIG_USB_FEW_INIT_RETRIES */
2751
2752 #define HUB_ROOT_RESET_TIME 60 /* times are in msec */
2753 #define HUB_SHORT_RESET_TIME 10
2754 #define HUB_BH_RESET_TIME 50
2755 #define HUB_LONG_RESET_TIME 200
2756 #define HUB_RESET_TIMEOUT 800
2757
use_new_scheme(struct usb_device * udev,int retry,struct usb_port * port_dev)2758 static bool use_new_scheme(struct usb_device *udev, int retry,
2759 struct usb_port *port_dev)
2760 {
2761 int old_scheme_first_port =
2762 (port_dev->quirks & USB_PORT_QUIRK_OLD_SCHEME) ||
2763 old_scheme_first;
2764
2765 /*
2766 * "New scheme" enumeration causes an extra state transition to be
2767 * exposed to an xhci host and causes USB3 devices to receive control
2768 * commands in the default state. This has been seen to cause
2769 * enumeration failures, so disable this enumeration scheme for USB3
2770 * devices.
2771 */
2772 if (udev->speed >= USB_SPEED_SUPER)
2773 return false;
2774
2775 /*
2776 * If use_both_schemes is set, use the first scheme (whichever
2777 * it is) for the larger half of the retries, then use the other
2778 * scheme. Otherwise, use the first scheme for all the retries.
2779 */
2780 if (use_both_schemes && retry >= (PORT_INIT_TRIES + 1) / 2)
2781 return old_scheme_first_port; /* Second half */
2782 return !old_scheme_first_port; /* First half or all */
2783 }
2784
2785 /* Is a USB 3.0 port in the Inactive or Compliance Mode state?
2786 * Port warm reset is required to recover
2787 */
hub_port_warm_reset_required(struct usb_hub * hub,int port1,u16 portstatus)2788 static bool hub_port_warm_reset_required(struct usb_hub *hub, int port1,
2789 u16 portstatus)
2790 {
2791 u16 link_state;
2792
2793 if (!hub_is_superspeed(hub->hdev))
2794 return false;
2795
2796 if (test_bit(port1, hub->warm_reset_bits))
2797 return true;
2798
2799 link_state = portstatus & USB_PORT_STAT_LINK_STATE;
2800 return link_state == USB_SS_PORT_LS_SS_INACTIVE
2801 || link_state == USB_SS_PORT_LS_COMP_MOD;
2802 }
2803
hub_port_wait_reset(struct usb_hub * hub,int port1,struct usb_device * udev,unsigned int delay,bool warm)2804 static int hub_port_wait_reset(struct usb_hub *hub, int port1,
2805 struct usb_device *udev, unsigned int delay, bool warm)
2806 {
2807 int delay_time, ret;
2808 u16 portstatus;
2809 u16 portchange;
2810 u32 ext_portstatus = 0;
2811
2812 for (delay_time = 0;
2813 delay_time < HUB_RESET_TIMEOUT;
2814 delay_time += delay) {
2815 /* wait to give the device a chance to reset */
2816 msleep(delay);
2817
2818 /* read and decode port status */
2819 if (hub_is_superspeedplus(hub->hdev))
2820 ret = hub_ext_port_status(hub, port1,
2821 HUB_EXT_PORT_STATUS,
2822 &portstatus, &portchange,
2823 &ext_portstatus);
2824 else
2825 ret = hub_port_status(hub, port1, &portstatus,
2826 &portchange);
2827 if (ret < 0)
2828 return ret;
2829
2830 /*
2831 * The port state is unknown until the reset completes.
2832 *
2833 * On top of that, some chips may require additional time
2834 * to re-establish a connection after the reset is complete,
2835 * so also wait for the connection to be re-established.
2836 */
2837 if (!(portstatus & USB_PORT_STAT_RESET) &&
2838 (portstatus & USB_PORT_STAT_CONNECTION))
2839 break;
2840
2841 /* switch to the long delay after two short delay failures */
2842 if (delay_time >= 2 * HUB_SHORT_RESET_TIME)
2843 delay = HUB_LONG_RESET_TIME;
2844
2845 dev_dbg(&hub->ports[port1 - 1]->dev,
2846 "not %sreset yet, waiting %dms\n",
2847 warm ? "warm " : "", delay);
2848 }
2849
2850 if ((portstatus & USB_PORT_STAT_RESET))
2851 return -EBUSY;
2852
2853 if (hub_port_warm_reset_required(hub, port1, portstatus))
2854 return -ENOTCONN;
2855
2856 /* Device went away? */
2857 if (!(portstatus & USB_PORT_STAT_CONNECTION))
2858 return -ENOTCONN;
2859
2860 /* Retry if connect change is set but status is still connected.
2861 * A USB 3.0 connection may bounce if multiple warm resets were issued,
2862 * but the device may have successfully re-connected. Ignore it.
2863 */
2864 if (!hub_is_superspeed(hub->hdev) &&
2865 (portchange & USB_PORT_STAT_C_CONNECTION)) {
2866 usb_clear_port_feature(hub->hdev, port1,
2867 USB_PORT_FEAT_C_CONNECTION);
2868 return -EAGAIN;
2869 }
2870
2871 if (!(portstatus & USB_PORT_STAT_ENABLE))
2872 return -EBUSY;
2873
2874 if (!udev)
2875 return 0;
2876
2877 if (hub_is_superspeedplus(hub->hdev)) {
2878 /* extended portstatus Rx and Tx lane count are zero based */
2879 udev->rx_lanes = USB_EXT_PORT_RX_LANES(ext_portstatus) + 1;
2880 udev->tx_lanes = USB_EXT_PORT_TX_LANES(ext_portstatus) + 1;
2881 } else {
2882 udev->rx_lanes = 1;
2883 udev->tx_lanes = 1;
2884 }
2885 if (hub_is_wusb(hub))
2886 udev->speed = USB_SPEED_WIRELESS;
2887 else if (hub_is_superspeedplus(hub->hdev) &&
2888 port_speed_is_ssp(hub->hdev, ext_portstatus &
2889 USB_EXT_PORT_STAT_RX_SPEED_ID))
2890 udev->speed = USB_SPEED_SUPER_PLUS;
2891 else if (hub_is_superspeed(hub->hdev))
2892 udev->speed = USB_SPEED_SUPER;
2893 else if (portstatus & USB_PORT_STAT_HIGH_SPEED)
2894 udev->speed = USB_SPEED_HIGH;
2895 else if (portstatus & USB_PORT_STAT_LOW_SPEED)
2896 udev->speed = USB_SPEED_LOW;
2897 else
2898 udev->speed = USB_SPEED_FULL;
2899 return 0;
2900 }
2901
2902 /* 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)2903 static int hub_port_reset(struct usb_hub *hub, int port1,
2904 struct usb_device *udev, unsigned int delay, bool warm)
2905 {
2906 int i, status;
2907 u16 portchange, portstatus;
2908 struct usb_port *port_dev = hub->ports[port1 - 1];
2909 int reset_recovery_time;
2910
2911 if (!hub_is_superspeed(hub->hdev)) {
2912 if (warm) {
2913 dev_err(hub->intfdev, "only USB3 hub support "
2914 "warm reset\n");
2915 return -EINVAL;
2916 }
2917 /* Block EHCI CF initialization during the port reset.
2918 * Some companion controllers don't like it when they mix.
2919 */
2920 down_read(&ehci_cf_port_reset_rwsem);
2921 } else if (!warm) {
2922 /*
2923 * If the caller hasn't explicitly requested a warm reset,
2924 * double check and see if one is needed.
2925 */
2926 if (hub_port_status(hub, port1, &portstatus, &portchange) == 0)
2927 if (hub_port_warm_reset_required(hub, port1,
2928 portstatus))
2929 warm = true;
2930 }
2931 clear_bit(port1, hub->warm_reset_bits);
2932
2933 /* Reset the port */
2934 for (i = 0; i < PORT_RESET_TRIES; i++) {
2935 status = set_port_feature(hub->hdev, port1, (warm ?
2936 USB_PORT_FEAT_BH_PORT_RESET :
2937 USB_PORT_FEAT_RESET));
2938 if (status == -ENODEV) {
2939 ; /* The hub is gone */
2940 } else if (status) {
2941 dev_err(&port_dev->dev,
2942 "cannot %sreset (err = %d)\n",
2943 warm ? "warm " : "", status);
2944 } else {
2945 status = hub_port_wait_reset(hub, port1, udev, delay,
2946 warm);
2947 if (status && status != -ENOTCONN && status != -ENODEV)
2948 dev_dbg(hub->intfdev,
2949 "port_wait_reset: err = %d\n",
2950 status);
2951 }
2952
2953 /* Check for disconnect or reset */
2954 if (status == 0 || status == -ENOTCONN || status == -ENODEV) {
2955 usb_clear_port_feature(hub->hdev, port1,
2956 USB_PORT_FEAT_C_RESET);
2957
2958 if (!hub_is_superspeed(hub->hdev))
2959 goto done;
2960
2961 usb_clear_port_feature(hub->hdev, port1,
2962 USB_PORT_FEAT_C_BH_PORT_RESET);
2963 usb_clear_port_feature(hub->hdev, port1,
2964 USB_PORT_FEAT_C_PORT_LINK_STATE);
2965
2966 if (udev)
2967 usb_clear_port_feature(hub->hdev, port1,
2968 USB_PORT_FEAT_C_CONNECTION);
2969
2970 /*
2971 * If a USB 3.0 device migrates from reset to an error
2972 * state, re-issue the warm reset.
2973 */
2974 if (hub_port_status(hub, port1,
2975 &portstatus, &portchange) < 0)
2976 goto done;
2977
2978 if (!hub_port_warm_reset_required(hub, port1,
2979 portstatus))
2980 goto done;
2981
2982 /*
2983 * If the port is in SS.Inactive or Compliance Mode, the
2984 * hot or warm reset failed. Try another warm reset.
2985 */
2986 if (!warm) {
2987 dev_dbg(&port_dev->dev,
2988 "hot reset failed, warm reset\n");
2989 warm = true;
2990 }
2991 }
2992
2993 dev_dbg(&port_dev->dev,
2994 "not enabled, trying %sreset again...\n",
2995 warm ? "warm " : "");
2996 delay = HUB_LONG_RESET_TIME;
2997 }
2998
2999 dev_err(&port_dev->dev, "Cannot enable. Maybe the USB cable is bad?\n");
3000
3001 done:
3002 if (status == 0) {
3003 if (port_dev->quirks & USB_PORT_QUIRK_FAST_ENUM)
3004 usleep_range(10000, 12000);
3005 else {
3006 /* TRSTRCY = 10 ms; plus some extra */
3007 reset_recovery_time = 10 + 40;
3008
3009 /* Hub needs extra delay after resetting its port. */
3010 if (hub->hdev->quirks & USB_QUIRK_HUB_SLOW_RESET)
3011 reset_recovery_time += 100;
3012
3013 msleep(reset_recovery_time);
3014 }
3015
3016 if (udev) {
3017 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
3018
3019 update_devnum(udev, 0);
3020 /* The xHC may think the device is already reset,
3021 * so ignore the status.
3022 */
3023 if (hcd->driver->reset_device)
3024 hcd->driver->reset_device(hcd, udev);
3025
3026 usb_set_device_state(udev, USB_STATE_DEFAULT);
3027 }
3028 } else {
3029 if (udev)
3030 usb_set_device_state(udev, USB_STATE_NOTATTACHED);
3031 }
3032
3033 if (!hub_is_superspeed(hub->hdev))
3034 up_read(&ehci_cf_port_reset_rwsem);
3035
3036 return status;
3037 }
3038
3039 /* Check if a port is power on */
port_is_power_on(struct usb_hub * hub,unsigned portstatus)3040 static int port_is_power_on(struct usb_hub *hub, unsigned portstatus)
3041 {
3042 int ret = 0;
3043
3044 if (hub_is_superspeed(hub->hdev)) {
3045 if (portstatus & USB_SS_PORT_STAT_POWER)
3046 ret = 1;
3047 } else {
3048 if (portstatus & USB_PORT_STAT_POWER)
3049 ret = 1;
3050 }
3051
3052 return ret;
3053 }
3054
usb_lock_port(struct usb_port * port_dev)3055 static void usb_lock_port(struct usb_port *port_dev)
3056 __acquires(&port_dev->status_lock)
3057 {
3058 mutex_lock(&port_dev->status_lock);
3059 __acquire(&port_dev->status_lock);
3060 }
3061
usb_unlock_port(struct usb_port * port_dev)3062 static void usb_unlock_port(struct usb_port *port_dev)
3063 __releases(&port_dev->status_lock)
3064 {
3065 mutex_unlock(&port_dev->status_lock);
3066 __release(&port_dev->status_lock);
3067 }
3068
3069 #ifdef CONFIG_PM
3070
3071 /* 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)3072 static int port_is_suspended(struct usb_hub *hub, unsigned portstatus)
3073 {
3074 int ret = 0;
3075
3076 if (hub_is_superspeed(hub->hdev)) {
3077 if ((portstatus & USB_PORT_STAT_LINK_STATE)
3078 == USB_SS_PORT_LS_U3)
3079 ret = 1;
3080 } else {
3081 if (portstatus & USB_PORT_STAT_SUSPEND)
3082 ret = 1;
3083 }
3084
3085 return ret;
3086 }
3087
3088 /* Determine whether the device on a port is ready for a normal resume,
3089 * is ready for a reset-resume, or should be disconnected.
3090 */
check_port_resume_type(struct usb_device * udev,struct usb_hub * hub,int port1,int status,u16 portchange,u16 portstatus)3091 static int check_port_resume_type(struct usb_device *udev,
3092 struct usb_hub *hub, int port1,
3093 int status, u16 portchange, u16 portstatus)
3094 {
3095 struct usb_port *port_dev = hub->ports[port1 - 1];
3096 int retries = 3;
3097
3098 retry:
3099 /* Is a warm reset needed to recover the connection? */
3100 if (status == 0 && udev->reset_resume
3101 && hub_port_warm_reset_required(hub, port1, portstatus)) {
3102 /* pass */;
3103 }
3104 /* Is the device still present? */
3105 else if (status || port_is_suspended(hub, portstatus) ||
3106 !port_is_power_on(hub, portstatus)) {
3107 if (status >= 0)
3108 status = -ENODEV;
3109 } else if (!(portstatus & USB_PORT_STAT_CONNECTION)) {
3110 if (retries--) {
3111 usleep_range(200, 300);
3112 status = hub_port_status(hub, port1, &portstatus,
3113 &portchange);
3114 goto retry;
3115 }
3116 status = -ENODEV;
3117 }
3118
3119 /* Can't do a normal resume if the port isn't enabled,
3120 * so try a reset-resume instead.
3121 */
3122 else if (!(portstatus & USB_PORT_STAT_ENABLE) && !udev->reset_resume) {
3123 if (udev->persist_enabled)
3124 udev->reset_resume = 1;
3125 else
3126 status = -ENODEV;
3127 }
3128
3129 if (status) {
3130 dev_dbg(&port_dev->dev, "status %04x.%04x after resume, %d\n",
3131 portchange, portstatus, status);
3132 } else if (udev->reset_resume) {
3133
3134 /* Late port handoff can set status-change bits */
3135 if (portchange & USB_PORT_STAT_C_CONNECTION)
3136 usb_clear_port_feature(hub->hdev, port1,
3137 USB_PORT_FEAT_C_CONNECTION);
3138 if (portchange & USB_PORT_STAT_C_ENABLE)
3139 usb_clear_port_feature(hub->hdev, port1,
3140 USB_PORT_FEAT_C_ENABLE);
3141
3142 /*
3143 * Whatever made this reset-resume necessary may have
3144 * turned on the port1 bit in hub->change_bits. But after
3145 * a successful reset-resume we want the bit to be clear;
3146 * if it was on it would indicate that something happened
3147 * following the reset-resume.
3148 */
3149 clear_bit(port1, hub->change_bits);
3150 }
3151
3152 return status;
3153 }
3154
usb_disable_ltm(struct usb_device * udev)3155 int usb_disable_ltm(struct usb_device *udev)
3156 {
3157 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
3158
3159 /* Check if the roothub and device supports LTM. */
3160 if (!usb_device_supports_ltm(hcd->self.root_hub) ||
3161 !usb_device_supports_ltm(udev))
3162 return 0;
3163
3164 /* Clear Feature LTM Enable can only be sent if the device is
3165 * configured.
3166 */
3167 if (!udev->actconfig)
3168 return 0;
3169
3170 return usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
3171 USB_REQ_CLEAR_FEATURE, USB_RECIP_DEVICE,
3172 USB_DEVICE_LTM_ENABLE, 0, NULL, 0,
3173 USB_CTRL_SET_TIMEOUT);
3174 }
3175 EXPORT_SYMBOL_GPL(usb_disable_ltm);
3176
usb_enable_ltm(struct usb_device * udev)3177 void usb_enable_ltm(struct usb_device *udev)
3178 {
3179 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
3180
3181 /* Check if the roothub and device supports LTM. */
3182 if (!usb_device_supports_ltm(hcd->self.root_hub) ||
3183 !usb_device_supports_ltm(udev))
3184 return;
3185
3186 /* Set Feature LTM Enable can only be sent if the device is
3187 * configured.
3188 */
3189 if (!udev->actconfig)
3190 return;
3191
3192 usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
3193 USB_REQ_SET_FEATURE, USB_RECIP_DEVICE,
3194 USB_DEVICE_LTM_ENABLE, 0, NULL, 0,
3195 USB_CTRL_SET_TIMEOUT);
3196 }
3197 EXPORT_SYMBOL_GPL(usb_enable_ltm);
3198
3199 /*
3200 * usb_enable_remote_wakeup - enable remote wakeup for a device
3201 * @udev: target device
3202 *
3203 * For USB-2 devices: Set the device's remote wakeup feature.
3204 *
3205 * For USB-3 devices: Assume there's only one function on the device and
3206 * enable remote wake for the first interface. FIXME if the interface
3207 * association descriptor shows there's more than one function.
3208 */
usb_enable_remote_wakeup(struct usb_device * udev)3209 static int usb_enable_remote_wakeup(struct usb_device *udev)
3210 {
3211 if (udev->speed < USB_SPEED_SUPER)
3212 return usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
3213 USB_REQ_SET_FEATURE, USB_RECIP_DEVICE,
3214 USB_DEVICE_REMOTE_WAKEUP, 0, NULL, 0,
3215 USB_CTRL_SET_TIMEOUT);
3216 else
3217 return usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
3218 USB_REQ_SET_FEATURE, USB_RECIP_INTERFACE,
3219 USB_INTRF_FUNC_SUSPEND,
3220 USB_INTRF_FUNC_SUSPEND_RW |
3221 USB_INTRF_FUNC_SUSPEND_LP,
3222 NULL, 0, USB_CTRL_SET_TIMEOUT);
3223 }
3224
3225 /*
3226 * usb_disable_remote_wakeup - disable remote wakeup for a device
3227 * @udev: target device
3228 *
3229 * For USB-2 devices: Clear the device's remote wakeup feature.
3230 *
3231 * For USB-3 devices: Assume there's only one function on the device and
3232 * disable remote wake for the first interface. FIXME if the interface
3233 * association descriptor shows there's more than one function.
3234 */
usb_disable_remote_wakeup(struct usb_device * udev)3235 static int usb_disable_remote_wakeup(struct usb_device *udev)
3236 {
3237 if (udev->speed < USB_SPEED_SUPER)
3238 return usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
3239 USB_REQ_CLEAR_FEATURE, USB_RECIP_DEVICE,
3240 USB_DEVICE_REMOTE_WAKEUP, 0, NULL, 0,
3241 USB_CTRL_SET_TIMEOUT);
3242 else
3243 return usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
3244 USB_REQ_SET_FEATURE, USB_RECIP_INTERFACE,
3245 USB_INTRF_FUNC_SUSPEND, 0, NULL, 0,
3246 USB_CTRL_SET_TIMEOUT);
3247 }
3248
3249 /* Count of wakeup-enabled devices at or below udev */
usb_wakeup_enabled_descendants(struct usb_device * udev)3250 unsigned usb_wakeup_enabled_descendants(struct usb_device *udev)
3251 {
3252 struct usb_hub *hub = usb_hub_to_struct_hub(udev);
3253
3254 return udev->do_remote_wakeup +
3255 (hub ? hub->wakeup_enabled_descendants : 0);
3256 }
3257 EXPORT_SYMBOL_GPL(usb_wakeup_enabled_descendants);
3258
3259 /*
3260 * usb_port_suspend - suspend a usb device's upstream port
3261 * @udev: device that's no longer in active use, not a root hub
3262 * Context: must be able to sleep; device not locked; pm locks held
3263 *
3264 * Suspends a USB device that isn't in active use, conserving power.
3265 * Devices may wake out of a suspend, if anything important happens,
3266 * using the remote wakeup mechanism. They may also be taken out of
3267 * suspend by the host, using usb_port_resume(). It's also routine
3268 * to disconnect devices while they are suspended.
3269 *
3270 * This only affects the USB hardware for a device; its interfaces
3271 * (and, for hubs, child devices) must already have been suspended.
3272 *
3273 * Selective port suspend reduces power; most suspended devices draw
3274 * less than 500 uA. It's also used in OTG, along with remote wakeup.
3275 * All devices below the suspended port are also suspended.
3276 *
3277 * Devices leave suspend state when the host wakes them up. Some devices
3278 * also support "remote wakeup", where the device can activate the USB
3279 * tree above them to deliver data, such as a keypress or packet. In
3280 * some cases, this wakes the USB host.
3281 *
3282 * Suspending OTG devices may trigger HNP, if that's been enabled
3283 * between a pair of dual-role devices. That will change roles, such
3284 * as from A-Host to A-Peripheral or from B-Host back to B-Peripheral.
3285 *
3286 * Devices on USB hub ports have only one "suspend" state, corresponding
3287 * to ACPI D2, "may cause the device to lose some context".
3288 * State transitions include:
3289 *
3290 * - suspend, resume ... when the VBUS power link stays live
3291 * - suspend, disconnect ... VBUS lost
3292 *
3293 * Once VBUS drop breaks the circuit, the port it's using has to go through
3294 * normal re-enumeration procedures, starting with enabling VBUS power.
3295 * Other than re-initializing the hub (plug/unplug, except for root hubs),
3296 * Linux (2.6) currently has NO mechanisms to initiate that: no hub_wq
3297 * timer, no SRP, no requests through sysfs.
3298 *
3299 * If Runtime PM isn't enabled or used, non-SuperSpeed devices may not get
3300 * suspended until their bus goes into global suspend (i.e., the root
3301 * hub is suspended). Nevertheless, we change @udev->state to
3302 * USB_STATE_SUSPENDED as this is the device's "logical" state. The actual
3303 * upstream port setting is stored in @udev->port_is_suspended.
3304 *
3305 * Returns 0 on success, else negative errno.
3306 */
usb_port_suspend(struct usb_device * udev,pm_message_t msg)3307 int usb_port_suspend(struct usb_device *udev, pm_message_t msg)
3308 {
3309 struct usb_hub *hub = usb_hub_to_struct_hub(udev->parent);
3310 struct usb_port *port_dev = hub->ports[udev->portnum - 1];
3311 int port1 = udev->portnum;
3312 int status;
3313 bool really_suspend = true;
3314
3315 usb_lock_port(port_dev);
3316
3317 /* enable remote wakeup when appropriate; this lets the device
3318 * wake up the upstream hub (including maybe the root hub).
3319 *
3320 * NOTE: OTG devices may issue remote wakeup (or SRP) even when
3321 * we don't explicitly enable it here.
3322 */
3323 if (udev->do_remote_wakeup) {
3324 status = usb_enable_remote_wakeup(udev);
3325 if (status) {
3326 dev_dbg(&udev->dev, "won't remote wakeup, status %d\n",
3327 status);
3328 /* bail if autosuspend is requested */
3329 if (PMSG_IS_AUTO(msg))
3330 goto err_wakeup;
3331 }
3332 }
3333
3334 /* disable USB2 hardware LPM */
3335 usb_disable_usb2_hardware_lpm(udev);
3336
3337 if (usb_disable_ltm(udev)) {
3338 dev_err(&udev->dev, "Failed to disable LTM before suspend\n");
3339 status = -ENOMEM;
3340 if (PMSG_IS_AUTO(msg))
3341 goto err_ltm;
3342 }
3343
3344 /* see 7.1.7.6 */
3345 if (hub_is_superspeed(hub->hdev))
3346 status = hub_set_port_link_state(hub, port1, USB_SS_PORT_LS_U3);
3347
3348 /*
3349 * For system suspend, we do not need to enable the suspend feature
3350 * on individual USB-2 ports. The devices will automatically go
3351 * into suspend a few ms after the root hub stops sending packets.
3352 * The USB 2.0 spec calls this "global suspend".
3353 *
3354 * However, many USB hubs have a bug: They don't relay wakeup requests
3355 * from a downstream port if the port's suspend feature isn't on.
3356 * Therefore we will turn on the suspend feature if udev or any of its
3357 * descendants is enabled for remote wakeup.
3358 */
3359 else if (PMSG_IS_AUTO(msg) || usb_wakeup_enabled_descendants(udev) > 0)
3360 status = set_port_feature(hub->hdev, port1,
3361 USB_PORT_FEAT_SUSPEND);
3362 else {
3363 really_suspend = false;
3364 status = 0;
3365 }
3366 if (status) {
3367 dev_dbg(&port_dev->dev, "can't suspend, status %d\n", status);
3368
3369 /* Try to enable USB3 LTM again */
3370 usb_enable_ltm(udev);
3371 err_ltm:
3372 /* Try to enable USB2 hardware LPM again */
3373 usb_enable_usb2_hardware_lpm(udev);
3374
3375 if (udev->do_remote_wakeup)
3376 (void) usb_disable_remote_wakeup(udev);
3377 err_wakeup:
3378
3379 /* System sleep transitions should never fail */
3380 if (!PMSG_IS_AUTO(msg))
3381 status = 0;
3382 } else {
3383 dev_dbg(&udev->dev, "usb %ssuspend, wakeup %d\n",
3384 (PMSG_IS_AUTO(msg) ? "auto-" : ""),
3385 udev->do_remote_wakeup);
3386 if (really_suspend) {
3387 udev->port_is_suspended = 1;
3388
3389 /* device has up to 10 msec to fully suspend */
3390 msleep(10);
3391 }
3392 usb_set_device_state(udev, USB_STATE_SUSPENDED);
3393 }
3394
3395 if (status == 0 && !udev->do_remote_wakeup && udev->persist_enabled
3396 && test_and_clear_bit(port1, hub->child_usage_bits))
3397 pm_runtime_put_sync(&port_dev->dev);
3398
3399 usb_mark_last_busy(hub->hdev);
3400
3401 usb_unlock_port(port_dev);
3402 return status;
3403 }
3404
3405 /*
3406 * If the USB "suspend" state is in use (rather than "global suspend"),
3407 * many devices will be individually taken out of suspend state using
3408 * special "resume" signaling. This routine kicks in shortly after
3409 * hardware resume signaling is finished, either because of selective
3410 * resume (by host) or remote wakeup (by device) ... now see what changed
3411 * in the tree that's rooted at this device.
3412 *
3413 * If @udev->reset_resume is set then the device is reset before the
3414 * status check is done.
3415 */
finish_port_resume(struct usb_device * udev)3416 static int finish_port_resume(struct usb_device *udev)
3417 {
3418 int status = 0;
3419 u16 devstatus = 0;
3420
3421 /* caller owns the udev device lock */
3422 dev_dbg(&udev->dev, "%s\n",
3423 udev->reset_resume ? "finish reset-resume" : "finish resume");
3424
3425 /* usb ch9 identifies four variants of SUSPENDED, based on what
3426 * state the device resumes to. Linux currently won't see the
3427 * first two on the host side; they'd be inside hub_port_init()
3428 * during many timeouts, but hub_wq can't suspend until later.
3429 */
3430 usb_set_device_state(udev, udev->actconfig
3431 ? USB_STATE_CONFIGURED
3432 : USB_STATE_ADDRESS);
3433
3434 /* 10.5.4.5 says not to reset a suspended port if the attached
3435 * device is enabled for remote wakeup. Hence the reset
3436 * operation is carried out here, after the port has been
3437 * resumed.
3438 */
3439 if (udev->reset_resume) {
3440 /*
3441 * If the device morphs or switches modes when it is reset,
3442 * we don't want to perform a reset-resume. We'll fail the
3443 * resume, which will cause a logical disconnect, and then
3444 * the device will be rediscovered.
3445 */
3446 retry_reset_resume:
3447 if (udev->quirks & USB_QUIRK_RESET)
3448 status = -ENODEV;
3449 else
3450 status = usb_reset_and_verify_device(udev);
3451 }
3452
3453 /* 10.5.4.5 says be sure devices in the tree are still there.
3454 * For now let's assume the device didn't go crazy on resume,
3455 * and device drivers will know about any resume quirks.
3456 */
3457 if (status == 0) {
3458 devstatus = 0;
3459 status = usb_get_std_status(udev, USB_RECIP_DEVICE, 0, &devstatus);
3460
3461 /* If a normal resume failed, try doing a reset-resume */
3462 if (status && !udev->reset_resume && udev->persist_enabled) {
3463 dev_dbg(&udev->dev, "retry with reset-resume\n");
3464 udev->reset_resume = 1;
3465 goto retry_reset_resume;
3466 }
3467 }
3468
3469 if (status) {
3470 dev_dbg(&udev->dev, "gone after usb resume? status %d\n",
3471 status);
3472 /*
3473 * There are a few quirky devices which violate the standard
3474 * by claiming to have remote wakeup enabled after a reset,
3475 * which crash if the feature is cleared, hence check for
3476 * udev->reset_resume
3477 */
3478 } else if (udev->actconfig && !udev->reset_resume) {
3479 if (udev->speed < USB_SPEED_SUPER) {
3480 if (devstatus & (1 << USB_DEVICE_REMOTE_WAKEUP))
3481 status = usb_disable_remote_wakeup(udev);
3482 } else {
3483 status = usb_get_std_status(udev, USB_RECIP_INTERFACE, 0,
3484 &devstatus);
3485 if (!status && devstatus & (USB_INTRF_STAT_FUNC_RW_CAP
3486 | USB_INTRF_STAT_FUNC_RW))
3487 status = usb_disable_remote_wakeup(udev);
3488 }
3489
3490 if (status)
3491 dev_dbg(&udev->dev,
3492 "disable remote wakeup, status %d\n",
3493 status);
3494 status = 0;
3495 }
3496 return status;
3497 }
3498
3499 /*
3500 * There are some SS USB devices which take longer time for link training.
3501 * XHCI specs 4.19.4 says that when Link training is successful, port
3502 * sets CCS bit to 1. So if SW reads port status before successful link
3503 * training, then it will not find device to be present.
3504 * USB Analyzer log with such buggy devices show that in some cases
3505 * device switch on the RX termination after long delay of host enabling
3506 * the VBUS. In few other cases it has been seen that device fails to
3507 * negotiate link training in first attempt. It has been
3508 * reported till now that few devices take as long as 2000 ms to train
3509 * the link after host enabling its VBUS and termination. Following
3510 * routine implements a 2000 ms timeout for link training. If in a case
3511 * link trains before timeout, loop will exit earlier.
3512 *
3513 * There are also some 2.0 hard drive based devices and 3.0 thumb
3514 * drives that, when plugged into a 2.0 only port, take a long
3515 * time to set CCS after VBUS enable.
3516 *
3517 * FIXME: If a device was connected before suspend, but was removed
3518 * while system was asleep, then the loop in the following routine will
3519 * only exit at timeout.
3520 *
3521 * This routine should only be called when persist is enabled.
3522 */
wait_for_connected(struct usb_device * udev,struct usb_hub * hub,int * port1,u16 * portchange,u16 * portstatus)3523 static int wait_for_connected(struct usb_device *udev,
3524 struct usb_hub *hub, int *port1,
3525 u16 *portchange, u16 *portstatus)
3526 {
3527 int status = 0, delay_ms = 0;
3528
3529 while (delay_ms < 2000) {
3530 if (status || *portstatus & USB_PORT_STAT_CONNECTION)
3531 break;
3532 if (!port_is_power_on(hub, *portstatus)) {
3533 status = -ENODEV;
3534 break;
3535 }
3536 msleep(20);
3537 delay_ms += 20;
3538 status = hub_port_status(hub, *port1, portstatus, portchange);
3539 }
3540 dev_dbg(&udev->dev, "Waited %dms for CONNECT\n", delay_ms);
3541 return status;
3542 }
3543
3544 /*
3545 * usb_port_resume - re-activate a suspended usb device's upstream port
3546 * @udev: device to re-activate, not a root hub
3547 * Context: must be able to sleep; device not locked; pm locks held
3548 *
3549 * This will re-activate the suspended device, increasing power usage
3550 * while letting drivers communicate again with its endpoints.
3551 * USB resume explicitly guarantees that the power session between
3552 * the host and the device is the same as it was when the device
3553 * suspended.
3554 *
3555 * If @udev->reset_resume is set then this routine won't check that the
3556 * port is still enabled. Furthermore, finish_port_resume() above will
3557 * reset @udev. The end result is that a broken power session can be
3558 * recovered and @udev will appear to persist across a loss of VBUS power.
3559 *
3560 * For example, if a host controller doesn't maintain VBUS suspend current
3561 * during a system sleep or is reset when the system wakes up, all the USB
3562 * power sessions below it will be broken. This is especially troublesome
3563 * for mass-storage devices containing mounted filesystems, since the
3564 * device will appear to have disconnected and all the memory mappings
3565 * to it will be lost. Using the USB_PERSIST facility, the device can be
3566 * made to appear as if it had not disconnected.
3567 *
3568 * This facility can be dangerous. Although usb_reset_and_verify_device() makes
3569 * every effort to insure that the same device is present after the
3570 * reset as before, it cannot provide a 100% guarantee. Furthermore it's
3571 * quite possible for a device to remain unaltered but its media to be
3572 * changed. If the user replaces a flash memory card while the system is
3573 * asleep, he will have only himself to blame when the filesystem on the
3574 * new card is corrupted and the system crashes.
3575 *
3576 * Returns 0 on success, else negative errno.
3577 */
usb_port_resume(struct usb_device * udev,pm_message_t msg)3578 int usb_port_resume(struct usb_device *udev, pm_message_t msg)
3579 {
3580 struct usb_hub *hub = usb_hub_to_struct_hub(udev->parent);
3581 struct usb_port *port_dev = hub->ports[udev->portnum - 1];
3582 int port1 = udev->portnum;
3583 int status;
3584 u16 portchange, portstatus;
3585
3586 if (!test_and_set_bit(port1, hub->child_usage_bits)) {
3587 status = pm_runtime_resume_and_get(&port_dev->dev);
3588 if (status < 0) {
3589 dev_dbg(&udev->dev, "can't resume usb port, status %d\n",
3590 status);
3591 return status;
3592 }
3593 }
3594
3595 usb_lock_port(port_dev);
3596
3597 /* Skip the initial Clear-Suspend step for a remote wakeup */
3598 status = hub_port_status(hub, port1, &portstatus, &portchange);
3599 if (status == 0 && !port_is_suspended(hub, portstatus)) {
3600 if (portchange & USB_PORT_STAT_C_SUSPEND)
3601 pm_wakeup_event(&udev->dev, 0);
3602 goto SuspendCleared;
3603 }
3604
3605 /* see 7.1.7.7; affects power usage, but not budgeting */
3606 if (hub_is_superspeed(hub->hdev))
3607 status = hub_set_port_link_state(hub, port1, USB_SS_PORT_LS_U0);
3608 else
3609 status = usb_clear_port_feature(hub->hdev,
3610 port1, USB_PORT_FEAT_SUSPEND);
3611 if (status) {
3612 dev_dbg(&port_dev->dev, "can't resume, status %d\n", status);
3613 } else {
3614 /* drive resume for USB_RESUME_TIMEOUT msec */
3615 dev_dbg(&udev->dev, "usb %sresume\n",
3616 (PMSG_IS_AUTO(msg) ? "auto-" : ""));
3617 msleep(USB_RESUME_TIMEOUT);
3618
3619 /* Virtual root hubs can trigger on GET_PORT_STATUS to
3620 * stop resume signaling. Then finish the resume
3621 * sequence.
3622 */
3623 status = hub_port_status(hub, port1, &portstatus, &portchange);
3624 }
3625
3626 SuspendCleared:
3627 if (status == 0) {
3628 udev->port_is_suspended = 0;
3629 if (hub_is_superspeed(hub->hdev)) {
3630 if (portchange & USB_PORT_STAT_C_LINK_STATE)
3631 usb_clear_port_feature(hub->hdev, port1,
3632 USB_PORT_FEAT_C_PORT_LINK_STATE);
3633 } else {
3634 if (portchange & USB_PORT_STAT_C_SUSPEND)
3635 usb_clear_port_feature(hub->hdev, port1,
3636 USB_PORT_FEAT_C_SUSPEND);
3637 }
3638
3639 /* TRSMRCY = 10 msec */
3640 msleep(10);
3641 }
3642
3643 if (udev->persist_enabled)
3644 status = wait_for_connected(udev, hub, &port1, &portchange,
3645 &portstatus);
3646
3647 status = check_port_resume_type(udev,
3648 hub, port1, status, portchange, portstatus);
3649 if (status == 0)
3650 status = finish_port_resume(udev);
3651 if (status < 0) {
3652 dev_dbg(&udev->dev, "can't resume, status %d\n", status);
3653 hub_port_logical_disconnect(hub, port1);
3654 } else {
3655 /* Try to enable USB2 hardware LPM */
3656 usb_enable_usb2_hardware_lpm(udev);
3657
3658 /* Try to enable USB3 LTM */
3659 usb_enable_ltm(udev);
3660 }
3661
3662 usb_unlock_port(port_dev);
3663
3664 return status;
3665 }
3666
usb_remote_wakeup(struct usb_device * udev)3667 int usb_remote_wakeup(struct usb_device *udev)
3668 {
3669 int status = 0;
3670
3671 usb_lock_device(udev);
3672 if (udev->state == USB_STATE_SUSPENDED) {
3673 dev_dbg(&udev->dev, "usb %sresume\n", "wakeup-");
3674 status = usb_autoresume_device(udev);
3675 if (status == 0) {
3676 /* Let the drivers do their thing, then... */
3677 usb_autosuspend_device(udev);
3678 }
3679 }
3680 usb_unlock_device(udev);
3681 return status;
3682 }
3683
3684 /* 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)3685 static int hub_handle_remote_wakeup(struct usb_hub *hub, unsigned int port,
3686 u16 portstatus, u16 portchange)
3687 __must_hold(&port_dev->status_lock)
3688 {
3689 struct usb_port *port_dev = hub->ports[port - 1];
3690 struct usb_device *hdev;
3691 struct usb_device *udev;
3692 int connect_change = 0;
3693 u16 link_state;
3694 int ret;
3695
3696 hdev = hub->hdev;
3697 udev = port_dev->child;
3698 if (!hub_is_superspeed(hdev)) {
3699 if (!(portchange & USB_PORT_STAT_C_SUSPEND))
3700 return 0;
3701 usb_clear_port_feature(hdev, port, USB_PORT_FEAT_C_SUSPEND);
3702 } else {
3703 link_state = portstatus & USB_PORT_STAT_LINK_STATE;
3704 if (!udev || udev->state != USB_STATE_SUSPENDED ||
3705 (link_state != USB_SS_PORT_LS_U0 &&
3706 link_state != USB_SS_PORT_LS_U1 &&
3707 link_state != USB_SS_PORT_LS_U2))
3708 return 0;
3709 }
3710
3711 if (udev) {
3712 /* TRSMRCY = 10 msec */
3713 msleep(10);
3714
3715 usb_unlock_port(port_dev);
3716 ret = usb_remote_wakeup(udev);
3717 usb_lock_port(port_dev);
3718 if (ret < 0)
3719 connect_change = 1;
3720 } else {
3721 ret = -ENODEV;
3722 hub_port_disable(hub, port, 1);
3723 }
3724 dev_dbg(&port_dev->dev, "resume, status %d\n", ret);
3725 return connect_change;
3726 }
3727
check_ports_changed(struct usb_hub * hub)3728 static int check_ports_changed(struct usb_hub *hub)
3729 {
3730 int port1;
3731
3732 for (port1 = 1; port1 <= hub->hdev->maxchild; ++port1) {
3733 u16 portstatus, portchange;
3734 int status;
3735
3736 status = hub_port_status(hub, port1, &portstatus, &portchange);
3737 if (!status && portchange)
3738 return 1;
3739 }
3740 return 0;
3741 }
3742
hub_suspend(struct usb_interface * intf,pm_message_t msg)3743 static int hub_suspend(struct usb_interface *intf, pm_message_t msg)
3744 {
3745 struct usb_hub *hub = usb_get_intfdata(intf);
3746 struct usb_device *hdev = hub->hdev;
3747 unsigned port1;
3748
3749 /*
3750 * Warn if children aren't already suspended.
3751 * Also, add up the number of wakeup-enabled descendants.
3752 */
3753 hub->wakeup_enabled_descendants = 0;
3754 for (port1 = 1; port1 <= hdev->maxchild; port1++) {
3755 struct usb_port *port_dev = hub->ports[port1 - 1];
3756 struct usb_device *udev = port_dev->child;
3757
3758 if (udev && udev->can_submit) {
3759 dev_warn(&port_dev->dev, "device %s not suspended yet\n",
3760 dev_name(&udev->dev));
3761 if (PMSG_IS_AUTO(msg))
3762 return -EBUSY;
3763 }
3764 if (udev)
3765 hub->wakeup_enabled_descendants +=
3766 usb_wakeup_enabled_descendants(udev);
3767 }
3768
3769 if (hdev->do_remote_wakeup && hub->quirk_check_port_auto_suspend) {
3770 /* check if there are changes pending on hub ports */
3771 if (check_ports_changed(hub)) {
3772 if (PMSG_IS_AUTO(msg))
3773 return -EBUSY;
3774 pm_wakeup_event(&hdev->dev, 2000);
3775 }
3776 }
3777
3778 if (hub_is_superspeed(hdev) && hdev->do_remote_wakeup) {
3779 /* Enable hub to send remote wakeup for all ports. */
3780 for (port1 = 1; port1 <= hdev->maxchild; port1++) {
3781 set_port_feature(hdev,
3782 port1 |
3783 USB_PORT_FEAT_REMOTE_WAKE_CONNECT |
3784 USB_PORT_FEAT_REMOTE_WAKE_DISCONNECT |
3785 USB_PORT_FEAT_REMOTE_WAKE_OVER_CURRENT,
3786 USB_PORT_FEAT_REMOTE_WAKE_MASK);
3787 }
3788 }
3789
3790 dev_dbg(&intf->dev, "%s\n", __func__);
3791
3792 /* stop hub_wq and related activity */
3793 hub_quiesce(hub, HUB_SUSPEND);
3794 return 0;
3795 }
3796
3797 /* Report wakeup requests from the ports of a resuming root hub */
report_wakeup_requests(struct usb_hub * hub)3798 static void report_wakeup_requests(struct usb_hub *hub)
3799 {
3800 struct usb_device *hdev = hub->hdev;
3801 struct usb_device *udev;
3802 struct usb_hcd *hcd;
3803 unsigned long resuming_ports;
3804 int i;
3805
3806 if (hdev->parent)
3807 return; /* Not a root hub */
3808
3809 hcd = bus_to_hcd(hdev->bus);
3810 if (hcd->driver->get_resuming_ports) {
3811
3812 /*
3813 * The get_resuming_ports() method returns a bitmap (origin 0)
3814 * of ports which have started wakeup signaling but have not
3815 * yet finished resuming. During system resume we will
3816 * resume all the enabled ports, regardless of any wakeup
3817 * signals, which means the wakeup requests would be lost.
3818 * To prevent this, report them to the PM core here.
3819 */
3820 resuming_ports = hcd->driver->get_resuming_ports(hcd);
3821 for (i = 0; i < hdev->maxchild; ++i) {
3822 if (test_bit(i, &resuming_ports)) {
3823 udev = hub->ports[i]->child;
3824 if (udev)
3825 pm_wakeup_event(&udev->dev, 0);
3826 }
3827 }
3828 }
3829 }
3830
hub_resume(struct usb_interface * intf)3831 static int hub_resume(struct usb_interface *intf)
3832 {
3833 struct usb_hub *hub = usb_get_intfdata(intf);
3834
3835 dev_dbg(&intf->dev, "%s\n", __func__);
3836 hub_activate(hub, HUB_RESUME);
3837
3838 /*
3839 * This should be called only for system resume, not runtime resume.
3840 * We can't tell the difference here, so some wakeup requests will be
3841 * reported at the wrong time or more than once. This shouldn't
3842 * matter much, so long as they do get reported.
3843 */
3844 report_wakeup_requests(hub);
3845 return 0;
3846 }
3847
hub_reset_resume(struct usb_interface * intf)3848 static int hub_reset_resume(struct usb_interface *intf)
3849 {
3850 struct usb_hub *hub = usb_get_intfdata(intf);
3851
3852 dev_dbg(&intf->dev, "%s\n", __func__);
3853 hub_activate(hub, HUB_RESET_RESUME);
3854 return 0;
3855 }
3856
3857 /**
3858 * usb_root_hub_lost_power - called by HCD if the root hub lost Vbus power
3859 * @rhdev: struct usb_device for the root hub
3860 *
3861 * The USB host controller driver calls this function when its root hub
3862 * is resumed and Vbus power has been interrupted or the controller
3863 * has been reset. The routine marks @rhdev as having lost power.
3864 * When the hub driver is resumed it will take notice and carry out
3865 * power-session recovery for all the "USB-PERSIST"-enabled child devices;
3866 * the others will be disconnected.
3867 */
usb_root_hub_lost_power(struct usb_device * rhdev)3868 void usb_root_hub_lost_power(struct usb_device *rhdev)
3869 {
3870 dev_notice(&rhdev->dev, "root hub lost power or was reset\n");
3871 rhdev->reset_resume = 1;
3872 }
3873 EXPORT_SYMBOL_GPL(usb_root_hub_lost_power);
3874
3875 static const char * const usb3_lpm_names[] = {
3876 "U0",
3877 "U1",
3878 "U2",
3879 "U3",
3880 };
3881
3882 /*
3883 * Send a Set SEL control transfer to the device, prior to enabling
3884 * device-initiated U1 or U2. This lets the device know the exit latencies from
3885 * the time the device initiates a U1 or U2 exit, to the time it will receive a
3886 * packet from the host.
3887 *
3888 * This function will fail if the SEL or PEL values for udev are greater than
3889 * the maximum allowed values for the link state to be enabled.
3890 */
usb_req_set_sel(struct usb_device * udev,enum usb3_link_state state)3891 static int usb_req_set_sel(struct usb_device *udev, enum usb3_link_state state)
3892 {
3893 struct usb_set_sel_req *sel_values;
3894 unsigned long long u1_sel;
3895 unsigned long long u1_pel;
3896 unsigned long long u2_sel;
3897 unsigned long long u2_pel;
3898 int ret;
3899
3900 if (udev->state != USB_STATE_CONFIGURED)
3901 return 0;
3902
3903 /* Convert SEL and PEL stored in ns to us */
3904 u1_sel = DIV_ROUND_UP(udev->u1_params.sel, 1000);
3905 u1_pel = DIV_ROUND_UP(udev->u1_params.pel, 1000);
3906 u2_sel = DIV_ROUND_UP(udev->u2_params.sel, 1000);
3907 u2_pel = DIV_ROUND_UP(udev->u2_params.pel, 1000);
3908
3909 /*
3910 * Make sure that the calculated SEL and PEL values for the link
3911 * state we're enabling aren't bigger than the max SEL/PEL
3912 * value that will fit in the SET SEL control transfer.
3913 * Otherwise the device would get an incorrect idea of the exit
3914 * latency for the link state, and could start a device-initiated
3915 * U1/U2 when the exit latencies are too high.
3916 */
3917 if ((state == USB3_LPM_U1 &&
3918 (u1_sel > USB3_LPM_MAX_U1_SEL_PEL ||
3919 u1_pel > USB3_LPM_MAX_U1_SEL_PEL)) ||
3920 (state == USB3_LPM_U2 &&
3921 (u2_sel > USB3_LPM_MAX_U2_SEL_PEL ||
3922 u2_pel > USB3_LPM_MAX_U2_SEL_PEL))) {
3923 dev_dbg(&udev->dev, "Device-initiated %s disabled due to long SEL %llu us or PEL %llu us\n",
3924 usb3_lpm_names[state], u1_sel, u1_pel);
3925 return -EINVAL;
3926 }
3927
3928 /*
3929 * If we're enabling device-initiated LPM for one link state,
3930 * but the other link state has a too high SEL or PEL value,
3931 * just set those values to the max in the Set SEL request.
3932 */
3933 if (u1_sel > USB3_LPM_MAX_U1_SEL_PEL)
3934 u1_sel = USB3_LPM_MAX_U1_SEL_PEL;
3935
3936 if (u1_pel > USB3_LPM_MAX_U1_SEL_PEL)
3937 u1_pel = USB3_LPM_MAX_U1_SEL_PEL;
3938
3939 if (u2_sel > USB3_LPM_MAX_U2_SEL_PEL)
3940 u2_sel = USB3_LPM_MAX_U2_SEL_PEL;
3941
3942 if (u2_pel > USB3_LPM_MAX_U2_SEL_PEL)
3943 u2_pel = USB3_LPM_MAX_U2_SEL_PEL;
3944
3945 /*
3946 * usb_enable_lpm() can be called as part of a failed device reset,
3947 * which may be initiated by an error path of a mass storage driver.
3948 * Therefore, use GFP_NOIO.
3949 */
3950 sel_values = kmalloc(sizeof *(sel_values), GFP_NOIO);
3951 if (!sel_values)
3952 return -ENOMEM;
3953
3954 sel_values->u1_sel = u1_sel;
3955 sel_values->u1_pel = u1_pel;
3956 sel_values->u2_sel = cpu_to_le16(u2_sel);
3957 sel_values->u2_pel = cpu_to_le16(u2_pel);
3958
3959 ret = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
3960 USB_REQ_SET_SEL,
3961 USB_RECIP_DEVICE,
3962 0, 0,
3963 sel_values, sizeof *(sel_values),
3964 USB_CTRL_SET_TIMEOUT);
3965 kfree(sel_values);
3966 return ret;
3967 }
3968
3969 /*
3970 * Enable or disable device-initiated U1 or U2 transitions.
3971 */
usb_set_device_initiated_lpm(struct usb_device * udev,enum usb3_link_state state,bool enable)3972 static int usb_set_device_initiated_lpm(struct usb_device *udev,
3973 enum usb3_link_state state, bool enable)
3974 {
3975 int ret;
3976 int feature;
3977
3978 switch (state) {
3979 case USB3_LPM_U1:
3980 feature = USB_DEVICE_U1_ENABLE;
3981 break;
3982 case USB3_LPM_U2:
3983 feature = USB_DEVICE_U2_ENABLE;
3984 break;
3985 default:
3986 dev_warn(&udev->dev, "%s: Can't %s non-U1 or U2 state.\n",
3987 __func__, enable ? "enable" : "disable");
3988 return -EINVAL;
3989 }
3990
3991 if (udev->state != USB_STATE_CONFIGURED) {
3992 dev_dbg(&udev->dev, "%s: Can't %s %s state "
3993 "for unconfigured device.\n",
3994 __func__, enable ? "enable" : "disable",
3995 usb3_lpm_names[state]);
3996 return 0;
3997 }
3998
3999 if (enable) {
4000 /*
4001 * Now send the control transfer to enable device-initiated LPM
4002 * for either U1 or U2.
4003 */
4004 ret = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
4005 USB_REQ_SET_FEATURE,
4006 USB_RECIP_DEVICE,
4007 feature,
4008 0, NULL, 0,
4009 USB_CTRL_SET_TIMEOUT);
4010 } else {
4011 ret = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
4012 USB_REQ_CLEAR_FEATURE,
4013 USB_RECIP_DEVICE,
4014 feature,
4015 0, NULL, 0,
4016 USB_CTRL_SET_TIMEOUT);
4017 }
4018 if (ret < 0) {
4019 dev_warn(&udev->dev, "%s of device-initiated %s failed.\n",
4020 enable ? "Enable" : "Disable",
4021 usb3_lpm_names[state]);
4022 return -EBUSY;
4023 }
4024 return 0;
4025 }
4026
usb_set_lpm_timeout(struct usb_device * udev,enum usb3_link_state state,int timeout)4027 static int usb_set_lpm_timeout(struct usb_device *udev,
4028 enum usb3_link_state state, int timeout)
4029 {
4030 int ret;
4031 int feature;
4032
4033 switch (state) {
4034 case USB3_LPM_U1:
4035 feature = USB_PORT_FEAT_U1_TIMEOUT;
4036 break;
4037 case USB3_LPM_U2:
4038 feature = USB_PORT_FEAT_U2_TIMEOUT;
4039 break;
4040 default:
4041 dev_warn(&udev->dev, "%s: Can't set timeout for non-U1 or U2 state.\n",
4042 __func__);
4043 return -EINVAL;
4044 }
4045
4046 if (state == USB3_LPM_U1 && timeout > USB3_LPM_U1_MAX_TIMEOUT &&
4047 timeout != USB3_LPM_DEVICE_INITIATED) {
4048 dev_warn(&udev->dev, "Failed to set %s timeout to 0x%x, "
4049 "which is a reserved value.\n",
4050 usb3_lpm_names[state], timeout);
4051 return -EINVAL;
4052 }
4053
4054 ret = set_port_feature(udev->parent,
4055 USB_PORT_LPM_TIMEOUT(timeout) | udev->portnum,
4056 feature);
4057 if (ret < 0) {
4058 dev_warn(&udev->dev, "Failed to set %s timeout to 0x%x,"
4059 "error code %i\n", usb3_lpm_names[state],
4060 timeout, ret);
4061 return -EBUSY;
4062 }
4063 if (state == USB3_LPM_U1)
4064 udev->u1_params.timeout = timeout;
4065 else
4066 udev->u2_params.timeout = timeout;
4067 return 0;
4068 }
4069
4070 /*
4071 * Don't allow device intiated U1/U2 if the system exit latency + one bus
4072 * interval is greater than the minimum service interval of any active
4073 * periodic endpoint. See USB 3.2 section 9.4.9
4074 */
usb_device_may_initiate_lpm(struct usb_device * udev,enum usb3_link_state state)4075 static bool usb_device_may_initiate_lpm(struct usb_device *udev,
4076 enum usb3_link_state state)
4077 {
4078 unsigned int sel; /* us */
4079 int i, j;
4080
4081 if (state == USB3_LPM_U1)
4082 sel = DIV_ROUND_UP(udev->u1_params.sel, 1000);
4083 else if (state == USB3_LPM_U2)
4084 sel = DIV_ROUND_UP(udev->u2_params.sel, 1000);
4085 else
4086 return false;
4087
4088 for (i = 0; i < udev->actconfig->desc.bNumInterfaces; i++) {
4089 struct usb_interface *intf;
4090 struct usb_endpoint_descriptor *desc;
4091 unsigned int interval;
4092
4093 intf = udev->actconfig->interface[i];
4094 if (!intf)
4095 continue;
4096
4097 for (j = 0; j < intf->cur_altsetting->desc.bNumEndpoints; j++) {
4098 desc = &intf->cur_altsetting->endpoint[j].desc;
4099
4100 if (usb_endpoint_xfer_int(desc) ||
4101 usb_endpoint_xfer_isoc(desc)) {
4102 interval = (1 << (desc->bInterval - 1)) * 125;
4103 if (sel + 125 > interval)
4104 return false;
4105 }
4106 }
4107 }
4108 return true;
4109 }
4110
4111 /*
4112 * Enable the hub-initiated U1/U2 idle timeouts, and enable device-initiated
4113 * U1/U2 entry.
4114 *
4115 * We will attempt to enable U1 or U2, but there are no guarantees that the
4116 * control transfers to set the hub timeout or enable device-initiated U1/U2
4117 * will be successful.
4118 *
4119 * If the control transfer to enable device-initiated U1/U2 entry fails, then
4120 * hub-initiated U1/U2 will be disabled.
4121 *
4122 * If we cannot set the parent hub U1/U2 timeout, we attempt to let the xHCI
4123 * driver know about it. If that call fails, it should be harmless, and just
4124 * take up more slightly more bus bandwidth for unnecessary U1/U2 exit latency.
4125 */
usb_enable_link_state(struct usb_hcd * hcd,struct usb_device * udev,enum usb3_link_state state)4126 static void usb_enable_link_state(struct usb_hcd *hcd, struct usb_device *udev,
4127 enum usb3_link_state state)
4128 {
4129 int timeout, ret;
4130 __u8 u1_mel;
4131 __le16 u2_mel;
4132
4133 /* Skip if the device BOS descriptor couldn't be read */
4134 if (!udev->bos)
4135 return;
4136
4137 u1_mel = udev->bos->ss_cap->bU1devExitLat;
4138 u2_mel = udev->bos->ss_cap->bU2DevExitLat;
4139
4140 /* If the device says it doesn't have *any* exit latency to come out of
4141 * U1 or U2, it's probably lying. Assume it doesn't implement that link
4142 * state.
4143 */
4144 if ((state == USB3_LPM_U1 && u1_mel == 0) ||
4145 (state == USB3_LPM_U2 && u2_mel == 0))
4146 return;
4147
4148 /*
4149 * First, let the device know about the exit latencies
4150 * associated with the link state we're about to enable.
4151 */
4152 ret = usb_req_set_sel(udev, state);
4153 if (ret < 0) {
4154 dev_warn(&udev->dev, "Set SEL for device-initiated %s failed.\n",
4155 usb3_lpm_names[state]);
4156 return;
4157 }
4158
4159 /* We allow the host controller to set the U1/U2 timeout internally
4160 * first, so that it can change its schedule to account for the
4161 * additional latency to send data to a device in a lower power
4162 * link state.
4163 */
4164 timeout = hcd->driver->enable_usb3_lpm_timeout(hcd, udev, state);
4165
4166 /* xHCI host controller doesn't want to enable this LPM state. */
4167 if (timeout == 0)
4168 return;
4169
4170 if (timeout < 0) {
4171 dev_warn(&udev->dev, "Could not enable %s link state, "
4172 "xHCI error %i.\n", usb3_lpm_names[state],
4173 timeout);
4174 return;
4175 }
4176
4177 if (usb_set_lpm_timeout(udev, state, timeout)) {
4178 /* If we can't set the parent hub U1/U2 timeout,
4179 * device-initiated LPM won't be allowed either, so let the xHCI
4180 * host know that this link state won't be enabled.
4181 */
4182 hcd->driver->disable_usb3_lpm_timeout(hcd, udev, state);
4183 return;
4184 }
4185
4186 /* Only a configured device will accept the Set Feature
4187 * U1/U2_ENABLE
4188 */
4189 if (udev->actconfig &&
4190 usb_device_may_initiate_lpm(udev, state)) {
4191 if (usb_set_device_initiated_lpm(udev, state, true)) {
4192 /*
4193 * Request to enable device initiated U1/U2 failed,
4194 * better to turn off lpm in this case.
4195 */
4196 usb_set_lpm_timeout(udev, state, 0);
4197 hcd->driver->disable_usb3_lpm_timeout(hcd, udev, state);
4198 return;
4199 }
4200 }
4201
4202 if (state == USB3_LPM_U1)
4203 udev->usb3_lpm_u1_enabled = 1;
4204 else if (state == USB3_LPM_U2)
4205 udev->usb3_lpm_u2_enabled = 1;
4206 }
4207 /*
4208 * Disable the hub-initiated U1/U2 idle timeouts, and disable device-initiated
4209 * U1/U2 entry.
4210 *
4211 * If this function returns -EBUSY, the parent hub will still allow U1/U2 entry.
4212 * If zero is returned, the parent will not allow the link to go into U1/U2.
4213 *
4214 * If zero is returned, device-initiated U1/U2 entry may still be enabled, but
4215 * it won't have an effect on the bus link state because the parent hub will
4216 * still disallow device-initiated U1/U2 entry.
4217 *
4218 * If zero is returned, the xHCI host controller may still think U1/U2 entry is
4219 * possible. The result will be slightly more bus bandwidth will be taken up
4220 * (to account for U1/U2 exit latency), but it should be harmless.
4221 */
usb_disable_link_state(struct usb_hcd * hcd,struct usb_device * udev,enum usb3_link_state state)4222 static int usb_disable_link_state(struct usb_hcd *hcd, struct usb_device *udev,
4223 enum usb3_link_state state)
4224 {
4225 switch (state) {
4226 case USB3_LPM_U1:
4227 case USB3_LPM_U2:
4228 break;
4229 default:
4230 dev_warn(&udev->dev, "%s: Can't disable non-U1 or U2 state.\n",
4231 __func__);
4232 return -EINVAL;
4233 }
4234
4235 if (usb_set_lpm_timeout(udev, state, 0))
4236 return -EBUSY;
4237
4238 usb_set_device_initiated_lpm(udev, state, false);
4239
4240 if (hcd->driver->disable_usb3_lpm_timeout(hcd, udev, state))
4241 dev_warn(&udev->dev, "Could not disable xHCI %s timeout, "
4242 "bus schedule bandwidth may be impacted.\n",
4243 usb3_lpm_names[state]);
4244
4245 /* As soon as usb_set_lpm_timeout(0) return 0, hub initiated LPM
4246 * is disabled. Hub will disallows link to enter U1/U2 as well,
4247 * even device is initiating LPM. Hence LPM is disabled if hub LPM
4248 * timeout set to 0, no matter device-initiated LPM is disabled or
4249 * not.
4250 */
4251 if (state == USB3_LPM_U1)
4252 udev->usb3_lpm_u1_enabled = 0;
4253 else if (state == USB3_LPM_U2)
4254 udev->usb3_lpm_u2_enabled = 0;
4255
4256 return 0;
4257 }
4258
4259 /*
4260 * Disable hub-initiated and device-initiated U1 and U2 entry.
4261 * Caller must own the bandwidth_mutex.
4262 *
4263 * This will call usb_enable_lpm() on failure, which will decrement
4264 * lpm_disable_count, and will re-enable LPM if lpm_disable_count reaches zero.
4265 */
usb_disable_lpm(struct usb_device * udev)4266 int usb_disable_lpm(struct usb_device *udev)
4267 {
4268 struct usb_hcd *hcd;
4269
4270 if (!udev || !udev->parent ||
4271 udev->speed < USB_SPEED_SUPER ||
4272 !udev->lpm_capable ||
4273 udev->state < USB_STATE_CONFIGURED)
4274 return 0;
4275
4276 hcd = bus_to_hcd(udev->bus);
4277 if (!hcd || !hcd->driver->disable_usb3_lpm_timeout)
4278 return 0;
4279
4280 udev->lpm_disable_count++;
4281 if ((udev->u1_params.timeout == 0 && udev->u2_params.timeout == 0))
4282 return 0;
4283
4284 /* If LPM is enabled, attempt to disable it. */
4285 if (usb_disable_link_state(hcd, udev, USB3_LPM_U1))
4286 goto enable_lpm;
4287 if (usb_disable_link_state(hcd, udev, USB3_LPM_U2))
4288 goto enable_lpm;
4289
4290 return 0;
4291
4292 enable_lpm:
4293 usb_enable_lpm(udev);
4294 return -EBUSY;
4295 }
4296 EXPORT_SYMBOL_GPL(usb_disable_lpm);
4297
4298 /* Grab the bandwidth_mutex before calling usb_disable_lpm() */
usb_unlocked_disable_lpm(struct usb_device * udev)4299 int usb_unlocked_disable_lpm(struct usb_device *udev)
4300 {
4301 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
4302 int ret;
4303
4304 if (!hcd)
4305 return -EINVAL;
4306
4307 mutex_lock(hcd->bandwidth_mutex);
4308 ret = usb_disable_lpm(udev);
4309 mutex_unlock(hcd->bandwidth_mutex);
4310
4311 return ret;
4312 }
4313 EXPORT_SYMBOL_GPL(usb_unlocked_disable_lpm);
4314
4315 /*
4316 * Attempt to enable device-initiated and hub-initiated U1 and U2 entry. The
4317 * xHCI host policy may prevent U1 or U2 from being enabled.
4318 *
4319 * Other callers may have disabled link PM, so U1 and U2 entry will be disabled
4320 * until the lpm_disable_count drops to zero. Caller must own the
4321 * bandwidth_mutex.
4322 */
usb_enable_lpm(struct usb_device * udev)4323 void usb_enable_lpm(struct usb_device *udev)
4324 {
4325 struct usb_hcd *hcd;
4326 struct usb_hub *hub;
4327 struct usb_port *port_dev;
4328
4329 if (!udev || !udev->parent ||
4330 udev->speed < USB_SPEED_SUPER ||
4331 !udev->lpm_capable ||
4332 udev->state < USB_STATE_CONFIGURED)
4333 return;
4334
4335 udev->lpm_disable_count--;
4336 hcd = bus_to_hcd(udev->bus);
4337 /* Double check that we can both enable and disable LPM.
4338 * Device must be configured to accept set feature U1/U2 timeout.
4339 */
4340 if (!hcd || !hcd->driver->enable_usb3_lpm_timeout ||
4341 !hcd->driver->disable_usb3_lpm_timeout)
4342 return;
4343
4344 if (udev->lpm_disable_count > 0)
4345 return;
4346
4347 hub = usb_hub_to_struct_hub(udev->parent);
4348 if (!hub)
4349 return;
4350
4351 port_dev = hub->ports[udev->portnum - 1];
4352
4353 if (port_dev->usb3_lpm_u1_permit)
4354 usb_enable_link_state(hcd, udev, USB3_LPM_U1);
4355
4356 if (port_dev->usb3_lpm_u2_permit)
4357 usb_enable_link_state(hcd, udev, USB3_LPM_U2);
4358 }
4359 EXPORT_SYMBOL_GPL(usb_enable_lpm);
4360
4361 /* Grab the bandwidth_mutex before calling usb_enable_lpm() */
usb_unlocked_enable_lpm(struct usb_device * udev)4362 void usb_unlocked_enable_lpm(struct usb_device *udev)
4363 {
4364 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
4365
4366 if (!hcd)
4367 return;
4368
4369 mutex_lock(hcd->bandwidth_mutex);
4370 usb_enable_lpm(udev);
4371 mutex_unlock(hcd->bandwidth_mutex);
4372 }
4373 EXPORT_SYMBOL_GPL(usb_unlocked_enable_lpm);
4374
4375 /* 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)4376 static void hub_usb3_port_prepare_disable(struct usb_hub *hub,
4377 struct usb_port *port_dev)
4378 {
4379 struct usb_device *udev = port_dev->child;
4380 int ret;
4381
4382 if (udev && udev->port_is_suspended && udev->do_remote_wakeup) {
4383 ret = hub_set_port_link_state(hub, port_dev->portnum,
4384 USB_SS_PORT_LS_U0);
4385 if (!ret) {
4386 msleep(USB_RESUME_TIMEOUT);
4387 ret = usb_disable_remote_wakeup(udev);
4388 }
4389 if (ret)
4390 dev_warn(&udev->dev,
4391 "Port disable: can't disable remote wake\n");
4392 udev->do_remote_wakeup = 0;
4393 }
4394 }
4395
4396 #else /* CONFIG_PM */
4397
4398 #define hub_suspend NULL
4399 #define hub_resume NULL
4400 #define hub_reset_resume NULL
4401
hub_usb3_port_prepare_disable(struct usb_hub * hub,struct usb_port * port_dev)4402 static inline void hub_usb3_port_prepare_disable(struct usb_hub *hub,
4403 struct usb_port *port_dev) { }
4404
usb_disable_lpm(struct usb_device * udev)4405 int usb_disable_lpm(struct usb_device *udev)
4406 {
4407 return 0;
4408 }
4409 EXPORT_SYMBOL_GPL(usb_disable_lpm);
4410
usb_enable_lpm(struct usb_device * udev)4411 void usb_enable_lpm(struct usb_device *udev) { }
4412 EXPORT_SYMBOL_GPL(usb_enable_lpm);
4413
usb_unlocked_disable_lpm(struct usb_device * udev)4414 int usb_unlocked_disable_lpm(struct usb_device *udev)
4415 {
4416 return 0;
4417 }
4418 EXPORT_SYMBOL_GPL(usb_unlocked_disable_lpm);
4419
usb_unlocked_enable_lpm(struct usb_device * udev)4420 void usb_unlocked_enable_lpm(struct usb_device *udev) { }
4421 EXPORT_SYMBOL_GPL(usb_unlocked_enable_lpm);
4422
usb_disable_ltm(struct usb_device * udev)4423 int usb_disable_ltm(struct usb_device *udev)
4424 {
4425 return 0;
4426 }
4427 EXPORT_SYMBOL_GPL(usb_disable_ltm);
4428
usb_enable_ltm(struct usb_device * udev)4429 void usb_enable_ltm(struct usb_device *udev) { }
4430 EXPORT_SYMBOL_GPL(usb_enable_ltm);
4431
hub_handle_remote_wakeup(struct usb_hub * hub,unsigned int port,u16 portstatus,u16 portchange)4432 static int hub_handle_remote_wakeup(struct usb_hub *hub, unsigned int port,
4433 u16 portstatus, u16 portchange)
4434 {
4435 return 0;
4436 }
4437
4438 #endif /* CONFIG_PM */
4439
4440 /*
4441 * USB-3 does not have a similar link state as USB-2 that will avoid negotiating
4442 * a connection with a plugged-in cable but will signal the host when the cable
4443 * is unplugged. Disable remote wake and set link state to U3 for USB-3 devices
4444 */
hub_port_disable(struct usb_hub * hub,int port1,int set_state)4445 static int hub_port_disable(struct usb_hub *hub, int port1, int set_state)
4446 {
4447 struct usb_port *port_dev = hub->ports[port1 - 1];
4448 struct usb_device *hdev = hub->hdev;
4449 int ret = 0;
4450
4451 if (!hub->error) {
4452 if (hub_is_superspeed(hub->hdev)) {
4453 hub_usb3_port_prepare_disable(hub, port_dev);
4454 ret = hub_set_port_link_state(hub, port_dev->portnum,
4455 USB_SS_PORT_LS_U3);
4456 } else {
4457 ret = usb_clear_port_feature(hdev, port1,
4458 USB_PORT_FEAT_ENABLE);
4459 }
4460 }
4461 if (port_dev->child && set_state)
4462 usb_set_device_state(port_dev->child, USB_STATE_NOTATTACHED);
4463 if (ret && ret != -ENODEV)
4464 dev_err(&port_dev->dev, "cannot disable (err = %d)\n", ret);
4465 return ret;
4466 }
4467
4468 /*
4469 * usb_port_disable - disable a usb device's upstream port
4470 * @udev: device to disable
4471 * Context: @udev locked, must be able to sleep.
4472 *
4473 * Disables a USB device that isn't in active use.
4474 */
usb_port_disable(struct usb_device * udev)4475 int usb_port_disable(struct usb_device *udev)
4476 {
4477 struct usb_hub *hub = usb_hub_to_struct_hub(udev->parent);
4478
4479 return hub_port_disable(hub, udev->portnum, 0);
4480 }
4481
4482 /* USB 2.0 spec, 7.1.7.3 / fig 7-29:
4483 *
4484 * Between connect detection and reset signaling there must be a delay
4485 * of 100ms at least for debounce and power-settling. The corresponding
4486 * timer shall restart whenever the downstream port detects a disconnect.
4487 *
4488 * Apparently there are some bluetooth and irda-dongles and a number of
4489 * low-speed devices for which this debounce period may last over a second.
4490 * Not covered by the spec - but easy to deal with.
4491 *
4492 * This implementation uses a 1500ms total debounce timeout; if the
4493 * connection isn't stable by then it returns -ETIMEDOUT. It checks
4494 * every 25ms for transient disconnects. When the port status has been
4495 * unchanged for 100ms it returns the port status.
4496 */
hub_port_debounce(struct usb_hub * hub,int port1,bool must_be_connected)4497 int hub_port_debounce(struct usb_hub *hub, int port1, bool must_be_connected)
4498 {
4499 int ret;
4500 u16 portchange, portstatus;
4501 unsigned connection = 0xffff;
4502 int total_time, stable_time = 0;
4503 struct usb_port *port_dev = hub->ports[port1 - 1];
4504
4505 for (total_time = 0; ; total_time += HUB_DEBOUNCE_STEP) {
4506 ret = hub_port_status(hub, port1, &portstatus, &portchange);
4507 if (ret < 0)
4508 return ret;
4509
4510 if (!(portchange & USB_PORT_STAT_C_CONNECTION) &&
4511 (portstatus & USB_PORT_STAT_CONNECTION) == connection) {
4512 if (!must_be_connected ||
4513 (connection == USB_PORT_STAT_CONNECTION))
4514 stable_time += HUB_DEBOUNCE_STEP;
4515 if (stable_time >= HUB_DEBOUNCE_STABLE)
4516 break;
4517 } else {
4518 stable_time = 0;
4519 connection = portstatus & USB_PORT_STAT_CONNECTION;
4520 }
4521
4522 if (portchange & USB_PORT_STAT_C_CONNECTION) {
4523 usb_clear_port_feature(hub->hdev, port1,
4524 USB_PORT_FEAT_C_CONNECTION);
4525 }
4526
4527 if (total_time >= HUB_DEBOUNCE_TIMEOUT)
4528 break;
4529 msleep(HUB_DEBOUNCE_STEP);
4530 }
4531
4532 dev_dbg(&port_dev->dev, "debounce total %dms stable %dms status 0x%x\n",
4533 total_time, stable_time, portstatus);
4534
4535 if (stable_time < HUB_DEBOUNCE_STABLE)
4536 return -ETIMEDOUT;
4537 return portstatus;
4538 }
4539
usb_ep0_reinit(struct usb_device * udev)4540 void usb_ep0_reinit(struct usb_device *udev)
4541 {
4542 usb_disable_endpoint(udev, 0 + USB_DIR_IN, true);
4543 usb_disable_endpoint(udev, 0 + USB_DIR_OUT, true);
4544 usb_enable_endpoint(udev, &udev->ep0, true);
4545 }
4546 EXPORT_SYMBOL_GPL(usb_ep0_reinit);
4547
4548 #define usb_sndaddr0pipe() (PIPE_CONTROL << 30)
4549 #define usb_rcvaddr0pipe() ((PIPE_CONTROL << 30) | USB_DIR_IN)
4550
hub_set_address(struct usb_device * udev,int devnum)4551 static int hub_set_address(struct usb_device *udev, int devnum)
4552 {
4553 int retval;
4554 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
4555
4556 /*
4557 * The host controller will choose the device address,
4558 * instead of the core having chosen it earlier
4559 */
4560 if (!hcd->driver->address_device && devnum <= 1)
4561 return -EINVAL;
4562 if (udev->state == USB_STATE_ADDRESS)
4563 return 0;
4564 if (udev->state != USB_STATE_DEFAULT)
4565 return -EINVAL;
4566 if (hcd->driver->address_device)
4567 retval = hcd->driver->address_device(hcd, udev);
4568 else
4569 retval = usb_control_msg(udev, usb_sndaddr0pipe(),
4570 USB_REQ_SET_ADDRESS, 0, devnum, 0,
4571 NULL, 0, USB_CTRL_SET_TIMEOUT);
4572 if (retval == 0) {
4573 update_devnum(udev, devnum);
4574 /* Device now using proper address. */
4575 usb_set_device_state(udev, USB_STATE_ADDRESS);
4576 usb_ep0_reinit(udev);
4577 }
4578 return retval;
4579 }
4580
4581 /*
4582 * There are reports of USB 3.0 devices that say they support USB 2.0 Link PM
4583 * when they're plugged into a USB 2.0 port, but they don't work when LPM is
4584 * enabled.
4585 *
4586 * Only enable USB 2.0 Link PM if the port is internal (hardwired), or the
4587 * device says it supports the new USB 2.0 Link PM errata by setting the BESL
4588 * support bit in the BOS descriptor.
4589 */
hub_set_initial_usb2_lpm_policy(struct usb_device * udev)4590 static void hub_set_initial_usb2_lpm_policy(struct usb_device *udev)
4591 {
4592 struct usb_hub *hub = usb_hub_to_struct_hub(udev->parent);
4593 int connect_type = USB_PORT_CONNECT_TYPE_UNKNOWN;
4594
4595 if (!udev->usb2_hw_lpm_capable || !udev->bos)
4596 return;
4597
4598 if (hub)
4599 connect_type = hub->ports[udev->portnum - 1]->connect_type;
4600
4601 if ((udev->bos->ext_cap->bmAttributes & cpu_to_le32(USB_BESL_SUPPORT)) ||
4602 connect_type == USB_PORT_CONNECT_TYPE_HARD_WIRED) {
4603 udev->usb2_hw_lpm_allowed = 1;
4604 usb_enable_usb2_hardware_lpm(udev);
4605 }
4606 }
4607
hub_enable_device(struct usb_device * udev)4608 static int hub_enable_device(struct usb_device *udev)
4609 {
4610 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
4611
4612 if (!hcd->driver->enable_device)
4613 return 0;
4614 if (udev->state == USB_STATE_ADDRESS)
4615 return 0;
4616 if (udev->state != USB_STATE_DEFAULT)
4617 return -EINVAL;
4618
4619 return hcd->driver->enable_device(hcd, udev);
4620 }
4621
4622 /*
4623 * Get the bMaxPacketSize0 value during initialization by reading the
4624 * device's device descriptor. Since we don't already know this value,
4625 * the transfer is unsafe and it ignores I/O errors, only testing for
4626 * reasonable received values.
4627 *
4628 * For "old scheme" initialization, size will be 8 so we read just the
4629 * start of the device descriptor, which should work okay regardless of
4630 * the actual bMaxPacketSize0 value. For "new scheme" initialization,
4631 * size will be 64 (and buf will point to a sufficiently large buffer),
4632 * which might not be kosher according to the USB spec but it's what
4633 * Windows does and what many devices expect.
4634 *
4635 * Returns: bMaxPacketSize0 or a negative error code.
4636 */
get_bMaxPacketSize0(struct usb_device * udev,struct usb_device_descriptor * buf,int size,bool first_time)4637 static int get_bMaxPacketSize0(struct usb_device *udev,
4638 struct usb_device_descriptor *buf, int size, bool first_time)
4639 {
4640 int i, rc;
4641
4642 /*
4643 * Retry on all errors; some devices are flakey.
4644 * 255 is for WUSB devices, we actually need to use
4645 * 512 (WUSB1.0[4.8.1]).
4646 */
4647 for (i = 0; i < GET_MAXPACKET0_TRIES; ++i) {
4648 /* Start with invalid values in case the transfer fails */
4649 buf->bDescriptorType = buf->bMaxPacketSize0 = 0;
4650 rc = usb_control_msg(udev, usb_rcvaddr0pipe(),
4651 USB_REQ_GET_DESCRIPTOR, USB_DIR_IN,
4652 USB_DT_DEVICE << 8, 0,
4653 buf, size,
4654 initial_descriptor_timeout);
4655 switch (buf->bMaxPacketSize0) {
4656 case 8: case 16: case 32: case 64: case 9:
4657 if (buf->bDescriptorType == USB_DT_DEVICE) {
4658 rc = buf->bMaxPacketSize0;
4659 break;
4660 }
4661 fallthrough;
4662 default:
4663 if (rc >= 0)
4664 rc = -EPROTO;
4665 break;
4666 }
4667
4668 /*
4669 * Some devices time out if they are powered on
4670 * when already connected. They need a second
4671 * reset, so return early. But only on the first
4672 * attempt, lest we get into a time-out/reset loop.
4673 */
4674 if (rc > 0 || (rc == -ETIMEDOUT && first_time &&
4675 udev->speed > USB_SPEED_FULL))
4676 break;
4677 }
4678 return rc;
4679 }
4680
4681 #define GET_DESCRIPTOR_BUFSIZE 64
4682
4683 /* Reset device, (re)assign address, get device descriptor.
4684 * Device connection must be stable, no more debouncing needed.
4685 * Returns device in USB_STATE_ADDRESS, except on error.
4686 *
4687 * If this is called for an already-existing device (as part of
4688 * usb_reset_and_verify_device), the caller must own the device lock and
4689 * the port lock. For a newly detected device that is not accessible
4690 * through any global pointers, it's not necessary to lock the device,
4691 * but it is still necessary to lock the port.
4692 *
4693 * For a newly detected device, @dev_descr must be NULL. The device
4694 * descriptor retrieved from the device will then be stored in
4695 * @udev->descriptor. For an already existing device, @dev_descr
4696 * must be non-NULL. The device descriptor will be stored there,
4697 * not in @udev->descriptor, because descriptors for registered
4698 * devices are meant to be immutable.
4699 */
4700 static int
hub_port_init(struct usb_hub * hub,struct usb_device * udev,int port1,int retry_counter,struct usb_device_descriptor * dev_descr)4701 hub_port_init(struct usb_hub *hub, struct usb_device *udev, int port1,
4702 int retry_counter, struct usb_device_descriptor *dev_descr)
4703 {
4704 struct usb_device *hdev = hub->hdev;
4705 struct usb_hcd *hcd = bus_to_hcd(hdev->bus);
4706 struct usb_port *port_dev = hub->ports[port1 - 1];
4707 int retries, operations, retval, i;
4708 unsigned delay = HUB_SHORT_RESET_TIME;
4709 enum usb_device_speed oldspeed = udev->speed;
4710 const char *speed;
4711 int devnum = udev->devnum;
4712 const char *driver_name;
4713 bool do_new_scheme;
4714 const bool initial = !dev_descr;
4715 int maxp0;
4716 struct usb_device_descriptor *buf, *descr;
4717
4718 buf = kmalloc(GET_DESCRIPTOR_BUFSIZE, GFP_NOIO);
4719 if (!buf)
4720 return -ENOMEM;
4721
4722 /* root hub ports have a slightly longer reset period
4723 * (from USB 2.0 spec, section 7.1.7.5)
4724 */
4725 if (!hdev->parent) {
4726 delay = HUB_ROOT_RESET_TIME;
4727 if (port1 == hdev->bus->otg_port)
4728 hdev->bus->b_hnp_enable = 0;
4729 }
4730
4731 /* Some low speed devices have problems with the quick delay, so */
4732 /* be a bit pessimistic with those devices. RHbug #23670 */
4733 if (oldspeed == USB_SPEED_LOW)
4734 delay = HUB_LONG_RESET_TIME;
4735
4736 /* Reset the device; full speed may morph to high speed */
4737 /* FIXME a USB 2.0 device may morph into SuperSpeed on reset. */
4738 retval = hub_port_reset(hub, port1, udev, delay, false);
4739 if (retval < 0) /* error or disconnect */
4740 goto fail;
4741 /* success, speed is known */
4742
4743 retval = -ENODEV;
4744
4745 /* Don't allow speed changes at reset, except usb 3.0 to faster */
4746 if (oldspeed != USB_SPEED_UNKNOWN && oldspeed != udev->speed &&
4747 !(oldspeed == USB_SPEED_SUPER && udev->speed > oldspeed)) {
4748 dev_dbg(&udev->dev, "device reset changed speed!\n");
4749 goto fail;
4750 }
4751 oldspeed = udev->speed;
4752
4753 if (initial) {
4754 /* USB 2.0 section 5.5.3 talks about ep0 maxpacket ...
4755 * it's fixed size except for full speed devices.
4756 * For Wireless USB devices, ep0 max packet is always 512 (tho
4757 * reported as 0xff in the device descriptor). WUSB1.0[4.8.1].
4758 */
4759 switch (udev->speed) {
4760 case USB_SPEED_SUPER_PLUS:
4761 case USB_SPEED_SUPER:
4762 case USB_SPEED_WIRELESS: /* fixed at 512 */
4763 udev->ep0.desc.wMaxPacketSize = cpu_to_le16(512);
4764 break;
4765 case USB_SPEED_HIGH: /* fixed at 64 */
4766 udev->ep0.desc.wMaxPacketSize = cpu_to_le16(64);
4767 break;
4768 case USB_SPEED_FULL: /* 8, 16, 32, or 64 */
4769 /* to determine the ep0 maxpacket size, try to read
4770 * the device descriptor to get bMaxPacketSize0 and
4771 * then correct our initial guess.
4772 */
4773 udev->ep0.desc.wMaxPacketSize = cpu_to_le16(64);
4774 break;
4775 case USB_SPEED_LOW: /* fixed at 8 */
4776 udev->ep0.desc.wMaxPacketSize = cpu_to_le16(8);
4777 break;
4778 default:
4779 goto fail;
4780 }
4781 }
4782
4783 if (udev->speed == USB_SPEED_WIRELESS)
4784 speed = "variable speed Wireless";
4785 else
4786 speed = usb_speed_string(udev->speed);
4787
4788 /*
4789 * The controller driver may be NULL if the controller device
4790 * is the middle device between platform device and roothub.
4791 * This middle device may not need a device driver due to
4792 * all hardware control can be at platform device driver, this
4793 * platform device is usually a dual-role USB controller device.
4794 */
4795 if (udev->bus->controller->driver)
4796 driver_name = udev->bus->controller->driver->name;
4797 else
4798 driver_name = udev->bus->sysdev->driver->name;
4799
4800 if (udev->speed < USB_SPEED_SUPER)
4801 dev_info(&udev->dev,
4802 "%s %s USB device number %d using %s\n",
4803 (initial ? "new" : "reset"), speed,
4804 devnum, driver_name);
4805
4806 if (initial) {
4807 /* Set up TT records, if needed */
4808 if (hdev->tt) {
4809 udev->tt = hdev->tt;
4810 udev->ttport = hdev->ttport;
4811 } else if (udev->speed != USB_SPEED_HIGH
4812 && hdev->speed == USB_SPEED_HIGH) {
4813 if (!hub->tt.hub) {
4814 dev_err(&udev->dev, "parent hub has no TT\n");
4815 retval = -EINVAL;
4816 goto fail;
4817 }
4818 udev->tt = &hub->tt;
4819 udev->ttport = port1;
4820 }
4821 }
4822
4823 /* Why interleave GET_DESCRIPTOR and SET_ADDRESS this way?
4824 * Because device hardware and firmware is sometimes buggy in
4825 * this area, and this is how Linux has done it for ages.
4826 * Change it cautiously.
4827 *
4828 * NOTE: If use_new_scheme() is true we will start by issuing
4829 * a 64-byte GET_DESCRIPTOR request. This is what Windows does,
4830 * so it may help with some non-standards-compliant devices.
4831 * Otherwise we start with SET_ADDRESS and then try to read the
4832 * first 8 bytes of the device descriptor to get the ep0 maxpacket
4833 * value.
4834 */
4835 do_new_scheme = use_new_scheme(udev, retry_counter, port_dev);
4836
4837 for (retries = 0; retries < GET_DESCRIPTOR_TRIES; (++retries, msleep(100))) {
4838 if (do_new_scheme) {
4839 retval = hub_enable_device(udev);
4840 if (retval < 0) {
4841 dev_err(&udev->dev,
4842 "hub failed to enable device, error %d\n",
4843 retval);
4844 goto fail;
4845 }
4846
4847 maxp0 = get_bMaxPacketSize0(udev, buf,
4848 GET_DESCRIPTOR_BUFSIZE, retries == 0);
4849 if (maxp0 > 0 && !initial &&
4850 maxp0 != udev->descriptor.bMaxPacketSize0) {
4851 dev_err(&udev->dev, "device reset changed ep0 maxpacket size!\n");
4852 retval = -ENODEV;
4853 goto fail;
4854 }
4855
4856 retval = hub_port_reset(hub, port1, udev, delay, false);
4857 if (retval < 0) /* error or disconnect */
4858 goto fail;
4859 if (oldspeed != udev->speed) {
4860 dev_dbg(&udev->dev,
4861 "device reset changed speed!\n");
4862 retval = -ENODEV;
4863 goto fail;
4864 }
4865 if (maxp0 < 0) {
4866 if (maxp0 != -ENODEV)
4867 dev_err(&udev->dev, "device descriptor read/64, error %d\n",
4868 maxp0);
4869 retval = maxp0;
4870 continue;
4871 }
4872 }
4873
4874 /*
4875 * If device is WUSB, we already assigned an
4876 * unauthorized address in the Connect Ack sequence;
4877 * authorization will assign the final address.
4878 */
4879 if (udev->wusb == 0) {
4880 for (operations = 0; operations < SET_ADDRESS_TRIES; ++operations) {
4881 retval = hub_set_address(udev, devnum);
4882 if (retval >= 0)
4883 break;
4884 msleep(200);
4885 }
4886 if (retval < 0) {
4887 if (retval != -ENODEV)
4888 dev_err(&udev->dev, "device not accepting address %d, error %d\n",
4889 devnum, retval);
4890 goto fail;
4891 }
4892 if (udev->speed >= USB_SPEED_SUPER) {
4893 devnum = udev->devnum;
4894 dev_info(&udev->dev,
4895 "%s SuperSpeed%s%s USB device number %d using %s\n",
4896 (udev->config) ? "reset" : "new",
4897 (udev->speed == USB_SPEED_SUPER_PLUS) ?
4898 "Plus Gen 2" : " Gen 1",
4899 (udev->rx_lanes == 2 && udev->tx_lanes == 2) ?
4900 "x2" : "",
4901 devnum, driver_name);
4902 }
4903
4904 /* cope with hardware quirkiness:
4905 * - let SET_ADDRESS settle, some device hardware wants it
4906 * - read ep0 maxpacket even for high and low speed,
4907 */
4908 msleep(10);
4909 if (do_new_scheme)
4910 break;
4911 }
4912
4913 /* !do_new_scheme || wusb */
4914 maxp0 = get_bMaxPacketSize0(udev, buf, 8, retries == 0);
4915 if (maxp0 < 0) {
4916 retval = maxp0;
4917 if (retval != -ENODEV)
4918 dev_err(&udev->dev,
4919 "device descriptor read/8, error %d\n",
4920 retval);
4921 } else {
4922 u32 delay;
4923
4924 if (!initial && maxp0 != udev->descriptor.bMaxPacketSize0) {
4925 dev_err(&udev->dev, "device reset changed ep0 maxpacket size!\n");
4926 retval = -ENODEV;
4927 goto fail;
4928 }
4929
4930 delay = udev->parent->hub_delay;
4931 udev->hub_delay = min_t(u32, delay,
4932 USB_TP_TRANSMISSION_DELAY_MAX);
4933 retval = usb_set_isoch_delay(udev);
4934 if (retval) {
4935 dev_dbg(&udev->dev,
4936 "Failed set isoch delay, error %d\n",
4937 retval);
4938 retval = 0;
4939 }
4940 break;
4941 }
4942 }
4943 if (retval)
4944 goto fail;
4945
4946 /*
4947 * Check the ep0 maxpacket guess and correct it if necessary.
4948 * maxp0 is the value stored in the device descriptor;
4949 * i is the value it encodes (logarithmic for SuperSpeed or greater).
4950 */
4951 i = maxp0;
4952 if (udev->speed >= USB_SPEED_SUPER) {
4953 if (maxp0 <= 16)
4954 i = 1 << maxp0;
4955 else
4956 i = 0; /* Invalid */
4957 }
4958 if (usb_endpoint_maxp(&udev->ep0.desc) == i) {
4959 ; /* Initial ep0 maxpacket guess is right */
4960 } else if ((udev->speed == USB_SPEED_FULL ||
4961 udev->speed == USB_SPEED_HIGH) &&
4962 (i == 8 || i == 16 || i == 32 || i == 64)) {
4963 /* Initial guess is wrong; use the descriptor's value */
4964 if (udev->speed == USB_SPEED_FULL)
4965 dev_dbg(&udev->dev, "ep0 maxpacket = %d\n", i);
4966 else
4967 dev_warn(&udev->dev, "Using ep0 maxpacket: %d\n", i);
4968 udev->ep0.desc.wMaxPacketSize = cpu_to_le16(i);
4969 usb_ep0_reinit(udev);
4970 } else {
4971 /* Initial guess is wrong and descriptor's value is invalid */
4972 dev_err(&udev->dev, "Invalid ep0 maxpacket: %d\n", maxp0);
4973 retval = -EMSGSIZE;
4974 goto fail;
4975 }
4976
4977 descr = usb_get_device_descriptor(udev);
4978 if (IS_ERR(descr)) {
4979 retval = PTR_ERR(descr);
4980 if (retval != -ENODEV)
4981 dev_err(&udev->dev, "device descriptor read/all, error %d\n",
4982 retval);
4983 goto fail;
4984 }
4985 if (initial)
4986 udev->descriptor = *descr;
4987 else
4988 *dev_descr = *descr;
4989 kfree(descr);
4990
4991 /*
4992 * Some superspeed devices have finished the link training process
4993 * and attached to a superspeed hub port, but the device descriptor
4994 * got from those devices show they aren't superspeed devices. Warm
4995 * reset the port attached by the devices can fix them.
4996 */
4997 if ((udev->speed >= USB_SPEED_SUPER) &&
4998 (le16_to_cpu(udev->descriptor.bcdUSB) < 0x0300)) {
4999 dev_err(&udev->dev, "got a wrong device descriptor, warm reset device\n");
5000 hub_port_reset(hub, port1, udev, HUB_BH_RESET_TIME, true);
5001 retval = -EINVAL;
5002 goto fail;
5003 }
5004
5005 usb_detect_quirks(udev);
5006
5007 if (udev->wusb == 0 && le16_to_cpu(udev->descriptor.bcdUSB) >= 0x0201) {
5008 retval = usb_get_bos_descriptor(udev);
5009 if (!retval) {
5010 udev->lpm_capable = usb_device_supports_lpm(udev);
5011 usb_set_lpm_parameters(udev);
5012 }
5013 }
5014
5015 retval = 0;
5016 /* notify HCD that we have a device connected and addressed */
5017 if (hcd->driver->update_device)
5018 hcd->driver->update_device(hcd, udev);
5019 hub_set_initial_usb2_lpm_policy(udev);
5020 fail:
5021 if (retval) {
5022 hub_port_disable(hub, port1, 0);
5023 update_devnum(udev, devnum); /* for disconnect processing */
5024 }
5025 kfree(buf);
5026 return retval;
5027 }
5028
5029 static void
check_highspeed(struct usb_hub * hub,struct usb_device * udev,int port1)5030 check_highspeed(struct usb_hub *hub, struct usb_device *udev, int port1)
5031 {
5032 struct usb_qualifier_descriptor *qual;
5033 int status;
5034
5035 if (udev->quirks & USB_QUIRK_DEVICE_QUALIFIER)
5036 return;
5037
5038 qual = kmalloc(sizeof *qual, GFP_KERNEL);
5039 if (qual == NULL)
5040 return;
5041
5042 status = usb_get_descriptor(udev, USB_DT_DEVICE_QUALIFIER, 0,
5043 qual, sizeof *qual);
5044 if (status == sizeof *qual) {
5045 dev_info(&udev->dev, "not running at top speed; "
5046 "connect to a high speed hub\n");
5047 /* hub LEDs are probably harder to miss than syslog */
5048 if (hub->has_indicators) {
5049 hub->indicator[port1-1] = INDICATOR_GREEN_BLINK;
5050 queue_delayed_work(system_power_efficient_wq,
5051 &hub->leds, 0);
5052 }
5053 }
5054 kfree(qual);
5055 }
5056
5057 static unsigned
hub_power_remaining(struct usb_hub * hub)5058 hub_power_remaining(struct usb_hub *hub)
5059 {
5060 struct usb_device *hdev = hub->hdev;
5061 int remaining;
5062 int port1;
5063
5064 if (!hub->limited_power)
5065 return 0;
5066
5067 remaining = hdev->bus_mA - hub->descriptor->bHubContrCurrent;
5068 for (port1 = 1; port1 <= hdev->maxchild; ++port1) {
5069 struct usb_port *port_dev = hub->ports[port1 - 1];
5070 struct usb_device *udev = port_dev->child;
5071 unsigned unit_load;
5072 int delta;
5073
5074 if (!udev)
5075 continue;
5076 if (hub_is_superspeed(udev))
5077 unit_load = 150;
5078 else
5079 unit_load = 100;
5080
5081 /*
5082 * Unconfigured devices may not use more than one unit load,
5083 * or 8mA for OTG ports
5084 */
5085 if (udev->actconfig)
5086 delta = usb_get_max_power(udev, udev->actconfig);
5087 else if (port1 != udev->bus->otg_port || hdev->parent)
5088 delta = unit_load;
5089 else
5090 delta = 8;
5091 if (delta > hub->mA_per_port)
5092 dev_warn(&port_dev->dev, "%dmA is over %umA budget!\n",
5093 delta, hub->mA_per_port);
5094 remaining -= delta;
5095 }
5096 if (remaining < 0) {
5097 dev_warn(hub->intfdev, "%dmA over power budget!\n",
5098 -remaining);
5099 remaining = 0;
5100 }
5101 return remaining;
5102 }
5103
5104
descriptors_changed(struct usb_device * udev,struct usb_device_descriptor * new_device_descriptor,struct usb_host_bos * old_bos)5105 static int descriptors_changed(struct usb_device *udev,
5106 struct usb_device_descriptor *new_device_descriptor,
5107 struct usb_host_bos *old_bos)
5108 {
5109 int changed = 0;
5110 unsigned index;
5111 unsigned serial_len = 0;
5112 unsigned len;
5113 unsigned old_length;
5114 int length;
5115 char *buf;
5116
5117 if (memcmp(&udev->descriptor, new_device_descriptor,
5118 sizeof(*new_device_descriptor)) != 0)
5119 return 1;
5120
5121 if ((old_bos && !udev->bos) || (!old_bos && udev->bos))
5122 return 1;
5123 if (udev->bos) {
5124 len = le16_to_cpu(udev->bos->desc->wTotalLength);
5125 if (len != le16_to_cpu(old_bos->desc->wTotalLength))
5126 return 1;
5127 if (memcmp(udev->bos->desc, old_bos->desc, len))
5128 return 1;
5129 }
5130
5131 /* Since the idVendor, idProduct, and bcdDevice values in the
5132 * device descriptor haven't changed, we will assume the
5133 * Manufacturer and Product strings haven't changed either.
5134 * But the SerialNumber string could be different (e.g., a
5135 * different flash card of the same brand).
5136 */
5137 if (udev->serial)
5138 serial_len = strlen(udev->serial) + 1;
5139
5140 len = serial_len;
5141 for (index = 0; index < udev->descriptor.bNumConfigurations; index++) {
5142 old_length = le16_to_cpu(udev->config[index].desc.wTotalLength);
5143 len = max(len, old_length);
5144 }
5145
5146 buf = kmalloc(len, GFP_NOIO);
5147 if (!buf)
5148 /* assume the worst */
5149 return 1;
5150
5151 for (index = 0; index < udev->descriptor.bNumConfigurations; index++) {
5152 old_length = le16_to_cpu(udev->config[index].desc.wTotalLength);
5153 length = usb_get_descriptor(udev, USB_DT_CONFIG, index, buf,
5154 old_length);
5155 if (length != old_length) {
5156 dev_dbg(&udev->dev, "config index %d, error %d\n",
5157 index, length);
5158 changed = 1;
5159 break;
5160 }
5161 if (memcmp(buf, udev->rawdescriptors[index], old_length)
5162 != 0) {
5163 dev_dbg(&udev->dev, "config index %d changed (#%d)\n",
5164 index,
5165 ((struct usb_config_descriptor *) buf)->
5166 bConfigurationValue);
5167 changed = 1;
5168 break;
5169 }
5170 }
5171
5172 if (!changed && serial_len) {
5173 length = usb_string(udev, udev->descriptor.iSerialNumber,
5174 buf, serial_len);
5175 if (length + 1 != serial_len) {
5176 dev_dbg(&udev->dev, "serial string error %d\n",
5177 length);
5178 changed = 1;
5179 } else if (memcmp(buf, udev->serial, length) != 0) {
5180 dev_dbg(&udev->dev, "serial string changed\n");
5181 changed = 1;
5182 }
5183 }
5184
5185 kfree(buf);
5186 return changed;
5187 }
5188
hub_port_connect(struct usb_hub * hub,int port1,u16 portstatus,u16 portchange)5189 static void hub_port_connect(struct usb_hub *hub, int port1, u16 portstatus,
5190 u16 portchange)
5191 {
5192 int status = -ENODEV;
5193 int i;
5194 unsigned unit_load;
5195 struct usb_device *hdev = hub->hdev;
5196 struct usb_hcd *hcd = bus_to_hcd(hdev->bus);
5197 struct usb_port *port_dev = hub->ports[port1 - 1];
5198 struct usb_device *udev = port_dev->child;
5199 static int unreliable_port = -1;
5200 bool retry_locked;
5201
5202 /* Disconnect any existing devices under this port */
5203 if (udev) {
5204 if (hcd->usb_phy && !hdev->parent)
5205 usb_phy_notify_disconnect(hcd->usb_phy, udev->speed);
5206 usb_disconnect(&port_dev->child);
5207 }
5208
5209 /* We can forget about a "removed" device when there's a physical
5210 * disconnect or the connect status changes.
5211 */
5212 if (!(portstatus & USB_PORT_STAT_CONNECTION) ||
5213 (portchange & USB_PORT_STAT_C_CONNECTION))
5214 clear_bit(port1, hub->removed_bits);
5215
5216 if (portchange & (USB_PORT_STAT_C_CONNECTION |
5217 USB_PORT_STAT_C_ENABLE)) {
5218 status = hub_port_debounce_be_stable(hub, port1);
5219 if (status < 0) {
5220 if (status != -ENODEV &&
5221 port1 != unreliable_port &&
5222 printk_ratelimit())
5223 dev_err(&port_dev->dev, "connect-debounce failed\n");
5224 portstatus &= ~USB_PORT_STAT_CONNECTION;
5225 unreliable_port = port1;
5226 } else {
5227 portstatus = status;
5228 }
5229 }
5230
5231 /* Return now if debouncing failed or nothing is connected or
5232 * the device was "removed".
5233 */
5234 if (!(portstatus & USB_PORT_STAT_CONNECTION) ||
5235 test_bit(port1, hub->removed_bits)) {
5236
5237 /*
5238 * maybe switch power back on (e.g. root hub was reset)
5239 * but only if the port isn't owned by someone else.
5240 */
5241 if (hub_is_port_power_switchable(hub)
5242 && !port_is_power_on(hub, portstatus)
5243 && !port_dev->port_owner)
5244 set_port_feature(hdev, port1, USB_PORT_FEAT_POWER);
5245
5246 if (portstatus & USB_PORT_STAT_ENABLE)
5247 goto done;
5248 return;
5249 }
5250 if (hub_is_superspeed(hub->hdev))
5251 unit_load = 150;
5252 else
5253 unit_load = 100;
5254
5255 status = 0;
5256
5257 for (i = 0; i < PORT_INIT_TRIES; i++) {
5258 usb_lock_port(port_dev);
5259 mutex_lock(hcd->address0_mutex);
5260 retry_locked = true;
5261 /* reallocate for each attempt, since references
5262 * to the previous one can escape in various ways
5263 */
5264 udev = usb_alloc_dev(hdev, hdev->bus, port1);
5265 if (!udev) {
5266 dev_err(&port_dev->dev,
5267 "couldn't allocate usb_device\n");
5268 mutex_unlock(hcd->address0_mutex);
5269 usb_unlock_port(port_dev);
5270 goto done;
5271 }
5272
5273 usb_set_device_state(udev, USB_STATE_POWERED);
5274 udev->bus_mA = hub->mA_per_port;
5275 udev->level = hdev->level + 1;
5276 udev->wusb = hub_is_wusb(hub);
5277
5278 /* Devices connected to SuperSpeed hubs are USB 3.0 or later */
5279 if (hub_is_superspeed(hub->hdev))
5280 udev->speed = USB_SPEED_SUPER;
5281 else
5282 udev->speed = USB_SPEED_UNKNOWN;
5283
5284 choose_devnum(udev);
5285 if (udev->devnum <= 0) {
5286 status = -ENOTCONN; /* Don't retry */
5287 goto loop;
5288 }
5289
5290 /* reset (non-USB 3.0 devices) and get descriptor */
5291 status = hub_port_init(hub, udev, port1, i, NULL);
5292 if (status < 0)
5293 goto loop;
5294
5295 mutex_unlock(hcd->address0_mutex);
5296 usb_unlock_port(port_dev);
5297 retry_locked = false;
5298
5299 if (udev->quirks & USB_QUIRK_DELAY_INIT)
5300 msleep(2000);
5301
5302 /* consecutive bus-powered hubs aren't reliable; they can
5303 * violate the voltage drop budget. if the new child has
5304 * a "powered" LED, users should notice we didn't enable it
5305 * (without reading syslog), even without per-port LEDs
5306 * on the parent.
5307 */
5308 if (udev->descriptor.bDeviceClass == USB_CLASS_HUB
5309 && udev->bus_mA <= unit_load) {
5310 u16 devstat;
5311
5312 status = usb_get_std_status(udev, USB_RECIP_DEVICE, 0,
5313 &devstat);
5314 if (status) {
5315 dev_dbg(&udev->dev, "get status %d ?\n", status);
5316 goto loop_disable;
5317 }
5318 if ((devstat & (1 << USB_DEVICE_SELF_POWERED)) == 0) {
5319 dev_err(&udev->dev,
5320 "can't connect bus-powered hub "
5321 "to this port\n");
5322 if (hub->has_indicators) {
5323 hub->indicator[port1-1] =
5324 INDICATOR_AMBER_BLINK;
5325 queue_delayed_work(
5326 system_power_efficient_wq,
5327 &hub->leds, 0);
5328 }
5329 status = -ENOTCONN; /* Don't retry */
5330 goto loop_disable;
5331 }
5332 }
5333
5334 /* check for devices running slower than they could */
5335 if (le16_to_cpu(udev->descriptor.bcdUSB) >= 0x0200
5336 && udev->speed == USB_SPEED_FULL
5337 && highspeed_hubs != 0)
5338 check_highspeed(hub, udev, port1);
5339
5340 /* Store the parent's children[] pointer. At this point
5341 * udev becomes globally accessible, although presumably
5342 * no one will look at it until hdev is unlocked.
5343 */
5344 status = 0;
5345
5346 mutex_lock(&usb_port_peer_mutex);
5347
5348 /* We mustn't add new devices if the parent hub has
5349 * been disconnected; we would race with the
5350 * recursively_mark_NOTATTACHED() routine.
5351 */
5352 spin_lock_irq(&device_state_lock);
5353 if (hdev->state == USB_STATE_NOTATTACHED)
5354 status = -ENOTCONN;
5355 else
5356 port_dev->child = udev;
5357 spin_unlock_irq(&device_state_lock);
5358 mutex_unlock(&usb_port_peer_mutex);
5359
5360 /* Run it through the hoops (find a driver, etc) */
5361 if (!status) {
5362 status = usb_new_device(udev);
5363 if (status) {
5364 mutex_lock(&usb_port_peer_mutex);
5365 spin_lock_irq(&device_state_lock);
5366 port_dev->child = NULL;
5367 spin_unlock_irq(&device_state_lock);
5368 mutex_unlock(&usb_port_peer_mutex);
5369 } else {
5370 if (hcd->usb_phy && !hdev->parent)
5371 usb_phy_notify_connect(hcd->usb_phy,
5372 udev->speed);
5373 }
5374 }
5375
5376 if (status)
5377 goto loop_disable;
5378
5379 status = hub_power_remaining(hub);
5380 if (status)
5381 dev_dbg(hub->intfdev, "%dmA power budget left\n", status);
5382
5383 return;
5384
5385 loop_disable:
5386 hub_port_disable(hub, port1, 1);
5387 loop:
5388 usb_ep0_reinit(udev);
5389 release_devnum(udev);
5390 hub_free_dev(udev);
5391 if (retry_locked) {
5392 mutex_unlock(hcd->address0_mutex);
5393 usb_unlock_port(port_dev);
5394 }
5395 usb_put_dev(udev);
5396 if ((status == -ENOTCONN) || (status == -ENOTSUPP))
5397 break;
5398
5399 /* When halfway through our retry count, power-cycle the port */
5400 if (i == (PORT_INIT_TRIES - 1) / 2) {
5401 dev_info(&port_dev->dev, "attempt power cycle\n");
5402 usb_hub_set_port_power(hdev, hub, port1, false);
5403 msleep(2 * hub_power_on_good_delay(hub));
5404 usb_hub_set_port_power(hdev, hub, port1, true);
5405 msleep(hub_power_on_good_delay(hub));
5406 }
5407 }
5408 if (hub->hdev->parent ||
5409 !hcd->driver->port_handed_over ||
5410 !(hcd->driver->port_handed_over)(hcd, port1)) {
5411 if (status != -ENOTCONN && status != -ENODEV)
5412 dev_err(&port_dev->dev,
5413 "unable to enumerate USB device\n");
5414 }
5415
5416 done:
5417 hub_port_disable(hub, port1, 1);
5418 if (hcd->driver->relinquish_port && !hub->hdev->parent) {
5419 if (status != -ENOTCONN && status != -ENODEV)
5420 hcd->driver->relinquish_port(hcd, port1);
5421 }
5422 }
5423
5424 /* Handle physical or logical connection change events.
5425 * This routine is called when:
5426 * a port connection-change occurs;
5427 * a port enable-change occurs (often caused by EMI);
5428 * usb_reset_and_verify_device() encounters changed descriptors (as from
5429 * a firmware download)
5430 * caller already locked the hub
5431 */
hub_port_connect_change(struct usb_hub * hub,int port1,u16 portstatus,u16 portchange)5432 static void hub_port_connect_change(struct usb_hub *hub, int port1,
5433 u16 portstatus, u16 portchange)
5434 __must_hold(&port_dev->status_lock)
5435 {
5436 struct usb_port *port_dev = hub->ports[port1 - 1];
5437 struct usb_device *udev = port_dev->child;
5438 struct usb_device_descriptor *descr;
5439 int status = -ENODEV;
5440
5441 dev_dbg(&port_dev->dev, "status %04x, change %04x, %s\n", portstatus,
5442 portchange, portspeed(hub, portstatus));
5443
5444 if (hub->has_indicators) {
5445 set_port_led(hub, port1, HUB_LED_AUTO);
5446 hub->indicator[port1-1] = INDICATOR_AUTO;
5447 }
5448
5449 #ifdef CONFIG_USB_OTG
5450 /* during HNP, don't repeat the debounce */
5451 if (hub->hdev->bus->is_b_host)
5452 portchange &= ~(USB_PORT_STAT_C_CONNECTION |
5453 USB_PORT_STAT_C_ENABLE);
5454 #endif
5455
5456 /* Try to resuscitate an existing device */
5457 if ((portstatus & USB_PORT_STAT_CONNECTION) && udev &&
5458 udev->state != USB_STATE_NOTATTACHED) {
5459 if (portstatus & USB_PORT_STAT_ENABLE) {
5460 /*
5461 * USB-3 connections are initialized automatically by
5462 * the hostcontroller hardware. Therefore check for
5463 * changed device descriptors before resuscitating the
5464 * device.
5465 */
5466 descr = usb_get_device_descriptor(udev);
5467 if (IS_ERR(descr)) {
5468 dev_dbg(&udev->dev,
5469 "can't read device descriptor %ld\n",
5470 PTR_ERR(descr));
5471 } else {
5472 if (descriptors_changed(udev, descr,
5473 udev->bos)) {
5474 dev_dbg(&udev->dev,
5475 "device descriptor has changed\n");
5476 } else {
5477 status = 0; /* Nothing to do */
5478 }
5479 kfree(descr);
5480 }
5481 #ifdef CONFIG_PM
5482 } else if (udev->state == USB_STATE_SUSPENDED &&
5483 udev->persist_enabled) {
5484 /* For a suspended device, treat this as a
5485 * remote wakeup event.
5486 */
5487 usb_unlock_port(port_dev);
5488 status = usb_remote_wakeup(udev);
5489 usb_lock_port(port_dev);
5490 #endif
5491 } else {
5492 /* Don't resuscitate */;
5493 }
5494 }
5495 clear_bit(port1, hub->change_bits);
5496
5497 /* successfully revalidated the connection */
5498 if (status == 0)
5499 return;
5500
5501 usb_unlock_port(port_dev);
5502 hub_port_connect(hub, port1, portstatus, portchange);
5503 usb_lock_port(port_dev);
5504 }
5505
5506 /* Handle notifying userspace about hub over-current events */
port_over_current_notify(struct usb_port * port_dev)5507 static void port_over_current_notify(struct usb_port *port_dev)
5508 {
5509 char *envp[3];
5510 struct device *hub_dev;
5511 char *port_dev_path;
5512
5513 sysfs_notify(&port_dev->dev.kobj, NULL, "over_current_count");
5514
5515 hub_dev = port_dev->dev.parent;
5516
5517 if (!hub_dev)
5518 return;
5519
5520 port_dev_path = kobject_get_path(&port_dev->dev.kobj, GFP_KERNEL);
5521 if (!port_dev_path)
5522 return;
5523
5524 envp[0] = kasprintf(GFP_KERNEL, "OVER_CURRENT_PORT=%s", port_dev_path);
5525 if (!envp[0])
5526 goto exit_path;
5527
5528 envp[1] = kasprintf(GFP_KERNEL, "OVER_CURRENT_COUNT=%u",
5529 port_dev->over_current_count);
5530 if (!envp[1])
5531 goto exit;
5532
5533 envp[2] = NULL;
5534 kobject_uevent_env(&hub_dev->kobj, KOBJ_CHANGE, envp);
5535
5536 kfree(envp[1]);
5537 exit:
5538 kfree(envp[0]);
5539 exit_path:
5540 kfree(port_dev_path);
5541 }
5542
port_event(struct usb_hub * hub,int port1)5543 static void port_event(struct usb_hub *hub, int port1)
5544 __must_hold(&port_dev->status_lock)
5545 {
5546 int connect_change;
5547 struct usb_port *port_dev = hub->ports[port1 - 1];
5548 struct usb_device *udev = port_dev->child;
5549 struct usb_device *hdev = hub->hdev;
5550 u16 portstatus, portchange;
5551
5552 connect_change = test_bit(port1, hub->change_bits);
5553 clear_bit(port1, hub->event_bits);
5554 clear_bit(port1, hub->wakeup_bits);
5555
5556 if (hub_port_status(hub, port1, &portstatus, &portchange) < 0)
5557 return;
5558
5559 if (portchange & USB_PORT_STAT_C_CONNECTION) {
5560 usb_clear_port_feature(hdev, port1, USB_PORT_FEAT_C_CONNECTION);
5561 connect_change = 1;
5562 }
5563
5564 if (portchange & USB_PORT_STAT_C_ENABLE) {
5565 if (!connect_change)
5566 dev_dbg(&port_dev->dev, "enable change, status %08x\n",
5567 portstatus);
5568 usb_clear_port_feature(hdev, port1, USB_PORT_FEAT_C_ENABLE);
5569
5570 /*
5571 * EM interference sometimes causes badly shielded USB devices
5572 * to be shutdown by the hub, this hack enables them again.
5573 * Works at least with mouse driver.
5574 */
5575 if (!(portstatus & USB_PORT_STAT_ENABLE)
5576 && !connect_change && udev) {
5577 dev_err(&port_dev->dev, "disabled by hub (EMI?), re-enabling...\n");
5578 connect_change = 1;
5579 }
5580 }
5581
5582 if (portchange & USB_PORT_STAT_C_OVERCURRENT) {
5583 u16 status = 0, unused;
5584 port_dev->over_current_count++;
5585 port_over_current_notify(port_dev);
5586
5587 dev_dbg(&port_dev->dev, "over-current change #%u\n",
5588 port_dev->over_current_count);
5589 usb_clear_port_feature(hdev, port1,
5590 USB_PORT_FEAT_C_OVER_CURRENT);
5591 msleep(100); /* Cool down */
5592 hub_power_on(hub, true);
5593 hub_port_status(hub, port1, &status, &unused);
5594 if (status & USB_PORT_STAT_OVERCURRENT)
5595 dev_err(&port_dev->dev, "over-current condition\n");
5596 }
5597
5598 if (portchange & USB_PORT_STAT_C_RESET) {
5599 dev_dbg(&port_dev->dev, "reset change\n");
5600 usb_clear_port_feature(hdev, port1, USB_PORT_FEAT_C_RESET);
5601 }
5602 if ((portchange & USB_PORT_STAT_C_BH_RESET)
5603 && hub_is_superspeed(hdev)) {
5604 dev_dbg(&port_dev->dev, "warm reset change\n");
5605 usb_clear_port_feature(hdev, port1,
5606 USB_PORT_FEAT_C_BH_PORT_RESET);
5607 }
5608 if (portchange & USB_PORT_STAT_C_LINK_STATE) {
5609 dev_dbg(&port_dev->dev, "link state change\n");
5610 usb_clear_port_feature(hdev, port1,
5611 USB_PORT_FEAT_C_PORT_LINK_STATE);
5612 }
5613 if (portchange & USB_PORT_STAT_C_CONFIG_ERROR) {
5614 dev_warn(&port_dev->dev, "config error\n");
5615 usb_clear_port_feature(hdev, port1,
5616 USB_PORT_FEAT_C_PORT_CONFIG_ERROR);
5617 }
5618
5619 /* skip port actions that require the port to be powered on */
5620 if (!pm_runtime_active(&port_dev->dev))
5621 return;
5622
5623 if (hub_handle_remote_wakeup(hub, port1, portstatus, portchange))
5624 connect_change = 1;
5625
5626 /*
5627 * Warm reset a USB3 protocol port if it's in
5628 * SS.Inactive state.
5629 */
5630 if (hub_port_warm_reset_required(hub, port1, portstatus)) {
5631 dev_dbg(&port_dev->dev, "do warm reset\n");
5632 if (!udev || !(portstatus & USB_PORT_STAT_CONNECTION)
5633 || udev->state == USB_STATE_NOTATTACHED) {
5634 if (hub_port_reset(hub, port1, NULL,
5635 HUB_BH_RESET_TIME, true) < 0)
5636 hub_port_disable(hub, port1, 1);
5637 } else {
5638 usb_unlock_port(port_dev);
5639 usb_lock_device(udev);
5640 usb_reset_device(udev);
5641 usb_unlock_device(udev);
5642 usb_lock_port(port_dev);
5643 connect_change = 0;
5644 }
5645 }
5646
5647 if (connect_change)
5648 hub_port_connect_change(hub, port1, portstatus, portchange);
5649 }
5650
hub_event(struct work_struct * work)5651 static void hub_event(struct work_struct *work)
5652 {
5653 struct usb_device *hdev;
5654 struct usb_interface *intf;
5655 struct usb_hub *hub;
5656 struct device *hub_dev;
5657 u16 hubstatus;
5658 u16 hubchange;
5659 int i, ret;
5660
5661 hub = container_of(work, struct usb_hub, events);
5662 hdev = hub->hdev;
5663 hub_dev = hub->intfdev;
5664 intf = to_usb_interface(hub_dev);
5665
5666 kcov_remote_start_usb((u64)hdev->bus->busnum);
5667
5668 dev_dbg(hub_dev, "state %d ports %d chg %04x evt %04x\n",
5669 hdev->state, hdev->maxchild,
5670 /* NOTE: expects max 15 ports... */
5671 (u16) hub->change_bits[0],
5672 (u16) hub->event_bits[0]);
5673
5674 /* Lock the device, then check to see if we were
5675 * disconnected while waiting for the lock to succeed. */
5676 usb_lock_device(hdev);
5677 if (unlikely(hub->disconnected))
5678 goto out_hdev_lock;
5679
5680 /* If the hub has died, clean up after it */
5681 if (hdev->state == USB_STATE_NOTATTACHED) {
5682 hub->error = -ENODEV;
5683 hub_quiesce(hub, HUB_DISCONNECT);
5684 goto out_hdev_lock;
5685 }
5686
5687 /* Autoresume */
5688 ret = usb_autopm_get_interface(intf);
5689 if (ret) {
5690 dev_dbg(hub_dev, "Can't autoresume: %d\n", ret);
5691 goto out_hdev_lock;
5692 }
5693
5694 /* If this is an inactive hub, do nothing */
5695 if (hub->quiescing)
5696 goto out_autopm;
5697
5698 if (hub->error) {
5699 dev_dbg(hub_dev, "resetting for error %d\n", hub->error);
5700
5701 ret = usb_reset_device(hdev);
5702 if (ret) {
5703 dev_dbg(hub_dev, "error resetting hub: %d\n", ret);
5704 goto out_autopm;
5705 }
5706
5707 hub->nerrors = 0;
5708 hub->error = 0;
5709 }
5710
5711 /* deal with port status changes */
5712 for (i = 1; i <= hdev->maxchild; i++) {
5713 struct usb_port *port_dev = hub->ports[i - 1];
5714
5715 if (test_bit(i, hub->event_bits)
5716 || test_bit(i, hub->change_bits)
5717 || test_bit(i, hub->wakeup_bits)) {
5718 /*
5719 * The get_noresume and barrier ensure that if
5720 * the port was in the process of resuming, we
5721 * flush that work and keep the port active for
5722 * the duration of the port_event(). However,
5723 * if the port is runtime pm suspended
5724 * (powered-off), we leave it in that state, run
5725 * an abbreviated port_event(), and move on.
5726 */
5727 pm_runtime_get_noresume(&port_dev->dev);
5728 pm_runtime_barrier(&port_dev->dev);
5729 usb_lock_port(port_dev);
5730 port_event(hub, i);
5731 usb_unlock_port(port_dev);
5732 pm_runtime_put_sync(&port_dev->dev);
5733 }
5734 }
5735
5736 /* deal with hub status changes */
5737 if (test_and_clear_bit(0, hub->event_bits) == 0)
5738 ; /* do nothing */
5739 else if (hub_hub_status(hub, &hubstatus, &hubchange) < 0)
5740 dev_err(hub_dev, "get_hub_status failed\n");
5741 else {
5742 if (hubchange & HUB_CHANGE_LOCAL_POWER) {
5743 dev_dbg(hub_dev, "power change\n");
5744 clear_hub_feature(hdev, C_HUB_LOCAL_POWER);
5745 if (hubstatus & HUB_STATUS_LOCAL_POWER)
5746 /* FIXME: Is this always true? */
5747 hub->limited_power = 1;
5748 else
5749 hub->limited_power = 0;
5750 }
5751 if (hubchange & HUB_CHANGE_OVERCURRENT) {
5752 u16 status = 0;
5753 u16 unused;
5754
5755 dev_dbg(hub_dev, "over-current change\n");
5756 clear_hub_feature(hdev, C_HUB_OVER_CURRENT);
5757 msleep(500); /* Cool down */
5758 hub_power_on(hub, true);
5759 hub_hub_status(hub, &status, &unused);
5760 if (status & HUB_STATUS_OVERCURRENT)
5761 dev_err(hub_dev, "over-current condition\n");
5762 }
5763 }
5764
5765 out_autopm:
5766 /* Balance the usb_autopm_get_interface() above */
5767 usb_autopm_put_interface_no_suspend(intf);
5768 out_hdev_lock:
5769 usb_unlock_device(hdev);
5770
5771 /* Balance the stuff in kick_hub_wq() and allow autosuspend */
5772 usb_autopm_put_interface(intf);
5773 kref_put(&hub->kref, hub_release);
5774
5775 kcov_remote_stop();
5776 }
5777
5778 static const struct usb_device_id hub_id_table[] = {
5779 { .match_flags = USB_DEVICE_ID_MATCH_VENDOR
5780 | USB_DEVICE_ID_MATCH_PRODUCT
5781 | USB_DEVICE_ID_MATCH_INT_CLASS,
5782 .idVendor = USB_VENDOR_SMSC,
5783 .idProduct = USB_PRODUCT_USB5534B,
5784 .bInterfaceClass = USB_CLASS_HUB,
5785 .driver_info = HUB_QUIRK_DISABLE_AUTOSUSPEND},
5786 { .match_flags = USB_DEVICE_ID_MATCH_VENDOR
5787 | USB_DEVICE_ID_MATCH_PRODUCT,
5788 .idVendor = USB_VENDOR_CYPRESS,
5789 .idProduct = USB_PRODUCT_CY7C65632,
5790 .driver_info = HUB_QUIRK_DISABLE_AUTOSUSPEND},
5791 { .match_flags = USB_DEVICE_ID_MATCH_VENDOR
5792 | USB_DEVICE_ID_MATCH_INT_CLASS,
5793 .idVendor = USB_VENDOR_GENESYS_LOGIC,
5794 .bInterfaceClass = USB_CLASS_HUB,
5795 .driver_info = HUB_QUIRK_CHECK_PORT_AUTOSUSPEND},
5796 { .match_flags = USB_DEVICE_ID_MATCH_VENDOR
5797 | USB_DEVICE_ID_MATCH_PRODUCT,
5798 .idVendor = USB_VENDOR_TEXAS_INSTRUMENTS,
5799 .idProduct = USB_PRODUCT_TUSB8041_USB2,
5800 .driver_info = HUB_QUIRK_DISABLE_AUTOSUSPEND},
5801 { .match_flags = USB_DEVICE_ID_MATCH_VENDOR
5802 | USB_DEVICE_ID_MATCH_PRODUCT,
5803 .idVendor = USB_VENDOR_TEXAS_INSTRUMENTS,
5804 .idProduct = USB_PRODUCT_TUSB8041_USB3,
5805 .driver_info = HUB_QUIRK_DISABLE_AUTOSUSPEND},
5806 { .match_flags = USB_DEVICE_ID_MATCH_DEV_CLASS,
5807 .bDeviceClass = USB_CLASS_HUB},
5808 { .match_flags = USB_DEVICE_ID_MATCH_INT_CLASS,
5809 .bInterfaceClass = USB_CLASS_HUB},
5810 { } /* Terminating entry */
5811 };
5812
5813 MODULE_DEVICE_TABLE(usb, hub_id_table);
5814
5815 static struct usb_driver hub_driver = {
5816 .name = "hub",
5817 .probe = hub_probe,
5818 .disconnect = hub_disconnect,
5819 .suspend = hub_suspend,
5820 .resume = hub_resume,
5821 .reset_resume = hub_reset_resume,
5822 .pre_reset = hub_pre_reset,
5823 .post_reset = hub_post_reset,
5824 .unlocked_ioctl = hub_ioctl,
5825 .id_table = hub_id_table,
5826 .supports_autosuspend = 1,
5827 };
5828
usb_hub_init(void)5829 int usb_hub_init(void)
5830 {
5831 if (usb_register(&hub_driver) < 0) {
5832 printk(KERN_ERR "%s: can't register hub driver\n",
5833 usbcore_name);
5834 return -1;
5835 }
5836
5837 /*
5838 * The workqueue needs to be freezable to avoid interfering with
5839 * USB-PERSIST port handover. Otherwise it might see that a full-speed
5840 * device was gone before the EHCI controller had handed its port
5841 * over to the companion full-speed controller.
5842 */
5843 hub_wq = alloc_workqueue("usb_hub_wq", WQ_FREEZABLE, 0);
5844 if (hub_wq)
5845 return 0;
5846
5847 /* Fall through if kernel_thread failed */
5848 usb_deregister(&hub_driver);
5849 pr_err("%s: can't allocate workqueue for usb hub\n", usbcore_name);
5850
5851 return -1;
5852 }
5853
usb_hub_cleanup(void)5854 void usb_hub_cleanup(void)
5855 {
5856 destroy_workqueue(hub_wq);
5857
5858 /*
5859 * Hub resources are freed for us by usb_deregister. It calls
5860 * usb_driver_purge on every device which in turn calls that
5861 * devices disconnect function if it is using this driver.
5862 * The hub_disconnect function takes care of releasing the
5863 * individual hub resources. -greg
5864 */
5865 usb_deregister(&hub_driver);
5866 } /* usb_hub_cleanup() */
5867
5868 /**
5869 * usb_reset_and_verify_device - perform a USB port reset to reinitialize a device
5870 * @udev: device to reset (not in SUSPENDED or NOTATTACHED state)
5871 *
5872 * WARNING - don't use this routine to reset a composite device
5873 * (one with multiple interfaces owned by separate drivers)!
5874 * Use usb_reset_device() instead.
5875 *
5876 * Do a port reset, reassign the device's address, and establish its
5877 * former operating configuration. If the reset fails, or the device's
5878 * descriptors change from their values before the reset, or the original
5879 * configuration and altsettings cannot be restored, a flag will be set
5880 * telling hub_wq to pretend the device has been disconnected and then
5881 * re-connected. All drivers will be unbound, and the device will be
5882 * re-enumerated and probed all over again.
5883 *
5884 * Return: 0 if the reset succeeded, -ENODEV if the device has been
5885 * flagged for logical disconnection, or some other negative error code
5886 * if the reset wasn't even attempted.
5887 *
5888 * Note:
5889 * The caller must own the device lock and the port lock, the latter is
5890 * taken by usb_reset_device(). For example, it's safe to use
5891 * usb_reset_device() from a driver probe() routine after downloading
5892 * new firmware. For calls that might not occur during probe(), drivers
5893 * should lock the device using usb_lock_device_for_reset().
5894 *
5895 * Locking exception: This routine may also be called from within an
5896 * autoresume handler. Such usage won't conflict with other tasks
5897 * holding the device lock because these tasks should always call
5898 * usb_autopm_resume_device(), thereby preventing any unwanted
5899 * autoresume. The autoresume handler is expected to have already
5900 * acquired the port lock before calling this routine.
5901 */
usb_reset_and_verify_device(struct usb_device * udev)5902 static int usb_reset_and_verify_device(struct usb_device *udev)
5903 {
5904 struct usb_device *parent_hdev = udev->parent;
5905 struct usb_hub *parent_hub;
5906 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
5907 struct usb_device_descriptor descriptor;
5908 struct usb_host_bos *bos;
5909 int i, j, ret = 0;
5910 int port1 = udev->portnum;
5911
5912 if (udev->state == USB_STATE_NOTATTACHED ||
5913 udev->state == USB_STATE_SUSPENDED) {
5914 dev_dbg(&udev->dev, "device reset not allowed in state %d\n",
5915 udev->state);
5916 return -EINVAL;
5917 }
5918
5919 if (!parent_hdev)
5920 return -EISDIR;
5921
5922 parent_hub = usb_hub_to_struct_hub(parent_hdev);
5923
5924 /* Disable USB2 hardware LPM.
5925 * It will be re-enabled by the enumeration process.
5926 */
5927 usb_disable_usb2_hardware_lpm(udev);
5928
5929 /* Disable LPM while we reset the device and reinstall the alt settings.
5930 * Device-initiated LPM, and system exit latency settings are cleared
5931 * when the device is reset, so we have to set them up again.
5932 */
5933 ret = usb_unlocked_disable_lpm(udev);
5934 if (ret) {
5935 dev_err(&udev->dev, "%s Failed to disable LPM\n", __func__);
5936 goto re_enumerate_no_bos;
5937 }
5938
5939 bos = udev->bos;
5940 udev->bos = NULL;
5941
5942 mutex_lock(hcd->address0_mutex);
5943
5944 for (i = 0; i < PORT_INIT_TRIES; ++i) {
5945
5946 /* ep0 maxpacket size may change; let the HCD know about it.
5947 * Other endpoints will be handled by re-enumeration. */
5948 usb_ep0_reinit(udev);
5949 ret = hub_port_init(parent_hub, udev, port1, i, &descriptor);
5950 if (ret >= 0 || ret == -ENOTCONN || ret == -ENODEV)
5951 break;
5952 }
5953 mutex_unlock(hcd->address0_mutex);
5954
5955 if (ret < 0)
5956 goto re_enumerate;
5957
5958 /* Device might have changed firmware (DFU or similar) */
5959 if (descriptors_changed(udev, &descriptor, bos)) {
5960 dev_info(&udev->dev, "device firmware changed\n");
5961 goto re_enumerate;
5962 }
5963
5964 /* Restore the device's previous configuration */
5965 if (!udev->actconfig)
5966 goto done;
5967
5968 mutex_lock(hcd->bandwidth_mutex);
5969 ret = usb_hcd_alloc_bandwidth(udev, udev->actconfig, NULL, NULL);
5970 if (ret < 0) {
5971 dev_warn(&udev->dev,
5972 "Busted HC? Not enough HCD resources for "
5973 "old configuration.\n");
5974 mutex_unlock(hcd->bandwidth_mutex);
5975 goto re_enumerate;
5976 }
5977 ret = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
5978 USB_REQ_SET_CONFIGURATION, 0,
5979 udev->actconfig->desc.bConfigurationValue, 0,
5980 NULL, 0, USB_CTRL_SET_TIMEOUT);
5981 if (ret < 0) {
5982 dev_err(&udev->dev,
5983 "can't restore configuration #%d (error=%d)\n",
5984 udev->actconfig->desc.bConfigurationValue, ret);
5985 mutex_unlock(hcd->bandwidth_mutex);
5986 goto re_enumerate;
5987 }
5988 mutex_unlock(hcd->bandwidth_mutex);
5989 usb_set_device_state(udev, USB_STATE_CONFIGURED);
5990
5991 /* Put interfaces back into the same altsettings as before.
5992 * Don't bother to send the Set-Interface request for interfaces
5993 * that were already in altsetting 0; besides being unnecessary,
5994 * many devices can't handle it. Instead just reset the host-side
5995 * endpoint state.
5996 */
5997 for (i = 0; i < udev->actconfig->desc.bNumInterfaces; i++) {
5998 struct usb_host_config *config = udev->actconfig;
5999 struct usb_interface *intf = config->interface[i];
6000 struct usb_interface_descriptor *desc;
6001
6002 desc = &intf->cur_altsetting->desc;
6003 if (desc->bAlternateSetting == 0) {
6004 usb_disable_interface(udev, intf, true);
6005 usb_enable_interface(udev, intf, true);
6006 ret = 0;
6007 } else {
6008 /* Let the bandwidth allocation function know that this
6009 * device has been reset, and it will have to use
6010 * alternate setting 0 as the current alternate setting.
6011 */
6012 intf->resetting_device = 1;
6013 ret = usb_set_interface(udev, desc->bInterfaceNumber,
6014 desc->bAlternateSetting);
6015 intf->resetting_device = 0;
6016 }
6017 if (ret < 0) {
6018 dev_err(&udev->dev, "failed to restore interface %d "
6019 "altsetting %d (error=%d)\n",
6020 desc->bInterfaceNumber,
6021 desc->bAlternateSetting,
6022 ret);
6023 goto re_enumerate;
6024 }
6025 /* Resetting also frees any allocated streams */
6026 for (j = 0; j < intf->cur_altsetting->desc.bNumEndpoints; j++)
6027 intf->cur_altsetting->endpoint[j].streams = 0;
6028 }
6029
6030 done:
6031 /* Now that the alt settings are re-installed, enable LTM and LPM. */
6032 usb_enable_usb2_hardware_lpm(udev);
6033 usb_unlocked_enable_lpm(udev);
6034 usb_enable_ltm(udev);
6035 usb_release_bos_descriptor(udev);
6036 udev->bos = bos;
6037 return 0;
6038
6039 re_enumerate:
6040 usb_release_bos_descriptor(udev);
6041 udev->bos = bos;
6042 re_enumerate_no_bos:
6043 /* LPM state doesn't matter when we're about to destroy the device. */
6044 hub_port_logical_disconnect(parent_hub, port1);
6045 return -ENODEV;
6046 }
6047
6048 /**
6049 * usb_reset_device - warn interface drivers and perform a USB port reset
6050 * @udev: device to reset (not in NOTATTACHED state)
6051 *
6052 * Warns all drivers bound to registered interfaces (using their pre_reset
6053 * method), performs the port reset, and then lets the drivers know that
6054 * the reset is over (using their post_reset method).
6055 *
6056 * Return: The same as for usb_reset_and_verify_device().
6057 * However, if a reset is already in progress (for instance, if a
6058 * driver doesn't have pre_reset() or post_reset() callbacks, and while
6059 * being unbound or re-bound during the ongoing reset its disconnect()
6060 * or probe() routine tries to perform a second, nested reset), the
6061 * routine returns -EINPROGRESS.
6062 *
6063 * Note:
6064 * The caller must own the device lock. For example, it's safe to use
6065 * this from a driver probe() routine after downloading new firmware.
6066 * For calls that might not occur during probe(), drivers should lock
6067 * the device using usb_lock_device_for_reset().
6068 *
6069 * If an interface is currently being probed or disconnected, we assume
6070 * its driver knows how to handle resets. For all other interfaces,
6071 * if the driver doesn't have pre_reset and post_reset methods then
6072 * we attempt to unbind it and rebind afterward.
6073 */
usb_reset_device(struct usb_device * udev)6074 int usb_reset_device(struct usb_device *udev)
6075 {
6076 int ret;
6077 int i;
6078 unsigned int noio_flag;
6079 struct usb_port *port_dev;
6080 struct usb_host_config *config = udev->actconfig;
6081 struct usb_hub *hub = usb_hub_to_struct_hub(udev->parent);
6082
6083 if (udev->state == USB_STATE_NOTATTACHED) {
6084 dev_dbg(&udev->dev, "device reset not allowed in state %d\n",
6085 udev->state);
6086 return -EINVAL;
6087 }
6088
6089 if (!udev->parent) {
6090 /* this requires hcd-specific logic; see ohci_restart() */
6091 dev_dbg(&udev->dev, "%s for root hub!\n", __func__);
6092 return -EISDIR;
6093 }
6094
6095 if (udev->reset_in_progress)
6096 return -EINPROGRESS;
6097 udev->reset_in_progress = 1;
6098
6099 port_dev = hub->ports[udev->portnum - 1];
6100
6101 /*
6102 * Don't allocate memory with GFP_KERNEL in current
6103 * context to avoid possible deadlock if usb mass
6104 * storage interface or usbnet interface(iSCSI case)
6105 * is included in current configuration. The easist
6106 * approach is to do it for every device reset,
6107 * because the device 'memalloc_noio' flag may have
6108 * not been set before reseting the usb device.
6109 */
6110 noio_flag = memalloc_noio_save();
6111
6112 /* Prevent autosuspend during the reset */
6113 usb_autoresume_device(udev);
6114
6115 if (config) {
6116 for (i = 0; i < config->desc.bNumInterfaces; ++i) {
6117 struct usb_interface *cintf = config->interface[i];
6118 struct usb_driver *drv;
6119 int unbind = 0;
6120
6121 if (cintf->dev.driver) {
6122 drv = to_usb_driver(cintf->dev.driver);
6123 if (drv->pre_reset && drv->post_reset)
6124 unbind = (drv->pre_reset)(cintf);
6125 else if (cintf->condition ==
6126 USB_INTERFACE_BOUND)
6127 unbind = 1;
6128 if (unbind)
6129 usb_forced_unbind_intf(cintf);
6130 }
6131 }
6132 }
6133
6134 usb_lock_port(port_dev);
6135 ret = usb_reset_and_verify_device(udev);
6136 usb_unlock_port(port_dev);
6137
6138 if (config) {
6139 for (i = config->desc.bNumInterfaces - 1; i >= 0; --i) {
6140 struct usb_interface *cintf = config->interface[i];
6141 struct usb_driver *drv;
6142 int rebind = cintf->needs_binding;
6143
6144 if (!rebind && cintf->dev.driver) {
6145 drv = to_usb_driver(cintf->dev.driver);
6146 if (drv->post_reset)
6147 rebind = (drv->post_reset)(cintf);
6148 else if (cintf->condition ==
6149 USB_INTERFACE_BOUND)
6150 rebind = 1;
6151 if (rebind)
6152 cintf->needs_binding = 1;
6153 }
6154 }
6155
6156 /* If the reset failed, hub_wq will unbind drivers later */
6157 if (ret == 0)
6158 usb_unbind_and_rebind_marked_interfaces(udev);
6159 }
6160
6161 usb_autosuspend_device(udev);
6162 memalloc_noio_restore(noio_flag);
6163 udev->reset_in_progress = 0;
6164 return ret;
6165 }
6166 EXPORT_SYMBOL_GPL(usb_reset_device);
6167
6168
6169 /**
6170 * usb_queue_reset_device - Reset a USB device from an atomic context
6171 * @iface: USB interface belonging to the device to reset
6172 *
6173 * This function can be used to reset a USB device from an atomic
6174 * context, where usb_reset_device() won't work (as it blocks).
6175 *
6176 * Doing a reset via this method is functionally equivalent to calling
6177 * usb_reset_device(), except for the fact that it is delayed to a
6178 * workqueue. This means that any drivers bound to other interfaces
6179 * might be unbound, as well as users from usbfs in user space.
6180 *
6181 * Corner cases:
6182 *
6183 * - Scheduling two resets at the same time from two different drivers
6184 * attached to two different interfaces of the same device is
6185 * possible; depending on how the driver attached to each interface
6186 * handles ->pre_reset(), the second reset might happen or not.
6187 *
6188 * - If the reset is delayed so long that the interface is unbound from
6189 * its driver, the reset will be skipped.
6190 *
6191 * - This function can be called during .probe(). It can also be called
6192 * during .disconnect(), but doing so is pointless because the reset
6193 * will not occur. If you really want to reset the device during
6194 * .disconnect(), call usb_reset_device() directly -- but watch out
6195 * for nested unbinding issues!
6196 */
usb_queue_reset_device(struct usb_interface * iface)6197 void usb_queue_reset_device(struct usb_interface *iface)
6198 {
6199 if (schedule_work(&iface->reset_ws))
6200 usb_get_intf(iface);
6201 }
6202 EXPORT_SYMBOL_GPL(usb_queue_reset_device);
6203
6204 /**
6205 * usb_hub_find_child - Get the pointer of child device
6206 * attached to the port which is specified by @port1.
6207 * @hdev: USB device belonging to the usb hub
6208 * @port1: port num to indicate which port the child device
6209 * is attached to.
6210 *
6211 * USB drivers call this function to get hub's child device
6212 * pointer.
6213 *
6214 * Return: %NULL if input param is invalid and
6215 * child's usb_device pointer if non-NULL.
6216 */
usb_hub_find_child(struct usb_device * hdev,int port1)6217 struct usb_device *usb_hub_find_child(struct usb_device *hdev,
6218 int port1)
6219 {
6220 struct usb_hub *hub = usb_hub_to_struct_hub(hdev);
6221
6222 if (port1 < 1 || port1 > hdev->maxchild)
6223 return NULL;
6224 return hub->ports[port1 - 1]->child;
6225 }
6226 EXPORT_SYMBOL_GPL(usb_hub_find_child);
6227
usb_hub_adjust_deviceremovable(struct usb_device * hdev,struct usb_hub_descriptor * desc)6228 void usb_hub_adjust_deviceremovable(struct usb_device *hdev,
6229 struct usb_hub_descriptor *desc)
6230 {
6231 struct usb_hub *hub = usb_hub_to_struct_hub(hdev);
6232 enum usb_port_connect_type connect_type;
6233 int i;
6234
6235 if (!hub)
6236 return;
6237
6238 if (!hub_is_superspeed(hdev)) {
6239 for (i = 1; i <= hdev->maxchild; i++) {
6240 struct usb_port *port_dev = hub->ports[i - 1];
6241
6242 connect_type = port_dev->connect_type;
6243 if (connect_type == USB_PORT_CONNECT_TYPE_HARD_WIRED) {
6244 u8 mask = 1 << (i%8);
6245
6246 if (!(desc->u.hs.DeviceRemovable[i/8] & mask)) {
6247 dev_dbg(&port_dev->dev, "DeviceRemovable is changed to 1 according to platform information.\n");
6248 desc->u.hs.DeviceRemovable[i/8] |= mask;
6249 }
6250 }
6251 }
6252 } else {
6253 u16 port_removable = le16_to_cpu(desc->u.ss.DeviceRemovable);
6254
6255 for (i = 1; i <= hdev->maxchild; i++) {
6256 struct usb_port *port_dev = hub->ports[i - 1];
6257
6258 connect_type = port_dev->connect_type;
6259 if (connect_type == USB_PORT_CONNECT_TYPE_HARD_WIRED) {
6260 u16 mask = 1 << i;
6261
6262 if (!(port_removable & mask)) {
6263 dev_dbg(&port_dev->dev, "DeviceRemovable is changed to 1 according to platform information.\n");
6264 port_removable |= mask;
6265 }
6266 }
6267 }
6268
6269 desc->u.ss.DeviceRemovable = cpu_to_le16(port_removable);
6270 }
6271 }
6272
6273 #ifdef CONFIG_ACPI
6274 /**
6275 * usb_get_hub_port_acpi_handle - Get the usb port's acpi handle
6276 * @hdev: USB device belonging to the usb hub
6277 * @port1: port num of the port
6278 *
6279 * Return: Port's acpi handle if successful, %NULL if params are
6280 * invalid.
6281 */
usb_get_hub_port_acpi_handle(struct usb_device * hdev,int port1)6282 acpi_handle usb_get_hub_port_acpi_handle(struct usb_device *hdev,
6283 int port1)
6284 {
6285 struct usb_hub *hub = usb_hub_to_struct_hub(hdev);
6286
6287 if (!hub)
6288 return NULL;
6289
6290 return ACPI_HANDLE(&hub->ports[port1 - 1]->dev);
6291 }
6292 #endif
6293