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