blob: 003cb6b1a6bfa30b4b30e07ec34c85f2d1733a01 [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>
akpm@osdl.org9c8d6172005-06-20 14:29:58 -070025#include <linux/kthread.h>
Arjan van de Ven4186ecf2006-01-11 15:55:29 +010026#include <linux/mutex.h>
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080027#include <linux/freezer.h>
Theodore Ts'ob04b3152012-07-04 11:22:20 -040028#include <linux/random.h>
Lan Tianyuad493e52013-01-23 04:26:30 +080029#include <linux/pm_qos.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <asm/uaccess.h>
32#include <asm/byteorder.h>
33
Lan Tianyu6e30d7c2013-01-11 20:10:38 +080034#include "hub.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
44/* khubd's worklist and its lock */
45static DEFINE_SPINLOCK(hub_event_lock);
46static LIST_HEAD(hub_event_list); /* List of hubs needing servicing */
47
48/* Wakes up khubd */
49static DECLARE_WAIT_QUEUE_HEAD(khubd_wait);
50
akpm@osdl.org9c8d6172005-06-20 14:29:58 -070051static struct task_struct *khubd_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
Dan Williamsd8521af2014-05-20 18:08:28 -070053/* synchronize hub-port add/remove and peering operations */
54DEFINE_MUTEX(usb_port_peer_mutex);
55
Linus Torvalds1da177e2005-04-16 15:20:36 -070056/* cycle leds on hubs that aren't blinking for attention */
Rusty Russell90ab5ee2012-01-13 09:32:20 +103057static bool blinkenlights = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070058module_param (blinkenlights, bool, S_IRUGO);
59MODULE_PARM_DESC (blinkenlights, "true to cycle leds on hubs");
60
61/*
Jaroslav Kyselafd7c5192008-10-10 16:24:45 +020062 * Device SATA8000 FW1.0 from DATAST0R Technology Corp requires about
63 * 10 seconds to send reply for the initial 64-byte descriptor request.
64 */
65/* define initial 64-byte descriptor request timeout in milliseconds */
66static int initial_descriptor_timeout = USB_CTRL_GET_TIMEOUT;
67module_param(initial_descriptor_timeout, int, S_IRUGO|S_IWUSR);
Wu Fengguangb9cef6c2008-12-15 15:32:01 +080068MODULE_PARM_DESC(initial_descriptor_timeout,
69 "initial 64-byte descriptor request timeout in milliseconds "
70 "(default 5000 - 5.0 seconds)");
Jaroslav Kyselafd7c5192008-10-10 16:24:45 +020071
72/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 * As of 2.6.10 we introduce a new USB device initialization scheme which
74 * closely resembles the way Windows works. Hopefully it will be compatible
75 * with a wider range of devices than the old scheme. However some previously
76 * working devices may start giving rise to "device not accepting address"
77 * errors; if that happens the user can try the old scheme by adjusting the
78 * following module parameters.
79 *
80 * For maximum flexibility there are two boolean parameters to control the
81 * hub driver's behavior. On the first initialization attempt, if the
82 * "old_scheme_first" parameter is set then the old scheme will be used,
83 * otherwise the new scheme is used. If that fails and "use_both_schemes"
84 * is set, then the driver will make another attempt, using the other scheme.
85 */
Rusty Russell90ab5ee2012-01-13 09:32:20 +103086static bool old_scheme_first = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070087module_param(old_scheme_first, bool, S_IRUGO | S_IWUSR);
88MODULE_PARM_DESC(old_scheme_first,
89 "start with the old device initialization scheme");
90
Rusty Russell90ab5ee2012-01-13 09:32:20 +103091static bool use_both_schemes = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070092module_param(use_both_schemes, bool, S_IRUGO | S_IWUSR);
93MODULE_PARM_DESC(use_both_schemes,
94 "try the other device initialization scheme if the "
95 "first one fails");
96
Alan Stern32fe0192007-10-10 16:27:07 -040097/* Mutual exclusion for EHCI CF initialization. This interferes with
98 * port reset on some companion controllers.
99 */
100DECLARE_RWSEM(ehci_cf_port_reset_rwsem);
101EXPORT_SYMBOL_GPL(ehci_cf_port_reset_rwsem);
102
Lan Tianyuad493e52013-01-23 04:26:30 +0800103#define HUB_DEBOUNCE_TIMEOUT 2000
Alan Stern948fea32008-04-28 11:07:07 -0400104#define HUB_DEBOUNCE_STEP 25
105#define HUB_DEBOUNCE_STABLE 100
106
Ming Lei742120c2008-06-18 22:00:29 +0800107static int usb_reset_and_verify_device(struct usb_device *udev);
108
Sarah Sharp131dec32010-12-06 21:00:19 -0800109static inline char *portspeed(struct usb_hub *hub, int portstatus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110{
Sarah Sharp131dec32010-12-06 21:00:19 -0800111 if (hub_is_superspeed(hub->hdev))
112 return "5.0 Gb/s";
Alan Stern288ead42010-03-04 11:32:30 -0500113 if (portstatus & USB_PORT_STAT_HIGH_SPEED)
Matthias Beyer469271f2013-10-10 23:41:27 +0200114 return "480 Mb/s";
Alan Stern288ead42010-03-04 11:32:30 -0500115 else if (portstatus & USB_PORT_STAT_LOW_SPEED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 return "1.5 Mb/s";
117 else
118 return "12 Mb/s";
119}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
121/* Note that hdev or one of its children must be locked! */
Lan Tianyuad493e52013-01-23 04:26:30 +0800122struct usb_hub *usb_hub_to_struct_hub(struct usb_device *hdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123{
Lan Tianyuff823c792012-09-05 13:44:32 +0800124 if (!hdev || !hdev->actconfig || !hdev->maxchild)
Alan Stern251180842009-07-22 14:41:18 -0400125 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 return usb_get_intfdata(hdev->actconfig->interface[0]);
127}
128
Sarah Sharp140e3022014-01-22 13:35:02 -0800129static int usb_device_supports_lpm(struct usb_device *udev)
Sarah Sharpd9b20992012-02-20 08:31:26 -0800130{
131 /* USB 2.1 (and greater) devices indicate LPM support through
132 * their USB 2.0 Extended Capabilities BOS descriptor.
133 */
134 if (udev->speed == USB_SPEED_HIGH) {
135 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
David Howellsc4028952006-11-22 14:57:56 +0000446static 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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578static void kick_khubd(struct usb_hub *hub)
579{
580 unsigned long flags;
581
582 spin_lock_irqsave(&hub_event_lock, flags);
Roel Kluin2e2c5ee2007-10-26 23:54:35 +0200583 if (!hub->disconnected && list_empty(&hub->event_list)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 list_add_tail(&hub->event_list, &hub_event_list);
Alan Stern8e4ceb32009-12-07 13:01:37 -0500585
586 /* Suppress autosuspend until khubd runs */
587 usb_autopm_get_interface_no_resume(
588 to_usb_interface(hub->intfdev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 wake_up(&khubd_wait);
590 }
591 spin_unlock_irqrestore(&hub_event_lock, flags);
592}
593
594void usb_kick_khubd(struct usb_device *hdev)
595{
Lan Tianyuad493e52013-01-23 04:26:30 +0800596 struct usb_hub *hub = usb_hub_to_struct_hub(hdev);
Alan Stern251180842009-07-22 14:41:18 -0400597
598 if (hub)
599 kick_khubd(hub);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600}
601
Sarah Sharp4ee823b2011-11-14 18:00:01 -0800602/*
603 * Let the USB core know that a USB 3.0 device has sent a Function Wake Device
604 * Notification, which indicates it had initiated remote wakeup.
605 *
606 * USB 3.0 hubs do not report the port link state change from U3 to U0 when the
607 * device initiates resume, so the USB core will not receive notice of the
608 * resume through the normal hub interrupt URB.
609 */
610void usb_wakeup_notification(struct usb_device *hdev,
611 unsigned int portnum)
612{
613 struct usb_hub *hub;
614
615 if (!hdev)
616 return;
617
Lan Tianyuad493e52013-01-23 04:26:30 +0800618 hub = usb_hub_to_struct_hub(hdev);
Sarah Sharp4ee823b2011-11-14 18:00:01 -0800619 if (hub) {
620 set_bit(portnum, hub->wakeup_bits);
621 kick_khubd(hub);
622 }
623}
624EXPORT_SYMBOL_GPL(usb_wakeup_notification);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625
626/* completion function, fires on port status changes and various faults */
David Howells7d12e782006-10-05 14:55:46 +0100627static void hub_irq(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628{
Tobias Klauserec17cf12006-09-13 21:38:41 +0200629 struct usb_hub *hub = urb->context;
Alan Sterne0152682007-08-24 15:42:52 -0400630 int status = urb->status;
Roel Kluin71d27182009-03-13 12:19:18 +0100631 unsigned i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 unsigned long bits;
633
Alan Sterne0152682007-08-24 15:42:52 -0400634 switch (status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 case -ENOENT: /* synchronous unlink */
636 case -ECONNRESET: /* async unlink */
637 case -ESHUTDOWN: /* hardware going away */
638 return;
639
640 default: /* presumably an error */
641 /* Cause a hub reset after 10 consecutive errors */
Alan Sterne0152682007-08-24 15:42:52 -0400642 dev_dbg (hub->intfdev, "transfer --> %d\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 if ((++hub->nerrors < 10) || hub->error)
644 goto resubmit;
Alan Sterne0152682007-08-24 15:42:52 -0400645 hub->error = status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 /* FALL THROUGH */
Tobias Klauserec17cf12006-09-13 21:38:41 +0200647
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 /* let khubd handle things */
649 case 0: /* we got data: port status changed */
650 bits = 0;
651 for (i = 0; i < urb->actual_length; ++i)
652 bits |= ((unsigned long) ((*hub->buffer)[i]))
653 << (i*8);
654 hub->event_bits[0] = bits;
655 break;
656 }
657
658 hub->nerrors = 0;
659
660 /* Something happened, let khubd figure it out */
661 kick_khubd(hub);
662
663resubmit:
664 if (hub->quiescing)
665 return;
666
667 if ((status = usb_submit_urb (hub->urb, GFP_ATOMIC)) != 0
668 && status != -ENODEV && status != -EPERM)
669 dev_err (hub->intfdev, "resubmit --> %d\n", status);
670}
671
672/* USB 2.0 spec Section 11.24.2.3 */
673static inline int
674hub_clear_tt_buffer (struct usb_device *hdev, u16 devinfo, u16 tt)
675{
William Gulland2c7b8712013-06-27 16:10:20 -0700676 /* Need to clear both directions for control ep */
677 if (((devinfo >> 11) & USB_ENDPOINT_XFERTYPE_MASK) ==
678 USB_ENDPOINT_XFER_CONTROL) {
679 int status = usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
680 HUB_CLEAR_TT_BUFFER, USB_RT_PORT,
681 devinfo ^ 0x8000, tt, NULL, 0, 1000);
682 if (status)
683 return status;
684 }
Alan Sternc2f65952009-11-18 11:37:15 -0500685 return usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 HUB_CLEAR_TT_BUFFER, USB_RT_PORT, devinfo,
687 tt, NULL, 0, 1000);
688}
689
690/*
691 * enumeration blocks khubd for a long time. we use keventd instead, since
692 * long blocking there is the exception, not the rule. accordingly, HCDs
693 * talking to TTs must queue control transfers (not just bulk and iso), so
694 * both can talk to the same hub concurrently.
695 */
Alan Sterncb88a1b2009-06-29 10:43:32 -0400696static void hub_tt_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697{
David Howellsc4028952006-11-22 14:57:56 +0000698 struct usb_hub *hub =
Alan Sterncb88a1b2009-06-29 10:43:32 -0400699 container_of(work, struct usb_hub, tt.clear_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 unsigned long flags;
701
702 spin_lock_irqsave (&hub->tt.lock, flags);
Octavian Purdila3b6054d2012-10-01 22:21:12 +0300703 while (!list_empty(&hub->tt.clear_list)) {
H Hartley Sweetend0f830d2009-04-22 16:03:05 -0400704 struct list_head *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 struct usb_tt_clear *clear;
706 struct usb_device *hdev = hub->hdev;
Alan Sterncb88a1b2009-06-29 10:43:32 -0400707 const struct hc_driver *drv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 int status;
709
H Hartley Sweetend0f830d2009-04-22 16:03:05 -0400710 next = hub->tt.clear_list.next;
711 clear = list_entry (next, struct usb_tt_clear, clear_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 list_del (&clear->clear_list);
713
714 /* drop lock so HCD can concurrently report other TT errors */
715 spin_unlock_irqrestore (&hub->tt.lock, flags);
716 status = hub_clear_tt_buffer (hdev, clear->devinfo, clear->tt);
Alan Sterne9e88fb2013-03-27 16:14:01 -0400717 if (status && status != -ENODEV)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 dev_err (&hdev->dev,
719 "clear tt %d (%04x) error %d\n",
720 clear->tt, clear->devinfo, status);
Alan Sterncb88a1b2009-06-29 10:43:32 -0400721
722 /* Tell the HCD, even if the operation failed */
723 drv = clear->hcd->driver;
724 if (drv->clear_tt_buffer_complete)
725 (drv->clear_tt_buffer_complete)(clear->hcd, clear->ep);
726
Jesper Juhl1bc3c9e2005-04-18 17:39:34 -0700727 kfree(clear);
Alan Sterncb88a1b2009-06-29 10:43:32 -0400728 spin_lock_irqsave(&hub->tt.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 }
730 spin_unlock_irqrestore (&hub->tt.lock, flags);
731}
732
733/**
Lan Tianyu971fcd42013-01-23 04:26:29 +0800734 * usb_hub_set_port_power - control hub port's power state
Mathias Nyman413412612013-06-18 17:28:48 +0300735 * @hdev: USB device belonging to the usb hub
736 * @hub: target hub
Lan Tianyu971fcd42013-01-23 04:26:29 +0800737 * @port1: port index
738 * @set: expected status
739 *
740 * call this function to control port's power via setting or
741 * clearing the port's PORT_POWER feature.
Yacine Belkadi626f0902013-08-02 20:10:04 +0200742 *
743 * Return: 0 if successful. A negative error code otherwise.
Lan Tianyu971fcd42013-01-23 04:26:29 +0800744 */
Mathias Nyman413412612013-06-18 17:28:48 +0300745int usb_hub_set_port_power(struct usb_device *hdev, struct usb_hub *hub,
746 int port1, bool set)
Lan Tianyu971fcd42013-01-23 04:26:29 +0800747{
748 int ret;
749
750 if (set)
751 ret = set_port_feature(hdev, port1, USB_PORT_FEAT_POWER);
752 else
Lan Tianyuad493e52013-01-23 04:26:30 +0800753 ret = usb_clear_port_feature(hdev, port1, USB_PORT_FEAT_POWER);
754
Dan Williamsd5c38342014-05-20 18:08:52 -0700755 if (ret)
756 return ret;
757
758 if (set)
759 set_bit(port1, hub->power_bits);
760 else
761 clear_bit(port1, hub->power_bits);
762 return 0;
Lan Tianyu971fcd42013-01-23 04:26:29 +0800763}
764
765/**
Alan Sterncb88a1b2009-06-29 10:43:32 -0400766 * usb_hub_clear_tt_buffer - clear control/bulk TT state in high speed hub
767 * @urb: an URB associated with the failed or incomplete split transaction
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 *
769 * High speed HCDs use this to tell the hub driver that some split control or
770 * bulk transaction failed in a way that requires clearing internal state of
771 * a transaction translator. This is normally detected (and reported) from
772 * interrupt context.
773 *
774 * It may not be possible for that hub to handle additional full (or low)
775 * speed transactions until that state is fully cleared out.
Yacine Belkadi626f0902013-08-02 20:10:04 +0200776 *
777 * Return: 0 if successful. A negative error code otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 */
Alan Sterncb88a1b2009-06-29 10:43:32 -0400779int usb_hub_clear_tt_buffer(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780{
Alan Sterncb88a1b2009-06-29 10:43:32 -0400781 struct usb_device *udev = urb->dev;
782 int pipe = urb->pipe;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 struct usb_tt *tt = udev->tt;
784 unsigned long flags;
785 struct usb_tt_clear *clear;
786
787 /* we've got to cope with an arbitrary number of pending TT clears,
788 * since each TT has "at least two" buffers that can need it (and
789 * there can be many TTs per hub). even if they're uncommon.
790 */
Christoph Lameter54e6ecb2006-12-06 20:33:16 -0800791 if ((clear = kmalloc (sizeof *clear, GFP_ATOMIC)) == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 dev_err (&udev->dev, "can't save CLEAR_TT_BUFFER state\n");
793 /* FIXME recover somehow ... RESET_TT? */
Alan Sterncb88a1b2009-06-29 10:43:32 -0400794 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 }
796
797 /* info that CLEAR_TT_BUFFER needs */
798 clear->tt = tt->multi ? udev->ttport : 1;
799 clear->devinfo = usb_pipeendpoint (pipe);
800 clear->devinfo |= udev->devnum << 4;
801 clear->devinfo |= usb_pipecontrol (pipe)
802 ? (USB_ENDPOINT_XFER_CONTROL << 11)
803 : (USB_ENDPOINT_XFER_BULK << 11);
804 if (usb_pipein (pipe))
805 clear->devinfo |= 1 << 15;
Alan Sterncb88a1b2009-06-29 10:43:32 -0400806
807 /* info for completion callback */
808 clear->hcd = bus_to_hcd(udev->bus);
809 clear->ep = urb->ep;
810
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 /* tell keventd to clear state for this TT */
812 spin_lock_irqsave (&tt->lock, flags);
813 list_add_tail (&clear->clear_list, &tt->clear_list);
Alan Sterncb88a1b2009-06-29 10:43:32 -0400814 schedule_work(&tt->clear_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 spin_unlock_irqrestore (&tt->lock, flags);
Alan Sterncb88a1b2009-06-29 10:43:32 -0400816 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817}
Alan Sterncb88a1b2009-06-29 10:43:32 -0400818EXPORT_SYMBOL_GPL(usb_hub_clear_tt_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819
Dan Williams7ad3c472014-05-20 18:08:57 -0700820static void hub_power_on(struct usb_hub *hub, bool do_delay)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821{
822 int port1;
823
Alan Stern4489a572006-04-27 15:54:22 -0400824 /* Enable power on each port. Some hubs have reserved values
825 * of LPSM (> 2) in their descriptors, even though they are
826 * USB 2.0 hubs. Some hubs do not implement port-power switching
827 * but only emulate it. In all cases, the ports won't work
828 * unless we send these messages to the hub.
829 */
Dan Williams9262c192014-05-20 18:08:12 -0700830 if (hub_is_port_power_switchable(hub))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 dev_dbg(hub->intfdev, "enabling power on all ports\n");
Alan Stern4489a572006-04-27 15:54:22 -0400832 else
833 dev_dbg(hub->intfdev, "trying to enable port power on "
834 "non-switchable hub\n");
Krzysztof Mazur3bbc47d2013-08-22 14:49:40 +0200835 for (port1 = 1; port1 <= hub->hdev->maxchild; port1++)
Dan Williamsd5c38342014-05-20 18:08:52 -0700836 if (test_bit(port1, hub->power_bits))
Lan Tianyuad493e52013-01-23 04:26:30 +0800837 set_port_feature(hub->hdev, port1, USB_PORT_FEAT_POWER);
838 else
839 usb_clear_port_feature(hub->hdev, port1,
840 USB_PORT_FEAT_POWER);
Alan Stern8520f382008-09-22 14:44:26 -0400841 if (do_delay)
Dan Williams7ad3c472014-05-20 18:08:57 -0700842 msleep(hub_power_on_good_delay(hub));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843}
844
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845static int hub_hub_status(struct usb_hub *hub,
846 u16 *status, u16 *change)
847{
848 int ret;
849
Alan Sterndb90e7a2007-02-05 09:56:15 -0500850 mutex_lock(&hub->status_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 ret = get_hub_status(hub->hdev, &hub->status->hub);
Alan Sterne9e88fb2013-03-27 16:14:01 -0400852 if (ret < 0) {
853 if (ret != -ENODEV)
854 dev_err(hub->intfdev,
855 "%s failed (err = %d)\n", __func__, ret);
856 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 *status = le16_to_cpu(hub->status->hub.wHubStatus);
Matthias Beyer469271f2013-10-10 23:41:27 +0200858 *change = le16_to_cpu(hub->status->hub.wHubChange);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 ret = 0;
860 }
Alan Sterndb90e7a2007-02-05 09:56:15 -0500861 mutex_unlock(&hub->status_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 return ret;
863}
864
Sarah Sharp41e7e052012-11-14 16:42:32 -0800865static int hub_set_port_link_state(struct usb_hub *hub, int port1,
866 unsigned int link_status)
867{
868 return set_port_feature(hub->hdev,
869 port1 | (link_status << 3),
870 USB_PORT_FEAT_LINK_STATE);
871}
872
873/*
874 * If USB 3.0 ports are placed into the Disabled state, they will no longer
875 * detect any device connects or disconnects. This is generally not what the
876 * USB core wants, since it expects a disabled port to produce a port status
877 * change event when a new device connects.
878 *
879 * Instead, set the link state to Disabled, wait for the link to settle into
880 * that state, clear any change bits, and then put the port into the RxDetect
881 * state.
882 */
883static int hub_usb3_port_disable(struct usb_hub *hub, int port1)
884{
885 int ret;
886 int total_time;
887 u16 portchange, portstatus;
888
889 if (!hub_is_superspeed(hub->hdev))
890 return -EINVAL;
891
Gavin Guobb86cf52014-07-18 01:12:13 +0800892 ret = hub_port_status(hub, port1, &portstatus, &portchange);
893 if (ret < 0)
894 return ret;
895
896 /*
897 * USB controller Advanced Micro Devices, Inc. [AMD] FCH USB XHCI
898 * Controller [1022:7814] will have spurious result making the following
899 * usb 3.0 device hotplugging route to the 2.0 root hub and recognized
900 * as high-speed device if we set the usb 3.0 port link state to
901 * Disabled. Since it's already in USB_SS_PORT_LS_RX_DETECT state, we
902 * check the state here to avoid the bug.
903 */
904 if ((portstatus & USB_PORT_STAT_LINK_STATE) ==
905 USB_SS_PORT_LS_RX_DETECT) {
906 dev_dbg(&hub->ports[port1 - 1]->dev,
907 "Not disabling port; link state is RxDetect\n");
908 return ret;
909 }
910
Sarah Sharp41e7e052012-11-14 16:42:32 -0800911 ret = hub_set_port_link_state(hub, port1, USB_SS_PORT_LS_SS_DISABLED);
Alan Sterne9e88fb2013-03-27 16:14:01 -0400912 if (ret)
Sarah Sharp41e7e052012-11-14 16:42:32 -0800913 return ret;
Sarah Sharp41e7e052012-11-14 16:42:32 -0800914
915 /* Wait for the link to enter the disabled state. */
916 for (total_time = 0; ; total_time += HUB_DEBOUNCE_STEP) {
917 ret = hub_port_status(hub, port1, &portstatus, &portchange);
918 if (ret < 0)
919 return ret;
920
921 if ((portstatus & USB_PORT_STAT_LINK_STATE) ==
922 USB_SS_PORT_LS_SS_DISABLED)
923 break;
924 if (total_time >= HUB_DEBOUNCE_TIMEOUT)
925 break;
926 msleep(HUB_DEBOUNCE_STEP);
927 }
928 if (total_time >= HUB_DEBOUNCE_TIMEOUT)
Dan Williamsd99f6b42014-05-20 18:08:17 -0700929 dev_warn(&hub->ports[port1 - 1]->dev,
930 "Could not disable after %d ms\n", total_time);
Sarah Sharp41e7e052012-11-14 16:42:32 -0800931
932 return hub_set_port_link_state(hub, port1, USB_SS_PORT_LS_RX_DETECT);
933}
934
Alan Stern8b28c752005-08-10 17:04:13 -0400935static int hub_port_disable(struct usb_hub *hub, int port1, int set_state)
936{
Dan Williamsd99f6b42014-05-20 18:08:17 -0700937 struct usb_port *port_dev = hub->ports[port1 - 1];
Alan Stern8b28c752005-08-10 17:04:13 -0400938 struct usb_device *hdev = hub->hdev;
Alan Stern0458d5b2007-05-04 11:52:20 -0400939 int ret = 0;
Alan Stern8b28c752005-08-10 17:04:13 -0400940
Dan Williamsd99f6b42014-05-20 18:08:17 -0700941 if (port_dev->child && set_state)
942 usb_set_device_state(port_dev->child, USB_STATE_NOTATTACHED);
Sarah Sharp41e7e052012-11-14 16:42:32 -0800943 if (!hub->error) {
944 if (hub_is_superspeed(hub->hdev))
945 ret = hub_usb3_port_disable(hub, port1);
946 else
Lan Tianyuad493e52013-01-23 04:26:30 +0800947 ret = usb_clear_port_feature(hdev, port1,
Sarah Sharp41e7e052012-11-14 16:42:32 -0800948 USB_PORT_FEAT_ENABLE);
949 }
Alan Sterne9e88fb2013-03-27 16:14:01 -0400950 if (ret && ret != -ENODEV)
Dan Williamsd99f6b42014-05-20 18:08:17 -0700951 dev_err(&port_dev->dev, "cannot disable (err = %d)\n", ret);
Alan Stern8b28c752005-08-10 17:04:13 -0400952 return ret;
953}
954
Alan Stern0458d5b2007-05-04 11:52:20 -0400955/*
Justin P. Mattock6d42fcd2011-02-26 20:33:56 -0800956 * Disable a port and mark a logical connect-change event, so that some
Alan Stern0458d5b2007-05-04 11:52:20 -0400957 * time later khubd will disconnect() any existing usb_device on the port
958 * and will re-enumerate if there actually is a device attached.
959 */
960static void hub_port_logical_disconnect(struct usb_hub *hub, int port1)
961{
Dan Williamsd99f6b42014-05-20 18:08:17 -0700962 dev_dbg(&hub->ports[port1 - 1]->dev, "logical disconnect\n");
Alan Stern0458d5b2007-05-04 11:52:20 -0400963 hub_port_disable(hub, port1, 1);
964
965 /* FIXME let caller ask to power down the port:
966 * - some devices won't enumerate without a VBUS power cycle
967 * - SRP saves power that way
968 * - ... new call, TBD ...
969 * That's easy if this hub can switch power per-port, and
970 * khubd reactivates the port later (timer, SRP, etc).
971 * Powerdown must be optional, because of reset/DFU.
972 */
973
974 set_bit(port1, hub->change_bits);
Matthias Beyer469271f2013-10-10 23:41:27 +0200975 kick_khubd(hub);
Alan Stern0458d5b2007-05-04 11:52:20 -0400976}
977
Alan Stern253e0572009-10-27 15:20:13 -0400978/**
979 * usb_remove_device - disable a device's port on its parent hub
980 * @udev: device to be disabled and removed
981 * Context: @udev locked, must be able to sleep.
982 *
983 * After @udev's port has been disabled, khubd is notified and it will
984 * see that the device has been disconnected. When the device is
985 * physically unplugged and something is plugged in, the events will
986 * be received and processed normally.
Yacine Belkadi626f0902013-08-02 20:10:04 +0200987 *
988 * Return: 0 if successful. A negative error code otherwise.
Alan Stern253e0572009-10-27 15:20:13 -0400989 */
990int usb_remove_device(struct usb_device *udev)
991{
992 struct usb_hub *hub;
993 struct usb_interface *intf;
994
995 if (!udev->parent) /* Can't remove a root hub */
996 return -EINVAL;
Lan Tianyuad493e52013-01-23 04:26:30 +0800997 hub = usb_hub_to_struct_hub(udev->parent);
Alan Stern253e0572009-10-27 15:20:13 -0400998 intf = to_usb_interface(hub->intfdev);
999
1000 usb_autopm_get_interface(intf);
1001 set_bit(udev->portnum, hub->removed_bits);
1002 hub_port_logical_disconnect(hub, udev->portnum);
1003 usb_autopm_put_interface(intf);
1004 return 0;
1005}
1006
Alan Stern6ee0b272008-04-28 11:06:42 -04001007enum hub_activation_type {
Alan Stern8e4ceb32009-12-07 13:01:37 -05001008 HUB_INIT, HUB_INIT2, HUB_INIT3, /* INITs must come first */
Alan Stern8520f382008-09-22 14:44:26 -04001009 HUB_POST_RESET, HUB_RESUME, HUB_RESET_RESUME,
Alan Stern6ee0b272008-04-28 11:06:42 -04001010};
Alan Stern5e6effa2008-03-03 15:15:51 -05001011
Alan Stern8520f382008-09-22 14:44:26 -04001012static void hub_init_func2(struct work_struct *ws);
1013static void hub_init_func3(struct work_struct *ws);
1014
Alan Sternf2835212008-04-28 11:07:17 -04001015static void hub_activate(struct usb_hub *hub, enum hub_activation_type type)
Alan Stern5e6effa2008-03-03 15:15:51 -05001016{
1017 struct usb_device *hdev = hub->hdev;
Sarah Sharp653a39d2010-12-23 11:12:42 -08001018 struct usb_hcd *hcd;
1019 int ret;
Alan Stern5e6effa2008-03-03 15:15:51 -05001020 int port1;
Alan Sternf2835212008-04-28 11:07:17 -04001021 int status;
Alan Stern948fea32008-04-28 11:07:07 -04001022 bool need_debounce_delay = false;
Alan Stern8520f382008-09-22 14:44:26 -04001023 unsigned delay;
1024
1025 /* Continue a partial initialization */
1026 if (type == HUB_INIT2)
1027 goto init2;
1028 if (type == HUB_INIT3)
1029 goto init3;
Alan Stern5e6effa2008-03-03 15:15:51 -05001030
Elric Fua45aa3b2012-02-18 13:32:27 +08001031 /* The superspeed hub except for root hub has to use Hub Depth
1032 * value as an offset into the route string to locate the bits
1033 * it uses to determine the downstream port number. So hub driver
1034 * should send a set hub depth request to superspeed hub after
1035 * the superspeed hub is set configuration in initialization or
1036 * reset procedure.
1037 *
1038 * After a resume, port power should still be on.
Alan Sternf2835212008-04-28 11:07:17 -04001039 * For any other type of activation, turn it on.
1040 */
Alan Stern8520f382008-09-22 14:44:26 -04001041 if (type != HUB_RESUME) {
Elric Fua45aa3b2012-02-18 13:32:27 +08001042 if (hdev->parent && hub_is_superspeed(hdev)) {
1043 ret = usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
1044 HUB_SET_DEPTH, USB_RT_HUB,
1045 hdev->level - 1, 0, NULL, 0,
1046 USB_CTRL_SET_TIMEOUT);
1047 if (ret < 0)
1048 dev_err(hub->intfdev,
1049 "set hub depth failed\n");
1050 }
Alan Stern8520f382008-09-22 14:44:26 -04001051
1052 /* Speed up system boot by using a delayed_work for the
1053 * hub's initial power-up delays. This is pretty awkward
1054 * and the implementation looks like a home-brewed sort of
1055 * setjmp/longjmp, but it saves at least 100 ms for each
1056 * root hub (assuming usbcore is compiled into the kernel
1057 * rather than as a module). It adds up.
1058 *
1059 * This can't be done for HUB_RESUME or HUB_RESET_RESUME
1060 * because for those activation types the ports have to be
1061 * operational when we return. In theory this could be done
1062 * for HUB_POST_RESET, but it's easier not to.
1063 */
1064 if (type == HUB_INIT) {
Dan Williams7ad3c472014-05-20 18:08:57 -07001065 unsigned delay = hub_power_on_good_delay(hub);
1066
1067 hub_power_on(hub, false);
Tejun Heo77fa83c2014-03-07 10:24:48 -05001068 INIT_DELAYED_WORK(&hub->init_work, hub_init_func2);
Shaibal Dutta22f6a0f2014-02-01 19:16:46 -08001069 queue_delayed_work(system_power_efficient_wq,
1070 &hub->init_work,
Alan Stern8520f382008-09-22 14:44:26 -04001071 msecs_to_jiffies(delay));
Alan Stern61fbeba2008-10-27 12:07:44 -04001072
1073 /* Suppress autosuspend until init is done */
Alan Stern8e4ceb32009-12-07 13:01:37 -05001074 usb_autopm_get_interface_no_resume(
1075 to_usb_interface(hub->intfdev));
Alan Stern8520f382008-09-22 14:44:26 -04001076 return; /* Continues at init2: below */
Sarah Sharp653a39d2010-12-23 11:12:42 -08001077 } else if (type == HUB_RESET_RESUME) {
1078 /* The internal host controller state for the hub device
1079 * may be gone after a host power loss on system resume.
1080 * Update the device's info so the HW knows it's a hub.
1081 */
1082 hcd = bus_to_hcd(hdev->bus);
1083 if (hcd->driver->update_hub_device) {
1084 ret = hcd->driver->update_hub_device(hcd, hdev,
1085 &hub->tt, GFP_NOIO);
1086 if (ret < 0) {
1087 dev_err(hub->intfdev, "Host not "
1088 "accepting hub info "
1089 "update.\n");
1090 dev_err(hub->intfdev, "LS/FS devices "
1091 "and hubs may not work "
1092 "under this hub\n.");
1093 }
1094 }
1095 hub_power_on(hub, true);
Alan Stern8520f382008-09-22 14:44:26 -04001096 } else {
1097 hub_power_on(hub, true);
1098 }
1099 }
1100 init2:
Alan Sternf2835212008-04-28 11:07:17 -04001101
Dan Williamsd99f6b42014-05-20 18:08:17 -07001102 /*
1103 * Check each port and set hub->change_bits to let khubd know
Alan Stern6ee0b272008-04-28 11:06:42 -04001104 * which ports need attention.
Alan Stern5e6effa2008-03-03 15:15:51 -05001105 */
1106 for (port1 = 1; port1 <= hdev->maxchild; ++port1) {
Dan Williamsd99f6b42014-05-20 18:08:17 -07001107 struct usb_port *port_dev = hub->ports[port1 - 1];
1108 struct usb_device *udev = port_dev->child;
Alan Stern5e6effa2008-03-03 15:15:51 -05001109 u16 portstatus, portchange;
1110
Alan Stern6ee0b272008-04-28 11:06:42 -04001111 portstatus = portchange = 0;
1112 status = hub_port_status(hub, port1, &portstatus, &portchange);
1113 if (udev || (portstatus & USB_PORT_STAT_CONNECTION))
Dan Williamsd99f6b42014-05-20 18:08:17 -07001114 dev_dbg(&port_dev->dev, "status %04x change %04x\n",
1115 portstatus, portchange);
Alan Stern5e6effa2008-03-03 15:15:51 -05001116
Dan Williamsd99f6b42014-05-20 18:08:17 -07001117 /*
1118 * After anything other than HUB_RESUME (i.e., initialization
Alan Stern6ee0b272008-04-28 11:06:42 -04001119 * or any sort of reset), every port should be disabled.
1120 * Unconnected ports should likewise be disabled (paranoia),
1121 * and so should ports for which we have no usb_device.
Alan Stern5e6effa2008-03-03 15:15:51 -05001122 */
Alan Stern6ee0b272008-04-28 11:06:42 -04001123 if ((portstatus & USB_PORT_STAT_ENABLE) && (
1124 type != HUB_RESUME ||
1125 !(portstatus & USB_PORT_STAT_CONNECTION) ||
1126 !udev ||
1127 udev->state == USB_STATE_NOTATTACHED)) {
Andiry Xu9f0a6cd2010-05-07 18:09:27 +08001128 /*
1129 * USB3 protocol ports will automatically transition
1130 * to Enabled state when detect an USB3.0 device attach.
Dan Williamsfd1ac4c2013-10-07 11:58:20 -07001131 * Do not disable USB3 protocol ports, just pretend
1132 * power was lost
Andiry Xu9f0a6cd2010-05-07 18:09:27 +08001133 */
Dan Williamsfd1ac4c2013-10-07 11:58:20 -07001134 portstatus &= ~USB_PORT_STAT_ENABLE;
1135 if (!hub_is_superspeed(hdev))
Lan Tianyuad493e52013-01-23 04:26:30 +08001136 usb_clear_port_feature(hdev, port1,
Andiry Xu9f0a6cd2010-05-07 18:09:27 +08001137 USB_PORT_FEAT_ENABLE);
Alan Stern6ee0b272008-04-28 11:06:42 -04001138 }
1139
Alan Stern948fea32008-04-28 11:07:07 -04001140 /* Clear status-change flags; we'll debounce later */
1141 if (portchange & USB_PORT_STAT_C_CONNECTION) {
1142 need_debounce_delay = true;
Lan Tianyuad493e52013-01-23 04:26:30 +08001143 usb_clear_port_feature(hub->hdev, port1,
Alan Stern948fea32008-04-28 11:07:07 -04001144 USB_PORT_FEAT_C_CONNECTION);
1145 }
1146 if (portchange & USB_PORT_STAT_C_ENABLE) {
1147 need_debounce_delay = true;
Lan Tianyuad493e52013-01-23 04:26:30 +08001148 usb_clear_port_feature(hub->hdev, port1,
Alan Stern948fea32008-04-28 11:07:07 -04001149 USB_PORT_FEAT_C_ENABLE);
1150 }
Julius Wernere92aee32013-10-15 17:45:00 -07001151 if (portchange & USB_PORT_STAT_C_RESET) {
1152 need_debounce_delay = true;
1153 usb_clear_port_feature(hub->hdev, port1,
1154 USB_PORT_FEAT_C_RESET);
1155 }
Don Zickus79c3dd82011-11-03 09:07:18 -04001156 if ((portchange & USB_PORT_STAT_C_BH_RESET) &&
1157 hub_is_superspeed(hub->hdev)) {
1158 need_debounce_delay = true;
Lan Tianyuad493e52013-01-23 04:26:30 +08001159 usb_clear_port_feature(hub->hdev, port1,
Don Zickus79c3dd82011-11-03 09:07:18 -04001160 USB_PORT_FEAT_C_BH_PORT_RESET);
1161 }
Alan Stern253e0572009-10-27 15:20:13 -04001162 /* We can forget about a "removed" device when there's a
1163 * physical disconnect or the connect status changes.
1164 */
1165 if (!(portstatus & USB_PORT_STAT_CONNECTION) ||
1166 (portchange & USB_PORT_STAT_C_CONNECTION))
1167 clear_bit(port1, hub->removed_bits);
1168
Alan Stern6ee0b272008-04-28 11:06:42 -04001169 if (!udev || udev->state == USB_STATE_NOTATTACHED) {
1170 /* Tell khubd to disconnect the device or
1171 * check for a new connection
1172 */
Shen Guang08d1dec2014-01-08 14:45:42 +08001173 if (udev || (portstatus & USB_PORT_STAT_CONNECTION) ||
1174 (portstatus & USB_PORT_STAT_OVERCURRENT))
Alan Stern6ee0b272008-04-28 11:06:42 -04001175 set_bit(port1, hub->change_bits);
1176
1177 } else if (portstatus & USB_PORT_STAT_ENABLE) {
Sarah Sharp72937e12012-01-24 11:46:50 -08001178 bool port_resumed = (portstatus &
1179 USB_PORT_STAT_LINK_STATE) ==
1180 USB_SS_PORT_LS_U0;
Alan Stern6ee0b272008-04-28 11:06:42 -04001181 /* The power session apparently survived the resume.
1182 * If there was an overcurrent or suspend change
1183 * (i.e., remote wakeup request), have khubd
Sarah Sharp72937e12012-01-24 11:46:50 -08001184 * take care of it. Look at the port link state
1185 * for USB 3.0 hubs, since they don't have a suspend
1186 * change bit, and they don't set the port link change
1187 * bit on device-initiated resume.
Alan Stern6ee0b272008-04-28 11:06:42 -04001188 */
Sarah Sharp72937e12012-01-24 11:46:50 -08001189 if (portchange || (hub_is_superspeed(hub->hdev) &&
1190 port_resumed))
Alan Stern6ee0b272008-04-28 11:06:42 -04001191 set_bit(port1, hub->change_bits);
1192
1193 } else if (udev->persist_enabled) {
Alan Stern6ee0b272008-04-28 11:06:42 -04001194#ifdef CONFIG_PM
Alan Stern5e6effa2008-03-03 15:15:51 -05001195 udev->reset_resume = 1;
Alan Stern6ee0b272008-04-28 11:06:42 -04001196#endif
Lan Tianyuad493e52013-01-23 04:26:30 +08001197 /* Don't set the change_bits when the device
1198 * was powered off.
1199 */
Dan Williamsd5c38342014-05-20 18:08:52 -07001200 if (test_bit(port1, hub->power_bits))
Lan Tianyuad493e52013-01-23 04:26:30 +08001201 set_bit(port1, hub->change_bits);
Alan Stern8808f002008-04-28 11:06:55 -04001202
Alan Stern6ee0b272008-04-28 11:06:42 -04001203 } else {
1204 /* The power session is gone; tell khubd */
1205 usb_set_device_state(udev, USB_STATE_NOTATTACHED);
1206 set_bit(port1, hub->change_bits);
Alan Stern5e6effa2008-03-03 15:15:51 -05001207 }
Alan Stern5e6effa2008-03-03 15:15:51 -05001208 }
1209
Alan Stern948fea32008-04-28 11:07:07 -04001210 /* If no port-status-change flags were set, we don't need any
1211 * debouncing. If flags were set we can try to debounce the
1212 * ports all at once right now, instead of letting khubd do them
1213 * one at a time later on.
1214 *
1215 * If any port-status changes do occur during this delay, khubd
1216 * will see them later and handle them normally.
1217 */
Alan Stern8520f382008-09-22 14:44:26 -04001218 if (need_debounce_delay) {
1219 delay = HUB_DEBOUNCE_STABLE;
Alan Sternf2835212008-04-28 11:07:17 -04001220
Alan Stern8520f382008-09-22 14:44:26 -04001221 /* Don't do a long sleep inside a workqueue routine */
1222 if (type == HUB_INIT2) {
Tejun Heo77fa83c2014-03-07 10:24:48 -05001223 INIT_DELAYED_WORK(&hub->init_work, hub_init_func3);
Shaibal Dutta22f6a0f2014-02-01 19:16:46 -08001224 queue_delayed_work(system_power_efficient_wq,
1225 &hub->init_work,
Alan Stern8520f382008-09-22 14:44:26 -04001226 msecs_to_jiffies(delay));
1227 return; /* Continues at init3: below */
1228 } else {
1229 msleep(delay);
1230 }
1231 }
1232 init3:
Alan Sternf2835212008-04-28 11:07:17 -04001233 hub->quiescing = 0;
1234
1235 status = usb_submit_urb(hub->urb, GFP_NOIO);
1236 if (status < 0)
1237 dev_err(hub->intfdev, "activate --> %d\n", status);
1238 if (hub->has_indicators && blinkenlights)
Shaibal Dutta22f6a0f2014-02-01 19:16:46 -08001239 queue_delayed_work(system_power_efficient_wq,
1240 &hub->leds, LED_CYCLE_PERIOD);
Alan Sternf2835212008-04-28 11:07:17 -04001241
1242 /* Scan all ports that need attention */
1243 kick_khubd(hub);
Alan Stern8e4ceb32009-12-07 13:01:37 -05001244
1245 /* Allow autosuspend if it was suppressed */
1246 if (type <= HUB_INIT3)
1247 usb_autopm_put_interface_async(to_usb_interface(hub->intfdev));
Alan Stern5e6effa2008-03-03 15:15:51 -05001248}
1249
Alan Stern8520f382008-09-22 14:44:26 -04001250/* Implement the continuations for the delays above */
1251static void hub_init_func2(struct work_struct *ws)
1252{
1253 struct usb_hub *hub = container_of(ws, struct usb_hub, init_work.work);
1254
1255 hub_activate(hub, HUB_INIT2);
1256}
1257
1258static void hub_init_func3(struct work_struct *ws)
1259{
1260 struct usb_hub *hub = container_of(ws, struct usb_hub, init_work.work);
1261
1262 hub_activate(hub, HUB_INIT3);
1263}
1264
Alan Stern43303542008-04-28 11:07:31 -04001265enum hub_quiescing_type {
1266 HUB_DISCONNECT, HUB_PRE_RESET, HUB_SUSPEND
1267};
1268
1269static void hub_quiesce(struct usb_hub *hub, enum hub_quiescing_type type)
1270{
1271 struct usb_device *hdev = hub->hdev;
1272 int i;
1273
Alan Stern8520f382008-09-22 14:44:26 -04001274 cancel_delayed_work_sync(&hub->init_work);
1275
Alan Stern43303542008-04-28 11:07:31 -04001276 /* khubd and related activity won't re-trigger */
1277 hub->quiescing = 1;
1278
1279 if (type != HUB_SUSPEND) {
1280 /* Disconnect all the children */
1281 for (i = 0; i < hdev->maxchild; ++i) {
Lan Tianyuff823c792012-09-05 13:44:32 +08001282 if (hub->ports[i]->child)
1283 usb_disconnect(&hub->ports[i]->child);
Alan Stern43303542008-04-28 11:07:31 -04001284 }
1285 }
1286
1287 /* Stop khubd and related activity */
1288 usb_kill_urb(hub->urb);
1289 if (hub->has_indicators)
1290 cancel_delayed_work_sync(&hub->leds);
1291 if (hub->tt.hub)
Octavian Purdila036546b2012-10-23 11:33:12 +03001292 flush_work(&hub->tt.clear_work);
Alan Stern43303542008-04-28 11:07:31 -04001293}
1294
Alan Stern600856c2014-05-20 18:08:07 -07001295static void hub_pm_barrier_for_all_ports(struct usb_hub *hub)
1296{
1297 int i;
1298
1299 for (i = 0; i < hub->hdev->maxchild; ++i)
1300 pm_runtime_barrier(&hub->ports[i]->dev);
1301}
1302
Alan Stern3eb14912008-03-03 15:15:43 -05001303/* caller has locked the hub device */
1304static int hub_pre_reset(struct usb_interface *intf)
1305{
1306 struct usb_hub *hub = usb_get_intfdata(intf);
1307
Alan Stern43303542008-04-28 11:07:31 -04001308 hub_quiesce(hub, HUB_PRE_RESET);
Alan Stern600856c2014-05-20 18:08:07 -07001309 hub->in_reset = 1;
1310 hub_pm_barrier_for_all_ports(hub);
Alan Sternf07600c2007-05-30 15:38:16 -04001311 return 0;
Alan Stern7d069b72005-11-18 12:06:34 -05001312}
1313
1314/* caller has locked the hub device */
Alan Sternf07600c2007-05-30 15:38:16 -04001315static int hub_post_reset(struct usb_interface *intf)
Alan Stern7d069b72005-11-18 12:06:34 -05001316{
Alan Stern7de18d82006-06-01 13:37:24 -04001317 struct usb_hub *hub = usb_get_intfdata(intf);
1318
Alan Stern600856c2014-05-20 18:08:07 -07001319 hub->in_reset = 0;
1320 hub_pm_barrier_for_all_ports(hub);
Alan Sternf2835212008-04-28 11:07:17 -04001321 hub_activate(hub, HUB_POST_RESET);
Alan Sternf07600c2007-05-30 15:38:16 -04001322 return 0;
Alan Stern7d069b72005-11-18 12:06:34 -05001323}
1324
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325static int hub_configure(struct usb_hub *hub,
1326 struct usb_endpoint_descriptor *endpoint)
1327{
Sarah Sharpb356b7c2009-09-04 10:53:24 -07001328 struct usb_hcd *hcd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 struct usb_device *hdev = hub->hdev;
1330 struct device *hub_dev = hub->intfdev;
1331 u16 hubstatus, hubchange;
Greg Kroah-Hartman74ad9bd2005-06-20 21:15:16 -07001332 u16 wHubCharacteristics;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 unsigned int pipe;
Lan Tianyufa2a9562012-09-05 13:44:31 +08001334 int maxp, ret, i;
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001335 char *message = "out of memory";
Sebastian Andrzej Siewior430ee582012-12-18 15:25:47 +01001336 unsigned unit_load;
1337 unsigned full_load;
Dan Williamsd8521af2014-05-20 18:08:28 -07001338 unsigned maxchild;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339
Alan Sternd697cdd2009-10-27 15:18:46 -04001340 hub->buffer = kmalloc(sizeof(*hub->buffer), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 if (!hub->buffer) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 ret = -ENOMEM;
1343 goto fail;
1344 }
1345
1346 hub->status = kmalloc(sizeof(*hub->status), GFP_KERNEL);
1347 if (!hub->status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 ret = -ENOMEM;
1349 goto fail;
1350 }
Alan Sterndb90e7a2007-02-05 09:56:15 -05001351 mutex_init(&hub->status_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352
1353 hub->descriptor = kmalloc(sizeof(*hub->descriptor), GFP_KERNEL);
1354 if (!hub->descriptor) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 ret = -ENOMEM;
1356 goto fail;
1357 }
1358
1359 /* Request the entire hub descriptor.
1360 * hub->descriptor can handle USB_MAXCHILDREN ports,
1361 * but the hub can/will return fewer bytes here.
1362 */
John Youndbe79bb2001-09-17 00:00:00 -07001363 ret = get_hub_descriptor(hdev, hub->descriptor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 if (ret < 0) {
1365 message = "can't read hub descriptor";
1366 goto fail;
1367 } else if (hub->descriptor->bNbrPorts > USB_MAXCHILDREN) {
1368 message = "hub has too many ports!";
1369 ret = -ENODEV;
1370 goto fail;
David Linares769d73682013-03-25 10:50:27 +00001371 } else if (hub->descriptor->bNbrPorts == 0) {
1372 message = "hub doesn't have any ports!";
1373 ret = -ENODEV;
1374 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 }
1376
Dan Williamsd8521af2014-05-20 18:08:28 -07001377 maxchild = hub->descriptor->bNbrPorts;
1378 dev_info(hub_dev, "%d port%s detected\n", maxchild,
1379 (maxchild == 1) ? "" : "s");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380
Dan Williamsd8521af2014-05-20 18:08:28 -07001381 hub->ports = kzalloc(maxchild * sizeof(struct usb_port *), GFP_KERNEL);
Lan Tianyuff823c792012-09-05 13:44:32 +08001382 if (!hub->ports) {
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001383 ret = -ENOMEM;
1384 goto fail;
1385 }
1386
Greg Kroah-Hartman74ad9bd2005-06-20 21:15:16 -07001387 wHubCharacteristics = le16_to_cpu(hub->descriptor->wHubCharacteristics);
Sebastian Andrzej Siewior430ee582012-12-18 15:25:47 +01001388 if (hub_is_superspeed(hdev)) {
1389 unit_load = 150;
1390 full_load = 900;
1391 } else {
1392 unit_load = 100;
1393 full_load = 500;
1394 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395
John Youndbe79bb2001-09-17 00:00:00 -07001396 /* FIXME for USB 3.0, skip for now */
1397 if ((wHubCharacteristics & HUB_CHAR_COMPOUND) &&
1398 !(hub_is_superspeed(hdev))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 int i;
Matthias Beyer469271f2013-10-10 23:41:27 +02001400 char portstr[USB_MAXCHILDREN + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401
Dan Williamsd8521af2014-05-20 18:08:28 -07001402 for (i = 0; i < maxchild; i++)
John Youndbe79bb2001-09-17 00:00:00 -07001403 portstr[i] = hub->descriptor->u.hs.DeviceRemovable
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 [((i + 1) / 8)] & (1 << ((i + 1) % 8))
1405 ? 'F' : 'R';
Dan Williamsd8521af2014-05-20 18:08:28 -07001406 portstr[maxchild] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 dev_dbg(hub_dev, "compound device; port removable status: %s\n", portstr);
1408 } else
1409 dev_dbg(hub_dev, "standalone hub\n");
1410
Greg Kroah-Hartman74ad9bd2005-06-20 21:15:16 -07001411 switch (wHubCharacteristics & HUB_CHAR_LPSM) {
Aman Deep7bf01182011-12-08 12:05:22 +05301412 case HUB_CHAR_COMMON_LPSM:
1413 dev_dbg(hub_dev, "ganged power switching\n");
1414 break;
1415 case HUB_CHAR_INDV_PORT_LPSM:
1416 dev_dbg(hub_dev, "individual port power switching\n");
1417 break;
1418 case HUB_CHAR_NO_LPSM:
1419 case HUB_CHAR_LPSM:
1420 dev_dbg(hub_dev, "no power switching (usb 1.0)\n");
1421 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 }
1423
Greg Kroah-Hartman74ad9bd2005-06-20 21:15:16 -07001424 switch (wHubCharacteristics & HUB_CHAR_OCPM) {
Aman Deep7bf01182011-12-08 12:05:22 +05301425 case HUB_CHAR_COMMON_OCPM:
1426 dev_dbg(hub_dev, "global over-current protection\n");
1427 break;
1428 case HUB_CHAR_INDV_PORT_OCPM:
1429 dev_dbg(hub_dev, "individual port over-current protection\n");
1430 break;
1431 case HUB_CHAR_NO_OCPM:
1432 case HUB_CHAR_OCPM:
1433 dev_dbg(hub_dev, "no over-current protection\n");
1434 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 }
1436
1437 spin_lock_init (&hub->tt.lock);
1438 INIT_LIST_HEAD (&hub->tt.clear_list);
Alan Sterncb88a1b2009-06-29 10:43:32 -04001439 INIT_WORK(&hub->tt.clear_work, hub_tt_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 switch (hdev->descriptor.bDeviceProtocol) {
Aman Deep7bf01182011-12-08 12:05:22 +05301441 case USB_HUB_PR_FS:
1442 break;
1443 case USB_HUB_PR_HS_SINGLE_TT:
1444 dev_dbg(hub_dev, "Single TT\n");
1445 hub->tt.hub = hdev;
1446 break;
1447 case USB_HUB_PR_HS_MULTI_TT:
1448 ret = usb_set_interface(hdev, 0, 1);
1449 if (ret == 0) {
1450 dev_dbg(hub_dev, "TT per port\n");
1451 hub->tt.multi = 1;
1452 } else
1453 dev_err(hub_dev, "Using single TT (err %d)\n",
1454 ret);
1455 hub->tt.hub = hdev;
1456 break;
1457 case USB_HUB_PR_SS:
1458 /* USB 3.0 hubs don't have a TT */
1459 break;
1460 default:
1461 dev_dbg(hub_dev, "Unrecognized hub protocol %d\n",
1462 hdev->descriptor.bDeviceProtocol);
1463 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 }
1465
david-b@pacbell.nete09711a2005-08-13 18:41:04 -07001466 /* Note 8 FS bit times == (8 bits / 12000000 bps) ~= 666ns */
Greg Kroah-Hartman74ad9bd2005-06-20 21:15:16 -07001467 switch (wHubCharacteristics & HUB_CHAR_TTTT) {
Matthias Beyer469271f2013-10-10 23:41:27 +02001468 case HUB_TTTT_8_BITS:
1469 if (hdev->descriptor.bDeviceProtocol != 0) {
1470 hub->tt.think_time = 666;
david-b@pacbell.nete09711a2005-08-13 18:41:04 -07001471 dev_dbg(hub_dev, "TT requires at most %d "
1472 "FS bit times (%d ns)\n",
Matthias Beyer469271f2013-10-10 23:41:27 +02001473 8, hub->tt.think_time);
1474 }
1475 break;
1476 case HUB_TTTT_16_BITS:
1477 hub->tt.think_time = 666 * 2;
1478 dev_dbg(hub_dev, "TT requires at most %d "
1479 "FS bit times (%d ns)\n",
1480 16, hub->tt.think_time);
1481 break;
1482 case HUB_TTTT_24_BITS:
1483 hub->tt.think_time = 666 * 3;
1484 dev_dbg(hub_dev, "TT requires at most %d "
1485 "FS bit times (%d ns)\n",
1486 24, hub->tt.think_time);
1487 break;
1488 case HUB_TTTT_32_BITS:
1489 hub->tt.think_time = 666 * 4;
1490 dev_dbg(hub_dev, "TT requires at most %d "
1491 "FS bit times (%d ns)\n",
1492 32, hub->tt.think_time);
1493 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494 }
1495
1496 /* probe() zeroes hub->indicator[] */
Greg Kroah-Hartman74ad9bd2005-06-20 21:15:16 -07001497 if (wHubCharacteristics & HUB_CHAR_PORTIND) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 hub->has_indicators = 1;
1499 dev_dbg(hub_dev, "Port indicators are supported\n");
1500 }
1501
1502 dev_dbg(hub_dev, "power on to power good time: %dms\n",
1503 hub->descriptor->bPwrOn2PwrGood * 2);
1504
1505 /* power budgeting mostly matters with bus-powered hubs,
1506 * and battery-powered root hubs (may provide just 8 mA).
1507 */
1508 ret = usb_get_status(hdev, USB_RECIP_DEVICE, 0, &hubstatus);
Alan Stern15b73362013-07-30 15:35:40 -04001509 if (ret) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 message = "can't get hub status";
1511 goto fail;
1512 }
Sebastian Andrzej Siewior430ee582012-12-18 15:25:47 +01001513 hcd = bus_to_hcd(hdev->bus);
Alan Stern7d35b922005-04-25 11:18:32 -04001514 if (hdev == hdev->bus->root_hub) {
Sebastian Andrzej Siewior430ee582012-12-18 15:25:47 +01001515 if (hcd->power_budget > 0)
1516 hdev->bus_mA = hcd->power_budget;
1517 else
Dan Williamsd8521af2014-05-20 18:08:28 -07001518 hdev->bus_mA = full_load * maxchild;
Sebastian Andrzej Siewior430ee582012-12-18 15:25:47 +01001519 if (hdev->bus_mA >= full_load)
1520 hub->mA_per_port = full_load;
Alan Stern55c52712005-11-23 12:03:12 -05001521 else {
1522 hub->mA_per_port = hdev->bus_mA;
1523 hub->limited_power = 1;
1524 }
Alan Stern7d35b922005-04-25 11:18:32 -04001525 } else if ((hubstatus & (1 << USB_DEVICE_SELF_POWERED)) == 0) {
Sebastian Andrzej Siewior430ee582012-12-18 15:25:47 +01001526 int remaining = hdev->bus_mA -
1527 hub->descriptor->bHubContrCurrent;
1528
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 dev_dbg(hub_dev, "hub controller current requirement: %dmA\n",
1530 hub->descriptor->bHubContrCurrent);
Alan Stern55c52712005-11-23 12:03:12 -05001531 hub->limited_power = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532
Dan Williamsd8521af2014-05-20 18:08:28 -07001533 if (remaining < maxchild * unit_load)
Sebastian Andrzej Siewior430ee582012-12-18 15:25:47 +01001534 dev_warn(hub_dev,
Alan Stern55c52712005-11-23 12:03:12 -05001535 "insufficient power available "
1536 "to use all downstream ports\n");
Sebastian Andrzej Siewior430ee582012-12-18 15:25:47 +01001537 hub->mA_per_port = unit_load; /* 7.2.1 */
1538
Alan Stern55c52712005-11-23 12:03:12 -05001539 } else { /* Self-powered external hub */
1540 /* FIXME: What about battery-powered external hubs that
1541 * provide less current per port? */
Sebastian Andrzej Siewior430ee582012-12-18 15:25:47 +01001542 hub->mA_per_port = full_load;
Alan Stern55c52712005-11-23 12:03:12 -05001543 }
Sebastian Andrzej Siewior430ee582012-12-18 15:25:47 +01001544 if (hub->mA_per_port < full_load)
Alan Stern55c52712005-11-23 12:03:12 -05001545 dev_dbg(hub_dev, "%umA bus power budget for each child\n",
1546 hub->mA_per_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547
1548 ret = hub_hub_status(hub, &hubstatus, &hubchange);
1549 if (ret < 0) {
1550 message = "can't get hub status";
1551 goto fail;
1552 }
1553
1554 /* local power status reports aren't always correct */
1555 if (hdev->actconfig->desc.bmAttributes & USB_CONFIG_ATT_SELFPOWER)
1556 dev_dbg(hub_dev, "local power source is %s\n",
1557 (hubstatus & HUB_STATUS_LOCAL_POWER)
1558 ? "lost (inactive)" : "good");
1559
Greg Kroah-Hartman74ad9bd2005-06-20 21:15:16 -07001560 if ((wHubCharacteristics & HUB_CHAR_OCPM) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561 dev_dbg(hub_dev, "%sover-current condition exists\n",
1562 (hubstatus & HUB_STATUS_OVERCURRENT) ? "" : "no ");
1563
inaky@linux.intel.com88fafff2006-10-11 20:05:59 -07001564 /* set up the interrupt endpoint
1565 * We use the EP's maxpacket size instead of (PORTS+1+7)/8
1566 * bytes as USB2.0[11.12.3] says because some hubs are known
1567 * to send more data (and thus cause overflow). For root hubs,
1568 * maxpktsize is defined in hcd.c's fake endpoint descriptors
1569 * to be big enough for at least USB_MAXCHILDREN ports. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570 pipe = usb_rcvintpipe(hdev, endpoint->bEndpointAddress);
1571 maxp = usb_maxpacket(hdev, pipe, usb_pipeout(pipe));
1572
1573 if (maxp > sizeof(*hub->buffer))
1574 maxp = sizeof(*hub->buffer);
1575
1576 hub->urb = usb_alloc_urb(0, GFP_KERNEL);
1577 if (!hub->urb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 ret = -ENOMEM;
1579 goto fail;
1580 }
1581
1582 usb_fill_int_urb(hub->urb, hdev, pipe, *hub->buffer, maxp, hub_irq,
1583 hub, endpoint->bInterval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584
1585 /* maybe cycle the hub leds */
1586 if (hub->has_indicators && blinkenlights)
Matthias Beyer469271f2013-10-10 23:41:27 +02001587 hub->indicator[0] = INDICATOR_CYCLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588
Dan Williamsd8521af2014-05-20 18:08:28 -07001589 mutex_lock(&usb_port_peer_mutex);
1590 for (i = 0; i < maxchild; i++) {
Krzysztof Mazure58547e2013-08-22 14:49:39 +02001591 ret = usb_hub_create_port_device(hub, i + 1);
1592 if (ret < 0) {
Lan Tianyufa2a9562012-09-05 13:44:31 +08001593 dev_err(hub->intfdev,
1594 "couldn't create port%d device.\n", i + 1);
Dan Williamsd8521af2014-05-20 18:08:28 -07001595 break;
Krzysztof Mazure58547e2013-08-22 14:49:39 +02001596 }
1597 }
Dan Williamsd8521af2014-05-20 18:08:28 -07001598 hdev->maxchild = i;
Dan Williamse3d10502014-06-17 16:16:32 -07001599 for (i = 0; i < hdev->maxchild; i++) {
1600 struct usb_port *port_dev = hub->ports[i];
1601
1602 pm_runtime_put(&port_dev->dev);
1603 }
1604
Dan Williamsd8521af2014-05-20 18:08:28 -07001605 mutex_unlock(&usb_port_peer_mutex);
1606 if (ret < 0)
1607 goto fail;
Lan Tianyufa2a9562012-09-05 13:44:31 +08001608
Dan Williamse3d95582014-06-05 14:23:04 -07001609 /* Update the HCD's internal representation of this hub before khubd
1610 * starts getting port status changes for devices under the hub.
1611 */
1612 if (hcd->driver->update_hub_device) {
1613 ret = hcd->driver->update_hub_device(hcd, hdev,
1614 &hub->tt, GFP_KERNEL);
1615 if (ret < 0) {
1616 message = "can't update HCD hub info";
1617 goto fail;
1618 }
1619 }
1620
Lan Tianyud2123fd2013-01-21 22:18:00 +08001621 usb_hub_adjust_deviceremovable(hdev, hub->descriptor);
1622
Alan Sternf2835212008-04-28 11:07:17 -04001623 hub_activate(hub, HUB_INIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624 return 0;
1625
1626fail:
1627 dev_err (hub_dev, "config failed, %s (err %d)\n",
1628 message, ret);
1629 /* hub_disconnect() frees urb and descriptor */
1630 return ret;
1631}
1632
Alan Sterne8054852007-05-04 11:55:11 -04001633static void hub_release(struct kref *kref)
1634{
1635 struct usb_hub *hub = container_of(kref, struct usb_hub, kref);
1636
1637 usb_put_intf(to_usb_interface(hub->intfdev));
1638 kfree(hub);
1639}
1640
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641static unsigned highspeed_hubs;
1642
1643static void hub_disconnect(struct usb_interface *intf)
1644{
Huajun Li88162302012-03-12 21:00:19 +08001645 struct usb_hub *hub = usb_get_intfdata(intf);
Greg Kroah-Hartmanfa286182012-05-14 09:20:37 -07001646 struct usb_device *hdev = interface_to_usbdev(intf);
Alan Stern543d7782014-01-07 10:43:02 -05001647 int port1;
Lan Tianyufa2a9562012-09-05 13:44:31 +08001648
Alan Sterne8054852007-05-04 11:55:11 -04001649 /* Take the hub off the event list and don't let it be added again */
1650 spin_lock_irq(&hub_event_lock);
Alan Stern8e4ceb32009-12-07 13:01:37 -05001651 if (!list_empty(&hub->event_list)) {
1652 list_del_init(&hub->event_list);
1653 usb_autopm_put_interface_no_suspend(intf);
1654 }
Alan Sterne8054852007-05-04 11:55:11 -04001655 hub->disconnected = 1;
1656 spin_unlock_irq(&hub_event_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657
Alan Stern7de18d82006-06-01 13:37:24 -04001658 /* Disconnect all children and quiesce the hub */
1659 hub->error = 0;
Alan Stern43303542008-04-28 11:07:31 -04001660 hub_quiesce(hub, HUB_DISCONNECT);
Alan Stern7de18d82006-06-01 13:37:24 -04001661
Dan Williamsd8521af2014-05-20 18:08:28 -07001662 mutex_lock(&usb_port_peer_mutex);
1663
Alan Stern543d7782014-01-07 10:43:02 -05001664 /* Avoid races with recursively_mark_NOTATTACHED() */
1665 spin_lock_irq(&device_state_lock);
1666 port1 = hdev->maxchild;
1667 hdev->maxchild = 0;
1668 usb_set_intfdata(intf, NULL);
1669 spin_unlock_irq(&device_state_lock);
Alexander Shishkin1f2235b2012-09-12 14:48:31 +03001670
Alan Stern543d7782014-01-07 10:43:02 -05001671 for (; port1 > 0; --port1)
1672 usb_hub_remove_port_device(hub, port1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673
Dan Williamsd8521af2014-05-20 18:08:28 -07001674 mutex_unlock(&usb_port_peer_mutex);
1675
Alan Sterne8054852007-05-04 11:55:11 -04001676 if (hub->hdev->speed == USB_SPEED_HIGH)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677 highspeed_hubs--;
1678
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679 usb_free_urb(hub->urb);
Lan Tianyufa2a9562012-09-05 13:44:31 +08001680 kfree(hub->ports);
Jesper Juhl1bc3c9e2005-04-18 17:39:34 -07001681 kfree(hub->descriptor);
Jesper Juhl1bc3c9e2005-04-18 17:39:34 -07001682 kfree(hub->status);
Alan Sternd697cdd2009-10-27 15:18:46 -04001683 kfree(hub->buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684
Lan Tianyu971fcd42013-01-23 04:26:29 +08001685 pm_suspend_ignore_children(&intf->dev, false);
Alan Sterne8054852007-05-04 11:55:11 -04001686 kref_put(&hub->kref, hub_release);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687}
1688
1689static int hub_probe(struct usb_interface *intf, const struct usb_device_id *id)
1690{
1691 struct usb_host_interface *desc;
1692 struct usb_endpoint_descriptor *endpoint;
1693 struct usb_device *hdev;
1694 struct usb_hub *hub;
1695
1696 desc = intf->cur_altsetting;
1697 hdev = interface_to_usbdev(intf);
1698
Ming Lei596d7892012-10-24 11:59:25 +08001699 /*
1700 * Set default autosuspend delay as 0 to speedup bus suspend,
1701 * based on the below considerations:
1702 *
1703 * - Unlike other drivers, the hub driver does not rely on the
1704 * autosuspend delay to provide enough time to handle a wakeup
1705 * event, and the submitted status URB is just to check future
1706 * change on hub downstream ports, so it is safe to do it.
1707 *
1708 * - The patch might cause one or more auto supend/resume for
1709 * below very rare devices when they are plugged into hub
1710 * first time:
1711 *
1712 * devices having trouble initializing, and disconnect
1713 * themselves from the bus and then reconnect a second
1714 * or so later
1715 *
1716 * devices just for downloading firmware, and disconnects
1717 * themselves after completing it
1718 *
1719 * For these quite rare devices, their drivers may change the
1720 * autosuspend delay of their parent hub in the probe() to one
1721 * appropriate value to avoid the subtle problem if someone
1722 * does care it.
1723 *
1724 * - The patch may cause one or more auto suspend/resume on
1725 * hub during running 'lsusb', but it is probably too
1726 * infrequent to worry about.
1727 *
1728 * - Change autosuspend delay of hub can avoid unnecessary auto
1729 * suspend timer for hub, also may decrease power consumption
1730 * of USB bus.
Roger Quadrosbdd405d2014-08-04 12:44:46 +03001731 *
1732 * - If user has indicated to prevent autosuspend by passing
1733 * usbcore.autosuspend = -1 then keep autosuspend disabled.
Ming Lei596d7892012-10-24 11:59:25 +08001734 */
Roger Quadrosbdd405d2014-08-04 12:44:46 +03001735 if (hdev->dev.power.autosuspend_delay >= 0)
1736 pm_runtime_set_autosuspend_delay(&hdev->dev, 0);
Ming Lei596d7892012-10-24 11:59:25 +08001737
Alan Stern8ef42dd2014-05-23 10:45:54 -04001738 /*
1739 * Hubs have proper suspend/resume support, except for root hubs
1740 * where the controller driver doesn't have bus_suspend and
1741 * bus_resume methods.
1742 */
1743 if (hdev->parent) { /* normal device */
1744 usb_enable_autosuspend(hdev);
1745 } else { /* root hub */
1746 const struct hc_driver *drv = bus_to_hcd(hdev->bus)->driver;
1747
1748 if (drv->bus_suspend && drv->bus_resume)
1749 usb_enable_autosuspend(hdev);
1750 }
Alan Stern088f7fe2010-01-08 12:56:54 -05001751
Felipe Balbi38f3ad52008-06-12 10:49:47 +03001752 if (hdev->level == MAX_TOPO_LEVEL) {
Wu Fengguangb9cef6c2008-12-15 15:32:01 +08001753 dev_err(&intf->dev,
1754 "Unsupported bus topology: hub nested too deep\n");
Felipe Balbi38f3ad52008-06-12 10:49:47 +03001755 return -E2BIG;
1756 }
1757
David Brownell89ccbdc2006-04-02 10:18:09 -08001758#ifdef CONFIG_USB_OTG_BLACKLIST_HUB
1759 if (hdev->parent) {
1760 dev_warn(&intf->dev, "ignoring external hub\n");
1761 return -ENODEV;
1762 }
1763#endif
1764
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765 /* Some hubs have a subclass of 1, which AFAICT according to the */
1766 /* specs is not defined, but it works */
1767 if ((desc->desc.bInterfaceSubClass != 0) &&
1768 (desc->desc.bInterfaceSubClass != 1)) {
1769descriptor_error:
1770 dev_err (&intf->dev, "bad descriptor, ignoring hub\n");
1771 return -EIO;
1772 }
1773
1774 /* Multiple endpoints? What kind of mutant ninja-hub is this? */
1775 if (desc->desc.bNumEndpoints != 1)
1776 goto descriptor_error;
1777
1778 endpoint = &desc->endpoint[0].desc;
1779
Luiz Fernando N. Capitulinofbf81c22006-09-27 11:58:53 -07001780 /* If it's not an interrupt in endpoint, we'd better punt! */
1781 if (!usb_endpoint_is_int_in(endpoint))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 goto descriptor_error;
1783
1784 /* We found a hub */
1785 dev_info (&intf->dev, "USB hub found\n");
1786
Alan Stern0a1ef3b2005-10-24 15:38:24 -04001787 hub = kzalloc(sizeof(*hub), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788 if (!hub) {
1789 dev_dbg (&intf->dev, "couldn't kmalloc hub struct\n");
1790 return -ENOMEM;
1791 }
1792
Alan Sterne8054852007-05-04 11:55:11 -04001793 kref_init(&hub->kref);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794 INIT_LIST_HEAD(&hub->event_list);
1795 hub->intfdev = &intf->dev;
1796 hub->hdev = hdev;
David Howellsc4028952006-11-22 14:57:56 +00001797 INIT_DELAYED_WORK(&hub->leds, led_work);
Alan Stern8520f382008-09-22 14:44:26 -04001798 INIT_DELAYED_WORK(&hub->init_work, NULL);
Alan Sterne8054852007-05-04 11:55:11 -04001799 usb_get_intf(intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800
1801 usb_set_intfdata (intf, hub);
Alan Stern40f122f2006-11-09 14:44:33 -05001802 intf->needs_remote_wakeup = 1;
Lan Tianyu971fcd42013-01-23 04:26:29 +08001803 pm_suspend_ignore_children(&intf->dev, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804
1805 if (hdev->speed == USB_SPEED_HIGH)
1806 highspeed_hubs++;
1807
Ming Leie6f30de2012-10-24 11:59:24 +08001808 if (id->driver_info & HUB_QUIRK_CHECK_PORT_AUTOSUSPEND)
1809 hub->quirk_check_port_auto_suspend = 1;
1810
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811 if (hub_configure(hub, endpoint) >= 0)
1812 return 0;
1813
1814 hub_disconnect (intf);
1815 return -ENODEV;
1816}
1817
1818static int
1819hub_ioctl(struct usb_interface *intf, unsigned int code, void *user_data)
1820{
1821 struct usb_device *hdev = interface_to_usbdev (intf);
Lan Tianyuad493e52013-01-23 04:26:30 +08001822 struct usb_hub *hub = usb_hub_to_struct_hub(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823
1824 /* assert ifno == 0 (part of hub spec) */
1825 switch (code) {
1826 case USBDEVFS_HUB_PORTINFO: {
1827 struct usbdevfs_hub_portinfo *info = user_data;
1828 int i;
1829
1830 spin_lock_irq(&device_state_lock);
1831 if (hdev->devnum <= 0)
1832 info->nports = 0;
1833 else {
1834 info->nports = hdev->maxchild;
1835 for (i = 0; i < info->nports; i++) {
Lan Tianyuff823c792012-09-05 13:44:32 +08001836 if (hub->ports[i]->child == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837 info->port[i] = 0;
1838 else
1839 info->port[i] =
Lan Tianyuff823c792012-09-05 13:44:32 +08001840 hub->ports[i]->child->devnum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 }
1842 }
1843 spin_unlock_irq(&device_state_lock);
1844
1845 return info->nports + 1;
1846 }
1847
1848 default:
1849 return -ENOSYS;
1850 }
1851}
1852
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001853/*
1854 * Allow user programs to claim ports on a hub. When a device is attached
1855 * to one of these "claimed" ports, the program will "own" the device.
1856 */
1857static int find_port_owner(struct usb_device *hdev, unsigned port1,
Valentina Manea9b6f0c42014-03-10 10:36:40 +02001858 struct usb_dev_state ***ppowner)
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001859{
Mathias Nyman413412612013-06-18 17:28:48 +03001860 struct usb_hub *hub = usb_hub_to_struct_hub(hdev);
1861
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001862 if (hdev->state == USB_STATE_NOTATTACHED)
1863 return -ENODEV;
1864 if (port1 == 0 || port1 > hdev->maxchild)
1865 return -EINVAL;
1866
Mathias Nyman413412612013-06-18 17:28:48 +03001867 /* Devices not managed by the hub driver
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001868 * will always have maxchild equal to 0.
1869 */
Mathias Nyman413412612013-06-18 17:28:48 +03001870 *ppowner = &(hub->ports[port1 - 1]->port_owner);
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001871 return 0;
1872}
1873
1874/* In the following three functions, the caller must hold hdev's lock */
Lan Tianyu336c5c32012-07-06 14:13:52 +08001875int usb_hub_claim_port(struct usb_device *hdev, unsigned port1,
Valentina Manea9b6f0c42014-03-10 10:36:40 +02001876 struct usb_dev_state *owner)
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001877{
1878 int rc;
Valentina Manea9b6f0c42014-03-10 10:36:40 +02001879 struct usb_dev_state **powner;
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001880
1881 rc = find_port_owner(hdev, port1, &powner);
1882 if (rc)
1883 return rc;
1884 if (*powner)
1885 return -EBUSY;
1886 *powner = owner;
1887 return rc;
1888}
Valentina Manea6080cd02014-03-08 14:53:34 +02001889EXPORT_SYMBOL_GPL(usb_hub_claim_port);
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001890
Lan Tianyu336c5c32012-07-06 14:13:52 +08001891int usb_hub_release_port(struct usb_device *hdev, unsigned port1,
Valentina Manea9b6f0c42014-03-10 10:36:40 +02001892 struct usb_dev_state *owner)
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001893{
1894 int rc;
Valentina Manea9b6f0c42014-03-10 10:36:40 +02001895 struct usb_dev_state **powner;
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001896
1897 rc = find_port_owner(hdev, port1, &powner);
1898 if (rc)
1899 return rc;
1900 if (*powner != owner)
1901 return -ENOENT;
1902 *powner = NULL;
1903 return rc;
1904}
Valentina Manea6080cd02014-03-08 14:53:34 +02001905EXPORT_SYMBOL_GPL(usb_hub_release_port);
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001906
Valentina Manea9b6f0c42014-03-10 10:36:40 +02001907void usb_hub_release_all_ports(struct usb_device *hdev, struct usb_dev_state *owner)
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001908{
Lan Tianyuad493e52013-01-23 04:26:30 +08001909 struct usb_hub *hub = usb_hub_to_struct_hub(hdev);
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001910 int n;
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001911
Lan Tianyufa2a9562012-09-05 13:44:31 +08001912 for (n = 0; n < hdev->maxchild; n++) {
1913 if (hub->ports[n]->port_owner == owner)
1914 hub->ports[n]->port_owner = NULL;
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001915 }
Lan Tianyufa2a9562012-09-05 13:44:31 +08001916
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001917}
1918
1919/* The caller must hold udev's lock */
1920bool usb_device_is_owned(struct usb_device *udev)
1921{
1922 struct usb_hub *hub;
1923
1924 if (udev->state == USB_STATE_NOTATTACHED || !udev->parent)
1925 return false;
Lan Tianyuad493e52013-01-23 04:26:30 +08001926 hub = usb_hub_to_struct_hub(udev->parent);
Lan Tianyufa2a9562012-09-05 13:44:31 +08001927 return !!hub->ports[udev->portnum - 1]->port_owner;
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001928}
1929
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930static void recursively_mark_NOTATTACHED(struct usb_device *udev)
1931{
Lan Tianyuad493e52013-01-23 04:26:30 +08001932 struct usb_hub *hub = usb_hub_to_struct_hub(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933 int i;
1934
1935 for (i = 0; i < udev->maxchild; ++i) {
Lan Tianyuff823c792012-09-05 13:44:32 +08001936 if (hub->ports[i]->child)
1937 recursively_mark_NOTATTACHED(hub->ports[i]->child);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938 }
Alan Stern9bbdf1e2010-01-08 12:57:28 -05001939 if (udev->state == USB_STATE_SUSPENDED)
Sarah Sharp15123002007-12-21 16:54:15 -08001940 udev->active_duration -= jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941 udev->state = USB_STATE_NOTATTACHED;
1942}
1943
1944/**
1945 * usb_set_device_state - change a device's current state (usbcore, hcds)
1946 * @udev: pointer to device whose state should be changed
1947 * @new_state: new state value to be stored
1948 *
1949 * udev->state is _not_ fully protected by the device lock. Although
1950 * most transitions are made only while holding the lock, the state can
1951 * can change to USB_STATE_NOTATTACHED at almost any time. This
1952 * is so that devices can be marked as disconnected as soon as possible,
1953 * without having to wait for any semaphores to be released. As a result,
1954 * all changes to any device's state must be protected by the
1955 * device_state_lock spinlock.
1956 *
1957 * Once a device has been added to the device tree, all changes to its state
1958 * should be made using this routine. The state should _not_ be set directly.
1959 *
1960 * If udev->state is already USB_STATE_NOTATTACHED then no change is made.
1961 * Otherwise udev->state is set to new_state, and if new_state is
1962 * USB_STATE_NOTATTACHED then all of udev's descendants' states are also set
1963 * to USB_STATE_NOTATTACHED.
1964 */
1965void usb_set_device_state(struct usb_device *udev,
1966 enum usb_device_state new_state)
1967{
1968 unsigned long flags;
Rafael J. Wysocki4681b172011-02-08 23:25:48 +01001969 int wakeup = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970
1971 spin_lock_irqsave(&device_state_lock, flags);
1972 if (udev->state == USB_STATE_NOTATTACHED)
1973 ; /* do nothing */
David Brownellb94dc6b2005-09-12 19:39:39 -07001974 else if (new_state != USB_STATE_NOTATTACHED) {
David Brownellfb669cc2006-01-24 08:40:27 -08001975
1976 /* root hub wakeup capabilities are managed out-of-band
1977 * and may involve silicon errata ... ignore them here.
1978 */
1979 if (udev->parent) {
Alan Stern645daaa2006-08-30 15:47:02 -04001980 if (udev->state == USB_STATE_SUSPENDED
1981 || new_state == USB_STATE_SUSPENDED)
1982 ; /* No change to wakeup settings */
1983 else if (new_state == USB_STATE_CONFIGURED)
Rafael J. Wysocki4681b172011-02-08 23:25:48 +01001984 wakeup = udev->actconfig->desc.bmAttributes
1985 & USB_CONFIG_ATT_WAKEUP;
Alan Stern645daaa2006-08-30 15:47:02 -04001986 else
Rafael J. Wysocki4681b172011-02-08 23:25:48 +01001987 wakeup = 0;
David Brownellfb669cc2006-01-24 08:40:27 -08001988 }
Sarah Sharp15123002007-12-21 16:54:15 -08001989 if (udev->state == USB_STATE_SUSPENDED &&
1990 new_state != USB_STATE_SUSPENDED)
1991 udev->active_duration -= jiffies;
1992 else if (new_state == USB_STATE_SUSPENDED &&
1993 udev->state != USB_STATE_SUSPENDED)
1994 udev->active_duration += jiffies;
Alan Stern645daaa2006-08-30 15:47:02 -04001995 udev->state = new_state;
David Brownellb94dc6b2005-09-12 19:39:39 -07001996 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997 recursively_mark_NOTATTACHED(udev);
1998 spin_unlock_irqrestore(&device_state_lock, flags);
Rafael J. Wysocki4681b172011-02-08 23:25:48 +01001999 if (wakeup >= 0)
2000 device_set_wakeup_capable(&udev->dev, wakeup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001}
David Vrabel6da9c992009-02-18 14:43:47 +00002002EXPORT_SYMBOL_GPL(usb_set_device_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003
Inaky Perez-Gonzalez8af548d2008-04-08 13:24:46 -07002004/*
Alan Stern3b29b682011-02-22 09:53:41 -05002005 * Choose a device number.
2006 *
2007 * Device numbers are used as filenames in usbfs. On USB-1.1 and
2008 * USB-2.0 buses they are also used as device addresses, however on
2009 * USB-3.0 buses the address is assigned by the controller hardware
2010 * and it usually is not the same as the device number.
2011 *
Inaky Perez-Gonzalez8af548d2008-04-08 13:24:46 -07002012 * WUSB devices are simple: they have no hubs behind, so the mapping
2013 * device <-> virtual port number becomes 1:1. Why? to simplify the
2014 * life of the device connection logic in
2015 * drivers/usb/wusbcore/devconnect.c. When we do the initial secret
2016 * handshake we need to assign a temporary address in the unauthorized
2017 * space. For simplicity we use the first virtual port number found to
2018 * be free [drivers/usb/wusbcore/devconnect.c:wusbhc_devconnect_ack()]
2019 * and that becomes it's address [X < 128] or its unauthorized address
2020 * [X | 0x80].
2021 *
2022 * We add 1 as an offset to the one-based USB-stack port number
2023 * (zero-based wusb virtual port index) for two reasons: (a) dev addr
2024 * 0 is reserved by USB for default address; (b) Linux's USB stack
2025 * uses always #1 for the root hub of the controller. So USB stack's
2026 * port #1, which is wusb virtual-port #0 has address #2.
Sarah Sharpc6515272009-04-27 19:57:26 -07002027 *
2028 * Devices connected under xHCI are not as simple. The host controller
2029 * supports virtualization, so the hardware assigns device addresses and
2030 * the HCD must setup data structures before issuing a set address
2031 * command to the hardware.
Inaky Perez-Gonzalez8af548d2008-04-08 13:24:46 -07002032 */
Alan Stern3b29b682011-02-22 09:53:41 -05002033static void choose_devnum(struct usb_device *udev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034{
2035 int devnum;
2036 struct usb_bus *bus = udev->bus;
2037
2038 /* If khubd ever becomes multithreaded, this will need a lock */
Inaky Perez-Gonzalez8af548d2008-04-08 13:24:46 -07002039 if (udev->wusb) {
2040 devnum = udev->portnum + 1;
2041 BUG_ON(test_bit(devnum, bus->devmap.devicemap));
2042 } else {
2043 /* Try to allocate the next devnum beginning at
2044 * bus->devnum_next. */
2045 devnum = find_next_zero_bit(bus->devmap.devicemap, 128,
2046 bus->devnum_next);
2047 if (devnum >= 128)
2048 devnum = find_next_zero_bit(bus->devmap.devicemap,
2049 128, 1);
Matthias Beyer469271f2013-10-10 23:41:27 +02002050 bus->devnum_next = (devnum >= 127 ? 1 : devnum + 1);
Inaky Perez-Gonzalez8af548d2008-04-08 13:24:46 -07002051 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052 if (devnum < 128) {
2053 set_bit(devnum, bus->devmap.devicemap);
2054 udev->devnum = devnum;
2055 }
2056}
2057
Alan Stern3b29b682011-02-22 09:53:41 -05002058static void release_devnum(struct usb_device *udev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059{
2060 if (udev->devnum > 0) {
2061 clear_bit(udev->devnum, udev->bus->devmap.devicemap);
2062 udev->devnum = -1;
2063 }
2064}
2065
Alan Stern3b29b682011-02-22 09:53:41 -05002066static void update_devnum(struct usb_device *udev, int devnum)
David Vrabel4953d142008-04-08 13:24:46 -07002067{
2068 /* The address for a WUSB device is managed by wusbcore. */
2069 if (!udev->wusb)
2070 udev->devnum = devnum;
2071}
2072
Herbert Xuf7410ce2010-01-10 20:15:03 +11002073static void hub_free_dev(struct usb_device *udev)
2074{
2075 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
2076
2077 /* Root hubs aren't real devices, so don't free HCD resources */
2078 if (hcd->driver->free_dev && udev->parent)
2079 hcd->driver->free_dev(hcd, udev);
2080}
2081
Dan Williams7027df32014-05-20 18:09:36 -07002082static void hub_disconnect_children(struct usb_device *udev)
2083{
2084 struct usb_hub *hub = usb_hub_to_struct_hub(udev);
2085 int i;
2086
2087 /* Free up all the children before we remove this device */
2088 for (i = 0; i < udev->maxchild; i++) {
2089 if (hub->ports[i]->child)
2090 usb_disconnect(&hub->ports[i]->child);
2091 }
2092}
2093
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094/**
2095 * usb_disconnect - disconnect a device (usbcore-internal)
2096 * @pdev: pointer to device being disconnected
2097 * Context: !in_interrupt ()
2098 *
2099 * Something got disconnected. Get rid of it and all of its children.
2100 *
2101 * If *pdev is a normal device then the parent hub must already be locked.
Bjorn Helgaasdb8f2aa2013-09-13 13:57:34 -06002102 * If *pdev is a root hub then the caller must hold the usb_bus_list_lock,
2103 * which protects the set of root hubs as well as the list of buses.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104 *
2105 * Only hub drivers (including virtual root hub drivers for host
2106 * controllers) should ever call this.
2107 *
2108 * This call is synchronous, and may not be used in an interrupt context.
2109 */
2110void usb_disconnect(struct usb_device **pdev)
2111{
Dan Williams7027df32014-05-20 18:09:36 -07002112 struct usb_port *port_dev = NULL;
2113 struct usb_device *udev = *pdev;
Peter Chen5b1dc202014-08-19 08:56:21 +08002114 struct usb_hub *hub = NULL;
2115 int port1 = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117 /* mark the device as inactive, so any further urb submissions for
2118 * this device (and any of its children) will fail immediately.
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002119 * this quiesces everything except pending urbs.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120 */
2121 usb_set_device_state(udev, USB_STATE_NOTATTACHED);
Alan Stern3b29b682011-02-22 09:53:41 -05002122 dev_info(&udev->dev, "USB disconnect, device number %d\n",
2123 udev->devnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124
Alan Stern9ad3d6c2005-11-17 17:10:32 -05002125 usb_lock_device(udev);
2126
Dan Williams7027df32014-05-20 18:09:36 -07002127 hub_disconnect_children(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128
2129 /* deallocate hcd/hardware state ... nuking all pending urbs and
2130 * cleaning up all state associated with the current configuration
2131 * so that the hardware is now fully quiesced.
2132 */
Alan Stern782da722006-07-01 22:09:35 -04002133 dev_dbg (&udev->dev, "unregistering device\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134 usb_disable_device(udev, 0);
Alan Sterncde217a2008-10-21 15:28:46 -04002135 usb_hcd_synchronize_unlinks(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136
Lan Tianyufde26382013-01-20 01:53:33 +08002137 if (udev->parent) {
Dan Williams7027df32014-05-20 18:09:36 -07002138 port1 = udev->portnum;
2139 hub = usb_hub_to_struct_hub(udev->parent);
2140 port_dev = hub->ports[port1 - 1];
Lan Tianyufde26382013-01-20 01:53:33 +08002141
2142 sysfs_remove_link(&udev->dev.kobj, "port");
2143 sysfs_remove_link(&port_dev->dev.kobj, "device");
Lan Tianyu971fcd42013-01-23 04:26:29 +08002144
Dan Williams7027df32014-05-20 18:09:36 -07002145 /*
2146 * As usb_port_runtime_resume() de-references udev, make
2147 * sure no resumes occur during removal
2148 */
2149 if (!test_and_set_bit(port1, hub->child_usage_bits))
2150 pm_runtime_get_sync(&port_dev->dev);
Lan Tianyufde26382013-01-20 01:53:33 +08002151 }
2152
Alan Stern3b23dd62008-12-05 14:10:34 -05002153 usb_remove_ep_devs(&udev->ep0);
Alan Stern782da722006-07-01 22:09:35 -04002154 usb_unlock_device(udev);
Greg Kroah-Hartman3099e752005-06-20 21:15:16 -07002155
Alan Stern782da722006-07-01 22:09:35 -04002156 /* Unregister the device. The device driver is responsible
Alan Stern3b23dd62008-12-05 14:10:34 -05002157 * for de-configuring the device and invoking the remove-device
2158 * notifier chain (used by usbfs and possibly others).
Alan Stern782da722006-07-01 22:09:35 -04002159 */
2160 device_del(&udev->dev);
2161
2162 /* Free the device number and delete the parent's children[]
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163 * (or root_hub) pointer.
2164 */
Alan Stern3b29b682011-02-22 09:53:41 -05002165 release_devnum(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166
2167 /* Avoid races with recursively_mark_NOTATTACHED() */
2168 spin_lock_irq(&device_state_lock);
2169 *pdev = NULL;
2170 spin_unlock_irq(&device_state_lock);
2171
Dan Williams7027df32014-05-20 18:09:36 -07002172 if (port_dev && test_and_clear_bit(port1, hub->child_usage_bits))
2173 pm_runtime_put(&port_dev->dev);
2174
Herbert Xuf7410ce2010-01-10 20:15:03 +11002175 hub_free_dev(udev);
2176
Alan Stern782da722006-07-01 22:09:35 -04002177 put_device(&udev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178}
2179
Greg Kroah-Hartmanf2a383e2007-11-26 22:11:55 -08002180#ifdef CONFIG_USB_ANNOUNCE_NEW_DEVICES
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181static void show_string(struct usb_device *udev, char *id, char *string)
2182{
2183 if (!string)
2184 return;
Joe Perchesf2ec5222012-10-28 01:05:51 -07002185 dev_info(&udev->dev, "%s: %s\n", id, string);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186}
2187
Greg Kroah-Hartmanf2a383e2007-11-26 22:11:55 -08002188static void announce_device(struct usb_device *udev)
2189{
2190 dev_info(&udev->dev, "New USB device found, idVendor=%04x, idProduct=%04x\n",
2191 le16_to_cpu(udev->descriptor.idVendor),
2192 le16_to_cpu(udev->descriptor.idProduct));
Wu Fengguangb9cef6c2008-12-15 15:32:01 +08002193 dev_info(&udev->dev,
2194 "New USB device strings: Mfr=%d, Product=%d, SerialNumber=%d\n",
Greg Kroah-Hartmanf2a383e2007-11-26 22:11:55 -08002195 udev->descriptor.iManufacturer,
2196 udev->descriptor.iProduct,
2197 udev->descriptor.iSerialNumber);
2198 show_string(udev, "Product", udev->product);
2199 show_string(udev, "Manufacturer", udev->manufacturer);
2200 show_string(udev, "SerialNumber", udev->serial);
2201}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202#else
Greg Kroah-Hartmanf2a383e2007-11-26 22:11:55 -08002203static inline void announce_device(struct usb_device *udev) { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204#endif
2205
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206#ifdef CONFIG_USB_OTG
2207#include "otg_whitelist.h"
2208#endif
2209
Oliver Neukum3ede7602007-01-11 14:35:50 +01002210/**
Alan Stern8d8558d2009-12-08 15:50:41 -05002211 * usb_enumerate_device_otg - FIXME (usbcore-internal)
Oliver Neukum3ede7602007-01-11 14:35:50 +01002212 * @udev: newly addressed device (in ADDRESS state)
2213 *
Alan Stern8d8558d2009-12-08 15:50:41 -05002214 * Finish enumeration for On-The-Go devices
Yacine Belkadi626f0902013-08-02 20:10:04 +02002215 *
2216 * Return: 0 if successful. A negative error code otherwise.
Oliver Neukum3ede7602007-01-11 14:35:50 +01002217 */
Alan Stern8d8558d2009-12-08 15:50:41 -05002218static int usb_enumerate_device_otg(struct usb_device *udev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219{
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07002220 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221
2222#ifdef CONFIG_USB_OTG
2223 /*
2224 * OTG-aware devices on OTG-capable root hubs may be able to use SRP,
2225 * to wake us after we've powered off VBUS; and HNP, switching roles
2226 * "host" to "peripheral". The OTG descriptor helps figure this out.
2227 */
2228 if (!udev->bus->is_b_host
2229 && udev->config
2230 && udev->parent == udev->bus->root_hub) {
Felipe Balbi2eb50522009-12-04 15:47:43 +02002231 struct usb_otg_descriptor *desc = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232 struct usb_bus *bus = udev->bus;
2233
2234 /* descriptor may appear anywhere in config */
2235 if (__usb_get_extra_descriptor (udev->rawdescriptors[0],
2236 le16_to_cpu(udev->config[0].desc.wTotalLength),
2237 USB_DT_OTG, (void **) &desc) == 0) {
2238 if (desc->bmAttributes & USB_OTG_HNP) {
Alan Stern12c3da32005-11-23 12:09:52 -05002239 unsigned port1 = udev->portnum;
David Brownellfc849b82006-09-18 16:53:26 -07002240
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241 dev_info(&udev->dev,
2242 "Dual-Role OTG device on %sHNP port\n",
2243 (port1 == bus->otg_port)
2244 ? "" : "non-");
2245
2246 /* enable HNP before suspend, it's simpler */
2247 if (port1 == bus->otg_port)
2248 bus->b_hnp_enable = 1;
2249 err = usb_control_msg(udev,
2250 usb_sndctrlpipe(udev, 0),
2251 USB_REQ_SET_FEATURE, 0,
2252 bus->b_hnp_enable
2253 ? USB_DEVICE_B_HNP_ENABLE
2254 : USB_DEVICE_A_ALT_HNP_SUPPORT,
2255 0, NULL, 0, USB_CTRL_SET_TIMEOUT);
2256 if (err < 0) {
2257 /* OTG MESSAGE: report errors here,
2258 * customize to match your product.
2259 */
2260 dev_info(&udev->dev,
Wu Fengguangb9cef6c2008-12-15 15:32:01 +08002261 "can't set HNP mode: %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262 err);
2263 bus->b_hnp_enable = 0;
2264 }
2265 }
2266 }
2267 }
2268
2269 if (!is_targeted(udev)) {
2270
2271 /* Maybe it can talk to us, though we can't talk to it.
2272 * (Includes HNP test device.)
2273 */
2274 if (udev->bus->b_hnp_enable || udev->bus->is_b_host) {
David Brownell634a84f2009-01-15 13:51:28 -08002275 err = usb_port_suspend(udev, PMSG_SUSPEND);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276 if (err < 0)
2277 dev_dbg(&udev->dev, "HNP fail, %d\n", err);
2278 }
Vikram Panditaffcdc182007-05-25 21:31:07 -07002279 err = -ENOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280 goto fail;
2281 }
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07002282fail:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283#endif
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07002284 return err;
2285}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07002287
2288/**
Alan Stern8d8558d2009-12-08 15:50:41 -05002289 * usb_enumerate_device - Read device configs/intfs/otg (usbcore-internal)
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07002290 * @udev: newly addressed device (in ADDRESS state)
2291 *
2292 * This is only called by usb_new_device() and usb_authorize_device()
2293 * and FIXME -- all comments that apply to them apply here wrt to
2294 * environment.
2295 *
2296 * If the device is WUSB and not authorized, we don't attempt to read
2297 * the string descriptors, as they will be errored out by the device
2298 * until it has been authorized.
Yacine Belkadi626f0902013-08-02 20:10:04 +02002299 *
2300 * Return: 0 if successful. A negative error code otherwise.
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07002301 */
Alan Stern8d8558d2009-12-08 15:50:41 -05002302static int usb_enumerate_device(struct usb_device *udev)
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07002303{
2304 int err;
2305
2306 if (udev->config == NULL) {
2307 err = usb_get_configuration(udev);
2308 if (err < 0) {
Alan Sterne9e88fb2013-03-27 16:14:01 -04002309 if (err != -ENODEV)
2310 dev_err(&udev->dev, "can't read configurations, error %d\n",
2311 err);
Laurent Pinchart80da2e02012-07-19 12:39:13 +02002312 return err;
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07002313 }
2314 }
Thomas Pugliese83e83ec2013-12-09 13:40:29 -06002315
2316 /* read the standard strings and cache them if present */
2317 udev->product = usb_cache_string(udev, udev->descriptor.iProduct);
2318 udev->manufacturer = usb_cache_string(udev,
2319 udev->descriptor.iManufacturer);
2320 udev->serial = usb_cache_string(udev, udev->descriptor.iSerialNumber);
2321
Alan Stern8d8558d2009-12-08 15:50:41 -05002322 err = usb_enumerate_device_otg(udev);
Laurent Pinchart80da2e02012-07-19 12:39:13 +02002323 if (err < 0)
2324 return err;
2325
2326 usb_detect_interface_quirks(udev);
2327
2328 return 0;
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07002329}
2330
Matthew Garrettd35e70d2012-02-03 17:11:55 -05002331static void set_usb_port_removable(struct usb_device *udev)
2332{
2333 struct usb_device *hdev = udev->parent;
2334 struct usb_hub *hub;
2335 u8 port = udev->portnum;
2336 u16 wHubCharacteristics;
2337 bool removable = true;
2338
2339 if (!hdev)
2340 return;
2341
Lan Tianyuad493e52013-01-23 04:26:30 +08002342 hub = usb_hub_to_struct_hub(udev->parent);
Matthew Garrettd35e70d2012-02-03 17:11:55 -05002343
2344 wHubCharacteristics = le16_to_cpu(hub->descriptor->wHubCharacteristics);
2345
2346 if (!(wHubCharacteristics & HUB_CHAR_COMPOUND))
2347 return;
2348
2349 if (hub_is_superspeed(hdev)) {
Lan Tianyuca3c1532012-09-11 04:22:36 +08002350 if (le16_to_cpu(hub->descriptor->u.ss.DeviceRemovable)
2351 & (1 << port))
Matthew Garrettd35e70d2012-02-03 17:11:55 -05002352 removable = false;
2353 } else {
2354 if (hub->descriptor->u.hs.DeviceRemovable[port / 8] & (1 << (port % 8)))
2355 removable = false;
2356 }
2357
2358 if (removable)
2359 udev->removable = USB_DEVICE_REMOVABLE;
2360 else
2361 udev->removable = USB_DEVICE_FIXED;
Dan Williamsa4204ff2014-05-20 18:08:22 -07002362
2363 /*
2364 * Platform firmware may have populated an alternative value for
2365 * removable. If the parent port has a known connect_type use
2366 * that instead.
2367 */
2368 switch (hub->ports[udev->portnum - 1]->connect_type) {
2369 case USB_PORT_CONNECT_TYPE_HOT_PLUG:
2370 udev->removable = USB_DEVICE_REMOVABLE;
2371 break;
2372 case USB_PORT_CONNECT_TYPE_HARD_WIRED:
2373 udev->removable = USB_DEVICE_FIXED;
2374 break;
2375 default: /* use what was set above */
2376 break;
2377 }
Matthew Garrettd35e70d2012-02-03 17:11:55 -05002378}
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07002379
2380/**
2381 * usb_new_device - perform initial device setup (usbcore-internal)
2382 * @udev: newly addressed device (in ADDRESS state)
2383 *
Alan Stern8d8558d2009-12-08 15:50:41 -05002384 * This is called with devices which have been detected but not fully
2385 * enumerated. The device descriptor is available, but not descriptors
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07002386 * for any device configuration. The caller must have locked either
2387 * the parent hub (if udev is a normal device) or else the
2388 * usb_bus_list_lock (if udev is a root hub). The parent's pointer to
2389 * udev has already been installed, but udev is not yet visible through
2390 * sysfs or other filesystem code.
2391 *
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07002392 * This call is synchronous, and may not be used in an interrupt context.
2393 *
2394 * Only the hub driver or root-hub registrar should ever call this.
Yacine Belkadi626f0902013-08-02 20:10:04 +02002395 *
2396 * Return: Whether the device is configured properly or not. Zero if the
2397 * interface was registered with the driver core; else a negative errno
2398 * value.
2399 *
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07002400 */
2401int usb_new_device(struct usb_device *udev)
2402{
2403 int err;
2404
Dan Streetman16985402010-01-06 09:56:53 -05002405 if (udev->parent) {
Dan Streetman16985402010-01-06 09:56:53 -05002406 /* Initialize non-root-hub device wakeup to disabled;
2407 * device (un)configuration controls wakeup capable
2408 * sysfs power/wakeup controls wakeup enabled/disabled
2409 */
2410 device_init_wakeup(&udev->dev, 0);
Dan Streetman16985402010-01-06 09:56:53 -05002411 }
2412
Alan Stern9bbdf1e2010-01-08 12:57:28 -05002413 /* Tell the runtime-PM framework the device is active */
2414 pm_runtime_set_active(&udev->dev);
Alan Sternc08512c2010-11-15 15:57:58 -05002415 pm_runtime_get_noresume(&udev->dev);
Alan Sternfcc4a012010-11-15 15:57:51 -05002416 pm_runtime_use_autosuspend(&udev->dev);
Alan Stern9bbdf1e2010-01-08 12:57:28 -05002417 pm_runtime_enable(&udev->dev);
2418
Alan Sternc08512c2010-11-15 15:57:58 -05002419 /* By default, forbid autosuspend for all devices. It will be
2420 * allowed for hubs during binding.
2421 */
2422 usb_disable_autosuspend(udev);
2423
Alan Stern8d8558d2009-12-08 15:50:41 -05002424 err = usb_enumerate_device(udev); /* Read descriptors */
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07002425 if (err < 0)
2426 goto fail;
Sarah Sharpc6515272009-04-27 19:57:26 -07002427 dev_dbg(&udev->dev, "udev %d, busnum %d, minor = %d\n",
2428 udev->devnum, udev->bus->busnum,
2429 (((udev->bus->busnum-1) * 128) + (udev->devnum-1)));
Kay Sievers9f8b17e2007-03-13 15:59:31 +01002430 /* export the usbdev device-node for libusb */
2431 udev->dev.devt = MKDEV(USB_DEVICE_MAJOR,
2432 (((udev->bus->busnum-1) * 128) + (udev->devnum-1)));
2433
Alan Stern6cd13202008-11-13 15:08:30 -05002434 /* Tell the world! */
2435 announce_device(udev);
Alan Stern195af2c2007-07-16 15:28:19 -04002436
Theodore Ts'ob04b3152012-07-04 11:22:20 -04002437 if (udev->serial)
2438 add_device_randomness(udev->serial, strlen(udev->serial));
2439 if (udev->product)
2440 add_device_randomness(udev->product, strlen(udev->product));
2441 if (udev->manufacturer)
2442 add_device_randomness(udev->manufacturer,
2443 strlen(udev->manufacturer));
2444
Rafael J. Wysocki927bc912010-02-08 19:18:16 +01002445 device_enable_async_suspend(&udev->dev);
Matthew Garrettd35e70d2012-02-03 17:11:55 -05002446
Dan Williamsa4204ff2014-05-20 18:08:22 -07002447 /* check whether the hub or firmware marks this port as non-removable */
Matthew Garrettd35e70d2012-02-03 17:11:55 -05002448 if (udev->parent)
2449 set_usb_port_removable(udev);
2450
Alan Stern782da722006-07-01 22:09:35 -04002451 /* Register the device. The device driver is responsible
Alan Stern3b23dd62008-12-05 14:10:34 -05002452 * for configuring the device and invoking the add-device
2453 * notifier chain (used by usbfs and possibly others).
Alan Stern782da722006-07-01 22:09:35 -04002454 */
Kay Sievers9f8b17e2007-03-13 15:59:31 +01002455 err = device_add(&udev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456 if (err) {
2457 dev_err(&udev->dev, "can't device_add, error %d\n", err);
2458 goto fail;
2459 }
Alan Stern9ad3d6c2005-11-17 17:10:32 -05002460
Lan Tianyufde26382013-01-20 01:53:33 +08002461 /* Create link files between child device and usb port device. */
2462 if (udev->parent) {
Lan Tianyuad493e52013-01-23 04:26:30 +08002463 struct usb_hub *hub = usb_hub_to_struct_hub(udev->parent);
Dan Williamsd5c38342014-05-20 18:08:52 -07002464 int port1 = udev->portnum;
2465 struct usb_port *port_dev = hub->ports[port1 - 1];
Lan Tianyufde26382013-01-20 01:53:33 +08002466
2467 err = sysfs_create_link(&udev->dev.kobj,
2468 &port_dev->dev.kobj, "port");
2469 if (err)
2470 goto fail;
2471
2472 err = sysfs_create_link(&port_dev->dev.kobj,
2473 &udev->dev.kobj, "device");
2474 if (err) {
2475 sysfs_remove_link(&udev->dev.kobj, "port");
2476 goto fail;
2477 }
Lan Tianyu971fcd42013-01-23 04:26:29 +08002478
Dan Williamsd5c38342014-05-20 18:08:52 -07002479 if (!test_and_set_bit(port1, hub->child_usage_bits))
2480 pm_runtime_get_sync(&port_dev->dev);
Lan Tianyufde26382013-01-20 01:53:33 +08002481 }
2482
Alan Stern3b23dd62008-12-05 14:10:34 -05002483 (void) usb_create_ep_devs(&udev->dev, &udev->ep0, udev);
Alan Sternc08512c2010-11-15 15:57:58 -05002484 usb_mark_last_busy(udev);
2485 pm_runtime_put_sync_autosuspend(&udev->dev);
Greg Kroah-Hartmanc0664752006-08-11 01:55:12 -07002486 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487
2488fail:
2489 usb_set_device_state(udev, USB_STATE_NOTATTACHED);
Alan Stern9bbdf1e2010-01-08 12:57:28 -05002490 pm_runtime_disable(&udev->dev);
2491 pm_runtime_set_suspended(&udev->dev);
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07002492 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493}
2494
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002495
2496/**
Randy Dunlapfd39c862007-10-15 17:30:02 -07002497 * usb_deauthorize_device - deauthorize a device (usbcore-internal)
2498 * @usb_dev: USB device
2499 *
2500 * Move the USB device to a very basic state where interfaces are disabled
2501 * and the device is in fact unconfigured and unusable.
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002502 *
2503 * We share a lock (that we have) with device_del(), so we need to
2504 * defer its call.
Yacine Belkadi626f0902013-08-02 20:10:04 +02002505 *
2506 * Return: 0.
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002507 */
2508int usb_deauthorize_device(struct usb_device *usb_dev)
2509{
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002510 usb_lock_device(usb_dev);
2511 if (usb_dev->authorized == 0)
2512 goto out_unauthorized;
Alan Sternda307122009-12-08 15:54:44 -05002513
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002514 usb_dev->authorized = 0;
2515 usb_set_configuration(usb_dev, -1);
Alan Sternda307122009-12-08 15:54:44 -05002516
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002517out_unauthorized:
2518 usb_unlock_device(usb_dev);
2519 return 0;
2520}
2521
2522
2523int usb_authorize_device(struct usb_device *usb_dev)
2524{
2525 int result = 0, c;
Alan Sternda307122009-12-08 15:54:44 -05002526
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002527 usb_lock_device(usb_dev);
2528 if (usb_dev->authorized == 1)
2529 goto out_authorized;
Alan Sternda307122009-12-08 15:54:44 -05002530
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002531 result = usb_autoresume_device(usb_dev);
2532 if (result < 0) {
2533 dev_err(&usb_dev->dev,
2534 "can't autoresume for authorization: %d\n", result);
2535 goto error_autoresume;
2536 }
2537 result = usb_get_device_descriptor(usb_dev, sizeof(usb_dev->descriptor));
2538 if (result < 0) {
2539 dev_err(&usb_dev->dev, "can't re-read device descriptor for "
2540 "authorization: %d\n", result);
2541 goto error_device_descriptor;
2542 }
Alan Sternda307122009-12-08 15:54:44 -05002543
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002544 usb_dev->authorized = 1;
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002545 /* Choose and set the configuration. This registers the interfaces
2546 * with the driver core and lets interface drivers bind to them.
2547 */
Greg Kroah-Hartmanb5ea0602007-08-02 22:44:27 -06002548 c = usb_choose_configuration(usb_dev);
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002549 if (c >= 0) {
2550 result = usb_set_configuration(usb_dev, c);
2551 if (result) {
2552 dev_err(&usb_dev->dev,
2553 "can't set config #%d, error %d\n", c, result);
2554 /* This need not be fatal. The user can try to
2555 * set other configurations. */
2556 }
2557 }
2558 dev_info(&usb_dev->dev, "authorized to connect\n");
Alan Sternda307122009-12-08 15:54:44 -05002559
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002560error_device_descriptor:
Alan Sternda307122009-12-08 15:54:44 -05002561 usb_autosuspend_device(usb_dev);
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002562error_autoresume:
2563out_authorized:
Matthias Beyer781b2132013-10-10 23:41:29 +02002564 usb_unlock_device(usb_dev); /* complements locktree */
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002565 return result;
2566}
2567
2568
Inaky Perez-Gonzalez0165de02006-08-25 19:35:29 -07002569/* Returns 1 if @hub is a WUSB root hub, 0 otherwise */
2570static unsigned hub_is_wusb(struct usb_hub *hub)
2571{
2572 struct usb_hcd *hcd;
2573 if (hub->hdev->parent != NULL) /* not a root hub? */
2574 return 0;
2575 hcd = container_of(hub->hdev->bus, struct usb_hcd, self);
2576 return hcd->wireless;
2577}
2578
2579
Linus Torvalds1da177e2005-04-16 15:20:36 -07002580#define PORT_RESET_TRIES 5
2581#define SET_ADDRESS_TRIES 2
2582#define GET_DESCRIPTOR_TRIES 2
2583#define SET_CONFIG_TRIES (2 * (use_both_schemes + 1))
Rusty Russell90ab5ee2012-01-13 09:32:20 +10302584#define USE_NEW_SCHEME(i) ((i) / 2 == (int)old_scheme_first)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002585
2586#define HUB_ROOT_RESET_TIME 50 /* times are in msec */
2587#define HUB_SHORT_RESET_TIME 10
Andiry Xu75d7cf72011-09-13 16:41:11 -07002588#define HUB_BH_RESET_TIME 50
Linus Torvalds1da177e2005-04-16 15:20:36 -07002589#define HUB_LONG_RESET_TIME 200
Sarah Sharp77c7f072012-11-14 17:16:52 -08002590#define HUB_RESET_TIMEOUT 800
Linus Torvalds1da177e2005-04-16 15:20:36 -07002591
Dan Williams48fc7db2013-12-05 17:07:27 -08002592/*
2593 * "New scheme" enumeration causes an extra state transition to be
2594 * exposed to an xhci host and causes USB3 devices to receive control
2595 * commands in the default state. This has been seen to cause
2596 * enumeration failures, so disable this enumeration scheme for USB3
2597 * devices.
2598 */
2599static bool use_new_scheme(struct usb_device *udev, int retry)
2600{
2601 if (udev->speed == USB_SPEED_SUPER)
2602 return false;
2603
2604 return USE_NEW_SCHEME(retry);
2605}
2606
Sarah Sharp10d674a2011-09-14 14:24:52 -07002607static int hub_port_reset(struct usb_hub *hub, int port1,
2608 struct usb_device *udev, unsigned int delay, bool warm);
2609
Rahul Bedarkar025d4432014-01-04 11:24:41 +05302610/* Is a USB 3.0 port in the Inactive or Compliance Mode state?
Stanislaw Ledwon8bea2bd2012-06-18 15:20:00 +02002611 * Port worm reset is required to recover
2612 */
Dan Williams3cd12f92014-05-29 12:58:46 -07002613static bool hub_port_warm_reset_required(struct usb_hub *hub, int port1,
2614 u16 portstatus)
Sarah Sharp10d674a2011-09-14 14:24:52 -07002615{
Dan Williams3cd12f92014-05-29 12:58:46 -07002616 u16 link_state;
2617
2618 if (!hub_is_superspeed(hub->hdev))
2619 return false;
2620
2621 if (test_bit(port1, hub->warm_reset_bits))
2622 return true;
2623
2624 link_state = portstatus & USB_PORT_STAT_LINK_STATE;
2625 return link_state == USB_SS_PORT_LS_SS_INACTIVE
2626 || link_state == USB_SS_PORT_LS_COMP_MOD;
Sarah Sharp10d674a2011-09-14 14:24:52 -07002627}
2628
Linus Torvalds1da177e2005-04-16 15:20:36 -07002629static int hub_port_wait_reset(struct usb_hub *hub, int port1,
Andiry Xu75d7cf72011-09-13 16:41:11 -07002630 struct usb_device *udev, unsigned int delay, bool warm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002631{
2632 int delay_time, ret;
2633 u16 portstatus;
2634 u16 portchange;
2635
2636 for (delay_time = 0;
2637 delay_time < HUB_RESET_TIMEOUT;
2638 delay_time += delay) {
2639 /* wait to give the device a chance to reset */
2640 msleep(delay);
2641
2642 /* read and decode port status */
2643 ret = hub_port_status(hub, port1, &portstatus, &portchange);
2644 if (ret < 0)
2645 return ret;
2646
Sarah Sharp4f434472012-11-15 14:58:04 -08002647 /* The port state is unknown until the reset completes. */
Sarah Sharp470f0be2012-12-11 10:14:03 -08002648 if (!(portstatus & USB_PORT_STAT_RESET))
2649 break;
Sarah Sharp4f434472012-11-15 14:58:04 -08002650
Linus Torvalds1da177e2005-04-16 15:20:36 -07002651 /* switch to the long delay after two short delay failures */
2652 if (delay_time >= 2 * HUB_SHORT_RESET_TIME)
2653 delay = HUB_LONG_RESET_TIME;
2654
Dan Williamsd99f6b42014-05-20 18:08:17 -07002655 dev_dbg(&hub->ports[port1 - 1]->dev,
2656 "not %sreset yet, waiting %dms\n",
2657 warm ? "warm " : "", delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002658 }
2659
Sarah Sharp470f0be2012-12-11 10:14:03 -08002660 if ((portstatus & USB_PORT_STAT_RESET))
2661 return -EBUSY;
2662
Dan Williams3cd12f92014-05-29 12:58:46 -07002663 if (hub_port_warm_reset_required(hub, port1, portstatus))
Sarah Sharp470f0be2012-12-11 10:14:03 -08002664 return -ENOTCONN;
2665
2666 /* Device went away? */
2667 if (!(portstatus & USB_PORT_STAT_CONNECTION))
2668 return -ENOTCONN;
2669
2670 /* bomb out completely if the connection bounced. A USB 3.0
2671 * connection may bounce if multiple warm resets were issued,
2672 * but the device may have successfully re-connected. Ignore it.
2673 */
2674 if (!hub_is_superspeed(hub->hdev) &&
2675 (portchange & USB_PORT_STAT_C_CONNECTION))
2676 return -ENOTCONN;
2677
2678 if (!(portstatus & USB_PORT_STAT_ENABLE))
2679 return -EBUSY;
2680
2681 if (!udev)
2682 return 0;
2683
2684 if (hub_is_wusb(hub))
2685 udev->speed = USB_SPEED_WIRELESS;
2686 else if (hub_is_superspeed(hub->hdev))
2687 udev->speed = USB_SPEED_SUPER;
2688 else if (portstatus & USB_PORT_STAT_HIGH_SPEED)
2689 udev->speed = USB_SPEED_HIGH;
2690 else if (portstatus & USB_PORT_STAT_LOW_SPEED)
2691 udev->speed = USB_SPEED_LOW;
2692 else
2693 udev->speed = USB_SPEED_FULL;
2694 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002695}
2696
Andiry Xu75d7cf72011-09-13 16:41:11 -07002697static void hub_port_finish_reset(struct usb_hub *hub, int port1,
Sarah Sharpa24a6072012-11-01 11:20:44 -07002698 struct usb_device *udev, int *status)
Andiry Xu75d7cf72011-09-13 16:41:11 -07002699{
2700 switch (*status) {
2701 case 0:
Sarah Sharpa24a6072012-11-01 11:20:44 -07002702 /* TRSTRCY = 10 ms; plus some extra */
2703 msleep(10 + 40);
2704 if (udev) {
2705 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
2706
2707 update_devnum(udev, 0);
2708 /* The xHC may think the device is already reset,
2709 * so ignore the status.
2710 */
2711 if (hcd->driver->reset_device)
2712 hcd->driver->reset_device(hcd, udev);
Andiry Xu75d7cf72011-09-13 16:41:11 -07002713 }
2714 /* FALL THROUGH */
2715 case -ENOTCONN:
2716 case -ENODEV:
Lan Tianyuad493e52013-01-23 04:26:30 +08002717 usb_clear_port_feature(hub->hdev,
Andiry Xu75d7cf72011-09-13 16:41:11 -07002718 port1, USB_PORT_FEAT_C_RESET);
Sarah Sharp1c7439c62012-11-14 15:58:52 -08002719 if (hub_is_superspeed(hub->hdev)) {
Lan Tianyuad493e52013-01-23 04:26:30 +08002720 usb_clear_port_feature(hub->hdev, port1,
Andiry Xu75d7cf72011-09-13 16:41:11 -07002721 USB_PORT_FEAT_C_BH_PORT_RESET);
Lan Tianyuad493e52013-01-23 04:26:30 +08002722 usb_clear_port_feature(hub->hdev, port1,
Andiry Xu75d7cf72011-09-13 16:41:11 -07002723 USB_PORT_FEAT_C_PORT_LINK_STATE);
Lan Tianyuad493e52013-01-23 04:26:30 +08002724 usb_clear_port_feature(hub->hdev, port1,
Sarah Sharpa24a6072012-11-01 11:20:44 -07002725 USB_PORT_FEAT_C_CONNECTION);
Sarah Sharp1c7439c62012-11-14 15:58:52 -08002726 }
Sarah Sharpa24a6072012-11-01 11:20:44 -07002727 if (udev)
Andiry Xu75d7cf72011-09-13 16:41:11 -07002728 usb_set_device_state(udev, *status
2729 ? USB_STATE_NOTATTACHED
2730 : USB_STATE_DEFAULT);
Andiry Xu75d7cf72011-09-13 16:41:11 -07002731 break;
2732 }
2733}
2734
2735/* Handle port reset and port warm(BH) reset (for USB3 protocol ports) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002736static int hub_port_reset(struct usb_hub *hub, int port1,
Andiry Xu75d7cf72011-09-13 16:41:11 -07002737 struct usb_device *udev, unsigned int delay, bool warm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002738{
2739 int i, status;
Sarah Sharpa24a6072012-11-01 11:20:44 -07002740 u16 portchange, portstatus;
Dan Williamsd99f6b42014-05-20 18:08:17 -07002741 struct usb_port *port_dev = hub->ports[port1 - 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002742
Sarah Sharp0fe51aa2012-11-01 11:20:44 -07002743 if (!hub_is_superspeed(hub->hdev)) {
2744 if (warm) {
Andiry Xu75d7cf72011-09-13 16:41:11 -07002745 dev_err(hub->intfdev, "only USB3 hub support "
2746 "warm reset\n");
2747 return -EINVAL;
2748 }
Sarah Sharp0fe51aa2012-11-01 11:20:44 -07002749 /* Block EHCI CF initialization during the port reset.
2750 * Some companion controllers don't like it when they mix.
2751 */
2752 down_read(&ehci_cf_port_reset_rwsem);
Sarah Sharpd3b9d7a2012-11-01 11:20:44 -07002753 } else if (!warm) {
2754 /*
2755 * If the caller hasn't explicitly requested a warm reset,
2756 * double check and see if one is needed.
2757 */
2758 status = hub_port_status(hub, port1,
2759 &portstatus, &portchange);
2760 if (status < 0)
2761 goto done;
2762
Dan Williams3cd12f92014-05-29 12:58:46 -07002763 if (hub_port_warm_reset_required(hub, port1, portstatus))
Sarah Sharpd3b9d7a2012-11-01 11:20:44 -07002764 warm = true;
Andiry Xu75d7cf72011-09-13 16:41:11 -07002765 }
Dan Williams3cd12f92014-05-29 12:58:46 -07002766 clear_bit(port1, hub->warm_reset_bits);
Alan Stern32fe0192007-10-10 16:27:07 -04002767
Linus Torvalds1da177e2005-04-16 15:20:36 -07002768 /* Reset the port */
2769 for (i = 0; i < PORT_RESET_TRIES; i++) {
Andiry Xu75d7cf72011-09-13 16:41:11 -07002770 status = set_port_feature(hub->hdev, port1, (warm ?
2771 USB_PORT_FEAT_BH_PORT_RESET :
2772 USB_PORT_FEAT_RESET));
Alan Sterne9e88fb2013-03-27 16:14:01 -04002773 if (status == -ENODEV) {
2774 ; /* The hub is gone */
2775 } else if (status) {
Dan Williamsd99f6b42014-05-20 18:08:17 -07002776 dev_err(&port_dev->dev,
2777 "cannot %sreset (err = %d)\n",
2778 warm ? "warm " : "", status);
Andiry Xu75d7cf72011-09-13 16:41:11 -07002779 } else {
2780 status = hub_port_wait_reset(hub, port1, udev, delay,
2781 warm);
Alan Sterne9e88fb2013-03-27 16:14:01 -04002782 if (status && status != -ENOTCONN && status != -ENODEV)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783 dev_dbg(hub->intfdev,
2784 "port_wait_reset: err = %d\n",
2785 status);
2786 }
2787
Sarah Sharpa24a6072012-11-01 11:20:44 -07002788 /* Check for disconnect or reset */
Andiry Xu75d7cf72011-09-13 16:41:11 -07002789 if (status == 0 || status == -ENOTCONN || status == -ENODEV) {
Sarah Sharpa24a6072012-11-01 11:20:44 -07002790 hub_port_finish_reset(hub, port1, udev, &status);
2791
2792 if (!hub_is_superspeed(hub->hdev))
2793 goto done;
2794
2795 /*
2796 * If a USB 3.0 device migrates from reset to an error
2797 * state, re-issue the warm reset.
2798 */
2799 if (hub_port_status(hub, port1,
2800 &portstatus, &portchange) < 0)
2801 goto done;
2802
Dan Williams3cd12f92014-05-29 12:58:46 -07002803 if (!hub_port_warm_reset_required(hub, port1,
2804 portstatus))
Sarah Sharpa24a6072012-11-01 11:20:44 -07002805 goto done;
2806
2807 /*
2808 * If the port is in SS.Inactive or Compliance Mode, the
2809 * hot or warm reset failed. Try another warm reset.
2810 */
2811 if (!warm) {
Dan Williamsd99f6b42014-05-20 18:08:17 -07002812 dev_dbg(&port_dev->dev,
2813 "hot reset failed, warm reset\n");
Sarah Sharpa24a6072012-11-01 11:20:44 -07002814 warm = true;
2815 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002816 }
2817
Dan Williamsd99f6b42014-05-20 18:08:17 -07002818 dev_dbg(&port_dev->dev,
2819 "not enabled, trying %sreset again...\n",
2820 warm ? "warm " : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002821 delay = HUB_LONG_RESET_TIME;
2822 }
2823
Dan Williamsd99f6b42014-05-20 18:08:17 -07002824 dev_err(&port_dev->dev, "Cannot enable. Maybe the USB cable is bad?\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002825
Andiry Xu75d7cf72011-09-13 16:41:11 -07002826done:
Sarah Sharp0fe51aa2012-11-01 11:20:44 -07002827 if (!hub_is_superspeed(hub->hdev))
Andiry Xu75d7cf72011-09-13 16:41:11 -07002828 up_read(&ehci_cf_port_reset_rwsem);
2829
Linus Torvalds1da177e2005-04-16 15:20:36 -07002830 return status;
2831}
2832
Andiry Xu0ed9a572011-04-27 18:07:43 +08002833/* Check if a port is power on */
2834static int port_is_power_on(struct usb_hub *hub, unsigned portstatus)
2835{
2836 int ret = 0;
2837
2838 if (hub_is_superspeed(hub->hdev)) {
2839 if (portstatus & USB_SS_PORT_STAT_POWER)
2840 ret = 1;
2841 } else {
2842 if (portstatus & USB_PORT_STAT_POWER)
2843 ret = 1;
2844 }
2845
2846 return ret;
2847}
2848
Dan Williams5c79a1e2014-05-20 18:09:26 -07002849static void usb_lock_port(struct usb_port *port_dev)
2850 __acquires(&port_dev->status_lock)
2851{
2852 mutex_lock(&port_dev->status_lock);
2853 __acquire(&port_dev->status_lock);
2854}
2855
2856static void usb_unlock_port(struct usb_port *port_dev)
2857 __releases(&port_dev->status_lock)
2858{
2859 mutex_unlock(&port_dev->status_lock);
2860 __release(&port_dev->status_lock);
2861}
2862
Alan Sternd388dab2006-07-01 22:14:24 -04002863#ifdef CONFIG_PM
Linus Torvalds1da177e2005-04-16 15:20:36 -07002864
Andiry Xu0ed9a572011-04-27 18:07:43 +08002865/* Check if a port is suspended(USB2.0 port) or in U3 state(USB3.0 port) */
2866static int port_is_suspended(struct usb_hub *hub, unsigned portstatus)
2867{
2868 int ret = 0;
2869
2870 if (hub_is_superspeed(hub->hdev)) {
2871 if ((portstatus & USB_PORT_STAT_LINK_STATE)
2872 == USB_SS_PORT_LS_U3)
2873 ret = 1;
2874 } else {
2875 if (portstatus & USB_PORT_STAT_SUSPEND)
2876 ret = 1;
2877 }
2878
2879 return ret;
2880}
Alan Sternb01b03f2008-04-28 11:06:11 -04002881
2882/* Determine whether the device on a port is ready for a normal resume,
2883 * is ready for a reset-resume, or should be disconnected.
2884 */
2885static int check_port_resume_type(struct usb_device *udev,
2886 struct usb_hub *hub, int port1,
2887 int status, unsigned portchange, unsigned portstatus)
2888{
Dan Williamsd99f6b42014-05-20 18:08:17 -07002889 struct usb_port *port_dev = hub->ports[port1 - 1];
2890
Dan Williams3cd12f92014-05-29 12:58:46 -07002891 /* Is a warm reset needed to recover the connection? */
2892 if (status == 0 && udev->reset_resume
2893 && hub_port_warm_reset_required(hub, port1, portstatus)) {
2894 /* pass */;
2895 }
Alan Sternb01b03f2008-04-28 11:06:11 -04002896 /* Is the device still present? */
Dan Williams3cd12f92014-05-29 12:58:46 -07002897 else if (status || port_is_suspended(hub, portstatus) ||
Andiry Xu0ed9a572011-04-27 18:07:43 +08002898 !port_is_power_on(hub, portstatus) ||
2899 !(portstatus & USB_PORT_STAT_CONNECTION)) {
Alan Sternb01b03f2008-04-28 11:06:11 -04002900 if (status >= 0)
2901 status = -ENODEV;
2902 }
2903
Alan Stern86c57ed2008-06-30 11:14:43 -04002904 /* Can't do a normal resume if the port isn't enabled,
2905 * so try a reset-resume instead.
2906 */
2907 else if (!(portstatus & USB_PORT_STAT_ENABLE) && !udev->reset_resume) {
2908 if (udev->persist_enabled)
2909 udev->reset_resume = 1;
2910 else
2911 status = -ENODEV;
2912 }
Alan Sternb01b03f2008-04-28 11:06:11 -04002913
2914 if (status) {
Dan Williamsd99f6b42014-05-20 18:08:17 -07002915 dev_dbg(&port_dev->dev, "status %04x.%04x after resume, %d\n",
2916 portchange, portstatus, status);
Alan Sternb01b03f2008-04-28 11:06:11 -04002917 } else if (udev->reset_resume) {
2918
2919 /* Late port handoff can set status-change bits */
2920 if (portchange & USB_PORT_STAT_C_CONNECTION)
Lan Tianyuad493e52013-01-23 04:26:30 +08002921 usb_clear_port_feature(hub->hdev, port1,
Alan Sternb01b03f2008-04-28 11:06:11 -04002922 USB_PORT_FEAT_C_CONNECTION);
2923 if (portchange & USB_PORT_STAT_C_ENABLE)
Lan Tianyuad493e52013-01-23 04:26:30 +08002924 usb_clear_port_feature(hub->hdev, port1,
Alan Sternb01b03f2008-04-28 11:06:11 -04002925 USB_PORT_FEAT_C_ENABLE);
2926 }
2927
2928 return status;
2929}
2930
Sarah Sharpf74631e2012-06-25 12:08:08 -07002931int usb_disable_ltm(struct usb_device *udev)
2932{
2933 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
2934
2935 /* Check if the roothub and device supports LTM. */
2936 if (!usb_device_supports_ltm(hcd->self.root_hub) ||
2937 !usb_device_supports_ltm(udev))
2938 return 0;
2939
2940 /* Clear Feature LTM Enable can only be sent if the device is
2941 * configured.
2942 */
2943 if (!udev->actconfig)
2944 return 0;
2945
2946 return usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
2947 USB_REQ_CLEAR_FEATURE, USB_RECIP_DEVICE,
2948 USB_DEVICE_LTM_ENABLE, 0, NULL, 0,
2949 USB_CTRL_SET_TIMEOUT);
2950}
2951EXPORT_SYMBOL_GPL(usb_disable_ltm);
2952
2953void usb_enable_ltm(struct usb_device *udev)
2954{
2955 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
2956
2957 /* Check if the roothub and device supports LTM. */
2958 if (!usb_device_supports_ltm(hcd->self.root_hub) ||
2959 !usb_device_supports_ltm(udev))
2960 return;
2961
2962 /* Set Feature LTM Enable can only be sent if the device is
2963 * configured.
2964 */
2965 if (!udev->actconfig)
2966 return;
2967
2968 usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
2969 USB_REQ_SET_FEATURE, USB_RECIP_DEVICE,
2970 USB_DEVICE_LTM_ENABLE, 0, NULL, 0,
2971 USB_CTRL_SET_TIMEOUT);
2972}
2973EXPORT_SYMBOL_GPL(usb_enable_ltm);
2974
Lan Tianyu54a3ac02013-01-24 10:31:28 +08002975/*
Alan Stern28e861652013-07-30 15:37:33 -04002976 * usb_enable_remote_wakeup - enable remote wakeup for a device
Lan Tianyu54a3ac02013-01-24 10:31:28 +08002977 * @udev: target device
2978 *
Alan Stern28e861652013-07-30 15:37:33 -04002979 * For USB-2 devices: Set the device's remote wakeup feature.
2980 *
2981 * For USB-3 devices: Assume there's only one function on the device and
2982 * enable remote wake for the first interface. FIXME if the interface
2983 * association descriptor shows there's more than one function.
Lan Tianyu54a3ac02013-01-24 10:31:28 +08002984 */
Alan Stern28e861652013-07-30 15:37:33 -04002985static int usb_enable_remote_wakeup(struct usb_device *udev)
Lan Tianyu54a3ac02013-01-24 10:31:28 +08002986{
Alan Stern28e861652013-07-30 15:37:33 -04002987 if (udev->speed < USB_SPEED_SUPER)
2988 return usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
2989 USB_REQ_SET_FEATURE, USB_RECIP_DEVICE,
2990 USB_DEVICE_REMOTE_WAKEUP, 0, NULL, 0,
2991 USB_CTRL_SET_TIMEOUT);
2992 else
2993 return usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
2994 USB_REQ_SET_FEATURE, USB_RECIP_INTERFACE,
2995 USB_INTRF_FUNC_SUSPEND,
2996 USB_INTRF_FUNC_SUSPEND_RW |
2997 USB_INTRF_FUNC_SUSPEND_LP,
2998 NULL, 0, USB_CTRL_SET_TIMEOUT);
2999}
3000
3001/*
3002 * usb_disable_remote_wakeup - disable remote wakeup for a device
3003 * @udev: target device
3004 *
3005 * For USB-2 devices: Clear the device's remote wakeup feature.
3006 *
3007 * For USB-3 devices: Assume there's only one function on the device and
3008 * disable remote wake for the first interface. FIXME if the interface
3009 * association descriptor shows there's more than one function.
3010 */
3011static int usb_disable_remote_wakeup(struct usb_device *udev)
3012{
3013 if (udev->speed < USB_SPEED_SUPER)
3014 return usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
3015 USB_REQ_CLEAR_FEATURE, USB_RECIP_DEVICE,
3016 USB_DEVICE_REMOTE_WAKEUP, 0, NULL, 0,
3017 USB_CTRL_SET_TIMEOUT);
3018 else
3019 return usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
Lan Tianyu54a3ac02013-01-24 10:31:28 +08003020 USB_REQ_CLEAR_FEATURE, USB_RECIP_INTERFACE,
3021 USB_INTRF_FUNC_SUSPEND, 0, NULL, 0,
3022 USB_CTRL_SET_TIMEOUT);
3023}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003024
Alan Sterne583d9d2013-07-11 14:58:04 -04003025/* Count of wakeup-enabled devices at or below udev */
3026static unsigned wakeup_enabled_descendants(struct usb_device *udev)
3027{
3028 struct usb_hub *hub = usb_hub_to_struct_hub(udev);
3029
3030 return udev->do_remote_wakeup +
3031 (hub ? hub->wakeup_enabled_descendants : 0);
3032}
3033
Linus Torvalds1da177e2005-04-16 15:20:36 -07003034/*
Alan Stern140d8f62006-07-01 22:07:21 -04003035 * usb_port_suspend - suspend a usb device's upstream port
Alan Stern624d6c02007-05-30 15:35:16 -04003036 * @udev: device that's no longer in active use, not a root hub
David Brownell5edbfb72005-09-22 22:45:26 -07003037 * Context: must be able to sleep; device not locked; pm locks held
Linus Torvalds1da177e2005-04-16 15:20:36 -07003038 *
3039 * Suspends a USB device that isn't in active use, conserving power.
3040 * Devices may wake out of a suspend, if anything important happens,
3041 * using the remote wakeup mechanism. They may also be taken out of
Alan Stern140d8f62006-07-01 22:07:21 -04003042 * suspend by the host, using usb_port_resume(). It's also routine
Linus Torvalds1da177e2005-04-16 15:20:36 -07003043 * to disconnect devices while they are suspended.
3044 *
David Brownell390a8c32005-09-13 19:57:27 -07003045 * This only affects the USB hardware for a device; its interfaces
3046 * (and, for hubs, child devices) must already have been suspended.
3047 *
Alan Stern624d6c02007-05-30 15:35:16 -04003048 * Selective port suspend reduces power; most suspended devices draw
3049 * less than 500 uA. It's also used in OTG, along with remote wakeup.
3050 * All devices below the suspended port are also suspended.
3051 *
3052 * Devices leave suspend state when the host wakes them up. Some devices
3053 * also support "remote wakeup", where the device can activate the USB
3054 * tree above them to deliver data, such as a keypress or packet. In
3055 * some cases, this wakes the USB host.
3056 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003057 * Suspending OTG devices may trigger HNP, if that's been enabled
3058 * between a pair of dual-role devices. That will change roles, such
3059 * as from A-Host to A-Peripheral or from B-Host back to B-Peripheral.
3060 *
Alan Stern4956ecc2007-05-30 16:51:28 -04003061 * Devices on USB hub ports have only one "suspend" state, corresponding
3062 * to ACPI D2, "may cause the device to lose some context".
3063 * State transitions include:
3064 *
3065 * - suspend, resume ... when the VBUS power link stays live
3066 * - suspend, disconnect ... VBUS lost
3067 *
3068 * Once VBUS drop breaks the circuit, the port it's using has to go through
3069 * normal re-enumeration procedures, starting with enabling VBUS power.
3070 * Other than re-initializing the hub (plug/unplug, except for root hubs),
3071 * Linux (2.6) currently has NO mechanisms to initiate that: no khubd
3072 * timer, no SRP, no requests through sysfs.
3073 *
Alan Sterne583d9d2013-07-11 14:58:04 -04003074 * If Runtime PM isn't enabled or used, non-SuperSpeed devices may not get
3075 * suspended until their bus goes into global suspend (i.e., the root
Alan Stern0aa28322013-03-27 16:14:19 -04003076 * hub is suspended). Nevertheless, we change @udev->state to
3077 * USB_STATE_SUSPENDED as this is the device's "logical" state. The actual
3078 * upstream port setting is stored in @udev->port_is_suspended.
Alan Stern4956ecc2007-05-30 16:51:28 -04003079 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003080 * Returns 0 on success, else negative errno.
3081 */
Alan Stern65bfd292008-11-25 16:39:18 -05003082int usb_port_suspend(struct usb_device *udev, pm_message_t msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003083{
Lan Tianyuad493e52013-01-23 04:26:30 +08003084 struct usb_hub *hub = usb_hub_to_struct_hub(udev->parent);
3085 struct usb_port *port_dev = hub->ports[udev->portnum - 1];
Alan Stern624d6c02007-05-30 15:35:16 -04003086 int port1 = udev->portnum;
3087 int status;
Alan Stern0aa28322013-03-27 16:14:19 -04003088 bool really_suspend = true;
Alan Stern4956ecc2007-05-30 16:51:28 -04003089
Dan Williams5c79a1e2014-05-20 18:09:26 -07003090 usb_lock_port(port_dev);
3091
Alan Stern624d6c02007-05-30 15:35:16 -04003092 /* enable remote wakeup when appropriate; this lets the device
3093 * wake up the upstream hub (including maybe the root hub).
3094 *
3095 * NOTE: OTG devices may issue remote wakeup (or SRP) even when
3096 * we don't explicitly enable it here.
3097 */
3098 if (udev->do_remote_wakeup) {
Alan Stern28e861652013-07-30 15:37:33 -04003099 status = usb_enable_remote_wakeup(udev);
Oliver Neukum0c487202009-10-19 13:19:41 +02003100 if (status) {
Alan Stern624d6c02007-05-30 15:35:16 -04003101 dev_dbg(&udev->dev, "won't remote wakeup, status %d\n",
3102 status);
Oliver Neukum0c487202009-10-19 13:19:41 +02003103 /* bail if autosuspend is requested */
Alan Stern5b1b0b82011-08-19 23:49:48 +02003104 if (PMSG_IS_AUTO(msg))
Alan Stern4fae6f02013-07-30 15:39:02 -04003105 goto err_wakeup;
Oliver Neukum0c487202009-10-19 13:19:41 +02003106 }
Alan Stern624d6c02007-05-30 15:35:16 -04003107 }
3108
Andiry Xu65580b432011-09-23 14:19:52 -07003109 /* disable USB2 hardware LPM */
3110 if (udev->usb2_hw_lpm_enabled == 1)
3111 usb_set_usb2_hardware_lpm(udev, 0);
3112
Sarah Sharpf74631e2012-06-25 12:08:08 -07003113 if (usb_disable_ltm(udev)) {
Alan Stern4fae6f02013-07-30 15:39:02 -04003114 dev_err(&udev->dev, "Failed to disable LTM before suspend\n.");
3115 status = -ENOMEM;
3116 if (PMSG_IS_AUTO(msg))
3117 goto err_ltm;
Sarah Sharpf74631e2012-06-25 12:08:08 -07003118 }
Sarah Sharp83060952012-05-02 14:25:52 -07003119 if (usb_unlocked_disable_lpm(udev)) {
Alan Stern4fae6f02013-07-30 15:39:02 -04003120 dev_err(&udev->dev, "Failed to disable LPM before suspend\n.");
3121 status = -ENOMEM;
3122 if (PMSG_IS_AUTO(msg))
3123 goto err_lpm3;
Sarah Sharp83060952012-05-02 14:25:52 -07003124 }
3125
Alan Stern624d6c02007-05-30 15:35:16 -04003126 /* see 7.1.7.6 */
Andiry Xua7114232011-04-27 18:07:50 +08003127 if (hub_is_superspeed(hub->hdev))
Sarah Sharpc2f60db2012-12-10 15:43:08 -08003128 status = hub_set_port_link_state(hub, port1, USB_SS_PORT_LS_U3);
Alan Sterne583d9d2013-07-11 14:58:04 -04003129
Alan Stern0aa28322013-03-27 16:14:19 -04003130 /*
3131 * For system suspend, we do not need to enable the suspend feature
3132 * on individual USB-2 ports. The devices will automatically go
3133 * into suspend a few ms after the root hub stops sending packets.
3134 * The USB 2.0 spec calls this "global suspend".
Alan Sterne583d9d2013-07-11 14:58:04 -04003135 *
3136 * However, many USB hubs have a bug: They don't relay wakeup requests
3137 * from a downstream port if the port's suspend feature isn't on.
3138 * Therefore we will turn on the suspend feature if udev or any of its
3139 * descendants is enabled for remote wakeup.
Alan Stern0aa28322013-03-27 16:14:19 -04003140 */
Alan Sterne583d9d2013-07-11 14:58:04 -04003141 else if (PMSG_IS_AUTO(msg) || wakeup_enabled_descendants(udev) > 0)
3142 status = set_port_feature(hub->hdev, port1,
3143 USB_PORT_FEAT_SUSPEND);
Alan Stern0aa28322013-03-27 16:14:19 -04003144 else {
3145 really_suspend = false;
3146 status = 0;
3147 }
Alan Stern624d6c02007-05-30 15:35:16 -04003148 if (status) {
Dan Williamsd99f6b42014-05-20 18:08:17 -07003149 dev_dbg(&port_dev->dev, "can't suspend, status %d\n", status);
Alan Sterncbb33002011-06-15 16:29:16 -04003150
Alan Stern4fae6f02013-07-30 15:39:02 -04003151 /* Try to enable USB3 LPM and LTM again */
3152 usb_unlocked_enable_lpm(udev);
3153 err_lpm3:
3154 usb_enable_ltm(udev);
3155 err_ltm:
Andiry Xuc3e751e2012-05-05 00:50:10 +08003156 /* Try to enable USB2 hardware LPM again */
3157 if (udev->usb2_hw_lpm_capable == 1)
3158 usb_set_usb2_hardware_lpm(udev, 1);
3159
Alan Stern4fae6f02013-07-30 15:39:02 -04003160 if (udev->do_remote_wakeup)
3161 (void) usb_disable_remote_wakeup(udev);
3162 err_wakeup:
Sarah Sharp83060952012-05-02 14:25:52 -07003163
Alan Sterncbb33002011-06-15 16:29:16 -04003164 /* System sleep transitions should never fail */
Alan Stern5b1b0b82011-08-19 23:49:48 +02003165 if (!PMSG_IS_AUTO(msg))
Alan Sterncbb33002011-06-15 16:29:16 -04003166 status = 0;
Alan Stern624d6c02007-05-30 15:35:16 -04003167 } else {
Alan Stern30b1a7a2011-09-27 21:54:22 +02003168 dev_dbg(&udev->dev, "usb %ssuspend, wakeup %d\n",
3169 (PMSG_IS_AUTO(msg) ? "auto-" : ""),
3170 udev->do_remote_wakeup);
Alan Stern0aa28322013-03-27 16:14:19 -04003171 if (really_suspend) {
3172 udev->port_is_suspended = 1;
Alan Sterne583d9d2013-07-11 14:58:04 -04003173
3174 /* device has up to 10 msec to fully suspend */
Alan Stern0aa28322013-03-27 16:14:19 -04003175 msleep(10);
3176 }
Alan Sterne583d9d2013-07-11 14:58:04 -04003177 usb_set_device_state(udev, USB_STATE_SUSPENDED);
Alan Stern624d6c02007-05-30 15:35:16 -04003178 }
Lan Tianyuad493e52013-01-23 04:26:30 +08003179
Dan Williamsd5c38342014-05-20 18:08:52 -07003180 if (status == 0 && !udev->do_remote_wakeup && udev->persist_enabled
3181 && test_and_clear_bit(port1, hub->child_usage_bits))
Lan Tianyu98a4f1f2013-07-03 22:17:54 +08003182 pm_runtime_put_sync(&port_dev->dev);
Lan Tianyuad493e52013-01-23 04:26:30 +08003183
Alan Sternc08512c2010-11-15 15:57:58 -05003184 usb_mark_last_busy(hub->hdev);
Dan Williams5c79a1e2014-05-20 18:09:26 -07003185
3186 usb_unlock_port(port_dev);
Alan Stern4956ecc2007-05-30 16:51:28 -04003187 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003188}
David Brownellf3f32532005-09-22 22:37:29 -07003189
Linus Torvalds1da177e2005-04-16 15:20:36 -07003190/*
David Brownell390a8c32005-09-13 19:57:27 -07003191 * If the USB "suspend" state is in use (rather than "global suspend"),
3192 * many devices will be individually taken out of suspend state using
Alan Stern54515fe2007-05-30 15:38:58 -04003193 * special "resume" signaling. This routine kicks in shortly after
Linus Torvalds1da177e2005-04-16 15:20:36 -07003194 * hardware resume signaling is finished, either because of selective
3195 * resume (by host) or remote wakeup (by device) ... now see what changed
3196 * in the tree that's rooted at this device.
Alan Stern54515fe2007-05-30 15:38:58 -04003197 *
3198 * If @udev->reset_resume is set then the device is reset before the
3199 * status check is done.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003200 */
Alan Stern140d8f62006-07-01 22:07:21 -04003201static int finish_port_resume(struct usb_device *udev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003202{
Alan Stern54515fe2007-05-30 15:38:58 -04003203 int status = 0;
Oliver Neukum07e72b92012-11-29 15:05:57 +01003204 u16 devstatus = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003205
3206 /* caller owns the udev device lock */
Wu Fengguangb9cef6c2008-12-15 15:32:01 +08003207 dev_dbg(&udev->dev, "%s\n",
3208 udev->reset_resume ? "finish reset-resume" : "finish resume");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003209
3210 /* usb ch9 identifies four variants of SUSPENDED, based on what
3211 * state the device resumes to. Linux currently won't see the
3212 * first two on the host side; they'd be inside hub_port_init()
3213 * during many timeouts, but khubd can't suspend until later.
3214 */
3215 usb_set_device_state(udev, udev->actconfig
3216 ? USB_STATE_CONFIGURED
3217 : USB_STATE_ADDRESS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003218
Alan Stern54515fe2007-05-30 15:38:58 -04003219 /* 10.5.4.5 says not to reset a suspended port if the attached
3220 * device is enabled for remote wakeup. Hence the reset
3221 * operation is carried out here, after the port has been
3222 * resumed.
3223 */
Alan Stern1d102552014-03-18 10:39:05 -04003224 if (udev->reset_resume) {
3225 /*
3226 * If the device morphs or switches modes when it is reset,
3227 * we don't want to perform a reset-resume. We'll fail the
3228 * resume, which will cause a logical disconnect, and then
3229 * the device will be rediscovered.
3230 */
Alan Stern86c57ed2008-06-30 11:14:43 -04003231 retry_reset_resume:
Alan Stern1d102552014-03-18 10:39:05 -04003232 if (udev->quirks & USB_QUIRK_RESET)
3233 status = -ENODEV;
3234 else
3235 status = usb_reset_and_verify_device(udev);
3236 }
Alan Stern54515fe2007-05-30 15:38:58 -04003237
Matthias Beyer469271f2013-10-10 23:41:27 +02003238 /* 10.5.4.5 says be sure devices in the tree are still there.
3239 * For now let's assume the device didn't go crazy on resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003240 * and device drivers will know about any resume quirks.
3241 */
Alan Stern54515fe2007-05-30 15:38:58 -04003242 if (status == 0) {
Alan Stern46dede42007-08-14 10:56:10 -04003243 devstatus = 0;
Alan Stern54515fe2007-05-30 15:38:58 -04003244 status = usb_get_status(udev, USB_RECIP_DEVICE, 0, &devstatus);
Alan Stern86c57ed2008-06-30 11:14:43 -04003245
3246 /* If a normal resume failed, try doing a reset-resume */
3247 if (status && !udev->reset_resume && udev->persist_enabled) {
3248 dev_dbg(&udev->dev, "retry with reset-resume\n");
3249 udev->reset_resume = 1;
3250 goto retry_reset_resume;
3251 }
Alan Stern54515fe2007-05-30 15:38:58 -04003252 }
Alan Sternb40b7a92006-06-19 15:12:38 -04003253
Alan Stern624d6c02007-05-30 15:35:16 -04003254 if (status) {
3255 dev_dbg(&udev->dev, "gone after usb resume? status %d\n",
3256 status);
Oliver Neukum07e72b92012-11-29 15:05:57 +01003257 /*
3258 * There are a few quirky devices which violate the standard
3259 * by claiming to have remote wakeup enabled after a reset,
3260 * which crash if the feature is cleared, hence check for
3261 * udev->reset_resume
3262 */
3263 } else if (udev->actconfig && !udev->reset_resume) {
Alan Stern28e861652013-07-30 15:37:33 -04003264 if (udev->speed < USB_SPEED_SUPER) {
Lan Tianyu54a3ac02013-01-24 10:31:28 +08003265 if (devstatus & (1 << USB_DEVICE_REMOTE_WAKEUP))
Alan Stern28e861652013-07-30 15:37:33 -04003266 status = usb_disable_remote_wakeup(udev);
Lan Tianyu54a3ac02013-01-24 10:31:28 +08003267 } else {
3268 status = usb_get_status(udev, USB_RECIP_INTERFACE, 0,
3269 &devstatus);
Lan Tianyu54a3ac02013-01-24 10:31:28 +08003270 if (!status && devstatus & (USB_INTRF_STAT_FUNC_RW_CAP
3271 | USB_INTRF_STAT_FUNC_RW))
Alan Stern28e861652013-07-30 15:37:33 -04003272 status = usb_disable_remote_wakeup(udev);
Alan Stern4bf0ba82005-11-21 11:58:07 -05003273 }
Lan Tianyu54a3ac02013-01-24 10:31:28 +08003274
3275 if (status)
3276 dev_dbg(&udev->dev,
3277 "disable remote wakeup, status %d\n",
3278 status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003279 status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003280 }
3281 return status;
3282}
3283
Alan Stern624d6c02007-05-30 15:35:16 -04003284/*
Pratyush Ananda40178b2014-07-18 12:37:10 +05303285 * There are some SS USB devices which take longer time for link training.
3286 * XHCI specs 4.19.4 says that when Link training is successful, port
3287 * sets CSC bit to 1. So if SW reads port status before successful link
3288 * training, then it will not find device to be present.
3289 * USB Analyzer log with such buggy devices show that in some cases
3290 * device switch on the RX termination after long delay of host enabling
3291 * the VBUS. In few other cases it has been seen that device fails to
3292 * negotiate link training in first attempt. It has been
3293 * reported till now that few devices take as long as 2000 ms to train
3294 * the link after host enabling its VBUS and termination. Following
3295 * routine implements a 2000 ms timeout for link training. If in a case
3296 * link trains before timeout, loop will exit earlier.
3297 *
3298 * FIXME: If a device was connected before suspend, but was removed
3299 * while system was asleep, then the loop in the following routine will
3300 * only exit at timeout.
3301 *
3302 * This routine should only be called when persist is enabled for a SS
3303 * device.
3304 */
3305static int wait_for_ss_port_enable(struct usb_device *udev,
3306 struct usb_hub *hub, int *port1,
3307 u16 *portchange, u16 *portstatus)
3308{
3309 int status = 0, delay_ms = 0;
3310
3311 while (delay_ms < 2000) {
3312 if (status || *portstatus & USB_PORT_STAT_CONNECTION)
3313 break;
3314 msleep(20);
3315 delay_ms += 20;
3316 status = hub_port_status(hub, *port1, portstatus, portchange);
3317 }
3318 return status;
3319}
3320
3321/*
Alan Stern624d6c02007-05-30 15:35:16 -04003322 * usb_port_resume - re-activate a suspended usb device's upstream port
3323 * @udev: device to re-activate, not a root hub
3324 * Context: must be able to sleep; device not locked; pm locks held
3325 *
3326 * This will re-activate the suspended device, increasing power usage
3327 * while letting drivers communicate again with its endpoints.
3328 * USB resume explicitly guarantees that the power session between
3329 * the host and the device is the same as it was when the device
3330 * suspended.
3331 *
Alan Sternfeccc302008-03-03 15:15:59 -05003332 * If @udev->reset_resume is set then this routine won't check that the
3333 * port is still enabled. Furthermore, finish_port_resume() above will
Alan Stern54515fe2007-05-30 15:38:58 -04003334 * reset @udev. The end result is that a broken power session can be
3335 * recovered and @udev will appear to persist across a loss of VBUS power.
3336 *
3337 * For example, if a host controller doesn't maintain VBUS suspend current
3338 * during a system sleep or is reset when the system wakes up, all the USB
3339 * power sessions below it will be broken. This is especially troublesome
3340 * for mass-storage devices containing mounted filesystems, since the
3341 * device will appear to have disconnected and all the memory mappings
3342 * to it will be lost. Using the USB_PERSIST facility, the device can be
3343 * made to appear as if it had not disconnected.
3344 *
Ming Lei742120c2008-06-18 22:00:29 +08003345 * This facility can be dangerous. Although usb_reset_and_verify_device() makes
Alan Sternfeccc302008-03-03 15:15:59 -05003346 * every effort to insure that the same device is present after the
Alan Stern54515fe2007-05-30 15:38:58 -04003347 * reset as before, it cannot provide a 100% guarantee. Furthermore it's
3348 * quite possible for a device to remain unaltered but its media to be
3349 * changed. If the user replaces a flash memory card while the system is
3350 * asleep, he will have only himself to blame when the filesystem on the
3351 * new card is corrupted and the system crashes.
3352 *
Alan Stern624d6c02007-05-30 15:35:16 -04003353 * Returns 0 on success, else negative errno.
3354 */
Alan Stern65bfd292008-11-25 16:39:18 -05003355int usb_port_resume(struct usb_device *udev, pm_message_t msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003356{
Lan Tianyuad493e52013-01-23 04:26:30 +08003357 struct usb_hub *hub = usb_hub_to_struct_hub(udev->parent);
3358 struct usb_port *port_dev = hub->ports[udev->portnum - 1];
Alan Stern624d6c02007-05-30 15:35:16 -04003359 int port1 = udev->portnum;
3360 int status;
3361 u16 portchange, portstatus;
Alan Sternd25450c2006-11-20 11:14:30 -05003362
Dan Williamsd5c38342014-05-20 18:08:52 -07003363 if (!test_and_set_bit(port1, hub->child_usage_bits)) {
Lan Tianyuad493e52013-01-23 04:26:30 +08003364 status = pm_runtime_get_sync(&port_dev->dev);
Lan Tianyuad493e52013-01-23 04:26:30 +08003365 if (status < 0) {
3366 dev_dbg(&udev->dev, "can't resume usb port, status %d\n",
3367 status);
3368 return status;
3369 }
3370 }
3371
Dan Williams5c79a1e2014-05-20 18:09:26 -07003372 usb_lock_port(port_dev);
3373
Alan Sternd25450c2006-11-20 11:14:30 -05003374 /* Skip the initial Clear-Suspend step for a remote wakeup */
3375 status = hub_port_status(hub, port1, &portstatus, &portchange);
Andiry Xu0ed9a572011-04-27 18:07:43 +08003376 if (status == 0 && !port_is_suspended(hub, portstatus))
Alan Sternd25450c2006-11-20 11:14:30 -05003377 goto SuspendCleared;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003378
Linus Torvalds1da177e2005-04-16 15:20:36 -07003379 /* see 7.1.7.7; affects power usage, but not budgeting */
Andiry Xua7114232011-04-27 18:07:50 +08003380 if (hub_is_superspeed(hub->hdev))
Sarah Sharpc2f60db2012-12-10 15:43:08 -08003381 status = hub_set_port_link_state(hub, port1, USB_SS_PORT_LS_U0);
Andiry Xua7114232011-04-27 18:07:50 +08003382 else
Lan Tianyuad493e52013-01-23 04:26:30 +08003383 status = usb_clear_port_feature(hub->hdev,
Andiry Xua7114232011-04-27 18:07:50 +08003384 port1, USB_PORT_FEAT_SUSPEND);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003385 if (status) {
Dan Williamsd99f6b42014-05-20 18:08:17 -07003386 dev_dbg(&port_dev->dev, "can't resume, status %d\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003387 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003388 /* drive resume for at least 20 msec */
Alan Stern686314c2007-05-30 15:34:36 -04003389 dev_dbg(&udev->dev, "usb %sresume\n",
Alan Stern5b1b0b82011-08-19 23:49:48 +02003390 (PMSG_IS_AUTO(msg) ? "auto-" : ""));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003391 msleep(25);
3392
Linus Torvalds1da177e2005-04-16 15:20:36 -07003393 /* Virtual root hubs can trigger on GET_PORT_STATUS to
3394 * stop resume signaling. Then finish the resume
3395 * sequence.
3396 */
Alan Sternd25450c2006-11-20 11:14:30 -05003397 status = hub_port_status(hub, port1, &portstatus, &portchange);
Alan Stern54515fe2007-05-30 15:38:58 -04003398
Alan Sternb01b03f2008-04-28 11:06:11 -04003399 /* TRSMRCY = 10 msec */
3400 msleep(10);
3401 }
Alan Stern54515fe2007-05-30 15:38:58 -04003402
Alan Sternb01b03f2008-04-28 11:06:11 -04003403 SuspendCleared:
3404 if (status == 0) {
Alan Sternbfd1e912012-10-19 11:03:39 -04003405 udev->port_is_suspended = 0;
Andiry Xua7114232011-04-27 18:07:50 +08003406 if (hub_is_superspeed(hub->hdev)) {
3407 if (portchange & USB_PORT_STAT_C_LINK_STATE)
Lan Tianyuad493e52013-01-23 04:26:30 +08003408 usb_clear_port_feature(hub->hdev, port1,
Andiry Xua7114232011-04-27 18:07:50 +08003409 USB_PORT_FEAT_C_PORT_LINK_STATE);
3410 } else {
3411 if (portchange & USB_PORT_STAT_C_SUSPEND)
Lan Tianyuad493e52013-01-23 04:26:30 +08003412 usb_clear_port_feature(hub->hdev, port1,
Andiry Xua7114232011-04-27 18:07:50 +08003413 USB_PORT_FEAT_C_SUSPEND);
3414 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003415 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003416
Pratyush Ananda40178b2014-07-18 12:37:10 +05303417 if (udev->persist_enabled && hub_is_superspeed(hub->hdev))
3418 status = wait_for_ss_port_enable(udev, hub, &port1, &portchange,
3419 &portstatus);
3420
Alan Sternb01b03f2008-04-28 11:06:11 -04003421 status = check_port_resume_type(udev,
3422 hub, port1, status, portchange, portstatus);
Alan Stern54515fe2007-05-30 15:38:58 -04003423 if (status == 0)
3424 status = finish_port_resume(udev);
3425 if (status < 0) {
3426 dev_dbg(&udev->dev, "can't resume, status %d\n", status);
3427 hub_port_logical_disconnect(hub, port1);
Andiry Xu65580b432011-09-23 14:19:52 -07003428 } else {
3429 /* Try to enable USB2 hardware LPM */
3430 if (udev->usb2_hw_lpm_capable == 1)
3431 usb_set_usb2_hardware_lpm(udev, 1);
Sarah Sharp83060952012-05-02 14:25:52 -07003432
Sarah Sharpf74631e2012-06-25 12:08:08 -07003433 /* Try to enable USB3 LTM and LPM */
3434 usb_enable_ltm(udev);
Sarah Sharp83060952012-05-02 14:25:52 -07003435 usb_unlocked_enable_lpm(udev);
Alan Stern54515fe2007-05-30 15:38:58 -04003436 }
Andiry Xu65580b432011-09-23 14:19:52 -07003437
Dan Williams5c79a1e2014-05-20 18:09:26 -07003438 usb_unlock_port(port_dev);
3439
Linus Torvalds1da177e2005-04-16 15:20:36 -07003440 return status;
3441}
3442
Alan Stern84ebc102013-03-27 16:14:46 -04003443#ifdef CONFIG_PM_RUNTIME
3444
Alan Stern0534d462010-01-08 12:56:30 -05003445int usb_remote_wakeup(struct usb_device *udev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003446{
3447 int status = 0;
3448
Dan Williams5c79a1e2014-05-20 18:09:26 -07003449 usb_lock_device(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003450 if (udev->state == USB_STATE_SUSPENDED) {
Alan Stern645daaa2006-08-30 15:47:02 -04003451 dev_dbg(&udev->dev, "usb %sresume\n", "wakeup-");
Alan Stern9bbdf1e2010-01-08 12:57:28 -05003452 status = usb_autoresume_device(udev);
3453 if (status == 0) {
3454 /* Let the drivers do their thing, then... */
3455 usb_autosuspend_device(udev);
3456 }
Alan Sternd25450c2006-11-20 11:14:30 -05003457 }
Dan Williams5c79a1e2014-05-20 18:09:26 -07003458 usb_unlock_device(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003459 return status;
3460}
3461
Dan Williams7e73be22014-05-20 18:09:31 -07003462/* Returns 1 if there was a remote wakeup and a connect status change. */
3463static int hub_handle_remote_wakeup(struct usb_hub *hub, unsigned int port,
3464 u16 portstatus, u16 portchange)
3465 __must_hold(&port_dev->status_lock)
3466{
3467 struct usb_port *port_dev = hub->ports[port - 1];
3468 struct usb_device *hdev;
3469 struct usb_device *udev;
3470 int connect_change = 0;
3471 int ret;
3472
3473 hdev = hub->hdev;
3474 udev = port_dev->child;
3475 if (!hub_is_superspeed(hdev)) {
3476 if (!(portchange & USB_PORT_STAT_C_SUSPEND))
3477 return 0;
3478 usb_clear_port_feature(hdev, port, USB_PORT_FEAT_C_SUSPEND);
3479 } else {
3480 if (!udev || udev->state != USB_STATE_SUSPENDED ||
3481 (portstatus & USB_PORT_STAT_LINK_STATE) !=
3482 USB_SS_PORT_LS_U0)
3483 return 0;
3484 }
3485
3486 if (udev) {
3487 /* TRSMRCY = 10 msec */
3488 msleep(10);
3489
3490 usb_unlock_port(port_dev);
3491 ret = usb_remote_wakeup(udev);
3492 usb_lock_port(port_dev);
3493 if (ret < 0)
3494 connect_change = 1;
3495 } else {
3496 ret = -ENODEV;
3497 hub_port_disable(hub, port, 1);
3498 }
3499 dev_dbg(&port_dev->dev, "resume, status %d\n", ret);
3500 return connect_change;
3501}
3502
3503#else
3504
3505static int hub_handle_remote_wakeup(struct usb_hub *hub, unsigned int port,
3506 u16 portstatus, u16 portchange)
3507{
3508 return 0;
3509}
3510
Alan Sternd388dab2006-07-01 22:14:24 -04003511#endif
3512
Ming Leie6f30de2012-10-24 11:59:24 +08003513static int check_ports_changed(struct usb_hub *hub)
3514{
3515 int port1;
3516
3517 for (port1 = 1; port1 <= hub->hdev->maxchild; ++port1) {
3518 u16 portstatus, portchange;
3519 int status;
3520
3521 status = hub_port_status(hub, port1, &portstatus, &portchange);
3522 if (!status && portchange)
3523 return 1;
3524 }
3525 return 0;
3526}
3527
David Brownelldb690872005-09-13 19:56:33 -07003528static int hub_suspend(struct usb_interface *intf, pm_message_t msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003529{
3530 struct usb_hub *hub = usb_get_intfdata (intf);
3531 struct usb_device *hdev = hub->hdev;
3532 unsigned port1;
Sarah Sharp4296c70a2012-01-06 10:34:31 -08003533 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003534
Alan Sterne583d9d2013-07-11 14:58:04 -04003535 /*
3536 * Warn if children aren't already suspended.
3537 * Also, add up the number of wakeup-enabled descendants.
3538 */
3539 hub->wakeup_enabled_descendants = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003540 for (port1 = 1; port1 <= hdev->maxchild; port1++) {
Dan Williamsd99f6b42014-05-20 18:08:17 -07003541 struct usb_port *port_dev = hub->ports[port1 - 1];
3542 struct usb_device *udev = port_dev->child;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003543
Alan Stern6840d252007-09-10 11:34:26 -04003544 if (udev && udev->can_submit) {
Dan Williamsb658b8f2014-06-17 16:16:22 -07003545 dev_warn(&port_dev->dev, "device %s not suspended yet\n",
3546 dev_name(&udev->dev));
Alan Stern5b1b0b82011-08-19 23:49:48 +02003547 if (PMSG_IS_AUTO(msg))
Alan Sterncbb33002011-06-15 16:29:16 -04003548 return -EBUSY;
David Brownellc9f89fa2005-09-13 19:57:04 -07003549 }
Alan Sterne583d9d2013-07-11 14:58:04 -04003550 if (udev)
3551 hub->wakeup_enabled_descendants +=
3552 wakeup_enabled_descendants(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003553 }
Ming Leie6f30de2012-10-24 11:59:24 +08003554
3555 if (hdev->do_remote_wakeup && hub->quirk_check_port_auto_suspend) {
3556 /* check if there are changes pending on hub ports */
3557 if (check_ports_changed(hub)) {
3558 if (PMSG_IS_AUTO(msg))
3559 return -EBUSY;
3560 pm_wakeup_event(&hdev->dev, 2000);
3561 }
3562 }
3563
Sarah Sharp4296c70a2012-01-06 10:34:31 -08003564 if (hub_is_superspeed(hdev) && hdev->do_remote_wakeup) {
3565 /* Enable hub to send remote wakeup for all ports. */
3566 for (port1 = 1; port1 <= hdev->maxchild; port1++) {
3567 status = set_port_feature(hdev,
3568 port1 |
3569 USB_PORT_FEAT_REMOTE_WAKE_CONNECT |
3570 USB_PORT_FEAT_REMOTE_WAKE_DISCONNECT |
3571 USB_PORT_FEAT_REMOTE_WAKE_OVER_CURRENT,
3572 USB_PORT_FEAT_REMOTE_WAKE_MASK);
3573 }
3574 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003575
Harvey Harrison441b62c2008-03-03 16:08:34 -08003576 dev_dbg(&intf->dev, "%s\n", __func__);
Alan Stern40f122f2006-11-09 14:44:33 -05003577
David Brownellc9f89fa2005-09-13 19:57:04 -07003578 /* stop khubd and related activity */
Alan Stern43303542008-04-28 11:07:31 -04003579 hub_quiesce(hub, HUB_SUSPEND);
Alan Sternb6f64362007-05-04 11:51:54 -04003580 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003581}
3582
3583static int hub_resume(struct usb_interface *intf)
3584{
Alan Stern5e6effa2008-03-03 15:15:51 -05003585 struct usb_hub *hub = usb_get_intfdata(intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003586
Alan Stern5e6effa2008-03-03 15:15:51 -05003587 dev_dbg(&intf->dev, "%s\n", __func__);
Alan Sternf2835212008-04-28 11:07:17 -04003588 hub_activate(hub, HUB_RESUME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003589 return 0;
3590}
3591
Alan Sternb41a60e2007-05-30 15:39:33 -04003592static int hub_reset_resume(struct usb_interface *intf)
Alan Sternf07600c2007-05-30 15:38:16 -04003593{
Alan Sternb41a60e2007-05-30 15:39:33 -04003594 struct usb_hub *hub = usb_get_intfdata(intf);
Alan Sternf07600c2007-05-30 15:38:16 -04003595
Alan Stern5e6effa2008-03-03 15:15:51 -05003596 dev_dbg(&intf->dev, "%s\n", __func__);
Alan Sternf2835212008-04-28 11:07:17 -04003597 hub_activate(hub, HUB_RESET_RESUME);
Alan Sternf07600c2007-05-30 15:38:16 -04003598 return 0;
3599}
3600
Alan Stern54515fe2007-05-30 15:38:58 -04003601/**
3602 * usb_root_hub_lost_power - called by HCD if the root hub lost Vbus power
3603 * @rhdev: struct usb_device for the root hub
3604 *
3605 * The USB host controller driver calls this function when its root hub
3606 * is resumed and Vbus power has been interrupted or the controller
Alan Sternfeccc302008-03-03 15:15:59 -05003607 * has been reset. The routine marks @rhdev as having lost power.
3608 * When the hub driver is resumed it will take notice and carry out
3609 * power-session recovery for all the "USB-PERSIST"-enabled child devices;
3610 * the others will be disconnected.
Alan Stern54515fe2007-05-30 15:38:58 -04003611 */
3612void usb_root_hub_lost_power(struct usb_device *rhdev)
3613{
3614 dev_warn(&rhdev->dev, "root hub lost power or was reset\n");
3615 rhdev->reset_resume = 1;
3616}
3617EXPORT_SYMBOL_GPL(usb_root_hub_lost_power);
3618
Sarah Sharp1ea7e0e2012-04-24 17:21:50 -07003619static const char * const usb3_lpm_names[] = {
3620 "U0",
3621 "U1",
3622 "U2",
3623 "U3",
3624};
3625
3626/*
3627 * Send a Set SEL control transfer to the device, prior to enabling
3628 * device-initiated U1 or U2. This lets the device know the exit latencies from
3629 * the time the device initiates a U1 or U2 exit, to the time it will receive a
3630 * packet from the host.
3631 *
3632 * This function will fail if the SEL or PEL values for udev are greater than
3633 * the maximum allowed values for the link state to be enabled.
3634 */
3635static int usb_req_set_sel(struct usb_device *udev, enum usb3_link_state state)
3636{
3637 struct usb_set_sel_req *sel_values;
3638 unsigned long long u1_sel;
3639 unsigned long long u1_pel;
3640 unsigned long long u2_sel;
3641 unsigned long long u2_pel;
3642 int ret;
3643
Xenia Ragiadakou38d7f682013-09-04 17:24:45 +03003644 if (udev->state != USB_STATE_CONFIGURED)
3645 return 0;
3646
Sarah Sharp1ea7e0e2012-04-24 17:21:50 -07003647 /* Convert SEL and PEL stored in ns to us */
3648 u1_sel = DIV_ROUND_UP(udev->u1_params.sel, 1000);
3649 u1_pel = DIV_ROUND_UP(udev->u1_params.pel, 1000);
3650 u2_sel = DIV_ROUND_UP(udev->u2_params.sel, 1000);
3651 u2_pel = DIV_ROUND_UP(udev->u2_params.pel, 1000);
3652
3653 /*
3654 * Make sure that the calculated SEL and PEL values for the link
3655 * state we're enabling aren't bigger than the max SEL/PEL
3656 * value that will fit in the SET SEL control transfer.
3657 * Otherwise the device would get an incorrect idea of the exit
3658 * latency for the link state, and could start a device-initiated
3659 * U1/U2 when the exit latencies are too high.
3660 */
3661 if ((state == USB3_LPM_U1 &&
3662 (u1_sel > USB3_LPM_MAX_U1_SEL_PEL ||
3663 u1_pel > USB3_LPM_MAX_U1_SEL_PEL)) ||
3664 (state == USB3_LPM_U2 &&
3665 (u2_sel > USB3_LPM_MAX_U2_SEL_PEL ||
3666 u2_pel > USB3_LPM_MAX_U2_SEL_PEL))) {
Sarah Sharp1510a1a2012-10-05 10:30:35 -07003667 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 -07003668 usb3_lpm_names[state], u1_sel, u1_pel);
3669 return -EINVAL;
3670 }
3671
3672 /*
3673 * If we're enabling device-initiated LPM for one link state,
3674 * but the other link state has a too high SEL or PEL value,
3675 * just set those values to the max in the Set SEL request.
3676 */
3677 if (u1_sel > USB3_LPM_MAX_U1_SEL_PEL)
3678 u1_sel = USB3_LPM_MAX_U1_SEL_PEL;
3679
3680 if (u1_pel > USB3_LPM_MAX_U1_SEL_PEL)
3681 u1_pel = USB3_LPM_MAX_U1_SEL_PEL;
3682
3683 if (u2_sel > USB3_LPM_MAX_U2_SEL_PEL)
3684 u2_sel = USB3_LPM_MAX_U2_SEL_PEL;
3685
3686 if (u2_pel > USB3_LPM_MAX_U2_SEL_PEL)
3687 u2_pel = USB3_LPM_MAX_U2_SEL_PEL;
3688
3689 /*
3690 * usb_enable_lpm() can be called as part of a failed device reset,
3691 * which may be initiated by an error path of a mass storage driver.
3692 * Therefore, use GFP_NOIO.
3693 */
3694 sel_values = kmalloc(sizeof *(sel_values), GFP_NOIO);
3695 if (!sel_values)
3696 return -ENOMEM;
3697
3698 sel_values->u1_sel = u1_sel;
3699 sel_values->u1_pel = u1_pel;
3700 sel_values->u2_sel = cpu_to_le16(u2_sel);
3701 sel_values->u2_pel = cpu_to_le16(u2_pel);
3702
3703 ret = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
3704 USB_REQ_SET_SEL,
3705 USB_RECIP_DEVICE,
3706 0, 0,
3707 sel_values, sizeof *(sel_values),
3708 USB_CTRL_SET_TIMEOUT);
3709 kfree(sel_values);
3710 return ret;
3711}
3712
3713/*
3714 * Enable or disable device-initiated U1 or U2 transitions.
3715 */
3716static int usb_set_device_initiated_lpm(struct usb_device *udev,
3717 enum usb3_link_state state, bool enable)
3718{
3719 int ret;
3720 int feature;
3721
3722 switch (state) {
3723 case USB3_LPM_U1:
3724 feature = USB_DEVICE_U1_ENABLE;
3725 break;
3726 case USB3_LPM_U2:
3727 feature = USB_DEVICE_U2_ENABLE;
3728 break;
3729 default:
3730 dev_warn(&udev->dev, "%s: Can't %s non-U1 or U2 state.\n",
3731 __func__, enable ? "enable" : "disable");
3732 return -EINVAL;
3733 }
3734
3735 if (udev->state != USB_STATE_CONFIGURED) {
3736 dev_dbg(&udev->dev, "%s: Can't %s %s state "
3737 "for unconfigured device.\n",
3738 __func__, enable ? "enable" : "disable",
3739 usb3_lpm_names[state]);
3740 return 0;
3741 }
3742
3743 if (enable) {
3744 /*
Sarah Sharp1ea7e0e2012-04-24 17:21:50 -07003745 * Now send the control transfer to enable device-initiated LPM
3746 * for either U1 or U2.
3747 */
3748 ret = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
3749 USB_REQ_SET_FEATURE,
3750 USB_RECIP_DEVICE,
3751 feature,
3752 0, NULL, 0,
3753 USB_CTRL_SET_TIMEOUT);
3754 } else {
3755 ret = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
3756 USB_REQ_CLEAR_FEATURE,
3757 USB_RECIP_DEVICE,
3758 feature,
3759 0, NULL, 0,
3760 USB_CTRL_SET_TIMEOUT);
3761 }
3762 if (ret < 0) {
3763 dev_warn(&udev->dev, "%s of device-initiated %s failed.\n",
3764 enable ? "Enable" : "Disable",
3765 usb3_lpm_names[state]);
3766 return -EBUSY;
3767 }
3768 return 0;
3769}
3770
3771static int usb_set_lpm_timeout(struct usb_device *udev,
3772 enum usb3_link_state state, int timeout)
3773{
3774 int ret;
3775 int feature;
3776
3777 switch (state) {
3778 case USB3_LPM_U1:
3779 feature = USB_PORT_FEAT_U1_TIMEOUT;
3780 break;
3781 case USB3_LPM_U2:
3782 feature = USB_PORT_FEAT_U2_TIMEOUT;
3783 break;
3784 default:
3785 dev_warn(&udev->dev, "%s: Can't set timeout for non-U1 or U2 state.\n",
3786 __func__);
3787 return -EINVAL;
3788 }
3789
3790 if (state == USB3_LPM_U1 && timeout > USB3_LPM_U1_MAX_TIMEOUT &&
3791 timeout != USB3_LPM_DEVICE_INITIATED) {
3792 dev_warn(&udev->dev, "Failed to set %s timeout to 0x%x, "
3793 "which is a reserved value.\n",
3794 usb3_lpm_names[state], timeout);
3795 return -EINVAL;
3796 }
3797
3798 ret = set_port_feature(udev->parent,
3799 USB_PORT_LPM_TIMEOUT(timeout) | udev->portnum,
3800 feature);
3801 if (ret < 0) {
3802 dev_warn(&udev->dev, "Failed to set %s timeout to 0x%x,"
3803 "error code %i\n", usb3_lpm_names[state],
3804 timeout, ret);
3805 return -EBUSY;
3806 }
3807 if (state == USB3_LPM_U1)
3808 udev->u1_params.timeout = timeout;
3809 else
3810 udev->u2_params.timeout = timeout;
3811 return 0;
3812}
3813
3814/*
3815 * Enable the hub-initiated U1/U2 idle timeouts, and enable device-initiated
3816 * U1/U2 entry.
3817 *
3818 * We will attempt to enable U1 or U2, but there are no guarantees that the
3819 * control transfers to set the hub timeout or enable device-initiated U1/U2
3820 * will be successful.
3821 *
3822 * If we cannot set the parent hub U1/U2 timeout, we attempt to let the xHCI
3823 * driver know about it. If that call fails, it should be harmless, and just
3824 * take up more slightly more bus bandwidth for unnecessary U1/U2 exit latency.
3825 */
3826static void usb_enable_link_state(struct usb_hcd *hcd, struct usb_device *udev,
3827 enum usb3_link_state state)
3828{
Sarah Sharp65a95b72012-10-05 10:32:07 -07003829 int timeout, ret;
Sarah Sharpae8963a2012-10-03 11:18:05 -07003830 __u8 u1_mel = udev->bos->ss_cap->bU1devExitLat;
3831 __le16 u2_mel = udev->bos->ss_cap->bU2DevExitLat;
3832
3833 /* If the device says it doesn't have *any* exit latency to come out of
3834 * U1 or U2, it's probably lying. Assume it doesn't implement that link
3835 * state.
3836 */
3837 if ((state == USB3_LPM_U1 && u1_mel == 0) ||
3838 (state == USB3_LPM_U2 && u2_mel == 0))
3839 return;
Sarah Sharp1ea7e0e2012-04-24 17:21:50 -07003840
Sarah Sharp65a95b72012-10-05 10:32:07 -07003841 /*
3842 * First, let the device know about the exit latencies
3843 * associated with the link state we're about to enable.
3844 */
3845 ret = usb_req_set_sel(udev, state);
3846 if (ret < 0) {
3847 dev_warn(&udev->dev, "Set SEL for device-initiated %s failed.\n",
3848 usb3_lpm_names[state]);
3849 return;
3850 }
3851
Sarah Sharp1ea7e0e2012-04-24 17:21:50 -07003852 /* We allow the host controller to set the U1/U2 timeout internally
3853 * first, so that it can change its schedule to account for the
3854 * additional latency to send data to a device in a lower power
3855 * link state.
3856 */
3857 timeout = hcd->driver->enable_usb3_lpm_timeout(hcd, udev, state);
3858
3859 /* xHCI host controller doesn't want to enable this LPM state. */
3860 if (timeout == 0)
3861 return;
3862
3863 if (timeout < 0) {
3864 dev_warn(&udev->dev, "Could not enable %s link state, "
3865 "xHCI error %i.\n", usb3_lpm_names[state],
3866 timeout);
3867 return;
3868 }
3869
3870 if (usb_set_lpm_timeout(udev, state, timeout))
3871 /* If we can't set the parent hub U1/U2 timeout,
3872 * device-initiated LPM won't be allowed either, so let the xHCI
3873 * host know that this link state won't be enabled.
3874 */
3875 hcd->driver->disable_usb3_lpm_timeout(hcd, udev, state);
3876
3877 /* Only a configured device will accept the Set Feature U1/U2_ENABLE */
3878 else if (udev->actconfig)
3879 usb_set_device_initiated_lpm(udev, state, true);
3880
3881}
3882
3883/*
3884 * Disable the hub-initiated U1/U2 idle timeouts, and disable device-initiated
3885 * U1/U2 entry.
3886 *
3887 * If this function returns -EBUSY, the parent hub will still allow U1/U2 entry.
3888 * If zero is returned, the parent will not allow the link to go into U1/U2.
3889 *
3890 * If zero is returned, device-initiated U1/U2 entry may still be enabled, but
3891 * it won't have an effect on the bus link state because the parent hub will
3892 * still disallow device-initiated U1/U2 entry.
3893 *
3894 * If zero is returned, the xHCI host controller may still think U1/U2 entry is
3895 * possible. The result will be slightly more bus bandwidth will be taken up
3896 * (to account for U1/U2 exit latency), but it should be harmless.
3897 */
3898static int usb_disable_link_state(struct usb_hcd *hcd, struct usb_device *udev,
3899 enum usb3_link_state state)
3900{
3901 int feature;
3902
3903 switch (state) {
3904 case USB3_LPM_U1:
3905 feature = USB_PORT_FEAT_U1_TIMEOUT;
3906 break;
3907 case USB3_LPM_U2:
3908 feature = USB_PORT_FEAT_U2_TIMEOUT;
3909 break;
3910 default:
3911 dev_warn(&udev->dev, "%s: Can't disable non-U1 or U2 state.\n",
3912 __func__);
3913 return -EINVAL;
3914 }
3915
3916 if (usb_set_lpm_timeout(udev, state, 0))
3917 return -EBUSY;
3918
3919 usb_set_device_initiated_lpm(udev, state, false);
3920
3921 if (hcd->driver->disable_usb3_lpm_timeout(hcd, udev, state))
3922 dev_warn(&udev->dev, "Could not disable xHCI %s timeout, "
3923 "bus schedule bandwidth may be impacted.\n",
3924 usb3_lpm_names[state]);
3925 return 0;
3926}
3927
3928/*
3929 * Disable hub-initiated and device-initiated U1 and U2 entry.
3930 * Caller must own the bandwidth_mutex.
3931 *
3932 * This will call usb_enable_lpm() on failure, which will decrement
3933 * lpm_disable_count, and will re-enable LPM if lpm_disable_count reaches zero.
3934 */
3935int usb_disable_lpm(struct usb_device *udev)
3936{
3937 struct usb_hcd *hcd;
3938
3939 if (!udev || !udev->parent ||
3940 udev->speed != USB_SPEED_SUPER ||
Pratyush Anand51df62f2014-07-04 17:01:27 +03003941 !udev->lpm_capable ||
3942 udev->state < USB_STATE_DEFAULT)
Sarah Sharp1ea7e0e2012-04-24 17:21:50 -07003943 return 0;
3944
3945 hcd = bus_to_hcd(udev->bus);
3946 if (!hcd || !hcd->driver->disable_usb3_lpm_timeout)
3947 return 0;
3948
3949 udev->lpm_disable_count++;
Dan Carpenter55558c32012-05-22 20:54:34 +03003950 if ((udev->u1_params.timeout == 0 && udev->u2_params.timeout == 0))
Sarah Sharp1ea7e0e2012-04-24 17:21:50 -07003951 return 0;
3952
3953 /* If LPM is enabled, attempt to disable it. */
3954 if (usb_disable_link_state(hcd, udev, USB3_LPM_U1))
3955 goto enable_lpm;
3956 if (usb_disable_link_state(hcd, udev, USB3_LPM_U2))
3957 goto enable_lpm;
3958
3959 return 0;
3960
3961enable_lpm:
3962 usb_enable_lpm(udev);
3963 return -EBUSY;
3964}
3965EXPORT_SYMBOL_GPL(usb_disable_lpm);
3966
3967/* Grab the bandwidth_mutex before calling usb_disable_lpm() */
3968int usb_unlocked_disable_lpm(struct usb_device *udev)
3969{
3970 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
3971 int ret;
3972
3973 if (!hcd)
3974 return -EINVAL;
3975
3976 mutex_lock(hcd->bandwidth_mutex);
3977 ret = usb_disable_lpm(udev);
3978 mutex_unlock(hcd->bandwidth_mutex);
3979
3980 return ret;
3981}
3982EXPORT_SYMBOL_GPL(usb_unlocked_disable_lpm);
3983
3984/*
3985 * Attempt to enable device-initiated and hub-initiated U1 and U2 entry. The
3986 * xHCI host policy may prevent U1 or U2 from being enabled.
3987 *
3988 * Other callers may have disabled link PM, so U1 and U2 entry will be disabled
3989 * until the lpm_disable_count drops to zero. Caller must own the
3990 * bandwidth_mutex.
3991 */
3992void usb_enable_lpm(struct usb_device *udev)
3993{
3994 struct usb_hcd *hcd;
3995
3996 if (!udev || !udev->parent ||
3997 udev->speed != USB_SPEED_SUPER ||
Pratyush Anand51df62f2014-07-04 17:01:27 +03003998 !udev->lpm_capable ||
3999 udev->state < USB_STATE_DEFAULT)
Sarah Sharp1ea7e0e2012-04-24 17:21:50 -07004000 return;
4001
4002 udev->lpm_disable_count--;
4003 hcd = bus_to_hcd(udev->bus);
4004 /* Double check that we can both enable and disable LPM.
4005 * Device must be configured to accept set feature U1/U2 timeout.
4006 */
4007 if (!hcd || !hcd->driver->enable_usb3_lpm_timeout ||
4008 !hcd->driver->disable_usb3_lpm_timeout)
4009 return;
4010
4011 if (udev->lpm_disable_count > 0)
4012 return;
4013
4014 usb_enable_link_state(hcd, udev, USB3_LPM_U1);
4015 usb_enable_link_state(hcd, udev, USB3_LPM_U2);
4016}
4017EXPORT_SYMBOL_GPL(usb_enable_lpm);
4018
4019/* Grab the bandwidth_mutex before calling usb_enable_lpm() */
4020void usb_unlocked_enable_lpm(struct usb_device *udev)
4021{
4022 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
4023
4024 if (!hcd)
4025 return;
4026
4027 mutex_lock(hcd->bandwidth_mutex);
4028 usb_enable_lpm(udev);
4029 mutex_unlock(hcd->bandwidth_mutex);
4030}
4031EXPORT_SYMBOL_GPL(usb_unlocked_enable_lpm);
4032
4033
Alan Sternd388dab2006-07-01 22:14:24 -04004034#else /* CONFIG_PM */
4035
Alan Sternf07600c2007-05-30 15:38:16 -04004036#define hub_suspend NULL
4037#define hub_resume NULL
4038#define hub_reset_resume NULL
Sarah Sharp1ea7e0e2012-04-24 17:21:50 -07004039
4040int usb_disable_lpm(struct usb_device *udev)
4041{
4042 return 0;
4043}
Sarah Sharpe9261fb2012-05-21 08:29:01 -07004044EXPORT_SYMBOL_GPL(usb_disable_lpm);
Sarah Sharp1ea7e0e2012-04-24 17:21:50 -07004045
4046void usb_enable_lpm(struct usb_device *udev) { }
Sarah Sharpe9261fb2012-05-21 08:29:01 -07004047EXPORT_SYMBOL_GPL(usb_enable_lpm);
Sarah Sharp1ea7e0e2012-04-24 17:21:50 -07004048
4049int usb_unlocked_disable_lpm(struct usb_device *udev)
4050{
4051 return 0;
4052}
Sarah Sharpe9261fb2012-05-21 08:29:01 -07004053EXPORT_SYMBOL_GPL(usb_unlocked_disable_lpm);
Sarah Sharp1ea7e0e2012-04-24 17:21:50 -07004054
4055void usb_unlocked_enable_lpm(struct usb_device *udev) { }
Sarah Sharpe9261fb2012-05-21 08:29:01 -07004056EXPORT_SYMBOL_GPL(usb_unlocked_enable_lpm);
Sarah Sharpf74631e2012-06-25 12:08:08 -07004057
4058int usb_disable_ltm(struct usb_device *udev)
4059{
4060 return 0;
4061}
4062EXPORT_SYMBOL_GPL(usb_disable_ltm);
4063
4064void usb_enable_ltm(struct usb_device *udev) { }
4065EXPORT_SYMBOL_GPL(usb_enable_ltm);
Alan Sternc4b51a42013-07-11 14:58:23 -04004066
Stephen Rothwell4a95b1f2014-05-29 18:55:06 +10004067static int hub_handle_remote_wakeup(struct usb_hub *hub, unsigned int port,
4068 u16 portstatus, u16 portchange)
4069{
4070 return 0;
4071}
4072
Alan Sternc4b51a42013-07-11 14:58:23 -04004073#endif /* CONFIG_PM */
Alan Sternd388dab2006-07-01 22:14:24 -04004074
Linus Torvalds1da177e2005-04-16 15:20:36 -07004075
4076/* USB 2.0 spec, 7.1.7.3 / fig 7-29:
4077 *
4078 * Between connect detection and reset signaling there must be a delay
4079 * of 100ms at least for debounce and power-settling. The corresponding
4080 * timer shall restart whenever the downstream port detects a disconnect.
Matthias Beyer469271f2013-10-10 23:41:27 +02004081 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004082 * Apparently there are some bluetooth and irda-dongles and a number of
4083 * low-speed devices for which this debounce period may last over a second.
4084 * Not covered by the spec - but easy to deal with.
4085 *
4086 * This implementation uses a 1500ms total debounce timeout; if the
4087 * connection isn't stable by then it returns -ETIMEDOUT. It checks
4088 * every 25ms for transient disconnects. When the port status has been
4089 * unchanged for 100ms it returns the port status.
4090 */
Lan Tianyuad493e52013-01-23 04:26:30 +08004091int hub_port_debounce(struct usb_hub *hub, int port1, bool must_be_connected)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004092{
4093 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004094 u16 portchange, portstatus;
4095 unsigned connection = 0xffff;
Dan Williamsd99f6b42014-05-20 18:08:17 -07004096 int total_time, stable_time = 0;
4097 struct usb_port *port_dev = hub->ports[port1 - 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004098
4099 for (total_time = 0; ; total_time += HUB_DEBOUNCE_STEP) {
4100 ret = hub_port_status(hub, port1, &portstatus, &portchange);
4101 if (ret < 0)
4102 return ret;
4103
4104 if (!(portchange & USB_PORT_STAT_C_CONNECTION) &&
4105 (portstatus & USB_PORT_STAT_CONNECTION) == connection) {
Lan Tianyuad493e52013-01-23 04:26:30 +08004106 if (!must_be_connected ||
4107 (connection == USB_PORT_STAT_CONNECTION))
4108 stable_time += HUB_DEBOUNCE_STEP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004109 if (stable_time >= HUB_DEBOUNCE_STABLE)
4110 break;
4111 } else {
4112 stable_time = 0;
4113 connection = portstatus & USB_PORT_STAT_CONNECTION;
4114 }
4115
4116 if (portchange & USB_PORT_STAT_C_CONNECTION) {
Lan Tianyuad493e52013-01-23 04:26:30 +08004117 usb_clear_port_feature(hub->hdev, port1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004118 USB_PORT_FEAT_C_CONNECTION);
4119 }
4120
4121 if (total_time >= HUB_DEBOUNCE_TIMEOUT)
4122 break;
4123 msleep(HUB_DEBOUNCE_STEP);
4124 }
4125
Dan Williamsd99f6b42014-05-20 18:08:17 -07004126 dev_dbg(&port_dev->dev, "debounce total %dms stable %dms status 0x%x\n",
4127 total_time, stable_time, portstatus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004128
4129 if (stable_time < HUB_DEBOUNCE_STABLE)
4130 return -ETIMEDOUT;
4131 return portstatus;
4132}
4133
Inaky Perez-Gonzalezfc721f52008-04-08 13:24:46 -07004134void usb_ep0_reinit(struct usb_device *udev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004135{
Alan Sternddeac4e2009-01-15 17:03:33 -05004136 usb_disable_endpoint(udev, 0 + USB_DIR_IN, true);
4137 usb_disable_endpoint(udev, 0 + USB_DIR_OUT, true);
Alan Stern2caf7fc2008-12-31 11:31:33 -05004138 usb_enable_endpoint(udev, &udev->ep0, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004139}
Inaky Perez-Gonzalezfc721f52008-04-08 13:24:46 -07004140EXPORT_SYMBOL_GPL(usb_ep0_reinit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004141
4142#define usb_sndaddr0pipe() (PIPE_CONTROL << 30)
4143#define usb_rcvaddr0pipe() ((PIPE_CONTROL << 30) | USB_DIR_IN)
4144
Alan Stern4326ed02007-07-30 17:08:43 -04004145static int hub_set_address(struct usb_device *udev, int devnum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004146{
4147 int retval;
Sarah Sharpc6515272009-04-27 19:57:26 -07004148 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004149
Sarah Sharpc6515272009-04-27 19:57:26 -07004150 /*
4151 * The host controller will choose the device address,
4152 * instead of the core having chosen it earlier
4153 */
4154 if (!hcd->driver->address_device && devnum <= 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004155 return -EINVAL;
4156 if (udev->state == USB_STATE_ADDRESS)
4157 return 0;
4158 if (udev->state != USB_STATE_DEFAULT)
4159 return -EINVAL;
Andiry Xuc8d4af82010-10-14 07:22:51 -07004160 if (hcd->driver->address_device)
Sarah Sharpc6515272009-04-27 19:57:26 -07004161 retval = hcd->driver->address_device(hcd, udev);
Andiry Xuc8d4af82010-10-14 07:22:51 -07004162 else
Sarah Sharpc6515272009-04-27 19:57:26 -07004163 retval = usb_control_msg(udev, usb_sndaddr0pipe(),
4164 USB_REQ_SET_ADDRESS, 0, devnum, 0,
4165 NULL, 0, USB_CTRL_SET_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004166 if (retval == 0) {
Alan Stern3b29b682011-02-22 09:53:41 -05004167 update_devnum(udev, devnum);
David Vrabel4953d142008-04-08 13:24:46 -07004168 /* Device now using proper address. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004169 usb_set_device_state(udev, USB_STATE_ADDRESS);
Inaky Perez-Gonzalezfc721f52008-04-08 13:24:46 -07004170 usb_ep0_reinit(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004171 }
4172 return retval;
4173}
4174
Mathias Nyman890dae82013-09-30 17:26:31 +03004175/*
4176 * There are reports of USB 3.0 devices that say they support USB 2.0 Link PM
4177 * when they're plugged into a USB 2.0 port, but they don't work when LPM is
4178 * enabled.
4179 *
4180 * Only enable USB 2.0 Link PM if the port is internal (hardwired), or the
4181 * device says it supports the new USB 2.0 Link PM errata by setting the BESL
4182 * support bit in the BOS descriptor.
4183 */
4184static void hub_set_initial_usb2_lpm_policy(struct usb_device *udev)
4185{
Dan Williamsd99f6b42014-05-20 18:08:17 -07004186 struct usb_hub *hub = usb_hub_to_struct_hub(udev->parent);
4187 int connect_type = USB_PORT_CONNECT_TYPE_UNKNOWN;
Mathias Nyman890dae82013-09-30 17:26:31 +03004188
4189 if (!udev->usb2_hw_lpm_capable)
4190 return;
4191
Dan Williamsd99f6b42014-05-20 18:08:17 -07004192 if (hub)
4193 connect_type = hub->ports[udev->portnum - 1]->connect_type;
Mathias Nyman890dae82013-09-30 17:26:31 +03004194
Bjørn Mork23c05822014-02-27 14:23:55 +01004195 if ((udev->bos->ext_cap->bmAttributes & cpu_to_le32(USB_BESL_SUPPORT)) ||
Mathias Nyman890dae82013-09-30 17:26:31 +03004196 connect_type == USB_PORT_CONNECT_TYPE_HARD_WIRED) {
4197 udev->usb2_hw_lpm_allowed = 1;
4198 usb_set_usb2_hardware_lpm(udev, 1);
4199 }
4200}
4201
Dan Williams48fc7db2013-12-05 17:07:27 -08004202static int hub_enable_device(struct usb_device *udev)
4203{
4204 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
4205
4206 if (!hcd->driver->enable_device)
4207 return 0;
4208 if (udev->state == USB_STATE_ADDRESS)
4209 return 0;
4210 if (udev->state != USB_STATE_DEFAULT)
4211 return -EINVAL;
4212
4213 return hcd->driver->enable_device(hcd, udev);
4214}
4215
Linus Torvalds1da177e2005-04-16 15:20:36 -07004216/* Reset device, (re)assign address, get device descriptor.
4217 * Device connection must be stable, no more debouncing needed.
4218 * Returns device in USB_STATE_ADDRESS, except on error.
4219 *
4220 * If this is called for an already-existing device (as part of
Dan Williams5c79a1e2014-05-20 18:09:26 -07004221 * usb_reset_and_verify_device), the caller must own the device lock and
4222 * the port lock. For a newly detected device that is not accessible
4223 * through any global pointers, it's not necessary to lock the device,
4224 * but it is still necessary to lock the port.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004225 */
4226static int
4227hub_port_init (struct usb_hub *hub, struct usb_device *udev, int port1,
4228 int retry_counter)
4229{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004230 struct usb_device *hdev = hub->hdev;
Sarah Sharpe7b77172009-04-27 19:54:26 -07004231 struct usb_hcd *hcd = bus_to_hcd(hdev->bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004232 int i, j, retval;
4233 unsigned delay = HUB_SHORT_RESET_TIME;
4234 enum usb_device_speed oldspeed = udev->speed;
Michal Nazarewicze538dfd2011-08-30 17:11:19 +02004235 const char *speed;
Alan Stern4326ed02007-07-30 17:08:43 -04004236 int devnum = udev->devnum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004237
4238 /* root hub ports have a slightly longer reset period
4239 * (from USB 2.0 spec, section 7.1.7.5)
4240 */
4241 if (!hdev->parent) {
4242 delay = HUB_ROOT_RESET_TIME;
4243 if (port1 == hdev->bus->otg_port)
4244 hdev->bus->b_hnp_enable = 0;
4245 }
4246
4247 /* Some low speed devices have problems with the quick delay, so */
4248 /* be a bit pessimistic with those devices. RHbug #23670 */
4249 if (oldspeed == USB_SPEED_LOW)
4250 delay = HUB_LONG_RESET_TIME;
4251
Todd E Brandt6fecd4f2014-05-19 10:55:32 -07004252 mutex_lock(&hdev->bus->usb_address0_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004253
Luben Tuikov07194ab2011-02-11 11:33:10 -08004254 /* Reset the device; full speed may morph to high speed */
4255 /* FIXME a USB 2.0 device may morph into SuperSpeed on reset. */
Andiry Xu75d7cf72011-09-13 16:41:11 -07004256 retval = hub_port_reset(hub, port1, udev, delay, false);
Luben Tuikov07194ab2011-02-11 11:33:10 -08004257 if (retval < 0) /* error or disconnect */
4258 goto fail;
4259 /* success, speed is known */
4260
Linus Torvalds1da177e2005-04-16 15:20:36 -07004261 retval = -ENODEV;
4262
4263 if (oldspeed != USB_SPEED_UNKNOWN && oldspeed != udev->speed) {
4264 dev_dbg(&udev->dev, "device reset changed speed!\n");
4265 goto fail;
4266 }
4267 oldspeed = udev->speed;
Alan Stern4326ed02007-07-30 17:08:43 -04004268
Linus Torvalds1da177e2005-04-16 15:20:36 -07004269 /* USB 2.0 section 5.5.3 talks about ep0 maxpacket ...
4270 * it's fixed size except for full speed devices.
Inaky Perez-Gonzalez5bb6e0a2006-08-25 19:35:30 -07004271 * For Wireless USB devices, ep0 max packet is always 512 (tho
4272 * reported as 0xff in the device descriptor). WUSB1.0[4.8.1].
Linus Torvalds1da177e2005-04-16 15:20:36 -07004273 */
4274 switch (udev->speed) {
Sarah Sharp6b403b02009-04-27 19:54:10 -07004275 case USB_SPEED_SUPER:
Greg Kroah-Hartman551cdbb2010-01-14 11:08:04 -08004276 case USB_SPEED_WIRELESS: /* fixed at 512 */
Harvey Harrison551509d2009-02-11 14:11:36 -08004277 udev->ep0.desc.wMaxPacketSize = cpu_to_le16(512);
Inaky Perez-Gonzalez5bb6e0a2006-08-25 19:35:30 -07004278 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004279 case USB_SPEED_HIGH: /* fixed at 64 */
Harvey Harrison551509d2009-02-11 14:11:36 -08004280 udev->ep0.desc.wMaxPacketSize = cpu_to_le16(64);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004281 break;
4282 case USB_SPEED_FULL: /* 8, 16, 32, or 64 */
4283 /* to determine the ep0 maxpacket size, try to read
4284 * the device descriptor to get bMaxPacketSize0 and
4285 * then correct our initial guess.
4286 */
Harvey Harrison551509d2009-02-11 14:11:36 -08004287 udev->ep0.desc.wMaxPacketSize = cpu_to_le16(64);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004288 break;
4289 case USB_SPEED_LOW: /* fixed at 8 */
Harvey Harrison551509d2009-02-11 14:11:36 -08004290 udev->ep0.desc.wMaxPacketSize = cpu_to_le16(8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004291 break;
4292 default:
4293 goto fail;
4294 }
Michal Nazarewicze538dfd2011-08-30 17:11:19 +02004295
4296 if (udev->speed == USB_SPEED_WIRELESS)
4297 speed = "variable speed Wireless";
4298 else
4299 speed = usb_speed_string(udev->speed);
4300
Sarah Sharpc6515272009-04-27 19:57:26 -07004301 if (udev->speed != USB_SPEED_SUPER)
4302 dev_info(&udev->dev,
Michal Nazarewicze538dfd2011-08-30 17:11:19 +02004303 "%s %s USB device number %d using %s\n",
4304 (udev->config) ? "reset" : "new", speed,
Alan Stern3b29b682011-02-22 09:53:41 -05004305 devnum, udev->bus->controller->driver->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004306
4307 /* Set up TT records, if needed */
4308 if (hdev->tt) {
4309 udev->tt = hdev->tt;
4310 udev->ttport = hdev->ttport;
4311 } else if (udev->speed != USB_SPEED_HIGH
4312 && hdev->speed == USB_SPEED_HIGH) {
Alan Sternd199c962011-01-31 10:56:37 -05004313 if (!hub->tt.hub) {
4314 dev_err(&udev->dev, "parent hub has no TT\n");
4315 retval = -EINVAL;
4316 goto fail;
4317 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004318 udev->tt = &hub->tt;
4319 udev->ttport = port1;
4320 }
Matthias Beyer469271f2013-10-10 23:41:27 +02004321
Linus Torvalds1da177e2005-04-16 15:20:36 -07004322 /* Why interleave GET_DESCRIPTOR and SET_ADDRESS this way?
4323 * Because device hardware and firmware is sometimes buggy in
4324 * this area, and this is how Linux has done it for ages.
4325 * Change it cautiously.
4326 *
Dan Williams48fc7db2013-12-05 17:07:27 -08004327 * NOTE: If use_new_scheme() is true we will start by issuing
Linus Torvalds1da177e2005-04-16 15:20:36 -07004328 * a 64-byte GET_DESCRIPTOR request. This is what Windows does,
4329 * so it may help with some non-standards-compliant devices.
4330 * Otherwise we start with SET_ADDRESS and then try to read the
4331 * first 8 bytes of the device descriptor to get the ep0 maxpacket
4332 * value.
4333 */
4334 for (i = 0; i < GET_DESCRIPTOR_TRIES; (++i, msleep(100))) {
Dan Williams48fc7db2013-12-05 17:07:27 -08004335 bool did_new_scheme = false;
4336
4337 if (use_new_scheme(udev, retry_counter)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004338 struct usb_device_descriptor *buf;
4339 int r = 0;
4340
Dan Williams48fc7db2013-12-05 17:07:27 -08004341 did_new_scheme = true;
4342 retval = hub_enable_device(udev);
Oliver Neukum938569e2014-02-27 10:57:10 +01004343 if (retval < 0) {
4344 dev_err(&udev->dev,
4345 "hub failed to enable device, error %d\n",
4346 retval);
Dan Williams48fc7db2013-12-05 17:07:27 -08004347 goto fail;
Oliver Neukum938569e2014-02-27 10:57:10 +01004348 }
Dan Williams48fc7db2013-12-05 17:07:27 -08004349
Linus Torvalds1da177e2005-04-16 15:20:36 -07004350#define GET_DESCRIPTOR_BUFSIZE 64
4351 buf = kmalloc(GET_DESCRIPTOR_BUFSIZE, GFP_NOIO);
4352 if (!buf) {
4353 retval = -ENOMEM;
4354 continue;
4355 }
4356
Alan Sternb89ee192007-05-11 10:19:04 -04004357 /* Retry on all errors; some devices are flakey.
4358 * 255 is for WUSB devices, we actually need to use
4359 * 512 (WUSB1.0[4.8.1]).
Linus Torvalds1da177e2005-04-16 15:20:36 -07004360 */
4361 for (j = 0; j < 3; ++j) {
4362 buf->bMaxPacketSize0 = 0;
4363 r = usb_control_msg(udev, usb_rcvaddr0pipe(),
4364 USB_REQ_GET_DESCRIPTOR, USB_DIR_IN,
4365 USB_DT_DEVICE << 8, 0,
4366 buf, GET_DESCRIPTOR_BUFSIZE,
Jaroslav Kyselafd7c5192008-10-10 16:24:45 +02004367 initial_descriptor_timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004368 switch (buf->bMaxPacketSize0) {
Inaky Perez-Gonzalez5bb6e0a2006-08-25 19:35:30 -07004369 case 8: case 16: case 32: case 64: case 255:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004370 if (buf->bDescriptorType ==
4371 USB_DT_DEVICE) {
4372 r = 0;
4373 break;
4374 }
4375 /* FALL THROUGH */
4376 default:
4377 if (r == 0)
4378 r = -EPROTO;
4379 break;
4380 }
4381 if (r == 0)
4382 break;
4383 }
4384 udev->descriptor.bMaxPacketSize0 =
4385 buf->bMaxPacketSize0;
4386 kfree(buf);
4387
Andiry Xu75d7cf72011-09-13 16:41:11 -07004388 retval = hub_port_reset(hub, port1, udev, delay, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004389 if (retval < 0) /* error or disconnect */
4390 goto fail;
4391 if (oldspeed != udev->speed) {
4392 dev_dbg(&udev->dev,
4393 "device reset changed speed!\n");
4394 retval = -ENODEV;
4395 goto fail;
4396 }
4397 if (r) {
Alan Sterne9e88fb2013-03-27 16:14:01 -04004398 if (r != -ENODEV)
4399 dev_err(&udev->dev, "device descriptor read/64, error %d\n",
4400 r);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004401 retval = -EMSGSIZE;
4402 continue;
4403 }
4404#undef GET_DESCRIPTOR_BUFSIZE
4405 }
4406
Matthias Beyer469271f2013-10-10 23:41:27 +02004407 /*
4408 * If device is WUSB, we already assigned an
4409 * unauthorized address in the Connect Ack sequence;
4410 * authorization will assign the final address.
4411 */
Sarah Sharpc6515272009-04-27 19:57:26 -07004412 if (udev->wusb == 0) {
Inaky Perez-Gonzalez6c529cd2008-04-08 13:24:46 -07004413 for (j = 0; j < SET_ADDRESS_TRIES; ++j) {
4414 retval = hub_set_address(udev, devnum);
4415 if (retval >= 0)
4416 break;
4417 msleep(200);
4418 }
4419 if (retval < 0) {
Alan Sterne9e88fb2013-03-27 16:14:01 -04004420 if (retval != -ENODEV)
4421 dev_err(&udev->dev, "device not accepting address %d, error %d\n",
4422 devnum, retval);
Inaky Perez-Gonzalez6c529cd2008-04-08 13:24:46 -07004423 goto fail;
4424 }
Sarah Sharpc6515272009-04-27 19:57:26 -07004425 if (udev->speed == USB_SPEED_SUPER) {
4426 devnum = udev->devnum;
4427 dev_info(&udev->dev,
Alan Stern3b29b682011-02-22 09:53:41 -05004428 "%s SuperSpeed USB device number %d using %s\n",
Sarah Sharpc6515272009-04-27 19:57:26 -07004429 (udev->config) ? "reset" : "new",
Alan Stern3b29b682011-02-22 09:53:41 -05004430 devnum, udev->bus->controller->driver->name);
Sarah Sharpc6515272009-04-27 19:57:26 -07004431 }
Inaky Perez-Gonzalez6c529cd2008-04-08 13:24:46 -07004432
4433 /* cope with hardware quirkiness:
4434 * - let SET_ADDRESS settle, some device hardware wants it
4435 * - read ep0 maxpacket even for high and low speed,
4436 */
4437 msleep(10);
Dan Williams48fc7db2013-12-05 17:07:27 -08004438 /* use_new_scheme() checks the speed which may have
4439 * changed since the initial look so we cache the result
4440 * in did_new_scheme
4441 */
4442 if (did_new_scheme)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004443 break;
Matthias Beyer469271f2013-10-10 23:41:27 +02004444 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004445
4446 retval = usb_get_device_descriptor(udev, 8);
4447 if (retval < 8) {
Alan Sterne9e88fb2013-03-27 16:14:01 -04004448 if (retval != -ENODEV)
4449 dev_err(&udev->dev,
Wu Fengguangb9cef6c2008-12-15 15:32:01 +08004450 "device descriptor read/8, error %d\n",
4451 retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004452 if (retval >= 0)
4453 retval = -EMSGSIZE;
4454 } else {
4455 retval = 0;
4456 break;
4457 }
4458 }
4459 if (retval)
4460 goto fail;
4461
Peter Chenb76baa82012-11-09 09:44:43 +08004462 if (hcd->phy && !hdev->parent)
Peter Chenac965112012-11-09 09:44:44 +08004463 usb_phy_notify_connect(hcd->phy, udev->speed);
Peter Chenb76baa82012-11-09 09:44:43 +08004464
Elric Fud8aec3d2012-03-26 21:16:02 +08004465 /*
4466 * Some superspeed devices have finished the link training process
4467 * and attached to a superspeed hub port, but the device descriptor
4468 * got from those devices show they aren't superspeed devices. Warm
4469 * reset the port attached by the devices can fix them.
4470 */
4471 if ((udev->speed == USB_SPEED_SUPER) &&
4472 (le16_to_cpu(udev->descriptor.bcdUSB) < 0x0300)) {
4473 dev_err(&udev->dev, "got a wrong device descriptor, "
4474 "warm reset device\n");
4475 hub_port_reset(hub, port1, udev,
4476 HUB_BH_RESET_TIME, true);
4477 retval = -EINVAL;
4478 goto fail;
4479 }
4480
Sarah Sharp6b403b02009-04-27 19:54:10 -07004481 if (udev->descriptor.bMaxPacketSize0 == 0xff ||
4482 udev->speed == USB_SPEED_SUPER)
4483 i = 512;
4484 else
4485 i = udev->descriptor.bMaxPacketSize0;
Kuninori Morimoto29cc8892011-08-23 03:12:03 -07004486 if (usb_endpoint_maxp(&udev->ep0.desc) != i) {
Alan Stern56626a72010-10-14 15:25:21 -04004487 if (udev->speed == USB_SPEED_LOW ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07004488 !(i == 8 || i == 16 || i == 32 || i == 64)) {
Alan Stern56626a72010-10-14 15:25:21 -04004489 dev_err(&udev->dev, "Invalid ep0 maxpacket: %d\n", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004490 retval = -EMSGSIZE;
4491 goto fail;
4492 }
Alan Stern56626a72010-10-14 15:25:21 -04004493 if (udev->speed == USB_SPEED_FULL)
4494 dev_dbg(&udev->dev, "ep0 maxpacket = %d\n", i);
4495 else
4496 dev_warn(&udev->dev, "Using ep0 maxpacket: %d\n", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004497 udev->ep0.desc.wMaxPacketSize = cpu_to_le16(i);
Inaky Perez-Gonzalezfc721f52008-04-08 13:24:46 -07004498 usb_ep0_reinit(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004499 }
Matthias Beyer469271f2013-10-10 23:41:27 +02004500
Linus Torvalds1da177e2005-04-16 15:20:36 -07004501 retval = usb_get_device_descriptor(udev, USB_DT_DEVICE_SIZE);
4502 if (retval < (signed)sizeof(udev->descriptor)) {
Alan Sterne9e88fb2013-03-27 16:14:01 -04004503 if (retval != -ENODEV)
4504 dev_err(&udev->dev, "device descriptor read/all, error %d\n",
4505 retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004506 if (retval >= 0)
4507 retval = -ENOMSG;
4508 goto fail;
4509 }
4510
Andiry Xu1ff4df52011-09-23 14:19:48 -07004511 if (udev->wusb == 0 && le16_to_cpu(udev->descriptor.bcdUSB) >= 0x0201) {
4512 retval = usb_get_bos_descriptor(udev);
Sarah Sharp51e0a012012-02-20 12:02:19 -08004513 if (!retval) {
Sarah Sharpd9b20992012-02-20 08:31:26 -08004514 udev->lpm_capable = usb_device_supports_lpm(udev);
Sarah Sharp51e0a012012-02-20 12:02:19 -08004515 usb_set_lpm_parameters(udev);
4516 }
Andiry Xu1ff4df52011-09-23 14:19:48 -07004517 }
Andiry Xu3148bf02011-09-23 14:19:47 -07004518
Linus Torvalds1da177e2005-04-16 15:20:36 -07004519 retval = 0;
Alek Du48f24972010-06-04 15:47:55 +08004520 /* notify HCD that we have a device connected and addressed */
4521 if (hcd->driver->update_device)
4522 hcd->driver->update_device(hcd, udev);
Mathias Nyman890dae82013-09-30 17:26:31 +03004523 hub_set_initial_usb2_lpm_policy(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004524fail:
Alan Stern4326ed02007-07-30 17:08:43 -04004525 if (retval) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004526 hub_port_disable(hub, port1, 0);
Alan Stern3b29b682011-02-22 09:53:41 -05004527 update_devnum(udev, devnum); /* for disconnect processing */
Alan Stern4326ed02007-07-30 17:08:43 -04004528 }
Todd E Brandt6fecd4f2014-05-19 10:55:32 -07004529 mutex_unlock(&hdev->bus->usb_address0_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004530 return retval;
4531}
4532
4533static void
4534check_highspeed (struct usb_hub *hub, struct usb_device *udev, int port1)
4535{
4536 struct usb_qualifier_descriptor *qual;
4537 int status;
4538
Christoph Lametere94b1762006-12-06 20:33:17 -08004539 qual = kmalloc (sizeof *qual, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004540 if (qual == NULL)
4541 return;
4542
4543 status = usb_get_descriptor (udev, USB_DT_DEVICE_QUALIFIER, 0,
4544 qual, sizeof *qual);
4545 if (status == sizeof *qual) {
4546 dev_info(&udev->dev, "not running at top speed; "
4547 "connect to a high speed hub\n");
4548 /* hub LEDs are probably harder to miss than syslog */
4549 if (hub->has_indicators) {
4550 hub->indicator[port1-1] = INDICATOR_GREEN_BLINK;
Shaibal Dutta22f6a0f2014-02-01 19:16:46 -08004551 queue_delayed_work(system_power_efficient_wq,
4552 &hub->leds, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004553 }
4554 }
Jesper Juhl1bc3c9e2005-04-18 17:39:34 -07004555 kfree(qual);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004556}
4557
4558static unsigned
4559hub_power_remaining (struct usb_hub *hub)
4560{
4561 struct usb_device *hdev = hub->hdev;
4562 int remaining;
Alan Stern55c52712005-11-23 12:03:12 -05004563 int port1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004564
Alan Stern55c52712005-11-23 12:03:12 -05004565 if (!hub->limited_power)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004566 return 0;
4567
Alan Stern55c52712005-11-23 12:03:12 -05004568 remaining = hdev->bus_mA - hub->descriptor->bHubContrCurrent;
4569 for (port1 = 1; port1 <= hdev->maxchild; ++port1) {
Dan Williamsd99f6b42014-05-20 18:08:17 -07004570 struct usb_port *port_dev = hub->ports[port1 - 1];
4571 struct usb_device *udev = port_dev->child;
4572 unsigned unit_load;
4573 int delta;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004574
4575 if (!udev)
4576 continue;
Sebastian Andrzej Siewior430ee582012-12-18 15:25:47 +01004577 if (hub_is_superspeed(udev))
4578 unit_load = 150;
4579 else
4580 unit_load = 100;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004581
Sebastian Andrzej Siewior430ee582012-12-18 15:25:47 +01004582 /*
4583 * Unconfigured devices may not use more than one unit load,
4584 * or 8mA for OTG ports
4585 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004586 if (udev->actconfig)
Sebastian Andrzej Siewior8d8479d2012-12-18 15:25:46 +01004587 delta = usb_get_max_power(udev, udev->actconfig);
Alan Stern55c52712005-11-23 12:03:12 -05004588 else if (port1 != udev->bus->otg_port || hdev->parent)
Sebastian Andrzej Siewior430ee582012-12-18 15:25:47 +01004589 delta = unit_load;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004590 else
Alan Stern55c52712005-11-23 12:03:12 -05004591 delta = 8;
4592 if (delta > hub->mA_per_port)
Dan Williamsd99f6b42014-05-20 18:08:17 -07004593 dev_warn(&port_dev->dev, "%dmA is over %umA budget!\n",
4594 delta, hub->mA_per_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004595 remaining -= delta;
4596 }
4597 if (remaining < 0) {
Alan Stern55c52712005-11-23 12:03:12 -05004598 dev_warn(hub->intfdev, "%dmA over power budget!\n",
Matthias Beyer469271f2013-10-10 23:41:27 +02004599 -remaining);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004600 remaining = 0;
4601 }
4602 return remaining;
4603}
4604
Dan Williamsaf376a42014-05-20 18:09:15 -07004605static void hub_port_connect(struct usb_hub *hub, int port1, u16 portstatus,
4606 u16 portchange)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004607{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004608 int status, i;
Sebastian Andrzej Siewior430ee582012-12-18 15:25:47 +01004609 unsigned unit_load;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004610 struct usb_device *hdev = hub->hdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004611 struct usb_hcd *hcd = bus_to_hcd(hdev->bus);
Dan Williamsd99f6b42014-05-20 18:08:17 -07004612 struct usb_port *port_dev = hub->ports[port1 - 1];
Dan Williamsaf376a42014-05-20 18:09:15 -07004613 struct usb_device *udev = port_dev->child;
Oliver Neukum5ee0f802014-07-14 15:39:49 +02004614 static int unreliable_port = -1;
Alan Stern8808f002008-04-28 11:06:55 -04004615
Alan Stern24618b02008-04-28 11:06:28 -04004616 /* Disconnect any existing devices under this port */
Peter Chenb76baa82012-11-09 09:44:43 +08004617 if (udev) {
4618 if (hcd->phy && !hdev->parent &&
4619 !(portstatus & USB_PORT_STAT_CONNECTION))
Peter Chenac965112012-11-09 09:44:44 +08004620 usb_phy_notify_disconnect(hcd->phy, udev->speed);
Dan Williamsd99f6b42014-05-20 18:08:17 -07004621 usb_disconnect(&port_dev->child);
Peter Chenb76baa82012-11-09 09:44:43 +08004622 }
Alan Stern24618b02008-04-28 11:06:28 -04004623
Alan Stern253e0572009-10-27 15:20:13 -04004624 /* We can forget about a "removed" device when there's a physical
4625 * disconnect or the connect status changes.
4626 */
4627 if (!(portstatus & USB_PORT_STAT_CONNECTION) ||
4628 (portchange & USB_PORT_STAT_C_CONNECTION))
4629 clear_bit(port1, hub->removed_bits);
4630
Alan Stern5257d972008-09-22 14:43:08 -04004631 if (portchange & (USB_PORT_STAT_C_CONNECTION |
4632 USB_PORT_STAT_C_ENABLE)) {
Lan Tianyuad493e52013-01-23 04:26:30 +08004633 status = hub_port_debounce_be_stable(hub, port1);
Alan Stern5257d972008-09-22 14:43:08 -04004634 if (status < 0) {
Oliver Neukum5ee0f802014-07-14 15:39:49 +02004635 if (status != -ENODEV &&
4636 port1 != unreliable_port &&
4637 printk_ratelimit())
Takashi Iwaidd5f5002014-08-19 17:37:55 +02004638 dev_err(&port_dev->dev, "connect-debounce failed\n");
Alan Stern5257d972008-09-22 14:43:08 -04004639 portstatus &= ~USB_PORT_STAT_CONNECTION;
Oliver Neukum5ee0f802014-07-14 15:39:49 +02004640 unreliable_port = port1;
Alan Stern5257d972008-09-22 14:43:08 -04004641 } else {
4642 portstatus = status;
4643 }
4644 }
4645
Alan Stern253e0572009-10-27 15:20:13 -04004646 /* Return now if debouncing failed or nothing is connected or
4647 * the device was "removed".
4648 */
4649 if (!(portstatus & USB_PORT_STAT_CONNECTION) ||
4650 test_bit(port1, hub->removed_bits)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004651
4652 /* maybe switch power back on (e.g. root hub was reset) */
Dan Williams9262c192014-05-20 18:08:12 -07004653 if (hub_is_port_power_switchable(hub)
Andiry Xu0ed9a572011-04-27 18:07:43 +08004654 && !port_is_power_on(hub, portstatus))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004655 set_port_feature(hdev, port1, USB_PORT_FEAT_POWER);
Alan Stern5257d972008-09-22 14:43:08 -04004656
Linus Torvalds1da177e2005-04-16 15:20:36 -07004657 if (portstatus & USB_PORT_STAT_ENABLE)
Matthias Beyer469271f2013-10-10 23:41:27 +02004658 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004659 return;
4660 }
Sebastian Andrzej Siewior430ee582012-12-18 15:25:47 +01004661 if (hub_is_superspeed(hub->hdev))
4662 unit_load = 150;
4663 else
4664 unit_load = 100;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004665
Alan Sterne9e88fb2013-03-27 16:14:01 -04004666 status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004667 for (i = 0; i < SET_CONFIG_TRIES; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004668
4669 /* reallocate for each attempt, since references
4670 * to the previous one can escape in various ways
4671 */
4672 udev = usb_alloc_dev(hdev, hdev->bus, port1);
4673 if (!udev) {
Dan Williamsd99f6b42014-05-20 18:08:17 -07004674 dev_err(&port_dev->dev,
4675 "couldn't allocate usb_device\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004676 goto done;
4677 }
4678
4679 usb_set_device_state(udev, USB_STATE_POWERED);
Matthias Beyer469271f2013-10-10 23:41:27 +02004680 udev->bus_mA = hub->mA_per_port;
Alan Sternb6956ff2006-08-30 15:46:48 -04004681 udev->level = hdev->level + 1;
Inaky Perez-Gonzalez8af548d2008-04-08 13:24:46 -07004682 udev->wusb = hub_is_wusb(hub);
Alan Stern55c52712005-11-23 12:03:12 -05004683
Sarah Sharp131dec32010-12-06 21:00:19 -08004684 /* Only USB 3.0 devices are connected to SuperSpeed hubs. */
4685 if (hub_is_superspeed(hub->hdev))
Sarah Sharpe7b77172009-04-27 19:54:26 -07004686 udev->speed = USB_SPEED_SUPER;
4687 else
4688 udev->speed = USB_SPEED_UNKNOWN;
4689
Alan Stern3b29b682011-02-22 09:53:41 -05004690 choose_devnum(udev);
Andiry Xuc8d4af82010-10-14 07:22:51 -07004691 if (udev->devnum <= 0) {
4692 status = -ENOTCONN; /* Don't retry */
4693 goto loop;
Sarah Sharpc6515272009-04-27 19:57:26 -07004694 }
4695
Sarah Sharpe7b77172009-04-27 19:54:26 -07004696 /* reset (non-USB 3.0 devices) and get descriptor */
Dan Williams5c79a1e2014-05-20 18:09:26 -07004697 usb_lock_port(port_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004698 status = hub_port_init(hub, udev, port1, i);
Dan Williams5c79a1e2014-05-20 18:09:26 -07004699 usb_unlock_port(port_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004700 if (status < 0)
4701 goto loop;
4702
Phil Dibowitz93362a82010-07-22 00:05:01 +02004703 usb_detect_quirks(udev);
4704 if (udev->quirks & USB_QUIRK_DELAY_INIT)
4705 msleep(1000);
4706
Linus Torvalds1da177e2005-04-16 15:20:36 -07004707 /* consecutive bus-powered hubs aren't reliable; they can
4708 * violate the voltage drop budget. if the new child has
4709 * a "powered" LED, users should notice we didn't enable it
4710 * (without reading syslog), even without per-port LEDs
4711 * on the parent.
4712 */
4713 if (udev->descriptor.bDeviceClass == USB_CLASS_HUB
Sebastian Andrzej Siewior430ee582012-12-18 15:25:47 +01004714 && udev->bus_mA <= unit_load) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004715 u16 devstat;
4716
4717 status = usb_get_status(udev, USB_RECIP_DEVICE, 0,
4718 &devstat);
Alan Stern15b73362013-07-30 15:35:40 -04004719 if (status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004720 dev_dbg(&udev->dev, "get status %d ?\n", status);
4721 goto loop_disable;
4722 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004723 if ((devstat & (1 << USB_DEVICE_SELF_POWERED)) == 0) {
4724 dev_err(&udev->dev,
4725 "can't connect bus-powered hub "
4726 "to this port\n");
4727 if (hub->has_indicators) {
4728 hub->indicator[port1-1] =
4729 INDICATOR_AMBER_BLINK;
Shaibal Dutta22f6a0f2014-02-01 19:16:46 -08004730 queue_delayed_work(
4731 system_power_efficient_wq,
4732 &hub->leds, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004733 }
4734 status = -ENOTCONN; /* Don't retry */
4735 goto loop_disable;
4736 }
4737 }
Matthias Beyer469271f2013-10-10 23:41:27 +02004738
Linus Torvalds1da177e2005-04-16 15:20:36 -07004739 /* check for devices running slower than they could */
4740 if (le16_to_cpu(udev->descriptor.bcdUSB) >= 0x0200
4741 && udev->speed == USB_SPEED_FULL
4742 && highspeed_hubs != 0)
4743 check_highspeed (hub, udev, port1);
4744
Greg Kroah-Hartmanfa286182012-05-14 09:20:37 -07004745 /* Store the parent's children[] pointer. At this point
Linus Torvalds1da177e2005-04-16 15:20:36 -07004746 * udev becomes globally accessible, although presumably
4747 * no one will look at it until hdev is unlocked.
4748 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004749 status = 0;
4750
Dan Williamsd8521af2014-05-20 18:08:28 -07004751 mutex_lock(&usb_port_peer_mutex);
4752
Linus Torvalds1da177e2005-04-16 15:20:36 -07004753 /* We mustn't add new devices if the parent hub has
4754 * been disconnected; we would race with the
4755 * recursively_mark_NOTATTACHED() routine.
4756 */
4757 spin_lock_irq(&device_state_lock);
4758 if (hdev->state == USB_STATE_NOTATTACHED)
4759 status = -ENOTCONN;
4760 else
Dan Williamsd99f6b42014-05-20 18:08:17 -07004761 port_dev->child = udev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004762 spin_unlock_irq(&device_state_lock);
Dan Williamsd8521af2014-05-20 18:08:28 -07004763 mutex_unlock(&usb_port_peer_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004764
4765 /* Run it through the hoops (find a driver, etc) */
4766 if (!status) {
4767 status = usb_new_device(udev);
4768 if (status) {
Dan Williamsd8521af2014-05-20 18:08:28 -07004769 mutex_lock(&usb_port_peer_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004770 spin_lock_irq(&device_state_lock);
Dan Williamsd99f6b42014-05-20 18:08:17 -07004771 port_dev->child = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004772 spin_unlock_irq(&device_state_lock);
Dan Williamsd8521af2014-05-20 18:08:28 -07004773 mutex_unlock(&usb_port_peer_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004774 }
4775 }
4776
Linus Torvalds1da177e2005-04-16 15:20:36 -07004777 if (status)
4778 goto loop_disable;
4779
4780 status = hub_power_remaining(hub);
4781 if (status)
Dan Williamsd99f6b42014-05-20 18:08:17 -07004782 dev_dbg(hub->intfdev, "%dmA power budget left\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004783
4784 return;
4785
4786loop_disable:
4787 hub_port_disable(hub, port1, 1);
4788loop:
Inaky Perez-Gonzalezfc721f52008-04-08 13:24:46 -07004789 usb_ep0_reinit(udev);
Alan Stern3b29b682011-02-22 09:53:41 -05004790 release_devnum(udev);
Herbert Xuf7410ce2010-01-10 20:15:03 +11004791 hub_free_dev(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004792 usb_put_dev(udev);
Vikram Panditaffcdc182007-05-25 21:31:07 -07004793 if ((status == -ENOTCONN) || (status == -ENOTSUPP))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004794 break;
4795 }
Alan Stern3a311552008-05-20 16:58:29 -04004796 if (hub->hdev->parent ||
4797 !hcd->driver->port_handed_over ||
Alan Sterne9e88fb2013-03-27 16:14:01 -04004798 !(hcd->driver->port_handed_over)(hcd, port1)) {
4799 if (status != -ENOTCONN && status != -ENODEV)
Dan Williamsd99f6b42014-05-20 18:08:17 -07004800 dev_err(&port_dev->dev,
4801 "unable to enumerate USB device\n");
Alan Sterne9e88fb2013-03-27 16:14:01 -04004802 }
Matthias Beyer469271f2013-10-10 23:41:27 +02004803
Linus Torvalds1da177e2005-04-16 15:20:36 -07004804done:
4805 hub_port_disable(hub, port1, 1);
Balaji Rao90da0962007-11-22 01:58:14 +05304806 if (hcd->driver->relinquish_port && !hub->hdev->parent)
4807 hcd->driver->relinquish_port(hcd, port1);
Dan Williamsaf376a42014-05-20 18:09:15 -07004808
Linus Torvalds1da177e2005-04-16 15:20:36 -07004809}
4810
Dan Williamsaf376a42014-05-20 18:09:15 -07004811/* Handle physical or logical connection change events.
4812 * This routine is called when:
4813 * a port connection-change occurs;
4814 * a port enable-change occurs (often caused by EMI);
4815 * usb_reset_and_verify_device() encounters changed descriptors (as from
4816 * a firmware download)
4817 * caller already locked the hub
4818 */
4819static void hub_port_connect_change(struct usb_hub *hub, int port1,
4820 u16 portstatus, u16 portchange)
Dan Williams5c79a1e2014-05-20 18:09:26 -07004821 __must_hold(&port_dev->status_lock)
Sarah Sharp714b07b2012-01-24 13:53:18 -08004822{
Dan Williamsaf376a42014-05-20 18:09:15 -07004823 struct usb_port *port_dev = hub->ports[port1 - 1];
4824 struct usb_device *udev = port_dev->child;
4825 int status = -ENODEV;
Sarah Sharp714b07b2012-01-24 13:53:18 -08004826
Dan Williamsaf376a42014-05-20 18:09:15 -07004827 dev_dbg(&port_dev->dev, "status %04x, change %04x, %s\n", portstatus,
4828 portchange, portspeed(hub, portstatus));
4829
4830 if (hub->has_indicators) {
4831 set_port_led(hub, port1, HUB_LED_AUTO);
4832 hub->indicator[port1-1] = INDICATOR_AUTO;
Sarah Sharp4ee823b2011-11-14 18:00:01 -08004833 }
4834
Dan Williamsaf376a42014-05-20 18:09:15 -07004835#ifdef CONFIG_USB_OTG
4836 /* during HNP, don't repeat the debounce */
4837 if (hub->hdev->bus->is_b_host)
4838 portchange &= ~(USB_PORT_STAT_C_CONNECTION |
4839 USB_PORT_STAT_C_ENABLE);
4840#endif
Sarah Sharp714b07b2012-01-24 13:53:18 -08004841
Dan Williamsaf376a42014-05-20 18:09:15 -07004842 /* Try to resuscitate an existing device */
4843 if ((portstatus & USB_PORT_STAT_CONNECTION) && udev &&
4844 udev->state != USB_STATE_NOTATTACHED) {
4845 if (portstatus & USB_PORT_STAT_ENABLE) {
4846 status = 0; /* Nothing to do */
4847#ifdef CONFIG_PM_RUNTIME
4848 } else if (udev->state == USB_STATE_SUSPENDED &&
4849 udev->persist_enabled) {
4850 /* For a suspended device, treat this as a
4851 * remote wakeup event.
4852 */
Dan Williams5c79a1e2014-05-20 18:09:26 -07004853 usb_unlock_port(port_dev);
Dan Williamsaf376a42014-05-20 18:09:15 -07004854 status = usb_remote_wakeup(udev);
Dan Williams5c79a1e2014-05-20 18:09:26 -07004855 usb_lock_port(port_dev);
Dan Williamsaf376a42014-05-20 18:09:15 -07004856#endif
4857 } else {
4858 /* Don't resuscitate */;
4859 }
Sarah Sharp714b07b2012-01-24 13:53:18 -08004860 }
Dan Williamsaf376a42014-05-20 18:09:15 -07004861 clear_bit(port1, hub->change_bits);
4862
Dan Williams5c79a1e2014-05-20 18:09:26 -07004863 /* successfully revalidated the connection */
Dan Williamsaf376a42014-05-20 18:09:15 -07004864 if (status == 0)
4865 return;
4866
Dan Williams5c79a1e2014-05-20 18:09:26 -07004867 usb_unlock_port(port_dev);
Dan Williamsaf376a42014-05-20 18:09:15 -07004868 hub_port_connect(hub, port1, portstatus, portchange);
Dan Williams5c79a1e2014-05-20 18:09:26 -07004869 usb_lock_port(port_dev);
Sarah Sharp714b07b2012-01-24 13:53:18 -08004870}
4871
Dan Williamsaf376a42014-05-20 18:09:15 -07004872static void port_event(struct usb_hub *hub, int port1)
Dan Williams5c79a1e2014-05-20 18:09:26 -07004873 __must_hold(&port_dev->status_lock)
Dan Williamsaf376a42014-05-20 18:09:15 -07004874{
4875 int connect_change, reset_device = 0;
4876 struct usb_port *port_dev = hub->ports[port1 - 1];
4877 struct usb_device *udev = port_dev->child;
4878 struct usb_device *hdev = hub->hdev;
4879 u16 portstatus, portchange;
4880
4881 connect_change = test_bit(port1, hub->change_bits);
4882 clear_bit(port1, hub->event_bits);
4883 clear_bit(port1, hub->wakeup_bits);
4884
4885 if (hub_port_status(hub, port1, &portstatus, &portchange) < 0)
4886 return;
4887
4888 if (portchange & USB_PORT_STAT_C_CONNECTION) {
4889 usb_clear_port_feature(hdev, port1, USB_PORT_FEAT_C_CONNECTION);
4890 connect_change = 1;
4891 }
4892
4893 if (portchange & USB_PORT_STAT_C_ENABLE) {
4894 if (!connect_change)
4895 dev_dbg(&port_dev->dev, "enable change, status %08x\n",
4896 portstatus);
4897 usb_clear_port_feature(hdev, port1, USB_PORT_FEAT_C_ENABLE);
4898
4899 /*
4900 * EM interference sometimes causes badly shielded USB devices
4901 * to be shutdown by the hub, this hack enables them again.
4902 * Works at least with mouse driver.
4903 */
4904 if (!(portstatus & USB_PORT_STAT_ENABLE)
4905 && !connect_change && udev) {
4906 dev_err(&port_dev->dev, "disabled by hub (EMI?), re-enabling...\n");
4907 connect_change = 1;
4908 }
4909 }
4910
4911 if (portchange & USB_PORT_STAT_C_OVERCURRENT) {
4912 u16 status = 0, unused;
4913
4914 dev_dbg(&port_dev->dev, "over-current change\n");
4915 usb_clear_port_feature(hdev, port1,
4916 USB_PORT_FEAT_C_OVER_CURRENT);
4917 msleep(100); /* Cool down */
4918 hub_power_on(hub, true);
4919 hub_port_status(hub, port1, &status, &unused);
4920 if (status & USB_PORT_STAT_OVERCURRENT)
4921 dev_err(&port_dev->dev, "over-current condition\n");
4922 }
4923
4924 if (portchange & USB_PORT_STAT_C_RESET) {
4925 dev_dbg(&port_dev->dev, "reset change\n");
4926 usb_clear_port_feature(hdev, port1, USB_PORT_FEAT_C_RESET);
4927 }
4928 if ((portchange & USB_PORT_STAT_C_BH_RESET)
4929 && hub_is_superspeed(hdev)) {
4930 dev_dbg(&port_dev->dev, "warm reset change\n");
4931 usb_clear_port_feature(hdev, port1,
4932 USB_PORT_FEAT_C_BH_PORT_RESET);
4933 }
4934 if (portchange & USB_PORT_STAT_C_LINK_STATE) {
4935 dev_dbg(&port_dev->dev, "link state change\n");
4936 usb_clear_port_feature(hdev, port1,
4937 USB_PORT_FEAT_C_PORT_LINK_STATE);
4938 }
4939 if (portchange & USB_PORT_STAT_C_CONFIG_ERROR) {
4940 dev_warn(&port_dev->dev, "config error\n");
4941 usb_clear_port_feature(hdev, port1,
4942 USB_PORT_FEAT_C_PORT_CONFIG_ERROR);
4943 }
4944
Dan Williams097a1552014-05-20 18:09:20 -07004945 /* skip port actions that require the port to be powered on */
4946 if (!pm_runtime_active(&port_dev->dev))
4947 return;
4948
Dan Williamsaf376a42014-05-20 18:09:15 -07004949 if (hub_handle_remote_wakeup(hub, port1, portstatus, portchange))
4950 connect_change = 1;
4951
4952 /*
4953 * Warm reset a USB3 protocol port if it's in
4954 * SS.Inactive state.
4955 */
Dan Williams3cd12f92014-05-29 12:58:46 -07004956 if (hub_port_warm_reset_required(hub, port1, portstatus)) {
Dan Williamsaf376a42014-05-20 18:09:15 -07004957 dev_dbg(&port_dev->dev, "do warm reset\n");
4958 if (!udev || !(portstatus & USB_PORT_STAT_CONNECTION)
4959 || udev->state == USB_STATE_NOTATTACHED) {
4960 if (hub_port_reset(hub, port1, NULL,
4961 HUB_BH_RESET_TIME, true) < 0)
4962 hub_port_disable(hub, port1, 1);
4963 } else
4964 reset_device = 1;
4965 }
4966
4967 /*
4968 * On disconnect USB3 protocol ports transit from U0 to
4969 * SS.Inactive to Rx.Detect. If this happens a warm-
4970 * reset is not needed, but a (re)connect may happen
4971 * before khubd runs and sees the disconnect, and the
4972 * device may be an unknown state.
4973 *
4974 * If the port went through SS.Inactive without khubd
4975 * seeing it the C_LINK_STATE change flag will be set,
4976 * and we reset the dev to put it in a known state.
4977 */
4978 if (reset_device || (udev && hub_is_superspeed(hub->hdev)
4979 && (portchange & USB_PORT_STAT_C_LINK_STATE)
4980 && (portstatus & USB_PORT_STAT_CONNECTION))) {
Dan Williams5c79a1e2014-05-20 18:09:26 -07004981 usb_unlock_port(port_dev);
Dan Williamsaf376a42014-05-20 18:09:15 -07004982 usb_lock_device(udev);
4983 usb_reset_device(udev);
4984 usb_unlock_device(udev);
Dan Williams5c79a1e2014-05-20 18:09:26 -07004985 usb_lock_port(port_dev);
Dan Williamsaf376a42014-05-20 18:09:15 -07004986 connect_change = 0;
4987 }
4988
4989 if (connect_change)
4990 hub_port_connect_change(hub, port1, portstatus, portchange);
4991}
4992
4993
Linus Torvalds1da177e2005-04-16 15:20:36 -07004994static void hub_events(void)
4995{
4996 struct list_head *tmp;
4997 struct usb_device *hdev;
4998 struct usb_interface *intf;
4999 struct usb_hub *hub;
5000 struct device *hub_dev;
5001 u16 hubstatus;
5002 u16 hubchange;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005003 int i, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005004
5005 /*
5006 * We restart the list every time to avoid a deadlock with
5007 * deleting hubs downstream from this one. This should be
5008 * safe since we delete the hub from the event list.
5009 * Not the most efficient, but avoids deadlocks.
5010 */
5011 while (1) {
5012
5013 /* Grab the first entry at the beginning of the list */
5014 spin_lock_irq(&hub_event_lock);
5015 if (list_empty(&hub_event_list)) {
5016 spin_unlock_irq(&hub_event_lock);
5017 break;
5018 }
5019
5020 tmp = hub_event_list.next;
5021 list_del_init(tmp);
5022
5023 hub = list_entry(tmp, struct usb_hub, event_list);
Alan Sterne8054852007-05-04 11:55:11 -04005024 kref_get(&hub->kref);
5025 spin_unlock_irq(&hub_event_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005026
Alan Sterne8054852007-05-04 11:55:11 -04005027 hdev = hub->hdev;
5028 hub_dev = hub->intfdev;
5029 intf = to_usb_interface(hub_dev);
Alan Stern40f122f2006-11-09 14:44:33 -05005030 dev_dbg(hub_dev, "state %d ports %d chg %04x evt %04x\n",
Krzysztof Mazur3bbc47d2013-08-22 14:49:40 +02005031 hdev->state, hdev->maxchild,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005032 /* NOTE: expects max 15 ports... */
5033 (u16) hub->change_bits[0],
Alan Stern40f122f2006-11-09 14:44:33 -05005034 (u16) hub->event_bits[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005035
Linus Torvalds1da177e2005-04-16 15:20:36 -07005036 /* Lock the device, then check to see if we were
5037 * disconnected while waiting for the lock to succeed. */
Alan Stern06b84e82007-05-04 11:54:50 -04005038 usb_lock_device(hdev);
Alan Sterne8054852007-05-04 11:55:11 -04005039 if (unlikely(hub->disconnected))
Alan Stern9bbdf1e2010-01-08 12:57:28 -05005040 goto loop_disconnected;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005041
5042 /* If the hub has died, clean up after it */
5043 if (hdev->state == USB_STATE_NOTATTACHED) {
Alan Stern7de18d82006-06-01 13:37:24 -04005044 hub->error = -ENODEV;
Alan Stern43303542008-04-28 11:07:31 -04005045 hub_quiesce(hub, HUB_DISCONNECT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005046 goto loop;
5047 }
5048
Alan Stern40f122f2006-11-09 14:44:33 -05005049 /* Autoresume */
5050 ret = usb_autopm_get_interface(intf);
5051 if (ret) {
5052 dev_dbg(hub_dev, "Can't autoresume: %d\n", ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005053 goto loop;
Alan Stern40f122f2006-11-09 14:44:33 -05005054 }
5055
5056 /* If this is an inactive hub, do nothing */
5057 if (hub->quiescing)
5058 goto loop_autopm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005059
5060 if (hub->error) {
5061 dev_dbg (hub_dev, "resetting for error %d\n",
5062 hub->error);
5063
Ming Lei742120c2008-06-18 22:00:29 +08005064 ret = usb_reset_device(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005065 if (ret) {
5066 dev_dbg (hub_dev,
5067 "error resetting hub: %d\n", ret);
Alan Stern40f122f2006-11-09 14:44:33 -05005068 goto loop_autopm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005069 }
5070
5071 hub->nerrors = 0;
5072 hub->error = 0;
5073 }
5074
5075 /* deal with port status changes */
Krzysztof Mazur3bbc47d2013-08-22 14:49:40 +02005076 for (i = 1; i <= hdev->maxchild; i++) {
Dan Williams097a1552014-05-20 18:09:20 -07005077 struct usb_port *port_dev = hub->ports[i - 1];
Hans de Goedea82b76f2013-11-08 13:41:05 +01005078
Dan Williams5c79a1e2014-05-20 18:09:26 -07005079 if (test_bit(i, hub->event_bits)
5080 || test_bit(i, hub->change_bits)
5081 || test_bit(i, hub->wakeup_bits)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005082 /*
Dan Williams097a1552014-05-20 18:09:20 -07005083 * The get_noresume and barrier ensure that if
5084 * the port was in the process of resuming, we
5085 * flush that work and keep the port active for
5086 * the duration of the port_event(). However,
5087 * if the port is runtime pm suspended
5088 * (powered-off), we leave it in that state, run
5089 * an abbreviated port_event(), and move on.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005090 */
Dan Williams097a1552014-05-20 18:09:20 -07005091 pm_runtime_get_noresume(&port_dev->dev);
5092 pm_runtime_barrier(&port_dev->dev);
Dan Williams5c79a1e2014-05-20 18:09:26 -07005093 usb_lock_port(port_dev);
Dan Williamsaf376a42014-05-20 18:09:15 -07005094 port_event(hub, i);
Dan Williams5c79a1e2014-05-20 18:09:26 -07005095 usb_unlock_port(port_dev);
Dan Williams097a1552014-05-20 18:09:20 -07005096 pm_runtime_put_sync(&port_dev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005097 }
Dan Williamsaf376a42014-05-20 18:09:15 -07005098 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005099
5100 /* deal with hub status changes */
5101 if (test_and_clear_bit(0, hub->event_bits) == 0)
5102 ; /* do nothing */
5103 else if (hub_hub_status(hub, &hubstatus, &hubchange) < 0)
5104 dev_err (hub_dev, "get_hub_status failed\n");
5105 else {
5106 if (hubchange & HUB_CHANGE_LOCAL_POWER) {
5107 dev_dbg (hub_dev, "power change\n");
5108 clear_hub_feature(hdev, C_HUB_LOCAL_POWER);
Alan Stern55c52712005-11-23 12:03:12 -05005109 if (hubstatus & HUB_STATUS_LOCAL_POWER)
5110 /* FIXME: Is this always true? */
Alan Stern55c52712005-11-23 12:03:12 -05005111 hub->limited_power = 1;
jidong xiao403fae72007-09-14 00:08:51 +08005112 else
5113 hub->limited_power = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005114 }
5115 if (hubchange & HUB_CHANGE_OVERCURRENT) {
Paul Bolle752d57a2011-03-11 18:03:52 +01005116 u16 status = 0;
5117 u16 unused;
5118
5119 dev_dbg(hub_dev, "over-current change\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005120 clear_hub_feature(hdev, C_HUB_OVER_CURRENT);
Paul Bolle752d57a2011-03-11 18:03:52 +01005121 msleep(500); /* Cool down */
Matthias Beyer469271f2013-10-10 23:41:27 +02005122 hub_power_on(hub, true);
Paul Bolle752d57a2011-03-11 18:03:52 +01005123 hub_hub_status(hub, &status, &unused);
5124 if (status & HUB_STATUS_OVERCURRENT)
5125 dev_err(hub_dev, "over-current "
5126 "condition\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005127 }
5128 }
5129
Alan Stern8e4ceb32009-12-07 13:01:37 -05005130 loop_autopm:
5131 /* Balance the usb_autopm_get_interface() above */
5132 usb_autopm_put_interface_no_suspend(intf);
5133 loop:
5134 /* Balance the usb_autopm_get_interface_no_resume() in
5135 * kick_khubd() and allow autosuspend.
5136 */
5137 usb_autopm_put_interface(intf);
Alan Stern9bbdf1e2010-01-08 12:57:28 -05005138 loop_disconnected:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005139 usb_unlock_device(hdev);
Alan Sterne8054852007-05-04 11:55:11 -04005140 kref_put(&hub->kref, hub_release);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005141
Matthias Beyer469271f2013-10-10 23:41:27 +02005142 } /* end while (1) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005143}
5144
5145static int hub_thread(void *__unused)
5146{
Rahul Bedarkar025d4432014-01-04 11:24:41 +05305147 /* khubd needs to be freezable to avoid interfering with USB-PERSIST
Alan Stern3bb1af52008-03-03 15:15:36 -05005148 * port handover. Otherwise it might see that a full-speed device
5149 * was gone before the EHCI controller had handed its port over to
5150 * the companion full-speed controller.
5151 */
Rafael J. Wysocki83144182007-07-17 04:03:35 -07005152 set_freezable();
Alan Stern3bb1af52008-03-03 15:15:36 -05005153
Linus Torvalds1da177e2005-04-16 15:20:36 -07005154 do {
5155 hub_events();
Rafael J. Wysockie42837b2007-10-18 03:04:45 -07005156 wait_event_freezable(khubd_wait,
akpm@osdl.org9c8d6172005-06-20 14:29:58 -07005157 !list_empty(&hub_event_list) ||
5158 kthread_should_stop());
akpm@osdl.org9c8d6172005-06-20 14:29:58 -07005159 } while (!kthread_should_stop() || !list_empty(&hub_event_list));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005160
akpm@osdl.org9c8d6172005-06-20 14:29:58 -07005161 pr_debug("%s: khubd exiting\n", usbcore_name);
5162 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005163}
5164
Németh Márton1e927d92010-01-10 15:34:53 +01005165static const struct usb_device_id hub_id_table[] = {
Ming Leie6f30de2012-10-24 11:59:24 +08005166 { .match_flags = USB_DEVICE_ID_MATCH_VENDOR
Matthias Beyer469271f2013-10-10 23:41:27 +02005167 | USB_DEVICE_ID_MATCH_INT_CLASS,
Ming Leie6f30de2012-10-24 11:59:24 +08005168 .idVendor = USB_VENDOR_GENESYS_LOGIC,
5169 .bInterfaceClass = USB_CLASS_HUB,
5170 .driver_info = HUB_QUIRK_CHECK_PORT_AUTOSUSPEND},
Linus Torvalds1da177e2005-04-16 15:20:36 -07005171 { .match_flags = USB_DEVICE_ID_MATCH_DEV_CLASS,
5172 .bDeviceClass = USB_CLASS_HUB},
5173 { .match_flags = USB_DEVICE_ID_MATCH_INT_CLASS,
5174 .bInterfaceClass = USB_CLASS_HUB},
5175 { } /* Terminating entry */
5176};
5177
5178MODULE_DEVICE_TABLE (usb, hub_id_table);
5179
5180static struct usb_driver hub_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005181 .name = "hub",
5182 .probe = hub_probe,
5183 .disconnect = hub_disconnect,
5184 .suspend = hub_suspend,
5185 .resume = hub_resume,
Alan Sternf07600c2007-05-30 15:38:16 -04005186 .reset_resume = hub_reset_resume,
Alan Stern7de18d82006-06-01 13:37:24 -04005187 .pre_reset = hub_pre_reset,
5188 .post_reset = hub_post_reset,
Andi Kleenc532b292010-06-01 23:04:41 +02005189 .unlocked_ioctl = hub_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005190 .id_table = hub_id_table,
Alan Stern40f122f2006-11-09 14:44:33 -05005191 .supports_autosuspend = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005192};
5193
5194int usb_hub_init(void)
5195{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005196 if (usb_register(&hub_driver) < 0) {
5197 printk(KERN_ERR "%s: can't register hub driver\n",
5198 usbcore_name);
5199 return -1;
5200 }
5201
akpm@osdl.org9c8d6172005-06-20 14:29:58 -07005202 khubd_task = kthread_run(hub_thread, NULL, "khubd");
5203 if (!IS_ERR(khubd_task))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005204 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005205
5206 /* Fall through if kernel_thread failed */
5207 usb_deregister(&hub_driver);
5208 printk(KERN_ERR "%s: can't start khubd\n", usbcore_name);
5209
5210 return -1;
5211}
5212
5213void usb_hub_cleanup(void)
5214{
akpm@osdl.org9c8d6172005-06-20 14:29:58 -07005215 kthread_stop(khubd_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005216
5217 /*
5218 * Hub resources are freed for us by usb_deregister. It calls
5219 * usb_driver_purge on every device which in turn calls that
5220 * devices disconnect function if it is using this driver.
5221 * The hub_disconnect function takes care of releasing the
5222 * individual hub resources. -greg
5223 */
5224 usb_deregister(&hub_driver);
5225} /* usb_hub_cleanup() */
5226
Alan Sterneb764c42008-03-03 15:16:04 -05005227static int descriptors_changed(struct usb_device *udev,
Xenia Ragiadakoue3376d62013-08-29 21:45:48 +03005228 struct usb_device_descriptor *old_device_descriptor,
5229 struct usb_host_bos *old_bos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005230{
Alan Sterneb764c42008-03-03 15:16:04 -05005231 int changed = 0;
5232 unsigned index;
5233 unsigned serial_len = 0;
5234 unsigned len;
5235 unsigned old_length;
5236 int length;
5237 char *buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005238
Alan Sterneb764c42008-03-03 15:16:04 -05005239 if (memcmp(&udev->descriptor, old_device_descriptor,
5240 sizeof(*old_device_descriptor)) != 0)
5241 return 1;
5242
Xenia Ragiadakoue3376d62013-08-29 21:45:48 +03005243 if ((old_bos && !udev->bos) || (!old_bos && udev->bos))
5244 return 1;
5245 if (udev->bos) {
Xenia Ragiadakoub9a10482013-08-31 04:40:49 +03005246 len = le16_to_cpu(udev->bos->desc->wTotalLength);
5247 if (len != le16_to_cpu(old_bos->desc->wTotalLength))
Xenia Ragiadakoue3376d62013-08-29 21:45:48 +03005248 return 1;
Xenia Ragiadakoub9a10482013-08-31 04:40:49 +03005249 if (memcmp(udev->bos->desc, old_bos->desc, len))
Xenia Ragiadakoue3376d62013-08-29 21:45:48 +03005250 return 1;
5251 }
5252
Alan Sterneb764c42008-03-03 15:16:04 -05005253 /* Since the idVendor, idProduct, and bcdDevice values in the
5254 * device descriptor haven't changed, we will assume the
5255 * Manufacturer and Product strings haven't changed either.
5256 * But the SerialNumber string could be different (e.g., a
5257 * different flash card of the same brand).
5258 */
5259 if (udev->serial)
5260 serial_len = strlen(udev->serial) + 1;
5261
5262 len = serial_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005263 for (index = 0; index < udev->descriptor.bNumConfigurations; index++) {
Alan Sterneb764c42008-03-03 15:16:04 -05005264 old_length = le16_to_cpu(udev->config[index].desc.wTotalLength);
5265 len = max(len, old_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005266 }
Alan Sterneb764c42008-03-03 15:16:04 -05005267
Oliver Neukum0cc1a512008-01-10 10:31:48 +01005268 buf = kmalloc(len, GFP_NOIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005269 if (buf == NULL) {
5270 dev_err(&udev->dev, "no mem to re-read configs after reset\n");
5271 /* assume the worst */
5272 return 1;
5273 }
5274 for (index = 0; index < udev->descriptor.bNumConfigurations; index++) {
Alan Sterneb764c42008-03-03 15:16:04 -05005275 old_length = le16_to_cpu(udev->config[index].desc.wTotalLength);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005276 length = usb_get_descriptor(udev, USB_DT_CONFIG, index, buf,
5277 old_length);
Alan Sterneb764c42008-03-03 15:16:04 -05005278 if (length != old_length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005279 dev_dbg(&udev->dev, "config index %d, error %d\n",
5280 index, length);
Alan Sterneb764c42008-03-03 15:16:04 -05005281 changed = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005282 break;
5283 }
5284 if (memcmp (buf, udev->rawdescriptors[index], old_length)
5285 != 0) {
5286 dev_dbg(&udev->dev, "config index %d changed (#%d)\n",
Alan Sterneb764c42008-03-03 15:16:04 -05005287 index,
5288 ((struct usb_config_descriptor *) buf)->
5289 bConfigurationValue);
5290 changed = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005291 break;
5292 }
5293 }
Alan Sterneb764c42008-03-03 15:16:04 -05005294
5295 if (!changed && serial_len) {
5296 length = usb_string(udev, udev->descriptor.iSerialNumber,
5297 buf, serial_len);
5298 if (length + 1 != serial_len) {
5299 dev_dbg(&udev->dev, "serial string error %d\n",
5300 length);
5301 changed = 1;
5302 } else if (memcmp(buf, udev->serial, length) != 0) {
5303 dev_dbg(&udev->dev, "serial string changed\n");
5304 changed = 1;
5305 }
5306 }
5307
Linus Torvalds1da177e2005-04-16 15:20:36 -07005308 kfree(buf);
Alan Sterneb764c42008-03-03 15:16:04 -05005309 return changed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005310}
5311
5312/**
Ming Lei742120c2008-06-18 22:00:29 +08005313 * usb_reset_and_verify_device - perform a USB port reset to reinitialize a device
Linus Torvalds1da177e2005-04-16 15:20:36 -07005314 * @udev: device to reset (not in SUSPENDED or NOTATTACHED state)
5315 *
Alan Stern79efa092006-06-01 13:33:42 -04005316 * WARNING - don't use this routine to reset a composite device
5317 * (one with multiple interfaces owned by separate drivers)!
Ming Lei742120c2008-06-18 22:00:29 +08005318 * Use usb_reset_device() instead.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005319 *
5320 * Do a port reset, reassign the device's address, and establish its
5321 * former operating configuration. If the reset fails, or the device's
5322 * descriptors change from their values before the reset, or the original
5323 * configuration and altsettings cannot be restored, a flag will be set
5324 * telling khubd to pretend the device has been disconnected and then
5325 * re-connected. All drivers will be unbound, and the device will be
5326 * re-enumerated and probed all over again.
5327 *
Yacine Belkadi626f0902013-08-02 20:10:04 +02005328 * Return: 0 if the reset succeeded, -ENODEV if the device has been
Linus Torvalds1da177e2005-04-16 15:20:36 -07005329 * flagged for logical disconnection, or some other negative error code
5330 * if the reset wasn't even attempted.
5331 *
Yacine Belkadi626f0902013-08-02 20:10:04 +02005332 * Note:
Dan Williams5c79a1e2014-05-20 18:09:26 -07005333 * The caller must own the device lock and the port lock, the latter is
5334 * taken by usb_reset_device(). For example, it's safe to use
5335 * usb_reset_device() from a driver probe() routine after downloading
5336 * new firmware. For calls that might not occur during probe(), drivers
5337 * should lock the device using usb_lock_device_for_reset().
Alan Stern6bc6cff2007-05-04 11:53:03 -04005338 *
5339 * Locking exception: This routine may also be called from within an
5340 * autoresume handler. Such usage won't conflict with other tasks
5341 * holding the device lock because these tasks should always call
Dan Williams5c79a1e2014-05-20 18:09:26 -07005342 * usb_autopm_resume_device(), thereby preventing any unwanted
5343 * autoresume. The autoresume handler is expected to have already
5344 * acquired the port lock before calling this routine.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005345 */
Ming Lei742120c2008-06-18 22:00:29 +08005346static int usb_reset_and_verify_device(struct usb_device *udev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005347{
5348 struct usb_device *parent_hdev = udev->parent;
5349 struct usb_hub *parent_hub;
Sarah Sharp3f0479e2009-12-03 09:44:36 -08005350 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005351 struct usb_device_descriptor descriptor = udev->descriptor;
Xenia Ragiadakoue3376d62013-08-29 21:45:48 +03005352 struct usb_host_bos *bos;
Hans de Goede7a7b5622013-11-08 16:37:26 +01005353 int i, j, ret = 0;
Alan Stern12c3da32005-11-23 12:09:52 -05005354 int port1 = udev->portnum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005355
5356 if (udev->state == USB_STATE_NOTATTACHED ||
5357 udev->state == USB_STATE_SUSPENDED) {
5358 dev_dbg(&udev->dev, "device reset not allowed in state %d\n",
5359 udev->state);
5360 return -EINVAL;
5361 }
5362
Dan Williams5c79a1e2014-05-20 18:09:26 -07005363 if (!parent_hdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005364 return -EISDIR;
Dan Williams5c79a1e2014-05-20 18:09:26 -07005365
Lan Tianyuad493e52013-01-23 04:26:30 +08005366 parent_hub = usb_hub_to_struct_hub(parent_hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005367
Sarah Sharpdcc01c02013-09-30 17:26:29 +03005368 /* Disable USB2 hardware LPM.
5369 * It will be re-enabled by the enumeration process.
5370 */
5371 if (udev->usb2_hw_lpm_enabled == 1)
5372 usb_set_usb2_hardware_lpm(udev, 0);
5373
Xenia Ragiadakoue3376d62013-08-29 21:45:48 +03005374 bos = udev->bos;
5375 udev->bos = NULL;
5376
Sarah Sharpf74631e2012-06-25 12:08:08 -07005377 /* Disable LPM and LTM while we reset the device and reinstall the alt
5378 * settings. Device-initiated LPM settings, and system exit latency
5379 * settings are cleared when the device is reset, so we have to set
5380 * them up again.
Sarah Sharp6d1d0512012-07-03 22:49:04 -07005381 */
5382 ret = usb_unlocked_disable_lpm(udev);
5383 if (ret) {
5384 dev_err(&udev->dev, "%s Failed to disable LPM\n.", __func__);
5385 goto re_enumerate;
5386 }
Sarah Sharpf74631e2012-06-25 12:08:08 -07005387 ret = usb_disable_ltm(udev);
5388 if (ret) {
5389 dev_err(&udev->dev, "%s Failed to disable LTM\n.",
5390 __func__);
5391 goto re_enumerate;
5392 }
Sarah Sharp6d1d0512012-07-03 22:49:04 -07005393
Linus Torvalds1da177e2005-04-16 15:20:36 -07005394 for (i = 0; i < SET_CONFIG_TRIES; ++i) {
5395
5396 /* ep0 maxpacket size may change; let the HCD know about it.
5397 * Other endpoints will be handled by re-enumeration. */
Inaky Perez-Gonzalezfc721f52008-04-08 13:24:46 -07005398 usb_ep0_reinit(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005399 ret = hub_port_init(parent_hub, udev, port1, i);
Alan Sterndd4dd192007-05-04 11:55:54 -04005400 if (ret >= 0 || ret == -ENOTCONN || ret == -ENODEV)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005401 break;
5402 }
Alan Sternd5cbad42006-08-11 16:52:39 -04005403
Linus Torvalds1da177e2005-04-16 15:20:36 -07005404 if (ret < 0)
5405 goto re_enumerate;
Matthias Beyer469271f2013-10-10 23:41:27 +02005406
Linus Torvalds1da177e2005-04-16 15:20:36 -07005407 /* Device might have changed firmware (DFU or similar) */
Xenia Ragiadakoue3376d62013-08-29 21:45:48 +03005408 if (descriptors_changed(udev, &descriptor, bos)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005409 dev_info(&udev->dev, "device firmware changed\n");
5410 udev->descriptor = descriptor; /* for disconnect() calls */
5411 goto re_enumerate;
Matthias Beyer469271f2013-10-10 23:41:27 +02005412 }
Alan Stern4fe03872009-02-26 10:21:02 -05005413
5414 /* Restore the device's previous configuration */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005415 if (!udev->actconfig)
5416 goto done;
Sarah Sharp3f0479e2009-12-03 09:44:36 -08005417
Sarah Sharpd673bfc2010-10-15 08:55:24 -07005418 mutex_lock(hcd->bandwidth_mutex);
Sarah Sharp3f0479e2009-12-03 09:44:36 -08005419 ret = usb_hcd_alloc_bandwidth(udev, udev->actconfig, NULL, NULL);
5420 if (ret < 0) {
5421 dev_warn(&udev->dev,
5422 "Busted HC? Not enough HCD resources for "
5423 "old configuration.\n");
Sarah Sharpd673bfc2010-10-15 08:55:24 -07005424 mutex_unlock(hcd->bandwidth_mutex);
Sarah Sharp3f0479e2009-12-03 09:44:36 -08005425 goto re_enumerate;
5426 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005427 ret = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
5428 USB_REQ_SET_CONFIGURATION, 0,
5429 udev->actconfig->desc.bConfigurationValue, 0,
5430 NULL, 0, USB_CTRL_SET_TIMEOUT);
5431 if (ret < 0) {
5432 dev_err(&udev->dev,
5433 "can't restore configuration #%d (error=%d)\n",
5434 udev->actconfig->desc.bConfigurationValue, ret);
Sarah Sharpd673bfc2010-10-15 08:55:24 -07005435 mutex_unlock(hcd->bandwidth_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005436 goto re_enumerate;
Matthias Beyer469271f2013-10-10 23:41:27 +02005437 }
Sarah Sharpd673bfc2010-10-15 08:55:24 -07005438 mutex_unlock(hcd->bandwidth_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005439 usb_set_device_state(udev, USB_STATE_CONFIGURED);
5440
Alan Stern4fe03872009-02-26 10:21:02 -05005441 /* Put interfaces back into the same altsettings as before.
5442 * Don't bother to send the Set-Interface request for interfaces
5443 * that were already in altsetting 0; besides being unnecessary,
5444 * many devices can't handle it. Instead just reset the host-side
5445 * endpoint state.
5446 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005447 for (i = 0; i < udev->actconfig->desc.bNumInterfaces; i++) {
Sarah Sharp3f0479e2009-12-03 09:44:36 -08005448 struct usb_host_config *config = udev->actconfig;
5449 struct usb_interface *intf = config->interface[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07005450 struct usb_interface_descriptor *desc;
5451
Linus Torvalds1da177e2005-04-16 15:20:36 -07005452 desc = &intf->cur_altsetting->desc;
Alan Stern4fe03872009-02-26 10:21:02 -05005453 if (desc->bAlternateSetting == 0) {
5454 usb_disable_interface(udev, intf, true);
5455 usb_enable_interface(udev, intf, true);
5456 ret = 0;
5457 } else {
Sarah Sharp04a723e2010-01-06 10:16:51 -08005458 /* Let the bandwidth allocation function know that this
5459 * device has been reset, and it will have to use
5460 * alternate setting 0 as the current alternate setting.
Sarah Sharp3f0479e2009-12-03 09:44:36 -08005461 */
Sarah Sharp04a723e2010-01-06 10:16:51 -08005462 intf->resetting_device = 1;
Alan Stern4fe03872009-02-26 10:21:02 -05005463 ret = usb_set_interface(udev, desc->bInterfaceNumber,
5464 desc->bAlternateSetting);
Sarah Sharp04a723e2010-01-06 10:16:51 -08005465 intf->resetting_device = 0;
Alan Stern4fe03872009-02-26 10:21:02 -05005466 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005467 if (ret < 0) {
5468 dev_err(&udev->dev, "failed to restore interface %d "
5469 "altsetting %d (error=%d)\n",
5470 desc->bInterfaceNumber,
5471 desc->bAlternateSetting,
5472 ret);
5473 goto re_enumerate;
5474 }
Hans de Goede7a7b5622013-11-08 16:37:26 +01005475 /* Resetting also frees any allocated streams */
5476 for (j = 0; j < intf->cur_altsetting->desc.bNumEndpoints; j++)
5477 intf->cur_altsetting->endpoint[j].streams = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005478 }
5479
5480done:
Sarah Sharpf74631e2012-06-25 12:08:08 -07005481 /* Now that the alt settings are re-installed, enable LTM and LPM. */
Sarah Sharpde68bab2013-09-30 17:26:28 +03005482 usb_set_usb2_hardware_lpm(udev, 1);
Alan Stern78d9a482008-06-23 16:00:40 -04005483 usb_unlocked_enable_lpm(udev);
Sarah Sharpf74631e2012-06-25 12:08:08 -07005484 usb_enable_ltm(udev);
Xenia Ragiadakoue3376d62013-08-29 21:45:48 +03005485 usb_release_bos_descriptor(udev);
5486 udev->bos = bos;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005487 return 0;
Matthias Beyer469271f2013-10-10 23:41:27 +02005488
Linus Torvalds1da177e2005-04-16 15:20:36 -07005489re_enumerate:
Sarah Sharp6d1d0512012-07-03 22:49:04 -07005490 /* LPM state doesn't matter when we're about to destroy the device. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005491 hub_port_logical_disconnect(parent_hub, port1);
Xenia Ragiadakoue3376d62013-08-29 21:45:48 +03005492 usb_release_bos_descriptor(udev);
5493 udev->bos = bos;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005494 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005495}
5496
5497/**
5498 * usb_reset_device - warn interface drivers and perform a USB port reset
5499 * @udev: device to reset (not in SUSPENDED or NOTATTACHED state)
5500 *
Alan Stern79efa092006-06-01 13:33:42 -04005501 * Warns all drivers bound to registered interfaces (using their pre_reset
5502 * method), performs the port reset, and then lets the drivers know that
Ming Lei742120c2008-06-18 22:00:29 +08005503 * the reset is over (using their post_reset method).
Alan Stern79efa092006-06-01 13:33:42 -04005504 *
Yacine Belkadi626f0902013-08-02 20:10:04 +02005505 * Return: The same as for usb_reset_and_verify_device().
Alan Stern79efa092006-06-01 13:33:42 -04005506 *
Yacine Belkadi626f0902013-08-02 20:10:04 +02005507 * Note:
Alan Stern79efa092006-06-01 13:33:42 -04005508 * The caller must own the device lock. For example, it's safe to use
5509 * this from a driver probe() routine after downloading new firmware.
5510 * For calls that might not occur during probe(), drivers should lock
Ming Lei742120c2008-06-18 22:00:29 +08005511 * the device using usb_lock_device_for_reset().
Alan Stern79efa092006-06-01 13:33:42 -04005512 *
5513 * If an interface is currently being probed or disconnected, we assume
5514 * its driver knows how to handle resets. For all other interfaces,
5515 * if the driver doesn't have pre_reset and post_reset methods then
5516 * we attempt to unbind it and rebind afterward.
Alan Stern79efa092006-06-01 13:33:42 -04005517 */
Ming Lei742120c2008-06-18 22:00:29 +08005518int usb_reset_device(struct usb_device *udev)
Alan Stern79efa092006-06-01 13:33:42 -04005519{
5520 int ret;
Alan Stern852c4b42007-12-03 15:44:29 -05005521 int i;
Ming Lei4d769de2013-02-22 16:34:22 -08005522 unsigned int noio_flag;
Dan Williams5c79a1e2014-05-20 18:09:26 -07005523 struct usb_port *port_dev;
Alan Stern79efa092006-06-01 13:33:42 -04005524 struct usb_host_config *config = udev->actconfig;
Dan Williams5c79a1e2014-05-20 18:09:26 -07005525 struct usb_hub *hub = usb_hub_to_struct_hub(udev->parent);
Alan Stern79efa092006-06-01 13:33:42 -04005526
5527 if (udev->state == USB_STATE_NOTATTACHED ||
5528 udev->state == USB_STATE_SUSPENDED) {
5529 dev_dbg(&udev->dev, "device reset not allowed in state %d\n",
5530 udev->state);
5531 return -EINVAL;
5532 }
5533
Dan Williams5c79a1e2014-05-20 18:09:26 -07005534 if (!udev->parent) {
5535 /* this requires hcd-specific logic; see ohci_restart() */
5536 dev_dbg(&udev->dev, "%s for root hub!\n", __func__);
5537 return -EISDIR;
5538 }
5539
5540 port_dev = hub->ports[udev->portnum - 1];
5541
Ming Lei4d769de2013-02-22 16:34:22 -08005542 /*
5543 * Don't allocate memory with GFP_KERNEL in current
5544 * context to avoid possible deadlock if usb mass
5545 * storage interface or usbnet interface(iSCSI case)
5546 * is included in current configuration. The easist
5547 * approach is to do it for every device reset,
5548 * because the device 'memalloc_noio' flag may have
5549 * not been set before reseting the usb device.
5550 */
5551 noio_flag = memalloc_noio_save();
5552
Alan Stern645daaa2006-08-30 15:47:02 -04005553 /* Prevent autosuspend during the reset */
Alan Stern94fcda12006-11-20 11:38:46 -05005554 usb_autoresume_device(udev);
Alan Stern645daaa2006-08-30 15:47:02 -04005555
Alan Stern79efa092006-06-01 13:33:42 -04005556 if (config) {
Alan Stern79efa092006-06-01 13:33:42 -04005557 for (i = 0; i < config->desc.bNumInterfaces; ++i) {
Alan Stern852c4b42007-12-03 15:44:29 -05005558 struct usb_interface *cintf = config->interface[i];
5559 struct usb_driver *drv;
Alan Stern78d9a482008-06-23 16:00:40 -04005560 int unbind = 0;
Alan Stern852c4b42007-12-03 15:44:29 -05005561
5562 if (cintf->dev.driver) {
Alan Stern79efa092006-06-01 13:33:42 -04005563 drv = to_usb_driver(cintf->dev.driver);
Alan Stern78d9a482008-06-23 16:00:40 -04005564 if (drv->pre_reset && drv->post_reset)
5565 unbind = (drv->pre_reset)(cintf);
5566 else if (cintf->condition ==
5567 USB_INTERFACE_BOUND)
5568 unbind = 1;
5569 if (unbind)
5570 usb_forced_unbind_intf(cintf);
Alan Stern79efa092006-06-01 13:33:42 -04005571 }
5572 }
5573 }
5574
Dan Williams5c79a1e2014-05-20 18:09:26 -07005575 usb_lock_port(port_dev);
Ming Lei742120c2008-06-18 22:00:29 +08005576 ret = usb_reset_and_verify_device(udev);
Dan Williams5c79a1e2014-05-20 18:09:26 -07005577 usb_unlock_port(port_dev);
Alan Stern79efa092006-06-01 13:33:42 -04005578
5579 if (config) {
Alan Stern79efa092006-06-01 13:33:42 -04005580 for (i = config->desc.bNumInterfaces - 1; i >= 0; --i) {
Alan Stern852c4b42007-12-03 15:44:29 -05005581 struct usb_interface *cintf = config->interface[i];
5582 struct usb_driver *drv;
Alan Stern78d9a482008-06-23 16:00:40 -04005583 int rebind = cintf->needs_binding;
Alan Stern852c4b42007-12-03 15:44:29 -05005584
Alan Stern78d9a482008-06-23 16:00:40 -04005585 if (!rebind && cintf->dev.driver) {
Alan Stern79efa092006-06-01 13:33:42 -04005586 drv = to_usb_driver(cintf->dev.driver);
5587 if (drv->post_reset)
Alan Stern78d9a482008-06-23 16:00:40 -04005588 rebind = (drv->post_reset)(cintf);
5589 else if (cintf->condition ==
5590 USB_INTERFACE_BOUND)
5591 rebind = 1;
Alan Stern6aec0442014-03-12 11:30:38 -04005592 if (rebind)
5593 cintf->needs_binding = 1;
Alan Stern79efa092006-06-01 13:33:42 -04005594 }
Alan Stern79efa092006-06-01 13:33:42 -04005595 }
Alan Stern6aec0442014-03-12 11:30:38 -04005596 usb_unbind_and_rebind_marked_interfaces(udev);
Alan Stern79efa092006-06-01 13:33:42 -04005597 }
5598
Alan Stern94fcda12006-11-20 11:38:46 -05005599 usb_autosuspend_device(udev);
Ming Lei4d769de2013-02-22 16:34:22 -08005600 memalloc_noio_restore(noio_flag);
Alan Stern79efa092006-06-01 13:33:42 -04005601 return ret;
5602}
Ming Lei742120c2008-06-18 22:00:29 +08005603EXPORT_SYMBOL_GPL(usb_reset_device);
Inaky Perez-Gonzalezdc023dc2008-11-13 10:31:35 -08005604
5605
5606/**
5607 * usb_queue_reset_device - Reset a USB device from an atomic context
5608 * @iface: USB interface belonging to the device to reset
5609 *
5610 * This function can be used to reset a USB device from an atomic
5611 * context, where usb_reset_device() won't work (as it blocks).
5612 *
5613 * Doing a reset via this method is functionally equivalent to calling
5614 * usb_reset_device(), except for the fact that it is delayed to a
5615 * workqueue. This means that any drivers bound to other interfaces
5616 * might be unbound, as well as users from usbfs in user space.
5617 *
5618 * Corner cases:
5619 *
5620 * - Scheduling two resets at the same time from two different drivers
5621 * attached to two different interfaces of the same device is
5622 * possible; depending on how the driver attached to each interface
5623 * handles ->pre_reset(), the second reset might happen or not.
5624 *
5625 * - If a driver is unbound and it had a pending reset, the reset will
5626 * be cancelled.
5627 *
5628 * - This function can be called during .probe() or .disconnect()
5629 * times. On return from .disconnect(), any pending resets will be
5630 * cancelled.
5631 *
5632 * There is no no need to lock/unlock the @reset_ws as schedule_work()
5633 * does its own.
5634 *
5635 * NOTE: We don't do any reference count tracking because it is not
5636 * needed. The lifecycle of the work_struct is tied to the
5637 * usb_interface. Before destroying the interface we cancel the
5638 * work_struct, so the fact that work_struct is queued and or
5639 * running means the interface (and thus, the device) exist and
5640 * are referenced.
5641 */
5642void usb_queue_reset_device(struct usb_interface *iface)
5643{
5644 schedule_work(&iface->reset_ws);
5645}
5646EXPORT_SYMBOL_GPL(usb_queue_reset_device);
Lan Tianyuff823c792012-09-05 13:44:32 +08005647
5648/**
5649 * usb_hub_find_child - Get the pointer of child device
5650 * attached to the port which is specified by @port1.
5651 * @hdev: USB device belonging to the usb hub
5652 * @port1: port num to indicate which port the child device
5653 * is attached to.
5654 *
5655 * USB drivers call this function to get hub's child device
5656 * pointer.
5657 *
Yacine Belkadi626f0902013-08-02 20:10:04 +02005658 * Return: %NULL if input param is invalid and
Lan Tianyuff823c792012-09-05 13:44:32 +08005659 * child's usb_device pointer if non-NULL.
5660 */
5661struct usb_device *usb_hub_find_child(struct usb_device *hdev,
5662 int port1)
5663{
Lan Tianyuad493e52013-01-23 04:26:30 +08005664 struct usb_hub *hub = usb_hub_to_struct_hub(hdev);
Lan Tianyuff823c792012-09-05 13:44:32 +08005665
5666 if (port1 < 1 || port1 > hdev->maxchild)
5667 return NULL;
5668 return hub->ports[port1 - 1]->child;
5669}
5670EXPORT_SYMBOL_GPL(usb_hub_find_child);
Lan Tianyud5575422012-09-05 13:44:33 +08005671
Lan Tianyud2123fd2013-01-21 22:18:00 +08005672void usb_hub_adjust_deviceremovable(struct usb_device *hdev,
5673 struct usb_hub_descriptor *desc)
5674{
Dan Williamsd99f6b42014-05-20 18:08:17 -07005675 struct usb_hub *hub = usb_hub_to_struct_hub(hdev);
Lan Tianyud2123fd2013-01-21 22:18:00 +08005676 enum usb_port_connect_type connect_type;
5677 int i;
5678
Dan Williamsd99f6b42014-05-20 18:08:17 -07005679 if (!hub)
5680 return;
5681
Lan Tianyud2123fd2013-01-21 22:18:00 +08005682 if (!hub_is_superspeed(hdev)) {
5683 for (i = 1; i <= hdev->maxchild; i++) {
Dan Williamsd99f6b42014-05-20 18:08:17 -07005684 struct usb_port *port_dev = hub->ports[i - 1];
Lan Tianyud2123fd2013-01-21 22:18:00 +08005685
Dan Williamsd99f6b42014-05-20 18:08:17 -07005686 connect_type = port_dev->connect_type;
Lan Tianyud2123fd2013-01-21 22:18:00 +08005687 if (connect_type == USB_PORT_CONNECT_TYPE_HARD_WIRED) {
5688 u8 mask = 1 << (i%8);
5689
5690 if (!(desc->u.hs.DeviceRemovable[i/8] & mask)) {
Dan Williamsd99f6b42014-05-20 18:08:17 -07005691 dev_dbg(&port_dev->dev, "DeviceRemovable is changed to 1 according to platform information.\n");
Lan Tianyud2123fd2013-01-21 22:18:00 +08005692 desc->u.hs.DeviceRemovable[i/8] |= mask;
5693 }
5694 }
5695 }
5696 } else {
5697 u16 port_removable = le16_to_cpu(desc->u.ss.DeviceRemovable);
5698
5699 for (i = 1; i <= hdev->maxchild; i++) {
Dan Williamsd99f6b42014-05-20 18:08:17 -07005700 struct usb_port *port_dev = hub->ports[i - 1];
Lan Tianyud2123fd2013-01-21 22:18:00 +08005701
Dan Williamsd99f6b42014-05-20 18:08:17 -07005702 connect_type = port_dev->connect_type;
Lan Tianyud2123fd2013-01-21 22:18:00 +08005703 if (connect_type == USB_PORT_CONNECT_TYPE_HARD_WIRED) {
5704 u16 mask = 1 << i;
5705
5706 if (!(port_removable & mask)) {
Dan Williamsd99f6b42014-05-20 18:08:17 -07005707 dev_dbg(&port_dev->dev, "DeviceRemovable is changed to 1 according to platform information.\n");
Lan Tianyud2123fd2013-01-21 22:18:00 +08005708 port_removable |= mask;
5709 }
5710 }
5711 }
5712
5713 desc->u.ss.DeviceRemovable = cpu_to_le16(port_removable);
5714 }
5715}
5716
Lan Tianyud5575422012-09-05 13:44:33 +08005717#ifdef CONFIG_ACPI
5718/**
5719 * usb_get_hub_port_acpi_handle - Get the usb port's acpi handle
5720 * @hdev: USB device belonging to the usb hub
5721 * @port1: port num of the port
5722 *
Yacine Belkadi626f0902013-08-02 20:10:04 +02005723 * Return: Port's acpi handle if successful, %NULL if params are
5724 * invalid.
Lan Tianyud5575422012-09-05 13:44:33 +08005725 */
5726acpi_handle usb_get_hub_port_acpi_handle(struct usb_device *hdev,
5727 int port1)
5728{
Lan Tianyuad493e52013-01-23 04:26:30 +08005729 struct usb_hub *hub = usb_hub_to_struct_hub(hdev);
Lan Tianyud5575422012-09-05 13:44:33 +08005730
Mathias Nyman413412612013-06-18 17:28:48 +03005731 if (!hub)
5732 return NULL;
5733
Rafael J. Wysocki3a83f992013-11-14 23:17:21 +01005734 return ACPI_HANDLE(&hub->ports[port1 - 1]->dev);
Lan Tianyud5575422012-09-05 13:44:33 +08005735}
5736#endif