blob: a5cc032ef77a8da22b86d9b29e4090e897d0bcc1 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * USB hub driver.
3 *
4 * (C) Copyright 1999 Linus Torvalds
5 * (C) Copyright 1999 Johannes Erdfelt
6 * (C) Copyright 1999 Gregory P. Smith
7 * (C) Copyright 2001 Brad Hards (bhards@bigpond.net.au)
8 *
9 */
10
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/kernel.h>
12#include <linux/errno.h>
13#include <linux/module.h>
14#include <linux/moduleparam.h>
15#include <linux/completion.h>
16#include <linux/sched.h>
17#include <linux/list.h>
18#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/ioctl.h>
20#include <linux/usb.h>
21#include <linux/usbdevice_fs.h>
Eric Lescouet27729aa2010-04-24 23:21:52 +020022#include <linux/usb/hcd.h>
Richard Zhao925aa462012-07-11 11:09:28 +080023#include <linux/usb/otg.h>
Phil Dibowitz93362a82010-07-22 00:05:01 +020024#include <linux/usb/quirks.h>
Petr Mladek32a695892014-09-19 17:32:21 +020025#include <linux/workqueue.h>
Arjan van de Ven4186ecf2006-01-11 15:55:29 +010026#include <linux/mutex.h>
Theodore Ts'ob04b3152012-07-04 11:22:20 -040027#include <linux/random.h>
Lan Tianyuad493e52013-01-23 04:26:30 +080028#include <linux/pm_qos.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <asm/uaccess.h>
31#include <asm/byteorder.h>
32
Lan Tianyu6e30d7c2013-01-11 20:10:38 +080033#include "hub.h"
Peter Chen026f3fc2014-08-19 09:51:53 +080034#include "otg_whitelist.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
Ming Leie6f30de2012-10-24 11:59:24 +080036#define USB_VENDOR_GENESYS_LOGIC 0x05e3
37#define HUB_QUIRK_CHECK_PORT_AUTOSUSPEND 0x01
38
Greg Kroah-Hartmanfa286182012-05-14 09:20:37 -070039/* Protect struct usb_device->state and ->children members
Alan Stern9ad3d6c2005-11-17 17:10:32 -050040 * Note: Both are also protected by ->dev.sem, except that ->state can
Linus Torvalds1da177e2005-04-16 15:20:36 -070041 * change to USB_STATE_NOTATTACHED even when the semaphore isn't held. */
42static DEFINE_SPINLOCK(device_state_lock);
43
Petr Mladek32a695892014-09-19 17:32:21 +020044/* workqueue to process hub events */
45static struct workqueue_struct *hub_wq;
46static void hub_event(struct work_struct *work);
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
Dan Williamsd8521af2014-05-20 18:08:28 -070048/* synchronize hub-port add/remove and peering operations */
49DEFINE_MUTEX(usb_port_peer_mutex);
50
Linus Torvalds1da177e2005-04-16 15:20:36 -070051/* cycle leds on hubs that aren't blinking for attention */
Rusty Russell90ab5ee2012-01-13 09:32:20 +103052static bool blinkenlights = 0;
Chase Metzger166b8632015-08-08 01:03:34 -070053module_param(blinkenlights, bool, S_IRUGO);
54MODULE_PARM_DESC(blinkenlights, "true to cycle leds on hubs");
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
56/*
Jaroslav Kyselafd7c5192008-10-10 16:24:45 +020057 * Device SATA8000 FW1.0 from DATAST0R Technology Corp requires about
58 * 10 seconds to send reply for the initial 64-byte descriptor request.
59 */
60/* define initial 64-byte descriptor request timeout in milliseconds */
61static int initial_descriptor_timeout = USB_CTRL_GET_TIMEOUT;
62module_param(initial_descriptor_timeout, int, S_IRUGO|S_IWUSR);
Wu Fengguangb9cef6c2008-12-15 15:32:01 +080063MODULE_PARM_DESC(initial_descriptor_timeout,
64 "initial 64-byte descriptor request timeout in milliseconds "
65 "(default 5000 - 5.0 seconds)");
Jaroslav Kyselafd7c5192008-10-10 16:24:45 +020066
67/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 * As of 2.6.10 we introduce a new USB device initialization scheme which
69 * closely resembles the way Windows works. Hopefully it will be compatible
70 * with a wider range of devices than the old scheme. However some previously
71 * working devices may start giving rise to "device not accepting address"
72 * errors; if that happens the user can try the old scheme by adjusting the
73 * following module parameters.
74 *
75 * For maximum flexibility there are two boolean parameters to control the
76 * hub driver's behavior. On the first initialization attempt, if the
77 * "old_scheme_first" parameter is set then the old scheme will be used,
78 * otherwise the new scheme is used. If that fails and "use_both_schemes"
79 * is set, then the driver will make another attempt, using the other scheme.
80 */
Rusty Russell90ab5ee2012-01-13 09:32:20 +103081static bool old_scheme_first = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070082module_param(old_scheme_first, bool, S_IRUGO | S_IWUSR);
83MODULE_PARM_DESC(old_scheme_first,
84 "start with the old device initialization scheme");
85
Rusty Russell90ab5ee2012-01-13 09:32:20 +103086static bool use_both_schemes = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070087module_param(use_both_schemes, bool, S_IRUGO | S_IWUSR);
88MODULE_PARM_DESC(use_both_schemes,
89 "try the other device initialization scheme if the "
90 "first one fails");
91
Alan Stern32fe0192007-10-10 16:27:07 -040092/* Mutual exclusion for EHCI CF initialization. This interferes with
93 * port reset on some companion controllers.
94 */
95DECLARE_RWSEM(ehci_cf_port_reset_rwsem);
96EXPORT_SYMBOL_GPL(ehci_cf_port_reset_rwsem);
97
Lan Tianyuad493e52013-01-23 04:26:30 +080098#define HUB_DEBOUNCE_TIMEOUT 2000
Alan Stern948fea32008-04-28 11:07:07 -040099#define HUB_DEBOUNCE_STEP 25
100#define HUB_DEBOUNCE_STABLE 100
101
Petr Mladek32a695892014-09-19 17:32:21 +0200102static void hub_release(struct kref *kref);
Ming Lei742120c2008-06-18 22:00:29 +0800103static int usb_reset_and_verify_device(struct usb_device *udev);
104
Sarah Sharp131dec32010-12-06 21:00:19 -0800105static inline char *portspeed(struct usb_hub *hub, int portstatus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106{
Sarah Sharp131dec32010-12-06 21:00:19 -0800107 if (hub_is_superspeed(hub->hdev))
108 return "5.0 Gb/s";
Alan Stern288ead42010-03-04 11:32:30 -0500109 if (portstatus & USB_PORT_STAT_HIGH_SPEED)
Matthias Beyer469271f2013-10-10 23:41:27 +0200110 return "480 Mb/s";
Alan Stern288ead42010-03-04 11:32:30 -0500111 else if (portstatus & USB_PORT_STAT_LOW_SPEED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 return "1.5 Mb/s";
113 else
114 return "12 Mb/s";
115}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
117/* Note that hdev or one of its children must be locked! */
Lan Tianyuad493e52013-01-23 04:26:30 +0800118struct usb_hub *usb_hub_to_struct_hub(struct usb_device *hdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119{
Lan Tianyuff823c72012-09-05 13:44:32 +0800120 if (!hdev || !hdev->actconfig || !hdev->maxchild)
Alan Stern251180842009-07-22 14:41:18 -0400121 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 return usb_get_intfdata(hdev->actconfig->interface[0]);
123}
124
Lu Baolu2d2a3162015-06-16 09:08:26 +0800125int usb_device_supports_lpm(struct usb_device *udev)
Sarah Sharpd9b20992012-02-20 08:31:26 -0800126{
Alan Sternad87e032015-12-10 15:27:21 -0500127 /* Some devices have trouble with LPM */
128 if (udev->quirks & USB_QUIRK_NO_LPM)
129 return 0;
130
Sarah Sharpd9b20992012-02-20 08:31:26 -0800131 /* USB 2.1 (and greater) devices indicate LPM support through
132 * their USB 2.0 Extended Capabilities BOS descriptor.
133 */
Rupesh Tatiyaa8425292015-04-14 16:36:55 +0530134 if (udev->speed == USB_SPEED_HIGH || udev->speed == USB_SPEED_FULL) {
Sarah Sharpd9b20992012-02-20 08:31:26 -0800135 if (udev->bos->ext_cap &&
136 (USB_LPM_SUPPORT &
137 le32_to_cpu(udev->bos->ext_cap->bmAttributes)))
138 return 1;
139 return 0;
140 }
Sarah Sharp51e0a012012-02-20 12:02:19 -0800141
Sarah Sharp25cd2882014-01-17 14:15:44 -0800142 /*
143 * According to the USB 3.0 spec, all USB 3.0 devices must support LPM.
144 * However, there are some that don't, and they set the U1/U2 exit
145 * latencies to zero.
Sarah Sharp51e0a012012-02-20 12:02:19 -0800146 */
147 if (!udev->bos->ss_cap) {
Sarah Sharp25cd2882014-01-17 14:15:44 -0800148 dev_info(&udev->dev, "No LPM exit latency info found, disabling LPM.\n");
Sarah Sharp51e0a012012-02-20 12:02:19 -0800149 return 0;
150 }
Sarah Sharp51e0a012012-02-20 12:02:19 -0800151
Sarah Sharp25cd2882014-01-17 14:15:44 -0800152 if (udev->bos->ss_cap->bU1devExitLat == 0 &&
153 udev->bos->ss_cap->bU2DevExitLat == 0) {
154 if (udev->parent)
155 dev_info(&udev->dev, "LPM exit latency is zeroed, disabling LPM.\n");
156 else
157 dev_info(&udev->dev, "We don't know the algorithms for LPM for this host, disabling LPM.\n");
158 return 0;
159 }
160
161 if (!udev->parent || udev->parent->lpm_capable)
162 return 1;
Sarah Sharpd9b20992012-02-20 08:31:26 -0800163 return 0;
164}
165
Sarah Sharp51e0a012012-02-20 12:02:19 -0800166/*
167 * Set the Maximum Exit Latency (MEL) for the host to initiate a transition from
168 * either U1 or U2.
169 */
170static void usb_set_lpm_mel(struct usb_device *udev,
171 struct usb3_lpm_parameters *udev_lpm_params,
172 unsigned int udev_exit_latency,
173 struct usb_hub *hub,
174 struct usb3_lpm_parameters *hub_lpm_params,
175 unsigned int hub_exit_latency)
176{
177 unsigned int total_mel;
178 unsigned int device_mel;
179 unsigned int hub_mel;
180
181 /*
182 * Calculate the time it takes to transition all links from the roothub
183 * to the parent hub into U0. The parent hub must then decode the
184 * packet (hub header decode latency) to figure out which port it was
185 * bound for.
186 *
187 * The Hub Header decode latency is expressed in 0.1us intervals (0x1
188 * means 0.1us). Multiply that by 100 to get nanoseconds.
189 */
190 total_mel = hub_lpm_params->mel +
191 (hub->descriptor->u.ss.bHubHdrDecLat * 100);
192
193 /*
194 * How long will it take to transition the downstream hub's port into
195 * U0? The greater of either the hub exit latency or the device exit
196 * latency.
197 *
198 * The BOS U1/U2 exit latencies are expressed in 1us intervals.
199 * Multiply that by 1000 to get nanoseconds.
200 */
201 device_mel = udev_exit_latency * 1000;
202 hub_mel = hub_exit_latency * 1000;
203 if (device_mel > hub_mel)
204 total_mel += device_mel;
205 else
206 total_mel += hub_mel;
207
208 udev_lpm_params->mel = total_mel;
209}
210
211/*
212 * Set the maximum Device to Host Exit Latency (PEL) for the device to initiate
213 * a transition from either U1 or U2.
214 */
215static void usb_set_lpm_pel(struct usb_device *udev,
216 struct usb3_lpm_parameters *udev_lpm_params,
217 unsigned int udev_exit_latency,
218 struct usb_hub *hub,
219 struct usb3_lpm_parameters *hub_lpm_params,
220 unsigned int hub_exit_latency,
221 unsigned int port_to_port_exit_latency)
222{
223 unsigned int first_link_pel;
224 unsigned int hub_pel;
225
226 /*
227 * First, the device sends an LFPS to transition the link between the
228 * device and the parent hub into U0. The exit latency is the bigger of
229 * the device exit latency or the hub exit latency.
230 */
231 if (udev_exit_latency > hub_exit_latency)
232 first_link_pel = udev_exit_latency * 1000;
233 else
234 first_link_pel = hub_exit_latency * 1000;
235
236 /*
237 * When the hub starts to receive the LFPS, there is a slight delay for
238 * it to figure out that one of the ports is sending an LFPS. Then it
239 * will forward the LFPS to its upstream link. The exit latency is the
240 * delay, plus the PEL that we calculated for this hub.
241 */
242 hub_pel = port_to_port_exit_latency * 1000 + hub_lpm_params->pel;
243
244 /*
245 * According to figure C-7 in the USB 3.0 spec, the PEL for this device
246 * is the greater of the two exit latencies.
247 */
248 if (first_link_pel > hub_pel)
249 udev_lpm_params->pel = first_link_pel;
250 else
251 udev_lpm_params->pel = hub_pel;
252}
253
254/*
255 * Set the System Exit Latency (SEL) to indicate the total worst-case time from
256 * when a device initiates a transition to U0, until when it will receive the
257 * first packet from the host controller.
258 *
259 * Section C.1.5.1 describes the four components to this:
260 * - t1: device PEL
261 * - t2: time for the ERDY to make it from the device to the host.
262 * - t3: a host-specific delay to process the ERDY.
263 * - t4: time for the packet to make it from the host to the device.
264 *
265 * t3 is specific to both the xHCI host and the platform the host is integrated
266 * into. The Intel HW folks have said it's negligible, FIXME if a different
267 * vendor says otherwise.
268 */
269static void usb_set_lpm_sel(struct usb_device *udev,
270 struct usb3_lpm_parameters *udev_lpm_params)
271{
272 struct usb_device *parent;
273 unsigned int num_hubs;
274 unsigned int total_sel;
275
276 /* t1 = device PEL */
277 total_sel = udev_lpm_params->pel;
278 /* How many external hubs are in between the device & the root port. */
279 for (parent = udev->parent, num_hubs = 0; parent->parent;
280 parent = parent->parent)
281 num_hubs++;
282 /* t2 = 2.1us + 250ns * (num_hubs - 1) */
283 if (num_hubs > 0)
284 total_sel += 2100 + 250 * (num_hubs - 1);
285
286 /* t4 = 250ns * num_hubs */
287 total_sel += 250 * num_hubs;
288
289 udev_lpm_params->sel = total_sel;
290}
291
292static void usb_set_lpm_parameters(struct usb_device *udev)
293{
294 struct usb_hub *hub;
295 unsigned int port_to_port_delay;
296 unsigned int udev_u1_del;
297 unsigned int udev_u2_del;
298 unsigned int hub_u1_del;
299 unsigned int hub_u2_del;
300
301 if (!udev->lpm_capable || udev->speed != USB_SPEED_SUPER)
302 return;
303
Lan Tianyuad493e52013-01-23 04:26:30 +0800304 hub = usb_hub_to_struct_hub(udev->parent);
Sarah Sharp51e0a012012-02-20 12:02:19 -0800305 /* It doesn't take time to transition the roothub into U0, since it
306 * doesn't have an upstream link.
307 */
308 if (!hub)
309 return;
310
311 udev_u1_del = udev->bos->ss_cap->bU1devExitLat;
Xenia Ragiadakou4d967992013-08-31 18:09:13 +0300312 udev_u2_del = le16_to_cpu(udev->bos->ss_cap->bU2DevExitLat);
Sarah Sharp51e0a012012-02-20 12:02:19 -0800313 hub_u1_del = udev->parent->bos->ss_cap->bU1devExitLat;
Xenia Ragiadakou4d967992013-08-31 18:09:13 +0300314 hub_u2_del = le16_to_cpu(udev->parent->bos->ss_cap->bU2DevExitLat);
Sarah Sharp51e0a012012-02-20 12:02:19 -0800315
316 usb_set_lpm_mel(udev, &udev->u1_params, udev_u1_del,
317 hub, &udev->parent->u1_params, hub_u1_del);
318
319 usb_set_lpm_mel(udev, &udev->u2_params, udev_u2_del,
320 hub, &udev->parent->u2_params, hub_u2_del);
321
322 /*
323 * Appendix C, section C.2.2.2, says that there is a slight delay from
324 * when the parent hub notices the downstream port is trying to
325 * transition to U0 to when the hub initiates a U0 transition on its
326 * upstream port. The section says the delays are tPort2PortU1EL and
327 * tPort2PortU2EL, but it doesn't define what they are.
328 *
329 * The hub chapter, sections 10.4.2.4 and 10.4.2.5 seem to be talking
330 * about the same delays. Use the maximum delay calculations from those
331 * sections. For U1, it's tHubPort2PortExitLat, which is 1us max. For
332 * U2, it's tHubPort2PortExitLat + U2DevExitLat - U1DevExitLat. I
333 * assume the device exit latencies they are talking about are the hub
334 * exit latencies.
335 *
336 * What do we do if the U2 exit latency is less than the U1 exit
337 * latency? It's possible, although not likely...
338 */
339 port_to_port_delay = 1;
340
341 usb_set_lpm_pel(udev, &udev->u1_params, udev_u1_del,
342 hub, &udev->parent->u1_params, hub_u1_del,
343 port_to_port_delay);
344
345 if (hub_u2_del > hub_u1_del)
346 port_to_port_delay = 1 + hub_u2_del - hub_u1_del;
347 else
348 port_to_port_delay = 1 + hub_u1_del;
349
350 usb_set_lpm_pel(udev, &udev->u2_params, udev_u2_del,
351 hub, &udev->parent->u2_params, hub_u2_del,
352 port_to_port_delay);
353
354 /* Now that we've got PEL, calculate SEL. */
355 usb_set_lpm_sel(udev, &udev->u1_params);
356 usb_set_lpm_sel(udev, &udev->u2_params);
357}
358
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359/* USB 2.0 spec Section 11.24.4.5 */
John Youndbe79bb2001-09-17 00:00:00 -0700360static int get_hub_descriptor(struct usb_device *hdev, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361{
John Youndbe79bb2001-09-17 00:00:00 -0700362 int i, ret, size;
363 unsigned dtype;
364
365 if (hub_is_superspeed(hdev)) {
366 dtype = USB_DT_SS_HUB;
367 size = USB_DT_SS_HUB_SIZE;
368 } else {
369 dtype = USB_DT_HUB;
370 size = sizeof(struct usb_hub_descriptor);
371 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372
373 for (i = 0; i < 3; i++) {
374 ret = usb_control_msg(hdev, usb_rcvctrlpipe(hdev, 0),
375 USB_REQ_GET_DESCRIPTOR, USB_DIR_IN | USB_RT_HUB,
John Youndbe79bb2001-09-17 00:00:00 -0700376 dtype << 8, 0, data, size,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 USB_CTRL_GET_TIMEOUT);
378 if (ret >= (USB_DT_HUB_NONVAR_SIZE + 2))
379 return ret;
380 }
381 return -EINVAL;
382}
383
384/*
385 * USB 2.0 spec Section 11.24.2.1
386 */
387static int clear_hub_feature(struct usb_device *hdev, int feature)
388{
389 return usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
390 USB_REQ_CLEAR_FEATURE, USB_RT_HUB, feature, 0, NULL, 0, 1000);
391}
392
393/*
394 * USB 2.0 spec Section 11.24.2.2
395 */
Lan Tianyuad493e52013-01-23 04:26:30 +0800396int usb_clear_port_feature(struct usb_device *hdev, int port1, int feature)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397{
398 return usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
399 USB_REQ_CLEAR_FEATURE, USB_RT_PORT, feature, port1,
400 NULL, 0, 1000);
401}
402
403/*
404 * USB 2.0 spec Section 11.24.2.13
405 */
406static int set_port_feature(struct usb_device *hdev, int port1, int feature)
407{
408 return usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
409 USB_REQ_SET_FEATURE, USB_RT_PORT, feature, port1,
410 NULL, 0, 1000);
411}
412
Dan Williamsd99f6b42014-05-20 18:08:17 -0700413static char *to_led_name(int selector)
414{
415 switch (selector) {
416 case HUB_LED_AMBER:
417 return "amber";
418 case HUB_LED_GREEN:
419 return "green";
420 case HUB_LED_OFF:
421 return "off";
422 case HUB_LED_AUTO:
423 return "auto";
424 default:
425 return "??";
426 }
427}
428
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429/*
430 * USB 2.0 spec Section 11.24.2.7.1.10 and table 11-7
431 * for info about using port indicators
432 */
Dan Williamsd99f6b42014-05-20 18:08:17 -0700433static void set_port_led(struct usb_hub *hub, int port1, int selector)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434{
Dan Williamsd99f6b42014-05-20 18:08:17 -0700435 struct usb_port *port_dev = hub->ports[port1 - 1];
436 int status;
437
438 status = set_port_feature(hub->hdev, (selector << 8) | port1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 USB_PORT_FEAT_INDICATOR);
Dan Williamsd99f6b42014-05-20 18:08:17 -0700440 dev_dbg(&port_dev->dev, "indicator %s status %d\n",
441 to_led_name(selector), status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442}
443
444#define LED_CYCLE_PERIOD ((2*HZ)/3)
445
Chase Metzger166b8632015-08-08 01:03:34 -0700446static void led_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447{
David Howellsc4028952006-11-22 14:57:56 +0000448 struct usb_hub *hub =
449 container_of(work, struct usb_hub, leds.work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 struct usb_device *hdev = hub->hdev;
451 unsigned i;
452 unsigned changed = 0;
453 int cursor = -1;
454
455 if (hdev->state != USB_STATE_CONFIGURED || hub->quiescing)
456 return;
457
Krzysztof Mazur3bbc47d2013-08-22 14:49:40 +0200458 for (i = 0; i < hdev->maxchild; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 unsigned selector, mode;
460
461 /* 30%-50% duty cycle */
462
463 switch (hub->indicator[i]) {
464 /* cycle marker */
465 case INDICATOR_CYCLE:
466 cursor = i;
467 selector = HUB_LED_AUTO;
468 mode = INDICATOR_AUTO;
469 break;
470 /* blinking green = sw attention */
471 case INDICATOR_GREEN_BLINK:
472 selector = HUB_LED_GREEN;
473 mode = INDICATOR_GREEN_BLINK_OFF;
474 break;
475 case INDICATOR_GREEN_BLINK_OFF:
476 selector = HUB_LED_OFF;
477 mode = INDICATOR_GREEN_BLINK;
478 break;
479 /* blinking amber = hw attention */
480 case INDICATOR_AMBER_BLINK:
481 selector = HUB_LED_AMBER;
482 mode = INDICATOR_AMBER_BLINK_OFF;
483 break;
484 case INDICATOR_AMBER_BLINK_OFF:
485 selector = HUB_LED_OFF;
486 mode = INDICATOR_AMBER_BLINK;
487 break;
488 /* blink green/amber = reserved */
489 case INDICATOR_ALT_BLINK:
490 selector = HUB_LED_GREEN;
491 mode = INDICATOR_ALT_BLINK_OFF;
492 break;
493 case INDICATOR_ALT_BLINK_OFF:
494 selector = HUB_LED_AMBER;
495 mode = INDICATOR_ALT_BLINK;
496 break;
497 default:
498 continue;
499 }
500 if (selector != HUB_LED_AUTO)
501 changed = 1;
502 set_port_led(hub, i + 1, selector);
503 hub->indicator[i] = mode;
504 }
505 if (!changed && blinkenlights) {
506 cursor++;
Krzysztof Mazur3bbc47d2013-08-22 14:49:40 +0200507 cursor %= hdev->maxchild;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 set_port_led(hub, cursor + 1, HUB_LED_GREEN);
509 hub->indicator[cursor] = INDICATOR_CYCLE;
510 changed++;
511 }
512 if (changed)
Shaibal Dutta22f6a0f2014-02-01 19:16:46 -0800513 queue_delayed_work(system_power_efficient_wq,
514 &hub->leds, LED_CYCLE_PERIOD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515}
516
517/* use a short timeout for hub/port status fetches */
518#define USB_STS_TIMEOUT 1000
519#define USB_STS_RETRIES 5
520
521/*
522 * USB 2.0 spec Section 11.24.2.6
523 */
524static int get_hub_status(struct usb_device *hdev,
525 struct usb_hub_status *data)
526{
527 int i, status = -ETIMEDOUT;
528
Libor Pechacek3824c1d2011-05-20 14:53:25 +0200529 for (i = 0; i < USB_STS_RETRIES &&
530 (status == -ETIMEDOUT || status == -EPIPE); i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 status = usb_control_msg(hdev, usb_rcvctrlpipe(hdev, 0),
532 USB_REQ_GET_STATUS, USB_DIR_IN | USB_RT_HUB, 0, 0,
533 data, sizeof(*data), USB_STS_TIMEOUT);
534 }
535 return status;
536}
537
538/*
539 * USB 2.0 spec Section 11.24.2.7
540 */
541static int get_port_status(struct usb_device *hdev, int port1,
542 struct usb_port_status *data)
543{
544 int i, status = -ETIMEDOUT;
545
Libor Pechacek3824c1d2011-05-20 14:53:25 +0200546 for (i = 0; i < USB_STS_RETRIES &&
547 (status == -ETIMEDOUT || status == -EPIPE); i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 status = usb_control_msg(hdev, usb_rcvctrlpipe(hdev, 0),
549 USB_REQ_GET_STATUS, USB_DIR_IN | USB_RT_PORT, 0, port1,
550 data, sizeof(*data), USB_STS_TIMEOUT);
551 }
552 return status;
553}
554
Alan Stern3eb14912008-03-03 15:15:43 -0500555static int hub_port_status(struct usb_hub *hub, int port1,
556 u16 *status, u16 *change)
557{
558 int ret;
559
560 mutex_lock(&hub->status_mutex);
561 ret = get_port_status(hub->hdev, port1, &hub->status->port);
562 if (ret < 4) {
Alan Sterne9e88fb2013-03-27 16:14:01 -0400563 if (ret != -ENODEV)
564 dev_err(hub->intfdev,
565 "%s failed (err = %d)\n", __func__, ret);
Alan Stern3eb14912008-03-03 15:15:43 -0500566 if (ret >= 0)
567 ret = -EIO;
568 } else {
569 *status = le16_to_cpu(hub->status->port.wPortStatus);
570 *change = le16_to_cpu(hub->status->port.wPortChange);
John Youndbe79bb2001-09-17 00:00:00 -0700571
Alan Stern3eb14912008-03-03 15:15:43 -0500572 ret = 0;
573 }
574 mutex_unlock(&hub->status_mutex);
575 return ret;
576}
577
Petr Mladek32a695892014-09-19 17:32:21 +0200578static void kick_hub_wq(struct usb_hub *hub)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579{
Petr Mladek32a695892014-09-19 17:32:21 +0200580 struct usb_interface *intf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581
Petr Mladek32a695892014-09-19 17:32:21 +0200582 if (hub->disconnected || work_pending(&hub->events))
583 return;
Alan Stern8e4ceb32009-12-07 13:01:37 -0500584
Petr Mladek32a695892014-09-19 17:32:21 +0200585 /*
586 * Suppress autosuspend until the event is proceed.
587 *
588 * Be careful and make sure that the symmetric operation is
589 * always called. We are here only when there is no pending
590 * work for this hub. Therefore put the interface either when
591 * the new work is called or when it is canceled.
592 */
593 intf = to_usb_interface(hub->intfdev);
594 usb_autopm_get_interface_no_resume(intf);
595 kref_get(&hub->kref);
596
597 if (queue_work(hub_wq, &hub->events))
598 return;
599
600 /* the work has already been scheduled */
601 usb_autopm_put_interface_async(intf);
602 kref_put(&hub->kref, hub_release);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603}
604
Petr Mladek59d48b32014-09-19 17:32:22 +0200605void usb_kick_hub_wq(struct usb_device *hdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606{
Lan Tianyuad493e52013-01-23 04:26:30 +0800607 struct usb_hub *hub = usb_hub_to_struct_hub(hdev);
Alan Stern251180842009-07-22 14:41:18 -0400608
609 if (hub)
Petr Mladek32a695892014-09-19 17:32:21 +0200610 kick_hub_wq(hub);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611}
612
Sarah Sharp4ee823b2011-11-14 18:00:01 -0800613/*
614 * Let the USB core know that a USB 3.0 device has sent a Function Wake Device
615 * Notification, which indicates it had initiated remote wakeup.
616 *
617 * USB 3.0 hubs do not report the port link state change from U3 to U0 when the
618 * device initiates resume, so the USB core will not receive notice of the
619 * resume through the normal hub interrupt URB.
620 */
621void usb_wakeup_notification(struct usb_device *hdev,
622 unsigned int portnum)
623{
624 struct usb_hub *hub;
625
626 if (!hdev)
627 return;
628
Lan Tianyuad493e52013-01-23 04:26:30 +0800629 hub = usb_hub_to_struct_hub(hdev);
Sarah Sharp4ee823b2011-11-14 18:00:01 -0800630 if (hub) {
631 set_bit(portnum, hub->wakeup_bits);
Petr Mladek32a695892014-09-19 17:32:21 +0200632 kick_hub_wq(hub);
Sarah Sharp4ee823b2011-11-14 18:00:01 -0800633 }
634}
635EXPORT_SYMBOL_GPL(usb_wakeup_notification);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636
637/* completion function, fires on port status changes and various faults */
David Howells7d12e782006-10-05 14:55:46 +0100638static void hub_irq(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639{
Tobias Klauserec17cf12006-09-13 21:38:41 +0200640 struct usb_hub *hub = urb->context;
Alan Sterne0152682007-08-24 15:42:52 -0400641 int status = urb->status;
Roel Kluin71d27182009-03-13 12:19:18 +0100642 unsigned i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 unsigned long bits;
644
Alan Sterne0152682007-08-24 15:42:52 -0400645 switch (status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 case -ENOENT: /* synchronous unlink */
647 case -ECONNRESET: /* async unlink */
648 case -ESHUTDOWN: /* hardware going away */
649 return;
650
651 default: /* presumably an error */
652 /* Cause a hub reset after 10 consecutive errors */
Chase Metzger166b8632015-08-08 01:03:34 -0700653 dev_dbg(hub->intfdev, "transfer --> %d\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 if ((++hub->nerrors < 10) || hub->error)
655 goto resubmit;
Alan Sterne0152682007-08-24 15:42:52 -0400656 hub->error = status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 /* FALL THROUGH */
Tobias Klauserec17cf12006-09-13 21:38:41 +0200658
Petr Mladek37ebb542014-09-19 17:32:23 +0200659 /* let hub_wq handle things */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 case 0: /* we got data: port status changed */
661 bits = 0;
662 for (i = 0; i < urb->actual_length; ++i)
663 bits |= ((unsigned long) ((*hub->buffer)[i]))
664 << (i*8);
665 hub->event_bits[0] = bits;
666 break;
667 }
668
669 hub->nerrors = 0;
670
Petr Mladek37ebb542014-09-19 17:32:23 +0200671 /* Something happened, let hub_wq figure it out */
Petr Mladek32a695892014-09-19 17:32:21 +0200672 kick_hub_wq(hub);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673
674resubmit:
675 if (hub->quiescing)
676 return;
677
Kris Borer088a3da2015-08-11 11:12:45 -0400678 status = usb_submit_urb(hub->urb, GFP_ATOMIC);
679 if (status != 0 && status != -ENODEV && status != -EPERM)
Chase Metzger166b8632015-08-08 01:03:34 -0700680 dev_err(hub->intfdev, "resubmit --> %d\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681}
682
683/* USB 2.0 spec Section 11.24.2.3 */
684static inline int
Chase Metzger166b8632015-08-08 01:03:34 -0700685hub_clear_tt_buffer(struct usb_device *hdev, u16 devinfo, u16 tt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686{
William Gulland2c7b8712013-06-27 16:10:20 -0700687 /* Need to clear both directions for control ep */
688 if (((devinfo >> 11) & USB_ENDPOINT_XFERTYPE_MASK) ==
689 USB_ENDPOINT_XFER_CONTROL) {
690 int status = usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
691 HUB_CLEAR_TT_BUFFER, USB_RT_PORT,
692 devinfo ^ 0x8000, tt, NULL, 0, 1000);
693 if (status)
694 return status;
695 }
Alan Sternc2f65952009-11-18 11:37:15 -0500696 return usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 HUB_CLEAR_TT_BUFFER, USB_RT_PORT, devinfo,
698 tt, NULL, 0, 1000);
699}
700
701/*
Petr Mladek37ebb542014-09-19 17:32:23 +0200702 * enumeration blocks hub_wq for a long time. we use keventd instead, since
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 * long blocking there is the exception, not the rule. accordingly, HCDs
704 * talking to TTs must queue control transfers (not just bulk and iso), so
705 * both can talk to the same hub concurrently.
706 */
Alan Sterncb88a1b2009-06-29 10:43:32 -0400707static void hub_tt_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708{
David Howellsc4028952006-11-22 14:57:56 +0000709 struct usb_hub *hub =
Alan Sterncb88a1b2009-06-29 10:43:32 -0400710 container_of(work, struct usb_hub, tt.clear_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 unsigned long flags;
712
Chase Metzger166b8632015-08-08 01:03:34 -0700713 spin_lock_irqsave(&hub->tt.lock, flags);
Octavian Purdila3b6054d2012-10-01 22:21:12 +0300714 while (!list_empty(&hub->tt.clear_list)) {
H Hartley Sweetend0f830d2009-04-22 16:03:05 -0400715 struct list_head *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 struct usb_tt_clear *clear;
717 struct usb_device *hdev = hub->hdev;
Alan Sterncb88a1b2009-06-29 10:43:32 -0400718 const struct hc_driver *drv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 int status;
720
H Hartley Sweetend0f830d2009-04-22 16:03:05 -0400721 next = hub->tt.clear_list.next;
Chase Metzger166b8632015-08-08 01:03:34 -0700722 clear = list_entry(next, struct usb_tt_clear, clear_list);
723 list_del(&clear->clear_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724
725 /* drop lock so HCD can concurrently report other TT errors */
Chase Metzger166b8632015-08-08 01:03:34 -0700726 spin_unlock_irqrestore(&hub->tt.lock, flags);
727 status = hub_clear_tt_buffer(hdev, clear->devinfo, clear->tt);
Alan Sterne9e88fb2013-03-27 16:14:01 -0400728 if (status && status != -ENODEV)
Chase Metzger166b8632015-08-08 01:03:34 -0700729 dev_err(&hdev->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 "clear tt %d (%04x) error %d\n",
731 clear->tt, clear->devinfo, status);
Alan Sterncb88a1b2009-06-29 10:43:32 -0400732
733 /* Tell the HCD, even if the operation failed */
734 drv = clear->hcd->driver;
735 if (drv->clear_tt_buffer_complete)
736 (drv->clear_tt_buffer_complete)(clear->hcd, clear->ep);
737
Jesper Juhl1bc3c9e2005-04-18 17:39:34 -0700738 kfree(clear);
Alan Sterncb88a1b2009-06-29 10:43:32 -0400739 spin_lock_irqsave(&hub->tt.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 }
Chase Metzger166b8632015-08-08 01:03:34 -0700741 spin_unlock_irqrestore(&hub->tt.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742}
743
744/**
Lan Tianyu971fcd42013-01-23 04:26:29 +0800745 * usb_hub_set_port_power - control hub port's power state
Mathias Nyman41341262013-06-18 17:28:48 +0300746 * @hdev: USB device belonging to the usb hub
747 * @hub: target hub
Lan Tianyu971fcd42013-01-23 04:26:29 +0800748 * @port1: port index
749 * @set: expected status
750 *
751 * call this function to control port's power via setting or
752 * clearing the port's PORT_POWER feature.
Yacine Belkadi626f0902013-08-02 20:10:04 +0200753 *
754 * Return: 0 if successful. A negative error code otherwise.
Lan Tianyu971fcd42013-01-23 04:26:29 +0800755 */
Mathias Nyman41341262013-06-18 17:28:48 +0300756int usb_hub_set_port_power(struct usb_device *hdev, struct usb_hub *hub,
757 int port1, bool set)
Lan Tianyu971fcd42013-01-23 04:26:29 +0800758{
759 int ret;
760
761 if (set)
762 ret = set_port_feature(hdev, port1, USB_PORT_FEAT_POWER);
763 else
Lan Tianyuad493e52013-01-23 04:26:30 +0800764 ret = usb_clear_port_feature(hdev, port1, USB_PORT_FEAT_POWER);
765
Dan Williamsd5c38342014-05-20 18:08:52 -0700766 if (ret)
767 return ret;
768
769 if (set)
770 set_bit(port1, hub->power_bits);
771 else
772 clear_bit(port1, hub->power_bits);
773 return 0;
Lan Tianyu971fcd42013-01-23 04:26:29 +0800774}
775
776/**
Alan Sterncb88a1b2009-06-29 10:43:32 -0400777 * usb_hub_clear_tt_buffer - clear control/bulk TT state in high speed hub
778 * @urb: an URB associated with the failed or incomplete split transaction
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 *
780 * High speed HCDs use this to tell the hub driver that some split control or
781 * bulk transaction failed in a way that requires clearing internal state of
782 * a transaction translator. This is normally detected (and reported) from
783 * interrupt context.
784 *
785 * It may not be possible for that hub to handle additional full (or low)
786 * speed transactions until that state is fully cleared out.
Yacine Belkadi626f0902013-08-02 20:10:04 +0200787 *
788 * Return: 0 if successful. A negative error code otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 */
Alan Sterncb88a1b2009-06-29 10:43:32 -0400790int usb_hub_clear_tt_buffer(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791{
Alan Sterncb88a1b2009-06-29 10:43:32 -0400792 struct usb_device *udev = urb->dev;
793 int pipe = urb->pipe;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 struct usb_tt *tt = udev->tt;
795 unsigned long flags;
796 struct usb_tt_clear *clear;
797
798 /* we've got to cope with an arbitrary number of pending TT clears,
799 * since each TT has "at least two" buffers that can need it (and
800 * there can be many TTs per hub). even if they're uncommon.
801 */
Greg Kroah-Hartmand544d272015-04-30 11:32:53 +0200802 clear = kmalloc(sizeof *clear, GFP_ATOMIC);
803 if (clear == NULL) {
Chase Metzger166b8632015-08-08 01:03:34 -0700804 dev_err(&udev->dev, "can't save CLEAR_TT_BUFFER state\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 /* FIXME recover somehow ... RESET_TT? */
Alan Sterncb88a1b2009-06-29 10:43:32 -0400806 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 }
808
809 /* info that CLEAR_TT_BUFFER needs */
810 clear->tt = tt->multi ? udev->ttport : 1;
811 clear->devinfo = usb_pipeendpoint (pipe);
812 clear->devinfo |= udev->devnum << 4;
Chase Metzger166b8632015-08-08 01:03:34 -0700813 clear->devinfo |= usb_pipecontrol(pipe)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 ? (USB_ENDPOINT_XFER_CONTROL << 11)
815 : (USB_ENDPOINT_XFER_BULK << 11);
Chase Metzger166b8632015-08-08 01:03:34 -0700816 if (usb_pipein(pipe))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 clear->devinfo |= 1 << 15;
Alan Sterncb88a1b2009-06-29 10:43:32 -0400818
819 /* info for completion callback */
820 clear->hcd = bus_to_hcd(udev->bus);
821 clear->ep = urb->ep;
822
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 /* tell keventd to clear state for this TT */
Chase Metzger166b8632015-08-08 01:03:34 -0700824 spin_lock_irqsave(&tt->lock, flags);
825 list_add_tail(&clear->clear_list, &tt->clear_list);
Alan Sterncb88a1b2009-06-29 10:43:32 -0400826 schedule_work(&tt->clear_work);
Chase Metzger166b8632015-08-08 01:03:34 -0700827 spin_unlock_irqrestore(&tt->lock, flags);
Alan Sterncb88a1b2009-06-29 10:43:32 -0400828 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829}
Alan Sterncb88a1b2009-06-29 10:43:32 -0400830EXPORT_SYMBOL_GPL(usb_hub_clear_tt_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831
Dan Williams7ad3c472014-05-20 18:08:57 -0700832static void hub_power_on(struct usb_hub *hub, bool do_delay)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833{
834 int port1;
835
Alan Stern4489a572006-04-27 15:54:22 -0400836 /* Enable power on each port. Some hubs have reserved values
837 * of LPSM (> 2) in their descriptors, even though they are
838 * USB 2.0 hubs. Some hubs do not implement port-power switching
839 * but only emulate it. In all cases, the ports won't work
840 * unless we send these messages to the hub.
841 */
Dan Williams9262c192014-05-20 18:08:12 -0700842 if (hub_is_port_power_switchable(hub))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 dev_dbg(hub->intfdev, "enabling power on all ports\n");
Alan Stern4489a572006-04-27 15:54:22 -0400844 else
845 dev_dbg(hub->intfdev, "trying to enable port power on "
846 "non-switchable hub\n");
Krzysztof Mazur3bbc47d2013-08-22 14:49:40 +0200847 for (port1 = 1; port1 <= hub->hdev->maxchild; port1++)
Dan Williamsd5c38342014-05-20 18:08:52 -0700848 if (test_bit(port1, hub->power_bits))
Lan Tianyuad493e52013-01-23 04:26:30 +0800849 set_port_feature(hub->hdev, port1, USB_PORT_FEAT_POWER);
850 else
851 usb_clear_port_feature(hub->hdev, port1,
852 USB_PORT_FEAT_POWER);
Alan Stern8520f382008-09-22 14:44:26 -0400853 if (do_delay)
Dan Williams7ad3c472014-05-20 18:08:57 -0700854 msleep(hub_power_on_good_delay(hub));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855}
856
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857static int hub_hub_status(struct usb_hub *hub,
858 u16 *status, u16 *change)
859{
860 int ret;
861
Alan Sterndb90e7a2007-02-05 09:56:15 -0500862 mutex_lock(&hub->status_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 ret = get_hub_status(hub->hdev, &hub->status->hub);
Alan Sterne9e88fb2013-03-27 16:14:01 -0400864 if (ret < 0) {
865 if (ret != -ENODEV)
866 dev_err(hub->intfdev,
867 "%s failed (err = %d)\n", __func__, ret);
868 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 *status = le16_to_cpu(hub->status->hub.wHubStatus);
Matthias Beyer469271f2013-10-10 23:41:27 +0200870 *change = le16_to_cpu(hub->status->hub.wHubChange);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 ret = 0;
872 }
Alan Sterndb90e7a2007-02-05 09:56:15 -0500873 mutex_unlock(&hub->status_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 return ret;
875}
876
Sarah Sharp41e7e052012-11-14 16:42:32 -0800877static int hub_set_port_link_state(struct usb_hub *hub, int port1,
878 unsigned int link_status)
879{
880 return set_port_feature(hub->hdev,
881 port1 | (link_status << 3),
882 USB_PORT_FEAT_LINK_STATE);
883}
884
885/*
886 * If USB 3.0 ports are placed into the Disabled state, they will no longer
887 * detect any device connects or disconnects. This is generally not what the
888 * USB core wants, since it expects a disabled port to produce a port status
889 * change event when a new device connects.
890 *
891 * Instead, set the link state to Disabled, wait for the link to settle into
892 * that state, clear any change bits, and then put the port into the RxDetect
893 * state.
894 */
895static int hub_usb3_port_disable(struct usb_hub *hub, int port1)
896{
897 int ret;
898 int total_time;
899 u16 portchange, portstatus;
900
901 if (!hub_is_superspeed(hub->hdev))
902 return -EINVAL;
903
Gavin Guobb86cf52014-07-18 01:12:13 +0800904 ret = hub_port_status(hub, port1, &portstatus, &portchange);
905 if (ret < 0)
906 return ret;
907
908 /*
909 * USB controller Advanced Micro Devices, Inc. [AMD] FCH USB XHCI
910 * Controller [1022:7814] will have spurious result making the following
911 * usb 3.0 device hotplugging route to the 2.0 root hub and recognized
912 * as high-speed device if we set the usb 3.0 port link state to
913 * Disabled. Since it's already in USB_SS_PORT_LS_RX_DETECT state, we
914 * check the state here to avoid the bug.
915 */
916 if ((portstatus & USB_PORT_STAT_LINK_STATE) ==
917 USB_SS_PORT_LS_RX_DETECT) {
918 dev_dbg(&hub->ports[port1 - 1]->dev,
919 "Not disabling port; link state is RxDetect\n");
920 return ret;
921 }
922
Sarah Sharp41e7e052012-11-14 16:42:32 -0800923 ret = hub_set_port_link_state(hub, port1, USB_SS_PORT_LS_SS_DISABLED);
Alan Sterne9e88fb2013-03-27 16:14:01 -0400924 if (ret)
Sarah Sharp41e7e052012-11-14 16:42:32 -0800925 return ret;
Sarah Sharp41e7e052012-11-14 16:42:32 -0800926
927 /* Wait for the link to enter the disabled state. */
928 for (total_time = 0; ; total_time += HUB_DEBOUNCE_STEP) {
929 ret = hub_port_status(hub, port1, &portstatus, &portchange);
930 if (ret < 0)
931 return ret;
932
933 if ((portstatus & USB_PORT_STAT_LINK_STATE) ==
934 USB_SS_PORT_LS_SS_DISABLED)
935 break;
936 if (total_time >= HUB_DEBOUNCE_TIMEOUT)
937 break;
938 msleep(HUB_DEBOUNCE_STEP);
939 }
940 if (total_time >= HUB_DEBOUNCE_TIMEOUT)
Dan Williamsd99f6b42014-05-20 18:08:17 -0700941 dev_warn(&hub->ports[port1 - 1]->dev,
942 "Could not disable after %d ms\n", total_time);
Sarah Sharp41e7e052012-11-14 16:42:32 -0800943
944 return hub_set_port_link_state(hub, port1, USB_SS_PORT_LS_RX_DETECT);
945}
946
Alan Stern8b28c752005-08-10 17:04:13 -0400947static int hub_port_disable(struct usb_hub *hub, int port1, int set_state)
948{
Dan Williamsd99f6b42014-05-20 18:08:17 -0700949 struct usb_port *port_dev = hub->ports[port1 - 1];
Alan Stern8b28c752005-08-10 17:04:13 -0400950 struct usb_device *hdev = hub->hdev;
Alan Stern0458d5b2007-05-04 11:52:20 -0400951 int ret = 0;
Alan Stern8b28c752005-08-10 17:04:13 -0400952
Dan Williamsd99f6b42014-05-20 18:08:17 -0700953 if (port_dev->child && set_state)
954 usb_set_device_state(port_dev->child, USB_STATE_NOTATTACHED);
Sarah Sharp41e7e052012-11-14 16:42:32 -0800955 if (!hub->error) {
956 if (hub_is_superspeed(hub->hdev))
957 ret = hub_usb3_port_disable(hub, port1);
958 else
Lan Tianyuad493e52013-01-23 04:26:30 +0800959 ret = usb_clear_port_feature(hdev, port1,
Sarah Sharp41e7e052012-11-14 16:42:32 -0800960 USB_PORT_FEAT_ENABLE);
961 }
Alan Sterne9e88fb2013-03-27 16:14:01 -0400962 if (ret && ret != -ENODEV)
Dan Williamsd99f6b42014-05-20 18:08:17 -0700963 dev_err(&port_dev->dev, "cannot disable (err = %d)\n", ret);
Alan Stern8b28c752005-08-10 17:04:13 -0400964 return ret;
965}
966
Alan Stern0458d5b2007-05-04 11:52:20 -0400967/*
Justin P. Mattock6d42fcd2011-02-26 20:33:56 -0800968 * Disable a port and mark a logical connect-change event, so that some
Petr Mladek37ebb542014-09-19 17:32:23 +0200969 * time later hub_wq will disconnect() any existing usb_device on the port
Alan Stern0458d5b2007-05-04 11:52:20 -0400970 * and will re-enumerate if there actually is a device attached.
971 */
972static void hub_port_logical_disconnect(struct usb_hub *hub, int port1)
973{
Dan Williamsd99f6b42014-05-20 18:08:17 -0700974 dev_dbg(&hub->ports[port1 - 1]->dev, "logical disconnect\n");
Alan Stern0458d5b2007-05-04 11:52:20 -0400975 hub_port_disable(hub, port1, 1);
976
977 /* FIXME let caller ask to power down the port:
978 * - some devices won't enumerate without a VBUS power cycle
979 * - SRP saves power that way
980 * - ... new call, TBD ...
981 * That's easy if this hub can switch power per-port, and
Petr Mladek37ebb542014-09-19 17:32:23 +0200982 * hub_wq reactivates the port later (timer, SRP, etc).
Alan Stern0458d5b2007-05-04 11:52:20 -0400983 * Powerdown must be optional, because of reset/DFU.
984 */
985
986 set_bit(port1, hub->change_bits);
Petr Mladek32a695892014-09-19 17:32:21 +0200987 kick_hub_wq(hub);
Alan Stern0458d5b2007-05-04 11:52:20 -0400988}
989
Alan Stern253e0572009-10-27 15:20:13 -0400990/**
991 * usb_remove_device - disable a device's port on its parent hub
992 * @udev: device to be disabled and removed
993 * Context: @udev locked, must be able to sleep.
994 *
Petr Mladek37ebb542014-09-19 17:32:23 +0200995 * After @udev's port has been disabled, hub_wq is notified and it will
Alan Stern253e0572009-10-27 15:20:13 -0400996 * see that the device has been disconnected. When the device is
997 * physically unplugged and something is plugged in, the events will
998 * be received and processed normally.
Yacine Belkadi626f0902013-08-02 20:10:04 +0200999 *
1000 * Return: 0 if successful. A negative error code otherwise.
Alan Stern253e0572009-10-27 15:20:13 -04001001 */
1002int usb_remove_device(struct usb_device *udev)
1003{
1004 struct usb_hub *hub;
1005 struct usb_interface *intf;
1006
1007 if (!udev->parent) /* Can't remove a root hub */
1008 return -EINVAL;
Lan Tianyuad493e52013-01-23 04:26:30 +08001009 hub = usb_hub_to_struct_hub(udev->parent);
Alan Stern253e0572009-10-27 15:20:13 -04001010 intf = to_usb_interface(hub->intfdev);
1011
1012 usb_autopm_get_interface(intf);
1013 set_bit(udev->portnum, hub->removed_bits);
1014 hub_port_logical_disconnect(hub, udev->portnum);
1015 usb_autopm_put_interface(intf);
1016 return 0;
1017}
1018
Alan Stern6ee0b272008-04-28 11:06:42 -04001019enum hub_activation_type {
Alan Stern8e4ceb32009-12-07 13:01:37 -05001020 HUB_INIT, HUB_INIT2, HUB_INIT3, /* INITs must come first */
Alan Stern8520f382008-09-22 14:44:26 -04001021 HUB_POST_RESET, HUB_RESUME, HUB_RESET_RESUME,
Alan Stern6ee0b272008-04-28 11:06:42 -04001022};
Alan Stern5e6effa2008-03-03 15:15:51 -05001023
Alan Stern8520f382008-09-22 14:44:26 -04001024static void hub_init_func2(struct work_struct *ws);
1025static void hub_init_func3(struct work_struct *ws);
1026
Alan Sternf2835212008-04-28 11:07:17 -04001027static void hub_activate(struct usb_hub *hub, enum hub_activation_type type)
Alan Stern5e6effa2008-03-03 15:15:51 -05001028{
1029 struct usb_device *hdev = hub->hdev;
Sarah Sharp653a39d2010-12-23 11:12:42 -08001030 struct usb_hcd *hcd;
1031 int ret;
Alan Stern5e6effa2008-03-03 15:15:51 -05001032 int port1;
Alan Sternf2835212008-04-28 11:07:17 -04001033 int status;
Alan Stern948fea32008-04-28 11:07:07 -04001034 bool need_debounce_delay = false;
Alan Stern8520f382008-09-22 14:44:26 -04001035 unsigned delay;
1036
1037 /* Continue a partial initialization */
1038 if (type == HUB_INIT2)
1039 goto init2;
1040 if (type == HUB_INIT3)
1041 goto init3;
Alan Stern5e6effa2008-03-03 15:15:51 -05001042
Elric Fua45aa3b2012-02-18 13:32:27 +08001043 /* The superspeed hub except for root hub has to use Hub Depth
1044 * value as an offset into the route string to locate the bits
1045 * it uses to determine the downstream port number. So hub driver
1046 * should send a set hub depth request to superspeed hub after
1047 * the superspeed hub is set configuration in initialization or
1048 * reset procedure.
1049 *
1050 * After a resume, port power should still be on.
Alan Sternf2835212008-04-28 11:07:17 -04001051 * For any other type of activation, turn it on.
1052 */
Alan Stern8520f382008-09-22 14:44:26 -04001053 if (type != HUB_RESUME) {
Elric Fua45aa3b2012-02-18 13:32:27 +08001054 if (hdev->parent && hub_is_superspeed(hdev)) {
1055 ret = usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
1056 HUB_SET_DEPTH, USB_RT_HUB,
1057 hdev->level - 1, 0, NULL, 0,
1058 USB_CTRL_SET_TIMEOUT);
1059 if (ret < 0)
1060 dev_err(hub->intfdev,
1061 "set hub depth failed\n");
1062 }
Alan Stern8520f382008-09-22 14:44:26 -04001063
1064 /* Speed up system boot by using a delayed_work for the
1065 * hub's initial power-up delays. This is pretty awkward
1066 * and the implementation looks like a home-brewed sort of
1067 * setjmp/longjmp, but it saves at least 100 ms for each
1068 * root hub (assuming usbcore is compiled into the kernel
1069 * rather than as a module). It adds up.
1070 *
1071 * This can't be done for HUB_RESUME or HUB_RESET_RESUME
1072 * because for those activation types the ports have to be
1073 * operational when we return. In theory this could be done
1074 * for HUB_POST_RESET, but it's easier not to.
1075 */
1076 if (type == HUB_INIT) {
Kris Borer17a364e2015-08-21 10:47:46 +05301077 delay = hub_power_on_good_delay(hub);
Dan Williams7ad3c472014-05-20 18:08:57 -07001078
1079 hub_power_on(hub, false);
Tejun Heo77fa83c2014-03-07 10:24:48 -05001080 INIT_DELAYED_WORK(&hub->init_work, hub_init_func2);
Shaibal Dutta22f6a0f2014-02-01 19:16:46 -08001081 queue_delayed_work(system_power_efficient_wq,
1082 &hub->init_work,
Alan Stern8520f382008-09-22 14:44:26 -04001083 msecs_to_jiffies(delay));
Alan Stern61fbeba2008-10-27 12:07:44 -04001084
1085 /* Suppress autosuspend until init is done */
Alan Stern8e4ceb32009-12-07 13:01:37 -05001086 usb_autopm_get_interface_no_resume(
1087 to_usb_interface(hub->intfdev));
Alan Stern8520f382008-09-22 14:44:26 -04001088 return; /* Continues at init2: below */
Sarah Sharp653a39d2010-12-23 11:12:42 -08001089 } else if (type == HUB_RESET_RESUME) {
1090 /* The internal host controller state for the hub device
1091 * may be gone after a host power loss on system resume.
1092 * Update the device's info so the HW knows it's a hub.
1093 */
1094 hcd = bus_to_hcd(hdev->bus);
1095 if (hcd->driver->update_hub_device) {
1096 ret = hcd->driver->update_hub_device(hcd, hdev,
1097 &hub->tt, GFP_NOIO);
1098 if (ret < 0) {
1099 dev_err(hub->intfdev, "Host not "
1100 "accepting hub info "
1101 "update.\n");
1102 dev_err(hub->intfdev, "LS/FS devices "
1103 "and hubs may not work "
1104 "under this hub\n.");
1105 }
1106 }
1107 hub_power_on(hub, true);
Alan Stern8520f382008-09-22 14:44:26 -04001108 } else {
1109 hub_power_on(hub, true);
1110 }
1111 }
1112 init2:
Alan Sternf2835212008-04-28 11:07:17 -04001113
Dan Williamsd99f6b42014-05-20 18:08:17 -07001114 /*
Petr Mladek37ebb542014-09-19 17:32:23 +02001115 * Check each port and set hub->change_bits to let hub_wq know
Alan Stern6ee0b272008-04-28 11:06:42 -04001116 * which ports need attention.
Alan Stern5e6effa2008-03-03 15:15:51 -05001117 */
1118 for (port1 = 1; port1 <= hdev->maxchild; ++port1) {
Dan Williamsd99f6b42014-05-20 18:08:17 -07001119 struct usb_port *port_dev = hub->ports[port1 - 1];
1120 struct usb_device *udev = port_dev->child;
Alan Stern5e6effa2008-03-03 15:15:51 -05001121 u16 portstatus, portchange;
1122
Alan Stern6ee0b272008-04-28 11:06:42 -04001123 portstatus = portchange = 0;
1124 status = hub_port_status(hub, port1, &portstatus, &portchange);
1125 if (udev || (portstatus & USB_PORT_STAT_CONNECTION))
Dan Williamsd99f6b42014-05-20 18:08:17 -07001126 dev_dbg(&port_dev->dev, "status %04x change %04x\n",
1127 portstatus, portchange);
Alan Stern5e6effa2008-03-03 15:15:51 -05001128
Dan Williamsd99f6b42014-05-20 18:08:17 -07001129 /*
1130 * After anything other than HUB_RESUME (i.e., initialization
Alan Stern6ee0b272008-04-28 11:06:42 -04001131 * or any sort of reset), every port should be disabled.
1132 * Unconnected ports should likewise be disabled (paranoia),
1133 * and so should ports for which we have no usb_device.
Alan Stern5e6effa2008-03-03 15:15:51 -05001134 */
Alan Stern6ee0b272008-04-28 11:06:42 -04001135 if ((portstatus & USB_PORT_STAT_ENABLE) && (
1136 type != HUB_RESUME ||
1137 !(portstatus & USB_PORT_STAT_CONNECTION) ||
1138 !udev ||
1139 udev->state == USB_STATE_NOTATTACHED)) {
Andiry Xu9f0a6cd2010-05-07 18:09:27 +08001140 /*
1141 * USB3 protocol ports will automatically transition
1142 * to Enabled state when detect an USB3.0 device attach.
Dan Williamsfd1ac4c2013-10-07 11:58:20 -07001143 * Do not disable USB3 protocol ports, just pretend
1144 * power was lost
Andiry Xu9f0a6cd2010-05-07 18:09:27 +08001145 */
Dan Williamsfd1ac4c2013-10-07 11:58:20 -07001146 portstatus &= ~USB_PORT_STAT_ENABLE;
1147 if (!hub_is_superspeed(hdev))
Lan Tianyuad493e52013-01-23 04:26:30 +08001148 usb_clear_port_feature(hdev, port1,
Andiry Xu9f0a6cd2010-05-07 18:09:27 +08001149 USB_PORT_FEAT_ENABLE);
Alan Stern6ee0b272008-04-28 11:06:42 -04001150 }
1151
Alan Stern948fea32008-04-28 11:07:07 -04001152 /* Clear status-change flags; we'll debounce later */
1153 if (portchange & USB_PORT_STAT_C_CONNECTION) {
1154 need_debounce_delay = true;
Lan Tianyuad493e52013-01-23 04:26:30 +08001155 usb_clear_port_feature(hub->hdev, port1,
Alan Stern948fea32008-04-28 11:07:07 -04001156 USB_PORT_FEAT_C_CONNECTION);
1157 }
1158 if (portchange & USB_PORT_STAT_C_ENABLE) {
1159 need_debounce_delay = true;
Lan Tianyuad493e52013-01-23 04:26:30 +08001160 usb_clear_port_feature(hub->hdev, port1,
Alan Stern948fea32008-04-28 11:07:07 -04001161 USB_PORT_FEAT_C_ENABLE);
1162 }
Julius Wernere92aee32013-10-15 17:45:00 -07001163 if (portchange & USB_PORT_STAT_C_RESET) {
1164 need_debounce_delay = true;
1165 usb_clear_port_feature(hub->hdev, port1,
1166 USB_PORT_FEAT_C_RESET);
1167 }
Don Zickus79c3dd82011-11-03 09:07:18 -04001168 if ((portchange & USB_PORT_STAT_C_BH_RESET) &&
1169 hub_is_superspeed(hub->hdev)) {
1170 need_debounce_delay = true;
Lan Tianyuad493e52013-01-23 04:26:30 +08001171 usb_clear_port_feature(hub->hdev, port1,
Don Zickus79c3dd82011-11-03 09:07:18 -04001172 USB_PORT_FEAT_C_BH_PORT_RESET);
1173 }
Alan Stern253e0572009-10-27 15:20:13 -04001174 /* We can forget about a "removed" device when there's a
1175 * physical disconnect or the connect status changes.
1176 */
1177 if (!(portstatus & USB_PORT_STAT_CONNECTION) ||
1178 (portchange & USB_PORT_STAT_C_CONNECTION))
1179 clear_bit(port1, hub->removed_bits);
1180
Alan Stern6ee0b272008-04-28 11:06:42 -04001181 if (!udev || udev->state == USB_STATE_NOTATTACHED) {
Petr Mladek37ebb542014-09-19 17:32:23 +02001182 /* Tell hub_wq to disconnect the device or
Alan Stern6ee0b272008-04-28 11:06:42 -04001183 * check for a new connection
1184 */
Shen Guang08d1dec2014-01-08 14:45:42 +08001185 if (udev || (portstatus & USB_PORT_STAT_CONNECTION) ||
1186 (portstatus & USB_PORT_STAT_OVERCURRENT))
Alan Stern6ee0b272008-04-28 11:06:42 -04001187 set_bit(port1, hub->change_bits);
1188
1189 } else if (portstatus & USB_PORT_STAT_ENABLE) {
Sarah Sharp72937e12012-01-24 11:46:50 -08001190 bool port_resumed = (portstatus &
1191 USB_PORT_STAT_LINK_STATE) ==
1192 USB_SS_PORT_LS_U0;
Alan Stern6ee0b272008-04-28 11:06:42 -04001193 /* The power session apparently survived the resume.
1194 * If there was an overcurrent or suspend change
Petr Mladek37ebb542014-09-19 17:32:23 +02001195 * (i.e., remote wakeup request), have hub_wq
Sarah Sharp72937e12012-01-24 11:46:50 -08001196 * take care of it. Look at the port link state
1197 * for USB 3.0 hubs, since they don't have a suspend
1198 * change bit, and they don't set the port link change
1199 * bit on device-initiated resume.
Alan Stern6ee0b272008-04-28 11:06:42 -04001200 */
Sarah Sharp72937e12012-01-24 11:46:50 -08001201 if (portchange || (hub_is_superspeed(hub->hdev) &&
1202 port_resumed))
Alan Stern6ee0b272008-04-28 11:06:42 -04001203 set_bit(port1, hub->change_bits);
1204
1205 } else if (udev->persist_enabled) {
Alan Stern6ee0b272008-04-28 11:06:42 -04001206#ifdef CONFIG_PM
Alan Stern5e6effa2008-03-03 15:15:51 -05001207 udev->reset_resume = 1;
Alan Stern6ee0b272008-04-28 11:06:42 -04001208#endif
Lan Tianyuad493e52013-01-23 04:26:30 +08001209 /* Don't set the change_bits when the device
1210 * was powered off.
1211 */
Dan Williamsd5c38342014-05-20 18:08:52 -07001212 if (test_bit(port1, hub->power_bits))
Lan Tianyuad493e52013-01-23 04:26:30 +08001213 set_bit(port1, hub->change_bits);
Alan Stern8808f002008-04-28 11:06:55 -04001214
Alan Stern6ee0b272008-04-28 11:06:42 -04001215 } else {
Petr Mladek37ebb542014-09-19 17:32:23 +02001216 /* The power session is gone; tell hub_wq */
Alan Stern6ee0b272008-04-28 11:06:42 -04001217 usb_set_device_state(udev, USB_STATE_NOTATTACHED);
1218 set_bit(port1, hub->change_bits);
Alan Stern5e6effa2008-03-03 15:15:51 -05001219 }
Alan Stern5e6effa2008-03-03 15:15:51 -05001220 }
1221
Alan Stern948fea32008-04-28 11:07:07 -04001222 /* If no port-status-change flags were set, we don't need any
1223 * debouncing. If flags were set we can try to debounce the
Petr Mladek37ebb542014-09-19 17:32:23 +02001224 * ports all at once right now, instead of letting hub_wq do them
Alan Stern948fea32008-04-28 11:07:07 -04001225 * one at a time later on.
1226 *
Petr Mladek37ebb542014-09-19 17:32:23 +02001227 * If any port-status changes do occur during this delay, hub_wq
Alan Stern948fea32008-04-28 11:07:07 -04001228 * will see them later and handle them normally.
1229 */
Alan Stern8520f382008-09-22 14:44:26 -04001230 if (need_debounce_delay) {
1231 delay = HUB_DEBOUNCE_STABLE;
Alan Sternf2835212008-04-28 11:07:17 -04001232
Alan Stern8520f382008-09-22 14:44:26 -04001233 /* Don't do a long sleep inside a workqueue routine */
1234 if (type == HUB_INIT2) {
Tejun Heo77fa83c2014-03-07 10:24:48 -05001235 INIT_DELAYED_WORK(&hub->init_work, hub_init_func3);
Shaibal Dutta22f6a0f2014-02-01 19:16:46 -08001236 queue_delayed_work(system_power_efficient_wq,
1237 &hub->init_work,
Alan Stern8520f382008-09-22 14:44:26 -04001238 msecs_to_jiffies(delay));
1239 return; /* Continues at init3: below */
1240 } else {
1241 msleep(delay);
1242 }
1243 }
1244 init3:
Alan Sternf2835212008-04-28 11:07:17 -04001245 hub->quiescing = 0;
1246
1247 status = usb_submit_urb(hub->urb, GFP_NOIO);
1248 if (status < 0)
1249 dev_err(hub->intfdev, "activate --> %d\n", status);
1250 if (hub->has_indicators && blinkenlights)
Shaibal Dutta22f6a0f2014-02-01 19:16:46 -08001251 queue_delayed_work(system_power_efficient_wq,
1252 &hub->leds, LED_CYCLE_PERIOD);
Alan Sternf2835212008-04-28 11:07:17 -04001253
1254 /* Scan all ports that need attention */
Petr Mladek32a695892014-09-19 17:32:21 +02001255 kick_hub_wq(hub);
Alan Stern8e4ceb32009-12-07 13:01:37 -05001256
1257 /* Allow autosuspend if it was suppressed */
1258 if (type <= HUB_INIT3)
1259 usb_autopm_put_interface_async(to_usb_interface(hub->intfdev));
Alan Stern5e6effa2008-03-03 15:15:51 -05001260}
1261
Alan Stern8520f382008-09-22 14:44:26 -04001262/* Implement the continuations for the delays above */
1263static void hub_init_func2(struct work_struct *ws)
1264{
1265 struct usb_hub *hub = container_of(ws, struct usb_hub, init_work.work);
1266
1267 hub_activate(hub, HUB_INIT2);
1268}
1269
1270static void hub_init_func3(struct work_struct *ws)
1271{
1272 struct usb_hub *hub = container_of(ws, struct usb_hub, init_work.work);
1273
1274 hub_activate(hub, HUB_INIT3);
1275}
1276
Alan Stern43303542008-04-28 11:07:31 -04001277enum hub_quiescing_type {
1278 HUB_DISCONNECT, HUB_PRE_RESET, HUB_SUSPEND
1279};
1280
1281static void hub_quiesce(struct usb_hub *hub, enum hub_quiescing_type type)
1282{
1283 struct usb_device *hdev = hub->hdev;
1284 int i;
1285
Alan Stern8520f382008-09-22 14:44:26 -04001286 cancel_delayed_work_sync(&hub->init_work);
1287
Petr Mladek37ebb542014-09-19 17:32:23 +02001288 /* hub_wq and related activity won't re-trigger */
Alan Stern43303542008-04-28 11:07:31 -04001289 hub->quiescing = 1;
1290
1291 if (type != HUB_SUSPEND) {
1292 /* Disconnect all the children */
1293 for (i = 0; i < hdev->maxchild; ++i) {
Lan Tianyuff823c72012-09-05 13:44:32 +08001294 if (hub->ports[i]->child)
1295 usb_disconnect(&hub->ports[i]->child);
Alan Stern43303542008-04-28 11:07:31 -04001296 }
1297 }
1298
Petr Mladek37ebb542014-09-19 17:32:23 +02001299 /* Stop hub_wq and related activity */
Alan Stern43303542008-04-28 11:07:31 -04001300 usb_kill_urb(hub->urb);
1301 if (hub->has_indicators)
1302 cancel_delayed_work_sync(&hub->leds);
1303 if (hub->tt.hub)
Octavian Purdila036546b2012-10-23 11:33:12 +03001304 flush_work(&hub->tt.clear_work);
Alan Stern43303542008-04-28 11:07:31 -04001305}
1306
Alan Stern600856c2014-05-20 18:08:07 -07001307static void hub_pm_barrier_for_all_ports(struct usb_hub *hub)
1308{
1309 int i;
1310
1311 for (i = 0; i < hub->hdev->maxchild; ++i)
1312 pm_runtime_barrier(&hub->ports[i]->dev);
1313}
1314
Alan Stern3eb14912008-03-03 15:15:43 -05001315/* caller has locked the hub device */
1316static int hub_pre_reset(struct usb_interface *intf)
1317{
1318 struct usb_hub *hub = usb_get_intfdata(intf);
1319
Alan Stern43303542008-04-28 11:07:31 -04001320 hub_quiesce(hub, HUB_PRE_RESET);
Alan Stern600856c2014-05-20 18:08:07 -07001321 hub->in_reset = 1;
1322 hub_pm_barrier_for_all_ports(hub);
Alan Sternf07600c2007-05-30 15:38:16 -04001323 return 0;
Alan Stern7d069b72005-11-18 12:06:34 -05001324}
1325
1326/* caller has locked the hub device */
Alan Sternf07600c2007-05-30 15:38:16 -04001327static int hub_post_reset(struct usb_interface *intf)
Alan Stern7d069b72005-11-18 12:06:34 -05001328{
Alan Stern7de18d82006-06-01 13:37:24 -04001329 struct usb_hub *hub = usb_get_intfdata(intf);
1330
Alan Stern600856c2014-05-20 18:08:07 -07001331 hub->in_reset = 0;
1332 hub_pm_barrier_for_all_ports(hub);
Alan Sternf2835212008-04-28 11:07:17 -04001333 hub_activate(hub, HUB_POST_RESET);
Alan Sternf07600c2007-05-30 15:38:16 -04001334 return 0;
Alan Stern7d069b72005-11-18 12:06:34 -05001335}
1336
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337static int hub_configure(struct usb_hub *hub,
1338 struct usb_endpoint_descriptor *endpoint)
1339{
Sarah Sharpb356b7c2009-09-04 10:53:24 -07001340 struct usb_hcd *hcd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 struct usb_device *hdev = hub->hdev;
1342 struct device *hub_dev = hub->intfdev;
1343 u16 hubstatus, hubchange;
Greg Kroah-Hartman74ad9bd2005-06-20 21:15:16 -07001344 u16 wHubCharacteristics;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 unsigned int pipe;
Lan Tianyufa2a9562012-09-05 13:44:31 +08001346 int maxp, ret, i;
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001347 char *message = "out of memory";
Sebastian Andrzej Siewior430ee582012-12-18 15:25:47 +01001348 unsigned unit_load;
1349 unsigned full_load;
Dan Williamsd8521af2014-05-20 18:08:28 -07001350 unsigned maxchild;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351
Alan Sternd697cdd2009-10-27 15:18:46 -04001352 hub->buffer = kmalloc(sizeof(*hub->buffer), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 if (!hub->buffer) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 ret = -ENOMEM;
1355 goto fail;
1356 }
1357
1358 hub->status = kmalloc(sizeof(*hub->status), GFP_KERNEL);
1359 if (!hub->status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 ret = -ENOMEM;
1361 goto fail;
1362 }
Alan Sterndb90e7a2007-02-05 09:56:15 -05001363 mutex_init(&hub->status_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364
1365 hub->descriptor = kmalloc(sizeof(*hub->descriptor), GFP_KERNEL);
1366 if (!hub->descriptor) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 ret = -ENOMEM;
1368 goto fail;
1369 }
1370
1371 /* Request the entire hub descriptor.
1372 * hub->descriptor can handle USB_MAXCHILDREN ports,
1373 * but the hub can/will return fewer bytes here.
1374 */
John Youndbe79bb2001-09-17 00:00:00 -07001375 ret = get_hub_descriptor(hdev, hub->descriptor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 if (ret < 0) {
1377 message = "can't read hub descriptor";
1378 goto fail;
1379 } else if (hub->descriptor->bNbrPorts > USB_MAXCHILDREN) {
1380 message = "hub has too many ports!";
1381 ret = -ENODEV;
1382 goto fail;
David Linares769d73682013-03-25 10:50:27 +00001383 } else if (hub->descriptor->bNbrPorts == 0) {
1384 message = "hub doesn't have any ports!";
1385 ret = -ENODEV;
1386 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 }
1388
Dan Williamsd8521af2014-05-20 18:08:28 -07001389 maxchild = hub->descriptor->bNbrPorts;
1390 dev_info(hub_dev, "%d port%s detected\n", maxchild,
1391 (maxchild == 1) ? "" : "s");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392
Dan Williamsd8521af2014-05-20 18:08:28 -07001393 hub->ports = kzalloc(maxchild * sizeof(struct usb_port *), GFP_KERNEL);
Lan Tianyuff823c72012-09-05 13:44:32 +08001394 if (!hub->ports) {
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001395 ret = -ENOMEM;
1396 goto fail;
1397 }
1398
Greg Kroah-Hartman74ad9bd2005-06-20 21:15:16 -07001399 wHubCharacteristics = le16_to_cpu(hub->descriptor->wHubCharacteristics);
Sebastian Andrzej Siewior430ee582012-12-18 15:25:47 +01001400 if (hub_is_superspeed(hdev)) {
1401 unit_load = 150;
1402 full_load = 900;
1403 } else {
1404 unit_load = 100;
1405 full_load = 500;
1406 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407
John Youndbe79bb2001-09-17 00:00:00 -07001408 /* FIXME for USB 3.0, skip for now */
1409 if ((wHubCharacteristics & HUB_CHAR_COMPOUND) &&
1410 !(hub_is_superspeed(hdev))) {
Matthias Beyer469271f2013-10-10 23:41:27 +02001411 char portstr[USB_MAXCHILDREN + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412
Dan Williamsd8521af2014-05-20 18:08:28 -07001413 for (i = 0; i < maxchild; i++)
John Youndbe79bb2001-09-17 00:00:00 -07001414 portstr[i] = hub->descriptor->u.hs.DeviceRemovable
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415 [((i + 1) / 8)] & (1 << ((i + 1) % 8))
1416 ? 'F' : 'R';
Dan Williamsd8521af2014-05-20 18:08:28 -07001417 portstr[maxchild] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 dev_dbg(hub_dev, "compound device; port removable status: %s\n", portstr);
1419 } else
1420 dev_dbg(hub_dev, "standalone hub\n");
1421
Greg Kroah-Hartman74ad9bd2005-06-20 21:15:16 -07001422 switch (wHubCharacteristics & HUB_CHAR_LPSM) {
Aman Deep7bf01182011-12-08 12:05:22 +05301423 case HUB_CHAR_COMMON_LPSM:
1424 dev_dbg(hub_dev, "ganged power switching\n");
1425 break;
1426 case HUB_CHAR_INDV_PORT_LPSM:
1427 dev_dbg(hub_dev, "individual port power switching\n");
1428 break;
1429 case HUB_CHAR_NO_LPSM:
1430 case HUB_CHAR_LPSM:
1431 dev_dbg(hub_dev, "no power switching (usb 1.0)\n");
1432 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 }
1434
Greg Kroah-Hartman74ad9bd2005-06-20 21:15:16 -07001435 switch (wHubCharacteristics & HUB_CHAR_OCPM) {
Aman Deep7bf01182011-12-08 12:05:22 +05301436 case HUB_CHAR_COMMON_OCPM:
1437 dev_dbg(hub_dev, "global over-current protection\n");
1438 break;
1439 case HUB_CHAR_INDV_PORT_OCPM:
1440 dev_dbg(hub_dev, "individual port over-current protection\n");
1441 break;
1442 case HUB_CHAR_NO_OCPM:
1443 case HUB_CHAR_OCPM:
1444 dev_dbg(hub_dev, "no over-current protection\n");
1445 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 }
1447
Chase Metzger17248562015-08-11 21:34:37 -07001448 spin_lock_init(&hub->tt.lock);
1449 INIT_LIST_HEAD(&hub->tt.clear_list);
Alan Sterncb88a1b2009-06-29 10:43:32 -04001450 INIT_WORK(&hub->tt.clear_work, hub_tt_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 switch (hdev->descriptor.bDeviceProtocol) {
Aman Deep7bf01182011-12-08 12:05:22 +05301452 case USB_HUB_PR_FS:
1453 break;
1454 case USB_HUB_PR_HS_SINGLE_TT:
1455 dev_dbg(hub_dev, "Single TT\n");
1456 hub->tt.hub = hdev;
1457 break;
1458 case USB_HUB_PR_HS_MULTI_TT:
1459 ret = usb_set_interface(hdev, 0, 1);
1460 if (ret == 0) {
1461 dev_dbg(hub_dev, "TT per port\n");
1462 hub->tt.multi = 1;
1463 } else
1464 dev_err(hub_dev, "Using single TT (err %d)\n",
1465 ret);
1466 hub->tt.hub = hdev;
1467 break;
1468 case USB_HUB_PR_SS:
1469 /* USB 3.0 hubs don't have a TT */
1470 break;
1471 default:
1472 dev_dbg(hub_dev, "Unrecognized hub protocol %d\n",
1473 hdev->descriptor.bDeviceProtocol);
1474 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475 }
1476
david-b@pacbell.nete09711a2005-08-13 18:41:04 -07001477 /* Note 8 FS bit times == (8 bits / 12000000 bps) ~= 666ns */
Greg Kroah-Hartman74ad9bd2005-06-20 21:15:16 -07001478 switch (wHubCharacteristics & HUB_CHAR_TTTT) {
Matthias Beyer469271f2013-10-10 23:41:27 +02001479 case HUB_TTTT_8_BITS:
1480 if (hdev->descriptor.bDeviceProtocol != 0) {
1481 hub->tt.think_time = 666;
david-b@pacbell.nete09711a2005-08-13 18:41:04 -07001482 dev_dbg(hub_dev, "TT requires at most %d "
1483 "FS bit times (%d ns)\n",
Matthias Beyer469271f2013-10-10 23:41:27 +02001484 8, hub->tt.think_time);
1485 }
1486 break;
1487 case HUB_TTTT_16_BITS:
1488 hub->tt.think_time = 666 * 2;
1489 dev_dbg(hub_dev, "TT requires at most %d "
1490 "FS bit times (%d ns)\n",
1491 16, hub->tt.think_time);
1492 break;
1493 case HUB_TTTT_24_BITS:
1494 hub->tt.think_time = 666 * 3;
1495 dev_dbg(hub_dev, "TT requires at most %d "
1496 "FS bit times (%d ns)\n",
1497 24, hub->tt.think_time);
1498 break;
1499 case HUB_TTTT_32_BITS:
1500 hub->tt.think_time = 666 * 4;
1501 dev_dbg(hub_dev, "TT requires at most %d "
1502 "FS bit times (%d ns)\n",
1503 32, hub->tt.think_time);
1504 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 }
1506
1507 /* probe() zeroes hub->indicator[] */
Greg Kroah-Hartman74ad9bd2005-06-20 21:15:16 -07001508 if (wHubCharacteristics & HUB_CHAR_PORTIND) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509 hub->has_indicators = 1;
1510 dev_dbg(hub_dev, "Port indicators are supported\n");
1511 }
1512
1513 dev_dbg(hub_dev, "power on to power good time: %dms\n",
1514 hub->descriptor->bPwrOn2PwrGood * 2);
1515
1516 /* power budgeting mostly matters with bus-powered hubs,
1517 * and battery-powered root hubs (may provide just 8 mA).
1518 */
1519 ret = usb_get_status(hdev, USB_RECIP_DEVICE, 0, &hubstatus);
Alan Stern15b73362013-07-30 15:35:40 -04001520 if (ret) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 message = "can't get hub status";
1522 goto fail;
1523 }
Sebastian Andrzej Siewior430ee582012-12-18 15:25:47 +01001524 hcd = bus_to_hcd(hdev->bus);
Alan Stern7d35b922005-04-25 11:18:32 -04001525 if (hdev == hdev->bus->root_hub) {
Sebastian Andrzej Siewior430ee582012-12-18 15:25:47 +01001526 if (hcd->power_budget > 0)
1527 hdev->bus_mA = hcd->power_budget;
1528 else
Dan Williamsd8521af2014-05-20 18:08:28 -07001529 hdev->bus_mA = full_load * maxchild;
Sebastian Andrzej Siewior430ee582012-12-18 15:25:47 +01001530 if (hdev->bus_mA >= full_load)
1531 hub->mA_per_port = full_load;
Alan Stern55c52712005-11-23 12:03:12 -05001532 else {
1533 hub->mA_per_port = hdev->bus_mA;
1534 hub->limited_power = 1;
1535 }
Alan Stern7d35b922005-04-25 11:18:32 -04001536 } else if ((hubstatus & (1 << USB_DEVICE_SELF_POWERED)) == 0) {
Sebastian Andrzej Siewior430ee582012-12-18 15:25:47 +01001537 int remaining = hdev->bus_mA -
1538 hub->descriptor->bHubContrCurrent;
1539
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540 dev_dbg(hub_dev, "hub controller current requirement: %dmA\n",
1541 hub->descriptor->bHubContrCurrent);
Alan Stern55c52712005-11-23 12:03:12 -05001542 hub->limited_power = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543
Dan Williamsd8521af2014-05-20 18:08:28 -07001544 if (remaining < maxchild * unit_load)
Sebastian Andrzej Siewior430ee582012-12-18 15:25:47 +01001545 dev_warn(hub_dev,
Alan Stern55c52712005-11-23 12:03:12 -05001546 "insufficient power available "
1547 "to use all downstream ports\n");
Sebastian Andrzej Siewior430ee582012-12-18 15:25:47 +01001548 hub->mA_per_port = unit_load; /* 7.2.1 */
1549
Alan Stern55c52712005-11-23 12:03:12 -05001550 } else { /* Self-powered external hub */
1551 /* FIXME: What about battery-powered external hubs that
1552 * provide less current per port? */
Sebastian Andrzej Siewior430ee582012-12-18 15:25:47 +01001553 hub->mA_per_port = full_load;
Alan Stern55c52712005-11-23 12:03:12 -05001554 }
Sebastian Andrzej Siewior430ee582012-12-18 15:25:47 +01001555 if (hub->mA_per_port < full_load)
Alan Stern55c52712005-11-23 12:03:12 -05001556 dev_dbg(hub_dev, "%umA bus power budget for each child\n",
1557 hub->mA_per_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558
1559 ret = hub_hub_status(hub, &hubstatus, &hubchange);
1560 if (ret < 0) {
1561 message = "can't get hub status";
1562 goto fail;
1563 }
1564
1565 /* local power status reports aren't always correct */
1566 if (hdev->actconfig->desc.bmAttributes & USB_CONFIG_ATT_SELFPOWER)
1567 dev_dbg(hub_dev, "local power source is %s\n",
1568 (hubstatus & HUB_STATUS_LOCAL_POWER)
1569 ? "lost (inactive)" : "good");
1570
Greg Kroah-Hartman74ad9bd2005-06-20 21:15:16 -07001571 if ((wHubCharacteristics & HUB_CHAR_OCPM) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572 dev_dbg(hub_dev, "%sover-current condition exists\n",
1573 (hubstatus & HUB_STATUS_OVERCURRENT) ? "" : "no ");
1574
inaky@linux.intel.com88fafff2006-10-11 20:05:59 -07001575 /* set up the interrupt endpoint
1576 * We use the EP's maxpacket size instead of (PORTS+1+7)/8
1577 * bytes as USB2.0[11.12.3] says because some hubs are known
1578 * to send more data (and thus cause overflow). For root hubs,
1579 * maxpktsize is defined in hcd.c's fake endpoint descriptors
1580 * to be big enough for at least USB_MAXCHILDREN ports. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 pipe = usb_rcvintpipe(hdev, endpoint->bEndpointAddress);
1582 maxp = usb_maxpacket(hdev, pipe, usb_pipeout(pipe));
1583
1584 if (maxp > sizeof(*hub->buffer))
1585 maxp = sizeof(*hub->buffer);
1586
1587 hub->urb = usb_alloc_urb(0, GFP_KERNEL);
1588 if (!hub->urb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 ret = -ENOMEM;
1590 goto fail;
1591 }
1592
1593 usb_fill_int_urb(hub->urb, hdev, pipe, *hub->buffer, maxp, hub_irq,
1594 hub, endpoint->bInterval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595
1596 /* maybe cycle the hub leds */
1597 if (hub->has_indicators && blinkenlights)
Matthias Beyer469271f2013-10-10 23:41:27 +02001598 hub->indicator[0] = INDICATOR_CYCLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599
Dan Williamsd8521af2014-05-20 18:08:28 -07001600 mutex_lock(&usb_port_peer_mutex);
1601 for (i = 0; i < maxchild; i++) {
Krzysztof Mazure58547e2013-08-22 14:49:39 +02001602 ret = usb_hub_create_port_device(hub, i + 1);
1603 if (ret < 0) {
Lan Tianyufa2a9562012-09-05 13:44:31 +08001604 dev_err(hub->intfdev,
1605 "couldn't create port%d device.\n", i + 1);
Dan Williamsd8521af2014-05-20 18:08:28 -07001606 break;
Krzysztof Mazure58547e2013-08-22 14:49:39 +02001607 }
1608 }
Dan Williamsd8521af2014-05-20 18:08:28 -07001609 hdev->maxchild = i;
Dan Williamse3d10502014-06-17 16:16:32 -07001610 for (i = 0; i < hdev->maxchild; i++) {
1611 struct usb_port *port_dev = hub->ports[i];
1612
1613 pm_runtime_put(&port_dev->dev);
1614 }
1615
Dan Williamsd8521af2014-05-20 18:08:28 -07001616 mutex_unlock(&usb_port_peer_mutex);
1617 if (ret < 0)
1618 goto fail;
Lan Tianyufa2a9562012-09-05 13:44:31 +08001619
Petr Mladek37ebb542014-09-19 17:32:23 +02001620 /* Update the HCD's internal representation of this hub before hub_wq
Dan Williamse3d95582014-06-05 14:23:04 -07001621 * starts getting port status changes for devices under the hub.
1622 */
1623 if (hcd->driver->update_hub_device) {
1624 ret = hcd->driver->update_hub_device(hcd, hdev,
1625 &hub->tt, GFP_KERNEL);
1626 if (ret < 0) {
1627 message = "can't update HCD hub info";
1628 goto fail;
1629 }
1630 }
1631
Lan Tianyud2123fd2013-01-21 22:18:00 +08001632 usb_hub_adjust_deviceremovable(hdev, hub->descriptor);
1633
Alan Sternf2835212008-04-28 11:07:17 -04001634 hub_activate(hub, HUB_INIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635 return 0;
1636
1637fail:
Chase Metzger17248562015-08-11 21:34:37 -07001638 dev_err(hub_dev, "config failed, %s (err %d)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 message, ret);
1640 /* hub_disconnect() frees urb and descriptor */
1641 return ret;
1642}
1643
Alan Sterne8054852007-05-04 11:55:11 -04001644static void hub_release(struct kref *kref)
1645{
1646 struct usb_hub *hub = container_of(kref, struct usb_hub, kref);
1647
Petr Mladek5d14f322014-09-19 17:32:19 +02001648 usb_put_dev(hub->hdev);
Alan Sterne8054852007-05-04 11:55:11 -04001649 usb_put_intf(to_usb_interface(hub->intfdev));
1650 kfree(hub);
1651}
1652
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653static unsigned highspeed_hubs;
1654
1655static void hub_disconnect(struct usb_interface *intf)
1656{
Huajun Li88162302012-03-12 21:00:19 +08001657 struct usb_hub *hub = usb_get_intfdata(intf);
Greg Kroah-Hartmanfa286182012-05-14 09:20:37 -07001658 struct usb_device *hdev = interface_to_usbdev(intf);
Alan Stern543d7782014-01-07 10:43:02 -05001659 int port1;
Lan Tianyufa2a9562012-09-05 13:44:31 +08001660
Petr Mladek32a695892014-09-19 17:32:21 +02001661 /*
1662 * Stop adding new hub events. We do not want to block here and thus
1663 * will not try to remove any pending work item.
1664 */
Alan Sterne8054852007-05-04 11:55:11 -04001665 hub->disconnected = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666
Alan Stern7de18d82006-06-01 13:37:24 -04001667 /* Disconnect all children and quiesce the hub */
1668 hub->error = 0;
Alan Stern43303542008-04-28 11:07:31 -04001669 hub_quiesce(hub, HUB_DISCONNECT);
Alan Stern7de18d82006-06-01 13:37:24 -04001670
Dan Williamsd8521af2014-05-20 18:08:28 -07001671 mutex_lock(&usb_port_peer_mutex);
1672
Alan Stern543d7782014-01-07 10:43:02 -05001673 /* Avoid races with recursively_mark_NOTATTACHED() */
1674 spin_lock_irq(&device_state_lock);
1675 port1 = hdev->maxchild;
1676 hdev->maxchild = 0;
1677 usb_set_intfdata(intf, NULL);
1678 spin_unlock_irq(&device_state_lock);
Alexander Shishkin1f2235b2012-09-12 14:48:31 +03001679
Alan Stern543d7782014-01-07 10:43:02 -05001680 for (; port1 > 0; --port1)
1681 usb_hub_remove_port_device(hub, port1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682
Dan Williamsd8521af2014-05-20 18:08:28 -07001683 mutex_unlock(&usb_port_peer_mutex);
1684
Alan Sterne8054852007-05-04 11:55:11 -04001685 if (hub->hdev->speed == USB_SPEED_HIGH)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686 highspeed_hubs--;
1687
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688 usb_free_urb(hub->urb);
Lan Tianyufa2a9562012-09-05 13:44:31 +08001689 kfree(hub->ports);
Jesper Juhl1bc3c9e2005-04-18 17:39:34 -07001690 kfree(hub->descriptor);
Jesper Juhl1bc3c9e2005-04-18 17:39:34 -07001691 kfree(hub->status);
Alan Sternd697cdd2009-10-27 15:18:46 -04001692 kfree(hub->buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693
Lan Tianyu971fcd42013-01-23 04:26:29 +08001694 pm_suspend_ignore_children(&intf->dev, false);
Alan Sterne8054852007-05-04 11:55:11 -04001695 kref_put(&hub->kref, hub_release);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696}
1697
1698static int hub_probe(struct usb_interface *intf, const struct usb_device_id *id)
1699{
1700 struct usb_host_interface *desc;
1701 struct usb_endpoint_descriptor *endpoint;
1702 struct usb_device *hdev;
1703 struct usb_hub *hub;
1704
1705 desc = intf->cur_altsetting;
1706 hdev = interface_to_usbdev(intf);
1707
Ming Lei596d7892012-10-24 11:59:25 +08001708 /*
1709 * Set default autosuspend delay as 0 to speedup bus suspend,
1710 * based on the below considerations:
1711 *
1712 * - Unlike other drivers, the hub driver does not rely on the
1713 * autosuspend delay to provide enough time to handle a wakeup
1714 * event, and the submitted status URB is just to check future
1715 * change on hub downstream ports, so it is safe to do it.
1716 *
1717 * - The patch might cause one or more auto supend/resume for
1718 * below very rare devices when they are plugged into hub
1719 * first time:
1720 *
1721 * devices having trouble initializing, and disconnect
1722 * themselves from the bus and then reconnect a second
1723 * or so later
1724 *
1725 * devices just for downloading firmware, and disconnects
1726 * themselves after completing it
1727 *
1728 * For these quite rare devices, their drivers may change the
1729 * autosuspend delay of their parent hub in the probe() to one
1730 * appropriate value to avoid the subtle problem if someone
1731 * does care it.
1732 *
1733 * - The patch may cause one or more auto suspend/resume on
1734 * hub during running 'lsusb', but it is probably too
1735 * infrequent to worry about.
1736 *
1737 * - Change autosuspend delay of hub can avoid unnecessary auto
1738 * suspend timer for hub, also may decrease power consumption
1739 * of USB bus.
Roger Quadrosbdd405d2014-08-04 12:44:46 +03001740 *
1741 * - If user has indicated to prevent autosuspend by passing
1742 * usbcore.autosuspend = -1 then keep autosuspend disabled.
Ming Lei596d7892012-10-24 11:59:25 +08001743 */
Rafael J. Wysockiceb6c9c2014-11-29 23:47:05 +01001744#ifdef CONFIG_PM
Roger Quadrosbdd405d2014-08-04 12:44:46 +03001745 if (hdev->dev.power.autosuspend_delay >= 0)
1746 pm_runtime_set_autosuspend_delay(&hdev->dev, 0);
Greg Kroah-Hartmana9ef8032014-08-27 16:55:29 -07001747#endif
Ming Lei596d7892012-10-24 11:59:25 +08001748
Alan Stern8ef42dd2014-05-23 10:45:54 -04001749 /*
1750 * Hubs have proper suspend/resume support, except for root hubs
1751 * where the controller driver doesn't have bus_suspend and
1752 * bus_resume methods.
1753 */
1754 if (hdev->parent) { /* normal device */
1755 usb_enable_autosuspend(hdev);
1756 } else { /* root hub */
1757 const struct hc_driver *drv = bus_to_hcd(hdev->bus)->driver;
1758
1759 if (drv->bus_suspend && drv->bus_resume)
1760 usb_enable_autosuspend(hdev);
1761 }
Alan Stern088f7fe2010-01-08 12:56:54 -05001762
Felipe Balbi38f3ad52008-06-12 10:49:47 +03001763 if (hdev->level == MAX_TOPO_LEVEL) {
Wu Fengguangb9cef6c2008-12-15 15:32:01 +08001764 dev_err(&intf->dev,
1765 "Unsupported bus topology: hub nested too deep\n");
Felipe Balbi38f3ad52008-06-12 10:49:47 +03001766 return -E2BIG;
1767 }
1768
David Brownell89ccbdc2006-04-02 10:18:09 -08001769#ifdef CONFIG_USB_OTG_BLACKLIST_HUB
1770 if (hdev->parent) {
1771 dev_warn(&intf->dev, "ignoring external hub\n");
1772 return -ENODEV;
1773 }
1774#endif
1775
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 /* Some hubs have a subclass of 1, which AFAICT according to the */
1777 /* specs is not defined, but it works */
1778 if ((desc->desc.bInterfaceSubClass != 0) &&
1779 (desc->desc.bInterfaceSubClass != 1)) {
1780descriptor_error:
Chase Metzger17248562015-08-11 21:34:37 -07001781 dev_err(&intf->dev, "bad descriptor, ignoring hub\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 return -EIO;
1783 }
1784
1785 /* Multiple endpoints? What kind of mutant ninja-hub is this? */
1786 if (desc->desc.bNumEndpoints != 1)
1787 goto descriptor_error;
1788
1789 endpoint = &desc->endpoint[0].desc;
1790
Luiz Fernando N. Capitulinofbf81c22006-09-27 11:58:53 -07001791 /* If it's not an interrupt in endpoint, we'd better punt! */
1792 if (!usb_endpoint_is_int_in(endpoint))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793 goto descriptor_error;
1794
1795 /* We found a hub */
Chase Metzger17248562015-08-11 21:34:37 -07001796 dev_info(&intf->dev, "USB hub found\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797
Alan Stern0a1ef3b2005-10-24 15:38:24 -04001798 hub = kzalloc(sizeof(*hub), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 if (!hub) {
Chase Metzger17248562015-08-11 21:34:37 -07001800 dev_dbg(&intf->dev, "couldn't kmalloc hub struct\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801 return -ENOMEM;
1802 }
1803
Alan Sterne8054852007-05-04 11:55:11 -04001804 kref_init(&hub->kref);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805 hub->intfdev = &intf->dev;
1806 hub->hdev = hdev;
David Howellsc4028952006-11-22 14:57:56 +00001807 INIT_DELAYED_WORK(&hub->leds, led_work);
Alan Stern8520f382008-09-22 14:44:26 -04001808 INIT_DELAYED_WORK(&hub->init_work, NULL);
Petr Mladek32a695892014-09-19 17:32:21 +02001809 INIT_WORK(&hub->events, hub_event);
Alan Sterne8054852007-05-04 11:55:11 -04001810 usb_get_intf(intf);
Petr Mladek5d14f322014-09-19 17:32:19 +02001811 usb_get_dev(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812
Chase Metzger17248562015-08-11 21:34:37 -07001813 usb_set_intfdata(intf, hub);
Alan Stern40f122f2006-11-09 14:44:33 -05001814 intf->needs_remote_wakeup = 1;
Lan Tianyu971fcd42013-01-23 04:26:29 +08001815 pm_suspend_ignore_children(&intf->dev, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816
1817 if (hdev->speed == USB_SPEED_HIGH)
1818 highspeed_hubs++;
1819
Ming Leie6f30de2012-10-24 11:59:24 +08001820 if (id->driver_info & HUB_QUIRK_CHECK_PORT_AUTOSUSPEND)
1821 hub->quirk_check_port_auto_suspend = 1;
1822
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823 if (hub_configure(hub, endpoint) >= 0)
1824 return 0;
1825
Chase Metzger17248562015-08-11 21:34:37 -07001826 hub_disconnect(intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827 return -ENODEV;
1828}
1829
1830static int
1831hub_ioctl(struct usb_interface *intf, unsigned int code, void *user_data)
1832{
Chase Metzger17248562015-08-11 21:34:37 -07001833 struct usb_device *hdev = interface_to_usbdev(intf);
Lan Tianyuad493e52013-01-23 04:26:30 +08001834 struct usb_hub *hub = usb_hub_to_struct_hub(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835
1836 /* assert ifno == 0 (part of hub spec) */
1837 switch (code) {
1838 case USBDEVFS_HUB_PORTINFO: {
1839 struct usbdevfs_hub_portinfo *info = user_data;
1840 int i;
1841
1842 spin_lock_irq(&device_state_lock);
1843 if (hdev->devnum <= 0)
1844 info->nports = 0;
1845 else {
1846 info->nports = hdev->maxchild;
1847 for (i = 0; i < info->nports; i++) {
Lan Tianyuff823c72012-09-05 13:44:32 +08001848 if (hub->ports[i]->child == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849 info->port[i] = 0;
1850 else
1851 info->port[i] =
Lan Tianyuff823c72012-09-05 13:44:32 +08001852 hub->ports[i]->child->devnum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853 }
1854 }
1855 spin_unlock_irq(&device_state_lock);
1856
1857 return info->nports + 1;
1858 }
1859
1860 default:
1861 return -ENOSYS;
1862 }
1863}
1864
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001865/*
1866 * Allow user programs to claim ports on a hub. When a device is attached
1867 * to one of these "claimed" ports, the program will "own" the device.
1868 */
1869static int find_port_owner(struct usb_device *hdev, unsigned port1,
Valentina Manea9b6f0c42014-03-10 10:36:40 +02001870 struct usb_dev_state ***ppowner)
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001871{
Mathias Nyman41341262013-06-18 17:28:48 +03001872 struct usb_hub *hub = usb_hub_to_struct_hub(hdev);
1873
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001874 if (hdev->state == USB_STATE_NOTATTACHED)
1875 return -ENODEV;
1876 if (port1 == 0 || port1 > hdev->maxchild)
1877 return -EINVAL;
1878
Mathias Nyman41341262013-06-18 17:28:48 +03001879 /* Devices not managed by the hub driver
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001880 * will always have maxchild equal to 0.
1881 */
Mathias Nyman41341262013-06-18 17:28:48 +03001882 *ppowner = &(hub->ports[port1 - 1]->port_owner);
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001883 return 0;
1884}
1885
1886/* In the following three functions, the caller must hold hdev's lock */
Lan Tianyu336c5c32012-07-06 14:13:52 +08001887int usb_hub_claim_port(struct usb_device *hdev, unsigned port1,
Valentina Manea9b6f0c42014-03-10 10:36:40 +02001888 struct usb_dev_state *owner)
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001889{
1890 int rc;
Valentina Manea9b6f0c42014-03-10 10:36:40 +02001891 struct usb_dev_state **powner;
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001892
1893 rc = find_port_owner(hdev, port1, &powner);
1894 if (rc)
1895 return rc;
1896 if (*powner)
1897 return -EBUSY;
1898 *powner = owner;
1899 return rc;
1900}
Valentina Manea6080cd02014-03-08 14:53:34 +02001901EXPORT_SYMBOL_GPL(usb_hub_claim_port);
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001902
Lan Tianyu336c5c32012-07-06 14:13:52 +08001903int usb_hub_release_port(struct usb_device *hdev, unsigned port1,
Valentina Manea9b6f0c42014-03-10 10:36:40 +02001904 struct usb_dev_state *owner)
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001905{
1906 int rc;
Valentina Manea9b6f0c42014-03-10 10:36:40 +02001907 struct usb_dev_state **powner;
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001908
1909 rc = find_port_owner(hdev, port1, &powner);
1910 if (rc)
1911 return rc;
1912 if (*powner != owner)
1913 return -ENOENT;
1914 *powner = NULL;
1915 return rc;
1916}
Valentina Manea6080cd02014-03-08 14:53:34 +02001917EXPORT_SYMBOL_GPL(usb_hub_release_port);
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001918
Valentina Manea9b6f0c42014-03-10 10:36:40 +02001919void usb_hub_release_all_ports(struct usb_device *hdev, struct usb_dev_state *owner)
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001920{
Lan Tianyuad493e52013-01-23 04:26:30 +08001921 struct usb_hub *hub = usb_hub_to_struct_hub(hdev);
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001922 int n;
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001923
Lan Tianyufa2a9562012-09-05 13:44:31 +08001924 for (n = 0; n < hdev->maxchild; n++) {
1925 if (hub->ports[n]->port_owner == owner)
1926 hub->ports[n]->port_owner = NULL;
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001927 }
Lan Tianyufa2a9562012-09-05 13:44:31 +08001928
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001929}
1930
1931/* The caller must hold udev's lock */
1932bool usb_device_is_owned(struct usb_device *udev)
1933{
1934 struct usb_hub *hub;
1935
1936 if (udev->state == USB_STATE_NOTATTACHED || !udev->parent)
1937 return false;
Lan Tianyuad493e52013-01-23 04:26:30 +08001938 hub = usb_hub_to_struct_hub(udev->parent);
Lan Tianyufa2a9562012-09-05 13:44:31 +08001939 return !!hub->ports[udev->portnum - 1]->port_owner;
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001940}
1941
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942static void recursively_mark_NOTATTACHED(struct usb_device *udev)
1943{
Lan Tianyuad493e52013-01-23 04:26:30 +08001944 struct usb_hub *hub = usb_hub_to_struct_hub(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945 int i;
1946
1947 for (i = 0; i < udev->maxchild; ++i) {
Lan Tianyuff823c72012-09-05 13:44:32 +08001948 if (hub->ports[i]->child)
1949 recursively_mark_NOTATTACHED(hub->ports[i]->child);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 }
Alan Stern9bbdf1e2010-01-08 12:57:28 -05001951 if (udev->state == USB_STATE_SUSPENDED)
Sarah Sharp15123002007-12-21 16:54:15 -08001952 udev->active_duration -= jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953 udev->state = USB_STATE_NOTATTACHED;
1954}
1955
1956/**
1957 * usb_set_device_state - change a device's current state (usbcore, hcds)
1958 * @udev: pointer to device whose state should be changed
1959 * @new_state: new state value to be stored
1960 *
1961 * udev->state is _not_ fully protected by the device lock. Although
1962 * most transitions are made only while holding the lock, the state can
1963 * can change to USB_STATE_NOTATTACHED at almost any time. This
1964 * is so that devices can be marked as disconnected as soon as possible,
1965 * without having to wait for any semaphores to be released. As a result,
1966 * all changes to any device's state must be protected by the
1967 * device_state_lock spinlock.
1968 *
1969 * Once a device has been added to the device tree, all changes to its state
1970 * should be made using this routine. The state should _not_ be set directly.
1971 *
1972 * If udev->state is already USB_STATE_NOTATTACHED then no change is made.
1973 * Otherwise udev->state is set to new_state, and if new_state is
1974 * USB_STATE_NOTATTACHED then all of udev's descendants' states are also set
1975 * to USB_STATE_NOTATTACHED.
1976 */
1977void usb_set_device_state(struct usb_device *udev,
1978 enum usb_device_state new_state)
1979{
1980 unsigned long flags;
Rafael J. Wysocki4681b172011-02-08 23:25:48 +01001981 int wakeup = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982
1983 spin_lock_irqsave(&device_state_lock, flags);
1984 if (udev->state == USB_STATE_NOTATTACHED)
1985 ; /* do nothing */
David Brownellb94dc6b2005-09-12 19:39:39 -07001986 else if (new_state != USB_STATE_NOTATTACHED) {
David Brownellfb669cc2006-01-24 08:40:27 -08001987
1988 /* root hub wakeup capabilities are managed out-of-band
1989 * and may involve silicon errata ... ignore them here.
1990 */
1991 if (udev->parent) {
Alan Stern645daaa2006-08-30 15:47:02 -04001992 if (udev->state == USB_STATE_SUSPENDED
1993 || new_state == USB_STATE_SUSPENDED)
1994 ; /* No change to wakeup settings */
1995 else if (new_state == USB_STATE_CONFIGURED)
Lu Baoluddbe1fc2014-09-19 10:13:50 +08001996 wakeup = (udev->quirks &
1997 USB_QUIRK_IGNORE_REMOTE_WAKEUP) ? 0 :
1998 udev->actconfig->desc.bmAttributes &
1999 USB_CONFIG_ATT_WAKEUP;
Alan Stern645daaa2006-08-30 15:47:02 -04002000 else
Rafael J. Wysocki4681b172011-02-08 23:25:48 +01002001 wakeup = 0;
David Brownellfb669cc2006-01-24 08:40:27 -08002002 }
Sarah Sharp15123002007-12-21 16:54:15 -08002003 if (udev->state == USB_STATE_SUSPENDED &&
2004 new_state != USB_STATE_SUSPENDED)
2005 udev->active_duration -= jiffies;
2006 else if (new_state == USB_STATE_SUSPENDED &&
2007 udev->state != USB_STATE_SUSPENDED)
2008 udev->active_duration += jiffies;
Alan Stern645daaa2006-08-30 15:47:02 -04002009 udev->state = new_state;
David Brownellb94dc6b2005-09-12 19:39:39 -07002010 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011 recursively_mark_NOTATTACHED(udev);
2012 spin_unlock_irqrestore(&device_state_lock, flags);
Rafael J. Wysocki4681b172011-02-08 23:25:48 +01002013 if (wakeup >= 0)
2014 device_set_wakeup_capable(&udev->dev, wakeup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015}
David Vrabel6da9c992009-02-18 14:43:47 +00002016EXPORT_SYMBOL_GPL(usb_set_device_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017
Inaky Perez-Gonzalez8af548d2008-04-08 13:24:46 -07002018/*
Alan Stern3b29b682011-02-22 09:53:41 -05002019 * Choose a device number.
2020 *
2021 * Device numbers are used as filenames in usbfs. On USB-1.1 and
2022 * USB-2.0 buses they are also used as device addresses, however on
2023 * USB-3.0 buses the address is assigned by the controller hardware
2024 * and it usually is not the same as the device number.
2025 *
Inaky Perez-Gonzalez8af548d2008-04-08 13:24:46 -07002026 * WUSB devices are simple: they have no hubs behind, so the mapping
2027 * device <-> virtual port number becomes 1:1. Why? to simplify the
2028 * life of the device connection logic in
2029 * drivers/usb/wusbcore/devconnect.c. When we do the initial secret
2030 * handshake we need to assign a temporary address in the unauthorized
2031 * space. For simplicity we use the first virtual port number found to
2032 * be free [drivers/usb/wusbcore/devconnect.c:wusbhc_devconnect_ack()]
2033 * and that becomes it's address [X < 128] or its unauthorized address
2034 * [X | 0x80].
2035 *
2036 * We add 1 as an offset to the one-based USB-stack port number
2037 * (zero-based wusb virtual port index) for two reasons: (a) dev addr
2038 * 0 is reserved by USB for default address; (b) Linux's USB stack
2039 * uses always #1 for the root hub of the controller. So USB stack's
2040 * port #1, which is wusb virtual-port #0 has address #2.
Sarah Sharpc6515272009-04-27 19:57:26 -07002041 *
2042 * Devices connected under xHCI are not as simple. The host controller
2043 * supports virtualization, so the hardware assigns device addresses and
2044 * the HCD must setup data structures before issuing a set address
2045 * command to the hardware.
Inaky Perez-Gonzalez8af548d2008-04-08 13:24:46 -07002046 */
Alan Stern3b29b682011-02-22 09:53:41 -05002047static void choose_devnum(struct usb_device *udev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048{
2049 int devnum;
2050 struct usb_bus *bus = udev->bus;
2051
Petr Mladek638139e2014-09-19 17:32:24 +02002052 /* be safe when more hub events are proceed in parallel */
2053 mutex_lock(&bus->usb_address0_mutex);
Inaky Perez-Gonzalez8af548d2008-04-08 13:24:46 -07002054 if (udev->wusb) {
2055 devnum = udev->portnum + 1;
2056 BUG_ON(test_bit(devnum, bus->devmap.devicemap));
2057 } else {
2058 /* Try to allocate the next devnum beginning at
2059 * bus->devnum_next. */
2060 devnum = find_next_zero_bit(bus->devmap.devicemap, 128,
2061 bus->devnum_next);
2062 if (devnum >= 128)
2063 devnum = find_next_zero_bit(bus->devmap.devicemap,
2064 128, 1);
Matthias Beyer469271f2013-10-10 23:41:27 +02002065 bus->devnum_next = (devnum >= 127 ? 1 : devnum + 1);
Inaky Perez-Gonzalez8af548d2008-04-08 13:24:46 -07002066 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067 if (devnum < 128) {
2068 set_bit(devnum, bus->devmap.devicemap);
2069 udev->devnum = devnum;
2070 }
Petr Mladek638139e2014-09-19 17:32:24 +02002071 mutex_unlock(&bus->usb_address0_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072}
2073
Alan Stern3b29b682011-02-22 09:53:41 -05002074static void release_devnum(struct usb_device *udev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075{
2076 if (udev->devnum > 0) {
2077 clear_bit(udev->devnum, udev->bus->devmap.devicemap);
2078 udev->devnum = -1;
2079 }
2080}
2081
Alan Stern3b29b682011-02-22 09:53:41 -05002082static void update_devnum(struct usb_device *udev, int devnum)
David Vrabel4953d142008-04-08 13:24:46 -07002083{
2084 /* The address for a WUSB device is managed by wusbcore. */
2085 if (!udev->wusb)
2086 udev->devnum = devnum;
2087}
2088
Herbert Xuf7410ce2010-01-10 20:15:03 +11002089static void hub_free_dev(struct usb_device *udev)
2090{
2091 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
2092
2093 /* Root hubs aren't real devices, so don't free HCD resources */
2094 if (hcd->driver->free_dev && udev->parent)
2095 hcd->driver->free_dev(hcd, udev);
2096}
2097
Dan Williams7027df32014-05-20 18:09:36 -07002098static void hub_disconnect_children(struct usb_device *udev)
2099{
2100 struct usb_hub *hub = usb_hub_to_struct_hub(udev);
2101 int i;
2102
2103 /* Free up all the children before we remove this device */
2104 for (i = 0; i < udev->maxchild; i++) {
2105 if (hub->ports[i]->child)
2106 usb_disconnect(&hub->ports[i]->child);
2107 }
2108}
2109
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110/**
2111 * usb_disconnect - disconnect a device (usbcore-internal)
2112 * @pdev: pointer to device being disconnected
2113 * Context: !in_interrupt ()
2114 *
2115 * Something got disconnected. Get rid of it and all of its children.
2116 *
2117 * If *pdev is a normal device then the parent hub must already be locked.
Bjorn Helgaasdb8f2aa2013-09-13 13:57:34 -06002118 * If *pdev is a root hub then the caller must hold the usb_bus_list_lock,
2119 * which protects the set of root hubs as well as the list of buses.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120 *
2121 * Only hub drivers (including virtual root hub drivers for host
2122 * controllers) should ever call this.
2123 *
2124 * This call is synchronous, and may not be used in an interrupt context.
2125 */
2126void usb_disconnect(struct usb_device **pdev)
2127{
Dan Williams7027df32014-05-20 18:09:36 -07002128 struct usb_port *port_dev = NULL;
2129 struct usb_device *udev = *pdev;
Peter Chen5b1dc202014-08-19 08:56:21 +08002130 struct usb_hub *hub = NULL;
2131 int port1 = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133 /* mark the device as inactive, so any further urb submissions for
2134 * this device (and any of its children) will fail immediately.
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002135 * this quiesces everything except pending urbs.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136 */
2137 usb_set_device_state(udev, USB_STATE_NOTATTACHED);
Alan Stern3b29b682011-02-22 09:53:41 -05002138 dev_info(&udev->dev, "USB disconnect, device number %d\n",
2139 udev->devnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140
Alan Stern9ad3d6c2005-11-17 17:10:32 -05002141 usb_lock_device(udev);
2142
Dan Williams7027df32014-05-20 18:09:36 -07002143 hub_disconnect_children(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144
2145 /* deallocate hcd/hardware state ... nuking all pending urbs and
2146 * cleaning up all state associated with the current configuration
2147 * so that the hardware is now fully quiesced.
2148 */
Chase Metzger17248562015-08-11 21:34:37 -07002149 dev_dbg(&udev->dev, "unregistering device\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150 usb_disable_device(udev, 0);
Alan Sterncde217a2008-10-21 15:28:46 -04002151 usb_hcd_synchronize_unlinks(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152
Lan Tianyufde26382013-01-20 01:53:33 +08002153 if (udev->parent) {
Dan Williams7027df32014-05-20 18:09:36 -07002154 port1 = udev->portnum;
2155 hub = usb_hub_to_struct_hub(udev->parent);
2156 port_dev = hub->ports[port1 - 1];
Lan Tianyufde26382013-01-20 01:53:33 +08002157
2158 sysfs_remove_link(&udev->dev.kobj, "port");
2159 sysfs_remove_link(&port_dev->dev.kobj, "device");
Lan Tianyu971fcd42013-01-23 04:26:29 +08002160
Dan Williams7027df32014-05-20 18:09:36 -07002161 /*
2162 * As usb_port_runtime_resume() de-references udev, make
2163 * sure no resumes occur during removal
2164 */
2165 if (!test_and_set_bit(port1, hub->child_usage_bits))
2166 pm_runtime_get_sync(&port_dev->dev);
Lan Tianyufde26382013-01-20 01:53:33 +08002167 }
2168
Alan Stern3b23dd62008-12-05 14:10:34 -05002169 usb_remove_ep_devs(&udev->ep0);
Alan Stern782da722006-07-01 22:09:35 -04002170 usb_unlock_device(udev);
Greg Kroah-Hartman3099e752005-06-20 21:15:16 -07002171
Alan Stern782da722006-07-01 22:09:35 -04002172 /* Unregister the device. The device driver is responsible
Alan Stern3b23dd62008-12-05 14:10:34 -05002173 * for de-configuring the device and invoking the remove-device
2174 * notifier chain (used by usbfs and possibly others).
Alan Stern782da722006-07-01 22:09:35 -04002175 */
2176 device_del(&udev->dev);
2177
2178 /* Free the device number and delete the parent's children[]
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179 * (or root_hub) pointer.
2180 */
Alan Stern3b29b682011-02-22 09:53:41 -05002181 release_devnum(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182
2183 /* Avoid races with recursively_mark_NOTATTACHED() */
2184 spin_lock_irq(&device_state_lock);
2185 *pdev = NULL;
2186 spin_unlock_irq(&device_state_lock);
2187
Dan Williams7027df32014-05-20 18:09:36 -07002188 if (port_dev && test_and_clear_bit(port1, hub->child_usage_bits))
2189 pm_runtime_put(&port_dev->dev);
2190
Herbert Xuf7410ce2010-01-10 20:15:03 +11002191 hub_free_dev(udev);
2192
Alan Stern782da722006-07-01 22:09:35 -04002193 put_device(&udev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194}
2195
Greg Kroah-Hartmanf2a383e2007-11-26 22:11:55 -08002196#ifdef CONFIG_USB_ANNOUNCE_NEW_DEVICES
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197static void show_string(struct usb_device *udev, char *id, char *string)
2198{
2199 if (!string)
2200 return;
Joe Perchesf2ec5222012-10-28 01:05:51 -07002201 dev_info(&udev->dev, "%s: %s\n", id, string);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202}
2203
Greg Kroah-Hartmanf2a383e2007-11-26 22:11:55 -08002204static void announce_device(struct usb_device *udev)
2205{
2206 dev_info(&udev->dev, "New USB device found, idVendor=%04x, idProduct=%04x\n",
2207 le16_to_cpu(udev->descriptor.idVendor),
2208 le16_to_cpu(udev->descriptor.idProduct));
Wu Fengguangb9cef6c2008-12-15 15:32:01 +08002209 dev_info(&udev->dev,
2210 "New USB device strings: Mfr=%d, Product=%d, SerialNumber=%d\n",
Greg Kroah-Hartmanf2a383e2007-11-26 22:11:55 -08002211 udev->descriptor.iManufacturer,
2212 udev->descriptor.iProduct,
2213 udev->descriptor.iSerialNumber);
2214 show_string(udev, "Product", udev->product);
2215 show_string(udev, "Manufacturer", udev->manufacturer);
2216 show_string(udev, "SerialNumber", udev->serial);
2217}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218#else
Greg Kroah-Hartmanf2a383e2007-11-26 22:11:55 -08002219static inline void announce_device(struct usb_device *udev) { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220#endif
2221
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222
Oliver Neukum3ede7602007-01-11 14:35:50 +01002223/**
Alan Stern8d8558d2009-12-08 15:50:41 -05002224 * usb_enumerate_device_otg - FIXME (usbcore-internal)
Oliver Neukum3ede7602007-01-11 14:35:50 +01002225 * @udev: newly addressed device (in ADDRESS state)
2226 *
Alan Stern8d8558d2009-12-08 15:50:41 -05002227 * Finish enumeration for On-The-Go devices
Yacine Belkadi626f0902013-08-02 20:10:04 +02002228 *
2229 * Return: 0 if successful. A negative error code otherwise.
Oliver Neukum3ede7602007-01-11 14:35:50 +01002230 */
Alan Stern8d8558d2009-12-08 15:50:41 -05002231static int usb_enumerate_device_otg(struct usb_device *udev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232{
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07002233 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234
2235#ifdef CONFIG_USB_OTG
2236 /*
2237 * OTG-aware devices on OTG-capable root hubs may be able to use SRP,
2238 * to wake us after we've powered off VBUS; and HNP, switching roles
2239 * "host" to "peripheral". The OTG descriptor helps figure this out.
2240 */
2241 if (!udev->bus->is_b_host
2242 && udev->config
2243 && udev->parent == udev->bus->root_hub) {
Felipe Balbi2eb50522009-12-04 15:47:43 +02002244 struct usb_otg_descriptor *desc = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245 struct usb_bus *bus = udev->bus;
Li Jun7d2d6412015-08-31 16:20:49 +08002246 unsigned port1 = udev->portnum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247
2248 /* descriptor may appear anywhere in config */
Li Jun7d2d6412015-08-31 16:20:49 +08002249 err = __usb_get_extra_descriptor(udev->rawdescriptors[0],
2250 le16_to_cpu(udev->config[0].desc.wTotalLength),
2251 USB_DT_OTG, (void **) &desc);
2252 if (err || !(desc->bmAttributes & USB_OTG_HNP))
2253 return 0;
David Brownellfc849b82006-09-18 16:53:26 -07002254
Li Jun7d2d6412015-08-31 16:20:49 +08002255 dev_info(&udev->dev, "Dual-Role OTG device on %sHNP port\n",
2256 (port1 == bus->otg_port) ? "" : "non-");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257
Li Jun7d2d6412015-08-31 16:20:49 +08002258 /* enable HNP before suspend, it's simpler */
2259 if (port1 == bus->otg_port) {
2260 bus->b_hnp_enable = 1;
2261 err = usb_control_msg(udev,
2262 usb_sndctrlpipe(udev, 0),
2263 USB_REQ_SET_FEATURE, 0,
2264 USB_DEVICE_B_HNP_ENABLE,
2265 0, NULL, 0,
2266 USB_CTRL_SET_TIMEOUT);
2267 if (err < 0) {
2268 /*
2269 * OTG MESSAGE: report errors here,
2270 * customize to match your product.
2271 */
2272 dev_err(&udev->dev, "can't set HNP mode: %d\n",
2273 err);
2274 bus->b_hnp_enable = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275 }
Li Jun7d2d6412015-08-31 16:20:49 +08002276 } else if (desc->bLength == sizeof
2277 (struct usb_otg_descriptor)) {
2278 /* Set a_alt_hnp_support for legacy otg device */
2279 err = usb_control_msg(udev,
2280 usb_sndctrlpipe(udev, 0),
2281 USB_REQ_SET_FEATURE, 0,
2282 USB_DEVICE_A_ALT_HNP_SUPPORT,
2283 0, NULL, 0,
2284 USB_CTRL_SET_TIMEOUT);
2285 if (err < 0)
2286 dev_err(&udev->dev,
2287 "set a_alt_hnp_support failed: %d\n",
2288 err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289 }
2290 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291#endif
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07002292 return err;
2293}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07002295
2296/**
Alan Stern8d8558d2009-12-08 15:50:41 -05002297 * usb_enumerate_device - Read device configs/intfs/otg (usbcore-internal)
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07002298 * @udev: newly addressed device (in ADDRESS state)
2299 *
2300 * This is only called by usb_new_device() and usb_authorize_device()
2301 * and FIXME -- all comments that apply to them apply here wrt to
2302 * environment.
2303 *
2304 * If the device is WUSB and not authorized, we don't attempt to read
2305 * the string descriptors, as they will be errored out by the device
2306 * until it has been authorized.
Yacine Belkadi626f0902013-08-02 20:10:04 +02002307 *
2308 * Return: 0 if successful. A negative error code otherwise.
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07002309 */
Alan Stern8d8558d2009-12-08 15:50:41 -05002310static int usb_enumerate_device(struct usb_device *udev)
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07002311{
2312 int err;
Peter Chen026f3fc2014-08-19 09:51:53 +08002313 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07002314
2315 if (udev->config == NULL) {
2316 err = usb_get_configuration(udev);
2317 if (err < 0) {
Alan Sterne9e88fb2013-03-27 16:14:01 -04002318 if (err != -ENODEV)
2319 dev_err(&udev->dev, "can't read configurations, error %d\n",
2320 err);
Laurent Pinchart80da2e02012-07-19 12:39:13 +02002321 return err;
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07002322 }
2323 }
Thomas Pugliese83e83ec2013-12-09 13:40:29 -06002324
2325 /* read the standard strings and cache them if present */
2326 udev->product = usb_cache_string(udev, udev->descriptor.iProduct);
2327 udev->manufacturer = usb_cache_string(udev,
2328 udev->descriptor.iManufacturer);
2329 udev->serial = usb_cache_string(udev, udev->descriptor.iSerialNumber);
2330
Alan Stern8d8558d2009-12-08 15:50:41 -05002331 err = usb_enumerate_device_otg(udev);
Laurent Pinchart80da2e02012-07-19 12:39:13 +02002332 if (err < 0)
2333 return err;
2334
Peter Chen026f3fc2014-08-19 09:51:53 +08002335 if (IS_ENABLED(CONFIG_USB_OTG_WHITELIST) && hcd->tpl_support &&
Peter Chene5a9d622014-09-29 10:09:31 +08002336 !is_targeted(udev)) {
Peter Chen026f3fc2014-08-19 09:51:53 +08002337 /* Maybe it can talk to us, though we can't talk to it.
2338 * (Includes HNP test device.)
2339 */
Peter Chene5a9d622014-09-29 10:09:31 +08002340 if (IS_ENABLED(CONFIG_USB_OTG) && (udev->bus->b_hnp_enable
2341 || udev->bus->is_b_host)) {
Peter Chen026f3fc2014-08-19 09:51:53 +08002342 err = usb_port_suspend(udev, PMSG_AUTO_SUSPEND);
2343 if (err < 0)
2344 dev_dbg(&udev->dev, "HNP fail, %d\n", err);
2345 }
2346 return -ENOTSUPP;
2347 }
2348
Laurent Pinchart80da2e02012-07-19 12:39:13 +02002349 usb_detect_interface_quirks(udev);
2350
2351 return 0;
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07002352}
2353
Matthew Garrettd35e70d2012-02-03 17:11:55 -05002354static void set_usb_port_removable(struct usb_device *udev)
2355{
2356 struct usb_device *hdev = udev->parent;
2357 struct usb_hub *hub;
2358 u8 port = udev->portnum;
2359 u16 wHubCharacteristics;
2360 bool removable = true;
2361
2362 if (!hdev)
2363 return;
2364
Lan Tianyuad493e52013-01-23 04:26:30 +08002365 hub = usb_hub_to_struct_hub(udev->parent);
Matthew Garrettd35e70d2012-02-03 17:11:55 -05002366
Matthew Garrett92bfbf72015-04-08 16:36:00 -07002367 /*
2368 * If the platform firmware has provided information about a port,
2369 * use that to determine whether it's removable.
2370 */
2371 switch (hub->ports[udev->portnum - 1]->connect_type) {
2372 case USB_PORT_CONNECT_TYPE_HOT_PLUG:
2373 udev->removable = USB_DEVICE_REMOVABLE;
2374 return;
2375 case USB_PORT_CONNECT_TYPE_HARD_WIRED:
Matthew Garrett58339c22015-04-08 16:36:01 -07002376 case USB_PORT_NOT_USED:
Matthew Garrett92bfbf72015-04-08 16:36:00 -07002377 udev->removable = USB_DEVICE_FIXED;
2378 return;
Matthew Garrett58339c22015-04-08 16:36:01 -07002379 default:
2380 break;
Matthew Garrett92bfbf72015-04-08 16:36:00 -07002381 }
2382
2383 /*
2384 * Otherwise, check whether the hub knows whether a port is removable
2385 * or not
2386 */
Matthew Garrettd35e70d2012-02-03 17:11:55 -05002387 wHubCharacteristics = le16_to_cpu(hub->descriptor->wHubCharacteristics);
2388
2389 if (!(wHubCharacteristics & HUB_CHAR_COMPOUND))
2390 return;
2391
2392 if (hub_is_superspeed(hdev)) {
Lan Tianyuca3c1532012-09-11 04:22:36 +08002393 if (le16_to_cpu(hub->descriptor->u.ss.DeviceRemovable)
2394 & (1 << port))
Matthew Garrettd35e70d2012-02-03 17:11:55 -05002395 removable = false;
2396 } else {
2397 if (hub->descriptor->u.hs.DeviceRemovable[port / 8] & (1 << (port % 8)))
2398 removable = false;
2399 }
2400
2401 if (removable)
2402 udev->removable = USB_DEVICE_REMOVABLE;
2403 else
2404 udev->removable = USB_DEVICE_FIXED;
Dan Williamsa4204ff2014-05-20 18:08:22 -07002405
Matthew Garrettd35e70d2012-02-03 17:11:55 -05002406}
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07002407
2408/**
2409 * usb_new_device - perform initial device setup (usbcore-internal)
2410 * @udev: newly addressed device (in ADDRESS state)
2411 *
Alan Stern8d8558d2009-12-08 15:50:41 -05002412 * This is called with devices which have been detected but not fully
2413 * enumerated. The device descriptor is available, but not descriptors
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07002414 * for any device configuration. The caller must have locked either
2415 * the parent hub (if udev is a normal device) or else the
2416 * usb_bus_list_lock (if udev is a root hub). The parent's pointer to
2417 * udev has already been installed, but udev is not yet visible through
2418 * sysfs or other filesystem code.
2419 *
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07002420 * This call is synchronous, and may not be used in an interrupt context.
2421 *
2422 * Only the hub driver or root-hub registrar should ever call this.
Yacine Belkadi626f0902013-08-02 20:10:04 +02002423 *
2424 * Return: Whether the device is configured properly or not. Zero if the
2425 * interface was registered with the driver core; else a negative errno
2426 * value.
2427 *
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07002428 */
2429int usb_new_device(struct usb_device *udev)
2430{
2431 int err;
2432
Dan Streetman16985402010-01-06 09:56:53 -05002433 if (udev->parent) {
Dan Streetman16985402010-01-06 09:56:53 -05002434 /* Initialize non-root-hub device wakeup to disabled;
2435 * device (un)configuration controls wakeup capable
2436 * sysfs power/wakeup controls wakeup enabled/disabled
2437 */
2438 device_init_wakeup(&udev->dev, 0);
Dan Streetman16985402010-01-06 09:56:53 -05002439 }
2440
Alan Stern9bbdf1e2010-01-08 12:57:28 -05002441 /* Tell the runtime-PM framework the device is active */
2442 pm_runtime_set_active(&udev->dev);
Alan Sternc08512c2010-11-15 15:57:58 -05002443 pm_runtime_get_noresume(&udev->dev);
Alan Sternfcc4a012010-11-15 15:57:51 -05002444 pm_runtime_use_autosuspend(&udev->dev);
Alan Stern9bbdf1e2010-01-08 12:57:28 -05002445 pm_runtime_enable(&udev->dev);
2446
Alan Sternc08512c2010-11-15 15:57:58 -05002447 /* By default, forbid autosuspend for all devices. It will be
2448 * allowed for hubs during binding.
2449 */
2450 usb_disable_autosuspend(udev);
2451
Alan Stern8d8558d2009-12-08 15:50:41 -05002452 err = usb_enumerate_device(udev); /* Read descriptors */
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07002453 if (err < 0)
2454 goto fail;
Sarah Sharpc6515272009-04-27 19:57:26 -07002455 dev_dbg(&udev->dev, "udev %d, busnum %d, minor = %d\n",
2456 udev->devnum, udev->bus->busnum,
2457 (((udev->bus->busnum-1) * 128) + (udev->devnum-1)));
Kay Sievers9f8b17e2007-03-13 15:59:31 +01002458 /* export the usbdev device-node for libusb */
2459 udev->dev.devt = MKDEV(USB_DEVICE_MAJOR,
2460 (((udev->bus->busnum-1) * 128) + (udev->devnum-1)));
2461
Alan Stern6cd13202008-11-13 15:08:30 -05002462 /* Tell the world! */
2463 announce_device(udev);
Alan Stern195af2c2007-07-16 15:28:19 -04002464
Theodore Ts'ob04b3152012-07-04 11:22:20 -04002465 if (udev->serial)
2466 add_device_randomness(udev->serial, strlen(udev->serial));
2467 if (udev->product)
2468 add_device_randomness(udev->product, strlen(udev->product));
2469 if (udev->manufacturer)
2470 add_device_randomness(udev->manufacturer,
2471 strlen(udev->manufacturer));
2472
Rafael J. Wysocki927bc912010-02-08 19:18:16 +01002473 device_enable_async_suspend(&udev->dev);
Matthew Garrettd35e70d2012-02-03 17:11:55 -05002474
Dan Williamsa4204ff2014-05-20 18:08:22 -07002475 /* check whether the hub or firmware marks this port as non-removable */
Matthew Garrettd35e70d2012-02-03 17:11:55 -05002476 if (udev->parent)
2477 set_usb_port_removable(udev);
2478
Alan Stern782da722006-07-01 22:09:35 -04002479 /* Register the device. The device driver is responsible
Alan Stern3b23dd62008-12-05 14:10:34 -05002480 * for configuring the device and invoking the add-device
2481 * notifier chain (used by usbfs and possibly others).
Alan Stern782da722006-07-01 22:09:35 -04002482 */
Kay Sievers9f8b17e2007-03-13 15:59:31 +01002483 err = device_add(&udev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484 if (err) {
2485 dev_err(&udev->dev, "can't device_add, error %d\n", err);
2486 goto fail;
2487 }
Alan Stern9ad3d6c2005-11-17 17:10:32 -05002488
Lan Tianyufde26382013-01-20 01:53:33 +08002489 /* Create link files between child device and usb port device. */
2490 if (udev->parent) {
Lan Tianyuad493e52013-01-23 04:26:30 +08002491 struct usb_hub *hub = usb_hub_to_struct_hub(udev->parent);
Dan Williamsd5c38342014-05-20 18:08:52 -07002492 int port1 = udev->portnum;
2493 struct usb_port *port_dev = hub->ports[port1 - 1];
Lan Tianyufde26382013-01-20 01:53:33 +08002494
2495 err = sysfs_create_link(&udev->dev.kobj,
2496 &port_dev->dev.kobj, "port");
2497 if (err)
2498 goto fail;
2499
2500 err = sysfs_create_link(&port_dev->dev.kobj,
2501 &udev->dev.kobj, "device");
2502 if (err) {
2503 sysfs_remove_link(&udev->dev.kobj, "port");
2504 goto fail;
2505 }
Lan Tianyu971fcd42013-01-23 04:26:29 +08002506
Dan Williamsd5c38342014-05-20 18:08:52 -07002507 if (!test_and_set_bit(port1, hub->child_usage_bits))
2508 pm_runtime_get_sync(&port_dev->dev);
Lan Tianyufde26382013-01-20 01:53:33 +08002509 }
2510
Alan Stern3b23dd62008-12-05 14:10:34 -05002511 (void) usb_create_ep_devs(&udev->dev, &udev->ep0, udev);
Alan Sternc08512c2010-11-15 15:57:58 -05002512 usb_mark_last_busy(udev);
2513 pm_runtime_put_sync_autosuspend(&udev->dev);
Greg Kroah-Hartmanc0664752006-08-11 01:55:12 -07002514 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515
2516fail:
2517 usb_set_device_state(udev, USB_STATE_NOTATTACHED);
Alan Stern9bbdf1e2010-01-08 12:57:28 -05002518 pm_runtime_disable(&udev->dev);
2519 pm_runtime_set_suspended(&udev->dev);
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07002520 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521}
2522
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002523
2524/**
Randy Dunlapfd39c862007-10-15 17:30:02 -07002525 * usb_deauthorize_device - deauthorize a device (usbcore-internal)
2526 * @usb_dev: USB device
2527 *
2528 * Move the USB device to a very basic state where interfaces are disabled
2529 * and the device is in fact unconfigured and unusable.
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002530 *
2531 * We share a lock (that we have) with device_del(), so we need to
2532 * defer its call.
Yacine Belkadi626f0902013-08-02 20:10:04 +02002533 *
2534 * Return: 0.
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002535 */
2536int usb_deauthorize_device(struct usb_device *usb_dev)
2537{
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002538 usb_lock_device(usb_dev);
2539 if (usb_dev->authorized == 0)
2540 goto out_unauthorized;
Alan Sternda307122009-12-08 15:54:44 -05002541
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002542 usb_dev->authorized = 0;
2543 usb_set_configuration(usb_dev, -1);
Alan Sternda307122009-12-08 15:54:44 -05002544
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002545out_unauthorized:
2546 usb_unlock_device(usb_dev);
2547 return 0;
2548}
2549
2550
2551int usb_authorize_device(struct usb_device *usb_dev)
2552{
2553 int result = 0, c;
Alan Sternda307122009-12-08 15:54:44 -05002554
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002555 usb_lock_device(usb_dev);
2556 if (usb_dev->authorized == 1)
2557 goto out_authorized;
Alan Sternda307122009-12-08 15:54:44 -05002558
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002559 result = usb_autoresume_device(usb_dev);
2560 if (result < 0) {
2561 dev_err(&usb_dev->dev,
2562 "can't autoresume for authorization: %d\n", result);
2563 goto error_autoresume;
2564 }
Josef Gajduseke50a3222014-10-09 15:47:54 +02002565
2566 if (usb_dev->wusb) {
2567 result = usb_get_device_descriptor(usb_dev, sizeof(usb_dev->descriptor));
2568 if (result < 0) {
2569 dev_err(&usb_dev->dev, "can't re-read device descriptor for "
2570 "authorization: %d\n", result);
2571 goto error_device_descriptor;
2572 }
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002573 }
Alan Sternda307122009-12-08 15:54:44 -05002574
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002575 usb_dev->authorized = 1;
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002576 /* Choose and set the configuration. This registers the interfaces
2577 * with the driver core and lets interface drivers bind to them.
2578 */
Greg Kroah-Hartmanb5ea0602007-08-02 22:44:27 -06002579 c = usb_choose_configuration(usb_dev);
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002580 if (c >= 0) {
2581 result = usb_set_configuration(usb_dev, c);
2582 if (result) {
2583 dev_err(&usb_dev->dev,
2584 "can't set config #%d, error %d\n", c, result);
2585 /* This need not be fatal. The user can try to
2586 * set other configurations. */
2587 }
2588 }
2589 dev_info(&usb_dev->dev, "authorized to connect\n");
Alan Sternda307122009-12-08 15:54:44 -05002590
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002591error_device_descriptor:
Alan Sternda307122009-12-08 15:54:44 -05002592 usb_autosuspend_device(usb_dev);
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002593error_autoresume:
2594out_authorized:
Matthias Beyer781b2132013-10-10 23:41:29 +02002595 usb_unlock_device(usb_dev); /* complements locktree */
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002596 return result;
2597}
2598
2599
Inaky Perez-Gonzalez0165de02006-08-25 19:35:29 -07002600/* Returns 1 if @hub is a WUSB root hub, 0 otherwise */
2601static unsigned hub_is_wusb(struct usb_hub *hub)
2602{
2603 struct usb_hcd *hcd;
2604 if (hub->hdev->parent != NULL) /* not a root hub? */
2605 return 0;
2606 hcd = container_of(hub->hdev->bus, struct usb_hcd, self);
2607 return hcd->wireless;
2608}
2609
2610
Linus Torvalds1da177e2005-04-16 15:20:36 -07002611#define PORT_RESET_TRIES 5
2612#define SET_ADDRESS_TRIES 2
2613#define GET_DESCRIPTOR_TRIES 2
2614#define SET_CONFIG_TRIES (2 * (use_both_schemes + 1))
Rusty Russell90ab5ee2012-01-13 09:32:20 +10302615#define USE_NEW_SCHEME(i) ((i) / 2 == (int)old_scheme_first)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002616
2617#define HUB_ROOT_RESET_TIME 50 /* times are in msec */
2618#define HUB_SHORT_RESET_TIME 10
Andiry Xu75d7cf72011-09-13 16:41:11 -07002619#define HUB_BH_RESET_TIME 50
Linus Torvalds1da177e2005-04-16 15:20:36 -07002620#define HUB_LONG_RESET_TIME 200
Sarah Sharp77c7f072012-11-14 17:16:52 -08002621#define HUB_RESET_TIMEOUT 800
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622
Dan Williams48fc7db2013-12-05 17:07:27 -08002623/*
2624 * "New scheme" enumeration causes an extra state transition to be
2625 * exposed to an xhci host and causes USB3 devices to receive control
2626 * commands in the default state. This has been seen to cause
2627 * enumeration failures, so disable this enumeration scheme for USB3
2628 * devices.
2629 */
2630static bool use_new_scheme(struct usb_device *udev, int retry)
2631{
2632 if (udev->speed == USB_SPEED_SUPER)
2633 return false;
2634
2635 return USE_NEW_SCHEME(retry);
2636}
2637
Rahul Bedarkar025d4432014-01-04 11:24:41 +05302638/* Is a USB 3.0 port in the Inactive or Compliance Mode state?
Stanislaw Ledwon8bea2bd2012-06-18 15:20:00 +02002639 * Port worm reset is required to recover
2640 */
Dan Williams3cd12f92014-05-29 12:58:46 -07002641static bool hub_port_warm_reset_required(struct usb_hub *hub, int port1,
2642 u16 portstatus)
Sarah Sharp10d674a2011-09-14 14:24:52 -07002643{
Dan Williams3cd12f92014-05-29 12:58:46 -07002644 u16 link_state;
2645
2646 if (!hub_is_superspeed(hub->hdev))
2647 return false;
2648
2649 if (test_bit(port1, hub->warm_reset_bits))
2650 return true;
2651
2652 link_state = portstatus & USB_PORT_STAT_LINK_STATE;
2653 return link_state == USB_SS_PORT_LS_SS_INACTIVE
2654 || link_state == USB_SS_PORT_LS_COMP_MOD;
Sarah Sharp10d674a2011-09-14 14:24:52 -07002655}
2656
Linus Torvalds1da177e2005-04-16 15:20:36 -07002657static int hub_port_wait_reset(struct usb_hub *hub, int port1,
Andiry Xu75d7cf72011-09-13 16:41:11 -07002658 struct usb_device *udev, unsigned int delay, bool warm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002659{
2660 int delay_time, ret;
2661 u16 portstatus;
2662 u16 portchange;
2663
2664 for (delay_time = 0;
2665 delay_time < HUB_RESET_TIMEOUT;
2666 delay_time += delay) {
2667 /* wait to give the device a chance to reset */
2668 msleep(delay);
2669
2670 /* read and decode port status */
2671 ret = hub_port_status(hub, port1, &portstatus, &portchange);
2672 if (ret < 0)
2673 return ret;
2674
Sarah Sharp4f434472012-11-15 14:58:04 -08002675 /* The port state is unknown until the reset completes. */
Sarah Sharp470f0be2012-12-11 10:14:03 -08002676 if (!(portstatus & USB_PORT_STAT_RESET))
2677 break;
Sarah Sharp4f434472012-11-15 14:58:04 -08002678
Linus Torvalds1da177e2005-04-16 15:20:36 -07002679 /* switch to the long delay after two short delay failures */
2680 if (delay_time >= 2 * HUB_SHORT_RESET_TIME)
2681 delay = HUB_LONG_RESET_TIME;
2682
Dan Williamsd99f6b42014-05-20 18:08:17 -07002683 dev_dbg(&hub->ports[port1 - 1]->dev,
2684 "not %sreset yet, waiting %dms\n",
2685 warm ? "warm " : "", delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686 }
2687
Sarah Sharp470f0be2012-12-11 10:14:03 -08002688 if ((portstatus & USB_PORT_STAT_RESET))
2689 return -EBUSY;
2690
Dan Williams3cd12f92014-05-29 12:58:46 -07002691 if (hub_port_warm_reset_required(hub, port1, portstatus))
Sarah Sharp470f0be2012-12-11 10:14:03 -08002692 return -ENOTCONN;
2693
2694 /* Device went away? */
2695 if (!(portstatus & USB_PORT_STAT_CONNECTION))
2696 return -ENOTCONN;
2697
2698 /* bomb out completely if the connection bounced. A USB 3.0
2699 * connection may bounce if multiple warm resets were issued,
2700 * but the device may have successfully re-connected. Ignore it.
2701 */
2702 if (!hub_is_superspeed(hub->hdev) &&
2703 (portchange & USB_PORT_STAT_C_CONNECTION))
2704 return -ENOTCONN;
2705
2706 if (!(portstatus & USB_PORT_STAT_ENABLE))
2707 return -EBUSY;
2708
2709 if (!udev)
2710 return 0;
2711
2712 if (hub_is_wusb(hub))
2713 udev->speed = USB_SPEED_WIRELESS;
2714 else if (hub_is_superspeed(hub->hdev))
2715 udev->speed = USB_SPEED_SUPER;
2716 else if (portstatus & USB_PORT_STAT_HIGH_SPEED)
2717 udev->speed = USB_SPEED_HIGH;
2718 else if (portstatus & USB_PORT_STAT_LOW_SPEED)
2719 udev->speed = USB_SPEED_LOW;
2720 else
2721 udev->speed = USB_SPEED_FULL;
2722 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002723}
2724
Andiry Xu75d7cf72011-09-13 16:41:11 -07002725/* Handle port reset and port warm(BH) reset (for USB3 protocol ports) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002726static int hub_port_reset(struct usb_hub *hub, int port1,
Andiry Xu75d7cf72011-09-13 16:41:11 -07002727 struct usb_device *udev, unsigned int delay, bool warm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002728{
2729 int i, status;
Sarah Sharpa24a6072012-11-01 11:20:44 -07002730 u16 portchange, portstatus;
Dan Williamsd99f6b42014-05-20 18:08:17 -07002731 struct usb_port *port_dev = hub->ports[port1 - 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002732
Sarah Sharp0fe51aa2012-11-01 11:20:44 -07002733 if (!hub_is_superspeed(hub->hdev)) {
2734 if (warm) {
Andiry Xu75d7cf72011-09-13 16:41:11 -07002735 dev_err(hub->intfdev, "only USB3 hub support "
2736 "warm reset\n");
2737 return -EINVAL;
2738 }
Sarah Sharp0fe51aa2012-11-01 11:20:44 -07002739 /* Block EHCI CF initialization during the port reset.
2740 * Some companion controllers don't like it when they mix.
2741 */
2742 down_read(&ehci_cf_port_reset_rwsem);
Sarah Sharpd3b9d7a2012-11-01 11:20:44 -07002743 } else if (!warm) {
2744 /*
2745 * If the caller hasn't explicitly requested a warm reset,
2746 * double check and see if one is needed.
2747 */
Robert Schlabbachfb6d1f72015-05-26 00:27:30 +02002748 if (hub_port_status(hub, port1, &portstatus, &portchange) == 0)
2749 if (hub_port_warm_reset_required(hub, port1,
2750 portstatus))
2751 warm = true;
Andiry Xu75d7cf72011-09-13 16:41:11 -07002752 }
Dan Williams3cd12f92014-05-29 12:58:46 -07002753 clear_bit(port1, hub->warm_reset_bits);
Alan Stern32fe0192007-10-10 16:27:07 -04002754
Linus Torvalds1da177e2005-04-16 15:20:36 -07002755 /* Reset the port */
2756 for (i = 0; i < PORT_RESET_TRIES; i++) {
Andiry Xu75d7cf72011-09-13 16:41:11 -07002757 status = set_port_feature(hub->hdev, port1, (warm ?
2758 USB_PORT_FEAT_BH_PORT_RESET :
2759 USB_PORT_FEAT_RESET));
Alan Sterne9e88fb2013-03-27 16:14:01 -04002760 if (status == -ENODEV) {
2761 ; /* The hub is gone */
2762 } else if (status) {
Dan Williamsd99f6b42014-05-20 18:08:17 -07002763 dev_err(&port_dev->dev,
2764 "cannot %sreset (err = %d)\n",
2765 warm ? "warm " : "", status);
Andiry Xu75d7cf72011-09-13 16:41:11 -07002766 } else {
2767 status = hub_port_wait_reset(hub, port1, udev, delay,
2768 warm);
Alan Sterne9e88fb2013-03-27 16:14:01 -04002769 if (status && status != -ENOTCONN && status != -ENODEV)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002770 dev_dbg(hub->intfdev,
2771 "port_wait_reset: err = %d\n",
2772 status);
2773 }
2774
Sarah Sharpa24a6072012-11-01 11:20:44 -07002775 /* Check for disconnect or reset */
Andiry Xu75d7cf72011-09-13 16:41:11 -07002776 if (status == 0 || status == -ENOTCONN || status == -ENODEV) {
Robert Schlabbachfb6d1f72015-05-26 00:27:30 +02002777 usb_clear_port_feature(hub->hdev, port1,
2778 USB_PORT_FEAT_C_RESET);
Sarah Sharpa24a6072012-11-01 11:20:44 -07002779
2780 if (!hub_is_superspeed(hub->hdev))
2781 goto done;
2782
Robert Schlabbachfb6d1f72015-05-26 00:27:30 +02002783 usb_clear_port_feature(hub->hdev, port1,
2784 USB_PORT_FEAT_C_BH_PORT_RESET);
2785 usb_clear_port_feature(hub->hdev, port1,
2786 USB_PORT_FEAT_C_PORT_LINK_STATE);
2787 usb_clear_port_feature(hub->hdev, port1,
2788 USB_PORT_FEAT_C_CONNECTION);
2789
Sarah Sharpa24a6072012-11-01 11:20:44 -07002790 /*
2791 * If a USB 3.0 device migrates from reset to an error
2792 * state, re-issue the warm reset.
2793 */
2794 if (hub_port_status(hub, port1,
2795 &portstatus, &portchange) < 0)
2796 goto done;
2797
Dan Williams3cd12f92014-05-29 12:58:46 -07002798 if (!hub_port_warm_reset_required(hub, port1,
2799 portstatus))
Sarah Sharpa24a6072012-11-01 11:20:44 -07002800 goto done;
2801
2802 /*
2803 * If the port is in SS.Inactive or Compliance Mode, the
2804 * hot or warm reset failed. Try another warm reset.
2805 */
2806 if (!warm) {
Dan Williamsd99f6b42014-05-20 18:08:17 -07002807 dev_dbg(&port_dev->dev,
2808 "hot reset failed, warm reset\n");
Sarah Sharpa24a6072012-11-01 11:20:44 -07002809 warm = true;
2810 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002811 }
2812
Dan Williamsd99f6b42014-05-20 18:08:17 -07002813 dev_dbg(&port_dev->dev,
2814 "not enabled, trying %sreset again...\n",
2815 warm ? "warm " : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002816 delay = HUB_LONG_RESET_TIME;
2817 }
2818
Dan Williamsd99f6b42014-05-20 18:08:17 -07002819 dev_err(&port_dev->dev, "Cannot enable. Maybe the USB cable is bad?\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002820
Andiry Xu75d7cf72011-09-13 16:41:11 -07002821done:
Robert Schlabbachfb6d1f72015-05-26 00:27:30 +02002822 if (status == 0) {
2823 /* TRSTRCY = 10 ms; plus some extra */
2824 msleep(10 + 40);
2825 if (udev) {
2826 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
2827
2828 update_devnum(udev, 0);
2829 /* The xHC may think the device is already reset,
2830 * so ignore the status.
2831 */
2832 if (hcd->driver->reset_device)
2833 hcd->driver->reset_device(hcd, udev);
2834
2835 usb_set_device_state(udev, USB_STATE_DEFAULT);
2836 }
2837 } else {
2838 if (udev)
2839 usb_set_device_state(udev, USB_STATE_NOTATTACHED);
2840 }
2841
Sarah Sharp0fe51aa2012-11-01 11:20:44 -07002842 if (!hub_is_superspeed(hub->hdev))
Andiry Xu75d7cf72011-09-13 16:41:11 -07002843 up_read(&ehci_cf_port_reset_rwsem);
2844
Linus Torvalds1da177e2005-04-16 15:20:36 -07002845 return status;
2846}
2847
Andiry Xu0ed9a572011-04-27 18:07:43 +08002848/* Check if a port is power on */
2849static int port_is_power_on(struct usb_hub *hub, unsigned portstatus)
2850{
2851 int ret = 0;
2852
2853 if (hub_is_superspeed(hub->hdev)) {
2854 if (portstatus & USB_SS_PORT_STAT_POWER)
2855 ret = 1;
2856 } else {
2857 if (portstatus & USB_PORT_STAT_POWER)
2858 ret = 1;
2859 }
2860
2861 return ret;
2862}
2863
Dan Williams5c79a1e2014-05-20 18:09:26 -07002864static void usb_lock_port(struct usb_port *port_dev)
2865 __acquires(&port_dev->status_lock)
2866{
2867 mutex_lock(&port_dev->status_lock);
2868 __acquire(&port_dev->status_lock);
2869}
2870
2871static void usb_unlock_port(struct usb_port *port_dev)
2872 __releases(&port_dev->status_lock)
2873{
2874 mutex_unlock(&port_dev->status_lock);
2875 __release(&port_dev->status_lock);
2876}
2877
Alan Sternd388dab2006-07-01 22:14:24 -04002878#ifdef CONFIG_PM
Linus Torvalds1da177e2005-04-16 15:20:36 -07002879
Andiry Xu0ed9a572011-04-27 18:07:43 +08002880/* Check if a port is suspended(USB2.0 port) or in U3 state(USB3.0 port) */
2881static int port_is_suspended(struct usb_hub *hub, unsigned portstatus)
2882{
2883 int ret = 0;
2884
2885 if (hub_is_superspeed(hub->hdev)) {
2886 if ((portstatus & USB_PORT_STAT_LINK_STATE)
2887 == USB_SS_PORT_LS_U3)
2888 ret = 1;
2889 } else {
2890 if (portstatus & USB_PORT_STAT_SUSPEND)
2891 ret = 1;
2892 }
2893
2894 return ret;
2895}
Alan Sternb01b03f2008-04-28 11:06:11 -04002896
2897/* Determine whether the device on a port is ready for a normal resume,
2898 * is ready for a reset-resume, or should be disconnected.
2899 */
2900static int check_port_resume_type(struct usb_device *udev,
2901 struct usb_hub *hub, int port1,
Julius Werner7fa40912015-01-27 13:20:12 -08002902 int status, u16 portchange, u16 portstatus)
Alan Sternb01b03f2008-04-28 11:06:11 -04002903{
Dan Williamsd99f6b42014-05-20 18:08:17 -07002904 struct usb_port *port_dev = hub->ports[port1 - 1];
Julius Werner7fa40912015-01-27 13:20:12 -08002905 int retries = 3;
Dan Williamsd99f6b42014-05-20 18:08:17 -07002906
Julius Werner7fa40912015-01-27 13:20:12 -08002907 retry:
Dan Williams3cd12f92014-05-29 12:58:46 -07002908 /* Is a warm reset needed to recover the connection? */
2909 if (status == 0 && udev->reset_resume
2910 && hub_port_warm_reset_required(hub, port1, portstatus)) {
2911 /* pass */;
2912 }
Alan Sternb01b03f2008-04-28 11:06:11 -04002913 /* Is the device still present? */
Dan Williams3cd12f92014-05-29 12:58:46 -07002914 else if (status || port_is_suspended(hub, portstatus) ||
Julius Werner7fa40912015-01-27 13:20:12 -08002915 !port_is_power_on(hub, portstatus)) {
Alan Sternb01b03f2008-04-28 11:06:11 -04002916 if (status >= 0)
2917 status = -ENODEV;
Julius Werner7fa40912015-01-27 13:20:12 -08002918 } else if (!(portstatus & USB_PORT_STAT_CONNECTION)) {
2919 if (retries--) {
2920 usleep_range(200, 300);
2921 status = hub_port_status(hub, port1, &portstatus,
2922 &portchange);
2923 goto retry;
2924 }
2925 status = -ENODEV;
Alan Sternb01b03f2008-04-28 11:06:11 -04002926 }
2927
Alan Stern86c57ed2008-06-30 11:14:43 -04002928 /* Can't do a normal resume if the port isn't enabled,
2929 * so try a reset-resume instead.
2930 */
2931 else if (!(portstatus & USB_PORT_STAT_ENABLE) && !udev->reset_resume) {
2932 if (udev->persist_enabled)
2933 udev->reset_resume = 1;
2934 else
2935 status = -ENODEV;
2936 }
Alan Sternb01b03f2008-04-28 11:06:11 -04002937
2938 if (status) {
Dan Williamsd99f6b42014-05-20 18:08:17 -07002939 dev_dbg(&port_dev->dev, "status %04x.%04x after resume, %d\n",
2940 portchange, portstatus, status);
Alan Sternb01b03f2008-04-28 11:06:11 -04002941 } else if (udev->reset_resume) {
2942
2943 /* Late port handoff can set status-change bits */
2944 if (portchange & USB_PORT_STAT_C_CONNECTION)
Lan Tianyuad493e52013-01-23 04:26:30 +08002945 usb_clear_port_feature(hub->hdev, port1,
Alan Sternb01b03f2008-04-28 11:06:11 -04002946 USB_PORT_FEAT_C_CONNECTION);
2947 if (portchange & USB_PORT_STAT_C_ENABLE)
Lan Tianyuad493e52013-01-23 04:26:30 +08002948 usb_clear_port_feature(hub->hdev, port1,
Alan Sternb01b03f2008-04-28 11:06:11 -04002949 USB_PORT_FEAT_C_ENABLE);
2950 }
2951
2952 return status;
2953}
2954
Sarah Sharpf74631e2012-06-25 12:08:08 -07002955int usb_disable_ltm(struct usb_device *udev)
2956{
2957 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
2958
2959 /* Check if the roothub and device supports LTM. */
2960 if (!usb_device_supports_ltm(hcd->self.root_hub) ||
2961 !usb_device_supports_ltm(udev))
2962 return 0;
2963
2964 /* Clear Feature LTM Enable can only be sent if the device is
2965 * configured.
2966 */
2967 if (!udev->actconfig)
2968 return 0;
2969
2970 return usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
2971 USB_REQ_CLEAR_FEATURE, USB_RECIP_DEVICE,
2972 USB_DEVICE_LTM_ENABLE, 0, NULL, 0,
2973 USB_CTRL_SET_TIMEOUT);
2974}
2975EXPORT_SYMBOL_GPL(usb_disable_ltm);
2976
2977void usb_enable_ltm(struct usb_device *udev)
2978{
2979 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
2980
2981 /* Check if the roothub and device supports LTM. */
2982 if (!usb_device_supports_ltm(hcd->self.root_hub) ||
2983 !usb_device_supports_ltm(udev))
2984 return;
2985
2986 /* Set Feature LTM Enable can only be sent if the device is
2987 * configured.
2988 */
2989 if (!udev->actconfig)
2990 return;
2991
2992 usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
2993 USB_REQ_SET_FEATURE, USB_RECIP_DEVICE,
2994 USB_DEVICE_LTM_ENABLE, 0, NULL, 0,
2995 USB_CTRL_SET_TIMEOUT);
2996}
2997EXPORT_SYMBOL_GPL(usb_enable_ltm);
2998
Lan Tianyu54a3ac02013-01-24 10:31:28 +08002999/*
Alan Stern28e86162013-07-30 15:37:33 -04003000 * usb_enable_remote_wakeup - enable remote wakeup for a device
Lan Tianyu54a3ac02013-01-24 10:31:28 +08003001 * @udev: target device
3002 *
Alan Stern28e86162013-07-30 15:37:33 -04003003 * For USB-2 devices: Set the device's remote wakeup feature.
3004 *
3005 * For USB-3 devices: Assume there's only one function on the device and
3006 * enable remote wake for the first interface. FIXME if the interface
3007 * association descriptor shows there's more than one function.
Lan Tianyu54a3ac02013-01-24 10:31:28 +08003008 */
Alan Stern28e86162013-07-30 15:37:33 -04003009static int usb_enable_remote_wakeup(struct usb_device *udev)
Lan Tianyu54a3ac02013-01-24 10:31:28 +08003010{
Alan Stern28e86162013-07-30 15:37:33 -04003011 if (udev->speed < USB_SPEED_SUPER)
3012 return usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
3013 USB_REQ_SET_FEATURE, USB_RECIP_DEVICE,
3014 USB_DEVICE_REMOTE_WAKEUP, 0, NULL, 0,
3015 USB_CTRL_SET_TIMEOUT);
3016 else
3017 return usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
3018 USB_REQ_SET_FEATURE, USB_RECIP_INTERFACE,
3019 USB_INTRF_FUNC_SUSPEND,
3020 USB_INTRF_FUNC_SUSPEND_RW |
3021 USB_INTRF_FUNC_SUSPEND_LP,
3022 NULL, 0, USB_CTRL_SET_TIMEOUT);
3023}
3024
3025/*
3026 * usb_disable_remote_wakeup - disable remote wakeup for a device
3027 * @udev: target device
3028 *
3029 * For USB-2 devices: Clear the device's remote wakeup feature.
3030 *
3031 * For USB-3 devices: Assume there's only one function on the device and
3032 * disable remote wake for the first interface. FIXME if the interface
3033 * association descriptor shows there's more than one function.
3034 */
3035static int usb_disable_remote_wakeup(struct usb_device *udev)
3036{
3037 if (udev->speed < USB_SPEED_SUPER)
3038 return usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
3039 USB_REQ_CLEAR_FEATURE, USB_RECIP_DEVICE,
3040 USB_DEVICE_REMOTE_WAKEUP, 0, NULL, 0,
3041 USB_CTRL_SET_TIMEOUT);
3042 else
3043 return usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
Lan Tianyu54a3ac02013-01-24 10:31:28 +08003044 USB_REQ_CLEAR_FEATURE, USB_RECIP_INTERFACE,
3045 USB_INTRF_FUNC_SUSPEND, 0, NULL, 0,
3046 USB_CTRL_SET_TIMEOUT);
3047}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003048
Alan Sterne583d9d2013-07-11 14:58:04 -04003049/* Count of wakeup-enabled devices at or below udev */
3050static unsigned wakeup_enabled_descendants(struct usb_device *udev)
3051{
3052 struct usb_hub *hub = usb_hub_to_struct_hub(udev);
3053
3054 return udev->do_remote_wakeup +
3055 (hub ? hub->wakeup_enabled_descendants : 0);
3056}
3057
Linus Torvalds1da177e2005-04-16 15:20:36 -07003058/*
Alan Stern140d8f62006-07-01 22:07:21 -04003059 * usb_port_suspend - suspend a usb device's upstream port
Alan Stern624d6c02007-05-30 15:35:16 -04003060 * @udev: device that's no longer in active use, not a root hub
David Brownell5edbfb72005-09-22 22:45:26 -07003061 * Context: must be able to sleep; device not locked; pm locks held
Linus Torvalds1da177e2005-04-16 15:20:36 -07003062 *
3063 * Suspends a USB device that isn't in active use, conserving power.
3064 * Devices may wake out of a suspend, if anything important happens,
3065 * using the remote wakeup mechanism. They may also be taken out of
Alan Stern140d8f62006-07-01 22:07:21 -04003066 * suspend by the host, using usb_port_resume(). It's also routine
Linus Torvalds1da177e2005-04-16 15:20:36 -07003067 * to disconnect devices while they are suspended.
3068 *
David Brownell390a8c32005-09-13 19:57:27 -07003069 * This only affects the USB hardware for a device; its interfaces
3070 * (and, for hubs, child devices) must already have been suspended.
3071 *
Alan Stern624d6c02007-05-30 15:35:16 -04003072 * Selective port suspend reduces power; most suspended devices draw
3073 * less than 500 uA. It's also used in OTG, along with remote wakeup.
3074 * All devices below the suspended port are also suspended.
3075 *
3076 * Devices leave suspend state when the host wakes them up. Some devices
3077 * also support "remote wakeup", where the device can activate the USB
3078 * tree above them to deliver data, such as a keypress or packet. In
3079 * some cases, this wakes the USB host.
3080 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003081 * Suspending OTG devices may trigger HNP, if that's been enabled
3082 * between a pair of dual-role devices. That will change roles, such
3083 * as from A-Host to A-Peripheral or from B-Host back to B-Peripheral.
3084 *
Alan Stern4956ecc2007-05-30 16:51:28 -04003085 * Devices on USB hub ports have only one "suspend" state, corresponding
3086 * to ACPI D2, "may cause the device to lose some context".
3087 * State transitions include:
3088 *
3089 * - suspend, resume ... when the VBUS power link stays live
3090 * - suspend, disconnect ... VBUS lost
3091 *
3092 * Once VBUS drop breaks the circuit, the port it's using has to go through
3093 * normal re-enumeration procedures, starting with enabling VBUS power.
3094 * Other than re-initializing the hub (plug/unplug, except for root hubs),
Petr Mladek37ebb542014-09-19 17:32:23 +02003095 * Linux (2.6) currently has NO mechanisms to initiate that: no hub_wq
Alan Stern4956ecc2007-05-30 16:51:28 -04003096 * timer, no SRP, no requests through sysfs.
3097 *
Alan Sterne583d9d2013-07-11 14:58:04 -04003098 * If Runtime PM isn't enabled or used, non-SuperSpeed devices may not get
3099 * suspended until their bus goes into global suspend (i.e., the root
Alan Stern0aa28322013-03-27 16:14:19 -04003100 * hub is suspended). Nevertheless, we change @udev->state to
3101 * USB_STATE_SUSPENDED as this is the device's "logical" state. The actual
3102 * upstream port setting is stored in @udev->port_is_suspended.
Alan Stern4956ecc2007-05-30 16:51:28 -04003103 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003104 * Returns 0 on success, else negative errno.
3105 */
Alan Stern65bfd292008-11-25 16:39:18 -05003106int usb_port_suspend(struct usb_device *udev, pm_message_t msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003107{
Lan Tianyuad493e52013-01-23 04:26:30 +08003108 struct usb_hub *hub = usb_hub_to_struct_hub(udev->parent);
3109 struct usb_port *port_dev = hub->ports[udev->portnum - 1];
Alan Stern624d6c02007-05-30 15:35:16 -04003110 int port1 = udev->portnum;
3111 int status;
Alan Stern0aa28322013-03-27 16:14:19 -04003112 bool really_suspend = true;
Alan Stern4956ecc2007-05-30 16:51:28 -04003113
Dan Williams5c79a1e2014-05-20 18:09:26 -07003114 usb_lock_port(port_dev);
3115
Alan Stern624d6c02007-05-30 15:35:16 -04003116 /* enable remote wakeup when appropriate; this lets the device
3117 * wake up the upstream hub (including maybe the root hub).
3118 *
3119 * NOTE: OTG devices may issue remote wakeup (or SRP) even when
3120 * we don't explicitly enable it here.
3121 */
3122 if (udev->do_remote_wakeup) {
Alan Stern28e86162013-07-30 15:37:33 -04003123 status = usb_enable_remote_wakeup(udev);
Oliver Neukum0c487202009-10-19 13:19:41 +02003124 if (status) {
Alan Stern624d6c02007-05-30 15:35:16 -04003125 dev_dbg(&udev->dev, "won't remote wakeup, status %d\n",
3126 status);
Oliver Neukum0c487202009-10-19 13:19:41 +02003127 /* bail if autosuspend is requested */
Alan Stern5b1b0b82011-08-19 23:49:48 +02003128 if (PMSG_IS_AUTO(msg))
Alan Stern4fae6f02013-07-30 15:39:02 -04003129 goto err_wakeup;
Oliver Neukum0c487202009-10-19 13:19:41 +02003130 }
Alan Stern624d6c02007-05-30 15:35:16 -04003131 }
3132
Andiry Xu65580b432011-09-23 14:19:52 -07003133 /* disable USB2 hardware LPM */
3134 if (udev->usb2_hw_lpm_enabled == 1)
3135 usb_set_usb2_hardware_lpm(udev, 0);
3136
Sarah Sharpf74631e2012-06-25 12:08:08 -07003137 if (usb_disable_ltm(udev)) {
Alan Stern4fae6f02013-07-30 15:39:02 -04003138 dev_err(&udev->dev, "Failed to disable LTM before suspend\n.");
3139 status = -ENOMEM;
3140 if (PMSG_IS_AUTO(msg))
3141 goto err_ltm;
Sarah Sharpf74631e2012-06-25 12:08:08 -07003142 }
Sarah Sharp83060952012-05-02 14:25:52 -07003143 if (usb_unlocked_disable_lpm(udev)) {
Alan Stern4fae6f02013-07-30 15:39:02 -04003144 dev_err(&udev->dev, "Failed to disable LPM before suspend\n.");
3145 status = -ENOMEM;
3146 if (PMSG_IS_AUTO(msg))
3147 goto err_lpm3;
Sarah Sharp83060952012-05-02 14:25:52 -07003148 }
3149
Alan Stern624d6c02007-05-30 15:35:16 -04003150 /* see 7.1.7.6 */
Andiry Xua7114232011-04-27 18:07:50 +08003151 if (hub_is_superspeed(hub->hdev))
Sarah Sharpc2f60db2012-12-10 15:43:08 -08003152 status = hub_set_port_link_state(hub, port1, USB_SS_PORT_LS_U3);
Alan Sterne583d9d2013-07-11 14:58:04 -04003153
Alan Stern0aa28322013-03-27 16:14:19 -04003154 /*
3155 * For system suspend, we do not need to enable the suspend feature
3156 * on individual USB-2 ports. The devices will automatically go
3157 * into suspend a few ms after the root hub stops sending packets.
3158 * The USB 2.0 spec calls this "global suspend".
Alan Sterne583d9d2013-07-11 14:58:04 -04003159 *
3160 * However, many USB hubs have a bug: They don't relay wakeup requests
3161 * from a downstream port if the port's suspend feature isn't on.
3162 * Therefore we will turn on the suspend feature if udev or any of its
3163 * descendants is enabled for remote wakeup.
Alan Stern0aa28322013-03-27 16:14:19 -04003164 */
Alan Sterne583d9d2013-07-11 14:58:04 -04003165 else if (PMSG_IS_AUTO(msg) || wakeup_enabled_descendants(udev) > 0)
3166 status = set_port_feature(hub->hdev, port1,
3167 USB_PORT_FEAT_SUSPEND);
Alan Stern0aa28322013-03-27 16:14:19 -04003168 else {
3169 really_suspend = false;
3170 status = 0;
3171 }
Alan Stern624d6c02007-05-30 15:35:16 -04003172 if (status) {
Dan Williamsd99f6b42014-05-20 18:08:17 -07003173 dev_dbg(&port_dev->dev, "can't suspend, status %d\n", status);
Alan Sterncbb33002011-06-15 16:29:16 -04003174
Alan Stern4fae6f02013-07-30 15:39:02 -04003175 /* Try to enable USB3 LPM and LTM again */
3176 usb_unlocked_enable_lpm(udev);
3177 err_lpm3:
3178 usb_enable_ltm(udev);
3179 err_ltm:
Andiry Xuc3e751e2012-05-05 00:50:10 +08003180 /* Try to enable USB2 hardware LPM again */
3181 if (udev->usb2_hw_lpm_capable == 1)
3182 usb_set_usb2_hardware_lpm(udev, 1);
3183
Alan Stern4fae6f02013-07-30 15:39:02 -04003184 if (udev->do_remote_wakeup)
3185 (void) usb_disable_remote_wakeup(udev);
3186 err_wakeup:
Sarah Sharp83060952012-05-02 14:25:52 -07003187
Alan Sterncbb33002011-06-15 16:29:16 -04003188 /* System sleep transitions should never fail */
Alan Stern5b1b0b82011-08-19 23:49:48 +02003189 if (!PMSG_IS_AUTO(msg))
Alan Sterncbb33002011-06-15 16:29:16 -04003190 status = 0;
Alan Stern624d6c02007-05-30 15:35:16 -04003191 } else {
Alan Stern30b1a7a2011-09-27 21:54:22 +02003192 dev_dbg(&udev->dev, "usb %ssuspend, wakeup %d\n",
3193 (PMSG_IS_AUTO(msg) ? "auto-" : ""),
3194 udev->do_remote_wakeup);
Alan Stern0aa28322013-03-27 16:14:19 -04003195 if (really_suspend) {
3196 udev->port_is_suspended = 1;
Alan Sterne583d9d2013-07-11 14:58:04 -04003197
3198 /* device has up to 10 msec to fully suspend */
Alan Stern0aa28322013-03-27 16:14:19 -04003199 msleep(10);
3200 }
Alan Sterne583d9d2013-07-11 14:58:04 -04003201 usb_set_device_state(udev, USB_STATE_SUSPENDED);
Alan Stern624d6c02007-05-30 15:35:16 -04003202 }
Lan Tianyuad493e52013-01-23 04:26:30 +08003203
Dan Williamsd5c38342014-05-20 18:08:52 -07003204 if (status == 0 && !udev->do_remote_wakeup && udev->persist_enabled
3205 && test_and_clear_bit(port1, hub->child_usage_bits))
Lan Tianyu98a4f1f2013-07-03 22:17:54 +08003206 pm_runtime_put_sync(&port_dev->dev);
Lan Tianyuad493e52013-01-23 04:26:30 +08003207
Alan Sternc08512c2010-11-15 15:57:58 -05003208 usb_mark_last_busy(hub->hdev);
Dan Williams5c79a1e2014-05-20 18:09:26 -07003209
3210 usb_unlock_port(port_dev);
Alan Stern4956ecc2007-05-30 16:51:28 -04003211 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003212}
David Brownellf3f32532005-09-22 22:37:29 -07003213
Linus Torvalds1da177e2005-04-16 15:20:36 -07003214/*
David Brownell390a8c32005-09-13 19:57:27 -07003215 * If the USB "suspend" state is in use (rather than "global suspend"),
3216 * many devices will be individually taken out of suspend state using
Alan Stern54515fe2007-05-30 15:38:58 -04003217 * special "resume" signaling. This routine kicks in shortly after
Linus Torvalds1da177e2005-04-16 15:20:36 -07003218 * hardware resume signaling is finished, either because of selective
3219 * resume (by host) or remote wakeup (by device) ... now see what changed
3220 * in the tree that's rooted at this device.
Alan Stern54515fe2007-05-30 15:38:58 -04003221 *
3222 * If @udev->reset_resume is set then the device is reset before the
3223 * status check is done.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003224 */
Alan Stern140d8f62006-07-01 22:07:21 -04003225static int finish_port_resume(struct usb_device *udev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003226{
Alan Stern54515fe2007-05-30 15:38:58 -04003227 int status = 0;
Oliver Neukum07e72b92012-11-29 15:05:57 +01003228 u16 devstatus = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003229
3230 /* caller owns the udev device lock */
Wu Fengguangb9cef6c2008-12-15 15:32:01 +08003231 dev_dbg(&udev->dev, "%s\n",
3232 udev->reset_resume ? "finish reset-resume" : "finish resume");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003233
3234 /* usb ch9 identifies four variants of SUSPENDED, based on what
3235 * state the device resumes to. Linux currently won't see the
3236 * first two on the host side; they'd be inside hub_port_init()
Petr Mladek37ebb542014-09-19 17:32:23 +02003237 * during many timeouts, but hub_wq can't suspend until later.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003238 */
3239 usb_set_device_state(udev, udev->actconfig
3240 ? USB_STATE_CONFIGURED
3241 : USB_STATE_ADDRESS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003242
Alan Stern54515fe2007-05-30 15:38:58 -04003243 /* 10.5.4.5 says not to reset a suspended port if the attached
3244 * device is enabled for remote wakeup. Hence the reset
3245 * operation is carried out here, after the port has been
3246 * resumed.
3247 */
Alan Stern1d102552014-03-18 10:39:05 -04003248 if (udev->reset_resume) {
3249 /*
3250 * If the device morphs or switches modes when it is reset,
3251 * we don't want to perform a reset-resume. We'll fail the
3252 * resume, which will cause a logical disconnect, and then
3253 * the device will be rediscovered.
3254 */
Alan Stern86c57ed2008-06-30 11:14:43 -04003255 retry_reset_resume:
Alan Stern1d102552014-03-18 10:39:05 -04003256 if (udev->quirks & USB_QUIRK_RESET)
3257 status = -ENODEV;
3258 else
3259 status = usb_reset_and_verify_device(udev);
3260 }
Alan Stern54515fe2007-05-30 15:38:58 -04003261
Matthias Beyer469271f2013-10-10 23:41:27 +02003262 /* 10.5.4.5 says be sure devices in the tree are still there.
3263 * For now let's assume the device didn't go crazy on resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003264 * and device drivers will know about any resume quirks.
3265 */
Alan Stern54515fe2007-05-30 15:38:58 -04003266 if (status == 0) {
Alan Stern46dede42007-08-14 10:56:10 -04003267 devstatus = 0;
Alan Stern54515fe2007-05-30 15:38:58 -04003268 status = usb_get_status(udev, USB_RECIP_DEVICE, 0, &devstatus);
Alan Stern86c57ed2008-06-30 11:14:43 -04003269
3270 /* If a normal resume failed, try doing a reset-resume */
3271 if (status && !udev->reset_resume && udev->persist_enabled) {
3272 dev_dbg(&udev->dev, "retry with reset-resume\n");
3273 udev->reset_resume = 1;
3274 goto retry_reset_resume;
3275 }
Alan Stern54515fe2007-05-30 15:38:58 -04003276 }
Alan Sternb40b7a92006-06-19 15:12:38 -04003277
Alan Stern624d6c02007-05-30 15:35:16 -04003278 if (status) {
3279 dev_dbg(&udev->dev, "gone after usb resume? status %d\n",
3280 status);
Oliver Neukum07e72b92012-11-29 15:05:57 +01003281 /*
3282 * There are a few quirky devices which violate the standard
3283 * by claiming to have remote wakeup enabled after a reset,
3284 * which crash if the feature is cleared, hence check for
3285 * udev->reset_resume
3286 */
3287 } else if (udev->actconfig && !udev->reset_resume) {
Alan Stern28e86162013-07-30 15:37:33 -04003288 if (udev->speed < USB_SPEED_SUPER) {
Lan Tianyu54a3ac02013-01-24 10:31:28 +08003289 if (devstatus & (1 << USB_DEVICE_REMOTE_WAKEUP))
Alan Stern28e86162013-07-30 15:37:33 -04003290 status = usb_disable_remote_wakeup(udev);
Lan Tianyu54a3ac02013-01-24 10:31:28 +08003291 } else {
3292 status = usb_get_status(udev, USB_RECIP_INTERFACE, 0,
3293 &devstatus);
Lan Tianyu54a3ac02013-01-24 10:31:28 +08003294 if (!status && devstatus & (USB_INTRF_STAT_FUNC_RW_CAP
3295 | USB_INTRF_STAT_FUNC_RW))
Alan Stern28e86162013-07-30 15:37:33 -04003296 status = usb_disable_remote_wakeup(udev);
Alan Stern4bf0ba82005-11-21 11:58:07 -05003297 }
Lan Tianyu54a3ac02013-01-24 10:31:28 +08003298
3299 if (status)
3300 dev_dbg(&udev->dev,
3301 "disable remote wakeup, status %d\n",
3302 status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003303 status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003304 }
3305 return status;
3306}
3307
Alan Stern624d6c02007-05-30 15:35:16 -04003308/*
Pratyush Ananda40178b2014-07-18 12:37:10 +05303309 * There are some SS USB devices which take longer time for link training.
3310 * XHCI specs 4.19.4 says that when Link training is successful, port
3311 * sets CSC bit to 1. So if SW reads port status before successful link
3312 * training, then it will not find device to be present.
3313 * USB Analyzer log with such buggy devices show that in some cases
3314 * device switch on the RX termination after long delay of host enabling
3315 * the VBUS. In few other cases it has been seen that device fails to
3316 * negotiate link training in first attempt. It has been
3317 * reported till now that few devices take as long as 2000 ms to train
3318 * the link after host enabling its VBUS and termination. Following
3319 * routine implements a 2000 ms timeout for link training. If in a case
3320 * link trains before timeout, loop will exit earlier.
3321 *
3322 * FIXME: If a device was connected before suspend, but was removed
3323 * while system was asleep, then the loop in the following routine will
3324 * only exit at timeout.
3325 *
3326 * This routine should only be called when persist is enabled for a SS
3327 * device.
3328 */
3329static int wait_for_ss_port_enable(struct usb_device *udev,
3330 struct usb_hub *hub, int *port1,
3331 u16 *portchange, u16 *portstatus)
3332{
3333 int status = 0, delay_ms = 0;
3334
3335 while (delay_ms < 2000) {
3336 if (status || *portstatus & USB_PORT_STAT_CONNECTION)
3337 break;
3338 msleep(20);
3339 delay_ms += 20;
3340 status = hub_port_status(hub, *port1, portstatus, portchange);
3341 }
3342 return status;
3343}
3344
3345/*
Alan Stern624d6c02007-05-30 15:35:16 -04003346 * usb_port_resume - re-activate a suspended usb device's upstream port
3347 * @udev: device to re-activate, not a root hub
3348 * Context: must be able to sleep; device not locked; pm locks held
3349 *
3350 * This will re-activate the suspended device, increasing power usage
3351 * while letting drivers communicate again with its endpoints.
3352 * USB resume explicitly guarantees that the power session between
3353 * the host and the device is the same as it was when the device
3354 * suspended.
3355 *
Alan Sternfeccc302008-03-03 15:15:59 -05003356 * If @udev->reset_resume is set then this routine won't check that the
3357 * port is still enabled. Furthermore, finish_port_resume() above will
Alan Stern54515fe2007-05-30 15:38:58 -04003358 * reset @udev. The end result is that a broken power session can be
3359 * recovered and @udev will appear to persist across a loss of VBUS power.
3360 *
3361 * For example, if a host controller doesn't maintain VBUS suspend current
3362 * during a system sleep or is reset when the system wakes up, all the USB
3363 * power sessions below it will be broken. This is especially troublesome
3364 * for mass-storage devices containing mounted filesystems, since the
3365 * device will appear to have disconnected and all the memory mappings
3366 * to it will be lost. Using the USB_PERSIST facility, the device can be
3367 * made to appear as if it had not disconnected.
3368 *
Ming Lei742120c2008-06-18 22:00:29 +08003369 * This facility can be dangerous. Although usb_reset_and_verify_device() makes
Alan Sternfeccc302008-03-03 15:15:59 -05003370 * every effort to insure that the same device is present after the
Alan Stern54515fe2007-05-30 15:38:58 -04003371 * reset as before, it cannot provide a 100% guarantee. Furthermore it's
3372 * quite possible for a device to remain unaltered but its media to be
3373 * changed. If the user replaces a flash memory card while the system is
3374 * asleep, he will have only himself to blame when the filesystem on the
3375 * new card is corrupted and the system crashes.
3376 *
Alan Stern624d6c02007-05-30 15:35:16 -04003377 * Returns 0 on success, else negative errno.
3378 */
Alan Stern65bfd292008-11-25 16:39:18 -05003379int usb_port_resume(struct usb_device *udev, pm_message_t msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003380{
Lan Tianyuad493e52013-01-23 04:26:30 +08003381 struct usb_hub *hub = usb_hub_to_struct_hub(udev->parent);
3382 struct usb_port *port_dev = hub->ports[udev->portnum - 1];
Alan Stern624d6c02007-05-30 15:35:16 -04003383 int port1 = udev->portnum;
3384 int status;
3385 u16 portchange, portstatus;
Alan Sternd25450c2006-11-20 11:14:30 -05003386
Dan Williamsd5c38342014-05-20 18:08:52 -07003387 if (!test_and_set_bit(port1, hub->child_usage_bits)) {
Lan Tianyuad493e52013-01-23 04:26:30 +08003388 status = pm_runtime_get_sync(&port_dev->dev);
Lan Tianyuad493e52013-01-23 04:26:30 +08003389 if (status < 0) {
3390 dev_dbg(&udev->dev, "can't resume usb port, status %d\n",
3391 status);
3392 return status;
3393 }
3394 }
3395
Dan Williams5c79a1e2014-05-20 18:09:26 -07003396 usb_lock_port(port_dev);
3397
Alan Sternd25450c2006-11-20 11:14:30 -05003398 /* Skip the initial Clear-Suspend step for a remote wakeup */
3399 status = hub_port_status(hub, port1, &portstatus, &portchange);
Andiry Xu0ed9a572011-04-27 18:07:43 +08003400 if (status == 0 && !port_is_suspended(hub, portstatus))
Alan Sternd25450c2006-11-20 11:14:30 -05003401 goto SuspendCleared;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003402
Linus Torvalds1da177e2005-04-16 15:20:36 -07003403 /* see 7.1.7.7; affects power usage, but not budgeting */
Andiry Xua7114232011-04-27 18:07:50 +08003404 if (hub_is_superspeed(hub->hdev))
Sarah Sharpc2f60db2012-12-10 15:43:08 -08003405 status = hub_set_port_link_state(hub, port1, USB_SS_PORT_LS_U0);
Andiry Xua7114232011-04-27 18:07:50 +08003406 else
Lan Tianyuad493e52013-01-23 04:26:30 +08003407 status = usb_clear_port_feature(hub->hdev,
Andiry Xua7114232011-04-27 18:07:50 +08003408 port1, USB_PORT_FEAT_SUSPEND);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003409 if (status) {
Dan Williamsd99f6b42014-05-20 18:08:17 -07003410 dev_dbg(&port_dev->dev, "can't resume, status %d\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003411 } else {
Felipe Balbibbc78c02015-02-13 15:38:33 -06003412 /* drive resume for USB_RESUME_TIMEOUT msec */
Alan Stern686314c2007-05-30 15:34:36 -04003413 dev_dbg(&udev->dev, "usb %sresume\n",
Alan Stern5b1b0b82011-08-19 23:49:48 +02003414 (PMSG_IS_AUTO(msg) ? "auto-" : ""));
Felipe Balbibbc78c02015-02-13 15:38:33 -06003415 msleep(USB_RESUME_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003416
Linus Torvalds1da177e2005-04-16 15:20:36 -07003417 /* Virtual root hubs can trigger on GET_PORT_STATUS to
3418 * stop resume signaling. Then finish the resume
3419 * sequence.
3420 */
Alan Sternd25450c2006-11-20 11:14:30 -05003421 status = hub_port_status(hub, port1, &portstatus, &portchange);
Alan Stern54515fe2007-05-30 15:38:58 -04003422
Alan Sternb01b03f2008-04-28 11:06:11 -04003423 /* TRSMRCY = 10 msec */
3424 msleep(10);
3425 }
Alan Stern54515fe2007-05-30 15:38:58 -04003426
Alan Sternb01b03f2008-04-28 11:06:11 -04003427 SuspendCleared:
3428 if (status == 0) {
Alan Sternbfd1e912012-10-19 11:03:39 -04003429 udev->port_is_suspended = 0;
Andiry Xua7114232011-04-27 18:07:50 +08003430 if (hub_is_superspeed(hub->hdev)) {
3431 if (portchange & USB_PORT_STAT_C_LINK_STATE)
Lan Tianyuad493e52013-01-23 04:26:30 +08003432 usb_clear_port_feature(hub->hdev, port1,
Andiry Xua7114232011-04-27 18:07:50 +08003433 USB_PORT_FEAT_C_PORT_LINK_STATE);
3434 } else {
3435 if (portchange & USB_PORT_STAT_C_SUSPEND)
Lan Tianyuad493e52013-01-23 04:26:30 +08003436 usb_clear_port_feature(hub->hdev, port1,
Andiry Xua7114232011-04-27 18:07:50 +08003437 USB_PORT_FEAT_C_SUSPEND);
3438 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003439 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003440
Pratyush Ananda40178b2014-07-18 12:37:10 +05303441 if (udev->persist_enabled && hub_is_superspeed(hub->hdev))
3442 status = wait_for_ss_port_enable(udev, hub, &port1, &portchange,
3443 &portstatus);
3444
Alan Sternb01b03f2008-04-28 11:06:11 -04003445 status = check_port_resume_type(udev,
3446 hub, port1, status, portchange, portstatus);
Alan Stern54515fe2007-05-30 15:38:58 -04003447 if (status == 0)
3448 status = finish_port_resume(udev);
3449 if (status < 0) {
3450 dev_dbg(&udev->dev, "can't resume, status %d\n", status);
3451 hub_port_logical_disconnect(hub, port1);
Andiry Xu65580b432011-09-23 14:19:52 -07003452 } else {
3453 /* Try to enable USB2 hardware LPM */
3454 if (udev->usb2_hw_lpm_capable == 1)
3455 usb_set_usb2_hardware_lpm(udev, 1);
Sarah Sharp83060952012-05-02 14:25:52 -07003456
Sarah Sharpf74631e2012-06-25 12:08:08 -07003457 /* Try to enable USB3 LTM and LPM */
3458 usb_enable_ltm(udev);
Sarah Sharp83060952012-05-02 14:25:52 -07003459 usb_unlocked_enable_lpm(udev);
Alan Stern54515fe2007-05-30 15:38:58 -04003460 }
Andiry Xu65580b432011-09-23 14:19:52 -07003461
Dan Williams5c79a1e2014-05-20 18:09:26 -07003462 usb_unlock_port(port_dev);
3463
Linus Torvalds1da177e2005-04-16 15:20:36 -07003464 return status;
3465}
3466
Alan Stern0534d462010-01-08 12:56:30 -05003467int usb_remote_wakeup(struct usb_device *udev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003468{
3469 int status = 0;
3470
Dan Williams5c79a1e2014-05-20 18:09:26 -07003471 usb_lock_device(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003472 if (udev->state == USB_STATE_SUSPENDED) {
Alan Stern645daaa2006-08-30 15:47:02 -04003473 dev_dbg(&udev->dev, "usb %sresume\n", "wakeup-");
Alan Stern9bbdf1e2010-01-08 12:57:28 -05003474 status = usb_autoresume_device(udev);
3475 if (status == 0) {
3476 /* Let the drivers do their thing, then... */
3477 usb_autosuspend_device(udev);
3478 }
Alan Sternd25450c2006-11-20 11:14:30 -05003479 }
Dan Williams5c79a1e2014-05-20 18:09:26 -07003480 usb_unlock_device(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003481 return status;
3482}
3483
Dan Williams7e73be22014-05-20 18:09:31 -07003484/* Returns 1 if there was a remote wakeup and a connect status change. */
3485static int hub_handle_remote_wakeup(struct usb_hub *hub, unsigned int port,
3486 u16 portstatus, u16 portchange)
3487 __must_hold(&port_dev->status_lock)
3488{
3489 struct usb_port *port_dev = hub->ports[port - 1];
3490 struct usb_device *hdev;
3491 struct usb_device *udev;
3492 int connect_change = 0;
3493 int ret;
3494
3495 hdev = hub->hdev;
3496 udev = port_dev->child;
3497 if (!hub_is_superspeed(hdev)) {
3498 if (!(portchange & USB_PORT_STAT_C_SUSPEND))
3499 return 0;
3500 usb_clear_port_feature(hdev, port, USB_PORT_FEAT_C_SUSPEND);
3501 } else {
3502 if (!udev || udev->state != USB_STATE_SUSPENDED ||
3503 (portstatus & USB_PORT_STAT_LINK_STATE) !=
3504 USB_SS_PORT_LS_U0)
3505 return 0;
3506 }
3507
3508 if (udev) {
3509 /* TRSMRCY = 10 msec */
3510 msleep(10);
3511
3512 usb_unlock_port(port_dev);
3513 ret = usb_remote_wakeup(udev);
3514 usb_lock_port(port_dev);
3515 if (ret < 0)
3516 connect_change = 1;
3517 } else {
3518 ret = -ENODEV;
3519 hub_port_disable(hub, port, 1);
3520 }
3521 dev_dbg(&port_dev->dev, "resume, status %d\n", ret);
3522 return connect_change;
3523}
3524
Ming Leie6f30de2012-10-24 11:59:24 +08003525static int check_ports_changed(struct usb_hub *hub)
3526{
3527 int port1;
3528
3529 for (port1 = 1; port1 <= hub->hdev->maxchild; ++port1) {
3530 u16 portstatus, portchange;
3531 int status;
3532
3533 status = hub_port_status(hub, port1, &portstatus, &portchange);
3534 if (!status && portchange)
3535 return 1;
3536 }
3537 return 0;
3538}
3539
David Brownelldb690872005-09-13 19:56:33 -07003540static int hub_suspend(struct usb_interface *intf, pm_message_t msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003541{
Chase Metzger17248562015-08-11 21:34:37 -07003542 struct usb_hub *hub = usb_get_intfdata(intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003543 struct usb_device *hdev = hub->hdev;
3544 unsigned port1;
Sarah Sharp4296c70a2012-01-06 10:34:31 -08003545 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003546
Alan Sterne583d9d2013-07-11 14:58:04 -04003547 /*
3548 * Warn if children aren't already suspended.
3549 * Also, add up the number of wakeup-enabled descendants.
3550 */
3551 hub->wakeup_enabled_descendants = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003552 for (port1 = 1; port1 <= hdev->maxchild; port1++) {
Dan Williamsd99f6b42014-05-20 18:08:17 -07003553 struct usb_port *port_dev = hub->ports[port1 - 1];
3554 struct usb_device *udev = port_dev->child;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003555
Alan Stern6840d252007-09-10 11:34:26 -04003556 if (udev && udev->can_submit) {
Dan Williamsb658b8f2014-06-17 16:16:22 -07003557 dev_warn(&port_dev->dev, "device %s not suspended yet\n",
3558 dev_name(&udev->dev));
Alan Stern5b1b0b82011-08-19 23:49:48 +02003559 if (PMSG_IS_AUTO(msg))
Alan Sterncbb33002011-06-15 16:29:16 -04003560 return -EBUSY;
David Brownellc9f89fa2005-09-13 19:57:04 -07003561 }
Alan Sterne583d9d2013-07-11 14:58:04 -04003562 if (udev)
3563 hub->wakeup_enabled_descendants +=
3564 wakeup_enabled_descendants(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003565 }
Ming Leie6f30de2012-10-24 11:59:24 +08003566
3567 if (hdev->do_remote_wakeup && hub->quirk_check_port_auto_suspend) {
3568 /* check if there are changes pending on hub ports */
3569 if (check_ports_changed(hub)) {
3570 if (PMSG_IS_AUTO(msg))
3571 return -EBUSY;
3572 pm_wakeup_event(&hdev->dev, 2000);
3573 }
3574 }
3575
Sarah Sharp4296c70a2012-01-06 10:34:31 -08003576 if (hub_is_superspeed(hdev) && hdev->do_remote_wakeup) {
3577 /* Enable hub to send remote wakeup for all ports. */
3578 for (port1 = 1; port1 <= hdev->maxchild; port1++) {
3579 status = set_port_feature(hdev,
3580 port1 |
3581 USB_PORT_FEAT_REMOTE_WAKE_CONNECT |
3582 USB_PORT_FEAT_REMOTE_WAKE_DISCONNECT |
3583 USB_PORT_FEAT_REMOTE_WAKE_OVER_CURRENT,
3584 USB_PORT_FEAT_REMOTE_WAKE_MASK);
3585 }
3586 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003587
Harvey Harrison441b62c2008-03-03 16:08:34 -08003588 dev_dbg(&intf->dev, "%s\n", __func__);
Alan Stern40f122f2006-11-09 14:44:33 -05003589
Petr Mladek37ebb542014-09-19 17:32:23 +02003590 /* stop hub_wq and related activity */
Alan Stern43303542008-04-28 11:07:31 -04003591 hub_quiesce(hub, HUB_SUSPEND);
Alan Sternb6f64362007-05-04 11:51:54 -04003592 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003593}
3594
3595static int hub_resume(struct usb_interface *intf)
3596{
Alan Stern5e6effa2008-03-03 15:15:51 -05003597 struct usb_hub *hub = usb_get_intfdata(intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003598
Alan Stern5e6effa2008-03-03 15:15:51 -05003599 dev_dbg(&intf->dev, "%s\n", __func__);
Alan Sternf2835212008-04-28 11:07:17 -04003600 hub_activate(hub, HUB_RESUME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003601 return 0;
3602}
3603
Alan Sternb41a60e2007-05-30 15:39:33 -04003604static int hub_reset_resume(struct usb_interface *intf)
Alan Sternf07600c2007-05-30 15:38:16 -04003605{
Alan Sternb41a60e2007-05-30 15:39:33 -04003606 struct usb_hub *hub = usb_get_intfdata(intf);
Alan Sternf07600c2007-05-30 15:38:16 -04003607
Alan Stern5e6effa2008-03-03 15:15:51 -05003608 dev_dbg(&intf->dev, "%s\n", __func__);
Alan Sternf2835212008-04-28 11:07:17 -04003609 hub_activate(hub, HUB_RESET_RESUME);
Alan Sternf07600c2007-05-30 15:38:16 -04003610 return 0;
3611}
3612
Alan Stern54515fe2007-05-30 15:38:58 -04003613/**
3614 * usb_root_hub_lost_power - called by HCD if the root hub lost Vbus power
3615 * @rhdev: struct usb_device for the root hub
3616 *
3617 * The USB host controller driver calls this function when its root hub
3618 * is resumed and Vbus power has been interrupted or the controller
Alan Sternfeccc302008-03-03 15:15:59 -05003619 * has been reset. The routine marks @rhdev as having lost power.
3620 * When the hub driver is resumed it will take notice and carry out
3621 * power-session recovery for all the "USB-PERSIST"-enabled child devices;
3622 * the others will be disconnected.
Alan Stern54515fe2007-05-30 15:38:58 -04003623 */
3624void usb_root_hub_lost_power(struct usb_device *rhdev)
3625{
3626 dev_warn(&rhdev->dev, "root hub lost power or was reset\n");
3627 rhdev->reset_resume = 1;
3628}
3629EXPORT_SYMBOL_GPL(usb_root_hub_lost_power);
3630
Sarah Sharp1ea7e0e2012-04-24 17:21:50 -07003631static const char * const usb3_lpm_names[] = {
3632 "U0",
3633 "U1",
3634 "U2",
3635 "U3",
3636};
3637
3638/*
3639 * Send a Set SEL control transfer to the device, prior to enabling
3640 * device-initiated U1 or U2. This lets the device know the exit latencies from
3641 * the time the device initiates a U1 or U2 exit, to the time it will receive a
3642 * packet from the host.
3643 *
3644 * This function will fail if the SEL or PEL values for udev are greater than
3645 * the maximum allowed values for the link state to be enabled.
3646 */
3647static int usb_req_set_sel(struct usb_device *udev, enum usb3_link_state state)
3648{
3649 struct usb_set_sel_req *sel_values;
3650 unsigned long long u1_sel;
3651 unsigned long long u1_pel;
3652 unsigned long long u2_sel;
3653 unsigned long long u2_pel;
3654 int ret;
3655
Xenia Ragiadakou38d7f682013-09-04 17:24:45 +03003656 if (udev->state != USB_STATE_CONFIGURED)
3657 return 0;
3658
Sarah Sharp1ea7e0e2012-04-24 17:21:50 -07003659 /* Convert SEL and PEL stored in ns to us */
3660 u1_sel = DIV_ROUND_UP(udev->u1_params.sel, 1000);
3661 u1_pel = DIV_ROUND_UP(udev->u1_params.pel, 1000);
3662 u2_sel = DIV_ROUND_UP(udev->u2_params.sel, 1000);
3663 u2_pel = DIV_ROUND_UP(udev->u2_params.pel, 1000);
3664
3665 /*
3666 * Make sure that the calculated SEL and PEL values for the link
3667 * state we're enabling aren't bigger than the max SEL/PEL
3668 * value that will fit in the SET SEL control transfer.
3669 * Otherwise the device would get an incorrect idea of the exit
3670 * latency for the link state, and could start a device-initiated
3671 * U1/U2 when the exit latencies are too high.
3672 */
3673 if ((state == USB3_LPM_U1 &&
3674 (u1_sel > USB3_LPM_MAX_U1_SEL_PEL ||
3675 u1_pel > USB3_LPM_MAX_U1_SEL_PEL)) ||
3676 (state == USB3_LPM_U2 &&
3677 (u2_sel > USB3_LPM_MAX_U2_SEL_PEL ||
3678 u2_pel > USB3_LPM_MAX_U2_SEL_PEL))) {
Sarah Sharp1510a1a2012-10-05 10:30:35 -07003679 dev_dbg(&udev->dev, "Device-initiated %s disabled due to long SEL %llu us or PEL %llu us\n",
Sarah Sharp1ea7e0e2012-04-24 17:21:50 -07003680 usb3_lpm_names[state], u1_sel, u1_pel);
3681 return -EINVAL;
3682 }
3683
3684 /*
3685 * If we're enabling device-initiated LPM for one link state,
3686 * but the other link state has a too high SEL or PEL value,
3687 * just set those values to the max in the Set SEL request.
3688 */
3689 if (u1_sel > USB3_LPM_MAX_U1_SEL_PEL)
3690 u1_sel = USB3_LPM_MAX_U1_SEL_PEL;
3691
3692 if (u1_pel > USB3_LPM_MAX_U1_SEL_PEL)
3693 u1_pel = USB3_LPM_MAX_U1_SEL_PEL;
3694
3695 if (u2_sel > USB3_LPM_MAX_U2_SEL_PEL)
3696 u2_sel = USB3_LPM_MAX_U2_SEL_PEL;
3697
3698 if (u2_pel > USB3_LPM_MAX_U2_SEL_PEL)
3699 u2_pel = USB3_LPM_MAX_U2_SEL_PEL;
3700
3701 /*
3702 * usb_enable_lpm() can be called as part of a failed device reset,
3703 * which may be initiated by an error path of a mass storage driver.
3704 * Therefore, use GFP_NOIO.
3705 */
3706 sel_values = kmalloc(sizeof *(sel_values), GFP_NOIO);
3707 if (!sel_values)
3708 return -ENOMEM;
3709
3710 sel_values->u1_sel = u1_sel;
3711 sel_values->u1_pel = u1_pel;
3712 sel_values->u2_sel = cpu_to_le16(u2_sel);
3713 sel_values->u2_pel = cpu_to_le16(u2_pel);
3714
3715 ret = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
3716 USB_REQ_SET_SEL,
3717 USB_RECIP_DEVICE,
3718 0, 0,
3719 sel_values, sizeof *(sel_values),
3720 USB_CTRL_SET_TIMEOUT);
3721 kfree(sel_values);
3722 return ret;
3723}
3724
3725/*
3726 * Enable or disable device-initiated U1 or U2 transitions.
3727 */
3728static int usb_set_device_initiated_lpm(struct usb_device *udev,
3729 enum usb3_link_state state, bool enable)
3730{
3731 int ret;
3732 int feature;
3733
3734 switch (state) {
3735 case USB3_LPM_U1:
3736 feature = USB_DEVICE_U1_ENABLE;
3737 break;
3738 case USB3_LPM_U2:
3739 feature = USB_DEVICE_U2_ENABLE;
3740 break;
3741 default:
3742 dev_warn(&udev->dev, "%s: Can't %s non-U1 or U2 state.\n",
3743 __func__, enable ? "enable" : "disable");
3744 return -EINVAL;
3745 }
3746
3747 if (udev->state != USB_STATE_CONFIGURED) {
3748 dev_dbg(&udev->dev, "%s: Can't %s %s state "
3749 "for unconfigured device.\n",
3750 __func__, enable ? "enable" : "disable",
3751 usb3_lpm_names[state]);
3752 return 0;
3753 }
3754
3755 if (enable) {
3756 /*
Sarah Sharp1ea7e0e2012-04-24 17:21:50 -07003757 * Now send the control transfer to enable device-initiated LPM
3758 * for either U1 or U2.
3759 */
3760 ret = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
3761 USB_REQ_SET_FEATURE,
3762 USB_RECIP_DEVICE,
3763 feature,
3764 0, NULL, 0,
3765 USB_CTRL_SET_TIMEOUT);
3766 } else {
3767 ret = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
3768 USB_REQ_CLEAR_FEATURE,
3769 USB_RECIP_DEVICE,
3770 feature,
3771 0, NULL, 0,
3772 USB_CTRL_SET_TIMEOUT);
3773 }
3774 if (ret < 0) {
3775 dev_warn(&udev->dev, "%s of device-initiated %s failed.\n",
3776 enable ? "Enable" : "Disable",
3777 usb3_lpm_names[state]);
3778 return -EBUSY;
3779 }
3780 return 0;
3781}
3782
3783static int usb_set_lpm_timeout(struct usb_device *udev,
3784 enum usb3_link_state state, int timeout)
3785{
3786 int ret;
3787 int feature;
3788
3789 switch (state) {
3790 case USB3_LPM_U1:
3791 feature = USB_PORT_FEAT_U1_TIMEOUT;
3792 break;
3793 case USB3_LPM_U2:
3794 feature = USB_PORT_FEAT_U2_TIMEOUT;
3795 break;
3796 default:
3797 dev_warn(&udev->dev, "%s: Can't set timeout for non-U1 or U2 state.\n",
3798 __func__);
3799 return -EINVAL;
3800 }
3801
3802 if (state == USB3_LPM_U1 && timeout > USB3_LPM_U1_MAX_TIMEOUT &&
3803 timeout != USB3_LPM_DEVICE_INITIATED) {
3804 dev_warn(&udev->dev, "Failed to set %s timeout to 0x%x, "
3805 "which is a reserved value.\n",
3806 usb3_lpm_names[state], timeout);
3807 return -EINVAL;
3808 }
3809
3810 ret = set_port_feature(udev->parent,
3811 USB_PORT_LPM_TIMEOUT(timeout) | udev->portnum,
3812 feature);
3813 if (ret < 0) {
3814 dev_warn(&udev->dev, "Failed to set %s timeout to 0x%x,"
3815 "error code %i\n", usb3_lpm_names[state],
3816 timeout, ret);
3817 return -EBUSY;
3818 }
3819 if (state == USB3_LPM_U1)
3820 udev->u1_params.timeout = timeout;
3821 else
3822 udev->u2_params.timeout = timeout;
3823 return 0;
3824}
3825
3826/*
3827 * Enable the hub-initiated U1/U2 idle timeouts, and enable device-initiated
3828 * U1/U2 entry.
3829 *
3830 * We will attempt to enable U1 or U2, but there are no guarantees that the
3831 * control transfers to set the hub timeout or enable device-initiated U1/U2
3832 * will be successful.
3833 *
3834 * If we cannot set the parent hub U1/U2 timeout, we attempt to let the xHCI
3835 * driver know about it. If that call fails, it should be harmless, and just
3836 * take up more slightly more bus bandwidth for unnecessary U1/U2 exit latency.
3837 */
3838static void usb_enable_link_state(struct usb_hcd *hcd, struct usb_device *udev,
3839 enum usb3_link_state state)
3840{
Sarah Sharp65a95b72012-10-05 10:32:07 -07003841 int timeout, ret;
Sarah Sharpae8963a2012-10-03 11:18:05 -07003842 __u8 u1_mel = udev->bos->ss_cap->bU1devExitLat;
3843 __le16 u2_mel = udev->bos->ss_cap->bU2DevExitLat;
3844
3845 /* If the device says it doesn't have *any* exit latency to come out of
3846 * U1 or U2, it's probably lying. Assume it doesn't implement that link
3847 * state.
3848 */
3849 if ((state == USB3_LPM_U1 && u1_mel == 0) ||
3850 (state == USB3_LPM_U2 && u2_mel == 0))
3851 return;
Sarah Sharp1ea7e0e2012-04-24 17:21:50 -07003852
Sarah Sharp65a95b72012-10-05 10:32:07 -07003853 /*
3854 * First, let the device know about the exit latencies
3855 * associated with the link state we're about to enable.
3856 */
3857 ret = usb_req_set_sel(udev, state);
3858 if (ret < 0) {
3859 dev_warn(&udev->dev, "Set SEL for device-initiated %s failed.\n",
3860 usb3_lpm_names[state]);
3861 return;
3862 }
3863
Sarah Sharp1ea7e0e2012-04-24 17:21:50 -07003864 /* We allow the host controller to set the U1/U2 timeout internally
3865 * first, so that it can change its schedule to account for the
3866 * additional latency to send data to a device in a lower power
3867 * link state.
3868 */
3869 timeout = hcd->driver->enable_usb3_lpm_timeout(hcd, udev, state);
3870
3871 /* xHCI host controller doesn't want to enable this LPM state. */
3872 if (timeout == 0)
3873 return;
3874
3875 if (timeout < 0) {
3876 dev_warn(&udev->dev, "Could not enable %s link state, "
3877 "xHCI error %i.\n", usb3_lpm_names[state],
3878 timeout);
3879 return;
3880 }
3881
3882 if (usb_set_lpm_timeout(udev, state, timeout))
3883 /* If we can't set the parent hub U1/U2 timeout,
3884 * device-initiated LPM won't be allowed either, so let the xHCI
3885 * host know that this link state won't be enabled.
3886 */
3887 hcd->driver->disable_usb3_lpm_timeout(hcd, udev, state);
3888
3889 /* Only a configured device will accept the Set Feature U1/U2_ENABLE */
3890 else if (udev->actconfig)
3891 usb_set_device_initiated_lpm(udev, state, true);
3892
3893}
3894
3895/*
3896 * Disable the hub-initiated U1/U2 idle timeouts, and disable device-initiated
3897 * U1/U2 entry.
3898 *
3899 * If this function returns -EBUSY, the parent hub will still allow U1/U2 entry.
3900 * If zero is returned, the parent will not allow the link to go into U1/U2.
3901 *
3902 * If zero is returned, device-initiated U1/U2 entry may still be enabled, but
3903 * it won't have an effect on the bus link state because the parent hub will
3904 * still disallow device-initiated U1/U2 entry.
3905 *
3906 * If zero is returned, the xHCI host controller may still think U1/U2 entry is
3907 * possible. The result will be slightly more bus bandwidth will be taken up
3908 * (to account for U1/U2 exit latency), but it should be harmless.
3909 */
3910static int usb_disable_link_state(struct usb_hcd *hcd, struct usb_device *udev,
3911 enum usb3_link_state state)
3912{
Sarah Sharp1ea7e0e2012-04-24 17:21:50 -07003913 switch (state) {
3914 case USB3_LPM_U1:
Sarah Sharp1ea7e0e2012-04-24 17:21:50 -07003915 case USB3_LPM_U2:
Sarah Sharp1ea7e0e2012-04-24 17:21:50 -07003916 break;
3917 default:
3918 dev_warn(&udev->dev, "%s: Can't disable non-U1 or U2 state.\n",
3919 __func__);
3920 return -EINVAL;
3921 }
3922
3923 if (usb_set_lpm_timeout(udev, state, 0))
3924 return -EBUSY;
3925
3926 usb_set_device_initiated_lpm(udev, state, false);
3927
3928 if (hcd->driver->disable_usb3_lpm_timeout(hcd, udev, state))
3929 dev_warn(&udev->dev, "Could not disable xHCI %s timeout, "
3930 "bus schedule bandwidth may be impacted.\n",
3931 usb3_lpm_names[state]);
3932 return 0;
3933}
3934
3935/*
3936 * Disable hub-initiated and device-initiated U1 and U2 entry.
3937 * Caller must own the bandwidth_mutex.
3938 *
3939 * This will call usb_enable_lpm() on failure, which will decrement
3940 * lpm_disable_count, and will re-enable LPM if lpm_disable_count reaches zero.
3941 */
3942int usb_disable_lpm(struct usb_device *udev)
3943{
3944 struct usb_hcd *hcd;
3945
3946 if (!udev || !udev->parent ||
3947 udev->speed != USB_SPEED_SUPER ||
Pratyush Anand51df62f2014-07-04 17:01:27 +03003948 !udev->lpm_capable ||
3949 udev->state < USB_STATE_DEFAULT)
Sarah Sharp1ea7e0e2012-04-24 17:21:50 -07003950 return 0;
3951
3952 hcd = bus_to_hcd(udev->bus);
3953 if (!hcd || !hcd->driver->disable_usb3_lpm_timeout)
3954 return 0;
3955
3956 udev->lpm_disable_count++;
Dan Carpenter55558c32012-05-22 20:54:34 +03003957 if ((udev->u1_params.timeout == 0 && udev->u2_params.timeout == 0))
Sarah Sharp1ea7e0e2012-04-24 17:21:50 -07003958 return 0;
3959
3960 /* If LPM is enabled, attempt to disable it. */
3961 if (usb_disable_link_state(hcd, udev, USB3_LPM_U1))
3962 goto enable_lpm;
3963 if (usb_disable_link_state(hcd, udev, USB3_LPM_U2))
3964 goto enable_lpm;
3965
Kevin Strasser655fe4e2015-06-16 10:35:30 -07003966 udev->usb3_lpm_enabled = 0;
3967
Sarah Sharp1ea7e0e2012-04-24 17:21:50 -07003968 return 0;
3969
3970enable_lpm:
3971 usb_enable_lpm(udev);
3972 return -EBUSY;
3973}
3974EXPORT_SYMBOL_GPL(usb_disable_lpm);
3975
3976/* Grab the bandwidth_mutex before calling usb_disable_lpm() */
3977int usb_unlocked_disable_lpm(struct usb_device *udev)
3978{
3979 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
3980 int ret;
3981
3982 if (!hcd)
3983 return -EINVAL;
3984
3985 mutex_lock(hcd->bandwidth_mutex);
3986 ret = usb_disable_lpm(udev);
3987 mutex_unlock(hcd->bandwidth_mutex);
3988
3989 return ret;
3990}
3991EXPORT_SYMBOL_GPL(usb_unlocked_disable_lpm);
3992
3993/*
3994 * Attempt to enable device-initiated and hub-initiated U1 and U2 entry. The
3995 * xHCI host policy may prevent U1 or U2 from being enabled.
3996 *
3997 * Other callers may have disabled link PM, so U1 and U2 entry will be disabled
3998 * until the lpm_disable_count drops to zero. Caller must own the
3999 * bandwidth_mutex.
4000 */
4001void usb_enable_lpm(struct usb_device *udev)
4002{
4003 struct usb_hcd *hcd;
4004
4005 if (!udev || !udev->parent ||
4006 udev->speed != USB_SPEED_SUPER ||
Pratyush Anand51df62f2014-07-04 17:01:27 +03004007 !udev->lpm_capable ||
4008 udev->state < USB_STATE_DEFAULT)
Sarah Sharp1ea7e0e2012-04-24 17:21:50 -07004009 return;
4010
4011 udev->lpm_disable_count--;
4012 hcd = bus_to_hcd(udev->bus);
4013 /* Double check that we can both enable and disable LPM.
4014 * Device must be configured to accept set feature U1/U2 timeout.
4015 */
4016 if (!hcd || !hcd->driver->enable_usb3_lpm_timeout ||
4017 !hcd->driver->disable_usb3_lpm_timeout)
4018 return;
4019
4020 if (udev->lpm_disable_count > 0)
4021 return;
4022
4023 usb_enable_link_state(hcd, udev, USB3_LPM_U1);
4024 usb_enable_link_state(hcd, udev, USB3_LPM_U2);
Kevin Strasser655fe4e2015-06-16 10:35:30 -07004025
4026 udev->usb3_lpm_enabled = 1;
Sarah Sharp1ea7e0e2012-04-24 17:21:50 -07004027}
4028EXPORT_SYMBOL_GPL(usb_enable_lpm);
4029
4030/* Grab the bandwidth_mutex before calling usb_enable_lpm() */
4031void usb_unlocked_enable_lpm(struct usb_device *udev)
4032{
4033 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
4034
4035 if (!hcd)
4036 return;
4037
4038 mutex_lock(hcd->bandwidth_mutex);
4039 usb_enable_lpm(udev);
4040 mutex_unlock(hcd->bandwidth_mutex);
4041}
4042EXPORT_SYMBOL_GPL(usb_unlocked_enable_lpm);
4043
4044
Alan Sternd388dab2006-07-01 22:14:24 -04004045#else /* CONFIG_PM */
4046
Alan Sternf07600c2007-05-30 15:38:16 -04004047#define hub_suspend NULL
4048#define hub_resume NULL
4049#define hub_reset_resume NULL
Sarah Sharp1ea7e0e2012-04-24 17:21:50 -07004050
4051int usb_disable_lpm(struct usb_device *udev)
4052{
4053 return 0;
4054}
Sarah Sharpe9261fb2012-05-21 08:29:01 -07004055EXPORT_SYMBOL_GPL(usb_disable_lpm);
Sarah Sharp1ea7e0e2012-04-24 17:21:50 -07004056
4057void usb_enable_lpm(struct usb_device *udev) { }
Sarah Sharpe9261fb2012-05-21 08:29:01 -07004058EXPORT_SYMBOL_GPL(usb_enable_lpm);
Sarah Sharp1ea7e0e2012-04-24 17:21:50 -07004059
4060int usb_unlocked_disable_lpm(struct usb_device *udev)
4061{
4062 return 0;
4063}
Sarah Sharpe9261fb2012-05-21 08:29:01 -07004064EXPORT_SYMBOL_GPL(usb_unlocked_disable_lpm);
Sarah Sharp1ea7e0e2012-04-24 17:21:50 -07004065
4066void usb_unlocked_enable_lpm(struct usb_device *udev) { }
Sarah Sharpe9261fb2012-05-21 08:29:01 -07004067EXPORT_SYMBOL_GPL(usb_unlocked_enable_lpm);
Sarah Sharpf74631e2012-06-25 12:08:08 -07004068
4069int usb_disable_ltm(struct usb_device *udev)
4070{
4071 return 0;
4072}
4073EXPORT_SYMBOL_GPL(usb_disable_ltm);
4074
4075void usb_enable_ltm(struct usb_device *udev) { }
4076EXPORT_SYMBOL_GPL(usb_enable_ltm);
Alan Sternc4b51a42013-07-11 14:58:23 -04004077
Stephen Rothwell4a95b1f2014-05-29 18:55:06 +10004078static int hub_handle_remote_wakeup(struct usb_hub *hub, unsigned int port,
4079 u16 portstatus, u16 portchange)
4080{
4081 return 0;
4082}
4083
Alan Sternc4b51a42013-07-11 14:58:23 -04004084#endif /* CONFIG_PM */
Alan Sternd388dab2006-07-01 22:14:24 -04004085
Linus Torvalds1da177e2005-04-16 15:20:36 -07004086
4087/* USB 2.0 spec, 7.1.7.3 / fig 7-29:
4088 *
4089 * Between connect detection and reset signaling there must be a delay
4090 * of 100ms at least for debounce and power-settling. The corresponding
4091 * timer shall restart whenever the downstream port detects a disconnect.
Matthias Beyer469271f2013-10-10 23:41:27 +02004092 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004093 * Apparently there are some bluetooth and irda-dongles and a number of
4094 * low-speed devices for which this debounce period may last over a second.
4095 * Not covered by the spec - but easy to deal with.
4096 *
4097 * This implementation uses a 1500ms total debounce timeout; if the
4098 * connection isn't stable by then it returns -ETIMEDOUT. It checks
4099 * every 25ms for transient disconnects. When the port status has been
4100 * unchanged for 100ms it returns the port status.
4101 */
Lan Tianyuad493e52013-01-23 04:26:30 +08004102int hub_port_debounce(struct usb_hub *hub, int port1, bool must_be_connected)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004103{
4104 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004105 u16 portchange, portstatus;
4106 unsigned connection = 0xffff;
Dan Williamsd99f6b42014-05-20 18:08:17 -07004107 int total_time, stable_time = 0;
4108 struct usb_port *port_dev = hub->ports[port1 - 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004109
4110 for (total_time = 0; ; total_time += HUB_DEBOUNCE_STEP) {
4111 ret = hub_port_status(hub, port1, &portstatus, &portchange);
4112 if (ret < 0)
4113 return ret;
4114
4115 if (!(portchange & USB_PORT_STAT_C_CONNECTION) &&
4116 (portstatus & USB_PORT_STAT_CONNECTION) == connection) {
Lan Tianyuad493e52013-01-23 04:26:30 +08004117 if (!must_be_connected ||
4118 (connection == USB_PORT_STAT_CONNECTION))
4119 stable_time += HUB_DEBOUNCE_STEP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004120 if (stable_time >= HUB_DEBOUNCE_STABLE)
4121 break;
4122 } else {
4123 stable_time = 0;
4124 connection = portstatus & USB_PORT_STAT_CONNECTION;
4125 }
4126
4127 if (portchange & USB_PORT_STAT_C_CONNECTION) {
Lan Tianyuad493e52013-01-23 04:26:30 +08004128 usb_clear_port_feature(hub->hdev, port1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004129 USB_PORT_FEAT_C_CONNECTION);
4130 }
4131
4132 if (total_time >= HUB_DEBOUNCE_TIMEOUT)
4133 break;
4134 msleep(HUB_DEBOUNCE_STEP);
4135 }
4136
Dan Williamsd99f6b42014-05-20 18:08:17 -07004137 dev_dbg(&port_dev->dev, "debounce total %dms stable %dms status 0x%x\n",
4138 total_time, stable_time, portstatus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004139
4140 if (stable_time < HUB_DEBOUNCE_STABLE)
4141 return -ETIMEDOUT;
4142 return portstatus;
4143}
4144
Inaky Perez-Gonzalezfc721f52008-04-08 13:24:46 -07004145void usb_ep0_reinit(struct usb_device *udev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004146{
Alan Sternddeac4e72009-01-15 17:03:33 -05004147 usb_disable_endpoint(udev, 0 + USB_DIR_IN, true);
4148 usb_disable_endpoint(udev, 0 + USB_DIR_OUT, true);
Alan Stern2caf7fc2008-12-31 11:31:33 -05004149 usb_enable_endpoint(udev, &udev->ep0, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004150}
Inaky Perez-Gonzalezfc721f52008-04-08 13:24:46 -07004151EXPORT_SYMBOL_GPL(usb_ep0_reinit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004152
4153#define usb_sndaddr0pipe() (PIPE_CONTROL << 30)
4154#define usb_rcvaddr0pipe() ((PIPE_CONTROL << 30) | USB_DIR_IN)
4155
Alan Stern4326ed02007-07-30 17:08:43 -04004156static int hub_set_address(struct usb_device *udev, int devnum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004157{
4158 int retval;
Sarah Sharpc6515272009-04-27 19:57:26 -07004159 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004160
Sarah Sharpc6515272009-04-27 19:57:26 -07004161 /*
4162 * The host controller will choose the device address,
4163 * instead of the core having chosen it earlier
4164 */
4165 if (!hcd->driver->address_device && devnum <= 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004166 return -EINVAL;
4167 if (udev->state == USB_STATE_ADDRESS)
4168 return 0;
4169 if (udev->state != USB_STATE_DEFAULT)
4170 return -EINVAL;
Andiry Xuc8d4af82010-10-14 07:22:51 -07004171 if (hcd->driver->address_device)
Sarah Sharpc6515272009-04-27 19:57:26 -07004172 retval = hcd->driver->address_device(hcd, udev);
Andiry Xuc8d4af82010-10-14 07:22:51 -07004173 else
Sarah Sharpc6515272009-04-27 19:57:26 -07004174 retval = usb_control_msg(udev, usb_sndaddr0pipe(),
4175 USB_REQ_SET_ADDRESS, 0, devnum, 0,
4176 NULL, 0, USB_CTRL_SET_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004177 if (retval == 0) {
Alan Stern3b29b682011-02-22 09:53:41 -05004178 update_devnum(udev, devnum);
David Vrabel4953d142008-04-08 13:24:46 -07004179 /* Device now using proper address. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004180 usb_set_device_state(udev, USB_STATE_ADDRESS);
Inaky Perez-Gonzalezfc721f52008-04-08 13:24:46 -07004181 usb_ep0_reinit(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004182 }
4183 return retval;
4184}
4185
Mathias Nyman890dae82013-09-30 17:26:31 +03004186/*
4187 * There are reports of USB 3.0 devices that say they support USB 2.0 Link PM
4188 * when they're plugged into a USB 2.0 port, but they don't work when LPM is
4189 * enabled.
4190 *
4191 * Only enable USB 2.0 Link PM if the port is internal (hardwired), or the
4192 * device says it supports the new USB 2.0 Link PM errata by setting the BESL
4193 * support bit in the BOS descriptor.
4194 */
4195static void hub_set_initial_usb2_lpm_policy(struct usb_device *udev)
4196{
Dan Williamsd99f6b42014-05-20 18:08:17 -07004197 struct usb_hub *hub = usb_hub_to_struct_hub(udev->parent);
4198 int connect_type = USB_PORT_CONNECT_TYPE_UNKNOWN;
Mathias Nyman890dae82013-09-30 17:26:31 +03004199
4200 if (!udev->usb2_hw_lpm_capable)
4201 return;
4202
Dan Williamsd99f6b42014-05-20 18:08:17 -07004203 if (hub)
4204 connect_type = hub->ports[udev->portnum - 1]->connect_type;
Mathias Nyman890dae82013-09-30 17:26:31 +03004205
Bjørn Mork23c05822014-02-27 14:23:55 +01004206 if ((udev->bos->ext_cap->bmAttributes & cpu_to_le32(USB_BESL_SUPPORT)) ||
Mathias Nyman890dae82013-09-30 17:26:31 +03004207 connect_type == USB_PORT_CONNECT_TYPE_HARD_WIRED) {
4208 udev->usb2_hw_lpm_allowed = 1;
4209 usb_set_usb2_hardware_lpm(udev, 1);
4210 }
4211}
4212
Dan Williams48fc7db2013-12-05 17:07:27 -08004213static int hub_enable_device(struct usb_device *udev)
4214{
4215 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
4216
4217 if (!hcd->driver->enable_device)
4218 return 0;
4219 if (udev->state == USB_STATE_ADDRESS)
4220 return 0;
4221 if (udev->state != USB_STATE_DEFAULT)
4222 return -EINVAL;
4223
4224 return hcd->driver->enable_device(hcd, udev);
4225}
4226
Linus Torvalds1da177e2005-04-16 15:20:36 -07004227/* Reset device, (re)assign address, get device descriptor.
4228 * Device connection must be stable, no more debouncing needed.
4229 * Returns device in USB_STATE_ADDRESS, except on error.
4230 *
4231 * If this is called for an already-existing device (as part of
Dan Williams5c79a1e2014-05-20 18:09:26 -07004232 * usb_reset_and_verify_device), the caller must own the device lock and
4233 * the port lock. For a newly detected device that is not accessible
4234 * through any global pointers, it's not necessary to lock the device,
4235 * but it is still necessary to lock the port.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004236 */
4237static int
Chase Metzger039b3302015-08-18 20:36:58 -07004238hub_port_init(struct usb_hub *hub, struct usb_device *udev, int port1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004239 int retry_counter)
4240{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004241 struct usb_device *hdev = hub->hdev;
Sarah Sharpe7b77172009-04-27 19:54:26 -07004242 struct usb_hcd *hcd = bus_to_hcd(hdev->bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004243 int i, j, retval;
4244 unsigned delay = HUB_SHORT_RESET_TIME;
4245 enum usb_device_speed oldspeed = udev->speed;
Michal Nazarewicze538dfd2011-08-30 17:11:19 +02004246 const char *speed;
Alan Stern4326ed02007-07-30 17:08:43 -04004247 int devnum = udev->devnum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004248
4249 /* root hub ports have a slightly longer reset period
4250 * (from USB 2.0 spec, section 7.1.7.5)
4251 */
4252 if (!hdev->parent) {
4253 delay = HUB_ROOT_RESET_TIME;
4254 if (port1 == hdev->bus->otg_port)
4255 hdev->bus->b_hnp_enable = 0;
4256 }
4257
4258 /* Some low speed devices have problems with the quick delay, so */
4259 /* be a bit pessimistic with those devices. RHbug #23670 */
4260 if (oldspeed == USB_SPEED_LOW)
4261 delay = HUB_LONG_RESET_TIME;
4262
Todd E Brandt6fecd4f2014-05-19 10:55:32 -07004263 mutex_lock(&hdev->bus->usb_address0_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004264
Luben Tuikov07194ab2011-02-11 11:33:10 -08004265 /* Reset the device; full speed may morph to high speed */
4266 /* FIXME a USB 2.0 device may morph into SuperSpeed on reset. */
Andiry Xu75d7cf72011-09-13 16:41:11 -07004267 retval = hub_port_reset(hub, port1, udev, delay, false);
Luben Tuikov07194ab2011-02-11 11:33:10 -08004268 if (retval < 0) /* error or disconnect */
4269 goto fail;
4270 /* success, speed is known */
4271
Linus Torvalds1da177e2005-04-16 15:20:36 -07004272 retval = -ENODEV;
4273
4274 if (oldspeed != USB_SPEED_UNKNOWN && oldspeed != udev->speed) {
4275 dev_dbg(&udev->dev, "device reset changed speed!\n");
4276 goto fail;
4277 }
4278 oldspeed = udev->speed;
Alan Stern4326ed02007-07-30 17:08:43 -04004279
Linus Torvalds1da177e2005-04-16 15:20:36 -07004280 /* USB 2.0 section 5.5.3 talks about ep0 maxpacket ...
4281 * it's fixed size except for full speed devices.
Inaky Perez-Gonzalez5bb6e0a2006-08-25 19:35:30 -07004282 * For Wireless USB devices, ep0 max packet is always 512 (tho
4283 * reported as 0xff in the device descriptor). WUSB1.0[4.8.1].
Linus Torvalds1da177e2005-04-16 15:20:36 -07004284 */
4285 switch (udev->speed) {
Sarah Sharp6b403b02009-04-27 19:54:10 -07004286 case USB_SPEED_SUPER:
Greg Kroah-Hartman551cdbb2010-01-14 11:08:04 -08004287 case USB_SPEED_WIRELESS: /* fixed at 512 */
Harvey Harrison551509d2009-02-11 14:11:36 -08004288 udev->ep0.desc.wMaxPacketSize = cpu_to_le16(512);
Inaky Perez-Gonzalez5bb6e0a2006-08-25 19:35:30 -07004289 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004290 case USB_SPEED_HIGH: /* fixed at 64 */
Harvey Harrison551509d2009-02-11 14:11:36 -08004291 udev->ep0.desc.wMaxPacketSize = cpu_to_le16(64);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004292 break;
4293 case USB_SPEED_FULL: /* 8, 16, 32, or 64 */
4294 /* to determine the ep0 maxpacket size, try to read
4295 * the device descriptor to get bMaxPacketSize0 and
4296 * then correct our initial guess.
4297 */
Harvey Harrison551509d2009-02-11 14:11:36 -08004298 udev->ep0.desc.wMaxPacketSize = cpu_to_le16(64);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004299 break;
4300 case USB_SPEED_LOW: /* fixed at 8 */
Harvey Harrison551509d2009-02-11 14:11:36 -08004301 udev->ep0.desc.wMaxPacketSize = cpu_to_le16(8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004302 break;
4303 default:
4304 goto fail;
4305 }
Michal Nazarewicze538dfd2011-08-30 17:11:19 +02004306
4307 if (udev->speed == USB_SPEED_WIRELESS)
4308 speed = "variable speed Wireless";
4309 else
4310 speed = usb_speed_string(udev->speed);
4311
Sarah Sharpc6515272009-04-27 19:57:26 -07004312 if (udev->speed != USB_SPEED_SUPER)
4313 dev_info(&udev->dev,
Michal Nazarewicze538dfd2011-08-30 17:11:19 +02004314 "%s %s USB device number %d using %s\n",
4315 (udev->config) ? "reset" : "new", speed,
Alan Stern3b29b682011-02-22 09:53:41 -05004316 devnum, udev->bus->controller->driver->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004317
4318 /* Set up TT records, if needed */
4319 if (hdev->tt) {
4320 udev->tt = hdev->tt;
4321 udev->ttport = hdev->ttport;
4322 } else if (udev->speed != USB_SPEED_HIGH
4323 && hdev->speed == USB_SPEED_HIGH) {
Alan Sternd199c962011-01-31 10:56:37 -05004324 if (!hub->tt.hub) {
4325 dev_err(&udev->dev, "parent hub has no TT\n");
4326 retval = -EINVAL;
4327 goto fail;
4328 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004329 udev->tt = &hub->tt;
4330 udev->ttport = port1;
4331 }
Matthias Beyer469271f2013-10-10 23:41:27 +02004332
Linus Torvalds1da177e2005-04-16 15:20:36 -07004333 /* Why interleave GET_DESCRIPTOR and SET_ADDRESS this way?
4334 * Because device hardware and firmware is sometimes buggy in
4335 * this area, and this is how Linux has done it for ages.
4336 * Change it cautiously.
4337 *
Dan Williams48fc7db2013-12-05 17:07:27 -08004338 * NOTE: If use_new_scheme() is true we will start by issuing
Linus Torvalds1da177e2005-04-16 15:20:36 -07004339 * a 64-byte GET_DESCRIPTOR request. This is what Windows does,
4340 * so it may help with some non-standards-compliant devices.
4341 * Otherwise we start with SET_ADDRESS and then try to read the
4342 * first 8 bytes of the device descriptor to get the ep0 maxpacket
4343 * value.
4344 */
4345 for (i = 0; i < GET_DESCRIPTOR_TRIES; (++i, msleep(100))) {
Dan Williams48fc7db2013-12-05 17:07:27 -08004346 bool did_new_scheme = false;
4347
4348 if (use_new_scheme(udev, retry_counter)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004349 struct usb_device_descriptor *buf;
4350 int r = 0;
4351
Dan Williams48fc7db2013-12-05 17:07:27 -08004352 did_new_scheme = true;
4353 retval = hub_enable_device(udev);
Oliver Neukum938569e2014-02-27 10:57:10 +01004354 if (retval < 0) {
4355 dev_err(&udev->dev,
4356 "hub failed to enable device, error %d\n",
4357 retval);
Dan Williams48fc7db2013-12-05 17:07:27 -08004358 goto fail;
Oliver Neukum938569e2014-02-27 10:57:10 +01004359 }
Dan Williams48fc7db2013-12-05 17:07:27 -08004360
Linus Torvalds1da177e2005-04-16 15:20:36 -07004361#define GET_DESCRIPTOR_BUFSIZE 64
4362 buf = kmalloc(GET_DESCRIPTOR_BUFSIZE, GFP_NOIO);
4363 if (!buf) {
4364 retval = -ENOMEM;
4365 continue;
4366 }
4367
Alan Sternb89ee192007-05-11 10:19:04 -04004368 /* Retry on all errors; some devices are flakey.
4369 * 255 is for WUSB devices, we actually need to use
4370 * 512 (WUSB1.0[4.8.1]).
Linus Torvalds1da177e2005-04-16 15:20:36 -07004371 */
4372 for (j = 0; j < 3; ++j) {
4373 buf->bMaxPacketSize0 = 0;
4374 r = usb_control_msg(udev, usb_rcvaddr0pipe(),
4375 USB_REQ_GET_DESCRIPTOR, USB_DIR_IN,
4376 USB_DT_DEVICE << 8, 0,
4377 buf, GET_DESCRIPTOR_BUFSIZE,
Jaroslav Kyselafd7c5192008-10-10 16:24:45 +02004378 initial_descriptor_timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004379 switch (buf->bMaxPacketSize0) {
Inaky Perez-Gonzalez5bb6e0a2006-08-25 19:35:30 -07004380 case 8: case 16: case 32: case 64: case 255:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004381 if (buf->bDescriptorType ==
4382 USB_DT_DEVICE) {
4383 r = 0;
4384 break;
4385 }
4386 /* FALL THROUGH */
4387 default:
4388 if (r == 0)
4389 r = -EPROTO;
4390 break;
4391 }
4392 if (r == 0)
4393 break;
4394 }
4395 udev->descriptor.bMaxPacketSize0 =
4396 buf->bMaxPacketSize0;
4397 kfree(buf);
4398
Andiry Xu75d7cf72011-09-13 16:41:11 -07004399 retval = hub_port_reset(hub, port1, udev, delay, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004400 if (retval < 0) /* error or disconnect */
4401 goto fail;
4402 if (oldspeed != udev->speed) {
4403 dev_dbg(&udev->dev,
4404 "device reset changed speed!\n");
4405 retval = -ENODEV;
4406 goto fail;
4407 }
4408 if (r) {
Alan Sterne9e88fb2013-03-27 16:14:01 -04004409 if (r != -ENODEV)
4410 dev_err(&udev->dev, "device descriptor read/64, error %d\n",
4411 r);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004412 retval = -EMSGSIZE;
4413 continue;
4414 }
4415#undef GET_DESCRIPTOR_BUFSIZE
4416 }
4417
Matthias Beyer469271f2013-10-10 23:41:27 +02004418 /*
4419 * If device is WUSB, we already assigned an
4420 * unauthorized address in the Connect Ack sequence;
4421 * authorization will assign the final address.
4422 */
Sarah Sharpc6515272009-04-27 19:57:26 -07004423 if (udev->wusb == 0) {
Inaky Perez-Gonzalez6c529cd2008-04-08 13:24:46 -07004424 for (j = 0; j < SET_ADDRESS_TRIES; ++j) {
4425 retval = hub_set_address(udev, devnum);
4426 if (retval >= 0)
4427 break;
4428 msleep(200);
4429 }
4430 if (retval < 0) {
Alan Sterne9e88fb2013-03-27 16:14:01 -04004431 if (retval != -ENODEV)
4432 dev_err(&udev->dev, "device not accepting address %d, error %d\n",
4433 devnum, retval);
Inaky Perez-Gonzalez6c529cd2008-04-08 13:24:46 -07004434 goto fail;
4435 }
Sarah Sharpc6515272009-04-27 19:57:26 -07004436 if (udev->speed == USB_SPEED_SUPER) {
4437 devnum = udev->devnum;
4438 dev_info(&udev->dev,
Alan Stern3b29b682011-02-22 09:53:41 -05004439 "%s SuperSpeed USB device number %d using %s\n",
Sarah Sharpc6515272009-04-27 19:57:26 -07004440 (udev->config) ? "reset" : "new",
Alan Stern3b29b682011-02-22 09:53:41 -05004441 devnum, udev->bus->controller->driver->name);
Sarah Sharpc6515272009-04-27 19:57:26 -07004442 }
Inaky Perez-Gonzalez6c529cd2008-04-08 13:24:46 -07004443
4444 /* cope with hardware quirkiness:
4445 * - let SET_ADDRESS settle, some device hardware wants it
4446 * - read ep0 maxpacket even for high and low speed,
4447 */
4448 msleep(10);
Dan Williams48fc7db2013-12-05 17:07:27 -08004449 /* use_new_scheme() checks the speed which may have
4450 * changed since the initial look so we cache the result
4451 * in did_new_scheme
4452 */
4453 if (did_new_scheme)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004454 break;
Matthias Beyer469271f2013-10-10 23:41:27 +02004455 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004456
4457 retval = usb_get_device_descriptor(udev, 8);
4458 if (retval < 8) {
Alan Sterne9e88fb2013-03-27 16:14:01 -04004459 if (retval != -ENODEV)
4460 dev_err(&udev->dev,
Wu Fengguangb9cef6c2008-12-15 15:32:01 +08004461 "device descriptor read/8, error %d\n",
4462 retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004463 if (retval >= 0)
4464 retval = -EMSGSIZE;
4465 } else {
4466 retval = 0;
4467 break;
4468 }
4469 }
4470 if (retval)
4471 goto fail;
4472
Elric Fud8aec3d2012-03-26 21:16:02 +08004473 /*
4474 * Some superspeed devices have finished the link training process
4475 * and attached to a superspeed hub port, but the device descriptor
4476 * got from those devices show they aren't superspeed devices. Warm
4477 * reset the port attached by the devices can fix them.
4478 */
4479 if ((udev->speed == USB_SPEED_SUPER) &&
4480 (le16_to_cpu(udev->descriptor.bcdUSB) < 0x0300)) {
4481 dev_err(&udev->dev, "got a wrong device descriptor, "
4482 "warm reset device\n");
4483 hub_port_reset(hub, port1, udev,
4484 HUB_BH_RESET_TIME, true);
4485 retval = -EINVAL;
4486 goto fail;
4487 }
4488
Sarah Sharp6b403b02009-04-27 19:54:10 -07004489 if (udev->descriptor.bMaxPacketSize0 == 0xff ||
4490 udev->speed == USB_SPEED_SUPER)
4491 i = 512;
4492 else
4493 i = udev->descriptor.bMaxPacketSize0;
Kuninori Morimoto29cc8892011-08-23 03:12:03 -07004494 if (usb_endpoint_maxp(&udev->ep0.desc) != i) {
Alan Stern56626a72010-10-14 15:25:21 -04004495 if (udev->speed == USB_SPEED_LOW ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07004496 !(i == 8 || i == 16 || i == 32 || i == 64)) {
Alan Stern56626a72010-10-14 15:25:21 -04004497 dev_err(&udev->dev, "Invalid ep0 maxpacket: %d\n", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004498 retval = -EMSGSIZE;
4499 goto fail;
4500 }
Alan Stern56626a72010-10-14 15:25:21 -04004501 if (udev->speed == USB_SPEED_FULL)
4502 dev_dbg(&udev->dev, "ep0 maxpacket = %d\n", i);
4503 else
4504 dev_warn(&udev->dev, "Using ep0 maxpacket: %d\n", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004505 udev->ep0.desc.wMaxPacketSize = cpu_to_le16(i);
Inaky Perez-Gonzalezfc721f52008-04-08 13:24:46 -07004506 usb_ep0_reinit(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004507 }
Matthias Beyer469271f2013-10-10 23:41:27 +02004508
Linus Torvalds1da177e2005-04-16 15:20:36 -07004509 retval = usb_get_device_descriptor(udev, USB_DT_DEVICE_SIZE);
4510 if (retval < (signed)sizeof(udev->descriptor)) {
Alan Sterne9e88fb2013-03-27 16:14:01 -04004511 if (retval != -ENODEV)
4512 dev_err(&udev->dev, "device descriptor read/all, error %d\n",
4513 retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004514 if (retval >= 0)
4515 retval = -ENOMSG;
4516 goto fail;
4517 }
4518
Alan Sternad87e032015-12-10 15:27:21 -05004519 usb_detect_quirks(udev);
4520
Andiry Xu1ff4df52011-09-23 14:19:48 -07004521 if (udev->wusb == 0 && le16_to_cpu(udev->descriptor.bcdUSB) >= 0x0201) {
4522 retval = usb_get_bos_descriptor(udev);
Sarah Sharp51e0a012012-02-20 12:02:19 -08004523 if (!retval) {
Sarah Sharpd9b20992012-02-20 08:31:26 -08004524 udev->lpm_capable = usb_device_supports_lpm(udev);
Sarah Sharp51e0a012012-02-20 12:02:19 -08004525 usb_set_lpm_parameters(udev);
4526 }
Andiry Xu1ff4df52011-09-23 14:19:48 -07004527 }
Andiry Xu3148bf02011-09-23 14:19:47 -07004528
Linus Torvalds1da177e2005-04-16 15:20:36 -07004529 retval = 0;
Alek Du48f24972010-06-04 15:47:55 +08004530 /* notify HCD that we have a device connected and addressed */
4531 if (hcd->driver->update_device)
4532 hcd->driver->update_device(hcd, udev);
Mathias Nyman890dae82013-09-30 17:26:31 +03004533 hub_set_initial_usb2_lpm_policy(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004534fail:
Alan Stern4326ed02007-07-30 17:08:43 -04004535 if (retval) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004536 hub_port_disable(hub, port1, 0);
Alan Stern3b29b682011-02-22 09:53:41 -05004537 update_devnum(udev, devnum); /* for disconnect processing */
Alan Stern4326ed02007-07-30 17:08:43 -04004538 }
Todd E Brandt6fecd4f2014-05-19 10:55:32 -07004539 mutex_unlock(&hdev->bus->usb_address0_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004540 return retval;
4541}
4542
4543static void
Chase Metzger039b3302015-08-18 20:36:58 -07004544check_highspeed(struct usb_hub *hub, struct usb_device *udev, int port1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004545{
4546 struct usb_qualifier_descriptor *qual;
4547 int status;
4548
Johan Hovold2a159382014-08-25 17:51:26 +02004549 if (udev->quirks & USB_QUIRK_DEVICE_QUALIFIER)
4550 return;
4551
Chase Metzger039b3302015-08-18 20:36:58 -07004552 qual = kmalloc(sizeof *qual, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004553 if (qual == NULL)
4554 return;
4555
Chase Metzger039b3302015-08-18 20:36:58 -07004556 status = usb_get_descriptor(udev, USB_DT_DEVICE_QUALIFIER, 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004557 qual, sizeof *qual);
4558 if (status == sizeof *qual) {
4559 dev_info(&udev->dev, "not running at top speed; "
4560 "connect to a high speed hub\n");
4561 /* hub LEDs are probably harder to miss than syslog */
4562 if (hub->has_indicators) {
4563 hub->indicator[port1-1] = INDICATOR_GREEN_BLINK;
Shaibal Dutta22f6a0f2014-02-01 19:16:46 -08004564 queue_delayed_work(system_power_efficient_wq,
4565 &hub->leds, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004566 }
4567 }
Jesper Juhl1bc3c9e2005-04-18 17:39:34 -07004568 kfree(qual);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004569}
4570
4571static unsigned
Chase Metzger039b3302015-08-18 20:36:58 -07004572hub_power_remaining(struct usb_hub *hub)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004573{
4574 struct usb_device *hdev = hub->hdev;
4575 int remaining;
Alan Stern55c52712005-11-23 12:03:12 -05004576 int port1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004577
Alan Stern55c52712005-11-23 12:03:12 -05004578 if (!hub->limited_power)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004579 return 0;
4580
Alan Stern55c52712005-11-23 12:03:12 -05004581 remaining = hdev->bus_mA - hub->descriptor->bHubContrCurrent;
4582 for (port1 = 1; port1 <= hdev->maxchild; ++port1) {
Dan Williamsd99f6b42014-05-20 18:08:17 -07004583 struct usb_port *port_dev = hub->ports[port1 - 1];
4584 struct usb_device *udev = port_dev->child;
4585 unsigned unit_load;
4586 int delta;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004587
4588 if (!udev)
4589 continue;
Sebastian Andrzej Siewior430ee582012-12-18 15:25:47 +01004590 if (hub_is_superspeed(udev))
4591 unit_load = 150;
4592 else
4593 unit_load = 100;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004594
Sebastian Andrzej Siewior430ee582012-12-18 15:25:47 +01004595 /*
4596 * Unconfigured devices may not use more than one unit load,
4597 * or 8mA for OTG ports
4598 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004599 if (udev->actconfig)
Sebastian Andrzej Siewior8d8479d2012-12-18 15:25:46 +01004600 delta = usb_get_max_power(udev, udev->actconfig);
Alan Stern55c52712005-11-23 12:03:12 -05004601 else if (port1 != udev->bus->otg_port || hdev->parent)
Sebastian Andrzej Siewior430ee582012-12-18 15:25:47 +01004602 delta = unit_load;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004603 else
Alan Stern55c52712005-11-23 12:03:12 -05004604 delta = 8;
4605 if (delta > hub->mA_per_port)
Dan Williamsd99f6b42014-05-20 18:08:17 -07004606 dev_warn(&port_dev->dev, "%dmA is over %umA budget!\n",
4607 delta, hub->mA_per_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004608 remaining -= delta;
4609 }
4610 if (remaining < 0) {
Alan Stern55c52712005-11-23 12:03:12 -05004611 dev_warn(hub->intfdev, "%dmA over power budget!\n",
Matthias Beyer469271f2013-10-10 23:41:27 +02004612 -remaining);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004613 remaining = 0;
4614 }
4615 return remaining;
4616}
4617
Dan Williamsaf376a42014-05-20 18:09:15 -07004618static void hub_port_connect(struct usb_hub *hub, int port1, u16 portstatus,
4619 u16 portchange)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004620{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004621 int status, i;
Sebastian Andrzej Siewior430ee582012-12-18 15:25:47 +01004622 unsigned unit_load;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004623 struct usb_device *hdev = hub->hdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004624 struct usb_hcd *hcd = bus_to_hcd(hdev->bus);
Dan Williamsd99f6b42014-05-20 18:08:17 -07004625 struct usb_port *port_dev = hub->ports[port1 - 1];
Dan Williamsaf376a42014-05-20 18:09:15 -07004626 struct usb_device *udev = port_dev->child;
Oliver Neukum5ee0f802014-07-14 15:39:49 +02004627 static int unreliable_port = -1;
Alan Stern8808f002008-04-28 11:06:55 -04004628
Alan Stern24618b02008-04-28 11:06:28 -04004629 /* Disconnect any existing devices under this port */
Peter Chenb76baa82012-11-09 09:44:43 +08004630 if (udev) {
Peter Chenb2108f12014-11-04 11:14:31 +08004631 if (hcd->usb_phy && !hdev->parent)
Antoine Tenart3d46e732014-09-24 23:05:50 +04004632 usb_phy_notify_disconnect(hcd->usb_phy, udev->speed);
Dan Williamsd99f6b42014-05-20 18:08:17 -07004633 usb_disconnect(&port_dev->child);
Peter Chenb76baa82012-11-09 09:44:43 +08004634 }
Alan Stern24618b02008-04-28 11:06:28 -04004635
Alan Stern253e0572009-10-27 15:20:13 -04004636 /* We can forget about a "removed" device when there's a physical
4637 * disconnect or the connect status changes.
4638 */
4639 if (!(portstatus & USB_PORT_STAT_CONNECTION) ||
4640 (portchange & USB_PORT_STAT_C_CONNECTION))
4641 clear_bit(port1, hub->removed_bits);
4642
Alan Stern5257d972008-09-22 14:43:08 -04004643 if (portchange & (USB_PORT_STAT_C_CONNECTION |
4644 USB_PORT_STAT_C_ENABLE)) {
Lan Tianyuad493e52013-01-23 04:26:30 +08004645 status = hub_port_debounce_be_stable(hub, port1);
Alan Stern5257d972008-09-22 14:43:08 -04004646 if (status < 0) {
Oliver Neukum5ee0f802014-07-14 15:39:49 +02004647 if (status != -ENODEV &&
4648 port1 != unreliable_port &&
4649 printk_ratelimit())
Takashi Iwaidd5f5002014-08-19 17:37:55 +02004650 dev_err(&port_dev->dev, "connect-debounce failed\n");
Alan Stern5257d972008-09-22 14:43:08 -04004651 portstatus &= ~USB_PORT_STAT_CONNECTION;
Oliver Neukum5ee0f802014-07-14 15:39:49 +02004652 unreliable_port = port1;
Alan Stern5257d972008-09-22 14:43:08 -04004653 } else {
4654 portstatus = status;
4655 }
4656 }
4657
Alan Stern253e0572009-10-27 15:20:13 -04004658 /* Return now if debouncing failed or nothing is connected or
4659 * the device was "removed".
4660 */
4661 if (!(portstatus & USB_PORT_STAT_CONNECTION) ||
4662 test_bit(port1, hub->removed_bits)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004663
Deepak Dasfbaecff2015-01-21 23:39:58 +05304664 /*
4665 * maybe switch power back on (e.g. root hub was reset)
4666 * but only if the port isn't owned by someone else.
4667 */
Dan Williams9262c192014-05-20 18:08:12 -07004668 if (hub_is_port_power_switchable(hub)
Deepak Dasfbaecff2015-01-21 23:39:58 +05304669 && !port_is_power_on(hub, portstatus)
4670 && !port_dev->port_owner)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004671 set_port_feature(hdev, port1, USB_PORT_FEAT_POWER);
Alan Stern5257d972008-09-22 14:43:08 -04004672
Linus Torvalds1da177e2005-04-16 15:20:36 -07004673 if (portstatus & USB_PORT_STAT_ENABLE)
Matthias Beyer469271f2013-10-10 23:41:27 +02004674 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004675 return;
4676 }
Sebastian Andrzej Siewior430ee582012-12-18 15:25:47 +01004677 if (hub_is_superspeed(hub->hdev))
4678 unit_load = 150;
4679 else
4680 unit_load = 100;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004681
Alan Sterne9e88fb2013-03-27 16:14:01 -04004682 status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004683 for (i = 0; i < SET_CONFIG_TRIES; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004684
4685 /* reallocate for each attempt, since references
4686 * to the previous one can escape in various ways
4687 */
4688 udev = usb_alloc_dev(hdev, hdev->bus, port1);
4689 if (!udev) {
Dan Williamsd99f6b42014-05-20 18:08:17 -07004690 dev_err(&port_dev->dev,
4691 "couldn't allocate usb_device\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004692 goto done;
4693 }
4694
4695 usb_set_device_state(udev, USB_STATE_POWERED);
Matthias Beyer469271f2013-10-10 23:41:27 +02004696 udev->bus_mA = hub->mA_per_port;
Alan Sternb6956ff2006-08-30 15:46:48 -04004697 udev->level = hdev->level + 1;
Inaky Perez-Gonzalez8af548d2008-04-08 13:24:46 -07004698 udev->wusb = hub_is_wusb(hub);
Alan Stern55c52712005-11-23 12:03:12 -05004699
Sarah Sharp131dec32010-12-06 21:00:19 -08004700 /* Only USB 3.0 devices are connected to SuperSpeed hubs. */
4701 if (hub_is_superspeed(hub->hdev))
Sarah Sharpe7b77172009-04-27 19:54:26 -07004702 udev->speed = USB_SPEED_SUPER;
4703 else
4704 udev->speed = USB_SPEED_UNKNOWN;
4705
Alan Stern3b29b682011-02-22 09:53:41 -05004706 choose_devnum(udev);
Andiry Xuc8d4af82010-10-14 07:22:51 -07004707 if (udev->devnum <= 0) {
4708 status = -ENOTCONN; /* Don't retry */
4709 goto loop;
Sarah Sharpc6515272009-04-27 19:57:26 -07004710 }
4711
Sarah Sharpe7b77172009-04-27 19:54:26 -07004712 /* reset (non-USB 3.0 devices) and get descriptor */
Dan Williams5c79a1e2014-05-20 18:09:26 -07004713 usb_lock_port(port_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004714 status = hub_port_init(hub, udev, port1, i);
Dan Williams5c79a1e2014-05-20 18:09:26 -07004715 usb_unlock_port(port_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004716 if (status < 0)
4717 goto loop;
4718
Phil Dibowitz93362a82010-07-22 00:05:01 +02004719 if (udev->quirks & USB_QUIRK_DELAY_INIT)
4720 msleep(1000);
4721
Linus Torvalds1da177e2005-04-16 15:20:36 -07004722 /* consecutive bus-powered hubs aren't reliable; they can
4723 * violate the voltage drop budget. if the new child has
4724 * a "powered" LED, users should notice we didn't enable it
4725 * (without reading syslog), even without per-port LEDs
4726 * on the parent.
4727 */
4728 if (udev->descriptor.bDeviceClass == USB_CLASS_HUB
Sebastian Andrzej Siewior430ee582012-12-18 15:25:47 +01004729 && udev->bus_mA <= unit_load) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004730 u16 devstat;
4731
4732 status = usb_get_status(udev, USB_RECIP_DEVICE, 0,
4733 &devstat);
Alan Stern15b73362013-07-30 15:35:40 -04004734 if (status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004735 dev_dbg(&udev->dev, "get status %d ?\n", status);
4736 goto loop_disable;
4737 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004738 if ((devstat & (1 << USB_DEVICE_SELF_POWERED)) == 0) {
4739 dev_err(&udev->dev,
4740 "can't connect bus-powered hub "
4741 "to this port\n");
4742 if (hub->has_indicators) {
4743 hub->indicator[port1-1] =
4744 INDICATOR_AMBER_BLINK;
Shaibal Dutta22f6a0f2014-02-01 19:16:46 -08004745 queue_delayed_work(
4746 system_power_efficient_wq,
4747 &hub->leds, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004748 }
4749 status = -ENOTCONN; /* Don't retry */
4750 goto loop_disable;
4751 }
4752 }
Matthias Beyer469271f2013-10-10 23:41:27 +02004753
Linus Torvalds1da177e2005-04-16 15:20:36 -07004754 /* check for devices running slower than they could */
4755 if (le16_to_cpu(udev->descriptor.bcdUSB) >= 0x0200
4756 && udev->speed == USB_SPEED_FULL
4757 && highspeed_hubs != 0)
Chase Metzger039b3302015-08-18 20:36:58 -07004758 check_highspeed(hub, udev, port1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004759
Greg Kroah-Hartmanfa286182012-05-14 09:20:37 -07004760 /* Store the parent's children[] pointer. At this point
Linus Torvalds1da177e2005-04-16 15:20:36 -07004761 * udev becomes globally accessible, although presumably
4762 * no one will look at it until hdev is unlocked.
4763 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004764 status = 0;
4765
Dan Williamsd8521af2014-05-20 18:08:28 -07004766 mutex_lock(&usb_port_peer_mutex);
4767
Linus Torvalds1da177e2005-04-16 15:20:36 -07004768 /* We mustn't add new devices if the parent hub has
4769 * been disconnected; we would race with the
4770 * recursively_mark_NOTATTACHED() routine.
4771 */
4772 spin_lock_irq(&device_state_lock);
4773 if (hdev->state == USB_STATE_NOTATTACHED)
4774 status = -ENOTCONN;
4775 else
Dan Williamsd99f6b42014-05-20 18:08:17 -07004776 port_dev->child = udev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004777 spin_unlock_irq(&device_state_lock);
Dan Williamsd8521af2014-05-20 18:08:28 -07004778 mutex_unlock(&usb_port_peer_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004779
4780 /* Run it through the hoops (find a driver, etc) */
4781 if (!status) {
4782 status = usb_new_device(udev);
4783 if (status) {
Dan Williamsd8521af2014-05-20 18:08:28 -07004784 mutex_lock(&usb_port_peer_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004785 spin_lock_irq(&device_state_lock);
Dan Williamsd99f6b42014-05-20 18:08:17 -07004786 port_dev->child = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004787 spin_unlock_irq(&device_state_lock);
Dan Williamsd8521af2014-05-20 18:08:28 -07004788 mutex_unlock(&usb_port_peer_mutex);
Tony Zheng01ed67d2014-10-17 19:43:02 +08004789 } else {
4790 if (hcd->usb_phy && !hdev->parent)
4791 usb_phy_notify_connect(hcd->usb_phy,
4792 udev->speed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004793 }
4794 }
4795
Linus Torvalds1da177e2005-04-16 15:20:36 -07004796 if (status)
4797 goto loop_disable;
4798
4799 status = hub_power_remaining(hub);
4800 if (status)
Dan Williamsd99f6b42014-05-20 18:08:17 -07004801 dev_dbg(hub->intfdev, "%dmA power budget left\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004802
4803 return;
4804
4805loop_disable:
4806 hub_port_disable(hub, port1, 1);
4807loop:
Inaky Perez-Gonzalezfc721f52008-04-08 13:24:46 -07004808 usb_ep0_reinit(udev);
Alan Stern3b29b682011-02-22 09:53:41 -05004809 release_devnum(udev);
Herbert Xuf7410ce2010-01-10 20:15:03 +11004810 hub_free_dev(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004811 usb_put_dev(udev);
Vikram Panditaffcdc182007-05-25 21:31:07 -07004812 if ((status == -ENOTCONN) || (status == -ENOTSUPP))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004813 break;
4814 }
Alan Stern3a311552008-05-20 16:58:29 -04004815 if (hub->hdev->parent ||
4816 !hcd->driver->port_handed_over ||
Alan Sterne9e88fb2013-03-27 16:14:01 -04004817 !(hcd->driver->port_handed_over)(hcd, port1)) {
4818 if (status != -ENOTCONN && status != -ENODEV)
Dan Williamsd99f6b42014-05-20 18:08:17 -07004819 dev_err(&port_dev->dev,
4820 "unable to enumerate USB device\n");
Alan Sterne9e88fb2013-03-27 16:14:01 -04004821 }
Matthias Beyer469271f2013-10-10 23:41:27 +02004822
Linus Torvalds1da177e2005-04-16 15:20:36 -07004823done:
4824 hub_port_disable(hub, port1, 1);
Balaji Rao90da0962007-11-22 01:58:14 +05304825 if (hcd->driver->relinquish_port && !hub->hdev->parent)
4826 hcd->driver->relinquish_port(hcd, port1);
Dan Williamsaf376a42014-05-20 18:09:15 -07004827
Linus Torvalds1da177e2005-04-16 15:20:36 -07004828}
4829
Dan Williamsaf376a42014-05-20 18:09:15 -07004830/* Handle physical or logical connection change events.
4831 * This routine is called when:
4832 * a port connection-change occurs;
4833 * a port enable-change occurs (often caused by EMI);
4834 * usb_reset_and_verify_device() encounters changed descriptors (as from
4835 * a firmware download)
4836 * caller already locked the hub
4837 */
4838static void hub_port_connect_change(struct usb_hub *hub, int port1,
4839 u16 portstatus, u16 portchange)
Dan Williams5c79a1e2014-05-20 18:09:26 -07004840 __must_hold(&port_dev->status_lock)
Sarah Sharp714b07b2012-01-24 13:53:18 -08004841{
Dan Williamsaf376a42014-05-20 18:09:15 -07004842 struct usb_port *port_dev = hub->ports[port1 - 1];
4843 struct usb_device *udev = port_dev->child;
4844 int status = -ENODEV;
Sarah Sharp714b07b2012-01-24 13:53:18 -08004845
Dan Williamsaf376a42014-05-20 18:09:15 -07004846 dev_dbg(&port_dev->dev, "status %04x, change %04x, %s\n", portstatus,
4847 portchange, portspeed(hub, portstatus));
4848
4849 if (hub->has_indicators) {
4850 set_port_led(hub, port1, HUB_LED_AUTO);
4851 hub->indicator[port1-1] = INDICATOR_AUTO;
Sarah Sharp4ee823b2011-11-14 18:00:01 -08004852 }
4853
Dan Williamsaf376a42014-05-20 18:09:15 -07004854#ifdef CONFIG_USB_OTG
4855 /* during HNP, don't repeat the debounce */
4856 if (hub->hdev->bus->is_b_host)
4857 portchange &= ~(USB_PORT_STAT_C_CONNECTION |
4858 USB_PORT_STAT_C_ENABLE);
4859#endif
Sarah Sharp714b07b2012-01-24 13:53:18 -08004860
Dan Williamsaf376a42014-05-20 18:09:15 -07004861 /* Try to resuscitate an existing device */
4862 if ((portstatus & USB_PORT_STAT_CONNECTION) && udev &&
4863 udev->state != USB_STATE_NOTATTACHED) {
4864 if (portstatus & USB_PORT_STAT_ENABLE) {
4865 status = 0; /* Nothing to do */
Rafael J. Wysockiceb6c9c2014-11-29 23:47:05 +01004866#ifdef CONFIG_PM
Dan Williamsaf376a42014-05-20 18:09:15 -07004867 } else if (udev->state == USB_STATE_SUSPENDED &&
4868 udev->persist_enabled) {
4869 /* For a suspended device, treat this as a
4870 * remote wakeup event.
4871 */
Dan Williams5c79a1e2014-05-20 18:09:26 -07004872 usb_unlock_port(port_dev);
Dan Williamsaf376a42014-05-20 18:09:15 -07004873 status = usb_remote_wakeup(udev);
Dan Williams5c79a1e2014-05-20 18:09:26 -07004874 usb_lock_port(port_dev);
Dan Williamsaf376a42014-05-20 18:09:15 -07004875#endif
4876 } else {
4877 /* Don't resuscitate */;
4878 }
Sarah Sharp714b07b2012-01-24 13:53:18 -08004879 }
Dan Williamsaf376a42014-05-20 18:09:15 -07004880 clear_bit(port1, hub->change_bits);
4881
Dan Williams5c79a1e2014-05-20 18:09:26 -07004882 /* successfully revalidated the connection */
Dan Williamsaf376a42014-05-20 18:09:15 -07004883 if (status == 0)
4884 return;
4885
Dan Williams5c79a1e2014-05-20 18:09:26 -07004886 usb_unlock_port(port_dev);
Dan Williamsaf376a42014-05-20 18:09:15 -07004887 hub_port_connect(hub, port1, portstatus, portchange);
Dan Williams5c79a1e2014-05-20 18:09:26 -07004888 usb_lock_port(port_dev);
Sarah Sharp714b07b2012-01-24 13:53:18 -08004889}
4890
Dan Williamsaf376a42014-05-20 18:09:15 -07004891static void port_event(struct usb_hub *hub, int port1)
Dan Williams5c79a1e2014-05-20 18:09:26 -07004892 __must_hold(&port_dev->status_lock)
Dan Williamsaf376a42014-05-20 18:09:15 -07004893{
Zhuang Jin Can7671bd12015-01-26 23:30:39 +08004894 int connect_change;
Dan Williamsaf376a42014-05-20 18:09:15 -07004895 struct usb_port *port_dev = hub->ports[port1 - 1];
4896 struct usb_device *udev = port_dev->child;
4897 struct usb_device *hdev = hub->hdev;
4898 u16 portstatus, portchange;
4899
4900 connect_change = test_bit(port1, hub->change_bits);
4901 clear_bit(port1, hub->event_bits);
4902 clear_bit(port1, hub->wakeup_bits);
4903
4904 if (hub_port_status(hub, port1, &portstatus, &portchange) < 0)
4905 return;
4906
4907 if (portchange & USB_PORT_STAT_C_CONNECTION) {
4908 usb_clear_port_feature(hdev, port1, USB_PORT_FEAT_C_CONNECTION);
4909 connect_change = 1;
4910 }
4911
4912 if (portchange & USB_PORT_STAT_C_ENABLE) {
4913 if (!connect_change)
4914 dev_dbg(&port_dev->dev, "enable change, status %08x\n",
4915 portstatus);
4916 usb_clear_port_feature(hdev, port1, USB_PORT_FEAT_C_ENABLE);
4917
4918 /*
4919 * EM interference sometimes causes badly shielded USB devices
4920 * to be shutdown by the hub, this hack enables them again.
4921 * Works at least with mouse driver.
4922 */
4923 if (!(portstatus & USB_PORT_STAT_ENABLE)
4924 && !connect_change && udev) {
4925 dev_err(&port_dev->dev, "disabled by hub (EMI?), re-enabling...\n");
4926 connect_change = 1;
4927 }
4928 }
4929
4930 if (portchange & USB_PORT_STAT_C_OVERCURRENT) {
4931 u16 status = 0, unused;
4932
4933 dev_dbg(&port_dev->dev, "over-current change\n");
4934 usb_clear_port_feature(hdev, port1,
4935 USB_PORT_FEAT_C_OVER_CURRENT);
4936 msleep(100); /* Cool down */
4937 hub_power_on(hub, true);
4938 hub_port_status(hub, port1, &status, &unused);
4939 if (status & USB_PORT_STAT_OVERCURRENT)
4940 dev_err(&port_dev->dev, "over-current condition\n");
4941 }
4942
4943 if (portchange & USB_PORT_STAT_C_RESET) {
4944 dev_dbg(&port_dev->dev, "reset change\n");
4945 usb_clear_port_feature(hdev, port1, USB_PORT_FEAT_C_RESET);
4946 }
4947 if ((portchange & USB_PORT_STAT_C_BH_RESET)
4948 && hub_is_superspeed(hdev)) {
4949 dev_dbg(&port_dev->dev, "warm reset change\n");
4950 usb_clear_port_feature(hdev, port1,
4951 USB_PORT_FEAT_C_BH_PORT_RESET);
4952 }
4953 if (portchange & USB_PORT_STAT_C_LINK_STATE) {
4954 dev_dbg(&port_dev->dev, "link state change\n");
4955 usb_clear_port_feature(hdev, port1,
4956 USB_PORT_FEAT_C_PORT_LINK_STATE);
4957 }
4958 if (portchange & USB_PORT_STAT_C_CONFIG_ERROR) {
4959 dev_warn(&port_dev->dev, "config error\n");
4960 usb_clear_port_feature(hdev, port1,
4961 USB_PORT_FEAT_C_PORT_CONFIG_ERROR);
4962 }
4963
Dan Williams097a1552014-05-20 18:09:20 -07004964 /* skip port actions that require the port to be powered on */
4965 if (!pm_runtime_active(&port_dev->dev))
4966 return;
4967
Dan Williamsaf376a42014-05-20 18:09:15 -07004968 if (hub_handle_remote_wakeup(hub, port1, portstatus, portchange))
4969 connect_change = 1;
4970
4971 /*
4972 * Warm reset a USB3 protocol port if it's in
4973 * SS.Inactive state.
4974 */
Dan Williams3cd12f92014-05-29 12:58:46 -07004975 if (hub_port_warm_reset_required(hub, port1, portstatus)) {
Dan Williamsaf376a42014-05-20 18:09:15 -07004976 dev_dbg(&port_dev->dev, "do warm reset\n");
4977 if (!udev || !(portstatus & USB_PORT_STAT_CONNECTION)
4978 || udev->state == USB_STATE_NOTATTACHED) {
4979 if (hub_port_reset(hub, port1, NULL,
4980 HUB_BH_RESET_TIME, true) < 0)
4981 hub_port_disable(hub, port1, 1);
Zhuang Jin Can7671bd12015-01-26 23:30:39 +08004982 } else {
4983 usb_unlock_port(port_dev);
4984 usb_lock_device(udev);
4985 usb_reset_device(udev);
4986 usb_unlock_device(udev);
4987 usb_lock_port(port_dev);
4988 connect_change = 0;
4989 }
Dan Williamsaf376a42014-05-20 18:09:15 -07004990 }
4991
4992 if (connect_change)
4993 hub_port_connect_change(hub, port1, portstatus, portchange);
4994}
4995
Petr Mladek32a695892014-09-19 17:32:21 +02004996static void hub_event(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004997{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004998 struct usb_device *hdev;
4999 struct usb_interface *intf;
5000 struct usb_hub *hub;
5001 struct device *hub_dev;
5002 u16 hubstatus;
5003 u16 hubchange;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005004 int i, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005005
Petr Mladek32a695892014-09-19 17:32:21 +02005006 hub = container_of(work, struct usb_hub, events);
Petr Mladekeb6e2922014-09-19 17:32:20 +02005007 hdev = hub->hdev;
5008 hub_dev = hub->intfdev;
5009 intf = to_usb_interface(hub_dev);
Petr Mladek32a695892014-09-19 17:32:21 +02005010
Petr Mladekeb6e2922014-09-19 17:32:20 +02005011 dev_dbg(hub_dev, "state %d ports %d chg %04x evt %04x\n",
5012 hdev->state, hdev->maxchild,
5013 /* NOTE: expects max 15 ports... */
5014 (u16) hub->change_bits[0],
5015 (u16) hub->event_bits[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005016
Petr Mladekeb6e2922014-09-19 17:32:20 +02005017 /* Lock the device, then check to see if we were
5018 * disconnected while waiting for the lock to succeed. */
5019 usb_lock_device(hdev);
5020 if (unlikely(hub->disconnected))
Petr Mladek32a695892014-09-19 17:32:21 +02005021 goto out_hdev_lock;
Petr Mladekeb6e2922014-09-19 17:32:20 +02005022
5023 /* If the hub has died, clean up after it */
5024 if (hdev->state == USB_STATE_NOTATTACHED) {
5025 hub->error = -ENODEV;
5026 hub_quiesce(hub, HUB_DISCONNECT);
Petr Mladek32a695892014-09-19 17:32:21 +02005027 goto out_hdev_lock;
Petr Mladekeb6e2922014-09-19 17:32:20 +02005028 }
5029
5030 /* Autoresume */
5031 ret = usb_autopm_get_interface(intf);
5032 if (ret) {
5033 dev_dbg(hub_dev, "Can't autoresume: %d\n", ret);
Petr Mladek32a695892014-09-19 17:32:21 +02005034 goto out_hdev_lock;
Petr Mladekeb6e2922014-09-19 17:32:20 +02005035 }
5036
5037 /* If this is an inactive hub, do nothing */
5038 if (hub->quiescing)
5039 goto out_autopm;
5040
5041 if (hub->error) {
5042 dev_dbg(hub_dev, "resetting for error %d\n", hub->error);
5043
5044 ret = usb_reset_device(hdev);
Alan Stern40f122f2006-11-09 14:44:33 -05005045 if (ret) {
Petr Mladekeb6e2922014-09-19 17:32:20 +02005046 dev_dbg(hub_dev, "error resetting hub: %d\n", ret);
5047 goto out_autopm;
Alan Stern40f122f2006-11-09 14:44:33 -05005048 }
5049
Petr Mladekeb6e2922014-09-19 17:32:20 +02005050 hub->nerrors = 0;
5051 hub->error = 0;
5052 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005053
Petr Mladekeb6e2922014-09-19 17:32:20 +02005054 /* deal with port status changes */
5055 for (i = 1; i <= hdev->maxchild; i++) {
5056 struct usb_port *port_dev = hub->ports[i - 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07005057
Petr Mladekeb6e2922014-09-19 17:32:20 +02005058 if (test_bit(i, hub->event_bits)
5059 || test_bit(i, hub->change_bits)
5060 || test_bit(i, hub->wakeup_bits)) {
5061 /*
5062 * The get_noresume and barrier ensure that if
5063 * the port was in the process of resuming, we
5064 * flush that work and keep the port active for
5065 * the duration of the port_event(). However,
5066 * if the port is runtime pm suspended
5067 * (powered-off), we leave it in that state, run
5068 * an abbreviated port_event(), and move on.
5069 */
5070 pm_runtime_get_noresume(&port_dev->dev);
5071 pm_runtime_barrier(&port_dev->dev);
5072 usb_lock_port(port_dev);
5073 port_event(hub, i);
5074 usb_unlock_port(port_dev);
5075 pm_runtime_put_sync(&port_dev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005076 }
Petr Mladekeb6e2922014-09-19 17:32:20 +02005077 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005078
Petr Mladekeb6e2922014-09-19 17:32:20 +02005079 /* deal with hub status changes */
5080 if (test_and_clear_bit(0, hub->event_bits) == 0)
5081 ; /* do nothing */
5082 else if (hub_hub_status(hub, &hubstatus, &hubchange) < 0)
5083 dev_err(hub_dev, "get_hub_status failed\n");
5084 else {
5085 if (hubchange & HUB_CHANGE_LOCAL_POWER) {
5086 dev_dbg(hub_dev, "power change\n");
5087 clear_hub_feature(hdev, C_HUB_LOCAL_POWER);
5088 if (hubstatus & HUB_STATUS_LOCAL_POWER)
5089 /* FIXME: Is this always true? */
5090 hub->limited_power = 1;
5091 else
5092 hub->limited_power = 0;
Dan Williamsaf376a42014-05-20 18:09:15 -07005093 }
Petr Mladekeb6e2922014-09-19 17:32:20 +02005094 if (hubchange & HUB_CHANGE_OVERCURRENT) {
5095 u16 status = 0;
5096 u16 unused;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005097
Petr Mladekeb6e2922014-09-19 17:32:20 +02005098 dev_dbg(hub_dev, "over-current change\n");
5099 clear_hub_feature(hdev, C_HUB_OVER_CURRENT);
5100 msleep(500); /* Cool down */
5101 hub_power_on(hub, true);
5102 hub_hub_status(hub, &status, &unused);
5103 if (status & HUB_STATUS_OVERCURRENT)
5104 dev_err(hub_dev, "over-current condition\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005105 }
Petr Mladekeb6e2922014-09-19 17:32:20 +02005106 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005107
Petr Mladekeb6e2922014-09-19 17:32:20 +02005108out_autopm:
5109 /* Balance the usb_autopm_get_interface() above */
5110 usb_autopm_put_interface_no_suspend(intf);
Petr Mladek32a695892014-09-19 17:32:21 +02005111out_hdev_lock:
Petr Mladekeb6e2922014-09-19 17:32:20 +02005112 usb_unlock_device(hdev);
Petr Mladek32a695892014-09-19 17:32:21 +02005113
5114 /* Balance the stuff in kick_hub_wq() and allow autosuspend */
5115 usb_autopm_put_interface(intf);
Petr Mladekeb6e2922014-09-19 17:32:20 +02005116 kref_put(&hub->kref, hub_release);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005117}
5118
Németh Márton1e927d92010-01-10 15:34:53 +01005119static const struct usb_device_id hub_id_table[] = {
Ming Leie6f30de2012-10-24 11:59:24 +08005120 { .match_flags = USB_DEVICE_ID_MATCH_VENDOR
Matthias Beyer469271f2013-10-10 23:41:27 +02005121 | USB_DEVICE_ID_MATCH_INT_CLASS,
Ming Leie6f30de2012-10-24 11:59:24 +08005122 .idVendor = USB_VENDOR_GENESYS_LOGIC,
5123 .bInterfaceClass = USB_CLASS_HUB,
5124 .driver_info = HUB_QUIRK_CHECK_PORT_AUTOSUSPEND},
Linus Torvalds1da177e2005-04-16 15:20:36 -07005125 { .match_flags = USB_DEVICE_ID_MATCH_DEV_CLASS,
5126 .bDeviceClass = USB_CLASS_HUB},
5127 { .match_flags = USB_DEVICE_ID_MATCH_INT_CLASS,
5128 .bInterfaceClass = USB_CLASS_HUB},
5129 { } /* Terminating entry */
5130};
5131
Chase Metzger039b3302015-08-18 20:36:58 -07005132MODULE_DEVICE_TABLE(usb, hub_id_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005133
5134static struct usb_driver hub_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005135 .name = "hub",
5136 .probe = hub_probe,
5137 .disconnect = hub_disconnect,
5138 .suspend = hub_suspend,
5139 .resume = hub_resume,
Alan Sternf07600c2007-05-30 15:38:16 -04005140 .reset_resume = hub_reset_resume,
Alan Stern7de18d82006-06-01 13:37:24 -04005141 .pre_reset = hub_pre_reset,
5142 .post_reset = hub_post_reset,
Andi Kleenc532b292010-06-01 23:04:41 +02005143 .unlocked_ioctl = hub_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005144 .id_table = hub_id_table,
Alan Stern40f122f2006-11-09 14:44:33 -05005145 .supports_autosuspend = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005146};
5147
5148int usb_hub_init(void)
5149{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005150 if (usb_register(&hub_driver) < 0) {
5151 printk(KERN_ERR "%s: can't register hub driver\n",
5152 usbcore_name);
5153 return -1;
5154 }
5155
Petr Mladek32a695892014-09-19 17:32:21 +02005156 /*
5157 * The workqueue needs to be freezable to avoid interfering with
5158 * USB-PERSIST port handover. Otherwise it might see that a full-speed
5159 * device was gone before the EHCI controller had handed its port
5160 * over to the companion full-speed controller.
Petr Mladek32a695892014-09-19 17:32:21 +02005161 */
Petr Mladek638139e2014-09-19 17:32:24 +02005162 hub_wq = alloc_workqueue("usb_hub_wq", WQ_FREEZABLE, 0);
Petr Mladek32a695892014-09-19 17:32:21 +02005163 if (hub_wq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005164 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005165
5166 /* Fall through if kernel_thread failed */
5167 usb_deregister(&hub_driver);
Petr Mladek32a695892014-09-19 17:32:21 +02005168 pr_err("%s: can't allocate workqueue for usb hub\n", usbcore_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005169
5170 return -1;
5171}
5172
5173void usb_hub_cleanup(void)
5174{
Petr Mladek32a695892014-09-19 17:32:21 +02005175 destroy_workqueue(hub_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005176
5177 /*
5178 * Hub resources are freed for us by usb_deregister. It calls
5179 * usb_driver_purge on every device which in turn calls that
5180 * devices disconnect function if it is using this driver.
5181 * The hub_disconnect function takes care of releasing the
5182 * individual hub resources. -greg
5183 */
5184 usb_deregister(&hub_driver);
5185} /* usb_hub_cleanup() */
5186
Alan Sterneb764c42008-03-03 15:16:04 -05005187static int descriptors_changed(struct usb_device *udev,
Xenia Ragiadakoue3376d62013-08-29 21:45:48 +03005188 struct usb_device_descriptor *old_device_descriptor,
5189 struct usb_host_bos *old_bos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005190{
Alan Sterneb764c42008-03-03 15:16:04 -05005191 int changed = 0;
5192 unsigned index;
5193 unsigned serial_len = 0;
5194 unsigned len;
5195 unsigned old_length;
5196 int length;
5197 char *buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005198
Alan Sterneb764c42008-03-03 15:16:04 -05005199 if (memcmp(&udev->descriptor, old_device_descriptor,
5200 sizeof(*old_device_descriptor)) != 0)
5201 return 1;
5202
Xenia Ragiadakoue3376d62013-08-29 21:45:48 +03005203 if ((old_bos && !udev->bos) || (!old_bos && udev->bos))
5204 return 1;
5205 if (udev->bos) {
Xenia Ragiadakoub9a10482013-08-31 04:40:49 +03005206 len = le16_to_cpu(udev->bos->desc->wTotalLength);
5207 if (len != le16_to_cpu(old_bos->desc->wTotalLength))
Xenia Ragiadakoue3376d62013-08-29 21:45:48 +03005208 return 1;
Xenia Ragiadakoub9a10482013-08-31 04:40:49 +03005209 if (memcmp(udev->bos->desc, old_bos->desc, len))
Xenia Ragiadakoue3376d62013-08-29 21:45:48 +03005210 return 1;
5211 }
5212
Alan Sterneb764c42008-03-03 15:16:04 -05005213 /* Since the idVendor, idProduct, and bcdDevice values in the
5214 * device descriptor haven't changed, we will assume the
5215 * Manufacturer and Product strings haven't changed either.
5216 * But the SerialNumber string could be different (e.g., a
5217 * different flash card of the same brand).
5218 */
5219 if (udev->serial)
5220 serial_len = strlen(udev->serial) + 1;
5221
5222 len = serial_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005223 for (index = 0; index < udev->descriptor.bNumConfigurations; index++) {
Alan Sterneb764c42008-03-03 15:16:04 -05005224 old_length = le16_to_cpu(udev->config[index].desc.wTotalLength);
5225 len = max(len, old_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005226 }
Alan Sterneb764c42008-03-03 15:16:04 -05005227
Oliver Neukum0cc1a512008-01-10 10:31:48 +01005228 buf = kmalloc(len, GFP_NOIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005229 if (buf == NULL) {
5230 dev_err(&udev->dev, "no mem to re-read configs after reset\n");
5231 /* assume the worst */
5232 return 1;
5233 }
5234 for (index = 0; index < udev->descriptor.bNumConfigurations; index++) {
Alan Sterneb764c42008-03-03 15:16:04 -05005235 old_length = le16_to_cpu(udev->config[index].desc.wTotalLength);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005236 length = usb_get_descriptor(udev, USB_DT_CONFIG, index, buf,
5237 old_length);
Alan Sterneb764c42008-03-03 15:16:04 -05005238 if (length != old_length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005239 dev_dbg(&udev->dev, "config index %d, error %d\n",
5240 index, length);
Alan Sterneb764c42008-03-03 15:16:04 -05005241 changed = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005242 break;
5243 }
Chase Metzger039b3302015-08-18 20:36:58 -07005244 if (memcmp(buf, udev->rawdescriptors[index], old_length)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005245 != 0) {
5246 dev_dbg(&udev->dev, "config index %d changed (#%d)\n",
Alan Sterneb764c42008-03-03 15:16:04 -05005247 index,
5248 ((struct usb_config_descriptor *) buf)->
5249 bConfigurationValue);
5250 changed = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005251 break;
5252 }
5253 }
Alan Sterneb764c42008-03-03 15:16:04 -05005254
5255 if (!changed && serial_len) {
5256 length = usb_string(udev, udev->descriptor.iSerialNumber,
5257 buf, serial_len);
5258 if (length + 1 != serial_len) {
5259 dev_dbg(&udev->dev, "serial string error %d\n",
5260 length);
5261 changed = 1;
5262 } else if (memcmp(buf, udev->serial, length) != 0) {
5263 dev_dbg(&udev->dev, "serial string changed\n");
5264 changed = 1;
5265 }
5266 }
5267
Linus Torvalds1da177e2005-04-16 15:20:36 -07005268 kfree(buf);
Alan Sterneb764c42008-03-03 15:16:04 -05005269 return changed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005270}
5271
5272/**
Ming Lei742120c2008-06-18 22:00:29 +08005273 * usb_reset_and_verify_device - perform a USB port reset to reinitialize a device
Linus Torvalds1da177e2005-04-16 15:20:36 -07005274 * @udev: device to reset (not in SUSPENDED or NOTATTACHED state)
5275 *
Alan Stern79efa092006-06-01 13:33:42 -04005276 * WARNING - don't use this routine to reset a composite device
5277 * (one with multiple interfaces owned by separate drivers)!
Ming Lei742120c2008-06-18 22:00:29 +08005278 * Use usb_reset_device() instead.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005279 *
5280 * Do a port reset, reassign the device's address, and establish its
5281 * former operating configuration. If the reset fails, or the device's
5282 * descriptors change from their values before the reset, or the original
5283 * configuration and altsettings cannot be restored, a flag will be set
Petr Mladek37ebb542014-09-19 17:32:23 +02005284 * telling hub_wq to pretend the device has been disconnected and then
Linus Torvalds1da177e2005-04-16 15:20:36 -07005285 * re-connected. All drivers will be unbound, and the device will be
5286 * re-enumerated and probed all over again.
5287 *
Yacine Belkadi626f0902013-08-02 20:10:04 +02005288 * Return: 0 if the reset succeeded, -ENODEV if the device has been
Linus Torvalds1da177e2005-04-16 15:20:36 -07005289 * flagged for logical disconnection, or some other negative error code
5290 * if the reset wasn't even attempted.
5291 *
Yacine Belkadi626f0902013-08-02 20:10:04 +02005292 * Note:
Dan Williams5c79a1e2014-05-20 18:09:26 -07005293 * The caller must own the device lock and the port lock, the latter is
5294 * taken by usb_reset_device(). For example, it's safe to use
5295 * usb_reset_device() from a driver probe() routine after downloading
5296 * new firmware. For calls that might not occur during probe(), drivers
5297 * should lock the device using usb_lock_device_for_reset().
Alan Stern6bc6cff2007-05-04 11:53:03 -04005298 *
5299 * Locking exception: This routine may also be called from within an
5300 * autoresume handler. Such usage won't conflict with other tasks
5301 * holding the device lock because these tasks should always call
Dan Williams5c79a1e2014-05-20 18:09:26 -07005302 * usb_autopm_resume_device(), thereby preventing any unwanted
5303 * autoresume. The autoresume handler is expected to have already
5304 * acquired the port lock before calling this routine.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005305 */
Ming Lei742120c2008-06-18 22:00:29 +08005306static int usb_reset_and_verify_device(struct usb_device *udev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005307{
5308 struct usb_device *parent_hdev = udev->parent;
5309 struct usb_hub *parent_hub;
Sarah Sharp3f0479e2009-12-03 09:44:36 -08005310 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005311 struct usb_device_descriptor descriptor = udev->descriptor;
Xenia Ragiadakoue3376d62013-08-29 21:45:48 +03005312 struct usb_host_bos *bos;
Hans de Goede7a7b5622013-11-08 16:37:26 +01005313 int i, j, ret = 0;
Alan Stern12c3da32005-11-23 12:09:52 -05005314 int port1 = udev->portnum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005315
5316 if (udev->state == USB_STATE_NOTATTACHED ||
5317 udev->state == USB_STATE_SUSPENDED) {
5318 dev_dbg(&udev->dev, "device reset not allowed in state %d\n",
5319 udev->state);
5320 return -EINVAL;
5321 }
5322
Dan Williams5c79a1e2014-05-20 18:09:26 -07005323 if (!parent_hdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005324 return -EISDIR;
Dan Williams5c79a1e2014-05-20 18:09:26 -07005325
Lan Tianyuad493e52013-01-23 04:26:30 +08005326 parent_hub = usb_hub_to_struct_hub(parent_hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005327
Sarah Sharpdcc01c02013-09-30 17:26:29 +03005328 /* Disable USB2 hardware LPM.
5329 * It will be re-enabled by the enumeration process.
5330 */
5331 if (udev->usb2_hw_lpm_enabled == 1)
5332 usb_set_usb2_hardware_lpm(udev, 0);
5333
Sarah Sharpf74631e2012-06-25 12:08:08 -07005334 /* Disable LPM and LTM while we reset the device and reinstall the alt
5335 * settings. Device-initiated LPM settings, and system exit latency
5336 * settings are cleared when the device is reset, so we have to set
5337 * them up again.
Sarah Sharp6d1d0512012-07-03 22:49:04 -07005338 */
5339 ret = usb_unlocked_disable_lpm(udev);
5340 if (ret) {
5341 dev_err(&udev->dev, "%s Failed to disable LPM\n.", __func__);
Hans Yang464ad8c2015-12-01 16:54:59 +08005342 goto re_enumerate_no_bos;
Sarah Sharp6d1d0512012-07-03 22:49:04 -07005343 }
Sarah Sharpf74631e2012-06-25 12:08:08 -07005344 ret = usb_disable_ltm(udev);
5345 if (ret) {
5346 dev_err(&udev->dev, "%s Failed to disable LTM\n.",
5347 __func__);
Hans Yang464ad8c2015-12-01 16:54:59 +08005348 goto re_enumerate_no_bos;
Sarah Sharpf74631e2012-06-25 12:08:08 -07005349 }
Sarah Sharp6d1d0512012-07-03 22:49:04 -07005350
Hans Yang464ad8c2015-12-01 16:54:59 +08005351 bos = udev->bos;
5352 udev->bos = NULL;
5353
Linus Torvalds1da177e2005-04-16 15:20:36 -07005354 for (i = 0; i < SET_CONFIG_TRIES; ++i) {
5355
5356 /* ep0 maxpacket size may change; let the HCD know about it.
5357 * Other endpoints will be handled by re-enumeration. */
Inaky Perez-Gonzalezfc721f52008-04-08 13:24:46 -07005358 usb_ep0_reinit(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005359 ret = hub_port_init(parent_hub, udev, port1, i);
Alan Sterndd4dd192007-05-04 11:55:54 -04005360 if (ret >= 0 || ret == -ENOTCONN || ret == -ENODEV)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005361 break;
5362 }
Alan Sternd5cbad42006-08-11 16:52:39 -04005363
Linus Torvalds1da177e2005-04-16 15:20:36 -07005364 if (ret < 0)
5365 goto re_enumerate;
Matthias Beyer469271f2013-10-10 23:41:27 +02005366
Linus Torvalds1da177e2005-04-16 15:20:36 -07005367 /* Device might have changed firmware (DFU or similar) */
Xenia Ragiadakoue3376d62013-08-29 21:45:48 +03005368 if (descriptors_changed(udev, &descriptor, bos)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005369 dev_info(&udev->dev, "device firmware changed\n");
5370 udev->descriptor = descriptor; /* for disconnect() calls */
5371 goto re_enumerate;
Matthias Beyer469271f2013-10-10 23:41:27 +02005372 }
Alan Stern4fe03872009-02-26 10:21:02 -05005373
5374 /* Restore the device's previous configuration */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005375 if (!udev->actconfig)
5376 goto done;
Sarah Sharp3f0479e2009-12-03 09:44:36 -08005377
Sarah Sharpd673bfc2010-10-15 08:55:24 -07005378 mutex_lock(hcd->bandwidth_mutex);
Sarah Sharp3f0479e2009-12-03 09:44:36 -08005379 ret = usb_hcd_alloc_bandwidth(udev, udev->actconfig, NULL, NULL);
5380 if (ret < 0) {
5381 dev_warn(&udev->dev,
5382 "Busted HC? Not enough HCD resources for "
5383 "old configuration.\n");
Sarah Sharpd673bfc2010-10-15 08:55:24 -07005384 mutex_unlock(hcd->bandwidth_mutex);
Sarah Sharp3f0479e2009-12-03 09:44:36 -08005385 goto re_enumerate;
5386 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005387 ret = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
5388 USB_REQ_SET_CONFIGURATION, 0,
5389 udev->actconfig->desc.bConfigurationValue, 0,
5390 NULL, 0, USB_CTRL_SET_TIMEOUT);
5391 if (ret < 0) {
5392 dev_err(&udev->dev,
5393 "can't restore configuration #%d (error=%d)\n",
5394 udev->actconfig->desc.bConfigurationValue, ret);
Sarah Sharpd673bfc2010-10-15 08:55:24 -07005395 mutex_unlock(hcd->bandwidth_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005396 goto re_enumerate;
Matthias Beyer469271f2013-10-10 23:41:27 +02005397 }
Sarah Sharpd673bfc2010-10-15 08:55:24 -07005398 mutex_unlock(hcd->bandwidth_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005399 usb_set_device_state(udev, USB_STATE_CONFIGURED);
5400
Alan Stern4fe03872009-02-26 10:21:02 -05005401 /* Put interfaces back into the same altsettings as before.
5402 * Don't bother to send the Set-Interface request for interfaces
5403 * that were already in altsetting 0; besides being unnecessary,
5404 * many devices can't handle it. Instead just reset the host-side
5405 * endpoint state.
5406 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005407 for (i = 0; i < udev->actconfig->desc.bNumInterfaces; i++) {
Sarah Sharp3f0479e2009-12-03 09:44:36 -08005408 struct usb_host_config *config = udev->actconfig;
5409 struct usb_interface *intf = config->interface[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07005410 struct usb_interface_descriptor *desc;
5411
Linus Torvalds1da177e2005-04-16 15:20:36 -07005412 desc = &intf->cur_altsetting->desc;
Alan Stern4fe03872009-02-26 10:21:02 -05005413 if (desc->bAlternateSetting == 0) {
5414 usb_disable_interface(udev, intf, true);
5415 usb_enable_interface(udev, intf, true);
5416 ret = 0;
5417 } else {
Sarah Sharp04a723e2010-01-06 10:16:51 -08005418 /* Let the bandwidth allocation function know that this
5419 * device has been reset, and it will have to use
5420 * alternate setting 0 as the current alternate setting.
Sarah Sharp3f0479e2009-12-03 09:44:36 -08005421 */
Sarah Sharp04a723e2010-01-06 10:16:51 -08005422 intf->resetting_device = 1;
Alan Stern4fe03872009-02-26 10:21:02 -05005423 ret = usb_set_interface(udev, desc->bInterfaceNumber,
5424 desc->bAlternateSetting);
Sarah Sharp04a723e2010-01-06 10:16:51 -08005425 intf->resetting_device = 0;
Alan Stern4fe03872009-02-26 10:21:02 -05005426 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005427 if (ret < 0) {
5428 dev_err(&udev->dev, "failed to restore interface %d "
5429 "altsetting %d (error=%d)\n",
5430 desc->bInterfaceNumber,
5431 desc->bAlternateSetting,
5432 ret);
5433 goto re_enumerate;
5434 }
Hans de Goede7a7b5622013-11-08 16:37:26 +01005435 /* Resetting also frees any allocated streams */
5436 for (j = 0; j < intf->cur_altsetting->desc.bNumEndpoints; j++)
5437 intf->cur_altsetting->endpoint[j].streams = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005438 }
5439
5440done:
Sarah Sharpf74631e2012-06-25 12:08:08 -07005441 /* Now that the alt settings are re-installed, enable LTM and LPM. */
Sarah Sharpde68bab2013-09-30 17:26:28 +03005442 usb_set_usb2_hardware_lpm(udev, 1);
Alan Stern78d9a482008-06-23 16:00:40 -04005443 usb_unlocked_enable_lpm(udev);
Sarah Sharpf74631e2012-06-25 12:08:08 -07005444 usb_enable_ltm(udev);
Xenia Ragiadakoue3376d62013-08-29 21:45:48 +03005445 usb_release_bos_descriptor(udev);
5446 udev->bos = bos;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005447 return 0;
Matthias Beyer469271f2013-10-10 23:41:27 +02005448
Linus Torvalds1da177e2005-04-16 15:20:36 -07005449re_enumerate:
Xenia Ragiadakoue3376d62013-08-29 21:45:48 +03005450 usb_release_bos_descriptor(udev);
5451 udev->bos = bos;
Hans Yang464ad8c2015-12-01 16:54:59 +08005452re_enumerate_no_bos:
5453 /* LPM state doesn't matter when we're about to destroy the device. */
5454 hub_port_logical_disconnect(parent_hub, port1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005455 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005456}
5457
5458/**
5459 * usb_reset_device - warn interface drivers and perform a USB port reset
5460 * @udev: device to reset (not in SUSPENDED or NOTATTACHED state)
5461 *
Alan Stern79efa092006-06-01 13:33:42 -04005462 * Warns all drivers bound to registered interfaces (using their pre_reset
5463 * method), performs the port reset, and then lets the drivers know that
Ming Lei742120c2008-06-18 22:00:29 +08005464 * the reset is over (using their post_reset method).
Alan Stern79efa092006-06-01 13:33:42 -04005465 *
Yacine Belkadi626f0902013-08-02 20:10:04 +02005466 * Return: The same as for usb_reset_and_verify_device().
Alan Stern79efa092006-06-01 13:33:42 -04005467 *
Yacine Belkadi626f0902013-08-02 20:10:04 +02005468 * Note:
Alan Stern79efa092006-06-01 13:33:42 -04005469 * The caller must own the device lock. For example, it's safe to use
5470 * this from a driver probe() routine after downloading new firmware.
5471 * For calls that might not occur during probe(), drivers should lock
Ming Lei742120c2008-06-18 22:00:29 +08005472 * the device using usb_lock_device_for_reset().
Alan Stern79efa092006-06-01 13:33:42 -04005473 *
5474 * If an interface is currently being probed or disconnected, we assume
5475 * its driver knows how to handle resets. For all other interfaces,
5476 * if the driver doesn't have pre_reset and post_reset methods then
5477 * we attempt to unbind it and rebind afterward.
Alan Stern79efa092006-06-01 13:33:42 -04005478 */
Ming Lei742120c2008-06-18 22:00:29 +08005479int usb_reset_device(struct usb_device *udev)
Alan Stern79efa092006-06-01 13:33:42 -04005480{
5481 int ret;
Alan Stern852c4b42007-12-03 15:44:29 -05005482 int i;
Ming Lei4d769de2013-02-22 16:34:22 -08005483 unsigned int noio_flag;
Dan Williams5c79a1e2014-05-20 18:09:26 -07005484 struct usb_port *port_dev;
Alan Stern79efa092006-06-01 13:33:42 -04005485 struct usb_host_config *config = udev->actconfig;
Dan Williams5c79a1e2014-05-20 18:09:26 -07005486 struct usb_hub *hub = usb_hub_to_struct_hub(udev->parent);
Alan Stern79efa092006-06-01 13:33:42 -04005487
5488 if (udev->state == USB_STATE_NOTATTACHED ||
5489 udev->state == USB_STATE_SUSPENDED) {
5490 dev_dbg(&udev->dev, "device reset not allowed in state %d\n",
5491 udev->state);
5492 return -EINVAL;
5493 }
5494
Dan Williams5c79a1e2014-05-20 18:09:26 -07005495 if (!udev->parent) {
5496 /* this requires hcd-specific logic; see ohci_restart() */
5497 dev_dbg(&udev->dev, "%s for root hub!\n", __func__);
5498 return -EISDIR;
5499 }
5500
5501 port_dev = hub->ports[udev->portnum - 1];
5502
Ming Lei4d769de2013-02-22 16:34:22 -08005503 /*
5504 * Don't allocate memory with GFP_KERNEL in current
5505 * context to avoid possible deadlock if usb mass
5506 * storage interface or usbnet interface(iSCSI case)
5507 * is included in current configuration. The easist
5508 * approach is to do it for every device reset,
5509 * because the device 'memalloc_noio' flag may have
5510 * not been set before reseting the usb device.
5511 */
5512 noio_flag = memalloc_noio_save();
5513
Alan Stern645daaa2006-08-30 15:47:02 -04005514 /* Prevent autosuspend during the reset */
Alan Stern94fcda12006-11-20 11:38:46 -05005515 usb_autoresume_device(udev);
Alan Stern645daaa2006-08-30 15:47:02 -04005516
Alan Stern79efa092006-06-01 13:33:42 -04005517 if (config) {
Alan Stern79efa092006-06-01 13:33:42 -04005518 for (i = 0; i < config->desc.bNumInterfaces; ++i) {
Alan Stern852c4b42007-12-03 15:44:29 -05005519 struct usb_interface *cintf = config->interface[i];
5520 struct usb_driver *drv;
Alan Stern78d9a482008-06-23 16:00:40 -04005521 int unbind = 0;
Alan Stern852c4b42007-12-03 15:44:29 -05005522
5523 if (cintf->dev.driver) {
Alan Stern79efa092006-06-01 13:33:42 -04005524 drv = to_usb_driver(cintf->dev.driver);
Alan Stern78d9a482008-06-23 16:00:40 -04005525 if (drv->pre_reset && drv->post_reset)
5526 unbind = (drv->pre_reset)(cintf);
5527 else if (cintf->condition ==
5528 USB_INTERFACE_BOUND)
5529 unbind = 1;
5530 if (unbind)
5531 usb_forced_unbind_intf(cintf);
Alan Stern79efa092006-06-01 13:33:42 -04005532 }
5533 }
5534 }
5535
Dan Williams5c79a1e2014-05-20 18:09:26 -07005536 usb_lock_port(port_dev);
Ming Lei742120c2008-06-18 22:00:29 +08005537 ret = usb_reset_and_verify_device(udev);
Dan Williams5c79a1e2014-05-20 18:09:26 -07005538 usb_unlock_port(port_dev);
Alan Stern79efa092006-06-01 13:33:42 -04005539
5540 if (config) {
Alan Stern79efa092006-06-01 13:33:42 -04005541 for (i = config->desc.bNumInterfaces - 1; i >= 0; --i) {
Alan Stern852c4b42007-12-03 15:44:29 -05005542 struct usb_interface *cintf = config->interface[i];
5543 struct usb_driver *drv;
Alan Stern78d9a482008-06-23 16:00:40 -04005544 int rebind = cintf->needs_binding;
Alan Stern852c4b42007-12-03 15:44:29 -05005545
Alan Stern78d9a482008-06-23 16:00:40 -04005546 if (!rebind && cintf->dev.driver) {
Alan Stern79efa092006-06-01 13:33:42 -04005547 drv = to_usb_driver(cintf->dev.driver);
5548 if (drv->post_reset)
Alan Stern78d9a482008-06-23 16:00:40 -04005549 rebind = (drv->post_reset)(cintf);
5550 else if (cintf->condition ==
5551 USB_INTERFACE_BOUND)
5552 rebind = 1;
Alan Stern6aec0442014-03-12 11:30:38 -04005553 if (rebind)
5554 cintf->needs_binding = 1;
Alan Stern79efa092006-06-01 13:33:42 -04005555 }
Alan Stern79efa092006-06-01 13:33:42 -04005556 }
Alan Stern6aec0442014-03-12 11:30:38 -04005557 usb_unbind_and_rebind_marked_interfaces(udev);
Alan Stern79efa092006-06-01 13:33:42 -04005558 }
5559
Alan Stern94fcda12006-11-20 11:38:46 -05005560 usb_autosuspend_device(udev);
Ming Lei4d769de2013-02-22 16:34:22 -08005561 memalloc_noio_restore(noio_flag);
Alan Stern79efa092006-06-01 13:33:42 -04005562 return ret;
5563}
Ming Lei742120c2008-06-18 22:00:29 +08005564EXPORT_SYMBOL_GPL(usb_reset_device);
Inaky Perez-Gonzalezdc023dc2008-11-13 10:31:35 -08005565
5566
5567/**
5568 * usb_queue_reset_device - Reset a USB device from an atomic context
5569 * @iface: USB interface belonging to the device to reset
5570 *
5571 * This function can be used to reset a USB device from an atomic
5572 * context, where usb_reset_device() won't work (as it blocks).
5573 *
5574 * Doing a reset via this method is functionally equivalent to calling
5575 * usb_reset_device(), except for the fact that it is delayed to a
5576 * workqueue. This means that any drivers bound to other interfaces
5577 * might be unbound, as well as users from usbfs in user space.
5578 *
5579 * Corner cases:
5580 *
5581 * - Scheduling two resets at the same time from two different drivers
5582 * attached to two different interfaces of the same device is
5583 * possible; depending on how the driver attached to each interface
5584 * handles ->pre_reset(), the second reset might happen or not.
5585 *
Alan Stern524134d2015-01-21 14:02:43 -05005586 * - If the reset is delayed so long that the interface is unbound from
5587 * its driver, the reset will be skipped.
Inaky Perez-Gonzalezdc023dc2008-11-13 10:31:35 -08005588 *
Alan Stern524134d2015-01-21 14:02:43 -05005589 * - This function can be called during .probe(). It can also be called
5590 * during .disconnect(), but doing so is pointless because the reset
5591 * will not occur. If you really want to reset the device during
5592 * .disconnect(), call usb_reset_device() directly -- but watch out
5593 * for nested unbinding issues!
Inaky Perez-Gonzalezdc023dc2008-11-13 10:31:35 -08005594 */
5595void usb_queue_reset_device(struct usb_interface *iface)
5596{
Alan Stern524134d2015-01-21 14:02:43 -05005597 if (schedule_work(&iface->reset_ws))
5598 usb_get_intf(iface);
Inaky Perez-Gonzalezdc023dc2008-11-13 10:31:35 -08005599}
5600EXPORT_SYMBOL_GPL(usb_queue_reset_device);
Lan Tianyuff823c72012-09-05 13:44:32 +08005601
5602/**
5603 * usb_hub_find_child - Get the pointer of child device
5604 * attached to the port which is specified by @port1.
5605 * @hdev: USB device belonging to the usb hub
5606 * @port1: port num to indicate which port the child device
5607 * is attached to.
5608 *
5609 * USB drivers call this function to get hub's child device
5610 * pointer.
5611 *
Yacine Belkadi626f0902013-08-02 20:10:04 +02005612 * Return: %NULL if input param is invalid and
Lan Tianyuff823c72012-09-05 13:44:32 +08005613 * child's usb_device pointer if non-NULL.
5614 */
5615struct usb_device *usb_hub_find_child(struct usb_device *hdev,
5616 int port1)
5617{
Lan Tianyuad493e52013-01-23 04:26:30 +08005618 struct usb_hub *hub = usb_hub_to_struct_hub(hdev);
Lan Tianyuff823c72012-09-05 13:44:32 +08005619
5620 if (port1 < 1 || port1 > hdev->maxchild)
5621 return NULL;
5622 return hub->ports[port1 - 1]->child;
5623}
5624EXPORT_SYMBOL_GPL(usb_hub_find_child);
Lan Tianyud5575422012-09-05 13:44:33 +08005625
Lan Tianyud2123fd2013-01-21 22:18:00 +08005626void usb_hub_adjust_deviceremovable(struct usb_device *hdev,
5627 struct usb_hub_descriptor *desc)
5628{
Dan Williamsd99f6b42014-05-20 18:08:17 -07005629 struct usb_hub *hub = usb_hub_to_struct_hub(hdev);
Lan Tianyud2123fd2013-01-21 22:18:00 +08005630 enum usb_port_connect_type connect_type;
5631 int i;
5632
Dan Williamsd99f6b42014-05-20 18:08:17 -07005633 if (!hub)
5634 return;
5635
Lan Tianyud2123fd2013-01-21 22:18:00 +08005636 if (!hub_is_superspeed(hdev)) {
5637 for (i = 1; i <= hdev->maxchild; i++) {
Dan Williamsd99f6b42014-05-20 18:08:17 -07005638 struct usb_port *port_dev = hub->ports[i - 1];
Lan Tianyud2123fd2013-01-21 22:18:00 +08005639
Dan Williamsd99f6b42014-05-20 18:08:17 -07005640 connect_type = port_dev->connect_type;
Lan Tianyud2123fd2013-01-21 22:18:00 +08005641 if (connect_type == USB_PORT_CONNECT_TYPE_HARD_WIRED) {
5642 u8 mask = 1 << (i%8);
5643
5644 if (!(desc->u.hs.DeviceRemovable[i/8] & mask)) {
Dan Williamsd99f6b42014-05-20 18:08:17 -07005645 dev_dbg(&port_dev->dev, "DeviceRemovable is changed to 1 according to platform information.\n");
Lan Tianyud2123fd2013-01-21 22:18:00 +08005646 desc->u.hs.DeviceRemovable[i/8] |= mask;
5647 }
5648 }
5649 }
5650 } else {
5651 u16 port_removable = le16_to_cpu(desc->u.ss.DeviceRemovable);
5652
5653 for (i = 1; i <= hdev->maxchild; i++) {
Dan Williamsd99f6b42014-05-20 18:08:17 -07005654 struct usb_port *port_dev = hub->ports[i - 1];
Lan Tianyud2123fd2013-01-21 22:18:00 +08005655
Dan Williamsd99f6b42014-05-20 18:08:17 -07005656 connect_type = port_dev->connect_type;
Lan Tianyud2123fd2013-01-21 22:18:00 +08005657 if (connect_type == USB_PORT_CONNECT_TYPE_HARD_WIRED) {
5658 u16 mask = 1 << i;
5659
5660 if (!(port_removable & mask)) {
Dan Williamsd99f6b42014-05-20 18:08:17 -07005661 dev_dbg(&port_dev->dev, "DeviceRemovable is changed to 1 according to platform information.\n");
Lan Tianyud2123fd2013-01-21 22:18:00 +08005662 port_removable |= mask;
5663 }
5664 }
5665 }
5666
5667 desc->u.ss.DeviceRemovable = cpu_to_le16(port_removable);
5668 }
5669}
5670
Lan Tianyud5575422012-09-05 13:44:33 +08005671#ifdef CONFIG_ACPI
5672/**
5673 * usb_get_hub_port_acpi_handle - Get the usb port's acpi handle
5674 * @hdev: USB device belonging to the usb hub
5675 * @port1: port num of the port
5676 *
Yacine Belkadi626f0902013-08-02 20:10:04 +02005677 * Return: Port's acpi handle if successful, %NULL if params are
5678 * invalid.
Lan Tianyud5575422012-09-05 13:44:33 +08005679 */
5680acpi_handle usb_get_hub_port_acpi_handle(struct usb_device *hdev,
5681 int port1)
5682{
Lan Tianyuad493e52013-01-23 04:26:30 +08005683 struct usb_hub *hub = usb_hub_to_struct_hub(hdev);
Lan Tianyud5575422012-09-05 13:44:33 +08005684
Mathias Nyman41341262013-06-18 17:28:48 +03005685 if (!hub)
5686 return NULL;
5687
Rafael J. Wysocki3a83f992013-11-14 23:17:21 +01005688 return ACPI_HANDLE(&hub->ports[port1 - 1]->dev);
Lan Tianyud5575422012-09-05 13:44:33 +08005689}
5690#endif