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