blob: 32e1035d4f59d68437b1e529d483198cc4db2018 [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)
Matthias Beyer469271f2013-10-10 23:41:27 +0200123 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 Tianyuff823c792012-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
Xenia Ragiadakou9df89d82013-08-31 18:09:12 +0300138int usb_device_supports_lpm(struct usb_device *udev)
Sarah Sharpd9b20992012-02-20 08:31:26 -0800139{
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 }
Xenia Ragiadakou9df89d82013-08-31 18:09:12 +0300159
160 /* udev is root hub */
161 if (!udev->parent)
162 return 1;
163
Sarah Sharp51e0a012012-02-20 12:02:19 -0800164 if (udev->parent->lpm_capable)
165 return 1;
166
167 dev_warn(&udev->dev, "Parent hub missing LPM exit latency info. "
168 "Power management will be impacted.\n");
Sarah Sharpd9b20992012-02-20 08:31:26 -0800169 return 0;
170}
171
Sarah Sharp51e0a012012-02-20 12:02:19 -0800172/*
173 * Set the Maximum Exit Latency (MEL) for the host to initiate a transition from
174 * either U1 or U2.
175 */
176static void usb_set_lpm_mel(struct usb_device *udev,
177 struct usb3_lpm_parameters *udev_lpm_params,
178 unsigned int udev_exit_latency,
179 struct usb_hub *hub,
180 struct usb3_lpm_parameters *hub_lpm_params,
181 unsigned int hub_exit_latency)
182{
183 unsigned int total_mel;
184 unsigned int device_mel;
185 unsigned int hub_mel;
186
187 /*
188 * Calculate the time it takes to transition all links from the roothub
189 * to the parent hub into U0. The parent hub must then decode the
190 * packet (hub header decode latency) to figure out which port it was
191 * bound for.
192 *
193 * The Hub Header decode latency is expressed in 0.1us intervals (0x1
194 * means 0.1us). Multiply that by 100 to get nanoseconds.
195 */
196 total_mel = hub_lpm_params->mel +
197 (hub->descriptor->u.ss.bHubHdrDecLat * 100);
198
199 /*
200 * How long will it take to transition the downstream hub's port into
201 * U0? The greater of either the hub exit latency or the device exit
202 * latency.
203 *
204 * The BOS U1/U2 exit latencies are expressed in 1us intervals.
205 * Multiply that by 1000 to get nanoseconds.
206 */
207 device_mel = udev_exit_latency * 1000;
208 hub_mel = hub_exit_latency * 1000;
209 if (device_mel > hub_mel)
210 total_mel += device_mel;
211 else
212 total_mel += hub_mel;
213
214 udev_lpm_params->mel = total_mel;
215}
216
217/*
218 * Set the maximum Device to Host Exit Latency (PEL) for the device to initiate
219 * a transition from either U1 or U2.
220 */
221static void usb_set_lpm_pel(struct usb_device *udev,
222 struct usb3_lpm_parameters *udev_lpm_params,
223 unsigned int udev_exit_latency,
224 struct usb_hub *hub,
225 struct usb3_lpm_parameters *hub_lpm_params,
226 unsigned int hub_exit_latency,
227 unsigned int port_to_port_exit_latency)
228{
229 unsigned int first_link_pel;
230 unsigned int hub_pel;
231
232 /*
233 * First, the device sends an LFPS to transition the link between the
234 * device and the parent hub into U0. The exit latency is the bigger of
235 * the device exit latency or the hub exit latency.
236 */
237 if (udev_exit_latency > hub_exit_latency)
238 first_link_pel = udev_exit_latency * 1000;
239 else
240 first_link_pel = hub_exit_latency * 1000;
241
242 /*
243 * When the hub starts to receive the LFPS, there is a slight delay for
244 * it to figure out that one of the ports is sending an LFPS. Then it
245 * will forward the LFPS to its upstream link. The exit latency is the
246 * delay, plus the PEL that we calculated for this hub.
247 */
248 hub_pel = port_to_port_exit_latency * 1000 + hub_lpm_params->pel;
249
250 /*
251 * According to figure C-7 in the USB 3.0 spec, the PEL for this device
252 * is the greater of the two exit latencies.
253 */
254 if (first_link_pel > hub_pel)
255 udev_lpm_params->pel = first_link_pel;
256 else
257 udev_lpm_params->pel = hub_pel;
258}
259
260/*
261 * Set the System Exit Latency (SEL) to indicate the total worst-case time from
262 * when a device initiates a transition to U0, until when it will receive the
263 * first packet from the host controller.
264 *
265 * Section C.1.5.1 describes the four components to this:
266 * - t1: device PEL
267 * - t2: time for the ERDY to make it from the device to the host.
268 * - t3: a host-specific delay to process the ERDY.
269 * - t4: time for the packet to make it from the host to the device.
270 *
271 * t3 is specific to both the xHCI host and the platform the host is integrated
272 * into. The Intel HW folks have said it's negligible, FIXME if a different
273 * vendor says otherwise.
274 */
275static void usb_set_lpm_sel(struct usb_device *udev,
276 struct usb3_lpm_parameters *udev_lpm_params)
277{
278 struct usb_device *parent;
279 unsigned int num_hubs;
280 unsigned int total_sel;
281
282 /* t1 = device PEL */
283 total_sel = udev_lpm_params->pel;
284 /* How many external hubs are in between the device & the root port. */
285 for (parent = udev->parent, num_hubs = 0; parent->parent;
286 parent = parent->parent)
287 num_hubs++;
288 /* t2 = 2.1us + 250ns * (num_hubs - 1) */
289 if (num_hubs > 0)
290 total_sel += 2100 + 250 * (num_hubs - 1);
291
292 /* t4 = 250ns * num_hubs */
293 total_sel += 250 * num_hubs;
294
295 udev_lpm_params->sel = total_sel;
296}
297
298static void usb_set_lpm_parameters(struct usb_device *udev)
299{
300 struct usb_hub *hub;
301 unsigned int port_to_port_delay;
302 unsigned int udev_u1_del;
303 unsigned int udev_u2_del;
304 unsigned int hub_u1_del;
305 unsigned int hub_u2_del;
306
307 if (!udev->lpm_capable || udev->speed != USB_SPEED_SUPER)
308 return;
309
Lan Tianyuad493e52013-01-23 04:26:30 +0800310 hub = usb_hub_to_struct_hub(udev->parent);
Sarah Sharp51e0a012012-02-20 12:02:19 -0800311 /* It doesn't take time to transition the roothub into U0, since it
312 * doesn't have an upstream link.
313 */
314 if (!hub)
315 return;
316
317 udev_u1_del = udev->bos->ss_cap->bU1devExitLat;
Xenia Ragiadakou4d967992013-08-31 18:09:13 +0300318 udev_u2_del = le16_to_cpu(udev->bos->ss_cap->bU2DevExitLat);
Sarah Sharp51e0a012012-02-20 12:02:19 -0800319 hub_u1_del = udev->parent->bos->ss_cap->bU1devExitLat;
Xenia Ragiadakou4d967992013-08-31 18:09:13 +0300320 hub_u2_del = le16_to_cpu(udev->parent->bos->ss_cap->bU2DevExitLat);
Sarah Sharp51e0a012012-02-20 12:02:19 -0800321
322 usb_set_lpm_mel(udev, &udev->u1_params, udev_u1_del,
323 hub, &udev->parent->u1_params, hub_u1_del);
324
325 usb_set_lpm_mel(udev, &udev->u2_params, udev_u2_del,
326 hub, &udev->parent->u2_params, hub_u2_del);
327
328 /*
329 * Appendix C, section C.2.2.2, says that there is a slight delay from
330 * when the parent hub notices the downstream port is trying to
331 * transition to U0 to when the hub initiates a U0 transition on its
332 * upstream port. The section says the delays are tPort2PortU1EL and
333 * tPort2PortU2EL, but it doesn't define what they are.
334 *
335 * The hub chapter, sections 10.4.2.4 and 10.4.2.5 seem to be talking
336 * about the same delays. Use the maximum delay calculations from those
337 * sections. For U1, it's tHubPort2PortExitLat, which is 1us max. For
338 * U2, it's tHubPort2PortExitLat + U2DevExitLat - U1DevExitLat. I
339 * assume the device exit latencies they are talking about are the hub
340 * exit latencies.
341 *
342 * What do we do if the U2 exit latency is less than the U1 exit
343 * latency? It's possible, although not likely...
344 */
345 port_to_port_delay = 1;
346
347 usb_set_lpm_pel(udev, &udev->u1_params, udev_u1_del,
348 hub, &udev->parent->u1_params, hub_u1_del,
349 port_to_port_delay);
350
351 if (hub_u2_del > hub_u1_del)
352 port_to_port_delay = 1 + hub_u2_del - hub_u1_del;
353 else
354 port_to_port_delay = 1 + hub_u1_del;
355
356 usb_set_lpm_pel(udev, &udev->u2_params, udev_u2_del,
357 hub, &udev->parent->u2_params, hub_u2_del,
358 port_to_port_delay);
359
360 /* Now that we've got PEL, calculate SEL. */
361 usb_set_lpm_sel(udev, &udev->u1_params);
362 usb_set_lpm_sel(udev, &udev->u2_params);
363}
364
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365/* USB 2.0 spec Section 11.24.4.5 */
John Youndbe79bb2001-09-17 00:00:00 -0700366static int get_hub_descriptor(struct usb_device *hdev, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367{
John Youndbe79bb2001-09-17 00:00:00 -0700368 int i, ret, size;
369 unsigned dtype;
370
371 if (hub_is_superspeed(hdev)) {
372 dtype = USB_DT_SS_HUB;
373 size = USB_DT_SS_HUB_SIZE;
374 } else {
375 dtype = USB_DT_HUB;
376 size = sizeof(struct usb_hub_descriptor);
377 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378
379 for (i = 0; i < 3; i++) {
380 ret = usb_control_msg(hdev, usb_rcvctrlpipe(hdev, 0),
381 USB_REQ_GET_DESCRIPTOR, USB_DIR_IN | USB_RT_HUB,
John Youndbe79bb2001-09-17 00:00:00 -0700382 dtype << 8, 0, data, size,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 USB_CTRL_GET_TIMEOUT);
384 if (ret >= (USB_DT_HUB_NONVAR_SIZE + 2))
385 return ret;
386 }
387 return -EINVAL;
388}
389
390/*
391 * USB 2.0 spec Section 11.24.2.1
392 */
393static int clear_hub_feature(struct usb_device *hdev, int feature)
394{
395 return usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
396 USB_REQ_CLEAR_FEATURE, USB_RT_HUB, feature, 0, NULL, 0, 1000);
397}
398
399/*
400 * USB 2.0 spec Section 11.24.2.2
401 */
Lan Tianyuad493e52013-01-23 04:26:30 +0800402int usb_clear_port_feature(struct usb_device *hdev, int port1, int feature)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403{
404 return usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
405 USB_REQ_CLEAR_FEATURE, USB_RT_PORT, feature, port1,
406 NULL, 0, 1000);
407}
408
409/*
410 * USB 2.0 spec Section 11.24.2.13
411 */
412static int set_port_feature(struct usb_device *hdev, int port1, int feature)
413{
414 return usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
415 USB_REQ_SET_FEATURE, USB_RT_PORT, feature, port1,
416 NULL, 0, 1000);
417}
418
419/*
420 * USB 2.0 spec Section 11.24.2.7.1.10 and table 11-7
421 * for info about using port indicators
422 */
423static void set_port_led(
424 struct usb_hub *hub,
425 int port1,
426 int selector
427)
428{
429 int status = set_port_feature(hub->hdev, (selector << 8) | port1,
430 USB_PORT_FEAT_INDICATOR);
431 if (status < 0)
432 dev_dbg (hub->intfdev,
433 "port %d indicator %s status %d\n",
434 port1,
435 ({ char *s; switch (selector) {
436 case HUB_LED_AMBER: s = "amber"; break;
437 case HUB_LED_GREEN: s = "green"; break;
438 case HUB_LED_OFF: s = "off"; break;
439 case HUB_LED_AUTO: s = "auto"; break;
440 default: s = "??"; break;
Joe Perches2b84f922013-10-08 16:01:37 -0700441 } s; }),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 status);
443}
444
445#define LED_CYCLE_PERIOD ((2*HZ)/3)
446
David Howellsc4028952006-11-22 14:57:56 +0000447static void led_work (struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448{
David Howellsc4028952006-11-22 14:57:56 +0000449 struct usb_hub *hub =
450 container_of(work, struct usb_hub, leds.work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 struct usb_device *hdev = hub->hdev;
452 unsigned i;
453 unsigned changed = 0;
454 int cursor = -1;
455
456 if (hdev->state != USB_STATE_CONFIGURED || hub->quiescing)
457 return;
458
Krzysztof Mazur3bbc47d2013-08-22 14:49:40 +0200459 for (i = 0; i < hdev->maxchild; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 unsigned selector, mode;
461
462 /* 30%-50% duty cycle */
463
464 switch (hub->indicator[i]) {
465 /* cycle marker */
466 case INDICATOR_CYCLE:
467 cursor = i;
468 selector = HUB_LED_AUTO;
469 mode = INDICATOR_AUTO;
470 break;
471 /* blinking green = sw attention */
472 case INDICATOR_GREEN_BLINK:
473 selector = HUB_LED_GREEN;
474 mode = INDICATOR_GREEN_BLINK_OFF;
475 break;
476 case INDICATOR_GREEN_BLINK_OFF:
477 selector = HUB_LED_OFF;
478 mode = INDICATOR_GREEN_BLINK;
479 break;
480 /* blinking amber = hw attention */
481 case INDICATOR_AMBER_BLINK:
482 selector = HUB_LED_AMBER;
483 mode = INDICATOR_AMBER_BLINK_OFF;
484 break;
485 case INDICATOR_AMBER_BLINK_OFF:
486 selector = HUB_LED_OFF;
487 mode = INDICATOR_AMBER_BLINK;
488 break;
489 /* blink green/amber = reserved */
490 case INDICATOR_ALT_BLINK:
491 selector = HUB_LED_GREEN;
492 mode = INDICATOR_ALT_BLINK_OFF;
493 break;
494 case INDICATOR_ALT_BLINK_OFF:
495 selector = HUB_LED_AMBER;
496 mode = INDICATOR_ALT_BLINK;
497 break;
498 default:
499 continue;
500 }
501 if (selector != HUB_LED_AUTO)
502 changed = 1;
503 set_port_led(hub, i + 1, selector);
504 hub->indicator[i] = mode;
505 }
506 if (!changed && blinkenlights) {
507 cursor++;
Krzysztof Mazur3bbc47d2013-08-22 14:49:40 +0200508 cursor %= hdev->maxchild;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 set_port_led(hub, cursor + 1, HUB_LED_GREEN);
510 hub->indicator[cursor] = INDICATOR_CYCLE;
511 changed++;
512 }
513 if (changed)
514 schedule_delayed_work(&hub->leds, LED_CYCLE_PERIOD);
515}
516
517/* use a short timeout for hub/port status fetches */
518#define USB_STS_TIMEOUT 1000
519#define USB_STS_RETRIES 5
520
521/*
522 * USB 2.0 spec Section 11.24.2.6
523 */
524static int get_hub_status(struct usb_device *hdev,
525 struct usb_hub_status *data)
526{
527 int i, status = -ETIMEDOUT;
528
Libor Pechacek3824c1d2011-05-20 14:53:25 +0200529 for (i = 0; i < USB_STS_RETRIES &&
530 (status == -ETIMEDOUT || status == -EPIPE); i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 status = usb_control_msg(hdev, usb_rcvctrlpipe(hdev, 0),
532 USB_REQ_GET_STATUS, USB_DIR_IN | USB_RT_HUB, 0, 0,
533 data, sizeof(*data), USB_STS_TIMEOUT);
534 }
535 return status;
536}
537
538/*
539 * USB 2.0 spec Section 11.24.2.7
540 */
541static int get_port_status(struct usb_device *hdev, int port1,
542 struct usb_port_status *data)
543{
544 int i, status = -ETIMEDOUT;
545
Libor Pechacek3824c1d2011-05-20 14:53:25 +0200546 for (i = 0; i < USB_STS_RETRIES &&
547 (status == -ETIMEDOUT || status == -EPIPE); i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 status = usb_control_msg(hdev, usb_rcvctrlpipe(hdev, 0),
549 USB_REQ_GET_STATUS, USB_DIR_IN | USB_RT_PORT, 0, port1,
550 data, sizeof(*data), USB_STS_TIMEOUT);
551 }
552 return status;
553}
554
Alan Stern3eb14912008-03-03 15:15:43 -0500555static int hub_port_status(struct usb_hub *hub, int port1,
556 u16 *status, u16 *change)
557{
558 int ret;
559
560 mutex_lock(&hub->status_mutex);
561 ret = get_port_status(hub->hdev, port1, &hub->status->port);
562 if (ret < 4) {
Alan Sterne9e88fb2013-03-27 16:14:01 -0400563 if (ret != -ENODEV)
564 dev_err(hub->intfdev,
565 "%s failed (err = %d)\n", __func__, ret);
Alan Stern3eb14912008-03-03 15:15:43 -0500566 if (ret >= 0)
567 ret = -EIO;
568 } else {
569 *status = le16_to_cpu(hub->status->port.wPortStatus);
570 *change = le16_to_cpu(hub->status->port.wPortChange);
John Youndbe79bb2001-09-17 00:00:00 -0700571
Alan Stern3eb14912008-03-03 15:15:43 -0500572 ret = 0;
573 }
574 mutex_unlock(&hub->status_mutex);
575 return ret;
576}
577
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578static void kick_khubd(struct usb_hub *hub)
579{
580 unsigned long flags;
581
582 spin_lock_irqsave(&hub_event_lock, flags);
Roel Kluin2e2c5ee2007-10-26 23:54:35 +0200583 if (!hub->disconnected && list_empty(&hub->event_list)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 list_add_tail(&hub->event_list, &hub_event_list);
Alan Stern8e4ceb32009-12-07 13:01:37 -0500585
586 /* Suppress autosuspend until khubd runs */
587 usb_autopm_get_interface_no_resume(
588 to_usb_interface(hub->intfdev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 wake_up(&khubd_wait);
590 }
591 spin_unlock_irqrestore(&hub_event_lock, flags);
592}
593
594void usb_kick_khubd(struct usb_device *hdev)
595{
Lan Tianyuad493e52013-01-23 04:26:30 +0800596 struct usb_hub *hub = usb_hub_to_struct_hub(hdev);
Alan Stern251180842009-07-22 14:41:18 -0400597
598 if (hub)
599 kick_khubd(hub);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600}
601
Sarah Sharp4ee823b2011-11-14 18:00:01 -0800602/*
603 * Let the USB core know that a USB 3.0 device has sent a Function Wake Device
604 * Notification, which indicates it had initiated remote wakeup.
605 *
606 * USB 3.0 hubs do not report the port link state change from U3 to U0 when the
607 * device initiates resume, so the USB core will not receive notice of the
608 * resume through the normal hub interrupt URB.
609 */
610void usb_wakeup_notification(struct usb_device *hdev,
611 unsigned int portnum)
612{
613 struct usb_hub *hub;
614
615 if (!hdev)
616 return;
617
Lan Tianyuad493e52013-01-23 04:26:30 +0800618 hub = usb_hub_to_struct_hub(hdev);
Sarah Sharp4ee823b2011-11-14 18:00:01 -0800619 if (hub) {
620 set_bit(portnum, hub->wakeup_bits);
621 kick_khubd(hub);
622 }
623}
624EXPORT_SYMBOL_GPL(usb_wakeup_notification);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625
626/* completion function, fires on port status changes and various faults */
David Howells7d12e782006-10-05 14:55:46 +0100627static void hub_irq(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628{
Tobias Klauserec17cf12006-09-13 21:38:41 +0200629 struct usb_hub *hub = urb->context;
Alan Sterne0152682007-08-24 15:42:52 -0400630 int status = urb->status;
Roel Kluin71d27182009-03-13 12:19:18 +0100631 unsigned i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 unsigned long bits;
633
Alan Sterne0152682007-08-24 15:42:52 -0400634 switch (status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 case -ENOENT: /* synchronous unlink */
636 case -ECONNRESET: /* async unlink */
637 case -ESHUTDOWN: /* hardware going away */
638 return;
639
640 default: /* presumably an error */
641 /* Cause a hub reset after 10 consecutive errors */
Alan Sterne0152682007-08-24 15:42:52 -0400642 dev_dbg (hub->intfdev, "transfer --> %d\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 if ((++hub->nerrors < 10) || hub->error)
644 goto resubmit;
Alan Sterne0152682007-08-24 15:42:52 -0400645 hub->error = status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 /* FALL THROUGH */
Tobias Klauserec17cf12006-09-13 21:38:41 +0200647
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 /* let khubd handle things */
649 case 0: /* we got data: port status changed */
650 bits = 0;
651 for (i = 0; i < urb->actual_length; ++i)
652 bits |= ((unsigned long) ((*hub->buffer)[i]))
653 << (i*8);
654 hub->event_bits[0] = bits;
655 break;
656 }
657
658 hub->nerrors = 0;
659
660 /* Something happened, let khubd figure it out */
661 kick_khubd(hub);
662
663resubmit:
664 if (hub->quiescing)
665 return;
666
667 if ((status = usb_submit_urb (hub->urb, GFP_ATOMIC)) != 0
668 && status != -ENODEV && status != -EPERM)
669 dev_err (hub->intfdev, "resubmit --> %d\n", status);
670}
671
672/* USB 2.0 spec Section 11.24.2.3 */
673static inline int
674hub_clear_tt_buffer (struct usb_device *hdev, u16 devinfo, u16 tt)
675{
William Gulland2c7b8712013-06-27 16:10:20 -0700676 /* Need to clear both directions for control ep */
677 if (((devinfo >> 11) & USB_ENDPOINT_XFERTYPE_MASK) ==
678 USB_ENDPOINT_XFER_CONTROL) {
679 int status = usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
680 HUB_CLEAR_TT_BUFFER, USB_RT_PORT,
681 devinfo ^ 0x8000, tt, NULL, 0, 1000);
682 if (status)
683 return status;
684 }
Alan Sternc2f65952009-11-18 11:37:15 -0500685 return usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 HUB_CLEAR_TT_BUFFER, USB_RT_PORT, devinfo,
687 tt, NULL, 0, 1000);
688}
689
690/*
691 * enumeration blocks khubd for a long time. we use keventd instead, since
692 * long blocking there is the exception, not the rule. accordingly, HCDs
693 * talking to TTs must queue control transfers (not just bulk and iso), so
694 * both can talk to the same hub concurrently.
695 */
Alan Sterncb88a1b2009-06-29 10:43:32 -0400696static void hub_tt_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697{
David Howellsc4028952006-11-22 14:57:56 +0000698 struct usb_hub *hub =
Alan Sterncb88a1b2009-06-29 10:43:32 -0400699 container_of(work, struct usb_hub, tt.clear_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 unsigned long flags;
701
702 spin_lock_irqsave (&hub->tt.lock, flags);
Octavian Purdila3b6054d2012-10-01 22:21:12 +0300703 while (!list_empty(&hub->tt.clear_list)) {
H Hartley Sweetend0f830d2009-04-22 16:03:05 -0400704 struct list_head *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 struct usb_tt_clear *clear;
706 struct usb_device *hdev = hub->hdev;
Alan Sterncb88a1b2009-06-29 10:43:32 -0400707 const struct hc_driver *drv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 int status;
709
H Hartley Sweetend0f830d2009-04-22 16:03:05 -0400710 next = hub->tt.clear_list.next;
711 clear = list_entry (next, struct usb_tt_clear, clear_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 list_del (&clear->clear_list);
713
714 /* drop lock so HCD can concurrently report other TT errors */
715 spin_unlock_irqrestore (&hub->tt.lock, flags);
716 status = hub_clear_tt_buffer (hdev, clear->devinfo, clear->tt);
Alan Sterne9e88fb2013-03-27 16:14:01 -0400717 if (status && status != -ENODEV)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 dev_err (&hdev->dev,
719 "clear tt %d (%04x) error %d\n",
720 clear->tt, clear->devinfo, status);
Alan Sterncb88a1b2009-06-29 10:43:32 -0400721
722 /* Tell the HCD, even if the operation failed */
723 drv = clear->hcd->driver;
724 if (drv->clear_tt_buffer_complete)
725 (drv->clear_tt_buffer_complete)(clear->hcd, clear->ep);
726
Jesper Juhl1bc3c9e2005-04-18 17:39:34 -0700727 kfree(clear);
Alan Sterncb88a1b2009-06-29 10:43:32 -0400728 spin_lock_irqsave(&hub->tt.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 }
730 spin_unlock_irqrestore (&hub->tt.lock, flags);
731}
732
733/**
Lan Tianyu971fcd42013-01-23 04:26:29 +0800734 * usb_hub_set_port_power - control hub port's power state
Mathias Nyman413412612013-06-18 17:28:48 +0300735 * @hdev: USB device belonging to the usb hub
736 * @hub: target hub
Lan Tianyu971fcd42013-01-23 04:26:29 +0800737 * @port1: port index
738 * @set: expected status
739 *
740 * call this function to control port's power via setting or
741 * clearing the port's PORT_POWER feature.
Yacine Belkadi626f0902013-08-02 20:10:04 +0200742 *
743 * Return: 0 if successful. A negative error code otherwise.
Lan Tianyu971fcd42013-01-23 04:26:29 +0800744 */
Mathias Nyman413412612013-06-18 17:28:48 +0300745int usb_hub_set_port_power(struct usb_device *hdev, struct usb_hub *hub,
746 int port1, bool set)
Lan Tianyu971fcd42013-01-23 04:26:29 +0800747{
748 int ret;
Lan Tianyuad493e52013-01-23 04:26:30 +0800749 struct usb_port *port_dev = hub->ports[port1 - 1];
Lan Tianyu971fcd42013-01-23 04:26:29 +0800750
751 if (set)
752 ret = set_port_feature(hdev, port1, USB_PORT_FEAT_POWER);
753 else
Lan Tianyuad493e52013-01-23 04:26:30 +0800754 ret = usb_clear_port_feature(hdev, port1, USB_PORT_FEAT_POWER);
755
756 if (!ret)
757 port_dev->power_is_on = set;
Lan Tianyu971fcd42013-01-23 04:26:29 +0800758 return ret;
759}
760
761/**
Alan Sterncb88a1b2009-06-29 10:43:32 -0400762 * usb_hub_clear_tt_buffer - clear control/bulk TT state in high speed hub
763 * @urb: an URB associated with the failed or incomplete split transaction
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 *
765 * High speed HCDs use this to tell the hub driver that some split control or
766 * bulk transaction failed in a way that requires clearing internal state of
767 * a transaction translator. This is normally detected (and reported) from
768 * interrupt context.
769 *
770 * It may not be possible for that hub to handle additional full (or low)
771 * speed transactions until that state is fully cleared out.
Yacine Belkadi626f0902013-08-02 20:10:04 +0200772 *
773 * Return: 0 if successful. A negative error code otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 */
Alan Sterncb88a1b2009-06-29 10:43:32 -0400775int usb_hub_clear_tt_buffer(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776{
Alan Sterncb88a1b2009-06-29 10:43:32 -0400777 struct usb_device *udev = urb->dev;
778 int pipe = urb->pipe;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 struct usb_tt *tt = udev->tt;
780 unsigned long flags;
781 struct usb_tt_clear *clear;
782
783 /* we've got to cope with an arbitrary number of pending TT clears,
784 * since each TT has "at least two" buffers that can need it (and
785 * there can be many TTs per hub). even if they're uncommon.
786 */
Christoph Lameter54e6ecb2006-12-06 20:33:16 -0800787 if ((clear = kmalloc (sizeof *clear, GFP_ATOMIC)) == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 dev_err (&udev->dev, "can't save CLEAR_TT_BUFFER state\n");
789 /* FIXME recover somehow ... RESET_TT? */
Alan Sterncb88a1b2009-06-29 10:43:32 -0400790 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 }
792
793 /* info that CLEAR_TT_BUFFER needs */
794 clear->tt = tt->multi ? udev->ttport : 1;
795 clear->devinfo = usb_pipeendpoint (pipe);
796 clear->devinfo |= udev->devnum << 4;
797 clear->devinfo |= usb_pipecontrol (pipe)
798 ? (USB_ENDPOINT_XFER_CONTROL << 11)
799 : (USB_ENDPOINT_XFER_BULK << 11);
800 if (usb_pipein (pipe))
801 clear->devinfo |= 1 << 15;
Alan Sterncb88a1b2009-06-29 10:43:32 -0400802
803 /* info for completion callback */
804 clear->hcd = bus_to_hcd(udev->bus);
805 clear->ep = urb->ep;
806
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 /* tell keventd to clear state for this TT */
808 spin_lock_irqsave (&tt->lock, flags);
809 list_add_tail (&clear->clear_list, &tt->clear_list);
Alan Sterncb88a1b2009-06-29 10:43:32 -0400810 schedule_work(&tt->clear_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 spin_unlock_irqrestore (&tt->lock, flags);
Alan Sterncb88a1b2009-06-29 10:43:32 -0400812 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813}
Alan Sterncb88a1b2009-06-29 10:43:32 -0400814EXPORT_SYMBOL_GPL(usb_hub_clear_tt_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815
Alan Stern8520f382008-09-22 14:44:26 -0400816/* If do_delay is false, return the number of milliseconds the caller
817 * needs to delay.
818 */
819static unsigned hub_power_on(struct usb_hub *hub, bool do_delay)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820{
821 int port1;
David Brownellb7896962005-08-31 10:41:44 -0700822 unsigned pgood_delay = hub->descriptor->bPwrOn2PwrGood * 2;
Alan Stern8520f382008-09-22 14:44:26 -0400823 unsigned delay;
Alan Stern4489a572006-04-27 15:54:22 -0400824 u16 wHubCharacteristics =
825 le16_to_cpu(hub->descriptor->wHubCharacteristics);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826
Alan Stern4489a572006-04-27 15:54:22 -0400827 /* Enable power on each port. Some hubs have reserved values
828 * of LPSM (> 2) in their descriptors, even though they are
829 * USB 2.0 hubs. Some hubs do not implement port-power switching
830 * but only emulate it. In all cases, the ports won't work
831 * unless we send these messages to the hub.
832 */
833 if ((wHubCharacteristics & HUB_CHAR_LPSM) < 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 dev_dbg(hub->intfdev, "enabling power on all ports\n");
Alan Stern4489a572006-04-27 15:54:22 -0400835 else
836 dev_dbg(hub->intfdev, "trying to enable port power on "
837 "non-switchable hub\n");
Krzysztof Mazur3bbc47d2013-08-22 14:49:40 +0200838 for (port1 = 1; port1 <= hub->hdev->maxchild; port1++)
Lan Tianyuad493e52013-01-23 04:26:30 +0800839 if (hub->ports[port1 - 1]->power_is_on)
840 set_port_feature(hub->hdev, port1, USB_PORT_FEAT_POWER);
841 else
842 usb_clear_port_feature(hub->hdev, port1,
843 USB_PORT_FEAT_POWER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844
David Brownellb7896962005-08-31 10:41:44 -0700845 /* Wait at least 100 msec for power to become stable */
Alan Stern8520f382008-09-22 14:44:26 -0400846 delay = max(pgood_delay, (unsigned) 100);
847 if (do_delay)
848 msleep(delay);
849 return delay;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850}
851
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852static int hub_hub_status(struct usb_hub *hub,
853 u16 *status, u16 *change)
854{
855 int ret;
856
Alan Sterndb90e7a2007-02-05 09:56:15 -0500857 mutex_lock(&hub->status_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 ret = get_hub_status(hub->hdev, &hub->status->hub);
Alan Sterne9e88fb2013-03-27 16:14:01 -0400859 if (ret < 0) {
860 if (ret != -ENODEV)
861 dev_err(hub->intfdev,
862 "%s failed (err = %d)\n", __func__, ret);
863 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 *status = le16_to_cpu(hub->status->hub.wHubStatus);
Matthias Beyer469271f2013-10-10 23:41:27 +0200865 *change = le16_to_cpu(hub->status->hub.wHubChange);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 ret = 0;
867 }
Alan Sterndb90e7a2007-02-05 09:56:15 -0500868 mutex_unlock(&hub->status_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 return ret;
870}
871
Sarah Sharp41e7e052012-11-14 16:42:32 -0800872static int hub_set_port_link_state(struct usb_hub *hub, int port1,
873 unsigned int link_status)
874{
875 return set_port_feature(hub->hdev,
876 port1 | (link_status << 3),
877 USB_PORT_FEAT_LINK_STATE);
878}
879
880/*
881 * If USB 3.0 ports are placed into the Disabled state, they will no longer
882 * detect any device connects or disconnects. This is generally not what the
883 * USB core wants, since it expects a disabled port to produce a port status
884 * change event when a new device connects.
885 *
886 * Instead, set the link state to Disabled, wait for the link to settle into
887 * that state, clear any change bits, and then put the port into the RxDetect
888 * state.
889 */
890static int hub_usb3_port_disable(struct usb_hub *hub, int port1)
891{
892 int ret;
893 int total_time;
894 u16 portchange, portstatus;
895
896 if (!hub_is_superspeed(hub->hdev))
897 return -EINVAL;
898
899 ret = hub_set_port_link_state(hub, port1, USB_SS_PORT_LS_SS_DISABLED);
Alan Sterne9e88fb2013-03-27 16:14:01 -0400900 if (ret)
Sarah Sharp41e7e052012-11-14 16:42:32 -0800901 return ret;
Sarah Sharp41e7e052012-11-14 16:42:32 -0800902
903 /* Wait for the link to enter the disabled state. */
904 for (total_time = 0; ; total_time += HUB_DEBOUNCE_STEP) {
905 ret = hub_port_status(hub, port1, &portstatus, &portchange);
906 if (ret < 0)
907 return ret;
908
909 if ((portstatus & USB_PORT_STAT_LINK_STATE) ==
910 USB_SS_PORT_LS_SS_DISABLED)
911 break;
912 if (total_time >= HUB_DEBOUNCE_TIMEOUT)
913 break;
914 msleep(HUB_DEBOUNCE_STEP);
915 }
916 if (total_time >= HUB_DEBOUNCE_TIMEOUT)
917 dev_warn(hub->intfdev, "Could not disable port %d after %d ms\n",
918 port1, total_time);
919
920 return hub_set_port_link_state(hub, port1, USB_SS_PORT_LS_RX_DETECT);
921}
922
Alan Stern8b28c752005-08-10 17:04:13 -0400923static int hub_port_disable(struct usb_hub *hub, int port1, int set_state)
924{
925 struct usb_device *hdev = hub->hdev;
Alan Stern0458d5b2007-05-04 11:52:20 -0400926 int ret = 0;
Alan Stern8b28c752005-08-10 17:04:13 -0400927
Lan Tianyuff823c792012-09-05 13:44:32 +0800928 if (hub->ports[port1 - 1]->child && set_state)
929 usb_set_device_state(hub->ports[port1 - 1]->child,
Alan Stern8b28c752005-08-10 17:04:13 -0400930 USB_STATE_NOTATTACHED);
Sarah Sharp41e7e052012-11-14 16:42:32 -0800931 if (!hub->error) {
932 if (hub_is_superspeed(hub->hdev))
933 ret = hub_usb3_port_disable(hub, port1);
934 else
Lan Tianyuad493e52013-01-23 04:26:30 +0800935 ret = usb_clear_port_feature(hdev, port1,
Sarah Sharp41e7e052012-11-14 16:42:32 -0800936 USB_PORT_FEAT_ENABLE);
937 }
Alan Sterne9e88fb2013-03-27 16:14:01 -0400938 if (ret && ret != -ENODEV)
Alan Stern8b28c752005-08-10 17:04:13 -0400939 dev_err(hub->intfdev, "cannot disable port %d (err = %d)\n",
Alan Stern0458d5b2007-05-04 11:52:20 -0400940 port1, ret);
Alan Stern8b28c752005-08-10 17:04:13 -0400941 return ret;
942}
943
Alan Stern0458d5b2007-05-04 11:52:20 -0400944/*
Justin P. Mattock6d42fcd2011-02-26 20:33:56 -0800945 * Disable a port and mark a logical connect-change event, so that some
Alan Stern0458d5b2007-05-04 11:52:20 -0400946 * time later khubd will disconnect() any existing usb_device on the port
947 * and will re-enumerate if there actually is a device attached.
948 */
949static void hub_port_logical_disconnect(struct usb_hub *hub, int port1)
950{
951 dev_dbg(hub->intfdev, "logical disconnect on port %d\n", port1);
952 hub_port_disable(hub, port1, 1);
953
954 /* FIXME let caller ask to power down the port:
955 * - some devices won't enumerate without a VBUS power cycle
956 * - SRP saves power that way
957 * - ... new call, TBD ...
958 * That's easy if this hub can switch power per-port, and
959 * khubd reactivates the port later (timer, SRP, etc).
960 * Powerdown must be optional, because of reset/DFU.
961 */
962
963 set_bit(port1, hub->change_bits);
Matthias Beyer469271f2013-10-10 23:41:27 +0200964 kick_khubd(hub);
Alan Stern0458d5b2007-05-04 11:52:20 -0400965}
966
Alan Stern253e0572009-10-27 15:20:13 -0400967/**
968 * usb_remove_device - disable a device's port on its parent hub
969 * @udev: device to be disabled and removed
970 * Context: @udev locked, must be able to sleep.
971 *
972 * After @udev's port has been disabled, khubd is notified and it will
973 * see that the device has been disconnected. When the device is
974 * physically unplugged and something is plugged in, the events will
975 * be received and processed normally.
Yacine Belkadi626f0902013-08-02 20:10:04 +0200976 *
977 * Return: 0 if successful. A negative error code otherwise.
Alan Stern253e0572009-10-27 15:20:13 -0400978 */
979int usb_remove_device(struct usb_device *udev)
980{
981 struct usb_hub *hub;
982 struct usb_interface *intf;
983
984 if (!udev->parent) /* Can't remove a root hub */
985 return -EINVAL;
Lan Tianyuad493e52013-01-23 04:26:30 +0800986 hub = usb_hub_to_struct_hub(udev->parent);
Alan Stern253e0572009-10-27 15:20:13 -0400987 intf = to_usb_interface(hub->intfdev);
988
989 usb_autopm_get_interface(intf);
990 set_bit(udev->portnum, hub->removed_bits);
991 hub_port_logical_disconnect(hub, udev->portnum);
992 usb_autopm_put_interface(intf);
993 return 0;
994}
995
Alan Stern6ee0b272008-04-28 11:06:42 -0400996enum hub_activation_type {
Alan Stern8e4ceb32009-12-07 13:01:37 -0500997 HUB_INIT, HUB_INIT2, HUB_INIT3, /* INITs must come first */
Alan Stern8520f382008-09-22 14:44:26 -0400998 HUB_POST_RESET, HUB_RESUME, HUB_RESET_RESUME,
Alan Stern6ee0b272008-04-28 11:06:42 -0400999};
Alan Stern5e6effa2008-03-03 15:15:51 -05001000
Alan Stern8520f382008-09-22 14:44:26 -04001001static void hub_init_func2(struct work_struct *ws);
1002static void hub_init_func3(struct work_struct *ws);
1003
Alan Sternf2835212008-04-28 11:07:17 -04001004static void hub_activate(struct usb_hub *hub, enum hub_activation_type type)
Alan Stern5e6effa2008-03-03 15:15:51 -05001005{
1006 struct usb_device *hdev = hub->hdev;
Sarah Sharp653a39d2010-12-23 11:12:42 -08001007 struct usb_hcd *hcd;
1008 int ret;
Alan Stern5e6effa2008-03-03 15:15:51 -05001009 int port1;
Alan Sternf2835212008-04-28 11:07:17 -04001010 int status;
Alan Stern948fea32008-04-28 11:07:07 -04001011 bool need_debounce_delay = false;
Alan Stern8520f382008-09-22 14:44:26 -04001012 unsigned delay;
1013
1014 /* Continue a partial initialization */
1015 if (type == HUB_INIT2)
1016 goto init2;
1017 if (type == HUB_INIT3)
1018 goto init3;
Alan Stern5e6effa2008-03-03 15:15:51 -05001019
Elric Fua45aa3b2012-02-18 13:32:27 +08001020 /* The superspeed hub except for root hub has to use Hub Depth
1021 * value as an offset into the route string to locate the bits
1022 * it uses to determine the downstream port number. So hub driver
1023 * should send a set hub depth request to superspeed hub after
1024 * the superspeed hub is set configuration in initialization or
1025 * reset procedure.
1026 *
1027 * After a resume, port power should still be on.
Alan Sternf2835212008-04-28 11:07:17 -04001028 * For any other type of activation, turn it on.
1029 */
Alan Stern8520f382008-09-22 14:44:26 -04001030 if (type != HUB_RESUME) {
Elric Fua45aa3b2012-02-18 13:32:27 +08001031 if (hdev->parent && hub_is_superspeed(hdev)) {
1032 ret = usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
1033 HUB_SET_DEPTH, USB_RT_HUB,
1034 hdev->level - 1, 0, NULL, 0,
1035 USB_CTRL_SET_TIMEOUT);
1036 if (ret < 0)
1037 dev_err(hub->intfdev,
1038 "set hub depth failed\n");
1039 }
Alan Stern8520f382008-09-22 14:44:26 -04001040
1041 /* Speed up system boot by using a delayed_work for the
1042 * hub's initial power-up delays. This is pretty awkward
1043 * and the implementation looks like a home-brewed sort of
1044 * setjmp/longjmp, but it saves at least 100 ms for each
1045 * root hub (assuming usbcore is compiled into the kernel
1046 * rather than as a module). It adds up.
1047 *
1048 * This can't be done for HUB_RESUME or HUB_RESET_RESUME
1049 * because for those activation types the ports have to be
1050 * operational when we return. In theory this could be done
1051 * for HUB_POST_RESET, but it's easier not to.
1052 */
1053 if (type == HUB_INIT) {
1054 delay = hub_power_on(hub, false);
1055 PREPARE_DELAYED_WORK(&hub->init_work, hub_init_func2);
1056 schedule_delayed_work(&hub->init_work,
1057 msecs_to_jiffies(delay));
Alan Stern61fbeba2008-10-27 12:07:44 -04001058
1059 /* Suppress autosuspend until init is done */
Alan Stern8e4ceb32009-12-07 13:01:37 -05001060 usb_autopm_get_interface_no_resume(
1061 to_usb_interface(hub->intfdev));
Alan Stern8520f382008-09-22 14:44:26 -04001062 return; /* Continues at init2: below */
Sarah Sharp653a39d2010-12-23 11:12:42 -08001063 } else if (type == HUB_RESET_RESUME) {
1064 /* The internal host controller state for the hub device
1065 * may be gone after a host power loss on system resume.
1066 * Update the device's info so the HW knows it's a hub.
1067 */
1068 hcd = bus_to_hcd(hdev->bus);
1069 if (hcd->driver->update_hub_device) {
1070 ret = hcd->driver->update_hub_device(hcd, hdev,
1071 &hub->tt, GFP_NOIO);
1072 if (ret < 0) {
1073 dev_err(hub->intfdev, "Host not "
1074 "accepting hub info "
1075 "update.\n");
1076 dev_err(hub->intfdev, "LS/FS devices "
1077 "and hubs may not work "
1078 "under this hub\n.");
1079 }
1080 }
1081 hub_power_on(hub, true);
Alan Stern8520f382008-09-22 14:44:26 -04001082 } else {
1083 hub_power_on(hub, true);
1084 }
1085 }
1086 init2:
Alan Sternf2835212008-04-28 11:07:17 -04001087
Alan Stern6ee0b272008-04-28 11:06:42 -04001088 /* Check each port and set hub->change_bits to let khubd know
1089 * which ports need attention.
Alan Stern5e6effa2008-03-03 15:15:51 -05001090 */
1091 for (port1 = 1; port1 <= hdev->maxchild; ++port1) {
Lan Tianyuff823c792012-09-05 13:44:32 +08001092 struct usb_device *udev = hub->ports[port1 - 1]->child;
Alan Stern5e6effa2008-03-03 15:15:51 -05001093 u16 portstatus, portchange;
1094
Alan Stern6ee0b272008-04-28 11:06:42 -04001095 portstatus = portchange = 0;
1096 status = hub_port_status(hub, port1, &portstatus, &portchange);
1097 if (udev || (portstatus & USB_PORT_STAT_CONNECTION))
1098 dev_dbg(hub->intfdev,
1099 "port %d: status %04x change %04x\n",
1100 port1, portstatus, portchange);
Alan Stern5e6effa2008-03-03 15:15:51 -05001101
Alan Stern6ee0b272008-04-28 11:06:42 -04001102 /* After anything other than HUB_RESUME (i.e., initialization
1103 * or any sort of reset), every port should be disabled.
1104 * Unconnected ports should likewise be disabled (paranoia),
1105 * and so should ports for which we have no usb_device.
Alan Stern5e6effa2008-03-03 15:15:51 -05001106 */
Alan Stern6ee0b272008-04-28 11:06:42 -04001107 if ((portstatus & USB_PORT_STAT_ENABLE) && (
1108 type != HUB_RESUME ||
1109 !(portstatus & USB_PORT_STAT_CONNECTION) ||
1110 !udev ||
1111 udev->state == USB_STATE_NOTATTACHED)) {
Andiry Xu9f0a6cd2010-05-07 18:09:27 +08001112 /*
1113 * USB3 protocol ports will automatically transition
1114 * to Enabled state when detect an USB3.0 device attach.
Dan Williamsfd1ac4c2013-10-07 11:58:20 -07001115 * Do not disable USB3 protocol ports, just pretend
1116 * power was lost
Andiry Xu9f0a6cd2010-05-07 18:09:27 +08001117 */
Dan Williamsfd1ac4c2013-10-07 11:58:20 -07001118 portstatus &= ~USB_PORT_STAT_ENABLE;
1119 if (!hub_is_superspeed(hdev))
Lan Tianyuad493e52013-01-23 04:26:30 +08001120 usb_clear_port_feature(hdev, port1,
Andiry Xu9f0a6cd2010-05-07 18:09:27 +08001121 USB_PORT_FEAT_ENABLE);
Alan Stern6ee0b272008-04-28 11:06:42 -04001122 }
1123
Alan Stern948fea32008-04-28 11:07:07 -04001124 /* Clear status-change flags; we'll debounce later */
1125 if (portchange & USB_PORT_STAT_C_CONNECTION) {
1126 need_debounce_delay = true;
Lan Tianyuad493e52013-01-23 04:26:30 +08001127 usb_clear_port_feature(hub->hdev, port1,
Alan Stern948fea32008-04-28 11:07:07 -04001128 USB_PORT_FEAT_C_CONNECTION);
1129 }
1130 if (portchange & USB_PORT_STAT_C_ENABLE) {
1131 need_debounce_delay = true;
Lan Tianyuad493e52013-01-23 04:26:30 +08001132 usb_clear_port_feature(hub->hdev, port1,
Alan Stern948fea32008-04-28 11:07:07 -04001133 USB_PORT_FEAT_C_ENABLE);
1134 }
Julius Wernere92aee32013-10-15 17:45:00 -07001135 if (portchange & USB_PORT_STAT_C_RESET) {
1136 need_debounce_delay = true;
1137 usb_clear_port_feature(hub->hdev, port1,
1138 USB_PORT_FEAT_C_RESET);
1139 }
Don Zickus79c3dd82011-11-03 09:07:18 -04001140 if ((portchange & USB_PORT_STAT_C_BH_RESET) &&
1141 hub_is_superspeed(hub->hdev)) {
1142 need_debounce_delay = true;
Lan Tianyuad493e52013-01-23 04:26:30 +08001143 usb_clear_port_feature(hub->hdev, port1,
Don Zickus79c3dd82011-11-03 09:07:18 -04001144 USB_PORT_FEAT_C_BH_PORT_RESET);
1145 }
Alan Stern253e0572009-10-27 15:20:13 -04001146 /* We can forget about a "removed" device when there's a
1147 * physical disconnect or the connect status changes.
1148 */
1149 if (!(portstatus & USB_PORT_STAT_CONNECTION) ||
1150 (portchange & USB_PORT_STAT_C_CONNECTION))
1151 clear_bit(port1, hub->removed_bits);
1152
Alan Stern6ee0b272008-04-28 11:06:42 -04001153 if (!udev || udev->state == USB_STATE_NOTATTACHED) {
1154 /* Tell khubd to disconnect the device or
1155 * check for a new connection
1156 */
1157 if (udev || (portstatus & USB_PORT_STAT_CONNECTION))
1158 set_bit(port1, hub->change_bits);
1159
1160 } else if (portstatus & USB_PORT_STAT_ENABLE) {
Sarah Sharp72937e12012-01-24 11:46:50 -08001161 bool port_resumed = (portstatus &
1162 USB_PORT_STAT_LINK_STATE) ==
1163 USB_SS_PORT_LS_U0;
Alan Stern6ee0b272008-04-28 11:06:42 -04001164 /* The power session apparently survived the resume.
1165 * If there was an overcurrent or suspend change
1166 * (i.e., remote wakeup request), have khubd
Sarah Sharp72937e12012-01-24 11:46:50 -08001167 * take care of it. Look at the port link state
1168 * for USB 3.0 hubs, since they don't have a suspend
1169 * change bit, and they don't set the port link change
1170 * bit on device-initiated resume.
Alan Stern6ee0b272008-04-28 11:06:42 -04001171 */
Sarah Sharp72937e12012-01-24 11:46:50 -08001172 if (portchange || (hub_is_superspeed(hub->hdev) &&
1173 port_resumed))
Alan Stern6ee0b272008-04-28 11:06:42 -04001174 set_bit(port1, hub->change_bits);
1175
1176 } else if (udev->persist_enabled) {
Lan Tianyuad493e52013-01-23 04:26:30 +08001177 struct usb_port *port_dev = hub->ports[port1 - 1];
1178
Alan Stern6ee0b272008-04-28 11:06:42 -04001179#ifdef CONFIG_PM
Alan Stern5e6effa2008-03-03 15:15:51 -05001180 udev->reset_resume = 1;
Alan Stern6ee0b272008-04-28 11:06:42 -04001181#endif
Lan Tianyuad493e52013-01-23 04:26:30 +08001182 /* Don't set the change_bits when the device
1183 * was powered off.
1184 */
1185 if (port_dev->power_is_on)
1186 set_bit(port1, hub->change_bits);
Alan Stern8808f002008-04-28 11:06:55 -04001187
Alan Stern6ee0b272008-04-28 11:06:42 -04001188 } else {
1189 /* The power session is gone; tell khubd */
1190 usb_set_device_state(udev, USB_STATE_NOTATTACHED);
1191 set_bit(port1, hub->change_bits);
Alan Stern5e6effa2008-03-03 15:15:51 -05001192 }
Alan Stern5e6effa2008-03-03 15:15:51 -05001193 }
1194
Alan Stern948fea32008-04-28 11:07:07 -04001195 /* If no port-status-change flags were set, we don't need any
1196 * debouncing. If flags were set we can try to debounce the
1197 * ports all at once right now, instead of letting khubd do them
1198 * one at a time later on.
1199 *
1200 * If any port-status changes do occur during this delay, khubd
1201 * will see them later and handle them normally.
1202 */
Alan Stern8520f382008-09-22 14:44:26 -04001203 if (need_debounce_delay) {
1204 delay = HUB_DEBOUNCE_STABLE;
Alan Sternf2835212008-04-28 11:07:17 -04001205
Alan Stern8520f382008-09-22 14:44:26 -04001206 /* Don't do a long sleep inside a workqueue routine */
1207 if (type == HUB_INIT2) {
1208 PREPARE_DELAYED_WORK(&hub->init_work, hub_init_func3);
1209 schedule_delayed_work(&hub->init_work,
1210 msecs_to_jiffies(delay));
1211 return; /* Continues at init3: below */
1212 } else {
1213 msleep(delay);
1214 }
1215 }
1216 init3:
Alan Sternf2835212008-04-28 11:07:17 -04001217 hub->quiescing = 0;
1218
1219 status = usb_submit_urb(hub->urb, GFP_NOIO);
1220 if (status < 0)
1221 dev_err(hub->intfdev, "activate --> %d\n", status);
1222 if (hub->has_indicators && blinkenlights)
1223 schedule_delayed_work(&hub->leds, LED_CYCLE_PERIOD);
1224
1225 /* Scan all ports that need attention */
1226 kick_khubd(hub);
Alan Stern8e4ceb32009-12-07 13:01:37 -05001227
1228 /* Allow autosuspend if it was suppressed */
1229 if (type <= HUB_INIT3)
1230 usb_autopm_put_interface_async(to_usb_interface(hub->intfdev));
Alan Stern5e6effa2008-03-03 15:15:51 -05001231}
1232
Alan Stern8520f382008-09-22 14:44:26 -04001233/* Implement the continuations for the delays above */
1234static void hub_init_func2(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_INIT2);
1239}
1240
1241static void hub_init_func3(struct work_struct *ws)
1242{
1243 struct usb_hub *hub = container_of(ws, struct usb_hub, init_work.work);
1244
1245 hub_activate(hub, HUB_INIT3);
1246}
1247
Alan Stern43303542008-04-28 11:07:31 -04001248enum hub_quiescing_type {
1249 HUB_DISCONNECT, HUB_PRE_RESET, HUB_SUSPEND
1250};
1251
1252static void hub_quiesce(struct usb_hub *hub, enum hub_quiescing_type type)
1253{
1254 struct usb_device *hdev = hub->hdev;
1255 int i;
1256
Alan Stern8520f382008-09-22 14:44:26 -04001257 cancel_delayed_work_sync(&hub->init_work);
1258
Alan Stern43303542008-04-28 11:07:31 -04001259 /* khubd and related activity won't re-trigger */
1260 hub->quiescing = 1;
1261
1262 if (type != HUB_SUSPEND) {
1263 /* Disconnect all the children */
1264 for (i = 0; i < hdev->maxchild; ++i) {
Lan Tianyuff823c792012-09-05 13:44:32 +08001265 if (hub->ports[i]->child)
1266 usb_disconnect(&hub->ports[i]->child);
Alan Stern43303542008-04-28 11:07:31 -04001267 }
1268 }
1269
1270 /* Stop khubd and related activity */
1271 usb_kill_urb(hub->urb);
1272 if (hub->has_indicators)
1273 cancel_delayed_work_sync(&hub->leds);
1274 if (hub->tt.hub)
Octavian Purdila036546b2012-10-23 11:33:12 +03001275 flush_work(&hub->tt.clear_work);
Alan Stern43303542008-04-28 11:07:31 -04001276}
1277
Alan Stern3eb14912008-03-03 15:15:43 -05001278/* caller has locked the hub device */
1279static int hub_pre_reset(struct usb_interface *intf)
1280{
1281 struct usb_hub *hub = usb_get_intfdata(intf);
1282
Alan Stern43303542008-04-28 11:07:31 -04001283 hub_quiesce(hub, HUB_PRE_RESET);
Alan Sternf07600c2007-05-30 15:38:16 -04001284 return 0;
Alan Stern7d069b72005-11-18 12:06:34 -05001285}
1286
1287/* caller has locked the hub device */
Alan Sternf07600c2007-05-30 15:38:16 -04001288static int hub_post_reset(struct usb_interface *intf)
Alan Stern7d069b72005-11-18 12:06:34 -05001289{
Alan Stern7de18d82006-06-01 13:37:24 -04001290 struct usb_hub *hub = usb_get_intfdata(intf);
1291
Alan Sternf2835212008-04-28 11:07:17 -04001292 hub_activate(hub, HUB_POST_RESET);
Alan Sternf07600c2007-05-30 15:38:16 -04001293 return 0;
Alan Stern7d069b72005-11-18 12:06:34 -05001294}
1295
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296static int hub_configure(struct usb_hub *hub,
1297 struct usb_endpoint_descriptor *endpoint)
1298{
Sarah Sharpb356b7c2009-09-04 10:53:24 -07001299 struct usb_hcd *hcd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 struct usb_device *hdev = hub->hdev;
1301 struct device *hub_dev = hub->intfdev;
1302 u16 hubstatus, hubchange;
Greg Kroah-Hartman74ad9bd2005-06-20 21:15:16 -07001303 u16 wHubCharacteristics;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 unsigned int pipe;
Lan Tianyufa2a9562012-09-05 13:44:31 +08001305 int maxp, ret, i;
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001306 char *message = "out of memory";
Sebastian Andrzej Siewior430ee582012-12-18 15:25:47 +01001307 unsigned unit_load;
1308 unsigned full_load;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309
Alan Sternd697cdd2009-10-27 15:18:46 -04001310 hub->buffer = kmalloc(sizeof(*hub->buffer), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 if (!hub->buffer) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312 ret = -ENOMEM;
1313 goto fail;
1314 }
1315
1316 hub->status = kmalloc(sizeof(*hub->status), GFP_KERNEL);
1317 if (!hub->status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 ret = -ENOMEM;
1319 goto fail;
1320 }
Alan Sterndb90e7a2007-02-05 09:56:15 -05001321 mutex_init(&hub->status_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322
1323 hub->descriptor = kmalloc(sizeof(*hub->descriptor), GFP_KERNEL);
1324 if (!hub->descriptor) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 ret = -ENOMEM;
1326 goto fail;
1327 }
1328
1329 /* Request the entire hub descriptor.
1330 * hub->descriptor can handle USB_MAXCHILDREN ports,
1331 * but the hub can/will return fewer bytes here.
1332 */
John Youndbe79bb2001-09-17 00:00:00 -07001333 ret = get_hub_descriptor(hdev, hub->descriptor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 if (ret < 0) {
1335 message = "can't read hub descriptor";
1336 goto fail;
1337 } else if (hub->descriptor->bNbrPorts > USB_MAXCHILDREN) {
1338 message = "hub has too many ports!";
1339 ret = -ENODEV;
1340 goto fail;
David Linares769d73682013-03-25 10:50:27 +00001341 } else if (hub->descriptor->bNbrPorts == 0) {
1342 message = "hub doesn't have any ports!";
1343 ret = -ENODEV;
1344 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 }
1346
1347 hdev->maxchild = hub->descriptor->bNbrPorts;
1348 dev_info (hub_dev, "%d port%s detected\n", hdev->maxchild,
1349 (hdev->maxchild == 1) ? "" : "s");
1350
Lan Tianyufa2a9562012-09-05 13:44:31 +08001351 hub->ports = kzalloc(hdev->maxchild * sizeof(struct usb_port *),
1352 GFP_KERNEL);
Lan Tianyuff823c792012-09-05 13:44:32 +08001353 if (!hub->ports) {
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001354 ret = -ENOMEM;
1355 goto fail;
1356 }
1357
Greg Kroah-Hartman74ad9bd2005-06-20 21:15:16 -07001358 wHubCharacteristics = le16_to_cpu(hub->descriptor->wHubCharacteristics);
Sebastian Andrzej Siewior430ee582012-12-18 15:25:47 +01001359 if (hub_is_superspeed(hdev)) {
1360 unit_load = 150;
1361 full_load = 900;
1362 } else {
1363 unit_load = 100;
1364 full_load = 500;
1365 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366
John Youndbe79bb2001-09-17 00:00:00 -07001367 /* FIXME for USB 3.0, skip for now */
1368 if ((wHubCharacteristics & HUB_CHAR_COMPOUND) &&
1369 !(hub_is_superspeed(hdev))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 int i;
Matthias Beyer469271f2013-10-10 23:41:27 +02001371 char portstr[USB_MAXCHILDREN + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372
1373 for (i = 0; i < hdev->maxchild; i++)
John Youndbe79bb2001-09-17 00:00:00 -07001374 portstr[i] = hub->descriptor->u.hs.DeviceRemovable
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 [((i + 1) / 8)] & (1 << ((i + 1) % 8))
1376 ? 'F' : 'R';
1377 portstr[hdev->maxchild] = 0;
1378 dev_dbg(hub_dev, "compound device; port removable status: %s\n", portstr);
1379 } else
1380 dev_dbg(hub_dev, "standalone hub\n");
1381
Greg Kroah-Hartman74ad9bd2005-06-20 21:15:16 -07001382 switch (wHubCharacteristics & HUB_CHAR_LPSM) {
Aman Deep7bf01182011-12-08 12:05:22 +05301383 case HUB_CHAR_COMMON_LPSM:
1384 dev_dbg(hub_dev, "ganged power switching\n");
1385 break;
1386 case HUB_CHAR_INDV_PORT_LPSM:
1387 dev_dbg(hub_dev, "individual port power switching\n");
1388 break;
1389 case HUB_CHAR_NO_LPSM:
1390 case HUB_CHAR_LPSM:
1391 dev_dbg(hub_dev, "no power switching (usb 1.0)\n");
1392 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 }
1394
Greg Kroah-Hartman74ad9bd2005-06-20 21:15:16 -07001395 switch (wHubCharacteristics & HUB_CHAR_OCPM) {
Aman Deep7bf01182011-12-08 12:05:22 +05301396 case HUB_CHAR_COMMON_OCPM:
1397 dev_dbg(hub_dev, "global over-current protection\n");
1398 break;
1399 case HUB_CHAR_INDV_PORT_OCPM:
1400 dev_dbg(hub_dev, "individual port over-current protection\n");
1401 break;
1402 case HUB_CHAR_NO_OCPM:
1403 case HUB_CHAR_OCPM:
1404 dev_dbg(hub_dev, "no over-current protection\n");
1405 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 }
1407
1408 spin_lock_init (&hub->tt.lock);
1409 INIT_LIST_HEAD (&hub->tt.clear_list);
Alan Sterncb88a1b2009-06-29 10:43:32 -04001410 INIT_WORK(&hub->tt.clear_work, hub_tt_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 switch (hdev->descriptor.bDeviceProtocol) {
Aman Deep7bf01182011-12-08 12:05:22 +05301412 case USB_HUB_PR_FS:
1413 break;
1414 case USB_HUB_PR_HS_SINGLE_TT:
1415 dev_dbg(hub_dev, "Single TT\n");
1416 hub->tt.hub = hdev;
1417 break;
1418 case USB_HUB_PR_HS_MULTI_TT:
1419 ret = usb_set_interface(hdev, 0, 1);
1420 if (ret == 0) {
1421 dev_dbg(hub_dev, "TT per port\n");
1422 hub->tt.multi = 1;
1423 } else
1424 dev_err(hub_dev, "Using single TT (err %d)\n",
1425 ret);
1426 hub->tt.hub = hdev;
1427 break;
1428 case USB_HUB_PR_SS:
1429 /* USB 3.0 hubs don't have a TT */
1430 break;
1431 default:
1432 dev_dbg(hub_dev, "Unrecognized hub protocol %d\n",
1433 hdev->descriptor.bDeviceProtocol);
1434 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 }
1436
david-b@pacbell.nete09711a2005-08-13 18:41:04 -07001437 /* Note 8 FS bit times == (8 bits / 12000000 bps) ~= 666ns */
Greg Kroah-Hartman74ad9bd2005-06-20 21:15:16 -07001438 switch (wHubCharacteristics & HUB_CHAR_TTTT) {
Matthias Beyer469271f2013-10-10 23:41:27 +02001439 case HUB_TTTT_8_BITS:
1440 if (hdev->descriptor.bDeviceProtocol != 0) {
1441 hub->tt.think_time = 666;
david-b@pacbell.nete09711a2005-08-13 18:41:04 -07001442 dev_dbg(hub_dev, "TT requires at most %d "
1443 "FS bit times (%d ns)\n",
Matthias Beyer469271f2013-10-10 23:41:27 +02001444 8, hub->tt.think_time);
1445 }
1446 break;
1447 case HUB_TTTT_16_BITS:
1448 hub->tt.think_time = 666 * 2;
1449 dev_dbg(hub_dev, "TT requires at most %d "
1450 "FS bit times (%d ns)\n",
1451 16, hub->tt.think_time);
1452 break;
1453 case HUB_TTTT_24_BITS:
1454 hub->tt.think_time = 666 * 3;
1455 dev_dbg(hub_dev, "TT requires at most %d "
1456 "FS bit times (%d ns)\n",
1457 24, hub->tt.think_time);
1458 break;
1459 case HUB_TTTT_32_BITS:
1460 hub->tt.think_time = 666 * 4;
1461 dev_dbg(hub_dev, "TT requires at most %d "
1462 "FS bit times (%d ns)\n",
1463 32, hub->tt.think_time);
1464 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465 }
1466
1467 /* probe() zeroes hub->indicator[] */
Greg Kroah-Hartman74ad9bd2005-06-20 21:15:16 -07001468 if (wHubCharacteristics & HUB_CHAR_PORTIND) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 hub->has_indicators = 1;
1470 dev_dbg(hub_dev, "Port indicators are supported\n");
1471 }
1472
1473 dev_dbg(hub_dev, "power on to power good time: %dms\n",
1474 hub->descriptor->bPwrOn2PwrGood * 2);
1475
1476 /* power budgeting mostly matters with bus-powered hubs,
1477 * and battery-powered root hubs (may provide just 8 mA).
1478 */
1479 ret = usb_get_status(hdev, USB_RECIP_DEVICE, 0, &hubstatus);
Alan Stern15b73362013-07-30 15:35:40 -04001480 if (ret) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 message = "can't get hub status";
1482 goto fail;
1483 }
Sebastian Andrzej Siewior430ee582012-12-18 15:25:47 +01001484 hcd = bus_to_hcd(hdev->bus);
Alan Stern7d35b922005-04-25 11:18:32 -04001485 if (hdev == hdev->bus->root_hub) {
Sebastian Andrzej Siewior430ee582012-12-18 15:25:47 +01001486 if (hcd->power_budget > 0)
1487 hdev->bus_mA = hcd->power_budget;
1488 else
1489 hdev->bus_mA = full_load * hdev->maxchild;
1490 if (hdev->bus_mA >= full_load)
1491 hub->mA_per_port = full_load;
Alan Stern55c52712005-11-23 12:03:12 -05001492 else {
1493 hub->mA_per_port = hdev->bus_mA;
1494 hub->limited_power = 1;
1495 }
Alan Stern7d35b922005-04-25 11:18:32 -04001496 } else if ((hubstatus & (1 << USB_DEVICE_SELF_POWERED)) == 0) {
Sebastian Andrzej Siewior430ee582012-12-18 15:25:47 +01001497 int remaining = hdev->bus_mA -
1498 hub->descriptor->bHubContrCurrent;
1499
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 dev_dbg(hub_dev, "hub controller current requirement: %dmA\n",
1501 hub->descriptor->bHubContrCurrent);
Alan Stern55c52712005-11-23 12:03:12 -05001502 hub->limited_power = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503
Sebastian Andrzej Siewior430ee582012-12-18 15:25:47 +01001504 if (remaining < hdev->maxchild * unit_load)
1505 dev_warn(hub_dev,
Alan Stern55c52712005-11-23 12:03:12 -05001506 "insufficient power available "
1507 "to use all downstream ports\n");
Sebastian Andrzej Siewior430ee582012-12-18 15:25:47 +01001508 hub->mA_per_port = unit_load; /* 7.2.1 */
1509
Alan Stern55c52712005-11-23 12:03:12 -05001510 } else { /* Self-powered external hub */
1511 /* FIXME: What about battery-powered external hubs that
1512 * provide less current per port? */
Sebastian Andrzej Siewior430ee582012-12-18 15:25:47 +01001513 hub->mA_per_port = full_load;
Alan Stern55c52712005-11-23 12:03:12 -05001514 }
Sebastian Andrzej Siewior430ee582012-12-18 15:25:47 +01001515 if (hub->mA_per_port < full_load)
Alan Stern55c52712005-11-23 12:03:12 -05001516 dev_dbg(hub_dev, "%umA bus power budget for each child\n",
1517 hub->mA_per_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518
Sarah Sharpb356b7c2009-09-04 10:53:24 -07001519 /* Update the HCD's internal representation of this hub before khubd
1520 * starts getting port status changes for devices under the hub.
1521 */
Sarah Sharpb356b7c2009-09-04 10:53:24 -07001522 if (hcd->driver->update_hub_device) {
1523 ret = hcd->driver->update_hub_device(hcd, hdev,
1524 &hub->tt, GFP_KERNEL);
1525 if (ret < 0) {
1526 message = "can't update HCD hub info";
1527 goto fail;
1528 }
1529 }
1530
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531 ret = hub_hub_status(hub, &hubstatus, &hubchange);
1532 if (ret < 0) {
1533 message = "can't get hub status";
1534 goto fail;
1535 }
1536
1537 /* local power status reports aren't always correct */
1538 if (hdev->actconfig->desc.bmAttributes & USB_CONFIG_ATT_SELFPOWER)
1539 dev_dbg(hub_dev, "local power source is %s\n",
1540 (hubstatus & HUB_STATUS_LOCAL_POWER)
1541 ? "lost (inactive)" : "good");
1542
Greg Kroah-Hartman74ad9bd2005-06-20 21:15:16 -07001543 if ((wHubCharacteristics & HUB_CHAR_OCPM) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 dev_dbg(hub_dev, "%sover-current condition exists\n",
1545 (hubstatus & HUB_STATUS_OVERCURRENT) ? "" : "no ");
1546
inaky@linux.intel.com88fafff2006-10-11 20:05:59 -07001547 /* set up the interrupt endpoint
1548 * We use the EP's maxpacket size instead of (PORTS+1+7)/8
1549 * bytes as USB2.0[11.12.3] says because some hubs are known
1550 * to send more data (and thus cause overflow). For root hubs,
1551 * maxpktsize is defined in hcd.c's fake endpoint descriptors
1552 * to be big enough for at least USB_MAXCHILDREN ports. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 pipe = usb_rcvintpipe(hdev, endpoint->bEndpointAddress);
1554 maxp = usb_maxpacket(hdev, pipe, usb_pipeout(pipe));
1555
1556 if (maxp > sizeof(*hub->buffer))
1557 maxp = sizeof(*hub->buffer);
1558
1559 hub->urb = usb_alloc_urb(0, GFP_KERNEL);
1560 if (!hub->urb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561 ret = -ENOMEM;
1562 goto fail;
1563 }
1564
1565 usb_fill_int_urb(hub->urb, hdev, pipe, *hub->buffer, maxp, hub_irq,
1566 hub, endpoint->bInterval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567
1568 /* maybe cycle the hub leds */
1569 if (hub->has_indicators && blinkenlights)
Matthias Beyer469271f2013-10-10 23:41:27 +02001570 hub->indicator[0] = INDICATOR_CYCLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571
Krzysztof Mazure58547e2013-08-22 14:49:39 +02001572 for (i = 0; i < hdev->maxchild; i++) {
1573 ret = usb_hub_create_port_device(hub, i + 1);
1574 if (ret < 0) {
Lan Tianyufa2a9562012-09-05 13:44:31 +08001575 dev_err(hub->intfdev,
1576 "couldn't create port%d device.\n", i + 1);
Krzysztof Mazure58547e2013-08-22 14:49:39 +02001577 hdev->maxchild = i;
1578 goto fail_keep_maxchild;
1579 }
1580 }
Lan Tianyufa2a9562012-09-05 13:44:31 +08001581
Lan Tianyud2123fd2013-01-21 22:18:00 +08001582 usb_hub_adjust_deviceremovable(hdev, hub->descriptor);
1583
Alan Sternf2835212008-04-28 11:07:17 -04001584 hub_activate(hub, HUB_INIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 return 0;
1586
1587fail:
Krzysztof Mazurd0308d42013-08-22 14:49:38 +02001588 hdev->maxchild = 0;
Krzysztof Mazure58547e2013-08-22 14:49:39 +02001589fail_keep_maxchild:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590 dev_err (hub_dev, "config failed, %s (err %d)\n",
1591 message, ret);
1592 /* hub_disconnect() frees urb and descriptor */
1593 return ret;
1594}
1595
Alan Sterne8054852007-05-04 11:55:11 -04001596static void hub_release(struct kref *kref)
1597{
1598 struct usb_hub *hub = container_of(kref, struct usb_hub, kref);
1599
1600 usb_put_intf(to_usb_interface(hub->intfdev));
1601 kfree(hub);
1602}
1603
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604static unsigned highspeed_hubs;
1605
1606static void hub_disconnect(struct usb_interface *intf)
1607{
Huajun Li88162302012-03-12 21:00:19 +08001608 struct usb_hub *hub = usb_get_intfdata(intf);
Greg Kroah-Hartmanfa286182012-05-14 09:20:37 -07001609 struct usb_device *hdev = interface_to_usbdev(intf);
Lan Tianyufa2a9562012-09-05 13:44:31 +08001610 int i;
1611
Alan Sterne8054852007-05-04 11:55:11 -04001612 /* Take the hub off the event list and don't let it be added again */
1613 spin_lock_irq(&hub_event_lock);
Alan Stern8e4ceb32009-12-07 13:01:37 -05001614 if (!list_empty(&hub->event_list)) {
1615 list_del_init(&hub->event_list);
1616 usb_autopm_put_interface_no_suspend(intf);
1617 }
Alan Sterne8054852007-05-04 11:55:11 -04001618 hub->disconnected = 1;
1619 spin_unlock_irq(&hub_event_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620
Alan Stern7de18d82006-06-01 13:37:24 -04001621 /* Disconnect all children and quiesce the hub */
1622 hub->error = 0;
Alan Stern43303542008-04-28 11:07:31 -04001623 hub_quiesce(hub, HUB_DISCONNECT);
Alan Stern7de18d82006-06-01 13:37:24 -04001624
Alan Stern8b28c752005-08-10 17:04:13 -04001625 usb_set_intfdata (intf, NULL);
Alexander Shishkin1f2235b2012-09-12 14:48:31 +03001626
1627 for (i = 0; i < hdev->maxchild; i++)
1628 usb_hub_remove_port_device(hub, i + 1);
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001629 hub->hdev->maxchild = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630
Alan Sterne8054852007-05-04 11:55:11 -04001631 if (hub->hdev->speed == USB_SPEED_HIGH)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632 highspeed_hubs--;
1633
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634 usb_free_urb(hub->urb);
Lan Tianyufa2a9562012-09-05 13:44:31 +08001635 kfree(hub->ports);
Jesper Juhl1bc3c9e2005-04-18 17:39:34 -07001636 kfree(hub->descriptor);
Jesper Juhl1bc3c9e2005-04-18 17:39:34 -07001637 kfree(hub->status);
Alan Sternd697cdd2009-10-27 15:18:46 -04001638 kfree(hub->buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639
Lan Tianyu971fcd42013-01-23 04:26:29 +08001640 pm_suspend_ignore_children(&intf->dev, false);
Alan Sterne8054852007-05-04 11:55:11 -04001641 kref_put(&hub->kref, hub_release);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642}
1643
1644static int hub_probe(struct usb_interface *intf, const struct usb_device_id *id)
1645{
1646 struct usb_host_interface *desc;
1647 struct usb_endpoint_descriptor *endpoint;
1648 struct usb_device *hdev;
1649 struct usb_hub *hub;
1650
1651 desc = intf->cur_altsetting;
1652 hdev = interface_to_usbdev(intf);
1653
Ming Lei596d7892012-10-24 11:59:25 +08001654 /*
1655 * Set default autosuspend delay as 0 to speedup bus suspend,
1656 * based on the below considerations:
1657 *
1658 * - Unlike other drivers, the hub driver does not rely on the
1659 * autosuspend delay to provide enough time to handle a wakeup
1660 * event, and the submitted status URB is just to check future
1661 * change on hub downstream ports, so it is safe to do it.
1662 *
1663 * - The patch might cause one or more auto supend/resume for
1664 * below very rare devices when they are plugged into hub
1665 * first time:
1666 *
1667 * devices having trouble initializing, and disconnect
1668 * themselves from the bus and then reconnect a second
1669 * or so later
1670 *
1671 * devices just for downloading firmware, and disconnects
1672 * themselves after completing it
1673 *
1674 * For these quite rare devices, their drivers may change the
1675 * autosuspend delay of their parent hub in the probe() to one
1676 * appropriate value to avoid the subtle problem if someone
1677 * does care it.
1678 *
1679 * - The patch may cause one or more auto suspend/resume on
1680 * hub during running 'lsusb', but it is probably too
1681 * infrequent to worry about.
1682 *
1683 * - Change autosuspend delay of hub can avoid unnecessary auto
1684 * suspend timer for hub, also may decrease power consumption
1685 * of USB bus.
1686 */
1687 pm_runtime_set_autosuspend_delay(&hdev->dev, 0);
1688
Sarah Sharp2839f5b2012-01-06 16:27:25 -08001689 /* Hubs have proper suspend/resume support. */
1690 usb_enable_autosuspend(hdev);
Alan Stern088f7fe2010-01-08 12:56:54 -05001691
Felipe Balbi38f3ad52008-06-12 10:49:47 +03001692 if (hdev->level == MAX_TOPO_LEVEL) {
Wu Fengguangb9cef6c2008-12-15 15:32:01 +08001693 dev_err(&intf->dev,
1694 "Unsupported bus topology: hub nested too deep\n");
Felipe Balbi38f3ad52008-06-12 10:49:47 +03001695 return -E2BIG;
1696 }
1697
David Brownell89ccbdc2006-04-02 10:18:09 -08001698#ifdef CONFIG_USB_OTG_BLACKLIST_HUB
1699 if (hdev->parent) {
1700 dev_warn(&intf->dev, "ignoring external hub\n");
1701 return -ENODEV;
1702 }
1703#endif
1704
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 /* Some hubs have a subclass of 1, which AFAICT according to the */
1706 /* specs is not defined, but it works */
1707 if ((desc->desc.bInterfaceSubClass != 0) &&
1708 (desc->desc.bInterfaceSubClass != 1)) {
1709descriptor_error:
1710 dev_err (&intf->dev, "bad descriptor, ignoring hub\n");
1711 return -EIO;
1712 }
1713
1714 /* Multiple endpoints? What kind of mutant ninja-hub is this? */
1715 if (desc->desc.bNumEndpoints != 1)
1716 goto descriptor_error;
1717
1718 endpoint = &desc->endpoint[0].desc;
1719
Luiz Fernando N. Capitulinofbf81c22006-09-27 11:58:53 -07001720 /* If it's not an interrupt in endpoint, we'd better punt! */
1721 if (!usb_endpoint_is_int_in(endpoint))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722 goto descriptor_error;
1723
1724 /* We found a hub */
1725 dev_info (&intf->dev, "USB hub found\n");
1726
Alan Stern0a1ef3b2005-10-24 15:38:24 -04001727 hub = kzalloc(sizeof(*hub), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728 if (!hub) {
1729 dev_dbg (&intf->dev, "couldn't kmalloc hub struct\n");
1730 return -ENOMEM;
1731 }
1732
Alan Sterne8054852007-05-04 11:55:11 -04001733 kref_init(&hub->kref);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734 INIT_LIST_HEAD(&hub->event_list);
1735 hub->intfdev = &intf->dev;
1736 hub->hdev = hdev;
David Howellsc4028952006-11-22 14:57:56 +00001737 INIT_DELAYED_WORK(&hub->leds, led_work);
Alan Stern8520f382008-09-22 14:44:26 -04001738 INIT_DELAYED_WORK(&hub->init_work, NULL);
Alan Sterne8054852007-05-04 11:55:11 -04001739 usb_get_intf(intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740
1741 usb_set_intfdata (intf, hub);
Alan Stern40f122f2006-11-09 14:44:33 -05001742 intf->needs_remote_wakeup = 1;
Lan Tianyu971fcd42013-01-23 04:26:29 +08001743 pm_suspend_ignore_children(&intf->dev, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744
1745 if (hdev->speed == USB_SPEED_HIGH)
1746 highspeed_hubs++;
1747
Ming Leie6f30de2012-10-24 11:59:24 +08001748 if (id->driver_info & HUB_QUIRK_CHECK_PORT_AUTOSUSPEND)
1749 hub->quirk_check_port_auto_suspend = 1;
1750
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751 if (hub_configure(hub, endpoint) >= 0)
1752 return 0;
1753
1754 hub_disconnect (intf);
1755 return -ENODEV;
1756}
1757
1758static int
1759hub_ioctl(struct usb_interface *intf, unsigned int code, void *user_data)
1760{
1761 struct usb_device *hdev = interface_to_usbdev (intf);
Lan Tianyuad493e52013-01-23 04:26:30 +08001762 struct usb_hub *hub = usb_hub_to_struct_hub(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763
1764 /* assert ifno == 0 (part of hub spec) */
1765 switch (code) {
1766 case USBDEVFS_HUB_PORTINFO: {
1767 struct usbdevfs_hub_portinfo *info = user_data;
1768 int i;
1769
1770 spin_lock_irq(&device_state_lock);
1771 if (hdev->devnum <= 0)
1772 info->nports = 0;
1773 else {
1774 info->nports = hdev->maxchild;
1775 for (i = 0; i < info->nports; i++) {
Lan Tianyuff823c792012-09-05 13:44:32 +08001776 if (hub->ports[i]->child == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777 info->port[i] = 0;
1778 else
1779 info->port[i] =
Lan Tianyuff823c792012-09-05 13:44:32 +08001780 hub->ports[i]->child->devnum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781 }
1782 }
1783 spin_unlock_irq(&device_state_lock);
1784
1785 return info->nports + 1;
1786 }
1787
1788 default:
1789 return -ENOSYS;
1790 }
1791}
1792
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001793/*
1794 * Allow user programs to claim ports on a hub. When a device is attached
1795 * to one of these "claimed" ports, the program will "own" the device.
1796 */
1797static int find_port_owner(struct usb_device *hdev, unsigned port1,
Lan Tianyu336c5c32012-07-06 14:13:52 +08001798 struct dev_state ***ppowner)
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001799{
Mathias Nyman413412612013-06-18 17:28:48 +03001800 struct usb_hub *hub = usb_hub_to_struct_hub(hdev);
1801
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001802 if (hdev->state == USB_STATE_NOTATTACHED)
1803 return -ENODEV;
1804 if (port1 == 0 || port1 > hdev->maxchild)
1805 return -EINVAL;
1806
Mathias Nyman413412612013-06-18 17:28:48 +03001807 /* Devices not managed by the hub driver
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001808 * will always have maxchild equal to 0.
1809 */
Mathias Nyman413412612013-06-18 17:28:48 +03001810 *ppowner = &(hub->ports[port1 - 1]->port_owner);
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001811 return 0;
1812}
1813
1814/* In the following three functions, the caller must hold hdev's lock */
Lan Tianyu336c5c32012-07-06 14:13:52 +08001815int usb_hub_claim_port(struct usb_device *hdev, unsigned port1,
1816 struct dev_state *owner)
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001817{
1818 int rc;
Lan Tianyu336c5c32012-07-06 14:13:52 +08001819 struct dev_state **powner;
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001820
1821 rc = find_port_owner(hdev, port1, &powner);
1822 if (rc)
1823 return rc;
1824 if (*powner)
1825 return -EBUSY;
1826 *powner = owner;
1827 return rc;
1828}
1829
Lan Tianyu336c5c32012-07-06 14:13:52 +08001830int usb_hub_release_port(struct usb_device *hdev, unsigned port1,
1831 struct dev_state *owner)
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001832{
1833 int rc;
Lan Tianyu336c5c32012-07-06 14:13:52 +08001834 struct dev_state **powner;
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001835
1836 rc = find_port_owner(hdev, port1, &powner);
1837 if (rc)
1838 return rc;
1839 if (*powner != owner)
1840 return -ENOENT;
1841 *powner = NULL;
1842 return rc;
1843}
1844
Lan Tianyu336c5c32012-07-06 14:13:52 +08001845void usb_hub_release_all_ports(struct usb_device *hdev, struct dev_state *owner)
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001846{
Lan Tianyuad493e52013-01-23 04:26:30 +08001847 struct usb_hub *hub = usb_hub_to_struct_hub(hdev);
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001848 int n;
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001849
Lan Tianyufa2a9562012-09-05 13:44:31 +08001850 for (n = 0; n < hdev->maxchild; n++) {
1851 if (hub->ports[n]->port_owner == owner)
1852 hub->ports[n]->port_owner = NULL;
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001853 }
Lan Tianyufa2a9562012-09-05 13:44:31 +08001854
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001855}
1856
1857/* The caller must hold udev's lock */
1858bool usb_device_is_owned(struct usb_device *udev)
1859{
1860 struct usb_hub *hub;
1861
1862 if (udev->state == USB_STATE_NOTATTACHED || !udev->parent)
1863 return false;
Lan Tianyuad493e52013-01-23 04:26:30 +08001864 hub = usb_hub_to_struct_hub(udev->parent);
Lan Tianyufa2a9562012-09-05 13:44:31 +08001865 return !!hub->ports[udev->portnum - 1]->port_owner;
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001866}
1867
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868static void recursively_mark_NOTATTACHED(struct usb_device *udev)
1869{
Lan Tianyuad493e52013-01-23 04:26:30 +08001870 struct usb_hub *hub = usb_hub_to_struct_hub(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871 int i;
1872
1873 for (i = 0; i < udev->maxchild; ++i) {
Lan Tianyuff823c792012-09-05 13:44:32 +08001874 if (hub->ports[i]->child)
1875 recursively_mark_NOTATTACHED(hub->ports[i]->child);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876 }
Alan Stern9bbdf1e2010-01-08 12:57:28 -05001877 if (udev->state == USB_STATE_SUSPENDED)
Sarah Sharp15123002007-12-21 16:54:15 -08001878 udev->active_duration -= jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879 udev->state = USB_STATE_NOTATTACHED;
1880}
1881
1882/**
1883 * usb_set_device_state - change a device's current state (usbcore, hcds)
1884 * @udev: pointer to device whose state should be changed
1885 * @new_state: new state value to be stored
1886 *
1887 * udev->state is _not_ fully protected by the device lock. Although
1888 * most transitions are made only while holding the lock, the state can
1889 * can change to USB_STATE_NOTATTACHED at almost any time. This
1890 * is so that devices can be marked as disconnected as soon as possible,
1891 * without having to wait for any semaphores to be released. As a result,
1892 * all changes to any device's state must be protected by the
1893 * device_state_lock spinlock.
1894 *
1895 * Once a device has been added to the device tree, all changes to its state
1896 * should be made using this routine. The state should _not_ be set directly.
1897 *
1898 * If udev->state is already USB_STATE_NOTATTACHED then no change is made.
1899 * Otherwise udev->state is set to new_state, and if new_state is
1900 * USB_STATE_NOTATTACHED then all of udev's descendants' states are also set
1901 * to USB_STATE_NOTATTACHED.
1902 */
1903void usb_set_device_state(struct usb_device *udev,
1904 enum usb_device_state new_state)
1905{
1906 unsigned long flags;
Rafael J. Wysocki4681b172011-02-08 23:25:48 +01001907 int wakeup = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908
1909 spin_lock_irqsave(&device_state_lock, flags);
1910 if (udev->state == USB_STATE_NOTATTACHED)
1911 ; /* do nothing */
David Brownellb94dc6b2005-09-12 19:39:39 -07001912 else if (new_state != USB_STATE_NOTATTACHED) {
David Brownellfb669cc2006-01-24 08:40:27 -08001913
1914 /* root hub wakeup capabilities are managed out-of-band
1915 * and may involve silicon errata ... ignore them here.
1916 */
1917 if (udev->parent) {
Alan Stern645daaa2006-08-30 15:47:02 -04001918 if (udev->state == USB_STATE_SUSPENDED
1919 || new_state == USB_STATE_SUSPENDED)
1920 ; /* No change to wakeup settings */
1921 else if (new_state == USB_STATE_CONFIGURED)
Rafael J. Wysocki4681b172011-02-08 23:25:48 +01001922 wakeup = udev->actconfig->desc.bmAttributes
1923 & USB_CONFIG_ATT_WAKEUP;
Alan Stern645daaa2006-08-30 15:47:02 -04001924 else
Rafael J. Wysocki4681b172011-02-08 23:25:48 +01001925 wakeup = 0;
David Brownellfb669cc2006-01-24 08:40:27 -08001926 }
Sarah Sharp15123002007-12-21 16:54:15 -08001927 if (udev->state == USB_STATE_SUSPENDED &&
1928 new_state != USB_STATE_SUSPENDED)
1929 udev->active_duration -= jiffies;
1930 else if (new_state == USB_STATE_SUSPENDED &&
1931 udev->state != USB_STATE_SUSPENDED)
1932 udev->active_duration += jiffies;
Alan Stern645daaa2006-08-30 15:47:02 -04001933 udev->state = new_state;
David Brownellb94dc6b2005-09-12 19:39:39 -07001934 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935 recursively_mark_NOTATTACHED(udev);
1936 spin_unlock_irqrestore(&device_state_lock, flags);
Rafael J. Wysocki4681b172011-02-08 23:25:48 +01001937 if (wakeup >= 0)
1938 device_set_wakeup_capable(&udev->dev, wakeup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939}
David Vrabel6da9c992009-02-18 14:43:47 +00001940EXPORT_SYMBOL_GPL(usb_set_device_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941
Inaky Perez-Gonzalez8af548d2008-04-08 13:24:46 -07001942/*
Alan Stern3b29b682011-02-22 09:53:41 -05001943 * Choose a device number.
1944 *
1945 * Device numbers are used as filenames in usbfs. On USB-1.1 and
1946 * USB-2.0 buses they are also used as device addresses, however on
1947 * USB-3.0 buses the address is assigned by the controller hardware
1948 * and it usually is not the same as the device number.
1949 *
Inaky Perez-Gonzalez8af548d2008-04-08 13:24:46 -07001950 * WUSB devices are simple: they have no hubs behind, so the mapping
1951 * device <-> virtual port number becomes 1:1. Why? to simplify the
1952 * life of the device connection logic in
1953 * drivers/usb/wusbcore/devconnect.c. When we do the initial secret
1954 * handshake we need to assign a temporary address in the unauthorized
1955 * space. For simplicity we use the first virtual port number found to
1956 * be free [drivers/usb/wusbcore/devconnect.c:wusbhc_devconnect_ack()]
1957 * and that becomes it's address [X < 128] or its unauthorized address
1958 * [X | 0x80].
1959 *
1960 * We add 1 as an offset to the one-based USB-stack port number
1961 * (zero-based wusb virtual port index) for two reasons: (a) dev addr
1962 * 0 is reserved by USB for default address; (b) Linux's USB stack
1963 * uses always #1 for the root hub of the controller. So USB stack's
1964 * port #1, which is wusb virtual-port #0 has address #2.
Sarah Sharpc6515272009-04-27 19:57:26 -07001965 *
1966 * Devices connected under xHCI are not as simple. The host controller
1967 * supports virtualization, so the hardware assigns device addresses and
1968 * the HCD must setup data structures before issuing a set address
1969 * command to the hardware.
Inaky Perez-Gonzalez8af548d2008-04-08 13:24:46 -07001970 */
Alan Stern3b29b682011-02-22 09:53:41 -05001971static void choose_devnum(struct usb_device *udev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972{
1973 int devnum;
1974 struct usb_bus *bus = udev->bus;
1975
1976 /* If khubd ever becomes multithreaded, this will need a lock */
Inaky Perez-Gonzalez8af548d2008-04-08 13:24:46 -07001977 if (udev->wusb) {
1978 devnum = udev->portnum + 1;
1979 BUG_ON(test_bit(devnum, bus->devmap.devicemap));
1980 } else {
1981 /* Try to allocate the next devnum beginning at
1982 * bus->devnum_next. */
1983 devnum = find_next_zero_bit(bus->devmap.devicemap, 128,
1984 bus->devnum_next);
1985 if (devnum >= 128)
1986 devnum = find_next_zero_bit(bus->devmap.devicemap,
1987 128, 1);
Matthias Beyer469271f2013-10-10 23:41:27 +02001988 bus->devnum_next = (devnum >= 127 ? 1 : devnum + 1);
Inaky Perez-Gonzalez8af548d2008-04-08 13:24:46 -07001989 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990 if (devnum < 128) {
1991 set_bit(devnum, bus->devmap.devicemap);
1992 udev->devnum = devnum;
1993 }
1994}
1995
Alan Stern3b29b682011-02-22 09:53:41 -05001996static void release_devnum(struct usb_device *udev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997{
1998 if (udev->devnum > 0) {
1999 clear_bit(udev->devnum, udev->bus->devmap.devicemap);
2000 udev->devnum = -1;
2001 }
2002}
2003
Alan Stern3b29b682011-02-22 09:53:41 -05002004static void update_devnum(struct usb_device *udev, int devnum)
David Vrabel4953d142008-04-08 13:24:46 -07002005{
2006 /* The address for a WUSB device is managed by wusbcore. */
2007 if (!udev->wusb)
2008 udev->devnum = devnum;
2009}
2010
Herbert Xuf7410ce2010-01-10 20:15:03 +11002011static void hub_free_dev(struct usb_device *udev)
2012{
2013 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
2014
2015 /* Root hubs aren't real devices, so don't free HCD resources */
2016 if (hcd->driver->free_dev && udev->parent)
2017 hcd->driver->free_dev(hcd, udev);
2018}
2019
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020/**
2021 * usb_disconnect - disconnect a device (usbcore-internal)
2022 * @pdev: pointer to device being disconnected
2023 * Context: !in_interrupt ()
2024 *
2025 * Something got disconnected. Get rid of it and all of its children.
2026 *
2027 * If *pdev is a normal device then the parent hub must already be locked.
Bjorn Helgaasdb8f2aa2013-09-13 13:57:34 -06002028 * If *pdev is a root hub then the caller must hold the usb_bus_list_lock,
2029 * which protects the set of root hubs as well as the list of buses.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030 *
2031 * Only hub drivers (including virtual root hub drivers for host
2032 * controllers) should ever call this.
2033 *
2034 * This call is synchronous, and may not be used in an interrupt context.
2035 */
2036void usb_disconnect(struct usb_device **pdev)
2037{
2038 struct usb_device *udev = *pdev;
Lan Tianyuad493e52013-01-23 04:26:30 +08002039 struct usb_hub *hub = usb_hub_to_struct_hub(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040 int i;
2041
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042 /* mark the device as inactive, so any further urb submissions for
2043 * this device (and any of its children) will fail immediately.
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002044 * this quiesces everything except pending urbs.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045 */
2046 usb_set_device_state(udev, USB_STATE_NOTATTACHED);
Alan Stern3b29b682011-02-22 09:53:41 -05002047 dev_info(&udev->dev, "USB disconnect, device number %d\n",
2048 udev->devnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049
Alan Stern9ad3d6c2005-11-17 17:10:32 -05002050 usb_lock_device(udev);
2051
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052 /* Free up all the children before we remove this device */
Huajun Li88162302012-03-12 21:00:19 +08002053 for (i = 0; i < udev->maxchild; i++) {
Lan Tianyuff823c792012-09-05 13:44:32 +08002054 if (hub->ports[i]->child)
2055 usb_disconnect(&hub->ports[i]->child);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056 }
2057
2058 /* deallocate hcd/hardware state ... nuking all pending urbs and
2059 * cleaning up all state associated with the current configuration
2060 * so that the hardware is now fully quiesced.
2061 */
Alan Stern782da722006-07-01 22:09:35 -04002062 dev_dbg (&udev->dev, "unregistering device\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063 usb_disable_device(udev, 0);
Alan Sterncde217a2008-10-21 15:28:46 -04002064 usb_hcd_synchronize_unlinks(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065
Lan Tianyufde26382013-01-20 01:53:33 +08002066 if (udev->parent) {
Lan Tianyuad493e52013-01-23 04:26:30 +08002067 struct usb_hub *hub = usb_hub_to_struct_hub(udev->parent);
2068 struct usb_port *port_dev = hub->ports[udev->portnum - 1];
Lan Tianyufde26382013-01-20 01:53:33 +08002069
2070 sysfs_remove_link(&udev->dev.kobj, "port");
2071 sysfs_remove_link(&port_dev->dev.kobj, "device");
Lan Tianyu971fcd42013-01-23 04:26:29 +08002072
Lan Tianyuad493e52013-01-23 04:26:30 +08002073 if (!port_dev->did_runtime_put)
2074 pm_runtime_put(&port_dev->dev);
2075 else
2076 port_dev->did_runtime_put = false;
Lan Tianyufde26382013-01-20 01:53:33 +08002077 }
2078
Alan Stern3b23dd62008-12-05 14:10:34 -05002079 usb_remove_ep_devs(&udev->ep0);
Alan Stern782da722006-07-01 22:09:35 -04002080 usb_unlock_device(udev);
Greg Kroah-Hartman3099e752005-06-20 21:15:16 -07002081
Alan Stern782da722006-07-01 22:09:35 -04002082 /* Unregister the device. The device driver is responsible
Alan Stern3b23dd62008-12-05 14:10:34 -05002083 * for de-configuring the device and invoking the remove-device
2084 * notifier chain (used by usbfs and possibly others).
Alan Stern782da722006-07-01 22:09:35 -04002085 */
2086 device_del(&udev->dev);
2087
2088 /* Free the device number and delete the parent's children[]
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089 * (or root_hub) pointer.
2090 */
Alan Stern3b29b682011-02-22 09:53:41 -05002091 release_devnum(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092
2093 /* Avoid races with recursively_mark_NOTATTACHED() */
2094 spin_lock_irq(&device_state_lock);
2095 *pdev = NULL;
2096 spin_unlock_irq(&device_state_lock);
2097
Herbert Xuf7410ce2010-01-10 20:15:03 +11002098 hub_free_dev(udev);
2099
Alan Stern782da722006-07-01 22:09:35 -04002100 put_device(&udev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101}
2102
Greg Kroah-Hartmanf2a383e2007-11-26 22:11:55 -08002103#ifdef CONFIG_USB_ANNOUNCE_NEW_DEVICES
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104static void show_string(struct usb_device *udev, char *id, char *string)
2105{
2106 if (!string)
2107 return;
Joe Perchesf2ec5222012-10-28 01:05:51 -07002108 dev_info(&udev->dev, "%s: %s\n", id, string);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109}
2110
Greg Kroah-Hartmanf2a383e2007-11-26 22:11:55 -08002111static void announce_device(struct usb_device *udev)
2112{
2113 dev_info(&udev->dev, "New USB device found, idVendor=%04x, idProduct=%04x\n",
2114 le16_to_cpu(udev->descriptor.idVendor),
2115 le16_to_cpu(udev->descriptor.idProduct));
Wu Fengguangb9cef6c2008-12-15 15:32:01 +08002116 dev_info(&udev->dev,
2117 "New USB device strings: Mfr=%d, Product=%d, SerialNumber=%d\n",
Greg Kroah-Hartmanf2a383e2007-11-26 22:11:55 -08002118 udev->descriptor.iManufacturer,
2119 udev->descriptor.iProduct,
2120 udev->descriptor.iSerialNumber);
2121 show_string(udev, "Product", udev->product);
2122 show_string(udev, "Manufacturer", udev->manufacturer);
2123 show_string(udev, "SerialNumber", udev->serial);
2124}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125#else
Greg Kroah-Hartmanf2a383e2007-11-26 22:11:55 -08002126static inline void announce_device(struct usb_device *udev) { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127#endif
2128
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129#ifdef CONFIG_USB_OTG
2130#include "otg_whitelist.h"
2131#endif
2132
Oliver Neukum3ede7602007-01-11 14:35:50 +01002133/**
Alan Stern8d8558d2009-12-08 15:50:41 -05002134 * usb_enumerate_device_otg - FIXME (usbcore-internal)
Oliver Neukum3ede7602007-01-11 14:35:50 +01002135 * @udev: newly addressed device (in ADDRESS state)
2136 *
Alan Stern8d8558d2009-12-08 15:50:41 -05002137 * Finish enumeration for On-The-Go devices
Yacine Belkadi626f0902013-08-02 20:10:04 +02002138 *
2139 * Return: 0 if successful. A negative error code otherwise.
Oliver Neukum3ede7602007-01-11 14:35:50 +01002140 */
Alan Stern8d8558d2009-12-08 15:50:41 -05002141static int usb_enumerate_device_otg(struct usb_device *udev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142{
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07002143 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144
2145#ifdef CONFIG_USB_OTG
2146 /*
2147 * OTG-aware devices on OTG-capable root hubs may be able to use SRP,
2148 * to wake us after we've powered off VBUS; and HNP, switching roles
2149 * "host" to "peripheral". The OTG descriptor helps figure this out.
2150 */
2151 if (!udev->bus->is_b_host
2152 && udev->config
2153 && udev->parent == udev->bus->root_hub) {
Felipe Balbi2eb50522009-12-04 15:47:43 +02002154 struct usb_otg_descriptor *desc = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155 struct usb_bus *bus = udev->bus;
2156
2157 /* descriptor may appear anywhere in config */
2158 if (__usb_get_extra_descriptor (udev->rawdescriptors[0],
2159 le16_to_cpu(udev->config[0].desc.wTotalLength),
2160 USB_DT_OTG, (void **) &desc) == 0) {
2161 if (desc->bmAttributes & USB_OTG_HNP) {
Alan Stern12c3da32005-11-23 12:09:52 -05002162 unsigned port1 = udev->portnum;
David Brownellfc849b82006-09-18 16:53:26 -07002163
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164 dev_info(&udev->dev,
2165 "Dual-Role OTG device on %sHNP port\n",
2166 (port1 == bus->otg_port)
2167 ? "" : "non-");
2168
2169 /* enable HNP before suspend, it's simpler */
2170 if (port1 == bus->otg_port)
2171 bus->b_hnp_enable = 1;
2172 err = usb_control_msg(udev,
2173 usb_sndctrlpipe(udev, 0),
2174 USB_REQ_SET_FEATURE, 0,
2175 bus->b_hnp_enable
2176 ? USB_DEVICE_B_HNP_ENABLE
2177 : USB_DEVICE_A_ALT_HNP_SUPPORT,
2178 0, NULL, 0, USB_CTRL_SET_TIMEOUT);
2179 if (err < 0) {
2180 /* OTG MESSAGE: report errors here,
2181 * customize to match your product.
2182 */
2183 dev_info(&udev->dev,
Wu Fengguangb9cef6c2008-12-15 15:32:01 +08002184 "can't set HNP mode: %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185 err);
2186 bus->b_hnp_enable = 0;
2187 }
2188 }
2189 }
2190 }
2191
2192 if (!is_targeted(udev)) {
2193
2194 /* Maybe it can talk to us, though we can't talk to it.
2195 * (Includes HNP test device.)
2196 */
2197 if (udev->bus->b_hnp_enable || udev->bus->is_b_host) {
David Brownell634a84f2009-01-15 13:51:28 -08002198 err = usb_port_suspend(udev, PMSG_SUSPEND);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199 if (err < 0)
2200 dev_dbg(&udev->dev, "HNP fail, %d\n", err);
2201 }
Vikram Panditaffcdc182007-05-25 21:31:07 -07002202 err = -ENOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203 goto fail;
2204 }
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07002205fail:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206#endif
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07002207 return err;
2208}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07002210
2211/**
Alan Stern8d8558d2009-12-08 15:50:41 -05002212 * usb_enumerate_device - Read device configs/intfs/otg (usbcore-internal)
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07002213 * @udev: newly addressed device (in ADDRESS state)
2214 *
2215 * This is only called by usb_new_device() and usb_authorize_device()
2216 * and FIXME -- all comments that apply to them apply here wrt to
2217 * environment.
2218 *
2219 * If the device is WUSB and not authorized, we don't attempt to read
2220 * the string descriptors, as they will be errored out by the device
2221 * until it has been authorized.
Yacine Belkadi626f0902013-08-02 20:10:04 +02002222 *
2223 * Return: 0 if successful. A negative error code otherwise.
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07002224 */
Alan Stern8d8558d2009-12-08 15:50:41 -05002225static int usb_enumerate_device(struct usb_device *udev)
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07002226{
2227 int err;
2228
2229 if (udev->config == NULL) {
2230 err = usb_get_configuration(udev);
2231 if (err < 0) {
Alan Sterne9e88fb2013-03-27 16:14:01 -04002232 if (err != -ENODEV)
2233 dev_err(&udev->dev, "can't read configurations, error %d\n",
2234 err);
Laurent Pinchart80da2e02012-07-19 12:39:13 +02002235 return err;
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07002236 }
2237 }
Thomas Pugliese83e83ec2013-12-09 13:40:29 -06002238
2239 /* read the standard strings and cache them if present */
2240 udev->product = usb_cache_string(udev, udev->descriptor.iProduct);
2241 udev->manufacturer = usb_cache_string(udev,
2242 udev->descriptor.iManufacturer);
2243 udev->serial = usb_cache_string(udev, udev->descriptor.iSerialNumber);
2244
Alan Stern8d8558d2009-12-08 15:50:41 -05002245 err = usb_enumerate_device_otg(udev);
Laurent Pinchart80da2e02012-07-19 12:39:13 +02002246 if (err < 0)
2247 return err;
2248
2249 usb_detect_interface_quirks(udev);
2250
2251 return 0;
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07002252}
2253
Matthew Garrettd35e70d2012-02-03 17:11:55 -05002254static void set_usb_port_removable(struct usb_device *udev)
2255{
2256 struct usb_device *hdev = udev->parent;
2257 struct usb_hub *hub;
2258 u8 port = udev->portnum;
2259 u16 wHubCharacteristics;
2260 bool removable = true;
2261
2262 if (!hdev)
2263 return;
2264
Lan Tianyuad493e52013-01-23 04:26:30 +08002265 hub = usb_hub_to_struct_hub(udev->parent);
Matthew Garrettd35e70d2012-02-03 17:11:55 -05002266
2267 wHubCharacteristics = le16_to_cpu(hub->descriptor->wHubCharacteristics);
2268
2269 if (!(wHubCharacteristics & HUB_CHAR_COMPOUND))
2270 return;
2271
2272 if (hub_is_superspeed(hdev)) {
Lan Tianyuca3c1532012-09-11 04:22:36 +08002273 if (le16_to_cpu(hub->descriptor->u.ss.DeviceRemovable)
2274 & (1 << port))
Matthew Garrettd35e70d2012-02-03 17:11:55 -05002275 removable = false;
2276 } else {
2277 if (hub->descriptor->u.hs.DeviceRemovable[port / 8] & (1 << (port % 8)))
2278 removable = false;
2279 }
2280
2281 if (removable)
2282 udev->removable = USB_DEVICE_REMOVABLE;
2283 else
2284 udev->removable = USB_DEVICE_FIXED;
2285}
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07002286
2287/**
2288 * usb_new_device - perform initial device setup (usbcore-internal)
2289 * @udev: newly addressed device (in ADDRESS state)
2290 *
Alan Stern8d8558d2009-12-08 15:50:41 -05002291 * This is called with devices which have been detected but not fully
2292 * enumerated. The device descriptor is available, but not descriptors
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07002293 * for any device configuration. The caller must have locked either
2294 * the parent hub (if udev is a normal device) or else the
2295 * usb_bus_list_lock (if udev is a root hub). The parent's pointer to
2296 * udev has already been installed, but udev is not yet visible through
2297 * sysfs or other filesystem code.
2298 *
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07002299 * This call is synchronous, and may not be used in an interrupt context.
2300 *
2301 * Only the hub driver or root-hub registrar should ever call this.
Yacine Belkadi626f0902013-08-02 20:10:04 +02002302 *
2303 * Return: Whether the device is configured properly or not. Zero if the
2304 * interface was registered with the driver core; else a negative errno
2305 * value.
2306 *
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07002307 */
2308int usb_new_device(struct usb_device *udev)
2309{
2310 int err;
2311
Dan Streetman16985402010-01-06 09:56:53 -05002312 if (udev->parent) {
Dan Streetman16985402010-01-06 09:56:53 -05002313 /* Initialize non-root-hub device wakeup to disabled;
2314 * device (un)configuration controls wakeup capable
2315 * sysfs power/wakeup controls wakeup enabled/disabled
2316 */
2317 device_init_wakeup(&udev->dev, 0);
Dan Streetman16985402010-01-06 09:56:53 -05002318 }
2319
Alan Stern9bbdf1e2010-01-08 12:57:28 -05002320 /* Tell the runtime-PM framework the device is active */
2321 pm_runtime_set_active(&udev->dev);
Alan Sternc08512c2010-11-15 15:57:58 -05002322 pm_runtime_get_noresume(&udev->dev);
Alan Sternfcc4a012010-11-15 15:57:51 -05002323 pm_runtime_use_autosuspend(&udev->dev);
Alan Stern9bbdf1e2010-01-08 12:57:28 -05002324 pm_runtime_enable(&udev->dev);
2325
Alan Sternc08512c2010-11-15 15:57:58 -05002326 /* By default, forbid autosuspend for all devices. It will be
2327 * allowed for hubs during binding.
2328 */
2329 usb_disable_autosuspend(udev);
2330
Alan Stern8d8558d2009-12-08 15:50:41 -05002331 err = usb_enumerate_device(udev); /* Read descriptors */
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07002332 if (err < 0)
2333 goto fail;
Sarah Sharpc6515272009-04-27 19:57:26 -07002334 dev_dbg(&udev->dev, "udev %d, busnum %d, minor = %d\n",
2335 udev->devnum, udev->bus->busnum,
2336 (((udev->bus->busnum-1) * 128) + (udev->devnum-1)));
Kay Sievers9f8b17e2007-03-13 15:59:31 +01002337 /* export the usbdev device-node for libusb */
2338 udev->dev.devt = MKDEV(USB_DEVICE_MAJOR,
2339 (((udev->bus->busnum-1) * 128) + (udev->devnum-1)));
2340
Alan Stern6cd13202008-11-13 15:08:30 -05002341 /* Tell the world! */
2342 announce_device(udev);
Alan Stern195af2c2007-07-16 15:28:19 -04002343
Theodore Ts'ob04b3152012-07-04 11:22:20 -04002344 if (udev->serial)
2345 add_device_randomness(udev->serial, strlen(udev->serial));
2346 if (udev->product)
2347 add_device_randomness(udev->product, strlen(udev->product));
2348 if (udev->manufacturer)
2349 add_device_randomness(udev->manufacturer,
2350 strlen(udev->manufacturer));
2351
Rafael J. Wysocki927bc912010-02-08 19:18:16 +01002352 device_enable_async_suspend(&udev->dev);
Matthew Garrettd35e70d2012-02-03 17:11:55 -05002353
2354 /*
2355 * check whether the hub marks this port as non-removable. Do it
2356 * now so that platform-specific data can override it in
2357 * device_add()
2358 */
2359 if (udev->parent)
2360 set_usb_port_removable(udev);
2361
Alan Stern782da722006-07-01 22:09:35 -04002362 /* Register the device. The device driver is responsible
Alan Stern3b23dd62008-12-05 14:10:34 -05002363 * for configuring the device and invoking the add-device
2364 * notifier chain (used by usbfs and possibly others).
Alan Stern782da722006-07-01 22:09:35 -04002365 */
Kay Sievers9f8b17e2007-03-13 15:59:31 +01002366 err = device_add(&udev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367 if (err) {
2368 dev_err(&udev->dev, "can't device_add, error %d\n", err);
2369 goto fail;
2370 }
Alan Stern9ad3d6c2005-11-17 17:10:32 -05002371
Lan Tianyufde26382013-01-20 01:53:33 +08002372 /* Create link files between child device and usb port device. */
2373 if (udev->parent) {
Lan Tianyuad493e52013-01-23 04:26:30 +08002374 struct usb_hub *hub = usb_hub_to_struct_hub(udev->parent);
2375 struct usb_port *port_dev = hub->ports[udev->portnum - 1];
Lan Tianyufde26382013-01-20 01:53:33 +08002376
2377 err = sysfs_create_link(&udev->dev.kobj,
2378 &port_dev->dev.kobj, "port");
2379 if (err)
2380 goto fail;
2381
2382 err = sysfs_create_link(&port_dev->dev.kobj,
2383 &udev->dev.kobj, "device");
2384 if (err) {
2385 sysfs_remove_link(&udev->dev.kobj, "port");
2386 goto fail;
2387 }
Lan Tianyu971fcd42013-01-23 04:26:29 +08002388
2389 pm_runtime_get_sync(&port_dev->dev);
Lan Tianyufde26382013-01-20 01:53:33 +08002390 }
2391
Alan Stern3b23dd62008-12-05 14:10:34 -05002392 (void) usb_create_ep_devs(&udev->dev, &udev->ep0, udev);
Alan Sternc08512c2010-11-15 15:57:58 -05002393 usb_mark_last_busy(udev);
2394 pm_runtime_put_sync_autosuspend(&udev->dev);
Greg Kroah-Hartmanc0664752006-08-11 01:55:12 -07002395 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396
2397fail:
2398 usb_set_device_state(udev, USB_STATE_NOTATTACHED);
Alan Stern9bbdf1e2010-01-08 12:57:28 -05002399 pm_runtime_disable(&udev->dev);
2400 pm_runtime_set_suspended(&udev->dev);
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07002401 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402}
2403
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002404
2405/**
Randy Dunlapfd39c862007-10-15 17:30:02 -07002406 * usb_deauthorize_device - deauthorize a device (usbcore-internal)
2407 * @usb_dev: USB device
2408 *
2409 * Move the USB device to a very basic state where interfaces are disabled
2410 * and the device is in fact unconfigured and unusable.
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002411 *
2412 * We share a lock (that we have) with device_del(), so we need to
2413 * defer its call.
Yacine Belkadi626f0902013-08-02 20:10:04 +02002414 *
2415 * Return: 0.
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002416 */
2417int usb_deauthorize_device(struct usb_device *usb_dev)
2418{
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002419 usb_lock_device(usb_dev);
2420 if (usb_dev->authorized == 0)
2421 goto out_unauthorized;
Alan Sternda307122009-12-08 15:54:44 -05002422
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002423 usb_dev->authorized = 0;
2424 usb_set_configuration(usb_dev, -1);
Alan Sternda307122009-12-08 15:54:44 -05002425
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002426out_unauthorized:
2427 usb_unlock_device(usb_dev);
2428 return 0;
2429}
2430
2431
2432int usb_authorize_device(struct usb_device *usb_dev)
2433{
2434 int result = 0, c;
Alan Sternda307122009-12-08 15:54:44 -05002435
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002436 usb_lock_device(usb_dev);
2437 if (usb_dev->authorized == 1)
2438 goto out_authorized;
Alan Sternda307122009-12-08 15:54:44 -05002439
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002440 result = usb_autoresume_device(usb_dev);
2441 if (result < 0) {
2442 dev_err(&usb_dev->dev,
2443 "can't autoresume for authorization: %d\n", result);
2444 goto error_autoresume;
2445 }
2446 result = usb_get_device_descriptor(usb_dev, sizeof(usb_dev->descriptor));
2447 if (result < 0) {
2448 dev_err(&usb_dev->dev, "can't re-read device descriptor for "
2449 "authorization: %d\n", result);
2450 goto error_device_descriptor;
2451 }
Alan Sternda307122009-12-08 15:54:44 -05002452
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002453 usb_dev->authorized = 1;
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002454 /* Choose and set the configuration. This registers the interfaces
2455 * with the driver core and lets interface drivers bind to them.
2456 */
Greg Kroah-Hartmanb5ea0602007-08-02 22:44:27 -06002457 c = usb_choose_configuration(usb_dev);
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002458 if (c >= 0) {
2459 result = usb_set_configuration(usb_dev, c);
2460 if (result) {
2461 dev_err(&usb_dev->dev,
2462 "can't set config #%d, error %d\n", c, result);
2463 /* This need not be fatal. The user can try to
2464 * set other configurations. */
2465 }
2466 }
2467 dev_info(&usb_dev->dev, "authorized to connect\n");
Alan Sternda307122009-12-08 15:54:44 -05002468
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002469error_device_descriptor:
Alan Sternda307122009-12-08 15:54:44 -05002470 usb_autosuspend_device(usb_dev);
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002471error_autoresume:
2472out_authorized:
Matthias Beyer781b2132013-10-10 23:41:29 +02002473 usb_unlock_device(usb_dev); /* complements locktree */
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002474 return result;
2475}
2476
2477
Inaky Perez-Gonzalez0165de02006-08-25 19:35:29 -07002478/* Returns 1 if @hub is a WUSB root hub, 0 otherwise */
2479static unsigned hub_is_wusb(struct usb_hub *hub)
2480{
2481 struct usb_hcd *hcd;
2482 if (hub->hdev->parent != NULL) /* not a root hub? */
2483 return 0;
2484 hcd = container_of(hub->hdev->bus, struct usb_hcd, self);
2485 return hcd->wireless;
2486}
2487
2488
Linus Torvalds1da177e2005-04-16 15:20:36 -07002489#define PORT_RESET_TRIES 5
2490#define SET_ADDRESS_TRIES 2
2491#define GET_DESCRIPTOR_TRIES 2
2492#define SET_CONFIG_TRIES (2 * (use_both_schemes + 1))
Rusty Russell90ab5ee2012-01-13 09:32:20 +10302493#define USE_NEW_SCHEME(i) ((i) / 2 == (int)old_scheme_first)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494
2495#define HUB_ROOT_RESET_TIME 50 /* times are in msec */
2496#define HUB_SHORT_RESET_TIME 10
Andiry Xu75d7cf72011-09-13 16:41:11 -07002497#define HUB_BH_RESET_TIME 50
Linus Torvalds1da177e2005-04-16 15:20:36 -07002498#define HUB_LONG_RESET_TIME 200
Sarah Sharp77c7f072012-11-14 17:16:52 -08002499#define HUB_RESET_TIMEOUT 800
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500
Sarah Sharp10d674a2011-09-14 14:24:52 -07002501static int hub_port_reset(struct usb_hub *hub, int port1,
2502 struct usb_device *udev, unsigned int delay, bool warm);
2503
Stanislaw Ledwon8bea2bd2012-06-18 15:20:00 +02002504/* Is a USB 3.0 port in the Inactive or Complinance Mode state?
2505 * Port worm reset is required to recover
2506 */
2507static bool hub_port_warm_reset_required(struct usb_hub *hub, u16 portstatus)
Sarah Sharp10d674a2011-09-14 14:24:52 -07002508{
2509 return hub_is_superspeed(hub->hdev) &&
Stanislaw Ledwon8bea2bd2012-06-18 15:20:00 +02002510 (((portstatus & USB_PORT_STAT_LINK_STATE) ==
2511 USB_SS_PORT_LS_SS_INACTIVE) ||
2512 ((portstatus & USB_PORT_STAT_LINK_STATE) ==
2513 USB_SS_PORT_LS_COMP_MOD)) ;
Sarah Sharp10d674a2011-09-14 14:24:52 -07002514}
2515
Linus Torvalds1da177e2005-04-16 15:20:36 -07002516static int hub_port_wait_reset(struct usb_hub *hub, int port1,
Andiry Xu75d7cf72011-09-13 16:41:11 -07002517 struct usb_device *udev, unsigned int delay, bool warm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518{
2519 int delay_time, ret;
2520 u16 portstatus;
2521 u16 portchange;
2522
2523 for (delay_time = 0;
2524 delay_time < HUB_RESET_TIMEOUT;
2525 delay_time += delay) {
2526 /* wait to give the device a chance to reset */
2527 msleep(delay);
2528
2529 /* read and decode port status */
2530 ret = hub_port_status(hub, port1, &portstatus, &portchange);
2531 if (ret < 0)
2532 return ret;
2533
Sarah Sharp4f434472012-11-15 14:58:04 -08002534 /* The port state is unknown until the reset completes. */
Sarah Sharp470f0be2012-12-11 10:14:03 -08002535 if (!(portstatus & USB_PORT_STAT_RESET))
2536 break;
Sarah Sharp4f434472012-11-15 14:58:04 -08002537
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538 /* switch to the long delay after two short delay failures */
2539 if (delay_time >= 2 * HUB_SHORT_RESET_TIME)
2540 delay = HUB_LONG_RESET_TIME;
2541
2542 dev_dbg (hub->intfdev,
Andiry Xu75d7cf72011-09-13 16:41:11 -07002543 "port %d not %sreset yet, waiting %dms\n",
2544 port1, warm ? "warm " : "", delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545 }
2546
Sarah Sharp470f0be2012-12-11 10:14:03 -08002547 if ((portstatus & USB_PORT_STAT_RESET))
2548 return -EBUSY;
2549
2550 if (hub_port_warm_reset_required(hub, portstatus))
2551 return -ENOTCONN;
2552
2553 /* Device went away? */
2554 if (!(portstatus & USB_PORT_STAT_CONNECTION))
2555 return -ENOTCONN;
2556
2557 /* bomb out completely if the connection bounced. A USB 3.0
2558 * connection may bounce if multiple warm resets were issued,
2559 * but the device may have successfully re-connected. Ignore it.
2560 */
2561 if (!hub_is_superspeed(hub->hdev) &&
2562 (portchange & USB_PORT_STAT_C_CONNECTION))
2563 return -ENOTCONN;
2564
2565 if (!(portstatus & USB_PORT_STAT_ENABLE))
2566 return -EBUSY;
2567
2568 if (!udev)
2569 return 0;
2570
2571 if (hub_is_wusb(hub))
2572 udev->speed = USB_SPEED_WIRELESS;
2573 else if (hub_is_superspeed(hub->hdev))
2574 udev->speed = USB_SPEED_SUPER;
2575 else if (portstatus & USB_PORT_STAT_HIGH_SPEED)
2576 udev->speed = USB_SPEED_HIGH;
2577 else if (portstatus & USB_PORT_STAT_LOW_SPEED)
2578 udev->speed = USB_SPEED_LOW;
2579 else
2580 udev->speed = USB_SPEED_FULL;
2581 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002582}
2583
Andiry Xu75d7cf72011-09-13 16:41:11 -07002584static void hub_port_finish_reset(struct usb_hub *hub, int port1,
Sarah Sharpa24a6072012-11-01 11:20:44 -07002585 struct usb_device *udev, int *status)
Andiry Xu75d7cf72011-09-13 16:41:11 -07002586{
2587 switch (*status) {
2588 case 0:
Sarah Sharpa24a6072012-11-01 11:20:44 -07002589 /* TRSTRCY = 10 ms; plus some extra */
2590 msleep(10 + 40);
2591 if (udev) {
2592 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
2593
2594 update_devnum(udev, 0);
2595 /* The xHC may think the device is already reset,
2596 * so ignore the status.
2597 */
2598 if (hcd->driver->reset_device)
2599 hcd->driver->reset_device(hcd, udev);
Andiry Xu75d7cf72011-09-13 16:41:11 -07002600 }
2601 /* FALL THROUGH */
2602 case -ENOTCONN:
2603 case -ENODEV:
Lan Tianyuad493e52013-01-23 04:26:30 +08002604 usb_clear_port_feature(hub->hdev,
Andiry Xu75d7cf72011-09-13 16:41:11 -07002605 port1, USB_PORT_FEAT_C_RESET);
Sarah Sharp1c7439c62012-11-14 15:58:52 -08002606 if (hub_is_superspeed(hub->hdev)) {
Lan Tianyuad493e52013-01-23 04:26:30 +08002607 usb_clear_port_feature(hub->hdev, port1,
Andiry Xu75d7cf72011-09-13 16:41:11 -07002608 USB_PORT_FEAT_C_BH_PORT_RESET);
Lan Tianyuad493e52013-01-23 04:26:30 +08002609 usb_clear_port_feature(hub->hdev, port1,
Andiry Xu75d7cf72011-09-13 16:41:11 -07002610 USB_PORT_FEAT_C_PORT_LINK_STATE);
Lan Tianyuad493e52013-01-23 04:26:30 +08002611 usb_clear_port_feature(hub->hdev, port1,
Sarah Sharpa24a6072012-11-01 11:20:44 -07002612 USB_PORT_FEAT_C_CONNECTION);
Sarah Sharp1c7439c62012-11-14 15:58:52 -08002613 }
Sarah Sharpa24a6072012-11-01 11:20:44 -07002614 if (udev)
Andiry Xu75d7cf72011-09-13 16:41:11 -07002615 usb_set_device_state(udev, *status
2616 ? USB_STATE_NOTATTACHED
2617 : USB_STATE_DEFAULT);
Andiry Xu75d7cf72011-09-13 16:41:11 -07002618 break;
2619 }
2620}
2621
2622/* Handle port reset and port warm(BH) reset (for USB3 protocol ports) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002623static int hub_port_reset(struct usb_hub *hub, int port1,
Andiry Xu75d7cf72011-09-13 16:41:11 -07002624 struct usb_device *udev, unsigned int delay, bool warm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002625{
2626 int i, status;
Sarah Sharpa24a6072012-11-01 11:20:44 -07002627 u16 portchange, portstatus;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002628
Sarah Sharp0fe51aa2012-11-01 11:20:44 -07002629 if (!hub_is_superspeed(hub->hdev)) {
2630 if (warm) {
Andiry Xu75d7cf72011-09-13 16:41:11 -07002631 dev_err(hub->intfdev, "only USB3 hub support "
2632 "warm reset\n");
2633 return -EINVAL;
2634 }
Sarah Sharp0fe51aa2012-11-01 11:20:44 -07002635 /* Block EHCI CF initialization during the port reset.
2636 * Some companion controllers don't like it when they mix.
2637 */
2638 down_read(&ehci_cf_port_reset_rwsem);
Sarah Sharpd3b9d7a2012-11-01 11:20:44 -07002639 } else if (!warm) {
2640 /*
2641 * If the caller hasn't explicitly requested a warm reset,
2642 * double check and see if one is needed.
2643 */
2644 status = hub_port_status(hub, port1,
2645 &portstatus, &portchange);
2646 if (status < 0)
2647 goto done;
2648
2649 if (hub_port_warm_reset_required(hub, portstatus))
2650 warm = true;
Andiry Xu75d7cf72011-09-13 16:41:11 -07002651 }
Alan Stern32fe0192007-10-10 16:27:07 -04002652
Linus Torvalds1da177e2005-04-16 15:20:36 -07002653 /* Reset the port */
2654 for (i = 0; i < PORT_RESET_TRIES; i++) {
Andiry Xu75d7cf72011-09-13 16:41:11 -07002655 status = set_port_feature(hub->hdev, port1, (warm ?
2656 USB_PORT_FEAT_BH_PORT_RESET :
2657 USB_PORT_FEAT_RESET));
Alan Sterne9e88fb2013-03-27 16:14:01 -04002658 if (status == -ENODEV) {
2659 ; /* The hub is gone */
2660 } else if (status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002661 dev_err(hub->intfdev,
Andiry Xu75d7cf72011-09-13 16:41:11 -07002662 "cannot %sreset port %d (err = %d)\n",
2663 warm ? "warm " : "", port1, status);
2664 } else {
2665 status = hub_port_wait_reset(hub, port1, udev, delay,
2666 warm);
Alan Sterne9e88fb2013-03-27 16:14:01 -04002667 if (status && status != -ENOTCONN && status != -ENODEV)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002668 dev_dbg(hub->intfdev,
2669 "port_wait_reset: err = %d\n",
2670 status);
2671 }
2672
Sarah Sharpa24a6072012-11-01 11:20:44 -07002673 /* Check for disconnect or reset */
Andiry Xu75d7cf72011-09-13 16:41:11 -07002674 if (status == 0 || status == -ENOTCONN || status == -ENODEV) {
Sarah Sharpa24a6072012-11-01 11:20:44 -07002675 hub_port_finish_reset(hub, port1, udev, &status);
2676
2677 if (!hub_is_superspeed(hub->hdev))
2678 goto done;
2679
2680 /*
2681 * If a USB 3.0 device migrates from reset to an error
2682 * state, re-issue the warm reset.
2683 */
2684 if (hub_port_status(hub, port1,
2685 &portstatus, &portchange) < 0)
2686 goto done;
2687
2688 if (!hub_port_warm_reset_required(hub, portstatus))
2689 goto done;
2690
2691 /*
2692 * If the port is in SS.Inactive or Compliance Mode, the
2693 * hot or warm reset failed. Try another warm reset.
2694 */
2695 if (!warm) {
2696 dev_dbg(hub->intfdev, "hot reset failed, warm reset port %d\n",
2697 port1);
2698 warm = true;
2699 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002700 }
2701
2702 dev_dbg (hub->intfdev,
Andiry Xu75d7cf72011-09-13 16:41:11 -07002703 "port %d not enabled, trying %sreset again...\n",
2704 port1, warm ? "warm " : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002705 delay = HUB_LONG_RESET_TIME;
2706 }
2707
2708 dev_err (hub->intfdev,
2709 "Cannot enable port %i. Maybe the USB cable is bad?\n",
2710 port1);
2711
Andiry Xu75d7cf72011-09-13 16:41:11 -07002712done:
Sarah Sharp0fe51aa2012-11-01 11:20:44 -07002713 if (!hub_is_superspeed(hub->hdev))
Andiry Xu75d7cf72011-09-13 16:41:11 -07002714 up_read(&ehci_cf_port_reset_rwsem);
2715
Linus Torvalds1da177e2005-04-16 15:20:36 -07002716 return status;
2717}
2718
Andiry Xu0ed9a572011-04-27 18:07:43 +08002719/* Check if a port is power on */
2720static int port_is_power_on(struct usb_hub *hub, unsigned portstatus)
2721{
2722 int ret = 0;
2723
2724 if (hub_is_superspeed(hub->hdev)) {
2725 if (portstatus & USB_SS_PORT_STAT_POWER)
2726 ret = 1;
2727 } else {
2728 if (portstatus & USB_PORT_STAT_POWER)
2729 ret = 1;
2730 }
2731
2732 return ret;
2733}
2734
Alan Sternd388dab2006-07-01 22:14:24 -04002735#ifdef CONFIG_PM
Linus Torvalds1da177e2005-04-16 15:20:36 -07002736
Andiry Xu0ed9a572011-04-27 18:07:43 +08002737/* Check if a port is suspended(USB2.0 port) or in U3 state(USB3.0 port) */
2738static int port_is_suspended(struct usb_hub *hub, unsigned portstatus)
2739{
2740 int ret = 0;
2741
2742 if (hub_is_superspeed(hub->hdev)) {
2743 if ((portstatus & USB_PORT_STAT_LINK_STATE)
2744 == USB_SS_PORT_LS_U3)
2745 ret = 1;
2746 } else {
2747 if (portstatus & USB_PORT_STAT_SUSPEND)
2748 ret = 1;
2749 }
2750
2751 return ret;
2752}
Alan Sternb01b03f2008-04-28 11:06:11 -04002753
2754/* Determine whether the device on a port is ready for a normal resume,
2755 * is ready for a reset-resume, or should be disconnected.
2756 */
2757static int check_port_resume_type(struct usb_device *udev,
2758 struct usb_hub *hub, int port1,
2759 int status, unsigned portchange, unsigned portstatus)
2760{
2761 /* Is the device still present? */
Andiry Xu0ed9a572011-04-27 18:07:43 +08002762 if (status || port_is_suspended(hub, portstatus) ||
2763 !port_is_power_on(hub, portstatus) ||
2764 !(portstatus & USB_PORT_STAT_CONNECTION)) {
Alan Sternb01b03f2008-04-28 11:06:11 -04002765 if (status >= 0)
2766 status = -ENODEV;
2767 }
2768
Alan Stern86c57ed2008-06-30 11:14:43 -04002769 /* Can't do a normal resume if the port isn't enabled,
2770 * so try a reset-resume instead.
2771 */
2772 else if (!(portstatus & USB_PORT_STAT_ENABLE) && !udev->reset_resume) {
2773 if (udev->persist_enabled)
2774 udev->reset_resume = 1;
2775 else
2776 status = -ENODEV;
2777 }
Alan Sternb01b03f2008-04-28 11:06:11 -04002778
2779 if (status) {
2780 dev_dbg(hub->intfdev,
2781 "port %d status %04x.%04x after resume, %d\n",
2782 port1, portchange, portstatus, status);
2783 } else if (udev->reset_resume) {
2784
2785 /* Late port handoff can set status-change bits */
2786 if (portchange & USB_PORT_STAT_C_CONNECTION)
Lan Tianyuad493e52013-01-23 04:26:30 +08002787 usb_clear_port_feature(hub->hdev, port1,
Alan Sternb01b03f2008-04-28 11:06:11 -04002788 USB_PORT_FEAT_C_CONNECTION);
2789 if (portchange & USB_PORT_STAT_C_ENABLE)
Lan Tianyuad493e52013-01-23 04:26:30 +08002790 usb_clear_port_feature(hub->hdev, port1,
Alan Sternb01b03f2008-04-28 11:06:11 -04002791 USB_PORT_FEAT_C_ENABLE);
2792 }
2793
2794 return status;
2795}
2796
Sarah Sharpf74631e2012-06-25 12:08:08 -07002797int usb_disable_ltm(struct usb_device *udev)
2798{
2799 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
2800
2801 /* Check if the roothub and device supports LTM. */
2802 if (!usb_device_supports_ltm(hcd->self.root_hub) ||
2803 !usb_device_supports_ltm(udev))
2804 return 0;
2805
2806 /* Clear Feature LTM Enable can only be sent if the device is
2807 * configured.
2808 */
2809 if (!udev->actconfig)
2810 return 0;
2811
2812 return usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
2813 USB_REQ_CLEAR_FEATURE, USB_RECIP_DEVICE,
2814 USB_DEVICE_LTM_ENABLE, 0, NULL, 0,
2815 USB_CTRL_SET_TIMEOUT);
2816}
2817EXPORT_SYMBOL_GPL(usb_disable_ltm);
2818
2819void usb_enable_ltm(struct usb_device *udev)
2820{
2821 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
2822
2823 /* Check if the roothub and device supports LTM. */
2824 if (!usb_device_supports_ltm(hcd->self.root_hub) ||
2825 !usb_device_supports_ltm(udev))
2826 return;
2827
2828 /* Set Feature LTM Enable can only be sent if the device is
2829 * configured.
2830 */
2831 if (!udev->actconfig)
2832 return;
2833
2834 usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
2835 USB_REQ_SET_FEATURE, USB_RECIP_DEVICE,
2836 USB_DEVICE_LTM_ENABLE, 0, NULL, 0,
2837 USB_CTRL_SET_TIMEOUT);
2838}
2839EXPORT_SYMBOL_GPL(usb_enable_ltm);
2840
Lan Tianyu54a3ac02013-01-24 10:31:28 +08002841/*
Alan Stern28e861652013-07-30 15:37:33 -04002842 * usb_enable_remote_wakeup - enable remote wakeup for a device
Lan Tianyu54a3ac02013-01-24 10:31:28 +08002843 * @udev: target device
2844 *
Alan Stern28e861652013-07-30 15:37:33 -04002845 * For USB-2 devices: Set the device's remote wakeup feature.
2846 *
2847 * For USB-3 devices: Assume there's only one function on the device and
2848 * enable remote wake for the first interface. FIXME if the interface
2849 * association descriptor shows there's more than one function.
Lan Tianyu54a3ac02013-01-24 10:31:28 +08002850 */
Alan Stern28e861652013-07-30 15:37:33 -04002851static int usb_enable_remote_wakeup(struct usb_device *udev)
Lan Tianyu54a3ac02013-01-24 10:31:28 +08002852{
Alan Stern28e861652013-07-30 15:37:33 -04002853 if (udev->speed < USB_SPEED_SUPER)
2854 return usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
2855 USB_REQ_SET_FEATURE, USB_RECIP_DEVICE,
2856 USB_DEVICE_REMOTE_WAKEUP, 0, NULL, 0,
2857 USB_CTRL_SET_TIMEOUT);
2858 else
2859 return usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
2860 USB_REQ_SET_FEATURE, USB_RECIP_INTERFACE,
2861 USB_INTRF_FUNC_SUSPEND,
2862 USB_INTRF_FUNC_SUSPEND_RW |
2863 USB_INTRF_FUNC_SUSPEND_LP,
2864 NULL, 0, USB_CTRL_SET_TIMEOUT);
2865}
2866
2867/*
2868 * usb_disable_remote_wakeup - disable remote wakeup for a device
2869 * @udev: target device
2870 *
2871 * For USB-2 devices: Clear the device's remote wakeup feature.
2872 *
2873 * For USB-3 devices: Assume there's only one function on the device and
2874 * disable remote wake for the first interface. FIXME if the interface
2875 * association descriptor shows there's more than one function.
2876 */
2877static int usb_disable_remote_wakeup(struct usb_device *udev)
2878{
2879 if (udev->speed < USB_SPEED_SUPER)
2880 return usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
2881 USB_REQ_CLEAR_FEATURE, USB_RECIP_DEVICE,
2882 USB_DEVICE_REMOTE_WAKEUP, 0, NULL, 0,
2883 USB_CTRL_SET_TIMEOUT);
2884 else
2885 return usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
Lan Tianyu54a3ac02013-01-24 10:31:28 +08002886 USB_REQ_CLEAR_FEATURE, USB_RECIP_INTERFACE,
2887 USB_INTRF_FUNC_SUSPEND, 0, NULL, 0,
2888 USB_CTRL_SET_TIMEOUT);
2889}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002890
Alan Sterne583d9d2013-07-11 14:58:04 -04002891/* Count of wakeup-enabled devices at or below udev */
2892static unsigned wakeup_enabled_descendants(struct usb_device *udev)
2893{
2894 struct usb_hub *hub = usb_hub_to_struct_hub(udev);
2895
2896 return udev->do_remote_wakeup +
2897 (hub ? hub->wakeup_enabled_descendants : 0);
2898}
2899
Linus Torvalds1da177e2005-04-16 15:20:36 -07002900/*
Alan Stern140d8f62006-07-01 22:07:21 -04002901 * usb_port_suspend - suspend a usb device's upstream port
Alan Stern624d6c02007-05-30 15:35:16 -04002902 * @udev: device that's no longer in active use, not a root hub
David Brownell5edbfb72005-09-22 22:45:26 -07002903 * Context: must be able to sleep; device not locked; pm locks held
Linus Torvalds1da177e2005-04-16 15:20:36 -07002904 *
2905 * Suspends a USB device that isn't in active use, conserving power.
2906 * Devices may wake out of a suspend, if anything important happens,
2907 * using the remote wakeup mechanism. They may also be taken out of
Alan Stern140d8f62006-07-01 22:07:21 -04002908 * suspend by the host, using usb_port_resume(). It's also routine
Linus Torvalds1da177e2005-04-16 15:20:36 -07002909 * to disconnect devices while they are suspended.
2910 *
David Brownell390a8c32005-09-13 19:57:27 -07002911 * This only affects the USB hardware for a device; its interfaces
2912 * (and, for hubs, child devices) must already have been suspended.
2913 *
Alan Stern624d6c02007-05-30 15:35:16 -04002914 * Selective port suspend reduces power; most suspended devices draw
2915 * less than 500 uA. It's also used in OTG, along with remote wakeup.
2916 * All devices below the suspended port are also suspended.
2917 *
2918 * Devices leave suspend state when the host wakes them up. Some devices
2919 * also support "remote wakeup", where the device can activate the USB
2920 * tree above them to deliver data, such as a keypress or packet. In
2921 * some cases, this wakes the USB host.
2922 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002923 * Suspending OTG devices may trigger HNP, if that's been enabled
2924 * between a pair of dual-role devices. That will change roles, such
2925 * as from A-Host to A-Peripheral or from B-Host back to B-Peripheral.
2926 *
Alan Stern4956ecc2007-05-30 16:51:28 -04002927 * Devices on USB hub ports have only one "suspend" state, corresponding
2928 * to ACPI D2, "may cause the device to lose some context".
2929 * State transitions include:
2930 *
2931 * - suspend, resume ... when the VBUS power link stays live
2932 * - suspend, disconnect ... VBUS lost
2933 *
2934 * Once VBUS drop breaks the circuit, the port it's using has to go through
2935 * normal re-enumeration procedures, starting with enabling VBUS power.
2936 * Other than re-initializing the hub (plug/unplug, except for root hubs),
2937 * Linux (2.6) currently has NO mechanisms to initiate that: no khubd
2938 * timer, no SRP, no requests through sysfs.
2939 *
Alan Sterne583d9d2013-07-11 14:58:04 -04002940 * If Runtime PM isn't enabled or used, non-SuperSpeed devices may not get
2941 * suspended until their bus goes into global suspend (i.e., the root
Alan Stern0aa28322013-03-27 16:14:19 -04002942 * hub is suspended). Nevertheless, we change @udev->state to
2943 * USB_STATE_SUSPENDED as this is the device's "logical" state. The actual
2944 * upstream port setting is stored in @udev->port_is_suspended.
Alan Stern4956ecc2007-05-30 16:51:28 -04002945 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002946 * Returns 0 on success, else negative errno.
2947 */
Alan Stern65bfd292008-11-25 16:39:18 -05002948int usb_port_suspend(struct usb_device *udev, pm_message_t msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002949{
Lan Tianyuad493e52013-01-23 04:26:30 +08002950 struct usb_hub *hub = usb_hub_to_struct_hub(udev->parent);
2951 struct usb_port *port_dev = hub->ports[udev->portnum - 1];
Alan Stern624d6c02007-05-30 15:35:16 -04002952 int port1 = udev->portnum;
2953 int status;
Alan Stern0aa28322013-03-27 16:14:19 -04002954 bool really_suspend = true;
Alan Stern4956ecc2007-05-30 16:51:28 -04002955
Alan Stern624d6c02007-05-30 15:35:16 -04002956 /* enable remote wakeup when appropriate; this lets the device
2957 * wake up the upstream hub (including maybe the root hub).
2958 *
2959 * NOTE: OTG devices may issue remote wakeup (or SRP) even when
2960 * we don't explicitly enable it here.
2961 */
2962 if (udev->do_remote_wakeup) {
Alan Stern28e861652013-07-30 15:37:33 -04002963 status = usb_enable_remote_wakeup(udev);
Oliver Neukum0c487202009-10-19 13:19:41 +02002964 if (status) {
Alan Stern624d6c02007-05-30 15:35:16 -04002965 dev_dbg(&udev->dev, "won't remote wakeup, status %d\n",
2966 status);
Oliver Neukum0c487202009-10-19 13:19:41 +02002967 /* bail if autosuspend is requested */
Alan Stern5b1b0b82011-08-19 23:49:48 +02002968 if (PMSG_IS_AUTO(msg))
Alan Stern4fae6f02013-07-30 15:39:02 -04002969 goto err_wakeup;
Oliver Neukum0c487202009-10-19 13:19:41 +02002970 }
Alan Stern624d6c02007-05-30 15:35:16 -04002971 }
2972
Andiry Xu65580b432011-09-23 14:19:52 -07002973 /* disable USB2 hardware LPM */
2974 if (udev->usb2_hw_lpm_enabled == 1)
2975 usb_set_usb2_hardware_lpm(udev, 0);
2976
Sarah Sharpf74631e2012-06-25 12:08:08 -07002977 if (usb_disable_ltm(udev)) {
Alan Stern4fae6f02013-07-30 15:39:02 -04002978 dev_err(&udev->dev, "Failed to disable LTM before suspend\n.");
2979 status = -ENOMEM;
2980 if (PMSG_IS_AUTO(msg))
2981 goto err_ltm;
Sarah Sharpf74631e2012-06-25 12:08:08 -07002982 }
Sarah Sharp83060952012-05-02 14:25:52 -07002983 if (usb_unlocked_disable_lpm(udev)) {
Alan Stern4fae6f02013-07-30 15:39:02 -04002984 dev_err(&udev->dev, "Failed to disable LPM before suspend\n.");
2985 status = -ENOMEM;
2986 if (PMSG_IS_AUTO(msg))
2987 goto err_lpm3;
Sarah Sharp83060952012-05-02 14:25:52 -07002988 }
2989
Alan Stern624d6c02007-05-30 15:35:16 -04002990 /* see 7.1.7.6 */
Andiry Xua7114232011-04-27 18:07:50 +08002991 if (hub_is_superspeed(hub->hdev))
Sarah Sharpc2f60db2012-12-10 15:43:08 -08002992 status = hub_set_port_link_state(hub, port1, USB_SS_PORT_LS_U3);
Alan Sterne583d9d2013-07-11 14:58:04 -04002993
Alan Stern0aa28322013-03-27 16:14:19 -04002994 /*
2995 * For system suspend, we do not need to enable the suspend feature
2996 * on individual USB-2 ports. The devices will automatically go
2997 * into suspend a few ms after the root hub stops sending packets.
2998 * The USB 2.0 spec calls this "global suspend".
Alan Sterne583d9d2013-07-11 14:58:04 -04002999 *
3000 * However, many USB hubs have a bug: They don't relay wakeup requests
3001 * from a downstream port if the port's suspend feature isn't on.
3002 * Therefore we will turn on the suspend feature if udev or any of its
3003 * descendants is enabled for remote wakeup.
Alan Stern0aa28322013-03-27 16:14:19 -04003004 */
Alan Sterne583d9d2013-07-11 14:58:04 -04003005 else if (PMSG_IS_AUTO(msg) || wakeup_enabled_descendants(udev) > 0)
3006 status = set_port_feature(hub->hdev, port1,
3007 USB_PORT_FEAT_SUSPEND);
Alan Stern0aa28322013-03-27 16:14:19 -04003008 else {
3009 really_suspend = false;
3010 status = 0;
3011 }
Alan Stern624d6c02007-05-30 15:35:16 -04003012 if (status) {
3013 dev_dbg(hub->intfdev, "can't suspend port %d, status %d\n",
3014 port1, status);
Alan Sterncbb33002011-06-15 16:29:16 -04003015
Alan Stern4fae6f02013-07-30 15:39:02 -04003016 /* Try to enable USB3 LPM and LTM again */
3017 usb_unlocked_enable_lpm(udev);
3018 err_lpm3:
3019 usb_enable_ltm(udev);
3020 err_ltm:
Andiry Xuc3e751e2012-05-05 00:50:10 +08003021 /* Try to enable USB2 hardware LPM again */
3022 if (udev->usb2_hw_lpm_capable == 1)
3023 usb_set_usb2_hardware_lpm(udev, 1);
3024
Alan Stern4fae6f02013-07-30 15:39:02 -04003025 if (udev->do_remote_wakeup)
3026 (void) usb_disable_remote_wakeup(udev);
3027 err_wakeup:
Sarah Sharp83060952012-05-02 14:25:52 -07003028
Alan Sterncbb33002011-06-15 16:29:16 -04003029 /* System sleep transitions should never fail */
Alan Stern5b1b0b82011-08-19 23:49:48 +02003030 if (!PMSG_IS_AUTO(msg))
Alan Sterncbb33002011-06-15 16:29:16 -04003031 status = 0;
Alan Stern624d6c02007-05-30 15:35:16 -04003032 } else {
Alan Stern30b1a7a2011-09-27 21:54:22 +02003033 dev_dbg(&udev->dev, "usb %ssuspend, wakeup %d\n",
3034 (PMSG_IS_AUTO(msg) ? "auto-" : ""),
3035 udev->do_remote_wakeup);
Alan Stern0aa28322013-03-27 16:14:19 -04003036 if (really_suspend) {
3037 udev->port_is_suspended = 1;
Alan Sterne583d9d2013-07-11 14:58:04 -04003038
3039 /* device has up to 10 msec to fully suspend */
Alan Stern0aa28322013-03-27 16:14:19 -04003040 msleep(10);
3041 }
Alan Sterne583d9d2013-07-11 14:58:04 -04003042 usb_set_device_state(udev, USB_STATE_SUSPENDED);
Alan Stern624d6c02007-05-30 15:35:16 -04003043 }
Lan Tianyuad493e52013-01-23 04:26:30 +08003044
Alan Stern4fae6f02013-07-30 15:39:02 -04003045 if (status == 0 && !udev->do_remote_wakeup && udev->persist_enabled) {
Lan Tianyu98a4f1f2013-07-03 22:17:54 +08003046 pm_runtime_put_sync(&port_dev->dev);
3047 port_dev->did_runtime_put = true;
Lan Tianyuad493e52013-01-23 04:26:30 +08003048 }
3049
Alan Sternc08512c2010-11-15 15:57:58 -05003050 usb_mark_last_busy(hub->hdev);
Alan Stern4956ecc2007-05-30 16:51:28 -04003051 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003052}
David Brownellf3f32532005-09-22 22:37:29 -07003053
Linus Torvalds1da177e2005-04-16 15:20:36 -07003054/*
David Brownell390a8c32005-09-13 19:57:27 -07003055 * If the USB "suspend" state is in use (rather than "global suspend"),
3056 * many devices will be individually taken out of suspend state using
Alan Stern54515fe2007-05-30 15:38:58 -04003057 * special "resume" signaling. This routine kicks in shortly after
Linus Torvalds1da177e2005-04-16 15:20:36 -07003058 * hardware resume signaling is finished, either because of selective
3059 * resume (by host) or remote wakeup (by device) ... now see what changed
3060 * in the tree that's rooted at this device.
Alan Stern54515fe2007-05-30 15:38:58 -04003061 *
3062 * If @udev->reset_resume is set then the device is reset before the
3063 * status check is done.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003064 */
Alan Stern140d8f62006-07-01 22:07:21 -04003065static int finish_port_resume(struct usb_device *udev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003066{
Alan Stern54515fe2007-05-30 15:38:58 -04003067 int status = 0;
Oliver Neukum07e72b92012-11-29 15:05:57 +01003068 u16 devstatus = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003069
3070 /* caller owns the udev device lock */
Wu Fengguangb9cef6c2008-12-15 15:32:01 +08003071 dev_dbg(&udev->dev, "%s\n",
3072 udev->reset_resume ? "finish reset-resume" : "finish resume");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003073
3074 /* usb ch9 identifies four variants of SUSPENDED, based on what
3075 * state the device resumes to. Linux currently won't see the
3076 * first two on the host side; they'd be inside hub_port_init()
3077 * during many timeouts, but khubd can't suspend until later.
3078 */
3079 usb_set_device_state(udev, udev->actconfig
3080 ? USB_STATE_CONFIGURED
3081 : USB_STATE_ADDRESS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003082
Alan Stern54515fe2007-05-30 15:38:58 -04003083 /* 10.5.4.5 says not to reset a suspended port if the attached
3084 * device is enabled for remote wakeup. Hence the reset
3085 * operation is carried out here, after the port has been
3086 * resumed.
3087 */
3088 if (udev->reset_resume)
Alan Stern86c57ed2008-06-30 11:14:43 -04003089 retry_reset_resume:
Ming Lei742120c2008-06-18 22:00:29 +08003090 status = usb_reset_and_verify_device(udev);
Alan Stern54515fe2007-05-30 15:38:58 -04003091
Matthias Beyer469271f2013-10-10 23:41:27 +02003092 /* 10.5.4.5 says be sure devices in the tree are still there.
3093 * For now let's assume the device didn't go crazy on resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003094 * and device drivers will know about any resume quirks.
3095 */
Alan Stern54515fe2007-05-30 15:38:58 -04003096 if (status == 0) {
Alan Stern46dede42007-08-14 10:56:10 -04003097 devstatus = 0;
Alan Stern54515fe2007-05-30 15:38:58 -04003098 status = usb_get_status(udev, USB_RECIP_DEVICE, 0, &devstatus);
Alan Stern86c57ed2008-06-30 11:14:43 -04003099
3100 /* If a normal resume failed, try doing a reset-resume */
3101 if (status && !udev->reset_resume && udev->persist_enabled) {
3102 dev_dbg(&udev->dev, "retry with reset-resume\n");
3103 udev->reset_resume = 1;
3104 goto retry_reset_resume;
3105 }
Alan Stern54515fe2007-05-30 15:38:58 -04003106 }
Alan Sternb40b7a92006-06-19 15:12:38 -04003107
Alan Stern624d6c02007-05-30 15:35:16 -04003108 if (status) {
3109 dev_dbg(&udev->dev, "gone after usb resume? status %d\n",
3110 status);
Oliver Neukum07e72b92012-11-29 15:05:57 +01003111 /*
3112 * There are a few quirky devices which violate the standard
3113 * by claiming to have remote wakeup enabled after a reset,
3114 * which crash if the feature is cleared, hence check for
3115 * udev->reset_resume
3116 */
3117 } else if (udev->actconfig && !udev->reset_resume) {
Alan Stern28e861652013-07-30 15:37:33 -04003118 if (udev->speed < USB_SPEED_SUPER) {
Lan Tianyu54a3ac02013-01-24 10:31:28 +08003119 if (devstatus & (1 << USB_DEVICE_REMOTE_WAKEUP))
Alan Stern28e861652013-07-30 15:37:33 -04003120 status = usb_disable_remote_wakeup(udev);
Lan Tianyu54a3ac02013-01-24 10:31:28 +08003121 } else {
3122 status = usb_get_status(udev, USB_RECIP_INTERFACE, 0,
3123 &devstatus);
Lan Tianyu54a3ac02013-01-24 10:31:28 +08003124 if (!status && devstatus & (USB_INTRF_STAT_FUNC_RW_CAP
3125 | USB_INTRF_STAT_FUNC_RW))
Alan Stern28e861652013-07-30 15:37:33 -04003126 status = usb_disable_remote_wakeup(udev);
Alan Stern4bf0ba82005-11-21 11:58:07 -05003127 }
Lan Tianyu54a3ac02013-01-24 10:31:28 +08003128
3129 if (status)
3130 dev_dbg(&udev->dev,
3131 "disable remote wakeup, status %d\n",
3132 status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003133 status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003134 }
3135 return status;
3136}
3137
Alan Stern624d6c02007-05-30 15:35:16 -04003138/*
3139 * usb_port_resume - re-activate a suspended usb device's upstream port
3140 * @udev: device to re-activate, not a root hub
3141 * Context: must be able to sleep; device not locked; pm locks held
3142 *
3143 * This will re-activate the suspended device, increasing power usage
3144 * while letting drivers communicate again with its endpoints.
3145 * USB resume explicitly guarantees that the power session between
3146 * the host and the device is the same as it was when the device
3147 * suspended.
3148 *
Alan Sternfeccc302008-03-03 15:15:59 -05003149 * If @udev->reset_resume is set then this routine won't check that the
3150 * port is still enabled. Furthermore, finish_port_resume() above will
Alan Stern54515fe2007-05-30 15:38:58 -04003151 * reset @udev. The end result is that a broken power session can be
3152 * recovered and @udev will appear to persist across a loss of VBUS power.
3153 *
3154 * For example, if a host controller doesn't maintain VBUS suspend current
3155 * during a system sleep or is reset when the system wakes up, all the USB
3156 * power sessions below it will be broken. This is especially troublesome
3157 * for mass-storage devices containing mounted filesystems, since the
3158 * device will appear to have disconnected and all the memory mappings
3159 * to it will be lost. Using the USB_PERSIST facility, the device can be
3160 * made to appear as if it had not disconnected.
3161 *
Ming Lei742120c2008-06-18 22:00:29 +08003162 * This facility can be dangerous. Although usb_reset_and_verify_device() makes
Alan Sternfeccc302008-03-03 15:15:59 -05003163 * every effort to insure that the same device is present after the
Alan Stern54515fe2007-05-30 15:38:58 -04003164 * reset as before, it cannot provide a 100% guarantee. Furthermore it's
3165 * quite possible for a device to remain unaltered but its media to be
3166 * changed. If the user replaces a flash memory card while the system is
3167 * asleep, he will have only himself to blame when the filesystem on the
3168 * new card is corrupted and the system crashes.
3169 *
Alan Stern624d6c02007-05-30 15:35:16 -04003170 * Returns 0 on success, else negative errno.
3171 */
Alan Stern65bfd292008-11-25 16:39:18 -05003172int usb_port_resume(struct usb_device *udev, pm_message_t msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003173{
Lan Tianyuad493e52013-01-23 04:26:30 +08003174 struct usb_hub *hub = usb_hub_to_struct_hub(udev->parent);
3175 struct usb_port *port_dev = hub->ports[udev->portnum - 1];
Alan Stern624d6c02007-05-30 15:35:16 -04003176 int port1 = udev->portnum;
3177 int status;
3178 u16 portchange, portstatus;
Alan Sternd25450c2006-11-20 11:14:30 -05003179
Lan Tianyuad493e52013-01-23 04:26:30 +08003180 if (port_dev->did_runtime_put) {
3181 status = pm_runtime_get_sync(&port_dev->dev);
3182 port_dev->did_runtime_put = false;
3183 if (status < 0) {
3184 dev_dbg(&udev->dev, "can't resume usb port, status %d\n",
3185 status);
3186 return status;
3187 }
3188 }
3189
Alan Sternd25450c2006-11-20 11:14:30 -05003190 /* Skip the initial Clear-Suspend step for a remote wakeup */
3191 status = hub_port_status(hub, port1, &portstatus, &portchange);
Andiry Xu0ed9a572011-04-27 18:07:43 +08003192 if (status == 0 && !port_is_suspended(hub, portstatus))
Alan Sternd25450c2006-11-20 11:14:30 -05003193 goto SuspendCleared;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003194
Matthias Beyer781b2132013-10-10 23:41:29 +02003195 /* dev_dbg(hub->intfdev, "resume port %d\n", port1); */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003196
Alan Sternd5cbad42006-08-11 16:52:39 -04003197 set_bit(port1, hub->busy_bits);
3198
Linus Torvalds1da177e2005-04-16 15:20:36 -07003199 /* see 7.1.7.7; affects power usage, but not budgeting */
Andiry Xua7114232011-04-27 18:07:50 +08003200 if (hub_is_superspeed(hub->hdev))
Sarah Sharpc2f60db2012-12-10 15:43:08 -08003201 status = hub_set_port_link_state(hub, port1, USB_SS_PORT_LS_U0);
Andiry Xua7114232011-04-27 18:07:50 +08003202 else
Lan Tianyuad493e52013-01-23 04:26:30 +08003203 status = usb_clear_port_feature(hub->hdev,
Andiry Xua7114232011-04-27 18:07:50 +08003204 port1, USB_PORT_FEAT_SUSPEND);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003205 if (status) {
Alan Stern624d6c02007-05-30 15:35:16 -04003206 dev_dbg(hub->intfdev, "can't resume port %d, status %d\n",
3207 port1, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003208 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003209 /* drive resume for at least 20 msec */
Alan Stern686314c2007-05-30 15:34:36 -04003210 dev_dbg(&udev->dev, "usb %sresume\n",
Alan Stern5b1b0b82011-08-19 23:49:48 +02003211 (PMSG_IS_AUTO(msg) ? "auto-" : ""));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003212 msleep(25);
3213
Linus Torvalds1da177e2005-04-16 15:20:36 -07003214 /* Virtual root hubs can trigger on GET_PORT_STATUS to
3215 * stop resume signaling. Then finish the resume
3216 * sequence.
3217 */
Alan Sternd25450c2006-11-20 11:14:30 -05003218 status = hub_port_status(hub, port1, &portstatus, &portchange);
Alan Stern54515fe2007-05-30 15:38:58 -04003219
Alan Sternb01b03f2008-04-28 11:06:11 -04003220 /* TRSMRCY = 10 msec */
3221 msleep(10);
3222 }
Alan Stern54515fe2007-05-30 15:38:58 -04003223
Alan Sternb01b03f2008-04-28 11:06:11 -04003224 SuspendCleared:
3225 if (status == 0) {
Alan Sternbfd1e912012-10-19 11:03:39 -04003226 udev->port_is_suspended = 0;
Andiry Xua7114232011-04-27 18:07:50 +08003227 if (hub_is_superspeed(hub->hdev)) {
3228 if (portchange & USB_PORT_STAT_C_LINK_STATE)
Lan Tianyuad493e52013-01-23 04:26:30 +08003229 usb_clear_port_feature(hub->hdev, port1,
Andiry Xua7114232011-04-27 18:07:50 +08003230 USB_PORT_FEAT_C_PORT_LINK_STATE);
3231 } else {
3232 if (portchange & USB_PORT_STAT_C_SUSPEND)
Lan Tianyuad493e52013-01-23 04:26:30 +08003233 usb_clear_port_feature(hub->hdev, port1,
Andiry Xua7114232011-04-27 18:07:50 +08003234 USB_PORT_FEAT_C_SUSPEND);
3235 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003236 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003237
Alan Sternd5cbad42006-08-11 16:52:39 -04003238 clear_bit(port1, hub->busy_bits);
Alan Sternd5cbad42006-08-11 16:52:39 -04003239
Alan Sternb01b03f2008-04-28 11:06:11 -04003240 status = check_port_resume_type(udev,
3241 hub, port1, status, portchange, portstatus);
Alan Stern54515fe2007-05-30 15:38:58 -04003242 if (status == 0)
3243 status = finish_port_resume(udev);
3244 if (status < 0) {
3245 dev_dbg(&udev->dev, "can't resume, status %d\n", status);
3246 hub_port_logical_disconnect(hub, port1);
Andiry Xu65580b432011-09-23 14:19:52 -07003247 } else {
3248 /* Try to enable USB2 hardware LPM */
3249 if (udev->usb2_hw_lpm_capable == 1)
3250 usb_set_usb2_hardware_lpm(udev, 1);
Sarah Sharp83060952012-05-02 14:25:52 -07003251
Sarah Sharpf74631e2012-06-25 12:08:08 -07003252 /* Try to enable USB3 LTM and LPM */
3253 usb_enable_ltm(udev);
Sarah Sharp83060952012-05-02 14:25:52 -07003254 usb_unlocked_enable_lpm(udev);
Alan Stern54515fe2007-05-30 15:38:58 -04003255 }
Andiry Xu65580b432011-09-23 14:19:52 -07003256
Linus Torvalds1da177e2005-04-16 15:20:36 -07003257 return status;
3258}
3259
Alan Stern84ebc102013-03-27 16:14:46 -04003260#ifdef CONFIG_PM_RUNTIME
3261
Alan Stern8808f002008-04-28 11:06:55 -04003262/* caller has locked udev */
Alan Stern0534d462010-01-08 12:56:30 -05003263int usb_remote_wakeup(struct usb_device *udev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003264{
3265 int status = 0;
3266
Linus Torvalds1da177e2005-04-16 15:20:36 -07003267 if (udev->state == USB_STATE_SUSPENDED) {
Alan Stern645daaa2006-08-30 15:47:02 -04003268 dev_dbg(&udev->dev, "usb %sresume\n", "wakeup-");
Alan Stern9bbdf1e2010-01-08 12:57:28 -05003269 status = usb_autoresume_device(udev);
3270 if (status == 0) {
3271 /* Let the drivers do their thing, then... */
3272 usb_autosuspend_device(udev);
3273 }
Alan Sternd25450c2006-11-20 11:14:30 -05003274 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003275 return status;
3276}
3277
Alan Sternd388dab2006-07-01 22:14:24 -04003278#endif
3279
Ming Leie6f30de2012-10-24 11:59:24 +08003280static int check_ports_changed(struct usb_hub *hub)
3281{
3282 int port1;
3283
3284 for (port1 = 1; port1 <= hub->hdev->maxchild; ++port1) {
3285 u16 portstatus, portchange;
3286 int status;
3287
3288 status = hub_port_status(hub, port1, &portstatus, &portchange);
3289 if (!status && portchange)
3290 return 1;
3291 }
3292 return 0;
3293}
3294
David Brownelldb690872005-09-13 19:56:33 -07003295static int hub_suspend(struct usb_interface *intf, pm_message_t msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003296{
3297 struct usb_hub *hub = usb_get_intfdata (intf);
3298 struct usb_device *hdev = hub->hdev;
3299 unsigned port1;
Sarah Sharp4296c70a2012-01-06 10:34:31 -08003300 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003301
Alan Sterne583d9d2013-07-11 14:58:04 -04003302 /*
3303 * Warn if children aren't already suspended.
3304 * Also, add up the number of wakeup-enabled descendants.
3305 */
3306 hub->wakeup_enabled_descendants = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003307 for (port1 = 1; port1 <= hdev->maxchild; port1++) {
3308 struct usb_device *udev;
3309
Lan Tianyuff823c792012-09-05 13:44:32 +08003310 udev = hub->ports[port1 - 1]->child;
Alan Stern6840d252007-09-10 11:34:26 -04003311 if (udev && udev->can_submit) {
Alan Sterncbb33002011-06-15 16:29:16 -04003312 dev_warn(&intf->dev, "port %d nyet suspended\n", port1);
Alan Stern5b1b0b82011-08-19 23:49:48 +02003313 if (PMSG_IS_AUTO(msg))
Alan Sterncbb33002011-06-15 16:29:16 -04003314 return -EBUSY;
David Brownellc9f89fa2005-09-13 19:57:04 -07003315 }
Alan Sterne583d9d2013-07-11 14:58:04 -04003316 if (udev)
3317 hub->wakeup_enabled_descendants +=
3318 wakeup_enabled_descendants(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003319 }
Ming Leie6f30de2012-10-24 11:59:24 +08003320
3321 if (hdev->do_remote_wakeup && hub->quirk_check_port_auto_suspend) {
3322 /* check if there are changes pending on hub ports */
3323 if (check_ports_changed(hub)) {
3324 if (PMSG_IS_AUTO(msg))
3325 return -EBUSY;
3326 pm_wakeup_event(&hdev->dev, 2000);
3327 }
3328 }
3329
Sarah Sharp4296c70a2012-01-06 10:34:31 -08003330 if (hub_is_superspeed(hdev) && hdev->do_remote_wakeup) {
3331 /* Enable hub to send remote wakeup for all ports. */
3332 for (port1 = 1; port1 <= hdev->maxchild; port1++) {
3333 status = set_port_feature(hdev,
3334 port1 |
3335 USB_PORT_FEAT_REMOTE_WAKE_CONNECT |
3336 USB_PORT_FEAT_REMOTE_WAKE_DISCONNECT |
3337 USB_PORT_FEAT_REMOTE_WAKE_OVER_CURRENT,
3338 USB_PORT_FEAT_REMOTE_WAKE_MASK);
3339 }
3340 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003341
Harvey Harrison441b62c2008-03-03 16:08:34 -08003342 dev_dbg(&intf->dev, "%s\n", __func__);
Alan Stern40f122f2006-11-09 14:44:33 -05003343
David Brownellc9f89fa2005-09-13 19:57:04 -07003344 /* stop khubd and related activity */
Alan Stern43303542008-04-28 11:07:31 -04003345 hub_quiesce(hub, HUB_SUSPEND);
Alan Sternb6f64362007-05-04 11:51:54 -04003346 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003347}
3348
3349static int hub_resume(struct usb_interface *intf)
3350{
Alan Stern5e6effa2008-03-03 15:15:51 -05003351 struct usb_hub *hub = usb_get_intfdata(intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003352
Alan Stern5e6effa2008-03-03 15:15:51 -05003353 dev_dbg(&intf->dev, "%s\n", __func__);
Alan Sternf2835212008-04-28 11:07:17 -04003354 hub_activate(hub, HUB_RESUME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003355 return 0;
3356}
3357
Alan Sternb41a60e2007-05-30 15:39:33 -04003358static int hub_reset_resume(struct usb_interface *intf)
Alan Sternf07600c2007-05-30 15:38:16 -04003359{
Alan Sternb41a60e2007-05-30 15:39:33 -04003360 struct usb_hub *hub = usb_get_intfdata(intf);
Alan Sternf07600c2007-05-30 15:38:16 -04003361
Alan Stern5e6effa2008-03-03 15:15:51 -05003362 dev_dbg(&intf->dev, "%s\n", __func__);
Alan Sternf2835212008-04-28 11:07:17 -04003363 hub_activate(hub, HUB_RESET_RESUME);
Alan Sternf07600c2007-05-30 15:38:16 -04003364 return 0;
3365}
3366
Alan Stern54515fe2007-05-30 15:38:58 -04003367/**
3368 * usb_root_hub_lost_power - called by HCD if the root hub lost Vbus power
3369 * @rhdev: struct usb_device for the root hub
3370 *
3371 * The USB host controller driver calls this function when its root hub
3372 * is resumed and Vbus power has been interrupted or the controller
Alan Sternfeccc302008-03-03 15:15:59 -05003373 * has been reset. The routine marks @rhdev as having lost power.
3374 * When the hub driver is resumed it will take notice and carry out
3375 * power-session recovery for all the "USB-PERSIST"-enabled child devices;
3376 * the others will be disconnected.
Alan Stern54515fe2007-05-30 15:38:58 -04003377 */
3378void usb_root_hub_lost_power(struct usb_device *rhdev)
3379{
3380 dev_warn(&rhdev->dev, "root hub lost power or was reset\n");
3381 rhdev->reset_resume = 1;
3382}
3383EXPORT_SYMBOL_GPL(usb_root_hub_lost_power);
3384
Sarah Sharp1ea7e0e2012-04-24 17:21:50 -07003385static const char * const usb3_lpm_names[] = {
3386 "U0",
3387 "U1",
3388 "U2",
3389 "U3",
3390};
3391
3392/*
3393 * Send a Set SEL control transfer to the device, prior to enabling
3394 * device-initiated U1 or U2. This lets the device know the exit latencies from
3395 * the time the device initiates a U1 or U2 exit, to the time it will receive a
3396 * packet from the host.
3397 *
3398 * This function will fail if the SEL or PEL values for udev are greater than
3399 * the maximum allowed values for the link state to be enabled.
3400 */
3401static int usb_req_set_sel(struct usb_device *udev, enum usb3_link_state state)
3402{
3403 struct usb_set_sel_req *sel_values;
3404 unsigned long long u1_sel;
3405 unsigned long long u1_pel;
3406 unsigned long long u2_sel;
3407 unsigned long long u2_pel;
3408 int ret;
3409
Xenia Ragiadakou38d7f682013-09-04 17:24:45 +03003410 if (udev->state != USB_STATE_CONFIGURED)
3411 return 0;
3412
Sarah Sharp1ea7e0e2012-04-24 17:21:50 -07003413 /* Convert SEL and PEL stored in ns to us */
3414 u1_sel = DIV_ROUND_UP(udev->u1_params.sel, 1000);
3415 u1_pel = DIV_ROUND_UP(udev->u1_params.pel, 1000);
3416 u2_sel = DIV_ROUND_UP(udev->u2_params.sel, 1000);
3417 u2_pel = DIV_ROUND_UP(udev->u2_params.pel, 1000);
3418
3419 /*
3420 * Make sure that the calculated SEL and PEL values for the link
3421 * state we're enabling aren't bigger than the max SEL/PEL
3422 * value that will fit in the SET SEL control transfer.
3423 * Otherwise the device would get an incorrect idea of the exit
3424 * latency for the link state, and could start a device-initiated
3425 * U1/U2 when the exit latencies are too high.
3426 */
3427 if ((state == USB3_LPM_U1 &&
3428 (u1_sel > USB3_LPM_MAX_U1_SEL_PEL ||
3429 u1_pel > USB3_LPM_MAX_U1_SEL_PEL)) ||
3430 (state == USB3_LPM_U2 &&
3431 (u2_sel > USB3_LPM_MAX_U2_SEL_PEL ||
3432 u2_pel > USB3_LPM_MAX_U2_SEL_PEL))) {
Sarah Sharp1510a1a2012-10-05 10:30:35 -07003433 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 -07003434 usb3_lpm_names[state], u1_sel, u1_pel);
3435 return -EINVAL;
3436 }
3437
3438 /*
3439 * If we're enabling device-initiated LPM for one link state,
3440 * but the other link state has a too high SEL or PEL value,
3441 * just set those values to the max in the Set SEL request.
3442 */
3443 if (u1_sel > USB3_LPM_MAX_U1_SEL_PEL)
3444 u1_sel = USB3_LPM_MAX_U1_SEL_PEL;
3445
3446 if (u1_pel > USB3_LPM_MAX_U1_SEL_PEL)
3447 u1_pel = USB3_LPM_MAX_U1_SEL_PEL;
3448
3449 if (u2_sel > USB3_LPM_MAX_U2_SEL_PEL)
3450 u2_sel = USB3_LPM_MAX_U2_SEL_PEL;
3451
3452 if (u2_pel > USB3_LPM_MAX_U2_SEL_PEL)
3453 u2_pel = USB3_LPM_MAX_U2_SEL_PEL;
3454
3455 /*
3456 * usb_enable_lpm() can be called as part of a failed device reset,
3457 * which may be initiated by an error path of a mass storage driver.
3458 * Therefore, use GFP_NOIO.
3459 */
3460 sel_values = kmalloc(sizeof *(sel_values), GFP_NOIO);
3461 if (!sel_values)
3462 return -ENOMEM;
3463
3464 sel_values->u1_sel = u1_sel;
3465 sel_values->u1_pel = u1_pel;
3466 sel_values->u2_sel = cpu_to_le16(u2_sel);
3467 sel_values->u2_pel = cpu_to_le16(u2_pel);
3468
3469 ret = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
3470 USB_REQ_SET_SEL,
3471 USB_RECIP_DEVICE,
3472 0, 0,
3473 sel_values, sizeof *(sel_values),
3474 USB_CTRL_SET_TIMEOUT);
3475 kfree(sel_values);
3476 return ret;
3477}
3478
3479/*
3480 * Enable or disable device-initiated U1 or U2 transitions.
3481 */
3482static int usb_set_device_initiated_lpm(struct usb_device *udev,
3483 enum usb3_link_state state, bool enable)
3484{
3485 int ret;
3486 int feature;
3487
3488 switch (state) {
3489 case USB3_LPM_U1:
3490 feature = USB_DEVICE_U1_ENABLE;
3491 break;
3492 case USB3_LPM_U2:
3493 feature = USB_DEVICE_U2_ENABLE;
3494 break;
3495 default:
3496 dev_warn(&udev->dev, "%s: Can't %s non-U1 or U2 state.\n",
3497 __func__, enable ? "enable" : "disable");
3498 return -EINVAL;
3499 }
3500
3501 if (udev->state != USB_STATE_CONFIGURED) {
3502 dev_dbg(&udev->dev, "%s: Can't %s %s state "
3503 "for unconfigured device.\n",
3504 __func__, enable ? "enable" : "disable",
3505 usb3_lpm_names[state]);
3506 return 0;
3507 }
3508
3509 if (enable) {
3510 /*
Sarah Sharp1ea7e0e2012-04-24 17:21:50 -07003511 * Now send the control transfer to enable device-initiated LPM
3512 * for either U1 or U2.
3513 */
3514 ret = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
3515 USB_REQ_SET_FEATURE,
3516 USB_RECIP_DEVICE,
3517 feature,
3518 0, NULL, 0,
3519 USB_CTRL_SET_TIMEOUT);
3520 } else {
3521 ret = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
3522 USB_REQ_CLEAR_FEATURE,
3523 USB_RECIP_DEVICE,
3524 feature,
3525 0, NULL, 0,
3526 USB_CTRL_SET_TIMEOUT);
3527 }
3528 if (ret < 0) {
3529 dev_warn(&udev->dev, "%s of device-initiated %s failed.\n",
3530 enable ? "Enable" : "Disable",
3531 usb3_lpm_names[state]);
3532 return -EBUSY;
3533 }
3534 return 0;
3535}
3536
3537static int usb_set_lpm_timeout(struct usb_device *udev,
3538 enum usb3_link_state state, int timeout)
3539{
3540 int ret;
3541 int feature;
3542
3543 switch (state) {
3544 case USB3_LPM_U1:
3545 feature = USB_PORT_FEAT_U1_TIMEOUT;
3546 break;
3547 case USB3_LPM_U2:
3548 feature = USB_PORT_FEAT_U2_TIMEOUT;
3549 break;
3550 default:
3551 dev_warn(&udev->dev, "%s: Can't set timeout for non-U1 or U2 state.\n",
3552 __func__);
3553 return -EINVAL;
3554 }
3555
3556 if (state == USB3_LPM_U1 && timeout > USB3_LPM_U1_MAX_TIMEOUT &&
3557 timeout != USB3_LPM_DEVICE_INITIATED) {
3558 dev_warn(&udev->dev, "Failed to set %s timeout to 0x%x, "
3559 "which is a reserved value.\n",
3560 usb3_lpm_names[state], timeout);
3561 return -EINVAL;
3562 }
3563
3564 ret = set_port_feature(udev->parent,
3565 USB_PORT_LPM_TIMEOUT(timeout) | udev->portnum,
3566 feature);
3567 if (ret < 0) {
3568 dev_warn(&udev->dev, "Failed to set %s timeout to 0x%x,"
3569 "error code %i\n", usb3_lpm_names[state],
3570 timeout, ret);
3571 return -EBUSY;
3572 }
3573 if (state == USB3_LPM_U1)
3574 udev->u1_params.timeout = timeout;
3575 else
3576 udev->u2_params.timeout = timeout;
3577 return 0;
3578}
3579
3580/*
3581 * Enable the hub-initiated U1/U2 idle timeouts, and enable device-initiated
3582 * U1/U2 entry.
3583 *
3584 * We will attempt to enable U1 or U2, but there are no guarantees that the
3585 * control transfers to set the hub timeout or enable device-initiated U1/U2
3586 * will be successful.
3587 *
3588 * If we cannot set the parent hub U1/U2 timeout, we attempt to let the xHCI
3589 * driver know about it. If that call fails, it should be harmless, and just
3590 * take up more slightly more bus bandwidth for unnecessary U1/U2 exit latency.
3591 */
3592static void usb_enable_link_state(struct usb_hcd *hcd, struct usb_device *udev,
3593 enum usb3_link_state state)
3594{
Sarah Sharp65a95b72012-10-05 10:32:07 -07003595 int timeout, ret;
Sarah Sharpae8963a2012-10-03 11:18:05 -07003596 __u8 u1_mel = udev->bos->ss_cap->bU1devExitLat;
3597 __le16 u2_mel = udev->bos->ss_cap->bU2DevExitLat;
3598
3599 /* If the device says it doesn't have *any* exit latency to come out of
3600 * U1 or U2, it's probably lying. Assume it doesn't implement that link
3601 * state.
3602 */
3603 if ((state == USB3_LPM_U1 && u1_mel == 0) ||
3604 (state == USB3_LPM_U2 && u2_mel == 0))
3605 return;
Sarah Sharp1ea7e0e2012-04-24 17:21:50 -07003606
Sarah Sharp65a95b72012-10-05 10:32:07 -07003607 /*
3608 * First, let the device know about the exit latencies
3609 * associated with the link state we're about to enable.
3610 */
3611 ret = usb_req_set_sel(udev, state);
3612 if (ret < 0) {
3613 dev_warn(&udev->dev, "Set SEL for device-initiated %s failed.\n",
3614 usb3_lpm_names[state]);
3615 return;
3616 }
3617
Sarah Sharp1ea7e0e2012-04-24 17:21:50 -07003618 /* We allow the host controller to set the U1/U2 timeout internally
3619 * first, so that it can change its schedule to account for the
3620 * additional latency to send data to a device in a lower power
3621 * link state.
3622 */
3623 timeout = hcd->driver->enable_usb3_lpm_timeout(hcd, udev, state);
3624
3625 /* xHCI host controller doesn't want to enable this LPM state. */
3626 if (timeout == 0)
3627 return;
3628
3629 if (timeout < 0) {
3630 dev_warn(&udev->dev, "Could not enable %s link state, "
3631 "xHCI error %i.\n", usb3_lpm_names[state],
3632 timeout);
3633 return;
3634 }
3635
3636 if (usb_set_lpm_timeout(udev, state, timeout))
3637 /* If we can't set the parent hub U1/U2 timeout,
3638 * device-initiated LPM won't be allowed either, so let the xHCI
3639 * host know that this link state won't be enabled.
3640 */
3641 hcd->driver->disable_usb3_lpm_timeout(hcd, udev, state);
3642
3643 /* Only a configured device will accept the Set Feature U1/U2_ENABLE */
3644 else if (udev->actconfig)
3645 usb_set_device_initiated_lpm(udev, state, true);
3646
3647}
3648
3649/*
3650 * Disable the hub-initiated U1/U2 idle timeouts, and disable device-initiated
3651 * U1/U2 entry.
3652 *
3653 * If this function returns -EBUSY, the parent hub will still allow U1/U2 entry.
3654 * If zero is returned, the parent will not allow the link to go into U1/U2.
3655 *
3656 * If zero is returned, device-initiated U1/U2 entry may still be enabled, but
3657 * it won't have an effect on the bus link state because the parent hub will
3658 * still disallow device-initiated U1/U2 entry.
3659 *
3660 * If zero is returned, the xHCI host controller may still think U1/U2 entry is
3661 * possible. The result will be slightly more bus bandwidth will be taken up
3662 * (to account for U1/U2 exit latency), but it should be harmless.
3663 */
3664static int usb_disable_link_state(struct usb_hcd *hcd, struct usb_device *udev,
3665 enum usb3_link_state state)
3666{
3667 int feature;
3668
3669 switch (state) {
3670 case USB3_LPM_U1:
3671 feature = USB_PORT_FEAT_U1_TIMEOUT;
3672 break;
3673 case USB3_LPM_U2:
3674 feature = USB_PORT_FEAT_U2_TIMEOUT;
3675 break;
3676 default:
3677 dev_warn(&udev->dev, "%s: Can't disable non-U1 or U2 state.\n",
3678 __func__);
3679 return -EINVAL;
3680 }
3681
3682 if (usb_set_lpm_timeout(udev, state, 0))
3683 return -EBUSY;
3684
3685 usb_set_device_initiated_lpm(udev, state, false);
3686
3687 if (hcd->driver->disable_usb3_lpm_timeout(hcd, udev, state))
3688 dev_warn(&udev->dev, "Could not disable xHCI %s timeout, "
3689 "bus schedule bandwidth may be impacted.\n",
3690 usb3_lpm_names[state]);
3691 return 0;
3692}
3693
3694/*
3695 * Disable hub-initiated and device-initiated U1 and U2 entry.
3696 * Caller must own the bandwidth_mutex.
3697 *
3698 * This will call usb_enable_lpm() on failure, which will decrement
3699 * lpm_disable_count, and will re-enable LPM if lpm_disable_count reaches zero.
3700 */
3701int usb_disable_lpm(struct usb_device *udev)
3702{
3703 struct usb_hcd *hcd;
3704
3705 if (!udev || !udev->parent ||
3706 udev->speed != USB_SPEED_SUPER ||
3707 !udev->lpm_capable)
3708 return 0;
3709
3710 hcd = bus_to_hcd(udev->bus);
3711 if (!hcd || !hcd->driver->disable_usb3_lpm_timeout)
3712 return 0;
3713
3714 udev->lpm_disable_count++;
Dan Carpenter55558c32012-05-22 20:54:34 +03003715 if ((udev->u1_params.timeout == 0 && udev->u2_params.timeout == 0))
Sarah Sharp1ea7e0e2012-04-24 17:21:50 -07003716 return 0;
3717
3718 /* If LPM is enabled, attempt to disable it. */
3719 if (usb_disable_link_state(hcd, udev, USB3_LPM_U1))
3720 goto enable_lpm;
3721 if (usb_disable_link_state(hcd, udev, USB3_LPM_U2))
3722 goto enable_lpm;
3723
3724 return 0;
3725
3726enable_lpm:
3727 usb_enable_lpm(udev);
3728 return -EBUSY;
3729}
3730EXPORT_SYMBOL_GPL(usb_disable_lpm);
3731
3732/* Grab the bandwidth_mutex before calling usb_disable_lpm() */
3733int usb_unlocked_disable_lpm(struct usb_device *udev)
3734{
3735 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
3736 int ret;
3737
3738 if (!hcd)
3739 return -EINVAL;
3740
3741 mutex_lock(hcd->bandwidth_mutex);
3742 ret = usb_disable_lpm(udev);
3743 mutex_unlock(hcd->bandwidth_mutex);
3744
3745 return ret;
3746}
3747EXPORT_SYMBOL_GPL(usb_unlocked_disable_lpm);
3748
3749/*
3750 * Attempt to enable device-initiated and hub-initiated U1 and U2 entry. The
3751 * xHCI host policy may prevent U1 or U2 from being enabled.
3752 *
3753 * Other callers may have disabled link PM, so U1 and U2 entry will be disabled
3754 * until the lpm_disable_count drops to zero. Caller must own the
3755 * bandwidth_mutex.
3756 */
3757void usb_enable_lpm(struct usb_device *udev)
3758{
3759 struct usb_hcd *hcd;
3760
3761 if (!udev || !udev->parent ||
3762 udev->speed != USB_SPEED_SUPER ||
3763 !udev->lpm_capable)
3764 return;
3765
3766 udev->lpm_disable_count--;
3767 hcd = bus_to_hcd(udev->bus);
3768 /* Double check that we can both enable and disable LPM.
3769 * Device must be configured to accept set feature U1/U2 timeout.
3770 */
3771 if (!hcd || !hcd->driver->enable_usb3_lpm_timeout ||
3772 !hcd->driver->disable_usb3_lpm_timeout)
3773 return;
3774
3775 if (udev->lpm_disable_count > 0)
3776 return;
3777
3778 usb_enable_link_state(hcd, udev, USB3_LPM_U1);
3779 usb_enable_link_state(hcd, udev, USB3_LPM_U2);
3780}
3781EXPORT_SYMBOL_GPL(usb_enable_lpm);
3782
3783/* Grab the bandwidth_mutex before calling usb_enable_lpm() */
3784void usb_unlocked_enable_lpm(struct usb_device *udev)
3785{
3786 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
3787
3788 if (!hcd)
3789 return;
3790
3791 mutex_lock(hcd->bandwidth_mutex);
3792 usb_enable_lpm(udev);
3793 mutex_unlock(hcd->bandwidth_mutex);
3794}
3795EXPORT_SYMBOL_GPL(usb_unlocked_enable_lpm);
3796
3797
Alan Sternd388dab2006-07-01 22:14:24 -04003798#else /* CONFIG_PM */
3799
Alan Sternf07600c2007-05-30 15:38:16 -04003800#define hub_suspend NULL
3801#define hub_resume NULL
3802#define hub_reset_resume NULL
Sarah Sharp1ea7e0e2012-04-24 17:21:50 -07003803
3804int usb_disable_lpm(struct usb_device *udev)
3805{
3806 return 0;
3807}
Sarah Sharpe9261fb2012-05-21 08:29:01 -07003808EXPORT_SYMBOL_GPL(usb_disable_lpm);
Sarah Sharp1ea7e0e2012-04-24 17:21:50 -07003809
3810void usb_enable_lpm(struct usb_device *udev) { }
Sarah Sharpe9261fb2012-05-21 08:29:01 -07003811EXPORT_SYMBOL_GPL(usb_enable_lpm);
Sarah Sharp1ea7e0e2012-04-24 17:21:50 -07003812
3813int usb_unlocked_disable_lpm(struct usb_device *udev)
3814{
3815 return 0;
3816}
Sarah Sharpe9261fb2012-05-21 08:29:01 -07003817EXPORT_SYMBOL_GPL(usb_unlocked_disable_lpm);
Sarah Sharp1ea7e0e2012-04-24 17:21:50 -07003818
3819void usb_unlocked_enable_lpm(struct usb_device *udev) { }
Sarah Sharpe9261fb2012-05-21 08:29:01 -07003820EXPORT_SYMBOL_GPL(usb_unlocked_enable_lpm);
Sarah Sharpf74631e2012-06-25 12:08:08 -07003821
3822int usb_disable_ltm(struct usb_device *udev)
3823{
3824 return 0;
3825}
3826EXPORT_SYMBOL_GPL(usb_disable_ltm);
3827
3828void usb_enable_ltm(struct usb_device *udev) { }
3829EXPORT_SYMBOL_GPL(usb_enable_ltm);
Alan Sternc4b51a42013-07-11 14:58:23 -04003830
3831#endif /* CONFIG_PM */
Alan Sternd388dab2006-07-01 22:14:24 -04003832
Linus Torvalds1da177e2005-04-16 15:20:36 -07003833
3834/* USB 2.0 spec, 7.1.7.3 / fig 7-29:
3835 *
3836 * Between connect detection and reset signaling there must be a delay
3837 * of 100ms at least for debounce and power-settling. The corresponding
3838 * timer shall restart whenever the downstream port detects a disconnect.
Matthias Beyer469271f2013-10-10 23:41:27 +02003839 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003840 * Apparently there are some bluetooth and irda-dongles and a number of
3841 * low-speed devices for which this debounce period may last over a second.
3842 * Not covered by the spec - but easy to deal with.
3843 *
3844 * This implementation uses a 1500ms total debounce timeout; if the
3845 * connection isn't stable by then it returns -ETIMEDOUT. It checks
3846 * every 25ms for transient disconnects. When the port status has been
3847 * unchanged for 100ms it returns the port status.
3848 */
Lan Tianyuad493e52013-01-23 04:26:30 +08003849int hub_port_debounce(struct usb_hub *hub, int port1, bool must_be_connected)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003850{
3851 int ret;
3852 int total_time, stable_time = 0;
3853 u16 portchange, portstatus;
3854 unsigned connection = 0xffff;
3855
3856 for (total_time = 0; ; total_time += HUB_DEBOUNCE_STEP) {
3857 ret = hub_port_status(hub, port1, &portstatus, &portchange);
3858 if (ret < 0)
3859 return ret;
3860
3861 if (!(portchange & USB_PORT_STAT_C_CONNECTION) &&
3862 (portstatus & USB_PORT_STAT_CONNECTION) == connection) {
Lan Tianyuad493e52013-01-23 04:26:30 +08003863 if (!must_be_connected ||
3864 (connection == USB_PORT_STAT_CONNECTION))
3865 stable_time += HUB_DEBOUNCE_STEP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003866 if (stable_time >= HUB_DEBOUNCE_STABLE)
3867 break;
3868 } else {
3869 stable_time = 0;
3870 connection = portstatus & USB_PORT_STAT_CONNECTION;
3871 }
3872
3873 if (portchange & USB_PORT_STAT_C_CONNECTION) {
Lan Tianyuad493e52013-01-23 04:26:30 +08003874 usb_clear_port_feature(hub->hdev, port1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003875 USB_PORT_FEAT_C_CONNECTION);
3876 }
3877
3878 if (total_time >= HUB_DEBOUNCE_TIMEOUT)
3879 break;
3880 msleep(HUB_DEBOUNCE_STEP);
3881 }
3882
3883 dev_dbg (hub->intfdev,
3884 "debounce: port %d: total %dms stable %dms status 0x%x\n",
3885 port1, total_time, stable_time, portstatus);
3886
3887 if (stable_time < HUB_DEBOUNCE_STABLE)
3888 return -ETIMEDOUT;
3889 return portstatus;
3890}
3891
Inaky Perez-Gonzalezfc721f52008-04-08 13:24:46 -07003892void usb_ep0_reinit(struct usb_device *udev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003893{
Alan Sternddeac4e2009-01-15 17:03:33 -05003894 usb_disable_endpoint(udev, 0 + USB_DIR_IN, true);
3895 usb_disable_endpoint(udev, 0 + USB_DIR_OUT, true);
Alan Stern2caf7fc2008-12-31 11:31:33 -05003896 usb_enable_endpoint(udev, &udev->ep0, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003897}
Inaky Perez-Gonzalezfc721f52008-04-08 13:24:46 -07003898EXPORT_SYMBOL_GPL(usb_ep0_reinit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003899
3900#define usb_sndaddr0pipe() (PIPE_CONTROL << 30)
3901#define usb_rcvaddr0pipe() ((PIPE_CONTROL << 30) | USB_DIR_IN)
3902
Alan Stern4326ed02007-07-30 17:08:43 -04003903static int hub_set_address(struct usb_device *udev, int devnum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003904{
3905 int retval;
Sarah Sharpc6515272009-04-27 19:57:26 -07003906 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003907
Sarah Sharpc6515272009-04-27 19:57:26 -07003908 /*
3909 * The host controller will choose the device address,
3910 * instead of the core having chosen it earlier
3911 */
3912 if (!hcd->driver->address_device && devnum <= 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003913 return -EINVAL;
3914 if (udev->state == USB_STATE_ADDRESS)
3915 return 0;
3916 if (udev->state != USB_STATE_DEFAULT)
3917 return -EINVAL;
Andiry Xuc8d4af82010-10-14 07:22:51 -07003918 if (hcd->driver->address_device)
Sarah Sharpc6515272009-04-27 19:57:26 -07003919 retval = hcd->driver->address_device(hcd, udev);
Andiry Xuc8d4af82010-10-14 07:22:51 -07003920 else
Sarah Sharpc6515272009-04-27 19:57:26 -07003921 retval = usb_control_msg(udev, usb_sndaddr0pipe(),
3922 USB_REQ_SET_ADDRESS, 0, devnum, 0,
3923 NULL, 0, USB_CTRL_SET_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003924 if (retval == 0) {
Alan Stern3b29b682011-02-22 09:53:41 -05003925 update_devnum(udev, devnum);
David Vrabel4953d142008-04-08 13:24:46 -07003926 /* Device now using proper address. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003927 usb_set_device_state(udev, USB_STATE_ADDRESS);
Inaky Perez-Gonzalezfc721f52008-04-08 13:24:46 -07003928 usb_ep0_reinit(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003929 }
3930 return retval;
3931}
3932
Mathias Nyman890dae82013-09-30 17:26:31 +03003933/*
3934 * There are reports of USB 3.0 devices that say they support USB 2.0 Link PM
3935 * when they're plugged into a USB 2.0 port, but they don't work when LPM is
3936 * enabled.
3937 *
3938 * Only enable USB 2.0 Link PM if the port is internal (hardwired), or the
3939 * device says it supports the new USB 2.0 Link PM errata by setting the BESL
3940 * support bit in the BOS descriptor.
3941 */
3942static void hub_set_initial_usb2_lpm_policy(struct usb_device *udev)
3943{
3944 int connect_type;
3945
3946 if (!udev->usb2_hw_lpm_capable)
3947 return;
3948
3949 connect_type = usb_get_hub_port_connect_type(udev->parent,
3950 udev->portnum);
3951
3952 if ((udev->bos->ext_cap->bmAttributes & USB_BESL_SUPPORT) ||
3953 connect_type == USB_PORT_CONNECT_TYPE_HARD_WIRED) {
3954 udev->usb2_hw_lpm_allowed = 1;
3955 usb_set_usb2_hardware_lpm(udev, 1);
3956 }
3957}
3958
Linus Torvalds1da177e2005-04-16 15:20:36 -07003959/* Reset device, (re)assign address, get device descriptor.
3960 * Device connection must be stable, no more debouncing needed.
3961 * Returns device in USB_STATE_ADDRESS, except on error.
3962 *
3963 * If this is called for an already-existing device (as part of
Ming Lei742120c2008-06-18 22:00:29 +08003964 * usb_reset_and_verify_device), the caller must own the device lock. For a
Linus Torvalds1da177e2005-04-16 15:20:36 -07003965 * newly detected device that is not accessible through any global
3966 * pointers, it's not necessary to lock the device.
3967 */
3968static int
3969hub_port_init (struct usb_hub *hub, struct usb_device *udev, int port1,
3970 int retry_counter)
3971{
Arjan van de Ven4186ecf2006-01-11 15:55:29 +01003972 static DEFINE_MUTEX(usb_address0_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003973
3974 struct usb_device *hdev = hub->hdev;
Sarah Sharpe7b77172009-04-27 19:54:26 -07003975 struct usb_hcd *hcd = bus_to_hcd(hdev->bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003976 int i, j, retval;
3977 unsigned delay = HUB_SHORT_RESET_TIME;
3978 enum usb_device_speed oldspeed = udev->speed;
Michal Nazarewicze538dfd2011-08-30 17:11:19 +02003979 const char *speed;
Alan Stern4326ed02007-07-30 17:08:43 -04003980 int devnum = udev->devnum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003981
3982 /* root hub ports have a slightly longer reset period
3983 * (from USB 2.0 spec, section 7.1.7.5)
3984 */
3985 if (!hdev->parent) {
3986 delay = HUB_ROOT_RESET_TIME;
3987 if (port1 == hdev->bus->otg_port)
3988 hdev->bus->b_hnp_enable = 0;
3989 }
3990
3991 /* Some low speed devices have problems with the quick delay, so */
3992 /* be a bit pessimistic with those devices. RHbug #23670 */
3993 if (oldspeed == USB_SPEED_LOW)
3994 delay = HUB_LONG_RESET_TIME;
3995
Arjan van de Ven4186ecf2006-01-11 15:55:29 +01003996 mutex_lock(&usb_address0_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003997
Luben Tuikov07194ab2011-02-11 11:33:10 -08003998 /* Reset the device; full speed may morph to high speed */
3999 /* FIXME a USB 2.0 device may morph into SuperSpeed on reset. */
Andiry Xu75d7cf72011-09-13 16:41:11 -07004000 retval = hub_port_reset(hub, port1, udev, delay, false);
Luben Tuikov07194ab2011-02-11 11:33:10 -08004001 if (retval < 0) /* error or disconnect */
4002 goto fail;
4003 /* success, speed is known */
4004
Linus Torvalds1da177e2005-04-16 15:20:36 -07004005 retval = -ENODEV;
4006
4007 if (oldspeed != USB_SPEED_UNKNOWN && oldspeed != udev->speed) {
4008 dev_dbg(&udev->dev, "device reset changed speed!\n");
4009 goto fail;
4010 }
4011 oldspeed = udev->speed;
Alan Stern4326ed02007-07-30 17:08:43 -04004012
Linus Torvalds1da177e2005-04-16 15:20:36 -07004013 /* USB 2.0 section 5.5.3 talks about ep0 maxpacket ...
4014 * it's fixed size except for full speed devices.
Inaky Perez-Gonzalez5bb6e0a2006-08-25 19:35:30 -07004015 * For Wireless USB devices, ep0 max packet is always 512 (tho
4016 * reported as 0xff in the device descriptor). WUSB1.0[4.8.1].
Linus Torvalds1da177e2005-04-16 15:20:36 -07004017 */
4018 switch (udev->speed) {
Sarah Sharp6b403b02009-04-27 19:54:10 -07004019 case USB_SPEED_SUPER:
Greg Kroah-Hartman551cdbb2010-01-14 11:08:04 -08004020 case USB_SPEED_WIRELESS: /* fixed at 512 */
Harvey Harrison551509d2009-02-11 14:11:36 -08004021 udev->ep0.desc.wMaxPacketSize = cpu_to_le16(512);
Inaky Perez-Gonzalez5bb6e0a2006-08-25 19:35:30 -07004022 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004023 case USB_SPEED_HIGH: /* fixed at 64 */
Harvey Harrison551509d2009-02-11 14:11:36 -08004024 udev->ep0.desc.wMaxPacketSize = cpu_to_le16(64);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004025 break;
4026 case USB_SPEED_FULL: /* 8, 16, 32, or 64 */
4027 /* to determine the ep0 maxpacket size, try to read
4028 * the device descriptor to get bMaxPacketSize0 and
4029 * then correct our initial guess.
4030 */
Harvey Harrison551509d2009-02-11 14:11:36 -08004031 udev->ep0.desc.wMaxPacketSize = cpu_to_le16(64);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004032 break;
4033 case USB_SPEED_LOW: /* fixed at 8 */
Harvey Harrison551509d2009-02-11 14:11:36 -08004034 udev->ep0.desc.wMaxPacketSize = cpu_to_le16(8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004035 break;
4036 default:
4037 goto fail;
4038 }
Michal Nazarewicze538dfd2011-08-30 17:11:19 +02004039
4040 if (udev->speed == USB_SPEED_WIRELESS)
4041 speed = "variable speed Wireless";
4042 else
4043 speed = usb_speed_string(udev->speed);
4044
Sarah Sharpc6515272009-04-27 19:57:26 -07004045 if (udev->speed != USB_SPEED_SUPER)
4046 dev_info(&udev->dev,
Michal Nazarewicze538dfd2011-08-30 17:11:19 +02004047 "%s %s USB device number %d using %s\n",
4048 (udev->config) ? "reset" : "new", speed,
Alan Stern3b29b682011-02-22 09:53:41 -05004049 devnum, udev->bus->controller->driver->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004050
4051 /* Set up TT records, if needed */
4052 if (hdev->tt) {
4053 udev->tt = hdev->tt;
4054 udev->ttport = hdev->ttport;
4055 } else if (udev->speed != USB_SPEED_HIGH
4056 && hdev->speed == USB_SPEED_HIGH) {
Alan Sternd199c962011-01-31 10:56:37 -05004057 if (!hub->tt.hub) {
4058 dev_err(&udev->dev, "parent hub has no TT\n");
4059 retval = -EINVAL;
4060 goto fail;
4061 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004062 udev->tt = &hub->tt;
4063 udev->ttport = port1;
4064 }
Matthias Beyer469271f2013-10-10 23:41:27 +02004065
Linus Torvalds1da177e2005-04-16 15:20:36 -07004066 /* Why interleave GET_DESCRIPTOR and SET_ADDRESS this way?
4067 * Because device hardware and firmware is sometimes buggy in
4068 * this area, and this is how Linux has done it for ages.
4069 * Change it cautiously.
4070 *
4071 * NOTE: If USE_NEW_SCHEME() is true we will start by issuing
4072 * a 64-byte GET_DESCRIPTOR request. This is what Windows does,
4073 * so it may help with some non-standards-compliant devices.
4074 * Otherwise we start with SET_ADDRESS and then try to read the
4075 * first 8 bytes of the device descriptor to get the ep0 maxpacket
4076 * value.
4077 */
4078 for (i = 0; i < GET_DESCRIPTOR_TRIES; (++i, msleep(100))) {
Sarah Sharpc6515272009-04-27 19:57:26 -07004079 if (USE_NEW_SCHEME(retry_counter) && !(hcd->driver->flags & HCD_USB3)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004080 struct usb_device_descriptor *buf;
4081 int r = 0;
4082
4083#define GET_DESCRIPTOR_BUFSIZE 64
4084 buf = kmalloc(GET_DESCRIPTOR_BUFSIZE, GFP_NOIO);
4085 if (!buf) {
4086 retval = -ENOMEM;
4087 continue;
4088 }
4089
Alan Sternb89ee192007-05-11 10:19:04 -04004090 /* Retry on all errors; some devices are flakey.
4091 * 255 is for WUSB devices, we actually need to use
4092 * 512 (WUSB1.0[4.8.1]).
Linus Torvalds1da177e2005-04-16 15:20:36 -07004093 */
4094 for (j = 0; j < 3; ++j) {
4095 buf->bMaxPacketSize0 = 0;
4096 r = usb_control_msg(udev, usb_rcvaddr0pipe(),
4097 USB_REQ_GET_DESCRIPTOR, USB_DIR_IN,
4098 USB_DT_DEVICE << 8, 0,
4099 buf, GET_DESCRIPTOR_BUFSIZE,
Jaroslav Kyselafd7c5192008-10-10 16:24:45 +02004100 initial_descriptor_timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004101 switch (buf->bMaxPacketSize0) {
Inaky Perez-Gonzalez5bb6e0a2006-08-25 19:35:30 -07004102 case 8: case 16: case 32: case 64: case 255:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004103 if (buf->bDescriptorType ==
4104 USB_DT_DEVICE) {
4105 r = 0;
4106 break;
4107 }
4108 /* FALL THROUGH */
4109 default:
4110 if (r == 0)
4111 r = -EPROTO;
4112 break;
4113 }
4114 if (r == 0)
4115 break;
4116 }
4117 udev->descriptor.bMaxPacketSize0 =
4118 buf->bMaxPacketSize0;
4119 kfree(buf);
4120
Andiry Xu75d7cf72011-09-13 16:41:11 -07004121 retval = hub_port_reset(hub, port1, udev, delay, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004122 if (retval < 0) /* error or disconnect */
4123 goto fail;
4124 if (oldspeed != udev->speed) {
4125 dev_dbg(&udev->dev,
4126 "device reset changed speed!\n");
4127 retval = -ENODEV;
4128 goto fail;
4129 }
4130 if (r) {
Alan Sterne9e88fb2013-03-27 16:14:01 -04004131 if (r != -ENODEV)
4132 dev_err(&udev->dev, "device descriptor read/64, error %d\n",
4133 r);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004134 retval = -EMSGSIZE;
4135 continue;
4136 }
4137#undef GET_DESCRIPTOR_BUFSIZE
4138 }
4139
Matthias Beyer469271f2013-10-10 23:41:27 +02004140 /*
4141 * If device is WUSB, we already assigned an
4142 * unauthorized address in the Connect Ack sequence;
4143 * authorization will assign the final address.
4144 */
Sarah Sharpc6515272009-04-27 19:57:26 -07004145 if (udev->wusb == 0) {
Inaky Perez-Gonzalez6c529cd2008-04-08 13:24:46 -07004146 for (j = 0; j < SET_ADDRESS_TRIES; ++j) {
4147 retval = hub_set_address(udev, devnum);
4148 if (retval >= 0)
4149 break;
4150 msleep(200);
4151 }
4152 if (retval < 0) {
Alan Sterne9e88fb2013-03-27 16:14:01 -04004153 if (retval != -ENODEV)
4154 dev_err(&udev->dev, "device not accepting address %d, error %d\n",
4155 devnum, retval);
Inaky Perez-Gonzalez6c529cd2008-04-08 13:24:46 -07004156 goto fail;
4157 }
Sarah Sharpc6515272009-04-27 19:57:26 -07004158 if (udev->speed == USB_SPEED_SUPER) {
4159 devnum = udev->devnum;
4160 dev_info(&udev->dev,
Alan Stern3b29b682011-02-22 09:53:41 -05004161 "%s SuperSpeed USB device number %d using %s\n",
Sarah Sharpc6515272009-04-27 19:57:26 -07004162 (udev->config) ? "reset" : "new",
Alan Stern3b29b682011-02-22 09:53:41 -05004163 devnum, udev->bus->controller->driver->name);
Sarah Sharpc6515272009-04-27 19:57:26 -07004164 }
Inaky Perez-Gonzalez6c529cd2008-04-08 13:24:46 -07004165
4166 /* cope with hardware quirkiness:
4167 * - let SET_ADDRESS settle, some device hardware wants it
4168 * - read ep0 maxpacket even for high and low speed,
4169 */
4170 msleep(10);
Sarah Sharpc6515272009-04-27 19:57:26 -07004171 if (USE_NEW_SCHEME(retry_counter) && !(hcd->driver->flags & HCD_USB3))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004172 break;
Matthias Beyer469271f2013-10-10 23:41:27 +02004173 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004174
4175 retval = usb_get_device_descriptor(udev, 8);
4176 if (retval < 8) {
Alan Sterne9e88fb2013-03-27 16:14:01 -04004177 if (retval != -ENODEV)
4178 dev_err(&udev->dev,
Wu Fengguangb9cef6c2008-12-15 15:32:01 +08004179 "device descriptor read/8, error %d\n",
4180 retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004181 if (retval >= 0)
4182 retval = -EMSGSIZE;
4183 } else {
4184 retval = 0;
4185 break;
4186 }
4187 }
4188 if (retval)
4189 goto fail;
4190
Peter Chenb76baa82012-11-09 09:44:43 +08004191 if (hcd->phy && !hdev->parent)
Peter Chenac965112012-11-09 09:44:44 +08004192 usb_phy_notify_connect(hcd->phy, udev->speed);
Peter Chenb76baa82012-11-09 09:44:43 +08004193
Elric Fud8aec3d2012-03-26 21:16:02 +08004194 /*
4195 * Some superspeed devices have finished the link training process
4196 * and attached to a superspeed hub port, but the device descriptor
4197 * got from those devices show they aren't superspeed devices. Warm
4198 * reset the port attached by the devices can fix them.
4199 */
4200 if ((udev->speed == USB_SPEED_SUPER) &&
4201 (le16_to_cpu(udev->descriptor.bcdUSB) < 0x0300)) {
4202 dev_err(&udev->dev, "got a wrong device descriptor, "
4203 "warm reset device\n");
4204 hub_port_reset(hub, port1, udev,
4205 HUB_BH_RESET_TIME, true);
4206 retval = -EINVAL;
4207 goto fail;
4208 }
4209
Sarah Sharp6b403b02009-04-27 19:54:10 -07004210 if (udev->descriptor.bMaxPacketSize0 == 0xff ||
4211 udev->speed == USB_SPEED_SUPER)
4212 i = 512;
4213 else
4214 i = udev->descriptor.bMaxPacketSize0;
Kuninori Morimoto29cc8892011-08-23 03:12:03 -07004215 if (usb_endpoint_maxp(&udev->ep0.desc) != i) {
Alan Stern56626a72010-10-14 15:25:21 -04004216 if (udev->speed == USB_SPEED_LOW ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07004217 !(i == 8 || i == 16 || i == 32 || i == 64)) {
Alan Stern56626a72010-10-14 15:25:21 -04004218 dev_err(&udev->dev, "Invalid ep0 maxpacket: %d\n", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004219 retval = -EMSGSIZE;
4220 goto fail;
4221 }
Alan Stern56626a72010-10-14 15:25:21 -04004222 if (udev->speed == USB_SPEED_FULL)
4223 dev_dbg(&udev->dev, "ep0 maxpacket = %d\n", i);
4224 else
4225 dev_warn(&udev->dev, "Using ep0 maxpacket: %d\n", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004226 udev->ep0.desc.wMaxPacketSize = cpu_to_le16(i);
Inaky Perez-Gonzalezfc721f52008-04-08 13:24:46 -07004227 usb_ep0_reinit(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004228 }
Matthias Beyer469271f2013-10-10 23:41:27 +02004229
Linus Torvalds1da177e2005-04-16 15:20:36 -07004230 retval = usb_get_device_descriptor(udev, USB_DT_DEVICE_SIZE);
4231 if (retval < (signed)sizeof(udev->descriptor)) {
Alan Sterne9e88fb2013-03-27 16:14:01 -04004232 if (retval != -ENODEV)
4233 dev_err(&udev->dev, "device descriptor read/all, error %d\n",
4234 retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004235 if (retval >= 0)
4236 retval = -ENOMSG;
4237 goto fail;
4238 }
4239
Andiry Xu1ff4df52011-09-23 14:19:48 -07004240 if (udev->wusb == 0 && le16_to_cpu(udev->descriptor.bcdUSB) >= 0x0201) {
4241 retval = usb_get_bos_descriptor(udev);
Sarah Sharp51e0a012012-02-20 12:02:19 -08004242 if (!retval) {
Sarah Sharpd9b20992012-02-20 08:31:26 -08004243 udev->lpm_capable = usb_device_supports_lpm(udev);
Sarah Sharp51e0a012012-02-20 12:02:19 -08004244 usb_set_lpm_parameters(udev);
4245 }
Andiry Xu1ff4df52011-09-23 14:19:48 -07004246 }
Andiry Xu3148bf02011-09-23 14:19:47 -07004247
Linus Torvalds1da177e2005-04-16 15:20:36 -07004248 retval = 0;
Alek Du48f24972010-06-04 15:47:55 +08004249 /* notify HCD that we have a device connected and addressed */
4250 if (hcd->driver->update_device)
4251 hcd->driver->update_device(hcd, udev);
Mathias Nyman890dae82013-09-30 17:26:31 +03004252 hub_set_initial_usb2_lpm_policy(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004253fail:
Alan Stern4326ed02007-07-30 17:08:43 -04004254 if (retval) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004255 hub_port_disable(hub, port1, 0);
Alan Stern3b29b682011-02-22 09:53:41 -05004256 update_devnum(udev, devnum); /* for disconnect processing */
Alan Stern4326ed02007-07-30 17:08:43 -04004257 }
Arjan van de Ven4186ecf2006-01-11 15:55:29 +01004258 mutex_unlock(&usb_address0_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004259 return retval;
4260}
4261
4262static void
4263check_highspeed (struct usb_hub *hub, struct usb_device *udev, int port1)
4264{
4265 struct usb_qualifier_descriptor *qual;
4266 int status;
4267
Christoph Lametere94b1762006-12-06 20:33:17 -08004268 qual = kmalloc (sizeof *qual, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004269 if (qual == NULL)
4270 return;
4271
4272 status = usb_get_descriptor (udev, USB_DT_DEVICE_QUALIFIER, 0,
4273 qual, sizeof *qual);
4274 if (status == sizeof *qual) {
4275 dev_info(&udev->dev, "not running at top speed; "
4276 "connect to a high speed hub\n");
4277 /* hub LEDs are probably harder to miss than syslog */
4278 if (hub->has_indicators) {
4279 hub->indicator[port1-1] = INDICATOR_GREEN_BLINK;
David Howellsc4028952006-11-22 14:57:56 +00004280 schedule_delayed_work (&hub->leds, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004281 }
4282 }
Jesper Juhl1bc3c9e2005-04-18 17:39:34 -07004283 kfree(qual);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004284}
4285
4286static unsigned
4287hub_power_remaining (struct usb_hub *hub)
4288{
4289 struct usb_device *hdev = hub->hdev;
4290 int remaining;
Alan Stern55c52712005-11-23 12:03:12 -05004291 int port1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004292
Alan Stern55c52712005-11-23 12:03:12 -05004293 if (!hub->limited_power)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004294 return 0;
4295
Alan Stern55c52712005-11-23 12:03:12 -05004296 remaining = hdev->bus_mA - hub->descriptor->bHubContrCurrent;
4297 for (port1 = 1; port1 <= hdev->maxchild; ++port1) {
Lan Tianyuff823c792012-09-05 13:44:32 +08004298 struct usb_device *udev = hub->ports[port1 - 1]->child;
Alan Stern55c52712005-11-23 12:03:12 -05004299 int delta;
Sebastian Andrzej Siewior430ee582012-12-18 15:25:47 +01004300 unsigned unit_load;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004301
4302 if (!udev)
4303 continue;
Sebastian Andrzej Siewior430ee582012-12-18 15:25:47 +01004304 if (hub_is_superspeed(udev))
4305 unit_load = 150;
4306 else
4307 unit_load = 100;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004308
Sebastian Andrzej Siewior430ee582012-12-18 15:25:47 +01004309 /*
4310 * Unconfigured devices may not use more than one unit load,
4311 * or 8mA for OTG ports
4312 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004313 if (udev->actconfig)
Sebastian Andrzej Siewior8d8479d2012-12-18 15:25:46 +01004314 delta = usb_get_max_power(udev, udev->actconfig);
Alan Stern55c52712005-11-23 12:03:12 -05004315 else if (port1 != udev->bus->otg_port || hdev->parent)
Sebastian Andrzej Siewior430ee582012-12-18 15:25:47 +01004316 delta = unit_load;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004317 else
Alan Stern55c52712005-11-23 12:03:12 -05004318 delta = 8;
4319 if (delta > hub->mA_per_port)
Wu Fengguangb9cef6c2008-12-15 15:32:01 +08004320 dev_warn(&udev->dev,
4321 "%dmA is over %umA budget for port %d!\n",
4322 delta, hub->mA_per_port, port1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004323 remaining -= delta;
4324 }
4325 if (remaining < 0) {
Alan Stern55c52712005-11-23 12:03:12 -05004326 dev_warn(hub->intfdev, "%dmA over power budget!\n",
Matthias Beyer469271f2013-10-10 23:41:27 +02004327 -remaining);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004328 remaining = 0;
4329 }
4330 return remaining;
4331}
4332
4333/* Handle physical or logical connection change events.
4334 * This routine is called when:
4335 * a port connection-change occurs;
4336 * a port enable-change occurs (often caused by EMI);
Ming Lei742120c2008-06-18 22:00:29 +08004337 * usb_reset_and_verify_device() encounters changed descriptors (as from
Linus Torvalds1da177e2005-04-16 15:20:36 -07004338 * a firmware download)
4339 * caller already locked the hub
4340 */
4341static void hub_port_connect_change(struct usb_hub *hub, int port1,
4342 u16 portstatus, u16 portchange)
4343{
4344 struct usb_device *hdev = hub->hdev;
4345 struct device *hub_dev = hub->intfdev;
Balaji Rao90da0962007-11-22 01:58:14 +05304346 struct usb_hcd *hcd = bus_to_hcd(hdev->bus);
Alan Stern24618b02008-04-28 11:06:28 -04004347 unsigned wHubCharacteristics =
4348 le16_to_cpu(hub->descriptor->wHubCharacteristics);
Alan Stern8808f002008-04-28 11:06:55 -04004349 struct usb_device *udev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004350 int status, i;
Sebastian Andrzej Siewior430ee582012-12-18 15:25:47 +01004351 unsigned unit_load;
Alan Stern24618b02008-04-28 11:06:28 -04004352
Linus Torvalds1da177e2005-04-16 15:20:36 -07004353 dev_dbg (hub_dev,
4354 "port %d, status %04x, change %04x, %s\n",
Sarah Sharp131dec32010-12-06 21:00:19 -08004355 port1, portstatus, portchange, portspeed(hub, portstatus));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004356
4357 if (hub->has_indicators) {
4358 set_port_led(hub, port1, HUB_LED_AUTO);
4359 hub->indicator[port1-1] = INDICATOR_AUTO;
4360 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004361
4362#ifdef CONFIG_USB_OTG
4363 /* during HNP, don't repeat the debounce */
4364 if (hdev->bus->is_b_host)
Alan Stern24618b02008-04-28 11:06:28 -04004365 portchange &= ~(USB_PORT_STAT_C_CONNECTION |
4366 USB_PORT_STAT_C_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004367#endif
4368
Alan Stern8808f002008-04-28 11:06:55 -04004369 /* Try to resuscitate an existing device */
Lan Tianyuff823c792012-09-05 13:44:32 +08004370 udev = hub->ports[port1 - 1]->child;
Alan Stern8808f002008-04-28 11:06:55 -04004371 if ((portstatus & USB_PORT_STAT_CONNECTION) && udev &&
4372 udev->state != USB_STATE_NOTATTACHED) {
Alan Stern8808f002008-04-28 11:06:55 -04004373 usb_lock_device(udev);
4374 if (portstatus & USB_PORT_STAT_ENABLE) {
4375 status = 0; /* Nothing to do */
Alan Stern8808f002008-04-28 11:06:55 -04004376
Alan Stern84ebc102013-03-27 16:14:46 -04004377#ifdef CONFIG_PM_RUNTIME
Alan Stern5257d972008-09-22 14:43:08 -04004378 } else if (udev->state == USB_STATE_SUSPENDED &&
4379 udev->persist_enabled) {
Alan Stern8808f002008-04-28 11:06:55 -04004380 /* For a suspended device, treat this as a
4381 * remote wakeup event.
4382 */
Alan Stern0534d462010-01-08 12:56:30 -05004383 status = usb_remote_wakeup(udev);
Alan Stern8808f002008-04-28 11:06:55 -04004384#endif
4385
4386 } else {
Alan Stern5257d972008-09-22 14:43:08 -04004387 status = -ENODEV; /* Don't resuscitate */
Alan Stern8808f002008-04-28 11:06:55 -04004388 }
4389 usb_unlock_device(udev);
4390
4391 if (status == 0) {
4392 clear_bit(port1, hub->change_bits);
4393 return;
4394 }
4395 }
4396
Alan Stern24618b02008-04-28 11:06:28 -04004397 /* Disconnect any existing devices under this port */
Peter Chenb76baa82012-11-09 09:44:43 +08004398 if (udev) {
4399 if (hcd->phy && !hdev->parent &&
4400 !(portstatus & USB_PORT_STAT_CONNECTION))
Peter Chenac965112012-11-09 09:44:44 +08004401 usb_phy_notify_disconnect(hcd->phy, udev->speed);
Lan Tianyuff823c792012-09-05 13:44:32 +08004402 usb_disconnect(&hub->ports[port1 - 1]->child);
Peter Chenb76baa82012-11-09 09:44:43 +08004403 }
Alan Stern24618b02008-04-28 11:06:28 -04004404 clear_bit(port1, hub->change_bits);
4405
Alan Stern253e0572009-10-27 15:20:13 -04004406 /* We can forget about a "removed" device when there's a physical
4407 * disconnect or the connect status changes.
4408 */
4409 if (!(portstatus & USB_PORT_STAT_CONNECTION) ||
4410 (portchange & USB_PORT_STAT_C_CONNECTION))
4411 clear_bit(port1, hub->removed_bits);
4412
Alan Stern5257d972008-09-22 14:43:08 -04004413 if (portchange & (USB_PORT_STAT_C_CONNECTION |
4414 USB_PORT_STAT_C_ENABLE)) {
Lan Tianyuad493e52013-01-23 04:26:30 +08004415 status = hub_port_debounce_be_stable(hub, port1);
Alan Stern5257d972008-09-22 14:43:08 -04004416 if (status < 0) {
Alan Sterne9e88fb2013-03-27 16:14:01 -04004417 if (status != -ENODEV && printk_ratelimit())
Alan Stern5257d972008-09-22 14:43:08 -04004418 dev_err(hub_dev, "connect-debounce failed, "
4419 "port %d disabled\n", port1);
4420 portstatus &= ~USB_PORT_STAT_CONNECTION;
4421 } else {
4422 portstatus = status;
4423 }
4424 }
4425
Alan Stern253e0572009-10-27 15:20:13 -04004426 /* Return now if debouncing failed or nothing is connected or
4427 * the device was "removed".
4428 */
4429 if (!(portstatus & USB_PORT_STAT_CONNECTION) ||
4430 test_bit(port1, hub->removed_bits)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004431
4432 /* maybe switch power back on (e.g. root hub was reset) */
Greg Kroah-Hartman74ad9bd2005-06-20 21:15:16 -07004433 if ((wHubCharacteristics & HUB_CHAR_LPSM) < 2
Andiry Xu0ed9a572011-04-27 18:07:43 +08004434 && !port_is_power_on(hub, portstatus))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004435 set_port_feature(hdev, port1, USB_PORT_FEAT_POWER);
Alan Stern5257d972008-09-22 14:43:08 -04004436
Linus Torvalds1da177e2005-04-16 15:20:36 -07004437 if (portstatus & USB_PORT_STAT_ENABLE)
Matthias Beyer469271f2013-10-10 23:41:27 +02004438 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004439 return;
4440 }
Sebastian Andrzej Siewior430ee582012-12-18 15:25:47 +01004441 if (hub_is_superspeed(hub->hdev))
4442 unit_load = 150;
4443 else
4444 unit_load = 100;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004445
Alan Sterne9e88fb2013-03-27 16:14:01 -04004446 status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004447 for (i = 0; i < SET_CONFIG_TRIES; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004448
4449 /* reallocate for each attempt, since references
4450 * to the previous one can escape in various ways
4451 */
4452 udev = usb_alloc_dev(hdev, hdev->bus, port1);
4453 if (!udev) {
4454 dev_err (hub_dev,
4455 "couldn't allocate port %d usb_device\n",
4456 port1);
4457 goto done;
4458 }
4459
4460 usb_set_device_state(udev, USB_STATE_POWERED);
Matthias Beyer469271f2013-10-10 23:41:27 +02004461 udev->bus_mA = hub->mA_per_port;
Alan Sternb6956ff2006-08-30 15:46:48 -04004462 udev->level = hdev->level + 1;
Inaky Perez-Gonzalez8af548d2008-04-08 13:24:46 -07004463 udev->wusb = hub_is_wusb(hub);
Alan Stern55c52712005-11-23 12:03:12 -05004464
Sarah Sharp131dec32010-12-06 21:00:19 -08004465 /* Only USB 3.0 devices are connected to SuperSpeed hubs. */
4466 if (hub_is_superspeed(hub->hdev))
Sarah Sharpe7b77172009-04-27 19:54:26 -07004467 udev->speed = USB_SPEED_SUPER;
4468 else
4469 udev->speed = USB_SPEED_UNKNOWN;
4470
Alan Stern3b29b682011-02-22 09:53:41 -05004471 choose_devnum(udev);
Andiry Xuc8d4af82010-10-14 07:22:51 -07004472 if (udev->devnum <= 0) {
4473 status = -ENOTCONN; /* Don't retry */
4474 goto loop;
Sarah Sharpc6515272009-04-27 19:57:26 -07004475 }
4476
Sarah Sharpe7b77172009-04-27 19:54:26 -07004477 /* reset (non-USB 3.0 devices) and get descriptor */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004478 status = hub_port_init(hub, udev, port1, i);
4479 if (status < 0)
4480 goto loop;
4481
Phil Dibowitz93362a82010-07-22 00:05:01 +02004482 usb_detect_quirks(udev);
4483 if (udev->quirks & USB_QUIRK_DELAY_INIT)
4484 msleep(1000);
4485
Linus Torvalds1da177e2005-04-16 15:20:36 -07004486 /* consecutive bus-powered hubs aren't reliable; they can
4487 * violate the voltage drop budget. if the new child has
4488 * a "powered" LED, users should notice we didn't enable it
4489 * (without reading syslog), even without per-port LEDs
4490 * on the parent.
4491 */
4492 if (udev->descriptor.bDeviceClass == USB_CLASS_HUB
Sebastian Andrzej Siewior430ee582012-12-18 15:25:47 +01004493 && udev->bus_mA <= unit_load) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004494 u16 devstat;
4495
4496 status = usb_get_status(udev, USB_RECIP_DEVICE, 0,
4497 &devstat);
Alan Stern15b73362013-07-30 15:35:40 -04004498 if (status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004499 dev_dbg(&udev->dev, "get status %d ?\n", status);
4500 goto loop_disable;
4501 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004502 if ((devstat & (1 << USB_DEVICE_SELF_POWERED)) == 0) {
4503 dev_err(&udev->dev,
4504 "can't connect bus-powered hub "
4505 "to this port\n");
4506 if (hub->has_indicators) {
4507 hub->indicator[port1-1] =
4508 INDICATOR_AMBER_BLINK;
David Howellsc4028952006-11-22 14:57:56 +00004509 schedule_delayed_work (&hub->leds, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004510 }
4511 status = -ENOTCONN; /* Don't retry */
4512 goto loop_disable;
4513 }
4514 }
Matthias Beyer469271f2013-10-10 23:41:27 +02004515
Linus Torvalds1da177e2005-04-16 15:20:36 -07004516 /* check for devices running slower than they could */
4517 if (le16_to_cpu(udev->descriptor.bcdUSB) >= 0x0200
4518 && udev->speed == USB_SPEED_FULL
4519 && highspeed_hubs != 0)
4520 check_highspeed (hub, udev, port1);
4521
Greg Kroah-Hartmanfa286182012-05-14 09:20:37 -07004522 /* Store the parent's children[] pointer. At this point
Linus Torvalds1da177e2005-04-16 15:20:36 -07004523 * udev becomes globally accessible, although presumably
4524 * no one will look at it until hdev is unlocked.
4525 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004526 status = 0;
4527
4528 /* We mustn't add new devices if the parent hub has
4529 * been disconnected; we would race with the
4530 * recursively_mark_NOTATTACHED() routine.
4531 */
4532 spin_lock_irq(&device_state_lock);
4533 if (hdev->state == USB_STATE_NOTATTACHED)
4534 status = -ENOTCONN;
4535 else
Lan Tianyuff823c792012-09-05 13:44:32 +08004536 hub->ports[port1 - 1]->child = udev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004537 spin_unlock_irq(&device_state_lock);
4538
4539 /* Run it through the hoops (find a driver, etc) */
4540 if (!status) {
4541 status = usb_new_device(udev);
4542 if (status) {
4543 spin_lock_irq(&device_state_lock);
Lan Tianyuff823c792012-09-05 13:44:32 +08004544 hub->ports[port1 - 1]->child = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004545 spin_unlock_irq(&device_state_lock);
4546 }
4547 }
4548
Linus Torvalds1da177e2005-04-16 15:20:36 -07004549 if (status)
4550 goto loop_disable;
4551
4552 status = hub_power_remaining(hub);
4553 if (status)
Alan Stern55c52712005-11-23 12:03:12 -05004554 dev_dbg(hub_dev, "%dmA power budget left\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004555
4556 return;
4557
4558loop_disable:
4559 hub_port_disable(hub, port1, 1);
4560loop:
Inaky Perez-Gonzalezfc721f52008-04-08 13:24:46 -07004561 usb_ep0_reinit(udev);
Alan Stern3b29b682011-02-22 09:53:41 -05004562 release_devnum(udev);
Herbert Xuf7410ce2010-01-10 20:15:03 +11004563 hub_free_dev(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004564 usb_put_dev(udev);
Vikram Panditaffcdc182007-05-25 21:31:07 -07004565 if ((status == -ENOTCONN) || (status == -ENOTSUPP))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004566 break;
4567 }
Alan Stern3a311552008-05-20 16:58:29 -04004568 if (hub->hdev->parent ||
4569 !hcd->driver->port_handed_over ||
Alan Sterne9e88fb2013-03-27 16:14:01 -04004570 !(hcd->driver->port_handed_over)(hcd, port1)) {
4571 if (status != -ENOTCONN && status != -ENODEV)
4572 dev_err(hub_dev, "unable to enumerate USB device on port %d\n",
4573 port1);
4574 }
Matthias Beyer469271f2013-10-10 23:41:27 +02004575
Linus Torvalds1da177e2005-04-16 15:20:36 -07004576done:
4577 hub_port_disable(hub, port1, 1);
Balaji Rao90da0962007-11-22 01:58:14 +05304578 if (hcd->driver->relinquish_port && !hub->hdev->parent)
4579 hcd->driver->relinquish_port(hcd, port1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004580}
4581
Sarah Sharp714b07b2012-01-24 13:53:18 -08004582/* Returns 1 if there was a remote wakeup and a connect status change. */
4583static int hub_handle_remote_wakeup(struct usb_hub *hub, unsigned int port,
Sarah Sharp72937e12012-01-24 11:46:50 -08004584 u16 portstatus, u16 portchange)
Sarah Sharp714b07b2012-01-24 13:53:18 -08004585{
4586 struct usb_device *hdev;
4587 struct usb_device *udev;
4588 int connect_change = 0;
4589 int ret;
4590
4591 hdev = hub->hdev;
Lan Tianyuff823c792012-09-05 13:44:32 +08004592 udev = hub->ports[port - 1]->child;
Sarah Sharp4ee823b2011-11-14 18:00:01 -08004593 if (!hub_is_superspeed(hdev)) {
4594 if (!(portchange & USB_PORT_STAT_C_SUSPEND))
4595 return 0;
Lan Tianyuad493e52013-01-23 04:26:30 +08004596 usb_clear_port_feature(hdev, port, USB_PORT_FEAT_C_SUSPEND);
Sarah Sharp4ee823b2011-11-14 18:00:01 -08004597 } else {
4598 if (!udev || udev->state != USB_STATE_SUSPENDED ||
Sarah Sharp72937e12012-01-24 11:46:50 -08004599 (portstatus & USB_PORT_STAT_LINK_STATE) !=
4600 USB_SS_PORT_LS_U0)
Sarah Sharp4ee823b2011-11-14 18:00:01 -08004601 return 0;
4602 }
4603
Sarah Sharp714b07b2012-01-24 13:53:18 -08004604 if (udev) {
4605 /* TRSMRCY = 10 msec */
4606 msleep(10);
4607
4608 usb_lock_device(udev);
4609 ret = usb_remote_wakeup(udev);
4610 usb_unlock_device(udev);
4611 if (ret < 0)
4612 connect_change = 1;
4613 } else {
4614 ret = -ENODEV;
4615 hub_port_disable(hub, port, 1);
4616 }
4617 dev_dbg(hub->intfdev, "resume on port %d, status %d\n",
4618 port, ret);
4619 return connect_change;
4620}
4621
Linus Torvalds1da177e2005-04-16 15:20:36 -07004622static void hub_events(void)
4623{
4624 struct list_head *tmp;
4625 struct usb_device *hdev;
4626 struct usb_interface *intf;
4627 struct usb_hub *hub;
4628 struct device *hub_dev;
4629 u16 hubstatus;
4630 u16 hubchange;
4631 u16 portstatus;
4632 u16 portchange;
4633 int i, ret;
Sarah Sharp4ee823b2011-11-14 18:00:01 -08004634 int connect_change, wakeup_change;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004635
4636 /*
4637 * We restart the list every time to avoid a deadlock with
4638 * deleting hubs downstream from this one. This should be
4639 * safe since we delete the hub from the event list.
4640 * Not the most efficient, but avoids deadlocks.
4641 */
4642 while (1) {
4643
4644 /* Grab the first entry at the beginning of the list */
4645 spin_lock_irq(&hub_event_lock);
4646 if (list_empty(&hub_event_list)) {
4647 spin_unlock_irq(&hub_event_lock);
4648 break;
4649 }
4650
4651 tmp = hub_event_list.next;
4652 list_del_init(tmp);
4653
4654 hub = list_entry(tmp, struct usb_hub, event_list);
Alan Sterne8054852007-05-04 11:55:11 -04004655 kref_get(&hub->kref);
4656 spin_unlock_irq(&hub_event_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004657
Alan Sterne8054852007-05-04 11:55:11 -04004658 hdev = hub->hdev;
4659 hub_dev = hub->intfdev;
4660 intf = to_usb_interface(hub_dev);
Alan Stern40f122f2006-11-09 14:44:33 -05004661 dev_dbg(hub_dev, "state %d ports %d chg %04x evt %04x\n",
Krzysztof Mazur3bbc47d2013-08-22 14:49:40 +02004662 hdev->state, hdev->maxchild,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004663 /* NOTE: expects max 15 ports... */
4664 (u16) hub->change_bits[0],
Alan Stern40f122f2006-11-09 14:44:33 -05004665 (u16) hub->event_bits[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004666
Linus Torvalds1da177e2005-04-16 15:20:36 -07004667 /* Lock the device, then check to see if we were
4668 * disconnected while waiting for the lock to succeed. */
Alan Stern06b84e82007-05-04 11:54:50 -04004669 usb_lock_device(hdev);
Alan Sterne8054852007-05-04 11:55:11 -04004670 if (unlikely(hub->disconnected))
Alan Stern9bbdf1e2010-01-08 12:57:28 -05004671 goto loop_disconnected;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004672
4673 /* If the hub has died, clean up after it */
4674 if (hdev->state == USB_STATE_NOTATTACHED) {
Alan Stern7de18d82006-06-01 13:37:24 -04004675 hub->error = -ENODEV;
Alan Stern43303542008-04-28 11:07:31 -04004676 hub_quiesce(hub, HUB_DISCONNECT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004677 goto loop;
4678 }
4679
Alan Stern40f122f2006-11-09 14:44:33 -05004680 /* Autoresume */
4681 ret = usb_autopm_get_interface(intf);
4682 if (ret) {
4683 dev_dbg(hub_dev, "Can't autoresume: %d\n", ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004684 goto loop;
Alan Stern40f122f2006-11-09 14:44:33 -05004685 }
4686
4687 /* If this is an inactive hub, do nothing */
4688 if (hub->quiescing)
4689 goto loop_autopm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004690
4691 if (hub->error) {
4692 dev_dbg (hub_dev, "resetting for error %d\n",
4693 hub->error);
4694
Ming Lei742120c2008-06-18 22:00:29 +08004695 ret = usb_reset_device(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004696 if (ret) {
4697 dev_dbg (hub_dev,
4698 "error resetting hub: %d\n", ret);
Alan Stern40f122f2006-11-09 14:44:33 -05004699 goto loop_autopm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004700 }
4701
4702 hub->nerrors = 0;
4703 hub->error = 0;
4704 }
4705
4706 /* deal with port status changes */
Krzysztof Mazur3bbc47d2013-08-22 14:49:40 +02004707 for (i = 1; i <= hdev->maxchild; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004708 if (test_bit(i, hub->busy_bits))
4709 continue;
4710 connect_change = test_bit(i, hub->change_bits);
Sarah Sharp72937e12012-01-24 11:46:50 -08004711 wakeup_change = test_and_clear_bit(i, hub->wakeup_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004712 if (!test_and_clear_bit(i, hub->event_bits) &&
Sarah Sharp4ee823b2011-11-14 18:00:01 -08004713 !connect_change && !wakeup_change)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004714 continue;
4715
4716 ret = hub_port_status(hub, i,
4717 &portstatus, &portchange);
4718 if (ret < 0)
4719 continue;
4720
Linus Torvalds1da177e2005-04-16 15:20:36 -07004721 if (portchange & USB_PORT_STAT_C_CONNECTION) {
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_CONNECTION);
4724 connect_change = 1;
4725 }
4726
4727 if (portchange & USB_PORT_STAT_C_ENABLE) {
4728 if (!connect_change)
4729 dev_dbg (hub_dev,
4730 "port %d enable change, "
4731 "status %08x\n",
4732 i, portstatus);
Lan Tianyuad493e52013-01-23 04:26:30 +08004733 usb_clear_port_feature(hdev, i,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004734 USB_PORT_FEAT_C_ENABLE);
4735
4736 /*
4737 * EM interference sometimes causes badly
4738 * shielded USB devices to be shutdown by
4739 * the hub, this hack enables them again.
Matthias Beyer469271f2013-10-10 23:41:27 +02004740 * Works at least with mouse driver.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004741 */
4742 if (!(portstatus & USB_PORT_STAT_ENABLE)
4743 && !connect_change
Lan Tianyuff823c792012-09-05 13:44:32 +08004744 && hub->ports[i - 1]->child) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004745 dev_err (hub_dev,
4746 "port %i "
4747 "disabled by hub (EMI?), "
4748 "re-enabling...\n",
4749 i);
4750 connect_change = 1;
4751 }
4752 }
4753
Sarah Sharp72937e12012-01-24 11:46:50 -08004754 if (hub_handle_remote_wakeup(hub, i,
4755 portstatus, portchange))
Sarah Sharp714b07b2012-01-24 13:53:18 -08004756 connect_change = 1;
Alan Stern8808f002008-04-28 11:06:55 -04004757
Linus Torvalds1da177e2005-04-16 15:20:36 -07004758 if (portchange & USB_PORT_STAT_C_OVERCURRENT) {
Paul Bolle752d57a2011-03-11 18:03:52 +01004759 u16 status = 0;
4760 u16 unused;
4761
4762 dev_dbg(hub_dev, "over-current change on port "
4763 "%d\n", i);
Lan Tianyuad493e52013-01-23 04:26:30 +08004764 usb_clear_port_feature(hdev, i,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004765 USB_PORT_FEAT_C_OVER_CURRENT);
Paul Bolle752d57a2011-03-11 18:03:52 +01004766 msleep(100); /* Cool down */
Alan Stern8520f382008-09-22 14:44:26 -04004767 hub_power_on(hub, true);
Paul Bolle752d57a2011-03-11 18:03:52 +01004768 hub_port_status(hub, i, &status, &unused);
4769 if (status & USB_PORT_STAT_OVERCURRENT)
4770 dev_err(hub_dev, "over-current "
4771 "condition on port %d\n", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004772 }
4773
4774 if (portchange & USB_PORT_STAT_C_RESET) {
4775 dev_dbg (hub_dev,
4776 "reset change on port %d\n",
4777 i);
Lan Tianyuad493e52013-01-23 04:26:30 +08004778 usb_clear_port_feature(hdev, i,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004779 USB_PORT_FEAT_C_RESET);
4780 }
Sarah Sharpc7061572010-12-06 15:08:20 -08004781 if ((portchange & USB_PORT_STAT_C_BH_RESET) &&
4782 hub_is_superspeed(hub->hdev)) {
4783 dev_dbg(hub_dev,
4784 "warm reset change on port %d\n",
4785 i);
Lan Tianyuad493e52013-01-23 04:26:30 +08004786 usb_clear_port_feature(hdev, i,
Sarah Sharpc7061572010-12-06 15:08:20 -08004787 USB_PORT_FEAT_C_BH_PORT_RESET);
4788 }
John Youndbe79bb2001-09-17 00:00:00 -07004789 if (portchange & USB_PORT_STAT_C_LINK_STATE) {
Lan Tianyuad493e52013-01-23 04:26:30 +08004790 usb_clear_port_feature(hub->hdev, i,
John Youndbe79bb2001-09-17 00:00:00 -07004791 USB_PORT_FEAT_C_PORT_LINK_STATE);
4792 }
4793 if (portchange & USB_PORT_STAT_C_CONFIG_ERROR) {
4794 dev_warn(hub_dev,
4795 "config error on port %d\n",
4796 i);
Lan Tianyuad493e52013-01-23 04:26:30 +08004797 usb_clear_port_feature(hub->hdev, i,
John Youndbe79bb2001-09-17 00:00:00 -07004798 USB_PORT_FEAT_C_PORT_CONFIG_ERROR);
4799 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004800
Andiry Xu5e467f62011-04-27 18:07:54 +08004801 /* Warm reset a USB3 protocol port if it's in
4802 * SS.Inactive state.
4803 */
Stanislaw Ledwon8bea2bd2012-06-18 15:20:00 +02004804 if (hub_port_warm_reset_required(hub, portstatus)) {
Sarah Sharp65bdac52012-11-14 17:58:04 -08004805 int status;
Sarah Sharpd3b9d7a2012-11-01 11:20:44 -07004806 struct usb_device *udev =
4807 hub->ports[i - 1]->child;
Sarah Sharp65bdac52012-11-14 17:58:04 -08004808
Andiry Xu5e467f62011-04-27 18:07:54 +08004809 dev_dbg(hub_dev, "warm reset port %d\n", i);
Julius Wernerf3e94aa2013-07-30 19:51:20 -07004810 if (!udev || !(portstatus &
4811 USB_PORT_STAT_CONNECTION)) {
Sarah Sharpd3b9d7a2012-11-01 11:20:44 -07004812 status = hub_port_reset(hub, i,
4813 NULL, HUB_BH_RESET_TIME,
4814 true);
4815 if (status < 0)
4816 hub_port_disable(hub, i, 1);
4817 } else {
4818 usb_lock_device(udev);
4819 status = usb_reset_device(udev);
4820 usb_unlock_device(udev);
Julius Wernerf3e94aa2013-07-30 19:51:20 -07004821 connect_change = 0;
Sarah Sharpd3b9d7a2012-11-01 11:20:44 -07004822 }
Andiry Xu5e467f62011-04-27 18:07:54 +08004823 }
4824
Linus Torvalds1da177e2005-04-16 15:20:36 -07004825 if (connect_change)
4826 hub_port_connect_change(hub, i,
4827 portstatus, portchange);
4828 } /* end for i */
4829
4830 /* deal with hub status changes */
4831 if (test_and_clear_bit(0, hub->event_bits) == 0)
4832 ; /* do nothing */
4833 else if (hub_hub_status(hub, &hubstatus, &hubchange) < 0)
4834 dev_err (hub_dev, "get_hub_status failed\n");
4835 else {
4836 if (hubchange & HUB_CHANGE_LOCAL_POWER) {
4837 dev_dbg (hub_dev, "power change\n");
4838 clear_hub_feature(hdev, C_HUB_LOCAL_POWER);
Alan Stern55c52712005-11-23 12:03:12 -05004839 if (hubstatus & HUB_STATUS_LOCAL_POWER)
4840 /* FIXME: Is this always true? */
Alan Stern55c52712005-11-23 12:03:12 -05004841 hub->limited_power = 1;
jidong xiao403fae72007-09-14 00:08:51 +08004842 else
4843 hub->limited_power = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004844 }
4845 if (hubchange & HUB_CHANGE_OVERCURRENT) {
Paul Bolle752d57a2011-03-11 18:03:52 +01004846 u16 status = 0;
4847 u16 unused;
4848
4849 dev_dbg(hub_dev, "over-current change\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004850 clear_hub_feature(hdev, C_HUB_OVER_CURRENT);
Paul Bolle752d57a2011-03-11 18:03:52 +01004851 msleep(500); /* Cool down */
Matthias Beyer469271f2013-10-10 23:41:27 +02004852 hub_power_on(hub, true);
Paul Bolle752d57a2011-03-11 18:03:52 +01004853 hub_hub_status(hub, &status, &unused);
4854 if (status & HUB_STATUS_OVERCURRENT)
4855 dev_err(hub_dev, "over-current "
4856 "condition\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004857 }
4858 }
4859
Alan Stern8e4ceb32009-12-07 13:01:37 -05004860 loop_autopm:
4861 /* Balance the usb_autopm_get_interface() above */
4862 usb_autopm_put_interface_no_suspend(intf);
4863 loop:
4864 /* Balance the usb_autopm_get_interface_no_resume() in
4865 * kick_khubd() and allow autosuspend.
4866 */
4867 usb_autopm_put_interface(intf);
Alan Stern9bbdf1e2010-01-08 12:57:28 -05004868 loop_disconnected:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004869 usb_unlock_device(hdev);
Alan Sterne8054852007-05-04 11:55:11 -04004870 kref_put(&hub->kref, hub_release);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004871
Matthias Beyer469271f2013-10-10 23:41:27 +02004872 } /* end while (1) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004873}
4874
4875static int hub_thread(void *__unused)
4876{
Alan Stern3bb1af52008-03-03 15:15:36 -05004877 /* khubd needs to be freezable to avoid intefering with USB-PERSIST
4878 * port handover. Otherwise it might see that a full-speed device
4879 * was gone before the EHCI controller had handed its port over to
4880 * the companion full-speed controller.
4881 */
Rafael J. Wysocki83144182007-07-17 04:03:35 -07004882 set_freezable();
Alan Stern3bb1af52008-03-03 15:15:36 -05004883
Linus Torvalds1da177e2005-04-16 15:20:36 -07004884 do {
4885 hub_events();
Rafael J. Wysockie42837b2007-10-18 03:04:45 -07004886 wait_event_freezable(khubd_wait,
akpm@osdl.org9c8d6172005-06-20 14:29:58 -07004887 !list_empty(&hub_event_list) ||
4888 kthread_should_stop());
akpm@osdl.org9c8d6172005-06-20 14:29:58 -07004889 } while (!kthread_should_stop() || !list_empty(&hub_event_list));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004890
akpm@osdl.org9c8d6172005-06-20 14:29:58 -07004891 pr_debug("%s: khubd exiting\n", usbcore_name);
4892 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004893}
4894
Németh Márton1e927d92010-01-10 15:34:53 +01004895static const struct usb_device_id hub_id_table[] = {
Ming Leie6f30de2012-10-24 11:59:24 +08004896 { .match_flags = USB_DEVICE_ID_MATCH_VENDOR
Matthias Beyer469271f2013-10-10 23:41:27 +02004897 | USB_DEVICE_ID_MATCH_INT_CLASS,
Ming Leie6f30de2012-10-24 11:59:24 +08004898 .idVendor = USB_VENDOR_GENESYS_LOGIC,
4899 .bInterfaceClass = USB_CLASS_HUB,
4900 .driver_info = HUB_QUIRK_CHECK_PORT_AUTOSUSPEND},
Linus Torvalds1da177e2005-04-16 15:20:36 -07004901 { .match_flags = USB_DEVICE_ID_MATCH_DEV_CLASS,
4902 .bDeviceClass = USB_CLASS_HUB},
4903 { .match_flags = USB_DEVICE_ID_MATCH_INT_CLASS,
4904 .bInterfaceClass = USB_CLASS_HUB},
4905 { } /* Terminating entry */
4906};
4907
4908MODULE_DEVICE_TABLE (usb, hub_id_table);
4909
4910static struct usb_driver hub_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004911 .name = "hub",
4912 .probe = hub_probe,
4913 .disconnect = hub_disconnect,
4914 .suspend = hub_suspend,
4915 .resume = hub_resume,
Alan Sternf07600c2007-05-30 15:38:16 -04004916 .reset_resume = hub_reset_resume,
Alan Stern7de18d82006-06-01 13:37:24 -04004917 .pre_reset = hub_pre_reset,
4918 .post_reset = hub_post_reset,
Andi Kleenc532b292010-06-01 23:04:41 +02004919 .unlocked_ioctl = hub_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004920 .id_table = hub_id_table,
Alan Stern40f122f2006-11-09 14:44:33 -05004921 .supports_autosuspend = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004922};
4923
4924int usb_hub_init(void)
4925{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004926 if (usb_register(&hub_driver) < 0) {
4927 printk(KERN_ERR "%s: can't register hub driver\n",
4928 usbcore_name);
4929 return -1;
4930 }
4931
akpm@osdl.org9c8d6172005-06-20 14:29:58 -07004932 khubd_task = kthread_run(hub_thread, NULL, "khubd");
4933 if (!IS_ERR(khubd_task))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004934 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004935
4936 /* Fall through if kernel_thread failed */
4937 usb_deregister(&hub_driver);
4938 printk(KERN_ERR "%s: can't start khubd\n", usbcore_name);
4939
4940 return -1;
4941}
4942
4943void usb_hub_cleanup(void)
4944{
akpm@osdl.org9c8d6172005-06-20 14:29:58 -07004945 kthread_stop(khubd_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004946
4947 /*
4948 * Hub resources are freed for us by usb_deregister. It calls
4949 * usb_driver_purge on every device which in turn calls that
4950 * devices disconnect function if it is using this driver.
4951 * The hub_disconnect function takes care of releasing the
4952 * individual hub resources. -greg
4953 */
4954 usb_deregister(&hub_driver);
4955} /* usb_hub_cleanup() */
4956
Alan Sterneb764c42008-03-03 15:16:04 -05004957static int descriptors_changed(struct usb_device *udev,
Xenia Ragiadakoue3376d62013-08-29 21:45:48 +03004958 struct usb_device_descriptor *old_device_descriptor,
4959 struct usb_host_bos *old_bos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004960{
Alan Sterneb764c42008-03-03 15:16:04 -05004961 int changed = 0;
4962 unsigned index;
4963 unsigned serial_len = 0;
4964 unsigned len;
4965 unsigned old_length;
4966 int length;
4967 char *buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004968
Alan Sterneb764c42008-03-03 15:16:04 -05004969 if (memcmp(&udev->descriptor, old_device_descriptor,
4970 sizeof(*old_device_descriptor)) != 0)
4971 return 1;
4972
Xenia Ragiadakoue3376d62013-08-29 21:45:48 +03004973 if ((old_bos && !udev->bos) || (!old_bos && udev->bos))
4974 return 1;
4975 if (udev->bos) {
Xenia Ragiadakoub9a10482013-08-31 04:40:49 +03004976 len = le16_to_cpu(udev->bos->desc->wTotalLength);
4977 if (len != le16_to_cpu(old_bos->desc->wTotalLength))
Xenia Ragiadakoue3376d62013-08-29 21:45:48 +03004978 return 1;
Xenia Ragiadakoub9a10482013-08-31 04:40:49 +03004979 if (memcmp(udev->bos->desc, old_bos->desc, len))
Xenia Ragiadakoue3376d62013-08-29 21:45:48 +03004980 return 1;
4981 }
4982
Alan Sterneb764c42008-03-03 15:16:04 -05004983 /* Since the idVendor, idProduct, and bcdDevice values in the
4984 * device descriptor haven't changed, we will assume the
4985 * Manufacturer and Product strings haven't changed either.
4986 * But the SerialNumber string could be different (e.g., a
4987 * different flash card of the same brand).
4988 */
4989 if (udev->serial)
4990 serial_len = strlen(udev->serial) + 1;
4991
4992 len = serial_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004993 for (index = 0; index < udev->descriptor.bNumConfigurations; index++) {
Alan Sterneb764c42008-03-03 15:16:04 -05004994 old_length = le16_to_cpu(udev->config[index].desc.wTotalLength);
4995 len = max(len, old_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004996 }
Alan Sterneb764c42008-03-03 15:16:04 -05004997
Oliver Neukum0cc1a512008-01-10 10:31:48 +01004998 buf = kmalloc(len, GFP_NOIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004999 if (buf == NULL) {
5000 dev_err(&udev->dev, "no mem to re-read configs after reset\n");
5001 /* assume the worst */
5002 return 1;
5003 }
5004 for (index = 0; index < udev->descriptor.bNumConfigurations; index++) {
Alan Sterneb764c42008-03-03 15:16:04 -05005005 old_length = le16_to_cpu(udev->config[index].desc.wTotalLength);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005006 length = usb_get_descriptor(udev, USB_DT_CONFIG, index, buf,
5007 old_length);
Alan Sterneb764c42008-03-03 15:16:04 -05005008 if (length != old_length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005009 dev_dbg(&udev->dev, "config index %d, error %d\n",
5010 index, length);
Alan Sterneb764c42008-03-03 15:16:04 -05005011 changed = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005012 break;
5013 }
5014 if (memcmp (buf, udev->rawdescriptors[index], old_length)
5015 != 0) {
5016 dev_dbg(&udev->dev, "config index %d changed (#%d)\n",
Alan Sterneb764c42008-03-03 15:16:04 -05005017 index,
5018 ((struct usb_config_descriptor *) buf)->
5019 bConfigurationValue);
5020 changed = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005021 break;
5022 }
5023 }
Alan Sterneb764c42008-03-03 15:16:04 -05005024
5025 if (!changed && serial_len) {
5026 length = usb_string(udev, udev->descriptor.iSerialNumber,
5027 buf, serial_len);
5028 if (length + 1 != serial_len) {
5029 dev_dbg(&udev->dev, "serial string error %d\n",
5030 length);
5031 changed = 1;
5032 } else if (memcmp(buf, udev->serial, length) != 0) {
5033 dev_dbg(&udev->dev, "serial string changed\n");
5034 changed = 1;
5035 }
5036 }
5037
Linus Torvalds1da177e2005-04-16 15:20:36 -07005038 kfree(buf);
Alan Sterneb764c42008-03-03 15:16:04 -05005039 return changed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005040}
5041
5042/**
Ming Lei742120c2008-06-18 22:00:29 +08005043 * usb_reset_and_verify_device - perform a USB port reset to reinitialize a device
Linus Torvalds1da177e2005-04-16 15:20:36 -07005044 * @udev: device to reset (not in SUSPENDED or NOTATTACHED state)
5045 *
Alan Stern79efa092006-06-01 13:33:42 -04005046 * WARNING - don't use this routine to reset a composite device
5047 * (one with multiple interfaces owned by separate drivers)!
Ming Lei742120c2008-06-18 22:00:29 +08005048 * Use usb_reset_device() instead.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005049 *
5050 * Do a port reset, reassign the device's address, and establish its
5051 * former operating configuration. If the reset fails, or the device's
5052 * descriptors change from their values before the reset, or the original
5053 * configuration and altsettings cannot be restored, a flag will be set
5054 * telling khubd to pretend the device has been disconnected and then
5055 * re-connected. All drivers will be unbound, and the device will be
5056 * re-enumerated and probed all over again.
5057 *
Yacine Belkadi626f0902013-08-02 20:10:04 +02005058 * Return: 0 if the reset succeeded, -ENODEV if the device has been
Linus Torvalds1da177e2005-04-16 15:20:36 -07005059 * flagged for logical disconnection, or some other negative error code
5060 * if the reset wasn't even attempted.
5061 *
Yacine Belkadi626f0902013-08-02 20:10:04 +02005062 * Note:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005063 * The caller must own the device lock. For example, it's safe to use
5064 * this from a driver probe() routine after downloading new firmware.
5065 * For calls that might not occur during probe(), drivers should lock
5066 * the device using usb_lock_device_for_reset().
Alan Stern6bc6cff2007-05-04 11:53:03 -04005067 *
5068 * Locking exception: This routine may also be called from within an
5069 * autoresume handler. Such usage won't conflict with other tasks
5070 * holding the device lock because these tasks should always call
5071 * usb_autopm_resume_device(), thereby preventing any unwanted autoresume.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005072 */
Ming Lei742120c2008-06-18 22:00:29 +08005073static int usb_reset_and_verify_device(struct usb_device *udev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005074{
5075 struct usb_device *parent_hdev = udev->parent;
5076 struct usb_hub *parent_hub;
Sarah Sharp3f0479e2009-12-03 09:44:36 -08005077 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005078 struct usb_device_descriptor descriptor = udev->descriptor;
Xenia Ragiadakoue3376d62013-08-29 21:45:48 +03005079 struct usb_host_bos *bos;
Alan Stern12c3da32005-11-23 12:09:52 -05005080 int i, ret = 0;
5081 int port1 = udev->portnum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005082
5083 if (udev->state == USB_STATE_NOTATTACHED ||
5084 udev->state == USB_STATE_SUSPENDED) {
5085 dev_dbg(&udev->dev, "device reset not allowed in state %d\n",
5086 udev->state);
5087 return -EINVAL;
5088 }
5089
5090 if (!parent_hdev) {
Wolfram Sang4bec9912010-08-29 18:17:14 +02005091 /* this requires hcd-specific logic; see ohci_restart() */
Harvey Harrison441b62c2008-03-03 16:08:34 -08005092 dev_dbg(&udev->dev, "%s for root hub!\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005093 return -EISDIR;
5094 }
Lan Tianyuad493e52013-01-23 04:26:30 +08005095 parent_hub = usb_hub_to_struct_hub(parent_hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005096
Sarah Sharpdcc01c02013-09-30 17:26:29 +03005097 /* Disable USB2 hardware LPM.
5098 * It will be re-enabled by the enumeration process.
5099 */
5100 if (udev->usb2_hw_lpm_enabled == 1)
5101 usb_set_usb2_hardware_lpm(udev, 0);
5102
Xenia Ragiadakoue3376d62013-08-29 21:45:48 +03005103 bos = udev->bos;
5104 udev->bos = NULL;
5105
Sarah Sharpf74631e2012-06-25 12:08:08 -07005106 /* Disable LPM and LTM while we reset the device and reinstall the alt
5107 * settings. Device-initiated LPM settings, and system exit latency
5108 * settings are cleared when the device is reset, so we have to set
5109 * them up again.
Sarah Sharp6d1d0512012-07-03 22:49:04 -07005110 */
5111 ret = usb_unlocked_disable_lpm(udev);
5112 if (ret) {
5113 dev_err(&udev->dev, "%s Failed to disable LPM\n.", __func__);
5114 goto re_enumerate;
5115 }
Sarah Sharpf74631e2012-06-25 12:08:08 -07005116 ret = usb_disable_ltm(udev);
5117 if (ret) {
5118 dev_err(&udev->dev, "%s Failed to disable LTM\n.",
5119 __func__);
5120 goto re_enumerate;
5121 }
Sarah Sharp6d1d0512012-07-03 22:49:04 -07005122
Linus Torvalds1da177e2005-04-16 15:20:36 -07005123 set_bit(port1, parent_hub->busy_bits);
5124 for (i = 0; i < SET_CONFIG_TRIES; ++i) {
5125
5126 /* ep0 maxpacket size may change; let the HCD know about it.
5127 * Other endpoints will be handled by re-enumeration. */
Inaky Perez-Gonzalezfc721f52008-04-08 13:24:46 -07005128 usb_ep0_reinit(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005129 ret = hub_port_init(parent_hub, udev, port1, i);
Alan Sterndd4dd192007-05-04 11:55:54 -04005130 if (ret >= 0 || ret == -ENOTCONN || ret == -ENODEV)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005131 break;
5132 }
5133 clear_bit(port1, parent_hub->busy_bits);
Alan Sternd5cbad42006-08-11 16:52:39 -04005134
Linus Torvalds1da177e2005-04-16 15:20:36 -07005135 if (ret < 0)
5136 goto re_enumerate;
Matthias Beyer469271f2013-10-10 23:41:27 +02005137
Linus Torvalds1da177e2005-04-16 15:20:36 -07005138 /* Device might have changed firmware (DFU or similar) */
Xenia Ragiadakoue3376d62013-08-29 21:45:48 +03005139 if (descriptors_changed(udev, &descriptor, bos)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005140 dev_info(&udev->dev, "device firmware changed\n");
5141 udev->descriptor = descriptor; /* for disconnect() calls */
5142 goto re_enumerate;
Matthias Beyer469271f2013-10-10 23:41:27 +02005143 }
Alan Stern4fe03872009-02-26 10:21:02 -05005144
5145 /* Restore the device's previous configuration */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005146 if (!udev->actconfig)
5147 goto done;
Sarah Sharp3f0479e2009-12-03 09:44:36 -08005148
Sarah Sharpd673bfc2010-10-15 08:55:24 -07005149 mutex_lock(hcd->bandwidth_mutex);
Sarah Sharp3f0479e2009-12-03 09:44:36 -08005150 ret = usb_hcd_alloc_bandwidth(udev, udev->actconfig, NULL, NULL);
5151 if (ret < 0) {
5152 dev_warn(&udev->dev,
5153 "Busted HC? Not enough HCD resources for "
5154 "old configuration.\n");
Sarah Sharpd673bfc2010-10-15 08:55:24 -07005155 mutex_unlock(hcd->bandwidth_mutex);
Sarah Sharp3f0479e2009-12-03 09:44:36 -08005156 goto re_enumerate;
5157 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005158 ret = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
5159 USB_REQ_SET_CONFIGURATION, 0,
5160 udev->actconfig->desc.bConfigurationValue, 0,
5161 NULL, 0, USB_CTRL_SET_TIMEOUT);
5162 if (ret < 0) {
5163 dev_err(&udev->dev,
5164 "can't restore configuration #%d (error=%d)\n",
5165 udev->actconfig->desc.bConfigurationValue, ret);
Sarah Sharpd673bfc2010-10-15 08:55:24 -07005166 mutex_unlock(hcd->bandwidth_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005167 goto re_enumerate;
Matthias Beyer469271f2013-10-10 23:41:27 +02005168 }
Sarah Sharpd673bfc2010-10-15 08:55:24 -07005169 mutex_unlock(hcd->bandwidth_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005170 usb_set_device_state(udev, USB_STATE_CONFIGURED);
5171
Alan Stern4fe03872009-02-26 10:21:02 -05005172 /* Put interfaces back into the same altsettings as before.
5173 * Don't bother to send the Set-Interface request for interfaces
5174 * that were already in altsetting 0; besides being unnecessary,
5175 * many devices can't handle it. Instead just reset the host-side
5176 * endpoint state.
5177 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005178 for (i = 0; i < udev->actconfig->desc.bNumInterfaces; i++) {
Sarah Sharp3f0479e2009-12-03 09:44:36 -08005179 struct usb_host_config *config = udev->actconfig;
5180 struct usb_interface *intf = config->interface[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07005181 struct usb_interface_descriptor *desc;
5182
Linus Torvalds1da177e2005-04-16 15:20:36 -07005183 desc = &intf->cur_altsetting->desc;
Alan Stern4fe03872009-02-26 10:21:02 -05005184 if (desc->bAlternateSetting == 0) {
5185 usb_disable_interface(udev, intf, true);
5186 usb_enable_interface(udev, intf, true);
5187 ret = 0;
5188 } else {
Sarah Sharp04a723e2010-01-06 10:16:51 -08005189 /* Let the bandwidth allocation function know that this
5190 * device has been reset, and it will have to use
5191 * alternate setting 0 as the current alternate setting.
Sarah Sharp3f0479e2009-12-03 09:44:36 -08005192 */
Sarah Sharp04a723e2010-01-06 10:16:51 -08005193 intf->resetting_device = 1;
Alan Stern4fe03872009-02-26 10:21:02 -05005194 ret = usb_set_interface(udev, desc->bInterfaceNumber,
5195 desc->bAlternateSetting);
Sarah Sharp04a723e2010-01-06 10:16:51 -08005196 intf->resetting_device = 0;
Alan Stern4fe03872009-02-26 10:21:02 -05005197 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005198 if (ret < 0) {
5199 dev_err(&udev->dev, "failed to restore interface %d "
5200 "altsetting %d (error=%d)\n",
5201 desc->bInterfaceNumber,
5202 desc->bAlternateSetting,
5203 ret);
5204 goto re_enumerate;
5205 }
5206 }
5207
5208done:
Sarah Sharpf74631e2012-06-25 12:08:08 -07005209 /* Now that the alt settings are re-installed, enable LTM and LPM. */
Sarah Sharpde68bab2013-09-30 17:26:28 +03005210 usb_set_usb2_hardware_lpm(udev, 1);
Alan Stern78d9a482008-06-23 16:00:40 -04005211 usb_unlocked_enable_lpm(udev);
Sarah Sharpf74631e2012-06-25 12:08:08 -07005212 usb_enable_ltm(udev);
Xenia Ragiadakoue3376d62013-08-29 21:45:48 +03005213 usb_release_bos_descriptor(udev);
5214 udev->bos = bos;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005215 return 0;
Matthias Beyer469271f2013-10-10 23:41:27 +02005216
Linus Torvalds1da177e2005-04-16 15:20:36 -07005217re_enumerate:
Sarah Sharp6d1d0512012-07-03 22:49:04 -07005218 /* LPM state doesn't matter when we're about to destroy the device. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005219 hub_port_logical_disconnect(parent_hub, port1);
Xenia Ragiadakoue3376d62013-08-29 21:45:48 +03005220 usb_release_bos_descriptor(udev);
5221 udev->bos = bos;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005222 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005223}
5224
5225/**
5226 * usb_reset_device - warn interface drivers and perform a USB port reset
5227 * @udev: device to reset (not in SUSPENDED or NOTATTACHED state)
5228 *
Alan Stern79efa092006-06-01 13:33:42 -04005229 * Warns all drivers bound to registered interfaces (using their pre_reset
5230 * method), performs the port reset, and then lets the drivers know that
Ming Lei742120c2008-06-18 22:00:29 +08005231 * the reset is over (using their post_reset method).
Alan Stern79efa092006-06-01 13:33:42 -04005232 *
Yacine Belkadi626f0902013-08-02 20:10:04 +02005233 * Return: The same as for usb_reset_and_verify_device().
Alan Stern79efa092006-06-01 13:33:42 -04005234 *
Yacine Belkadi626f0902013-08-02 20:10:04 +02005235 * Note:
Alan Stern79efa092006-06-01 13:33:42 -04005236 * The caller must own the device lock. For example, it's safe to use
5237 * this from a driver probe() routine after downloading new firmware.
5238 * For calls that might not occur during probe(), drivers should lock
Ming Lei742120c2008-06-18 22:00:29 +08005239 * the device using usb_lock_device_for_reset().
Alan Stern79efa092006-06-01 13:33:42 -04005240 *
5241 * If an interface is currently being probed or disconnected, we assume
5242 * its driver knows how to handle resets. For all other interfaces,
5243 * if the driver doesn't have pre_reset and post_reset methods then
5244 * we attempt to unbind it and rebind afterward.
Alan Stern79efa092006-06-01 13:33:42 -04005245 */
Ming Lei742120c2008-06-18 22:00:29 +08005246int usb_reset_device(struct usb_device *udev)
Alan Stern79efa092006-06-01 13:33:42 -04005247{
5248 int ret;
Alan Stern852c4b42007-12-03 15:44:29 -05005249 int i;
Ming Lei4d769de2013-02-22 16:34:22 -08005250 unsigned int noio_flag;
Alan Stern79efa092006-06-01 13:33:42 -04005251 struct usb_host_config *config = udev->actconfig;
5252
5253 if (udev->state == USB_STATE_NOTATTACHED ||
5254 udev->state == USB_STATE_SUSPENDED) {
5255 dev_dbg(&udev->dev, "device reset not allowed in state %d\n",
5256 udev->state);
5257 return -EINVAL;
5258 }
5259
Ming Lei4d769de2013-02-22 16:34:22 -08005260 /*
5261 * Don't allocate memory with GFP_KERNEL in current
5262 * context to avoid possible deadlock if usb mass
5263 * storage interface or usbnet interface(iSCSI case)
5264 * is included in current configuration. The easist
5265 * approach is to do it for every device reset,
5266 * because the device 'memalloc_noio' flag may have
5267 * not been set before reseting the usb device.
5268 */
5269 noio_flag = memalloc_noio_save();
5270
Alan Stern645daaa2006-08-30 15:47:02 -04005271 /* Prevent autosuspend during the reset */
Alan Stern94fcda12006-11-20 11:38:46 -05005272 usb_autoresume_device(udev);
Alan Stern645daaa2006-08-30 15:47:02 -04005273
Alan Stern79efa092006-06-01 13:33:42 -04005274 if (config) {
Alan Stern79efa092006-06-01 13:33:42 -04005275 for (i = 0; i < config->desc.bNumInterfaces; ++i) {
Alan Stern852c4b42007-12-03 15:44:29 -05005276 struct usb_interface *cintf = config->interface[i];
5277 struct usb_driver *drv;
Alan Stern78d9a482008-06-23 16:00:40 -04005278 int unbind = 0;
Alan Stern852c4b42007-12-03 15:44:29 -05005279
5280 if (cintf->dev.driver) {
Alan Stern79efa092006-06-01 13:33:42 -04005281 drv = to_usb_driver(cintf->dev.driver);
Alan Stern78d9a482008-06-23 16:00:40 -04005282 if (drv->pre_reset && drv->post_reset)
5283 unbind = (drv->pre_reset)(cintf);
5284 else if (cintf->condition ==
5285 USB_INTERFACE_BOUND)
5286 unbind = 1;
5287 if (unbind)
5288 usb_forced_unbind_intf(cintf);
Alan Stern79efa092006-06-01 13:33:42 -04005289 }
5290 }
5291 }
5292
Ming Lei742120c2008-06-18 22:00:29 +08005293 ret = usb_reset_and_verify_device(udev);
Alan Stern79efa092006-06-01 13:33:42 -04005294
5295 if (config) {
Alan Stern79efa092006-06-01 13:33:42 -04005296 for (i = config->desc.bNumInterfaces - 1; i >= 0; --i) {
Alan Stern852c4b42007-12-03 15:44:29 -05005297 struct usb_interface *cintf = config->interface[i];
5298 struct usb_driver *drv;
Alan Stern78d9a482008-06-23 16:00:40 -04005299 int rebind = cintf->needs_binding;
Alan Stern852c4b42007-12-03 15:44:29 -05005300
Alan Stern78d9a482008-06-23 16:00:40 -04005301 if (!rebind && cintf->dev.driver) {
Alan Stern79efa092006-06-01 13:33:42 -04005302 drv = to_usb_driver(cintf->dev.driver);
5303 if (drv->post_reset)
Alan Stern78d9a482008-06-23 16:00:40 -04005304 rebind = (drv->post_reset)(cintf);
5305 else if (cintf->condition ==
5306 USB_INTERFACE_BOUND)
5307 rebind = 1;
Alan Stern79efa092006-06-01 13:33:42 -04005308 }
Alan Stern6c640942008-10-21 15:40:03 -04005309 if (ret == 0 && rebind)
Alan Stern78d9a482008-06-23 16:00:40 -04005310 usb_rebind_intf(cintf);
Alan Stern79efa092006-06-01 13:33:42 -04005311 }
5312 }
5313
Alan Stern94fcda12006-11-20 11:38:46 -05005314 usb_autosuspend_device(udev);
Ming Lei4d769de2013-02-22 16:34:22 -08005315 memalloc_noio_restore(noio_flag);
Alan Stern79efa092006-06-01 13:33:42 -04005316 return ret;
5317}
Ming Lei742120c2008-06-18 22:00:29 +08005318EXPORT_SYMBOL_GPL(usb_reset_device);
Inaky Perez-Gonzalezdc023dc2008-11-13 10:31:35 -08005319
5320
5321/**
5322 * usb_queue_reset_device - Reset a USB device from an atomic context
5323 * @iface: USB interface belonging to the device to reset
5324 *
5325 * This function can be used to reset a USB device from an atomic
5326 * context, where usb_reset_device() won't work (as it blocks).
5327 *
5328 * Doing a reset via this method is functionally equivalent to calling
5329 * usb_reset_device(), except for the fact that it is delayed to a
5330 * workqueue. This means that any drivers bound to other interfaces
5331 * might be unbound, as well as users from usbfs in user space.
5332 *
5333 * Corner cases:
5334 *
5335 * - Scheduling two resets at the same time from two different drivers
5336 * attached to two different interfaces of the same device is
5337 * possible; depending on how the driver attached to each interface
5338 * handles ->pre_reset(), the second reset might happen or not.
5339 *
5340 * - If a driver is unbound and it had a pending reset, the reset will
5341 * be cancelled.
5342 *
5343 * - This function can be called during .probe() or .disconnect()
5344 * times. On return from .disconnect(), any pending resets will be
5345 * cancelled.
5346 *
5347 * There is no no need to lock/unlock the @reset_ws as schedule_work()
5348 * does its own.
5349 *
5350 * NOTE: We don't do any reference count tracking because it is not
5351 * needed. The lifecycle of the work_struct is tied to the
5352 * usb_interface. Before destroying the interface we cancel the
5353 * work_struct, so the fact that work_struct is queued and or
5354 * running means the interface (and thus, the device) exist and
5355 * are referenced.
5356 */
5357void usb_queue_reset_device(struct usb_interface *iface)
5358{
5359 schedule_work(&iface->reset_ws);
5360}
5361EXPORT_SYMBOL_GPL(usb_queue_reset_device);
Lan Tianyuff823c792012-09-05 13:44:32 +08005362
5363/**
5364 * usb_hub_find_child - Get the pointer of child device
5365 * attached to the port which is specified by @port1.
5366 * @hdev: USB device belonging to the usb hub
5367 * @port1: port num to indicate which port the child device
5368 * is attached to.
5369 *
5370 * USB drivers call this function to get hub's child device
5371 * pointer.
5372 *
Yacine Belkadi626f0902013-08-02 20:10:04 +02005373 * Return: %NULL if input param is invalid and
Lan Tianyuff823c792012-09-05 13:44:32 +08005374 * child's usb_device pointer if non-NULL.
5375 */
5376struct usb_device *usb_hub_find_child(struct usb_device *hdev,
5377 int port1)
5378{
Lan Tianyuad493e52013-01-23 04:26:30 +08005379 struct usb_hub *hub = usb_hub_to_struct_hub(hdev);
Lan Tianyuff823c792012-09-05 13:44:32 +08005380
5381 if (port1 < 1 || port1 > hdev->maxchild)
5382 return NULL;
5383 return hub->ports[port1 - 1]->child;
5384}
5385EXPORT_SYMBOL_GPL(usb_hub_find_child);
Lan Tianyud5575422012-09-05 13:44:33 +08005386
Lan Tianyu05f91682012-09-05 13:44:34 +08005387/**
5388 * usb_set_hub_port_connect_type - set hub port connect type.
5389 * @hdev: USB device belonging to the usb hub
5390 * @port1: port num of the port
5391 * @type: connect type of the port
5392 */
5393void usb_set_hub_port_connect_type(struct usb_device *hdev, int port1,
5394 enum usb_port_connect_type type)
5395{
Lan Tianyuad493e52013-01-23 04:26:30 +08005396 struct usb_hub *hub = usb_hub_to_struct_hub(hdev);
Lan Tianyu05f91682012-09-05 13:44:34 +08005397
Mathias Nyman413412612013-06-18 17:28:48 +03005398 if (hub)
5399 hub->ports[port1 - 1]->connect_type = type;
Lan Tianyu05f91682012-09-05 13:44:34 +08005400}
5401
5402/**
5403 * usb_get_hub_port_connect_type - Get the port's connect type
5404 * @hdev: USB device belonging to the usb hub
5405 * @port1: port num of the port
5406 *
Yacine Belkadi626f0902013-08-02 20:10:04 +02005407 * Return: The connect type of the port if successful. Or
5408 * USB_PORT_CONNECT_TYPE_UNKNOWN if input params are invalid.
Lan Tianyu05f91682012-09-05 13:44:34 +08005409 */
5410enum usb_port_connect_type
5411usb_get_hub_port_connect_type(struct usb_device *hdev, int port1)
5412{
Lan Tianyuad493e52013-01-23 04:26:30 +08005413 struct usb_hub *hub = usb_hub_to_struct_hub(hdev);
Lan Tianyu05f91682012-09-05 13:44:34 +08005414
Mathias Nyman413412612013-06-18 17:28:48 +03005415 if (!hub)
5416 return USB_PORT_CONNECT_TYPE_UNKNOWN;
5417
Lan Tianyu05f91682012-09-05 13:44:34 +08005418 return hub->ports[port1 - 1]->connect_type;
5419}
5420
Lan Tianyud2123fd2013-01-21 22:18:00 +08005421void usb_hub_adjust_deviceremovable(struct usb_device *hdev,
5422 struct usb_hub_descriptor *desc)
5423{
5424 enum usb_port_connect_type connect_type;
5425 int i;
5426
5427 if (!hub_is_superspeed(hdev)) {
5428 for (i = 1; i <= hdev->maxchild; i++) {
5429 connect_type = usb_get_hub_port_connect_type(hdev, i);
5430
5431 if (connect_type == USB_PORT_CONNECT_TYPE_HARD_WIRED) {
5432 u8 mask = 1 << (i%8);
5433
5434 if (!(desc->u.hs.DeviceRemovable[i/8] & mask)) {
5435 dev_dbg(&hdev->dev, "usb port%d's DeviceRemovable is changed to 1 according to platform information.\n",
5436 i);
5437 desc->u.hs.DeviceRemovable[i/8] |= mask;
5438 }
5439 }
5440 }
5441 } else {
5442 u16 port_removable = le16_to_cpu(desc->u.ss.DeviceRemovable);
5443
5444 for (i = 1; i <= hdev->maxchild; i++) {
5445 connect_type = usb_get_hub_port_connect_type(hdev, i);
5446
5447 if (connect_type == USB_PORT_CONNECT_TYPE_HARD_WIRED) {
5448 u16 mask = 1 << i;
5449
5450 if (!(port_removable & mask)) {
5451 dev_dbg(&hdev->dev, "usb port%d's DeviceRemovable is changed to 1 according to platform information.\n",
5452 i);
5453 port_removable |= mask;
5454 }
5455 }
5456 }
5457
5458 desc->u.ss.DeviceRemovable = cpu_to_le16(port_removable);
5459 }
5460}
5461
Lan Tianyud5575422012-09-05 13:44:33 +08005462#ifdef CONFIG_ACPI
5463/**
5464 * usb_get_hub_port_acpi_handle - Get the usb port's acpi handle
5465 * @hdev: USB device belonging to the usb hub
5466 * @port1: port num of the port
5467 *
Yacine Belkadi626f0902013-08-02 20:10:04 +02005468 * Return: Port's acpi handle if successful, %NULL if params are
5469 * invalid.
Lan Tianyud5575422012-09-05 13:44:33 +08005470 */
5471acpi_handle usb_get_hub_port_acpi_handle(struct usb_device *hdev,
5472 int port1)
5473{
Lan Tianyuad493e52013-01-23 04:26:30 +08005474 struct usb_hub *hub = usb_hub_to_struct_hub(hdev);
Lan Tianyud5575422012-09-05 13:44:33 +08005475
Mathias Nyman413412612013-06-18 17:28:48 +03005476 if (!hub)
5477 return NULL;
5478
Rafael J. Wysocki3a83f992013-11-14 23:17:21 +01005479 return ACPI_HANDLE(&hub->ports[port1 - 1]->dev);
Lan Tianyud5575422012-09-05 13:44:33 +08005480}
5481#endif