blob: 5d859fc076109e0da64b3284a7611fe8efb1f09a [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
Greg Kroah-Hartmanf2a383e2007-11-26 22:11:55 -080036/* if we are in debug mode, always announce new devices */
37#ifdef DEBUG
38#ifndef CONFIG_USB_ANNOUNCE_NEW_DEVICES
39#define CONFIG_USB_ANNOUNCE_NEW_DEVICES
40#endif
41#endif
42
Ming Leie6f30de2012-10-24 11:59:24 +080043#define USB_VENDOR_GENESYS_LOGIC 0x05e3
44#define HUB_QUIRK_CHECK_PORT_AUTOSUSPEND 0x01
45
John Youndbe79bb2001-09-17 00:00:00 -070046static inline int hub_is_superspeed(struct usb_device *hdev)
47{
Aman Deep7bf01182011-12-08 12:05:22 +053048 return (hdev->descriptor.bDeviceProtocol == USB_HUB_PR_SS);
John Youndbe79bb2001-09-17 00:00:00 -070049}
Alan Stern1bb5f662006-11-06 11:56:13 -050050
Greg Kroah-Hartmanfa286182012-05-14 09:20:37 -070051/* Protect struct usb_device->state and ->children members
Alan Stern9ad3d6c2005-11-17 17:10:32 -050052 * Note: Both are also protected by ->dev.sem, except that ->state can
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 * change to USB_STATE_NOTATTACHED even when the semaphore isn't held. */
54static DEFINE_SPINLOCK(device_state_lock);
55
56/* khubd's worklist and its lock */
57static DEFINE_SPINLOCK(hub_event_lock);
58static LIST_HEAD(hub_event_list); /* List of hubs needing servicing */
59
60/* Wakes up khubd */
61static DECLARE_WAIT_QUEUE_HEAD(khubd_wait);
62
akpm@osdl.org9c8d6172005-06-20 14:29:58 -070063static struct task_struct *khubd_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
65/* cycle leds on hubs that aren't blinking for attention */
Rusty Russell90ab5ee2012-01-13 09:32:20 +103066static bool blinkenlights = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067module_param (blinkenlights, bool, S_IRUGO);
68MODULE_PARM_DESC (blinkenlights, "true to cycle leds on hubs");
69
70/*
Jaroslav Kyselafd7c5192008-10-10 16:24:45 +020071 * Device SATA8000 FW1.0 from DATAST0R Technology Corp requires about
72 * 10 seconds to send reply for the initial 64-byte descriptor request.
73 */
74/* define initial 64-byte descriptor request timeout in milliseconds */
75static int initial_descriptor_timeout = USB_CTRL_GET_TIMEOUT;
76module_param(initial_descriptor_timeout, int, S_IRUGO|S_IWUSR);
Wu Fengguangb9cef6c2008-12-15 15:32:01 +080077MODULE_PARM_DESC(initial_descriptor_timeout,
78 "initial 64-byte descriptor request timeout in milliseconds "
79 "(default 5000 - 5.0 seconds)");
Jaroslav Kyselafd7c5192008-10-10 16:24:45 +020080
81/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 * As of 2.6.10 we introduce a new USB device initialization scheme which
83 * closely resembles the way Windows works. Hopefully it will be compatible
84 * with a wider range of devices than the old scheme. However some previously
85 * working devices may start giving rise to "device not accepting address"
86 * errors; if that happens the user can try the old scheme by adjusting the
87 * following module parameters.
88 *
89 * For maximum flexibility there are two boolean parameters to control the
90 * hub driver's behavior. On the first initialization attempt, if the
91 * "old_scheme_first" parameter is set then the old scheme will be used,
92 * otherwise the new scheme is used. If that fails and "use_both_schemes"
93 * is set, then the driver will make another attempt, using the other scheme.
94 */
Rusty Russell90ab5ee2012-01-13 09:32:20 +103095static bool old_scheme_first = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070096module_param(old_scheme_first, bool, S_IRUGO | S_IWUSR);
97MODULE_PARM_DESC(old_scheme_first,
98 "start with the old device initialization scheme");
99
Rusty Russell90ab5ee2012-01-13 09:32:20 +1030100static bool use_both_schemes = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101module_param(use_both_schemes, bool, S_IRUGO | S_IWUSR);
102MODULE_PARM_DESC(use_both_schemes,
103 "try the other device initialization scheme if the "
104 "first one fails");
105
Alan Stern32fe0192007-10-10 16:27:07 -0400106/* Mutual exclusion for EHCI CF initialization. This interferes with
107 * port reset on some companion controllers.
108 */
109DECLARE_RWSEM(ehci_cf_port_reset_rwsem);
110EXPORT_SYMBOL_GPL(ehci_cf_port_reset_rwsem);
111
Lan Tianyuad493e52013-01-23 04:26:30 +0800112#define HUB_DEBOUNCE_TIMEOUT 2000
Alan Stern948fea32008-04-28 11:07:07 -0400113#define HUB_DEBOUNCE_STEP 25
114#define HUB_DEBOUNCE_STABLE 100
115
Ming Lei742120c2008-06-18 22:00:29 +0800116static int usb_reset_and_verify_device(struct usb_device *udev);
117
Sarah Sharp131dec32010-12-06 21:00:19 -0800118static inline char *portspeed(struct usb_hub *hub, int portstatus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119{
Sarah Sharp131dec32010-12-06 21:00:19 -0800120 if (hub_is_superspeed(hub->hdev))
121 return "5.0 Gb/s";
Alan Stern288ead42010-03-04 11:32:30 -0500122 if (portstatus & USB_PORT_STAT_HIGH_SPEED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 return "480 Mb/s";
Alan Stern288ead42010-03-04 11:32:30 -0500124 else if (portstatus & USB_PORT_STAT_LOW_SPEED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 return "1.5 Mb/s";
126 else
127 return "12 Mb/s";
128}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
130/* Note that hdev or one of its children must be locked! */
Lan Tianyuad493e52013-01-23 04:26:30 +0800131struct usb_hub *usb_hub_to_struct_hub(struct usb_device *hdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132{
Lan Tianyuff823c72012-09-05 13:44:32 +0800133 if (!hdev || !hdev->actconfig || !hdev->maxchild)
Alan Stern251180842009-07-22 14:41:18 -0400134 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 return usb_get_intfdata(hdev->actconfig->interface[0]);
136}
137
Sarah Sharpd9b20992012-02-20 08:31:26 -0800138static int usb_device_supports_lpm(struct usb_device *udev)
139{
140 /* USB 2.1 (and greater) devices indicate LPM support through
141 * their USB 2.0 Extended Capabilities BOS descriptor.
142 */
143 if (udev->speed == USB_SPEED_HIGH) {
144 if (udev->bos->ext_cap &&
145 (USB_LPM_SUPPORT &
146 le32_to_cpu(udev->bos->ext_cap->bmAttributes)))
147 return 1;
148 return 0;
149 }
Sarah Sharp51e0a012012-02-20 12:02:19 -0800150
151 /* All USB 3.0 must support LPM, but we need their max exit latency
152 * information from the SuperSpeed Extended Capabilities BOS descriptor.
153 */
154 if (!udev->bos->ss_cap) {
155 dev_warn(&udev->dev, "No LPM exit latency info found. "
156 "Power management will be impacted.\n");
157 return 0;
158 }
159 if (udev->parent->lpm_capable)
160 return 1;
161
162 dev_warn(&udev->dev, "Parent hub missing LPM exit latency info. "
163 "Power management will be impacted.\n");
Sarah Sharpd9b20992012-02-20 08:31:26 -0800164 return 0;
165}
166
Sarah Sharp51e0a012012-02-20 12:02:19 -0800167/*
168 * Set the Maximum Exit Latency (MEL) for the host to initiate a transition from
169 * either U1 or U2.
170 */
171static void usb_set_lpm_mel(struct usb_device *udev,
172 struct usb3_lpm_parameters *udev_lpm_params,
173 unsigned int udev_exit_latency,
174 struct usb_hub *hub,
175 struct usb3_lpm_parameters *hub_lpm_params,
176 unsigned int hub_exit_latency)
177{
178 unsigned int total_mel;
179 unsigned int device_mel;
180 unsigned int hub_mel;
181
182 /*
183 * Calculate the time it takes to transition all links from the roothub
184 * to the parent hub into U0. The parent hub must then decode the
185 * packet (hub header decode latency) to figure out which port it was
186 * bound for.
187 *
188 * The Hub Header decode latency is expressed in 0.1us intervals (0x1
189 * means 0.1us). Multiply that by 100 to get nanoseconds.
190 */
191 total_mel = hub_lpm_params->mel +
192 (hub->descriptor->u.ss.bHubHdrDecLat * 100);
193
194 /*
195 * How long will it take to transition the downstream hub's port into
196 * U0? The greater of either the hub exit latency or the device exit
197 * latency.
198 *
199 * The BOS U1/U2 exit latencies are expressed in 1us intervals.
200 * Multiply that by 1000 to get nanoseconds.
201 */
202 device_mel = udev_exit_latency * 1000;
203 hub_mel = hub_exit_latency * 1000;
204 if (device_mel > hub_mel)
205 total_mel += device_mel;
206 else
207 total_mel += hub_mel;
208
209 udev_lpm_params->mel = total_mel;
210}
211
212/*
213 * Set the maximum Device to Host Exit Latency (PEL) for the device to initiate
214 * a transition from either U1 or U2.
215 */
216static void usb_set_lpm_pel(struct usb_device *udev,
217 struct usb3_lpm_parameters *udev_lpm_params,
218 unsigned int udev_exit_latency,
219 struct usb_hub *hub,
220 struct usb3_lpm_parameters *hub_lpm_params,
221 unsigned int hub_exit_latency,
222 unsigned int port_to_port_exit_latency)
223{
224 unsigned int first_link_pel;
225 unsigned int hub_pel;
226
227 /*
228 * First, the device sends an LFPS to transition the link between the
229 * device and the parent hub into U0. The exit latency is the bigger of
230 * the device exit latency or the hub exit latency.
231 */
232 if (udev_exit_latency > hub_exit_latency)
233 first_link_pel = udev_exit_latency * 1000;
234 else
235 first_link_pel = hub_exit_latency * 1000;
236
237 /*
238 * When the hub starts to receive the LFPS, there is a slight delay for
239 * it to figure out that one of the ports is sending an LFPS. Then it
240 * will forward the LFPS to its upstream link. The exit latency is the
241 * delay, plus the PEL that we calculated for this hub.
242 */
243 hub_pel = port_to_port_exit_latency * 1000 + hub_lpm_params->pel;
244
245 /*
246 * According to figure C-7 in the USB 3.0 spec, the PEL for this device
247 * is the greater of the two exit latencies.
248 */
249 if (first_link_pel > hub_pel)
250 udev_lpm_params->pel = first_link_pel;
251 else
252 udev_lpm_params->pel = hub_pel;
253}
254
255/*
256 * Set the System Exit Latency (SEL) to indicate the total worst-case time from
257 * when a device initiates a transition to U0, until when it will receive the
258 * first packet from the host controller.
259 *
260 * Section C.1.5.1 describes the four components to this:
261 * - t1: device PEL
262 * - t2: time for the ERDY to make it from the device to the host.
263 * - t3: a host-specific delay to process the ERDY.
264 * - t4: time for the packet to make it from the host to the device.
265 *
266 * t3 is specific to both the xHCI host and the platform the host is integrated
267 * into. The Intel HW folks have said it's negligible, FIXME if a different
268 * vendor says otherwise.
269 */
270static void usb_set_lpm_sel(struct usb_device *udev,
271 struct usb3_lpm_parameters *udev_lpm_params)
272{
273 struct usb_device *parent;
274 unsigned int num_hubs;
275 unsigned int total_sel;
276
277 /* t1 = device PEL */
278 total_sel = udev_lpm_params->pel;
279 /* How many external hubs are in between the device & the root port. */
280 for (parent = udev->parent, num_hubs = 0; parent->parent;
281 parent = parent->parent)
282 num_hubs++;
283 /* t2 = 2.1us + 250ns * (num_hubs - 1) */
284 if (num_hubs > 0)
285 total_sel += 2100 + 250 * (num_hubs - 1);
286
287 /* t4 = 250ns * num_hubs */
288 total_sel += 250 * num_hubs;
289
290 udev_lpm_params->sel = total_sel;
291}
292
293static void usb_set_lpm_parameters(struct usb_device *udev)
294{
295 struct usb_hub *hub;
296 unsigned int port_to_port_delay;
297 unsigned int udev_u1_del;
298 unsigned int udev_u2_del;
299 unsigned int hub_u1_del;
300 unsigned int hub_u2_del;
301
302 if (!udev->lpm_capable || udev->speed != USB_SPEED_SUPER)
303 return;
304
Lan Tianyuad493e52013-01-23 04:26:30 +0800305 hub = usb_hub_to_struct_hub(udev->parent);
Sarah Sharp51e0a012012-02-20 12:02:19 -0800306 /* It doesn't take time to transition the roothub into U0, since it
307 * doesn't have an upstream link.
308 */
309 if (!hub)
310 return;
311
312 udev_u1_del = udev->bos->ss_cap->bU1devExitLat;
313 udev_u2_del = udev->bos->ss_cap->bU2DevExitLat;
314 hub_u1_del = udev->parent->bos->ss_cap->bU1devExitLat;
315 hub_u2_del = udev->parent->bos->ss_cap->bU2DevExitLat;
316
317 usb_set_lpm_mel(udev, &udev->u1_params, udev_u1_del,
318 hub, &udev->parent->u1_params, hub_u1_del);
319
320 usb_set_lpm_mel(udev, &udev->u2_params, udev_u2_del,
321 hub, &udev->parent->u2_params, hub_u2_del);
322
323 /*
324 * Appendix C, section C.2.2.2, says that there is a slight delay from
325 * when the parent hub notices the downstream port is trying to
326 * transition to U0 to when the hub initiates a U0 transition on its
327 * upstream port. The section says the delays are tPort2PortU1EL and
328 * tPort2PortU2EL, but it doesn't define what they are.
329 *
330 * The hub chapter, sections 10.4.2.4 and 10.4.2.5 seem to be talking
331 * about the same delays. Use the maximum delay calculations from those
332 * sections. For U1, it's tHubPort2PortExitLat, which is 1us max. For
333 * U2, it's tHubPort2PortExitLat + U2DevExitLat - U1DevExitLat. I
334 * assume the device exit latencies they are talking about are the hub
335 * exit latencies.
336 *
337 * What do we do if the U2 exit latency is less than the U1 exit
338 * latency? It's possible, although not likely...
339 */
340 port_to_port_delay = 1;
341
342 usb_set_lpm_pel(udev, &udev->u1_params, udev_u1_del,
343 hub, &udev->parent->u1_params, hub_u1_del,
344 port_to_port_delay);
345
346 if (hub_u2_del > hub_u1_del)
347 port_to_port_delay = 1 + hub_u2_del - hub_u1_del;
348 else
349 port_to_port_delay = 1 + hub_u1_del;
350
351 usb_set_lpm_pel(udev, &udev->u2_params, udev_u2_del,
352 hub, &udev->parent->u2_params, hub_u2_del,
353 port_to_port_delay);
354
355 /* Now that we've got PEL, calculate SEL. */
356 usb_set_lpm_sel(udev, &udev->u1_params);
357 usb_set_lpm_sel(udev, &udev->u2_params);
358}
359
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360/* USB 2.0 spec Section 11.24.4.5 */
John Youndbe79bb2001-09-17 00:00:00 -0700361static int get_hub_descriptor(struct usb_device *hdev, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362{
John Youndbe79bb2001-09-17 00:00:00 -0700363 int i, ret, size;
364 unsigned dtype;
365
366 if (hub_is_superspeed(hdev)) {
367 dtype = USB_DT_SS_HUB;
368 size = USB_DT_SS_HUB_SIZE;
369 } else {
370 dtype = USB_DT_HUB;
371 size = sizeof(struct usb_hub_descriptor);
372 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373
374 for (i = 0; i < 3; i++) {
375 ret = usb_control_msg(hdev, usb_rcvctrlpipe(hdev, 0),
376 USB_REQ_GET_DESCRIPTOR, USB_DIR_IN | USB_RT_HUB,
John Youndbe79bb2001-09-17 00:00:00 -0700377 dtype << 8, 0, data, size,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 USB_CTRL_GET_TIMEOUT);
379 if (ret >= (USB_DT_HUB_NONVAR_SIZE + 2))
380 return ret;
381 }
382 return -EINVAL;
383}
384
385/*
386 * USB 2.0 spec Section 11.24.2.1
387 */
388static int clear_hub_feature(struct usb_device *hdev, int feature)
389{
390 return usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
391 USB_REQ_CLEAR_FEATURE, USB_RT_HUB, feature, 0, NULL, 0, 1000);
392}
393
394/*
395 * USB 2.0 spec Section 11.24.2.2
396 */
Lan Tianyuad493e52013-01-23 04:26:30 +0800397int usb_clear_port_feature(struct usb_device *hdev, int port1, int feature)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398{
399 return usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
400 USB_REQ_CLEAR_FEATURE, USB_RT_PORT, feature, port1,
401 NULL, 0, 1000);
402}
403
404/*
405 * USB 2.0 spec Section 11.24.2.13
406 */
407static int set_port_feature(struct usb_device *hdev, int port1, int feature)
408{
409 return usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
410 USB_REQ_SET_FEATURE, USB_RT_PORT, feature, port1,
411 NULL, 0, 1000);
412}
413
414/*
415 * USB 2.0 spec Section 11.24.2.7.1.10 and table 11-7
416 * for info about using port indicators
417 */
418static void set_port_led(
419 struct usb_hub *hub,
420 int port1,
421 int selector
422)
423{
424 int status = set_port_feature(hub->hdev, (selector << 8) | port1,
425 USB_PORT_FEAT_INDICATOR);
426 if (status < 0)
427 dev_dbg (hub->intfdev,
428 "port %d indicator %s status %d\n",
429 port1,
430 ({ char *s; switch (selector) {
431 case HUB_LED_AMBER: s = "amber"; break;
432 case HUB_LED_GREEN: s = "green"; break;
433 case HUB_LED_OFF: s = "off"; break;
434 case HUB_LED_AUTO: s = "auto"; break;
435 default: s = "??"; break;
436 }; s; }),
437 status);
438}
439
440#define LED_CYCLE_PERIOD ((2*HZ)/3)
441
David Howellsc4028952006-11-22 14:57:56 +0000442static void led_work (struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443{
David Howellsc4028952006-11-22 14:57:56 +0000444 struct usb_hub *hub =
445 container_of(work, struct usb_hub, leds.work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 struct usb_device *hdev = hub->hdev;
447 unsigned i;
448 unsigned changed = 0;
449 int cursor = -1;
450
451 if (hdev->state != USB_STATE_CONFIGURED || hub->quiescing)
452 return;
453
Krzysztof Mazur3bbc47d2013-08-22 14:49:40 +0200454 for (i = 0; i < hdev->maxchild; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 unsigned selector, mode;
456
457 /* 30%-50% duty cycle */
458
459 switch (hub->indicator[i]) {
460 /* cycle marker */
461 case INDICATOR_CYCLE:
462 cursor = i;
463 selector = HUB_LED_AUTO;
464 mode = INDICATOR_AUTO;
465 break;
466 /* blinking green = sw attention */
467 case INDICATOR_GREEN_BLINK:
468 selector = HUB_LED_GREEN;
469 mode = INDICATOR_GREEN_BLINK_OFF;
470 break;
471 case INDICATOR_GREEN_BLINK_OFF:
472 selector = HUB_LED_OFF;
473 mode = INDICATOR_GREEN_BLINK;
474 break;
475 /* blinking amber = hw attention */
476 case INDICATOR_AMBER_BLINK:
477 selector = HUB_LED_AMBER;
478 mode = INDICATOR_AMBER_BLINK_OFF;
479 break;
480 case INDICATOR_AMBER_BLINK_OFF:
481 selector = HUB_LED_OFF;
482 mode = INDICATOR_AMBER_BLINK;
483 break;
484 /* blink green/amber = reserved */
485 case INDICATOR_ALT_BLINK:
486 selector = HUB_LED_GREEN;
487 mode = INDICATOR_ALT_BLINK_OFF;
488 break;
489 case INDICATOR_ALT_BLINK_OFF:
490 selector = HUB_LED_AMBER;
491 mode = INDICATOR_ALT_BLINK;
492 break;
493 default:
494 continue;
495 }
496 if (selector != HUB_LED_AUTO)
497 changed = 1;
498 set_port_led(hub, i + 1, selector);
499 hub->indicator[i] = mode;
500 }
501 if (!changed && blinkenlights) {
502 cursor++;
Krzysztof Mazur3bbc47d2013-08-22 14:49:40 +0200503 cursor %= hdev->maxchild;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 set_port_led(hub, cursor + 1, HUB_LED_GREEN);
505 hub->indicator[cursor] = INDICATOR_CYCLE;
506 changed++;
507 }
508 if (changed)
509 schedule_delayed_work(&hub->leds, LED_CYCLE_PERIOD);
510}
511
512/* use a short timeout for hub/port status fetches */
513#define USB_STS_TIMEOUT 1000
514#define USB_STS_RETRIES 5
515
516/*
517 * USB 2.0 spec Section 11.24.2.6
518 */
519static int get_hub_status(struct usb_device *hdev,
520 struct usb_hub_status *data)
521{
522 int i, status = -ETIMEDOUT;
523
Libor Pechacek3824c1d2011-05-20 14:53:25 +0200524 for (i = 0; i < USB_STS_RETRIES &&
525 (status == -ETIMEDOUT || status == -EPIPE); i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 status = usb_control_msg(hdev, usb_rcvctrlpipe(hdev, 0),
527 USB_REQ_GET_STATUS, USB_DIR_IN | USB_RT_HUB, 0, 0,
528 data, sizeof(*data), USB_STS_TIMEOUT);
529 }
530 return status;
531}
532
533/*
534 * USB 2.0 spec Section 11.24.2.7
535 */
536static int get_port_status(struct usb_device *hdev, int port1,
537 struct usb_port_status *data)
538{
539 int i, status = -ETIMEDOUT;
540
Libor Pechacek3824c1d2011-05-20 14:53:25 +0200541 for (i = 0; i < USB_STS_RETRIES &&
542 (status == -ETIMEDOUT || status == -EPIPE); i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 status = usb_control_msg(hdev, usb_rcvctrlpipe(hdev, 0),
544 USB_REQ_GET_STATUS, USB_DIR_IN | USB_RT_PORT, 0, port1,
545 data, sizeof(*data), USB_STS_TIMEOUT);
546 }
547 return status;
548}
549
Alan Stern3eb14912008-03-03 15:15:43 -0500550static int hub_port_status(struct usb_hub *hub, int port1,
551 u16 *status, u16 *change)
552{
553 int ret;
554
555 mutex_lock(&hub->status_mutex);
556 ret = get_port_status(hub->hdev, port1, &hub->status->port);
557 if (ret < 4) {
Alan Sterne9e88fb2013-03-27 16:14:01 -0400558 if (ret != -ENODEV)
559 dev_err(hub->intfdev,
560 "%s failed (err = %d)\n", __func__, ret);
Alan Stern3eb14912008-03-03 15:15:43 -0500561 if (ret >= 0)
562 ret = -EIO;
563 } else {
564 *status = le16_to_cpu(hub->status->port.wPortStatus);
565 *change = le16_to_cpu(hub->status->port.wPortChange);
John Youndbe79bb2001-09-17 00:00:00 -0700566
Alan Stern3eb14912008-03-03 15:15:43 -0500567 ret = 0;
568 }
569 mutex_unlock(&hub->status_mutex);
570 return ret;
571}
572
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573static void kick_khubd(struct usb_hub *hub)
574{
575 unsigned long flags;
576
577 spin_lock_irqsave(&hub_event_lock, flags);
Roel Kluin2e2c5ee2007-10-26 23:54:35 +0200578 if (!hub->disconnected && list_empty(&hub->event_list)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 list_add_tail(&hub->event_list, &hub_event_list);
Alan Stern8e4ceb32009-12-07 13:01:37 -0500580
581 /* Suppress autosuspend until khubd runs */
582 usb_autopm_get_interface_no_resume(
583 to_usb_interface(hub->intfdev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 wake_up(&khubd_wait);
585 }
586 spin_unlock_irqrestore(&hub_event_lock, flags);
587}
588
589void usb_kick_khubd(struct usb_device *hdev)
590{
Lan Tianyuad493e52013-01-23 04:26:30 +0800591 struct usb_hub *hub = usb_hub_to_struct_hub(hdev);
Alan Stern251180842009-07-22 14:41:18 -0400592
593 if (hub)
594 kick_khubd(hub);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595}
596
Sarah Sharp4ee823b2011-11-14 18:00:01 -0800597/*
598 * Let the USB core know that a USB 3.0 device has sent a Function Wake Device
599 * Notification, which indicates it had initiated remote wakeup.
600 *
601 * USB 3.0 hubs do not report the port link state change from U3 to U0 when the
602 * device initiates resume, so the USB core will not receive notice of the
603 * resume through the normal hub interrupt URB.
604 */
605void usb_wakeup_notification(struct usb_device *hdev,
606 unsigned int portnum)
607{
608 struct usb_hub *hub;
609
610 if (!hdev)
611 return;
612
Lan Tianyuad493e52013-01-23 04:26:30 +0800613 hub = usb_hub_to_struct_hub(hdev);
Sarah Sharp4ee823b2011-11-14 18:00:01 -0800614 if (hub) {
615 set_bit(portnum, hub->wakeup_bits);
616 kick_khubd(hub);
617 }
618}
619EXPORT_SYMBOL_GPL(usb_wakeup_notification);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620
621/* completion function, fires on port status changes and various faults */
David Howells7d12e782006-10-05 14:55:46 +0100622static void hub_irq(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623{
Tobias Klauserec17cf12006-09-13 21:38:41 +0200624 struct usb_hub *hub = urb->context;
Alan Sterne0152682007-08-24 15:42:52 -0400625 int status = urb->status;
Roel Kluin71d27182009-03-13 12:19:18 +0100626 unsigned i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 unsigned long bits;
628
Alan Sterne0152682007-08-24 15:42:52 -0400629 switch (status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 case -ENOENT: /* synchronous unlink */
631 case -ECONNRESET: /* async unlink */
632 case -ESHUTDOWN: /* hardware going away */
633 return;
634
635 default: /* presumably an error */
636 /* Cause a hub reset after 10 consecutive errors */
Alan Sterne0152682007-08-24 15:42:52 -0400637 dev_dbg (hub->intfdev, "transfer --> %d\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 if ((++hub->nerrors < 10) || hub->error)
639 goto resubmit;
Alan Sterne0152682007-08-24 15:42:52 -0400640 hub->error = status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 /* FALL THROUGH */
Tobias Klauserec17cf12006-09-13 21:38:41 +0200642
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 /* let khubd handle things */
644 case 0: /* we got data: port status changed */
645 bits = 0;
646 for (i = 0; i < urb->actual_length; ++i)
647 bits |= ((unsigned long) ((*hub->buffer)[i]))
648 << (i*8);
649 hub->event_bits[0] = bits;
650 break;
651 }
652
653 hub->nerrors = 0;
654
655 /* Something happened, let khubd figure it out */
656 kick_khubd(hub);
657
658resubmit:
659 if (hub->quiescing)
660 return;
661
662 if ((status = usb_submit_urb (hub->urb, GFP_ATOMIC)) != 0
663 && status != -ENODEV && status != -EPERM)
664 dev_err (hub->intfdev, "resubmit --> %d\n", status);
665}
666
667/* USB 2.0 spec Section 11.24.2.3 */
668static inline int
669hub_clear_tt_buffer (struct usb_device *hdev, u16 devinfo, u16 tt)
670{
William Gulland2c7b8712013-06-27 16:10:20 -0700671 /* Need to clear both directions for control ep */
672 if (((devinfo >> 11) & USB_ENDPOINT_XFERTYPE_MASK) ==
673 USB_ENDPOINT_XFER_CONTROL) {
674 int status = usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
675 HUB_CLEAR_TT_BUFFER, USB_RT_PORT,
676 devinfo ^ 0x8000, tt, NULL, 0, 1000);
677 if (status)
678 return status;
679 }
Alan Sternc2f65952009-11-18 11:37:15 -0500680 return usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 HUB_CLEAR_TT_BUFFER, USB_RT_PORT, devinfo,
682 tt, NULL, 0, 1000);
683}
684
685/*
686 * enumeration blocks khubd for a long time. we use keventd instead, since
687 * long blocking there is the exception, not the rule. accordingly, HCDs
688 * talking to TTs must queue control transfers (not just bulk and iso), so
689 * both can talk to the same hub concurrently.
690 */
Alan Sterncb88a1b2009-06-29 10:43:32 -0400691static void hub_tt_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692{
David Howellsc4028952006-11-22 14:57:56 +0000693 struct usb_hub *hub =
Alan Sterncb88a1b2009-06-29 10:43:32 -0400694 container_of(work, struct usb_hub, tt.clear_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 unsigned long flags;
696
697 spin_lock_irqsave (&hub->tt.lock, flags);
Octavian Purdila3b6054d2012-10-01 22:21:12 +0300698 while (!list_empty(&hub->tt.clear_list)) {
H Hartley Sweetend0f830d2009-04-22 16:03:05 -0400699 struct list_head *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 struct usb_tt_clear *clear;
701 struct usb_device *hdev = hub->hdev;
Alan Sterncb88a1b2009-06-29 10:43:32 -0400702 const struct hc_driver *drv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 int status;
704
H Hartley Sweetend0f830d2009-04-22 16:03:05 -0400705 next = hub->tt.clear_list.next;
706 clear = list_entry (next, struct usb_tt_clear, clear_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 list_del (&clear->clear_list);
708
709 /* drop lock so HCD can concurrently report other TT errors */
710 spin_unlock_irqrestore (&hub->tt.lock, flags);
711 status = hub_clear_tt_buffer (hdev, clear->devinfo, clear->tt);
Alan Sterne9e88fb2013-03-27 16:14:01 -0400712 if (status && status != -ENODEV)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 dev_err (&hdev->dev,
714 "clear tt %d (%04x) error %d\n",
715 clear->tt, clear->devinfo, status);
Alan Sterncb88a1b2009-06-29 10:43:32 -0400716
717 /* Tell the HCD, even if the operation failed */
718 drv = clear->hcd->driver;
719 if (drv->clear_tt_buffer_complete)
720 (drv->clear_tt_buffer_complete)(clear->hcd, clear->ep);
721
Jesper Juhl1bc3c9e2005-04-18 17:39:34 -0700722 kfree(clear);
Alan Sterncb88a1b2009-06-29 10:43:32 -0400723 spin_lock_irqsave(&hub->tt.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 }
725 spin_unlock_irqrestore (&hub->tt.lock, flags);
726}
727
728/**
Lan Tianyu971fcd42013-01-23 04:26:29 +0800729 * usb_hub_set_port_power - control hub port's power state
Mathias Nyman41341262013-06-18 17:28:48 +0300730 * @hdev: USB device belonging to the usb hub
731 * @hub: target hub
Lan Tianyu971fcd42013-01-23 04:26:29 +0800732 * @port1: port index
733 * @set: expected status
734 *
735 * call this function to control port's power via setting or
736 * clearing the port's PORT_POWER feature.
Yacine Belkadi626f0902013-08-02 20:10:04 +0200737 *
738 * Return: 0 if successful. A negative error code otherwise.
Lan Tianyu971fcd42013-01-23 04:26:29 +0800739 */
Mathias Nyman41341262013-06-18 17:28:48 +0300740int usb_hub_set_port_power(struct usb_device *hdev, struct usb_hub *hub,
741 int port1, bool set)
Lan Tianyu971fcd42013-01-23 04:26:29 +0800742{
743 int ret;
Lan Tianyuad493e52013-01-23 04:26:30 +0800744 struct usb_port *port_dev = hub->ports[port1 - 1];
Lan Tianyu971fcd42013-01-23 04:26:29 +0800745
746 if (set)
747 ret = set_port_feature(hdev, port1, USB_PORT_FEAT_POWER);
748 else
Lan Tianyuad493e52013-01-23 04:26:30 +0800749 ret = usb_clear_port_feature(hdev, port1, USB_PORT_FEAT_POWER);
750
751 if (!ret)
752 port_dev->power_is_on = set;
Lan Tianyu971fcd42013-01-23 04:26:29 +0800753 return ret;
754}
755
756/**
Alan Sterncb88a1b2009-06-29 10:43:32 -0400757 * usb_hub_clear_tt_buffer - clear control/bulk TT state in high speed hub
758 * @urb: an URB associated with the failed or incomplete split transaction
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 *
760 * High speed HCDs use this to tell the hub driver that some split control or
761 * bulk transaction failed in a way that requires clearing internal state of
762 * a transaction translator. This is normally detected (and reported) from
763 * interrupt context.
764 *
765 * It may not be possible for that hub to handle additional full (or low)
766 * speed transactions until that state is fully cleared out.
Yacine Belkadi626f0902013-08-02 20:10:04 +0200767 *
768 * Return: 0 if successful. A negative error code otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 */
Alan Sterncb88a1b2009-06-29 10:43:32 -0400770int usb_hub_clear_tt_buffer(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771{
Alan Sterncb88a1b2009-06-29 10:43:32 -0400772 struct usb_device *udev = urb->dev;
773 int pipe = urb->pipe;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 struct usb_tt *tt = udev->tt;
775 unsigned long flags;
776 struct usb_tt_clear *clear;
777
778 /* we've got to cope with an arbitrary number of pending TT clears,
779 * since each TT has "at least two" buffers that can need it (and
780 * there can be many TTs per hub). even if they're uncommon.
781 */
Christoph Lameter54e6ecb2006-12-06 20:33:16 -0800782 if ((clear = kmalloc (sizeof *clear, GFP_ATOMIC)) == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 dev_err (&udev->dev, "can't save CLEAR_TT_BUFFER state\n");
784 /* FIXME recover somehow ... RESET_TT? */
Alan Sterncb88a1b2009-06-29 10:43:32 -0400785 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 }
787
788 /* info that CLEAR_TT_BUFFER needs */
789 clear->tt = tt->multi ? udev->ttport : 1;
790 clear->devinfo = usb_pipeendpoint (pipe);
791 clear->devinfo |= udev->devnum << 4;
792 clear->devinfo |= usb_pipecontrol (pipe)
793 ? (USB_ENDPOINT_XFER_CONTROL << 11)
794 : (USB_ENDPOINT_XFER_BULK << 11);
795 if (usb_pipein (pipe))
796 clear->devinfo |= 1 << 15;
Alan Sterncb88a1b2009-06-29 10:43:32 -0400797
798 /* info for completion callback */
799 clear->hcd = bus_to_hcd(udev->bus);
800 clear->ep = urb->ep;
801
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 /* tell keventd to clear state for this TT */
803 spin_lock_irqsave (&tt->lock, flags);
804 list_add_tail (&clear->clear_list, &tt->clear_list);
Alan Sterncb88a1b2009-06-29 10:43:32 -0400805 schedule_work(&tt->clear_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 spin_unlock_irqrestore (&tt->lock, flags);
Alan Sterncb88a1b2009-06-29 10:43:32 -0400807 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808}
Alan Sterncb88a1b2009-06-29 10:43:32 -0400809EXPORT_SYMBOL_GPL(usb_hub_clear_tt_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810
Alan Stern8520f382008-09-22 14:44:26 -0400811/* If do_delay is false, return the number of milliseconds the caller
812 * needs to delay.
813 */
814static unsigned hub_power_on(struct usb_hub *hub, bool do_delay)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815{
816 int port1;
David Brownellb7896962005-08-31 10:41:44 -0700817 unsigned pgood_delay = hub->descriptor->bPwrOn2PwrGood * 2;
Alan Stern8520f382008-09-22 14:44:26 -0400818 unsigned delay;
Alan Stern4489a572006-04-27 15:54:22 -0400819 u16 wHubCharacteristics =
820 le16_to_cpu(hub->descriptor->wHubCharacteristics);
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 */
828 if ((wHubCharacteristics & HUB_CHAR_LPSM) < 2)
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);
860 *change = le16_to_cpu(hub->status->hub.wHubChange);
861 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 Tianyuff823c72012-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);
959 kick_khubd(hub);
960}
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);
1050 PREPARE_DELAYED_WORK(&hub->init_work, hub_init_func2);
1051 schedule_delayed_work(&hub->init_work,
1052 msecs_to_jiffies(delay));
Alan Stern61fbeba2008-10-27 12:07:44 -04001053
1054 /* Suppress autosuspend until init is done */
Alan Stern8e4ceb32009-12-07 13:01:37 -05001055 usb_autopm_get_interface_no_resume(
1056 to_usb_interface(hub->intfdev));
Alan Stern8520f382008-09-22 14:44:26 -04001057 return; /* Continues at init2: below */
Sarah Sharp653a39d2010-12-23 11:12:42 -08001058 } else if (type == HUB_RESET_RESUME) {
1059 /* The internal host controller state for the hub device
1060 * may be gone after a host power loss on system resume.
1061 * Update the device's info so the HW knows it's a hub.
1062 */
1063 hcd = bus_to_hcd(hdev->bus);
1064 if (hcd->driver->update_hub_device) {
1065 ret = hcd->driver->update_hub_device(hcd, hdev,
1066 &hub->tt, GFP_NOIO);
1067 if (ret < 0) {
1068 dev_err(hub->intfdev, "Host not "
1069 "accepting hub info "
1070 "update.\n");
1071 dev_err(hub->intfdev, "LS/FS devices "
1072 "and hubs may not work "
1073 "under this hub\n.");
1074 }
1075 }
1076 hub_power_on(hub, true);
Alan Stern8520f382008-09-22 14:44:26 -04001077 } else {
1078 hub_power_on(hub, true);
1079 }
1080 }
1081 init2:
Alan Sternf2835212008-04-28 11:07:17 -04001082
Alan Stern6ee0b272008-04-28 11:06:42 -04001083 /* Check each port and set hub->change_bits to let khubd know
1084 * which ports need attention.
Alan Stern5e6effa2008-03-03 15:15:51 -05001085 */
1086 for (port1 = 1; port1 <= hdev->maxchild; ++port1) {
Lan Tianyuff823c72012-09-05 13:44:32 +08001087 struct usb_device *udev = hub->ports[port1 - 1]->child;
Alan Stern5e6effa2008-03-03 15:15:51 -05001088 u16 portstatus, portchange;
1089
Alan Stern6ee0b272008-04-28 11:06:42 -04001090 portstatus = portchange = 0;
1091 status = hub_port_status(hub, port1, &portstatus, &portchange);
1092 if (udev || (portstatus & USB_PORT_STAT_CONNECTION))
1093 dev_dbg(hub->intfdev,
1094 "port %d: status %04x change %04x\n",
1095 port1, portstatus, portchange);
Alan Stern5e6effa2008-03-03 15:15:51 -05001096
Alan Stern6ee0b272008-04-28 11:06:42 -04001097 /* After anything other than HUB_RESUME (i.e., initialization
1098 * or any sort of reset), every port should be disabled.
1099 * Unconnected ports should likewise be disabled (paranoia),
1100 * and so should ports for which we have no usb_device.
Alan Stern5e6effa2008-03-03 15:15:51 -05001101 */
Alan Stern6ee0b272008-04-28 11:06:42 -04001102 if ((portstatus & USB_PORT_STAT_ENABLE) && (
1103 type != HUB_RESUME ||
1104 !(portstatus & USB_PORT_STAT_CONNECTION) ||
1105 !udev ||
1106 udev->state == USB_STATE_NOTATTACHED)) {
Andiry Xu9f0a6cd2010-05-07 18:09:27 +08001107 /*
1108 * USB3 protocol ports will automatically transition
1109 * to Enabled state when detect an USB3.0 device attach.
1110 * Do not disable USB3 protocol ports.
Andiry Xu9f0a6cd2010-05-07 18:09:27 +08001111 */
Sarah Sharp131dec32010-12-06 21:00:19 -08001112 if (!hub_is_superspeed(hdev)) {
Lan Tianyuad493e52013-01-23 04:26:30 +08001113 usb_clear_port_feature(hdev, port1,
Andiry Xu9f0a6cd2010-05-07 18:09:27 +08001114 USB_PORT_FEAT_ENABLE);
1115 portstatus &= ~USB_PORT_STAT_ENABLE;
Sarah Sharp85f0ff42010-10-14 07:22:54 -07001116 } else {
1117 /* Pretend that power was lost for USB3 devs */
1118 portstatus &= ~USB_PORT_STAT_ENABLE;
Andiry Xu9f0a6cd2010-05-07 18:09:27 +08001119 }
Alan Stern6ee0b272008-04-28 11:06:42 -04001120 }
1121
Alan Stern948fea32008-04-28 11:07:07 -04001122 /* Clear status-change flags; we'll debounce later */
1123 if (portchange & USB_PORT_STAT_C_CONNECTION) {
1124 need_debounce_delay = true;
Lan Tianyuad493e52013-01-23 04:26:30 +08001125 usb_clear_port_feature(hub->hdev, port1,
Alan Stern948fea32008-04-28 11:07:07 -04001126 USB_PORT_FEAT_C_CONNECTION);
1127 }
1128 if (portchange & USB_PORT_STAT_C_ENABLE) {
1129 need_debounce_delay = true;
Lan Tianyuad493e52013-01-23 04:26:30 +08001130 usb_clear_port_feature(hub->hdev, port1,
Alan Stern948fea32008-04-28 11:07:07 -04001131 USB_PORT_FEAT_C_ENABLE);
1132 }
Don Zickus79c3dd82011-11-03 09:07:18 -04001133 if ((portchange & USB_PORT_STAT_C_BH_RESET) &&
1134 hub_is_superspeed(hub->hdev)) {
1135 need_debounce_delay = true;
Lan Tianyuad493e52013-01-23 04:26:30 +08001136 usb_clear_port_feature(hub->hdev, port1,
Don Zickus79c3dd82011-11-03 09:07:18 -04001137 USB_PORT_FEAT_C_BH_PORT_RESET);
1138 }
Alan Stern253e0572009-10-27 15:20:13 -04001139 /* We can forget about a "removed" device when there's a
1140 * physical disconnect or the connect status changes.
1141 */
1142 if (!(portstatus & USB_PORT_STAT_CONNECTION) ||
1143 (portchange & USB_PORT_STAT_C_CONNECTION))
1144 clear_bit(port1, hub->removed_bits);
1145
Alan Stern6ee0b272008-04-28 11:06:42 -04001146 if (!udev || udev->state == USB_STATE_NOTATTACHED) {
1147 /* Tell khubd to disconnect the device or
1148 * check for a new connection
1149 */
1150 if (udev || (portstatus & USB_PORT_STAT_CONNECTION))
1151 set_bit(port1, hub->change_bits);
1152
1153 } else if (portstatus & USB_PORT_STAT_ENABLE) {
Sarah Sharp72937e12012-01-24 11:46:50 -08001154 bool port_resumed = (portstatus &
1155 USB_PORT_STAT_LINK_STATE) ==
1156 USB_SS_PORT_LS_U0;
Alan Stern6ee0b272008-04-28 11:06:42 -04001157 /* The power session apparently survived the resume.
1158 * If there was an overcurrent or suspend change
1159 * (i.e., remote wakeup request), have khubd
Sarah Sharp72937e12012-01-24 11:46:50 -08001160 * take care of it. Look at the port link state
1161 * for USB 3.0 hubs, since they don't have a suspend
1162 * change bit, and they don't set the port link change
1163 * bit on device-initiated resume.
Alan Stern6ee0b272008-04-28 11:06:42 -04001164 */
Sarah Sharp72937e12012-01-24 11:46:50 -08001165 if (portchange || (hub_is_superspeed(hub->hdev) &&
1166 port_resumed))
Alan Stern6ee0b272008-04-28 11:06:42 -04001167 set_bit(port1, hub->change_bits);
1168
1169 } else if (udev->persist_enabled) {
Lan Tianyuad493e52013-01-23 04:26:30 +08001170 struct usb_port *port_dev = hub->ports[port1 - 1];
1171
Alan Stern6ee0b272008-04-28 11:06:42 -04001172#ifdef CONFIG_PM
Alan Stern5e6effa2008-03-03 15:15:51 -05001173 udev->reset_resume = 1;
Alan Stern6ee0b272008-04-28 11:06:42 -04001174#endif
Lan Tianyuad493e52013-01-23 04:26:30 +08001175 /* Don't set the change_bits when the device
1176 * was powered off.
1177 */
1178 if (port_dev->power_is_on)
1179 set_bit(port1, hub->change_bits);
Alan Stern8808f002008-04-28 11:06:55 -04001180
Alan Stern6ee0b272008-04-28 11:06:42 -04001181 } else {
1182 /* The power session is gone; tell khubd */
1183 usb_set_device_state(udev, USB_STATE_NOTATTACHED);
1184 set_bit(port1, hub->change_bits);
Alan Stern5e6effa2008-03-03 15:15:51 -05001185 }
Alan Stern5e6effa2008-03-03 15:15:51 -05001186 }
1187
Alan Stern948fea32008-04-28 11:07:07 -04001188 /* If no port-status-change flags were set, we don't need any
1189 * debouncing. If flags were set we can try to debounce the
1190 * ports all at once right now, instead of letting khubd do them
1191 * one at a time later on.
1192 *
1193 * If any port-status changes do occur during this delay, khubd
1194 * will see them later and handle them normally.
1195 */
Alan Stern8520f382008-09-22 14:44:26 -04001196 if (need_debounce_delay) {
1197 delay = HUB_DEBOUNCE_STABLE;
Alan Sternf2835212008-04-28 11:07:17 -04001198
Alan Stern8520f382008-09-22 14:44:26 -04001199 /* Don't do a long sleep inside a workqueue routine */
1200 if (type == HUB_INIT2) {
1201 PREPARE_DELAYED_WORK(&hub->init_work, hub_init_func3);
1202 schedule_delayed_work(&hub->init_work,
1203 msecs_to_jiffies(delay));
1204 return; /* Continues at init3: below */
1205 } else {
1206 msleep(delay);
1207 }
1208 }
1209 init3:
Alan Sternf2835212008-04-28 11:07:17 -04001210 hub->quiescing = 0;
1211
1212 status = usb_submit_urb(hub->urb, GFP_NOIO);
1213 if (status < 0)
1214 dev_err(hub->intfdev, "activate --> %d\n", status);
1215 if (hub->has_indicators && blinkenlights)
1216 schedule_delayed_work(&hub->leds, LED_CYCLE_PERIOD);
1217
1218 /* Scan all ports that need attention */
1219 kick_khubd(hub);
Alan Stern8e4ceb32009-12-07 13:01:37 -05001220
1221 /* Allow autosuspend if it was suppressed */
1222 if (type <= HUB_INIT3)
1223 usb_autopm_put_interface_async(to_usb_interface(hub->intfdev));
Alan Stern5e6effa2008-03-03 15:15:51 -05001224}
1225
Alan Stern8520f382008-09-22 14:44:26 -04001226/* Implement the continuations for the delays above */
1227static void hub_init_func2(struct work_struct *ws)
1228{
1229 struct usb_hub *hub = container_of(ws, struct usb_hub, init_work.work);
1230
1231 hub_activate(hub, HUB_INIT2);
1232}
1233
1234static void hub_init_func3(struct work_struct *ws)
1235{
1236 struct usb_hub *hub = container_of(ws, struct usb_hub, init_work.work);
1237
1238 hub_activate(hub, HUB_INIT3);
1239}
1240
Alan Stern43303542008-04-28 11:07:31 -04001241enum hub_quiescing_type {
1242 HUB_DISCONNECT, HUB_PRE_RESET, HUB_SUSPEND
1243};
1244
1245static void hub_quiesce(struct usb_hub *hub, enum hub_quiescing_type type)
1246{
1247 struct usb_device *hdev = hub->hdev;
1248 int i;
1249
Alan Stern8520f382008-09-22 14:44:26 -04001250 cancel_delayed_work_sync(&hub->init_work);
1251
Alan Stern43303542008-04-28 11:07:31 -04001252 /* khubd and related activity won't re-trigger */
1253 hub->quiescing = 1;
1254
1255 if (type != HUB_SUSPEND) {
1256 /* Disconnect all the children */
1257 for (i = 0; i < hdev->maxchild; ++i) {
Lan Tianyuff823c72012-09-05 13:44:32 +08001258 if (hub->ports[i]->child)
1259 usb_disconnect(&hub->ports[i]->child);
Alan Stern43303542008-04-28 11:07:31 -04001260 }
1261 }
1262
1263 /* Stop khubd and related activity */
1264 usb_kill_urb(hub->urb);
1265 if (hub->has_indicators)
1266 cancel_delayed_work_sync(&hub->leds);
1267 if (hub->tt.hub)
Octavian Purdila036546b2012-10-23 11:33:12 +03001268 flush_work(&hub->tt.clear_work);
Alan Stern43303542008-04-28 11:07:31 -04001269}
1270
Alan Stern3eb14912008-03-03 15:15:43 -05001271/* caller has locked the hub device */
1272static int hub_pre_reset(struct usb_interface *intf)
1273{
1274 struct usb_hub *hub = usb_get_intfdata(intf);
1275
Alan Stern43303542008-04-28 11:07:31 -04001276 hub_quiesce(hub, HUB_PRE_RESET);
Alan Sternf07600c2007-05-30 15:38:16 -04001277 return 0;
Alan Stern7d069b72005-11-18 12:06:34 -05001278}
1279
1280/* caller has locked the hub device */
Alan Sternf07600c2007-05-30 15:38:16 -04001281static int hub_post_reset(struct usb_interface *intf)
Alan Stern7d069b72005-11-18 12:06:34 -05001282{
Alan Stern7de18d82006-06-01 13:37:24 -04001283 struct usb_hub *hub = usb_get_intfdata(intf);
1284
Alan Sternf2835212008-04-28 11:07:17 -04001285 hub_activate(hub, HUB_POST_RESET);
Alan Sternf07600c2007-05-30 15:38:16 -04001286 return 0;
Alan Stern7d069b72005-11-18 12:06:34 -05001287}
1288
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289static int hub_configure(struct usb_hub *hub,
1290 struct usb_endpoint_descriptor *endpoint)
1291{
Sarah Sharpb356b7c2009-09-04 10:53:24 -07001292 struct usb_hcd *hcd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 struct usb_device *hdev = hub->hdev;
1294 struct device *hub_dev = hub->intfdev;
1295 u16 hubstatus, hubchange;
Greg Kroah-Hartman74ad9bd2005-06-20 21:15:16 -07001296 u16 wHubCharacteristics;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 unsigned int pipe;
Lan Tianyufa2a9562012-09-05 13:44:31 +08001298 int maxp, ret, i;
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001299 char *message = "out of memory";
Sebastian Andrzej Siewior430ee582012-12-18 15:25:47 +01001300 unsigned unit_load;
1301 unsigned full_load;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302
Alan Sternd697cdd2009-10-27 15:18:46 -04001303 hub->buffer = kmalloc(sizeof(*hub->buffer), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 if (!hub->buffer) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 ret = -ENOMEM;
1306 goto fail;
1307 }
1308
1309 hub->status = kmalloc(sizeof(*hub->status), GFP_KERNEL);
1310 if (!hub->status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 ret = -ENOMEM;
1312 goto fail;
1313 }
Alan Sterndb90e7a2007-02-05 09:56:15 -05001314 mutex_init(&hub->status_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315
1316 hub->descriptor = kmalloc(sizeof(*hub->descriptor), GFP_KERNEL);
1317 if (!hub->descriptor) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 ret = -ENOMEM;
1319 goto fail;
1320 }
1321
1322 /* Request the entire hub descriptor.
1323 * hub->descriptor can handle USB_MAXCHILDREN ports,
1324 * but the hub can/will return fewer bytes here.
1325 */
John Youndbe79bb2001-09-17 00:00:00 -07001326 ret = get_hub_descriptor(hdev, hub->descriptor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 if (ret < 0) {
1328 message = "can't read hub descriptor";
1329 goto fail;
1330 } else if (hub->descriptor->bNbrPorts > USB_MAXCHILDREN) {
1331 message = "hub has too many ports!";
1332 ret = -ENODEV;
1333 goto fail;
David Linares769d73682013-03-25 10:50:27 +00001334 } else if (hub->descriptor->bNbrPorts == 0) {
1335 message = "hub doesn't have any ports!";
1336 ret = -ENODEV;
1337 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 }
1339
1340 hdev->maxchild = hub->descriptor->bNbrPorts;
1341 dev_info (hub_dev, "%d port%s detected\n", hdev->maxchild,
1342 (hdev->maxchild == 1) ? "" : "s");
1343
Lan Tianyufa2a9562012-09-05 13:44:31 +08001344 hub->ports = kzalloc(hdev->maxchild * sizeof(struct usb_port *),
1345 GFP_KERNEL);
Lan Tianyuff823c72012-09-05 13:44:32 +08001346 if (!hub->ports) {
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001347 ret = -ENOMEM;
1348 goto fail;
1349 }
1350
Greg Kroah-Hartman74ad9bd2005-06-20 21:15:16 -07001351 wHubCharacteristics = le16_to_cpu(hub->descriptor->wHubCharacteristics);
Sebastian Andrzej Siewior430ee582012-12-18 15:25:47 +01001352 if (hub_is_superspeed(hdev)) {
1353 unit_load = 150;
1354 full_load = 900;
1355 } else {
1356 unit_load = 100;
1357 full_load = 500;
1358 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359
John Youndbe79bb2001-09-17 00:00:00 -07001360 /* FIXME for USB 3.0, skip for now */
1361 if ((wHubCharacteristics & HUB_CHAR_COMPOUND) &&
1362 !(hub_is_superspeed(hdev))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 int i;
1364 char portstr [USB_MAXCHILDREN + 1];
1365
1366 for (i = 0; i < hdev->maxchild; i++)
John Youndbe79bb2001-09-17 00:00:00 -07001367 portstr[i] = hub->descriptor->u.hs.DeviceRemovable
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 [((i + 1) / 8)] & (1 << ((i + 1) % 8))
1369 ? 'F' : 'R';
1370 portstr[hdev->maxchild] = 0;
1371 dev_dbg(hub_dev, "compound device; port removable status: %s\n", portstr);
1372 } else
1373 dev_dbg(hub_dev, "standalone hub\n");
1374
Greg Kroah-Hartman74ad9bd2005-06-20 21:15:16 -07001375 switch (wHubCharacteristics & HUB_CHAR_LPSM) {
Aman Deep7bf01182011-12-08 12:05:22 +05301376 case HUB_CHAR_COMMON_LPSM:
1377 dev_dbg(hub_dev, "ganged power switching\n");
1378 break;
1379 case HUB_CHAR_INDV_PORT_LPSM:
1380 dev_dbg(hub_dev, "individual port power switching\n");
1381 break;
1382 case HUB_CHAR_NO_LPSM:
1383 case HUB_CHAR_LPSM:
1384 dev_dbg(hub_dev, "no power switching (usb 1.0)\n");
1385 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 }
1387
Greg Kroah-Hartman74ad9bd2005-06-20 21:15:16 -07001388 switch (wHubCharacteristics & HUB_CHAR_OCPM) {
Aman Deep7bf01182011-12-08 12:05:22 +05301389 case HUB_CHAR_COMMON_OCPM:
1390 dev_dbg(hub_dev, "global over-current protection\n");
1391 break;
1392 case HUB_CHAR_INDV_PORT_OCPM:
1393 dev_dbg(hub_dev, "individual port over-current protection\n");
1394 break;
1395 case HUB_CHAR_NO_OCPM:
1396 case HUB_CHAR_OCPM:
1397 dev_dbg(hub_dev, "no over-current protection\n");
1398 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 }
1400
1401 spin_lock_init (&hub->tt.lock);
1402 INIT_LIST_HEAD (&hub->tt.clear_list);
Alan Sterncb88a1b2009-06-29 10:43:32 -04001403 INIT_WORK(&hub->tt.clear_work, hub_tt_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 switch (hdev->descriptor.bDeviceProtocol) {
Aman Deep7bf01182011-12-08 12:05:22 +05301405 case USB_HUB_PR_FS:
1406 break;
1407 case USB_HUB_PR_HS_SINGLE_TT:
1408 dev_dbg(hub_dev, "Single TT\n");
1409 hub->tt.hub = hdev;
1410 break;
1411 case USB_HUB_PR_HS_MULTI_TT:
1412 ret = usb_set_interface(hdev, 0, 1);
1413 if (ret == 0) {
1414 dev_dbg(hub_dev, "TT per port\n");
1415 hub->tt.multi = 1;
1416 } else
1417 dev_err(hub_dev, "Using single TT (err %d)\n",
1418 ret);
1419 hub->tt.hub = hdev;
1420 break;
1421 case USB_HUB_PR_SS:
1422 /* USB 3.0 hubs don't have a TT */
1423 break;
1424 default:
1425 dev_dbg(hub_dev, "Unrecognized hub protocol %d\n",
1426 hdev->descriptor.bDeviceProtocol);
1427 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 }
1429
david-b@pacbell.nete09711a2005-08-13 18:41:04 -07001430 /* Note 8 FS bit times == (8 bits / 12000000 bps) ~= 666ns */
Greg Kroah-Hartman74ad9bd2005-06-20 21:15:16 -07001431 switch (wHubCharacteristics & HUB_CHAR_TTTT) {
david-b@pacbell.nete09711a2005-08-13 18:41:04 -07001432 case HUB_TTTT_8_BITS:
1433 if (hdev->descriptor.bDeviceProtocol != 0) {
1434 hub->tt.think_time = 666;
1435 dev_dbg(hub_dev, "TT requires at most %d "
1436 "FS bit times (%d ns)\n",
1437 8, hub->tt.think_time);
1438 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 break;
david-b@pacbell.nete09711a2005-08-13 18:41:04 -07001440 case HUB_TTTT_16_BITS:
1441 hub->tt.think_time = 666 * 2;
1442 dev_dbg(hub_dev, "TT requires at most %d "
1443 "FS bit times (%d ns)\n",
1444 16, hub->tt.think_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 break;
david-b@pacbell.nete09711a2005-08-13 18:41:04 -07001446 case HUB_TTTT_24_BITS:
1447 hub->tt.think_time = 666 * 3;
1448 dev_dbg(hub_dev, "TT requires at most %d "
1449 "FS bit times (%d ns)\n",
1450 24, hub->tt.think_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 break;
david-b@pacbell.nete09711a2005-08-13 18:41:04 -07001452 case HUB_TTTT_32_BITS:
1453 hub->tt.think_time = 666 * 4;
1454 dev_dbg(hub_dev, "TT requires at most %d "
1455 "FS bit times (%d ns)\n",
1456 32, hub->tt.think_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 break;
1458 }
1459
1460 /* probe() zeroes hub->indicator[] */
Greg Kroah-Hartman74ad9bd2005-06-20 21:15:16 -07001461 if (wHubCharacteristics & HUB_CHAR_PORTIND) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462 hub->has_indicators = 1;
1463 dev_dbg(hub_dev, "Port indicators are supported\n");
1464 }
1465
1466 dev_dbg(hub_dev, "power on to power good time: %dms\n",
1467 hub->descriptor->bPwrOn2PwrGood * 2);
1468
1469 /* power budgeting mostly matters with bus-powered hubs,
1470 * and battery-powered root hubs (may provide just 8 mA).
1471 */
1472 ret = usb_get_status(hdev, USB_RECIP_DEVICE, 0, &hubstatus);
Alan Stern15b73362013-07-30 15:35:40 -04001473 if (ret) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474 message = "can't get hub status";
1475 goto fail;
1476 }
Sebastian Andrzej Siewior430ee582012-12-18 15:25:47 +01001477 hcd = bus_to_hcd(hdev->bus);
Alan Stern7d35b922005-04-25 11:18:32 -04001478 if (hdev == hdev->bus->root_hub) {
Sebastian Andrzej Siewior430ee582012-12-18 15:25:47 +01001479 if (hcd->power_budget > 0)
1480 hdev->bus_mA = hcd->power_budget;
1481 else
1482 hdev->bus_mA = full_load * hdev->maxchild;
1483 if (hdev->bus_mA >= full_load)
1484 hub->mA_per_port = full_load;
Alan Stern55c52712005-11-23 12:03:12 -05001485 else {
1486 hub->mA_per_port = hdev->bus_mA;
1487 hub->limited_power = 1;
1488 }
Alan Stern7d35b922005-04-25 11:18:32 -04001489 } else if ((hubstatus & (1 << USB_DEVICE_SELF_POWERED)) == 0) {
Sebastian Andrzej Siewior430ee582012-12-18 15:25:47 +01001490 int remaining = hdev->bus_mA -
1491 hub->descriptor->bHubContrCurrent;
1492
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 dev_dbg(hub_dev, "hub controller current requirement: %dmA\n",
1494 hub->descriptor->bHubContrCurrent);
Alan Stern55c52712005-11-23 12:03:12 -05001495 hub->limited_power = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496
Sebastian Andrzej Siewior430ee582012-12-18 15:25:47 +01001497 if (remaining < hdev->maxchild * unit_load)
1498 dev_warn(hub_dev,
Alan Stern55c52712005-11-23 12:03:12 -05001499 "insufficient power available "
1500 "to use all downstream ports\n");
Sebastian Andrzej Siewior430ee582012-12-18 15:25:47 +01001501 hub->mA_per_port = unit_load; /* 7.2.1 */
1502
Alan Stern55c52712005-11-23 12:03:12 -05001503 } else { /* Self-powered external hub */
1504 /* FIXME: What about battery-powered external hubs that
1505 * provide less current per port? */
Sebastian Andrzej Siewior430ee582012-12-18 15:25:47 +01001506 hub->mA_per_port = full_load;
Alan Stern55c52712005-11-23 12:03:12 -05001507 }
Sebastian Andrzej Siewior430ee582012-12-18 15:25:47 +01001508 if (hub->mA_per_port < full_load)
Alan Stern55c52712005-11-23 12:03:12 -05001509 dev_dbg(hub_dev, "%umA bus power budget for each child\n",
1510 hub->mA_per_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511
Sarah Sharpb356b7c2009-09-04 10:53:24 -07001512 /* Update the HCD's internal representation of this hub before khubd
1513 * starts getting port status changes for devices under the hub.
1514 */
Sarah Sharpb356b7c2009-09-04 10:53:24 -07001515 if (hcd->driver->update_hub_device) {
1516 ret = hcd->driver->update_hub_device(hcd, hdev,
1517 &hub->tt, GFP_KERNEL);
1518 if (ret < 0) {
1519 message = "can't update HCD hub info";
1520 goto fail;
1521 }
1522 }
1523
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524 ret = hub_hub_status(hub, &hubstatus, &hubchange);
1525 if (ret < 0) {
1526 message = "can't get hub status";
1527 goto fail;
1528 }
1529
1530 /* local power status reports aren't always correct */
1531 if (hdev->actconfig->desc.bmAttributes & USB_CONFIG_ATT_SELFPOWER)
1532 dev_dbg(hub_dev, "local power source is %s\n",
1533 (hubstatus & HUB_STATUS_LOCAL_POWER)
1534 ? "lost (inactive)" : "good");
1535
Greg Kroah-Hartman74ad9bd2005-06-20 21:15:16 -07001536 if ((wHubCharacteristics & HUB_CHAR_OCPM) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537 dev_dbg(hub_dev, "%sover-current condition exists\n",
1538 (hubstatus & HUB_STATUS_OVERCURRENT) ? "" : "no ");
1539
inaky@linux.intel.com88fafff2006-10-11 20:05:59 -07001540 /* set up the interrupt endpoint
1541 * We use the EP's maxpacket size instead of (PORTS+1+7)/8
1542 * bytes as USB2.0[11.12.3] says because some hubs are known
1543 * to send more data (and thus cause overflow). For root hubs,
1544 * maxpktsize is defined in hcd.c's fake endpoint descriptors
1545 * to be big enough for at least USB_MAXCHILDREN ports. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 pipe = usb_rcvintpipe(hdev, endpoint->bEndpointAddress);
1547 maxp = usb_maxpacket(hdev, pipe, usb_pipeout(pipe));
1548
1549 if (maxp > sizeof(*hub->buffer))
1550 maxp = sizeof(*hub->buffer);
1551
1552 hub->urb = usb_alloc_urb(0, GFP_KERNEL);
1553 if (!hub->urb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554 ret = -ENOMEM;
1555 goto fail;
1556 }
1557
1558 usb_fill_int_urb(hub->urb, hdev, pipe, *hub->buffer, maxp, hub_irq,
1559 hub, endpoint->bInterval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560
1561 /* maybe cycle the hub leds */
1562 if (hub->has_indicators && blinkenlights)
1563 hub->indicator [0] = INDICATOR_CYCLE;
1564
Krzysztof Mazure58547e2013-08-22 14:49:39 +02001565 for (i = 0; i < hdev->maxchild; i++) {
1566 ret = usb_hub_create_port_device(hub, i + 1);
1567 if (ret < 0) {
Lan Tianyufa2a9562012-09-05 13:44:31 +08001568 dev_err(hub->intfdev,
1569 "couldn't create port%d device.\n", i + 1);
Krzysztof Mazure58547e2013-08-22 14:49:39 +02001570 hdev->maxchild = i;
1571 goto fail_keep_maxchild;
1572 }
1573 }
Lan Tianyufa2a9562012-09-05 13:44:31 +08001574
Lan Tianyud2123fd2013-01-21 22:18:00 +08001575 usb_hub_adjust_deviceremovable(hdev, hub->descriptor);
1576
Alan Sternf2835212008-04-28 11:07:17 -04001577 hub_activate(hub, HUB_INIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 return 0;
1579
1580fail:
Krzysztof Mazurd0308d42013-08-22 14:49:38 +02001581 hdev->maxchild = 0;
Krzysztof Mazure58547e2013-08-22 14:49:39 +02001582fail_keep_maxchild:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 dev_err (hub_dev, "config failed, %s (err %d)\n",
1584 message, ret);
1585 /* hub_disconnect() frees urb and descriptor */
1586 return ret;
1587}
1588
Alan Sterne8054852007-05-04 11:55:11 -04001589static void hub_release(struct kref *kref)
1590{
1591 struct usb_hub *hub = container_of(kref, struct usb_hub, kref);
1592
1593 usb_put_intf(to_usb_interface(hub->intfdev));
1594 kfree(hub);
1595}
1596
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597static unsigned highspeed_hubs;
1598
1599static void hub_disconnect(struct usb_interface *intf)
1600{
Huajun Li88162302012-03-12 21:00:19 +08001601 struct usb_hub *hub = usb_get_intfdata(intf);
Greg Kroah-Hartmanfa286182012-05-14 09:20:37 -07001602 struct usb_device *hdev = interface_to_usbdev(intf);
Lan Tianyufa2a9562012-09-05 13:44:31 +08001603 int i;
1604
Alan Sterne8054852007-05-04 11:55:11 -04001605 /* Take the hub off the event list and don't let it be added again */
1606 spin_lock_irq(&hub_event_lock);
Alan Stern8e4ceb32009-12-07 13:01:37 -05001607 if (!list_empty(&hub->event_list)) {
1608 list_del_init(&hub->event_list);
1609 usb_autopm_put_interface_no_suspend(intf);
1610 }
Alan Sterne8054852007-05-04 11:55:11 -04001611 hub->disconnected = 1;
1612 spin_unlock_irq(&hub_event_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613
Alan Stern7de18d82006-06-01 13:37:24 -04001614 /* Disconnect all children and quiesce the hub */
1615 hub->error = 0;
Alan Stern43303542008-04-28 11:07:31 -04001616 hub_quiesce(hub, HUB_DISCONNECT);
Alan Stern7de18d82006-06-01 13:37:24 -04001617
Alan Stern8b28c752005-08-10 17:04:13 -04001618 usb_set_intfdata (intf, NULL);
Alexander Shishkin1f2235b2012-09-12 14:48:31 +03001619
1620 for (i = 0; i < hdev->maxchild; i++)
1621 usb_hub_remove_port_device(hub, i + 1);
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001622 hub->hdev->maxchild = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623
Alan Sterne8054852007-05-04 11:55:11 -04001624 if (hub->hdev->speed == USB_SPEED_HIGH)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625 highspeed_hubs--;
1626
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627 usb_free_urb(hub->urb);
Lan Tianyufa2a9562012-09-05 13:44:31 +08001628 kfree(hub->ports);
Jesper Juhl1bc3c9e2005-04-18 17:39:34 -07001629 kfree(hub->descriptor);
Jesper Juhl1bc3c9e2005-04-18 17:39:34 -07001630 kfree(hub->status);
Alan Sternd697cdd2009-10-27 15:18:46 -04001631 kfree(hub->buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632
Lan Tianyu971fcd42013-01-23 04:26:29 +08001633 pm_suspend_ignore_children(&intf->dev, false);
Alan Sterne8054852007-05-04 11:55:11 -04001634 kref_put(&hub->kref, hub_release);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635}
1636
1637static int hub_probe(struct usb_interface *intf, const struct usb_device_id *id)
1638{
1639 struct usb_host_interface *desc;
1640 struct usb_endpoint_descriptor *endpoint;
1641 struct usb_device *hdev;
1642 struct usb_hub *hub;
1643
1644 desc = intf->cur_altsetting;
1645 hdev = interface_to_usbdev(intf);
1646
Ming Lei596d7892012-10-24 11:59:25 +08001647 /*
1648 * Set default autosuspend delay as 0 to speedup bus suspend,
1649 * based on the below considerations:
1650 *
1651 * - Unlike other drivers, the hub driver does not rely on the
1652 * autosuspend delay to provide enough time to handle a wakeup
1653 * event, and the submitted status URB is just to check future
1654 * change on hub downstream ports, so it is safe to do it.
1655 *
1656 * - The patch might cause one or more auto supend/resume for
1657 * below very rare devices when they are plugged into hub
1658 * first time:
1659 *
1660 * devices having trouble initializing, and disconnect
1661 * themselves from the bus and then reconnect a second
1662 * or so later
1663 *
1664 * devices just for downloading firmware, and disconnects
1665 * themselves after completing it
1666 *
1667 * For these quite rare devices, their drivers may change the
1668 * autosuspend delay of their parent hub in the probe() to one
1669 * appropriate value to avoid the subtle problem if someone
1670 * does care it.
1671 *
1672 * - The patch may cause one or more auto suspend/resume on
1673 * hub during running 'lsusb', but it is probably too
1674 * infrequent to worry about.
1675 *
1676 * - Change autosuspend delay of hub can avoid unnecessary auto
1677 * suspend timer for hub, also may decrease power consumption
1678 * of USB bus.
1679 */
1680 pm_runtime_set_autosuspend_delay(&hdev->dev, 0);
1681
Sarah Sharp2839f5b2012-01-06 16:27:25 -08001682 /* Hubs have proper suspend/resume support. */
1683 usb_enable_autosuspend(hdev);
Alan Stern088f7fe2010-01-08 12:56:54 -05001684
Felipe Balbi38f3ad52008-06-12 10:49:47 +03001685 if (hdev->level == MAX_TOPO_LEVEL) {
Wu Fengguangb9cef6c2008-12-15 15:32:01 +08001686 dev_err(&intf->dev,
1687 "Unsupported bus topology: hub nested too deep\n");
Felipe Balbi38f3ad52008-06-12 10:49:47 +03001688 return -E2BIG;
1689 }
1690
David Brownell89ccbdc2006-04-02 10:18:09 -08001691#ifdef CONFIG_USB_OTG_BLACKLIST_HUB
1692 if (hdev->parent) {
1693 dev_warn(&intf->dev, "ignoring external hub\n");
1694 return -ENODEV;
1695 }
1696#endif
1697
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 /* Some hubs have a subclass of 1, which AFAICT according to the */
1699 /* specs is not defined, but it works */
1700 if ((desc->desc.bInterfaceSubClass != 0) &&
1701 (desc->desc.bInterfaceSubClass != 1)) {
1702descriptor_error:
1703 dev_err (&intf->dev, "bad descriptor, ignoring hub\n");
1704 return -EIO;
1705 }
1706
1707 /* Multiple endpoints? What kind of mutant ninja-hub is this? */
1708 if (desc->desc.bNumEndpoints != 1)
1709 goto descriptor_error;
1710
1711 endpoint = &desc->endpoint[0].desc;
1712
Luiz Fernando N. Capitulinofbf81c22006-09-27 11:58:53 -07001713 /* If it's not an interrupt in endpoint, we'd better punt! */
1714 if (!usb_endpoint_is_int_in(endpoint))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715 goto descriptor_error;
1716
1717 /* We found a hub */
1718 dev_info (&intf->dev, "USB hub found\n");
1719
Alan Stern0a1ef3b2005-10-24 15:38:24 -04001720 hub = kzalloc(sizeof(*hub), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721 if (!hub) {
1722 dev_dbg (&intf->dev, "couldn't kmalloc hub struct\n");
1723 return -ENOMEM;
1724 }
1725
Alan Sterne8054852007-05-04 11:55:11 -04001726 kref_init(&hub->kref);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727 INIT_LIST_HEAD(&hub->event_list);
1728 hub->intfdev = &intf->dev;
1729 hub->hdev = hdev;
David Howellsc4028952006-11-22 14:57:56 +00001730 INIT_DELAYED_WORK(&hub->leds, led_work);
Alan Stern8520f382008-09-22 14:44:26 -04001731 INIT_DELAYED_WORK(&hub->init_work, NULL);
Alan Sterne8054852007-05-04 11:55:11 -04001732 usb_get_intf(intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733
1734 usb_set_intfdata (intf, hub);
Alan Stern40f122f2006-11-09 14:44:33 -05001735 intf->needs_remote_wakeup = 1;
Lan Tianyu971fcd42013-01-23 04:26:29 +08001736 pm_suspend_ignore_children(&intf->dev, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737
1738 if (hdev->speed == USB_SPEED_HIGH)
1739 highspeed_hubs++;
1740
Ming Leie6f30de2012-10-24 11:59:24 +08001741 if (id->driver_info & HUB_QUIRK_CHECK_PORT_AUTOSUSPEND)
1742 hub->quirk_check_port_auto_suspend = 1;
1743
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744 if (hub_configure(hub, endpoint) >= 0)
1745 return 0;
1746
1747 hub_disconnect (intf);
1748 return -ENODEV;
1749}
1750
1751static int
1752hub_ioctl(struct usb_interface *intf, unsigned int code, void *user_data)
1753{
1754 struct usb_device *hdev = interface_to_usbdev (intf);
Lan Tianyuad493e52013-01-23 04:26:30 +08001755 struct usb_hub *hub = usb_hub_to_struct_hub(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756
1757 /* assert ifno == 0 (part of hub spec) */
1758 switch (code) {
1759 case USBDEVFS_HUB_PORTINFO: {
1760 struct usbdevfs_hub_portinfo *info = user_data;
1761 int i;
1762
1763 spin_lock_irq(&device_state_lock);
1764 if (hdev->devnum <= 0)
1765 info->nports = 0;
1766 else {
1767 info->nports = hdev->maxchild;
1768 for (i = 0; i < info->nports; i++) {
Lan Tianyuff823c72012-09-05 13:44:32 +08001769 if (hub->ports[i]->child == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770 info->port[i] = 0;
1771 else
1772 info->port[i] =
Lan Tianyuff823c72012-09-05 13:44:32 +08001773 hub->ports[i]->child->devnum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774 }
1775 }
1776 spin_unlock_irq(&device_state_lock);
1777
1778 return info->nports + 1;
1779 }
1780
1781 default:
1782 return -ENOSYS;
1783 }
1784}
1785
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001786/*
1787 * Allow user programs to claim ports on a hub. When a device is attached
1788 * to one of these "claimed" ports, the program will "own" the device.
1789 */
1790static int find_port_owner(struct usb_device *hdev, unsigned port1,
Lan Tianyu336c5c32012-07-06 14:13:52 +08001791 struct dev_state ***ppowner)
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001792{
Mathias Nyman41341262013-06-18 17:28:48 +03001793 struct usb_hub *hub = usb_hub_to_struct_hub(hdev);
1794
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001795 if (hdev->state == USB_STATE_NOTATTACHED)
1796 return -ENODEV;
1797 if (port1 == 0 || port1 > hdev->maxchild)
1798 return -EINVAL;
1799
Mathias Nyman41341262013-06-18 17:28:48 +03001800 /* Devices not managed by the hub driver
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001801 * will always have maxchild equal to 0.
1802 */
Mathias Nyman41341262013-06-18 17:28:48 +03001803 *ppowner = &(hub->ports[port1 - 1]->port_owner);
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001804 return 0;
1805}
1806
1807/* In the following three functions, the caller must hold hdev's lock */
Lan Tianyu336c5c32012-07-06 14:13:52 +08001808int usb_hub_claim_port(struct usb_device *hdev, unsigned port1,
1809 struct dev_state *owner)
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001810{
1811 int rc;
Lan Tianyu336c5c32012-07-06 14:13:52 +08001812 struct dev_state **powner;
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001813
1814 rc = find_port_owner(hdev, port1, &powner);
1815 if (rc)
1816 return rc;
1817 if (*powner)
1818 return -EBUSY;
1819 *powner = owner;
1820 return rc;
1821}
1822
Lan Tianyu336c5c32012-07-06 14:13:52 +08001823int usb_hub_release_port(struct usb_device *hdev, unsigned port1,
1824 struct dev_state *owner)
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001825{
1826 int rc;
Lan Tianyu336c5c32012-07-06 14:13:52 +08001827 struct dev_state **powner;
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001828
1829 rc = find_port_owner(hdev, port1, &powner);
1830 if (rc)
1831 return rc;
1832 if (*powner != owner)
1833 return -ENOENT;
1834 *powner = NULL;
1835 return rc;
1836}
1837
Lan Tianyu336c5c32012-07-06 14:13:52 +08001838void usb_hub_release_all_ports(struct usb_device *hdev, struct dev_state *owner)
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001839{
Lan Tianyuad493e52013-01-23 04:26:30 +08001840 struct usb_hub *hub = usb_hub_to_struct_hub(hdev);
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001841 int n;
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001842
Lan Tianyufa2a9562012-09-05 13:44:31 +08001843 for (n = 0; n < hdev->maxchild; n++) {
1844 if (hub->ports[n]->port_owner == owner)
1845 hub->ports[n]->port_owner = NULL;
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001846 }
Lan Tianyufa2a9562012-09-05 13:44:31 +08001847
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001848}
1849
1850/* The caller must hold udev's lock */
1851bool usb_device_is_owned(struct usb_device *udev)
1852{
1853 struct usb_hub *hub;
1854
1855 if (udev->state == USB_STATE_NOTATTACHED || !udev->parent)
1856 return false;
Lan Tianyuad493e52013-01-23 04:26:30 +08001857 hub = usb_hub_to_struct_hub(udev->parent);
Lan Tianyufa2a9562012-09-05 13:44:31 +08001858 return !!hub->ports[udev->portnum - 1]->port_owner;
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001859}
1860
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861static void recursively_mark_NOTATTACHED(struct usb_device *udev)
1862{
Lan Tianyuad493e52013-01-23 04:26:30 +08001863 struct usb_hub *hub = usb_hub_to_struct_hub(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864 int i;
1865
1866 for (i = 0; i < udev->maxchild; ++i) {
Lan Tianyuff823c72012-09-05 13:44:32 +08001867 if (hub->ports[i]->child)
1868 recursively_mark_NOTATTACHED(hub->ports[i]->child);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869 }
Alan Stern9bbdf1e2010-01-08 12:57:28 -05001870 if (udev->state == USB_STATE_SUSPENDED)
Sarah Sharp15123002007-12-21 16:54:15 -08001871 udev->active_duration -= jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872 udev->state = USB_STATE_NOTATTACHED;
1873}
1874
1875/**
1876 * usb_set_device_state - change a device's current state (usbcore, hcds)
1877 * @udev: pointer to device whose state should be changed
1878 * @new_state: new state value to be stored
1879 *
1880 * udev->state is _not_ fully protected by the device lock. Although
1881 * most transitions are made only while holding the lock, the state can
1882 * can change to USB_STATE_NOTATTACHED at almost any time. This
1883 * is so that devices can be marked as disconnected as soon as possible,
1884 * without having to wait for any semaphores to be released. As a result,
1885 * all changes to any device's state must be protected by the
1886 * device_state_lock spinlock.
1887 *
1888 * Once a device has been added to the device tree, all changes to its state
1889 * should be made using this routine. The state should _not_ be set directly.
1890 *
1891 * If udev->state is already USB_STATE_NOTATTACHED then no change is made.
1892 * Otherwise udev->state is set to new_state, and if new_state is
1893 * USB_STATE_NOTATTACHED then all of udev's descendants' states are also set
1894 * to USB_STATE_NOTATTACHED.
1895 */
1896void usb_set_device_state(struct usb_device *udev,
1897 enum usb_device_state new_state)
1898{
1899 unsigned long flags;
Rafael J. Wysocki4681b172011-02-08 23:25:48 +01001900 int wakeup = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901
1902 spin_lock_irqsave(&device_state_lock, flags);
1903 if (udev->state == USB_STATE_NOTATTACHED)
1904 ; /* do nothing */
David Brownellb94dc6b2005-09-12 19:39:39 -07001905 else if (new_state != USB_STATE_NOTATTACHED) {
David Brownellfb669cc2006-01-24 08:40:27 -08001906
1907 /* root hub wakeup capabilities are managed out-of-band
1908 * and may involve silicon errata ... ignore them here.
1909 */
1910 if (udev->parent) {
Alan Stern645daaa2006-08-30 15:47:02 -04001911 if (udev->state == USB_STATE_SUSPENDED
1912 || new_state == USB_STATE_SUSPENDED)
1913 ; /* No change to wakeup settings */
1914 else if (new_state == USB_STATE_CONFIGURED)
Rafael J. Wysocki4681b172011-02-08 23:25:48 +01001915 wakeup = udev->actconfig->desc.bmAttributes
1916 & USB_CONFIG_ATT_WAKEUP;
Alan Stern645daaa2006-08-30 15:47:02 -04001917 else
Rafael J. Wysocki4681b172011-02-08 23:25:48 +01001918 wakeup = 0;
David Brownellfb669cc2006-01-24 08:40:27 -08001919 }
Sarah Sharp15123002007-12-21 16:54:15 -08001920 if (udev->state == USB_STATE_SUSPENDED &&
1921 new_state != USB_STATE_SUSPENDED)
1922 udev->active_duration -= jiffies;
1923 else if (new_state == USB_STATE_SUSPENDED &&
1924 udev->state != USB_STATE_SUSPENDED)
1925 udev->active_duration += jiffies;
Alan Stern645daaa2006-08-30 15:47:02 -04001926 udev->state = new_state;
David Brownellb94dc6b2005-09-12 19:39:39 -07001927 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928 recursively_mark_NOTATTACHED(udev);
1929 spin_unlock_irqrestore(&device_state_lock, flags);
Rafael J. Wysocki4681b172011-02-08 23:25:48 +01001930 if (wakeup >= 0)
1931 device_set_wakeup_capable(&udev->dev, wakeup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932}
David Vrabel6da9c992009-02-18 14:43:47 +00001933EXPORT_SYMBOL_GPL(usb_set_device_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934
Inaky Perez-Gonzalez8af548d2008-04-08 13:24:46 -07001935/*
Alan Stern3b29b682011-02-22 09:53:41 -05001936 * Choose a device number.
1937 *
1938 * Device numbers are used as filenames in usbfs. On USB-1.1 and
1939 * USB-2.0 buses they are also used as device addresses, however on
1940 * USB-3.0 buses the address is assigned by the controller hardware
1941 * and it usually is not the same as the device number.
1942 *
Inaky Perez-Gonzalez8af548d2008-04-08 13:24:46 -07001943 * WUSB devices are simple: they have no hubs behind, so the mapping
1944 * device <-> virtual port number becomes 1:1. Why? to simplify the
1945 * life of the device connection logic in
1946 * drivers/usb/wusbcore/devconnect.c. When we do the initial secret
1947 * handshake we need to assign a temporary address in the unauthorized
1948 * space. For simplicity we use the first virtual port number found to
1949 * be free [drivers/usb/wusbcore/devconnect.c:wusbhc_devconnect_ack()]
1950 * and that becomes it's address [X < 128] or its unauthorized address
1951 * [X | 0x80].
1952 *
1953 * We add 1 as an offset to the one-based USB-stack port number
1954 * (zero-based wusb virtual port index) for two reasons: (a) dev addr
1955 * 0 is reserved by USB for default address; (b) Linux's USB stack
1956 * uses always #1 for the root hub of the controller. So USB stack's
1957 * port #1, which is wusb virtual-port #0 has address #2.
Sarah Sharpc6515272009-04-27 19:57:26 -07001958 *
1959 * Devices connected under xHCI are not as simple. The host controller
1960 * supports virtualization, so the hardware assigns device addresses and
1961 * the HCD must setup data structures before issuing a set address
1962 * command to the hardware.
Inaky Perez-Gonzalez8af548d2008-04-08 13:24:46 -07001963 */
Alan Stern3b29b682011-02-22 09:53:41 -05001964static void choose_devnum(struct usb_device *udev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965{
1966 int devnum;
1967 struct usb_bus *bus = udev->bus;
1968
1969 /* If khubd ever becomes multithreaded, this will need a lock */
Inaky Perez-Gonzalez8af548d2008-04-08 13:24:46 -07001970 if (udev->wusb) {
1971 devnum = udev->portnum + 1;
1972 BUG_ON(test_bit(devnum, bus->devmap.devicemap));
1973 } else {
1974 /* Try to allocate the next devnum beginning at
1975 * bus->devnum_next. */
1976 devnum = find_next_zero_bit(bus->devmap.devicemap, 128,
1977 bus->devnum_next);
1978 if (devnum >= 128)
1979 devnum = find_next_zero_bit(bus->devmap.devicemap,
1980 128, 1);
1981 bus->devnum_next = ( devnum >= 127 ? 1 : devnum + 1);
1982 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983 if (devnum < 128) {
1984 set_bit(devnum, bus->devmap.devicemap);
1985 udev->devnum = devnum;
1986 }
1987}
1988
Alan Stern3b29b682011-02-22 09:53:41 -05001989static void release_devnum(struct usb_device *udev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990{
1991 if (udev->devnum > 0) {
1992 clear_bit(udev->devnum, udev->bus->devmap.devicemap);
1993 udev->devnum = -1;
1994 }
1995}
1996
Alan Stern3b29b682011-02-22 09:53:41 -05001997static void update_devnum(struct usb_device *udev, int devnum)
David Vrabel4953d142008-04-08 13:24:46 -07001998{
1999 /* The address for a WUSB device is managed by wusbcore. */
2000 if (!udev->wusb)
2001 udev->devnum = devnum;
2002}
2003
Herbert Xuf7410ce2010-01-10 20:15:03 +11002004static void hub_free_dev(struct usb_device *udev)
2005{
2006 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
2007
2008 /* Root hubs aren't real devices, so don't free HCD resources */
2009 if (hcd->driver->free_dev && udev->parent)
2010 hcd->driver->free_dev(hcd, udev);
2011}
2012
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013/**
2014 * usb_disconnect - disconnect a device (usbcore-internal)
2015 * @pdev: pointer to device being disconnected
2016 * Context: !in_interrupt ()
2017 *
2018 * Something got disconnected. Get rid of it and all of its children.
2019 *
2020 * If *pdev is a normal device then the parent hub must already be locked.
2021 * If *pdev is a root hub then this routine will acquire the
2022 * usb_bus_list_lock on behalf of the caller.
2023 *
2024 * Only hub drivers (including virtual root hub drivers for host
2025 * controllers) should ever call this.
2026 *
2027 * This call is synchronous, and may not be used in an interrupt context.
2028 */
2029void usb_disconnect(struct usb_device **pdev)
2030{
2031 struct usb_device *udev = *pdev;
Lan Tianyuad493e52013-01-23 04:26:30 +08002032 struct usb_hub *hub = usb_hub_to_struct_hub(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033 int i;
2034
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035 /* mark the device as inactive, so any further urb submissions for
2036 * this device (and any of its children) will fail immediately.
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002037 * this quiesces everything except pending urbs.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038 */
2039 usb_set_device_state(udev, USB_STATE_NOTATTACHED);
Alan Stern3b29b682011-02-22 09:53:41 -05002040 dev_info(&udev->dev, "USB disconnect, device number %d\n",
2041 udev->devnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042
Alan Stern9ad3d6c2005-11-17 17:10:32 -05002043 usb_lock_device(udev);
2044
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045 /* Free up all the children before we remove this device */
Huajun Li88162302012-03-12 21:00:19 +08002046 for (i = 0; i < udev->maxchild; i++) {
Lan Tianyuff823c72012-09-05 13:44:32 +08002047 if (hub->ports[i]->child)
2048 usb_disconnect(&hub->ports[i]->child);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049 }
2050
2051 /* deallocate hcd/hardware state ... nuking all pending urbs and
2052 * cleaning up all state associated with the current configuration
2053 * so that the hardware is now fully quiesced.
2054 */
Alan Stern782da722006-07-01 22:09:35 -04002055 dev_dbg (&udev->dev, "unregistering device\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056 usb_disable_device(udev, 0);
Alan Sterncde217a2008-10-21 15:28:46 -04002057 usb_hcd_synchronize_unlinks(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058
Lan Tianyufde26382013-01-20 01:53:33 +08002059 if (udev->parent) {
Lan Tianyuad493e52013-01-23 04:26:30 +08002060 struct usb_hub *hub = usb_hub_to_struct_hub(udev->parent);
2061 struct usb_port *port_dev = hub->ports[udev->portnum - 1];
Lan Tianyufde26382013-01-20 01:53:33 +08002062
2063 sysfs_remove_link(&udev->dev.kobj, "port");
2064 sysfs_remove_link(&port_dev->dev.kobj, "device");
Lan Tianyu971fcd42013-01-23 04:26:29 +08002065
Lan Tianyuad493e52013-01-23 04:26:30 +08002066 if (!port_dev->did_runtime_put)
2067 pm_runtime_put(&port_dev->dev);
2068 else
2069 port_dev->did_runtime_put = false;
Lan Tianyufde26382013-01-20 01:53:33 +08002070 }
2071
Alan Stern3b23dd62008-12-05 14:10:34 -05002072 usb_remove_ep_devs(&udev->ep0);
Alan Stern782da722006-07-01 22:09:35 -04002073 usb_unlock_device(udev);
Greg Kroah-Hartman3099e752005-06-20 21:15:16 -07002074
Alan Stern782da722006-07-01 22:09:35 -04002075 /* Unregister the device. The device driver is responsible
Alan Stern3b23dd62008-12-05 14:10:34 -05002076 * for de-configuring the device and invoking the remove-device
2077 * notifier chain (used by usbfs and possibly others).
Alan Stern782da722006-07-01 22:09:35 -04002078 */
2079 device_del(&udev->dev);
2080
2081 /* Free the device number and delete the parent's children[]
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082 * (or root_hub) pointer.
2083 */
Alan Stern3b29b682011-02-22 09:53:41 -05002084 release_devnum(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085
2086 /* Avoid races with recursively_mark_NOTATTACHED() */
2087 spin_lock_irq(&device_state_lock);
2088 *pdev = NULL;
2089 spin_unlock_irq(&device_state_lock);
2090
Herbert Xuf7410ce2010-01-10 20:15:03 +11002091 hub_free_dev(udev);
2092
Alan Stern782da722006-07-01 22:09:35 -04002093 put_device(&udev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094}
2095
Greg Kroah-Hartmanf2a383e2007-11-26 22:11:55 -08002096#ifdef CONFIG_USB_ANNOUNCE_NEW_DEVICES
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097static void show_string(struct usb_device *udev, char *id, char *string)
2098{
2099 if (!string)
2100 return;
Joe Perchesf2ec5222012-10-28 01:05:51 -07002101 dev_info(&udev->dev, "%s: %s\n", id, string);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102}
2103
Greg Kroah-Hartmanf2a383e2007-11-26 22:11:55 -08002104static void announce_device(struct usb_device *udev)
2105{
2106 dev_info(&udev->dev, "New USB device found, idVendor=%04x, idProduct=%04x\n",
2107 le16_to_cpu(udev->descriptor.idVendor),
2108 le16_to_cpu(udev->descriptor.idProduct));
Wu Fengguangb9cef6c2008-12-15 15:32:01 +08002109 dev_info(&udev->dev,
2110 "New USB device strings: Mfr=%d, Product=%d, SerialNumber=%d\n",
Greg Kroah-Hartmanf2a383e2007-11-26 22:11:55 -08002111 udev->descriptor.iManufacturer,
2112 udev->descriptor.iProduct,
2113 udev->descriptor.iSerialNumber);
2114 show_string(udev, "Product", udev->product);
2115 show_string(udev, "Manufacturer", udev->manufacturer);
2116 show_string(udev, "SerialNumber", udev->serial);
2117}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118#else
Greg Kroah-Hartmanf2a383e2007-11-26 22:11:55 -08002119static inline void announce_device(struct usb_device *udev) { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120#endif
2121
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122#ifdef CONFIG_USB_OTG
2123#include "otg_whitelist.h"
2124#endif
2125
Oliver Neukum3ede7602007-01-11 14:35:50 +01002126/**
Alan Stern8d8558d2009-12-08 15:50:41 -05002127 * usb_enumerate_device_otg - FIXME (usbcore-internal)
Oliver Neukum3ede7602007-01-11 14:35:50 +01002128 * @udev: newly addressed device (in ADDRESS state)
2129 *
Alan Stern8d8558d2009-12-08 15:50:41 -05002130 * Finish enumeration for On-The-Go devices
Yacine Belkadi626f0902013-08-02 20:10:04 +02002131 *
2132 * Return: 0 if successful. A negative error code otherwise.
Oliver Neukum3ede7602007-01-11 14:35:50 +01002133 */
Alan Stern8d8558d2009-12-08 15:50:41 -05002134static int usb_enumerate_device_otg(struct usb_device *udev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135{
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07002136 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137
2138#ifdef CONFIG_USB_OTG
2139 /*
2140 * OTG-aware devices on OTG-capable root hubs may be able to use SRP,
2141 * to wake us after we've powered off VBUS; and HNP, switching roles
2142 * "host" to "peripheral". The OTG descriptor helps figure this out.
2143 */
2144 if (!udev->bus->is_b_host
2145 && udev->config
2146 && udev->parent == udev->bus->root_hub) {
Felipe Balbi2eb50522009-12-04 15:47:43 +02002147 struct usb_otg_descriptor *desc = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148 struct usb_bus *bus = udev->bus;
2149
2150 /* descriptor may appear anywhere in config */
2151 if (__usb_get_extra_descriptor (udev->rawdescriptors[0],
2152 le16_to_cpu(udev->config[0].desc.wTotalLength),
2153 USB_DT_OTG, (void **) &desc) == 0) {
2154 if (desc->bmAttributes & USB_OTG_HNP) {
Alan Stern12c3da32005-11-23 12:09:52 -05002155 unsigned port1 = udev->portnum;
David Brownellfc849b82006-09-18 16:53:26 -07002156
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157 dev_info(&udev->dev,
2158 "Dual-Role OTG device on %sHNP port\n",
2159 (port1 == bus->otg_port)
2160 ? "" : "non-");
2161
2162 /* enable HNP before suspend, it's simpler */
2163 if (port1 == bus->otg_port)
2164 bus->b_hnp_enable = 1;
2165 err = usb_control_msg(udev,
2166 usb_sndctrlpipe(udev, 0),
2167 USB_REQ_SET_FEATURE, 0,
2168 bus->b_hnp_enable
2169 ? USB_DEVICE_B_HNP_ENABLE
2170 : USB_DEVICE_A_ALT_HNP_SUPPORT,
2171 0, NULL, 0, USB_CTRL_SET_TIMEOUT);
2172 if (err < 0) {
2173 /* OTG MESSAGE: report errors here,
2174 * customize to match your product.
2175 */
2176 dev_info(&udev->dev,
Wu Fengguangb9cef6c2008-12-15 15:32:01 +08002177 "can't set HNP mode: %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178 err);
2179 bus->b_hnp_enable = 0;
2180 }
2181 }
2182 }
2183 }
2184
2185 if (!is_targeted(udev)) {
2186
2187 /* Maybe it can talk to us, though we can't talk to it.
2188 * (Includes HNP test device.)
2189 */
2190 if (udev->bus->b_hnp_enable || udev->bus->is_b_host) {
David Brownell634a84f2009-01-15 13:51:28 -08002191 err = usb_port_suspend(udev, PMSG_SUSPEND);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192 if (err < 0)
2193 dev_dbg(&udev->dev, "HNP fail, %d\n", err);
2194 }
Vikram Panditaffcdc182007-05-25 21:31:07 -07002195 err = -ENOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196 goto fail;
2197 }
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07002198fail:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199#endif
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07002200 return err;
2201}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07002203
2204/**
Alan Stern8d8558d2009-12-08 15:50:41 -05002205 * usb_enumerate_device - Read device configs/intfs/otg (usbcore-internal)
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07002206 * @udev: newly addressed device (in ADDRESS state)
2207 *
2208 * This is only called by usb_new_device() and usb_authorize_device()
2209 * and FIXME -- all comments that apply to them apply here wrt to
2210 * environment.
2211 *
2212 * If the device is WUSB and not authorized, we don't attempt to read
2213 * the string descriptors, as they will be errored out by the device
2214 * until it has been authorized.
Yacine Belkadi626f0902013-08-02 20:10:04 +02002215 *
2216 * Return: 0 if successful. A negative error code otherwise.
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07002217 */
Alan Stern8d8558d2009-12-08 15:50:41 -05002218static int usb_enumerate_device(struct usb_device *udev)
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07002219{
2220 int err;
2221
2222 if (udev->config == NULL) {
2223 err = usb_get_configuration(udev);
2224 if (err < 0) {
Alan Sterne9e88fb2013-03-27 16:14:01 -04002225 if (err != -ENODEV)
2226 dev_err(&udev->dev, "can't read configurations, error %d\n",
2227 err);
Laurent Pinchart80da2e02012-07-19 12:39:13 +02002228 return err;
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07002229 }
2230 }
2231 if (udev->wusb == 1 && udev->authorized == 0) {
2232 udev->product = kstrdup("n/a (unauthorized)", GFP_KERNEL);
2233 udev->manufacturer = kstrdup("n/a (unauthorized)", GFP_KERNEL);
2234 udev->serial = kstrdup("n/a (unauthorized)", GFP_KERNEL);
2235 }
2236 else {
2237 /* read the standard strings and cache them if present */
2238 udev->product = usb_cache_string(udev, udev->descriptor.iProduct);
2239 udev->manufacturer = usb_cache_string(udev,
2240 udev->descriptor.iManufacturer);
2241 udev->serial = usb_cache_string(udev, udev->descriptor.iSerialNumber);
2242 }
Alan Stern8d8558d2009-12-08 15:50:41 -05002243 err = usb_enumerate_device_otg(udev);
Laurent Pinchart80da2e02012-07-19 12:39:13 +02002244 if (err < 0)
2245 return err;
2246
2247 usb_detect_interface_quirks(udev);
2248
2249 return 0;
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07002250}
2251
Matthew Garrettd35e70d2012-02-03 17:11:55 -05002252static void set_usb_port_removable(struct usb_device *udev)
2253{
2254 struct usb_device *hdev = udev->parent;
2255 struct usb_hub *hub;
2256 u8 port = udev->portnum;
2257 u16 wHubCharacteristics;
2258 bool removable = true;
2259
2260 if (!hdev)
2261 return;
2262
Lan Tianyuad493e52013-01-23 04:26:30 +08002263 hub = usb_hub_to_struct_hub(udev->parent);
Matthew Garrettd35e70d2012-02-03 17:11:55 -05002264
2265 wHubCharacteristics = le16_to_cpu(hub->descriptor->wHubCharacteristics);
2266
2267 if (!(wHubCharacteristics & HUB_CHAR_COMPOUND))
2268 return;
2269
2270 if (hub_is_superspeed(hdev)) {
Lan Tianyuca3c1532012-09-11 04:22:36 +08002271 if (le16_to_cpu(hub->descriptor->u.ss.DeviceRemovable)
2272 & (1 << port))
Matthew Garrettd35e70d2012-02-03 17:11:55 -05002273 removable = false;
2274 } else {
2275 if (hub->descriptor->u.hs.DeviceRemovable[port / 8] & (1 << (port % 8)))
2276 removable = false;
2277 }
2278
2279 if (removable)
2280 udev->removable = USB_DEVICE_REMOVABLE;
2281 else
2282 udev->removable = USB_DEVICE_FIXED;
2283}
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07002284
2285/**
2286 * usb_new_device - perform initial device setup (usbcore-internal)
2287 * @udev: newly addressed device (in ADDRESS state)
2288 *
Alan Stern8d8558d2009-12-08 15:50:41 -05002289 * This is called with devices which have been detected but not fully
2290 * enumerated. The device descriptor is available, but not descriptors
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07002291 * for any device configuration. The caller must have locked either
2292 * the parent hub (if udev is a normal device) or else the
2293 * usb_bus_list_lock (if udev is a root hub). The parent's pointer to
2294 * udev has already been installed, but udev is not yet visible through
2295 * sysfs or other filesystem code.
2296 *
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07002297 * This call is synchronous, and may not be used in an interrupt context.
2298 *
2299 * Only the hub driver or root-hub registrar should ever call this.
Yacine Belkadi626f0902013-08-02 20:10:04 +02002300 *
2301 * Return: Whether the device is configured properly or not. Zero if the
2302 * interface was registered with the driver core; else a negative errno
2303 * value.
2304 *
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07002305 */
2306int usb_new_device(struct usb_device *udev)
2307{
2308 int err;
2309
Dan Streetman16985402010-01-06 09:56:53 -05002310 if (udev->parent) {
Dan Streetman16985402010-01-06 09:56:53 -05002311 /* Initialize non-root-hub device wakeup to disabled;
2312 * device (un)configuration controls wakeup capable
2313 * sysfs power/wakeup controls wakeup enabled/disabled
2314 */
2315 device_init_wakeup(&udev->dev, 0);
Dan Streetman16985402010-01-06 09:56:53 -05002316 }
2317
Alan Stern9bbdf1e2010-01-08 12:57:28 -05002318 /* Tell the runtime-PM framework the device is active */
2319 pm_runtime_set_active(&udev->dev);
Alan Sternc08512c2010-11-15 15:57:58 -05002320 pm_runtime_get_noresume(&udev->dev);
Alan Sternfcc4a012010-11-15 15:57:51 -05002321 pm_runtime_use_autosuspend(&udev->dev);
Alan Stern9bbdf1e2010-01-08 12:57:28 -05002322 pm_runtime_enable(&udev->dev);
2323
Alan Sternc08512c2010-11-15 15:57:58 -05002324 /* By default, forbid autosuspend for all devices. It will be
2325 * allowed for hubs during binding.
2326 */
2327 usb_disable_autosuspend(udev);
2328
Alan Stern8d8558d2009-12-08 15:50:41 -05002329 err = usb_enumerate_device(udev); /* Read descriptors */
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07002330 if (err < 0)
2331 goto fail;
Sarah Sharpc6515272009-04-27 19:57:26 -07002332 dev_dbg(&udev->dev, "udev %d, busnum %d, minor = %d\n",
2333 udev->devnum, udev->bus->busnum,
2334 (((udev->bus->busnum-1) * 128) + (udev->devnum-1)));
Kay Sievers9f8b17e2007-03-13 15:59:31 +01002335 /* export the usbdev device-node for libusb */
2336 udev->dev.devt = MKDEV(USB_DEVICE_MAJOR,
2337 (((udev->bus->busnum-1) * 128) + (udev->devnum-1)));
2338
Alan Stern6cd13202008-11-13 15:08:30 -05002339 /* Tell the world! */
2340 announce_device(udev);
Alan Stern195af2c2007-07-16 15:28:19 -04002341
Theodore Ts'ob04b3152012-07-04 11:22:20 -04002342 if (udev->serial)
2343 add_device_randomness(udev->serial, strlen(udev->serial));
2344 if (udev->product)
2345 add_device_randomness(udev->product, strlen(udev->product));
2346 if (udev->manufacturer)
2347 add_device_randomness(udev->manufacturer,
2348 strlen(udev->manufacturer));
2349
Rafael J. Wysocki927bc912010-02-08 19:18:16 +01002350 device_enable_async_suspend(&udev->dev);
Matthew Garrettd35e70d2012-02-03 17:11:55 -05002351
2352 /*
2353 * check whether the hub marks this port as non-removable. Do it
2354 * now so that platform-specific data can override it in
2355 * device_add()
2356 */
2357 if (udev->parent)
2358 set_usb_port_removable(udev);
2359
Alan Stern782da722006-07-01 22:09:35 -04002360 /* Register the device. The device driver is responsible
Alan Stern3b23dd62008-12-05 14:10:34 -05002361 * for configuring the device and invoking the add-device
2362 * notifier chain (used by usbfs and possibly others).
Alan Stern782da722006-07-01 22:09:35 -04002363 */
Kay Sievers9f8b17e2007-03-13 15:59:31 +01002364 err = device_add(&udev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365 if (err) {
2366 dev_err(&udev->dev, "can't device_add, error %d\n", err);
2367 goto fail;
2368 }
Alan Stern9ad3d6c2005-11-17 17:10:32 -05002369
Lan Tianyufde26382013-01-20 01:53:33 +08002370 /* Create link files between child device and usb port device. */
2371 if (udev->parent) {
Lan Tianyuad493e52013-01-23 04:26:30 +08002372 struct usb_hub *hub = usb_hub_to_struct_hub(udev->parent);
2373 struct usb_port *port_dev = hub->ports[udev->portnum - 1];
Lan Tianyufde26382013-01-20 01:53:33 +08002374
2375 err = sysfs_create_link(&udev->dev.kobj,
2376 &port_dev->dev.kobj, "port");
2377 if (err)
2378 goto fail;
2379
2380 err = sysfs_create_link(&port_dev->dev.kobj,
2381 &udev->dev.kobj, "device");
2382 if (err) {
2383 sysfs_remove_link(&udev->dev.kobj, "port");
2384 goto fail;
2385 }
Lan Tianyu971fcd42013-01-23 04:26:29 +08002386
2387 pm_runtime_get_sync(&port_dev->dev);
Lan Tianyufde26382013-01-20 01:53:33 +08002388 }
2389
Alan Stern3b23dd62008-12-05 14:10:34 -05002390 (void) usb_create_ep_devs(&udev->dev, &udev->ep0, udev);
Alan Sternc08512c2010-11-15 15:57:58 -05002391 usb_mark_last_busy(udev);
2392 pm_runtime_put_sync_autosuspend(&udev->dev);
Greg Kroah-Hartmanc0664752006-08-11 01:55:12 -07002393 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394
2395fail:
2396 usb_set_device_state(udev, USB_STATE_NOTATTACHED);
Alan Stern9bbdf1e2010-01-08 12:57:28 -05002397 pm_runtime_disable(&udev->dev);
2398 pm_runtime_set_suspended(&udev->dev);
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07002399 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400}
2401
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002402
2403/**
Randy Dunlapfd39c862007-10-15 17:30:02 -07002404 * usb_deauthorize_device - deauthorize a device (usbcore-internal)
2405 * @usb_dev: USB device
2406 *
2407 * Move the USB device to a very basic state where interfaces are disabled
2408 * and the device is in fact unconfigured and unusable.
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002409 *
2410 * We share a lock (that we have) with device_del(), so we need to
2411 * defer its call.
Yacine Belkadi626f0902013-08-02 20:10:04 +02002412 *
2413 * Return: 0.
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002414 */
2415int usb_deauthorize_device(struct usb_device *usb_dev)
2416{
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002417 usb_lock_device(usb_dev);
2418 if (usb_dev->authorized == 0)
2419 goto out_unauthorized;
Alan Sternda307122009-12-08 15:54:44 -05002420
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002421 usb_dev->authorized = 0;
2422 usb_set_configuration(usb_dev, -1);
Alan Sternda307122009-12-08 15:54:44 -05002423
2424 kfree(usb_dev->product);
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002425 usb_dev->product = kstrdup("n/a (unauthorized)", GFP_KERNEL);
Alan Sternda307122009-12-08 15:54:44 -05002426 kfree(usb_dev->manufacturer);
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002427 usb_dev->manufacturer = kstrdup("n/a (unauthorized)", GFP_KERNEL);
Alan Sternda307122009-12-08 15:54:44 -05002428 kfree(usb_dev->serial);
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002429 usb_dev->serial = kstrdup("n/a (unauthorized)", GFP_KERNEL);
Alan Sternda307122009-12-08 15:54:44 -05002430
2431 usb_destroy_configuration(usb_dev);
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002432 usb_dev->descriptor.bNumConfigurations = 0;
Alan Sternda307122009-12-08 15:54:44 -05002433
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002434out_unauthorized:
2435 usb_unlock_device(usb_dev);
2436 return 0;
2437}
2438
2439
2440int usb_authorize_device(struct usb_device *usb_dev)
2441{
2442 int result = 0, c;
Alan Sternda307122009-12-08 15:54:44 -05002443
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002444 usb_lock_device(usb_dev);
2445 if (usb_dev->authorized == 1)
2446 goto out_authorized;
Alan Sternda307122009-12-08 15:54:44 -05002447
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002448 result = usb_autoresume_device(usb_dev);
2449 if (result < 0) {
2450 dev_err(&usb_dev->dev,
2451 "can't autoresume for authorization: %d\n", result);
2452 goto error_autoresume;
2453 }
2454 result = usb_get_device_descriptor(usb_dev, sizeof(usb_dev->descriptor));
2455 if (result < 0) {
2456 dev_err(&usb_dev->dev, "can't re-read device descriptor for "
2457 "authorization: %d\n", result);
2458 goto error_device_descriptor;
2459 }
Alan Sternda307122009-12-08 15:54:44 -05002460
2461 kfree(usb_dev->product);
2462 usb_dev->product = NULL;
2463 kfree(usb_dev->manufacturer);
2464 usb_dev->manufacturer = NULL;
2465 kfree(usb_dev->serial);
2466 usb_dev->serial = NULL;
2467
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002468 usb_dev->authorized = 1;
Alan Stern8d8558d2009-12-08 15:50:41 -05002469 result = usb_enumerate_device(usb_dev);
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002470 if (result < 0)
Alan Stern8d8558d2009-12-08 15:50:41 -05002471 goto error_enumerate;
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002472 /* Choose and set the configuration. This registers the interfaces
2473 * with the driver core and lets interface drivers bind to them.
2474 */
Greg Kroah-Hartmanb5ea0602007-08-02 22:44:27 -06002475 c = usb_choose_configuration(usb_dev);
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002476 if (c >= 0) {
2477 result = usb_set_configuration(usb_dev, c);
2478 if (result) {
2479 dev_err(&usb_dev->dev,
2480 "can't set config #%d, error %d\n", c, result);
2481 /* This need not be fatal. The user can try to
2482 * set other configurations. */
2483 }
2484 }
2485 dev_info(&usb_dev->dev, "authorized to connect\n");
Alan Sternda307122009-12-08 15:54:44 -05002486
Alan Stern8d8558d2009-12-08 15:50:41 -05002487error_enumerate:
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002488error_device_descriptor:
Alan Sternda307122009-12-08 15:54:44 -05002489 usb_autosuspend_device(usb_dev);
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002490error_autoresume:
2491out_authorized:
2492 usb_unlock_device(usb_dev); // complements locktree
2493 return result;
2494}
2495
2496
Inaky Perez-Gonzalez0165de02006-08-25 19:35:29 -07002497/* Returns 1 if @hub is a WUSB root hub, 0 otherwise */
2498static unsigned hub_is_wusb(struct usb_hub *hub)
2499{
2500 struct usb_hcd *hcd;
2501 if (hub->hdev->parent != NULL) /* not a root hub? */
2502 return 0;
2503 hcd = container_of(hub->hdev->bus, struct usb_hcd, self);
2504 return hcd->wireless;
2505}
2506
2507
Linus Torvalds1da177e2005-04-16 15:20:36 -07002508#define PORT_RESET_TRIES 5
2509#define SET_ADDRESS_TRIES 2
2510#define GET_DESCRIPTOR_TRIES 2
2511#define SET_CONFIG_TRIES (2 * (use_both_schemes + 1))
Rusty Russell90ab5ee2012-01-13 09:32:20 +10302512#define USE_NEW_SCHEME(i) ((i) / 2 == (int)old_scheme_first)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513
2514#define HUB_ROOT_RESET_TIME 50 /* times are in msec */
2515#define HUB_SHORT_RESET_TIME 10
Andiry Xu75d7cf72011-09-13 16:41:11 -07002516#define HUB_BH_RESET_TIME 50
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517#define HUB_LONG_RESET_TIME 200
Sarah Sharp77c7f072012-11-14 17:16:52 -08002518#define HUB_RESET_TIMEOUT 800
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519
Sarah Sharp10d674a2011-09-14 14:24:52 -07002520static int hub_port_reset(struct usb_hub *hub, int port1,
2521 struct usb_device *udev, unsigned int delay, bool warm);
2522
Stanislaw Ledwon8bea2bd2012-06-18 15:20:00 +02002523/* Is a USB 3.0 port in the Inactive or Complinance Mode state?
2524 * Port worm reset is required to recover
2525 */
2526static bool hub_port_warm_reset_required(struct usb_hub *hub, u16 portstatus)
Sarah Sharp10d674a2011-09-14 14:24:52 -07002527{
2528 return hub_is_superspeed(hub->hdev) &&
Stanislaw Ledwon8bea2bd2012-06-18 15:20:00 +02002529 (((portstatus & USB_PORT_STAT_LINK_STATE) ==
2530 USB_SS_PORT_LS_SS_INACTIVE) ||
2531 ((portstatus & USB_PORT_STAT_LINK_STATE) ==
2532 USB_SS_PORT_LS_COMP_MOD)) ;
Sarah Sharp10d674a2011-09-14 14:24:52 -07002533}
2534
Linus Torvalds1da177e2005-04-16 15:20:36 -07002535static int hub_port_wait_reset(struct usb_hub *hub, int port1,
Andiry Xu75d7cf72011-09-13 16:41:11 -07002536 struct usb_device *udev, unsigned int delay, bool warm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002537{
2538 int delay_time, ret;
2539 u16 portstatus;
2540 u16 portchange;
2541
2542 for (delay_time = 0;
2543 delay_time < HUB_RESET_TIMEOUT;
2544 delay_time += delay) {
2545 /* wait to give the device a chance to reset */
2546 msleep(delay);
2547
2548 /* read and decode port status */
2549 ret = hub_port_status(hub, port1, &portstatus, &portchange);
2550 if (ret < 0)
2551 return ret;
2552
Sarah Sharp4f434472012-11-15 14:58:04 -08002553 /* The port state is unknown until the reset completes. */
Sarah Sharp470f0be2012-12-11 10:14:03 -08002554 if (!(portstatus & USB_PORT_STAT_RESET))
2555 break;
Sarah Sharp4f434472012-11-15 14:58:04 -08002556
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557 /* switch to the long delay after two short delay failures */
2558 if (delay_time >= 2 * HUB_SHORT_RESET_TIME)
2559 delay = HUB_LONG_RESET_TIME;
2560
2561 dev_dbg (hub->intfdev,
Andiry Xu75d7cf72011-09-13 16:41:11 -07002562 "port %d not %sreset yet, waiting %dms\n",
2563 port1, warm ? "warm " : "", delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002564 }
2565
Sarah Sharp470f0be2012-12-11 10:14:03 -08002566 if ((portstatus & USB_PORT_STAT_RESET))
2567 return -EBUSY;
2568
2569 if (hub_port_warm_reset_required(hub, portstatus))
2570 return -ENOTCONN;
2571
2572 /* Device went away? */
2573 if (!(portstatus & USB_PORT_STAT_CONNECTION))
2574 return -ENOTCONN;
2575
2576 /* bomb out completely if the connection bounced. A USB 3.0
2577 * connection may bounce if multiple warm resets were issued,
2578 * but the device may have successfully re-connected. Ignore it.
2579 */
2580 if (!hub_is_superspeed(hub->hdev) &&
2581 (portchange & USB_PORT_STAT_C_CONNECTION))
2582 return -ENOTCONN;
2583
2584 if (!(portstatus & USB_PORT_STAT_ENABLE))
2585 return -EBUSY;
2586
2587 if (!udev)
2588 return 0;
2589
2590 if (hub_is_wusb(hub))
2591 udev->speed = USB_SPEED_WIRELESS;
2592 else if (hub_is_superspeed(hub->hdev))
2593 udev->speed = USB_SPEED_SUPER;
2594 else if (portstatus & USB_PORT_STAT_HIGH_SPEED)
2595 udev->speed = USB_SPEED_HIGH;
2596 else if (portstatus & USB_PORT_STAT_LOW_SPEED)
2597 udev->speed = USB_SPEED_LOW;
2598 else
2599 udev->speed = USB_SPEED_FULL;
2600 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601}
2602
Andiry Xu75d7cf72011-09-13 16:41:11 -07002603static void hub_port_finish_reset(struct usb_hub *hub, int port1,
Sarah Sharpa24a6072012-11-01 11:20:44 -07002604 struct usb_device *udev, int *status)
Andiry Xu75d7cf72011-09-13 16:41:11 -07002605{
2606 switch (*status) {
2607 case 0:
Sarah Sharpa24a6072012-11-01 11:20:44 -07002608 /* TRSTRCY = 10 ms; plus some extra */
2609 msleep(10 + 40);
2610 if (udev) {
2611 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
2612
2613 update_devnum(udev, 0);
2614 /* The xHC may think the device is already reset,
2615 * so ignore the status.
2616 */
2617 if (hcd->driver->reset_device)
2618 hcd->driver->reset_device(hcd, udev);
Andiry Xu75d7cf72011-09-13 16:41:11 -07002619 }
2620 /* FALL THROUGH */
2621 case -ENOTCONN:
2622 case -ENODEV:
Lan Tianyuad493e52013-01-23 04:26:30 +08002623 usb_clear_port_feature(hub->hdev,
Andiry Xu75d7cf72011-09-13 16:41:11 -07002624 port1, USB_PORT_FEAT_C_RESET);
Sarah Sharp1c7439c62012-11-14 15:58:52 -08002625 if (hub_is_superspeed(hub->hdev)) {
Lan Tianyuad493e52013-01-23 04:26:30 +08002626 usb_clear_port_feature(hub->hdev, port1,
Andiry Xu75d7cf72011-09-13 16:41:11 -07002627 USB_PORT_FEAT_C_BH_PORT_RESET);
Lan Tianyuad493e52013-01-23 04:26:30 +08002628 usb_clear_port_feature(hub->hdev, port1,
Andiry Xu75d7cf72011-09-13 16:41:11 -07002629 USB_PORT_FEAT_C_PORT_LINK_STATE);
Lan Tianyuad493e52013-01-23 04:26:30 +08002630 usb_clear_port_feature(hub->hdev, port1,
Sarah Sharpa24a6072012-11-01 11:20:44 -07002631 USB_PORT_FEAT_C_CONNECTION);
Sarah Sharp1c7439c62012-11-14 15:58:52 -08002632 }
Sarah Sharpa24a6072012-11-01 11:20:44 -07002633 if (udev)
Andiry Xu75d7cf72011-09-13 16:41:11 -07002634 usb_set_device_state(udev, *status
2635 ? USB_STATE_NOTATTACHED
2636 : USB_STATE_DEFAULT);
Andiry Xu75d7cf72011-09-13 16:41:11 -07002637 break;
2638 }
2639}
2640
2641/* Handle port reset and port warm(BH) reset (for USB3 protocol ports) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002642static int hub_port_reset(struct usb_hub *hub, int port1,
Andiry Xu75d7cf72011-09-13 16:41:11 -07002643 struct usb_device *udev, unsigned int delay, bool warm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002644{
2645 int i, status;
Sarah Sharpa24a6072012-11-01 11:20:44 -07002646 u16 portchange, portstatus;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002647
Sarah Sharp0fe51aa2012-11-01 11:20:44 -07002648 if (!hub_is_superspeed(hub->hdev)) {
2649 if (warm) {
Andiry Xu75d7cf72011-09-13 16:41:11 -07002650 dev_err(hub->intfdev, "only USB3 hub support "
2651 "warm reset\n");
2652 return -EINVAL;
2653 }
Sarah Sharp0fe51aa2012-11-01 11:20:44 -07002654 /* Block EHCI CF initialization during the port reset.
2655 * Some companion controllers don't like it when they mix.
2656 */
2657 down_read(&ehci_cf_port_reset_rwsem);
Sarah Sharpd3b9d7a2012-11-01 11:20:44 -07002658 } else if (!warm) {
2659 /*
2660 * If the caller hasn't explicitly requested a warm reset,
2661 * double check and see if one is needed.
2662 */
2663 status = hub_port_status(hub, port1,
2664 &portstatus, &portchange);
2665 if (status < 0)
2666 goto done;
2667
2668 if (hub_port_warm_reset_required(hub, portstatus))
2669 warm = true;
Andiry Xu75d7cf72011-09-13 16:41:11 -07002670 }
Alan Stern32fe0192007-10-10 16:27:07 -04002671
Linus Torvalds1da177e2005-04-16 15:20:36 -07002672 /* Reset the port */
2673 for (i = 0; i < PORT_RESET_TRIES; i++) {
Andiry Xu75d7cf72011-09-13 16:41:11 -07002674 status = set_port_feature(hub->hdev, port1, (warm ?
2675 USB_PORT_FEAT_BH_PORT_RESET :
2676 USB_PORT_FEAT_RESET));
Alan Sterne9e88fb2013-03-27 16:14:01 -04002677 if (status == -ENODEV) {
2678 ; /* The hub is gone */
2679 } else if (status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002680 dev_err(hub->intfdev,
Andiry Xu75d7cf72011-09-13 16:41:11 -07002681 "cannot %sreset port %d (err = %d)\n",
2682 warm ? "warm " : "", port1, status);
2683 } else {
2684 status = hub_port_wait_reset(hub, port1, udev, delay,
2685 warm);
Alan Sterne9e88fb2013-03-27 16:14:01 -04002686 if (status && status != -ENOTCONN && status != -ENODEV)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002687 dev_dbg(hub->intfdev,
2688 "port_wait_reset: err = %d\n",
2689 status);
2690 }
2691
Sarah Sharpa24a6072012-11-01 11:20:44 -07002692 /* Check for disconnect or reset */
Andiry Xu75d7cf72011-09-13 16:41:11 -07002693 if (status == 0 || status == -ENOTCONN || status == -ENODEV) {
Sarah Sharpa24a6072012-11-01 11:20:44 -07002694 hub_port_finish_reset(hub, port1, udev, &status);
2695
2696 if (!hub_is_superspeed(hub->hdev))
2697 goto done;
2698
2699 /*
2700 * If a USB 3.0 device migrates from reset to an error
2701 * state, re-issue the warm reset.
2702 */
2703 if (hub_port_status(hub, port1,
2704 &portstatus, &portchange) < 0)
2705 goto done;
2706
2707 if (!hub_port_warm_reset_required(hub, portstatus))
2708 goto done;
2709
2710 /*
2711 * If the port is in SS.Inactive or Compliance Mode, the
2712 * hot or warm reset failed. Try another warm reset.
2713 */
2714 if (!warm) {
2715 dev_dbg(hub->intfdev, "hot reset failed, warm reset port %d\n",
2716 port1);
2717 warm = true;
2718 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002719 }
2720
2721 dev_dbg (hub->intfdev,
Andiry Xu75d7cf72011-09-13 16:41:11 -07002722 "port %d not enabled, trying %sreset again...\n",
2723 port1, warm ? "warm " : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002724 delay = HUB_LONG_RESET_TIME;
2725 }
2726
2727 dev_err (hub->intfdev,
2728 "Cannot enable port %i. Maybe the USB cable is bad?\n",
2729 port1);
2730
Andiry Xu75d7cf72011-09-13 16:41:11 -07002731done:
Sarah Sharp0fe51aa2012-11-01 11:20:44 -07002732 if (!hub_is_superspeed(hub->hdev))
Andiry Xu75d7cf72011-09-13 16:41:11 -07002733 up_read(&ehci_cf_port_reset_rwsem);
2734
Linus Torvalds1da177e2005-04-16 15:20:36 -07002735 return status;
2736}
2737
Andiry Xu0ed9a572011-04-27 18:07:43 +08002738/* Check if a port is power on */
2739static int port_is_power_on(struct usb_hub *hub, unsigned portstatus)
2740{
2741 int ret = 0;
2742
2743 if (hub_is_superspeed(hub->hdev)) {
2744 if (portstatus & USB_SS_PORT_STAT_POWER)
2745 ret = 1;
2746 } else {
2747 if (portstatus & USB_PORT_STAT_POWER)
2748 ret = 1;
2749 }
2750
2751 return ret;
2752}
2753
Alan Sternd388dab2006-07-01 22:14:24 -04002754#ifdef CONFIG_PM
Linus Torvalds1da177e2005-04-16 15:20:36 -07002755
Andiry Xu0ed9a572011-04-27 18:07:43 +08002756/* Check if a port is suspended(USB2.0 port) or in U3 state(USB3.0 port) */
2757static int port_is_suspended(struct usb_hub *hub, unsigned portstatus)
2758{
2759 int ret = 0;
2760
2761 if (hub_is_superspeed(hub->hdev)) {
2762 if ((portstatus & USB_PORT_STAT_LINK_STATE)
2763 == USB_SS_PORT_LS_U3)
2764 ret = 1;
2765 } else {
2766 if (portstatus & USB_PORT_STAT_SUSPEND)
2767 ret = 1;
2768 }
2769
2770 return ret;
2771}
Alan Sternb01b03f2008-04-28 11:06:11 -04002772
2773/* Determine whether the device on a port is ready for a normal resume,
2774 * is ready for a reset-resume, or should be disconnected.
2775 */
2776static int check_port_resume_type(struct usb_device *udev,
2777 struct usb_hub *hub, int port1,
2778 int status, unsigned portchange, unsigned portstatus)
2779{
2780 /* Is the device still present? */
Andiry Xu0ed9a572011-04-27 18:07:43 +08002781 if (status || port_is_suspended(hub, portstatus) ||
2782 !port_is_power_on(hub, portstatus) ||
2783 !(portstatus & USB_PORT_STAT_CONNECTION)) {
Alan Sternb01b03f2008-04-28 11:06:11 -04002784 if (status >= 0)
2785 status = -ENODEV;
2786 }
2787
Alan Stern86c57ed2008-06-30 11:14:43 -04002788 /* Can't do a normal resume if the port isn't enabled,
2789 * so try a reset-resume instead.
2790 */
2791 else if (!(portstatus & USB_PORT_STAT_ENABLE) && !udev->reset_resume) {
2792 if (udev->persist_enabled)
2793 udev->reset_resume = 1;
2794 else
2795 status = -ENODEV;
2796 }
Alan Sternb01b03f2008-04-28 11:06:11 -04002797
2798 if (status) {
2799 dev_dbg(hub->intfdev,
2800 "port %d status %04x.%04x after resume, %d\n",
2801 port1, portchange, portstatus, status);
2802 } else if (udev->reset_resume) {
2803
2804 /* Late port handoff can set status-change bits */
2805 if (portchange & USB_PORT_STAT_C_CONNECTION)
Lan Tianyuad493e52013-01-23 04:26:30 +08002806 usb_clear_port_feature(hub->hdev, port1,
Alan Sternb01b03f2008-04-28 11:06:11 -04002807 USB_PORT_FEAT_C_CONNECTION);
2808 if (portchange & USB_PORT_STAT_C_ENABLE)
Lan Tianyuad493e52013-01-23 04:26:30 +08002809 usb_clear_port_feature(hub->hdev, port1,
Alan Sternb01b03f2008-04-28 11:06:11 -04002810 USB_PORT_FEAT_C_ENABLE);
2811 }
2812
2813 return status;
2814}
2815
Sarah Sharpf74631e2012-06-25 12:08:08 -07002816int usb_disable_ltm(struct usb_device *udev)
2817{
2818 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
2819
2820 /* Check if the roothub and device supports LTM. */
2821 if (!usb_device_supports_ltm(hcd->self.root_hub) ||
2822 !usb_device_supports_ltm(udev))
2823 return 0;
2824
2825 /* Clear Feature LTM Enable can only be sent if the device is
2826 * configured.
2827 */
2828 if (!udev->actconfig)
2829 return 0;
2830
2831 return usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
2832 USB_REQ_CLEAR_FEATURE, USB_RECIP_DEVICE,
2833 USB_DEVICE_LTM_ENABLE, 0, NULL, 0,
2834 USB_CTRL_SET_TIMEOUT);
2835}
2836EXPORT_SYMBOL_GPL(usb_disable_ltm);
2837
2838void usb_enable_ltm(struct usb_device *udev)
2839{
2840 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
2841
2842 /* Check if the roothub and device supports LTM. */
2843 if (!usb_device_supports_ltm(hcd->self.root_hub) ||
2844 !usb_device_supports_ltm(udev))
2845 return;
2846
2847 /* Set Feature LTM Enable can only be sent if the device is
2848 * configured.
2849 */
2850 if (!udev->actconfig)
2851 return;
2852
2853 usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
2854 USB_REQ_SET_FEATURE, USB_RECIP_DEVICE,
2855 USB_DEVICE_LTM_ENABLE, 0, NULL, 0,
2856 USB_CTRL_SET_TIMEOUT);
2857}
2858EXPORT_SYMBOL_GPL(usb_enable_ltm);
2859
Lan Tianyu54a3ac02013-01-24 10:31:28 +08002860/*
Alan Stern28e86162013-07-30 15:37:33 -04002861 * usb_enable_remote_wakeup - enable remote wakeup for a device
Lan Tianyu54a3ac02013-01-24 10:31:28 +08002862 * @udev: target device
2863 *
Alan Stern28e86162013-07-30 15:37:33 -04002864 * For USB-2 devices: Set the device's remote wakeup feature.
2865 *
2866 * For USB-3 devices: Assume there's only one function on the device and
2867 * enable remote wake for the first interface. FIXME if the interface
2868 * association descriptor shows there's more than one function.
Lan Tianyu54a3ac02013-01-24 10:31:28 +08002869 */
Alan Stern28e86162013-07-30 15:37:33 -04002870static int usb_enable_remote_wakeup(struct usb_device *udev)
Lan Tianyu54a3ac02013-01-24 10:31:28 +08002871{
Alan Stern28e86162013-07-30 15:37:33 -04002872 if (udev->speed < USB_SPEED_SUPER)
2873 return usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
2874 USB_REQ_SET_FEATURE, USB_RECIP_DEVICE,
2875 USB_DEVICE_REMOTE_WAKEUP, 0, NULL, 0,
2876 USB_CTRL_SET_TIMEOUT);
2877 else
2878 return usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
2879 USB_REQ_SET_FEATURE, USB_RECIP_INTERFACE,
2880 USB_INTRF_FUNC_SUSPEND,
2881 USB_INTRF_FUNC_SUSPEND_RW |
2882 USB_INTRF_FUNC_SUSPEND_LP,
2883 NULL, 0, USB_CTRL_SET_TIMEOUT);
2884}
2885
2886/*
2887 * usb_disable_remote_wakeup - disable remote wakeup for a device
2888 * @udev: target device
2889 *
2890 * For USB-2 devices: Clear the device's remote wakeup feature.
2891 *
2892 * For USB-3 devices: Assume there's only one function on the device and
2893 * disable remote wake for the first interface. FIXME if the interface
2894 * association descriptor shows there's more than one function.
2895 */
2896static int usb_disable_remote_wakeup(struct usb_device *udev)
2897{
2898 if (udev->speed < USB_SPEED_SUPER)
2899 return usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
2900 USB_REQ_CLEAR_FEATURE, USB_RECIP_DEVICE,
2901 USB_DEVICE_REMOTE_WAKEUP, 0, NULL, 0,
2902 USB_CTRL_SET_TIMEOUT);
2903 else
2904 return usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
Lan Tianyu54a3ac02013-01-24 10:31:28 +08002905 USB_REQ_CLEAR_FEATURE, USB_RECIP_INTERFACE,
2906 USB_INTRF_FUNC_SUSPEND, 0, NULL, 0,
2907 USB_CTRL_SET_TIMEOUT);
2908}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002909
Alan Sterne583d9d2013-07-11 14:58:04 -04002910/* Count of wakeup-enabled devices at or below udev */
2911static unsigned wakeup_enabled_descendants(struct usb_device *udev)
2912{
2913 struct usb_hub *hub = usb_hub_to_struct_hub(udev);
2914
2915 return udev->do_remote_wakeup +
2916 (hub ? hub->wakeup_enabled_descendants : 0);
2917}
2918
Linus Torvalds1da177e2005-04-16 15:20:36 -07002919/*
Alan Stern140d8f62006-07-01 22:07:21 -04002920 * usb_port_suspend - suspend a usb device's upstream port
Alan Stern624d6c02007-05-30 15:35:16 -04002921 * @udev: device that's no longer in active use, not a root hub
David Brownell5edbfb72005-09-22 22:45:26 -07002922 * Context: must be able to sleep; device not locked; pm locks held
Linus Torvalds1da177e2005-04-16 15:20:36 -07002923 *
2924 * Suspends a USB device that isn't in active use, conserving power.
2925 * Devices may wake out of a suspend, if anything important happens,
2926 * using the remote wakeup mechanism. They may also be taken out of
Alan Stern140d8f62006-07-01 22:07:21 -04002927 * suspend by the host, using usb_port_resume(). It's also routine
Linus Torvalds1da177e2005-04-16 15:20:36 -07002928 * to disconnect devices while they are suspended.
2929 *
David Brownell390a8c32005-09-13 19:57:27 -07002930 * This only affects the USB hardware for a device; its interfaces
2931 * (and, for hubs, child devices) must already have been suspended.
2932 *
Alan Stern624d6c02007-05-30 15:35:16 -04002933 * Selective port suspend reduces power; most suspended devices draw
2934 * less than 500 uA. It's also used in OTG, along with remote wakeup.
2935 * All devices below the suspended port are also suspended.
2936 *
2937 * Devices leave suspend state when the host wakes them up. Some devices
2938 * also support "remote wakeup", where the device can activate the USB
2939 * tree above them to deliver data, such as a keypress or packet. In
2940 * some cases, this wakes the USB host.
2941 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002942 * Suspending OTG devices may trigger HNP, if that's been enabled
2943 * between a pair of dual-role devices. That will change roles, such
2944 * as from A-Host to A-Peripheral or from B-Host back to B-Peripheral.
2945 *
Alan Stern4956ecc2007-05-30 16:51:28 -04002946 * Devices on USB hub ports have only one "suspend" state, corresponding
2947 * to ACPI D2, "may cause the device to lose some context".
2948 * State transitions include:
2949 *
2950 * - suspend, resume ... when the VBUS power link stays live
2951 * - suspend, disconnect ... VBUS lost
2952 *
2953 * Once VBUS drop breaks the circuit, the port it's using has to go through
2954 * normal re-enumeration procedures, starting with enabling VBUS power.
2955 * Other than re-initializing the hub (plug/unplug, except for root hubs),
2956 * Linux (2.6) currently has NO mechanisms to initiate that: no khubd
2957 * timer, no SRP, no requests through sysfs.
2958 *
Alan Sterne583d9d2013-07-11 14:58:04 -04002959 * If Runtime PM isn't enabled or used, non-SuperSpeed devices may not get
2960 * suspended until their bus goes into global suspend (i.e., the root
Alan Stern0aa28322013-03-27 16:14:19 -04002961 * hub is suspended). Nevertheless, we change @udev->state to
2962 * USB_STATE_SUSPENDED as this is the device's "logical" state. The actual
2963 * upstream port setting is stored in @udev->port_is_suspended.
Alan Stern4956ecc2007-05-30 16:51:28 -04002964 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002965 * Returns 0 on success, else negative errno.
2966 */
Alan Stern65bfd292008-11-25 16:39:18 -05002967int usb_port_suspend(struct usb_device *udev, pm_message_t msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002968{
Lan Tianyuad493e52013-01-23 04:26:30 +08002969 struct usb_hub *hub = usb_hub_to_struct_hub(udev->parent);
2970 struct usb_port *port_dev = hub->ports[udev->portnum - 1];
Alan Stern624d6c02007-05-30 15:35:16 -04002971 int port1 = udev->portnum;
2972 int status;
Alan Stern0aa28322013-03-27 16:14:19 -04002973 bool really_suspend = true;
Alan Stern4956ecc2007-05-30 16:51:28 -04002974
Alan Stern624d6c02007-05-30 15:35:16 -04002975 /* enable remote wakeup when appropriate; this lets the device
2976 * wake up the upstream hub (including maybe the root hub).
2977 *
2978 * NOTE: OTG devices may issue remote wakeup (or SRP) even when
2979 * we don't explicitly enable it here.
2980 */
2981 if (udev->do_remote_wakeup) {
Alan Stern28e86162013-07-30 15:37:33 -04002982 status = usb_enable_remote_wakeup(udev);
Oliver Neukum0c487202009-10-19 13:19:41 +02002983 if (status) {
Alan Stern624d6c02007-05-30 15:35:16 -04002984 dev_dbg(&udev->dev, "won't remote wakeup, status %d\n",
2985 status);
Oliver Neukum0c487202009-10-19 13:19:41 +02002986 /* bail if autosuspend is requested */
Alan Stern5b1b0b82011-08-19 23:49:48 +02002987 if (PMSG_IS_AUTO(msg))
Alan Stern4fae6f02013-07-30 15:39:02 -04002988 goto err_wakeup;
Oliver Neukum0c487202009-10-19 13:19:41 +02002989 }
Alan Stern624d6c02007-05-30 15:35:16 -04002990 }
2991
Andiry Xu65580b432011-09-23 14:19:52 -07002992 /* disable USB2 hardware LPM */
2993 if (udev->usb2_hw_lpm_enabled == 1)
2994 usb_set_usb2_hardware_lpm(udev, 0);
2995
Sarah Sharpf74631e2012-06-25 12:08:08 -07002996 if (usb_disable_ltm(udev)) {
Alan Stern4fae6f02013-07-30 15:39:02 -04002997 dev_err(&udev->dev, "Failed to disable LTM before suspend\n.");
2998 status = -ENOMEM;
2999 if (PMSG_IS_AUTO(msg))
3000 goto err_ltm;
Sarah Sharpf74631e2012-06-25 12:08:08 -07003001 }
Sarah Sharp83060952012-05-02 14:25:52 -07003002 if (usb_unlocked_disable_lpm(udev)) {
Alan Stern4fae6f02013-07-30 15:39:02 -04003003 dev_err(&udev->dev, "Failed to disable LPM before suspend\n.");
3004 status = -ENOMEM;
3005 if (PMSG_IS_AUTO(msg))
3006 goto err_lpm3;
Sarah Sharp83060952012-05-02 14:25:52 -07003007 }
3008
Alan Stern624d6c02007-05-30 15:35:16 -04003009 /* see 7.1.7.6 */
Andiry Xua7114232011-04-27 18:07:50 +08003010 if (hub_is_superspeed(hub->hdev))
Sarah Sharpc2f60db2012-12-10 15:43:08 -08003011 status = hub_set_port_link_state(hub, port1, USB_SS_PORT_LS_U3);
Alan Sterne583d9d2013-07-11 14:58:04 -04003012
Alan Stern0aa28322013-03-27 16:14:19 -04003013 /*
3014 * For system suspend, we do not need to enable the suspend feature
3015 * on individual USB-2 ports. The devices will automatically go
3016 * into suspend a few ms after the root hub stops sending packets.
3017 * The USB 2.0 spec calls this "global suspend".
Alan Sterne583d9d2013-07-11 14:58:04 -04003018 *
3019 * However, many USB hubs have a bug: They don't relay wakeup requests
3020 * from a downstream port if the port's suspend feature isn't on.
3021 * Therefore we will turn on the suspend feature if udev or any of its
3022 * descendants is enabled for remote wakeup.
Alan Stern0aa28322013-03-27 16:14:19 -04003023 */
Alan Sterne583d9d2013-07-11 14:58:04 -04003024 else if (PMSG_IS_AUTO(msg) || wakeup_enabled_descendants(udev) > 0)
3025 status = set_port_feature(hub->hdev, port1,
3026 USB_PORT_FEAT_SUSPEND);
Alan Stern0aa28322013-03-27 16:14:19 -04003027 else {
3028 really_suspend = false;
3029 status = 0;
3030 }
Alan Stern624d6c02007-05-30 15:35:16 -04003031 if (status) {
3032 dev_dbg(hub->intfdev, "can't suspend port %d, status %d\n",
3033 port1, status);
Alan Sterncbb33002011-06-15 16:29:16 -04003034
Alan Stern4fae6f02013-07-30 15:39:02 -04003035 /* Try to enable USB3 LPM and LTM again */
3036 usb_unlocked_enable_lpm(udev);
3037 err_lpm3:
3038 usb_enable_ltm(udev);
3039 err_ltm:
Andiry Xuc3e751e2012-05-05 00:50:10 +08003040 /* Try to enable USB2 hardware LPM again */
3041 if (udev->usb2_hw_lpm_capable == 1)
3042 usb_set_usb2_hardware_lpm(udev, 1);
3043
Alan Stern4fae6f02013-07-30 15:39:02 -04003044 if (udev->do_remote_wakeup)
3045 (void) usb_disable_remote_wakeup(udev);
3046 err_wakeup:
Sarah Sharp83060952012-05-02 14:25:52 -07003047
Alan Sterncbb33002011-06-15 16:29:16 -04003048 /* System sleep transitions should never fail */
Alan Stern5b1b0b82011-08-19 23:49:48 +02003049 if (!PMSG_IS_AUTO(msg))
Alan Sterncbb33002011-06-15 16:29:16 -04003050 status = 0;
Alan Stern624d6c02007-05-30 15:35:16 -04003051 } else {
Alan Stern30b1a7a2011-09-27 21:54:22 +02003052 dev_dbg(&udev->dev, "usb %ssuspend, wakeup %d\n",
3053 (PMSG_IS_AUTO(msg) ? "auto-" : ""),
3054 udev->do_remote_wakeup);
Alan Stern0aa28322013-03-27 16:14:19 -04003055 if (really_suspend) {
3056 udev->port_is_suspended = 1;
Alan Sterne583d9d2013-07-11 14:58:04 -04003057
3058 /* device has up to 10 msec to fully suspend */
Alan Stern0aa28322013-03-27 16:14:19 -04003059 msleep(10);
3060 }
Alan Sterne583d9d2013-07-11 14:58:04 -04003061 usb_set_device_state(udev, USB_STATE_SUSPENDED);
Alan Stern624d6c02007-05-30 15:35:16 -04003062 }
Lan Tianyuad493e52013-01-23 04:26:30 +08003063
Alan Stern4fae6f02013-07-30 15:39:02 -04003064 if (status == 0 && !udev->do_remote_wakeup && udev->persist_enabled) {
Lan Tianyu98a4f1f2013-07-03 22:17:54 +08003065 pm_runtime_put_sync(&port_dev->dev);
3066 port_dev->did_runtime_put = true;
Lan Tianyuad493e52013-01-23 04:26:30 +08003067 }
3068
Alan Sternc08512c2010-11-15 15:57:58 -05003069 usb_mark_last_busy(hub->hdev);
Alan Stern4956ecc2007-05-30 16:51:28 -04003070 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003071}
David Brownellf3f32532005-09-22 22:37:29 -07003072
Linus Torvalds1da177e2005-04-16 15:20:36 -07003073/*
David Brownell390a8c32005-09-13 19:57:27 -07003074 * If the USB "suspend" state is in use (rather than "global suspend"),
3075 * many devices will be individually taken out of suspend state using
Alan Stern54515fe2007-05-30 15:38:58 -04003076 * special "resume" signaling. This routine kicks in shortly after
Linus Torvalds1da177e2005-04-16 15:20:36 -07003077 * hardware resume signaling is finished, either because of selective
3078 * resume (by host) or remote wakeup (by device) ... now see what changed
3079 * in the tree that's rooted at this device.
Alan Stern54515fe2007-05-30 15:38:58 -04003080 *
3081 * If @udev->reset_resume is set then the device is reset before the
3082 * status check is done.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003083 */
Alan Stern140d8f62006-07-01 22:07:21 -04003084static int finish_port_resume(struct usb_device *udev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003085{
Alan Stern54515fe2007-05-30 15:38:58 -04003086 int status = 0;
Oliver Neukum07e72b92012-11-29 15:05:57 +01003087 u16 devstatus = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003088
3089 /* caller owns the udev device lock */
Wu Fengguangb9cef6c2008-12-15 15:32:01 +08003090 dev_dbg(&udev->dev, "%s\n",
3091 udev->reset_resume ? "finish reset-resume" : "finish resume");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003092
3093 /* usb ch9 identifies four variants of SUSPENDED, based on what
3094 * state the device resumes to. Linux currently won't see the
3095 * first two on the host side; they'd be inside hub_port_init()
3096 * during many timeouts, but khubd can't suspend until later.
3097 */
3098 usb_set_device_state(udev, udev->actconfig
3099 ? USB_STATE_CONFIGURED
3100 : USB_STATE_ADDRESS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003101
Alan Stern54515fe2007-05-30 15:38:58 -04003102 /* 10.5.4.5 says not to reset a suspended port if the attached
3103 * device is enabled for remote wakeup. Hence the reset
3104 * operation is carried out here, after the port has been
3105 * resumed.
3106 */
3107 if (udev->reset_resume)
Alan Stern86c57ed2008-06-30 11:14:43 -04003108 retry_reset_resume:
Ming Lei742120c2008-06-18 22:00:29 +08003109 status = usb_reset_and_verify_device(udev);
Alan Stern54515fe2007-05-30 15:38:58 -04003110
Linus Torvalds1da177e2005-04-16 15:20:36 -07003111 /* 10.5.4.5 says be sure devices in the tree are still there.
3112 * For now let's assume the device didn't go crazy on resume,
3113 * and device drivers will know about any resume quirks.
3114 */
Alan Stern54515fe2007-05-30 15:38:58 -04003115 if (status == 0) {
Alan Stern46dede42007-08-14 10:56:10 -04003116 devstatus = 0;
Alan Stern54515fe2007-05-30 15:38:58 -04003117 status = usb_get_status(udev, USB_RECIP_DEVICE, 0, &devstatus);
Alan Stern86c57ed2008-06-30 11:14:43 -04003118
3119 /* If a normal resume failed, try doing a reset-resume */
3120 if (status && !udev->reset_resume && udev->persist_enabled) {
3121 dev_dbg(&udev->dev, "retry with reset-resume\n");
3122 udev->reset_resume = 1;
3123 goto retry_reset_resume;
3124 }
Alan Stern54515fe2007-05-30 15:38:58 -04003125 }
Alan Sternb40b7a92006-06-19 15:12:38 -04003126
Alan Stern624d6c02007-05-30 15:35:16 -04003127 if (status) {
3128 dev_dbg(&udev->dev, "gone after usb resume? status %d\n",
3129 status);
Oliver Neukum07e72b92012-11-29 15:05:57 +01003130 /*
3131 * There are a few quirky devices which violate the standard
3132 * by claiming to have remote wakeup enabled after a reset,
3133 * which crash if the feature is cleared, hence check for
3134 * udev->reset_resume
3135 */
3136 } else if (udev->actconfig && !udev->reset_resume) {
Alan Stern28e86162013-07-30 15:37:33 -04003137 if (udev->speed < USB_SPEED_SUPER) {
Lan Tianyu54a3ac02013-01-24 10:31:28 +08003138 if (devstatus & (1 << USB_DEVICE_REMOTE_WAKEUP))
Alan Stern28e86162013-07-30 15:37:33 -04003139 status = usb_disable_remote_wakeup(udev);
Lan Tianyu54a3ac02013-01-24 10:31:28 +08003140 } else {
3141 status = usb_get_status(udev, USB_RECIP_INTERFACE, 0,
3142 &devstatus);
Lan Tianyu54a3ac02013-01-24 10:31:28 +08003143 if (!status && devstatus & (USB_INTRF_STAT_FUNC_RW_CAP
3144 | USB_INTRF_STAT_FUNC_RW))
Alan Stern28e86162013-07-30 15:37:33 -04003145 status = usb_disable_remote_wakeup(udev);
Alan Stern4bf0ba82005-11-21 11:58:07 -05003146 }
Lan Tianyu54a3ac02013-01-24 10:31:28 +08003147
3148 if (status)
3149 dev_dbg(&udev->dev,
3150 "disable remote wakeup, status %d\n",
3151 status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003152 status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003153 }
3154 return status;
3155}
3156
Alan Stern624d6c02007-05-30 15:35:16 -04003157/*
3158 * usb_port_resume - re-activate a suspended usb device's upstream port
3159 * @udev: device to re-activate, not a root hub
3160 * Context: must be able to sleep; device not locked; pm locks held
3161 *
3162 * This will re-activate the suspended device, increasing power usage
3163 * while letting drivers communicate again with its endpoints.
3164 * USB resume explicitly guarantees that the power session between
3165 * the host and the device is the same as it was when the device
3166 * suspended.
3167 *
Alan Sternfeccc302008-03-03 15:15:59 -05003168 * If @udev->reset_resume is set then this routine won't check that the
3169 * port is still enabled. Furthermore, finish_port_resume() above will
Alan Stern54515fe2007-05-30 15:38:58 -04003170 * reset @udev. The end result is that a broken power session can be
3171 * recovered and @udev will appear to persist across a loss of VBUS power.
3172 *
3173 * For example, if a host controller doesn't maintain VBUS suspend current
3174 * during a system sleep or is reset when the system wakes up, all the USB
3175 * power sessions below it will be broken. This is especially troublesome
3176 * for mass-storage devices containing mounted filesystems, since the
3177 * device will appear to have disconnected and all the memory mappings
3178 * to it will be lost. Using the USB_PERSIST facility, the device can be
3179 * made to appear as if it had not disconnected.
3180 *
Ming Lei742120c2008-06-18 22:00:29 +08003181 * This facility can be dangerous. Although usb_reset_and_verify_device() makes
Alan Sternfeccc302008-03-03 15:15:59 -05003182 * every effort to insure that the same device is present after the
Alan Stern54515fe2007-05-30 15:38:58 -04003183 * reset as before, it cannot provide a 100% guarantee. Furthermore it's
3184 * quite possible for a device to remain unaltered but its media to be
3185 * changed. If the user replaces a flash memory card while the system is
3186 * asleep, he will have only himself to blame when the filesystem on the
3187 * new card is corrupted and the system crashes.
3188 *
Alan Stern624d6c02007-05-30 15:35:16 -04003189 * Returns 0 on success, else negative errno.
3190 */
Alan Stern65bfd292008-11-25 16:39:18 -05003191int usb_port_resume(struct usb_device *udev, pm_message_t msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003192{
Lan Tianyuad493e52013-01-23 04:26:30 +08003193 struct usb_hub *hub = usb_hub_to_struct_hub(udev->parent);
3194 struct usb_port *port_dev = hub->ports[udev->portnum - 1];
Alan Stern624d6c02007-05-30 15:35:16 -04003195 int port1 = udev->portnum;
3196 int status;
3197 u16 portchange, portstatus;
Alan Sternd25450c2006-11-20 11:14:30 -05003198
Lan Tianyuad493e52013-01-23 04:26:30 +08003199 if (port_dev->did_runtime_put) {
3200 status = pm_runtime_get_sync(&port_dev->dev);
3201 port_dev->did_runtime_put = false;
3202 if (status < 0) {
3203 dev_dbg(&udev->dev, "can't resume usb port, status %d\n",
3204 status);
3205 return status;
3206 }
3207 }
3208
Alan Sternd25450c2006-11-20 11:14:30 -05003209 /* Skip the initial Clear-Suspend step for a remote wakeup */
3210 status = hub_port_status(hub, port1, &portstatus, &portchange);
Andiry Xu0ed9a572011-04-27 18:07:43 +08003211 if (status == 0 && !port_is_suspended(hub, portstatus))
Alan Sternd25450c2006-11-20 11:14:30 -05003212 goto SuspendCleared;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003213
3214 // dev_dbg(hub->intfdev, "resume port %d\n", port1);
3215
Alan Sternd5cbad42006-08-11 16:52:39 -04003216 set_bit(port1, hub->busy_bits);
3217
Linus Torvalds1da177e2005-04-16 15:20:36 -07003218 /* see 7.1.7.7; affects power usage, but not budgeting */
Andiry Xua7114232011-04-27 18:07:50 +08003219 if (hub_is_superspeed(hub->hdev))
Sarah Sharpc2f60db2012-12-10 15:43:08 -08003220 status = hub_set_port_link_state(hub, port1, USB_SS_PORT_LS_U0);
Andiry Xua7114232011-04-27 18:07:50 +08003221 else
Lan Tianyuad493e52013-01-23 04:26:30 +08003222 status = usb_clear_port_feature(hub->hdev,
Andiry Xua7114232011-04-27 18:07:50 +08003223 port1, USB_PORT_FEAT_SUSPEND);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003224 if (status) {
Alan Stern624d6c02007-05-30 15:35:16 -04003225 dev_dbg(hub->intfdev, "can't resume port %d, status %d\n",
3226 port1, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003227 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003228 /* drive resume for at least 20 msec */
Alan Stern686314c2007-05-30 15:34:36 -04003229 dev_dbg(&udev->dev, "usb %sresume\n",
Alan Stern5b1b0b82011-08-19 23:49:48 +02003230 (PMSG_IS_AUTO(msg) ? "auto-" : ""));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003231 msleep(25);
3232
Linus Torvalds1da177e2005-04-16 15:20:36 -07003233 /* Virtual root hubs can trigger on GET_PORT_STATUS to
3234 * stop resume signaling. Then finish the resume
3235 * sequence.
3236 */
Alan Sternd25450c2006-11-20 11:14:30 -05003237 status = hub_port_status(hub, port1, &portstatus, &portchange);
Alan Stern54515fe2007-05-30 15:38:58 -04003238
Alan Sternb01b03f2008-04-28 11:06:11 -04003239 /* TRSMRCY = 10 msec */
3240 msleep(10);
3241 }
Alan Stern54515fe2007-05-30 15:38:58 -04003242
Alan Sternb01b03f2008-04-28 11:06:11 -04003243 SuspendCleared:
3244 if (status == 0) {
Alan Sternbfd1e912012-10-19 11:03:39 -04003245 udev->port_is_suspended = 0;
Andiry Xua7114232011-04-27 18:07:50 +08003246 if (hub_is_superspeed(hub->hdev)) {
3247 if (portchange & USB_PORT_STAT_C_LINK_STATE)
Lan Tianyuad493e52013-01-23 04:26:30 +08003248 usb_clear_port_feature(hub->hdev, port1,
Andiry Xua7114232011-04-27 18:07:50 +08003249 USB_PORT_FEAT_C_PORT_LINK_STATE);
3250 } else {
3251 if (portchange & USB_PORT_STAT_C_SUSPEND)
Lan Tianyuad493e52013-01-23 04:26:30 +08003252 usb_clear_port_feature(hub->hdev, port1,
Andiry Xua7114232011-04-27 18:07:50 +08003253 USB_PORT_FEAT_C_SUSPEND);
3254 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003255 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003256
Alan Sternd5cbad42006-08-11 16:52:39 -04003257 clear_bit(port1, hub->busy_bits);
Alan Sternd5cbad42006-08-11 16:52:39 -04003258
Alan Sternb01b03f2008-04-28 11:06:11 -04003259 status = check_port_resume_type(udev,
3260 hub, port1, status, portchange, portstatus);
Alan Stern54515fe2007-05-30 15:38:58 -04003261 if (status == 0)
3262 status = finish_port_resume(udev);
3263 if (status < 0) {
3264 dev_dbg(&udev->dev, "can't resume, status %d\n", status);
3265 hub_port_logical_disconnect(hub, port1);
Andiry Xu65580b432011-09-23 14:19:52 -07003266 } else {
3267 /* Try to enable USB2 hardware LPM */
3268 if (udev->usb2_hw_lpm_capable == 1)
3269 usb_set_usb2_hardware_lpm(udev, 1);
Sarah Sharp83060952012-05-02 14:25:52 -07003270
Sarah Sharpf74631e2012-06-25 12:08:08 -07003271 /* Try to enable USB3 LTM and LPM */
3272 usb_enable_ltm(udev);
Sarah Sharp83060952012-05-02 14:25:52 -07003273 usb_unlocked_enable_lpm(udev);
Alan Stern54515fe2007-05-30 15:38:58 -04003274 }
Andiry Xu65580b432011-09-23 14:19:52 -07003275
Linus Torvalds1da177e2005-04-16 15:20:36 -07003276 return status;
3277}
3278
Alan Stern84ebc102013-03-27 16:14:46 -04003279#ifdef CONFIG_PM_RUNTIME
3280
Alan Stern8808f002008-04-28 11:06:55 -04003281/* caller has locked udev */
Alan Stern0534d462010-01-08 12:56:30 -05003282int usb_remote_wakeup(struct usb_device *udev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003283{
3284 int status = 0;
3285
Linus Torvalds1da177e2005-04-16 15:20:36 -07003286 if (udev->state == USB_STATE_SUSPENDED) {
Alan Stern645daaa2006-08-30 15:47:02 -04003287 dev_dbg(&udev->dev, "usb %sresume\n", "wakeup-");
Alan Stern9bbdf1e2010-01-08 12:57:28 -05003288 status = usb_autoresume_device(udev);
3289 if (status == 0) {
3290 /* Let the drivers do their thing, then... */
3291 usb_autosuspend_device(udev);
3292 }
Alan Sternd25450c2006-11-20 11:14:30 -05003293 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003294 return status;
3295}
3296
Alan Sternd388dab2006-07-01 22:14:24 -04003297#endif
3298
Ming Leie6f30de2012-10-24 11:59:24 +08003299static int check_ports_changed(struct usb_hub *hub)
3300{
3301 int port1;
3302
3303 for (port1 = 1; port1 <= hub->hdev->maxchild; ++port1) {
3304 u16 portstatus, portchange;
3305 int status;
3306
3307 status = hub_port_status(hub, port1, &portstatus, &portchange);
3308 if (!status && portchange)
3309 return 1;
3310 }
3311 return 0;
3312}
3313
David Brownelldb690872005-09-13 19:56:33 -07003314static int hub_suspend(struct usb_interface *intf, pm_message_t msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003315{
3316 struct usb_hub *hub = usb_get_intfdata (intf);
3317 struct usb_device *hdev = hub->hdev;
3318 unsigned port1;
Sarah Sharp4296c70a2012-01-06 10:34:31 -08003319 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003320
Alan Sterne583d9d2013-07-11 14:58:04 -04003321 /*
3322 * Warn if children aren't already suspended.
3323 * Also, add up the number of wakeup-enabled descendants.
3324 */
3325 hub->wakeup_enabled_descendants = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003326 for (port1 = 1; port1 <= hdev->maxchild; port1++) {
3327 struct usb_device *udev;
3328
Lan Tianyuff823c72012-09-05 13:44:32 +08003329 udev = hub->ports[port1 - 1]->child;
Alan Stern6840d252007-09-10 11:34:26 -04003330 if (udev && udev->can_submit) {
Alan Sterncbb33002011-06-15 16:29:16 -04003331 dev_warn(&intf->dev, "port %d nyet suspended\n", port1);
Alan Stern5b1b0b82011-08-19 23:49:48 +02003332 if (PMSG_IS_AUTO(msg))
Alan Sterncbb33002011-06-15 16:29:16 -04003333 return -EBUSY;
David Brownellc9f89fa2005-09-13 19:57:04 -07003334 }
Alan Sterne583d9d2013-07-11 14:58:04 -04003335 if (udev)
3336 hub->wakeup_enabled_descendants +=
3337 wakeup_enabled_descendants(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003338 }
Ming Leie6f30de2012-10-24 11:59:24 +08003339
3340 if (hdev->do_remote_wakeup && hub->quirk_check_port_auto_suspend) {
3341 /* check if there are changes pending on hub ports */
3342 if (check_ports_changed(hub)) {
3343 if (PMSG_IS_AUTO(msg))
3344 return -EBUSY;
3345 pm_wakeup_event(&hdev->dev, 2000);
3346 }
3347 }
3348
Sarah Sharp4296c70a2012-01-06 10:34:31 -08003349 if (hub_is_superspeed(hdev) && hdev->do_remote_wakeup) {
3350 /* Enable hub to send remote wakeup for all ports. */
3351 for (port1 = 1; port1 <= hdev->maxchild; port1++) {
3352 status = set_port_feature(hdev,
3353 port1 |
3354 USB_PORT_FEAT_REMOTE_WAKE_CONNECT |
3355 USB_PORT_FEAT_REMOTE_WAKE_DISCONNECT |
3356 USB_PORT_FEAT_REMOTE_WAKE_OVER_CURRENT,
3357 USB_PORT_FEAT_REMOTE_WAKE_MASK);
3358 }
3359 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003360
Harvey Harrison441b62c2008-03-03 16:08:34 -08003361 dev_dbg(&intf->dev, "%s\n", __func__);
Alan Stern40f122f2006-11-09 14:44:33 -05003362
David Brownellc9f89fa2005-09-13 19:57:04 -07003363 /* stop khubd and related activity */
Alan Stern43303542008-04-28 11:07:31 -04003364 hub_quiesce(hub, HUB_SUSPEND);
Alan Sternb6f64362007-05-04 11:51:54 -04003365 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003366}
3367
3368static int hub_resume(struct usb_interface *intf)
3369{
Alan Stern5e6effa2008-03-03 15:15:51 -05003370 struct usb_hub *hub = usb_get_intfdata(intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003371
Alan Stern5e6effa2008-03-03 15:15:51 -05003372 dev_dbg(&intf->dev, "%s\n", __func__);
Alan Sternf2835212008-04-28 11:07:17 -04003373 hub_activate(hub, HUB_RESUME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003374 return 0;
3375}
3376
Alan Sternb41a60e2007-05-30 15:39:33 -04003377static int hub_reset_resume(struct usb_interface *intf)
Alan Sternf07600c2007-05-30 15:38:16 -04003378{
Alan Sternb41a60e2007-05-30 15:39:33 -04003379 struct usb_hub *hub = usb_get_intfdata(intf);
Alan Sternf07600c2007-05-30 15:38:16 -04003380
Alan Stern5e6effa2008-03-03 15:15:51 -05003381 dev_dbg(&intf->dev, "%s\n", __func__);
Alan Sternf2835212008-04-28 11:07:17 -04003382 hub_activate(hub, HUB_RESET_RESUME);
Alan Sternf07600c2007-05-30 15:38:16 -04003383 return 0;
3384}
3385
Alan Stern54515fe2007-05-30 15:38:58 -04003386/**
3387 * usb_root_hub_lost_power - called by HCD if the root hub lost Vbus power
3388 * @rhdev: struct usb_device for the root hub
3389 *
3390 * The USB host controller driver calls this function when its root hub
3391 * is resumed and Vbus power has been interrupted or the controller
Alan Sternfeccc302008-03-03 15:15:59 -05003392 * has been reset. The routine marks @rhdev as having lost power.
3393 * When the hub driver is resumed it will take notice and carry out
3394 * power-session recovery for all the "USB-PERSIST"-enabled child devices;
3395 * the others will be disconnected.
Alan Stern54515fe2007-05-30 15:38:58 -04003396 */
3397void usb_root_hub_lost_power(struct usb_device *rhdev)
3398{
3399 dev_warn(&rhdev->dev, "root hub lost power or was reset\n");
3400 rhdev->reset_resume = 1;
3401}
3402EXPORT_SYMBOL_GPL(usb_root_hub_lost_power);
3403
Sarah Sharp1ea7e0e2012-04-24 17:21:50 -07003404static const char * const usb3_lpm_names[] = {
3405 "U0",
3406 "U1",
3407 "U2",
3408 "U3",
3409};
3410
3411/*
3412 * Send a Set SEL control transfer to the device, prior to enabling
3413 * device-initiated U1 or U2. This lets the device know the exit latencies from
3414 * the time the device initiates a U1 or U2 exit, to the time it will receive a
3415 * packet from the host.
3416 *
3417 * This function will fail if the SEL or PEL values for udev are greater than
3418 * the maximum allowed values for the link state to be enabled.
3419 */
3420static int usb_req_set_sel(struct usb_device *udev, enum usb3_link_state state)
3421{
3422 struct usb_set_sel_req *sel_values;
3423 unsigned long long u1_sel;
3424 unsigned long long u1_pel;
3425 unsigned long long u2_sel;
3426 unsigned long long u2_pel;
3427 int ret;
3428
3429 /* Convert SEL and PEL stored in ns to us */
3430 u1_sel = DIV_ROUND_UP(udev->u1_params.sel, 1000);
3431 u1_pel = DIV_ROUND_UP(udev->u1_params.pel, 1000);
3432 u2_sel = DIV_ROUND_UP(udev->u2_params.sel, 1000);
3433 u2_pel = DIV_ROUND_UP(udev->u2_params.pel, 1000);
3434
3435 /*
3436 * Make sure that the calculated SEL and PEL values for the link
3437 * state we're enabling aren't bigger than the max SEL/PEL
3438 * value that will fit in the SET SEL control transfer.
3439 * Otherwise the device would get an incorrect idea of the exit
3440 * latency for the link state, and could start a device-initiated
3441 * U1/U2 when the exit latencies are too high.
3442 */
3443 if ((state == USB3_LPM_U1 &&
3444 (u1_sel > USB3_LPM_MAX_U1_SEL_PEL ||
3445 u1_pel > USB3_LPM_MAX_U1_SEL_PEL)) ||
3446 (state == USB3_LPM_U2 &&
3447 (u2_sel > USB3_LPM_MAX_U2_SEL_PEL ||
3448 u2_pel > USB3_LPM_MAX_U2_SEL_PEL))) {
Sarah Sharp1510a1a2012-10-05 10:30:35 -07003449 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 -07003450 usb3_lpm_names[state], u1_sel, u1_pel);
3451 return -EINVAL;
3452 }
3453
3454 /*
3455 * If we're enabling device-initiated LPM for one link state,
3456 * but the other link state has a too high SEL or PEL value,
3457 * just set those values to the max in the Set SEL request.
3458 */
3459 if (u1_sel > USB3_LPM_MAX_U1_SEL_PEL)
3460 u1_sel = USB3_LPM_MAX_U1_SEL_PEL;
3461
3462 if (u1_pel > USB3_LPM_MAX_U1_SEL_PEL)
3463 u1_pel = USB3_LPM_MAX_U1_SEL_PEL;
3464
3465 if (u2_sel > USB3_LPM_MAX_U2_SEL_PEL)
3466 u2_sel = USB3_LPM_MAX_U2_SEL_PEL;
3467
3468 if (u2_pel > USB3_LPM_MAX_U2_SEL_PEL)
3469 u2_pel = USB3_LPM_MAX_U2_SEL_PEL;
3470
3471 /*
3472 * usb_enable_lpm() can be called as part of a failed device reset,
3473 * which may be initiated by an error path of a mass storage driver.
3474 * Therefore, use GFP_NOIO.
3475 */
3476 sel_values = kmalloc(sizeof *(sel_values), GFP_NOIO);
3477 if (!sel_values)
3478 return -ENOMEM;
3479
3480 sel_values->u1_sel = u1_sel;
3481 sel_values->u1_pel = u1_pel;
3482 sel_values->u2_sel = cpu_to_le16(u2_sel);
3483 sel_values->u2_pel = cpu_to_le16(u2_pel);
3484
3485 ret = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
3486 USB_REQ_SET_SEL,
3487 USB_RECIP_DEVICE,
3488 0, 0,
3489 sel_values, sizeof *(sel_values),
3490 USB_CTRL_SET_TIMEOUT);
3491 kfree(sel_values);
3492 return ret;
3493}
3494
3495/*
3496 * Enable or disable device-initiated U1 or U2 transitions.
3497 */
3498static int usb_set_device_initiated_lpm(struct usb_device *udev,
3499 enum usb3_link_state state, bool enable)
3500{
3501 int ret;
3502 int feature;
3503
3504 switch (state) {
3505 case USB3_LPM_U1:
3506 feature = USB_DEVICE_U1_ENABLE;
3507 break;
3508 case USB3_LPM_U2:
3509 feature = USB_DEVICE_U2_ENABLE;
3510 break;
3511 default:
3512 dev_warn(&udev->dev, "%s: Can't %s non-U1 or U2 state.\n",
3513 __func__, enable ? "enable" : "disable");
3514 return -EINVAL;
3515 }
3516
3517 if (udev->state != USB_STATE_CONFIGURED) {
3518 dev_dbg(&udev->dev, "%s: Can't %s %s state "
3519 "for unconfigured device.\n",
3520 __func__, enable ? "enable" : "disable",
3521 usb3_lpm_names[state]);
3522 return 0;
3523 }
3524
3525 if (enable) {
3526 /*
Sarah Sharp1ea7e0e2012-04-24 17:21:50 -07003527 * Now send the control transfer to enable device-initiated LPM
3528 * for either U1 or U2.
3529 */
3530 ret = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
3531 USB_REQ_SET_FEATURE,
3532 USB_RECIP_DEVICE,
3533 feature,
3534 0, NULL, 0,
3535 USB_CTRL_SET_TIMEOUT);
3536 } else {
3537 ret = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
3538 USB_REQ_CLEAR_FEATURE,
3539 USB_RECIP_DEVICE,
3540 feature,
3541 0, NULL, 0,
3542 USB_CTRL_SET_TIMEOUT);
3543 }
3544 if (ret < 0) {
3545 dev_warn(&udev->dev, "%s of device-initiated %s failed.\n",
3546 enable ? "Enable" : "Disable",
3547 usb3_lpm_names[state]);
3548 return -EBUSY;
3549 }
3550 return 0;
3551}
3552
3553static int usb_set_lpm_timeout(struct usb_device *udev,
3554 enum usb3_link_state state, int timeout)
3555{
3556 int ret;
3557 int feature;
3558
3559 switch (state) {
3560 case USB3_LPM_U1:
3561 feature = USB_PORT_FEAT_U1_TIMEOUT;
3562 break;
3563 case USB3_LPM_U2:
3564 feature = USB_PORT_FEAT_U2_TIMEOUT;
3565 break;
3566 default:
3567 dev_warn(&udev->dev, "%s: Can't set timeout for non-U1 or U2 state.\n",
3568 __func__);
3569 return -EINVAL;
3570 }
3571
3572 if (state == USB3_LPM_U1 && timeout > USB3_LPM_U1_MAX_TIMEOUT &&
3573 timeout != USB3_LPM_DEVICE_INITIATED) {
3574 dev_warn(&udev->dev, "Failed to set %s timeout to 0x%x, "
3575 "which is a reserved value.\n",
3576 usb3_lpm_names[state], timeout);
3577 return -EINVAL;
3578 }
3579
3580 ret = set_port_feature(udev->parent,
3581 USB_PORT_LPM_TIMEOUT(timeout) | udev->portnum,
3582 feature);
3583 if (ret < 0) {
3584 dev_warn(&udev->dev, "Failed to set %s timeout to 0x%x,"
3585 "error code %i\n", usb3_lpm_names[state],
3586 timeout, ret);
3587 return -EBUSY;
3588 }
3589 if (state == USB3_LPM_U1)
3590 udev->u1_params.timeout = timeout;
3591 else
3592 udev->u2_params.timeout = timeout;
3593 return 0;
3594}
3595
3596/*
3597 * Enable the hub-initiated U1/U2 idle timeouts, and enable device-initiated
3598 * U1/U2 entry.
3599 *
3600 * We will attempt to enable U1 or U2, but there are no guarantees that the
3601 * control transfers to set the hub timeout or enable device-initiated U1/U2
3602 * will be successful.
3603 *
3604 * If we cannot set the parent hub U1/U2 timeout, we attempt to let the xHCI
3605 * driver know about it. If that call fails, it should be harmless, and just
3606 * take up more slightly more bus bandwidth for unnecessary U1/U2 exit latency.
3607 */
3608static void usb_enable_link_state(struct usb_hcd *hcd, struct usb_device *udev,
3609 enum usb3_link_state state)
3610{
Sarah Sharp65a95b72012-10-05 10:32:07 -07003611 int timeout, ret;
Sarah Sharpae8963a2012-10-03 11:18:05 -07003612 __u8 u1_mel = udev->bos->ss_cap->bU1devExitLat;
3613 __le16 u2_mel = udev->bos->ss_cap->bU2DevExitLat;
3614
3615 /* If the device says it doesn't have *any* exit latency to come out of
3616 * U1 or U2, it's probably lying. Assume it doesn't implement that link
3617 * state.
3618 */
3619 if ((state == USB3_LPM_U1 && u1_mel == 0) ||
3620 (state == USB3_LPM_U2 && u2_mel == 0))
3621 return;
Sarah Sharp1ea7e0e2012-04-24 17:21:50 -07003622
Sarah Sharp65a95b72012-10-05 10:32:07 -07003623 /*
3624 * First, let the device know about the exit latencies
3625 * associated with the link state we're about to enable.
3626 */
3627 ret = usb_req_set_sel(udev, state);
3628 if (ret < 0) {
3629 dev_warn(&udev->dev, "Set SEL for device-initiated %s failed.\n",
3630 usb3_lpm_names[state]);
3631 return;
3632 }
3633
Sarah Sharp1ea7e0e2012-04-24 17:21:50 -07003634 /* We allow the host controller to set the U1/U2 timeout internally
3635 * first, so that it can change its schedule to account for the
3636 * additional latency to send data to a device in a lower power
3637 * link state.
3638 */
3639 timeout = hcd->driver->enable_usb3_lpm_timeout(hcd, udev, state);
3640
3641 /* xHCI host controller doesn't want to enable this LPM state. */
3642 if (timeout == 0)
3643 return;
3644
3645 if (timeout < 0) {
3646 dev_warn(&udev->dev, "Could not enable %s link state, "
3647 "xHCI error %i.\n", usb3_lpm_names[state],
3648 timeout);
3649 return;
3650 }
3651
3652 if (usb_set_lpm_timeout(udev, state, timeout))
3653 /* If we can't set the parent hub U1/U2 timeout,
3654 * device-initiated LPM won't be allowed either, so let the xHCI
3655 * host know that this link state won't be enabled.
3656 */
3657 hcd->driver->disable_usb3_lpm_timeout(hcd, udev, state);
3658
3659 /* Only a configured device will accept the Set Feature U1/U2_ENABLE */
3660 else if (udev->actconfig)
3661 usb_set_device_initiated_lpm(udev, state, true);
3662
3663}
3664
3665/*
3666 * Disable the hub-initiated U1/U2 idle timeouts, and disable device-initiated
3667 * U1/U2 entry.
3668 *
3669 * If this function returns -EBUSY, the parent hub will still allow U1/U2 entry.
3670 * If zero is returned, the parent will not allow the link to go into U1/U2.
3671 *
3672 * If zero is returned, device-initiated U1/U2 entry may still be enabled, but
3673 * it won't have an effect on the bus link state because the parent hub will
3674 * still disallow device-initiated U1/U2 entry.
3675 *
3676 * If zero is returned, the xHCI host controller may still think U1/U2 entry is
3677 * possible. The result will be slightly more bus bandwidth will be taken up
3678 * (to account for U1/U2 exit latency), but it should be harmless.
3679 */
3680static int usb_disable_link_state(struct usb_hcd *hcd, struct usb_device *udev,
3681 enum usb3_link_state state)
3682{
3683 int feature;
3684
3685 switch (state) {
3686 case USB3_LPM_U1:
3687 feature = USB_PORT_FEAT_U1_TIMEOUT;
3688 break;
3689 case USB3_LPM_U2:
3690 feature = USB_PORT_FEAT_U2_TIMEOUT;
3691 break;
3692 default:
3693 dev_warn(&udev->dev, "%s: Can't disable non-U1 or U2 state.\n",
3694 __func__);
3695 return -EINVAL;
3696 }
3697
3698 if (usb_set_lpm_timeout(udev, state, 0))
3699 return -EBUSY;
3700
3701 usb_set_device_initiated_lpm(udev, state, false);
3702
3703 if (hcd->driver->disable_usb3_lpm_timeout(hcd, udev, state))
3704 dev_warn(&udev->dev, "Could not disable xHCI %s timeout, "
3705 "bus schedule bandwidth may be impacted.\n",
3706 usb3_lpm_names[state]);
3707 return 0;
3708}
3709
3710/*
3711 * Disable hub-initiated and device-initiated U1 and U2 entry.
3712 * Caller must own the bandwidth_mutex.
3713 *
3714 * This will call usb_enable_lpm() on failure, which will decrement
3715 * lpm_disable_count, and will re-enable LPM if lpm_disable_count reaches zero.
3716 */
3717int usb_disable_lpm(struct usb_device *udev)
3718{
3719 struct usb_hcd *hcd;
3720
3721 if (!udev || !udev->parent ||
3722 udev->speed != USB_SPEED_SUPER ||
3723 !udev->lpm_capable)
3724 return 0;
3725
3726 hcd = bus_to_hcd(udev->bus);
3727 if (!hcd || !hcd->driver->disable_usb3_lpm_timeout)
3728 return 0;
3729
3730 udev->lpm_disable_count++;
Dan Carpenter55558c32012-05-22 20:54:34 +03003731 if ((udev->u1_params.timeout == 0 && udev->u2_params.timeout == 0))
Sarah Sharp1ea7e0e2012-04-24 17:21:50 -07003732 return 0;
3733
3734 /* If LPM is enabled, attempt to disable it. */
3735 if (usb_disable_link_state(hcd, udev, USB3_LPM_U1))
3736 goto enable_lpm;
3737 if (usb_disable_link_state(hcd, udev, USB3_LPM_U2))
3738 goto enable_lpm;
3739
3740 return 0;
3741
3742enable_lpm:
3743 usb_enable_lpm(udev);
3744 return -EBUSY;
3745}
3746EXPORT_SYMBOL_GPL(usb_disable_lpm);
3747
3748/* Grab the bandwidth_mutex before calling usb_disable_lpm() */
3749int usb_unlocked_disable_lpm(struct usb_device *udev)
3750{
3751 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
3752 int ret;
3753
3754 if (!hcd)
3755 return -EINVAL;
3756
3757 mutex_lock(hcd->bandwidth_mutex);
3758 ret = usb_disable_lpm(udev);
3759 mutex_unlock(hcd->bandwidth_mutex);
3760
3761 return ret;
3762}
3763EXPORT_SYMBOL_GPL(usb_unlocked_disable_lpm);
3764
3765/*
3766 * Attempt to enable device-initiated and hub-initiated U1 and U2 entry. The
3767 * xHCI host policy may prevent U1 or U2 from being enabled.
3768 *
3769 * Other callers may have disabled link PM, so U1 and U2 entry will be disabled
3770 * until the lpm_disable_count drops to zero. Caller must own the
3771 * bandwidth_mutex.
3772 */
3773void usb_enable_lpm(struct usb_device *udev)
3774{
3775 struct usb_hcd *hcd;
3776
3777 if (!udev || !udev->parent ||
3778 udev->speed != USB_SPEED_SUPER ||
3779 !udev->lpm_capable)
3780 return;
3781
3782 udev->lpm_disable_count--;
3783 hcd = bus_to_hcd(udev->bus);
3784 /* Double check that we can both enable and disable LPM.
3785 * Device must be configured to accept set feature U1/U2 timeout.
3786 */
3787 if (!hcd || !hcd->driver->enable_usb3_lpm_timeout ||
3788 !hcd->driver->disable_usb3_lpm_timeout)
3789 return;
3790
3791 if (udev->lpm_disable_count > 0)
3792 return;
3793
3794 usb_enable_link_state(hcd, udev, USB3_LPM_U1);
3795 usb_enable_link_state(hcd, udev, USB3_LPM_U2);
3796}
3797EXPORT_SYMBOL_GPL(usb_enable_lpm);
3798
3799/* Grab the bandwidth_mutex before calling usb_enable_lpm() */
3800void usb_unlocked_enable_lpm(struct usb_device *udev)
3801{
3802 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
3803
3804 if (!hcd)
3805 return;
3806
3807 mutex_lock(hcd->bandwidth_mutex);
3808 usb_enable_lpm(udev);
3809 mutex_unlock(hcd->bandwidth_mutex);
3810}
3811EXPORT_SYMBOL_GPL(usb_unlocked_enable_lpm);
3812
3813
Alan Sternd388dab2006-07-01 22:14:24 -04003814#else /* CONFIG_PM */
3815
Alan Sternf07600c2007-05-30 15:38:16 -04003816#define hub_suspend NULL
3817#define hub_resume NULL
3818#define hub_reset_resume NULL
Sarah Sharp1ea7e0e2012-04-24 17:21:50 -07003819
3820int usb_disable_lpm(struct usb_device *udev)
3821{
3822 return 0;
3823}
Sarah Sharpe9261fb2012-05-21 08:29:01 -07003824EXPORT_SYMBOL_GPL(usb_disable_lpm);
Sarah Sharp1ea7e0e2012-04-24 17:21:50 -07003825
3826void usb_enable_lpm(struct usb_device *udev) { }
Sarah Sharpe9261fb2012-05-21 08:29:01 -07003827EXPORT_SYMBOL_GPL(usb_enable_lpm);
Sarah Sharp1ea7e0e2012-04-24 17:21:50 -07003828
3829int usb_unlocked_disable_lpm(struct usb_device *udev)
3830{
3831 return 0;
3832}
Sarah Sharpe9261fb2012-05-21 08:29:01 -07003833EXPORT_SYMBOL_GPL(usb_unlocked_disable_lpm);
Sarah Sharp1ea7e0e2012-04-24 17:21:50 -07003834
3835void usb_unlocked_enable_lpm(struct usb_device *udev) { }
Sarah Sharpe9261fb2012-05-21 08:29:01 -07003836EXPORT_SYMBOL_GPL(usb_unlocked_enable_lpm);
Sarah Sharpf74631e2012-06-25 12:08:08 -07003837
3838int usb_disable_ltm(struct usb_device *udev)
3839{
3840 return 0;
3841}
3842EXPORT_SYMBOL_GPL(usb_disable_ltm);
3843
3844void usb_enable_ltm(struct usb_device *udev) { }
3845EXPORT_SYMBOL_GPL(usb_enable_ltm);
Alan Sternc4b51a42013-07-11 14:58:23 -04003846
3847#endif /* CONFIG_PM */
Alan Sternd388dab2006-07-01 22:14:24 -04003848
Linus Torvalds1da177e2005-04-16 15:20:36 -07003849
3850/* USB 2.0 spec, 7.1.7.3 / fig 7-29:
3851 *
3852 * Between connect detection and reset signaling there must be a delay
3853 * of 100ms at least for debounce and power-settling. The corresponding
3854 * timer shall restart whenever the downstream port detects a disconnect.
3855 *
3856 * Apparently there are some bluetooth and irda-dongles and a number of
3857 * low-speed devices for which this debounce period may last over a second.
3858 * Not covered by the spec - but easy to deal with.
3859 *
3860 * This implementation uses a 1500ms total debounce timeout; if the
3861 * connection isn't stable by then it returns -ETIMEDOUT. It checks
3862 * every 25ms for transient disconnects. When the port status has been
3863 * unchanged for 100ms it returns the port status.
3864 */
Lan Tianyuad493e52013-01-23 04:26:30 +08003865int hub_port_debounce(struct usb_hub *hub, int port1, bool must_be_connected)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003866{
3867 int ret;
3868 int total_time, stable_time = 0;
3869 u16 portchange, portstatus;
3870 unsigned connection = 0xffff;
3871
3872 for (total_time = 0; ; total_time += HUB_DEBOUNCE_STEP) {
3873 ret = hub_port_status(hub, port1, &portstatus, &portchange);
3874 if (ret < 0)
3875 return ret;
3876
3877 if (!(portchange & USB_PORT_STAT_C_CONNECTION) &&
3878 (portstatus & USB_PORT_STAT_CONNECTION) == connection) {
Lan Tianyuad493e52013-01-23 04:26:30 +08003879 if (!must_be_connected ||
3880 (connection == USB_PORT_STAT_CONNECTION))
3881 stable_time += HUB_DEBOUNCE_STEP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003882 if (stable_time >= HUB_DEBOUNCE_STABLE)
3883 break;
3884 } else {
3885 stable_time = 0;
3886 connection = portstatus & USB_PORT_STAT_CONNECTION;
3887 }
3888
3889 if (portchange & USB_PORT_STAT_C_CONNECTION) {
Lan Tianyuad493e52013-01-23 04:26:30 +08003890 usb_clear_port_feature(hub->hdev, port1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003891 USB_PORT_FEAT_C_CONNECTION);
3892 }
3893
3894 if (total_time >= HUB_DEBOUNCE_TIMEOUT)
3895 break;
3896 msleep(HUB_DEBOUNCE_STEP);
3897 }
3898
3899 dev_dbg (hub->intfdev,
3900 "debounce: port %d: total %dms stable %dms status 0x%x\n",
3901 port1, total_time, stable_time, portstatus);
3902
3903 if (stable_time < HUB_DEBOUNCE_STABLE)
3904 return -ETIMEDOUT;
3905 return portstatus;
3906}
3907
Inaky Perez-Gonzalezfc721f52008-04-08 13:24:46 -07003908void usb_ep0_reinit(struct usb_device *udev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003909{
Alan Sternddeac4e2009-01-15 17:03:33 -05003910 usb_disable_endpoint(udev, 0 + USB_DIR_IN, true);
3911 usb_disable_endpoint(udev, 0 + USB_DIR_OUT, true);
Alan Stern2caf7fc2008-12-31 11:31:33 -05003912 usb_enable_endpoint(udev, &udev->ep0, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003913}
Inaky Perez-Gonzalezfc721f52008-04-08 13:24:46 -07003914EXPORT_SYMBOL_GPL(usb_ep0_reinit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003915
3916#define usb_sndaddr0pipe() (PIPE_CONTROL << 30)
3917#define usb_rcvaddr0pipe() ((PIPE_CONTROL << 30) | USB_DIR_IN)
3918
Alan Stern4326ed02007-07-30 17:08:43 -04003919static int hub_set_address(struct usb_device *udev, int devnum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003920{
3921 int retval;
Sarah Sharpc6515272009-04-27 19:57:26 -07003922 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003923
Sarah Sharpc6515272009-04-27 19:57:26 -07003924 /*
3925 * The host controller will choose the device address,
3926 * instead of the core having chosen it earlier
3927 */
3928 if (!hcd->driver->address_device && devnum <= 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003929 return -EINVAL;
3930 if (udev->state == USB_STATE_ADDRESS)
3931 return 0;
3932 if (udev->state != USB_STATE_DEFAULT)
3933 return -EINVAL;
Andiry Xuc8d4af82010-10-14 07:22:51 -07003934 if (hcd->driver->address_device)
Sarah Sharpc6515272009-04-27 19:57:26 -07003935 retval = hcd->driver->address_device(hcd, udev);
Andiry Xuc8d4af82010-10-14 07:22:51 -07003936 else
Sarah Sharpc6515272009-04-27 19:57:26 -07003937 retval = usb_control_msg(udev, usb_sndaddr0pipe(),
3938 USB_REQ_SET_ADDRESS, 0, devnum, 0,
3939 NULL, 0, USB_CTRL_SET_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003940 if (retval == 0) {
Alan Stern3b29b682011-02-22 09:53:41 -05003941 update_devnum(udev, devnum);
David Vrabel4953d142008-04-08 13:24:46 -07003942 /* Device now using proper address. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003943 usb_set_device_state(udev, USB_STATE_ADDRESS);
Inaky Perez-Gonzalezfc721f52008-04-08 13:24:46 -07003944 usb_ep0_reinit(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003945 }
3946 return retval;
3947}
3948
3949/* Reset device, (re)assign address, get device descriptor.
3950 * Device connection must be stable, no more debouncing needed.
3951 * Returns device in USB_STATE_ADDRESS, except on error.
3952 *
3953 * If this is called for an already-existing device (as part of
Ming Lei742120c2008-06-18 22:00:29 +08003954 * usb_reset_and_verify_device), the caller must own the device lock. For a
Linus Torvalds1da177e2005-04-16 15:20:36 -07003955 * newly detected device that is not accessible through any global
3956 * pointers, it's not necessary to lock the device.
3957 */
3958static int
3959hub_port_init (struct usb_hub *hub, struct usb_device *udev, int port1,
3960 int retry_counter)
3961{
Arjan van de Ven4186ecf2006-01-11 15:55:29 +01003962 static DEFINE_MUTEX(usb_address0_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003963
3964 struct usb_device *hdev = hub->hdev;
Sarah Sharpe7b77172009-04-27 19:54:26 -07003965 struct usb_hcd *hcd = bus_to_hcd(hdev->bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003966 int i, j, retval;
3967 unsigned delay = HUB_SHORT_RESET_TIME;
3968 enum usb_device_speed oldspeed = udev->speed;
Michal Nazarewicze538dfd2011-08-30 17:11:19 +02003969 const char *speed;
Alan Stern4326ed02007-07-30 17:08:43 -04003970 int devnum = udev->devnum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003971
3972 /* root hub ports have a slightly longer reset period
3973 * (from USB 2.0 spec, section 7.1.7.5)
3974 */
3975 if (!hdev->parent) {
3976 delay = HUB_ROOT_RESET_TIME;
3977 if (port1 == hdev->bus->otg_port)
3978 hdev->bus->b_hnp_enable = 0;
3979 }
3980
3981 /* Some low speed devices have problems with the quick delay, so */
3982 /* be a bit pessimistic with those devices. RHbug #23670 */
3983 if (oldspeed == USB_SPEED_LOW)
3984 delay = HUB_LONG_RESET_TIME;
3985
Arjan van de Ven4186ecf2006-01-11 15:55:29 +01003986 mutex_lock(&usb_address0_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003987
Luben Tuikov07194ab2011-02-11 11:33:10 -08003988 /* Reset the device; full speed may morph to high speed */
3989 /* FIXME a USB 2.0 device may morph into SuperSpeed on reset. */
Andiry Xu75d7cf72011-09-13 16:41:11 -07003990 retval = hub_port_reset(hub, port1, udev, delay, false);
Luben Tuikov07194ab2011-02-11 11:33:10 -08003991 if (retval < 0) /* error or disconnect */
3992 goto fail;
3993 /* success, speed is known */
3994
Linus Torvalds1da177e2005-04-16 15:20:36 -07003995 retval = -ENODEV;
3996
3997 if (oldspeed != USB_SPEED_UNKNOWN && oldspeed != udev->speed) {
3998 dev_dbg(&udev->dev, "device reset changed speed!\n");
3999 goto fail;
4000 }
4001 oldspeed = udev->speed;
Alan Stern4326ed02007-07-30 17:08:43 -04004002
Linus Torvalds1da177e2005-04-16 15:20:36 -07004003 /* USB 2.0 section 5.5.3 talks about ep0 maxpacket ...
4004 * it's fixed size except for full speed devices.
Inaky Perez-Gonzalez5bb6e0a2006-08-25 19:35:30 -07004005 * For Wireless USB devices, ep0 max packet is always 512 (tho
4006 * reported as 0xff in the device descriptor). WUSB1.0[4.8.1].
Linus Torvalds1da177e2005-04-16 15:20:36 -07004007 */
4008 switch (udev->speed) {
Sarah Sharp6b403b02009-04-27 19:54:10 -07004009 case USB_SPEED_SUPER:
Greg Kroah-Hartman551cdbb2010-01-14 11:08:04 -08004010 case USB_SPEED_WIRELESS: /* fixed at 512 */
Harvey Harrison551509d2009-02-11 14:11:36 -08004011 udev->ep0.desc.wMaxPacketSize = cpu_to_le16(512);
Inaky Perez-Gonzalez5bb6e0a2006-08-25 19:35:30 -07004012 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004013 case USB_SPEED_HIGH: /* fixed at 64 */
Harvey Harrison551509d2009-02-11 14:11:36 -08004014 udev->ep0.desc.wMaxPacketSize = cpu_to_le16(64);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004015 break;
4016 case USB_SPEED_FULL: /* 8, 16, 32, or 64 */
4017 /* to determine the ep0 maxpacket size, try to read
4018 * the device descriptor to get bMaxPacketSize0 and
4019 * then correct our initial guess.
4020 */
Harvey Harrison551509d2009-02-11 14:11:36 -08004021 udev->ep0.desc.wMaxPacketSize = cpu_to_le16(64);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004022 break;
4023 case USB_SPEED_LOW: /* fixed at 8 */
Harvey Harrison551509d2009-02-11 14:11:36 -08004024 udev->ep0.desc.wMaxPacketSize = cpu_to_le16(8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004025 break;
4026 default:
4027 goto fail;
4028 }
Michal Nazarewicze538dfd2011-08-30 17:11:19 +02004029
4030 if (udev->speed == USB_SPEED_WIRELESS)
4031 speed = "variable speed Wireless";
4032 else
4033 speed = usb_speed_string(udev->speed);
4034
Sarah Sharpc6515272009-04-27 19:57:26 -07004035 if (udev->speed != USB_SPEED_SUPER)
4036 dev_info(&udev->dev,
Michal Nazarewicze538dfd2011-08-30 17:11:19 +02004037 "%s %s USB device number %d using %s\n",
4038 (udev->config) ? "reset" : "new", speed,
Alan Stern3b29b682011-02-22 09:53:41 -05004039 devnum, udev->bus->controller->driver->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004040
4041 /* Set up TT records, if needed */
4042 if (hdev->tt) {
4043 udev->tt = hdev->tt;
4044 udev->ttport = hdev->ttport;
4045 } else if (udev->speed != USB_SPEED_HIGH
4046 && hdev->speed == USB_SPEED_HIGH) {
Alan Sternd199c962011-01-31 10:56:37 -05004047 if (!hub->tt.hub) {
4048 dev_err(&udev->dev, "parent hub has no TT\n");
4049 retval = -EINVAL;
4050 goto fail;
4051 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004052 udev->tt = &hub->tt;
4053 udev->ttport = port1;
4054 }
4055
4056 /* Why interleave GET_DESCRIPTOR and SET_ADDRESS this way?
4057 * Because device hardware and firmware is sometimes buggy in
4058 * this area, and this is how Linux has done it for ages.
4059 * Change it cautiously.
4060 *
4061 * NOTE: If USE_NEW_SCHEME() is true we will start by issuing
4062 * a 64-byte GET_DESCRIPTOR request. This is what Windows does,
4063 * so it may help with some non-standards-compliant devices.
4064 * Otherwise we start with SET_ADDRESS and then try to read the
4065 * first 8 bytes of the device descriptor to get the ep0 maxpacket
4066 * value.
4067 */
4068 for (i = 0; i < GET_DESCRIPTOR_TRIES; (++i, msleep(100))) {
Sarah Sharpc6515272009-04-27 19:57:26 -07004069 if (USE_NEW_SCHEME(retry_counter) && !(hcd->driver->flags & HCD_USB3)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004070 struct usb_device_descriptor *buf;
4071 int r = 0;
4072
4073#define GET_DESCRIPTOR_BUFSIZE 64
4074 buf = kmalloc(GET_DESCRIPTOR_BUFSIZE, GFP_NOIO);
4075 if (!buf) {
4076 retval = -ENOMEM;
4077 continue;
4078 }
4079
Alan Sternb89ee192007-05-11 10:19:04 -04004080 /* Retry on all errors; some devices are flakey.
4081 * 255 is for WUSB devices, we actually need to use
4082 * 512 (WUSB1.0[4.8.1]).
Linus Torvalds1da177e2005-04-16 15:20:36 -07004083 */
4084 for (j = 0; j < 3; ++j) {
4085 buf->bMaxPacketSize0 = 0;
4086 r = usb_control_msg(udev, usb_rcvaddr0pipe(),
4087 USB_REQ_GET_DESCRIPTOR, USB_DIR_IN,
4088 USB_DT_DEVICE << 8, 0,
4089 buf, GET_DESCRIPTOR_BUFSIZE,
Jaroslav Kyselafd7c5192008-10-10 16:24:45 +02004090 initial_descriptor_timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004091 switch (buf->bMaxPacketSize0) {
Inaky Perez-Gonzalez5bb6e0a2006-08-25 19:35:30 -07004092 case 8: case 16: case 32: case 64: case 255:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004093 if (buf->bDescriptorType ==
4094 USB_DT_DEVICE) {
4095 r = 0;
4096 break;
4097 }
4098 /* FALL THROUGH */
4099 default:
4100 if (r == 0)
4101 r = -EPROTO;
4102 break;
4103 }
4104 if (r == 0)
4105 break;
4106 }
4107 udev->descriptor.bMaxPacketSize0 =
4108 buf->bMaxPacketSize0;
4109 kfree(buf);
4110
Andiry Xu75d7cf72011-09-13 16:41:11 -07004111 retval = hub_port_reset(hub, port1, udev, delay, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004112 if (retval < 0) /* error or disconnect */
4113 goto fail;
4114 if (oldspeed != udev->speed) {
4115 dev_dbg(&udev->dev,
4116 "device reset changed speed!\n");
4117 retval = -ENODEV;
4118 goto fail;
4119 }
4120 if (r) {
Alan Sterne9e88fb2013-03-27 16:14:01 -04004121 if (r != -ENODEV)
4122 dev_err(&udev->dev, "device descriptor read/64, error %d\n",
4123 r);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004124 retval = -EMSGSIZE;
4125 continue;
4126 }
4127#undef GET_DESCRIPTOR_BUFSIZE
4128 }
4129
Inaky Perez-Gonzalez6c529cd2008-04-08 13:24:46 -07004130 /*
4131 * If device is WUSB, we already assigned an
4132 * unauthorized address in the Connect Ack sequence;
4133 * authorization will assign the final address.
4134 */
Sarah Sharpc6515272009-04-27 19:57:26 -07004135 if (udev->wusb == 0) {
Inaky Perez-Gonzalez6c529cd2008-04-08 13:24:46 -07004136 for (j = 0; j < SET_ADDRESS_TRIES; ++j) {
4137 retval = hub_set_address(udev, devnum);
4138 if (retval >= 0)
4139 break;
4140 msleep(200);
4141 }
4142 if (retval < 0) {
Alan Sterne9e88fb2013-03-27 16:14:01 -04004143 if (retval != -ENODEV)
4144 dev_err(&udev->dev, "device not accepting address %d, error %d\n",
4145 devnum, retval);
Inaky Perez-Gonzalez6c529cd2008-04-08 13:24:46 -07004146 goto fail;
4147 }
Sarah Sharpc6515272009-04-27 19:57:26 -07004148 if (udev->speed == USB_SPEED_SUPER) {
4149 devnum = udev->devnum;
4150 dev_info(&udev->dev,
Alan Stern3b29b682011-02-22 09:53:41 -05004151 "%s SuperSpeed USB device number %d using %s\n",
Sarah Sharpc6515272009-04-27 19:57:26 -07004152 (udev->config) ? "reset" : "new",
Alan Stern3b29b682011-02-22 09:53:41 -05004153 devnum, udev->bus->controller->driver->name);
Sarah Sharpc6515272009-04-27 19:57:26 -07004154 }
Inaky Perez-Gonzalez6c529cd2008-04-08 13:24:46 -07004155
4156 /* cope with hardware quirkiness:
4157 * - let SET_ADDRESS settle, some device hardware wants it
4158 * - read ep0 maxpacket even for high and low speed,
4159 */
4160 msleep(10);
Sarah Sharpc6515272009-04-27 19:57:26 -07004161 if (USE_NEW_SCHEME(retry_counter) && !(hcd->driver->flags & HCD_USB3))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004162 break;
Inaky Perez-Gonzalez6c529cd2008-04-08 13:24:46 -07004163 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004164
4165 retval = usb_get_device_descriptor(udev, 8);
4166 if (retval < 8) {
Alan Sterne9e88fb2013-03-27 16:14:01 -04004167 if (retval != -ENODEV)
4168 dev_err(&udev->dev,
Wu Fengguangb9cef6c2008-12-15 15:32:01 +08004169 "device descriptor read/8, error %d\n",
4170 retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004171 if (retval >= 0)
4172 retval = -EMSGSIZE;
4173 } else {
4174 retval = 0;
4175 break;
4176 }
4177 }
4178 if (retval)
4179 goto fail;
4180
Peter Chenb76baa82012-11-09 09:44:43 +08004181 if (hcd->phy && !hdev->parent)
Peter Chenac965112012-11-09 09:44:44 +08004182 usb_phy_notify_connect(hcd->phy, udev->speed);
Peter Chenb76baa82012-11-09 09:44:43 +08004183
Elric Fud8aec3d2012-03-26 21:16:02 +08004184 /*
4185 * Some superspeed devices have finished the link training process
4186 * and attached to a superspeed hub port, but the device descriptor
4187 * got from those devices show they aren't superspeed devices. Warm
4188 * reset the port attached by the devices can fix them.
4189 */
4190 if ((udev->speed == USB_SPEED_SUPER) &&
4191 (le16_to_cpu(udev->descriptor.bcdUSB) < 0x0300)) {
4192 dev_err(&udev->dev, "got a wrong device descriptor, "
4193 "warm reset device\n");
4194 hub_port_reset(hub, port1, udev,
4195 HUB_BH_RESET_TIME, true);
4196 retval = -EINVAL;
4197 goto fail;
4198 }
4199
Sarah Sharp6b403b02009-04-27 19:54:10 -07004200 if (udev->descriptor.bMaxPacketSize0 == 0xff ||
4201 udev->speed == USB_SPEED_SUPER)
4202 i = 512;
4203 else
4204 i = udev->descriptor.bMaxPacketSize0;
Kuninori Morimoto29cc8892011-08-23 03:12:03 -07004205 if (usb_endpoint_maxp(&udev->ep0.desc) != i) {
Alan Stern56626a72010-10-14 15:25:21 -04004206 if (udev->speed == USB_SPEED_LOW ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07004207 !(i == 8 || i == 16 || i == 32 || i == 64)) {
Alan Stern56626a72010-10-14 15:25:21 -04004208 dev_err(&udev->dev, "Invalid ep0 maxpacket: %d\n", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004209 retval = -EMSGSIZE;
4210 goto fail;
4211 }
Alan Stern56626a72010-10-14 15:25:21 -04004212 if (udev->speed == USB_SPEED_FULL)
4213 dev_dbg(&udev->dev, "ep0 maxpacket = %d\n", i);
4214 else
4215 dev_warn(&udev->dev, "Using ep0 maxpacket: %d\n", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004216 udev->ep0.desc.wMaxPacketSize = cpu_to_le16(i);
Inaky Perez-Gonzalezfc721f52008-04-08 13:24:46 -07004217 usb_ep0_reinit(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004218 }
4219
4220 retval = usb_get_device_descriptor(udev, USB_DT_DEVICE_SIZE);
4221 if (retval < (signed)sizeof(udev->descriptor)) {
Alan Sterne9e88fb2013-03-27 16:14:01 -04004222 if (retval != -ENODEV)
4223 dev_err(&udev->dev, "device descriptor read/all, error %d\n",
4224 retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004225 if (retval >= 0)
4226 retval = -ENOMSG;
4227 goto fail;
4228 }
4229
Andiry Xu1ff4df52011-09-23 14:19:48 -07004230 if (udev->wusb == 0 && le16_to_cpu(udev->descriptor.bcdUSB) >= 0x0201) {
4231 retval = usb_get_bos_descriptor(udev);
Sarah Sharp51e0a012012-02-20 12:02:19 -08004232 if (!retval) {
Sarah Sharpd9b20992012-02-20 08:31:26 -08004233 udev->lpm_capable = usb_device_supports_lpm(udev);
Sarah Sharp51e0a012012-02-20 12:02:19 -08004234 usb_set_lpm_parameters(udev);
4235 }
Andiry Xu1ff4df52011-09-23 14:19:48 -07004236 }
Andiry Xu3148bf02011-09-23 14:19:47 -07004237
Linus Torvalds1da177e2005-04-16 15:20:36 -07004238 retval = 0;
Alek Du48f24972010-06-04 15:47:55 +08004239 /* notify HCD that we have a device connected and addressed */
4240 if (hcd->driver->update_device)
4241 hcd->driver->update_device(hcd, udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004242fail:
Alan Stern4326ed02007-07-30 17:08:43 -04004243 if (retval) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004244 hub_port_disable(hub, port1, 0);
Alan Stern3b29b682011-02-22 09:53:41 -05004245 update_devnum(udev, devnum); /* for disconnect processing */
Alan Stern4326ed02007-07-30 17:08:43 -04004246 }
Arjan van de Ven4186ecf2006-01-11 15:55:29 +01004247 mutex_unlock(&usb_address0_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004248 return retval;
4249}
4250
4251static void
4252check_highspeed (struct usb_hub *hub, struct usb_device *udev, int port1)
4253{
4254 struct usb_qualifier_descriptor *qual;
4255 int status;
4256
Christoph Lametere94b1762006-12-06 20:33:17 -08004257 qual = kmalloc (sizeof *qual, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004258 if (qual == NULL)
4259 return;
4260
4261 status = usb_get_descriptor (udev, USB_DT_DEVICE_QUALIFIER, 0,
4262 qual, sizeof *qual);
4263 if (status == sizeof *qual) {
4264 dev_info(&udev->dev, "not running at top speed; "
4265 "connect to a high speed hub\n");
4266 /* hub LEDs are probably harder to miss than syslog */
4267 if (hub->has_indicators) {
4268 hub->indicator[port1-1] = INDICATOR_GREEN_BLINK;
David Howellsc4028952006-11-22 14:57:56 +00004269 schedule_delayed_work (&hub->leds, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004270 }
4271 }
Jesper Juhl1bc3c9e2005-04-18 17:39:34 -07004272 kfree(qual);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004273}
4274
4275static unsigned
4276hub_power_remaining (struct usb_hub *hub)
4277{
4278 struct usb_device *hdev = hub->hdev;
4279 int remaining;
Alan Stern55c52712005-11-23 12:03:12 -05004280 int port1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004281
Alan Stern55c52712005-11-23 12:03:12 -05004282 if (!hub->limited_power)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004283 return 0;
4284
Alan Stern55c52712005-11-23 12:03:12 -05004285 remaining = hdev->bus_mA - hub->descriptor->bHubContrCurrent;
4286 for (port1 = 1; port1 <= hdev->maxchild; ++port1) {
Lan Tianyuff823c72012-09-05 13:44:32 +08004287 struct usb_device *udev = hub->ports[port1 - 1]->child;
Alan Stern55c52712005-11-23 12:03:12 -05004288 int delta;
Sebastian Andrzej Siewior430ee582012-12-18 15:25:47 +01004289 unsigned unit_load;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004290
4291 if (!udev)
4292 continue;
Sebastian Andrzej Siewior430ee582012-12-18 15:25:47 +01004293 if (hub_is_superspeed(udev))
4294 unit_load = 150;
4295 else
4296 unit_load = 100;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004297
Sebastian Andrzej Siewior430ee582012-12-18 15:25:47 +01004298 /*
4299 * Unconfigured devices may not use more than one unit load,
4300 * or 8mA for OTG ports
4301 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004302 if (udev->actconfig)
Sebastian Andrzej Siewior8d8479d2012-12-18 15:25:46 +01004303 delta = usb_get_max_power(udev, udev->actconfig);
Alan Stern55c52712005-11-23 12:03:12 -05004304 else if (port1 != udev->bus->otg_port || hdev->parent)
Sebastian Andrzej Siewior430ee582012-12-18 15:25:47 +01004305 delta = unit_load;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004306 else
Alan Stern55c52712005-11-23 12:03:12 -05004307 delta = 8;
4308 if (delta > hub->mA_per_port)
Wu Fengguangb9cef6c2008-12-15 15:32:01 +08004309 dev_warn(&udev->dev,
4310 "%dmA is over %umA budget for port %d!\n",
4311 delta, hub->mA_per_port, port1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004312 remaining -= delta;
4313 }
4314 if (remaining < 0) {
Alan Stern55c52712005-11-23 12:03:12 -05004315 dev_warn(hub->intfdev, "%dmA over power budget!\n",
4316 - remaining);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004317 remaining = 0;
4318 }
4319 return remaining;
4320}
4321
4322/* Handle physical or logical connection change events.
4323 * This routine is called when:
4324 * a port connection-change occurs;
4325 * a port enable-change occurs (often caused by EMI);
Ming Lei742120c2008-06-18 22:00:29 +08004326 * usb_reset_and_verify_device() encounters changed descriptors (as from
Linus Torvalds1da177e2005-04-16 15:20:36 -07004327 * a firmware download)
4328 * caller already locked the hub
4329 */
4330static void hub_port_connect_change(struct usb_hub *hub, int port1,
4331 u16 portstatus, u16 portchange)
4332{
4333 struct usb_device *hdev = hub->hdev;
4334 struct device *hub_dev = hub->intfdev;
Balaji Rao90da0962007-11-22 01:58:14 +05304335 struct usb_hcd *hcd = bus_to_hcd(hdev->bus);
Alan Stern24618b02008-04-28 11:06:28 -04004336 unsigned wHubCharacteristics =
4337 le16_to_cpu(hub->descriptor->wHubCharacteristics);
Alan Stern8808f002008-04-28 11:06:55 -04004338 struct usb_device *udev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004339 int status, i;
Sebastian Andrzej Siewior430ee582012-12-18 15:25:47 +01004340 unsigned unit_load;
Alan Stern24618b02008-04-28 11:06:28 -04004341
Linus Torvalds1da177e2005-04-16 15:20:36 -07004342 dev_dbg (hub_dev,
4343 "port %d, status %04x, change %04x, %s\n",
Sarah Sharp131dec32010-12-06 21:00:19 -08004344 port1, portstatus, portchange, portspeed(hub, portstatus));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004345
4346 if (hub->has_indicators) {
4347 set_port_led(hub, port1, HUB_LED_AUTO);
4348 hub->indicator[port1-1] = INDICATOR_AUTO;
4349 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004350
4351#ifdef CONFIG_USB_OTG
4352 /* during HNP, don't repeat the debounce */
4353 if (hdev->bus->is_b_host)
Alan Stern24618b02008-04-28 11:06:28 -04004354 portchange &= ~(USB_PORT_STAT_C_CONNECTION |
4355 USB_PORT_STAT_C_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004356#endif
4357
Alan Stern8808f002008-04-28 11:06:55 -04004358 /* Try to resuscitate an existing device */
Lan Tianyuff823c72012-09-05 13:44:32 +08004359 udev = hub->ports[port1 - 1]->child;
Alan Stern8808f002008-04-28 11:06:55 -04004360 if ((portstatus & USB_PORT_STAT_CONNECTION) && udev &&
4361 udev->state != USB_STATE_NOTATTACHED) {
Alan Stern8808f002008-04-28 11:06:55 -04004362 usb_lock_device(udev);
4363 if (portstatus & USB_PORT_STAT_ENABLE) {
4364 status = 0; /* Nothing to do */
Alan Stern8808f002008-04-28 11:06:55 -04004365
Alan Stern84ebc102013-03-27 16:14:46 -04004366#ifdef CONFIG_PM_RUNTIME
Alan Stern5257d972008-09-22 14:43:08 -04004367 } else if (udev->state == USB_STATE_SUSPENDED &&
4368 udev->persist_enabled) {
Alan Stern8808f002008-04-28 11:06:55 -04004369 /* For a suspended device, treat this as a
4370 * remote wakeup event.
4371 */
Alan Stern0534d462010-01-08 12:56:30 -05004372 status = usb_remote_wakeup(udev);
Alan Stern8808f002008-04-28 11:06:55 -04004373#endif
4374
4375 } else {
Alan Stern5257d972008-09-22 14:43:08 -04004376 status = -ENODEV; /* Don't resuscitate */
Alan Stern8808f002008-04-28 11:06:55 -04004377 }
4378 usb_unlock_device(udev);
4379
4380 if (status == 0) {
4381 clear_bit(port1, hub->change_bits);
4382 return;
4383 }
4384 }
4385
Alan Stern24618b02008-04-28 11:06:28 -04004386 /* Disconnect any existing devices under this port */
Peter Chenb76baa82012-11-09 09:44:43 +08004387 if (udev) {
4388 if (hcd->phy && !hdev->parent &&
4389 !(portstatus & USB_PORT_STAT_CONNECTION))
Peter Chenac965112012-11-09 09:44:44 +08004390 usb_phy_notify_disconnect(hcd->phy, udev->speed);
Lan Tianyuff823c72012-09-05 13:44:32 +08004391 usb_disconnect(&hub->ports[port1 - 1]->child);
Peter Chenb76baa82012-11-09 09:44:43 +08004392 }
Alan Stern24618b02008-04-28 11:06:28 -04004393 clear_bit(port1, hub->change_bits);
4394
Alan Stern253e0572009-10-27 15:20:13 -04004395 /* We can forget about a "removed" device when there's a physical
4396 * disconnect or the connect status changes.
4397 */
4398 if (!(portstatus & USB_PORT_STAT_CONNECTION) ||
4399 (portchange & USB_PORT_STAT_C_CONNECTION))
4400 clear_bit(port1, hub->removed_bits);
4401
Alan Stern5257d972008-09-22 14:43:08 -04004402 if (portchange & (USB_PORT_STAT_C_CONNECTION |
4403 USB_PORT_STAT_C_ENABLE)) {
Lan Tianyuad493e52013-01-23 04:26:30 +08004404 status = hub_port_debounce_be_stable(hub, port1);
Alan Stern5257d972008-09-22 14:43:08 -04004405 if (status < 0) {
Alan Sterne9e88fb2013-03-27 16:14:01 -04004406 if (status != -ENODEV && printk_ratelimit())
Alan Stern5257d972008-09-22 14:43:08 -04004407 dev_err(hub_dev, "connect-debounce failed, "
4408 "port %d disabled\n", port1);
4409 portstatus &= ~USB_PORT_STAT_CONNECTION;
4410 } else {
4411 portstatus = status;
4412 }
4413 }
4414
Alan Stern253e0572009-10-27 15:20:13 -04004415 /* Return now if debouncing failed or nothing is connected or
4416 * the device was "removed".
4417 */
4418 if (!(portstatus & USB_PORT_STAT_CONNECTION) ||
4419 test_bit(port1, hub->removed_bits)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004420
4421 /* maybe switch power back on (e.g. root hub was reset) */
Greg Kroah-Hartman74ad9bd2005-06-20 21:15:16 -07004422 if ((wHubCharacteristics & HUB_CHAR_LPSM) < 2
Andiry Xu0ed9a572011-04-27 18:07:43 +08004423 && !port_is_power_on(hub, portstatus))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004424 set_port_feature(hdev, port1, USB_PORT_FEAT_POWER);
Alan Stern5257d972008-09-22 14:43:08 -04004425
Linus Torvalds1da177e2005-04-16 15:20:36 -07004426 if (portstatus & USB_PORT_STAT_ENABLE)
4427 goto done;
4428 return;
4429 }
Sebastian Andrzej Siewior430ee582012-12-18 15:25:47 +01004430 if (hub_is_superspeed(hub->hdev))
4431 unit_load = 150;
4432 else
4433 unit_load = 100;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004434
Alan Sterne9e88fb2013-03-27 16:14:01 -04004435 status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004436 for (i = 0; i < SET_CONFIG_TRIES; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004437
4438 /* reallocate for each attempt, since references
4439 * to the previous one can escape in various ways
4440 */
4441 udev = usb_alloc_dev(hdev, hdev->bus, port1);
4442 if (!udev) {
4443 dev_err (hub_dev,
4444 "couldn't allocate port %d usb_device\n",
4445 port1);
4446 goto done;
4447 }
4448
4449 usb_set_device_state(udev, USB_STATE_POWERED);
Alan Stern55c52712005-11-23 12:03:12 -05004450 udev->bus_mA = hub->mA_per_port;
Alan Sternb6956ff2006-08-30 15:46:48 -04004451 udev->level = hdev->level + 1;
Inaky Perez-Gonzalez8af548d2008-04-08 13:24:46 -07004452 udev->wusb = hub_is_wusb(hub);
Alan Stern55c52712005-11-23 12:03:12 -05004453
Sarah Sharp131dec32010-12-06 21:00:19 -08004454 /* Only USB 3.0 devices are connected to SuperSpeed hubs. */
4455 if (hub_is_superspeed(hub->hdev))
Sarah Sharpe7b77172009-04-27 19:54:26 -07004456 udev->speed = USB_SPEED_SUPER;
4457 else
4458 udev->speed = USB_SPEED_UNKNOWN;
4459
Alan Stern3b29b682011-02-22 09:53:41 -05004460 choose_devnum(udev);
Andiry Xuc8d4af82010-10-14 07:22:51 -07004461 if (udev->devnum <= 0) {
4462 status = -ENOTCONN; /* Don't retry */
4463 goto loop;
Sarah Sharpc6515272009-04-27 19:57:26 -07004464 }
4465
Sarah Sharpe7b77172009-04-27 19:54:26 -07004466 /* reset (non-USB 3.0 devices) and get descriptor */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004467 status = hub_port_init(hub, udev, port1, i);
4468 if (status < 0)
4469 goto loop;
4470
Phil Dibowitz93362a82010-07-22 00:05:01 +02004471 usb_detect_quirks(udev);
4472 if (udev->quirks & USB_QUIRK_DELAY_INIT)
4473 msleep(1000);
4474
Linus Torvalds1da177e2005-04-16 15:20:36 -07004475 /* consecutive bus-powered hubs aren't reliable; they can
4476 * violate the voltage drop budget. if the new child has
4477 * a "powered" LED, users should notice we didn't enable it
4478 * (without reading syslog), even without per-port LEDs
4479 * on the parent.
4480 */
4481 if (udev->descriptor.bDeviceClass == USB_CLASS_HUB
Sebastian Andrzej Siewior430ee582012-12-18 15:25:47 +01004482 && udev->bus_mA <= unit_load) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004483 u16 devstat;
4484
4485 status = usb_get_status(udev, USB_RECIP_DEVICE, 0,
4486 &devstat);
Alan Stern15b73362013-07-30 15:35:40 -04004487 if (status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004488 dev_dbg(&udev->dev, "get status %d ?\n", status);
4489 goto loop_disable;
4490 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004491 if ((devstat & (1 << USB_DEVICE_SELF_POWERED)) == 0) {
4492 dev_err(&udev->dev,
4493 "can't connect bus-powered hub "
4494 "to this port\n");
4495 if (hub->has_indicators) {
4496 hub->indicator[port1-1] =
4497 INDICATOR_AMBER_BLINK;
David Howellsc4028952006-11-22 14:57:56 +00004498 schedule_delayed_work (&hub->leds, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004499 }
4500 status = -ENOTCONN; /* Don't retry */
4501 goto loop_disable;
4502 }
4503 }
4504
4505 /* check for devices running slower than they could */
4506 if (le16_to_cpu(udev->descriptor.bcdUSB) >= 0x0200
4507 && udev->speed == USB_SPEED_FULL
4508 && highspeed_hubs != 0)
4509 check_highspeed (hub, udev, port1);
4510
Greg Kroah-Hartmanfa286182012-05-14 09:20:37 -07004511 /* Store the parent's children[] pointer. At this point
Linus Torvalds1da177e2005-04-16 15:20:36 -07004512 * udev becomes globally accessible, although presumably
4513 * no one will look at it until hdev is unlocked.
4514 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004515 status = 0;
4516
4517 /* We mustn't add new devices if the parent hub has
4518 * been disconnected; we would race with the
4519 * recursively_mark_NOTATTACHED() routine.
4520 */
4521 spin_lock_irq(&device_state_lock);
4522 if (hdev->state == USB_STATE_NOTATTACHED)
4523 status = -ENOTCONN;
4524 else
Lan Tianyuff823c72012-09-05 13:44:32 +08004525 hub->ports[port1 - 1]->child = udev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004526 spin_unlock_irq(&device_state_lock);
4527
4528 /* Run it through the hoops (find a driver, etc) */
4529 if (!status) {
4530 status = usb_new_device(udev);
4531 if (status) {
4532 spin_lock_irq(&device_state_lock);
Lan Tianyuff823c72012-09-05 13:44:32 +08004533 hub->ports[port1 - 1]->child = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004534 spin_unlock_irq(&device_state_lock);
4535 }
4536 }
4537
Linus Torvalds1da177e2005-04-16 15:20:36 -07004538 if (status)
4539 goto loop_disable;
4540
4541 status = hub_power_remaining(hub);
4542 if (status)
Alan Stern55c52712005-11-23 12:03:12 -05004543 dev_dbg(hub_dev, "%dmA power budget left\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004544
4545 return;
4546
4547loop_disable:
4548 hub_port_disable(hub, port1, 1);
4549loop:
Inaky Perez-Gonzalezfc721f52008-04-08 13:24:46 -07004550 usb_ep0_reinit(udev);
Alan Stern3b29b682011-02-22 09:53:41 -05004551 release_devnum(udev);
Herbert Xuf7410ce2010-01-10 20:15:03 +11004552 hub_free_dev(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004553 usb_put_dev(udev);
Vikram Panditaffcdc182007-05-25 21:31:07 -07004554 if ((status == -ENOTCONN) || (status == -ENOTSUPP))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004555 break;
4556 }
Alan Stern3a311552008-05-20 16:58:29 -04004557 if (hub->hdev->parent ||
4558 !hcd->driver->port_handed_over ||
Alan Sterne9e88fb2013-03-27 16:14:01 -04004559 !(hcd->driver->port_handed_over)(hcd, port1)) {
4560 if (status != -ENOTCONN && status != -ENODEV)
4561 dev_err(hub_dev, "unable to enumerate USB device on port %d\n",
4562 port1);
4563 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004564
4565done:
4566 hub_port_disable(hub, port1, 1);
Balaji Rao90da0962007-11-22 01:58:14 +05304567 if (hcd->driver->relinquish_port && !hub->hdev->parent)
4568 hcd->driver->relinquish_port(hcd, port1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004569}
4570
Sarah Sharp714b07b2012-01-24 13:53:18 -08004571/* Returns 1 if there was a remote wakeup and a connect status change. */
4572static int hub_handle_remote_wakeup(struct usb_hub *hub, unsigned int port,
Sarah Sharp72937e12012-01-24 11:46:50 -08004573 u16 portstatus, u16 portchange)
Sarah Sharp714b07b2012-01-24 13:53:18 -08004574{
4575 struct usb_device *hdev;
4576 struct usb_device *udev;
4577 int connect_change = 0;
4578 int ret;
4579
4580 hdev = hub->hdev;
Lan Tianyuff823c72012-09-05 13:44:32 +08004581 udev = hub->ports[port - 1]->child;
Sarah Sharp4ee823b2011-11-14 18:00:01 -08004582 if (!hub_is_superspeed(hdev)) {
4583 if (!(portchange & USB_PORT_STAT_C_SUSPEND))
4584 return 0;
Lan Tianyuad493e52013-01-23 04:26:30 +08004585 usb_clear_port_feature(hdev, port, USB_PORT_FEAT_C_SUSPEND);
Sarah Sharp4ee823b2011-11-14 18:00:01 -08004586 } else {
4587 if (!udev || udev->state != USB_STATE_SUSPENDED ||
Sarah Sharp72937e12012-01-24 11:46:50 -08004588 (portstatus & USB_PORT_STAT_LINK_STATE) !=
4589 USB_SS_PORT_LS_U0)
Sarah Sharp4ee823b2011-11-14 18:00:01 -08004590 return 0;
4591 }
4592
Sarah Sharp714b07b2012-01-24 13:53:18 -08004593 if (udev) {
4594 /* TRSMRCY = 10 msec */
4595 msleep(10);
4596
4597 usb_lock_device(udev);
4598 ret = usb_remote_wakeup(udev);
4599 usb_unlock_device(udev);
4600 if (ret < 0)
4601 connect_change = 1;
4602 } else {
4603 ret = -ENODEV;
4604 hub_port_disable(hub, port, 1);
4605 }
4606 dev_dbg(hub->intfdev, "resume on port %d, status %d\n",
4607 port, ret);
4608 return connect_change;
4609}
4610
Linus Torvalds1da177e2005-04-16 15:20:36 -07004611static void hub_events(void)
4612{
4613 struct list_head *tmp;
4614 struct usb_device *hdev;
4615 struct usb_interface *intf;
4616 struct usb_hub *hub;
4617 struct device *hub_dev;
4618 u16 hubstatus;
4619 u16 hubchange;
4620 u16 portstatus;
4621 u16 portchange;
4622 int i, ret;
Sarah Sharp4ee823b2011-11-14 18:00:01 -08004623 int connect_change, wakeup_change;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004624
4625 /*
4626 * We restart the list every time to avoid a deadlock with
4627 * deleting hubs downstream from this one. This should be
4628 * safe since we delete the hub from the event list.
4629 * Not the most efficient, but avoids deadlocks.
4630 */
4631 while (1) {
4632
4633 /* Grab the first entry at the beginning of the list */
4634 spin_lock_irq(&hub_event_lock);
4635 if (list_empty(&hub_event_list)) {
4636 spin_unlock_irq(&hub_event_lock);
4637 break;
4638 }
4639
4640 tmp = hub_event_list.next;
4641 list_del_init(tmp);
4642
4643 hub = list_entry(tmp, struct usb_hub, event_list);
Alan Sterne8054852007-05-04 11:55:11 -04004644 kref_get(&hub->kref);
4645 spin_unlock_irq(&hub_event_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004646
Alan Sterne8054852007-05-04 11:55:11 -04004647 hdev = hub->hdev;
4648 hub_dev = hub->intfdev;
4649 intf = to_usb_interface(hub_dev);
Alan Stern40f122f2006-11-09 14:44:33 -05004650 dev_dbg(hub_dev, "state %d ports %d chg %04x evt %04x\n",
Krzysztof Mazur3bbc47d2013-08-22 14:49:40 +02004651 hdev->state, hdev->maxchild,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004652 /* NOTE: expects max 15 ports... */
4653 (u16) hub->change_bits[0],
Alan Stern40f122f2006-11-09 14:44:33 -05004654 (u16) hub->event_bits[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004655
Linus Torvalds1da177e2005-04-16 15:20:36 -07004656 /* Lock the device, then check to see if we were
4657 * disconnected while waiting for the lock to succeed. */
Alan Stern06b84e82007-05-04 11:54:50 -04004658 usb_lock_device(hdev);
Alan Sterne8054852007-05-04 11:55:11 -04004659 if (unlikely(hub->disconnected))
Alan Stern9bbdf1e2010-01-08 12:57:28 -05004660 goto loop_disconnected;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004661
4662 /* If the hub has died, clean up after it */
4663 if (hdev->state == USB_STATE_NOTATTACHED) {
Alan Stern7de18d82006-06-01 13:37:24 -04004664 hub->error = -ENODEV;
Alan Stern43303542008-04-28 11:07:31 -04004665 hub_quiesce(hub, HUB_DISCONNECT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004666 goto loop;
4667 }
4668
Alan Stern40f122f2006-11-09 14:44:33 -05004669 /* Autoresume */
4670 ret = usb_autopm_get_interface(intf);
4671 if (ret) {
4672 dev_dbg(hub_dev, "Can't autoresume: %d\n", ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004673 goto loop;
Alan Stern40f122f2006-11-09 14:44:33 -05004674 }
4675
4676 /* If this is an inactive hub, do nothing */
4677 if (hub->quiescing)
4678 goto loop_autopm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004679
4680 if (hub->error) {
4681 dev_dbg (hub_dev, "resetting for error %d\n",
4682 hub->error);
4683
Ming Lei742120c2008-06-18 22:00:29 +08004684 ret = usb_reset_device(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004685 if (ret) {
4686 dev_dbg (hub_dev,
4687 "error resetting hub: %d\n", ret);
Alan Stern40f122f2006-11-09 14:44:33 -05004688 goto loop_autopm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004689 }
4690
4691 hub->nerrors = 0;
4692 hub->error = 0;
4693 }
4694
4695 /* deal with port status changes */
Krzysztof Mazur3bbc47d2013-08-22 14:49:40 +02004696 for (i = 1; i <= hdev->maxchild; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004697 if (test_bit(i, hub->busy_bits))
4698 continue;
4699 connect_change = test_bit(i, hub->change_bits);
Sarah Sharp72937e12012-01-24 11:46:50 -08004700 wakeup_change = test_and_clear_bit(i, hub->wakeup_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004701 if (!test_and_clear_bit(i, hub->event_bits) &&
Sarah Sharp4ee823b2011-11-14 18:00:01 -08004702 !connect_change && !wakeup_change)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004703 continue;
4704
4705 ret = hub_port_status(hub, i,
4706 &portstatus, &portchange);
4707 if (ret < 0)
4708 continue;
4709
Linus Torvalds1da177e2005-04-16 15:20:36 -07004710 if (portchange & USB_PORT_STAT_C_CONNECTION) {
Lan Tianyuad493e52013-01-23 04:26:30 +08004711 usb_clear_port_feature(hdev, i,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004712 USB_PORT_FEAT_C_CONNECTION);
4713 connect_change = 1;
4714 }
4715
4716 if (portchange & USB_PORT_STAT_C_ENABLE) {
4717 if (!connect_change)
4718 dev_dbg (hub_dev,
4719 "port %d enable change, "
4720 "status %08x\n",
4721 i, portstatus);
Lan Tianyuad493e52013-01-23 04:26:30 +08004722 usb_clear_port_feature(hdev, i,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004723 USB_PORT_FEAT_C_ENABLE);
4724
4725 /*
4726 * EM interference sometimes causes badly
4727 * shielded USB devices to be shutdown by
4728 * the hub, this hack enables them again.
4729 * Works at least with mouse driver.
4730 */
4731 if (!(portstatus & USB_PORT_STAT_ENABLE)
4732 && !connect_change
Lan Tianyuff823c72012-09-05 13:44:32 +08004733 && hub->ports[i - 1]->child) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004734 dev_err (hub_dev,
4735 "port %i "
4736 "disabled by hub (EMI?), "
4737 "re-enabling...\n",
4738 i);
4739 connect_change = 1;
4740 }
4741 }
4742
Sarah Sharp72937e12012-01-24 11:46:50 -08004743 if (hub_handle_remote_wakeup(hub, i,
4744 portstatus, portchange))
Sarah Sharp714b07b2012-01-24 13:53:18 -08004745 connect_change = 1;
Alan Stern8808f002008-04-28 11:06:55 -04004746
Linus Torvalds1da177e2005-04-16 15:20:36 -07004747 if (portchange & USB_PORT_STAT_C_OVERCURRENT) {
Paul Bolle752d57a2011-03-11 18:03:52 +01004748 u16 status = 0;
4749 u16 unused;
4750
4751 dev_dbg(hub_dev, "over-current change on port "
4752 "%d\n", i);
Lan Tianyuad493e52013-01-23 04:26:30 +08004753 usb_clear_port_feature(hdev, i,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004754 USB_PORT_FEAT_C_OVER_CURRENT);
Paul Bolle752d57a2011-03-11 18:03:52 +01004755 msleep(100); /* Cool down */
Alan Stern8520f382008-09-22 14:44:26 -04004756 hub_power_on(hub, true);
Paul Bolle752d57a2011-03-11 18:03:52 +01004757 hub_port_status(hub, i, &status, &unused);
4758 if (status & USB_PORT_STAT_OVERCURRENT)
4759 dev_err(hub_dev, "over-current "
4760 "condition on port %d\n", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004761 }
4762
4763 if (portchange & USB_PORT_STAT_C_RESET) {
4764 dev_dbg (hub_dev,
4765 "reset change on port %d\n",
4766 i);
Lan Tianyuad493e52013-01-23 04:26:30 +08004767 usb_clear_port_feature(hdev, i,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004768 USB_PORT_FEAT_C_RESET);
4769 }
Sarah Sharpc7061572010-12-06 15:08:20 -08004770 if ((portchange & USB_PORT_STAT_C_BH_RESET) &&
4771 hub_is_superspeed(hub->hdev)) {
4772 dev_dbg(hub_dev,
4773 "warm reset change on port %d\n",
4774 i);
Lan Tianyuad493e52013-01-23 04:26:30 +08004775 usb_clear_port_feature(hdev, i,
Sarah Sharpc7061572010-12-06 15:08:20 -08004776 USB_PORT_FEAT_C_BH_PORT_RESET);
4777 }
John Youndbe79bb2001-09-17 00:00:00 -07004778 if (portchange & USB_PORT_STAT_C_LINK_STATE) {
Lan Tianyuad493e52013-01-23 04:26:30 +08004779 usb_clear_port_feature(hub->hdev, i,
John Youndbe79bb2001-09-17 00:00:00 -07004780 USB_PORT_FEAT_C_PORT_LINK_STATE);
4781 }
4782 if (portchange & USB_PORT_STAT_C_CONFIG_ERROR) {
4783 dev_warn(hub_dev,
4784 "config error on port %d\n",
4785 i);
Lan Tianyuad493e52013-01-23 04:26:30 +08004786 usb_clear_port_feature(hub->hdev, i,
John Youndbe79bb2001-09-17 00:00:00 -07004787 USB_PORT_FEAT_C_PORT_CONFIG_ERROR);
4788 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004789
Andiry Xu5e467f62011-04-27 18:07:54 +08004790 /* Warm reset a USB3 protocol port if it's in
4791 * SS.Inactive state.
4792 */
Stanislaw Ledwon8bea2bd2012-06-18 15:20:00 +02004793 if (hub_port_warm_reset_required(hub, portstatus)) {
Sarah Sharp65bdac52012-11-14 17:58:04 -08004794 int status;
Sarah Sharpd3b9d7a2012-11-01 11:20:44 -07004795 struct usb_device *udev =
4796 hub->ports[i - 1]->child;
Sarah Sharp65bdac52012-11-14 17:58:04 -08004797
Andiry Xu5e467f62011-04-27 18:07:54 +08004798 dev_dbg(hub_dev, "warm reset port %d\n", i);
Julius Wernerf3e94aa2013-07-30 19:51:20 -07004799 if (!udev || !(portstatus &
4800 USB_PORT_STAT_CONNECTION)) {
Sarah Sharpd3b9d7a2012-11-01 11:20:44 -07004801 status = hub_port_reset(hub, i,
4802 NULL, HUB_BH_RESET_TIME,
4803 true);
4804 if (status < 0)
4805 hub_port_disable(hub, i, 1);
4806 } else {
4807 usb_lock_device(udev);
4808 status = usb_reset_device(udev);
4809 usb_unlock_device(udev);
Julius Wernerf3e94aa2013-07-30 19:51:20 -07004810 connect_change = 0;
Sarah Sharpd3b9d7a2012-11-01 11:20:44 -07004811 }
Andiry Xu5e467f62011-04-27 18:07:54 +08004812 }
4813
Linus Torvalds1da177e2005-04-16 15:20:36 -07004814 if (connect_change)
4815 hub_port_connect_change(hub, i,
4816 portstatus, portchange);
4817 } /* end for i */
4818
4819 /* deal with hub status changes */
4820 if (test_and_clear_bit(0, hub->event_bits) == 0)
4821 ; /* do nothing */
4822 else if (hub_hub_status(hub, &hubstatus, &hubchange) < 0)
4823 dev_err (hub_dev, "get_hub_status failed\n");
4824 else {
4825 if (hubchange & HUB_CHANGE_LOCAL_POWER) {
4826 dev_dbg (hub_dev, "power change\n");
4827 clear_hub_feature(hdev, C_HUB_LOCAL_POWER);
Alan Stern55c52712005-11-23 12:03:12 -05004828 if (hubstatus & HUB_STATUS_LOCAL_POWER)
4829 /* FIXME: Is this always true? */
Alan Stern55c52712005-11-23 12:03:12 -05004830 hub->limited_power = 1;
jidong xiao403fae72007-09-14 00:08:51 +08004831 else
4832 hub->limited_power = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004833 }
4834 if (hubchange & HUB_CHANGE_OVERCURRENT) {
Paul Bolle752d57a2011-03-11 18:03:52 +01004835 u16 status = 0;
4836 u16 unused;
4837
4838 dev_dbg(hub_dev, "over-current change\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004839 clear_hub_feature(hdev, C_HUB_OVER_CURRENT);
Paul Bolle752d57a2011-03-11 18:03:52 +01004840 msleep(500); /* Cool down */
Alan Stern8520f382008-09-22 14:44:26 -04004841 hub_power_on(hub, true);
Paul Bolle752d57a2011-03-11 18:03:52 +01004842 hub_hub_status(hub, &status, &unused);
4843 if (status & HUB_STATUS_OVERCURRENT)
4844 dev_err(hub_dev, "over-current "
4845 "condition\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004846 }
4847 }
4848
Alan Stern8e4ceb32009-12-07 13:01:37 -05004849 loop_autopm:
4850 /* Balance the usb_autopm_get_interface() above */
4851 usb_autopm_put_interface_no_suspend(intf);
4852 loop:
4853 /* Balance the usb_autopm_get_interface_no_resume() in
4854 * kick_khubd() and allow autosuspend.
4855 */
4856 usb_autopm_put_interface(intf);
Alan Stern9bbdf1e2010-01-08 12:57:28 -05004857 loop_disconnected:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004858 usb_unlock_device(hdev);
Alan Sterne8054852007-05-04 11:55:11 -04004859 kref_put(&hub->kref, hub_release);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004860
4861 } /* end while (1) */
4862}
4863
4864static int hub_thread(void *__unused)
4865{
Alan Stern3bb1af52008-03-03 15:15:36 -05004866 /* khubd needs to be freezable to avoid intefering with USB-PERSIST
4867 * port handover. Otherwise it might see that a full-speed device
4868 * was gone before the EHCI controller had handed its port over to
4869 * the companion full-speed controller.
4870 */
Rafael J. Wysocki83144182007-07-17 04:03:35 -07004871 set_freezable();
Alan Stern3bb1af52008-03-03 15:15:36 -05004872
Linus Torvalds1da177e2005-04-16 15:20:36 -07004873 do {
4874 hub_events();
Rafael J. Wysockie42837b2007-10-18 03:04:45 -07004875 wait_event_freezable(khubd_wait,
akpm@osdl.org9c8d6172005-06-20 14:29:58 -07004876 !list_empty(&hub_event_list) ||
4877 kthread_should_stop());
akpm@osdl.org9c8d6172005-06-20 14:29:58 -07004878 } while (!kthread_should_stop() || !list_empty(&hub_event_list));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004879
akpm@osdl.org9c8d6172005-06-20 14:29:58 -07004880 pr_debug("%s: khubd exiting\n", usbcore_name);
4881 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004882}
4883
Németh Márton1e927d92010-01-10 15:34:53 +01004884static const struct usb_device_id hub_id_table[] = {
Ming Leie6f30de2012-10-24 11:59:24 +08004885 { .match_flags = USB_DEVICE_ID_MATCH_VENDOR
4886 | USB_DEVICE_ID_MATCH_INT_CLASS,
4887 .idVendor = USB_VENDOR_GENESYS_LOGIC,
4888 .bInterfaceClass = USB_CLASS_HUB,
4889 .driver_info = HUB_QUIRK_CHECK_PORT_AUTOSUSPEND},
Linus Torvalds1da177e2005-04-16 15:20:36 -07004890 { .match_flags = USB_DEVICE_ID_MATCH_DEV_CLASS,
4891 .bDeviceClass = USB_CLASS_HUB},
4892 { .match_flags = USB_DEVICE_ID_MATCH_INT_CLASS,
4893 .bInterfaceClass = USB_CLASS_HUB},
4894 { } /* Terminating entry */
4895};
4896
4897MODULE_DEVICE_TABLE (usb, hub_id_table);
4898
4899static struct usb_driver hub_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004900 .name = "hub",
4901 .probe = hub_probe,
4902 .disconnect = hub_disconnect,
4903 .suspend = hub_suspend,
4904 .resume = hub_resume,
Alan Sternf07600c2007-05-30 15:38:16 -04004905 .reset_resume = hub_reset_resume,
Alan Stern7de18d82006-06-01 13:37:24 -04004906 .pre_reset = hub_pre_reset,
4907 .post_reset = hub_post_reset,
Andi Kleenc532b292010-06-01 23:04:41 +02004908 .unlocked_ioctl = hub_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004909 .id_table = hub_id_table,
Alan Stern40f122f2006-11-09 14:44:33 -05004910 .supports_autosuspend = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004911};
4912
4913int usb_hub_init(void)
4914{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004915 if (usb_register(&hub_driver) < 0) {
4916 printk(KERN_ERR "%s: can't register hub driver\n",
4917 usbcore_name);
4918 return -1;
4919 }
4920
akpm@osdl.org9c8d6172005-06-20 14:29:58 -07004921 khubd_task = kthread_run(hub_thread, NULL, "khubd");
4922 if (!IS_ERR(khubd_task))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004923 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004924
4925 /* Fall through if kernel_thread failed */
4926 usb_deregister(&hub_driver);
4927 printk(KERN_ERR "%s: can't start khubd\n", usbcore_name);
4928
4929 return -1;
4930}
4931
4932void usb_hub_cleanup(void)
4933{
akpm@osdl.org9c8d6172005-06-20 14:29:58 -07004934 kthread_stop(khubd_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004935
4936 /*
4937 * Hub resources are freed for us by usb_deregister. It calls
4938 * usb_driver_purge on every device which in turn calls that
4939 * devices disconnect function if it is using this driver.
4940 * The hub_disconnect function takes care of releasing the
4941 * individual hub resources. -greg
4942 */
4943 usb_deregister(&hub_driver);
4944} /* usb_hub_cleanup() */
4945
Alan Sterneb764c42008-03-03 15:16:04 -05004946static int descriptors_changed(struct usb_device *udev,
4947 struct usb_device_descriptor *old_device_descriptor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004948{
Alan Sterneb764c42008-03-03 15:16:04 -05004949 int changed = 0;
4950 unsigned index;
4951 unsigned serial_len = 0;
4952 unsigned len;
4953 unsigned old_length;
4954 int length;
4955 char *buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004956
Alan Sterneb764c42008-03-03 15:16:04 -05004957 if (memcmp(&udev->descriptor, old_device_descriptor,
4958 sizeof(*old_device_descriptor)) != 0)
4959 return 1;
4960
4961 /* Since the idVendor, idProduct, and bcdDevice values in the
4962 * device descriptor haven't changed, we will assume the
4963 * Manufacturer and Product strings haven't changed either.
4964 * But the SerialNumber string could be different (e.g., a
4965 * different flash card of the same brand).
4966 */
4967 if (udev->serial)
4968 serial_len = strlen(udev->serial) + 1;
4969
4970 len = serial_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004971 for (index = 0; index < udev->descriptor.bNumConfigurations; index++) {
Alan Sterneb764c42008-03-03 15:16:04 -05004972 old_length = le16_to_cpu(udev->config[index].desc.wTotalLength);
4973 len = max(len, old_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004974 }
Alan Sterneb764c42008-03-03 15:16:04 -05004975
Oliver Neukum0cc1a512008-01-10 10:31:48 +01004976 buf = kmalloc(len, GFP_NOIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004977 if (buf == NULL) {
4978 dev_err(&udev->dev, "no mem to re-read configs after reset\n");
4979 /* assume the worst */
4980 return 1;
4981 }
4982 for (index = 0; index < udev->descriptor.bNumConfigurations; index++) {
Alan Sterneb764c42008-03-03 15:16:04 -05004983 old_length = le16_to_cpu(udev->config[index].desc.wTotalLength);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004984 length = usb_get_descriptor(udev, USB_DT_CONFIG, index, buf,
4985 old_length);
Alan Sterneb764c42008-03-03 15:16:04 -05004986 if (length != old_length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004987 dev_dbg(&udev->dev, "config index %d, error %d\n",
4988 index, length);
Alan Sterneb764c42008-03-03 15:16:04 -05004989 changed = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004990 break;
4991 }
4992 if (memcmp (buf, udev->rawdescriptors[index], old_length)
4993 != 0) {
4994 dev_dbg(&udev->dev, "config index %d changed (#%d)\n",
Alan Sterneb764c42008-03-03 15:16:04 -05004995 index,
4996 ((struct usb_config_descriptor *) buf)->
4997 bConfigurationValue);
4998 changed = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004999 break;
5000 }
5001 }
Alan Sterneb764c42008-03-03 15:16:04 -05005002
5003 if (!changed && serial_len) {
5004 length = usb_string(udev, udev->descriptor.iSerialNumber,
5005 buf, serial_len);
5006 if (length + 1 != serial_len) {
5007 dev_dbg(&udev->dev, "serial string error %d\n",
5008 length);
5009 changed = 1;
5010 } else if (memcmp(buf, udev->serial, length) != 0) {
5011 dev_dbg(&udev->dev, "serial string changed\n");
5012 changed = 1;
5013 }
5014 }
5015
Linus Torvalds1da177e2005-04-16 15:20:36 -07005016 kfree(buf);
Alan Sterneb764c42008-03-03 15:16:04 -05005017 return changed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005018}
5019
5020/**
Ming Lei742120c2008-06-18 22:00:29 +08005021 * usb_reset_and_verify_device - perform a USB port reset to reinitialize a device
Linus Torvalds1da177e2005-04-16 15:20:36 -07005022 * @udev: device to reset (not in SUSPENDED or NOTATTACHED state)
5023 *
Alan Stern79efa092006-06-01 13:33:42 -04005024 * WARNING - don't use this routine to reset a composite device
5025 * (one with multiple interfaces owned by separate drivers)!
Ming Lei742120c2008-06-18 22:00:29 +08005026 * Use usb_reset_device() instead.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005027 *
5028 * Do a port reset, reassign the device's address, and establish its
5029 * former operating configuration. If the reset fails, or the device's
5030 * descriptors change from their values before the reset, or the original
5031 * configuration and altsettings cannot be restored, a flag will be set
5032 * telling khubd to pretend the device has been disconnected and then
5033 * re-connected. All drivers will be unbound, and the device will be
5034 * re-enumerated and probed all over again.
5035 *
Yacine Belkadi626f0902013-08-02 20:10:04 +02005036 * Return: 0 if the reset succeeded, -ENODEV if the device has been
Linus Torvalds1da177e2005-04-16 15:20:36 -07005037 * flagged for logical disconnection, or some other negative error code
5038 * if the reset wasn't even attempted.
5039 *
Yacine Belkadi626f0902013-08-02 20:10:04 +02005040 * Note:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005041 * The caller must own the device lock. For example, it's safe to use
5042 * this from a driver probe() routine after downloading new firmware.
5043 * For calls that might not occur during probe(), drivers should lock
5044 * the device using usb_lock_device_for_reset().
Alan Stern6bc6cff2007-05-04 11:53:03 -04005045 *
5046 * Locking exception: This routine may also be called from within an
5047 * autoresume handler. Such usage won't conflict with other tasks
5048 * holding the device lock because these tasks should always call
5049 * usb_autopm_resume_device(), thereby preventing any unwanted autoresume.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005050 */
Ming Lei742120c2008-06-18 22:00:29 +08005051static int usb_reset_and_verify_device(struct usb_device *udev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005052{
5053 struct usb_device *parent_hdev = udev->parent;
5054 struct usb_hub *parent_hub;
Sarah Sharp3f0479e2009-12-03 09:44:36 -08005055 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005056 struct usb_device_descriptor descriptor = udev->descriptor;
Alan Stern12c3da32005-11-23 12:09:52 -05005057 int i, ret = 0;
5058 int port1 = udev->portnum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005059
5060 if (udev->state == USB_STATE_NOTATTACHED ||
5061 udev->state == USB_STATE_SUSPENDED) {
5062 dev_dbg(&udev->dev, "device reset not allowed in state %d\n",
5063 udev->state);
5064 return -EINVAL;
5065 }
5066
5067 if (!parent_hdev) {
Wolfram Sang4bec9912010-08-29 18:17:14 +02005068 /* this requires hcd-specific logic; see ohci_restart() */
Harvey Harrison441b62c2008-03-03 16:08:34 -08005069 dev_dbg(&udev->dev, "%s for root hub!\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005070 return -EISDIR;
5071 }
Lan Tianyuad493e52013-01-23 04:26:30 +08005072 parent_hub = usb_hub_to_struct_hub(parent_hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005073
Sarah Sharpf74631e2012-06-25 12:08:08 -07005074 /* Disable LPM and LTM while we reset the device and reinstall the alt
5075 * settings. Device-initiated LPM settings, and system exit latency
5076 * settings are cleared when the device is reset, so we have to set
5077 * them up again.
Sarah Sharp6d1d0512012-07-03 22:49:04 -07005078 */
5079 ret = usb_unlocked_disable_lpm(udev);
5080 if (ret) {
5081 dev_err(&udev->dev, "%s Failed to disable LPM\n.", __func__);
5082 goto re_enumerate;
5083 }
Sarah Sharpf74631e2012-06-25 12:08:08 -07005084 ret = usb_disable_ltm(udev);
5085 if (ret) {
5086 dev_err(&udev->dev, "%s Failed to disable LTM\n.",
5087 __func__);
5088 goto re_enumerate;
5089 }
Sarah Sharp6d1d0512012-07-03 22:49:04 -07005090
Linus Torvalds1da177e2005-04-16 15:20:36 -07005091 set_bit(port1, parent_hub->busy_bits);
5092 for (i = 0; i < SET_CONFIG_TRIES; ++i) {
5093
5094 /* ep0 maxpacket size may change; let the HCD know about it.
5095 * Other endpoints will be handled by re-enumeration. */
Inaky Perez-Gonzalezfc721f52008-04-08 13:24:46 -07005096 usb_ep0_reinit(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005097 ret = hub_port_init(parent_hub, udev, port1, i);
Alan Sterndd4dd192007-05-04 11:55:54 -04005098 if (ret >= 0 || ret == -ENOTCONN || ret == -ENODEV)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005099 break;
5100 }
5101 clear_bit(port1, parent_hub->busy_bits);
Alan Sternd5cbad42006-08-11 16:52:39 -04005102
Linus Torvalds1da177e2005-04-16 15:20:36 -07005103 if (ret < 0)
5104 goto re_enumerate;
5105
5106 /* Device might have changed firmware (DFU or similar) */
Alan Sterneb764c42008-03-03 15:16:04 -05005107 if (descriptors_changed(udev, &descriptor)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005108 dev_info(&udev->dev, "device firmware changed\n");
5109 udev->descriptor = descriptor; /* for disconnect() calls */
5110 goto re_enumerate;
5111 }
Alan Stern4fe03872009-02-26 10:21:02 -05005112
5113 /* Restore the device's previous configuration */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005114 if (!udev->actconfig)
5115 goto done;
Sarah Sharp3f0479e2009-12-03 09:44:36 -08005116
Sarah Sharpd673bfc2010-10-15 08:55:24 -07005117 mutex_lock(hcd->bandwidth_mutex);
Sarah Sharp3f0479e2009-12-03 09:44:36 -08005118 ret = usb_hcd_alloc_bandwidth(udev, udev->actconfig, NULL, NULL);
5119 if (ret < 0) {
5120 dev_warn(&udev->dev,
5121 "Busted HC? Not enough HCD resources for "
5122 "old configuration.\n");
Sarah Sharpd673bfc2010-10-15 08:55:24 -07005123 mutex_unlock(hcd->bandwidth_mutex);
Sarah Sharp3f0479e2009-12-03 09:44:36 -08005124 goto re_enumerate;
5125 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005126 ret = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
5127 USB_REQ_SET_CONFIGURATION, 0,
5128 udev->actconfig->desc.bConfigurationValue, 0,
5129 NULL, 0, USB_CTRL_SET_TIMEOUT);
5130 if (ret < 0) {
5131 dev_err(&udev->dev,
5132 "can't restore configuration #%d (error=%d)\n",
5133 udev->actconfig->desc.bConfigurationValue, ret);
Sarah Sharpd673bfc2010-10-15 08:55:24 -07005134 mutex_unlock(hcd->bandwidth_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005135 goto re_enumerate;
5136 }
Sarah Sharpd673bfc2010-10-15 08:55:24 -07005137 mutex_unlock(hcd->bandwidth_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005138 usb_set_device_state(udev, USB_STATE_CONFIGURED);
5139
Alan Stern4fe03872009-02-26 10:21:02 -05005140 /* Put interfaces back into the same altsettings as before.
5141 * Don't bother to send the Set-Interface request for interfaces
5142 * that were already in altsetting 0; besides being unnecessary,
5143 * many devices can't handle it. Instead just reset the host-side
5144 * endpoint state.
5145 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005146 for (i = 0; i < udev->actconfig->desc.bNumInterfaces; i++) {
Sarah Sharp3f0479e2009-12-03 09:44:36 -08005147 struct usb_host_config *config = udev->actconfig;
5148 struct usb_interface *intf = config->interface[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07005149 struct usb_interface_descriptor *desc;
5150
Linus Torvalds1da177e2005-04-16 15:20:36 -07005151 desc = &intf->cur_altsetting->desc;
Alan Stern4fe03872009-02-26 10:21:02 -05005152 if (desc->bAlternateSetting == 0) {
5153 usb_disable_interface(udev, intf, true);
5154 usb_enable_interface(udev, intf, true);
5155 ret = 0;
5156 } else {
Sarah Sharp04a723e2010-01-06 10:16:51 -08005157 /* Let the bandwidth allocation function know that this
5158 * device has been reset, and it will have to use
5159 * alternate setting 0 as the current alternate setting.
Sarah Sharp3f0479e2009-12-03 09:44:36 -08005160 */
Sarah Sharp04a723e2010-01-06 10:16:51 -08005161 intf->resetting_device = 1;
Alan Stern4fe03872009-02-26 10:21:02 -05005162 ret = usb_set_interface(udev, desc->bInterfaceNumber,
5163 desc->bAlternateSetting);
Sarah Sharp04a723e2010-01-06 10:16:51 -08005164 intf->resetting_device = 0;
Alan Stern4fe03872009-02-26 10:21:02 -05005165 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005166 if (ret < 0) {
5167 dev_err(&udev->dev, "failed to restore interface %d "
5168 "altsetting %d (error=%d)\n",
5169 desc->bInterfaceNumber,
5170 desc->bAlternateSetting,
5171 ret);
5172 goto re_enumerate;
5173 }
5174 }
5175
5176done:
Sarah Sharpf74631e2012-06-25 12:08:08 -07005177 /* Now that the alt settings are re-installed, enable LTM and LPM. */
Alan Stern78d9a482008-06-23 16:00:40 -04005178 usb_unlocked_enable_lpm(udev);
Sarah Sharpf74631e2012-06-25 12:08:08 -07005179 usb_enable_ltm(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005180 return 0;
5181
5182re_enumerate:
Sarah Sharp6d1d0512012-07-03 22:49:04 -07005183 /* LPM state doesn't matter when we're about to destroy the device. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005184 hub_port_logical_disconnect(parent_hub, port1);
5185 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005186}
5187
5188/**
5189 * usb_reset_device - warn interface drivers and perform a USB port reset
5190 * @udev: device to reset (not in SUSPENDED or NOTATTACHED state)
5191 *
Alan Stern79efa092006-06-01 13:33:42 -04005192 * Warns all drivers bound to registered interfaces (using their pre_reset
5193 * method), performs the port reset, and then lets the drivers know that
Ming Lei742120c2008-06-18 22:00:29 +08005194 * the reset is over (using their post_reset method).
Alan Stern79efa092006-06-01 13:33:42 -04005195 *
Yacine Belkadi626f0902013-08-02 20:10:04 +02005196 * Return: The same as for usb_reset_and_verify_device().
Alan Stern79efa092006-06-01 13:33:42 -04005197 *
Yacine Belkadi626f0902013-08-02 20:10:04 +02005198 * Note:
Alan Stern79efa092006-06-01 13:33:42 -04005199 * The caller must own the device lock. For example, it's safe to use
5200 * this from a driver probe() routine after downloading new firmware.
5201 * For calls that might not occur during probe(), drivers should lock
Ming Lei742120c2008-06-18 22:00:29 +08005202 * the device using usb_lock_device_for_reset().
Alan Stern79efa092006-06-01 13:33:42 -04005203 *
5204 * If an interface is currently being probed or disconnected, we assume
5205 * its driver knows how to handle resets. For all other interfaces,
5206 * if the driver doesn't have pre_reset and post_reset methods then
5207 * we attempt to unbind it and rebind afterward.
Alan Stern79efa092006-06-01 13:33:42 -04005208 */
Ming Lei742120c2008-06-18 22:00:29 +08005209int usb_reset_device(struct usb_device *udev)
Alan Stern79efa092006-06-01 13:33:42 -04005210{
5211 int ret;
Alan Stern852c4b42007-12-03 15:44:29 -05005212 int i;
Ming Lei4d769de2013-02-22 16:34:22 -08005213 unsigned int noio_flag;
Alan Stern79efa092006-06-01 13:33:42 -04005214 struct usb_host_config *config = udev->actconfig;
5215
5216 if (udev->state == USB_STATE_NOTATTACHED ||
5217 udev->state == USB_STATE_SUSPENDED) {
5218 dev_dbg(&udev->dev, "device reset not allowed in state %d\n",
5219 udev->state);
5220 return -EINVAL;
5221 }
5222
Ming Lei4d769de2013-02-22 16:34:22 -08005223 /*
5224 * Don't allocate memory with GFP_KERNEL in current
5225 * context to avoid possible deadlock if usb mass
5226 * storage interface or usbnet interface(iSCSI case)
5227 * is included in current configuration. The easist
5228 * approach is to do it for every device reset,
5229 * because the device 'memalloc_noio' flag may have
5230 * not been set before reseting the usb device.
5231 */
5232 noio_flag = memalloc_noio_save();
5233
Alan Stern645daaa2006-08-30 15:47:02 -04005234 /* Prevent autosuspend during the reset */
Alan Stern94fcda12006-11-20 11:38:46 -05005235 usb_autoresume_device(udev);
Alan Stern645daaa2006-08-30 15:47:02 -04005236
Alan Stern79efa092006-06-01 13:33:42 -04005237 if (config) {
Alan Stern79efa092006-06-01 13:33:42 -04005238 for (i = 0; i < config->desc.bNumInterfaces; ++i) {
Alan Stern852c4b42007-12-03 15:44:29 -05005239 struct usb_interface *cintf = config->interface[i];
5240 struct usb_driver *drv;
Alan Stern78d9a482008-06-23 16:00:40 -04005241 int unbind = 0;
Alan Stern852c4b42007-12-03 15:44:29 -05005242
5243 if (cintf->dev.driver) {
Alan Stern79efa092006-06-01 13:33:42 -04005244 drv = to_usb_driver(cintf->dev.driver);
Alan Stern78d9a482008-06-23 16:00:40 -04005245 if (drv->pre_reset && drv->post_reset)
5246 unbind = (drv->pre_reset)(cintf);
5247 else if (cintf->condition ==
5248 USB_INTERFACE_BOUND)
5249 unbind = 1;
5250 if (unbind)
5251 usb_forced_unbind_intf(cintf);
Alan Stern79efa092006-06-01 13:33:42 -04005252 }
5253 }
5254 }
5255
Ming Lei742120c2008-06-18 22:00:29 +08005256 ret = usb_reset_and_verify_device(udev);
Alan Stern79efa092006-06-01 13:33:42 -04005257
5258 if (config) {
Alan Stern79efa092006-06-01 13:33:42 -04005259 for (i = config->desc.bNumInterfaces - 1; i >= 0; --i) {
Alan Stern852c4b42007-12-03 15:44:29 -05005260 struct usb_interface *cintf = config->interface[i];
5261 struct usb_driver *drv;
Alan Stern78d9a482008-06-23 16:00:40 -04005262 int rebind = cintf->needs_binding;
Alan Stern852c4b42007-12-03 15:44:29 -05005263
Alan Stern78d9a482008-06-23 16:00:40 -04005264 if (!rebind && cintf->dev.driver) {
Alan Stern79efa092006-06-01 13:33:42 -04005265 drv = to_usb_driver(cintf->dev.driver);
5266 if (drv->post_reset)
Alan Stern78d9a482008-06-23 16:00:40 -04005267 rebind = (drv->post_reset)(cintf);
5268 else if (cintf->condition ==
5269 USB_INTERFACE_BOUND)
5270 rebind = 1;
Alan Stern79efa092006-06-01 13:33:42 -04005271 }
Alan Stern6c640942008-10-21 15:40:03 -04005272 if (ret == 0 && rebind)
Alan Stern78d9a482008-06-23 16:00:40 -04005273 usb_rebind_intf(cintf);
Alan Stern79efa092006-06-01 13:33:42 -04005274 }
5275 }
5276
Alan Stern94fcda12006-11-20 11:38:46 -05005277 usb_autosuspend_device(udev);
Ming Lei4d769de2013-02-22 16:34:22 -08005278 memalloc_noio_restore(noio_flag);
Alan Stern79efa092006-06-01 13:33:42 -04005279 return ret;
5280}
Ming Lei742120c2008-06-18 22:00:29 +08005281EXPORT_SYMBOL_GPL(usb_reset_device);
Inaky Perez-Gonzalezdc023dc2008-11-13 10:31:35 -08005282
5283
5284/**
5285 * usb_queue_reset_device - Reset a USB device from an atomic context
5286 * @iface: USB interface belonging to the device to reset
5287 *
5288 * This function can be used to reset a USB device from an atomic
5289 * context, where usb_reset_device() won't work (as it blocks).
5290 *
5291 * Doing a reset via this method is functionally equivalent to calling
5292 * usb_reset_device(), except for the fact that it is delayed to a
5293 * workqueue. This means that any drivers bound to other interfaces
5294 * might be unbound, as well as users from usbfs in user space.
5295 *
5296 * Corner cases:
5297 *
5298 * - Scheduling two resets at the same time from two different drivers
5299 * attached to two different interfaces of the same device is
5300 * possible; depending on how the driver attached to each interface
5301 * handles ->pre_reset(), the second reset might happen or not.
5302 *
5303 * - If a driver is unbound and it had a pending reset, the reset will
5304 * be cancelled.
5305 *
5306 * - This function can be called during .probe() or .disconnect()
5307 * times. On return from .disconnect(), any pending resets will be
5308 * cancelled.
5309 *
5310 * There is no no need to lock/unlock the @reset_ws as schedule_work()
5311 * does its own.
5312 *
5313 * NOTE: We don't do any reference count tracking because it is not
5314 * needed. The lifecycle of the work_struct is tied to the
5315 * usb_interface. Before destroying the interface we cancel the
5316 * work_struct, so the fact that work_struct is queued and or
5317 * running means the interface (and thus, the device) exist and
5318 * are referenced.
5319 */
5320void usb_queue_reset_device(struct usb_interface *iface)
5321{
5322 schedule_work(&iface->reset_ws);
5323}
5324EXPORT_SYMBOL_GPL(usb_queue_reset_device);
Lan Tianyuff823c72012-09-05 13:44:32 +08005325
5326/**
5327 * usb_hub_find_child - Get the pointer of child device
5328 * attached to the port which is specified by @port1.
5329 * @hdev: USB device belonging to the usb hub
5330 * @port1: port num to indicate which port the child device
5331 * is attached to.
5332 *
5333 * USB drivers call this function to get hub's child device
5334 * pointer.
5335 *
Yacine Belkadi626f0902013-08-02 20:10:04 +02005336 * Return: %NULL if input param is invalid and
Lan Tianyuff823c72012-09-05 13:44:32 +08005337 * child's usb_device pointer if non-NULL.
5338 */
5339struct usb_device *usb_hub_find_child(struct usb_device *hdev,
5340 int port1)
5341{
Lan Tianyuad493e52013-01-23 04:26:30 +08005342 struct usb_hub *hub = usb_hub_to_struct_hub(hdev);
Lan Tianyuff823c72012-09-05 13:44:32 +08005343
5344 if (port1 < 1 || port1 > hdev->maxchild)
5345 return NULL;
5346 return hub->ports[port1 - 1]->child;
5347}
5348EXPORT_SYMBOL_GPL(usb_hub_find_child);
Lan Tianyud5575422012-09-05 13:44:33 +08005349
Lan Tianyu05f91682012-09-05 13:44:34 +08005350/**
5351 * usb_set_hub_port_connect_type - set hub port connect type.
5352 * @hdev: USB device belonging to the usb hub
5353 * @port1: port num of the port
5354 * @type: connect type of the port
5355 */
5356void usb_set_hub_port_connect_type(struct usb_device *hdev, int port1,
5357 enum usb_port_connect_type type)
5358{
Lan Tianyuad493e52013-01-23 04:26:30 +08005359 struct usb_hub *hub = usb_hub_to_struct_hub(hdev);
Lan Tianyu05f91682012-09-05 13:44:34 +08005360
Mathias Nyman41341262013-06-18 17:28:48 +03005361 if (hub)
5362 hub->ports[port1 - 1]->connect_type = type;
Lan Tianyu05f91682012-09-05 13:44:34 +08005363}
5364
5365/**
5366 * usb_get_hub_port_connect_type - Get the port's connect type
5367 * @hdev: USB device belonging to the usb hub
5368 * @port1: port num of the port
5369 *
Yacine Belkadi626f0902013-08-02 20:10:04 +02005370 * Return: The connect type of the port if successful. Or
5371 * USB_PORT_CONNECT_TYPE_UNKNOWN if input params are invalid.
Lan Tianyu05f91682012-09-05 13:44:34 +08005372 */
5373enum usb_port_connect_type
5374usb_get_hub_port_connect_type(struct usb_device *hdev, int port1)
5375{
Lan Tianyuad493e52013-01-23 04:26:30 +08005376 struct usb_hub *hub = usb_hub_to_struct_hub(hdev);
Lan Tianyu05f91682012-09-05 13:44:34 +08005377
Mathias Nyman41341262013-06-18 17:28:48 +03005378 if (!hub)
5379 return USB_PORT_CONNECT_TYPE_UNKNOWN;
5380
Lan Tianyu05f91682012-09-05 13:44:34 +08005381 return hub->ports[port1 - 1]->connect_type;
5382}
5383
Lan Tianyud2123fd2013-01-21 22:18:00 +08005384void usb_hub_adjust_deviceremovable(struct usb_device *hdev,
5385 struct usb_hub_descriptor *desc)
5386{
5387 enum usb_port_connect_type connect_type;
5388 int i;
5389
5390 if (!hub_is_superspeed(hdev)) {
5391 for (i = 1; i <= hdev->maxchild; i++) {
5392 connect_type = usb_get_hub_port_connect_type(hdev, i);
5393
5394 if (connect_type == USB_PORT_CONNECT_TYPE_HARD_WIRED) {
5395 u8 mask = 1 << (i%8);
5396
5397 if (!(desc->u.hs.DeviceRemovable[i/8] & mask)) {
5398 dev_dbg(&hdev->dev, "usb port%d's DeviceRemovable is changed to 1 according to platform information.\n",
5399 i);
5400 desc->u.hs.DeviceRemovable[i/8] |= mask;
5401 }
5402 }
5403 }
5404 } else {
5405 u16 port_removable = le16_to_cpu(desc->u.ss.DeviceRemovable);
5406
5407 for (i = 1; i <= hdev->maxchild; i++) {
5408 connect_type = usb_get_hub_port_connect_type(hdev, i);
5409
5410 if (connect_type == USB_PORT_CONNECT_TYPE_HARD_WIRED) {
5411 u16 mask = 1 << i;
5412
5413 if (!(port_removable & mask)) {
5414 dev_dbg(&hdev->dev, "usb port%d's DeviceRemovable is changed to 1 according to platform information.\n",
5415 i);
5416 port_removable |= mask;
5417 }
5418 }
5419 }
5420
5421 desc->u.ss.DeviceRemovable = cpu_to_le16(port_removable);
5422 }
5423}
5424
Lan Tianyud5575422012-09-05 13:44:33 +08005425#ifdef CONFIG_ACPI
5426/**
5427 * usb_get_hub_port_acpi_handle - Get the usb port's acpi handle
5428 * @hdev: USB device belonging to the usb hub
5429 * @port1: port num of the port
5430 *
Yacine Belkadi626f0902013-08-02 20:10:04 +02005431 * Return: Port's acpi handle if successful, %NULL if params are
5432 * invalid.
Lan Tianyud5575422012-09-05 13:44:33 +08005433 */
5434acpi_handle usb_get_hub_port_acpi_handle(struct usb_device *hdev,
5435 int port1)
5436{
Lan Tianyuad493e52013-01-23 04:26:30 +08005437 struct usb_hub *hub = usb_hub_to_struct_hub(hdev);
Lan Tianyud5575422012-09-05 13:44:33 +08005438
Mathias Nyman41341262013-06-18 17:28:48 +03005439 if (!hub)
5440 return NULL;
5441
Lan Tianyud5575422012-09-05 13:44:33 +08005442 return DEVICE_ACPI_HANDLE(&hub->ports[port1 - 1]->dev);
5443}
5444#endif