blob: 77b91888abeff6a40be9db62bb92374669e9915c [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
John Youndbe79bb2001-09-17 00:00:00 -070039static inline int hub_is_superspeed(struct usb_device *hdev)
40{
Aman Deep7bf01182011-12-08 12:05:22 +053041 return (hdev->descriptor.bDeviceProtocol == USB_HUB_PR_SS);
John Youndbe79bb2001-09-17 00:00:00 -070042}
Alan Stern1bb5f662006-11-06 11:56:13 -050043
Greg Kroah-Hartmanfa286182012-05-14 09:20:37 -070044/* Protect struct usb_device->state and ->children members
Alan Stern9ad3d6c2005-11-17 17:10:32 -050045 * Note: Both are also protected by ->dev.sem, except that ->state can
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 * change to USB_STATE_NOTATTACHED even when the semaphore isn't held. */
47static DEFINE_SPINLOCK(device_state_lock);
48
49/* khubd's worklist and its lock */
50static DEFINE_SPINLOCK(hub_event_lock);
51static LIST_HEAD(hub_event_list); /* List of hubs needing servicing */
52
53/* Wakes up khubd */
54static DECLARE_WAIT_QUEUE_HEAD(khubd_wait);
55
akpm@osdl.org9c8d6172005-06-20 14:29:58 -070056static struct task_struct *khubd_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
58/* cycle leds on hubs that aren't blinking for attention */
Rusty Russell90ab5ee2012-01-13 09:32:20 +103059static bool blinkenlights = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070060module_param (blinkenlights, bool, S_IRUGO);
61MODULE_PARM_DESC (blinkenlights, "true to cycle leds on hubs");
62
63/*
Jaroslav Kyselafd7c5192008-10-10 16:24:45 +020064 * Device SATA8000 FW1.0 from DATAST0R Technology Corp requires about
65 * 10 seconds to send reply for the initial 64-byte descriptor request.
66 */
67/* define initial 64-byte descriptor request timeout in milliseconds */
68static int initial_descriptor_timeout = USB_CTRL_GET_TIMEOUT;
69module_param(initial_descriptor_timeout, int, S_IRUGO|S_IWUSR);
Wu Fengguangb9cef6c2008-12-15 15:32:01 +080070MODULE_PARM_DESC(initial_descriptor_timeout,
71 "initial 64-byte descriptor request timeout in milliseconds "
72 "(default 5000 - 5.0 seconds)");
Jaroslav Kyselafd7c5192008-10-10 16:24:45 +020073
74/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 * As of 2.6.10 we introduce a new USB device initialization scheme which
76 * closely resembles the way Windows works. Hopefully it will be compatible
77 * with a wider range of devices than the old scheme. However some previously
78 * working devices may start giving rise to "device not accepting address"
79 * errors; if that happens the user can try the old scheme by adjusting the
80 * following module parameters.
81 *
82 * For maximum flexibility there are two boolean parameters to control the
83 * hub driver's behavior. On the first initialization attempt, if the
84 * "old_scheme_first" parameter is set then the old scheme will be used,
85 * otherwise the new scheme is used. If that fails and "use_both_schemes"
86 * is set, then the driver will make another attempt, using the other scheme.
87 */
Rusty Russell90ab5ee2012-01-13 09:32:20 +103088static bool old_scheme_first = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070089module_param(old_scheme_first, bool, S_IRUGO | S_IWUSR);
90MODULE_PARM_DESC(old_scheme_first,
91 "start with the old device initialization scheme");
92
Rusty Russell90ab5ee2012-01-13 09:32:20 +103093static bool use_both_schemes = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070094module_param(use_both_schemes, bool, S_IRUGO | S_IWUSR);
95MODULE_PARM_DESC(use_both_schemes,
96 "try the other device initialization scheme if the "
97 "first one fails");
98
Alan Stern32fe0192007-10-10 16:27:07 -040099/* Mutual exclusion for EHCI CF initialization. This interferes with
100 * port reset on some companion controllers.
101 */
102DECLARE_RWSEM(ehci_cf_port_reset_rwsem);
103EXPORT_SYMBOL_GPL(ehci_cf_port_reset_rwsem);
104
Lan Tianyuad493e52013-01-23 04:26:30 +0800105#define HUB_DEBOUNCE_TIMEOUT 2000
Alan Stern948fea32008-04-28 11:07:07 -0400106#define HUB_DEBOUNCE_STEP 25
107#define HUB_DEBOUNCE_STABLE 100
108
Ming Lei742120c2008-06-18 22:00:29 +0800109static int usb_reset_and_verify_device(struct usb_device *udev);
110
Sarah Sharp131dec32010-12-06 21:00:19 -0800111static inline char *portspeed(struct usb_hub *hub, int portstatus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112{
Sarah Sharp131dec32010-12-06 21:00:19 -0800113 if (hub_is_superspeed(hub->hdev))
114 return "5.0 Gb/s";
Alan Stern288ead42010-03-04 11:32:30 -0500115 if (portstatus & USB_PORT_STAT_HIGH_SPEED)
Matthias Beyer469271f2013-10-10 23:41:27 +0200116 return "480 Mb/s";
Alan Stern288ead42010-03-04 11:32:30 -0500117 else if (portstatus & USB_PORT_STAT_LOW_SPEED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 return "1.5 Mb/s";
119 else
120 return "12 Mb/s";
121}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
123/* Note that hdev or one of its children must be locked! */
Lan Tianyuad493e52013-01-23 04:26:30 +0800124struct usb_hub *usb_hub_to_struct_hub(struct usb_device *hdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125{
Lan Tianyuff823c792012-09-05 13:44:32 +0800126 if (!hdev || !hdev->actconfig || !hdev->maxchild)
Alan Stern251180842009-07-22 14:41:18 -0400127 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 return usb_get_intfdata(hdev->actconfig->interface[0]);
129}
130
Sarah Sharp140e3022014-01-22 13:35:02 -0800131static int usb_device_supports_lpm(struct usb_device *udev)
Sarah Sharpd9b20992012-02-20 08:31:26 -0800132{
133 /* USB 2.1 (and greater) devices indicate LPM support through
134 * their USB 2.0 Extended Capabilities BOS descriptor.
135 */
136 if (udev->speed == USB_SPEED_HIGH) {
137 if (udev->bos->ext_cap &&
138 (USB_LPM_SUPPORT &
139 le32_to_cpu(udev->bos->ext_cap->bmAttributes)))
140 return 1;
141 return 0;
142 }
Sarah Sharp51e0a012012-02-20 12:02:19 -0800143
Sarah Sharp25cd2882014-01-17 14:15:44 -0800144 /*
145 * According to the USB 3.0 spec, all USB 3.0 devices must support LPM.
146 * However, there are some that don't, and they set the U1/U2 exit
147 * latencies to zero.
Sarah Sharp51e0a012012-02-20 12:02:19 -0800148 */
149 if (!udev->bos->ss_cap) {
Sarah Sharp25cd2882014-01-17 14:15:44 -0800150 dev_info(&udev->dev, "No LPM exit latency info found, disabling LPM.\n");
Sarah Sharp51e0a012012-02-20 12:02:19 -0800151 return 0;
152 }
Sarah Sharp51e0a012012-02-20 12:02:19 -0800153
Sarah Sharp25cd2882014-01-17 14:15:44 -0800154 if (udev->bos->ss_cap->bU1devExitLat == 0 &&
155 udev->bos->ss_cap->bU2DevExitLat == 0) {
156 if (udev->parent)
157 dev_info(&udev->dev, "LPM exit latency is zeroed, disabling LPM.\n");
158 else
159 dev_info(&udev->dev, "We don't know the algorithms for LPM for this host, disabling LPM.\n");
160 return 0;
161 }
162
163 if (!udev->parent || udev->parent->lpm_capable)
164 return 1;
Sarah Sharpd9b20992012-02-20 08:31:26 -0800165 return 0;
166}
167
Sarah Sharp51e0a012012-02-20 12:02:19 -0800168/*
169 * Set the Maximum Exit Latency (MEL) for the host to initiate a transition from
170 * either U1 or U2.
171 */
172static void usb_set_lpm_mel(struct usb_device *udev,
173 struct usb3_lpm_parameters *udev_lpm_params,
174 unsigned int udev_exit_latency,
175 struct usb_hub *hub,
176 struct usb3_lpm_parameters *hub_lpm_params,
177 unsigned int hub_exit_latency)
178{
179 unsigned int total_mel;
180 unsigned int device_mel;
181 unsigned int hub_mel;
182
183 /*
184 * Calculate the time it takes to transition all links from the roothub
185 * to the parent hub into U0. The parent hub must then decode the
186 * packet (hub header decode latency) to figure out which port it was
187 * bound for.
188 *
189 * The Hub Header decode latency is expressed in 0.1us intervals (0x1
190 * means 0.1us). Multiply that by 100 to get nanoseconds.
191 */
192 total_mel = hub_lpm_params->mel +
193 (hub->descriptor->u.ss.bHubHdrDecLat * 100);
194
195 /*
196 * How long will it take to transition the downstream hub's port into
197 * U0? The greater of either the hub exit latency or the device exit
198 * latency.
199 *
200 * The BOS U1/U2 exit latencies are expressed in 1us intervals.
201 * Multiply that by 1000 to get nanoseconds.
202 */
203 device_mel = udev_exit_latency * 1000;
204 hub_mel = hub_exit_latency * 1000;
205 if (device_mel > hub_mel)
206 total_mel += device_mel;
207 else
208 total_mel += hub_mel;
209
210 udev_lpm_params->mel = total_mel;
211}
212
213/*
214 * Set the maximum Device to Host Exit Latency (PEL) for the device to initiate
215 * a transition from either U1 or U2.
216 */
217static void usb_set_lpm_pel(struct usb_device *udev,
218 struct usb3_lpm_parameters *udev_lpm_params,
219 unsigned int udev_exit_latency,
220 struct usb_hub *hub,
221 struct usb3_lpm_parameters *hub_lpm_params,
222 unsigned int hub_exit_latency,
223 unsigned int port_to_port_exit_latency)
224{
225 unsigned int first_link_pel;
226 unsigned int hub_pel;
227
228 /*
229 * First, the device sends an LFPS to transition the link between the
230 * device and the parent hub into U0. The exit latency is the bigger of
231 * the device exit latency or the hub exit latency.
232 */
233 if (udev_exit_latency > hub_exit_latency)
234 first_link_pel = udev_exit_latency * 1000;
235 else
236 first_link_pel = hub_exit_latency * 1000;
237
238 /*
239 * When the hub starts to receive the LFPS, there is a slight delay for
240 * it to figure out that one of the ports is sending an LFPS. Then it
241 * will forward the LFPS to its upstream link. The exit latency is the
242 * delay, plus the PEL that we calculated for this hub.
243 */
244 hub_pel = port_to_port_exit_latency * 1000 + hub_lpm_params->pel;
245
246 /*
247 * According to figure C-7 in the USB 3.0 spec, the PEL for this device
248 * is the greater of the two exit latencies.
249 */
250 if (first_link_pel > hub_pel)
251 udev_lpm_params->pel = first_link_pel;
252 else
253 udev_lpm_params->pel = hub_pel;
254}
255
256/*
257 * Set the System Exit Latency (SEL) to indicate the total worst-case time from
258 * when a device initiates a transition to U0, until when it will receive the
259 * first packet from the host controller.
260 *
261 * Section C.1.5.1 describes the four components to this:
262 * - t1: device PEL
263 * - t2: time for the ERDY to make it from the device to the host.
264 * - t3: a host-specific delay to process the ERDY.
265 * - t4: time for the packet to make it from the host to the device.
266 *
267 * t3 is specific to both the xHCI host and the platform the host is integrated
268 * into. The Intel HW folks have said it's negligible, FIXME if a different
269 * vendor says otherwise.
270 */
271static void usb_set_lpm_sel(struct usb_device *udev,
272 struct usb3_lpm_parameters *udev_lpm_params)
273{
274 struct usb_device *parent;
275 unsigned int num_hubs;
276 unsigned int total_sel;
277
278 /* t1 = device PEL */
279 total_sel = udev_lpm_params->pel;
280 /* How many external hubs are in between the device & the root port. */
281 for (parent = udev->parent, num_hubs = 0; parent->parent;
282 parent = parent->parent)
283 num_hubs++;
284 /* t2 = 2.1us + 250ns * (num_hubs - 1) */
285 if (num_hubs > 0)
286 total_sel += 2100 + 250 * (num_hubs - 1);
287
288 /* t4 = 250ns * num_hubs */
289 total_sel += 250 * num_hubs;
290
291 udev_lpm_params->sel = total_sel;
292}
293
294static void usb_set_lpm_parameters(struct usb_device *udev)
295{
296 struct usb_hub *hub;
297 unsigned int port_to_port_delay;
298 unsigned int udev_u1_del;
299 unsigned int udev_u2_del;
300 unsigned int hub_u1_del;
301 unsigned int hub_u2_del;
302
303 if (!udev->lpm_capable || udev->speed != USB_SPEED_SUPER)
304 return;
305
Lan Tianyuad493e52013-01-23 04:26:30 +0800306 hub = usb_hub_to_struct_hub(udev->parent);
Sarah Sharp51e0a012012-02-20 12:02:19 -0800307 /* It doesn't take time to transition the roothub into U0, since it
308 * doesn't have an upstream link.
309 */
310 if (!hub)
311 return;
312
313 udev_u1_del = udev->bos->ss_cap->bU1devExitLat;
Xenia Ragiadakou4d967992013-08-31 18:09:13 +0300314 udev_u2_del = le16_to_cpu(udev->bos->ss_cap->bU2DevExitLat);
Sarah Sharp51e0a012012-02-20 12:02:19 -0800315 hub_u1_del = udev->parent->bos->ss_cap->bU1devExitLat;
Xenia Ragiadakou4d967992013-08-31 18:09:13 +0300316 hub_u2_del = le16_to_cpu(udev->parent->bos->ss_cap->bU2DevExitLat);
Sarah Sharp51e0a012012-02-20 12:02:19 -0800317
318 usb_set_lpm_mel(udev, &udev->u1_params, udev_u1_del,
319 hub, &udev->parent->u1_params, hub_u1_del);
320
321 usb_set_lpm_mel(udev, &udev->u2_params, udev_u2_del,
322 hub, &udev->parent->u2_params, hub_u2_del);
323
324 /*
325 * Appendix C, section C.2.2.2, says that there is a slight delay from
326 * when the parent hub notices the downstream port is trying to
327 * transition to U0 to when the hub initiates a U0 transition on its
328 * upstream port. The section says the delays are tPort2PortU1EL and
329 * tPort2PortU2EL, but it doesn't define what they are.
330 *
331 * The hub chapter, sections 10.4.2.4 and 10.4.2.5 seem to be talking
332 * about the same delays. Use the maximum delay calculations from those
333 * sections. For U1, it's tHubPort2PortExitLat, which is 1us max. For
334 * U2, it's tHubPort2PortExitLat + U2DevExitLat - U1DevExitLat. I
335 * assume the device exit latencies they are talking about are the hub
336 * exit latencies.
337 *
338 * What do we do if the U2 exit latency is less than the U1 exit
339 * latency? It's possible, although not likely...
340 */
341 port_to_port_delay = 1;
342
343 usb_set_lpm_pel(udev, &udev->u1_params, udev_u1_del,
344 hub, &udev->parent->u1_params, hub_u1_del,
345 port_to_port_delay);
346
347 if (hub_u2_del > hub_u1_del)
348 port_to_port_delay = 1 + hub_u2_del - hub_u1_del;
349 else
350 port_to_port_delay = 1 + hub_u1_del;
351
352 usb_set_lpm_pel(udev, &udev->u2_params, udev_u2_del,
353 hub, &udev->parent->u2_params, hub_u2_del,
354 port_to_port_delay);
355
356 /* Now that we've got PEL, calculate SEL. */
357 usb_set_lpm_sel(udev, &udev->u1_params);
358 usb_set_lpm_sel(udev, &udev->u2_params);
359}
360
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361/* USB 2.0 spec Section 11.24.4.5 */
John Youndbe79bb2001-09-17 00:00:00 -0700362static int get_hub_descriptor(struct usb_device *hdev, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363{
John Youndbe79bb2001-09-17 00:00:00 -0700364 int i, ret, size;
365 unsigned dtype;
366
367 if (hub_is_superspeed(hdev)) {
368 dtype = USB_DT_SS_HUB;
369 size = USB_DT_SS_HUB_SIZE;
370 } else {
371 dtype = USB_DT_HUB;
372 size = sizeof(struct usb_hub_descriptor);
373 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374
375 for (i = 0; i < 3; i++) {
376 ret = usb_control_msg(hdev, usb_rcvctrlpipe(hdev, 0),
377 USB_REQ_GET_DESCRIPTOR, USB_DIR_IN | USB_RT_HUB,
John Youndbe79bb2001-09-17 00:00:00 -0700378 dtype << 8, 0, data, size,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 USB_CTRL_GET_TIMEOUT);
380 if (ret >= (USB_DT_HUB_NONVAR_SIZE + 2))
381 return ret;
382 }
383 return -EINVAL;
384}
385
386/*
387 * USB 2.0 spec Section 11.24.2.1
388 */
389static int clear_hub_feature(struct usb_device *hdev, int feature)
390{
391 return usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
392 USB_REQ_CLEAR_FEATURE, USB_RT_HUB, feature, 0, NULL, 0, 1000);
393}
394
395/*
396 * USB 2.0 spec Section 11.24.2.2
397 */
Lan Tianyuad493e52013-01-23 04:26:30 +0800398int usb_clear_port_feature(struct usb_device *hdev, int port1, int feature)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399{
400 return usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
401 USB_REQ_CLEAR_FEATURE, USB_RT_PORT, feature, port1,
402 NULL, 0, 1000);
403}
404
405/*
406 * USB 2.0 spec Section 11.24.2.13
407 */
408static int set_port_feature(struct usb_device *hdev, int port1, int feature)
409{
410 return usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
411 USB_REQ_SET_FEATURE, USB_RT_PORT, feature, port1,
412 NULL, 0, 1000);
413}
414
415/*
416 * USB 2.0 spec Section 11.24.2.7.1.10 and table 11-7
417 * for info about using port indicators
418 */
419static void set_port_led(
420 struct usb_hub *hub,
421 int port1,
422 int selector
423)
424{
425 int status = set_port_feature(hub->hdev, (selector << 8) | port1,
426 USB_PORT_FEAT_INDICATOR);
427 if (status < 0)
428 dev_dbg (hub->intfdev,
429 "port %d indicator %s status %d\n",
430 port1,
431 ({ char *s; switch (selector) {
432 case HUB_LED_AMBER: s = "amber"; break;
433 case HUB_LED_GREEN: s = "green"; break;
434 case HUB_LED_OFF: s = "off"; break;
435 case HUB_LED_AUTO: s = "auto"; break;
436 default: s = "??"; break;
Joe Perches2b84f922013-10-08 16:01:37 -0700437 } s; }),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 status);
439}
440
441#define LED_CYCLE_PERIOD ((2*HZ)/3)
442
David Howellsc4028952006-11-22 14:57:56 +0000443static void led_work (struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444{
David Howellsc4028952006-11-22 14:57:56 +0000445 struct usb_hub *hub =
446 container_of(work, struct usb_hub, leds.work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 struct usb_device *hdev = hub->hdev;
448 unsigned i;
449 unsigned changed = 0;
450 int cursor = -1;
451
452 if (hdev->state != USB_STATE_CONFIGURED || hub->quiescing)
453 return;
454
Krzysztof Mazur3bbc47d2013-08-22 14:49:40 +0200455 for (i = 0; i < hdev->maxchild; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 unsigned selector, mode;
457
458 /* 30%-50% duty cycle */
459
460 switch (hub->indicator[i]) {
461 /* cycle marker */
462 case INDICATOR_CYCLE:
463 cursor = i;
464 selector = HUB_LED_AUTO;
465 mode = INDICATOR_AUTO;
466 break;
467 /* blinking green = sw attention */
468 case INDICATOR_GREEN_BLINK:
469 selector = HUB_LED_GREEN;
470 mode = INDICATOR_GREEN_BLINK_OFF;
471 break;
472 case INDICATOR_GREEN_BLINK_OFF:
473 selector = HUB_LED_OFF;
474 mode = INDICATOR_GREEN_BLINK;
475 break;
476 /* blinking amber = hw attention */
477 case INDICATOR_AMBER_BLINK:
478 selector = HUB_LED_AMBER;
479 mode = INDICATOR_AMBER_BLINK_OFF;
480 break;
481 case INDICATOR_AMBER_BLINK_OFF:
482 selector = HUB_LED_OFF;
483 mode = INDICATOR_AMBER_BLINK;
484 break;
485 /* blink green/amber = reserved */
486 case INDICATOR_ALT_BLINK:
487 selector = HUB_LED_GREEN;
488 mode = INDICATOR_ALT_BLINK_OFF;
489 break;
490 case INDICATOR_ALT_BLINK_OFF:
491 selector = HUB_LED_AMBER;
492 mode = INDICATOR_ALT_BLINK;
493 break;
494 default:
495 continue;
496 }
497 if (selector != HUB_LED_AUTO)
498 changed = 1;
499 set_port_led(hub, i + 1, selector);
500 hub->indicator[i] = mode;
501 }
502 if (!changed && blinkenlights) {
503 cursor++;
Krzysztof Mazur3bbc47d2013-08-22 14:49:40 +0200504 cursor %= hdev->maxchild;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 set_port_led(hub, cursor + 1, HUB_LED_GREEN);
506 hub->indicator[cursor] = INDICATOR_CYCLE;
507 changed++;
508 }
509 if (changed)
Shaibal Dutta22f6a0f2014-02-01 19:16:46 -0800510 queue_delayed_work(system_power_efficient_wq,
511 &hub->leds, LED_CYCLE_PERIOD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512}
513
514/* use a short timeout for hub/port status fetches */
515#define USB_STS_TIMEOUT 1000
516#define USB_STS_RETRIES 5
517
518/*
519 * USB 2.0 spec Section 11.24.2.6
520 */
521static int get_hub_status(struct usb_device *hdev,
522 struct usb_hub_status *data)
523{
524 int i, status = -ETIMEDOUT;
525
Libor Pechacek3824c1d2011-05-20 14:53:25 +0200526 for (i = 0; i < USB_STS_RETRIES &&
527 (status == -ETIMEDOUT || status == -EPIPE); i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 status = usb_control_msg(hdev, usb_rcvctrlpipe(hdev, 0),
529 USB_REQ_GET_STATUS, USB_DIR_IN | USB_RT_HUB, 0, 0,
530 data, sizeof(*data), USB_STS_TIMEOUT);
531 }
532 return status;
533}
534
535/*
536 * USB 2.0 spec Section 11.24.2.7
537 */
538static int get_port_status(struct usb_device *hdev, int port1,
539 struct usb_port_status *data)
540{
541 int i, status = -ETIMEDOUT;
542
Libor Pechacek3824c1d2011-05-20 14:53:25 +0200543 for (i = 0; i < USB_STS_RETRIES &&
544 (status == -ETIMEDOUT || status == -EPIPE); i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 status = usb_control_msg(hdev, usb_rcvctrlpipe(hdev, 0),
546 USB_REQ_GET_STATUS, USB_DIR_IN | USB_RT_PORT, 0, port1,
547 data, sizeof(*data), USB_STS_TIMEOUT);
548 }
549 return status;
550}
551
Alan Stern3eb14912008-03-03 15:15:43 -0500552static int hub_port_status(struct usb_hub *hub, int port1,
553 u16 *status, u16 *change)
554{
555 int ret;
556
557 mutex_lock(&hub->status_mutex);
558 ret = get_port_status(hub->hdev, port1, &hub->status->port);
559 if (ret < 4) {
Alan Sterne9e88fb2013-03-27 16:14:01 -0400560 if (ret != -ENODEV)
561 dev_err(hub->intfdev,
562 "%s failed (err = %d)\n", __func__, ret);
Alan Stern3eb14912008-03-03 15:15:43 -0500563 if (ret >= 0)
564 ret = -EIO;
565 } else {
566 *status = le16_to_cpu(hub->status->port.wPortStatus);
567 *change = le16_to_cpu(hub->status->port.wPortChange);
John Youndbe79bb2001-09-17 00:00:00 -0700568
Alan Stern3eb14912008-03-03 15:15:43 -0500569 ret = 0;
570 }
571 mutex_unlock(&hub->status_mutex);
572 return ret;
573}
574
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575static void kick_khubd(struct usb_hub *hub)
576{
577 unsigned long flags;
578
579 spin_lock_irqsave(&hub_event_lock, flags);
Roel Kluin2e2c5ee2007-10-26 23:54:35 +0200580 if (!hub->disconnected && list_empty(&hub->event_list)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 list_add_tail(&hub->event_list, &hub_event_list);
Alan Stern8e4ceb32009-12-07 13:01:37 -0500582
583 /* Suppress autosuspend until khubd runs */
584 usb_autopm_get_interface_no_resume(
585 to_usb_interface(hub->intfdev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 wake_up(&khubd_wait);
587 }
588 spin_unlock_irqrestore(&hub_event_lock, flags);
589}
590
591void usb_kick_khubd(struct usb_device *hdev)
592{
Lan Tianyuad493e52013-01-23 04:26:30 +0800593 struct usb_hub *hub = usb_hub_to_struct_hub(hdev);
Alan Stern251180842009-07-22 14:41:18 -0400594
595 if (hub)
596 kick_khubd(hub);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597}
598
Sarah Sharp4ee823b2011-11-14 18:00:01 -0800599/*
600 * Let the USB core know that a USB 3.0 device has sent a Function Wake Device
601 * Notification, which indicates it had initiated remote wakeup.
602 *
603 * USB 3.0 hubs do not report the port link state change from U3 to U0 when the
604 * device initiates resume, so the USB core will not receive notice of the
605 * resume through the normal hub interrupt URB.
606 */
607void usb_wakeup_notification(struct usb_device *hdev,
608 unsigned int portnum)
609{
610 struct usb_hub *hub;
611
612 if (!hdev)
613 return;
614
Lan Tianyuad493e52013-01-23 04:26:30 +0800615 hub = usb_hub_to_struct_hub(hdev);
Sarah Sharp4ee823b2011-11-14 18:00:01 -0800616 if (hub) {
617 set_bit(portnum, hub->wakeup_bits);
618 kick_khubd(hub);
619 }
620}
621EXPORT_SYMBOL_GPL(usb_wakeup_notification);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622
623/* completion function, fires on port status changes and various faults */
David Howells7d12e782006-10-05 14:55:46 +0100624static void hub_irq(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625{
Tobias Klauserec17cf12006-09-13 21:38:41 +0200626 struct usb_hub *hub = urb->context;
Alan Sterne0152682007-08-24 15:42:52 -0400627 int status = urb->status;
Roel Kluin71d27182009-03-13 12:19:18 +0100628 unsigned i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 unsigned long bits;
630
Alan Sterne0152682007-08-24 15:42:52 -0400631 switch (status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 case -ENOENT: /* synchronous unlink */
633 case -ECONNRESET: /* async unlink */
634 case -ESHUTDOWN: /* hardware going away */
635 return;
636
637 default: /* presumably an error */
638 /* Cause a hub reset after 10 consecutive errors */
Alan Sterne0152682007-08-24 15:42:52 -0400639 dev_dbg (hub->intfdev, "transfer --> %d\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 if ((++hub->nerrors < 10) || hub->error)
641 goto resubmit;
Alan Sterne0152682007-08-24 15:42:52 -0400642 hub->error = status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 /* FALL THROUGH */
Tobias Klauserec17cf12006-09-13 21:38:41 +0200644
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 /* let khubd handle things */
646 case 0: /* we got data: port status changed */
647 bits = 0;
648 for (i = 0; i < urb->actual_length; ++i)
649 bits |= ((unsigned long) ((*hub->buffer)[i]))
650 << (i*8);
651 hub->event_bits[0] = bits;
652 break;
653 }
654
655 hub->nerrors = 0;
656
657 /* Something happened, let khubd figure it out */
658 kick_khubd(hub);
659
660resubmit:
661 if (hub->quiescing)
662 return;
663
664 if ((status = usb_submit_urb (hub->urb, GFP_ATOMIC)) != 0
665 && status != -ENODEV && status != -EPERM)
666 dev_err (hub->intfdev, "resubmit --> %d\n", status);
667}
668
669/* USB 2.0 spec Section 11.24.2.3 */
670static inline int
671hub_clear_tt_buffer (struct usb_device *hdev, u16 devinfo, u16 tt)
672{
William Gulland2c7b8712013-06-27 16:10:20 -0700673 /* Need to clear both directions for control ep */
674 if (((devinfo >> 11) & USB_ENDPOINT_XFERTYPE_MASK) ==
675 USB_ENDPOINT_XFER_CONTROL) {
676 int status = usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
677 HUB_CLEAR_TT_BUFFER, USB_RT_PORT,
678 devinfo ^ 0x8000, tt, NULL, 0, 1000);
679 if (status)
680 return status;
681 }
Alan Sternc2f65952009-11-18 11:37:15 -0500682 return usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 HUB_CLEAR_TT_BUFFER, USB_RT_PORT, devinfo,
684 tt, NULL, 0, 1000);
685}
686
687/*
688 * enumeration blocks khubd for a long time. we use keventd instead, since
689 * long blocking there is the exception, not the rule. accordingly, HCDs
690 * talking to TTs must queue control transfers (not just bulk and iso), so
691 * both can talk to the same hub concurrently.
692 */
Alan Sterncb88a1b2009-06-29 10:43:32 -0400693static void hub_tt_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694{
David Howellsc4028952006-11-22 14:57:56 +0000695 struct usb_hub *hub =
Alan Sterncb88a1b2009-06-29 10:43:32 -0400696 container_of(work, struct usb_hub, tt.clear_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 unsigned long flags;
698
699 spin_lock_irqsave (&hub->tt.lock, flags);
Octavian Purdila3b6054d2012-10-01 22:21:12 +0300700 while (!list_empty(&hub->tt.clear_list)) {
H Hartley Sweetend0f830d2009-04-22 16:03:05 -0400701 struct list_head *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 struct usb_tt_clear *clear;
703 struct usb_device *hdev = hub->hdev;
Alan Sterncb88a1b2009-06-29 10:43:32 -0400704 const struct hc_driver *drv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 int status;
706
H Hartley Sweetend0f830d2009-04-22 16:03:05 -0400707 next = hub->tt.clear_list.next;
708 clear = list_entry (next, struct usb_tt_clear, clear_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 list_del (&clear->clear_list);
710
711 /* drop lock so HCD can concurrently report other TT errors */
712 spin_unlock_irqrestore (&hub->tt.lock, flags);
713 status = hub_clear_tt_buffer (hdev, clear->devinfo, clear->tt);
Alan Sterne9e88fb2013-03-27 16:14:01 -0400714 if (status && status != -ENODEV)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 dev_err (&hdev->dev,
716 "clear tt %d (%04x) error %d\n",
717 clear->tt, clear->devinfo, status);
Alan Sterncb88a1b2009-06-29 10:43:32 -0400718
719 /* Tell the HCD, even if the operation failed */
720 drv = clear->hcd->driver;
721 if (drv->clear_tt_buffer_complete)
722 (drv->clear_tt_buffer_complete)(clear->hcd, clear->ep);
723
Jesper Juhl1bc3c9e2005-04-18 17:39:34 -0700724 kfree(clear);
Alan Sterncb88a1b2009-06-29 10:43:32 -0400725 spin_lock_irqsave(&hub->tt.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 }
727 spin_unlock_irqrestore (&hub->tt.lock, flags);
728}
729
730/**
Lan Tianyu971fcd42013-01-23 04:26:29 +0800731 * usb_hub_set_port_power - control hub port's power state
Mathias Nyman413412612013-06-18 17:28:48 +0300732 * @hdev: USB device belonging to the usb hub
733 * @hub: target hub
Lan Tianyu971fcd42013-01-23 04:26:29 +0800734 * @port1: port index
735 * @set: expected status
736 *
737 * call this function to control port's power via setting or
738 * clearing the port's PORT_POWER feature.
Yacine Belkadi626f0902013-08-02 20:10:04 +0200739 *
740 * Return: 0 if successful. A negative error code otherwise.
Lan Tianyu971fcd42013-01-23 04:26:29 +0800741 */
Mathias Nyman413412612013-06-18 17:28:48 +0300742int usb_hub_set_port_power(struct usb_device *hdev, struct usb_hub *hub,
743 int port1, bool set)
Lan Tianyu971fcd42013-01-23 04:26:29 +0800744{
745 int ret;
Lan Tianyuad493e52013-01-23 04:26:30 +0800746 struct usb_port *port_dev = hub->ports[port1 - 1];
Lan Tianyu971fcd42013-01-23 04:26:29 +0800747
748 if (set)
749 ret = set_port_feature(hdev, port1, USB_PORT_FEAT_POWER);
750 else
Lan Tianyuad493e52013-01-23 04:26:30 +0800751 ret = usb_clear_port_feature(hdev, port1, USB_PORT_FEAT_POWER);
752
753 if (!ret)
754 port_dev->power_is_on = set;
Lan Tianyu971fcd42013-01-23 04:26:29 +0800755 return ret;
756}
757
758/**
Alan Sterncb88a1b2009-06-29 10:43:32 -0400759 * usb_hub_clear_tt_buffer - clear control/bulk TT state in high speed hub
760 * @urb: an URB associated with the failed or incomplete split transaction
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 *
762 * High speed HCDs use this to tell the hub driver that some split control or
763 * bulk transaction failed in a way that requires clearing internal state of
764 * a transaction translator. This is normally detected (and reported) from
765 * interrupt context.
766 *
767 * It may not be possible for that hub to handle additional full (or low)
768 * speed transactions until that state is fully cleared out.
Yacine Belkadi626f0902013-08-02 20:10:04 +0200769 *
770 * Return: 0 if successful. A negative error code otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 */
Alan Sterncb88a1b2009-06-29 10:43:32 -0400772int usb_hub_clear_tt_buffer(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773{
Alan Sterncb88a1b2009-06-29 10:43:32 -0400774 struct usb_device *udev = urb->dev;
775 int pipe = urb->pipe;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 struct usb_tt *tt = udev->tt;
777 unsigned long flags;
778 struct usb_tt_clear *clear;
779
780 /* we've got to cope with an arbitrary number of pending TT clears,
781 * since each TT has "at least two" buffers that can need it (and
782 * there can be many TTs per hub). even if they're uncommon.
783 */
Christoph Lameter54e6ecb2006-12-06 20:33:16 -0800784 if ((clear = kmalloc (sizeof *clear, GFP_ATOMIC)) == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 dev_err (&udev->dev, "can't save CLEAR_TT_BUFFER state\n");
786 /* FIXME recover somehow ... RESET_TT? */
Alan Sterncb88a1b2009-06-29 10:43:32 -0400787 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 }
789
790 /* info that CLEAR_TT_BUFFER needs */
791 clear->tt = tt->multi ? udev->ttport : 1;
792 clear->devinfo = usb_pipeendpoint (pipe);
793 clear->devinfo |= udev->devnum << 4;
794 clear->devinfo |= usb_pipecontrol (pipe)
795 ? (USB_ENDPOINT_XFER_CONTROL << 11)
796 : (USB_ENDPOINT_XFER_BULK << 11);
797 if (usb_pipein (pipe))
798 clear->devinfo |= 1 << 15;
Alan Sterncb88a1b2009-06-29 10:43:32 -0400799
800 /* info for completion callback */
801 clear->hcd = bus_to_hcd(udev->bus);
802 clear->ep = urb->ep;
803
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 /* tell keventd to clear state for this TT */
805 spin_lock_irqsave (&tt->lock, flags);
806 list_add_tail (&clear->clear_list, &tt->clear_list);
Alan Sterncb88a1b2009-06-29 10:43:32 -0400807 schedule_work(&tt->clear_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 spin_unlock_irqrestore (&tt->lock, flags);
Alan Sterncb88a1b2009-06-29 10:43:32 -0400809 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810}
Alan Sterncb88a1b2009-06-29 10:43:32 -0400811EXPORT_SYMBOL_GPL(usb_hub_clear_tt_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812
Alan Stern8520f382008-09-22 14:44:26 -0400813/* If do_delay is false, return the number of milliseconds the caller
814 * needs to delay.
815 */
816static unsigned hub_power_on(struct usb_hub *hub, bool do_delay)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817{
818 int port1;
David Brownellb7896962005-08-31 10:41:44 -0700819 unsigned pgood_delay = hub->descriptor->bPwrOn2PwrGood * 2;
Alan Stern8520f382008-09-22 14:44:26 -0400820 unsigned delay;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821
Alan Stern4489a572006-04-27 15:54:22 -0400822 /* Enable power on each port. Some hubs have reserved values
823 * of LPSM (> 2) in their descriptors, even though they are
824 * USB 2.0 hubs. Some hubs do not implement port-power switching
825 * but only emulate it. In all cases, the ports won't work
826 * unless we send these messages to the hub.
827 */
Dan Williams9262c192014-05-20 18:08:12 -0700828 if (hub_is_port_power_switchable(hub))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 dev_dbg(hub->intfdev, "enabling power on all ports\n");
Alan Stern4489a572006-04-27 15:54:22 -0400830 else
831 dev_dbg(hub->intfdev, "trying to enable port power on "
832 "non-switchable hub\n");
Krzysztof Mazur3bbc47d2013-08-22 14:49:40 +0200833 for (port1 = 1; port1 <= hub->hdev->maxchild; port1++)
Lan Tianyuad493e52013-01-23 04:26:30 +0800834 if (hub->ports[port1 - 1]->power_is_on)
835 set_port_feature(hub->hdev, port1, USB_PORT_FEAT_POWER);
836 else
837 usb_clear_port_feature(hub->hdev, port1,
838 USB_PORT_FEAT_POWER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839
David Brownellb7896962005-08-31 10:41:44 -0700840 /* Wait at least 100 msec for power to become stable */
Alan Stern8520f382008-09-22 14:44:26 -0400841 delay = max(pgood_delay, (unsigned) 100);
842 if (do_delay)
843 msleep(delay);
844 return delay;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845}
846
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847static int hub_hub_status(struct usb_hub *hub,
848 u16 *status, u16 *change)
849{
850 int ret;
851
Alan Sterndb90e7a2007-02-05 09:56:15 -0500852 mutex_lock(&hub->status_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 ret = get_hub_status(hub->hdev, &hub->status->hub);
Alan Sterne9e88fb2013-03-27 16:14:01 -0400854 if (ret < 0) {
855 if (ret != -ENODEV)
856 dev_err(hub->intfdev,
857 "%s failed (err = %d)\n", __func__, ret);
858 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 *status = le16_to_cpu(hub->status->hub.wHubStatus);
Matthias Beyer469271f2013-10-10 23:41:27 +0200860 *change = le16_to_cpu(hub->status->hub.wHubChange);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 ret = 0;
862 }
Alan Sterndb90e7a2007-02-05 09:56:15 -0500863 mutex_unlock(&hub->status_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 return ret;
865}
866
Sarah Sharp41e7e052012-11-14 16:42:32 -0800867static int hub_set_port_link_state(struct usb_hub *hub, int port1,
868 unsigned int link_status)
869{
870 return set_port_feature(hub->hdev,
871 port1 | (link_status << 3),
872 USB_PORT_FEAT_LINK_STATE);
873}
874
875/*
876 * If USB 3.0 ports are placed into the Disabled state, they will no longer
877 * detect any device connects or disconnects. This is generally not what the
878 * USB core wants, since it expects a disabled port to produce a port status
879 * change event when a new device connects.
880 *
881 * Instead, set the link state to Disabled, wait for the link to settle into
882 * that state, clear any change bits, and then put the port into the RxDetect
883 * state.
884 */
885static int hub_usb3_port_disable(struct usb_hub *hub, int port1)
886{
887 int ret;
888 int total_time;
889 u16 portchange, portstatus;
890
891 if (!hub_is_superspeed(hub->hdev))
892 return -EINVAL;
893
894 ret = hub_set_port_link_state(hub, port1, USB_SS_PORT_LS_SS_DISABLED);
Alan Sterne9e88fb2013-03-27 16:14:01 -0400895 if (ret)
Sarah Sharp41e7e052012-11-14 16:42:32 -0800896 return ret;
Sarah Sharp41e7e052012-11-14 16:42:32 -0800897
898 /* Wait for the link to enter the disabled state. */
899 for (total_time = 0; ; total_time += HUB_DEBOUNCE_STEP) {
900 ret = hub_port_status(hub, port1, &portstatus, &portchange);
901 if (ret < 0)
902 return ret;
903
904 if ((portstatus & USB_PORT_STAT_LINK_STATE) ==
905 USB_SS_PORT_LS_SS_DISABLED)
906 break;
907 if (total_time >= HUB_DEBOUNCE_TIMEOUT)
908 break;
909 msleep(HUB_DEBOUNCE_STEP);
910 }
911 if (total_time >= HUB_DEBOUNCE_TIMEOUT)
912 dev_warn(hub->intfdev, "Could not disable port %d after %d ms\n",
913 port1, total_time);
914
915 return hub_set_port_link_state(hub, port1, USB_SS_PORT_LS_RX_DETECT);
916}
917
Alan Stern8b28c752005-08-10 17:04:13 -0400918static int hub_port_disable(struct usb_hub *hub, int port1, int set_state)
919{
920 struct usb_device *hdev = hub->hdev;
Alan Stern0458d5b2007-05-04 11:52:20 -0400921 int ret = 0;
Alan Stern8b28c752005-08-10 17:04:13 -0400922
Lan Tianyuff823c792012-09-05 13:44:32 +0800923 if (hub->ports[port1 - 1]->child && set_state)
924 usb_set_device_state(hub->ports[port1 - 1]->child,
Alan Stern8b28c752005-08-10 17:04:13 -0400925 USB_STATE_NOTATTACHED);
Sarah Sharp41e7e052012-11-14 16:42:32 -0800926 if (!hub->error) {
927 if (hub_is_superspeed(hub->hdev))
928 ret = hub_usb3_port_disable(hub, port1);
929 else
Lan Tianyuad493e52013-01-23 04:26:30 +0800930 ret = usb_clear_port_feature(hdev, port1,
Sarah Sharp41e7e052012-11-14 16:42:32 -0800931 USB_PORT_FEAT_ENABLE);
932 }
Alan Sterne9e88fb2013-03-27 16:14:01 -0400933 if (ret && ret != -ENODEV)
Alan Stern8b28c752005-08-10 17:04:13 -0400934 dev_err(hub->intfdev, "cannot disable port %d (err = %d)\n",
Alan Stern0458d5b2007-05-04 11:52:20 -0400935 port1, ret);
Alan Stern8b28c752005-08-10 17:04:13 -0400936 return ret;
937}
938
Alan Stern0458d5b2007-05-04 11:52:20 -0400939/*
Justin P. Mattock6d42fcd2011-02-26 20:33:56 -0800940 * Disable a port and mark a logical connect-change event, so that some
Alan Stern0458d5b2007-05-04 11:52:20 -0400941 * time later khubd will disconnect() any existing usb_device on the port
942 * and will re-enumerate if there actually is a device attached.
943 */
944static void hub_port_logical_disconnect(struct usb_hub *hub, int port1)
945{
946 dev_dbg(hub->intfdev, "logical disconnect on port %d\n", port1);
947 hub_port_disable(hub, port1, 1);
948
949 /* FIXME let caller ask to power down the port:
950 * - some devices won't enumerate without a VBUS power cycle
951 * - SRP saves power that way
952 * - ... new call, TBD ...
953 * That's easy if this hub can switch power per-port, and
954 * khubd reactivates the port later (timer, SRP, etc).
955 * Powerdown must be optional, because of reset/DFU.
956 */
957
958 set_bit(port1, hub->change_bits);
Matthias Beyer469271f2013-10-10 23:41:27 +0200959 kick_khubd(hub);
Alan Stern0458d5b2007-05-04 11:52:20 -0400960}
961
Alan Stern253e0572009-10-27 15:20:13 -0400962/**
963 * usb_remove_device - disable a device's port on its parent hub
964 * @udev: device to be disabled and removed
965 * Context: @udev locked, must be able to sleep.
966 *
967 * After @udev's port has been disabled, khubd is notified and it will
968 * see that the device has been disconnected. When the device is
969 * physically unplugged and something is plugged in, the events will
970 * be received and processed normally.
Yacine Belkadi626f0902013-08-02 20:10:04 +0200971 *
972 * Return: 0 if successful. A negative error code otherwise.
Alan Stern253e0572009-10-27 15:20:13 -0400973 */
974int usb_remove_device(struct usb_device *udev)
975{
976 struct usb_hub *hub;
977 struct usb_interface *intf;
978
979 if (!udev->parent) /* Can't remove a root hub */
980 return -EINVAL;
Lan Tianyuad493e52013-01-23 04:26:30 +0800981 hub = usb_hub_to_struct_hub(udev->parent);
Alan Stern253e0572009-10-27 15:20:13 -0400982 intf = to_usb_interface(hub->intfdev);
983
984 usb_autopm_get_interface(intf);
985 set_bit(udev->portnum, hub->removed_bits);
986 hub_port_logical_disconnect(hub, udev->portnum);
987 usb_autopm_put_interface(intf);
988 return 0;
989}
990
Alan Stern6ee0b272008-04-28 11:06:42 -0400991enum hub_activation_type {
Alan Stern8e4ceb32009-12-07 13:01:37 -0500992 HUB_INIT, HUB_INIT2, HUB_INIT3, /* INITs must come first */
Alan Stern8520f382008-09-22 14:44:26 -0400993 HUB_POST_RESET, HUB_RESUME, HUB_RESET_RESUME,
Alan Stern6ee0b272008-04-28 11:06:42 -0400994};
Alan Stern5e6effa2008-03-03 15:15:51 -0500995
Alan Stern8520f382008-09-22 14:44:26 -0400996static void hub_init_func2(struct work_struct *ws);
997static void hub_init_func3(struct work_struct *ws);
998
Alan Sternf2835212008-04-28 11:07:17 -0400999static void hub_activate(struct usb_hub *hub, enum hub_activation_type type)
Alan Stern5e6effa2008-03-03 15:15:51 -05001000{
1001 struct usb_device *hdev = hub->hdev;
Sarah Sharp653a39d2010-12-23 11:12:42 -08001002 struct usb_hcd *hcd;
1003 int ret;
Alan Stern5e6effa2008-03-03 15:15:51 -05001004 int port1;
Alan Sternf2835212008-04-28 11:07:17 -04001005 int status;
Alan Stern948fea32008-04-28 11:07:07 -04001006 bool need_debounce_delay = false;
Alan Stern8520f382008-09-22 14:44:26 -04001007 unsigned delay;
1008
1009 /* Continue a partial initialization */
1010 if (type == HUB_INIT2)
1011 goto init2;
1012 if (type == HUB_INIT3)
1013 goto init3;
Alan Stern5e6effa2008-03-03 15:15:51 -05001014
Elric Fua45aa3b2012-02-18 13:32:27 +08001015 /* The superspeed hub except for root hub has to use Hub Depth
1016 * value as an offset into the route string to locate the bits
1017 * it uses to determine the downstream port number. So hub driver
1018 * should send a set hub depth request to superspeed hub after
1019 * the superspeed hub is set configuration in initialization or
1020 * reset procedure.
1021 *
1022 * After a resume, port power should still be on.
Alan Sternf2835212008-04-28 11:07:17 -04001023 * For any other type of activation, turn it on.
1024 */
Alan Stern8520f382008-09-22 14:44:26 -04001025 if (type != HUB_RESUME) {
Elric Fua45aa3b2012-02-18 13:32:27 +08001026 if (hdev->parent && hub_is_superspeed(hdev)) {
1027 ret = usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
1028 HUB_SET_DEPTH, USB_RT_HUB,
1029 hdev->level - 1, 0, NULL, 0,
1030 USB_CTRL_SET_TIMEOUT);
1031 if (ret < 0)
1032 dev_err(hub->intfdev,
1033 "set hub depth failed\n");
1034 }
Alan Stern8520f382008-09-22 14:44:26 -04001035
1036 /* Speed up system boot by using a delayed_work for the
1037 * hub's initial power-up delays. This is pretty awkward
1038 * and the implementation looks like a home-brewed sort of
1039 * setjmp/longjmp, but it saves at least 100 ms for each
1040 * root hub (assuming usbcore is compiled into the kernel
1041 * rather than as a module). It adds up.
1042 *
1043 * This can't be done for HUB_RESUME or HUB_RESET_RESUME
1044 * because for those activation types the ports have to be
1045 * operational when we return. In theory this could be done
1046 * for HUB_POST_RESET, but it's easier not to.
1047 */
1048 if (type == HUB_INIT) {
1049 delay = hub_power_on(hub, false);
Tejun Heo77fa83c2014-03-07 10:24:48 -05001050 INIT_DELAYED_WORK(&hub->init_work, hub_init_func2);
Shaibal Dutta22f6a0f2014-02-01 19:16:46 -08001051 queue_delayed_work(system_power_efficient_wq,
1052 &hub->init_work,
Alan Stern8520f382008-09-22 14:44:26 -04001053 msecs_to_jiffies(delay));
Alan Stern61fbeba2008-10-27 12:07:44 -04001054
1055 /* Suppress autosuspend until init is done */
Alan Stern8e4ceb32009-12-07 13:01:37 -05001056 usb_autopm_get_interface_no_resume(
1057 to_usb_interface(hub->intfdev));
Alan Stern8520f382008-09-22 14:44:26 -04001058 return; /* Continues at init2: below */
Sarah Sharp653a39d2010-12-23 11:12:42 -08001059 } else if (type == HUB_RESET_RESUME) {
1060 /* The internal host controller state for the hub device
1061 * may be gone after a host power loss on system resume.
1062 * Update the device's info so the HW knows it's a hub.
1063 */
1064 hcd = bus_to_hcd(hdev->bus);
1065 if (hcd->driver->update_hub_device) {
1066 ret = hcd->driver->update_hub_device(hcd, hdev,
1067 &hub->tt, GFP_NOIO);
1068 if (ret < 0) {
1069 dev_err(hub->intfdev, "Host not "
1070 "accepting hub info "
1071 "update.\n");
1072 dev_err(hub->intfdev, "LS/FS devices "
1073 "and hubs may not work "
1074 "under this hub\n.");
1075 }
1076 }
1077 hub_power_on(hub, true);
Alan Stern8520f382008-09-22 14:44:26 -04001078 } else {
1079 hub_power_on(hub, true);
1080 }
1081 }
1082 init2:
Alan Sternf2835212008-04-28 11:07:17 -04001083
Alan Stern6ee0b272008-04-28 11:06:42 -04001084 /* Check each port and set hub->change_bits to let khubd know
1085 * which ports need attention.
Alan Stern5e6effa2008-03-03 15:15:51 -05001086 */
1087 for (port1 = 1; port1 <= hdev->maxchild; ++port1) {
Lan Tianyuff823c792012-09-05 13:44:32 +08001088 struct usb_device *udev = hub->ports[port1 - 1]->child;
Alan Stern5e6effa2008-03-03 15:15:51 -05001089 u16 portstatus, portchange;
1090
Alan Stern6ee0b272008-04-28 11:06:42 -04001091 portstatus = portchange = 0;
1092 status = hub_port_status(hub, port1, &portstatus, &portchange);
1093 if (udev || (portstatus & USB_PORT_STAT_CONNECTION))
1094 dev_dbg(hub->intfdev,
1095 "port %d: status %04x change %04x\n",
1096 port1, portstatus, portchange);
Alan Stern5e6effa2008-03-03 15:15:51 -05001097
Alan Stern6ee0b272008-04-28 11:06:42 -04001098 /* After anything other than HUB_RESUME (i.e., initialization
1099 * or any sort of reset), every port should be disabled.
1100 * Unconnected ports should likewise be disabled (paranoia),
1101 * and so should ports for which we have no usb_device.
Alan Stern5e6effa2008-03-03 15:15:51 -05001102 */
Alan Stern6ee0b272008-04-28 11:06:42 -04001103 if ((portstatus & USB_PORT_STAT_ENABLE) && (
1104 type != HUB_RESUME ||
1105 !(portstatus & USB_PORT_STAT_CONNECTION) ||
1106 !udev ||
1107 udev->state == USB_STATE_NOTATTACHED)) {
Andiry Xu9f0a6cd2010-05-07 18:09:27 +08001108 /*
1109 * USB3 protocol ports will automatically transition
1110 * to Enabled state when detect an USB3.0 device attach.
Dan Williamsfd1ac4c2013-10-07 11:58:20 -07001111 * Do not disable USB3 protocol ports, just pretend
1112 * power was lost
Andiry Xu9f0a6cd2010-05-07 18:09:27 +08001113 */
Dan Williamsfd1ac4c2013-10-07 11:58:20 -07001114 portstatus &= ~USB_PORT_STAT_ENABLE;
1115 if (!hub_is_superspeed(hdev))
Lan Tianyuad493e52013-01-23 04:26:30 +08001116 usb_clear_port_feature(hdev, port1,
Andiry Xu9f0a6cd2010-05-07 18:09:27 +08001117 USB_PORT_FEAT_ENABLE);
Alan Stern6ee0b272008-04-28 11:06:42 -04001118 }
1119
Alan Stern948fea32008-04-28 11:07:07 -04001120 /* Clear status-change flags; we'll debounce later */
1121 if (portchange & USB_PORT_STAT_C_CONNECTION) {
1122 need_debounce_delay = true;
Lan Tianyuad493e52013-01-23 04:26:30 +08001123 usb_clear_port_feature(hub->hdev, port1,
Alan Stern948fea32008-04-28 11:07:07 -04001124 USB_PORT_FEAT_C_CONNECTION);
1125 }
1126 if (portchange & USB_PORT_STAT_C_ENABLE) {
1127 need_debounce_delay = true;
Lan Tianyuad493e52013-01-23 04:26:30 +08001128 usb_clear_port_feature(hub->hdev, port1,
Alan Stern948fea32008-04-28 11:07:07 -04001129 USB_PORT_FEAT_C_ENABLE);
1130 }
Julius Wernere92aee32013-10-15 17:45:00 -07001131 if (portchange & USB_PORT_STAT_C_RESET) {
1132 need_debounce_delay = true;
1133 usb_clear_port_feature(hub->hdev, port1,
1134 USB_PORT_FEAT_C_RESET);
1135 }
Don Zickus79c3dd82011-11-03 09:07:18 -04001136 if ((portchange & USB_PORT_STAT_C_BH_RESET) &&
1137 hub_is_superspeed(hub->hdev)) {
1138 need_debounce_delay = true;
Lan Tianyuad493e52013-01-23 04:26:30 +08001139 usb_clear_port_feature(hub->hdev, port1,
Don Zickus79c3dd82011-11-03 09:07:18 -04001140 USB_PORT_FEAT_C_BH_PORT_RESET);
1141 }
Alan Stern253e0572009-10-27 15:20:13 -04001142 /* We can forget about a "removed" device when there's a
1143 * physical disconnect or the connect status changes.
1144 */
1145 if (!(portstatus & USB_PORT_STAT_CONNECTION) ||
1146 (portchange & USB_PORT_STAT_C_CONNECTION))
1147 clear_bit(port1, hub->removed_bits);
1148
Alan Stern6ee0b272008-04-28 11:06:42 -04001149 if (!udev || udev->state == USB_STATE_NOTATTACHED) {
1150 /* Tell khubd to disconnect the device or
1151 * check for a new connection
1152 */
Shen Guang08d1dec2014-01-08 14:45:42 +08001153 if (udev || (portstatus & USB_PORT_STAT_CONNECTION) ||
1154 (portstatus & USB_PORT_STAT_OVERCURRENT))
Alan Stern6ee0b272008-04-28 11:06:42 -04001155 set_bit(port1, hub->change_bits);
1156
1157 } else if (portstatus & USB_PORT_STAT_ENABLE) {
Sarah Sharp72937e12012-01-24 11:46:50 -08001158 bool port_resumed = (portstatus &
1159 USB_PORT_STAT_LINK_STATE) ==
1160 USB_SS_PORT_LS_U0;
Alan Stern6ee0b272008-04-28 11:06:42 -04001161 /* The power session apparently survived the resume.
1162 * If there was an overcurrent or suspend change
1163 * (i.e., remote wakeup request), have khubd
Sarah Sharp72937e12012-01-24 11:46:50 -08001164 * take care of it. Look at the port link state
1165 * for USB 3.0 hubs, since they don't have a suspend
1166 * change bit, and they don't set the port link change
1167 * bit on device-initiated resume.
Alan Stern6ee0b272008-04-28 11:06:42 -04001168 */
Sarah Sharp72937e12012-01-24 11:46:50 -08001169 if (portchange || (hub_is_superspeed(hub->hdev) &&
1170 port_resumed))
Alan Stern6ee0b272008-04-28 11:06:42 -04001171 set_bit(port1, hub->change_bits);
1172
1173 } else if (udev->persist_enabled) {
Lan Tianyuad493e52013-01-23 04:26:30 +08001174 struct usb_port *port_dev = hub->ports[port1 - 1];
1175
Alan Stern6ee0b272008-04-28 11:06:42 -04001176#ifdef CONFIG_PM
Alan Stern5e6effa2008-03-03 15:15:51 -05001177 udev->reset_resume = 1;
Alan Stern6ee0b272008-04-28 11:06:42 -04001178#endif
Lan Tianyuad493e52013-01-23 04:26:30 +08001179 /* Don't set the change_bits when the device
1180 * was powered off.
1181 */
1182 if (port_dev->power_is_on)
1183 set_bit(port1, hub->change_bits);
Alan Stern8808f002008-04-28 11:06:55 -04001184
Alan Stern6ee0b272008-04-28 11:06:42 -04001185 } else {
1186 /* The power session is gone; tell khubd */
1187 usb_set_device_state(udev, USB_STATE_NOTATTACHED);
1188 set_bit(port1, hub->change_bits);
Alan Stern5e6effa2008-03-03 15:15:51 -05001189 }
Alan Stern5e6effa2008-03-03 15:15:51 -05001190 }
1191
Alan Stern948fea32008-04-28 11:07:07 -04001192 /* If no port-status-change flags were set, we don't need any
1193 * debouncing. If flags were set we can try to debounce the
1194 * ports all at once right now, instead of letting khubd do them
1195 * one at a time later on.
1196 *
1197 * If any port-status changes do occur during this delay, khubd
1198 * will see them later and handle them normally.
1199 */
Alan Stern8520f382008-09-22 14:44:26 -04001200 if (need_debounce_delay) {
1201 delay = HUB_DEBOUNCE_STABLE;
Alan Sternf2835212008-04-28 11:07:17 -04001202
Alan Stern8520f382008-09-22 14:44:26 -04001203 /* Don't do a long sleep inside a workqueue routine */
1204 if (type == HUB_INIT2) {
Tejun Heo77fa83c2014-03-07 10:24:48 -05001205 INIT_DELAYED_WORK(&hub->init_work, hub_init_func3);
Shaibal Dutta22f6a0f2014-02-01 19:16:46 -08001206 queue_delayed_work(system_power_efficient_wq,
1207 &hub->init_work,
Alan Stern8520f382008-09-22 14:44:26 -04001208 msecs_to_jiffies(delay));
1209 return; /* Continues at init3: below */
1210 } else {
1211 msleep(delay);
1212 }
1213 }
1214 init3:
Alan Sternf2835212008-04-28 11:07:17 -04001215 hub->quiescing = 0;
1216
1217 status = usb_submit_urb(hub->urb, GFP_NOIO);
1218 if (status < 0)
1219 dev_err(hub->intfdev, "activate --> %d\n", status);
1220 if (hub->has_indicators && blinkenlights)
Shaibal Dutta22f6a0f2014-02-01 19:16:46 -08001221 queue_delayed_work(system_power_efficient_wq,
1222 &hub->leds, LED_CYCLE_PERIOD);
Alan Sternf2835212008-04-28 11:07:17 -04001223
1224 /* Scan all ports that need attention */
1225 kick_khubd(hub);
Alan Stern8e4ceb32009-12-07 13:01:37 -05001226
1227 /* Allow autosuspend if it was suppressed */
1228 if (type <= HUB_INIT3)
1229 usb_autopm_put_interface_async(to_usb_interface(hub->intfdev));
Alan Stern5e6effa2008-03-03 15:15:51 -05001230}
1231
Alan Stern8520f382008-09-22 14:44:26 -04001232/* Implement the continuations for the delays above */
1233static void hub_init_func2(struct work_struct *ws)
1234{
1235 struct usb_hub *hub = container_of(ws, struct usb_hub, init_work.work);
1236
1237 hub_activate(hub, HUB_INIT2);
1238}
1239
1240static void hub_init_func3(struct work_struct *ws)
1241{
1242 struct usb_hub *hub = container_of(ws, struct usb_hub, init_work.work);
1243
1244 hub_activate(hub, HUB_INIT3);
1245}
1246
Alan Stern43303542008-04-28 11:07:31 -04001247enum hub_quiescing_type {
1248 HUB_DISCONNECT, HUB_PRE_RESET, HUB_SUSPEND
1249};
1250
1251static void hub_quiesce(struct usb_hub *hub, enum hub_quiescing_type type)
1252{
1253 struct usb_device *hdev = hub->hdev;
1254 int i;
1255
Alan Stern8520f382008-09-22 14:44:26 -04001256 cancel_delayed_work_sync(&hub->init_work);
1257
Alan Stern43303542008-04-28 11:07:31 -04001258 /* khubd and related activity won't re-trigger */
1259 hub->quiescing = 1;
1260
1261 if (type != HUB_SUSPEND) {
1262 /* Disconnect all the children */
1263 for (i = 0; i < hdev->maxchild; ++i) {
Lan Tianyuff823c792012-09-05 13:44:32 +08001264 if (hub->ports[i]->child)
1265 usb_disconnect(&hub->ports[i]->child);
Alan Stern43303542008-04-28 11:07:31 -04001266 }
1267 }
1268
1269 /* Stop khubd and related activity */
1270 usb_kill_urb(hub->urb);
1271 if (hub->has_indicators)
1272 cancel_delayed_work_sync(&hub->leds);
1273 if (hub->tt.hub)
Octavian Purdila036546b2012-10-23 11:33:12 +03001274 flush_work(&hub->tt.clear_work);
Alan Stern43303542008-04-28 11:07:31 -04001275}
1276
Alan Stern600856c2014-05-20 18:08:07 -07001277static void hub_pm_barrier_for_all_ports(struct usb_hub *hub)
1278{
1279 int i;
1280
1281 for (i = 0; i < hub->hdev->maxchild; ++i)
1282 pm_runtime_barrier(&hub->ports[i]->dev);
1283}
1284
Alan Stern3eb14912008-03-03 15:15:43 -05001285/* caller has locked the hub device */
1286static int hub_pre_reset(struct usb_interface *intf)
1287{
1288 struct usb_hub *hub = usb_get_intfdata(intf);
1289
Alan Stern43303542008-04-28 11:07:31 -04001290 hub_quiesce(hub, HUB_PRE_RESET);
Alan Stern600856c2014-05-20 18:08:07 -07001291 hub->in_reset = 1;
1292 hub_pm_barrier_for_all_ports(hub);
Alan Sternf07600c2007-05-30 15:38:16 -04001293 return 0;
Alan Stern7d069b72005-11-18 12:06:34 -05001294}
1295
1296/* caller has locked the hub device */
Alan Sternf07600c2007-05-30 15:38:16 -04001297static int hub_post_reset(struct usb_interface *intf)
Alan Stern7d069b72005-11-18 12:06:34 -05001298{
Alan Stern7de18d82006-06-01 13:37:24 -04001299 struct usb_hub *hub = usb_get_intfdata(intf);
1300
Alan Stern600856c2014-05-20 18:08:07 -07001301 hub->in_reset = 0;
1302 hub_pm_barrier_for_all_ports(hub);
Alan Sternf2835212008-04-28 11:07:17 -04001303 hub_activate(hub, HUB_POST_RESET);
Alan Sternf07600c2007-05-30 15:38:16 -04001304 return 0;
Alan Stern7d069b72005-11-18 12:06:34 -05001305}
1306
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307static int hub_configure(struct usb_hub *hub,
1308 struct usb_endpoint_descriptor *endpoint)
1309{
Sarah Sharpb356b7c2009-09-04 10:53:24 -07001310 struct usb_hcd *hcd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 struct usb_device *hdev = hub->hdev;
1312 struct device *hub_dev = hub->intfdev;
1313 u16 hubstatus, hubchange;
Greg Kroah-Hartman74ad9bd2005-06-20 21:15:16 -07001314 u16 wHubCharacteristics;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 unsigned int pipe;
Lan Tianyufa2a9562012-09-05 13:44:31 +08001316 int maxp, ret, i;
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001317 char *message = "out of memory";
Sebastian Andrzej Siewior430ee582012-12-18 15:25:47 +01001318 unsigned unit_load;
1319 unsigned full_load;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320
Alan Sternd697cdd2009-10-27 15:18:46 -04001321 hub->buffer = kmalloc(sizeof(*hub->buffer), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 if (!hub->buffer) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 ret = -ENOMEM;
1324 goto fail;
1325 }
1326
1327 hub->status = kmalloc(sizeof(*hub->status), GFP_KERNEL);
1328 if (!hub->status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 ret = -ENOMEM;
1330 goto fail;
1331 }
Alan Sterndb90e7a2007-02-05 09:56:15 -05001332 mutex_init(&hub->status_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333
1334 hub->descriptor = kmalloc(sizeof(*hub->descriptor), GFP_KERNEL);
1335 if (!hub->descriptor) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 ret = -ENOMEM;
1337 goto fail;
1338 }
1339
1340 /* Request the entire hub descriptor.
1341 * hub->descriptor can handle USB_MAXCHILDREN ports,
1342 * but the hub can/will return fewer bytes here.
1343 */
John Youndbe79bb2001-09-17 00:00:00 -07001344 ret = get_hub_descriptor(hdev, hub->descriptor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 if (ret < 0) {
1346 message = "can't read hub descriptor";
1347 goto fail;
1348 } else if (hub->descriptor->bNbrPorts > USB_MAXCHILDREN) {
1349 message = "hub has too many ports!";
1350 ret = -ENODEV;
1351 goto fail;
David Linares769d73682013-03-25 10:50:27 +00001352 } else if (hub->descriptor->bNbrPorts == 0) {
1353 message = "hub doesn't have any ports!";
1354 ret = -ENODEV;
1355 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 }
1357
1358 hdev->maxchild = hub->descriptor->bNbrPorts;
1359 dev_info (hub_dev, "%d port%s detected\n", hdev->maxchild,
1360 (hdev->maxchild == 1) ? "" : "s");
1361
Lan Tianyufa2a9562012-09-05 13:44:31 +08001362 hub->ports = kzalloc(hdev->maxchild * sizeof(struct usb_port *),
1363 GFP_KERNEL);
Lan Tianyuff823c792012-09-05 13:44:32 +08001364 if (!hub->ports) {
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001365 ret = -ENOMEM;
1366 goto fail;
1367 }
1368
Greg Kroah-Hartman74ad9bd2005-06-20 21:15:16 -07001369 wHubCharacteristics = le16_to_cpu(hub->descriptor->wHubCharacteristics);
Sebastian Andrzej Siewior430ee582012-12-18 15:25:47 +01001370 if (hub_is_superspeed(hdev)) {
1371 unit_load = 150;
1372 full_load = 900;
1373 } else {
1374 unit_load = 100;
1375 full_load = 500;
1376 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377
John Youndbe79bb2001-09-17 00:00:00 -07001378 /* FIXME for USB 3.0, skip for now */
1379 if ((wHubCharacteristics & HUB_CHAR_COMPOUND) &&
1380 !(hub_is_superspeed(hdev))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381 int i;
Matthias Beyer469271f2013-10-10 23:41:27 +02001382 char portstr[USB_MAXCHILDREN + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383
1384 for (i = 0; i < hdev->maxchild; i++)
John Youndbe79bb2001-09-17 00:00:00 -07001385 portstr[i] = hub->descriptor->u.hs.DeviceRemovable
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 [((i + 1) / 8)] & (1 << ((i + 1) % 8))
1387 ? 'F' : 'R';
1388 portstr[hdev->maxchild] = 0;
1389 dev_dbg(hub_dev, "compound device; port removable status: %s\n", portstr);
1390 } else
1391 dev_dbg(hub_dev, "standalone hub\n");
1392
Greg Kroah-Hartman74ad9bd2005-06-20 21:15:16 -07001393 switch (wHubCharacteristics & HUB_CHAR_LPSM) {
Aman Deep7bf01182011-12-08 12:05:22 +05301394 case HUB_CHAR_COMMON_LPSM:
1395 dev_dbg(hub_dev, "ganged power switching\n");
1396 break;
1397 case HUB_CHAR_INDV_PORT_LPSM:
1398 dev_dbg(hub_dev, "individual port power switching\n");
1399 break;
1400 case HUB_CHAR_NO_LPSM:
1401 case HUB_CHAR_LPSM:
1402 dev_dbg(hub_dev, "no power switching (usb 1.0)\n");
1403 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 }
1405
Greg Kroah-Hartman74ad9bd2005-06-20 21:15:16 -07001406 switch (wHubCharacteristics & HUB_CHAR_OCPM) {
Aman Deep7bf01182011-12-08 12:05:22 +05301407 case HUB_CHAR_COMMON_OCPM:
1408 dev_dbg(hub_dev, "global over-current protection\n");
1409 break;
1410 case HUB_CHAR_INDV_PORT_OCPM:
1411 dev_dbg(hub_dev, "individual port over-current protection\n");
1412 break;
1413 case HUB_CHAR_NO_OCPM:
1414 case HUB_CHAR_OCPM:
1415 dev_dbg(hub_dev, "no over-current protection\n");
1416 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417 }
1418
1419 spin_lock_init (&hub->tt.lock);
1420 INIT_LIST_HEAD (&hub->tt.clear_list);
Alan Sterncb88a1b2009-06-29 10:43:32 -04001421 INIT_WORK(&hub->tt.clear_work, hub_tt_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 switch (hdev->descriptor.bDeviceProtocol) {
Aman Deep7bf01182011-12-08 12:05:22 +05301423 case USB_HUB_PR_FS:
1424 break;
1425 case USB_HUB_PR_HS_SINGLE_TT:
1426 dev_dbg(hub_dev, "Single TT\n");
1427 hub->tt.hub = hdev;
1428 break;
1429 case USB_HUB_PR_HS_MULTI_TT:
1430 ret = usb_set_interface(hdev, 0, 1);
1431 if (ret == 0) {
1432 dev_dbg(hub_dev, "TT per port\n");
1433 hub->tt.multi = 1;
1434 } else
1435 dev_err(hub_dev, "Using single TT (err %d)\n",
1436 ret);
1437 hub->tt.hub = hdev;
1438 break;
1439 case USB_HUB_PR_SS:
1440 /* USB 3.0 hubs don't have a TT */
1441 break;
1442 default:
1443 dev_dbg(hub_dev, "Unrecognized hub protocol %d\n",
1444 hdev->descriptor.bDeviceProtocol);
1445 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 }
1447
david-b@pacbell.nete09711a2005-08-13 18:41:04 -07001448 /* Note 8 FS bit times == (8 bits / 12000000 bps) ~= 666ns */
Greg Kroah-Hartman74ad9bd2005-06-20 21:15:16 -07001449 switch (wHubCharacteristics & HUB_CHAR_TTTT) {
Matthias Beyer469271f2013-10-10 23:41:27 +02001450 case HUB_TTTT_8_BITS:
1451 if (hdev->descriptor.bDeviceProtocol != 0) {
1452 hub->tt.think_time = 666;
david-b@pacbell.nete09711a2005-08-13 18:41:04 -07001453 dev_dbg(hub_dev, "TT requires at most %d "
1454 "FS bit times (%d ns)\n",
Matthias Beyer469271f2013-10-10 23:41:27 +02001455 8, hub->tt.think_time);
1456 }
1457 break;
1458 case HUB_TTTT_16_BITS:
1459 hub->tt.think_time = 666 * 2;
1460 dev_dbg(hub_dev, "TT requires at most %d "
1461 "FS bit times (%d ns)\n",
1462 16, hub->tt.think_time);
1463 break;
1464 case HUB_TTTT_24_BITS:
1465 hub->tt.think_time = 666 * 3;
1466 dev_dbg(hub_dev, "TT requires at most %d "
1467 "FS bit times (%d ns)\n",
1468 24, hub->tt.think_time);
1469 break;
1470 case HUB_TTTT_32_BITS:
1471 hub->tt.think_time = 666 * 4;
1472 dev_dbg(hub_dev, "TT requires at most %d "
1473 "FS bit times (%d ns)\n",
1474 32, hub->tt.think_time);
1475 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 }
1477
1478 /* probe() zeroes hub->indicator[] */
Greg Kroah-Hartman74ad9bd2005-06-20 21:15:16 -07001479 if (wHubCharacteristics & HUB_CHAR_PORTIND) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480 hub->has_indicators = 1;
1481 dev_dbg(hub_dev, "Port indicators are supported\n");
1482 }
1483
1484 dev_dbg(hub_dev, "power on to power good time: %dms\n",
1485 hub->descriptor->bPwrOn2PwrGood * 2);
1486
1487 /* power budgeting mostly matters with bus-powered hubs,
1488 * and battery-powered root hubs (may provide just 8 mA).
1489 */
1490 ret = usb_get_status(hdev, USB_RECIP_DEVICE, 0, &hubstatus);
Alan Stern15b73362013-07-30 15:35:40 -04001491 if (ret) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 message = "can't get hub status";
1493 goto fail;
1494 }
Sebastian Andrzej Siewior430ee582012-12-18 15:25:47 +01001495 hcd = bus_to_hcd(hdev->bus);
Alan Stern7d35b922005-04-25 11:18:32 -04001496 if (hdev == hdev->bus->root_hub) {
Sebastian Andrzej Siewior430ee582012-12-18 15:25:47 +01001497 if (hcd->power_budget > 0)
1498 hdev->bus_mA = hcd->power_budget;
1499 else
1500 hdev->bus_mA = full_load * hdev->maxchild;
1501 if (hdev->bus_mA >= full_load)
1502 hub->mA_per_port = full_load;
Alan Stern55c52712005-11-23 12:03:12 -05001503 else {
1504 hub->mA_per_port = hdev->bus_mA;
1505 hub->limited_power = 1;
1506 }
Alan Stern7d35b922005-04-25 11:18:32 -04001507 } else if ((hubstatus & (1 << USB_DEVICE_SELF_POWERED)) == 0) {
Sebastian Andrzej Siewior430ee582012-12-18 15:25:47 +01001508 int remaining = hdev->bus_mA -
1509 hub->descriptor->bHubContrCurrent;
1510
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 dev_dbg(hub_dev, "hub controller current requirement: %dmA\n",
1512 hub->descriptor->bHubContrCurrent);
Alan Stern55c52712005-11-23 12:03:12 -05001513 hub->limited_power = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514
Sebastian Andrzej Siewior430ee582012-12-18 15:25:47 +01001515 if (remaining < hdev->maxchild * unit_load)
1516 dev_warn(hub_dev,
Alan Stern55c52712005-11-23 12:03:12 -05001517 "insufficient power available "
1518 "to use all downstream ports\n");
Sebastian Andrzej Siewior430ee582012-12-18 15:25:47 +01001519 hub->mA_per_port = unit_load; /* 7.2.1 */
1520
Alan Stern55c52712005-11-23 12:03:12 -05001521 } else { /* Self-powered external hub */
1522 /* FIXME: What about battery-powered external hubs that
1523 * provide less current per port? */
Sebastian Andrzej Siewior430ee582012-12-18 15:25:47 +01001524 hub->mA_per_port = full_load;
Alan Stern55c52712005-11-23 12:03:12 -05001525 }
Sebastian Andrzej Siewior430ee582012-12-18 15:25:47 +01001526 if (hub->mA_per_port < full_load)
Alan Stern55c52712005-11-23 12:03:12 -05001527 dev_dbg(hub_dev, "%umA bus power budget for each child\n",
1528 hub->mA_per_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529
Sarah Sharpb356b7c2009-09-04 10:53:24 -07001530 /* Update the HCD's internal representation of this hub before khubd
1531 * starts getting port status changes for devices under the hub.
1532 */
Sarah Sharpb356b7c2009-09-04 10:53:24 -07001533 if (hcd->driver->update_hub_device) {
1534 ret = hcd->driver->update_hub_device(hcd, hdev,
1535 &hub->tt, GFP_KERNEL);
1536 if (ret < 0) {
1537 message = "can't update HCD hub info";
1538 goto fail;
1539 }
1540 }
1541
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542 ret = hub_hub_status(hub, &hubstatus, &hubchange);
1543 if (ret < 0) {
1544 message = "can't get hub status";
1545 goto fail;
1546 }
1547
1548 /* local power status reports aren't always correct */
1549 if (hdev->actconfig->desc.bmAttributes & USB_CONFIG_ATT_SELFPOWER)
1550 dev_dbg(hub_dev, "local power source is %s\n",
1551 (hubstatus & HUB_STATUS_LOCAL_POWER)
1552 ? "lost (inactive)" : "good");
1553
Greg Kroah-Hartman74ad9bd2005-06-20 21:15:16 -07001554 if ((wHubCharacteristics & HUB_CHAR_OCPM) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555 dev_dbg(hub_dev, "%sover-current condition exists\n",
1556 (hubstatus & HUB_STATUS_OVERCURRENT) ? "" : "no ");
1557
inaky@linux.intel.com88fafff2006-10-11 20:05:59 -07001558 /* set up the interrupt endpoint
1559 * We use the EP's maxpacket size instead of (PORTS+1+7)/8
1560 * bytes as USB2.0[11.12.3] says because some hubs are known
1561 * to send more data (and thus cause overflow). For root hubs,
1562 * maxpktsize is defined in hcd.c's fake endpoint descriptors
1563 * to be big enough for at least USB_MAXCHILDREN ports. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 pipe = usb_rcvintpipe(hdev, endpoint->bEndpointAddress);
1565 maxp = usb_maxpacket(hdev, pipe, usb_pipeout(pipe));
1566
1567 if (maxp > sizeof(*hub->buffer))
1568 maxp = sizeof(*hub->buffer);
1569
1570 hub->urb = usb_alloc_urb(0, GFP_KERNEL);
1571 if (!hub->urb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572 ret = -ENOMEM;
1573 goto fail;
1574 }
1575
1576 usb_fill_int_urb(hub->urb, hdev, pipe, *hub->buffer, maxp, hub_irq,
1577 hub, endpoint->bInterval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578
1579 /* maybe cycle the hub leds */
1580 if (hub->has_indicators && blinkenlights)
Matthias Beyer469271f2013-10-10 23:41:27 +02001581 hub->indicator[0] = INDICATOR_CYCLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582
Krzysztof Mazure58547e2013-08-22 14:49:39 +02001583 for (i = 0; i < hdev->maxchild; i++) {
1584 ret = usb_hub_create_port_device(hub, i + 1);
1585 if (ret < 0) {
Lan Tianyufa2a9562012-09-05 13:44:31 +08001586 dev_err(hub->intfdev,
1587 "couldn't create port%d device.\n", i + 1);
Krzysztof Mazure58547e2013-08-22 14:49:39 +02001588 hdev->maxchild = i;
1589 goto fail_keep_maxchild;
1590 }
1591 }
Lan Tianyufa2a9562012-09-05 13:44:31 +08001592
Lan Tianyud2123fd2013-01-21 22:18:00 +08001593 usb_hub_adjust_deviceremovable(hdev, hub->descriptor);
1594
Alan Sternf2835212008-04-28 11:07:17 -04001595 hub_activate(hub, HUB_INIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 return 0;
1597
1598fail:
Krzysztof Mazurd0308d42013-08-22 14:49:38 +02001599 hdev->maxchild = 0;
Krzysztof Mazure58547e2013-08-22 14:49:39 +02001600fail_keep_maxchild:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 dev_err (hub_dev, "config failed, %s (err %d)\n",
1602 message, ret);
1603 /* hub_disconnect() frees urb and descriptor */
1604 return ret;
1605}
1606
Alan Sterne8054852007-05-04 11:55:11 -04001607static void hub_release(struct kref *kref)
1608{
1609 struct usb_hub *hub = container_of(kref, struct usb_hub, kref);
1610
1611 usb_put_intf(to_usb_interface(hub->intfdev));
1612 kfree(hub);
1613}
1614
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615static unsigned highspeed_hubs;
1616
1617static void hub_disconnect(struct usb_interface *intf)
1618{
Huajun Li88162302012-03-12 21:00:19 +08001619 struct usb_hub *hub = usb_get_intfdata(intf);
Greg Kroah-Hartmanfa286182012-05-14 09:20:37 -07001620 struct usb_device *hdev = interface_to_usbdev(intf);
Alan Stern543d7782014-01-07 10:43:02 -05001621 int port1;
Lan Tianyufa2a9562012-09-05 13:44:31 +08001622
Alan Sterne8054852007-05-04 11:55:11 -04001623 /* Take the hub off the event list and don't let it be added again */
1624 spin_lock_irq(&hub_event_lock);
Alan Stern8e4ceb32009-12-07 13:01:37 -05001625 if (!list_empty(&hub->event_list)) {
1626 list_del_init(&hub->event_list);
1627 usb_autopm_put_interface_no_suspend(intf);
1628 }
Alan Sterne8054852007-05-04 11:55:11 -04001629 hub->disconnected = 1;
1630 spin_unlock_irq(&hub_event_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631
Alan Stern7de18d82006-06-01 13:37:24 -04001632 /* Disconnect all children and quiesce the hub */
1633 hub->error = 0;
Alan Stern43303542008-04-28 11:07:31 -04001634 hub_quiesce(hub, HUB_DISCONNECT);
Alan Stern7de18d82006-06-01 13:37:24 -04001635
Alan Stern543d7782014-01-07 10:43:02 -05001636 /* Avoid races with recursively_mark_NOTATTACHED() */
1637 spin_lock_irq(&device_state_lock);
1638 port1 = hdev->maxchild;
1639 hdev->maxchild = 0;
1640 usb_set_intfdata(intf, NULL);
1641 spin_unlock_irq(&device_state_lock);
Alexander Shishkin1f2235b2012-09-12 14:48:31 +03001642
Alan Stern543d7782014-01-07 10:43:02 -05001643 for (; port1 > 0; --port1)
1644 usb_hub_remove_port_device(hub, port1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645
Alan Sterne8054852007-05-04 11:55:11 -04001646 if (hub->hdev->speed == USB_SPEED_HIGH)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 highspeed_hubs--;
1648
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649 usb_free_urb(hub->urb);
Lan Tianyufa2a9562012-09-05 13:44:31 +08001650 kfree(hub->ports);
Jesper Juhl1bc3c9e2005-04-18 17:39:34 -07001651 kfree(hub->descriptor);
Jesper Juhl1bc3c9e2005-04-18 17:39:34 -07001652 kfree(hub->status);
Alan Sternd697cdd2009-10-27 15:18:46 -04001653 kfree(hub->buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654
Lan Tianyu971fcd42013-01-23 04:26:29 +08001655 pm_suspend_ignore_children(&intf->dev, false);
Alan Sterne8054852007-05-04 11:55:11 -04001656 kref_put(&hub->kref, hub_release);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657}
1658
1659static int hub_probe(struct usb_interface *intf, const struct usb_device_id *id)
1660{
1661 struct usb_host_interface *desc;
1662 struct usb_endpoint_descriptor *endpoint;
1663 struct usb_device *hdev;
1664 struct usb_hub *hub;
1665
1666 desc = intf->cur_altsetting;
1667 hdev = interface_to_usbdev(intf);
1668
Ming Lei596d7892012-10-24 11:59:25 +08001669 /*
1670 * Set default autosuspend delay as 0 to speedup bus suspend,
1671 * based on the below considerations:
1672 *
1673 * - Unlike other drivers, the hub driver does not rely on the
1674 * autosuspend delay to provide enough time to handle a wakeup
1675 * event, and the submitted status URB is just to check future
1676 * change on hub downstream ports, so it is safe to do it.
1677 *
1678 * - The patch might cause one or more auto supend/resume for
1679 * below very rare devices when they are plugged into hub
1680 * first time:
1681 *
1682 * devices having trouble initializing, and disconnect
1683 * themselves from the bus and then reconnect a second
1684 * or so later
1685 *
1686 * devices just for downloading firmware, and disconnects
1687 * themselves after completing it
1688 *
1689 * For these quite rare devices, their drivers may change the
1690 * autosuspend delay of their parent hub in the probe() to one
1691 * appropriate value to avoid the subtle problem if someone
1692 * does care it.
1693 *
1694 * - The patch may cause one or more auto suspend/resume on
1695 * hub during running 'lsusb', but it is probably too
1696 * infrequent to worry about.
1697 *
1698 * - Change autosuspend delay of hub can avoid unnecessary auto
1699 * suspend timer for hub, also may decrease power consumption
1700 * of USB bus.
1701 */
1702 pm_runtime_set_autosuspend_delay(&hdev->dev, 0);
1703
Sarah Sharp2839f5b2012-01-06 16:27:25 -08001704 /* Hubs have proper suspend/resume support. */
1705 usb_enable_autosuspend(hdev);
Alan Stern088f7fe2010-01-08 12:56:54 -05001706
Felipe Balbi38f3ad52008-06-12 10:49:47 +03001707 if (hdev->level == MAX_TOPO_LEVEL) {
Wu Fengguangb9cef6c2008-12-15 15:32:01 +08001708 dev_err(&intf->dev,
1709 "Unsupported bus topology: hub nested too deep\n");
Felipe Balbi38f3ad52008-06-12 10:49:47 +03001710 return -E2BIG;
1711 }
1712
David Brownell89ccbdc2006-04-02 10:18:09 -08001713#ifdef CONFIG_USB_OTG_BLACKLIST_HUB
1714 if (hdev->parent) {
1715 dev_warn(&intf->dev, "ignoring external hub\n");
1716 return -ENODEV;
1717 }
1718#endif
1719
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720 /* Some hubs have a subclass of 1, which AFAICT according to the */
1721 /* specs is not defined, but it works */
1722 if ((desc->desc.bInterfaceSubClass != 0) &&
1723 (desc->desc.bInterfaceSubClass != 1)) {
1724descriptor_error:
1725 dev_err (&intf->dev, "bad descriptor, ignoring hub\n");
1726 return -EIO;
1727 }
1728
1729 /* Multiple endpoints? What kind of mutant ninja-hub is this? */
1730 if (desc->desc.bNumEndpoints != 1)
1731 goto descriptor_error;
1732
1733 endpoint = &desc->endpoint[0].desc;
1734
Luiz Fernando N. Capitulinofbf81c22006-09-27 11:58:53 -07001735 /* If it's not an interrupt in endpoint, we'd better punt! */
1736 if (!usb_endpoint_is_int_in(endpoint))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737 goto descriptor_error;
1738
1739 /* We found a hub */
1740 dev_info (&intf->dev, "USB hub found\n");
1741
Alan Stern0a1ef3b2005-10-24 15:38:24 -04001742 hub = kzalloc(sizeof(*hub), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 if (!hub) {
1744 dev_dbg (&intf->dev, "couldn't kmalloc hub struct\n");
1745 return -ENOMEM;
1746 }
1747
Alan Sterne8054852007-05-04 11:55:11 -04001748 kref_init(&hub->kref);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749 INIT_LIST_HEAD(&hub->event_list);
1750 hub->intfdev = &intf->dev;
1751 hub->hdev = hdev;
David Howellsc4028952006-11-22 14:57:56 +00001752 INIT_DELAYED_WORK(&hub->leds, led_work);
Alan Stern8520f382008-09-22 14:44:26 -04001753 INIT_DELAYED_WORK(&hub->init_work, NULL);
Alan Sterne8054852007-05-04 11:55:11 -04001754 usb_get_intf(intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755
1756 usb_set_intfdata (intf, hub);
Alan Stern40f122f2006-11-09 14:44:33 -05001757 intf->needs_remote_wakeup = 1;
Lan Tianyu971fcd42013-01-23 04:26:29 +08001758 pm_suspend_ignore_children(&intf->dev, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759
1760 if (hdev->speed == USB_SPEED_HIGH)
1761 highspeed_hubs++;
1762
Ming Leie6f30de2012-10-24 11:59:24 +08001763 if (id->driver_info & HUB_QUIRK_CHECK_PORT_AUTOSUSPEND)
1764 hub->quirk_check_port_auto_suspend = 1;
1765
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766 if (hub_configure(hub, endpoint) >= 0)
1767 return 0;
1768
1769 hub_disconnect (intf);
1770 return -ENODEV;
1771}
1772
1773static int
1774hub_ioctl(struct usb_interface *intf, unsigned int code, void *user_data)
1775{
1776 struct usb_device *hdev = interface_to_usbdev (intf);
Lan Tianyuad493e52013-01-23 04:26:30 +08001777 struct usb_hub *hub = usb_hub_to_struct_hub(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778
1779 /* assert ifno == 0 (part of hub spec) */
1780 switch (code) {
1781 case USBDEVFS_HUB_PORTINFO: {
1782 struct usbdevfs_hub_portinfo *info = user_data;
1783 int i;
1784
1785 spin_lock_irq(&device_state_lock);
1786 if (hdev->devnum <= 0)
1787 info->nports = 0;
1788 else {
1789 info->nports = hdev->maxchild;
1790 for (i = 0; i < info->nports; i++) {
Lan Tianyuff823c792012-09-05 13:44:32 +08001791 if (hub->ports[i]->child == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792 info->port[i] = 0;
1793 else
1794 info->port[i] =
Lan Tianyuff823c792012-09-05 13:44:32 +08001795 hub->ports[i]->child->devnum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796 }
1797 }
1798 spin_unlock_irq(&device_state_lock);
1799
1800 return info->nports + 1;
1801 }
1802
1803 default:
1804 return -ENOSYS;
1805 }
1806}
1807
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001808/*
1809 * Allow user programs to claim ports on a hub. When a device is attached
1810 * to one of these "claimed" ports, the program will "own" the device.
1811 */
1812static int find_port_owner(struct usb_device *hdev, unsigned port1,
Valentina Manea9b6f0c42014-03-10 10:36:40 +02001813 struct usb_dev_state ***ppowner)
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001814{
Mathias Nyman413412612013-06-18 17:28:48 +03001815 struct usb_hub *hub = usb_hub_to_struct_hub(hdev);
1816
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001817 if (hdev->state == USB_STATE_NOTATTACHED)
1818 return -ENODEV;
1819 if (port1 == 0 || port1 > hdev->maxchild)
1820 return -EINVAL;
1821
Mathias Nyman413412612013-06-18 17:28:48 +03001822 /* Devices not managed by the hub driver
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001823 * will always have maxchild equal to 0.
1824 */
Mathias Nyman413412612013-06-18 17:28:48 +03001825 *ppowner = &(hub->ports[port1 - 1]->port_owner);
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001826 return 0;
1827}
1828
1829/* In the following three functions, the caller must hold hdev's lock */
Lan Tianyu336c5c32012-07-06 14:13:52 +08001830int usb_hub_claim_port(struct usb_device *hdev, unsigned port1,
Valentina Manea9b6f0c42014-03-10 10:36:40 +02001831 struct usb_dev_state *owner)
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001832{
1833 int rc;
Valentina Manea9b6f0c42014-03-10 10:36:40 +02001834 struct usb_dev_state **powner;
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001835
1836 rc = find_port_owner(hdev, port1, &powner);
1837 if (rc)
1838 return rc;
1839 if (*powner)
1840 return -EBUSY;
1841 *powner = owner;
1842 return rc;
1843}
Valentina Manea6080cd02014-03-08 14:53:34 +02001844EXPORT_SYMBOL_GPL(usb_hub_claim_port);
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001845
Lan Tianyu336c5c32012-07-06 14:13:52 +08001846int usb_hub_release_port(struct usb_device *hdev, unsigned port1,
Valentina Manea9b6f0c42014-03-10 10:36:40 +02001847 struct usb_dev_state *owner)
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001848{
1849 int rc;
Valentina Manea9b6f0c42014-03-10 10:36:40 +02001850 struct usb_dev_state **powner;
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001851
1852 rc = find_port_owner(hdev, port1, &powner);
1853 if (rc)
1854 return rc;
1855 if (*powner != owner)
1856 return -ENOENT;
1857 *powner = NULL;
1858 return rc;
1859}
Valentina Manea6080cd02014-03-08 14:53:34 +02001860EXPORT_SYMBOL_GPL(usb_hub_release_port);
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001861
Valentina Manea9b6f0c42014-03-10 10:36:40 +02001862void usb_hub_release_all_ports(struct usb_device *hdev, struct usb_dev_state *owner)
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001863{
Lan Tianyuad493e52013-01-23 04:26:30 +08001864 struct usb_hub *hub = usb_hub_to_struct_hub(hdev);
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001865 int n;
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001866
Lan Tianyufa2a9562012-09-05 13:44:31 +08001867 for (n = 0; n < hdev->maxchild; n++) {
1868 if (hub->ports[n]->port_owner == owner)
1869 hub->ports[n]->port_owner = NULL;
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001870 }
Lan Tianyufa2a9562012-09-05 13:44:31 +08001871
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001872}
1873
1874/* The caller must hold udev's lock */
1875bool usb_device_is_owned(struct usb_device *udev)
1876{
1877 struct usb_hub *hub;
1878
1879 if (udev->state == USB_STATE_NOTATTACHED || !udev->parent)
1880 return false;
Lan Tianyuad493e52013-01-23 04:26:30 +08001881 hub = usb_hub_to_struct_hub(udev->parent);
Lan Tianyufa2a9562012-09-05 13:44:31 +08001882 return !!hub->ports[udev->portnum - 1]->port_owner;
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001883}
1884
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885static void recursively_mark_NOTATTACHED(struct usb_device *udev)
1886{
Lan Tianyuad493e52013-01-23 04:26:30 +08001887 struct usb_hub *hub = usb_hub_to_struct_hub(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888 int i;
1889
1890 for (i = 0; i < udev->maxchild; ++i) {
Lan Tianyuff823c792012-09-05 13:44:32 +08001891 if (hub->ports[i]->child)
1892 recursively_mark_NOTATTACHED(hub->ports[i]->child);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893 }
Alan Stern9bbdf1e2010-01-08 12:57:28 -05001894 if (udev->state == USB_STATE_SUSPENDED)
Sarah Sharp15123002007-12-21 16:54:15 -08001895 udev->active_duration -= jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896 udev->state = USB_STATE_NOTATTACHED;
1897}
1898
1899/**
1900 * usb_set_device_state - change a device's current state (usbcore, hcds)
1901 * @udev: pointer to device whose state should be changed
1902 * @new_state: new state value to be stored
1903 *
1904 * udev->state is _not_ fully protected by the device lock. Although
1905 * most transitions are made only while holding the lock, the state can
1906 * can change to USB_STATE_NOTATTACHED at almost any time. This
1907 * is so that devices can be marked as disconnected as soon as possible,
1908 * without having to wait for any semaphores to be released. As a result,
1909 * all changes to any device's state must be protected by the
1910 * device_state_lock spinlock.
1911 *
1912 * Once a device has been added to the device tree, all changes to its state
1913 * should be made using this routine. The state should _not_ be set directly.
1914 *
1915 * If udev->state is already USB_STATE_NOTATTACHED then no change is made.
1916 * Otherwise udev->state is set to new_state, and if new_state is
1917 * USB_STATE_NOTATTACHED then all of udev's descendants' states are also set
1918 * to USB_STATE_NOTATTACHED.
1919 */
1920void usb_set_device_state(struct usb_device *udev,
1921 enum usb_device_state new_state)
1922{
1923 unsigned long flags;
Rafael J. Wysocki4681b172011-02-08 23:25:48 +01001924 int wakeup = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925
1926 spin_lock_irqsave(&device_state_lock, flags);
1927 if (udev->state == USB_STATE_NOTATTACHED)
1928 ; /* do nothing */
David Brownellb94dc6b2005-09-12 19:39:39 -07001929 else if (new_state != USB_STATE_NOTATTACHED) {
David Brownellfb669cc2006-01-24 08:40:27 -08001930
1931 /* root hub wakeup capabilities are managed out-of-band
1932 * and may involve silicon errata ... ignore them here.
1933 */
1934 if (udev->parent) {
Alan Stern645daaa2006-08-30 15:47:02 -04001935 if (udev->state == USB_STATE_SUSPENDED
1936 || new_state == USB_STATE_SUSPENDED)
1937 ; /* No change to wakeup settings */
1938 else if (new_state == USB_STATE_CONFIGURED)
Rafael J. Wysocki4681b172011-02-08 23:25:48 +01001939 wakeup = udev->actconfig->desc.bmAttributes
1940 & USB_CONFIG_ATT_WAKEUP;
Alan Stern645daaa2006-08-30 15:47:02 -04001941 else
Rafael J. Wysocki4681b172011-02-08 23:25:48 +01001942 wakeup = 0;
David Brownellfb669cc2006-01-24 08:40:27 -08001943 }
Sarah Sharp15123002007-12-21 16:54:15 -08001944 if (udev->state == USB_STATE_SUSPENDED &&
1945 new_state != USB_STATE_SUSPENDED)
1946 udev->active_duration -= jiffies;
1947 else if (new_state == USB_STATE_SUSPENDED &&
1948 udev->state != USB_STATE_SUSPENDED)
1949 udev->active_duration += jiffies;
Alan Stern645daaa2006-08-30 15:47:02 -04001950 udev->state = new_state;
David Brownellb94dc6b2005-09-12 19:39:39 -07001951 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952 recursively_mark_NOTATTACHED(udev);
1953 spin_unlock_irqrestore(&device_state_lock, flags);
Rafael J. Wysocki4681b172011-02-08 23:25:48 +01001954 if (wakeup >= 0)
1955 device_set_wakeup_capable(&udev->dev, wakeup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956}
David Vrabel6da9c992009-02-18 14:43:47 +00001957EXPORT_SYMBOL_GPL(usb_set_device_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958
Inaky Perez-Gonzalez8af548d2008-04-08 13:24:46 -07001959/*
Alan Stern3b29b682011-02-22 09:53:41 -05001960 * Choose a device number.
1961 *
1962 * Device numbers are used as filenames in usbfs. On USB-1.1 and
1963 * USB-2.0 buses they are also used as device addresses, however on
1964 * USB-3.0 buses the address is assigned by the controller hardware
1965 * and it usually is not the same as the device number.
1966 *
Inaky Perez-Gonzalez8af548d2008-04-08 13:24:46 -07001967 * WUSB devices are simple: they have no hubs behind, so the mapping
1968 * device <-> virtual port number becomes 1:1. Why? to simplify the
1969 * life of the device connection logic in
1970 * drivers/usb/wusbcore/devconnect.c. When we do the initial secret
1971 * handshake we need to assign a temporary address in the unauthorized
1972 * space. For simplicity we use the first virtual port number found to
1973 * be free [drivers/usb/wusbcore/devconnect.c:wusbhc_devconnect_ack()]
1974 * and that becomes it's address [X < 128] or its unauthorized address
1975 * [X | 0x80].
1976 *
1977 * We add 1 as an offset to the one-based USB-stack port number
1978 * (zero-based wusb virtual port index) for two reasons: (a) dev addr
1979 * 0 is reserved by USB for default address; (b) Linux's USB stack
1980 * uses always #1 for the root hub of the controller. So USB stack's
1981 * port #1, which is wusb virtual-port #0 has address #2.
Sarah Sharpc6515272009-04-27 19:57:26 -07001982 *
1983 * Devices connected under xHCI are not as simple. The host controller
1984 * supports virtualization, so the hardware assigns device addresses and
1985 * the HCD must setup data structures before issuing a set address
1986 * command to the hardware.
Inaky Perez-Gonzalez8af548d2008-04-08 13:24:46 -07001987 */
Alan Stern3b29b682011-02-22 09:53:41 -05001988static void choose_devnum(struct usb_device *udev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989{
1990 int devnum;
1991 struct usb_bus *bus = udev->bus;
1992
1993 /* If khubd ever becomes multithreaded, this will need a lock */
Inaky Perez-Gonzalez8af548d2008-04-08 13:24:46 -07001994 if (udev->wusb) {
1995 devnum = udev->portnum + 1;
1996 BUG_ON(test_bit(devnum, bus->devmap.devicemap));
1997 } else {
1998 /* Try to allocate the next devnum beginning at
1999 * bus->devnum_next. */
2000 devnum = find_next_zero_bit(bus->devmap.devicemap, 128,
2001 bus->devnum_next);
2002 if (devnum >= 128)
2003 devnum = find_next_zero_bit(bus->devmap.devicemap,
2004 128, 1);
Matthias Beyer469271f2013-10-10 23:41:27 +02002005 bus->devnum_next = (devnum >= 127 ? 1 : devnum + 1);
Inaky Perez-Gonzalez8af548d2008-04-08 13:24:46 -07002006 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007 if (devnum < 128) {
2008 set_bit(devnum, bus->devmap.devicemap);
2009 udev->devnum = devnum;
2010 }
2011}
2012
Alan Stern3b29b682011-02-22 09:53:41 -05002013static void release_devnum(struct usb_device *udev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014{
2015 if (udev->devnum > 0) {
2016 clear_bit(udev->devnum, udev->bus->devmap.devicemap);
2017 udev->devnum = -1;
2018 }
2019}
2020
Alan Stern3b29b682011-02-22 09:53:41 -05002021static void update_devnum(struct usb_device *udev, int devnum)
David Vrabel4953d142008-04-08 13:24:46 -07002022{
2023 /* The address for a WUSB device is managed by wusbcore. */
2024 if (!udev->wusb)
2025 udev->devnum = devnum;
2026}
2027
Herbert Xuf7410ce2010-01-10 20:15:03 +11002028static void hub_free_dev(struct usb_device *udev)
2029{
2030 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
2031
2032 /* Root hubs aren't real devices, so don't free HCD resources */
2033 if (hcd->driver->free_dev && udev->parent)
2034 hcd->driver->free_dev(hcd, udev);
2035}
2036
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037/**
2038 * usb_disconnect - disconnect a device (usbcore-internal)
2039 * @pdev: pointer to device being disconnected
2040 * Context: !in_interrupt ()
2041 *
2042 * Something got disconnected. Get rid of it and all of its children.
2043 *
2044 * If *pdev is a normal device then the parent hub must already be locked.
Bjorn Helgaasdb8f2aa2013-09-13 13:57:34 -06002045 * If *pdev is a root hub then the caller must hold the usb_bus_list_lock,
2046 * which protects the set of root hubs as well as the list of buses.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047 *
2048 * Only hub drivers (including virtual root hub drivers for host
2049 * controllers) should ever call this.
2050 *
2051 * This call is synchronous, and may not be used in an interrupt context.
2052 */
2053void usb_disconnect(struct usb_device **pdev)
2054{
2055 struct usb_device *udev = *pdev;
Lan Tianyuad493e52013-01-23 04:26:30 +08002056 struct usb_hub *hub = usb_hub_to_struct_hub(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057 int i;
2058
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059 /* mark the device as inactive, so any further urb submissions for
2060 * this device (and any of its children) will fail immediately.
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002061 * this quiesces everything except pending urbs.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062 */
2063 usb_set_device_state(udev, USB_STATE_NOTATTACHED);
Alan Stern3b29b682011-02-22 09:53:41 -05002064 dev_info(&udev->dev, "USB disconnect, device number %d\n",
2065 udev->devnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066
Alan Stern9ad3d6c2005-11-17 17:10:32 -05002067 usb_lock_device(udev);
2068
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069 /* Free up all the children before we remove this device */
Huajun Li88162302012-03-12 21:00:19 +08002070 for (i = 0; i < udev->maxchild; i++) {
Lan Tianyuff823c792012-09-05 13:44:32 +08002071 if (hub->ports[i]->child)
2072 usb_disconnect(&hub->ports[i]->child);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073 }
2074
2075 /* deallocate hcd/hardware state ... nuking all pending urbs and
2076 * cleaning up all state associated with the current configuration
2077 * so that the hardware is now fully quiesced.
2078 */
Alan Stern782da722006-07-01 22:09:35 -04002079 dev_dbg (&udev->dev, "unregistering device\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080 usb_disable_device(udev, 0);
Alan Sterncde217a2008-10-21 15:28:46 -04002081 usb_hcd_synchronize_unlinks(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082
Lan Tianyufde26382013-01-20 01:53:33 +08002083 if (udev->parent) {
Lan Tianyuad493e52013-01-23 04:26:30 +08002084 struct usb_hub *hub = usb_hub_to_struct_hub(udev->parent);
2085 struct usb_port *port_dev = hub->ports[udev->portnum - 1];
Lan Tianyufde26382013-01-20 01:53:33 +08002086
2087 sysfs_remove_link(&udev->dev.kobj, "port");
2088 sysfs_remove_link(&port_dev->dev.kobj, "device");
Lan Tianyu971fcd42013-01-23 04:26:29 +08002089
Lan Tianyuad493e52013-01-23 04:26:30 +08002090 if (!port_dev->did_runtime_put)
2091 pm_runtime_put(&port_dev->dev);
2092 else
2093 port_dev->did_runtime_put = false;
Lan Tianyufde26382013-01-20 01:53:33 +08002094 }
2095
Alan Stern3b23dd62008-12-05 14:10:34 -05002096 usb_remove_ep_devs(&udev->ep0);
Alan Stern782da722006-07-01 22:09:35 -04002097 usb_unlock_device(udev);
Greg Kroah-Hartman3099e752005-06-20 21:15:16 -07002098
Alan Stern782da722006-07-01 22:09:35 -04002099 /* Unregister the device. The device driver is responsible
Alan Stern3b23dd62008-12-05 14:10:34 -05002100 * for de-configuring the device and invoking the remove-device
2101 * notifier chain (used by usbfs and possibly others).
Alan Stern782da722006-07-01 22:09:35 -04002102 */
2103 device_del(&udev->dev);
2104
2105 /* Free the device number and delete the parent's children[]
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106 * (or root_hub) pointer.
2107 */
Alan Stern3b29b682011-02-22 09:53:41 -05002108 release_devnum(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109
2110 /* Avoid races with recursively_mark_NOTATTACHED() */
2111 spin_lock_irq(&device_state_lock);
2112 *pdev = NULL;
2113 spin_unlock_irq(&device_state_lock);
2114
Herbert Xuf7410ce2010-01-10 20:15:03 +11002115 hub_free_dev(udev);
2116
Alan Stern782da722006-07-01 22:09:35 -04002117 put_device(&udev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118}
2119
Greg Kroah-Hartmanf2a383e2007-11-26 22:11:55 -08002120#ifdef CONFIG_USB_ANNOUNCE_NEW_DEVICES
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121static void show_string(struct usb_device *udev, char *id, char *string)
2122{
2123 if (!string)
2124 return;
Joe Perchesf2ec5222012-10-28 01:05:51 -07002125 dev_info(&udev->dev, "%s: %s\n", id, string);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126}
2127
Greg Kroah-Hartmanf2a383e2007-11-26 22:11:55 -08002128static void announce_device(struct usb_device *udev)
2129{
2130 dev_info(&udev->dev, "New USB device found, idVendor=%04x, idProduct=%04x\n",
2131 le16_to_cpu(udev->descriptor.idVendor),
2132 le16_to_cpu(udev->descriptor.idProduct));
Wu Fengguangb9cef6c2008-12-15 15:32:01 +08002133 dev_info(&udev->dev,
2134 "New USB device strings: Mfr=%d, Product=%d, SerialNumber=%d\n",
Greg Kroah-Hartmanf2a383e2007-11-26 22:11:55 -08002135 udev->descriptor.iManufacturer,
2136 udev->descriptor.iProduct,
2137 udev->descriptor.iSerialNumber);
2138 show_string(udev, "Product", udev->product);
2139 show_string(udev, "Manufacturer", udev->manufacturer);
2140 show_string(udev, "SerialNumber", udev->serial);
2141}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142#else
Greg Kroah-Hartmanf2a383e2007-11-26 22:11:55 -08002143static inline void announce_device(struct usb_device *udev) { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144#endif
2145
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146#ifdef CONFIG_USB_OTG
2147#include "otg_whitelist.h"
2148#endif
2149
Oliver Neukum3ede7602007-01-11 14:35:50 +01002150/**
Alan Stern8d8558d2009-12-08 15:50:41 -05002151 * usb_enumerate_device_otg - FIXME (usbcore-internal)
Oliver Neukum3ede7602007-01-11 14:35:50 +01002152 * @udev: newly addressed device (in ADDRESS state)
2153 *
Alan Stern8d8558d2009-12-08 15:50:41 -05002154 * Finish enumeration for On-The-Go devices
Yacine Belkadi626f0902013-08-02 20:10:04 +02002155 *
2156 * Return: 0 if successful. A negative error code otherwise.
Oliver Neukum3ede7602007-01-11 14:35:50 +01002157 */
Alan Stern8d8558d2009-12-08 15:50:41 -05002158static int usb_enumerate_device_otg(struct usb_device *udev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159{
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07002160 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161
2162#ifdef CONFIG_USB_OTG
2163 /*
2164 * OTG-aware devices on OTG-capable root hubs may be able to use SRP,
2165 * to wake us after we've powered off VBUS; and HNP, switching roles
2166 * "host" to "peripheral". The OTG descriptor helps figure this out.
2167 */
2168 if (!udev->bus->is_b_host
2169 && udev->config
2170 && udev->parent == udev->bus->root_hub) {
Felipe Balbi2eb50522009-12-04 15:47:43 +02002171 struct usb_otg_descriptor *desc = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172 struct usb_bus *bus = udev->bus;
2173
2174 /* descriptor may appear anywhere in config */
2175 if (__usb_get_extra_descriptor (udev->rawdescriptors[0],
2176 le16_to_cpu(udev->config[0].desc.wTotalLength),
2177 USB_DT_OTG, (void **) &desc) == 0) {
2178 if (desc->bmAttributes & USB_OTG_HNP) {
Alan Stern12c3da32005-11-23 12:09:52 -05002179 unsigned port1 = udev->portnum;
David Brownellfc849b82006-09-18 16:53:26 -07002180
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181 dev_info(&udev->dev,
2182 "Dual-Role OTG device on %sHNP port\n",
2183 (port1 == bus->otg_port)
2184 ? "" : "non-");
2185
2186 /* enable HNP before suspend, it's simpler */
2187 if (port1 == bus->otg_port)
2188 bus->b_hnp_enable = 1;
2189 err = usb_control_msg(udev,
2190 usb_sndctrlpipe(udev, 0),
2191 USB_REQ_SET_FEATURE, 0,
2192 bus->b_hnp_enable
2193 ? USB_DEVICE_B_HNP_ENABLE
2194 : USB_DEVICE_A_ALT_HNP_SUPPORT,
2195 0, NULL, 0, USB_CTRL_SET_TIMEOUT);
2196 if (err < 0) {
2197 /* OTG MESSAGE: report errors here,
2198 * customize to match your product.
2199 */
2200 dev_info(&udev->dev,
Wu Fengguangb9cef6c2008-12-15 15:32:01 +08002201 "can't set HNP mode: %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202 err);
2203 bus->b_hnp_enable = 0;
2204 }
2205 }
2206 }
2207 }
2208
2209 if (!is_targeted(udev)) {
2210
2211 /* Maybe it can talk to us, though we can't talk to it.
2212 * (Includes HNP test device.)
2213 */
2214 if (udev->bus->b_hnp_enable || udev->bus->is_b_host) {
David Brownell634a84f2009-01-15 13:51:28 -08002215 err = usb_port_suspend(udev, PMSG_SUSPEND);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216 if (err < 0)
2217 dev_dbg(&udev->dev, "HNP fail, %d\n", err);
2218 }
Vikram Panditaffcdc182007-05-25 21:31:07 -07002219 err = -ENOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220 goto fail;
2221 }
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07002222fail:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223#endif
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07002224 return err;
2225}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07002227
2228/**
Alan Stern8d8558d2009-12-08 15:50:41 -05002229 * usb_enumerate_device - Read device configs/intfs/otg (usbcore-internal)
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07002230 * @udev: newly addressed device (in ADDRESS state)
2231 *
2232 * This is only called by usb_new_device() and usb_authorize_device()
2233 * and FIXME -- all comments that apply to them apply here wrt to
2234 * environment.
2235 *
2236 * If the device is WUSB and not authorized, we don't attempt to read
2237 * the string descriptors, as they will be errored out by the device
2238 * until it has been authorized.
Yacine Belkadi626f0902013-08-02 20:10:04 +02002239 *
2240 * Return: 0 if successful. A negative error code otherwise.
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07002241 */
Alan Stern8d8558d2009-12-08 15:50:41 -05002242static int usb_enumerate_device(struct usb_device *udev)
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07002243{
2244 int err;
2245
2246 if (udev->config == NULL) {
2247 err = usb_get_configuration(udev);
2248 if (err < 0) {
Alan Sterne9e88fb2013-03-27 16:14:01 -04002249 if (err != -ENODEV)
2250 dev_err(&udev->dev, "can't read configurations, error %d\n",
2251 err);
Laurent Pinchart80da2e02012-07-19 12:39:13 +02002252 return err;
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07002253 }
2254 }
Thomas Pugliese83e83ec2013-12-09 13:40:29 -06002255
2256 /* read the standard strings and cache them if present */
2257 udev->product = usb_cache_string(udev, udev->descriptor.iProduct);
2258 udev->manufacturer = usb_cache_string(udev,
2259 udev->descriptor.iManufacturer);
2260 udev->serial = usb_cache_string(udev, udev->descriptor.iSerialNumber);
2261
Alan Stern8d8558d2009-12-08 15:50:41 -05002262 err = usb_enumerate_device_otg(udev);
Laurent Pinchart80da2e02012-07-19 12:39:13 +02002263 if (err < 0)
2264 return err;
2265
2266 usb_detect_interface_quirks(udev);
2267
2268 return 0;
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07002269}
2270
Matthew Garrettd35e70d2012-02-03 17:11:55 -05002271static void set_usb_port_removable(struct usb_device *udev)
2272{
2273 struct usb_device *hdev = udev->parent;
2274 struct usb_hub *hub;
2275 u8 port = udev->portnum;
2276 u16 wHubCharacteristics;
2277 bool removable = true;
2278
2279 if (!hdev)
2280 return;
2281
Lan Tianyuad493e52013-01-23 04:26:30 +08002282 hub = usb_hub_to_struct_hub(udev->parent);
Matthew Garrettd35e70d2012-02-03 17:11:55 -05002283
2284 wHubCharacteristics = le16_to_cpu(hub->descriptor->wHubCharacteristics);
2285
2286 if (!(wHubCharacteristics & HUB_CHAR_COMPOUND))
2287 return;
2288
2289 if (hub_is_superspeed(hdev)) {
Lan Tianyuca3c1532012-09-11 04:22:36 +08002290 if (le16_to_cpu(hub->descriptor->u.ss.DeviceRemovable)
2291 & (1 << port))
Matthew Garrettd35e70d2012-02-03 17:11:55 -05002292 removable = false;
2293 } else {
2294 if (hub->descriptor->u.hs.DeviceRemovable[port / 8] & (1 << (port % 8)))
2295 removable = false;
2296 }
2297
2298 if (removable)
2299 udev->removable = USB_DEVICE_REMOVABLE;
2300 else
2301 udev->removable = USB_DEVICE_FIXED;
2302}
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07002303
2304/**
2305 * usb_new_device - perform initial device setup (usbcore-internal)
2306 * @udev: newly addressed device (in ADDRESS state)
2307 *
Alan Stern8d8558d2009-12-08 15:50:41 -05002308 * This is called with devices which have been detected but not fully
2309 * enumerated. The device descriptor is available, but not descriptors
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07002310 * for any device configuration. The caller must have locked either
2311 * the parent hub (if udev is a normal device) or else the
2312 * usb_bus_list_lock (if udev is a root hub). The parent's pointer to
2313 * udev has already been installed, but udev is not yet visible through
2314 * sysfs or other filesystem code.
2315 *
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07002316 * This call is synchronous, and may not be used in an interrupt context.
2317 *
2318 * Only the hub driver or root-hub registrar should ever call this.
Yacine Belkadi626f0902013-08-02 20:10:04 +02002319 *
2320 * Return: Whether the device is configured properly or not. Zero if the
2321 * interface was registered with the driver core; else a negative errno
2322 * value.
2323 *
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07002324 */
2325int usb_new_device(struct usb_device *udev)
2326{
2327 int err;
2328
Dan Streetman16985402010-01-06 09:56:53 -05002329 if (udev->parent) {
Dan Streetman16985402010-01-06 09:56:53 -05002330 /* Initialize non-root-hub device wakeup to disabled;
2331 * device (un)configuration controls wakeup capable
2332 * sysfs power/wakeup controls wakeup enabled/disabled
2333 */
2334 device_init_wakeup(&udev->dev, 0);
Dan Streetman16985402010-01-06 09:56:53 -05002335 }
2336
Alan Stern9bbdf1e2010-01-08 12:57:28 -05002337 /* Tell the runtime-PM framework the device is active */
2338 pm_runtime_set_active(&udev->dev);
Alan Sternc08512c2010-11-15 15:57:58 -05002339 pm_runtime_get_noresume(&udev->dev);
Alan Sternfcc4a012010-11-15 15:57:51 -05002340 pm_runtime_use_autosuspend(&udev->dev);
Alan Stern9bbdf1e2010-01-08 12:57:28 -05002341 pm_runtime_enable(&udev->dev);
2342
Alan Sternc08512c2010-11-15 15:57:58 -05002343 /* By default, forbid autosuspend for all devices. It will be
2344 * allowed for hubs during binding.
2345 */
2346 usb_disable_autosuspend(udev);
2347
Alan Stern8d8558d2009-12-08 15:50:41 -05002348 err = usb_enumerate_device(udev); /* Read descriptors */
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07002349 if (err < 0)
2350 goto fail;
Sarah Sharpc6515272009-04-27 19:57:26 -07002351 dev_dbg(&udev->dev, "udev %d, busnum %d, minor = %d\n",
2352 udev->devnum, udev->bus->busnum,
2353 (((udev->bus->busnum-1) * 128) + (udev->devnum-1)));
Kay Sievers9f8b17e2007-03-13 15:59:31 +01002354 /* export the usbdev device-node for libusb */
2355 udev->dev.devt = MKDEV(USB_DEVICE_MAJOR,
2356 (((udev->bus->busnum-1) * 128) + (udev->devnum-1)));
2357
Alan Stern6cd13202008-11-13 15:08:30 -05002358 /* Tell the world! */
2359 announce_device(udev);
Alan Stern195af2c2007-07-16 15:28:19 -04002360
Theodore Ts'ob04b3152012-07-04 11:22:20 -04002361 if (udev->serial)
2362 add_device_randomness(udev->serial, strlen(udev->serial));
2363 if (udev->product)
2364 add_device_randomness(udev->product, strlen(udev->product));
2365 if (udev->manufacturer)
2366 add_device_randomness(udev->manufacturer,
2367 strlen(udev->manufacturer));
2368
Rafael J. Wysocki927bc912010-02-08 19:18:16 +01002369 device_enable_async_suspend(&udev->dev);
Matthew Garrettd35e70d2012-02-03 17:11:55 -05002370
2371 /*
2372 * check whether the hub marks this port as non-removable. Do it
2373 * now so that platform-specific data can override it in
2374 * device_add()
2375 */
2376 if (udev->parent)
2377 set_usb_port_removable(udev);
2378
Alan Stern782da722006-07-01 22:09:35 -04002379 /* Register the device. The device driver is responsible
Alan Stern3b23dd62008-12-05 14:10:34 -05002380 * for configuring the device and invoking the add-device
2381 * notifier chain (used by usbfs and possibly others).
Alan Stern782da722006-07-01 22:09:35 -04002382 */
Kay Sievers9f8b17e2007-03-13 15:59:31 +01002383 err = device_add(&udev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384 if (err) {
2385 dev_err(&udev->dev, "can't device_add, error %d\n", err);
2386 goto fail;
2387 }
Alan Stern9ad3d6c2005-11-17 17:10:32 -05002388
Lan Tianyufde26382013-01-20 01:53:33 +08002389 /* Create link files between child device and usb port device. */
2390 if (udev->parent) {
Lan Tianyuad493e52013-01-23 04:26:30 +08002391 struct usb_hub *hub = usb_hub_to_struct_hub(udev->parent);
2392 struct usb_port *port_dev = hub->ports[udev->portnum - 1];
Lan Tianyufde26382013-01-20 01:53:33 +08002393
2394 err = sysfs_create_link(&udev->dev.kobj,
2395 &port_dev->dev.kobj, "port");
2396 if (err)
2397 goto fail;
2398
2399 err = sysfs_create_link(&port_dev->dev.kobj,
2400 &udev->dev.kobj, "device");
2401 if (err) {
2402 sysfs_remove_link(&udev->dev.kobj, "port");
2403 goto fail;
2404 }
Lan Tianyu971fcd42013-01-23 04:26:29 +08002405
2406 pm_runtime_get_sync(&port_dev->dev);
Lan Tianyufde26382013-01-20 01:53:33 +08002407 }
2408
Alan Stern3b23dd62008-12-05 14:10:34 -05002409 (void) usb_create_ep_devs(&udev->dev, &udev->ep0, udev);
Alan Sternc08512c2010-11-15 15:57:58 -05002410 usb_mark_last_busy(udev);
2411 pm_runtime_put_sync_autosuspend(&udev->dev);
Greg Kroah-Hartmanc0664752006-08-11 01:55:12 -07002412 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413
2414fail:
2415 usb_set_device_state(udev, USB_STATE_NOTATTACHED);
Alan Stern9bbdf1e2010-01-08 12:57:28 -05002416 pm_runtime_disable(&udev->dev);
2417 pm_runtime_set_suspended(&udev->dev);
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07002418 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419}
2420
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002421
2422/**
Randy Dunlapfd39c862007-10-15 17:30:02 -07002423 * usb_deauthorize_device - deauthorize a device (usbcore-internal)
2424 * @usb_dev: USB device
2425 *
2426 * Move the USB device to a very basic state where interfaces are disabled
2427 * and the device is in fact unconfigured and unusable.
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002428 *
2429 * We share a lock (that we have) with device_del(), so we need to
2430 * defer its call.
Yacine Belkadi626f0902013-08-02 20:10:04 +02002431 *
2432 * Return: 0.
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002433 */
2434int usb_deauthorize_device(struct usb_device *usb_dev)
2435{
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002436 usb_lock_device(usb_dev);
2437 if (usb_dev->authorized == 0)
2438 goto out_unauthorized;
Alan Sternda307122009-12-08 15:54:44 -05002439
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002440 usb_dev->authorized = 0;
2441 usb_set_configuration(usb_dev, -1);
Alan Sternda307122009-12-08 15:54:44 -05002442
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002443out_unauthorized:
2444 usb_unlock_device(usb_dev);
2445 return 0;
2446}
2447
2448
2449int usb_authorize_device(struct usb_device *usb_dev)
2450{
2451 int result = 0, c;
Alan Sternda307122009-12-08 15:54:44 -05002452
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002453 usb_lock_device(usb_dev);
2454 if (usb_dev->authorized == 1)
2455 goto out_authorized;
Alan Sternda307122009-12-08 15:54:44 -05002456
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002457 result = usb_autoresume_device(usb_dev);
2458 if (result < 0) {
2459 dev_err(&usb_dev->dev,
2460 "can't autoresume for authorization: %d\n", result);
2461 goto error_autoresume;
2462 }
2463 result = usb_get_device_descriptor(usb_dev, sizeof(usb_dev->descriptor));
2464 if (result < 0) {
2465 dev_err(&usb_dev->dev, "can't re-read device descriptor for "
2466 "authorization: %d\n", result);
2467 goto error_device_descriptor;
2468 }
Alan Sternda307122009-12-08 15:54:44 -05002469
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002470 usb_dev->authorized = 1;
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002471 /* Choose and set the configuration. This registers the interfaces
2472 * with the driver core and lets interface drivers bind to them.
2473 */
Greg Kroah-Hartmanb5ea0602007-08-02 22:44:27 -06002474 c = usb_choose_configuration(usb_dev);
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002475 if (c >= 0) {
2476 result = usb_set_configuration(usb_dev, c);
2477 if (result) {
2478 dev_err(&usb_dev->dev,
2479 "can't set config #%d, error %d\n", c, result);
2480 /* This need not be fatal. The user can try to
2481 * set other configurations. */
2482 }
2483 }
2484 dev_info(&usb_dev->dev, "authorized to connect\n");
Alan Sternda307122009-12-08 15:54:44 -05002485
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002486error_device_descriptor:
Alan Sternda307122009-12-08 15:54:44 -05002487 usb_autosuspend_device(usb_dev);
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002488error_autoresume:
2489out_authorized:
Matthias Beyer781b2132013-10-10 23:41:29 +02002490 usb_unlock_device(usb_dev); /* complements locktree */
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002491 return result;
2492}
2493
2494
Inaky Perez-Gonzalez0165de02006-08-25 19:35:29 -07002495/* Returns 1 if @hub is a WUSB root hub, 0 otherwise */
2496static unsigned hub_is_wusb(struct usb_hub *hub)
2497{
2498 struct usb_hcd *hcd;
2499 if (hub->hdev->parent != NULL) /* not a root hub? */
2500 return 0;
2501 hcd = container_of(hub->hdev->bus, struct usb_hcd, self);
2502 return hcd->wireless;
2503}
2504
2505
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506#define PORT_RESET_TRIES 5
2507#define SET_ADDRESS_TRIES 2
2508#define GET_DESCRIPTOR_TRIES 2
2509#define SET_CONFIG_TRIES (2 * (use_both_schemes + 1))
Rusty Russell90ab5ee2012-01-13 09:32:20 +10302510#define USE_NEW_SCHEME(i) ((i) / 2 == (int)old_scheme_first)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511
2512#define HUB_ROOT_RESET_TIME 50 /* times are in msec */
2513#define HUB_SHORT_RESET_TIME 10
Andiry Xu75d7cf72011-09-13 16:41:11 -07002514#define HUB_BH_RESET_TIME 50
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515#define HUB_LONG_RESET_TIME 200
Sarah Sharp77c7f072012-11-14 17:16:52 -08002516#define HUB_RESET_TIMEOUT 800
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517
Dan Williams48fc7db2013-12-05 17:07:27 -08002518/*
2519 * "New scheme" enumeration causes an extra state transition to be
2520 * exposed to an xhci host and causes USB3 devices to receive control
2521 * commands in the default state. This has been seen to cause
2522 * enumeration failures, so disable this enumeration scheme for USB3
2523 * devices.
2524 */
2525static bool use_new_scheme(struct usb_device *udev, int retry)
2526{
2527 if (udev->speed == USB_SPEED_SUPER)
2528 return false;
2529
2530 return USE_NEW_SCHEME(retry);
2531}
2532
Sarah Sharp10d674a2011-09-14 14:24:52 -07002533static int hub_port_reset(struct usb_hub *hub, int port1,
2534 struct usb_device *udev, unsigned int delay, bool warm);
2535
Rahul Bedarkar025d4432014-01-04 11:24:41 +05302536/* Is a USB 3.0 port in the Inactive or Compliance Mode state?
Stanislaw Ledwon8bea2bd2012-06-18 15:20:00 +02002537 * Port worm reset is required to recover
2538 */
2539static bool hub_port_warm_reset_required(struct usb_hub *hub, u16 portstatus)
Sarah Sharp10d674a2011-09-14 14:24:52 -07002540{
2541 return hub_is_superspeed(hub->hdev) &&
Stanislaw Ledwon8bea2bd2012-06-18 15:20:00 +02002542 (((portstatus & USB_PORT_STAT_LINK_STATE) ==
2543 USB_SS_PORT_LS_SS_INACTIVE) ||
2544 ((portstatus & USB_PORT_STAT_LINK_STATE) ==
2545 USB_SS_PORT_LS_COMP_MOD)) ;
Sarah Sharp10d674a2011-09-14 14:24:52 -07002546}
2547
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548static int hub_port_wait_reset(struct usb_hub *hub, int port1,
Andiry Xu75d7cf72011-09-13 16:41:11 -07002549 struct usb_device *udev, unsigned int delay, bool warm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002550{
2551 int delay_time, ret;
2552 u16 portstatus;
2553 u16 portchange;
2554
2555 for (delay_time = 0;
2556 delay_time < HUB_RESET_TIMEOUT;
2557 delay_time += delay) {
2558 /* wait to give the device a chance to reset */
2559 msleep(delay);
2560
2561 /* read and decode port status */
2562 ret = hub_port_status(hub, port1, &portstatus, &portchange);
2563 if (ret < 0)
2564 return ret;
2565
Sarah Sharp4f434472012-11-15 14:58:04 -08002566 /* The port state is unknown until the reset completes. */
Sarah Sharp470f0be2012-12-11 10:14:03 -08002567 if (!(portstatus & USB_PORT_STAT_RESET))
2568 break;
Sarah Sharp4f434472012-11-15 14:58:04 -08002569
Linus Torvalds1da177e2005-04-16 15:20:36 -07002570 /* switch to the long delay after two short delay failures */
2571 if (delay_time >= 2 * HUB_SHORT_RESET_TIME)
2572 delay = HUB_LONG_RESET_TIME;
2573
2574 dev_dbg (hub->intfdev,
Andiry Xu75d7cf72011-09-13 16:41:11 -07002575 "port %d not %sreset yet, waiting %dms\n",
2576 port1, warm ? "warm " : "", delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002577 }
2578
Sarah Sharp470f0be2012-12-11 10:14:03 -08002579 if ((portstatus & USB_PORT_STAT_RESET))
2580 return -EBUSY;
2581
2582 if (hub_port_warm_reset_required(hub, portstatus))
2583 return -ENOTCONN;
2584
2585 /* Device went away? */
2586 if (!(portstatus & USB_PORT_STAT_CONNECTION))
2587 return -ENOTCONN;
2588
2589 /* bomb out completely if the connection bounced. A USB 3.0
2590 * connection may bounce if multiple warm resets were issued,
2591 * but the device may have successfully re-connected. Ignore it.
2592 */
2593 if (!hub_is_superspeed(hub->hdev) &&
2594 (portchange & USB_PORT_STAT_C_CONNECTION))
2595 return -ENOTCONN;
2596
2597 if (!(portstatus & USB_PORT_STAT_ENABLE))
2598 return -EBUSY;
2599
2600 if (!udev)
2601 return 0;
2602
2603 if (hub_is_wusb(hub))
2604 udev->speed = USB_SPEED_WIRELESS;
2605 else if (hub_is_superspeed(hub->hdev))
2606 udev->speed = USB_SPEED_SUPER;
2607 else if (portstatus & USB_PORT_STAT_HIGH_SPEED)
2608 udev->speed = USB_SPEED_HIGH;
2609 else if (portstatus & USB_PORT_STAT_LOW_SPEED)
2610 udev->speed = USB_SPEED_LOW;
2611 else
2612 udev->speed = USB_SPEED_FULL;
2613 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002614}
2615
Andiry Xu75d7cf72011-09-13 16:41:11 -07002616static void hub_port_finish_reset(struct usb_hub *hub, int port1,
Sarah Sharpa24a6072012-11-01 11:20:44 -07002617 struct usb_device *udev, int *status)
Andiry Xu75d7cf72011-09-13 16:41:11 -07002618{
2619 switch (*status) {
2620 case 0:
Sarah Sharpa24a6072012-11-01 11:20:44 -07002621 /* TRSTRCY = 10 ms; plus some extra */
2622 msleep(10 + 40);
2623 if (udev) {
2624 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
2625
2626 update_devnum(udev, 0);
2627 /* The xHC may think the device is already reset,
2628 * so ignore the status.
2629 */
2630 if (hcd->driver->reset_device)
2631 hcd->driver->reset_device(hcd, udev);
Andiry Xu75d7cf72011-09-13 16:41:11 -07002632 }
2633 /* FALL THROUGH */
2634 case -ENOTCONN:
2635 case -ENODEV:
Lan Tianyuad493e52013-01-23 04:26:30 +08002636 usb_clear_port_feature(hub->hdev,
Andiry Xu75d7cf72011-09-13 16:41:11 -07002637 port1, USB_PORT_FEAT_C_RESET);
Sarah Sharp1c7439c62012-11-14 15:58:52 -08002638 if (hub_is_superspeed(hub->hdev)) {
Lan Tianyuad493e52013-01-23 04:26:30 +08002639 usb_clear_port_feature(hub->hdev, port1,
Andiry Xu75d7cf72011-09-13 16:41:11 -07002640 USB_PORT_FEAT_C_BH_PORT_RESET);
Lan Tianyuad493e52013-01-23 04:26:30 +08002641 usb_clear_port_feature(hub->hdev, port1,
Andiry Xu75d7cf72011-09-13 16:41:11 -07002642 USB_PORT_FEAT_C_PORT_LINK_STATE);
Lan Tianyuad493e52013-01-23 04:26:30 +08002643 usb_clear_port_feature(hub->hdev, port1,
Sarah Sharpa24a6072012-11-01 11:20:44 -07002644 USB_PORT_FEAT_C_CONNECTION);
Sarah Sharp1c7439c62012-11-14 15:58:52 -08002645 }
Sarah Sharpa24a6072012-11-01 11:20:44 -07002646 if (udev)
Andiry Xu75d7cf72011-09-13 16:41:11 -07002647 usb_set_device_state(udev, *status
2648 ? USB_STATE_NOTATTACHED
2649 : USB_STATE_DEFAULT);
Andiry Xu75d7cf72011-09-13 16:41:11 -07002650 break;
2651 }
2652}
2653
2654/* Handle port reset and port warm(BH) reset (for USB3 protocol ports) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002655static int hub_port_reset(struct usb_hub *hub, int port1,
Andiry Xu75d7cf72011-09-13 16:41:11 -07002656 struct usb_device *udev, unsigned int delay, bool warm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002657{
2658 int i, status;
Sarah Sharpa24a6072012-11-01 11:20:44 -07002659 u16 portchange, portstatus;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660
Sarah Sharp0fe51aa2012-11-01 11:20:44 -07002661 if (!hub_is_superspeed(hub->hdev)) {
2662 if (warm) {
Andiry Xu75d7cf72011-09-13 16:41:11 -07002663 dev_err(hub->intfdev, "only USB3 hub support "
2664 "warm reset\n");
2665 return -EINVAL;
2666 }
Sarah Sharp0fe51aa2012-11-01 11:20:44 -07002667 /* Block EHCI CF initialization during the port reset.
2668 * Some companion controllers don't like it when they mix.
2669 */
2670 down_read(&ehci_cf_port_reset_rwsem);
Sarah Sharpd3b9d7a2012-11-01 11:20:44 -07002671 } else if (!warm) {
2672 /*
2673 * If the caller hasn't explicitly requested a warm reset,
2674 * double check and see if one is needed.
2675 */
2676 status = hub_port_status(hub, port1,
2677 &portstatus, &portchange);
2678 if (status < 0)
2679 goto done;
2680
2681 if (hub_port_warm_reset_required(hub, portstatus))
2682 warm = true;
Andiry Xu75d7cf72011-09-13 16:41:11 -07002683 }
Alan Stern32fe0192007-10-10 16:27:07 -04002684
Linus Torvalds1da177e2005-04-16 15:20:36 -07002685 /* Reset the port */
2686 for (i = 0; i < PORT_RESET_TRIES; i++) {
Andiry Xu75d7cf72011-09-13 16:41:11 -07002687 status = set_port_feature(hub->hdev, port1, (warm ?
2688 USB_PORT_FEAT_BH_PORT_RESET :
2689 USB_PORT_FEAT_RESET));
Alan Sterne9e88fb2013-03-27 16:14:01 -04002690 if (status == -ENODEV) {
2691 ; /* The hub is gone */
2692 } else if (status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002693 dev_err(hub->intfdev,
Andiry Xu75d7cf72011-09-13 16:41:11 -07002694 "cannot %sreset port %d (err = %d)\n",
2695 warm ? "warm " : "", port1, status);
2696 } else {
2697 status = hub_port_wait_reset(hub, port1, udev, delay,
2698 warm);
Alan Sterne9e88fb2013-03-27 16:14:01 -04002699 if (status && status != -ENOTCONN && status != -ENODEV)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002700 dev_dbg(hub->intfdev,
2701 "port_wait_reset: err = %d\n",
2702 status);
2703 }
2704
Sarah Sharpa24a6072012-11-01 11:20:44 -07002705 /* Check for disconnect or reset */
Andiry Xu75d7cf72011-09-13 16:41:11 -07002706 if (status == 0 || status == -ENOTCONN || status == -ENODEV) {
Sarah Sharpa24a6072012-11-01 11:20:44 -07002707 hub_port_finish_reset(hub, port1, udev, &status);
2708
2709 if (!hub_is_superspeed(hub->hdev))
2710 goto done;
2711
2712 /*
2713 * If a USB 3.0 device migrates from reset to an error
2714 * state, re-issue the warm reset.
2715 */
2716 if (hub_port_status(hub, port1,
2717 &portstatus, &portchange) < 0)
2718 goto done;
2719
2720 if (!hub_port_warm_reset_required(hub, portstatus))
2721 goto done;
2722
2723 /*
2724 * If the port is in SS.Inactive or Compliance Mode, the
2725 * hot or warm reset failed. Try another warm reset.
2726 */
2727 if (!warm) {
2728 dev_dbg(hub->intfdev, "hot reset failed, warm reset port %d\n",
2729 port1);
2730 warm = true;
2731 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002732 }
2733
2734 dev_dbg (hub->intfdev,
Andiry Xu75d7cf72011-09-13 16:41:11 -07002735 "port %d not enabled, trying %sreset again...\n",
2736 port1, warm ? "warm " : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002737 delay = HUB_LONG_RESET_TIME;
2738 }
2739
2740 dev_err (hub->intfdev,
2741 "Cannot enable port %i. Maybe the USB cable is bad?\n",
2742 port1);
2743
Andiry Xu75d7cf72011-09-13 16:41:11 -07002744done:
Sarah Sharp0fe51aa2012-11-01 11:20:44 -07002745 if (!hub_is_superspeed(hub->hdev))
Andiry Xu75d7cf72011-09-13 16:41:11 -07002746 up_read(&ehci_cf_port_reset_rwsem);
2747
Linus Torvalds1da177e2005-04-16 15:20:36 -07002748 return status;
2749}
2750
Andiry Xu0ed9a572011-04-27 18:07:43 +08002751/* Check if a port is power on */
2752static int port_is_power_on(struct usb_hub *hub, unsigned portstatus)
2753{
2754 int ret = 0;
2755
2756 if (hub_is_superspeed(hub->hdev)) {
2757 if (portstatus & USB_SS_PORT_STAT_POWER)
2758 ret = 1;
2759 } else {
2760 if (portstatus & USB_PORT_STAT_POWER)
2761 ret = 1;
2762 }
2763
2764 return ret;
2765}
2766
Alan Sternd388dab2006-07-01 22:14:24 -04002767#ifdef CONFIG_PM
Linus Torvalds1da177e2005-04-16 15:20:36 -07002768
Andiry Xu0ed9a572011-04-27 18:07:43 +08002769/* Check if a port is suspended(USB2.0 port) or in U3 state(USB3.0 port) */
2770static int port_is_suspended(struct usb_hub *hub, unsigned portstatus)
2771{
2772 int ret = 0;
2773
2774 if (hub_is_superspeed(hub->hdev)) {
2775 if ((portstatus & USB_PORT_STAT_LINK_STATE)
2776 == USB_SS_PORT_LS_U3)
2777 ret = 1;
2778 } else {
2779 if (portstatus & USB_PORT_STAT_SUSPEND)
2780 ret = 1;
2781 }
2782
2783 return ret;
2784}
Alan Sternb01b03f2008-04-28 11:06:11 -04002785
2786/* Determine whether the device on a port is ready for a normal resume,
2787 * is ready for a reset-resume, or should be disconnected.
2788 */
2789static int check_port_resume_type(struct usb_device *udev,
2790 struct usb_hub *hub, int port1,
2791 int status, unsigned portchange, unsigned portstatus)
2792{
2793 /* Is the device still present? */
Andiry Xu0ed9a572011-04-27 18:07:43 +08002794 if (status || port_is_suspended(hub, portstatus) ||
2795 !port_is_power_on(hub, portstatus) ||
2796 !(portstatus & USB_PORT_STAT_CONNECTION)) {
Alan Sternb01b03f2008-04-28 11:06:11 -04002797 if (status >= 0)
2798 status = -ENODEV;
2799 }
2800
Alan Stern86c57ed2008-06-30 11:14:43 -04002801 /* Can't do a normal resume if the port isn't enabled,
2802 * so try a reset-resume instead.
2803 */
2804 else if (!(portstatus & USB_PORT_STAT_ENABLE) && !udev->reset_resume) {
2805 if (udev->persist_enabled)
2806 udev->reset_resume = 1;
2807 else
2808 status = -ENODEV;
2809 }
Alan Sternb01b03f2008-04-28 11:06:11 -04002810
2811 if (status) {
2812 dev_dbg(hub->intfdev,
2813 "port %d status %04x.%04x after resume, %d\n",
2814 port1, portchange, portstatus, status);
2815 } else if (udev->reset_resume) {
2816
2817 /* Late port handoff can set status-change bits */
2818 if (portchange & USB_PORT_STAT_C_CONNECTION)
Lan Tianyuad493e52013-01-23 04:26:30 +08002819 usb_clear_port_feature(hub->hdev, port1,
Alan Sternb01b03f2008-04-28 11:06:11 -04002820 USB_PORT_FEAT_C_CONNECTION);
2821 if (portchange & USB_PORT_STAT_C_ENABLE)
Lan Tianyuad493e52013-01-23 04:26:30 +08002822 usb_clear_port_feature(hub->hdev, port1,
Alan Sternb01b03f2008-04-28 11:06:11 -04002823 USB_PORT_FEAT_C_ENABLE);
2824 }
2825
2826 return status;
2827}
2828
Sarah Sharpf74631e2012-06-25 12:08:08 -07002829int usb_disable_ltm(struct usb_device *udev)
2830{
2831 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
2832
2833 /* Check if the roothub and device supports LTM. */
2834 if (!usb_device_supports_ltm(hcd->self.root_hub) ||
2835 !usb_device_supports_ltm(udev))
2836 return 0;
2837
2838 /* Clear Feature LTM Enable can only be sent if the device is
2839 * configured.
2840 */
2841 if (!udev->actconfig)
2842 return 0;
2843
2844 return usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
2845 USB_REQ_CLEAR_FEATURE, USB_RECIP_DEVICE,
2846 USB_DEVICE_LTM_ENABLE, 0, NULL, 0,
2847 USB_CTRL_SET_TIMEOUT);
2848}
2849EXPORT_SYMBOL_GPL(usb_disable_ltm);
2850
2851void usb_enable_ltm(struct usb_device *udev)
2852{
2853 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
2854
2855 /* Check if the roothub and device supports LTM. */
2856 if (!usb_device_supports_ltm(hcd->self.root_hub) ||
2857 !usb_device_supports_ltm(udev))
2858 return;
2859
2860 /* Set Feature LTM Enable can only be sent if the device is
2861 * configured.
2862 */
2863 if (!udev->actconfig)
2864 return;
2865
2866 usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
2867 USB_REQ_SET_FEATURE, USB_RECIP_DEVICE,
2868 USB_DEVICE_LTM_ENABLE, 0, NULL, 0,
2869 USB_CTRL_SET_TIMEOUT);
2870}
2871EXPORT_SYMBOL_GPL(usb_enable_ltm);
2872
Lan Tianyu54a3ac02013-01-24 10:31:28 +08002873/*
Alan Stern28e861652013-07-30 15:37:33 -04002874 * usb_enable_remote_wakeup - enable remote wakeup for a device
Lan Tianyu54a3ac02013-01-24 10:31:28 +08002875 * @udev: target device
2876 *
Alan Stern28e861652013-07-30 15:37:33 -04002877 * For USB-2 devices: Set the device's remote wakeup feature.
2878 *
2879 * For USB-3 devices: Assume there's only one function on the device and
2880 * enable remote wake for the first interface. FIXME if the interface
2881 * association descriptor shows there's more than one function.
Lan Tianyu54a3ac02013-01-24 10:31:28 +08002882 */
Alan Stern28e861652013-07-30 15:37:33 -04002883static int usb_enable_remote_wakeup(struct usb_device *udev)
Lan Tianyu54a3ac02013-01-24 10:31:28 +08002884{
Alan Stern28e861652013-07-30 15:37:33 -04002885 if (udev->speed < USB_SPEED_SUPER)
2886 return usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
2887 USB_REQ_SET_FEATURE, USB_RECIP_DEVICE,
2888 USB_DEVICE_REMOTE_WAKEUP, 0, NULL, 0,
2889 USB_CTRL_SET_TIMEOUT);
2890 else
2891 return usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
2892 USB_REQ_SET_FEATURE, USB_RECIP_INTERFACE,
2893 USB_INTRF_FUNC_SUSPEND,
2894 USB_INTRF_FUNC_SUSPEND_RW |
2895 USB_INTRF_FUNC_SUSPEND_LP,
2896 NULL, 0, USB_CTRL_SET_TIMEOUT);
2897}
2898
2899/*
2900 * usb_disable_remote_wakeup - disable remote wakeup for a device
2901 * @udev: target device
2902 *
2903 * For USB-2 devices: Clear the device's remote wakeup feature.
2904 *
2905 * For USB-3 devices: Assume there's only one function on the device and
2906 * disable remote wake for the first interface. FIXME if the interface
2907 * association descriptor shows there's more than one function.
2908 */
2909static int usb_disable_remote_wakeup(struct usb_device *udev)
2910{
2911 if (udev->speed < USB_SPEED_SUPER)
2912 return usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
2913 USB_REQ_CLEAR_FEATURE, USB_RECIP_DEVICE,
2914 USB_DEVICE_REMOTE_WAKEUP, 0, NULL, 0,
2915 USB_CTRL_SET_TIMEOUT);
2916 else
2917 return usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
Lan Tianyu54a3ac02013-01-24 10:31:28 +08002918 USB_REQ_CLEAR_FEATURE, USB_RECIP_INTERFACE,
2919 USB_INTRF_FUNC_SUSPEND, 0, NULL, 0,
2920 USB_CTRL_SET_TIMEOUT);
2921}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922
Alan Sterne583d9d2013-07-11 14:58:04 -04002923/* Count of wakeup-enabled devices at or below udev */
2924static unsigned wakeup_enabled_descendants(struct usb_device *udev)
2925{
2926 struct usb_hub *hub = usb_hub_to_struct_hub(udev);
2927
2928 return udev->do_remote_wakeup +
2929 (hub ? hub->wakeup_enabled_descendants : 0);
2930}
2931
Linus Torvalds1da177e2005-04-16 15:20:36 -07002932/*
Alan Stern140d8f62006-07-01 22:07:21 -04002933 * usb_port_suspend - suspend a usb device's upstream port
Alan Stern624d6c02007-05-30 15:35:16 -04002934 * @udev: device that's no longer in active use, not a root hub
David Brownell5edbfb72005-09-22 22:45:26 -07002935 * Context: must be able to sleep; device not locked; pm locks held
Linus Torvalds1da177e2005-04-16 15:20:36 -07002936 *
2937 * Suspends a USB device that isn't in active use, conserving power.
2938 * Devices may wake out of a suspend, if anything important happens,
2939 * using the remote wakeup mechanism. They may also be taken out of
Alan Stern140d8f62006-07-01 22:07:21 -04002940 * suspend by the host, using usb_port_resume(). It's also routine
Linus Torvalds1da177e2005-04-16 15:20:36 -07002941 * to disconnect devices while they are suspended.
2942 *
David Brownell390a8c32005-09-13 19:57:27 -07002943 * This only affects the USB hardware for a device; its interfaces
2944 * (and, for hubs, child devices) must already have been suspended.
2945 *
Alan Stern624d6c02007-05-30 15:35:16 -04002946 * Selective port suspend reduces power; most suspended devices draw
2947 * less than 500 uA. It's also used in OTG, along with remote wakeup.
2948 * All devices below the suspended port are also suspended.
2949 *
2950 * Devices leave suspend state when the host wakes them up. Some devices
2951 * also support "remote wakeup", where the device can activate the USB
2952 * tree above them to deliver data, such as a keypress or packet. In
2953 * some cases, this wakes the USB host.
2954 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002955 * Suspending OTG devices may trigger HNP, if that's been enabled
2956 * between a pair of dual-role devices. That will change roles, such
2957 * as from A-Host to A-Peripheral or from B-Host back to B-Peripheral.
2958 *
Alan Stern4956ecc2007-05-30 16:51:28 -04002959 * Devices on USB hub ports have only one "suspend" state, corresponding
2960 * to ACPI D2, "may cause the device to lose some context".
2961 * State transitions include:
2962 *
2963 * - suspend, resume ... when the VBUS power link stays live
2964 * - suspend, disconnect ... VBUS lost
2965 *
2966 * Once VBUS drop breaks the circuit, the port it's using has to go through
2967 * normal re-enumeration procedures, starting with enabling VBUS power.
2968 * Other than re-initializing the hub (plug/unplug, except for root hubs),
2969 * Linux (2.6) currently has NO mechanisms to initiate that: no khubd
2970 * timer, no SRP, no requests through sysfs.
2971 *
Alan Sterne583d9d2013-07-11 14:58:04 -04002972 * If Runtime PM isn't enabled or used, non-SuperSpeed devices may not get
2973 * suspended until their bus goes into global suspend (i.e., the root
Alan Stern0aa28322013-03-27 16:14:19 -04002974 * hub is suspended). Nevertheless, we change @udev->state to
2975 * USB_STATE_SUSPENDED as this is the device's "logical" state. The actual
2976 * upstream port setting is stored in @udev->port_is_suspended.
Alan Stern4956ecc2007-05-30 16:51:28 -04002977 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002978 * Returns 0 on success, else negative errno.
2979 */
Alan Stern65bfd292008-11-25 16:39:18 -05002980int usb_port_suspend(struct usb_device *udev, pm_message_t msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002981{
Lan Tianyuad493e52013-01-23 04:26:30 +08002982 struct usb_hub *hub = usb_hub_to_struct_hub(udev->parent);
2983 struct usb_port *port_dev = hub->ports[udev->portnum - 1];
Alan Stern624d6c02007-05-30 15:35:16 -04002984 int port1 = udev->portnum;
2985 int status;
Alan Stern0aa28322013-03-27 16:14:19 -04002986 bool really_suspend = true;
Alan Stern4956ecc2007-05-30 16:51:28 -04002987
Alan Stern624d6c02007-05-30 15:35:16 -04002988 /* enable remote wakeup when appropriate; this lets the device
2989 * wake up the upstream hub (including maybe the root hub).
2990 *
2991 * NOTE: OTG devices may issue remote wakeup (or SRP) even when
2992 * we don't explicitly enable it here.
2993 */
2994 if (udev->do_remote_wakeup) {
Alan Stern28e861652013-07-30 15:37:33 -04002995 status = usb_enable_remote_wakeup(udev);
Oliver Neukum0c487202009-10-19 13:19:41 +02002996 if (status) {
Alan Stern624d6c02007-05-30 15:35:16 -04002997 dev_dbg(&udev->dev, "won't remote wakeup, status %d\n",
2998 status);
Oliver Neukum0c487202009-10-19 13:19:41 +02002999 /* bail if autosuspend is requested */
Alan Stern5b1b0b82011-08-19 23:49:48 +02003000 if (PMSG_IS_AUTO(msg))
Alan Stern4fae6f02013-07-30 15:39:02 -04003001 goto err_wakeup;
Oliver Neukum0c487202009-10-19 13:19:41 +02003002 }
Alan Stern624d6c02007-05-30 15:35:16 -04003003 }
3004
Andiry Xu65580b432011-09-23 14:19:52 -07003005 /* disable USB2 hardware LPM */
3006 if (udev->usb2_hw_lpm_enabled == 1)
3007 usb_set_usb2_hardware_lpm(udev, 0);
3008
Sarah Sharpf74631e2012-06-25 12:08:08 -07003009 if (usb_disable_ltm(udev)) {
Alan Stern4fae6f02013-07-30 15:39:02 -04003010 dev_err(&udev->dev, "Failed to disable LTM before suspend\n.");
3011 status = -ENOMEM;
3012 if (PMSG_IS_AUTO(msg))
3013 goto err_ltm;
Sarah Sharpf74631e2012-06-25 12:08:08 -07003014 }
Sarah Sharp83060952012-05-02 14:25:52 -07003015 if (usb_unlocked_disable_lpm(udev)) {
Alan Stern4fae6f02013-07-30 15:39:02 -04003016 dev_err(&udev->dev, "Failed to disable LPM before suspend\n.");
3017 status = -ENOMEM;
3018 if (PMSG_IS_AUTO(msg))
3019 goto err_lpm3;
Sarah Sharp83060952012-05-02 14:25:52 -07003020 }
3021
Alan Stern624d6c02007-05-30 15:35:16 -04003022 /* see 7.1.7.6 */
Andiry Xua7114232011-04-27 18:07:50 +08003023 if (hub_is_superspeed(hub->hdev))
Sarah Sharpc2f60db2012-12-10 15:43:08 -08003024 status = hub_set_port_link_state(hub, port1, USB_SS_PORT_LS_U3);
Alan Sterne583d9d2013-07-11 14:58:04 -04003025
Alan Stern0aa28322013-03-27 16:14:19 -04003026 /*
3027 * For system suspend, we do not need to enable the suspend feature
3028 * on individual USB-2 ports. The devices will automatically go
3029 * into suspend a few ms after the root hub stops sending packets.
3030 * The USB 2.0 spec calls this "global suspend".
Alan Sterne583d9d2013-07-11 14:58:04 -04003031 *
3032 * However, many USB hubs have a bug: They don't relay wakeup requests
3033 * from a downstream port if the port's suspend feature isn't on.
3034 * Therefore we will turn on the suspend feature if udev or any of its
3035 * descendants is enabled for remote wakeup.
Alan Stern0aa28322013-03-27 16:14:19 -04003036 */
Alan Sterne583d9d2013-07-11 14:58:04 -04003037 else if (PMSG_IS_AUTO(msg) || wakeup_enabled_descendants(udev) > 0)
3038 status = set_port_feature(hub->hdev, port1,
3039 USB_PORT_FEAT_SUSPEND);
Alan Stern0aa28322013-03-27 16:14:19 -04003040 else {
3041 really_suspend = false;
3042 status = 0;
3043 }
Alan Stern624d6c02007-05-30 15:35:16 -04003044 if (status) {
3045 dev_dbg(hub->intfdev, "can't suspend port %d, status %d\n",
3046 port1, status);
Alan Sterncbb33002011-06-15 16:29:16 -04003047
Alan Stern4fae6f02013-07-30 15:39:02 -04003048 /* Try to enable USB3 LPM and LTM again */
3049 usb_unlocked_enable_lpm(udev);
3050 err_lpm3:
3051 usb_enable_ltm(udev);
3052 err_ltm:
Andiry Xuc3e751e2012-05-05 00:50:10 +08003053 /* Try to enable USB2 hardware LPM again */
3054 if (udev->usb2_hw_lpm_capable == 1)
3055 usb_set_usb2_hardware_lpm(udev, 1);
3056
Alan Stern4fae6f02013-07-30 15:39:02 -04003057 if (udev->do_remote_wakeup)
3058 (void) usb_disable_remote_wakeup(udev);
3059 err_wakeup:
Sarah Sharp83060952012-05-02 14:25:52 -07003060
Alan Sterncbb33002011-06-15 16:29:16 -04003061 /* System sleep transitions should never fail */
Alan Stern5b1b0b82011-08-19 23:49:48 +02003062 if (!PMSG_IS_AUTO(msg))
Alan Sterncbb33002011-06-15 16:29:16 -04003063 status = 0;
Alan Stern624d6c02007-05-30 15:35:16 -04003064 } else {
Alan Stern30b1a7a2011-09-27 21:54:22 +02003065 dev_dbg(&udev->dev, "usb %ssuspend, wakeup %d\n",
3066 (PMSG_IS_AUTO(msg) ? "auto-" : ""),
3067 udev->do_remote_wakeup);
Alan Stern0aa28322013-03-27 16:14:19 -04003068 if (really_suspend) {
3069 udev->port_is_suspended = 1;
Alan Sterne583d9d2013-07-11 14:58:04 -04003070
3071 /* device has up to 10 msec to fully suspend */
Alan Stern0aa28322013-03-27 16:14:19 -04003072 msleep(10);
3073 }
Alan Sterne583d9d2013-07-11 14:58:04 -04003074 usb_set_device_state(udev, USB_STATE_SUSPENDED);
Alan Stern624d6c02007-05-30 15:35:16 -04003075 }
Lan Tianyuad493e52013-01-23 04:26:30 +08003076
Alan Stern4fae6f02013-07-30 15:39:02 -04003077 if (status == 0 && !udev->do_remote_wakeup && udev->persist_enabled) {
Lan Tianyu98a4f1f2013-07-03 22:17:54 +08003078 pm_runtime_put_sync(&port_dev->dev);
3079 port_dev->did_runtime_put = true;
Lan Tianyuad493e52013-01-23 04:26:30 +08003080 }
3081
Alan Sternc08512c2010-11-15 15:57:58 -05003082 usb_mark_last_busy(hub->hdev);
Alan Stern4956ecc2007-05-30 16:51:28 -04003083 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003084}
David Brownellf3f32532005-09-22 22:37:29 -07003085
Linus Torvalds1da177e2005-04-16 15:20:36 -07003086/*
David Brownell390a8c32005-09-13 19:57:27 -07003087 * If the USB "suspend" state is in use (rather than "global suspend"),
3088 * many devices will be individually taken out of suspend state using
Alan Stern54515fe2007-05-30 15:38:58 -04003089 * special "resume" signaling. This routine kicks in shortly after
Linus Torvalds1da177e2005-04-16 15:20:36 -07003090 * hardware resume signaling is finished, either because of selective
3091 * resume (by host) or remote wakeup (by device) ... now see what changed
3092 * in the tree that's rooted at this device.
Alan Stern54515fe2007-05-30 15:38:58 -04003093 *
3094 * If @udev->reset_resume is set then the device is reset before the
3095 * status check is done.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003096 */
Alan Stern140d8f62006-07-01 22:07:21 -04003097static int finish_port_resume(struct usb_device *udev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003098{
Alan Stern54515fe2007-05-30 15:38:58 -04003099 int status = 0;
Oliver Neukum07e72b92012-11-29 15:05:57 +01003100 u16 devstatus = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003101
3102 /* caller owns the udev device lock */
Wu Fengguangb9cef6c2008-12-15 15:32:01 +08003103 dev_dbg(&udev->dev, "%s\n",
3104 udev->reset_resume ? "finish reset-resume" : "finish resume");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003105
3106 /* usb ch9 identifies four variants of SUSPENDED, based on what
3107 * state the device resumes to. Linux currently won't see the
3108 * first two on the host side; they'd be inside hub_port_init()
3109 * during many timeouts, but khubd can't suspend until later.
3110 */
3111 usb_set_device_state(udev, udev->actconfig
3112 ? USB_STATE_CONFIGURED
3113 : USB_STATE_ADDRESS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003114
Alan Stern54515fe2007-05-30 15:38:58 -04003115 /* 10.5.4.5 says not to reset a suspended port if the attached
3116 * device is enabled for remote wakeup. Hence the reset
3117 * operation is carried out here, after the port has been
3118 * resumed.
3119 */
Alan Stern1d102552014-03-18 10:39:05 -04003120 if (udev->reset_resume) {
3121 /*
3122 * If the device morphs or switches modes when it is reset,
3123 * we don't want to perform a reset-resume. We'll fail the
3124 * resume, which will cause a logical disconnect, and then
3125 * the device will be rediscovered.
3126 */
Alan Stern86c57ed2008-06-30 11:14:43 -04003127 retry_reset_resume:
Alan Stern1d102552014-03-18 10:39:05 -04003128 if (udev->quirks & USB_QUIRK_RESET)
3129 status = -ENODEV;
3130 else
3131 status = usb_reset_and_verify_device(udev);
3132 }
Alan Stern54515fe2007-05-30 15:38:58 -04003133
Matthias Beyer469271f2013-10-10 23:41:27 +02003134 /* 10.5.4.5 says be sure devices in the tree are still there.
3135 * For now let's assume the device didn't go crazy on resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003136 * and device drivers will know about any resume quirks.
3137 */
Alan Stern54515fe2007-05-30 15:38:58 -04003138 if (status == 0) {
Alan Stern46dede42007-08-14 10:56:10 -04003139 devstatus = 0;
Alan Stern54515fe2007-05-30 15:38:58 -04003140 status = usb_get_status(udev, USB_RECIP_DEVICE, 0, &devstatus);
Alan Stern86c57ed2008-06-30 11:14:43 -04003141
3142 /* If a normal resume failed, try doing a reset-resume */
3143 if (status && !udev->reset_resume && udev->persist_enabled) {
3144 dev_dbg(&udev->dev, "retry with reset-resume\n");
3145 udev->reset_resume = 1;
3146 goto retry_reset_resume;
3147 }
Alan Stern54515fe2007-05-30 15:38:58 -04003148 }
Alan Sternb40b7a92006-06-19 15:12:38 -04003149
Alan Stern624d6c02007-05-30 15:35:16 -04003150 if (status) {
3151 dev_dbg(&udev->dev, "gone after usb resume? status %d\n",
3152 status);
Oliver Neukum07e72b92012-11-29 15:05:57 +01003153 /*
3154 * There are a few quirky devices which violate the standard
3155 * by claiming to have remote wakeup enabled after a reset,
3156 * which crash if the feature is cleared, hence check for
3157 * udev->reset_resume
3158 */
3159 } else if (udev->actconfig && !udev->reset_resume) {
Alan Stern28e861652013-07-30 15:37:33 -04003160 if (udev->speed < USB_SPEED_SUPER) {
Lan Tianyu54a3ac02013-01-24 10:31:28 +08003161 if (devstatus & (1 << USB_DEVICE_REMOTE_WAKEUP))
Alan Stern28e861652013-07-30 15:37:33 -04003162 status = usb_disable_remote_wakeup(udev);
Lan Tianyu54a3ac02013-01-24 10:31:28 +08003163 } else {
3164 status = usb_get_status(udev, USB_RECIP_INTERFACE, 0,
3165 &devstatus);
Lan Tianyu54a3ac02013-01-24 10:31:28 +08003166 if (!status && devstatus & (USB_INTRF_STAT_FUNC_RW_CAP
3167 | USB_INTRF_STAT_FUNC_RW))
Alan Stern28e861652013-07-30 15:37:33 -04003168 status = usb_disable_remote_wakeup(udev);
Alan Stern4bf0ba82005-11-21 11:58:07 -05003169 }
Lan Tianyu54a3ac02013-01-24 10:31:28 +08003170
3171 if (status)
3172 dev_dbg(&udev->dev,
3173 "disable remote wakeup, status %d\n",
3174 status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003175 status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003176 }
3177 return status;
3178}
3179
Alan Stern624d6c02007-05-30 15:35:16 -04003180/*
3181 * usb_port_resume - re-activate a suspended usb device's upstream port
3182 * @udev: device to re-activate, not a root hub
3183 * Context: must be able to sleep; device not locked; pm locks held
3184 *
3185 * This will re-activate the suspended device, increasing power usage
3186 * while letting drivers communicate again with its endpoints.
3187 * USB resume explicitly guarantees that the power session between
3188 * the host and the device is the same as it was when the device
3189 * suspended.
3190 *
Alan Sternfeccc302008-03-03 15:15:59 -05003191 * If @udev->reset_resume is set then this routine won't check that the
3192 * port is still enabled. Furthermore, finish_port_resume() above will
Alan Stern54515fe2007-05-30 15:38:58 -04003193 * reset @udev. The end result is that a broken power session can be
3194 * recovered and @udev will appear to persist across a loss of VBUS power.
3195 *
3196 * For example, if a host controller doesn't maintain VBUS suspend current
3197 * during a system sleep or is reset when the system wakes up, all the USB
3198 * power sessions below it will be broken. This is especially troublesome
3199 * for mass-storage devices containing mounted filesystems, since the
3200 * device will appear to have disconnected and all the memory mappings
3201 * to it will be lost. Using the USB_PERSIST facility, the device can be
3202 * made to appear as if it had not disconnected.
3203 *
Ming Lei742120c2008-06-18 22:00:29 +08003204 * This facility can be dangerous. Although usb_reset_and_verify_device() makes
Alan Sternfeccc302008-03-03 15:15:59 -05003205 * every effort to insure that the same device is present after the
Alan Stern54515fe2007-05-30 15:38:58 -04003206 * reset as before, it cannot provide a 100% guarantee. Furthermore it's
3207 * quite possible for a device to remain unaltered but its media to be
3208 * changed. If the user replaces a flash memory card while the system is
3209 * asleep, he will have only himself to blame when the filesystem on the
3210 * new card is corrupted and the system crashes.
3211 *
Alan Stern624d6c02007-05-30 15:35:16 -04003212 * Returns 0 on success, else negative errno.
3213 */
Alan Stern65bfd292008-11-25 16:39:18 -05003214int usb_port_resume(struct usb_device *udev, pm_message_t msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003215{
Lan Tianyuad493e52013-01-23 04:26:30 +08003216 struct usb_hub *hub = usb_hub_to_struct_hub(udev->parent);
3217 struct usb_port *port_dev = hub->ports[udev->portnum - 1];
Alan Stern624d6c02007-05-30 15:35:16 -04003218 int port1 = udev->portnum;
3219 int status;
3220 u16 portchange, portstatus;
Alan Sternd25450c2006-11-20 11:14:30 -05003221
Lan Tianyuad493e52013-01-23 04:26:30 +08003222 if (port_dev->did_runtime_put) {
3223 status = pm_runtime_get_sync(&port_dev->dev);
3224 port_dev->did_runtime_put = false;
3225 if (status < 0) {
3226 dev_dbg(&udev->dev, "can't resume usb port, status %d\n",
3227 status);
3228 return status;
3229 }
3230 }
3231
Alan Sternd25450c2006-11-20 11:14:30 -05003232 /* Skip the initial Clear-Suspend step for a remote wakeup */
3233 status = hub_port_status(hub, port1, &portstatus, &portchange);
Andiry Xu0ed9a572011-04-27 18:07:43 +08003234 if (status == 0 && !port_is_suspended(hub, portstatus))
Alan Sternd25450c2006-11-20 11:14:30 -05003235 goto SuspendCleared;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003236
Matthias Beyer781b2132013-10-10 23:41:29 +02003237 /* dev_dbg(hub->intfdev, "resume port %d\n", port1); */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003238
Alan Sternd5cbad42006-08-11 16:52:39 -04003239 set_bit(port1, hub->busy_bits);
3240
Linus Torvalds1da177e2005-04-16 15:20:36 -07003241 /* see 7.1.7.7; affects power usage, but not budgeting */
Andiry Xua7114232011-04-27 18:07:50 +08003242 if (hub_is_superspeed(hub->hdev))
Sarah Sharpc2f60db2012-12-10 15:43:08 -08003243 status = hub_set_port_link_state(hub, port1, USB_SS_PORT_LS_U0);
Andiry Xua7114232011-04-27 18:07:50 +08003244 else
Lan Tianyuad493e52013-01-23 04:26:30 +08003245 status = usb_clear_port_feature(hub->hdev,
Andiry Xua7114232011-04-27 18:07:50 +08003246 port1, USB_PORT_FEAT_SUSPEND);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003247 if (status) {
Alan Stern624d6c02007-05-30 15:35:16 -04003248 dev_dbg(hub->intfdev, "can't resume port %d, status %d\n",
3249 port1, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003250 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003251 /* drive resume for at least 20 msec */
Alan Stern686314c2007-05-30 15:34:36 -04003252 dev_dbg(&udev->dev, "usb %sresume\n",
Alan Stern5b1b0b82011-08-19 23:49:48 +02003253 (PMSG_IS_AUTO(msg) ? "auto-" : ""));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003254 msleep(25);
3255
Linus Torvalds1da177e2005-04-16 15:20:36 -07003256 /* Virtual root hubs can trigger on GET_PORT_STATUS to
3257 * stop resume signaling. Then finish the resume
3258 * sequence.
3259 */
Alan Sternd25450c2006-11-20 11:14:30 -05003260 status = hub_port_status(hub, port1, &portstatus, &portchange);
Alan Stern54515fe2007-05-30 15:38:58 -04003261
Alan Sternb01b03f2008-04-28 11:06:11 -04003262 /* TRSMRCY = 10 msec */
3263 msleep(10);
3264 }
Alan Stern54515fe2007-05-30 15:38:58 -04003265
Alan Sternb01b03f2008-04-28 11:06:11 -04003266 SuspendCleared:
3267 if (status == 0) {
Alan Sternbfd1e912012-10-19 11:03:39 -04003268 udev->port_is_suspended = 0;
Andiry Xua7114232011-04-27 18:07:50 +08003269 if (hub_is_superspeed(hub->hdev)) {
3270 if (portchange & USB_PORT_STAT_C_LINK_STATE)
Lan Tianyuad493e52013-01-23 04:26:30 +08003271 usb_clear_port_feature(hub->hdev, port1,
Andiry Xua7114232011-04-27 18:07:50 +08003272 USB_PORT_FEAT_C_PORT_LINK_STATE);
3273 } else {
3274 if (portchange & USB_PORT_STAT_C_SUSPEND)
Lan Tianyuad493e52013-01-23 04:26:30 +08003275 usb_clear_port_feature(hub->hdev, port1,
Andiry Xua7114232011-04-27 18:07:50 +08003276 USB_PORT_FEAT_C_SUSPEND);
3277 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003278 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003279
Alan Sternd5cbad42006-08-11 16:52:39 -04003280 clear_bit(port1, hub->busy_bits);
Alan Sternd5cbad42006-08-11 16:52:39 -04003281
Alan Sternb01b03f2008-04-28 11:06:11 -04003282 status = check_port_resume_type(udev,
3283 hub, port1, status, portchange, portstatus);
Alan Stern54515fe2007-05-30 15:38:58 -04003284 if (status == 0)
3285 status = finish_port_resume(udev);
3286 if (status < 0) {
3287 dev_dbg(&udev->dev, "can't resume, status %d\n", status);
3288 hub_port_logical_disconnect(hub, port1);
Andiry Xu65580b432011-09-23 14:19:52 -07003289 } else {
3290 /* Try to enable USB2 hardware LPM */
3291 if (udev->usb2_hw_lpm_capable == 1)
3292 usb_set_usb2_hardware_lpm(udev, 1);
Sarah Sharp83060952012-05-02 14:25:52 -07003293
Sarah Sharpf74631e2012-06-25 12:08:08 -07003294 /* Try to enable USB3 LTM and LPM */
3295 usb_enable_ltm(udev);
Sarah Sharp83060952012-05-02 14:25:52 -07003296 usb_unlocked_enable_lpm(udev);
Alan Stern54515fe2007-05-30 15:38:58 -04003297 }
Andiry Xu65580b432011-09-23 14:19:52 -07003298
Linus Torvalds1da177e2005-04-16 15:20:36 -07003299 return status;
3300}
3301
Alan Stern84ebc102013-03-27 16:14:46 -04003302#ifdef CONFIG_PM_RUNTIME
3303
Alan Stern8808f002008-04-28 11:06:55 -04003304/* caller has locked udev */
Alan Stern0534d462010-01-08 12:56:30 -05003305int usb_remote_wakeup(struct usb_device *udev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003306{
3307 int status = 0;
3308
Linus Torvalds1da177e2005-04-16 15:20:36 -07003309 if (udev->state == USB_STATE_SUSPENDED) {
Alan Stern645daaa2006-08-30 15:47:02 -04003310 dev_dbg(&udev->dev, "usb %sresume\n", "wakeup-");
Alan Stern9bbdf1e2010-01-08 12:57:28 -05003311 status = usb_autoresume_device(udev);
3312 if (status == 0) {
3313 /* Let the drivers do their thing, then... */
3314 usb_autosuspend_device(udev);
3315 }
Alan Sternd25450c2006-11-20 11:14:30 -05003316 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003317 return status;
3318}
3319
Alan Sternd388dab2006-07-01 22:14:24 -04003320#endif
3321
Ming Leie6f30de2012-10-24 11:59:24 +08003322static int check_ports_changed(struct usb_hub *hub)
3323{
3324 int port1;
3325
3326 for (port1 = 1; port1 <= hub->hdev->maxchild; ++port1) {
3327 u16 portstatus, portchange;
3328 int status;
3329
3330 status = hub_port_status(hub, port1, &portstatus, &portchange);
3331 if (!status && portchange)
3332 return 1;
3333 }
3334 return 0;
3335}
3336
David Brownelldb690872005-09-13 19:56:33 -07003337static int hub_suspend(struct usb_interface *intf, pm_message_t msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003338{
3339 struct usb_hub *hub = usb_get_intfdata (intf);
3340 struct usb_device *hdev = hub->hdev;
3341 unsigned port1;
Sarah Sharp4296c70a2012-01-06 10:34:31 -08003342 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003343
Alan Sterne583d9d2013-07-11 14:58:04 -04003344 /*
3345 * Warn if children aren't already suspended.
3346 * Also, add up the number of wakeup-enabled descendants.
3347 */
3348 hub->wakeup_enabled_descendants = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003349 for (port1 = 1; port1 <= hdev->maxchild; port1++) {
3350 struct usb_device *udev;
3351
Lan Tianyuff823c792012-09-05 13:44:32 +08003352 udev = hub->ports[port1 - 1]->child;
Alan Stern6840d252007-09-10 11:34:26 -04003353 if (udev && udev->can_submit) {
Rahul Bedarkar025d4432014-01-04 11:24:41 +05303354 dev_warn(&intf->dev, "port %d not suspended yet\n",
3355 port1);
Alan Stern5b1b0b82011-08-19 23:49:48 +02003356 if (PMSG_IS_AUTO(msg))
Alan Sterncbb33002011-06-15 16:29:16 -04003357 return -EBUSY;
David Brownellc9f89fa2005-09-13 19:57:04 -07003358 }
Alan Sterne583d9d2013-07-11 14:58:04 -04003359 if (udev)
3360 hub->wakeup_enabled_descendants +=
3361 wakeup_enabled_descendants(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003362 }
Ming Leie6f30de2012-10-24 11:59:24 +08003363
3364 if (hdev->do_remote_wakeup && hub->quirk_check_port_auto_suspend) {
3365 /* check if there are changes pending on hub ports */
3366 if (check_ports_changed(hub)) {
3367 if (PMSG_IS_AUTO(msg))
3368 return -EBUSY;
3369 pm_wakeup_event(&hdev->dev, 2000);
3370 }
3371 }
3372
Sarah Sharp4296c70a2012-01-06 10:34:31 -08003373 if (hub_is_superspeed(hdev) && hdev->do_remote_wakeup) {
3374 /* Enable hub to send remote wakeup for all ports. */
3375 for (port1 = 1; port1 <= hdev->maxchild; port1++) {
3376 status = set_port_feature(hdev,
3377 port1 |
3378 USB_PORT_FEAT_REMOTE_WAKE_CONNECT |
3379 USB_PORT_FEAT_REMOTE_WAKE_DISCONNECT |
3380 USB_PORT_FEAT_REMOTE_WAKE_OVER_CURRENT,
3381 USB_PORT_FEAT_REMOTE_WAKE_MASK);
3382 }
3383 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003384
Harvey Harrison441b62c2008-03-03 16:08:34 -08003385 dev_dbg(&intf->dev, "%s\n", __func__);
Alan Stern40f122f2006-11-09 14:44:33 -05003386
David Brownellc9f89fa2005-09-13 19:57:04 -07003387 /* stop khubd and related activity */
Alan Stern43303542008-04-28 11:07:31 -04003388 hub_quiesce(hub, HUB_SUSPEND);
Alan Sternb6f64362007-05-04 11:51:54 -04003389 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003390}
3391
3392static int hub_resume(struct usb_interface *intf)
3393{
Alan Stern5e6effa2008-03-03 15:15:51 -05003394 struct usb_hub *hub = usb_get_intfdata(intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003395
Alan Stern5e6effa2008-03-03 15:15:51 -05003396 dev_dbg(&intf->dev, "%s\n", __func__);
Alan Sternf2835212008-04-28 11:07:17 -04003397 hub_activate(hub, HUB_RESUME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003398 return 0;
3399}
3400
Alan Sternb41a60e2007-05-30 15:39:33 -04003401static int hub_reset_resume(struct usb_interface *intf)
Alan Sternf07600c2007-05-30 15:38:16 -04003402{
Alan Sternb41a60e2007-05-30 15:39:33 -04003403 struct usb_hub *hub = usb_get_intfdata(intf);
Alan Sternf07600c2007-05-30 15:38:16 -04003404
Alan Stern5e6effa2008-03-03 15:15:51 -05003405 dev_dbg(&intf->dev, "%s\n", __func__);
Alan Sternf2835212008-04-28 11:07:17 -04003406 hub_activate(hub, HUB_RESET_RESUME);
Alan Sternf07600c2007-05-30 15:38:16 -04003407 return 0;
3408}
3409
Alan Stern54515fe2007-05-30 15:38:58 -04003410/**
3411 * usb_root_hub_lost_power - called by HCD if the root hub lost Vbus power
3412 * @rhdev: struct usb_device for the root hub
3413 *
3414 * The USB host controller driver calls this function when its root hub
3415 * is resumed and Vbus power has been interrupted or the controller
Alan Sternfeccc302008-03-03 15:15:59 -05003416 * has been reset. The routine marks @rhdev as having lost power.
3417 * When the hub driver is resumed it will take notice and carry out
3418 * power-session recovery for all the "USB-PERSIST"-enabled child devices;
3419 * the others will be disconnected.
Alan Stern54515fe2007-05-30 15:38:58 -04003420 */
3421void usb_root_hub_lost_power(struct usb_device *rhdev)
3422{
3423 dev_warn(&rhdev->dev, "root hub lost power or was reset\n");
3424 rhdev->reset_resume = 1;
3425}
3426EXPORT_SYMBOL_GPL(usb_root_hub_lost_power);
3427
Sarah Sharp1ea7e0e2012-04-24 17:21:50 -07003428static const char * const usb3_lpm_names[] = {
3429 "U0",
3430 "U1",
3431 "U2",
3432 "U3",
3433};
3434
3435/*
3436 * Send a Set SEL control transfer to the device, prior to enabling
3437 * device-initiated U1 or U2. This lets the device know the exit latencies from
3438 * the time the device initiates a U1 or U2 exit, to the time it will receive a
3439 * packet from the host.
3440 *
3441 * This function will fail if the SEL or PEL values for udev are greater than
3442 * the maximum allowed values for the link state to be enabled.
3443 */
3444static int usb_req_set_sel(struct usb_device *udev, enum usb3_link_state state)
3445{
3446 struct usb_set_sel_req *sel_values;
3447 unsigned long long u1_sel;
3448 unsigned long long u1_pel;
3449 unsigned long long u2_sel;
3450 unsigned long long u2_pel;
3451 int ret;
3452
Xenia Ragiadakou38d7f682013-09-04 17:24:45 +03003453 if (udev->state != USB_STATE_CONFIGURED)
3454 return 0;
3455
Sarah Sharp1ea7e0e2012-04-24 17:21:50 -07003456 /* Convert SEL and PEL stored in ns to us */
3457 u1_sel = DIV_ROUND_UP(udev->u1_params.sel, 1000);
3458 u1_pel = DIV_ROUND_UP(udev->u1_params.pel, 1000);
3459 u2_sel = DIV_ROUND_UP(udev->u2_params.sel, 1000);
3460 u2_pel = DIV_ROUND_UP(udev->u2_params.pel, 1000);
3461
3462 /*
3463 * Make sure that the calculated SEL and PEL values for the link
3464 * state we're enabling aren't bigger than the max SEL/PEL
3465 * value that will fit in the SET SEL control transfer.
3466 * Otherwise the device would get an incorrect idea of the exit
3467 * latency for the link state, and could start a device-initiated
3468 * U1/U2 when the exit latencies are too high.
3469 */
3470 if ((state == USB3_LPM_U1 &&
3471 (u1_sel > USB3_LPM_MAX_U1_SEL_PEL ||
3472 u1_pel > USB3_LPM_MAX_U1_SEL_PEL)) ||
3473 (state == USB3_LPM_U2 &&
3474 (u2_sel > USB3_LPM_MAX_U2_SEL_PEL ||
3475 u2_pel > USB3_LPM_MAX_U2_SEL_PEL))) {
Sarah Sharp1510a1a2012-10-05 10:30:35 -07003476 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 -07003477 usb3_lpm_names[state], u1_sel, u1_pel);
3478 return -EINVAL;
3479 }
3480
3481 /*
3482 * If we're enabling device-initiated LPM for one link state,
3483 * but the other link state has a too high SEL or PEL value,
3484 * just set those values to the max in the Set SEL request.
3485 */
3486 if (u1_sel > USB3_LPM_MAX_U1_SEL_PEL)
3487 u1_sel = USB3_LPM_MAX_U1_SEL_PEL;
3488
3489 if (u1_pel > USB3_LPM_MAX_U1_SEL_PEL)
3490 u1_pel = USB3_LPM_MAX_U1_SEL_PEL;
3491
3492 if (u2_sel > USB3_LPM_MAX_U2_SEL_PEL)
3493 u2_sel = USB3_LPM_MAX_U2_SEL_PEL;
3494
3495 if (u2_pel > USB3_LPM_MAX_U2_SEL_PEL)
3496 u2_pel = USB3_LPM_MAX_U2_SEL_PEL;
3497
3498 /*
3499 * usb_enable_lpm() can be called as part of a failed device reset,
3500 * which may be initiated by an error path of a mass storage driver.
3501 * Therefore, use GFP_NOIO.
3502 */
3503 sel_values = kmalloc(sizeof *(sel_values), GFP_NOIO);
3504 if (!sel_values)
3505 return -ENOMEM;
3506
3507 sel_values->u1_sel = u1_sel;
3508 sel_values->u1_pel = u1_pel;
3509 sel_values->u2_sel = cpu_to_le16(u2_sel);
3510 sel_values->u2_pel = cpu_to_le16(u2_pel);
3511
3512 ret = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
3513 USB_REQ_SET_SEL,
3514 USB_RECIP_DEVICE,
3515 0, 0,
3516 sel_values, sizeof *(sel_values),
3517 USB_CTRL_SET_TIMEOUT);
3518 kfree(sel_values);
3519 return ret;
3520}
3521
3522/*
3523 * Enable or disable device-initiated U1 or U2 transitions.
3524 */
3525static int usb_set_device_initiated_lpm(struct usb_device *udev,
3526 enum usb3_link_state state, bool enable)
3527{
3528 int ret;
3529 int feature;
3530
3531 switch (state) {
3532 case USB3_LPM_U1:
3533 feature = USB_DEVICE_U1_ENABLE;
3534 break;
3535 case USB3_LPM_U2:
3536 feature = USB_DEVICE_U2_ENABLE;
3537 break;
3538 default:
3539 dev_warn(&udev->dev, "%s: Can't %s non-U1 or U2 state.\n",
3540 __func__, enable ? "enable" : "disable");
3541 return -EINVAL;
3542 }
3543
3544 if (udev->state != USB_STATE_CONFIGURED) {
3545 dev_dbg(&udev->dev, "%s: Can't %s %s state "
3546 "for unconfigured device.\n",
3547 __func__, enable ? "enable" : "disable",
3548 usb3_lpm_names[state]);
3549 return 0;
3550 }
3551
3552 if (enable) {
3553 /*
Sarah Sharp1ea7e0e2012-04-24 17:21:50 -07003554 * Now send the control transfer to enable device-initiated LPM
3555 * for either U1 or U2.
3556 */
3557 ret = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
3558 USB_REQ_SET_FEATURE,
3559 USB_RECIP_DEVICE,
3560 feature,
3561 0, NULL, 0,
3562 USB_CTRL_SET_TIMEOUT);
3563 } else {
3564 ret = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
3565 USB_REQ_CLEAR_FEATURE,
3566 USB_RECIP_DEVICE,
3567 feature,
3568 0, NULL, 0,
3569 USB_CTRL_SET_TIMEOUT);
3570 }
3571 if (ret < 0) {
3572 dev_warn(&udev->dev, "%s of device-initiated %s failed.\n",
3573 enable ? "Enable" : "Disable",
3574 usb3_lpm_names[state]);
3575 return -EBUSY;
3576 }
3577 return 0;
3578}
3579
3580static int usb_set_lpm_timeout(struct usb_device *udev,
3581 enum usb3_link_state state, int timeout)
3582{
3583 int ret;
3584 int feature;
3585
3586 switch (state) {
3587 case USB3_LPM_U1:
3588 feature = USB_PORT_FEAT_U1_TIMEOUT;
3589 break;
3590 case USB3_LPM_U2:
3591 feature = USB_PORT_FEAT_U2_TIMEOUT;
3592 break;
3593 default:
3594 dev_warn(&udev->dev, "%s: Can't set timeout for non-U1 or U2 state.\n",
3595 __func__);
3596 return -EINVAL;
3597 }
3598
3599 if (state == USB3_LPM_U1 && timeout > USB3_LPM_U1_MAX_TIMEOUT &&
3600 timeout != USB3_LPM_DEVICE_INITIATED) {
3601 dev_warn(&udev->dev, "Failed to set %s timeout to 0x%x, "
3602 "which is a reserved value.\n",
3603 usb3_lpm_names[state], timeout);
3604 return -EINVAL;
3605 }
3606
3607 ret = set_port_feature(udev->parent,
3608 USB_PORT_LPM_TIMEOUT(timeout) | udev->portnum,
3609 feature);
3610 if (ret < 0) {
3611 dev_warn(&udev->dev, "Failed to set %s timeout to 0x%x,"
3612 "error code %i\n", usb3_lpm_names[state],
3613 timeout, ret);
3614 return -EBUSY;
3615 }
3616 if (state == USB3_LPM_U1)
3617 udev->u1_params.timeout = timeout;
3618 else
3619 udev->u2_params.timeout = timeout;
3620 return 0;
3621}
3622
3623/*
3624 * Enable the hub-initiated U1/U2 idle timeouts, and enable device-initiated
3625 * U1/U2 entry.
3626 *
3627 * We will attempt to enable U1 or U2, but there are no guarantees that the
3628 * control transfers to set the hub timeout or enable device-initiated U1/U2
3629 * will be successful.
3630 *
3631 * If we cannot set the parent hub U1/U2 timeout, we attempt to let the xHCI
3632 * driver know about it. If that call fails, it should be harmless, and just
3633 * take up more slightly more bus bandwidth for unnecessary U1/U2 exit latency.
3634 */
3635static void usb_enable_link_state(struct usb_hcd *hcd, struct usb_device *udev,
3636 enum usb3_link_state state)
3637{
Sarah Sharp65a95b72012-10-05 10:32:07 -07003638 int timeout, ret;
Sarah Sharpae8963a2012-10-03 11:18:05 -07003639 __u8 u1_mel = udev->bos->ss_cap->bU1devExitLat;
3640 __le16 u2_mel = udev->bos->ss_cap->bU2DevExitLat;
3641
3642 /* If the device says it doesn't have *any* exit latency to come out of
3643 * U1 or U2, it's probably lying. Assume it doesn't implement that link
3644 * state.
3645 */
3646 if ((state == USB3_LPM_U1 && u1_mel == 0) ||
3647 (state == USB3_LPM_U2 && u2_mel == 0))
3648 return;
Sarah Sharp1ea7e0e2012-04-24 17:21:50 -07003649
Sarah Sharp65a95b72012-10-05 10:32:07 -07003650 /*
3651 * First, let the device know about the exit latencies
3652 * associated with the link state we're about to enable.
3653 */
3654 ret = usb_req_set_sel(udev, state);
3655 if (ret < 0) {
3656 dev_warn(&udev->dev, "Set SEL for device-initiated %s failed.\n",
3657 usb3_lpm_names[state]);
3658 return;
3659 }
3660
Sarah Sharp1ea7e0e2012-04-24 17:21:50 -07003661 /* We allow the host controller to set the U1/U2 timeout internally
3662 * first, so that it can change its schedule to account for the
3663 * additional latency to send data to a device in a lower power
3664 * link state.
3665 */
3666 timeout = hcd->driver->enable_usb3_lpm_timeout(hcd, udev, state);
3667
3668 /* xHCI host controller doesn't want to enable this LPM state. */
3669 if (timeout == 0)
3670 return;
3671
3672 if (timeout < 0) {
3673 dev_warn(&udev->dev, "Could not enable %s link state, "
3674 "xHCI error %i.\n", usb3_lpm_names[state],
3675 timeout);
3676 return;
3677 }
3678
3679 if (usb_set_lpm_timeout(udev, state, timeout))
3680 /* If we can't set the parent hub U1/U2 timeout,
3681 * device-initiated LPM won't be allowed either, so let the xHCI
3682 * host know that this link state won't be enabled.
3683 */
3684 hcd->driver->disable_usb3_lpm_timeout(hcd, udev, state);
3685
3686 /* Only a configured device will accept the Set Feature U1/U2_ENABLE */
3687 else if (udev->actconfig)
3688 usb_set_device_initiated_lpm(udev, state, true);
3689
3690}
3691
3692/*
3693 * Disable the hub-initiated U1/U2 idle timeouts, and disable device-initiated
3694 * U1/U2 entry.
3695 *
3696 * If this function returns -EBUSY, the parent hub will still allow U1/U2 entry.
3697 * If zero is returned, the parent will not allow the link to go into U1/U2.
3698 *
3699 * If zero is returned, device-initiated U1/U2 entry may still be enabled, but
3700 * it won't have an effect on the bus link state because the parent hub will
3701 * still disallow device-initiated U1/U2 entry.
3702 *
3703 * If zero is returned, the xHCI host controller may still think U1/U2 entry is
3704 * possible. The result will be slightly more bus bandwidth will be taken up
3705 * (to account for U1/U2 exit latency), but it should be harmless.
3706 */
3707static int usb_disable_link_state(struct usb_hcd *hcd, struct usb_device *udev,
3708 enum usb3_link_state state)
3709{
3710 int feature;
3711
3712 switch (state) {
3713 case USB3_LPM_U1:
3714 feature = USB_PORT_FEAT_U1_TIMEOUT;
3715 break;
3716 case USB3_LPM_U2:
3717 feature = USB_PORT_FEAT_U2_TIMEOUT;
3718 break;
3719 default:
3720 dev_warn(&udev->dev, "%s: Can't disable non-U1 or U2 state.\n",
3721 __func__);
3722 return -EINVAL;
3723 }
3724
3725 if (usb_set_lpm_timeout(udev, state, 0))
3726 return -EBUSY;
3727
3728 usb_set_device_initiated_lpm(udev, state, false);
3729
3730 if (hcd->driver->disable_usb3_lpm_timeout(hcd, udev, state))
3731 dev_warn(&udev->dev, "Could not disable xHCI %s timeout, "
3732 "bus schedule bandwidth may be impacted.\n",
3733 usb3_lpm_names[state]);
3734 return 0;
3735}
3736
3737/*
3738 * Disable hub-initiated and device-initiated U1 and U2 entry.
3739 * Caller must own the bandwidth_mutex.
3740 *
3741 * This will call usb_enable_lpm() on failure, which will decrement
3742 * lpm_disable_count, and will re-enable LPM if lpm_disable_count reaches zero.
3743 */
3744int usb_disable_lpm(struct usb_device *udev)
3745{
3746 struct usb_hcd *hcd;
3747
3748 if (!udev || !udev->parent ||
3749 udev->speed != USB_SPEED_SUPER ||
3750 !udev->lpm_capable)
3751 return 0;
3752
3753 hcd = bus_to_hcd(udev->bus);
3754 if (!hcd || !hcd->driver->disable_usb3_lpm_timeout)
3755 return 0;
3756
3757 udev->lpm_disable_count++;
Dan Carpenter55558c32012-05-22 20:54:34 +03003758 if ((udev->u1_params.timeout == 0 && udev->u2_params.timeout == 0))
Sarah Sharp1ea7e0e2012-04-24 17:21:50 -07003759 return 0;
3760
3761 /* If LPM is enabled, attempt to disable it. */
3762 if (usb_disable_link_state(hcd, udev, USB3_LPM_U1))
3763 goto enable_lpm;
3764 if (usb_disable_link_state(hcd, udev, USB3_LPM_U2))
3765 goto enable_lpm;
3766
3767 return 0;
3768
3769enable_lpm:
3770 usb_enable_lpm(udev);
3771 return -EBUSY;
3772}
3773EXPORT_SYMBOL_GPL(usb_disable_lpm);
3774
3775/* Grab the bandwidth_mutex before calling usb_disable_lpm() */
3776int usb_unlocked_disable_lpm(struct usb_device *udev)
3777{
3778 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
3779 int ret;
3780
3781 if (!hcd)
3782 return -EINVAL;
3783
3784 mutex_lock(hcd->bandwidth_mutex);
3785 ret = usb_disable_lpm(udev);
3786 mutex_unlock(hcd->bandwidth_mutex);
3787
3788 return ret;
3789}
3790EXPORT_SYMBOL_GPL(usb_unlocked_disable_lpm);
3791
3792/*
3793 * Attempt to enable device-initiated and hub-initiated U1 and U2 entry. The
3794 * xHCI host policy may prevent U1 or U2 from being enabled.
3795 *
3796 * Other callers may have disabled link PM, so U1 and U2 entry will be disabled
3797 * until the lpm_disable_count drops to zero. Caller must own the
3798 * bandwidth_mutex.
3799 */
3800void usb_enable_lpm(struct usb_device *udev)
3801{
3802 struct usb_hcd *hcd;
3803
3804 if (!udev || !udev->parent ||
3805 udev->speed != USB_SPEED_SUPER ||
3806 !udev->lpm_capable)
3807 return;
3808
3809 udev->lpm_disable_count--;
3810 hcd = bus_to_hcd(udev->bus);
3811 /* Double check that we can both enable and disable LPM.
3812 * Device must be configured to accept set feature U1/U2 timeout.
3813 */
3814 if (!hcd || !hcd->driver->enable_usb3_lpm_timeout ||
3815 !hcd->driver->disable_usb3_lpm_timeout)
3816 return;
3817
3818 if (udev->lpm_disable_count > 0)
3819 return;
3820
3821 usb_enable_link_state(hcd, udev, USB3_LPM_U1);
3822 usb_enable_link_state(hcd, udev, USB3_LPM_U2);
3823}
3824EXPORT_SYMBOL_GPL(usb_enable_lpm);
3825
3826/* Grab the bandwidth_mutex before calling usb_enable_lpm() */
3827void usb_unlocked_enable_lpm(struct usb_device *udev)
3828{
3829 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
3830
3831 if (!hcd)
3832 return;
3833
3834 mutex_lock(hcd->bandwidth_mutex);
3835 usb_enable_lpm(udev);
3836 mutex_unlock(hcd->bandwidth_mutex);
3837}
3838EXPORT_SYMBOL_GPL(usb_unlocked_enable_lpm);
3839
3840
Alan Sternd388dab2006-07-01 22:14:24 -04003841#else /* CONFIG_PM */
3842
Alan Sternf07600c2007-05-30 15:38:16 -04003843#define hub_suspend NULL
3844#define hub_resume NULL
3845#define hub_reset_resume NULL
Sarah Sharp1ea7e0e2012-04-24 17:21:50 -07003846
3847int usb_disable_lpm(struct usb_device *udev)
3848{
3849 return 0;
3850}
Sarah Sharpe9261fb2012-05-21 08:29:01 -07003851EXPORT_SYMBOL_GPL(usb_disable_lpm);
Sarah Sharp1ea7e0e2012-04-24 17:21:50 -07003852
3853void usb_enable_lpm(struct usb_device *udev) { }
Sarah Sharpe9261fb2012-05-21 08:29:01 -07003854EXPORT_SYMBOL_GPL(usb_enable_lpm);
Sarah Sharp1ea7e0e2012-04-24 17:21:50 -07003855
3856int usb_unlocked_disable_lpm(struct usb_device *udev)
3857{
3858 return 0;
3859}
Sarah Sharpe9261fb2012-05-21 08:29:01 -07003860EXPORT_SYMBOL_GPL(usb_unlocked_disable_lpm);
Sarah Sharp1ea7e0e2012-04-24 17:21:50 -07003861
3862void usb_unlocked_enable_lpm(struct usb_device *udev) { }
Sarah Sharpe9261fb2012-05-21 08:29:01 -07003863EXPORT_SYMBOL_GPL(usb_unlocked_enable_lpm);
Sarah Sharpf74631e2012-06-25 12:08:08 -07003864
3865int usb_disable_ltm(struct usb_device *udev)
3866{
3867 return 0;
3868}
3869EXPORT_SYMBOL_GPL(usb_disable_ltm);
3870
3871void usb_enable_ltm(struct usb_device *udev) { }
3872EXPORT_SYMBOL_GPL(usb_enable_ltm);
Alan Sternc4b51a42013-07-11 14:58:23 -04003873
3874#endif /* CONFIG_PM */
Alan Sternd388dab2006-07-01 22:14:24 -04003875
Linus Torvalds1da177e2005-04-16 15:20:36 -07003876
3877/* USB 2.0 spec, 7.1.7.3 / fig 7-29:
3878 *
3879 * Between connect detection and reset signaling there must be a delay
3880 * of 100ms at least for debounce and power-settling. The corresponding
3881 * timer shall restart whenever the downstream port detects a disconnect.
Matthias Beyer469271f2013-10-10 23:41:27 +02003882 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003883 * Apparently there are some bluetooth and irda-dongles and a number of
3884 * low-speed devices for which this debounce period may last over a second.
3885 * Not covered by the spec - but easy to deal with.
3886 *
3887 * This implementation uses a 1500ms total debounce timeout; if the
3888 * connection isn't stable by then it returns -ETIMEDOUT. It checks
3889 * every 25ms for transient disconnects. When the port status has been
3890 * unchanged for 100ms it returns the port status.
3891 */
Lan Tianyuad493e52013-01-23 04:26:30 +08003892int hub_port_debounce(struct usb_hub *hub, int port1, bool must_be_connected)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003893{
3894 int ret;
3895 int total_time, stable_time = 0;
3896 u16 portchange, portstatus;
3897 unsigned connection = 0xffff;
3898
3899 for (total_time = 0; ; total_time += HUB_DEBOUNCE_STEP) {
3900 ret = hub_port_status(hub, port1, &portstatus, &portchange);
3901 if (ret < 0)
3902 return ret;
3903
3904 if (!(portchange & USB_PORT_STAT_C_CONNECTION) &&
3905 (portstatus & USB_PORT_STAT_CONNECTION) == connection) {
Lan Tianyuad493e52013-01-23 04:26:30 +08003906 if (!must_be_connected ||
3907 (connection == USB_PORT_STAT_CONNECTION))
3908 stable_time += HUB_DEBOUNCE_STEP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003909 if (stable_time >= HUB_DEBOUNCE_STABLE)
3910 break;
3911 } else {
3912 stable_time = 0;
3913 connection = portstatus & USB_PORT_STAT_CONNECTION;
3914 }
3915
3916 if (portchange & USB_PORT_STAT_C_CONNECTION) {
Lan Tianyuad493e52013-01-23 04:26:30 +08003917 usb_clear_port_feature(hub->hdev, port1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003918 USB_PORT_FEAT_C_CONNECTION);
3919 }
3920
3921 if (total_time >= HUB_DEBOUNCE_TIMEOUT)
3922 break;
3923 msleep(HUB_DEBOUNCE_STEP);
3924 }
3925
3926 dev_dbg (hub->intfdev,
3927 "debounce: port %d: total %dms stable %dms status 0x%x\n",
3928 port1, total_time, stable_time, portstatus);
3929
3930 if (stable_time < HUB_DEBOUNCE_STABLE)
3931 return -ETIMEDOUT;
3932 return portstatus;
3933}
3934
Inaky Perez-Gonzalezfc721f52008-04-08 13:24:46 -07003935void usb_ep0_reinit(struct usb_device *udev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003936{
Alan Sternddeac4e2009-01-15 17:03:33 -05003937 usb_disable_endpoint(udev, 0 + USB_DIR_IN, true);
3938 usb_disable_endpoint(udev, 0 + USB_DIR_OUT, true);
Alan Stern2caf7fc2008-12-31 11:31:33 -05003939 usb_enable_endpoint(udev, &udev->ep0, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003940}
Inaky Perez-Gonzalezfc721f52008-04-08 13:24:46 -07003941EXPORT_SYMBOL_GPL(usb_ep0_reinit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003942
3943#define usb_sndaddr0pipe() (PIPE_CONTROL << 30)
3944#define usb_rcvaddr0pipe() ((PIPE_CONTROL << 30) | USB_DIR_IN)
3945
Alan Stern4326ed02007-07-30 17:08:43 -04003946static int hub_set_address(struct usb_device *udev, int devnum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003947{
3948 int retval;
Sarah Sharpc6515272009-04-27 19:57:26 -07003949 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003950
Sarah Sharpc6515272009-04-27 19:57:26 -07003951 /*
3952 * The host controller will choose the device address,
3953 * instead of the core having chosen it earlier
3954 */
3955 if (!hcd->driver->address_device && devnum <= 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003956 return -EINVAL;
3957 if (udev->state == USB_STATE_ADDRESS)
3958 return 0;
3959 if (udev->state != USB_STATE_DEFAULT)
3960 return -EINVAL;
Andiry Xuc8d4af82010-10-14 07:22:51 -07003961 if (hcd->driver->address_device)
Sarah Sharpc6515272009-04-27 19:57:26 -07003962 retval = hcd->driver->address_device(hcd, udev);
Andiry Xuc8d4af82010-10-14 07:22:51 -07003963 else
Sarah Sharpc6515272009-04-27 19:57:26 -07003964 retval = usb_control_msg(udev, usb_sndaddr0pipe(),
3965 USB_REQ_SET_ADDRESS, 0, devnum, 0,
3966 NULL, 0, USB_CTRL_SET_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003967 if (retval == 0) {
Alan Stern3b29b682011-02-22 09:53:41 -05003968 update_devnum(udev, devnum);
David Vrabel4953d142008-04-08 13:24:46 -07003969 /* Device now using proper address. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003970 usb_set_device_state(udev, USB_STATE_ADDRESS);
Inaky Perez-Gonzalezfc721f52008-04-08 13:24:46 -07003971 usb_ep0_reinit(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003972 }
3973 return retval;
3974}
3975
Mathias Nyman890dae82013-09-30 17:26:31 +03003976/*
3977 * There are reports of USB 3.0 devices that say they support USB 2.0 Link PM
3978 * when they're plugged into a USB 2.0 port, but they don't work when LPM is
3979 * enabled.
3980 *
3981 * Only enable USB 2.0 Link PM if the port is internal (hardwired), or the
3982 * device says it supports the new USB 2.0 Link PM errata by setting the BESL
3983 * support bit in the BOS descriptor.
3984 */
3985static void hub_set_initial_usb2_lpm_policy(struct usb_device *udev)
3986{
3987 int connect_type;
3988
3989 if (!udev->usb2_hw_lpm_capable)
3990 return;
3991
3992 connect_type = usb_get_hub_port_connect_type(udev->parent,
3993 udev->portnum);
3994
Bjørn Mork23c05822014-02-27 14:23:55 +01003995 if ((udev->bos->ext_cap->bmAttributes & cpu_to_le32(USB_BESL_SUPPORT)) ||
Mathias Nyman890dae82013-09-30 17:26:31 +03003996 connect_type == USB_PORT_CONNECT_TYPE_HARD_WIRED) {
3997 udev->usb2_hw_lpm_allowed = 1;
3998 usb_set_usb2_hardware_lpm(udev, 1);
3999 }
4000}
4001
Dan Williams48fc7db2013-12-05 17:07:27 -08004002static int hub_enable_device(struct usb_device *udev)
4003{
4004 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
4005
4006 if (!hcd->driver->enable_device)
4007 return 0;
4008 if (udev->state == USB_STATE_ADDRESS)
4009 return 0;
4010 if (udev->state != USB_STATE_DEFAULT)
4011 return -EINVAL;
4012
4013 return hcd->driver->enable_device(hcd, udev);
4014}
4015
Linus Torvalds1da177e2005-04-16 15:20:36 -07004016/* Reset device, (re)assign address, get device descriptor.
4017 * Device connection must be stable, no more debouncing needed.
4018 * Returns device in USB_STATE_ADDRESS, except on error.
4019 *
4020 * If this is called for an already-existing device (as part of
Ming Lei742120c2008-06-18 22:00:29 +08004021 * usb_reset_and_verify_device), the caller must own the device lock. For a
Linus Torvalds1da177e2005-04-16 15:20:36 -07004022 * newly detected device that is not accessible through any global
4023 * pointers, it's not necessary to lock the device.
4024 */
4025static int
4026hub_port_init (struct usb_hub *hub, struct usb_device *udev, int port1,
4027 int retry_counter)
4028{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004029 struct usb_device *hdev = hub->hdev;
Sarah Sharpe7b77172009-04-27 19:54:26 -07004030 struct usb_hcd *hcd = bus_to_hcd(hdev->bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004031 int i, j, retval;
4032 unsigned delay = HUB_SHORT_RESET_TIME;
4033 enum usb_device_speed oldspeed = udev->speed;
Michal Nazarewicze538dfd2011-08-30 17:11:19 +02004034 const char *speed;
Alan Stern4326ed02007-07-30 17:08:43 -04004035 int devnum = udev->devnum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004036
4037 /* root hub ports have a slightly longer reset period
4038 * (from USB 2.0 spec, section 7.1.7.5)
4039 */
4040 if (!hdev->parent) {
4041 delay = HUB_ROOT_RESET_TIME;
4042 if (port1 == hdev->bus->otg_port)
4043 hdev->bus->b_hnp_enable = 0;
4044 }
4045
4046 /* Some low speed devices have problems with the quick delay, so */
4047 /* be a bit pessimistic with those devices. RHbug #23670 */
4048 if (oldspeed == USB_SPEED_LOW)
4049 delay = HUB_LONG_RESET_TIME;
4050
Todd E Brandt6fecd4f2014-05-19 10:55:32 -07004051 mutex_lock(&hdev->bus->usb_address0_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004052
Luben Tuikov07194ab2011-02-11 11:33:10 -08004053 /* Reset the device; full speed may morph to high speed */
4054 /* FIXME a USB 2.0 device may morph into SuperSpeed on reset. */
Andiry Xu75d7cf72011-09-13 16:41:11 -07004055 retval = hub_port_reset(hub, port1, udev, delay, false);
Luben Tuikov07194ab2011-02-11 11:33:10 -08004056 if (retval < 0) /* error or disconnect */
4057 goto fail;
4058 /* success, speed is known */
4059
Linus Torvalds1da177e2005-04-16 15:20:36 -07004060 retval = -ENODEV;
4061
4062 if (oldspeed != USB_SPEED_UNKNOWN && oldspeed != udev->speed) {
4063 dev_dbg(&udev->dev, "device reset changed speed!\n");
4064 goto fail;
4065 }
4066 oldspeed = udev->speed;
Alan Stern4326ed02007-07-30 17:08:43 -04004067
Linus Torvalds1da177e2005-04-16 15:20:36 -07004068 /* USB 2.0 section 5.5.3 talks about ep0 maxpacket ...
4069 * it's fixed size except for full speed devices.
Inaky Perez-Gonzalez5bb6e0a2006-08-25 19:35:30 -07004070 * For Wireless USB devices, ep0 max packet is always 512 (tho
4071 * reported as 0xff in the device descriptor). WUSB1.0[4.8.1].
Linus Torvalds1da177e2005-04-16 15:20:36 -07004072 */
4073 switch (udev->speed) {
Sarah Sharp6b403b02009-04-27 19:54:10 -07004074 case USB_SPEED_SUPER:
Greg Kroah-Hartman551cdbb2010-01-14 11:08:04 -08004075 case USB_SPEED_WIRELESS: /* fixed at 512 */
Harvey Harrison551509d2009-02-11 14:11:36 -08004076 udev->ep0.desc.wMaxPacketSize = cpu_to_le16(512);
Inaky Perez-Gonzalez5bb6e0a2006-08-25 19:35:30 -07004077 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004078 case USB_SPEED_HIGH: /* fixed at 64 */
Harvey Harrison551509d2009-02-11 14:11:36 -08004079 udev->ep0.desc.wMaxPacketSize = cpu_to_le16(64);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004080 break;
4081 case USB_SPEED_FULL: /* 8, 16, 32, or 64 */
4082 /* to determine the ep0 maxpacket size, try to read
4083 * the device descriptor to get bMaxPacketSize0 and
4084 * then correct our initial guess.
4085 */
Harvey Harrison551509d2009-02-11 14:11:36 -08004086 udev->ep0.desc.wMaxPacketSize = cpu_to_le16(64);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004087 break;
4088 case USB_SPEED_LOW: /* fixed at 8 */
Harvey Harrison551509d2009-02-11 14:11:36 -08004089 udev->ep0.desc.wMaxPacketSize = cpu_to_le16(8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004090 break;
4091 default:
4092 goto fail;
4093 }
Michal Nazarewicze538dfd2011-08-30 17:11:19 +02004094
4095 if (udev->speed == USB_SPEED_WIRELESS)
4096 speed = "variable speed Wireless";
4097 else
4098 speed = usb_speed_string(udev->speed);
4099
Sarah Sharpc6515272009-04-27 19:57:26 -07004100 if (udev->speed != USB_SPEED_SUPER)
4101 dev_info(&udev->dev,
Michal Nazarewicze538dfd2011-08-30 17:11:19 +02004102 "%s %s USB device number %d using %s\n",
4103 (udev->config) ? "reset" : "new", speed,
Alan Stern3b29b682011-02-22 09:53:41 -05004104 devnum, udev->bus->controller->driver->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004105
4106 /* Set up TT records, if needed */
4107 if (hdev->tt) {
4108 udev->tt = hdev->tt;
4109 udev->ttport = hdev->ttport;
4110 } else if (udev->speed != USB_SPEED_HIGH
4111 && hdev->speed == USB_SPEED_HIGH) {
Alan Sternd199c962011-01-31 10:56:37 -05004112 if (!hub->tt.hub) {
4113 dev_err(&udev->dev, "parent hub has no TT\n");
4114 retval = -EINVAL;
4115 goto fail;
4116 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004117 udev->tt = &hub->tt;
4118 udev->ttport = port1;
4119 }
Matthias Beyer469271f2013-10-10 23:41:27 +02004120
Linus Torvalds1da177e2005-04-16 15:20:36 -07004121 /* Why interleave GET_DESCRIPTOR and SET_ADDRESS this way?
4122 * Because device hardware and firmware is sometimes buggy in
4123 * this area, and this is how Linux has done it for ages.
4124 * Change it cautiously.
4125 *
Dan Williams48fc7db2013-12-05 17:07:27 -08004126 * NOTE: If use_new_scheme() is true we will start by issuing
Linus Torvalds1da177e2005-04-16 15:20:36 -07004127 * a 64-byte GET_DESCRIPTOR request. This is what Windows does,
4128 * so it may help with some non-standards-compliant devices.
4129 * Otherwise we start with SET_ADDRESS and then try to read the
4130 * first 8 bytes of the device descriptor to get the ep0 maxpacket
4131 * value.
4132 */
4133 for (i = 0; i < GET_DESCRIPTOR_TRIES; (++i, msleep(100))) {
Dan Williams48fc7db2013-12-05 17:07:27 -08004134 bool did_new_scheme = false;
4135
4136 if (use_new_scheme(udev, retry_counter)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004137 struct usb_device_descriptor *buf;
4138 int r = 0;
4139
Dan Williams48fc7db2013-12-05 17:07:27 -08004140 did_new_scheme = true;
4141 retval = hub_enable_device(udev);
Oliver Neukum938569e2014-02-27 10:57:10 +01004142 if (retval < 0) {
4143 dev_err(&udev->dev,
4144 "hub failed to enable device, error %d\n",
4145 retval);
Dan Williams48fc7db2013-12-05 17:07:27 -08004146 goto fail;
Oliver Neukum938569e2014-02-27 10:57:10 +01004147 }
Dan Williams48fc7db2013-12-05 17:07:27 -08004148
Linus Torvalds1da177e2005-04-16 15:20:36 -07004149#define GET_DESCRIPTOR_BUFSIZE 64
4150 buf = kmalloc(GET_DESCRIPTOR_BUFSIZE, GFP_NOIO);
4151 if (!buf) {
4152 retval = -ENOMEM;
4153 continue;
4154 }
4155
Alan Sternb89ee192007-05-11 10:19:04 -04004156 /* Retry on all errors; some devices are flakey.
4157 * 255 is for WUSB devices, we actually need to use
4158 * 512 (WUSB1.0[4.8.1]).
Linus Torvalds1da177e2005-04-16 15:20:36 -07004159 */
4160 for (j = 0; j < 3; ++j) {
4161 buf->bMaxPacketSize0 = 0;
4162 r = usb_control_msg(udev, usb_rcvaddr0pipe(),
4163 USB_REQ_GET_DESCRIPTOR, USB_DIR_IN,
4164 USB_DT_DEVICE << 8, 0,
4165 buf, GET_DESCRIPTOR_BUFSIZE,
Jaroslav Kyselafd7c5192008-10-10 16:24:45 +02004166 initial_descriptor_timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004167 switch (buf->bMaxPacketSize0) {
Inaky Perez-Gonzalez5bb6e0a2006-08-25 19:35:30 -07004168 case 8: case 16: case 32: case 64: case 255:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004169 if (buf->bDescriptorType ==
4170 USB_DT_DEVICE) {
4171 r = 0;
4172 break;
4173 }
4174 /* FALL THROUGH */
4175 default:
4176 if (r == 0)
4177 r = -EPROTO;
4178 break;
4179 }
4180 if (r == 0)
4181 break;
4182 }
4183 udev->descriptor.bMaxPacketSize0 =
4184 buf->bMaxPacketSize0;
4185 kfree(buf);
4186
Andiry Xu75d7cf72011-09-13 16:41:11 -07004187 retval = hub_port_reset(hub, port1, udev, delay, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004188 if (retval < 0) /* error or disconnect */
4189 goto fail;
4190 if (oldspeed != udev->speed) {
4191 dev_dbg(&udev->dev,
4192 "device reset changed speed!\n");
4193 retval = -ENODEV;
4194 goto fail;
4195 }
4196 if (r) {
Alan Sterne9e88fb2013-03-27 16:14:01 -04004197 if (r != -ENODEV)
4198 dev_err(&udev->dev, "device descriptor read/64, error %d\n",
4199 r);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004200 retval = -EMSGSIZE;
4201 continue;
4202 }
4203#undef GET_DESCRIPTOR_BUFSIZE
4204 }
4205
Matthias Beyer469271f2013-10-10 23:41:27 +02004206 /*
4207 * If device is WUSB, we already assigned an
4208 * unauthorized address in the Connect Ack sequence;
4209 * authorization will assign the final address.
4210 */
Sarah Sharpc6515272009-04-27 19:57:26 -07004211 if (udev->wusb == 0) {
Inaky Perez-Gonzalez6c529cd2008-04-08 13:24:46 -07004212 for (j = 0; j < SET_ADDRESS_TRIES; ++j) {
4213 retval = hub_set_address(udev, devnum);
4214 if (retval >= 0)
4215 break;
4216 msleep(200);
4217 }
4218 if (retval < 0) {
Alan Sterne9e88fb2013-03-27 16:14:01 -04004219 if (retval != -ENODEV)
4220 dev_err(&udev->dev, "device not accepting address %d, error %d\n",
4221 devnum, retval);
Inaky Perez-Gonzalez6c529cd2008-04-08 13:24:46 -07004222 goto fail;
4223 }
Sarah Sharpc6515272009-04-27 19:57:26 -07004224 if (udev->speed == USB_SPEED_SUPER) {
4225 devnum = udev->devnum;
4226 dev_info(&udev->dev,
Alan Stern3b29b682011-02-22 09:53:41 -05004227 "%s SuperSpeed USB device number %d using %s\n",
Sarah Sharpc6515272009-04-27 19:57:26 -07004228 (udev->config) ? "reset" : "new",
Alan Stern3b29b682011-02-22 09:53:41 -05004229 devnum, udev->bus->controller->driver->name);
Sarah Sharpc6515272009-04-27 19:57:26 -07004230 }
Inaky Perez-Gonzalez6c529cd2008-04-08 13:24:46 -07004231
4232 /* cope with hardware quirkiness:
4233 * - let SET_ADDRESS settle, some device hardware wants it
4234 * - read ep0 maxpacket even for high and low speed,
4235 */
4236 msleep(10);
Dan Williams48fc7db2013-12-05 17:07:27 -08004237 /* use_new_scheme() checks the speed which may have
4238 * changed since the initial look so we cache the result
4239 * in did_new_scheme
4240 */
4241 if (did_new_scheme)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004242 break;
Matthias Beyer469271f2013-10-10 23:41:27 +02004243 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004244
4245 retval = usb_get_device_descriptor(udev, 8);
4246 if (retval < 8) {
Alan Sterne9e88fb2013-03-27 16:14:01 -04004247 if (retval != -ENODEV)
4248 dev_err(&udev->dev,
Wu Fengguangb9cef6c2008-12-15 15:32:01 +08004249 "device descriptor read/8, error %d\n",
4250 retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004251 if (retval >= 0)
4252 retval = -EMSGSIZE;
4253 } else {
4254 retval = 0;
4255 break;
4256 }
4257 }
4258 if (retval)
4259 goto fail;
4260
Peter Chenb76baa82012-11-09 09:44:43 +08004261 if (hcd->phy && !hdev->parent)
Peter Chenac965112012-11-09 09:44:44 +08004262 usb_phy_notify_connect(hcd->phy, udev->speed);
Peter Chenb76baa82012-11-09 09:44:43 +08004263
Elric Fud8aec3d2012-03-26 21:16:02 +08004264 /*
4265 * Some superspeed devices have finished the link training process
4266 * and attached to a superspeed hub port, but the device descriptor
4267 * got from those devices show they aren't superspeed devices. Warm
4268 * reset the port attached by the devices can fix them.
4269 */
4270 if ((udev->speed == USB_SPEED_SUPER) &&
4271 (le16_to_cpu(udev->descriptor.bcdUSB) < 0x0300)) {
4272 dev_err(&udev->dev, "got a wrong device descriptor, "
4273 "warm reset device\n");
4274 hub_port_reset(hub, port1, udev,
4275 HUB_BH_RESET_TIME, true);
4276 retval = -EINVAL;
4277 goto fail;
4278 }
4279
Sarah Sharp6b403b02009-04-27 19:54:10 -07004280 if (udev->descriptor.bMaxPacketSize0 == 0xff ||
4281 udev->speed == USB_SPEED_SUPER)
4282 i = 512;
4283 else
4284 i = udev->descriptor.bMaxPacketSize0;
Kuninori Morimoto29cc8892011-08-23 03:12:03 -07004285 if (usb_endpoint_maxp(&udev->ep0.desc) != i) {
Alan Stern56626a72010-10-14 15:25:21 -04004286 if (udev->speed == USB_SPEED_LOW ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07004287 !(i == 8 || i == 16 || i == 32 || i == 64)) {
Alan Stern56626a72010-10-14 15:25:21 -04004288 dev_err(&udev->dev, "Invalid ep0 maxpacket: %d\n", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004289 retval = -EMSGSIZE;
4290 goto fail;
4291 }
Alan Stern56626a72010-10-14 15:25:21 -04004292 if (udev->speed == USB_SPEED_FULL)
4293 dev_dbg(&udev->dev, "ep0 maxpacket = %d\n", i);
4294 else
4295 dev_warn(&udev->dev, "Using ep0 maxpacket: %d\n", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004296 udev->ep0.desc.wMaxPacketSize = cpu_to_le16(i);
Inaky Perez-Gonzalezfc721f52008-04-08 13:24:46 -07004297 usb_ep0_reinit(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004298 }
Matthias Beyer469271f2013-10-10 23:41:27 +02004299
Linus Torvalds1da177e2005-04-16 15:20:36 -07004300 retval = usb_get_device_descriptor(udev, USB_DT_DEVICE_SIZE);
4301 if (retval < (signed)sizeof(udev->descriptor)) {
Alan Sterne9e88fb2013-03-27 16:14:01 -04004302 if (retval != -ENODEV)
4303 dev_err(&udev->dev, "device descriptor read/all, error %d\n",
4304 retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004305 if (retval >= 0)
4306 retval = -ENOMSG;
4307 goto fail;
4308 }
4309
Andiry Xu1ff4df52011-09-23 14:19:48 -07004310 if (udev->wusb == 0 && le16_to_cpu(udev->descriptor.bcdUSB) >= 0x0201) {
4311 retval = usb_get_bos_descriptor(udev);
Sarah Sharp51e0a012012-02-20 12:02:19 -08004312 if (!retval) {
Sarah Sharpd9b20992012-02-20 08:31:26 -08004313 udev->lpm_capable = usb_device_supports_lpm(udev);
Sarah Sharp51e0a012012-02-20 12:02:19 -08004314 usb_set_lpm_parameters(udev);
4315 }
Andiry Xu1ff4df52011-09-23 14:19:48 -07004316 }
Andiry Xu3148bf02011-09-23 14:19:47 -07004317
Linus Torvalds1da177e2005-04-16 15:20:36 -07004318 retval = 0;
Alek Du48f24972010-06-04 15:47:55 +08004319 /* notify HCD that we have a device connected and addressed */
4320 if (hcd->driver->update_device)
4321 hcd->driver->update_device(hcd, udev);
Mathias Nyman890dae82013-09-30 17:26:31 +03004322 hub_set_initial_usb2_lpm_policy(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004323fail:
Alan Stern4326ed02007-07-30 17:08:43 -04004324 if (retval) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004325 hub_port_disable(hub, port1, 0);
Alan Stern3b29b682011-02-22 09:53:41 -05004326 update_devnum(udev, devnum); /* for disconnect processing */
Alan Stern4326ed02007-07-30 17:08:43 -04004327 }
Todd E Brandt6fecd4f2014-05-19 10:55:32 -07004328 mutex_unlock(&hdev->bus->usb_address0_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004329 return retval;
4330}
4331
4332static void
4333check_highspeed (struct usb_hub *hub, struct usb_device *udev, int port1)
4334{
4335 struct usb_qualifier_descriptor *qual;
4336 int status;
4337
Christoph Lametere94b1762006-12-06 20:33:17 -08004338 qual = kmalloc (sizeof *qual, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004339 if (qual == NULL)
4340 return;
4341
4342 status = usb_get_descriptor (udev, USB_DT_DEVICE_QUALIFIER, 0,
4343 qual, sizeof *qual);
4344 if (status == sizeof *qual) {
4345 dev_info(&udev->dev, "not running at top speed; "
4346 "connect to a high speed hub\n");
4347 /* hub LEDs are probably harder to miss than syslog */
4348 if (hub->has_indicators) {
4349 hub->indicator[port1-1] = INDICATOR_GREEN_BLINK;
Shaibal Dutta22f6a0f2014-02-01 19:16:46 -08004350 queue_delayed_work(system_power_efficient_wq,
4351 &hub->leds, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004352 }
4353 }
Jesper Juhl1bc3c9e2005-04-18 17:39:34 -07004354 kfree(qual);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004355}
4356
4357static unsigned
4358hub_power_remaining (struct usb_hub *hub)
4359{
4360 struct usb_device *hdev = hub->hdev;
4361 int remaining;
Alan Stern55c52712005-11-23 12:03:12 -05004362 int port1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004363
Alan Stern55c52712005-11-23 12:03:12 -05004364 if (!hub->limited_power)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004365 return 0;
4366
Alan Stern55c52712005-11-23 12:03:12 -05004367 remaining = hdev->bus_mA - hub->descriptor->bHubContrCurrent;
4368 for (port1 = 1; port1 <= hdev->maxchild; ++port1) {
Lan Tianyuff823c792012-09-05 13:44:32 +08004369 struct usb_device *udev = hub->ports[port1 - 1]->child;
Alan Stern55c52712005-11-23 12:03:12 -05004370 int delta;
Sebastian Andrzej Siewior430ee582012-12-18 15:25:47 +01004371 unsigned unit_load;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004372
4373 if (!udev)
4374 continue;
Sebastian Andrzej Siewior430ee582012-12-18 15:25:47 +01004375 if (hub_is_superspeed(udev))
4376 unit_load = 150;
4377 else
4378 unit_load = 100;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004379
Sebastian Andrzej Siewior430ee582012-12-18 15:25:47 +01004380 /*
4381 * Unconfigured devices may not use more than one unit load,
4382 * or 8mA for OTG ports
4383 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004384 if (udev->actconfig)
Sebastian Andrzej Siewior8d8479d2012-12-18 15:25:46 +01004385 delta = usb_get_max_power(udev, udev->actconfig);
Alan Stern55c52712005-11-23 12:03:12 -05004386 else if (port1 != udev->bus->otg_port || hdev->parent)
Sebastian Andrzej Siewior430ee582012-12-18 15:25:47 +01004387 delta = unit_load;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004388 else
Alan Stern55c52712005-11-23 12:03:12 -05004389 delta = 8;
4390 if (delta > hub->mA_per_port)
Wu Fengguangb9cef6c2008-12-15 15:32:01 +08004391 dev_warn(&udev->dev,
4392 "%dmA is over %umA budget for port %d!\n",
4393 delta, hub->mA_per_port, port1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004394 remaining -= delta;
4395 }
4396 if (remaining < 0) {
Alan Stern55c52712005-11-23 12:03:12 -05004397 dev_warn(hub->intfdev, "%dmA over power budget!\n",
Matthias Beyer469271f2013-10-10 23:41:27 +02004398 -remaining);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004399 remaining = 0;
4400 }
4401 return remaining;
4402}
4403
4404/* Handle physical or logical connection change events.
4405 * This routine is called when:
4406 * a port connection-change occurs;
4407 * a port enable-change occurs (often caused by EMI);
Ming Lei742120c2008-06-18 22:00:29 +08004408 * usb_reset_and_verify_device() encounters changed descriptors (as from
Linus Torvalds1da177e2005-04-16 15:20:36 -07004409 * a firmware download)
4410 * caller already locked the hub
4411 */
4412static void hub_port_connect_change(struct usb_hub *hub, int port1,
4413 u16 portstatus, u16 portchange)
4414{
4415 struct usb_device *hdev = hub->hdev;
4416 struct device *hub_dev = hub->intfdev;
Balaji Rao90da0962007-11-22 01:58:14 +05304417 struct usb_hcd *hcd = bus_to_hcd(hdev->bus);
Alan Stern8808f002008-04-28 11:06:55 -04004418 struct usb_device *udev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004419 int status, i;
Sebastian Andrzej Siewior430ee582012-12-18 15:25:47 +01004420 unsigned unit_load;
Alan Stern24618b02008-04-28 11:06:28 -04004421
Linus Torvalds1da177e2005-04-16 15:20:36 -07004422 dev_dbg (hub_dev,
4423 "port %d, status %04x, change %04x, %s\n",
Sarah Sharp131dec32010-12-06 21:00:19 -08004424 port1, portstatus, portchange, portspeed(hub, portstatus));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004425
4426 if (hub->has_indicators) {
4427 set_port_led(hub, port1, HUB_LED_AUTO);
4428 hub->indicator[port1-1] = INDICATOR_AUTO;
4429 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004430
4431#ifdef CONFIG_USB_OTG
4432 /* during HNP, don't repeat the debounce */
4433 if (hdev->bus->is_b_host)
Alan Stern24618b02008-04-28 11:06:28 -04004434 portchange &= ~(USB_PORT_STAT_C_CONNECTION |
4435 USB_PORT_STAT_C_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004436#endif
4437
Alan Stern8808f002008-04-28 11:06:55 -04004438 /* Try to resuscitate an existing device */
Lan Tianyuff823c792012-09-05 13:44:32 +08004439 udev = hub->ports[port1 - 1]->child;
Alan Stern8808f002008-04-28 11:06:55 -04004440 if ((portstatus & USB_PORT_STAT_CONNECTION) && udev &&
4441 udev->state != USB_STATE_NOTATTACHED) {
Alan Stern8808f002008-04-28 11:06:55 -04004442 usb_lock_device(udev);
4443 if (portstatus & USB_PORT_STAT_ENABLE) {
4444 status = 0; /* Nothing to do */
Alan Stern8808f002008-04-28 11:06:55 -04004445
Alan Stern84ebc102013-03-27 16:14:46 -04004446#ifdef CONFIG_PM_RUNTIME
Alan Stern5257d972008-09-22 14:43:08 -04004447 } else if (udev->state == USB_STATE_SUSPENDED &&
4448 udev->persist_enabled) {
Alan Stern8808f002008-04-28 11:06:55 -04004449 /* For a suspended device, treat this as a
4450 * remote wakeup event.
4451 */
Alan Stern0534d462010-01-08 12:56:30 -05004452 status = usb_remote_wakeup(udev);
Alan Stern8808f002008-04-28 11:06:55 -04004453#endif
4454
4455 } else {
Alan Stern5257d972008-09-22 14:43:08 -04004456 status = -ENODEV; /* Don't resuscitate */
Alan Stern8808f002008-04-28 11:06:55 -04004457 }
4458 usb_unlock_device(udev);
4459
4460 if (status == 0) {
4461 clear_bit(port1, hub->change_bits);
4462 return;
4463 }
4464 }
4465
Alan Stern24618b02008-04-28 11:06:28 -04004466 /* Disconnect any existing devices under this port */
Peter Chenb76baa82012-11-09 09:44:43 +08004467 if (udev) {
4468 if (hcd->phy && !hdev->parent &&
4469 !(portstatus & USB_PORT_STAT_CONNECTION))
Peter Chenac965112012-11-09 09:44:44 +08004470 usb_phy_notify_disconnect(hcd->phy, udev->speed);
Lan Tianyuff823c792012-09-05 13:44:32 +08004471 usb_disconnect(&hub->ports[port1 - 1]->child);
Peter Chenb76baa82012-11-09 09:44:43 +08004472 }
Alan Stern24618b02008-04-28 11:06:28 -04004473 clear_bit(port1, hub->change_bits);
4474
Alan Stern253e0572009-10-27 15:20:13 -04004475 /* We can forget about a "removed" device when there's a physical
4476 * disconnect or the connect status changes.
4477 */
4478 if (!(portstatus & USB_PORT_STAT_CONNECTION) ||
4479 (portchange & USB_PORT_STAT_C_CONNECTION))
4480 clear_bit(port1, hub->removed_bits);
4481
Alan Stern5257d972008-09-22 14:43:08 -04004482 if (portchange & (USB_PORT_STAT_C_CONNECTION |
4483 USB_PORT_STAT_C_ENABLE)) {
Lan Tianyuad493e52013-01-23 04:26:30 +08004484 status = hub_port_debounce_be_stable(hub, port1);
Alan Stern5257d972008-09-22 14:43:08 -04004485 if (status < 0) {
Alan Sterne9e88fb2013-03-27 16:14:01 -04004486 if (status != -ENODEV && printk_ratelimit())
Alan Stern5257d972008-09-22 14:43:08 -04004487 dev_err(hub_dev, "connect-debounce failed, "
4488 "port %d disabled\n", port1);
4489 portstatus &= ~USB_PORT_STAT_CONNECTION;
4490 } else {
4491 portstatus = status;
4492 }
4493 }
4494
Alan Stern253e0572009-10-27 15:20:13 -04004495 /* Return now if debouncing failed or nothing is connected or
4496 * the device was "removed".
4497 */
4498 if (!(portstatus & USB_PORT_STAT_CONNECTION) ||
4499 test_bit(port1, hub->removed_bits)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004500
4501 /* maybe switch power back on (e.g. root hub was reset) */
Dan Williams9262c192014-05-20 18:08:12 -07004502 if (hub_is_port_power_switchable(hub)
Andiry Xu0ed9a572011-04-27 18:07:43 +08004503 && !port_is_power_on(hub, portstatus))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004504 set_port_feature(hdev, port1, USB_PORT_FEAT_POWER);
Alan Stern5257d972008-09-22 14:43:08 -04004505
Linus Torvalds1da177e2005-04-16 15:20:36 -07004506 if (portstatus & USB_PORT_STAT_ENABLE)
Matthias Beyer469271f2013-10-10 23:41:27 +02004507 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004508 return;
4509 }
Sebastian Andrzej Siewior430ee582012-12-18 15:25:47 +01004510 if (hub_is_superspeed(hub->hdev))
4511 unit_load = 150;
4512 else
4513 unit_load = 100;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004514
Alan Sterne9e88fb2013-03-27 16:14:01 -04004515 status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004516 for (i = 0; i < SET_CONFIG_TRIES; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004517
4518 /* reallocate for each attempt, since references
4519 * to the previous one can escape in various ways
4520 */
4521 udev = usb_alloc_dev(hdev, hdev->bus, port1);
4522 if (!udev) {
4523 dev_err (hub_dev,
4524 "couldn't allocate port %d usb_device\n",
4525 port1);
4526 goto done;
4527 }
4528
4529 usb_set_device_state(udev, USB_STATE_POWERED);
Matthias Beyer469271f2013-10-10 23:41:27 +02004530 udev->bus_mA = hub->mA_per_port;
Alan Sternb6956ff2006-08-30 15:46:48 -04004531 udev->level = hdev->level + 1;
Inaky Perez-Gonzalez8af548d2008-04-08 13:24:46 -07004532 udev->wusb = hub_is_wusb(hub);
Alan Stern55c52712005-11-23 12:03:12 -05004533
Sarah Sharp131dec32010-12-06 21:00:19 -08004534 /* Only USB 3.0 devices are connected to SuperSpeed hubs. */
4535 if (hub_is_superspeed(hub->hdev))
Sarah Sharpe7b77172009-04-27 19:54:26 -07004536 udev->speed = USB_SPEED_SUPER;
4537 else
4538 udev->speed = USB_SPEED_UNKNOWN;
4539
Alan Stern3b29b682011-02-22 09:53:41 -05004540 choose_devnum(udev);
Andiry Xuc8d4af82010-10-14 07:22:51 -07004541 if (udev->devnum <= 0) {
4542 status = -ENOTCONN; /* Don't retry */
4543 goto loop;
Sarah Sharpc6515272009-04-27 19:57:26 -07004544 }
4545
Sarah Sharpe7b77172009-04-27 19:54:26 -07004546 /* reset (non-USB 3.0 devices) and get descriptor */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004547 status = hub_port_init(hub, udev, port1, i);
4548 if (status < 0)
4549 goto loop;
4550
Phil Dibowitz93362a82010-07-22 00:05:01 +02004551 usb_detect_quirks(udev);
4552 if (udev->quirks & USB_QUIRK_DELAY_INIT)
4553 msleep(1000);
4554
Linus Torvalds1da177e2005-04-16 15:20:36 -07004555 /* consecutive bus-powered hubs aren't reliable; they can
4556 * violate the voltage drop budget. if the new child has
4557 * a "powered" LED, users should notice we didn't enable it
4558 * (without reading syslog), even without per-port LEDs
4559 * on the parent.
4560 */
4561 if (udev->descriptor.bDeviceClass == USB_CLASS_HUB
Sebastian Andrzej Siewior430ee582012-12-18 15:25:47 +01004562 && udev->bus_mA <= unit_load) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004563 u16 devstat;
4564
4565 status = usb_get_status(udev, USB_RECIP_DEVICE, 0,
4566 &devstat);
Alan Stern15b73362013-07-30 15:35:40 -04004567 if (status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004568 dev_dbg(&udev->dev, "get status %d ?\n", status);
4569 goto loop_disable;
4570 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004571 if ((devstat & (1 << USB_DEVICE_SELF_POWERED)) == 0) {
4572 dev_err(&udev->dev,
4573 "can't connect bus-powered hub "
4574 "to this port\n");
4575 if (hub->has_indicators) {
4576 hub->indicator[port1-1] =
4577 INDICATOR_AMBER_BLINK;
Shaibal Dutta22f6a0f2014-02-01 19:16:46 -08004578 queue_delayed_work(
4579 system_power_efficient_wq,
4580 &hub->leds, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004581 }
4582 status = -ENOTCONN; /* Don't retry */
4583 goto loop_disable;
4584 }
4585 }
Matthias Beyer469271f2013-10-10 23:41:27 +02004586
Linus Torvalds1da177e2005-04-16 15:20:36 -07004587 /* check for devices running slower than they could */
4588 if (le16_to_cpu(udev->descriptor.bcdUSB) >= 0x0200
4589 && udev->speed == USB_SPEED_FULL
4590 && highspeed_hubs != 0)
4591 check_highspeed (hub, udev, port1);
4592
Greg Kroah-Hartmanfa286182012-05-14 09:20:37 -07004593 /* Store the parent's children[] pointer. At this point
Linus Torvalds1da177e2005-04-16 15:20:36 -07004594 * udev becomes globally accessible, although presumably
4595 * no one will look at it until hdev is unlocked.
4596 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004597 status = 0;
4598
4599 /* We mustn't add new devices if the parent hub has
4600 * been disconnected; we would race with the
4601 * recursively_mark_NOTATTACHED() routine.
4602 */
4603 spin_lock_irq(&device_state_lock);
4604 if (hdev->state == USB_STATE_NOTATTACHED)
4605 status = -ENOTCONN;
4606 else
Lan Tianyuff823c792012-09-05 13:44:32 +08004607 hub->ports[port1 - 1]->child = udev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004608 spin_unlock_irq(&device_state_lock);
4609
4610 /* Run it through the hoops (find a driver, etc) */
4611 if (!status) {
4612 status = usb_new_device(udev);
4613 if (status) {
4614 spin_lock_irq(&device_state_lock);
Lan Tianyuff823c792012-09-05 13:44:32 +08004615 hub->ports[port1 - 1]->child = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004616 spin_unlock_irq(&device_state_lock);
4617 }
4618 }
4619
Linus Torvalds1da177e2005-04-16 15:20:36 -07004620 if (status)
4621 goto loop_disable;
4622
4623 status = hub_power_remaining(hub);
4624 if (status)
Alan Stern55c52712005-11-23 12:03:12 -05004625 dev_dbg(hub_dev, "%dmA power budget left\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004626
4627 return;
4628
4629loop_disable:
4630 hub_port_disable(hub, port1, 1);
4631loop:
Inaky Perez-Gonzalezfc721f52008-04-08 13:24:46 -07004632 usb_ep0_reinit(udev);
Alan Stern3b29b682011-02-22 09:53:41 -05004633 release_devnum(udev);
Herbert Xuf7410ce2010-01-10 20:15:03 +11004634 hub_free_dev(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004635 usb_put_dev(udev);
Vikram Panditaffcdc182007-05-25 21:31:07 -07004636 if ((status == -ENOTCONN) || (status == -ENOTSUPP))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004637 break;
4638 }
Alan Stern3a311552008-05-20 16:58:29 -04004639 if (hub->hdev->parent ||
4640 !hcd->driver->port_handed_over ||
Alan Sterne9e88fb2013-03-27 16:14:01 -04004641 !(hcd->driver->port_handed_over)(hcd, port1)) {
4642 if (status != -ENOTCONN && status != -ENODEV)
4643 dev_err(hub_dev, "unable to enumerate USB device on port %d\n",
4644 port1);
4645 }
Matthias Beyer469271f2013-10-10 23:41:27 +02004646
Linus Torvalds1da177e2005-04-16 15:20:36 -07004647done:
4648 hub_port_disable(hub, port1, 1);
Balaji Rao90da0962007-11-22 01:58:14 +05304649 if (hcd->driver->relinquish_port && !hub->hdev->parent)
4650 hcd->driver->relinquish_port(hcd, port1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004651}
4652
Sarah Sharp714b07b2012-01-24 13:53:18 -08004653/* Returns 1 if there was a remote wakeup and a connect status change. */
4654static int hub_handle_remote_wakeup(struct usb_hub *hub, unsigned int port,
Sarah Sharp72937e12012-01-24 11:46:50 -08004655 u16 portstatus, u16 portchange)
Sarah Sharp714b07b2012-01-24 13:53:18 -08004656{
4657 struct usb_device *hdev;
4658 struct usb_device *udev;
4659 int connect_change = 0;
4660 int ret;
4661
4662 hdev = hub->hdev;
Lan Tianyuff823c792012-09-05 13:44:32 +08004663 udev = hub->ports[port - 1]->child;
Sarah Sharp4ee823b2011-11-14 18:00:01 -08004664 if (!hub_is_superspeed(hdev)) {
4665 if (!(portchange & USB_PORT_STAT_C_SUSPEND))
4666 return 0;
Lan Tianyuad493e52013-01-23 04:26:30 +08004667 usb_clear_port_feature(hdev, port, USB_PORT_FEAT_C_SUSPEND);
Sarah Sharp4ee823b2011-11-14 18:00:01 -08004668 } else {
4669 if (!udev || udev->state != USB_STATE_SUSPENDED ||
Sarah Sharp72937e12012-01-24 11:46:50 -08004670 (portstatus & USB_PORT_STAT_LINK_STATE) !=
4671 USB_SS_PORT_LS_U0)
Sarah Sharp4ee823b2011-11-14 18:00:01 -08004672 return 0;
4673 }
4674
Sarah Sharp714b07b2012-01-24 13:53:18 -08004675 if (udev) {
4676 /* TRSMRCY = 10 msec */
4677 msleep(10);
4678
4679 usb_lock_device(udev);
4680 ret = usb_remote_wakeup(udev);
4681 usb_unlock_device(udev);
4682 if (ret < 0)
4683 connect_change = 1;
4684 } else {
4685 ret = -ENODEV;
4686 hub_port_disable(hub, port, 1);
4687 }
4688 dev_dbg(hub->intfdev, "resume on port %d, status %d\n",
4689 port, ret);
4690 return connect_change;
4691}
4692
Linus Torvalds1da177e2005-04-16 15:20:36 -07004693static void hub_events(void)
4694{
4695 struct list_head *tmp;
4696 struct usb_device *hdev;
4697 struct usb_interface *intf;
4698 struct usb_hub *hub;
4699 struct device *hub_dev;
4700 u16 hubstatus;
4701 u16 hubchange;
4702 u16 portstatus;
4703 u16 portchange;
4704 int i, ret;
Sarah Sharp4ee823b2011-11-14 18:00:01 -08004705 int connect_change, wakeup_change;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004706
4707 /*
4708 * We restart the list every time to avoid a deadlock with
4709 * deleting hubs downstream from this one. This should be
4710 * safe since we delete the hub from the event list.
4711 * Not the most efficient, but avoids deadlocks.
4712 */
4713 while (1) {
4714
4715 /* Grab the first entry at the beginning of the list */
4716 spin_lock_irq(&hub_event_lock);
4717 if (list_empty(&hub_event_list)) {
4718 spin_unlock_irq(&hub_event_lock);
4719 break;
4720 }
4721
4722 tmp = hub_event_list.next;
4723 list_del_init(tmp);
4724
4725 hub = list_entry(tmp, struct usb_hub, event_list);
Alan Sterne8054852007-05-04 11:55:11 -04004726 kref_get(&hub->kref);
4727 spin_unlock_irq(&hub_event_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004728
Alan Sterne8054852007-05-04 11:55:11 -04004729 hdev = hub->hdev;
4730 hub_dev = hub->intfdev;
4731 intf = to_usb_interface(hub_dev);
Alan Stern40f122f2006-11-09 14:44:33 -05004732 dev_dbg(hub_dev, "state %d ports %d chg %04x evt %04x\n",
Krzysztof Mazur3bbc47d2013-08-22 14:49:40 +02004733 hdev->state, hdev->maxchild,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004734 /* NOTE: expects max 15 ports... */
4735 (u16) hub->change_bits[0],
Alan Stern40f122f2006-11-09 14:44:33 -05004736 (u16) hub->event_bits[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004737
Linus Torvalds1da177e2005-04-16 15:20:36 -07004738 /* Lock the device, then check to see if we were
4739 * disconnected while waiting for the lock to succeed. */
Alan Stern06b84e82007-05-04 11:54:50 -04004740 usb_lock_device(hdev);
Alan Sterne8054852007-05-04 11:55:11 -04004741 if (unlikely(hub->disconnected))
Alan Stern9bbdf1e2010-01-08 12:57:28 -05004742 goto loop_disconnected;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004743
4744 /* If the hub has died, clean up after it */
4745 if (hdev->state == USB_STATE_NOTATTACHED) {
Alan Stern7de18d82006-06-01 13:37:24 -04004746 hub->error = -ENODEV;
Alan Stern43303542008-04-28 11:07:31 -04004747 hub_quiesce(hub, HUB_DISCONNECT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004748 goto loop;
4749 }
4750
Alan Stern40f122f2006-11-09 14:44:33 -05004751 /* Autoresume */
4752 ret = usb_autopm_get_interface(intf);
4753 if (ret) {
4754 dev_dbg(hub_dev, "Can't autoresume: %d\n", ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004755 goto loop;
Alan Stern40f122f2006-11-09 14:44:33 -05004756 }
4757
4758 /* If this is an inactive hub, do nothing */
4759 if (hub->quiescing)
4760 goto loop_autopm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004761
4762 if (hub->error) {
4763 dev_dbg (hub_dev, "resetting for error %d\n",
4764 hub->error);
4765
Ming Lei742120c2008-06-18 22:00:29 +08004766 ret = usb_reset_device(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004767 if (ret) {
4768 dev_dbg (hub_dev,
4769 "error resetting hub: %d\n", ret);
Alan Stern40f122f2006-11-09 14:44:33 -05004770 goto loop_autopm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004771 }
4772
4773 hub->nerrors = 0;
4774 hub->error = 0;
4775 }
4776
4777 /* deal with port status changes */
Krzysztof Mazur3bbc47d2013-08-22 14:49:40 +02004778 for (i = 1; i <= hdev->maxchild; i++) {
Hans de Goedea82b76f2013-11-08 13:41:05 +01004779 struct usb_device *udev = hub->ports[i - 1]->child;
4780
Linus Torvalds1da177e2005-04-16 15:20:36 -07004781 if (test_bit(i, hub->busy_bits))
4782 continue;
4783 connect_change = test_bit(i, hub->change_bits);
Sarah Sharp72937e12012-01-24 11:46:50 -08004784 wakeup_change = test_and_clear_bit(i, hub->wakeup_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004785 if (!test_and_clear_bit(i, hub->event_bits) &&
Sarah Sharp4ee823b2011-11-14 18:00:01 -08004786 !connect_change && !wakeup_change)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004787 continue;
4788
4789 ret = hub_port_status(hub, i,
4790 &portstatus, &portchange);
4791 if (ret < 0)
4792 continue;
4793
Linus Torvalds1da177e2005-04-16 15:20:36 -07004794 if (portchange & USB_PORT_STAT_C_CONNECTION) {
Lan Tianyuad493e52013-01-23 04:26:30 +08004795 usb_clear_port_feature(hdev, i,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004796 USB_PORT_FEAT_C_CONNECTION);
4797 connect_change = 1;
4798 }
4799
4800 if (portchange & USB_PORT_STAT_C_ENABLE) {
4801 if (!connect_change)
4802 dev_dbg (hub_dev,
4803 "port %d enable change, "
4804 "status %08x\n",
4805 i, portstatus);
Lan Tianyuad493e52013-01-23 04:26:30 +08004806 usb_clear_port_feature(hdev, i,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004807 USB_PORT_FEAT_C_ENABLE);
4808
4809 /*
4810 * EM interference sometimes causes badly
4811 * shielded USB devices to be shutdown by
4812 * the hub, this hack enables them again.
Matthias Beyer469271f2013-10-10 23:41:27 +02004813 * Works at least with mouse driver.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004814 */
4815 if (!(portstatus & USB_PORT_STAT_ENABLE)
4816 && !connect_change
Lan Tianyuff823c792012-09-05 13:44:32 +08004817 && hub->ports[i - 1]->child) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004818 dev_err (hub_dev,
4819 "port %i "
4820 "disabled by hub (EMI?), "
4821 "re-enabling...\n",
4822 i);
4823 connect_change = 1;
4824 }
4825 }
4826
Sarah Sharp72937e12012-01-24 11:46:50 -08004827 if (hub_handle_remote_wakeup(hub, i,
4828 portstatus, portchange))
Sarah Sharp714b07b2012-01-24 13:53:18 -08004829 connect_change = 1;
Alan Stern8808f002008-04-28 11:06:55 -04004830
Linus Torvalds1da177e2005-04-16 15:20:36 -07004831 if (portchange & USB_PORT_STAT_C_OVERCURRENT) {
Paul Bolle752d57a2011-03-11 18:03:52 +01004832 u16 status = 0;
4833 u16 unused;
4834
4835 dev_dbg(hub_dev, "over-current change on port "
4836 "%d\n", i);
Lan Tianyuad493e52013-01-23 04:26:30 +08004837 usb_clear_port_feature(hdev, i,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004838 USB_PORT_FEAT_C_OVER_CURRENT);
Paul Bolle752d57a2011-03-11 18:03:52 +01004839 msleep(100); /* Cool down */
Alan Stern8520f382008-09-22 14:44:26 -04004840 hub_power_on(hub, true);
Paul Bolle752d57a2011-03-11 18:03:52 +01004841 hub_port_status(hub, i, &status, &unused);
4842 if (status & USB_PORT_STAT_OVERCURRENT)
4843 dev_err(hub_dev, "over-current "
4844 "condition on port %d\n", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004845 }
4846
4847 if (portchange & USB_PORT_STAT_C_RESET) {
4848 dev_dbg (hub_dev,
4849 "reset change on port %d\n",
4850 i);
Lan Tianyuad493e52013-01-23 04:26:30 +08004851 usb_clear_port_feature(hdev, i,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004852 USB_PORT_FEAT_C_RESET);
4853 }
Sarah Sharpc7061572010-12-06 15:08:20 -08004854 if ((portchange & USB_PORT_STAT_C_BH_RESET) &&
4855 hub_is_superspeed(hub->hdev)) {
4856 dev_dbg(hub_dev,
4857 "warm reset change on port %d\n",
4858 i);
Lan Tianyuad493e52013-01-23 04:26:30 +08004859 usb_clear_port_feature(hdev, i,
Sarah Sharpc7061572010-12-06 15:08:20 -08004860 USB_PORT_FEAT_C_BH_PORT_RESET);
4861 }
John Youndbe79bb2001-09-17 00:00:00 -07004862 if (portchange & USB_PORT_STAT_C_LINK_STATE) {
Lan Tianyuad493e52013-01-23 04:26:30 +08004863 usb_clear_port_feature(hub->hdev, i,
John Youndbe79bb2001-09-17 00:00:00 -07004864 USB_PORT_FEAT_C_PORT_LINK_STATE);
4865 }
4866 if (portchange & USB_PORT_STAT_C_CONFIG_ERROR) {
4867 dev_warn(hub_dev,
4868 "config error on port %d\n",
4869 i);
Lan Tianyuad493e52013-01-23 04:26:30 +08004870 usb_clear_port_feature(hub->hdev, i,
John Youndbe79bb2001-09-17 00:00:00 -07004871 USB_PORT_FEAT_C_PORT_CONFIG_ERROR);
4872 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004873
Andiry Xu5e467f62011-04-27 18:07:54 +08004874 /* Warm reset a USB3 protocol port if it's in
4875 * SS.Inactive state.
4876 */
Stanislaw Ledwon8bea2bd2012-06-18 15:20:00 +02004877 if (hub_port_warm_reset_required(hub, portstatus)) {
Sarah Sharp65bdac52012-11-14 17:58:04 -08004878 int status;
4879
Andiry Xu5e467f62011-04-27 18:07:54 +08004880 dev_dbg(hub_dev, "warm reset port %d\n", i);
Julius Werner2d51f3c2013-11-07 10:59:14 -08004881 if (!udev ||
4882 !(portstatus & USB_PORT_STAT_CONNECTION) ||
4883 udev->state == USB_STATE_NOTATTACHED) {
Sarah Sharpd3b9d7a2012-11-01 11:20:44 -07004884 status = hub_port_reset(hub, i,
4885 NULL, HUB_BH_RESET_TIME,
4886 true);
4887 if (status < 0)
4888 hub_port_disable(hub, i, 1);
4889 } else {
4890 usb_lock_device(udev);
4891 status = usb_reset_device(udev);
4892 usb_unlock_device(udev);
Julius Wernerf3e94aa2013-07-30 19:51:20 -07004893 connect_change = 0;
Sarah Sharpd3b9d7a2012-11-01 11:20:44 -07004894 }
Hans de Goedea82b76f2013-11-08 13:41:05 +01004895 /*
4896 * On disconnect USB3 protocol ports transit from U0 to
4897 * SS.Inactive to Rx.Detect. If this happens a warm-
4898 * reset is not needed, but a (re)connect may happen
4899 * before khubd runs and sees the disconnect, and the
4900 * device may be an unknown state.
4901 *
4902 * If the port went through SS.Inactive without khubd
4903 * seeing it the C_LINK_STATE change flag will be set,
4904 * and we reset the dev to put it in a known state.
4905 */
4906 } else if (udev && hub_is_superspeed(hub->hdev) &&
4907 (portchange & USB_PORT_STAT_C_LINK_STATE) &&
4908 (portstatus & USB_PORT_STAT_CONNECTION)) {
4909 usb_lock_device(udev);
4910 usb_reset_device(udev);
4911 usb_unlock_device(udev);
4912 connect_change = 0;
Andiry Xu5e467f62011-04-27 18:07:54 +08004913 }
4914
Linus Torvalds1da177e2005-04-16 15:20:36 -07004915 if (connect_change)
4916 hub_port_connect_change(hub, i,
4917 portstatus, portchange);
4918 } /* end for i */
4919
4920 /* deal with hub status changes */
4921 if (test_and_clear_bit(0, hub->event_bits) == 0)
4922 ; /* do nothing */
4923 else if (hub_hub_status(hub, &hubstatus, &hubchange) < 0)
4924 dev_err (hub_dev, "get_hub_status failed\n");
4925 else {
4926 if (hubchange & HUB_CHANGE_LOCAL_POWER) {
4927 dev_dbg (hub_dev, "power change\n");
4928 clear_hub_feature(hdev, C_HUB_LOCAL_POWER);
Alan Stern55c52712005-11-23 12:03:12 -05004929 if (hubstatus & HUB_STATUS_LOCAL_POWER)
4930 /* FIXME: Is this always true? */
Alan Stern55c52712005-11-23 12:03:12 -05004931 hub->limited_power = 1;
jidong xiao403fae72007-09-14 00:08:51 +08004932 else
4933 hub->limited_power = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004934 }
4935 if (hubchange & HUB_CHANGE_OVERCURRENT) {
Paul Bolle752d57a2011-03-11 18:03:52 +01004936 u16 status = 0;
4937 u16 unused;
4938
4939 dev_dbg(hub_dev, "over-current change\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004940 clear_hub_feature(hdev, C_HUB_OVER_CURRENT);
Paul Bolle752d57a2011-03-11 18:03:52 +01004941 msleep(500); /* Cool down */
Matthias Beyer469271f2013-10-10 23:41:27 +02004942 hub_power_on(hub, true);
Paul Bolle752d57a2011-03-11 18:03:52 +01004943 hub_hub_status(hub, &status, &unused);
4944 if (status & HUB_STATUS_OVERCURRENT)
4945 dev_err(hub_dev, "over-current "
4946 "condition\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004947 }
4948 }
4949
Alan Stern8e4ceb32009-12-07 13:01:37 -05004950 loop_autopm:
4951 /* Balance the usb_autopm_get_interface() above */
4952 usb_autopm_put_interface_no_suspend(intf);
4953 loop:
4954 /* Balance the usb_autopm_get_interface_no_resume() in
4955 * kick_khubd() and allow autosuspend.
4956 */
4957 usb_autopm_put_interface(intf);
Alan Stern9bbdf1e2010-01-08 12:57:28 -05004958 loop_disconnected:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004959 usb_unlock_device(hdev);
Alan Sterne8054852007-05-04 11:55:11 -04004960 kref_put(&hub->kref, hub_release);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004961
Matthias Beyer469271f2013-10-10 23:41:27 +02004962 } /* end while (1) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004963}
4964
4965static int hub_thread(void *__unused)
4966{
Rahul Bedarkar025d4432014-01-04 11:24:41 +05304967 /* khubd needs to be freezable to avoid interfering with USB-PERSIST
Alan Stern3bb1af52008-03-03 15:15:36 -05004968 * port handover. Otherwise it might see that a full-speed device
4969 * was gone before the EHCI controller had handed its port over to
4970 * the companion full-speed controller.
4971 */
Rafael J. Wysocki83144182007-07-17 04:03:35 -07004972 set_freezable();
Alan Stern3bb1af52008-03-03 15:15:36 -05004973
Linus Torvalds1da177e2005-04-16 15:20:36 -07004974 do {
4975 hub_events();
Rafael J. Wysockie42837b2007-10-18 03:04:45 -07004976 wait_event_freezable(khubd_wait,
akpm@osdl.org9c8d6172005-06-20 14:29:58 -07004977 !list_empty(&hub_event_list) ||
4978 kthread_should_stop());
akpm@osdl.org9c8d6172005-06-20 14:29:58 -07004979 } while (!kthread_should_stop() || !list_empty(&hub_event_list));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004980
akpm@osdl.org9c8d6172005-06-20 14:29:58 -07004981 pr_debug("%s: khubd exiting\n", usbcore_name);
4982 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004983}
4984
Németh Márton1e927d92010-01-10 15:34:53 +01004985static const struct usb_device_id hub_id_table[] = {
Ming Leie6f30de2012-10-24 11:59:24 +08004986 { .match_flags = USB_DEVICE_ID_MATCH_VENDOR
Matthias Beyer469271f2013-10-10 23:41:27 +02004987 | USB_DEVICE_ID_MATCH_INT_CLASS,
Ming Leie6f30de2012-10-24 11:59:24 +08004988 .idVendor = USB_VENDOR_GENESYS_LOGIC,
4989 .bInterfaceClass = USB_CLASS_HUB,
4990 .driver_info = HUB_QUIRK_CHECK_PORT_AUTOSUSPEND},
Linus Torvalds1da177e2005-04-16 15:20:36 -07004991 { .match_flags = USB_DEVICE_ID_MATCH_DEV_CLASS,
4992 .bDeviceClass = USB_CLASS_HUB},
4993 { .match_flags = USB_DEVICE_ID_MATCH_INT_CLASS,
4994 .bInterfaceClass = USB_CLASS_HUB},
4995 { } /* Terminating entry */
4996};
4997
4998MODULE_DEVICE_TABLE (usb, hub_id_table);
4999
5000static struct usb_driver hub_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005001 .name = "hub",
5002 .probe = hub_probe,
5003 .disconnect = hub_disconnect,
5004 .suspend = hub_suspend,
5005 .resume = hub_resume,
Alan Sternf07600c2007-05-30 15:38:16 -04005006 .reset_resume = hub_reset_resume,
Alan Stern7de18d82006-06-01 13:37:24 -04005007 .pre_reset = hub_pre_reset,
5008 .post_reset = hub_post_reset,
Andi Kleenc532b292010-06-01 23:04:41 +02005009 .unlocked_ioctl = hub_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005010 .id_table = hub_id_table,
Alan Stern40f122f2006-11-09 14:44:33 -05005011 .supports_autosuspend = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005012};
5013
5014int usb_hub_init(void)
5015{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005016 if (usb_register(&hub_driver) < 0) {
5017 printk(KERN_ERR "%s: can't register hub driver\n",
5018 usbcore_name);
5019 return -1;
5020 }
5021
akpm@osdl.org9c8d6172005-06-20 14:29:58 -07005022 khubd_task = kthread_run(hub_thread, NULL, "khubd");
5023 if (!IS_ERR(khubd_task))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005024 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005025
5026 /* Fall through if kernel_thread failed */
5027 usb_deregister(&hub_driver);
5028 printk(KERN_ERR "%s: can't start khubd\n", usbcore_name);
5029
5030 return -1;
5031}
5032
5033void usb_hub_cleanup(void)
5034{
akpm@osdl.org9c8d6172005-06-20 14:29:58 -07005035 kthread_stop(khubd_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005036
5037 /*
5038 * Hub resources are freed for us by usb_deregister. It calls
5039 * usb_driver_purge on every device which in turn calls that
5040 * devices disconnect function if it is using this driver.
5041 * The hub_disconnect function takes care of releasing the
5042 * individual hub resources. -greg
5043 */
5044 usb_deregister(&hub_driver);
5045} /* usb_hub_cleanup() */
5046
Alan Sterneb764c42008-03-03 15:16:04 -05005047static int descriptors_changed(struct usb_device *udev,
Xenia Ragiadakoue3376d62013-08-29 21:45:48 +03005048 struct usb_device_descriptor *old_device_descriptor,
5049 struct usb_host_bos *old_bos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005050{
Alan Sterneb764c42008-03-03 15:16:04 -05005051 int changed = 0;
5052 unsigned index;
5053 unsigned serial_len = 0;
5054 unsigned len;
5055 unsigned old_length;
5056 int length;
5057 char *buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005058
Alan Sterneb764c42008-03-03 15:16:04 -05005059 if (memcmp(&udev->descriptor, old_device_descriptor,
5060 sizeof(*old_device_descriptor)) != 0)
5061 return 1;
5062
Xenia Ragiadakoue3376d62013-08-29 21:45:48 +03005063 if ((old_bos && !udev->bos) || (!old_bos && udev->bos))
5064 return 1;
5065 if (udev->bos) {
Xenia Ragiadakoub9a10482013-08-31 04:40:49 +03005066 len = le16_to_cpu(udev->bos->desc->wTotalLength);
5067 if (len != le16_to_cpu(old_bos->desc->wTotalLength))
Xenia Ragiadakoue3376d62013-08-29 21:45:48 +03005068 return 1;
Xenia Ragiadakoub9a10482013-08-31 04:40:49 +03005069 if (memcmp(udev->bos->desc, old_bos->desc, len))
Xenia Ragiadakoue3376d62013-08-29 21:45:48 +03005070 return 1;
5071 }
5072
Alan Sterneb764c42008-03-03 15:16:04 -05005073 /* Since the idVendor, idProduct, and bcdDevice values in the
5074 * device descriptor haven't changed, we will assume the
5075 * Manufacturer and Product strings haven't changed either.
5076 * But the SerialNumber string could be different (e.g., a
5077 * different flash card of the same brand).
5078 */
5079 if (udev->serial)
5080 serial_len = strlen(udev->serial) + 1;
5081
5082 len = serial_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005083 for (index = 0; index < udev->descriptor.bNumConfigurations; index++) {
Alan Sterneb764c42008-03-03 15:16:04 -05005084 old_length = le16_to_cpu(udev->config[index].desc.wTotalLength);
5085 len = max(len, old_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005086 }
Alan Sterneb764c42008-03-03 15:16:04 -05005087
Oliver Neukum0cc1a512008-01-10 10:31:48 +01005088 buf = kmalloc(len, GFP_NOIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005089 if (buf == NULL) {
5090 dev_err(&udev->dev, "no mem to re-read configs after reset\n");
5091 /* assume the worst */
5092 return 1;
5093 }
5094 for (index = 0; index < udev->descriptor.bNumConfigurations; index++) {
Alan Sterneb764c42008-03-03 15:16:04 -05005095 old_length = le16_to_cpu(udev->config[index].desc.wTotalLength);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005096 length = usb_get_descriptor(udev, USB_DT_CONFIG, index, buf,
5097 old_length);
Alan Sterneb764c42008-03-03 15:16:04 -05005098 if (length != old_length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005099 dev_dbg(&udev->dev, "config index %d, error %d\n",
5100 index, length);
Alan Sterneb764c42008-03-03 15:16:04 -05005101 changed = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005102 break;
5103 }
5104 if (memcmp (buf, udev->rawdescriptors[index], old_length)
5105 != 0) {
5106 dev_dbg(&udev->dev, "config index %d changed (#%d)\n",
Alan Sterneb764c42008-03-03 15:16:04 -05005107 index,
5108 ((struct usb_config_descriptor *) buf)->
5109 bConfigurationValue);
5110 changed = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005111 break;
5112 }
5113 }
Alan Sterneb764c42008-03-03 15:16:04 -05005114
5115 if (!changed && serial_len) {
5116 length = usb_string(udev, udev->descriptor.iSerialNumber,
5117 buf, serial_len);
5118 if (length + 1 != serial_len) {
5119 dev_dbg(&udev->dev, "serial string error %d\n",
5120 length);
5121 changed = 1;
5122 } else if (memcmp(buf, udev->serial, length) != 0) {
5123 dev_dbg(&udev->dev, "serial string changed\n");
5124 changed = 1;
5125 }
5126 }
5127
Linus Torvalds1da177e2005-04-16 15:20:36 -07005128 kfree(buf);
Alan Sterneb764c42008-03-03 15:16:04 -05005129 return changed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005130}
5131
5132/**
Ming Lei742120c2008-06-18 22:00:29 +08005133 * usb_reset_and_verify_device - perform a USB port reset to reinitialize a device
Linus Torvalds1da177e2005-04-16 15:20:36 -07005134 * @udev: device to reset (not in SUSPENDED or NOTATTACHED state)
5135 *
Alan Stern79efa092006-06-01 13:33:42 -04005136 * WARNING - don't use this routine to reset a composite device
5137 * (one with multiple interfaces owned by separate drivers)!
Ming Lei742120c2008-06-18 22:00:29 +08005138 * Use usb_reset_device() instead.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005139 *
5140 * Do a port reset, reassign the device's address, and establish its
5141 * former operating configuration. If the reset fails, or the device's
5142 * descriptors change from their values before the reset, or the original
5143 * configuration and altsettings cannot be restored, a flag will be set
5144 * telling khubd to pretend the device has been disconnected and then
5145 * re-connected. All drivers will be unbound, and the device will be
5146 * re-enumerated and probed all over again.
5147 *
Yacine Belkadi626f0902013-08-02 20:10:04 +02005148 * Return: 0 if the reset succeeded, -ENODEV if the device has been
Linus Torvalds1da177e2005-04-16 15:20:36 -07005149 * flagged for logical disconnection, or some other negative error code
5150 * if the reset wasn't even attempted.
5151 *
Yacine Belkadi626f0902013-08-02 20:10:04 +02005152 * Note:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005153 * The caller must own the device lock. For example, it's safe to use
5154 * this from a driver probe() routine after downloading new firmware.
5155 * For calls that might not occur during probe(), drivers should lock
5156 * the device using usb_lock_device_for_reset().
Alan Stern6bc6cff2007-05-04 11:53:03 -04005157 *
5158 * Locking exception: This routine may also be called from within an
5159 * autoresume handler. Such usage won't conflict with other tasks
5160 * holding the device lock because these tasks should always call
5161 * usb_autopm_resume_device(), thereby preventing any unwanted autoresume.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005162 */
Ming Lei742120c2008-06-18 22:00:29 +08005163static int usb_reset_and_verify_device(struct usb_device *udev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005164{
5165 struct usb_device *parent_hdev = udev->parent;
5166 struct usb_hub *parent_hub;
Sarah Sharp3f0479e2009-12-03 09:44:36 -08005167 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005168 struct usb_device_descriptor descriptor = udev->descriptor;
Xenia Ragiadakoue3376d62013-08-29 21:45:48 +03005169 struct usb_host_bos *bos;
Hans de Goede7a7b5622013-11-08 16:37:26 +01005170 int i, j, ret = 0;
Alan Stern12c3da32005-11-23 12:09:52 -05005171 int port1 = udev->portnum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005172
5173 if (udev->state == USB_STATE_NOTATTACHED ||
5174 udev->state == USB_STATE_SUSPENDED) {
5175 dev_dbg(&udev->dev, "device reset not allowed in state %d\n",
5176 udev->state);
5177 return -EINVAL;
5178 }
5179
5180 if (!parent_hdev) {
Wolfram Sang4bec9912010-08-29 18:17:14 +02005181 /* this requires hcd-specific logic; see ohci_restart() */
Harvey Harrison441b62c2008-03-03 16:08:34 -08005182 dev_dbg(&udev->dev, "%s for root hub!\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005183 return -EISDIR;
5184 }
Lan Tianyuad493e52013-01-23 04:26:30 +08005185 parent_hub = usb_hub_to_struct_hub(parent_hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005186
Sarah Sharpdcc01c02013-09-30 17:26:29 +03005187 /* Disable USB2 hardware LPM.
5188 * It will be re-enabled by the enumeration process.
5189 */
5190 if (udev->usb2_hw_lpm_enabled == 1)
5191 usb_set_usb2_hardware_lpm(udev, 0);
5192
Xenia Ragiadakoue3376d62013-08-29 21:45:48 +03005193 bos = udev->bos;
5194 udev->bos = NULL;
5195
Sarah Sharpf74631e2012-06-25 12:08:08 -07005196 /* Disable LPM and LTM while we reset the device and reinstall the alt
5197 * settings. Device-initiated LPM settings, and system exit latency
5198 * settings are cleared when the device is reset, so we have to set
5199 * them up again.
Sarah Sharp6d1d0512012-07-03 22:49:04 -07005200 */
5201 ret = usb_unlocked_disable_lpm(udev);
5202 if (ret) {
5203 dev_err(&udev->dev, "%s Failed to disable LPM\n.", __func__);
5204 goto re_enumerate;
5205 }
Sarah Sharpf74631e2012-06-25 12:08:08 -07005206 ret = usb_disable_ltm(udev);
5207 if (ret) {
5208 dev_err(&udev->dev, "%s Failed to disable LTM\n.",
5209 __func__);
5210 goto re_enumerate;
5211 }
Sarah Sharp6d1d0512012-07-03 22:49:04 -07005212
Linus Torvalds1da177e2005-04-16 15:20:36 -07005213 set_bit(port1, parent_hub->busy_bits);
5214 for (i = 0; i < SET_CONFIG_TRIES; ++i) {
5215
5216 /* ep0 maxpacket size may change; let the HCD know about it.
5217 * Other endpoints will be handled by re-enumeration. */
Inaky Perez-Gonzalezfc721f52008-04-08 13:24:46 -07005218 usb_ep0_reinit(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005219 ret = hub_port_init(parent_hub, udev, port1, i);
Alan Sterndd4dd192007-05-04 11:55:54 -04005220 if (ret >= 0 || ret == -ENOTCONN || ret == -ENODEV)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005221 break;
5222 }
5223 clear_bit(port1, parent_hub->busy_bits);
Alan Sternd5cbad42006-08-11 16:52:39 -04005224
Linus Torvalds1da177e2005-04-16 15:20:36 -07005225 if (ret < 0)
5226 goto re_enumerate;
Matthias Beyer469271f2013-10-10 23:41:27 +02005227
Linus Torvalds1da177e2005-04-16 15:20:36 -07005228 /* Device might have changed firmware (DFU or similar) */
Xenia Ragiadakoue3376d62013-08-29 21:45:48 +03005229 if (descriptors_changed(udev, &descriptor, bos)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005230 dev_info(&udev->dev, "device firmware changed\n");
5231 udev->descriptor = descriptor; /* for disconnect() calls */
5232 goto re_enumerate;
Matthias Beyer469271f2013-10-10 23:41:27 +02005233 }
Alan Stern4fe03872009-02-26 10:21:02 -05005234
5235 /* Restore the device's previous configuration */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005236 if (!udev->actconfig)
5237 goto done;
Sarah Sharp3f0479e2009-12-03 09:44:36 -08005238
Sarah Sharpd673bfc2010-10-15 08:55:24 -07005239 mutex_lock(hcd->bandwidth_mutex);
Sarah Sharp3f0479e2009-12-03 09:44:36 -08005240 ret = usb_hcd_alloc_bandwidth(udev, udev->actconfig, NULL, NULL);
5241 if (ret < 0) {
5242 dev_warn(&udev->dev,
5243 "Busted HC? Not enough HCD resources for "
5244 "old configuration.\n");
Sarah Sharpd673bfc2010-10-15 08:55:24 -07005245 mutex_unlock(hcd->bandwidth_mutex);
Sarah Sharp3f0479e2009-12-03 09:44:36 -08005246 goto re_enumerate;
5247 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005248 ret = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
5249 USB_REQ_SET_CONFIGURATION, 0,
5250 udev->actconfig->desc.bConfigurationValue, 0,
5251 NULL, 0, USB_CTRL_SET_TIMEOUT);
5252 if (ret < 0) {
5253 dev_err(&udev->dev,
5254 "can't restore configuration #%d (error=%d)\n",
5255 udev->actconfig->desc.bConfigurationValue, ret);
Sarah Sharpd673bfc2010-10-15 08:55:24 -07005256 mutex_unlock(hcd->bandwidth_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005257 goto re_enumerate;
Matthias Beyer469271f2013-10-10 23:41:27 +02005258 }
Sarah Sharpd673bfc2010-10-15 08:55:24 -07005259 mutex_unlock(hcd->bandwidth_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005260 usb_set_device_state(udev, USB_STATE_CONFIGURED);
5261
Alan Stern4fe03872009-02-26 10:21:02 -05005262 /* Put interfaces back into the same altsettings as before.
5263 * Don't bother to send the Set-Interface request for interfaces
5264 * that were already in altsetting 0; besides being unnecessary,
5265 * many devices can't handle it. Instead just reset the host-side
5266 * endpoint state.
5267 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005268 for (i = 0; i < udev->actconfig->desc.bNumInterfaces; i++) {
Sarah Sharp3f0479e2009-12-03 09:44:36 -08005269 struct usb_host_config *config = udev->actconfig;
5270 struct usb_interface *intf = config->interface[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07005271 struct usb_interface_descriptor *desc;
5272
Linus Torvalds1da177e2005-04-16 15:20:36 -07005273 desc = &intf->cur_altsetting->desc;
Alan Stern4fe03872009-02-26 10:21:02 -05005274 if (desc->bAlternateSetting == 0) {
5275 usb_disable_interface(udev, intf, true);
5276 usb_enable_interface(udev, intf, true);
5277 ret = 0;
5278 } else {
Sarah Sharp04a723e2010-01-06 10:16:51 -08005279 /* Let the bandwidth allocation function know that this
5280 * device has been reset, and it will have to use
5281 * alternate setting 0 as the current alternate setting.
Sarah Sharp3f0479e2009-12-03 09:44:36 -08005282 */
Sarah Sharp04a723e2010-01-06 10:16:51 -08005283 intf->resetting_device = 1;
Alan Stern4fe03872009-02-26 10:21:02 -05005284 ret = usb_set_interface(udev, desc->bInterfaceNumber,
5285 desc->bAlternateSetting);
Sarah Sharp04a723e2010-01-06 10:16:51 -08005286 intf->resetting_device = 0;
Alan Stern4fe03872009-02-26 10:21:02 -05005287 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005288 if (ret < 0) {
5289 dev_err(&udev->dev, "failed to restore interface %d "
5290 "altsetting %d (error=%d)\n",
5291 desc->bInterfaceNumber,
5292 desc->bAlternateSetting,
5293 ret);
5294 goto re_enumerate;
5295 }
Hans de Goede7a7b5622013-11-08 16:37:26 +01005296 /* Resetting also frees any allocated streams */
5297 for (j = 0; j < intf->cur_altsetting->desc.bNumEndpoints; j++)
5298 intf->cur_altsetting->endpoint[j].streams = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005299 }
5300
5301done:
Sarah Sharpf74631e2012-06-25 12:08:08 -07005302 /* Now that the alt settings are re-installed, enable LTM and LPM. */
Sarah Sharpde68bab2013-09-30 17:26:28 +03005303 usb_set_usb2_hardware_lpm(udev, 1);
Alan Stern78d9a482008-06-23 16:00:40 -04005304 usb_unlocked_enable_lpm(udev);
Sarah Sharpf74631e2012-06-25 12:08:08 -07005305 usb_enable_ltm(udev);
Xenia Ragiadakoue3376d62013-08-29 21:45:48 +03005306 usb_release_bos_descriptor(udev);
5307 udev->bos = bos;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005308 return 0;
Matthias Beyer469271f2013-10-10 23:41:27 +02005309
Linus Torvalds1da177e2005-04-16 15:20:36 -07005310re_enumerate:
Sarah Sharp6d1d0512012-07-03 22:49:04 -07005311 /* LPM state doesn't matter when we're about to destroy the device. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005312 hub_port_logical_disconnect(parent_hub, port1);
Xenia Ragiadakoue3376d62013-08-29 21:45:48 +03005313 usb_release_bos_descriptor(udev);
5314 udev->bos = bos;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005315 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005316}
5317
5318/**
5319 * usb_reset_device - warn interface drivers and perform a USB port reset
5320 * @udev: device to reset (not in SUSPENDED or NOTATTACHED state)
5321 *
Alan Stern79efa092006-06-01 13:33:42 -04005322 * Warns all drivers bound to registered interfaces (using their pre_reset
5323 * method), performs the port reset, and then lets the drivers know that
Ming Lei742120c2008-06-18 22:00:29 +08005324 * the reset is over (using their post_reset method).
Alan Stern79efa092006-06-01 13:33:42 -04005325 *
Yacine Belkadi626f0902013-08-02 20:10:04 +02005326 * Return: The same as for usb_reset_and_verify_device().
Alan Stern79efa092006-06-01 13:33:42 -04005327 *
Yacine Belkadi626f0902013-08-02 20:10:04 +02005328 * Note:
Alan Stern79efa092006-06-01 13:33:42 -04005329 * The caller must own the device lock. For example, it's safe to use
5330 * this from a driver probe() routine after downloading new firmware.
5331 * For calls that might not occur during probe(), drivers should lock
Ming Lei742120c2008-06-18 22:00:29 +08005332 * the device using usb_lock_device_for_reset().
Alan Stern79efa092006-06-01 13:33:42 -04005333 *
5334 * If an interface is currently being probed or disconnected, we assume
5335 * its driver knows how to handle resets. For all other interfaces,
5336 * if the driver doesn't have pre_reset and post_reset methods then
5337 * we attempt to unbind it and rebind afterward.
Alan Stern79efa092006-06-01 13:33:42 -04005338 */
Ming Lei742120c2008-06-18 22:00:29 +08005339int usb_reset_device(struct usb_device *udev)
Alan Stern79efa092006-06-01 13:33:42 -04005340{
5341 int ret;
Alan Stern852c4b42007-12-03 15:44:29 -05005342 int i;
Ming Lei4d769de2013-02-22 16:34:22 -08005343 unsigned int noio_flag;
Alan Stern79efa092006-06-01 13:33:42 -04005344 struct usb_host_config *config = udev->actconfig;
5345
5346 if (udev->state == USB_STATE_NOTATTACHED ||
5347 udev->state == USB_STATE_SUSPENDED) {
5348 dev_dbg(&udev->dev, "device reset not allowed in state %d\n",
5349 udev->state);
5350 return -EINVAL;
5351 }
5352
Ming Lei4d769de2013-02-22 16:34:22 -08005353 /*
5354 * Don't allocate memory with GFP_KERNEL in current
5355 * context to avoid possible deadlock if usb mass
5356 * storage interface or usbnet interface(iSCSI case)
5357 * is included in current configuration. The easist
5358 * approach is to do it for every device reset,
5359 * because the device 'memalloc_noio' flag may have
5360 * not been set before reseting the usb device.
5361 */
5362 noio_flag = memalloc_noio_save();
5363
Alan Stern645daaa2006-08-30 15:47:02 -04005364 /* Prevent autosuspend during the reset */
Alan Stern94fcda12006-11-20 11:38:46 -05005365 usb_autoresume_device(udev);
Alan Stern645daaa2006-08-30 15:47:02 -04005366
Alan Stern79efa092006-06-01 13:33:42 -04005367 if (config) {
Alan Stern79efa092006-06-01 13:33:42 -04005368 for (i = 0; i < config->desc.bNumInterfaces; ++i) {
Alan Stern852c4b42007-12-03 15:44:29 -05005369 struct usb_interface *cintf = config->interface[i];
5370 struct usb_driver *drv;
Alan Stern78d9a482008-06-23 16:00:40 -04005371 int unbind = 0;
Alan Stern852c4b42007-12-03 15:44:29 -05005372
5373 if (cintf->dev.driver) {
Alan Stern79efa092006-06-01 13:33:42 -04005374 drv = to_usb_driver(cintf->dev.driver);
Alan Stern78d9a482008-06-23 16:00:40 -04005375 if (drv->pre_reset && drv->post_reset)
5376 unbind = (drv->pre_reset)(cintf);
5377 else if (cintf->condition ==
5378 USB_INTERFACE_BOUND)
5379 unbind = 1;
5380 if (unbind)
5381 usb_forced_unbind_intf(cintf);
Alan Stern79efa092006-06-01 13:33:42 -04005382 }
5383 }
5384 }
5385
Ming Lei742120c2008-06-18 22:00:29 +08005386 ret = usb_reset_and_verify_device(udev);
Alan Stern79efa092006-06-01 13:33:42 -04005387
5388 if (config) {
Alan Stern79efa092006-06-01 13:33:42 -04005389 for (i = config->desc.bNumInterfaces - 1; i >= 0; --i) {
Alan Stern852c4b42007-12-03 15:44:29 -05005390 struct usb_interface *cintf = config->interface[i];
5391 struct usb_driver *drv;
Alan Stern78d9a482008-06-23 16:00:40 -04005392 int rebind = cintf->needs_binding;
Alan Stern852c4b42007-12-03 15:44:29 -05005393
Alan Stern78d9a482008-06-23 16:00:40 -04005394 if (!rebind && cintf->dev.driver) {
Alan Stern79efa092006-06-01 13:33:42 -04005395 drv = to_usb_driver(cintf->dev.driver);
5396 if (drv->post_reset)
Alan Stern78d9a482008-06-23 16:00:40 -04005397 rebind = (drv->post_reset)(cintf);
5398 else if (cintf->condition ==
5399 USB_INTERFACE_BOUND)
5400 rebind = 1;
Alan Stern6aec0442014-03-12 11:30:38 -04005401 if (rebind)
5402 cintf->needs_binding = 1;
Alan Stern79efa092006-06-01 13:33:42 -04005403 }
Alan Stern79efa092006-06-01 13:33:42 -04005404 }
Alan Stern6aec0442014-03-12 11:30:38 -04005405 usb_unbind_and_rebind_marked_interfaces(udev);
Alan Stern79efa092006-06-01 13:33:42 -04005406 }
5407
Alan Stern94fcda12006-11-20 11:38:46 -05005408 usb_autosuspend_device(udev);
Ming Lei4d769de2013-02-22 16:34:22 -08005409 memalloc_noio_restore(noio_flag);
Alan Stern79efa092006-06-01 13:33:42 -04005410 return ret;
5411}
Ming Lei742120c2008-06-18 22:00:29 +08005412EXPORT_SYMBOL_GPL(usb_reset_device);
Inaky Perez-Gonzalezdc023dc2008-11-13 10:31:35 -08005413
5414
5415/**
5416 * usb_queue_reset_device - Reset a USB device from an atomic context
5417 * @iface: USB interface belonging to the device to reset
5418 *
5419 * This function can be used to reset a USB device from an atomic
5420 * context, where usb_reset_device() won't work (as it blocks).
5421 *
5422 * Doing a reset via this method is functionally equivalent to calling
5423 * usb_reset_device(), except for the fact that it is delayed to a
5424 * workqueue. This means that any drivers bound to other interfaces
5425 * might be unbound, as well as users from usbfs in user space.
5426 *
5427 * Corner cases:
5428 *
5429 * - Scheduling two resets at the same time from two different drivers
5430 * attached to two different interfaces of the same device is
5431 * possible; depending on how the driver attached to each interface
5432 * handles ->pre_reset(), the second reset might happen or not.
5433 *
5434 * - If a driver is unbound and it had a pending reset, the reset will
5435 * be cancelled.
5436 *
5437 * - This function can be called during .probe() or .disconnect()
5438 * times. On return from .disconnect(), any pending resets will be
5439 * cancelled.
5440 *
5441 * There is no no need to lock/unlock the @reset_ws as schedule_work()
5442 * does its own.
5443 *
5444 * NOTE: We don't do any reference count tracking because it is not
5445 * needed. The lifecycle of the work_struct is tied to the
5446 * usb_interface. Before destroying the interface we cancel the
5447 * work_struct, so the fact that work_struct is queued and or
5448 * running means the interface (and thus, the device) exist and
5449 * are referenced.
5450 */
5451void usb_queue_reset_device(struct usb_interface *iface)
5452{
5453 schedule_work(&iface->reset_ws);
5454}
5455EXPORT_SYMBOL_GPL(usb_queue_reset_device);
Lan Tianyuff823c792012-09-05 13:44:32 +08005456
5457/**
5458 * usb_hub_find_child - Get the pointer of child device
5459 * attached to the port which is specified by @port1.
5460 * @hdev: USB device belonging to the usb hub
5461 * @port1: port num to indicate which port the child device
5462 * is attached to.
5463 *
5464 * USB drivers call this function to get hub's child device
5465 * pointer.
5466 *
Yacine Belkadi626f0902013-08-02 20:10:04 +02005467 * Return: %NULL if input param is invalid and
Lan Tianyuff823c792012-09-05 13:44:32 +08005468 * child's usb_device pointer if non-NULL.
5469 */
5470struct usb_device *usb_hub_find_child(struct usb_device *hdev,
5471 int port1)
5472{
Lan Tianyuad493e52013-01-23 04:26:30 +08005473 struct usb_hub *hub = usb_hub_to_struct_hub(hdev);
Lan Tianyuff823c792012-09-05 13:44:32 +08005474
5475 if (port1 < 1 || port1 > hdev->maxchild)
5476 return NULL;
5477 return hub->ports[port1 - 1]->child;
5478}
5479EXPORT_SYMBOL_GPL(usb_hub_find_child);
Lan Tianyud5575422012-09-05 13:44:33 +08005480
Lan Tianyu05f91682012-09-05 13:44:34 +08005481/**
5482 * usb_set_hub_port_connect_type - set hub port connect type.
5483 * @hdev: USB device belonging to the usb hub
5484 * @port1: port num of the port
5485 * @type: connect type of the port
5486 */
5487void usb_set_hub_port_connect_type(struct usb_device *hdev, int port1,
5488 enum usb_port_connect_type type)
5489{
Lan Tianyuad493e52013-01-23 04:26:30 +08005490 struct usb_hub *hub = usb_hub_to_struct_hub(hdev);
Lan Tianyu05f91682012-09-05 13:44:34 +08005491
Mathias Nyman413412612013-06-18 17:28:48 +03005492 if (hub)
5493 hub->ports[port1 - 1]->connect_type = type;
Lan Tianyu05f91682012-09-05 13:44:34 +08005494}
5495
5496/**
5497 * usb_get_hub_port_connect_type - Get the port's connect type
5498 * @hdev: USB device belonging to the usb hub
5499 * @port1: port num of the port
5500 *
Yacine Belkadi626f0902013-08-02 20:10:04 +02005501 * Return: The connect type of the port if successful. Or
5502 * USB_PORT_CONNECT_TYPE_UNKNOWN if input params are invalid.
Lan Tianyu05f91682012-09-05 13:44:34 +08005503 */
5504enum usb_port_connect_type
5505usb_get_hub_port_connect_type(struct usb_device *hdev, int port1)
5506{
Lan Tianyuad493e52013-01-23 04:26:30 +08005507 struct usb_hub *hub = usb_hub_to_struct_hub(hdev);
Lan Tianyu05f91682012-09-05 13:44:34 +08005508
Mathias Nyman413412612013-06-18 17:28:48 +03005509 if (!hub)
5510 return USB_PORT_CONNECT_TYPE_UNKNOWN;
5511
Lan Tianyu05f91682012-09-05 13:44:34 +08005512 return hub->ports[port1 - 1]->connect_type;
5513}
5514
Lan Tianyud2123fd2013-01-21 22:18:00 +08005515void usb_hub_adjust_deviceremovable(struct usb_device *hdev,
5516 struct usb_hub_descriptor *desc)
5517{
5518 enum usb_port_connect_type connect_type;
5519 int i;
5520
5521 if (!hub_is_superspeed(hdev)) {
5522 for (i = 1; i <= hdev->maxchild; i++) {
5523 connect_type = usb_get_hub_port_connect_type(hdev, i);
5524
5525 if (connect_type == USB_PORT_CONNECT_TYPE_HARD_WIRED) {
5526 u8 mask = 1 << (i%8);
5527
5528 if (!(desc->u.hs.DeviceRemovable[i/8] & mask)) {
5529 dev_dbg(&hdev->dev, "usb port%d's DeviceRemovable is changed to 1 according to platform information.\n",
5530 i);
5531 desc->u.hs.DeviceRemovable[i/8] |= mask;
5532 }
5533 }
5534 }
5535 } else {
5536 u16 port_removable = le16_to_cpu(desc->u.ss.DeviceRemovable);
5537
5538 for (i = 1; i <= hdev->maxchild; i++) {
5539 connect_type = usb_get_hub_port_connect_type(hdev, i);
5540
5541 if (connect_type == USB_PORT_CONNECT_TYPE_HARD_WIRED) {
5542 u16 mask = 1 << i;
5543
5544 if (!(port_removable & mask)) {
5545 dev_dbg(&hdev->dev, "usb port%d's DeviceRemovable is changed to 1 according to platform information.\n",
5546 i);
5547 port_removable |= mask;
5548 }
5549 }
5550 }
5551
5552 desc->u.ss.DeviceRemovable = cpu_to_le16(port_removable);
5553 }
5554}
5555
Lan Tianyud5575422012-09-05 13:44:33 +08005556#ifdef CONFIG_ACPI
5557/**
5558 * usb_get_hub_port_acpi_handle - Get the usb port's acpi handle
5559 * @hdev: USB device belonging to the usb hub
5560 * @port1: port num of the port
5561 *
Yacine Belkadi626f0902013-08-02 20:10:04 +02005562 * Return: Port's acpi handle if successful, %NULL if params are
5563 * invalid.
Lan Tianyud5575422012-09-05 13:44:33 +08005564 */
5565acpi_handle usb_get_hub_port_acpi_handle(struct usb_device *hdev,
5566 int port1)
5567{
Lan Tianyuad493e52013-01-23 04:26:30 +08005568 struct usb_hub *hub = usb_hub_to_struct_hub(hdev);
Lan Tianyud5575422012-09-05 13:44:33 +08005569
Mathias Nyman413412612013-06-18 17:28:48 +03005570 if (!hub)
5571 return NULL;
5572
Rafael J. Wysocki3a83f992013-11-14 23:17:21 +01005573 return ACPI_HANDLE(&hub->ports[port1 - 1]->dev);
Lan Tianyud5575422012-09-05 13:44:33 +08005574}
5575#endif