blob: 5a909ba6fb676f8784cc65a94f9bf400d1057d25 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * USB hub driver.
3 *
4 * (C) Copyright 1999 Linus Torvalds
5 * (C) Copyright 1999 Johannes Erdfelt
6 * (C) Copyright 1999 Gregory P. Smith
7 * (C) Copyright 2001 Brad Hards (bhards@bigpond.net.au)
8 *
9 */
10
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/kernel.h>
12#include <linux/errno.h>
13#include <linux/module.h>
14#include <linux/moduleparam.h>
15#include <linux/completion.h>
16#include <linux/sched.h>
17#include <linux/list.h>
18#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/ioctl.h>
20#include <linux/usb.h>
21#include <linux/usbdevice_fs.h>
Eric Lescouet27729aa2010-04-24 23:21:52 +020022#include <linux/usb/hcd.h>
Richard Zhao925aa462012-07-11 11:09:28 +080023#include <linux/usb/otg.h>
Phil Dibowitz93362a82010-07-22 00:05:01 +020024#include <linux/usb/quirks.h>
akpm@osdl.org9c8d6172005-06-20 14:29:58 -070025#include <linux/kthread.h>
Arjan van de Ven4186ecf2006-01-11 15:55:29 +010026#include <linux/mutex.h>
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080027#include <linux/freezer.h>
Theodore Ts'ob04b3152012-07-04 11:22:20 -040028#include <linux/random.h>
Lan Tianyuad493e52013-01-23 04:26:30 +080029#include <linux/pm_qos.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <asm/uaccess.h>
32#include <asm/byteorder.h>
33
Lan Tianyu6e30d7c2013-01-11 20:10:38 +080034#include "hub.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
Ming Leie6f30de2012-10-24 11:59:24 +080036#define USB_VENDOR_GENESYS_LOGIC 0x05e3
37#define HUB_QUIRK_CHECK_PORT_AUTOSUSPEND 0x01
38
John Youndbe79bb2001-09-17 00:00:00 -070039static inline int hub_is_superspeed(struct usb_device *hdev)
40{
Aman Deep7bf01182011-12-08 12:05:22 +053041 return (hdev->descriptor.bDeviceProtocol == USB_HUB_PR_SS);
John Youndbe79bb2001-09-17 00:00:00 -070042}
Alan Stern1bb5f662006-11-06 11:56:13 -050043
Greg Kroah-Hartmanfa286182012-05-14 09:20:37 -070044/* Protect struct usb_device->state and ->children members
Alan Stern9ad3d6c2005-11-17 17:10:32 -050045 * Note: Both are also protected by ->dev.sem, except that ->state can
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 * change to USB_STATE_NOTATTACHED even when the semaphore isn't held. */
47static DEFINE_SPINLOCK(device_state_lock);
48
49/* khubd's worklist and its lock */
50static DEFINE_SPINLOCK(hub_event_lock);
51static LIST_HEAD(hub_event_list); /* List of hubs needing servicing */
52
53/* Wakes up khubd */
54static DECLARE_WAIT_QUEUE_HEAD(khubd_wait);
55
akpm@osdl.org9c8d6172005-06-20 14:29:58 -070056static struct task_struct *khubd_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
Dan Williamsd8521af2014-05-20 18:08:28 -070058/* synchronize hub-port add/remove and peering operations */
59DEFINE_MUTEX(usb_port_peer_mutex);
60
Linus Torvalds1da177e2005-04-16 15:20:36 -070061/* cycle leds on hubs that aren't blinking for attention */
Rusty Russell90ab5ee2012-01-13 09:32:20 +103062static bool blinkenlights = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070063module_param (blinkenlights, bool, S_IRUGO);
64MODULE_PARM_DESC (blinkenlights, "true to cycle leds on hubs");
65
66/*
Jaroslav Kyselafd7c5192008-10-10 16:24:45 +020067 * Device SATA8000 FW1.0 from DATAST0R Technology Corp requires about
68 * 10 seconds to send reply for the initial 64-byte descriptor request.
69 */
70/* define initial 64-byte descriptor request timeout in milliseconds */
71static int initial_descriptor_timeout = USB_CTRL_GET_TIMEOUT;
72module_param(initial_descriptor_timeout, int, S_IRUGO|S_IWUSR);
Wu Fengguangb9cef6c2008-12-15 15:32:01 +080073MODULE_PARM_DESC(initial_descriptor_timeout,
74 "initial 64-byte descriptor request timeout in milliseconds "
75 "(default 5000 - 5.0 seconds)");
Jaroslav Kyselafd7c5192008-10-10 16:24:45 +020076
77/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 * As of 2.6.10 we introduce a new USB device initialization scheme which
79 * closely resembles the way Windows works. Hopefully it will be compatible
80 * with a wider range of devices than the old scheme. However some previously
81 * working devices may start giving rise to "device not accepting address"
82 * errors; if that happens the user can try the old scheme by adjusting the
83 * following module parameters.
84 *
85 * For maximum flexibility there are two boolean parameters to control the
86 * hub driver's behavior. On the first initialization attempt, if the
87 * "old_scheme_first" parameter is set then the old scheme will be used,
88 * otherwise the new scheme is used. If that fails and "use_both_schemes"
89 * is set, then the driver will make another attempt, using the other scheme.
90 */
Rusty Russell90ab5ee2012-01-13 09:32:20 +103091static bool old_scheme_first = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070092module_param(old_scheme_first, bool, S_IRUGO | S_IWUSR);
93MODULE_PARM_DESC(old_scheme_first,
94 "start with the old device initialization scheme");
95
Rusty Russell90ab5ee2012-01-13 09:32:20 +103096static bool use_both_schemes = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070097module_param(use_both_schemes, bool, S_IRUGO | S_IWUSR);
98MODULE_PARM_DESC(use_both_schemes,
99 "try the other device initialization scheme if the "
100 "first one fails");
101
Alan Stern32fe0192007-10-10 16:27:07 -0400102/* Mutual exclusion for EHCI CF initialization. This interferes with
103 * port reset on some companion controllers.
104 */
105DECLARE_RWSEM(ehci_cf_port_reset_rwsem);
106EXPORT_SYMBOL_GPL(ehci_cf_port_reset_rwsem);
107
Lan Tianyuad493e52013-01-23 04:26:30 +0800108#define HUB_DEBOUNCE_TIMEOUT 2000
Alan Stern948fea32008-04-28 11:07:07 -0400109#define HUB_DEBOUNCE_STEP 25
110#define HUB_DEBOUNCE_STABLE 100
111
Ming Lei742120c2008-06-18 22:00:29 +0800112static int usb_reset_and_verify_device(struct usb_device *udev);
113
Sarah Sharp131dec32010-12-06 21:00:19 -0800114static inline char *portspeed(struct usb_hub *hub, int portstatus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115{
Sarah Sharp131dec32010-12-06 21:00:19 -0800116 if (hub_is_superspeed(hub->hdev))
117 return "5.0 Gb/s";
Alan Stern288ead42010-03-04 11:32:30 -0500118 if (portstatus & USB_PORT_STAT_HIGH_SPEED)
Matthias Beyer469271f2013-10-10 23:41:27 +0200119 return "480 Mb/s";
Alan Stern288ead42010-03-04 11:32:30 -0500120 else if (portstatus & USB_PORT_STAT_LOW_SPEED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 return "1.5 Mb/s";
122 else
123 return "12 Mb/s";
124}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
126/* Note that hdev or one of its children must be locked! */
Lan Tianyuad493e52013-01-23 04:26:30 +0800127struct usb_hub *usb_hub_to_struct_hub(struct usb_device *hdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128{
Lan Tianyuff823c792012-09-05 13:44:32 +0800129 if (!hdev || !hdev->actconfig || !hdev->maxchild)
Alan Stern251180842009-07-22 14:41:18 -0400130 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 return usb_get_intfdata(hdev->actconfig->interface[0]);
132}
133
Sarah Sharp140e3022014-01-22 13:35:02 -0800134static int usb_device_supports_lpm(struct usb_device *udev)
Sarah Sharpd9b20992012-02-20 08:31:26 -0800135{
136 /* USB 2.1 (and greater) devices indicate LPM support through
137 * their USB 2.0 Extended Capabilities BOS descriptor.
138 */
139 if (udev->speed == USB_SPEED_HIGH) {
140 if (udev->bos->ext_cap &&
141 (USB_LPM_SUPPORT &
142 le32_to_cpu(udev->bos->ext_cap->bmAttributes)))
143 return 1;
144 return 0;
145 }
Sarah Sharp51e0a012012-02-20 12:02:19 -0800146
Sarah Sharp25cd2882014-01-17 14:15:44 -0800147 /*
148 * According to the USB 3.0 spec, all USB 3.0 devices must support LPM.
149 * However, there are some that don't, and they set the U1/U2 exit
150 * latencies to zero.
Sarah Sharp51e0a012012-02-20 12:02:19 -0800151 */
152 if (!udev->bos->ss_cap) {
Sarah Sharp25cd2882014-01-17 14:15:44 -0800153 dev_info(&udev->dev, "No LPM exit latency info found, disabling LPM.\n");
Sarah Sharp51e0a012012-02-20 12:02:19 -0800154 return 0;
155 }
Sarah Sharp51e0a012012-02-20 12:02:19 -0800156
Sarah Sharp25cd2882014-01-17 14:15:44 -0800157 if (udev->bos->ss_cap->bU1devExitLat == 0 &&
158 udev->bos->ss_cap->bU2DevExitLat == 0) {
159 if (udev->parent)
160 dev_info(&udev->dev, "LPM exit latency is zeroed, disabling LPM.\n");
161 else
162 dev_info(&udev->dev, "We don't know the algorithms for LPM for this host, disabling LPM.\n");
163 return 0;
164 }
165
166 if (!udev->parent || udev->parent->lpm_capable)
167 return 1;
Sarah Sharpd9b20992012-02-20 08:31:26 -0800168 return 0;
169}
170
Sarah Sharp51e0a012012-02-20 12:02:19 -0800171/*
172 * Set the Maximum Exit Latency (MEL) for the host to initiate a transition from
173 * either U1 or U2.
174 */
175static void usb_set_lpm_mel(struct usb_device *udev,
176 struct usb3_lpm_parameters *udev_lpm_params,
177 unsigned int udev_exit_latency,
178 struct usb_hub *hub,
179 struct usb3_lpm_parameters *hub_lpm_params,
180 unsigned int hub_exit_latency)
181{
182 unsigned int total_mel;
183 unsigned int device_mel;
184 unsigned int hub_mel;
185
186 /*
187 * Calculate the time it takes to transition all links from the roothub
188 * to the parent hub into U0. The parent hub must then decode the
189 * packet (hub header decode latency) to figure out which port it was
190 * bound for.
191 *
192 * The Hub Header decode latency is expressed in 0.1us intervals (0x1
193 * means 0.1us). Multiply that by 100 to get nanoseconds.
194 */
195 total_mel = hub_lpm_params->mel +
196 (hub->descriptor->u.ss.bHubHdrDecLat * 100);
197
198 /*
199 * How long will it take to transition the downstream hub's port into
200 * U0? The greater of either the hub exit latency or the device exit
201 * latency.
202 *
203 * The BOS U1/U2 exit latencies are expressed in 1us intervals.
204 * Multiply that by 1000 to get nanoseconds.
205 */
206 device_mel = udev_exit_latency * 1000;
207 hub_mel = hub_exit_latency * 1000;
208 if (device_mel > hub_mel)
209 total_mel += device_mel;
210 else
211 total_mel += hub_mel;
212
213 udev_lpm_params->mel = total_mel;
214}
215
216/*
217 * Set the maximum Device to Host Exit Latency (PEL) for the device to initiate
218 * a transition from either U1 or U2.
219 */
220static void usb_set_lpm_pel(struct usb_device *udev,
221 struct usb3_lpm_parameters *udev_lpm_params,
222 unsigned int udev_exit_latency,
223 struct usb_hub *hub,
224 struct usb3_lpm_parameters *hub_lpm_params,
225 unsigned int hub_exit_latency,
226 unsigned int port_to_port_exit_latency)
227{
228 unsigned int first_link_pel;
229 unsigned int hub_pel;
230
231 /*
232 * First, the device sends an LFPS to transition the link between the
233 * device and the parent hub into U0. The exit latency is the bigger of
234 * the device exit latency or the hub exit latency.
235 */
236 if (udev_exit_latency > hub_exit_latency)
237 first_link_pel = udev_exit_latency * 1000;
238 else
239 first_link_pel = hub_exit_latency * 1000;
240
241 /*
242 * When the hub starts to receive the LFPS, there is a slight delay for
243 * it to figure out that one of the ports is sending an LFPS. Then it
244 * will forward the LFPS to its upstream link. The exit latency is the
245 * delay, plus the PEL that we calculated for this hub.
246 */
247 hub_pel = port_to_port_exit_latency * 1000 + hub_lpm_params->pel;
248
249 /*
250 * According to figure C-7 in the USB 3.0 spec, the PEL for this device
251 * is the greater of the two exit latencies.
252 */
253 if (first_link_pel > hub_pel)
254 udev_lpm_params->pel = first_link_pel;
255 else
256 udev_lpm_params->pel = hub_pel;
257}
258
259/*
260 * Set the System Exit Latency (SEL) to indicate the total worst-case time from
261 * when a device initiates a transition to U0, until when it will receive the
262 * first packet from the host controller.
263 *
264 * Section C.1.5.1 describes the four components to this:
265 * - t1: device PEL
266 * - t2: time for the ERDY to make it from the device to the host.
267 * - t3: a host-specific delay to process the ERDY.
268 * - t4: time for the packet to make it from the host to the device.
269 *
270 * t3 is specific to both the xHCI host and the platform the host is integrated
271 * into. The Intel HW folks have said it's negligible, FIXME if a different
272 * vendor says otherwise.
273 */
274static void usb_set_lpm_sel(struct usb_device *udev,
275 struct usb3_lpm_parameters *udev_lpm_params)
276{
277 struct usb_device *parent;
278 unsigned int num_hubs;
279 unsigned int total_sel;
280
281 /* t1 = device PEL */
282 total_sel = udev_lpm_params->pel;
283 /* How many external hubs are in between the device & the root port. */
284 for (parent = udev->parent, num_hubs = 0; parent->parent;
285 parent = parent->parent)
286 num_hubs++;
287 /* t2 = 2.1us + 250ns * (num_hubs - 1) */
288 if (num_hubs > 0)
289 total_sel += 2100 + 250 * (num_hubs - 1);
290
291 /* t4 = 250ns * num_hubs */
292 total_sel += 250 * num_hubs;
293
294 udev_lpm_params->sel = total_sel;
295}
296
297static void usb_set_lpm_parameters(struct usb_device *udev)
298{
299 struct usb_hub *hub;
300 unsigned int port_to_port_delay;
301 unsigned int udev_u1_del;
302 unsigned int udev_u2_del;
303 unsigned int hub_u1_del;
304 unsigned int hub_u2_del;
305
306 if (!udev->lpm_capable || udev->speed != USB_SPEED_SUPER)
307 return;
308
Lan Tianyuad493e52013-01-23 04:26:30 +0800309 hub = usb_hub_to_struct_hub(udev->parent);
Sarah Sharp51e0a012012-02-20 12:02:19 -0800310 /* It doesn't take time to transition the roothub into U0, since it
311 * doesn't have an upstream link.
312 */
313 if (!hub)
314 return;
315
316 udev_u1_del = udev->bos->ss_cap->bU1devExitLat;
Xenia Ragiadakou4d967992013-08-31 18:09:13 +0300317 udev_u2_del = le16_to_cpu(udev->bos->ss_cap->bU2DevExitLat);
Sarah Sharp51e0a012012-02-20 12:02:19 -0800318 hub_u1_del = udev->parent->bos->ss_cap->bU1devExitLat;
Xenia Ragiadakou4d967992013-08-31 18:09:13 +0300319 hub_u2_del = le16_to_cpu(udev->parent->bos->ss_cap->bU2DevExitLat);
Sarah Sharp51e0a012012-02-20 12:02:19 -0800320
321 usb_set_lpm_mel(udev, &udev->u1_params, udev_u1_del,
322 hub, &udev->parent->u1_params, hub_u1_del);
323
324 usb_set_lpm_mel(udev, &udev->u2_params, udev_u2_del,
325 hub, &udev->parent->u2_params, hub_u2_del);
326
327 /*
328 * Appendix C, section C.2.2.2, says that there is a slight delay from
329 * when the parent hub notices the downstream port is trying to
330 * transition to U0 to when the hub initiates a U0 transition on its
331 * upstream port. The section says the delays are tPort2PortU1EL and
332 * tPort2PortU2EL, but it doesn't define what they are.
333 *
334 * The hub chapter, sections 10.4.2.4 and 10.4.2.5 seem to be talking
335 * about the same delays. Use the maximum delay calculations from those
336 * sections. For U1, it's tHubPort2PortExitLat, which is 1us max. For
337 * U2, it's tHubPort2PortExitLat + U2DevExitLat - U1DevExitLat. I
338 * assume the device exit latencies they are talking about are the hub
339 * exit latencies.
340 *
341 * What do we do if the U2 exit latency is less than the U1 exit
342 * latency? It's possible, although not likely...
343 */
344 port_to_port_delay = 1;
345
346 usb_set_lpm_pel(udev, &udev->u1_params, udev_u1_del,
347 hub, &udev->parent->u1_params, hub_u1_del,
348 port_to_port_delay);
349
350 if (hub_u2_del > hub_u1_del)
351 port_to_port_delay = 1 + hub_u2_del - hub_u1_del;
352 else
353 port_to_port_delay = 1 + hub_u1_del;
354
355 usb_set_lpm_pel(udev, &udev->u2_params, udev_u2_del,
356 hub, &udev->parent->u2_params, hub_u2_del,
357 port_to_port_delay);
358
359 /* Now that we've got PEL, calculate SEL. */
360 usb_set_lpm_sel(udev, &udev->u1_params);
361 usb_set_lpm_sel(udev, &udev->u2_params);
362}
363
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364/* USB 2.0 spec Section 11.24.4.5 */
John Youndbe79bb2001-09-17 00:00:00 -0700365static int get_hub_descriptor(struct usb_device *hdev, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366{
John Youndbe79bb2001-09-17 00:00:00 -0700367 int i, ret, size;
368 unsigned dtype;
369
370 if (hub_is_superspeed(hdev)) {
371 dtype = USB_DT_SS_HUB;
372 size = USB_DT_SS_HUB_SIZE;
373 } else {
374 dtype = USB_DT_HUB;
375 size = sizeof(struct usb_hub_descriptor);
376 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377
378 for (i = 0; i < 3; i++) {
379 ret = usb_control_msg(hdev, usb_rcvctrlpipe(hdev, 0),
380 USB_REQ_GET_DESCRIPTOR, USB_DIR_IN | USB_RT_HUB,
John Youndbe79bb2001-09-17 00:00:00 -0700381 dtype << 8, 0, data, size,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 USB_CTRL_GET_TIMEOUT);
383 if (ret >= (USB_DT_HUB_NONVAR_SIZE + 2))
384 return ret;
385 }
386 return -EINVAL;
387}
388
389/*
390 * USB 2.0 spec Section 11.24.2.1
391 */
392static int clear_hub_feature(struct usb_device *hdev, int feature)
393{
394 return usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
395 USB_REQ_CLEAR_FEATURE, USB_RT_HUB, feature, 0, NULL, 0, 1000);
396}
397
398/*
399 * USB 2.0 spec Section 11.24.2.2
400 */
Lan Tianyuad493e52013-01-23 04:26:30 +0800401int usb_clear_port_feature(struct usb_device *hdev, int port1, int feature)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402{
403 return usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
404 USB_REQ_CLEAR_FEATURE, USB_RT_PORT, feature, port1,
405 NULL, 0, 1000);
406}
407
408/*
409 * USB 2.0 spec Section 11.24.2.13
410 */
411static int set_port_feature(struct usb_device *hdev, int port1, int feature)
412{
413 return usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
414 USB_REQ_SET_FEATURE, USB_RT_PORT, feature, port1,
415 NULL, 0, 1000);
416}
417
Dan Williamsd99f6b42014-05-20 18:08:17 -0700418static char *to_led_name(int selector)
419{
420 switch (selector) {
421 case HUB_LED_AMBER:
422 return "amber";
423 case HUB_LED_GREEN:
424 return "green";
425 case HUB_LED_OFF:
426 return "off";
427 case HUB_LED_AUTO:
428 return "auto";
429 default:
430 return "??";
431 }
432}
433
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434/*
435 * USB 2.0 spec Section 11.24.2.7.1.10 and table 11-7
436 * for info about using port indicators
437 */
Dan Williamsd99f6b42014-05-20 18:08:17 -0700438static void set_port_led(struct usb_hub *hub, int port1, int selector)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439{
Dan Williamsd99f6b42014-05-20 18:08:17 -0700440 struct usb_port *port_dev = hub->ports[port1 - 1];
441 int status;
442
443 status = set_port_feature(hub->hdev, (selector << 8) | port1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 USB_PORT_FEAT_INDICATOR);
Dan Williamsd99f6b42014-05-20 18:08:17 -0700445 dev_dbg(&port_dev->dev, "indicator %s status %d\n",
446 to_led_name(selector), status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447}
448
449#define LED_CYCLE_PERIOD ((2*HZ)/3)
450
David Howellsc4028952006-11-22 14:57:56 +0000451static void led_work (struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452{
David Howellsc4028952006-11-22 14:57:56 +0000453 struct usb_hub *hub =
454 container_of(work, struct usb_hub, leds.work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 struct usb_device *hdev = hub->hdev;
456 unsigned i;
457 unsigned changed = 0;
458 int cursor = -1;
459
460 if (hdev->state != USB_STATE_CONFIGURED || hub->quiescing)
461 return;
462
Krzysztof Mazur3bbc47d2013-08-22 14:49:40 +0200463 for (i = 0; i < hdev->maxchild; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 unsigned selector, mode;
465
466 /* 30%-50% duty cycle */
467
468 switch (hub->indicator[i]) {
469 /* cycle marker */
470 case INDICATOR_CYCLE:
471 cursor = i;
472 selector = HUB_LED_AUTO;
473 mode = INDICATOR_AUTO;
474 break;
475 /* blinking green = sw attention */
476 case INDICATOR_GREEN_BLINK:
477 selector = HUB_LED_GREEN;
478 mode = INDICATOR_GREEN_BLINK_OFF;
479 break;
480 case INDICATOR_GREEN_BLINK_OFF:
481 selector = HUB_LED_OFF;
482 mode = INDICATOR_GREEN_BLINK;
483 break;
484 /* blinking amber = hw attention */
485 case INDICATOR_AMBER_BLINK:
486 selector = HUB_LED_AMBER;
487 mode = INDICATOR_AMBER_BLINK_OFF;
488 break;
489 case INDICATOR_AMBER_BLINK_OFF:
490 selector = HUB_LED_OFF;
491 mode = INDICATOR_AMBER_BLINK;
492 break;
493 /* blink green/amber = reserved */
494 case INDICATOR_ALT_BLINK:
495 selector = HUB_LED_GREEN;
496 mode = INDICATOR_ALT_BLINK_OFF;
497 break;
498 case INDICATOR_ALT_BLINK_OFF:
499 selector = HUB_LED_AMBER;
500 mode = INDICATOR_ALT_BLINK;
501 break;
502 default:
503 continue;
504 }
505 if (selector != HUB_LED_AUTO)
506 changed = 1;
507 set_port_led(hub, i + 1, selector);
508 hub->indicator[i] = mode;
509 }
510 if (!changed && blinkenlights) {
511 cursor++;
Krzysztof Mazur3bbc47d2013-08-22 14:49:40 +0200512 cursor %= hdev->maxchild;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 set_port_led(hub, cursor + 1, HUB_LED_GREEN);
514 hub->indicator[cursor] = INDICATOR_CYCLE;
515 changed++;
516 }
517 if (changed)
Shaibal Dutta22f6a0f2014-02-01 19:16:46 -0800518 queue_delayed_work(system_power_efficient_wq,
519 &hub->leds, LED_CYCLE_PERIOD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520}
521
522/* use a short timeout for hub/port status fetches */
523#define USB_STS_TIMEOUT 1000
524#define USB_STS_RETRIES 5
525
526/*
527 * USB 2.0 spec Section 11.24.2.6
528 */
529static int get_hub_status(struct usb_device *hdev,
530 struct usb_hub_status *data)
531{
532 int i, status = -ETIMEDOUT;
533
Libor Pechacek3824c1d2011-05-20 14:53:25 +0200534 for (i = 0; i < USB_STS_RETRIES &&
535 (status == -ETIMEDOUT || status == -EPIPE); i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 status = usb_control_msg(hdev, usb_rcvctrlpipe(hdev, 0),
537 USB_REQ_GET_STATUS, USB_DIR_IN | USB_RT_HUB, 0, 0,
538 data, sizeof(*data), USB_STS_TIMEOUT);
539 }
540 return status;
541}
542
543/*
544 * USB 2.0 spec Section 11.24.2.7
545 */
546static int get_port_status(struct usb_device *hdev, int port1,
547 struct usb_port_status *data)
548{
549 int i, status = -ETIMEDOUT;
550
Libor Pechacek3824c1d2011-05-20 14:53:25 +0200551 for (i = 0; i < USB_STS_RETRIES &&
552 (status == -ETIMEDOUT || status == -EPIPE); i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 status = usb_control_msg(hdev, usb_rcvctrlpipe(hdev, 0),
554 USB_REQ_GET_STATUS, USB_DIR_IN | USB_RT_PORT, 0, port1,
555 data, sizeof(*data), USB_STS_TIMEOUT);
556 }
557 return status;
558}
559
Alan Stern3eb14912008-03-03 15:15:43 -0500560static int hub_port_status(struct usb_hub *hub, int port1,
561 u16 *status, u16 *change)
562{
563 int ret;
564
565 mutex_lock(&hub->status_mutex);
566 ret = get_port_status(hub->hdev, port1, &hub->status->port);
567 if (ret < 4) {
Alan Sterne9e88fb2013-03-27 16:14:01 -0400568 if (ret != -ENODEV)
569 dev_err(hub->intfdev,
570 "%s failed (err = %d)\n", __func__, ret);
Alan Stern3eb14912008-03-03 15:15:43 -0500571 if (ret >= 0)
572 ret = -EIO;
573 } else {
574 *status = le16_to_cpu(hub->status->port.wPortStatus);
575 *change = le16_to_cpu(hub->status->port.wPortChange);
John Youndbe79bb2001-09-17 00:00:00 -0700576
Alan Stern3eb14912008-03-03 15:15:43 -0500577 ret = 0;
578 }
579 mutex_unlock(&hub->status_mutex);
580 return ret;
581}
582
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583static void kick_khubd(struct usb_hub *hub)
584{
585 unsigned long flags;
586
587 spin_lock_irqsave(&hub_event_lock, flags);
Roel Kluin2e2c5ee2007-10-26 23:54:35 +0200588 if (!hub->disconnected && list_empty(&hub->event_list)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 list_add_tail(&hub->event_list, &hub_event_list);
Alan Stern8e4ceb32009-12-07 13:01:37 -0500590
591 /* Suppress autosuspend until khubd runs */
592 usb_autopm_get_interface_no_resume(
593 to_usb_interface(hub->intfdev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 wake_up(&khubd_wait);
595 }
596 spin_unlock_irqrestore(&hub_event_lock, flags);
597}
598
599void usb_kick_khubd(struct usb_device *hdev)
600{
Lan Tianyuad493e52013-01-23 04:26:30 +0800601 struct usb_hub *hub = usb_hub_to_struct_hub(hdev);
Alan Stern251180842009-07-22 14:41:18 -0400602
603 if (hub)
604 kick_khubd(hub);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605}
606
Sarah Sharp4ee823b2011-11-14 18:00:01 -0800607/*
608 * Let the USB core know that a USB 3.0 device has sent a Function Wake Device
609 * Notification, which indicates it had initiated remote wakeup.
610 *
611 * USB 3.0 hubs do not report the port link state change from U3 to U0 when the
612 * device initiates resume, so the USB core will not receive notice of the
613 * resume through the normal hub interrupt URB.
614 */
615void usb_wakeup_notification(struct usb_device *hdev,
616 unsigned int portnum)
617{
618 struct usb_hub *hub;
619
620 if (!hdev)
621 return;
622
Lan Tianyuad493e52013-01-23 04:26:30 +0800623 hub = usb_hub_to_struct_hub(hdev);
Sarah Sharp4ee823b2011-11-14 18:00:01 -0800624 if (hub) {
625 set_bit(portnum, hub->wakeup_bits);
626 kick_khubd(hub);
627 }
628}
629EXPORT_SYMBOL_GPL(usb_wakeup_notification);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630
631/* completion function, fires on port status changes and various faults */
David Howells7d12e782006-10-05 14:55:46 +0100632static void hub_irq(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633{
Tobias Klauserec17cf12006-09-13 21:38:41 +0200634 struct usb_hub *hub = urb->context;
Alan Sterne0152682007-08-24 15:42:52 -0400635 int status = urb->status;
Roel Kluin71d27182009-03-13 12:19:18 +0100636 unsigned i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 unsigned long bits;
638
Alan Sterne0152682007-08-24 15:42:52 -0400639 switch (status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 case -ENOENT: /* synchronous unlink */
641 case -ECONNRESET: /* async unlink */
642 case -ESHUTDOWN: /* hardware going away */
643 return;
644
645 default: /* presumably an error */
646 /* Cause a hub reset after 10 consecutive errors */
Alan Sterne0152682007-08-24 15:42:52 -0400647 dev_dbg (hub->intfdev, "transfer --> %d\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 if ((++hub->nerrors < 10) || hub->error)
649 goto resubmit;
Alan Sterne0152682007-08-24 15:42:52 -0400650 hub->error = status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 /* FALL THROUGH */
Tobias Klauserec17cf12006-09-13 21:38:41 +0200652
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 /* let khubd handle things */
654 case 0: /* we got data: port status changed */
655 bits = 0;
656 for (i = 0; i < urb->actual_length; ++i)
657 bits |= ((unsigned long) ((*hub->buffer)[i]))
658 << (i*8);
659 hub->event_bits[0] = bits;
660 break;
661 }
662
663 hub->nerrors = 0;
664
665 /* Something happened, let khubd figure it out */
666 kick_khubd(hub);
667
668resubmit:
669 if (hub->quiescing)
670 return;
671
672 if ((status = usb_submit_urb (hub->urb, GFP_ATOMIC)) != 0
673 && status != -ENODEV && status != -EPERM)
674 dev_err (hub->intfdev, "resubmit --> %d\n", status);
675}
676
677/* USB 2.0 spec Section 11.24.2.3 */
678static inline int
679hub_clear_tt_buffer (struct usb_device *hdev, u16 devinfo, u16 tt)
680{
William Gulland2c7b8712013-06-27 16:10:20 -0700681 /* Need to clear both directions for control ep */
682 if (((devinfo >> 11) & USB_ENDPOINT_XFERTYPE_MASK) ==
683 USB_ENDPOINT_XFER_CONTROL) {
684 int status = usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
685 HUB_CLEAR_TT_BUFFER, USB_RT_PORT,
686 devinfo ^ 0x8000, tt, NULL, 0, 1000);
687 if (status)
688 return status;
689 }
Alan Sternc2f65952009-11-18 11:37:15 -0500690 return usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 HUB_CLEAR_TT_BUFFER, USB_RT_PORT, devinfo,
692 tt, NULL, 0, 1000);
693}
694
695/*
696 * enumeration blocks khubd for a long time. we use keventd instead, since
697 * long blocking there is the exception, not the rule. accordingly, HCDs
698 * talking to TTs must queue control transfers (not just bulk and iso), so
699 * both can talk to the same hub concurrently.
700 */
Alan Sterncb88a1b2009-06-29 10:43:32 -0400701static void hub_tt_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702{
David Howellsc4028952006-11-22 14:57:56 +0000703 struct usb_hub *hub =
Alan Sterncb88a1b2009-06-29 10:43:32 -0400704 container_of(work, struct usb_hub, tt.clear_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 unsigned long flags;
706
707 spin_lock_irqsave (&hub->tt.lock, flags);
Octavian Purdila3b6054d2012-10-01 22:21:12 +0300708 while (!list_empty(&hub->tt.clear_list)) {
H Hartley Sweetend0f830d2009-04-22 16:03:05 -0400709 struct list_head *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 struct usb_tt_clear *clear;
711 struct usb_device *hdev = hub->hdev;
Alan Sterncb88a1b2009-06-29 10:43:32 -0400712 const struct hc_driver *drv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 int status;
714
H Hartley Sweetend0f830d2009-04-22 16:03:05 -0400715 next = hub->tt.clear_list.next;
716 clear = list_entry (next, struct usb_tt_clear, clear_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 list_del (&clear->clear_list);
718
719 /* drop lock so HCD can concurrently report other TT errors */
720 spin_unlock_irqrestore (&hub->tt.lock, flags);
721 status = hub_clear_tt_buffer (hdev, clear->devinfo, clear->tt);
Alan Sterne9e88fb2013-03-27 16:14:01 -0400722 if (status && status != -ENODEV)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 dev_err (&hdev->dev,
724 "clear tt %d (%04x) error %d\n",
725 clear->tt, clear->devinfo, status);
Alan Sterncb88a1b2009-06-29 10:43:32 -0400726
727 /* Tell the HCD, even if the operation failed */
728 drv = clear->hcd->driver;
729 if (drv->clear_tt_buffer_complete)
730 (drv->clear_tt_buffer_complete)(clear->hcd, clear->ep);
731
Jesper Juhl1bc3c9e2005-04-18 17:39:34 -0700732 kfree(clear);
Alan Sterncb88a1b2009-06-29 10:43:32 -0400733 spin_lock_irqsave(&hub->tt.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 }
735 spin_unlock_irqrestore (&hub->tt.lock, flags);
736}
737
738/**
Lan Tianyu971fcd42013-01-23 04:26:29 +0800739 * usb_hub_set_port_power - control hub port's power state
Mathias Nyman413412612013-06-18 17:28:48 +0300740 * @hdev: USB device belonging to the usb hub
741 * @hub: target hub
Lan Tianyu971fcd42013-01-23 04:26:29 +0800742 * @port1: port index
743 * @set: expected status
744 *
745 * call this function to control port's power via setting or
746 * clearing the port's PORT_POWER feature.
Yacine Belkadi626f0902013-08-02 20:10:04 +0200747 *
748 * Return: 0 if successful. A negative error code otherwise.
Lan Tianyu971fcd42013-01-23 04:26:29 +0800749 */
Mathias Nyman413412612013-06-18 17:28:48 +0300750int usb_hub_set_port_power(struct usb_device *hdev, struct usb_hub *hub,
751 int port1, bool set)
Lan Tianyu971fcd42013-01-23 04:26:29 +0800752{
753 int ret;
Lan Tianyuad493e52013-01-23 04:26:30 +0800754 struct usb_port *port_dev = hub->ports[port1 - 1];
Lan Tianyu971fcd42013-01-23 04:26:29 +0800755
756 if (set)
757 ret = set_port_feature(hdev, port1, USB_PORT_FEAT_POWER);
758 else
Lan Tianyuad493e52013-01-23 04:26:30 +0800759 ret = usb_clear_port_feature(hdev, port1, USB_PORT_FEAT_POWER);
760
761 if (!ret)
762 port_dev->power_is_on = set;
Lan Tianyu971fcd42013-01-23 04:26:29 +0800763 return ret;
764}
765
766/**
Alan Sterncb88a1b2009-06-29 10:43:32 -0400767 * usb_hub_clear_tt_buffer - clear control/bulk TT state in high speed hub
768 * @urb: an URB associated with the failed or incomplete split transaction
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 *
770 * High speed HCDs use this to tell the hub driver that some split control or
771 * bulk transaction failed in a way that requires clearing internal state of
772 * a transaction translator. This is normally detected (and reported) from
773 * interrupt context.
774 *
775 * It may not be possible for that hub to handle additional full (or low)
776 * speed transactions until that state is fully cleared out.
Yacine Belkadi626f0902013-08-02 20:10:04 +0200777 *
778 * Return: 0 if successful. A negative error code otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 */
Alan Sterncb88a1b2009-06-29 10:43:32 -0400780int usb_hub_clear_tt_buffer(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781{
Alan Sterncb88a1b2009-06-29 10:43:32 -0400782 struct usb_device *udev = urb->dev;
783 int pipe = urb->pipe;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 struct usb_tt *tt = udev->tt;
785 unsigned long flags;
786 struct usb_tt_clear *clear;
787
788 /* we've got to cope with an arbitrary number of pending TT clears,
789 * since each TT has "at least two" buffers that can need it (and
790 * there can be many TTs per hub). even if they're uncommon.
791 */
Christoph Lameter54e6ecb2006-12-06 20:33:16 -0800792 if ((clear = kmalloc (sizeof *clear, GFP_ATOMIC)) == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 dev_err (&udev->dev, "can't save CLEAR_TT_BUFFER state\n");
794 /* FIXME recover somehow ... RESET_TT? */
Alan Sterncb88a1b2009-06-29 10:43:32 -0400795 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 }
797
798 /* info that CLEAR_TT_BUFFER needs */
799 clear->tt = tt->multi ? udev->ttport : 1;
800 clear->devinfo = usb_pipeendpoint (pipe);
801 clear->devinfo |= udev->devnum << 4;
802 clear->devinfo |= usb_pipecontrol (pipe)
803 ? (USB_ENDPOINT_XFER_CONTROL << 11)
804 : (USB_ENDPOINT_XFER_BULK << 11);
805 if (usb_pipein (pipe))
806 clear->devinfo |= 1 << 15;
Alan Sterncb88a1b2009-06-29 10:43:32 -0400807
808 /* info for completion callback */
809 clear->hcd = bus_to_hcd(udev->bus);
810 clear->ep = urb->ep;
811
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 /* tell keventd to clear state for this TT */
813 spin_lock_irqsave (&tt->lock, flags);
814 list_add_tail (&clear->clear_list, &tt->clear_list);
Alan Sterncb88a1b2009-06-29 10:43:32 -0400815 schedule_work(&tt->clear_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 spin_unlock_irqrestore (&tt->lock, flags);
Alan Sterncb88a1b2009-06-29 10:43:32 -0400817 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818}
Alan Sterncb88a1b2009-06-29 10:43:32 -0400819EXPORT_SYMBOL_GPL(usb_hub_clear_tt_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820
Alan Stern8520f382008-09-22 14:44:26 -0400821/* If do_delay is false, return the number of milliseconds the caller
822 * needs to delay.
823 */
824static unsigned hub_power_on(struct usb_hub *hub, bool do_delay)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825{
826 int port1;
David Brownellb7896962005-08-31 10:41:44 -0700827 unsigned pgood_delay = hub->descriptor->bPwrOn2PwrGood * 2;
Alan Stern8520f382008-09-22 14:44:26 -0400828 unsigned delay;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829
Alan Stern4489a572006-04-27 15:54:22 -0400830 /* Enable power on each port. Some hubs have reserved values
831 * of LPSM (> 2) in their descriptors, even though they are
832 * USB 2.0 hubs. Some hubs do not implement port-power switching
833 * but only emulate it. In all cases, the ports won't work
834 * unless we send these messages to the hub.
835 */
Dan Williams9262c192014-05-20 18:08:12 -0700836 if (hub_is_port_power_switchable(hub))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 dev_dbg(hub->intfdev, "enabling power on all ports\n");
Alan Stern4489a572006-04-27 15:54:22 -0400838 else
839 dev_dbg(hub->intfdev, "trying to enable port power on "
840 "non-switchable hub\n");
Krzysztof Mazur3bbc47d2013-08-22 14:49:40 +0200841 for (port1 = 1; port1 <= hub->hdev->maxchild; port1++)
Lan Tianyuad493e52013-01-23 04:26:30 +0800842 if (hub->ports[port1 - 1]->power_is_on)
843 set_port_feature(hub->hdev, port1, USB_PORT_FEAT_POWER);
844 else
845 usb_clear_port_feature(hub->hdev, port1,
846 USB_PORT_FEAT_POWER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847
David Brownellb7896962005-08-31 10:41:44 -0700848 /* Wait at least 100 msec for power to become stable */
Alan Stern8520f382008-09-22 14:44:26 -0400849 delay = max(pgood_delay, (unsigned) 100);
850 if (do_delay)
851 msleep(delay);
852 return delay;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853}
854
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855static int hub_hub_status(struct usb_hub *hub,
856 u16 *status, u16 *change)
857{
858 int ret;
859
Alan Sterndb90e7a2007-02-05 09:56:15 -0500860 mutex_lock(&hub->status_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 ret = get_hub_status(hub->hdev, &hub->status->hub);
Alan Sterne9e88fb2013-03-27 16:14:01 -0400862 if (ret < 0) {
863 if (ret != -ENODEV)
864 dev_err(hub->intfdev,
865 "%s failed (err = %d)\n", __func__, ret);
866 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 *status = le16_to_cpu(hub->status->hub.wHubStatus);
Matthias Beyer469271f2013-10-10 23:41:27 +0200868 *change = le16_to_cpu(hub->status->hub.wHubChange);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 ret = 0;
870 }
Alan Sterndb90e7a2007-02-05 09:56:15 -0500871 mutex_unlock(&hub->status_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 return ret;
873}
874
Sarah Sharp41e7e052012-11-14 16:42:32 -0800875static int hub_set_port_link_state(struct usb_hub *hub, int port1,
876 unsigned int link_status)
877{
878 return set_port_feature(hub->hdev,
879 port1 | (link_status << 3),
880 USB_PORT_FEAT_LINK_STATE);
881}
882
883/*
884 * If USB 3.0 ports are placed into the Disabled state, they will no longer
885 * detect any device connects or disconnects. This is generally not what the
886 * USB core wants, since it expects a disabled port to produce a port status
887 * change event when a new device connects.
888 *
889 * Instead, set the link state to Disabled, wait for the link to settle into
890 * that state, clear any change bits, and then put the port into the RxDetect
891 * state.
892 */
893static int hub_usb3_port_disable(struct usb_hub *hub, int port1)
894{
895 int ret;
896 int total_time;
897 u16 portchange, portstatus;
898
899 if (!hub_is_superspeed(hub->hdev))
900 return -EINVAL;
901
902 ret = hub_set_port_link_state(hub, port1, USB_SS_PORT_LS_SS_DISABLED);
Alan Sterne9e88fb2013-03-27 16:14:01 -0400903 if (ret)
Sarah Sharp41e7e052012-11-14 16:42:32 -0800904 return ret;
Sarah Sharp41e7e052012-11-14 16:42:32 -0800905
906 /* Wait for the link to enter the disabled state. */
907 for (total_time = 0; ; total_time += HUB_DEBOUNCE_STEP) {
908 ret = hub_port_status(hub, port1, &portstatus, &portchange);
909 if (ret < 0)
910 return ret;
911
912 if ((portstatus & USB_PORT_STAT_LINK_STATE) ==
913 USB_SS_PORT_LS_SS_DISABLED)
914 break;
915 if (total_time >= HUB_DEBOUNCE_TIMEOUT)
916 break;
917 msleep(HUB_DEBOUNCE_STEP);
918 }
919 if (total_time >= HUB_DEBOUNCE_TIMEOUT)
Dan Williamsd99f6b42014-05-20 18:08:17 -0700920 dev_warn(&hub->ports[port1 - 1]->dev,
921 "Could not disable after %d ms\n", total_time);
Sarah Sharp41e7e052012-11-14 16:42:32 -0800922
923 return hub_set_port_link_state(hub, port1, USB_SS_PORT_LS_RX_DETECT);
924}
925
Alan Stern8b28c752005-08-10 17:04:13 -0400926static int hub_port_disable(struct usb_hub *hub, int port1, int set_state)
927{
Dan Williamsd99f6b42014-05-20 18:08:17 -0700928 struct usb_port *port_dev = hub->ports[port1 - 1];
Alan Stern8b28c752005-08-10 17:04:13 -0400929 struct usb_device *hdev = hub->hdev;
Alan Stern0458d5b2007-05-04 11:52:20 -0400930 int ret = 0;
Alan Stern8b28c752005-08-10 17:04:13 -0400931
Dan Williamsd99f6b42014-05-20 18:08:17 -0700932 if (port_dev->child && set_state)
933 usb_set_device_state(port_dev->child, USB_STATE_NOTATTACHED);
Sarah Sharp41e7e052012-11-14 16:42:32 -0800934 if (!hub->error) {
935 if (hub_is_superspeed(hub->hdev))
936 ret = hub_usb3_port_disable(hub, port1);
937 else
Lan Tianyuad493e52013-01-23 04:26:30 +0800938 ret = usb_clear_port_feature(hdev, port1,
Sarah Sharp41e7e052012-11-14 16:42:32 -0800939 USB_PORT_FEAT_ENABLE);
940 }
Alan Sterne9e88fb2013-03-27 16:14:01 -0400941 if (ret && ret != -ENODEV)
Dan Williamsd99f6b42014-05-20 18:08:17 -0700942 dev_err(&port_dev->dev, "cannot disable (err = %d)\n", ret);
Alan Stern8b28c752005-08-10 17:04:13 -0400943 return ret;
944}
945
Alan Stern0458d5b2007-05-04 11:52:20 -0400946/*
Justin P. Mattock6d42fcd2011-02-26 20:33:56 -0800947 * Disable a port and mark a logical connect-change event, so that some
Alan Stern0458d5b2007-05-04 11:52:20 -0400948 * time later khubd will disconnect() any existing usb_device on the port
949 * and will re-enumerate if there actually is a device attached.
950 */
951static void hub_port_logical_disconnect(struct usb_hub *hub, int port1)
952{
Dan Williamsd99f6b42014-05-20 18:08:17 -0700953 dev_dbg(&hub->ports[port1 - 1]->dev, "logical disconnect\n");
Alan Stern0458d5b2007-05-04 11:52:20 -0400954 hub_port_disable(hub, port1, 1);
955
956 /* FIXME let caller ask to power down the port:
957 * - some devices won't enumerate without a VBUS power cycle
958 * - SRP saves power that way
959 * - ... new call, TBD ...
960 * That's easy if this hub can switch power per-port, and
961 * khubd reactivates the port later (timer, SRP, etc).
962 * Powerdown must be optional, because of reset/DFU.
963 */
964
965 set_bit(port1, hub->change_bits);
Matthias Beyer469271f2013-10-10 23:41:27 +0200966 kick_khubd(hub);
Alan Stern0458d5b2007-05-04 11:52:20 -0400967}
968
Alan Stern253e0572009-10-27 15:20:13 -0400969/**
970 * usb_remove_device - disable a device's port on its parent hub
971 * @udev: device to be disabled and removed
972 * Context: @udev locked, must be able to sleep.
973 *
974 * After @udev's port has been disabled, khubd is notified and it will
975 * see that the device has been disconnected. When the device is
976 * physically unplugged and something is plugged in, the events will
977 * be received and processed normally.
Yacine Belkadi626f0902013-08-02 20:10:04 +0200978 *
979 * Return: 0 if successful. A negative error code otherwise.
Alan Stern253e0572009-10-27 15:20:13 -0400980 */
981int usb_remove_device(struct usb_device *udev)
982{
983 struct usb_hub *hub;
984 struct usb_interface *intf;
985
986 if (!udev->parent) /* Can't remove a root hub */
987 return -EINVAL;
Lan Tianyuad493e52013-01-23 04:26:30 +0800988 hub = usb_hub_to_struct_hub(udev->parent);
Alan Stern253e0572009-10-27 15:20:13 -0400989 intf = to_usb_interface(hub->intfdev);
990
991 usb_autopm_get_interface(intf);
992 set_bit(udev->portnum, hub->removed_bits);
993 hub_port_logical_disconnect(hub, udev->portnum);
994 usb_autopm_put_interface(intf);
995 return 0;
996}
997
Alan Stern6ee0b272008-04-28 11:06:42 -0400998enum hub_activation_type {
Alan Stern8e4ceb32009-12-07 13:01:37 -0500999 HUB_INIT, HUB_INIT2, HUB_INIT3, /* INITs must come first */
Alan Stern8520f382008-09-22 14:44:26 -04001000 HUB_POST_RESET, HUB_RESUME, HUB_RESET_RESUME,
Alan Stern6ee0b272008-04-28 11:06:42 -04001001};
Alan Stern5e6effa2008-03-03 15:15:51 -05001002
Alan Stern8520f382008-09-22 14:44:26 -04001003static void hub_init_func2(struct work_struct *ws);
1004static void hub_init_func3(struct work_struct *ws);
1005
Alan Sternf2835212008-04-28 11:07:17 -04001006static void hub_activate(struct usb_hub *hub, enum hub_activation_type type)
Alan Stern5e6effa2008-03-03 15:15:51 -05001007{
1008 struct usb_device *hdev = hub->hdev;
Sarah Sharp653a39d2010-12-23 11:12:42 -08001009 struct usb_hcd *hcd;
1010 int ret;
Alan Stern5e6effa2008-03-03 15:15:51 -05001011 int port1;
Alan Sternf2835212008-04-28 11:07:17 -04001012 int status;
Alan Stern948fea32008-04-28 11:07:07 -04001013 bool need_debounce_delay = false;
Alan Stern8520f382008-09-22 14:44:26 -04001014 unsigned delay;
1015
1016 /* Continue a partial initialization */
1017 if (type == HUB_INIT2)
1018 goto init2;
1019 if (type == HUB_INIT3)
1020 goto init3;
Alan Stern5e6effa2008-03-03 15:15:51 -05001021
Elric Fua45aa3b2012-02-18 13:32:27 +08001022 /* The superspeed hub except for root hub has to use Hub Depth
1023 * value as an offset into the route string to locate the bits
1024 * it uses to determine the downstream port number. So hub driver
1025 * should send a set hub depth request to superspeed hub after
1026 * the superspeed hub is set configuration in initialization or
1027 * reset procedure.
1028 *
1029 * After a resume, port power should still be on.
Alan Sternf2835212008-04-28 11:07:17 -04001030 * For any other type of activation, turn it on.
1031 */
Alan Stern8520f382008-09-22 14:44:26 -04001032 if (type != HUB_RESUME) {
Elric Fua45aa3b2012-02-18 13:32:27 +08001033 if (hdev->parent && hub_is_superspeed(hdev)) {
1034 ret = usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
1035 HUB_SET_DEPTH, USB_RT_HUB,
1036 hdev->level - 1, 0, NULL, 0,
1037 USB_CTRL_SET_TIMEOUT);
1038 if (ret < 0)
1039 dev_err(hub->intfdev,
1040 "set hub depth failed\n");
1041 }
Alan Stern8520f382008-09-22 14:44:26 -04001042
1043 /* Speed up system boot by using a delayed_work for the
1044 * hub's initial power-up delays. This is pretty awkward
1045 * and the implementation looks like a home-brewed sort of
1046 * setjmp/longjmp, but it saves at least 100 ms for each
1047 * root hub (assuming usbcore is compiled into the kernel
1048 * rather than as a module). It adds up.
1049 *
1050 * This can't be done for HUB_RESUME or HUB_RESET_RESUME
1051 * because for those activation types the ports have to be
1052 * operational when we return. In theory this could be done
1053 * for HUB_POST_RESET, but it's easier not to.
1054 */
1055 if (type == HUB_INIT) {
1056 delay = hub_power_on(hub, false);
Tejun Heo77fa83c2014-03-07 10:24:48 -05001057 INIT_DELAYED_WORK(&hub->init_work, hub_init_func2);
Shaibal Dutta22f6a0f2014-02-01 19:16:46 -08001058 queue_delayed_work(system_power_efficient_wq,
1059 &hub->init_work,
Alan Stern8520f382008-09-22 14:44:26 -04001060 msecs_to_jiffies(delay));
Alan Stern61fbeba2008-10-27 12:07:44 -04001061
1062 /* Suppress autosuspend until init is done */
Alan Stern8e4ceb32009-12-07 13:01:37 -05001063 usb_autopm_get_interface_no_resume(
1064 to_usb_interface(hub->intfdev));
Alan Stern8520f382008-09-22 14:44:26 -04001065 return; /* Continues at init2: below */
Sarah Sharp653a39d2010-12-23 11:12:42 -08001066 } else if (type == HUB_RESET_RESUME) {
1067 /* The internal host controller state for the hub device
1068 * may be gone after a host power loss on system resume.
1069 * Update the device's info so the HW knows it's a hub.
1070 */
1071 hcd = bus_to_hcd(hdev->bus);
1072 if (hcd->driver->update_hub_device) {
1073 ret = hcd->driver->update_hub_device(hcd, hdev,
1074 &hub->tt, GFP_NOIO);
1075 if (ret < 0) {
1076 dev_err(hub->intfdev, "Host not "
1077 "accepting hub info "
1078 "update.\n");
1079 dev_err(hub->intfdev, "LS/FS devices "
1080 "and hubs may not work "
1081 "under this hub\n.");
1082 }
1083 }
1084 hub_power_on(hub, true);
Alan Stern8520f382008-09-22 14:44:26 -04001085 } else {
1086 hub_power_on(hub, true);
1087 }
1088 }
1089 init2:
Alan Sternf2835212008-04-28 11:07:17 -04001090
Dan Williamsd99f6b42014-05-20 18:08:17 -07001091 /*
1092 * Check each port and set hub->change_bits to let khubd know
Alan Stern6ee0b272008-04-28 11:06:42 -04001093 * which ports need attention.
Alan Stern5e6effa2008-03-03 15:15:51 -05001094 */
1095 for (port1 = 1; port1 <= hdev->maxchild; ++port1) {
Dan Williamsd99f6b42014-05-20 18:08:17 -07001096 struct usb_port *port_dev = hub->ports[port1 - 1];
1097 struct usb_device *udev = port_dev->child;
Alan Stern5e6effa2008-03-03 15:15:51 -05001098 u16 portstatus, portchange;
1099
Alan Stern6ee0b272008-04-28 11:06:42 -04001100 portstatus = portchange = 0;
1101 status = hub_port_status(hub, port1, &portstatus, &portchange);
1102 if (udev || (portstatus & USB_PORT_STAT_CONNECTION))
Dan Williamsd99f6b42014-05-20 18:08:17 -07001103 dev_dbg(&port_dev->dev, "status %04x change %04x\n",
1104 portstatus, portchange);
Alan Stern5e6effa2008-03-03 15:15:51 -05001105
Dan Williamsd99f6b42014-05-20 18:08:17 -07001106 /*
1107 * After anything other than HUB_RESUME (i.e., initialization
Alan Stern6ee0b272008-04-28 11:06:42 -04001108 * or any sort of reset), every port should be disabled.
1109 * Unconnected ports should likewise be disabled (paranoia),
1110 * and so should ports for which we have no usb_device.
Alan Stern5e6effa2008-03-03 15:15:51 -05001111 */
Alan Stern6ee0b272008-04-28 11:06:42 -04001112 if ((portstatus & USB_PORT_STAT_ENABLE) && (
1113 type != HUB_RESUME ||
1114 !(portstatus & USB_PORT_STAT_CONNECTION) ||
1115 !udev ||
1116 udev->state == USB_STATE_NOTATTACHED)) {
Andiry Xu9f0a6cd2010-05-07 18:09:27 +08001117 /*
1118 * USB3 protocol ports will automatically transition
1119 * to Enabled state when detect an USB3.0 device attach.
Dan Williamsfd1ac4c2013-10-07 11:58:20 -07001120 * Do not disable USB3 protocol ports, just pretend
1121 * power was lost
Andiry Xu9f0a6cd2010-05-07 18:09:27 +08001122 */
Dan Williamsfd1ac4c2013-10-07 11:58:20 -07001123 portstatus &= ~USB_PORT_STAT_ENABLE;
1124 if (!hub_is_superspeed(hdev))
Lan Tianyuad493e52013-01-23 04:26:30 +08001125 usb_clear_port_feature(hdev, port1,
Andiry Xu9f0a6cd2010-05-07 18:09:27 +08001126 USB_PORT_FEAT_ENABLE);
Alan Stern6ee0b272008-04-28 11:06:42 -04001127 }
1128
Alan Stern948fea32008-04-28 11:07:07 -04001129 /* Clear status-change flags; we'll debounce later */
1130 if (portchange & USB_PORT_STAT_C_CONNECTION) {
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_CONNECTION);
1134 }
1135 if (portchange & USB_PORT_STAT_C_ENABLE) {
1136 need_debounce_delay = true;
Lan Tianyuad493e52013-01-23 04:26:30 +08001137 usb_clear_port_feature(hub->hdev, port1,
Alan Stern948fea32008-04-28 11:07:07 -04001138 USB_PORT_FEAT_C_ENABLE);
1139 }
Julius Wernere92aee32013-10-15 17:45:00 -07001140 if (portchange & USB_PORT_STAT_C_RESET) {
1141 need_debounce_delay = true;
1142 usb_clear_port_feature(hub->hdev, port1,
1143 USB_PORT_FEAT_C_RESET);
1144 }
Don Zickus79c3dd82011-11-03 09:07:18 -04001145 if ((portchange & USB_PORT_STAT_C_BH_RESET) &&
1146 hub_is_superspeed(hub->hdev)) {
1147 need_debounce_delay = true;
Lan Tianyuad493e52013-01-23 04:26:30 +08001148 usb_clear_port_feature(hub->hdev, port1,
Don Zickus79c3dd82011-11-03 09:07:18 -04001149 USB_PORT_FEAT_C_BH_PORT_RESET);
1150 }
Alan Stern253e0572009-10-27 15:20:13 -04001151 /* We can forget about a "removed" device when there's a
1152 * physical disconnect or the connect status changes.
1153 */
1154 if (!(portstatus & USB_PORT_STAT_CONNECTION) ||
1155 (portchange & USB_PORT_STAT_C_CONNECTION))
1156 clear_bit(port1, hub->removed_bits);
1157
Alan Stern6ee0b272008-04-28 11:06:42 -04001158 if (!udev || udev->state == USB_STATE_NOTATTACHED) {
1159 /* Tell khubd to disconnect the device or
1160 * check for a new connection
1161 */
Shen Guang08d1dec2014-01-08 14:45:42 +08001162 if (udev || (portstatus & USB_PORT_STAT_CONNECTION) ||
1163 (portstatus & USB_PORT_STAT_OVERCURRENT))
Alan Stern6ee0b272008-04-28 11:06:42 -04001164 set_bit(port1, hub->change_bits);
1165
1166 } else if (portstatus & USB_PORT_STAT_ENABLE) {
Sarah Sharp72937e12012-01-24 11:46:50 -08001167 bool port_resumed = (portstatus &
1168 USB_PORT_STAT_LINK_STATE) ==
1169 USB_SS_PORT_LS_U0;
Alan Stern6ee0b272008-04-28 11:06:42 -04001170 /* The power session apparently survived the resume.
1171 * If there was an overcurrent or suspend change
1172 * (i.e., remote wakeup request), have khubd
Sarah Sharp72937e12012-01-24 11:46:50 -08001173 * take care of it. Look at the port link state
1174 * for USB 3.0 hubs, since they don't have a suspend
1175 * change bit, and they don't set the port link change
1176 * bit on device-initiated resume.
Alan Stern6ee0b272008-04-28 11:06:42 -04001177 */
Sarah Sharp72937e12012-01-24 11:46:50 -08001178 if (portchange || (hub_is_superspeed(hub->hdev) &&
1179 port_resumed))
Alan Stern6ee0b272008-04-28 11:06:42 -04001180 set_bit(port1, hub->change_bits);
1181
1182 } else if (udev->persist_enabled) {
Lan Tianyuad493e52013-01-23 04:26:30 +08001183 struct usb_port *port_dev = hub->ports[port1 - 1];
1184
Alan Stern6ee0b272008-04-28 11:06:42 -04001185#ifdef CONFIG_PM
Alan Stern5e6effa2008-03-03 15:15:51 -05001186 udev->reset_resume = 1;
Alan Stern6ee0b272008-04-28 11:06:42 -04001187#endif
Lan Tianyuad493e52013-01-23 04:26:30 +08001188 /* Don't set the change_bits when the device
1189 * was powered off.
1190 */
1191 if (port_dev->power_is_on)
1192 set_bit(port1, hub->change_bits);
Alan Stern8808f002008-04-28 11:06:55 -04001193
Alan Stern6ee0b272008-04-28 11:06:42 -04001194 } else {
1195 /* The power session is gone; tell khubd */
1196 usb_set_device_state(udev, USB_STATE_NOTATTACHED);
1197 set_bit(port1, hub->change_bits);
Alan Stern5e6effa2008-03-03 15:15:51 -05001198 }
Alan Stern5e6effa2008-03-03 15:15:51 -05001199 }
1200
Alan Stern948fea32008-04-28 11:07:07 -04001201 /* If no port-status-change flags were set, we don't need any
1202 * debouncing. If flags were set we can try to debounce the
1203 * ports all at once right now, instead of letting khubd do them
1204 * one at a time later on.
1205 *
1206 * If any port-status changes do occur during this delay, khubd
1207 * will see them later and handle them normally.
1208 */
Alan Stern8520f382008-09-22 14:44:26 -04001209 if (need_debounce_delay) {
1210 delay = HUB_DEBOUNCE_STABLE;
Alan Sternf2835212008-04-28 11:07:17 -04001211
Alan Stern8520f382008-09-22 14:44:26 -04001212 /* Don't do a long sleep inside a workqueue routine */
1213 if (type == HUB_INIT2) {
Tejun Heo77fa83c2014-03-07 10:24:48 -05001214 INIT_DELAYED_WORK(&hub->init_work, hub_init_func3);
Shaibal Dutta22f6a0f2014-02-01 19:16:46 -08001215 queue_delayed_work(system_power_efficient_wq,
1216 &hub->init_work,
Alan Stern8520f382008-09-22 14:44:26 -04001217 msecs_to_jiffies(delay));
1218 return; /* Continues at init3: below */
1219 } else {
1220 msleep(delay);
1221 }
1222 }
1223 init3:
Alan Sternf2835212008-04-28 11:07:17 -04001224 hub->quiescing = 0;
1225
1226 status = usb_submit_urb(hub->urb, GFP_NOIO);
1227 if (status < 0)
1228 dev_err(hub->intfdev, "activate --> %d\n", status);
1229 if (hub->has_indicators && blinkenlights)
Shaibal Dutta22f6a0f2014-02-01 19:16:46 -08001230 queue_delayed_work(system_power_efficient_wq,
1231 &hub->leds, LED_CYCLE_PERIOD);
Alan Sternf2835212008-04-28 11:07:17 -04001232
1233 /* Scan all ports that need attention */
1234 kick_khubd(hub);
Alan Stern8e4ceb32009-12-07 13:01:37 -05001235
1236 /* Allow autosuspend if it was suppressed */
1237 if (type <= HUB_INIT3)
1238 usb_autopm_put_interface_async(to_usb_interface(hub->intfdev));
Alan Stern5e6effa2008-03-03 15:15:51 -05001239}
1240
Alan Stern8520f382008-09-22 14:44:26 -04001241/* Implement the continuations for the delays above */
1242static void hub_init_func2(struct work_struct *ws)
1243{
1244 struct usb_hub *hub = container_of(ws, struct usb_hub, init_work.work);
1245
1246 hub_activate(hub, HUB_INIT2);
1247}
1248
1249static void hub_init_func3(struct work_struct *ws)
1250{
1251 struct usb_hub *hub = container_of(ws, struct usb_hub, init_work.work);
1252
1253 hub_activate(hub, HUB_INIT3);
1254}
1255
Alan Stern43303542008-04-28 11:07:31 -04001256enum hub_quiescing_type {
1257 HUB_DISCONNECT, HUB_PRE_RESET, HUB_SUSPEND
1258};
1259
1260static void hub_quiesce(struct usb_hub *hub, enum hub_quiescing_type type)
1261{
1262 struct usb_device *hdev = hub->hdev;
1263 int i;
1264
Alan Stern8520f382008-09-22 14:44:26 -04001265 cancel_delayed_work_sync(&hub->init_work);
1266
Alan Stern43303542008-04-28 11:07:31 -04001267 /* khubd and related activity won't re-trigger */
1268 hub->quiescing = 1;
1269
1270 if (type != HUB_SUSPEND) {
1271 /* Disconnect all the children */
1272 for (i = 0; i < hdev->maxchild; ++i) {
Lan Tianyuff823c792012-09-05 13:44:32 +08001273 if (hub->ports[i]->child)
1274 usb_disconnect(&hub->ports[i]->child);
Alan Stern43303542008-04-28 11:07:31 -04001275 }
1276 }
1277
1278 /* Stop khubd and related activity */
1279 usb_kill_urb(hub->urb);
1280 if (hub->has_indicators)
1281 cancel_delayed_work_sync(&hub->leds);
1282 if (hub->tt.hub)
Octavian Purdila036546b2012-10-23 11:33:12 +03001283 flush_work(&hub->tt.clear_work);
Alan Stern43303542008-04-28 11:07:31 -04001284}
1285
Alan Stern600856c2014-05-20 18:08:07 -07001286static void hub_pm_barrier_for_all_ports(struct usb_hub *hub)
1287{
1288 int i;
1289
1290 for (i = 0; i < hub->hdev->maxchild; ++i)
1291 pm_runtime_barrier(&hub->ports[i]->dev);
1292}
1293
Alan Stern3eb14912008-03-03 15:15:43 -05001294/* caller has locked the hub device */
1295static int hub_pre_reset(struct usb_interface *intf)
1296{
1297 struct usb_hub *hub = usb_get_intfdata(intf);
1298
Alan Stern43303542008-04-28 11:07:31 -04001299 hub_quiesce(hub, HUB_PRE_RESET);
Alan Stern600856c2014-05-20 18:08:07 -07001300 hub->in_reset = 1;
1301 hub_pm_barrier_for_all_ports(hub);
Alan Sternf07600c2007-05-30 15:38:16 -04001302 return 0;
Alan Stern7d069b72005-11-18 12:06:34 -05001303}
1304
1305/* caller has locked the hub device */
Alan Sternf07600c2007-05-30 15:38:16 -04001306static int hub_post_reset(struct usb_interface *intf)
Alan Stern7d069b72005-11-18 12:06:34 -05001307{
Alan Stern7de18d82006-06-01 13:37:24 -04001308 struct usb_hub *hub = usb_get_intfdata(intf);
1309
Alan Stern600856c2014-05-20 18:08:07 -07001310 hub->in_reset = 0;
1311 hub_pm_barrier_for_all_ports(hub);
Alan Sternf2835212008-04-28 11:07:17 -04001312 hub_activate(hub, HUB_POST_RESET);
Alan Sternf07600c2007-05-30 15:38:16 -04001313 return 0;
Alan Stern7d069b72005-11-18 12:06:34 -05001314}
1315
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316static int hub_configure(struct usb_hub *hub,
1317 struct usb_endpoint_descriptor *endpoint)
1318{
Sarah Sharpb356b7c2009-09-04 10:53:24 -07001319 struct usb_hcd *hcd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 struct usb_device *hdev = hub->hdev;
1321 struct device *hub_dev = hub->intfdev;
1322 u16 hubstatus, hubchange;
Greg Kroah-Hartman74ad9bd2005-06-20 21:15:16 -07001323 u16 wHubCharacteristics;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 unsigned int pipe;
Lan Tianyufa2a9562012-09-05 13:44:31 +08001325 int maxp, ret, i;
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001326 char *message = "out of memory";
Sebastian Andrzej Siewior430ee582012-12-18 15:25:47 +01001327 unsigned unit_load;
1328 unsigned full_load;
Dan Williamsd8521af2014-05-20 18:08:28 -07001329 unsigned maxchild;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330
Alan Sternd697cdd2009-10-27 15:18:46 -04001331 hub->buffer = kmalloc(sizeof(*hub->buffer), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 if (!hub->buffer) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 ret = -ENOMEM;
1334 goto fail;
1335 }
1336
1337 hub->status = kmalloc(sizeof(*hub->status), GFP_KERNEL);
1338 if (!hub->status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 ret = -ENOMEM;
1340 goto fail;
1341 }
Alan Sterndb90e7a2007-02-05 09:56:15 -05001342 mutex_init(&hub->status_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343
1344 hub->descriptor = kmalloc(sizeof(*hub->descriptor), GFP_KERNEL);
1345 if (!hub->descriptor) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 ret = -ENOMEM;
1347 goto fail;
1348 }
1349
1350 /* Request the entire hub descriptor.
1351 * hub->descriptor can handle USB_MAXCHILDREN ports,
1352 * but the hub can/will return fewer bytes here.
1353 */
John Youndbe79bb2001-09-17 00:00:00 -07001354 ret = get_hub_descriptor(hdev, hub->descriptor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 if (ret < 0) {
1356 message = "can't read hub descriptor";
1357 goto fail;
1358 } else if (hub->descriptor->bNbrPorts > USB_MAXCHILDREN) {
1359 message = "hub has too many ports!";
1360 ret = -ENODEV;
1361 goto fail;
David Linares769d73682013-03-25 10:50:27 +00001362 } else if (hub->descriptor->bNbrPorts == 0) {
1363 message = "hub doesn't have any ports!";
1364 ret = -ENODEV;
1365 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 }
1367
Dan Williamsd8521af2014-05-20 18:08:28 -07001368 maxchild = hub->descriptor->bNbrPorts;
1369 dev_info(hub_dev, "%d port%s detected\n", maxchild,
1370 (maxchild == 1) ? "" : "s");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371
Dan Williamsd8521af2014-05-20 18:08:28 -07001372 hub->ports = kzalloc(maxchild * sizeof(struct usb_port *), GFP_KERNEL);
Lan Tianyuff823c792012-09-05 13:44:32 +08001373 if (!hub->ports) {
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001374 ret = -ENOMEM;
1375 goto fail;
1376 }
1377
Greg Kroah-Hartman74ad9bd2005-06-20 21:15:16 -07001378 wHubCharacteristics = le16_to_cpu(hub->descriptor->wHubCharacteristics);
Sebastian Andrzej Siewior430ee582012-12-18 15:25:47 +01001379 if (hub_is_superspeed(hdev)) {
1380 unit_load = 150;
1381 full_load = 900;
1382 } else {
1383 unit_load = 100;
1384 full_load = 500;
1385 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386
John Youndbe79bb2001-09-17 00:00:00 -07001387 /* FIXME for USB 3.0, skip for now */
1388 if ((wHubCharacteristics & HUB_CHAR_COMPOUND) &&
1389 !(hub_is_superspeed(hdev))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 int i;
Matthias Beyer469271f2013-10-10 23:41:27 +02001391 char portstr[USB_MAXCHILDREN + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392
Dan Williamsd8521af2014-05-20 18:08:28 -07001393 for (i = 0; i < maxchild; i++)
John Youndbe79bb2001-09-17 00:00:00 -07001394 portstr[i] = hub->descriptor->u.hs.DeviceRemovable
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 [((i + 1) / 8)] & (1 << ((i + 1) % 8))
1396 ? 'F' : 'R';
Dan Williamsd8521af2014-05-20 18:08:28 -07001397 portstr[maxchild] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 dev_dbg(hub_dev, "compound device; port removable status: %s\n", portstr);
1399 } else
1400 dev_dbg(hub_dev, "standalone hub\n");
1401
Greg Kroah-Hartman74ad9bd2005-06-20 21:15:16 -07001402 switch (wHubCharacteristics & HUB_CHAR_LPSM) {
Aman Deep7bf01182011-12-08 12:05:22 +05301403 case HUB_CHAR_COMMON_LPSM:
1404 dev_dbg(hub_dev, "ganged power switching\n");
1405 break;
1406 case HUB_CHAR_INDV_PORT_LPSM:
1407 dev_dbg(hub_dev, "individual port power switching\n");
1408 break;
1409 case HUB_CHAR_NO_LPSM:
1410 case HUB_CHAR_LPSM:
1411 dev_dbg(hub_dev, "no power switching (usb 1.0)\n");
1412 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 }
1414
Greg Kroah-Hartman74ad9bd2005-06-20 21:15:16 -07001415 switch (wHubCharacteristics & HUB_CHAR_OCPM) {
Aman Deep7bf01182011-12-08 12:05:22 +05301416 case HUB_CHAR_COMMON_OCPM:
1417 dev_dbg(hub_dev, "global over-current protection\n");
1418 break;
1419 case HUB_CHAR_INDV_PORT_OCPM:
1420 dev_dbg(hub_dev, "individual port over-current protection\n");
1421 break;
1422 case HUB_CHAR_NO_OCPM:
1423 case HUB_CHAR_OCPM:
1424 dev_dbg(hub_dev, "no over-current protection\n");
1425 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 }
1427
1428 spin_lock_init (&hub->tt.lock);
1429 INIT_LIST_HEAD (&hub->tt.clear_list);
Alan Sterncb88a1b2009-06-29 10:43:32 -04001430 INIT_WORK(&hub->tt.clear_work, hub_tt_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 switch (hdev->descriptor.bDeviceProtocol) {
Aman Deep7bf01182011-12-08 12:05:22 +05301432 case USB_HUB_PR_FS:
1433 break;
1434 case USB_HUB_PR_HS_SINGLE_TT:
1435 dev_dbg(hub_dev, "Single TT\n");
1436 hub->tt.hub = hdev;
1437 break;
1438 case USB_HUB_PR_HS_MULTI_TT:
1439 ret = usb_set_interface(hdev, 0, 1);
1440 if (ret == 0) {
1441 dev_dbg(hub_dev, "TT per port\n");
1442 hub->tt.multi = 1;
1443 } else
1444 dev_err(hub_dev, "Using single TT (err %d)\n",
1445 ret);
1446 hub->tt.hub = hdev;
1447 break;
1448 case USB_HUB_PR_SS:
1449 /* USB 3.0 hubs don't have a TT */
1450 break;
1451 default:
1452 dev_dbg(hub_dev, "Unrecognized hub protocol %d\n",
1453 hdev->descriptor.bDeviceProtocol);
1454 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 }
1456
david-b@pacbell.nete09711a2005-08-13 18:41:04 -07001457 /* Note 8 FS bit times == (8 bits / 12000000 bps) ~= 666ns */
Greg Kroah-Hartman74ad9bd2005-06-20 21:15:16 -07001458 switch (wHubCharacteristics & HUB_CHAR_TTTT) {
Matthias Beyer469271f2013-10-10 23:41:27 +02001459 case HUB_TTTT_8_BITS:
1460 if (hdev->descriptor.bDeviceProtocol != 0) {
1461 hub->tt.think_time = 666;
david-b@pacbell.nete09711a2005-08-13 18:41:04 -07001462 dev_dbg(hub_dev, "TT requires at most %d "
1463 "FS bit times (%d ns)\n",
Matthias Beyer469271f2013-10-10 23:41:27 +02001464 8, hub->tt.think_time);
1465 }
1466 break;
1467 case HUB_TTTT_16_BITS:
1468 hub->tt.think_time = 666 * 2;
1469 dev_dbg(hub_dev, "TT requires at most %d "
1470 "FS bit times (%d ns)\n",
1471 16, hub->tt.think_time);
1472 break;
1473 case HUB_TTTT_24_BITS:
1474 hub->tt.think_time = 666 * 3;
1475 dev_dbg(hub_dev, "TT requires at most %d "
1476 "FS bit times (%d ns)\n",
1477 24, hub->tt.think_time);
1478 break;
1479 case HUB_TTTT_32_BITS:
1480 hub->tt.think_time = 666 * 4;
1481 dev_dbg(hub_dev, "TT requires at most %d "
1482 "FS bit times (%d ns)\n",
1483 32, hub->tt.think_time);
1484 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485 }
1486
1487 /* probe() zeroes hub->indicator[] */
Greg Kroah-Hartman74ad9bd2005-06-20 21:15:16 -07001488 if (wHubCharacteristics & HUB_CHAR_PORTIND) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489 hub->has_indicators = 1;
1490 dev_dbg(hub_dev, "Port indicators are supported\n");
1491 }
1492
1493 dev_dbg(hub_dev, "power on to power good time: %dms\n",
1494 hub->descriptor->bPwrOn2PwrGood * 2);
1495
1496 /* power budgeting mostly matters with bus-powered hubs,
1497 * and battery-powered root hubs (may provide just 8 mA).
1498 */
1499 ret = usb_get_status(hdev, USB_RECIP_DEVICE, 0, &hubstatus);
Alan Stern15b73362013-07-30 15:35:40 -04001500 if (ret) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501 message = "can't get hub status";
1502 goto fail;
1503 }
Sebastian Andrzej Siewior430ee582012-12-18 15:25:47 +01001504 hcd = bus_to_hcd(hdev->bus);
Alan Stern7d35b922005-04-25 11:18:32 -04001505 if (hdev == hdev->bus->root_hub) {
Sebastian Andrzej Siewior430ee582012-12-18 15:25:47 +01001506 if (hcd->power_budget > 0)
1507 hdev->bus_mA = hcd->power_budget;
1508 else
Dan Williamsd8521af2014-05-20 18:08:28 -07001509 hdev->bus_mA = full_load * maxchild;
Sebastian Andrzej Siewior430ee582012-12-18 15:25:47 +01001510 if (hdev->bus_mA >= full_load)
1511 hub->mA_per_port = full_load;
Alan Stern55c52712005-11-23 12:03:12 -05001512 else {
1513 hub->mA_per_port = hdev->bus_mA;
1514 hub->limited_power = 1;
1515 }
Alan Stern7d35b922005-04-25 11:18:32 -04001516 } else if ((hubstatus & (1 << USB_DEVICE_SELF_POWERED)) == 0) {
Sebastian Andrzej Siewior430ee582012-12-18 15:25:47 +01001517 int remaining = hdev->bus_mA -
1518 hub->descriptor->bHubContrCurrent;
1519
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520 dev_dbg(hub_dev, "hub controller current requirement: %dmA\n",
1521 hub->descriptor->bHubContrCurrent);
Alan Stern55c52712005-11-23 12:03:12 -05001522 hub->limited_power = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523
Dan Williamsd8521af2014-05-20 18:08:28 -07001524 if (remaining < maxchild * unit_load)
Sebastian Andrzej Siewior430ee582012-12-18 15:25:47 +01001525 dev_warn(hub_dev,
Alan Stern55c52712005-11-23 12:03:12 -05001526 "insufficient power available "
1527 "to use all downstream ports\n");
Sebastian Andrzej Siewior430ee582012-12-18 15:25:47 +01001528 hub->mA_per_port = unit_load; /* 7.2.1 */
1529
Alan Stern55c52712005-11-23 12:03:12 -05001530 } else { /* Self-powered external hub */
1531 /* FIXME: What about battery-powered external hubs that
1532 * provide less current per port? */
Sebastian Andrzej Siewior430ee582012-12-18 15:25:47 +01001533 hub->mA_per_port = full_load;
Alan Stern55c52712005-11-23 12:03:12 -05001534 }
Sebastian Andrzej Siewior430ee582012-12-18 15:25:47 +01001535 if (hub->mA_per_port < full_load)
Alan Stern55c52712005-11-23 12:03:12 -05001536 dev_dbg(hub_dev, "%umA bus power budget for each child\n",
1537 hub->mA_per_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538
Sarah Sharpb356b7c2009-09-04 10:53:24 -07001539 /* Update the HCD's internal representation of this hub before khubd
1540 * starts getting port status changes for devices under the hub.
1541 */
Sarah Sharpb356b7c2009-09-04 10:53:24 -07001542 if (hcd->driver->update_hub_device) {
1543 ret = hcd->driver->update_hub_device(hcd, hdev,
1544 &hub->tt, GFP_KERNEL);
1545 if (ret < 0) {
1546 message = "can't update HCD hub info";
1547 goto fail;
1548 }
1549 }
1550
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 ret = hub_hub_status(hub, &hubstatus, &hubchange);
1552 if (ret < 0) {
1553 message = "can't get hub status";
1554 goto fail;
1555 }
1556
1557 /* local power status reports aren't always correct */
1558 if (hdev->actconfig->desc.bmAttributes & USB_CONFIG_ATT_SELFPOWER)
1559 dev_dbg(hub_dev, "local power source is %s\n",
1560 (hubstatus & HUB_STATUS_LOCAL_POWER)
1561 ? "lost (inactive)" : "good");
1562
Greg Kroah-Hartman74ad9bd2005-06-20 21:15:16 -07001563 if ((wHubCharacteristics & HUB_CHAR_OCPM) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 dev_dbg(hub_dev, "%sover-current condition exists\n",
1565 (hubstatus & HUB_STATUS_OVERCURRENT) ? "" : "no ");
1566
inaky@linux.intel.com88fafff2006-10-11 20:05:59 -07001567 /* set up the interrupt endpoint
1568 * We use the EP's maxpacket size instead of (PORTS+1+7)/8
1569 * bytes as USB2.0[11.12.3] says because some hubs are known
1570 * to send more data (and thus cause overflow). For root hubs,
1571 * maxpktsize is defined in hcd.c's fake endpoint descriptors
1572 * to be big enough for at least USB_MAXCHILDREN ports. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573 pipe = usb_rcvintpipe(hdev, endpoint->bEndpointAddress);
1574 maxp = usb_maxpacket(hdev, pipe, usb_pipeout(pipe));
1575
1576 if (maxp > sizeof(*hub->buffer))
1577 maxp = sizeof(*hub->buffer);
1578
1579 hub->urb = usb_alloc_urb(0, GFP_KERNEL);
1580 if (!hub->urb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 ret = -ENOMEM;
1582 goto fail;
1583 }
1584
1585 usb_fill_int_urb(hub->urb, hdev, pipe, *hub->buffer, maxp, hub_irq,
1586 hub, endpoint->bInterval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587
1588 /* maybe cycle the hub leds */
1589 if (hub->has_indicators && blinkenlights)
Matthias Beyer469271f2013-10-10 23:41:27 +02001590 hub->indicator[0] = INDICATOR_CYCLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591
Dan Williamsd8521af2014-05-20 18:08:28 -07001592 mutex_lock(&usb_port_peer_mutex);
1593 for (i = 0; i < maxchild; i++) {
Krzysztof Mazure58547e2013-08-22 14:49:39 +02001594 ret = usb_hub_create_port_device(hub, i + 1);
1595 if (ret < 0) {
Lan Tianyufa2a9562012-09-05 13:44:31 +08001596 dev_err(hub->intfdev,
1597 "couldn't create port%d device.\n", i + 1);
Dan Williamsd8521af2014-05-20 18:08:28 -07001598 break;
Krzysztof Mazure58547e2013-08-22 14:49:39 +02001599 }
1600 }
Dan Williamsd8521af2014-05-20 18:08:28 -07001601 hdev->maxchild = i;
1602 mutex_unlock(&usb_port_peer_mutex);
1603 if (ret < 0)
1604 goto fail;
Lan Tianyufa2a9562012-09-05 13:44:31 +08001605
Lan Tianyud2123fd2013-01-21 22:18:00 +08001606 usb_hub_adjust_deviceremovable(hdev, hub->descriptor);
1607
Alan Sternf2835212008-04-28 11:07:17 -04001608 hub_activate(hub, HUB_INIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 return 0;
1610
1611fail:
1612 dev_err (hub_dev, "config failed, %s (err %d)\n",
1613 message, ret);
1614 /* hub_disconnect() frees urb and descriptor */
1615 return ret;
1616}
1617
Alan Sterne8054852007-05-04 11:55:11 -04001618static void hub_release(struct kref *kref)
1619{
1620 struct usb_hub *hub = container_of(kref, struct usb_hub, kref);
1621
1622 usb_put_intf(to_usb_interface(hub->intfdev));
1623 kfree(hub);
1624}
1625
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626static unsigned highspeed_hubs;
1627
1628static void hub_disconnect(struct usb_interface *intf)
1629{
Huajun Li88162302012-03-12 21:00:19 +08001630 struct usb_hub *hub = usb_get_intfdata(intf);
Greg Kroah-Hartmanfa286182012-05-14 09:20:37 -07001631 struct usb_device *hdev = interface_to_usbdev(intf);
Alan Stern543d7782014-01-07 10:43:02 -05001632 int port1;
Lan Tianyufa2a9562012-09-05 13:44:31 +08001633
Alan Sterne8054852007-05-04 11:55:11 -04001634 /* Take the hub off the event list and don't let it be added again */
1635 spin_lock_irq(&hub_event_lock);
Alan Stern8e4ceb32009-12-07 13:01:37 -05001636 if (!list_empty(&hub->event_list)) {
1637 list_del_init(&hub->event_list);
1638 usb_autopm_put_interface_no_suspend(intf);
1639 }
Alan Sterne8054852007-05-04 11:55:11 -04001640 hub->disconnected = 1;
1641 spin_unlock_irq(&hub_event_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642
Alan Stern7de18d82006-06-01 13:37:24 -04001643 /* Disconnect all children and quiesce the hub */
1644 hub->error = 0;
Alan Stern43303542008-04-28 11:07:31 -04001645 hub_quiesce(hub, HUB_DISCONNECT);
Alan Stern7de18d82006-06-01 13:37:24 -04001646
Dan Williamsd8521af2014-05-20 18:08:28 -07001647 mutex_lock(&usb_port_peer_mutex);
1648
Alan Stern543d7782014-01-07 10:43:02 -05001649 /* Avoid races with recursively_mark_NOTATTACHED() */
1650 spin_lock_irq(&device_state_lock);
1651 port1 = hdev->maxchild;
1652 hdev->maxchild = 0;
1653 usb_set_intfdata(intf, NULL);
1654 spin_unlock_irq(&device_state_lock);
Alexander Shishkin1f2235b2012-09-12 14:48:31 +03001655
Alan Stern543d7782014-01-07 10:43:02 -05001656 for (; port1 > 0; --port1)
1657 usb_hub_remove_port_device(hub, port1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658
Dan Williamsd8521af2014-05-20 18:08:28 -07001659 mutex_unlock(&usb_port_peer_mutex);
1660
Alan Sterne8054852007-05-04 11:55:11 -04001661 if (hub->hdev->speed == USB_SPEED_HIGH)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 highspeed_hubs--;
1663
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664 usb_free_urb(hub->urb);
Lan Tianyufa2a9562012-09-05 13:44:31 +08001665 kfree(hub->ports);
Jesper Juhl1bc3c9e2005-04-18 17:39:34 -07001666 kfree(hub->descriptor);
Jesper Juhl1bc3c9e2005-04-18 17:39:34 -07001667 kfree(hub->status);
Alan Sternd697cdd2009-10-27 15:18:46 -04001668 kfree(hub->buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669
Lan Tianyu971fcd42013-01-23 04:26:29 +08001670 pm_suspend_ignore_children(&intf->dev, false);
Alan Sterne8054852007-05-04 11:55:11 -04001671 kref_put(&hub->kref, hub_release);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672}
1673
1674static int hub_probe(struct usb_interface *intf, const struct usb_device_id *id)
1675{
1676 struct usb_host_interface *desc;
1677 struct usb_endpoint_descriptor *endpoint;
1678 struct usb_device *hdev;
1679 struct usb_hub *hub;
1680
1681 desc = intf->cur_altsetting;
1682 hdev = interface_to_usbdev(intf);
1683
Ming Lei596d7892012-10-24 11:59:25 +08001684 /*
1685 * Set default autosuspend delay as 0 to speedup bus suspend,
1686 * based on the below considerations:
1687 *
1688 * - Unlike other drivers, the hub driver does not rely on the
1689 * autosuspend delay to provide enough time to handle a wakeup
1690 * event, and the submitted status URB is just to check future
1691 * change on hub downstream ports, so it is safe to do it.
1692 *
1693 * - The patch might cause one or more auto supend/resume for
1694 * below very rare devices when they are plugged into hub
1695 * first time:
1696 *
1697 * devices having trouble initializing, and disconnect
1698 * themselves from the bus and then reconnect a second
1699 * or so later
1700 *
1701 * devices just for downloading firmware, and disconnects
1702 * themselves after completing it
1703 *
1704 * For these quite rare devices, their drivers may change the
1705 * autosuspend delay of their parent hub in the probe() to one
1706 * appropriate value to avoid the subtle problem if someone
1707 * does care it.
1708 *
1709 * - The patch may cause one or more auto suspend/resume on
1710 * hub during running 'lsusb', but it is probably too
1711 * infrequent to worry about.
1712 *
1713 * - Change autosuspend delay of hub can avoid unnecessary auto
1714 * suspend timer for hub, also may decrease power consumption
1715 * of USB bus.
1716 */
1717 pm_runtime_set_autosuspend_delay(&hdev->dev, 0);
1718
Sarah Sharp2839f5b2012-01-06 16:27:25 -08001719 /* Hubs have proper suspend/resume support. */
1720 usb_enable_autosuspend(hdev);
Alan Stern088f7fe2010-01-08 12:56:54 -05001721
Felipe Balbi38f3ad52008-06-12 10:49:47 +03001722 if (hdev->level == MAX_TOPO_LEVEL) {
Wu Fengguangb9cef6c2008-12-15 15:32:01 +08001723 dev_err(&intf->dev,
1724 "Unsupported bus topology: hub nested too deep\n");
Felipe Balbi38f3ad52008-06-12 10:49:47 +03001725 return -E2BIG;
1726 }
1727
David Brownell89ccbdc2006-04-02 10:18:09 -08001728#ifdef CONFIG_USB_OTG_BLACKLIST_HUB
1729 if (hdev->parent) {
1730 dev_warn(&intf->dev, "ignoring external hub\n");
1731 return -ENODEV;
1732 }
1733#endif
1734
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735 /* Some hubs have a subclass of 1, which AFAICT according to the */
1736 /* specs is not defined, but it works */
1737 if ((desc->desc.bInterfaceSubClass != 0) &&
1738 (desc->desc.bInterfaceSubClass != 1)) {
1739descriptor_error:
1740 dev_err (&intf->dev, "bad descriptor, ignoring hub\n");
1741 return -EIO;
1742 }
1743
1744 /* Multiple endpoints? What kind of mutant ninja-hub is this? */
1745 if (desc->desc.bNumEndpoints != 1)
1746 goto descriptor_error;
1747
1748 endpoint = &desc->endpoint[0].desc;
1749
Luiz Fernando N. Capitulinofbf81c22006-09-27 11:58:53 -07001750 /* If it's not an interrupt in endpoint, we'd better punt! */
1751 if (!usb_endpoint_is_int_in(endpoint))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 goto descriptor_error;
1753
1754 /* We found a hub */
1755 dev_info (&intf->dev, "USB hub found\n");
1756
Alan Stern0a1ef3b2005-10-24 15:38:24 -04001757 hub = kzalloc(sizeof(*hub), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 if (!hub) {
1759 dev_dbg (&intf->dev, "couldn't kmalloc hub struct\n");
1760 return -ENOMEM;
1761 }
1762
Alan Sterne8054852007-05-04 11:55:11 -04001763 kref_init(&hub->kref);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 INIT_LIST_HEAD(&hub->event_list);
1765 hub->intfdev = &intf->dev;
1766 hub->hdev = hdev;
David Howellsc4028952006-11-22 14:57:56 +00001767 INIT_DELAYED_WORK(&hub->leds, led_work);
Alan Stern8520f382008-09-22 14:44:26 -04001768 INIT_DELAYED_WORK(&hub->init_work, NULL);
Alan Sterne8054852007-05-04 11:55:11 -04001769 usb_get_intf(intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770
1771 usb_set_intfdata (intf, hub);
Alan Stern40f122f2006-11-09 14:44:33 -05001772 intf->needs_remote_wakeup = 1;
Lan Tianyu971fcd42013-01-23 04:26:29 +08001773 pm_suspend_ignore_children(&intf->dev, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774
1775 if (hdev->speed == USB_SPEED_HIGH)
1776 highspeed_hubs++;
1777
Ming Leie6f30de2012-10-24 11:59:24 +08001778 if (id->driver_info & HUB_QUIRK_CHECK_PORT_AUTOSUSPEND)
1779 hub->quirk_check_port_auto_suspend = 1;
1780
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781 if (hub_configure(hub, endpoint) >= 0)
1782 return 0;
1783
1784 hub_disconnect (intf);
1785 return -ENODEV;
1786}
1787
1788static int
1789hub_ioctl(struct usb_interface *intf, unsigned int code, void *user_data)
1790{
1791 struct usb_device *hdev = interface_to_usbdev (intf);
Lan Tianyuad493e52013-01-23 04:26:30 +08001792 struct usb_hub *hub = usb_hub_to_struct_hub(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793
1794 /* assert ifno == 0 (part of hub spec) */
1795 switch (code) {
1796 case USBDEVFS_HUB_PORTINFO: {
1797 struct usbdevfs_hub_portinfo *info = user_data;
1798 int i;
1799
1800 spin_lock_irq(&device_state_lock);
1801 if (hdev->devnum <= 0)
1802 info->nports = 0;
1803 else {
1804 info->nports = hdev->maxchild;
1805 for (i = 0; i < info->nports; i++) {
Lan Tianyuff823c792012-09-05 13:44:32 +08001806 if (hub->ports[i]->child == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807 info->port[i] = 0;
1808 else
1809 info->port[i] =
Lan Tianyuff823c792012-09-05 13:44:32 +08001810 hub->ports[i]->child->devnum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811 }
1812 }
1813 spin_unlock_irq(&device_state_lock);
1814
1815 return info->nports + 1;
1816 }
1817
1818 default:
1819 return -ENOSYS;
1820 }
1821}
1822
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001823/*
1824 * Allow user programs to claim ports on a hub. When a device is attached
1825 * to one of these "claimed" ports, the program will "own" the device.
1826 */
1827static int find_port_owner(struct usb_device *hdev, unsigned port1,
Valentina Manea9b6f0c42014-03-10 10:36:40 +02001828 struct usb_dev_state ***ppowner)
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001829{
Mathias Nyman413412612013-06-18 17:28:48 +03001830 struct usb_hub *hub = usb_hub_to_struct_hub(hdev);
1831
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001832 if (hdev->state == USB_STATE_NOTATTACHED)
1833 return -ENODEV;
1834 if (port1 == 0 || port1 > hdev->maxchild)
1835 return -EINVAL;
1836
Mathias Nyman413412612013-06-18 17:28:48 +03001837 /* Devices not managed by the hub driver
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001838 * will always have maxchild equal to 0.
1839 */
Mathias Nyman413412612013-06-18 17:28:48 +03001840 *ppowner = &(hub->ports[port1 - 1]->port_owner);
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001841 return 0;
1842}
1843
1844/* In the following three functions, the caller must hold hdev's lock */
Lan Tianyu336c5c32012-07-06 14:13:52 +08001845int usb_hub_claim_port(struct usb_device *hdev, unsigned port1,
Valentina Manea9b6f0c42014-03-10 10:36:40 +02001846 struct usb_dev_state *owner)
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001847{
1848 int rc;
Valentina Manea9b6f0c42014-03-10 10:36:40 +02001849 struct usb_dev_state **powner;
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001850
1851 rc = find_port_owner(hdev, port1, &powner);
1852 if (rc)
1853 return rc;
1854 if (*powner)
1855 return -EBUSY;
1856 *powner = owner;
1857 return rc;
1858}
Valentina Manea6080cd02014-03-08 14:53:34 +02001859EXPORT_SYMBOL_GPL(usb_hub_claim_port);
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001860
Lan Tianyu336c5c32012-07-06 14:13:52 +08001861int usb_hub_release_port(struct usb_device *hdev, unsigned port1,
Valentina Manea9b6f0c42014-03-10 10:36:40 +02001862 struct usb_dev_state *owner)
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001863{
1864 int rc;
Valentina Manea9b6f0c42014-03-10 10:36:40 +02001865 struct usb_dev_state **powner;
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001866
1867 rc = find_port_owner(hdev, port1, &powner);
1868 if (rc)
1869 return rc;
1870 if (*powner != owner)
1871 return -ENOENT;
1872 *powner = NULL;
1873 return rc;
1874}
Valentina Manea6080cd02014-03-08 14:53:34 +02001875EXPORT_SYMBOL_GPL(usb_hub_release_port);
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001876
Valentina Manea9b6f0c42014-03-10 10:36:40 +02001877void usb_hub_release_all_ports(struct usb_device *hdev, struct usb_dev_state *owner)
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001878{
Lan Tianyuad493e52013-01-23 04:26:30 +08001879 struct usb_hub *hub = usb_hub_to_struct_hub(hdev);
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001880 int n;
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001881
Lan Tianyufa2a9562012-09-05 13:44:31 +08001882 for (n = 0; n < hdev->maxchild; n++) {
1883 if (hub->ports[n]->port_owner == owner)
1884 hub->ports[n]->port_owner = NULL;
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001885 }
Lan Tianyufa2a9562012-09-05 13:44:31 +08001886
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001887}
1888
1889/* The caller must hold udev's lock */
1890bool usb_device_is_owned(struct usb_device *udev)
1891{
1892 struct usb_hub *hub;
1893
1894 if (udev->state == USB_STATE_NOTATTACHED || !udev->parent)
1895 return false;
Lan Tianyuad493e52013-01-23 04:26:30 +08001896 hub = usb_hub_to_struct_hub(udev->parent);
Lan Tianyufa2a9562012-09-05 13:44:31 +08001897 return !!hub->ports[udev->portnum - 1]->port_owner;
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001898}
1899
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900static void recursively_mark_NOTATTACHED(struct usb_device *udev)
1901{
Lan Tianyuad493e52013-01-23 04:26:30 +08001902 struct usb_hub *hub = usb_hub_to_struct_hub(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903 int i;
1904
1905 for (i = 0; i < udev->maxchild; ++i) {
Lan Tianyuff823c792012-09-05 13:44:32 +08001906 if (hub->ports[i]->child)
1907 recursively_mark_NOTATTACHED(hub->ports[i]->child);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 }
Alan Stern9bbdf1e2010-01-08 12:57:28 -05001909 if (udev->state == USB_STATE_SUSPENDED)
Sarah Sharp15123002007-12-21 16:54:15 -08001910 udev->active_duration -= jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911 udev->state = USB_STATE_NOTATTACHED;
1912}
1913
1914/**
1915 * usb_set_device_state - change a device's current state (usbcore, hcds)
1916 * @udev: pointer to device whose state should be changed
1917 * @new_state: new state value to be stored
1918 *
1919 * udev->state is _not_ fully protected by the device lock. Although
1920 * most transitions are made only while holding the lock, the state can
1921 * can change to USB_STATE_NOTATTACHED at almost any time. This
1922 * is so that devices can be marked as disconnected as soon as possible,
1923 * without having to wait for any semaphores to be released. As a result,
1924 * all changes to any device's state must be protected by the
1925 * device_state_lock spinlock.
1926 *
1927 * Once a device has been added to the device tree, all changes to its state
1928 * should be made using this routine. The state should _not_ be set directly.
1929 *
1930 * If udev->state is already USB_STATE_NOTATTACHED then no change is made.
1931 * Otherwise udev->state is set to new_state, and if new_state is
1932 * USB_STATE_NOTATTACHED then all of udev's descendants' states are also set
1933 * to USB_STATE_NOTATTACHED.
1934 */
1935void usb_set_device_state(struct usb_device *udev,
1936 enum usb_device_state new_state)
1937{
1938 unsigned long flags;
Rafael J. Wysocki4681b172011-02-08 23:25:48 +01001939 int wakeup = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940
1941 spin_lock_irqsave(&device_state_lock, flags);
1942 if (udev->state == USB_STATE_NOTATTACHED)
1943 ; /* do nothing */
David Brownellb94dc6b2005-09-12 19:39:39 -07001944 else if (new_state != USB_STATE_NOTATTACHED) {
David Brownellfb669cc2006-01-24 08:40:27 -08001945
1946 /* root hub wakeup capabilities are managed out-of-band
1947 * and may involve silicon errata ... ignore them here.
1948 */
1949 if (udev->parent) {
Alan Stern645daaa2006-08-30 15:47:02 -04001950 if (udev->state == USB_STATE_SUSPENDED
1951 || new_state == USB_STATE_SUSPENDED)
1952 ; /* No change to wakeup settings */
1953 else if (new_state == USB_STATE_CONFIGURED)
Rafael J. Wysocki4681b172011-02-08 23:25:48 +01001954 wakeup = udev->actconfig->desc.bmAttributes
1955 & USB_CONFIG_ATT_WAKEUP;
Alan Stern645daaa2006-08-30 15:47:02 -04001956 else
Rafael J. Wysocki4681b172011-02-08 23:25:48 +01001957 wakeup = 0;
David Brownellfb669cc2006-01-24 08:40:27 -08001958 }
Sarah Sharp15123002007-12-21 16:54:15 -08001959 if (udev->state == USB_STATE_SUSPENDED &&
1960 new_state != USB_STATE_SUSPENDED)
1961 udev->active_duration -= jiffies;
1962 else if (new_state == USB_STATE_SUSPENDED &&
1963 udev->state != USB_STATE_SUSPENDED)
1964 udev->active_duration += jiffies;
Alan Stern645daaa2006-08-30 15:47:02 -04001965 udev->state = new_state;
David Brownellb94dc6b2005-09-12 19:39:39 -07001966 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967 recursively_mark_NOTATTACHED(udev);
1968 spin_unlock_irqrestore(&device_state_lock, flags);
Rafael J. Wysocki4681b172011-02-08 23:25:48 +01001969 if (wakeup >= 0)
1970 device_set_wakeup_capable(&udev->dev, wakeup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971}
David Vrabel6da9c992009-02-18 14:43:47 +00001972EXPORT_SYMBOL_GPL(usb_set_device_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973
Inaky Perez-Gonzalez8af548d2008-04-08 13:24:46 -07001974/*
Alan Stern3b29b682011-02-22 09:53:41 -05001975 * Choose a device number.
1976 *
1977 * Device numbers are used as filenames in usbfs. On USB-1.1 and
1978 * USB-2.0 buses they are also used as device addresses, however on
1979 * USB-3.0 buses the address is assigned by the controller hardware
1980 * and it usually is not the same as the device number.
1981 *
Inaky Perez-Gonzalez8af548d2008-04-08 13:24:46 -07001982 * WUSB devices are simple: they have no hubs behind, so the mapping
1983 * device <-> virtual port number becomes 1:1. Why? to simplify the
1984 * life of the device connection logic in
1985 * drivers/usb/wusbcore/devconnect.c. When we do the initial secret
1986 * handshake we need to assign a temporary address in the unauthorized
1987 * space. For simplicity we use the first virtual port number found to
1988 * be free [drivers/usb/wusbcore/devconnect.c:wusbhc_devconnect_ack()]
1989 * and that becomes it's address [X < 128] or its unauthorized address
1990 * [X | 0x80].
1991 *
1992 * We add 1 as an offset to the one-based USB-stack port number
1993 * (zero-based wusb virtual port index) for two reasons: (a) dev addr
1994 * 0 is reserved by USB for default address; (b) Linux's USB stack
1995 * uses always #1 for the root hub of the controller. So USB stack's
1996 * port #1, which is wusb virtual-port #0 has address #2.
Sarah Sharpc6515272009-04-27 19:57:26 -07001997 *
1998 * Devices connected under xHCI are not as simple. The host controller
1999 * supports virtualization, so the hardware assigns device addresses and
2000 * the HCD must setup data structures before issuing a set address
2001 * command to the hardware.
Inaky Perez-Gonzalez8af548d2008-04-08 13:24:46 -07002002 */
Alan Stern3b29b682011-02-22 09:53:41 -05002003static void choose_devnum(struct usb_device *udev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004{
2005 int devnum;
2006 struct usb_bus *bus = udev->bus;
2007
2008 /* If khubd ever becomes multithreaded, this will need a lock */
Inaky Perez-Gonzalez8af548d2008-04-08 13:24:46 -07002009 if (udev->wusb) {
2010 devnum = udev->portnum + 1;
2011 BUG_ON(test_bit(devnum, bus->devmap.devicemap));
2012 } else {
2013 /* Try to allocate the next devnum beginning at
2014 * bus->devnum_next. */
2015 devnum = find_next_zero_bit(bus->devmap.devicemap, 128,
2016 bus->devnum_next);
2017 if (devnum >= 128)
2018 devnum = find_next_zero_bit(bus->devmap.devicemap,
2019 128, 1);
Matthias Beyer469271f2013-10-10 23:41:27 +02002020 bus->devnum_next = (devnum >= 127 ? 1 : devnum + 1);
Inaky Perez-Gonzalez8af548d2008-04-08 13:24:46 -07002021 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022 if (devnum < 128) {
2023 set_bit(devnum, bus->devmap.devicemap);
2024 udev->devnum = devnum;
2025 }
2026}
2027
Alan Stern3b29b682011-02-22 09:53:41 -05002028static void release_devnum(struct usb_device *udev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029{
2030 if (udev->devnum > 0) {
2031 clear_bit(udev->devnum, udev->bus->devmap.devicemap);
2032 udev->devnum = -1;
2033 }
2034}
2035
Alan Stern3b29b682011-02-22 09:53:41 -05002036static void update_devnum(struct usb_device *udev, int devnum)
David Vrabel4953d142008-04-08 13:24:46 -07002037{
2038 /* The address for a WUSB device is managed by wusbcore. */
2039 if (!udev->wusb)
2040 udev->devnum = devnum;
2041}
2042
Herbert Xuf7410ce2010-01-10 20:15:03 +11002043static void hub_free_dev(struct usb_device *udev)
2044{
2045 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
2046
2047 /* Root hubs aren't real devices, so don't free HCD resources */
2048 if (hcd->driver->free_dev && udev->parent)
2049 hcd->driver->free_dev(hcd, udev);
2050}
2051
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052/**
2053 * usb_disconnect - disconnect a device (usbcore-internal)
2054 * @pdev: pointer to device being disconnected
2055 * Context: !in_interrupt ()
2056 *
2057 * Something got disconnected. Get rid of it and all of its children.
2058 *
2059 * If *pdev is a normal device then the parent hub must already be locked.
Bjorn Helgaasdb8f2aa2013-09-13 13:57:34 -06002060 * If *pdev is a root hub then the caller must hold the usb_bus_list_lock,
2061 * which protects the set of root hubs as well as the list of buses.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062 *
2063 * Only hub drivers (including virtual root hub drivers for host
2064 * controllers) should ever call this.
2065 *
2066 * This call is synchronous, and may not be used in an interrupt context.
2067 */
2068void usb_disconnect(struct usb_device **pdev)
2069{
2070 struct usb_device *udev = *pdev;
Lan Tianyuad493e52013-01-23 04:26:30 +08002071 struct usb_hub *hub = usb_hub_to_struct_hub(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072 int i;
2073
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074 /* mark the device as inactive, so any further urb submissions for
2075 * this device (and any of its children) will fail immediately.
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002076 * this quiesces everything except pending urbs.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077 */
2078 usb_set_device_state(udev, USB_STATE_NOTATTACHED);
Alan Stern3b29b682011-02-22 09:53:41 -05002079 dev_info(&udev->dev, "USB disconnect, device number %d\n",
2080 udev->devnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081
Alan Stern9ad3d6c2005-11-17 17:10:32 -05002082 usb_lock_device(udev);
2083
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084 /* Free up all the children before we remove this device */
Huajun Li88162302012-03-12 21:00:19 +08002085 for (i = 0; i < udev->maxchild; i++) {
Lan Tianyuff823c792012-09-05 13:44:32 +08002086 if (hub->ports[i]->child)
2087 usb_disconnect(&hub->ports[i]->child);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088 }
2089
2090 /* deallocate hcd/hardware state ... nuking all pending urbs and
2091 * cleaning up all state associated with the current configuration
2092 * so that the hardware is now fully quiesced.
2093 */
Alan Stern782da722006-07-01 22:09:35 -04002094 dev_dbg (&udev->dev, "unregistering device\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095 usb_disable_device(udev, 0);
Alan Sterncde217a2008-10-21 15:28:46 -04002096 usb_hcd_synchronize_unlinks(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097
Lan Tianyufde26382013-01-20 01:53:33 +08002098 if (udev->parent) {
Lan Tianyuad493e52013-01-23 04:26:30 +08002099 struct usb_hub *hub = usb_hub_to_struct_hub(udev->parent);
2100 struct usb_port *port_dev = hub->ports[udev->portnum - 1];
Lan Tianyufde26382013-01-20 01:53:33 +08002101
2102 sysfs_remove_link(&udev->dev.kobj, "port");
2103 sysfs_remove_link(&port_dev->dev.kobj, "device");
Lan Tianyu971fcd42013-01-23 04:26:29 +08002104
Lan Tianyuad493e52013-01-23 04:26:30 +08002105 if (!port_dev->did_runtime_put)
2106 pm_runtime_put(&port_dev->dev);
2107 else
2108 port_dev->did_runtime_put = false;
Lan Tianyufde26382013-01-20 01:53:33 +08002109 }
2110
Alan Stern3b23dd62008-12-05 14:10:34 -05002111 usb_remove_ep_devs(&udev->ep0);
Alan Stern782da722006-07-01 22:09:35 -04002112 usb_unlock_device(udev);
Greg Kroah-Hartman3099e752005-06-20 21:15:16 -07002113
Alan Stern782da722006-07-01 22:09:35 -04002114 /* Unregister the device. The device driver is responsible
Alan Stern3b23dd62008-12-05 14:10:34 -05002115 * for de-configuring the device and invoking the remove-device
2116 * notifier chain (used by usbfs and possibly others).
Alan Stern782da722006-07-01 22:09:35 -04002117 */
2118 device_del(&udev->dev);
2119
2120 /* Free the device number and delete the parent's children[]
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121 * (or root_hub) pointer.
2122 */
Alan Stern3b29b682011-02-22 09:53:41 -05002123 release_devnum(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124
2125 /* Avoid races with recursively_mark_NOTATTACHED() */
2126 spin_lock_irq(&device_state_lock);
2127 *pdev = NULL;
2128 spin_unlock_irq(&device_state_lock);
2129
Herbert Xuf7410ce2010-01-10 20:15:03 +11002130 hub_free_dev(udev);
2131
Alan Stern782da722006-07-01 22:09:35 -04002132 put_device(&udev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133}
2134
Greg Kroah-Hartmanf2a383e2007-11-26 22:11:55 -08002135#ifdef CONFIG_USB_ANNOUNCE_NEW_DEVICES
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136static void show_string(struct usb_device *udev, char *id, char *string)
2137{
2138 if (!string)
2139 return;
Joe Perchesf2ec5222012-10-28 01:05:51 -07002140 dev_info(&udev->dev, "%s: %s\n", id, string);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141}
2142
Greg Kroah-Hartmanf2a383e2007-11-26 22:11:55 -08002143static void announce_device(struct usb_device *udev)
2144{
2145 dev_info(&udev->dev, "New USB device found, idVendor=%04x, idProduct=%04x\n",
2146 le16_to_cpu(udev->descriptor.idVendor),
2147 le16_to_cpu(udev->descriptor.idProduct));
Wu Fengguangb9cef6c2008-12-15 15:32:01 +08002148 dev_info(&udev->dev,
2149 "New USB device strings: Mfr=%d, Product=%d, SerialNumber=%d\n",
Greg Kroah-Hartmanf2a383e2007-11-26 22:11:55 -08002150 udev->descriptor.iManufacturer,
2151 udev->descriptor.iProduct,
2152 udev->descriptor.iSerialNumber);
2153 show_string(udev, "Product", udev->product);
2154 show_string(udev, "Manufacturer", udev->manufacturer);
2155 show_string(udev, "SerialNumber", udev->serial);
2156}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157#else
Greg Kroah-Hartmanf2a383e2007-11-26 22:11:55 -08002158static inline void announce_device(struct usb_device *udev) { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159#endif
2160
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161#ifdef CONFIG_USB_OTG
2162#include "otg_whitelist.h"
2163#endif
2164
Oliver Neukum3ede7602007-01-11 14:35:50 +01002165/**
Alan Stern8d8558d2009-12-08 15:50:41 -05002166 * usb_enumerate_device_otg - FIXME (usbcore-internal)
Oliver Neukum3ede7602007-01-11 14:35:50 +01002167 * @udev: newly addressed device (in ADDRESS state)
2168 *
Alan Stern8d8558d2009-12-08 15:50:41 -05002169 * Finish enumeration for On-The-Go devices
Yacine Belkadi626f0902013-08-02 20:10:04 +02002170 *
2171 * Return: 0 if successful. A negative error code otherwise.
Oliver Neukum3ede7602007-01-11 14:35:50 +01002172 */
Alan Stern8d8558d2009-12-08 15:50:41 -05002173static int usb_enumerate_device_otg(struct usb_device *udev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174{
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07002175 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176
2177#ifdef CONFIG_USB_OTG
2178 /*
2179 * OTG-aware devices on OTG-capable root hubs may be able to use SRP,
2180 * to wake us after we've powered off VBUS; and HNP, switching roles
2181 * "host" to "peripheral". The OTG descriptor helps figure this out.
2182 */
2183 if (!udev->bus->is_b_host
2184 && udev->config
2185 && udev->parent == udev->bus->root_hub) {
Felipe Balbi2eb50522009-12-04 15:47:43 +02002186 struct usb_otg_descriptor *desc = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187 struct usb_bus *bus = udev->bus;
2188
2189 /* descriptor may appear anywhere in config */
2190 if (__usb_get_extra_descriptor (udev->rawdescriptors[0],
2191 le16_to_cpu(udev->config[0].desc.wTotalLength),
2192 USB_DT_OTG, (void **) &desc) == 0) {
2193 if (desc->bmAttributes & USB_OTG_HNP) {
Alan Stern12c3da32005-11-23 12:09:52 -05002194 unsigned port1 = udev->portnum;
David Brownellfc849b82006-09-18 16:53:26 -07002195
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196 dev_info(&udev->dev,
2197 "Dual-Role OTG device on %sHNP port\n",
2198 (port1 == bus->otg_port)
2199 ? "" : "non-");
2200
2201 /* enable HNP before suspend, it's simpler */
2202 if (port1 == bus->otg_port)
2203 bus->b_hnp_enable = 1;
2204 err = usb_control_msg(udev,
2205 usb_sndctrlpipe(udev, 0),
2206 USB_REQ_SET_FEATURE, 0,
2207 bus->b_hnp_enable
2208 ? USB_DEVICE_B_HNP_ENABLE
2209 : USB_DEVICE_A_ALT_HNP_SUPPORT,
2210 0, NULL, 0, USB_CTRL_SET_TIMEOUT);
2211 if (err < 0) {
2212 /* OTG MESSAGE: report errors here,
2213 * customize to match your product.
2214 */
2215 dev_info(&udev->dev,
Wu Fengguangb9cef6c2008-12-15 15:32:01 +08002216 "can't set HNP mode: %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217 err);
2218 bus->b_hnp_enable = 0;
2219 }
2220 }
2221 }
2222 }
2223
2224 if (!is_targeted(udev)) {
2225
2226 /* Maybe it can talk to us, though we can't talk to it.
2227 * (Includes HNP test device.)
2228 */
2229 if (udev->bus->b_hnp_enable || udev->bus->is_b_host) {
David Brownell634a84f2009-01-15 13:51:28 -08002230 err = usb_port_suspend(udev, PMSG_SUSPEND);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231 if (err < 0)
2232 dev_dbg(&udev->dev, "HNP fail, %d\n", err);
2233 }
Vikram Panditaffcdc182007-05-25 21:31:07 -07002234 err = -ENOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235 goto fail;
2236 }
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07002237fail:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238#endif
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07002239 return err;
2240}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07002242
2243/**
Alan Stern8d8558d2009-12-08 15:50:41 -05002244 * usb_enumerate_device - Read device configs/intfs/otg (usbcore-internal)
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07002245 * @udev: newly addressed device (in ADDRESS state)
2246 *
2247 * This is only called by usb_new_device() and usb_authorize_device()
2248 * and FIXME -- all comments that apply to them apply here wrt to
2249 * environment.
2250 *
2251 * If the device is WUSB and not authorized, we don't attempt to read
2252 * the string descriptors, as they will be errored out by the device
2253 * until it has been authorized.
Yacine Belkadi626f0902013-08-02 20:10:04 +02002254 *
2255 * Return: 0 if successful. A negative error code otherwise.
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07002256 */
Alan Stern8d8558d2009-12-08 15:50:41 -05002257static int usb_enumerate_device(struct usb_device *udev)
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07002258{
2259 int err;
2260
2261 if (udev->config == NULL) {
2262 err = usb_get_configuration(udev);
2263 if (err < 0) {
Alan Sterne9e88fb2013-03-27 16:14:01 -04002264 if (err != -ENODEV)
2265 dev_err(&udev->dev, "can't read configurations, error %d\n",
2266 err);
Laurent Pinchart80da2e02012-07-19 12:39:13 +02002267 return err;
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07002268 }
2269 }
Thomas Pugliese83e83ec2013-12-09 13:40:29 -06002270
2271 /* read the standard strings and cache them if present */
2272 udev->product = usb_cache_string(udev, udev->descriptor.iProduct);
2273 udev->manufacturer = usb_cache_string(udev,
2274 udev->descriptor.iManufacturer);
2275 udev->serial = usb_cache_string(udev, udev->descriptor.iSerialNumber);
2276
Alan Stern8d8558d2009-12-08 15:50:41 -05002277 err = usb_enumerate_device_otg(udev);
Laurent Pinchart80da2e02012-07-19 12:39:13 +02002278 if (err < 0)
2279 return err;
2280
2281 usb_detect_interface_quirks(udev);
2282
2283 return 0;
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07002284}
2285
Matthew Garrettd35e70d2012-02-03 17:11:55 -05002286static void set_usb_port_removable(struct usb_device *udev)
2287{
2288 struct usb_device *hdev = udev->parent;
2289 struct usb_hub *hub;
2290 u8 port = udev->portnum;
2291 u16 wHubCharacteristics;
2292 bool removable = true;
2293
2294 if (!hdev)
2295 return;
2296
Lan Tianyuad493e52013-01-23 04:26:30 +08002297 hub = usb_hub_to_struct_hub(udev->parent);
Matthew Garrettd35e70d2012-02-03 17:11:55 -05002298
2299 wHubCharacteristics = le16_to_cpu(hub->descriptor->wHubCharacteristics);
2300
2301 if (!(wHubCharacteristics & HUB_CHAR_COMPOUND))
2302 return;
2303
2304 if (hub_is_superspeed(hdev)) {
Lan Tianyuca3c1532012-09-11 04:22:36 +08002305 if (le16_to_cpu(hub->descriptor->u.ss.DeviceRemovable)
2306 & (1 << port))
Matthew Garrettd35e70d2012-02-03 17:11:55 -05002307 removable = false;
2308 } else {
2309 if (hub->descriptor->u.hs.DeviceRemovable[port / 8] & (1 << (port % 8)))
2310 removable = false;
2311 }
2312
2313 if (removable)
2314 udev->removable = USB_DEVICE_REMOVABLE;
2315 else
2316 udev->removable = USB_DEVICE_FIXED;
Dan Williamsa4204ff2014-05-20 18:08:22 -07002317
2318 /*
2319 * Platform firmware may have populated an alternative value for
2320 * removable. If the parent port has a known connect_type use
2321 * that instead.
2322 */
2323 switch (hub->ports[udev->portnum - 1]->connect_type) {
2324 case USB_PORT_CONNECT_TYPE_HOT_PLUG:
2325 udev->removable = USB_DEVICE_REMOVABLE;
2326 break;
2327 case USB_PORT_CONNECT_TYPE_HARD_WIRED:
2328 udev->removable = USB_DEVICE_FIXED;
2329 break;
2330 default: /* use what was set above */
2331 break;
2332 }
Matthew Garrettd35e70d2012-02-03 17:11:55 -05002333}
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07002334
2335/**
2336 * usb_new_device - perform initial device setup (usbcore-internal)
2337 * @udev: newly addressed device (in ADDRESS state)
2338 *
Alan Stern8d8558d2009-12-08 15:50:41 -05002339 * This is called with devices which have been detected but not fully
2340 * enumerated. The device descriptor is available, but not descriptors
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07002341 * for any device configuration. The caller must have locked either
2342 * the parent hub (if udev is a normal device) or else the
2343 * usb_bus_list_lock (if udev is a root hub). The parent's pointer to
2344 * udev has already been installed, but udev is not yet visible through
2345 * sysfs or other filesystem code.
2346 *
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07002347 * This call is synchronous, and may not be used in an interrupt context.
2348 *
2349 * Only the hub driver or root-hub registrar should ever call this.
Yacine Belkadi626f0902013-08-02 20:10:04 +02002350 *
2351 * Return: Whether the device is configured properly or not. Zero if the
2352 * interface was registered with the driver core; else a negative errno
2353 * value.
2354 *
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07002355 */
2356int usb_new_device(struct usb_device *udev)
2357{
2358 int err;
2359
Dan Streetman16985402010-01-06 09:56:53 -05002360 if (udev->parent) {
Dan Streetman16985402010-01-06 09:56:53 -05002361 /* Initialize non-root-hub device wakeup to disabled;
2362 * device (un)configuration controls wakeup capable
2363 * sysfs power/wakeup controls wakeup enabled/disabled
2364 */
2365 device_init_wakeup(&udev->dev, 0);
Dan Streetman16985402010-01-06 09:56:53 -05002366 }
2367
Alan Stern9bbdf1e2010-01-08 12:57:28 -05002368 /* Tell the runtime-PM framework the device is active */
2369 pm_runtime_set_active(&udev->dev);
Alan Sternc08512c2010-11-15 15:57:58 -05002370 pm_runtime_get_noresume(&udev->dev);
Alan Sternfcc4a012010-11-15 15:57:51 -05002371 pm_runtime_use_autosuspend(&udev->dev);
Alan Stern9bbdf1e2010-01-08 12:57:28 -05002372 pm_runtime_enable(&udev->dev);
2373
Alan Sternc08512c2010-11-15 15:57:58 -05002374 /* By default, forbid autosuspend for all devices. It will be
2375 * allowed for hubs during binding.
2376 */
2377 usb_disable_autosuspend(udev);
2378
Alan Stern8d8558d2009-12-08 15:50:41 -05002379 err = usb_enumerate_device(udev); /* Read descriptors */
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07002380 if (err < 0)
2381 goto fail;
Sarah Sharpc6515272009-04-27 19:57:26 -07002382 dev_dbg(&udev->dev, "udev %d, busnum %d, minor = %d\n",
2383 udev->devnum, udev->bus->busnum,
2384 (((udev->bus->busnum-1) * 128) + (udev->devnum-1)));
Kay Sievers9f8b17e2007-03-13 15:59:31 +01002385 /* export the usbdev device-node for libusb */
2386 udev->dev.devt = MKDEV(USB_DEVICE_MAJOR,
2387 (((udev->bus->busnum-1) * 128) + (udev->devnum-1)));
2388
Alan Stern6cd13202008-11-13 15:08:30 -05002389 /* Tell the world! */
2390 announce_device(udev);
Alan Stern195af2c2007-07-16 15:28:19 -04002391
Theodore Ts'ob04b3152012-07-04 11:22:20 -04002392 if (udev->serial)
2393 add_device_randomness(udev->serial, strlen(udev->serial));
2394 if (udev->product)
2395 add_device_randomness(udev->product, strlen(udev->product));
2396 if (udev->manufacturer)
2397 add_device_randomness(udev->manufacturer,
2398 strlen(udev->manufacturer));
2399
Rafael J. Wysocki927bc912010-02-08 19:18:16 +01002400 device_enable_async_suspend(&udev->dev);
Matthew Garrettd35e70d2012-02-03 17:11:55 -05002401
Dan Williamsa4204ff2014-05-20 18:08:22 -07002402 /* check whether the hub or firmware marks this port as non-removable */
Matthew Garrettd35e70d2012-02-03 17:11:55 -05002403 if (udev->parent)
2404 set_usb_port_removable(udev);
2405
Alan Stern782da722006-07-01 22:09:35 -04002406 /* Register the device. The device driver is responsible
Alan Stern3b23dd62008-12-05 14:10:34 -05002407 * for configuring the device and invoking the add-device
2408 * notifier chain (used by usbfs and possibly others).
Alan Stern782da722006-07-01 22:09:35 -04002409 */
Kay Sievers9f8b17e2007-03-13 15:59:31 +01002410 err = device_add(&udev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411 if (err) {
2412 dev_err(&udev->dev, "can't device_add, error %d\n", err);
2413 goto fail;
2414 }
Alan Stern9ad3d6c2005-11-17 17:10:32 -05002415
Lan Tianyufde26382013-01-20 01:53:33 +08002416 /* Create link files between child device and usb port device. */
2417 if (udev->parent) {
Lan Tianyuad493e52013-01-23 04:26:30 +08002418 struct usb_hub *hub = usb_hub_to_struct_hub(udev->parent);
2419 struct usb_port *port_dev = hub->ports[udev->portnum - 1];
Lan Tianyufde26382013-01-20 01:53:33 +08002420
2421 err = sysfs_create_link(&udev->dev.kobj,
2422 &port_dev->dev.kobj, "port");
2423 if (err)
2424 goto fail;
2425
2426 err = sysfs_create_link(&port_dev->dev.kobj,
2427 &udev->dev.kobj, "device");
2428 if (err) {
2429 sysfs_remove_link(&udev->dev.kobj, "port");
2430 goto fail;
2431 }
Lan Tianyu971fcd42013-01-23 04:26:29 +08002432
2433 pm_runtime_get_sync(&port_dev->dev);
Lan Tianyufde26382013-01-20 01:53:33 +08002434 }
2435
Alan Stern3b23dd62008-12-05 14:10:34 -05002436 (void) usb_create_ep_devs(&udev->dev, &udev->ep0, udev);
Alan Sternc08512c2010-11-15 15:57:58 -05002437 usb_mark_last_busy(udev);
2438 pm_runtime_put_sync_autosuspend(&udev->dev);
Greg Kroah-Hartmanc0664752006-08-11 01:55:12 -07002439 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440
2441fail:
2442 usb_set_device_state(udev, USB_STATE_NOTATTACHED);
Alan Stern9bbdf1e2010-01-08 12:57:28 -05002443 pm_runtime_disable(&udev->dev);
2444 pm_runtime_set_suspended(&udev->dev);
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07002445 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002446}
2447
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002448
2449/**
Randy Dunlapfd39c862007-10-15 17:30:02 -07002450 * usb_deauthorize_device - deauthorize a device (usbcore-internal)
2451 * @usb_dev: USB device
2452 *
2453 * Move the USB device to a very basic state where interfaces are disabled
2454 * and the device is in fact unconfigured and unusable.
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002455 *
2456 * We share a lock (that we have) with device_del(), so we need to
2457 * defer its call.
Yacine Belkadi626f0902013-08-02 20:10:04 +02002458 *
2459 * Return: 0.
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002460 */
2461int usb_deauthorize_device(struct usb_device *usb_dev)
2462{
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002463 usb_lock_device(usb_dev);
2464 if (usb_dev->authorized == 0)
2465 goto out_unauthorized;
Alan Sternda307122009-12-08 15:54:44 -05002466
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002467 usb_dev->authorized = 0;
2468 usb_set_configuration(usb_dev, -1);
Alan Sternda307122009-12-08 15:54:44 -05002469
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002470out_unauthorized:
2471 usb_unlock_device(usb_dev);
2472 return 0;
2473}
2474
2475
2476int usb_authorize_device(struct usb_device *usb_dev)
2477{
2478 int result = 0, c;
Alan Sternda307122009-12-08 15:54:44 -05002479
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002480 usb_lock_device(usb_dev);
2481 if (usb_dev->authorized == 1)
2482 goto out_authorized;
Alan Sternda307122009-12-08 15:54:44 -05002483
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002484 result = usb_autoresume_device(usb_dev);
2485 if (result < 0) {
2486 dev_err(&usb_dev->dev,
2487 "can't autoresume for authorization: %d\n", result);
2488 goto error_autoresume;
2489 }
2490 result = usb_get_device_descriptor(usb_dev, sizeof(usb_dev->descriptor));
2491 if (result < 0) {
2492 dev_err(&usb_dev->dev, "can't re-read device descriptor for "
2493 "authorization: %d\n", result);
2494 goto error_device_descriptor;
2495 }
Alan Sternda307122009-12-08 15:54:44 -05002496
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002497 usb_dev->authorized = 1;
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002498 /* Choose and set the configuration. This registers the interfaces
2499 * with the driver core and lets interface drivers bind to them.
2500 */
Greg Kroah-Hartmanb5ea0602007-08-02 22:44:27 -06002501 c = usb_choose_configuration(usb_dev);
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002502 if (c >= 0) {
2503 result = usb_set_configuration(usb_dev, c);
2504 if (result) {
2505 dev_err(&usb_dev->dev,
2506 "can't set config #%d, error %d\n", c, result);
2507 /* This need not be fatal. The user can try to
2508 * set other configurations. */
2509 }
2510 }
2511 dev_info(&usb_dev->dev, "authorized to connect\n");
Alan Sternda307122009-12-08 15:54:44 -05002512
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002513error_device_descriptor:
Alan Sternda307122009-12-08 15:54:44 -05002514 usb_autosuspend_device(usb_dev);
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002515error_autoresume:
2516out_authorized:
Matthias Beyer781b2132013-10-10 23:41:29 +02002517 usb_unlock_device(usb_dev); /* complements locktree */
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002518 return result;
2519}
2520
2521
Inaky Perez-Gonzalez0165de02006-08-25 19:35:29 -07002522/* Returns 1 if @hub is a WUSB root hub, 0 otherwise */
2523static unsigned hub_is_wusb(struct usb_hub *hub)
2524{
2525 struct usb_hcd *hcd;
2526 if (hub->hdev->parent != NULL) /* not a root hub? */
2527 return 0;
2528 hcd = container_of(hub->hdev->bus, struct usb_hcd, self);
2529 return hcd->wireless;
2530}
2531
2532
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533#define PORT_RESET_TRIES 5
2534#define SET_ADDRESS_TRIES 2
2535#define GET_DESCRIPTOR_TRIES 2
2536#define SET_CONFIG_TRIES (2 * (use_both_schemes + 1))
Rusty Russell90ab5ee2012-01-13 09:32:20 +10302537#define USE_NEW_SCHEME(i) ((i) / 2 == (int)old_scheme_first)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538
2539#define HUB_ROOT_RESET_TIME 50 /* times are in msec */
2540#define HUB_SHORT_RESET_TIME 10
Andiry Xu75d7cf72011-09-13 16:41:11 -07002541#define HUB_BH_RESET_TIME 50
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542#define HUB_LONG_RESET_TIME 200
Sarah Sharp77c7f072012-11-14 17:16:52 -08002543#define HUB_RESET_TIMEOUT 800
Linus Torvalds1da177e2005-04-16 15:20:36 -07002544
Dan Williams48fc7db2013-12-05 17:07:27 -08002545/*
2546 * "New scheme" enumeration causes an extra state transition to be
2547 * exposed to an xhci host and causes USB3 devices to receive control
2548 * commands in the default state. This has been seen to cause
2549 * enumeration failures, so disable this enumeration scheme for USB3
2550 * devices.
2551 */
2552static bool use_new_scheme(struct usb_device *udev, int retry)
2553{
2554 if (udev->speed == USB_SPEED_SUPER)
2555 return false;
2556
2557 return USE_NEW_SCHEME(retry);
2558}
2559
Sarah Sharp10d674a2011-09-14 14:24:52 -07002560static int hub_port_reset(struct usb_hub *hub, int port1,
2561 struct usb_device *udev, unsigned int delay, bool warm);
2562
Rahul Bedarkar025d4432014-01-04 11:24:41 +05302563/* Is a USB 3.0 port in the Inactive or Compliance Mode state?
Stanislaw Ledwon8bea2bd2012-06-18 15:20:00 +02002564 * Port worm reset is required to recover
2565 */
2566static bool hub_port_warm_reset_required(struct usb_hub *hub, u16 portstatus)
Sarah Sharp10d674a2011-09-14 14:24:52 -07002567{
2568 return hub_is_superspeed(hub->hdev) &&
Stanislaw Ledwon8bea2bd2012-06-18 15:20:00 +02002569 (((portstatus & USB_PORT_STAT_LINK_STATE) ==
2570 USB_SS_PORT_LS_SS_INACTIVE) ||
2571 ((portstatus & USB_PORT_STAT_LINK_STATE) ==
2572 USB_SS_PORT_LS_COMP_MOD)) ;
Sarah Sharp10d674a2011-09-14 14:24:52 -07002573}
2574
Linus Torvalds1da177e2005-04-16 15:20:36 -07002575static int hub_port_wait_reset(struct usb_hub *hub, int port1,
Andiry Xu75d7cf72011-09-13 16:41:11 -07002576 struct usb_device *udev, unsigned int delay, bool warm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002577{
2578 int delay_time, ret;
2579 u16 portstatus;
2580 u16 portchange;
2581
2582 for (delay_time = 0;
2583 delay_time < HUB_RESET_TIMEOUT;
2584 delay_time += delay) {
2585 /* wait to give the device a chance to reset */
2586 msleep(delay);
2587
2588 /* read and decode port status */
2589 ret = hub_port_status(hub, port1, &portstatus, &portchange);
2590 if (ret < 0)
2591 return ret;
2592
Sarah Sharp4f434472012-11-15 14:58:04 -08002593 /* The port state is unknown until the reset completes. */
Sarah Sharp470f0be2012-12-11 10:14:03 -08002594 if (!(portstatus & USB_PORT_STAT_RESET))
2595 break;
Sarah Sharp4f434472012-11-15 14:58:04 -08002596
Linus Torvalds1da177e2005-04-16 15:20:36 -07002597 /* switch to the long delay after two short delay failures */
2598 if (delay_time >= 2 * HUB_SHORT_RESET_TIME)
2599 delay = HUB_LONG_RESET_TIME;
2600
Dan Williamsd99f6b42014-05-20 18:08:17 -07002601 dev_dbg(&hub->ports[port1 - 1]->dev,
2602 "not %sreset yet, waiting %dms\n",
2603 warm ? "warm " : "", delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002604 }
2605
Sarah Sharp470f0be2012-12-11 10:14:03 -08002606 if ((portstatus & USB_PORT_STAT_RESET))
2607 return -EBUSY;
2608
2609 if (hub_port_warm_reset_required(hub, portstatus))
2610 return -ENOTCONN;
2611
2612 /* Device went away? */
2613 if (!(portstatus & USB_PORT_STAT_CONNECTION))
2614 return -ENOTCONN;
2615
2616 /* bomb out completely if the connection bounced. A USB 3.0
2617 * connection may bounce if multiple warm resets were issued,
2618 * but the device may have successfully re-connected. Ignore it.
2619 */
2620 if (!hub_is_superspeed(hub->hdev) &&
2621 (portchange & USB_PORT_STAT_C_CONNECTION))
2622 return -ENOTCONN;
2623
2624 if (!(portstatus & USB_PORT_STAT_ENABLE))
2625 return -EBUSY;
2626
2627 if (!udev)
2628 return 0;
2629
2630 if (hub_is_wusb(hub))
2631 udev->speed = USB_SPEED_WIRELESS;
2632 else if (hub_is_superspeed(hub->hdev))
2633 udev->speed = USB_SPEED_SUPER;
2634 else if (portstatus & USB_PORT_STAT_HIGH_SPEED)
2635 udev->speed = USB_SPEED_HIGH;
2636 else if (portstatus & USB_PORT_STAT_LOW_SPEED)
2637 udev->speed = USB_SPEED_LOW;
2638 else
2639 udev->speed = USB_SPEED_FULL;
2640 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002641}
2642
Andiry Xu75d7cf72011-09-13 16:41:11 -07002643static void hub_port_finish_reset(struct usb_hub *hub, int port1,
Sarah Sharpa24a6072012-11-01 11:20:44 -07002644 struct usb_device *udev, int *status)
Andiry Xu75d7cf72011-09-13 16:41:11 -07002645{
2646 switch (*status) {
2647 case 0:
Sarah Sharpa24a6072012-11-01 11:20:44 -07002648 /* TRSTRCY = 10 ms; plus some extra */
2649 msleep(10 + 40);
2650 if (udev) {
2651 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
2652
2653 update_devnum(udev, 0);
2654 /* The xHC may think the device is already reset,
2655 * so ignore the status.
2656 */
2657 if (hcd->driver->reset_device)
2658 hcd->driver->reset_device(hcd, udev);
Andiry Xu75d7cf72011-09-13 16:41:11 -07002659 }
2660 /* FALL THROUGH */
2661 case -ENOTCONN:
2662 case -ENODEV:
Lan Tianyuad493e52013-01-23 04:26:30 +08002663 usb_clear_port_feature(hub->hdev,
Andiry Xu75d7cf72011-09-13 16:41:11 -07002664 port1, USB_PORT_FEAT_C_RESET);
Sarah Sharp1c7439c62012-11-14 15:58:52 -08002665 if (hub_is_superspeed(hub->hdev)) {
Lan Tianyuad493e52013-01-23 04:26:30 +08002666 usb_clear_port_feature(hub->hdev, port1,
Andiry Xu75d7cf72011-09-13 16:41:11 -07002667 USB_PORT_FEAT_C_BH_PORT_RESET);
Lan Tianyuad493e52013-01-23 04:26:30 +08002668 usb_clear_port_feature(hub->hdev, port1,
Andiry Xu75d7cf72011-09-13 16:41:11 -07002669 USB_PORT_FEAT_C_PORT_LINK_STATE);
Lan Tianyuad493e52013-01-23 04:26:30 +08002670 usb_clear_port_feature(hub->hdev, port1,
Sarah Sharpa24a6072012-11-01 11:20:44 -07002671 USB_PORT_FEAT_C_CONNECTION);
Sarah Sharp1c7439c62012-11-14 15:58:52 -08002672 }
Sarah Sharpa24a6072012-11-01 11:20:44 -07002673 if (udev)
Andiry Xu75d7cf72011-09-13 16:41:11 -07002674 usb_set_device_state(udev, *status
2675 ? USB_STATE_NOTATTACHED
2676 : USB_STATE_DEFAULT);
Andiry Xu75d7cf72011-09-13 16:41:11 -07002677 break;
2678 }
2679}
2680
2681/* Handle port reset and port warm(BH) reset (for USB3 protocol ports) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002682static int hub_port_reset(struct usb_hub *hub, int port1,
Andiry Xu75d7cf72011-09-13 16:41:11 -07002683 struct usb_device *udev, unsigned int delay, bool warm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002684{
2685 int i, status;
Sarah Sharpa24a6072012-11-01 11:20:44 -07002686 u16 portchange, portstatus;
Dan Williamsd99f6b42014-05-20 18:08:17 -07002687 struct usb_port *port_dev = hub->ports[port1 - 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002688
Sarah Sharp0fe51aa2012-11-01 11:20:44 -07002689 if (!hub_is_superspeed(hub->hdev)) {
2690 if (warm) {
Andiry Xu75d7cf72011-09-13 16:41:11 -07002691 dev_err(hub->intfdev, "only USB3 hub support "
2692 "warm reset\n");
2693 return -EINVAL;
2694 }
Sarah Sharp0fe51aa2012-11-01 11:20:44 -07002695 /* Block EHCI CF initialization during the port reset.
2696 * Some companion controllers don't like it when they mix.
2697 */
2698 down_read(&ehci_cf_port_reset_rwsem);
Sarah Sharpd3b9d7a2012-11-01 11:20:44 -07002699 } else if (!warm) {
2700 /*
2701 * If the caller hasn't explicitly requested a warm reset,
2702 * double check and see if one is needed.
2703 */
2704 status = hub_port_status(hub, port1,
2705 &portstatus, &portchange);
2706 if (status < 0)
2707 goto done;
2708
2709 if (hub_port_warm_reset_required(hub, portstatus))
2710 warm = true;
Andiry Xu75d7cf72011-09-13 16:41:11 -07002711 }
Alan Stern32fe0192007-10-10 16:27:07 -04002712
Linus Torvalds1da177e2005-04-16 15:20:36 -07002713 /* Reset the port */
2714 for (i = 0; i < PORT_RESET_TRIES; i++) {
Andiry Xu75d7cf72011-09-13 16:41:11 -07002715 status = set_port_feature(hub->hdev, port1, (warm ?
2716 USB_PORT_FEAT_BH_PORT_RESET :
2717 USB_PORT_FEAT_RESET));
Alan Sterne9e88fb2013-03-27 16:14:01 -04002718 if (status == -ENODEV) {
2719 ; /* The hub is gone */
2720 } else if (status) {
Dan Williamsd99f6b42014-05-20 18:08:17 -07002721 dev_err(&port_dev->dev,
2722 "cannot %sreset (err = %d)\n",
2723 warm ? "warm " : "", status);
Andiry Xu75d7cf72011-09-13 16:41:11 -07002724 } else {
2725 status = hub_port_wait_reset(hub, port1, udev, delay,
2726 warm);
Alan Sterne9e88fb2013-03-27 16:14:01 -04002727 if (status && status != -ENOTCONN && status != -ENODEV)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002728 dev_dbg(hub->intfdev,
2729 "port_wait_reset: err = %d\n",
2730 status);
2731 }
2732
Sarah Sharpa24a6072012-11-01 11:20:44 -07002733 /* Check for disconnect or reset */
Andiry Xu75d7cf72011-09-13 16:41:11 -07002734 if (status == 0 || status == -ENOTCONN || status == -ENODEV) {
Sarah Sharpa24a6072012-11-01 11:20:44 -07002735 hub_port_finish_reset(hub, port1, udev, &status);
2736
2737 if (!hub_is_superspeed(hub->hdev))
2738 goto done;
2739
2740 /*
2741 * If a USB 3.0 device migrates from reset to an error
2742 * state, re-issue the warm reset.
2743 */
2744 if (hub_port_status(hub, port1,
2745 &portstatus, &portchange) < 0)
2746 goto done;
2747
2748 if (!hub_port_warm_reset_required(hub, portstatus))
2749 goto done;
2750
2751 /*
2752 * If the port is in SS.Inactive or Compliance Mode, the
2753 * hot or warm reset failed. Try another warm reset.
2754 */
2755 if (!warm) {
Dan Williamsd99f6b42014-05-20 18:08:17 -07002756 dev_dbg(&port_dev->dev,
2757 "hot reset failed, warm reset\n");
Sarah Sharpa24a6072012-11-01 11:20:44 -07002758 warm = true;
2759 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002760 }
2761
Dan Williamsd99f6b42014-05-20 18:08:17 -07002762 dev_dbg(&port_dev->dev,
2763 "not enabled, trying %sreset again...\n",
2764 warm ? "warm " : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002765 delay = HUB_LONG_RESET_TIME;
2766 }
2767
Dan Williamsd99f6b42014-05-20 18:08:17 -07002768 dev_err(&port_dev->dev, "Cannot enable. Maybe the USB cable is bad?\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002769
Andiry Xu75d7cf72011-09-13 16:41:11 -07002770done:
Sarah Sharp0fe51aa2012-11-01 11:20:44 -07002771 if (!hub_is_superspeed(hub->hdev))
Andiry Xu75d7cf72011-09-13 16:41:11 -07002772 up_read(&ehci_cf_port_reset_rwsem);
2773
Linus Torvalds1da177e2005-04-16 15:20:36 -07002774 return status;
2775}
2776
Andiry Xu0ed9a572011-04-27 18:07:43 +08002777/* Check if a port is power on */
2778static int port_is_power_on(struct usb_hub *hub, unsigned portstatus)
2779{
2780 int ret = 0;
2781
2782 if (hub_is_superspeed(hub->hdev)) {
2783 if (portstatus & USB_SS_PORT_STAT_POWER)
2784 ret = 1;
2785 } else {
2786 if (portstatus & USB_PORT_STAT_POWER)
2787 ret = 1;
2788 }
2789
2790 return ret;
2791}
2792
Alan Sternd388dab2006-07-01 22:14:24 -04002793#ifdef CONFIG_PM
Linus Torvalds1da177e2005-04-16 15:20:36 -07002794
Andiry Xu0ed9a572011-04-27 18:07:43 +08002795/* Check if a port is suspended(USB2.0 port) or in U3 state(USB3.0 port) */
2796static int port_is_suspended(struct usb_hub *hub, unsigned portstatus)
2797{
2798 int ret = 0;
2799
2800 if (hub_is_superspeed(hub->hdev)) {
2801 if ((portstatus & USB_PORT_STAT_LINK_STATE)
2802 == USB_SS_PORT_LS_U3)
2803 ret = 1;
2804 } else {
2805 if (portstatus & USB_PORT_STAT_SUSPEND)
2806 ret = 1;
2807 }
2808
2809 return ret;
2810}
Alan Sternb01b03f2008-04-28 11:06:11 -04002811
2812/* Determine whether the device on a port is ready for a normal resume,
2813 * is ready for a reset-resume, or should be disconnected.
2814 */
2815static int check_port_resume_type(struct usb_device *udev,
2816 struct usb_hub *hub, int port1,
2817 int status, unsigned portchange, unsigned portstatus)
2818{
Dan Williamsd99f6b42014-05-20 18:08:17 -07002819 struct usb_port *port_dev = hub->ports[port1 - 1];
2820
Alan Sternb01b03f2008-04-28 11:06:11 -04002821 /* Is the device still present? */
Andiry Xu0ed9a572011-04-27 18:07:43 +08002822 if (status || port_is_suspended(hub, portstatus) ||
2823 !port_is_power_on(hub, portstatus) ||
2824 !(portstatus & USB_PORT_STAT_CONNECTION)) {
Alan Sternb01b03f2008-04-28 11:06:11 -04002825 if (status >= 0)
2826 status = -ENODEV;
2827 }
2828
Alan Stern86c57ed2008-06-30 11:14:43 -04002829 /* Can't do a normal resume if the port isn't enabled,
2830 * so try a reset-resume instead.
2831 */
2832 else if (!(portstatus & USB_PORT_STAT_ENABLE) && !udev->reset_resume) {
2833 if (udev->persist_enabled)
2834 udev->reset_resume = 1;
2835 else
2836 status = -ENODEV;
2837 }
Alan Sternb01b03f2008-04-28 11:06:11 -04002838
2839 if (status) {
Dan Williamsd99f6b42014-05-20 18:08:17 -07002840 dev_dbg(&port_dev->dev, "status %04x.%04x after resume, %d\n",
2841 portchange, portstatus, status);
Alan Sternb01b03f2008-04-28 11:06:11 -04002842 } else if (udev->reset_resume) {
2843
2844 /* Late port handoff can set status-change bits */
2845 if (portchange & USB_PORT_STAT_C_CONNECTION)
Lan Tianyuad493e52013-01-23 04:26:30 +08002846 usb_clear_port_feature(hub->hdev, port1,
Alan Sternb01b03f2008-04-28 11:06:11 -04002847 USB_PORT_FEAT_C_CONNECTION);
2848 if (portchange & USB_PORT_STAT_C_ENABLE)
Lan Tianyuad493e52013-01-23 04:26:30 +08002849 usb_clear_port_feature(hub->hdev, port1,
Alan Sternb01b03f2008-04-28 11:06:11 -04002850 USB_PORT_FEAT_C_ENABLE);
2851 }
2852
2853 return status;
2854}
2855
Sarah Sharpf74631e2012-06-25 12:08:08 -07002856int usb_disable_ltm(struct usb_device *udev)
2857{
2858 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
2859
2860 /* Check if the roothub and device supports LTM. */
2861 if (!usb_device_supports_ltm(hcd->self.root_hub) ||
2862 !usb_device_supports_ltm(udev))
2863 return 0;
2864
2865 /* Clear Feature LTM Enable can only be sent if the device is
2866 * configured.
2867 */
2868 if (!udev->actconfig)
2869 return 0;
2870
2871 return usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
2872 USB_REQ_CLEAR_FEATURE, USB_RECIP_DEVICE,
2873 USB_DEVICE_LTM_ENABLE, 0, NULL, 0,
2874 USB_CTRL_SET_TIMEOUT);
2875}
2876EXPORT_SYMBOL_GPL(usb_disable_ltm);
2877
2878void usb_enable_ltm(struct usb_device *udev)
2879{
2880 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
2881
2882 /* Check if the roothub and device supports LTM. */
2883 if (!usb_device_supports_ltm(hcd->self.root_hub) ||
2884 !usb_device_supports_ltm(udev))
2885 return;
2886
2887 /* Set Feature LTM Enable can only be sent if the device is
2888 * configured.
2889 */
2890 if (!udev->actconfig)
2891 return;
2892
2893 usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
2894 USB_REQ_SET_FEATURE, USB_RECIP_DEVICE,
2895 USB_DEVICE_LTM_ENABLE, 0, NULL, 0,
2896 USB_CTRL_SET_TIMEOUT);
2897}
2898EXPORT_SYMBOL_GPL(usb_enable_ltm);
2899
Lan Tianyu54a3ac02013-01-24 10:31:28 +08002900/*
Alan Stern28e861652013-07-30 15:37:33 -04002901 * usb_enable_remote_wakeup - enable remote wakeup for a device
Lan Tianyu54a3ac02013-01-24 10:31:28 +08002902 * @udev: target device
2903 *
Alan Stern28e861652013-07-30 15:37:33 -04002904 * For USB-2 devices: Set the device's remote wakeup feature.
2905 *
2906 * For USB-3 devices: Assume there's only one function on the device and
2907 * enable remote wake for the first interface. FIXME if the interface
2908 * association descriptor shows there's more than one function.
Lan Tianyu54a3ac02013-01-24 10:31:28 +08002909 */
Alan Stern28e861652013-07-30 15:37:33 -04002910static int usb_enable_remote_wakeup(struct usb_device *udev)
Lan Tianyu54a3ac02013-01-24 10:31:28 +08002911{
Alan Stern28e861652013-07-30 15:37:33 -04002912 if (udev->speed < USB_SPEED_SUPER)
2913 return usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
2914 USB_REQ_SET_FEATURE, USB_RECIP_DEVICE,
2915 USB_DEVICE_REMOTE_WAKEUP, 0, NULL, 0,
2916 USB_CTRL_SET_TIMEOUT);
2917 else
2918 return usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
2919 USB_REQ_SET_FEATURE, USB_RECIP_INTERFACE,
2920 USB_INTRF_FUNC_SUSPEND,
2921 USB_INTRF_FUNC_SUSPEND_RW |
2922 USB_INTRF_FUNC_SUSPEND_LP,
2923 NULL, 0, USB_CTRL_SET_TIMEOUT);
2924}
2925
2926/*
2927 * usb_disable_remote_wakeup - disable remote wakeup for a device
2928 * @udev: target device
2929 *
2930 * For USB-2 devices: Clear the device's remote wakeup feature.
2931 *
2932 * For USB-3 devices: Assume there's only one function on the device and
2933 * disable remote wake for the first interface. FIXME if the interface
2934 * association descriptor shows there's more than one function.
2935 */
2936static int usb_disable_remote_wakeup(struct usb_device *udev)
2937{
2938 if (udev->speed < USB_SPEED_SUPER)
2939 return usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
2940 USB_REQ_CLEAR_FEATURE, USB_RECIP_DEVICE,
2941 USB_DEVICE_REMOTE_WAKEUP, 0, NULL, 0,
2942 USB_CTRL_SET_TIMEOUT);
2943 else
2944 return usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
Lan Tianyu54a3ac02013-01-24 10:31:28 +08002945 USB_REQ_CLEAR_FEATURE, USB_RECIP_INTERFACE,
2946 USB_INTRF_FUNC_SUSPEND, 0, NULL, 0,
2947 USB_CTRL_SET_TIMEOUT);
2948}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002949
Alan Sterne583d9d2013-07-11 14:58:04 -04002950/* Count of wakeup-enabled devices at or below udev */
2951static unsigned wakeup_enabled_descendants(struct usb_device *udev)
2952{
2953 struct usb_hub *hub = usb_hub_to_struct_hub(udev);
2954
2955 return udev->do_remote_wakeup +
2956 (hub ? hub->wakeup_enabled_descendants : 0);
2957}
2958
Linus Torvalds1da177e2005-04-16 15:20:36 -07002959/*
Alan Stern140d8f62006-07-01 22:07:21 -04002960 * usb_port_suspend - suspend a usb device's upstream port
Alan Stern624d6c02007-05-30 15:35:16 -04002961 * @udev: device that's no longer in active use, not a root hub
David Brownell5edbfb72005-09-22 22:45:26 -07002962 * Context: must be able to sleep; device not locked; pm locks held
Linus Torvalds1da177e2005-04-16 15:20:36 -07002963 *
2964 * Suspends a USB device that isn't in active use, conserving power.
2965 * Devices may wake out of a suspend, if anything important happens,
2966 * using the remote wakeup mechanism. They may also be taken out of
Alan Stern140d8f62006-07-01 22:07:21 -04002967 * suspend by the host, using usb_port_resume(). It's also routine
Linus Torvalds1da177e2005-04-16 15:20:36 -07002968 * to disconnect devices while they are suspended.
2969 *
David Brownell390a8c32005-09-13 19:57:27 -07002970 * This only affects the USB hardware for a device; its interfaces
2971 * (and, for hubs, child devices) must already have been suspended.
2972 *
Alan Stern624d6c02007-05-30 15:35:16 -04002973 * Selective port suspend reduces power; most suspended devices draw
2974 * less than 500 uA. It's also used in OTG, along with remote wakeup.
2975 * All devices below the suspended port are also suspended.
2976 *
2977 * Devices leave suspend state when the host wakes them up. Some devices
2978 * also support "remote wakeup", where the device can activate the USB
2979 * tree above them to deliver data, such as a keypress or packet. In
2980 * some cases, this wakes the USB host.
2981 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002982 * Suspending OTG devices may trigger HNP, if that's been enabled
2983 * between a pair of dual-role devices. That will change roles, such
2984 * as from A-Host to A-Peripheral or from B-Host back to B-Peripheral.
2985 *
Alan Stern4956ecc2007-05-30 16:51:28 -04002986 * Devices on USB hub ports have only one "suspend" state, corresponding
2987 * to ACPI D2, "may cause the device to lose some context".
2988 * State transitions include:
2989 *
2990 * - suspend, resume ... when the VBUS power link stays live
2991 * - suspend, disconnect ... VBUS lost
2992 *
2993 * Once VBUS drop breaks the circuit, the port it's using has to go through
2994 * normal re-enumeration procedures, starting with enabling VBUS power.
2995 * Other than re-initializing the hub (plug/unplug, except for root hubs),
2996 * Linux (2.6) currently has NO mechanisms to initiate that: no khubd
2997 * timer, no SRP, no requests through sysfs.
2998 *
Alan Sterne583d9d2013-07-11 14:58:04 -04002999 * If Runtime PM isn't enabled or used, non-SuperSpeed devices may not get
3000 * suspended until their bus goes into global suspend (i.e., the root
Alan Stern0aa28322013-03-27 16:14:19 -04003001 * hub is suspended). Nevertheless, we change @udev->state to
3002 * USB_STATE_SUSPENDED as this is the device's "logical" state. The actual
3003 * upstream port setting is stored in @udev->port_is_suspended.
Alan Stern4956ecc2007-05-30 16:51:28 -04003004 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003005 * Returns 0 on success, else negative errno.
3006 */
Alan Stern65bfd292008-11-25 16:39:18 -05003007int usb_port_suspend(struct usb_device *udev, pm_message_t msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003008{
Lan Tianyuad493e52013-01-23 04:26:30 +08003009 struct usb_hub *hub = usb_hub_to_struct_hub(udev->parent);
3010 struct usb_port *port_dev = hub->ports[udev->portnum - 1];
Alan Stern624d6c02007-05-30 15:35:16 -04003011 int port1 = udev->portnum;
3012 int status;
Alan Stern0aa28322013-03-27 16:14:19 -04003013 bool really_suspend = true;
Alan Stern4956ecc2007-05-30 16:51:28 -04003014
Alan Stern624d6c02007-05-30 15:35:16 -04003015 /* enable remote wakeup when appropriate; this lets the device
3016 * wake up the upstream hub (including maybe the root hub).
3017 *
3018 * NOTE: OTG devices may issue remote wakeup (or SRP) even when
3019 * we don't explicitly enable it here.
3020 */
3021 if (udev->do_remote_wakeup) {
Alan Stern28e861652013-07-30 15:37:33 -04003022 status = usb_enable_remote_wakeup(udev);
Oliver Neukum0c487202009-10-19 13:19:41 +02003023 if (status) {
Alan Stern624d6c02007-05-30 15:35:16 -04003024 dev_dbg(&udev->dev, "won't remote wakeup, status %d\n",
3025 status);
Oliver Neukum0c487202009-10-19 13:19:41 +02003026 /* bail if autosuspend is requested */
Alan Stern5b1b0b82011-08-19 23:49:48 +02003027 if (PMSG_IS_AUTO(msg))
Alan Stern4fae6f02013-07-30 15:39:02 -04003028 goto err_wakeup;
Oliver Neukum0c487202009-10-19 13:19:41 +02003029 }
Alan Stern624d6c02007-05-30 15:35:16 -04003030 }
3031
Andiry Xu65580b432011-09-23 14:19:52 -07003032 /* disable USB2 hardware LPM */
3033 if (udev->usb2_hw_lpm_enabled == 1)
3034 usb_set_usb2_hardware_lpm(udev, 0);
3035
Sarah Sharpf74631e2012-06-25 12:08:08 -07003036 if (usb_disable_ltm(udev)) {
Alan Stern4fae6f02013-07-30 15:39:02 -04003037 dev_err(&udev->dev, "Failed to disable LTM before suspend\n.");
3038 status = -ENOMEM;
3039 if (PMSG_IS_AUTO(msg))
3040 goto err_ltm;
Sarah Sharpf74631e2012-06-25 12:08:08 -07003041 }
Sarah Sharp83060952012-05-02 14:25:52 -07003042 if (usb_unlocked_disable_lpm(udev)) {
Alan Stern4fae6f02013-07-30 15:39:02 -04003043 dev_err(&udev->dev, "Failed to disable LPM before suspend\n.");
3044 status = -ENOMEM;
3045 if (PMSG_IS_AUTO(msg))
3046 goto err_lpm3;
Sarah Sharp83060952012-05-02 14:25:52 -07003047 }
3048
Alan Stern624d6c02007-05-30 15:35:16 -04003049 /* see 7.1.7.6 */
Andiry Xua7114232011-04-27 18:07:50 +08003050 if (hub_is_superspeed(hub->hdev))
Sarah Sharpc2f60db2012-12-10 15:43:08 -08003051 status = hub_set_port_link_state(hub, port1, USB_SS_PORT_LS_U3);
Alan Sterne583d9d2013-07-11 14:58:04 -04003052
Alan Stern0aa28322013-03-27 16:14:19 -04003053 /*
3054 * For system suspend, we do not need to enable the suspend feature
3055 * on individual USB-2 ports. The devices will automatically go
3056 * into suspend a few ms after the root hub stops sending packets.
3057 * The USB 2.0 spec calls this "global suspend".
Alan Sterne583d9d2013-07-11 14:58:04 -04003058 *
3059 * However, many USB hubs have a bug: They don't relay wakeup requests
3060 * from a downstream port if the port's suspend feature isn't on.
3061 * Therefore we will turn on the suspend feature if udev or any of its
3062 * descendants is enabled for remote wakeup.
Alan Stern0aa28322013-03-27 16:14:19 -04003063 */
Alan Sterne583d9d2013-07-11 14:58:04 -04003064 else if (PMSG_IS_AUTO(msg) || wakeup_enabled_descendants(udev) > 0)
3065 status = set_port_feature(hub->hdev, port1,
3066 USB_PORT_FEAT_SUSPEND);
Alan Stern0aa28322013-03-27 16:14:19 -04003067 else {
3068 really_suspend = false;
3069 status = 0;
3070 }
Alan Stern624d6c02007-05-30 15:35:16 -04003071 if (status) {
Dan Williamsd99f6b42014-05-20 18:08:17 -07003072 dev_dbg(&port_dev->dev, "can't suspend, status %d\n", status);
Alan Sterncbb33002011-06-15 16:29:16 -04003073
Alan Stern4fae6f02013-07-30 15:39:02 -04003074 /* Try to enable USB3 LPM and LTM again */
3075 usb_unlocked_enable_lpm(udev);
3076 err_lpm3:
3077 usb_enable_ltm(udev);
3078 err_ltm:
Andiry Xuc3e751e2012-05-05 00:50:10 +08003079 /* Try to enable USB2 hardware LPM again */
3080 if (udev->usb2_hw_lpm_capable == 1)
3081 usb_set_usb2_hardware_lpm(udev, 1);
3082
Alan Stern4fae6f02013-07-30 15:39:02 -04003083 if (udev->do_remote_wakeup)
3084 (void) usb_disable_remote_wakeup(udev);
3085 err_wakeup:
Sarah Sharp83060952012-05-02 14:25:52 -07003086
Alan Sterncbb33002011-06-15 16:29:16 -04003087 /* System sleep transitions should never fail */
Alan Stern5b1b0b82011-08-19 23:49:48 +02003088 if (!PMSG_IS_AUTO(msg))
Alan Sterncbb33002011-06-15 16:29:16 -04003089 status = 0;
Alan Stern624d6c02007-05-30 15:35:16 -04003090 } else {
Alan Stern30b1a7a2011-09-27 21:54:22 +02003091 dev_dbg(&udev->dev, "usb %ssuspend, wakeup %d\n",
3092 (PMSG_IS_AUTO(msg) ? "auto-" : ""),
3093 udev->do_remote_wakeup);
Alan Stern0aa28322013-03-27 16:14:19 -04003094 if (really_suspend) {
3095 udev->port_is_suspended = 1;
Alan Sterne583d9d2013-07-11 14:58:04 -04003096
3097 /* device has up to 10 msec to fully suspend */
Alan Stern0aa28322013-03-27 16:14:19 -04003098 msleep(10);
3099 }
Alan Sterne583d9d2013-07-11 14:58:04 -04003100 usb_set_device_state(udev, USB_STATE_SUSPENDED);
Alan Stern624d6c02007-05-30 15:35:16 -04003101 }
Lan Tianyuad493e52013-01-23 04:26:30 +08003102
Alan Stern4fae6f02013-07-30 15:39:02 -04003103 if (status == 0 && !udev->do_remote_wakeup && udev->persist_enabled) {
Lan Tianyu98a4f1f2013-07-03 22:17:54 +08003104 pm_runtime_put_sync(&port_dev->dev);
3105 port_dev->did_runtime_put = true;
Lan Tianyuad493e52013-01-23 04:26:30 +08003106 }
3107
Alan Sternc08512c2010-11-15 15:57:58 -05003108 usb_mark_last_busy(hub->hdev);
Alan Stern4956ecc2007-05-30 16:51:28 -04003109 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003110}
David Brownellf3f32532005-09-22 22:37:29 -07003111
Linus Torvalds1da177e2005-04-16 15:20:36 -07003112/*
David Brownell390a8c32005-09-13 19:57:27 -07003113 * If the USB "suspend" state is in use (rather than "global suspend"),
3114 * many devices will be individually taken out of suspend state using
Alan Stern54515fe2007-05-30 15:38:58 -04003115 * special "resume" signaling. This routine kicks in shortly after
Linus Torvalds1da177e2005-04-16 15:20:36 -07003116 * hardware resume signaling is finished, either because of selective
3117 * resume (by host) or remote wakeup (by device) ... now see what changed
3118 * in the tree that's rooted at this device.
Alan Stern54515fe2007-05-30 15:38:58 -04003119 *
3120 * If @udev->reset_resume is set then the device is reset before the
3121 * status check is done.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003122 */
Alan Stern140d8f62006-07-01 22:07:21 -04003123static int finish_port_resume(struct usb_device *udev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003124{
Alan Stern54515fe2007-05-30 15:38:58 -04003125 int status = 0;
Oliver Neukum07e72b92012-11-29 15:05:57 +01003126 u16 devstatus = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003127
3128 /* caller owns the udev device lock */
Wu Fengguangb9cef6c2008-12-15 15:32:01 +08003129 dev_dbg(&udev->dev, "%s\n",
3130 udev->reset_resume ? "finish reset-resume" : "finish resume");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003131
3132 /* usb ch9 identifies four variants of SUSPENDED, based on what
3133 * state the device resumes to. Linux currently won't see the
3134 * first two on the host side; they'd be inside hub_port_init()
3135 * during many timeouts, but khubd can't suspend until later.
3136 */
3137 usb_set_device_state(udev, udev->actconfig
3138 ? USB_STATE_CONFIGURED
3139 : USB_STATE_ADDRESS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003140
Alan Stern54515fe2007-05-30 15:38:58 -04003141 /* 10.5.4.5 says not to reset a suspended port if the attached
3142 * device is enabled for remote wakeup. Hence the reset
3143 * operation is carried out here, after the port has been
3144 * resumed.
3145 */
Alan Stern1d102552014-03-18 10:39:05 -04003146 if (udev->reset_resume) {
3147 /*
3148 * If the device morphs or switches modes when it is reset,
3149 * we don't want to perform a reset-resume. We'll fail the
3150 * resume, which will cause a logical disconnect, and then
3151 * the device will be rediscovered.
3152 */
Alan Stern86c57ed2008-06-30 11:14:43 -04003153 retry_reset_resume:
Alan Stern1d102552014-03-18 10:39:05 -04003154 if (udev->quirks & USB_QUIRK_RESET)
3155 status = -ENODEV;
3156 else
3157 status = usb_reset_and_verify_device(udev);
3158 }
Alan Stern54515fe2007-05-30 15:38:58 -04003159
Matthias Beyer469271f2013-10-10 23:41:27 +02003160 /* 10.5.4.5 says be sure devices in the tree are still there.
3161 * For now let's assume the device didn't go crazy on resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003162 * and device drivers will know about any resume quirks.
3163 */
Alan Stern54515fe2007-05-30 15:38:58 -04003164 if (status == 0) {
Alan Stern46dede42007-08-14 10:56:10 -04003165 devstatus = 0;
Alan Stern54515fe2007-05-30 15:38:58 -04003166 status = usb_get_status(udev, USB_RECIP_DEVICE, 0, &devstatus);
Alan Stern86c57ed2008-06-30 11:14:43 -04003167
3168 /* If a normal resume failed, try doing a reset-resume */
3169 if (status && !udev->reset_resume && udev->persist_enabled) {
3170 dev_dbg(&udev->dev, "retry with reset-resume\n");
3171 udev->reset_resume = 1;
3172 goto retry_reset_resume;
3173 }
Alan Stern54515fe2007-05-30 15:38:58 -04003174 }
Alan Sternb40b7a92006-06-19 15:12:38 -04003175
Alan Stern624d6c02007-05-30 15:35:16 -04003176 if (status) {
3177 dev_dbg(&udev->dev, "gone after usb resume? status %d\n",
3178 status);
Oliver Neukum07e72b92012-11-29 15:05:57 +01003179 /*
3180 * There are a few quirky devices which violate the standard
3181 * by claiming to have remote wakeup enabled after a reset,
3182 * which crash if the feature is cleared, hence check for
3183 * udev->reset_resume
3184 */
3185 } else if (udev->actconfig && !udev->reset_resume) {
Alan Stern28e861652013-07-30 15:37:33 -04003186 if (udev->speed < USB_SPEED_SUPER) {
Lan Tianyu54a3ac02013-01-24 10:31:28 +08003187 if (devstatus & (1 << USB_DEVICE_REMOTE_WAKEUP))
Alan Stern28e861652013-07-30 15:37:33 -04003188 status = usb_disable_remote_wakeup(udev);
Lan Tianyu54a3ac02013-01-24 10:31:28 +08003189 } else {
3190 status = usb_get_status(udev, USB_RECIP_INTERFACE, 0,
3191 &devstatus);
Lan Tianyu54a3ac02013-01-24 10:31:28 +08003192 if (!status && devstatus & (USB_INTRF_STAT_FUNC_RW_CAP
3193 | USB_INTRF_STAT_FUNC_RW))
Alan Stern28e861652013-07-30 15:37:33 -04003194 status = usb_disable_remote_wakeup(udev);
Alan Stern4bf0ba82005-11-21 11:58:07 -05003195 }
Lan Tianyu54a3ac02013-01-24 10:31:28 +08003196
3197 if (status)
3198 dev_dbg(&udev->dev,
3199 "disable remote wakeup, status %d\n",
3200 status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003201 status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003202 }
3203 return status;
3204}
3205
Alan Stern624d6c02007-05-30 15:35:16 -04003206/*
3207 * usb_port_resume - re-activate a suspended usb device's upstream port
3208 * @udev: device to re-activate, not a root hub
3209 * Context: must be able to sleep; device not locked; pm locks held
3210 *
3211 * This will re-activate the suspended device, increasing power usage
3212 * while letting drivers communicate again with its endpoints.
3213 * USB resume explicitly guarantees that the power session between
3214 * the host and the device is the same as it was when the device
3215 * suspended.
3216 *
Alan Sternfeccc302008-03-03 15:15:59 -05003217 * If @udev->reset_resume is set then this routine won't check that the
3218 * port is still enabled. Furthermore, finish_port_resume() above will
Alan Stern54515fe2007-05-30 15:38:58 -04003219 * reset @udev. The end result is that a broken power session can be
3220 * recovered and @udev will appear to persist across a loss of VBUS power.
3221 *
3222 * For example, if a host controller doesn't maintain VBUS suspend current
3223 * during a system sleep or is reset when the system wakes up, all the USB
3224 * power sessions below it will be broken. This is especially troublesome
3225 * for mass-storage devices containing mounted filesystems, since the
3226 * device will appear to have disconnected and all the memory mappings
3227 * to it will be lost. Using the USB_PERSIST facility, the device can be
3228 * made to appear as if it had not disconnected.
3229 *
Ming Lei742120c2008-06-18 22:00:29 +08003230 * This facility can be dangerous. Although usb_reset_and_verify_device() makes
Alan Sternfeccc302008-03-03 15:15:59 -05003231 * every effort to insure that the same device is present after the
Alan Stern54515fe2007-05-30 15:38:58 -04003232 * reset as before, it cannot provide a 100% guarantee. Furthermore it's
3233 * quite possible for a device to remain unaltered but its media to be
3234 * changed. If the user replaces a flash memory card while the system is
3235 * asleep, he will have only himself to blame when the filesystem on the
3236 * new card is corrupted and the system crashes.
3237 *
Alan Stern624d6c02007-05-30 15:35:16 -04003238 * Returns 0 on success, else negative errno.
3239 */
Alan Stern65bfd292008-11-25 16:39:18 -05003240int usb_port_resume(struct usb_device *udev, pm_message_t msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003241{
Lan Tianyuad493e52013-01-23 04:26:30 +08003242 struct usb_hub *hub = usb_hub_to_struct_hub(udev->parent);
3243 struct usb_port *port_dev = hub->ports[udev->portnum - 1];
Alan Stern624d6c02007-05-30 15:35:16 -04003244 int port1 = udev->portnum;
3245 int status;
3246 u16 portchange, portstatus;
Alan Sternd25450c2006-11-20 11:14:30 -05003247
Lan Tianyuad493e52013-01-23 04:26:30 +08003248 if (port_dev->did_runtime_put) {
3249 status = pm_runtime_get_sync(&port_dev->dev);
3250 port_dev->did_runtime_put = false;
3251 if (status < 0) {
3252 dev_dbg(&udev->dev, "can't resume usb port, status %d\n",
3253 status);
3254 return status;
3255 }
3256 }
3257
Alan Sternd25450c2006-11-20 11:14:30 -05003258 /* Skip the initial Clear-Suspend step for a remote wakeup */
3259 status = hub_port_status(hub, port1, &portstatus, &portchange);
Andiry Xu0ed9a572011-04-27 18:07:43 +08003260 if (status == 0 && !port_is_suspended(hub, portstatus))
Alan Sternd25450c2006-11-20 11:14:30 -05003261 goto SuspendCleared;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003262
Alan Sternd5cbad42006-08-11 16:52:39 -04003263 set_bit(port1, hub->busy_bits);
3264
Linus Torvalds1da177e2005-04-16 15:20:36 -07003265 /* see 7.1.7.7; affects power usage, but not budgeting */
Andiry Xua7114232011-04-27 18:07:50 +08003266 if (hub_is_superspeed(hub->hdev))
Sarah Sharpc2f60db2012-12-10 15:43:08 -08003267 status = hub_set_port_link_state(hub, port1, USB_SS_PORT_LS_U0);
Andiry Xua7114232011-04-27 18:07:50 +08003268 else
Lan Tianyuad493e52013-01-23 04:26:30 +08003269 status = usb_clear_port_feature(hub->hdev,
Andiry Xua7114232011-04-27 18:07:50 +08003270 port1, USB_PORT_FEAT_SUSPEND);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003271 if (status) {
Dan Williamsd99f6b42014-05-20 18:08:17 -07003272 dev_dbg(&port_dev->dev, "can't resume, status %d\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003273 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003274 /* drive resume for at least 20 msec */
Alan Stern686314c2007-05-30 15:34:36 -04003275 dev_dbg(&udev->dev, "usb %sresume\n",
Alan Stern5b1b0b82011-08-19 23:49:48 +02003276 (PMSG_IS_AUTO(msg) ? "auto-" : ""));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003277 msleep(25);
3278
Linus Torvalds1da177e2005-04-16 15:20:36 -07003279 /* Virtual root hubs can trigger on GET_PORT_STATUS to
3280 * stop resume signaling. Then finish the resume
3281 * sequence.
3282 */
Alan Sternd25450c2006-11-20 11:14:30 -05003283 status = hub_port_status(hub, port1, &portstatus, &portchange);
Alan Stern54515fe2007-05-30 15:38:58 -04003284
Alan Sternb01b03f2008-04-28 11:06:11 -04003285 /* TRSMRCY = 10 msec */
3286 msleep(10);
3287 }
Alan Stern54515fe2007-05-30 15:38:58 -04003288
Alan Sternb01b03f2008-04-28 11:06:11 -04003289 SuspendCleared:
3290 if (status == 0) {
Alan Sternbfd1e912012-10-19 11:03:39 -04003291 udev->port_is_suspended = 0;
Andiry Xua7114232011-04-27 18:07:50 +08003292 if (hub_is_superspeed(hub->hdev)) {
3293 if (portchange & USB_PORT_STAT_C_LINK_STATE)
Lan Tianyuad493e52013-01-23 04:26:30 +08003294 usb_clear_port_feature(hub->hdev, port1,
Andiry Xua7114232011-04-27 18:07:50 +08003295 USB_PORT_FEAT_C_PORT_LINK_STATE);
3296 } else {
3297 if (portchange & USB_PORT_STAT_C_SUSPEND)
Lan Tianyuad493e52013-01-23 04:26:30 +08003298 usb_clear_port_feature(hub->hdev, port1,
Andiry Xua7114232011-04-27 18:07:50 +08003299 USB_PORT_FEAT_C_SUSPEND);
3300 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003301 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003302
Alan Sternd5cbad42006-08-11 16:52:39 -04003303 clear_bit(port1, hub->busy_bits);
Alan Sternd5cbad42006-08-11 16:52:39 -04003304
Alan Sternb01b03f2008-04-28 11:06:11 -04003305 status = check_port_resume_type(udev,
3306 hub, port1, status, portchange, portstatus);
Alan Stern54515fe2007-05-30 15:38:58 -04003307 if (status == 0)
3308 status = finish_port_resume(udev);
3309 if (status < 0) {
3310 dev_dbg(&udev->dev, "can't resume, status %d\n", status);
3311 hub_port_logical_disconnect(hub, port1);
Andiry Xu65580b432011-09-23 14:19:52 -07003312 } else {
3313 /* Try to enable USB2 hardware LPM */
3314 if (udev->usb2_hw_lpm_capable == 1)
3315 usb_set_usb2_hardware_lpm(udev, 1);
Sarah Sharp83060952012-05-02 14:25:52 -07003316
Sarah Sharpf74631e2012-06-25 12:08:08 -07003317 /* Try to enable USB3 LTM and LPM */
3318 usb_enable_ltm(udev);
Sarah Sharp83060952012-05-02 14:25:52 -07003319 usb_unlocked_enable_lpm(udev);
Alan Stern54515fe2007-05-30 15:38:58 -04003320 }
Andiry Xu65580b432011-09-23 14:19:52 -07003321
Linus Torvalds1da177e2005-04-16 15:20:36 -07003322 return status;
3323}
3324
Alan Stern84ebc102013-03-27 16:14:46 -04003325#ifdef CONFIG_PM_RUNTIME
3326
Alan Stern8808f002008-04-28 11:06:55 -04003327/* caller has locked udev */
Alan Stern0534d462010-01-08 12:56:30 -05003328int usb_remote_wakeup(struct usb_device *udev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003329{
3330 int status = 0;
3331
Linus Torvalds1da177e2005-04-16 15:20:36 -07003332 if (udev->state == USB_STATE_SUSPENDED) {
Alan Stern645daaa2006-08-30 15:47:02 -04003333 dev_dbg(&udev->dev, "usb %sresume\n", "wakeup-");
Alan Stern9bbdf1e2010-01-08 12:57:28 -05003334 status = usb_autoresume_device(udev);
3335 if (status == 0) {
3336 /* Let the drivers do their thing, then... */
3337 usb_autosuspend_device(udev);
3338 }
Alan Sternd25450c2006-11-20 11:14:30 -05003339 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003340 return status;
3341}
3342
Alan Sternd388dab2006-07-01 22:14:24 -04003343#endif
3344
Ming Leie6f30de2012-10-24 11:59:24 +08003345static int check_ports_changed(struct usb_hub *hub)
3346{
3347 int port1;
3348
3349 for (port1 = 1; port1 <= hub->hdev->maxchild; ++port1) {
3350 u16 portstatus, portchange;
3351 int status;
3352
3353 status = hub_port_status(hub, port1, &portstatus, &portchange);
3354 if (!status && portchange)
3355 return 1;
3356 }
3357 return 0;
3358}
3359
David Brownelldb690872005-09-13 19:56:33 -07003360static int hub_suspend(struct usb_interface *intf, pm_message_t msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003361{
3362 struct usb_hub *hub = usb_get_intfdata (intf);
3363 struct usb_device *hdev = hub->hdev;
3364 unsigned port1;
Sarah Sharp4296c70a2012-01-06 10:34:31 -08003365 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003366
Alan Sterne583d9d2013-07-11 14:58:04 -04003367 /*
3368 * Warn if children aren't already suspended.
3369 * Also, add up the number of wakeup-enabled descendants.
3370 */
3371 hub->wakeup_enabled_descendants = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003372 for (port1 = 1; port1 <= hdev->maxchild; port1++) {
Dan Williamsd99f6b42014-05-20 18:08:17 -07003373 struct usb_port *port_dev = hub->ports[port1 - 1];
3374 struct usb_device *udev = port_dev->child;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003375
Alan Stern6840d252007-09-10 11:34:26 -04003376 if (udev && udev->can_submit) {
Dan Williamsd99f6b42014-05-20 18:08:17 -07003377 dev_warn(&port_dev->dev, "not suspended yet\n");
Alan Stern5b1b0b82011-08-19 23:49:48 +02003378 if (PMSG_IS_AUTO(msg))
Alan Sterncbb33002011-06-15 16:29:16 -04003379 return -EBUSY;
David Brownellc9f89fa2005-09-13 19:57:04 -07003380 }
Alan Sterne583d9d2013-07-11 14:58:04 -04003381 if (udev)
3382 hub->wakeup_enabled_descendants +=
3383 wakeup_enabled_descendants(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003384 }
Ming Leie6f30de2012-10-24 11:59:24 +08003385
3386 if (hdev->do_remote_wakeup && hub->quirk_check_port_auto_suspend) {
3387 /* check if there are changes pending on hub ports */
3388 if (check_ports_changed(hub)) {
3389 if (PMSG_IS_AUTO(msg))
3390 return -EBUSY;
3391 pm_wakeup_event(&hdev->dev, 2000);
3392 }
3393 }
3394
Sarah Sharp4296c70a2012-01-06 10:34:31 -08003395 if (hub_is_superspeed(hdev) && hdev->do_remote_wakeup) {
3396 /* Enable hub to send remote wakeup for all ports. */
3397 for (port1 = 1; port1 <= hdev->maxchild; port1++) {
3398 status = set_port_feature(hdev,
3399 port1 |
3400 USB_PORT_FEAT_REMOTE_WAKE_CONNECT |
3401 USB_PORT_FEAT_REMOTE_WAKE_DISCONNECT |
3402 USB_PORT_FEAT_REMOTE_WAKE_OVER_CURRENT,
3403 USB_PORT_FEAT_REMOTE_WAKE_MASK);
3404 }
3405 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003406
Harvey Harrison441b62c2008-03-03 16:08:34 -08003407 dev_dbg(&intf->dev, "%s\n", __func__);
Alan Stern40f122f2006-11-09 14:44:33 -05003408
David Brownellc9f89fa2005-09-13 19:57:04 -07003409 /* stop khubd and related activity */
Alan Stern43303542008-04-28 11:07:31 -04003410 hub_quiesce(hub, HUB_SUSPEND);
Alan Sternb6f64362007-05-04 11:51:54 -04003411 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003412}
3413
3414static int hub_resume(struct usb_interface *intf)
3415{
Alan Stern5e6effa2008-03-03 15:15:51 -05003416 struct usb_hub *hub = usb_get_intfdata(intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003417
Alan Stern5e6effa2008-03-03 15:15:51 -05003418 dev_dbg(&intf->dev, "%s\n", __func__);
Alan Sternf2835212008-04-28 11:07:17 -04003419 hub_activate(hub, HUB_RESUME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003420 return 0;
3421}
3422
Alan Sternb41a60e2007-05-30 15:39:33 -04003423static int hub_reset_resume(struct usb_interface *intf)
Alan Sternf07600c2007-05-30 15:38:16 -04003424{
Alan Sternb41a60e2007-05-30 15:39:33 -04003425 struct usb_hub *hub = usb_get_intfdata(intf);
Alan Sternf07600c2007-05-30 15:38:16 -04003426
Alan Stern5e6effa2008-03-03 15:15:51 -05003427 dev_dbg(&intf->dev, "%s\n", __func__);
Alan Sternf2835212008-04-28 11:07:17 -04003428 hub_activate(hub, HUB_RESET_RESUME);
Alan Sternf07600c2007-05-30 15:38:16 -04003429 return 0;
3430}
3431
Alan Stern54515fe2007-05-30 15:38:58 -04003432/**
3433 * usb_root_hub_lost_power - called by HCD if the root hub lost Vbus power
3434 * @rhdev: struct usb_device for the root hub
3435 *
3436 * The USB host controller driver calls this function when its root hub
3437 * is resumed and Vbus power has been interrupted or the controller
Alan Sternfeccc302008-03-03 15:15:59 -05003438 * has been reset. The routine marks @rhdev as having lost power.
3439 * When the hub driver is resumed it will take notice and carry out
3440 * power-session recovery for all the "USB-PERSIST"-enabled child devices;
3441 * the others will be disconnected.
Alan Stern54515fe2007-05-30 15:38:58 -04003442 */
3443void usb_root_hub_lost_power(struct usb_device *rhdev)
3444{
3445 dev_warn(&rhdev->dev, "root hub lost power or was reset\n");
3446 rhdev->reset_resume = 1;
3447}
3448EXPORT_SYMBOL_GPL(usb_root_hub_lost_power);
3449
Sarah Sharp1ea7e0e2012-04-24 17:21:50 -07003450static const char * const usb3_lpm_names[] = {
3451 "U0",
3452 "U1",
3453 "U2",
3454 "U3",
3455};
3456
3457/*
3458 * Send a Set SEL control transfer to the device, prior to enabling
3459 * device-initiated U1 or U2. This lets the device know the exit latencies from
3460 * the time the device initiates a U1 or U2 exit, to the time it will receive a
3461 * packet from the host.
3462 *
3463 * This function will fail if the SEL or PEL values for udev are greater than
3464 * the maximum allowed values for the link state to be enabled.
3465 */
3466static int usb_req_set_sel(struct usb_device *udev, enum usb3_link_state state)
3467{
3468 struct usb_set_sel_req *sel_values;
3469 unsigned long long u1_sel;
3470 unsigned long long u1_pel;
3471 unsigned long long u2_sel;
3472 unsigned long long u2_pel;
3473 int ret;
3474
Xenia Ragiadakou38d7f682013-09-04 17:24:45 +03003475 if (udev->state != USB_STATE_CONFIGURED)
3476 return 0;
3477
Sarah Sharp1ea7e0e2012-04-24 17:21:50 -07003478 /* Convert SEL and PEL stored in ns to us */
3479 u1_sel = DIV_ROUND_UP(udev->u1_params.sel, 1000);
3480 u1_pel = DIV_ROUND_UP(udev->u1_params.pel, 1000);
3481 u2_sel = DIV_ROUND_UP(udev->u2_params.sel, 1000);
3482 u2_pel = DIV_ROUND_UP(udev->u2_params.pel, 1000);
3483
3484 /*
3485 * Make sure that the calculated SEL and PEL values for the link
3486 * state we're enabling aren't bigger than the max SEL/PEL
3487 * value that will fit in the SET SEL control transfer.
3488 * Otherwise the device would get an incorrect idea of the exit
3489 * latency for the link state, and could start a device-initiated
3490 * U1/U2 when the exit latencies are too high.
3491 */
3492 if ((state == USB3_LPM_U1 &&
3493 (u1_sel > USB3_LPM_MAX_U1_SEL_PEL ||
3494 u1_pel > USB3_LPM_MAX_U1_SEL_PEL)) ||
3495 (state == USB3_LPM_U2 &&
3496 (u2_sel > USB3_LPM_MAX_U2_SEL_PEL ||
3497 u2_pel > USB3_LPM_MAX_U2_SEL_PEL))) {
Sarah Sharp1510a1a2012-10-05 10:30:35 -07003498 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 -07003499 usb3_lpm_names[state], u1_sel, u1_pel);
3500 return -EINVAL;
3501 }
3502
3503 /*
3504 * If we're enabling device-initiated LPM for one link state,
3505 * but the other link state has a too high SEL or PEL value,
3506 * just set those values to the max in the Set SEL request.
3507 */
3508 if (u1_sel > USB3_LPM_MAX_U1_SEL_PEL)
3509 u1_sel = USB3_LPM_MAX_U1_SEL_PEL;
3510
3511 if (u1_pel > USB3_LPM_MAX_U1_SEL_PEL)
3512 u1_pel = USB3_LPM_MAX_U1_SEL_PEL;
3513
3514 if (u2_sel > USB3_LPM_MAX_U2_SEL_PEL)
3515 u2_sel = USB3_LPM_MAX_U2_SEL_PEL;
3516
3517 if (u2_pel > USB3_LPM_MAX_U2_SEL_PEL)
3518 u2_pel = USB3_LPM_MAX_U2_SEL_PEL;
3519
3520 /*
3521 * usb_enable_lpm() can be called as part of a failed device reset,
3522 * which may be initiated by an error path of a mass storage driver.
3523 * Therefore, use GFP_NOIO.
3524 */
3525 sel_values = kmalloc(sizeof *(sel_values), GFP_NOIO);
3526 if (!sel_values)
3527 return -ENOMEM;
3528
3529 sel_values->u1_sel = u1_sel;
3530 sel_values->u1_pel = u1_pel;
3531 sel_values->u2_sel = cpu_to_le16(u2_sel);
3532 sel_values->u2_pel = cpu_to_le16(u2_pel);
3533
3534 ret = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
3535 USB_REQ_SET_SEL,
3536 USB_RECIP_DEVICE,
3537 0, 0,
3538 sel_values, sizeof *(sel_values),
3539 USB_CTRL_SET_TIMEOUT);
3540 kfree(sel_values);
3541 return ret;
3542}
3543
3544/*
3545 * Enable or disable device-initiated U1 or U2 transitions.
3546 */
3547static int usb_set_device_initiated_lpm(struct usb_device *udev,
3548 enum usb3_link_state state, bool enable)
3549{
3550 int ret;
3551 int feature;
3552
3553 switch (state) {
3554 case USB3_LPM_U1:
3555 feature = USB_DEVICE_U1_ENABLE;
3556 break;
3557 case USB3_LPM_U2:
3558 feature = USB_DEVICE_U2_ENABLE;
3559 break;
3560 default:
3561 dev_warn(&udev->dev, "%s: Can't %s non-U1 or U2 state.\n",
3562 __func__, enable ? "enable" : "disable");
3563 return -EINVAL;
3564 }
3565
3566 if (udev->state != USB_STATE_CONFIGURED) {
3567 dev_dbg(&udev->dev, "%s: Can't %s %s state "
3568 "for unconfigured device.\n",
3569 __func__, enable ? "enable" : "disable",
3570 usb3_lpm_names[state]);
3571 return 0;
3572 }
3573
3574 if (enable) {
3575 /*
Sarah Sharp1ea7e0e2012-04-24 17:21:50 -07003576 * Now send the control transfer to enable device-initiated LPM
3577 * for either U1 or U2.
3578 */
3579 ret = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
3580 USB_REQ_SET_FEATURE,
3581 USB_RECIP_DEVICE,
3582 feature,
3583 0, NULL, 0,
3584 USB_CTRL_SET_TIMEOUT);
3585 } else {
3586 ret = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
3587 USB_REQ_CLEAR_FEATURE,
3588 USB_RECIP_DEVICE,
3589 feature,
3590 0, NULL, 0,
3591 USB_CTRL_SET_TIMEOUT);
3592 }
3593 if (ret < 0) {
3594 dev_warn(&udev->dev, "%s of device-initiated %s failed.\n",
3595 enable ? "Enable" : "Disable",
3596 usb3_lpm_names[state]);
3597 return -EBUSY;
3598 }
3599 return 0;
3600}
3601
3602static int usb_set_lpm_timeout(struct usb_device *udev,
3603 enum usb3_link_state state, int timeout)
3604{
3605 int ret;
3606 int feature;
3607
3608 switch (state) {
3609 case USB3_LPM_U1:
3610 feature = USB_PORT_FEAT_U1_TIMEOUT;
3611 break;
3612 case USB3_LPM_U2:
3613 feature = USB_PORT_FEAT_U2_TIMEOUT;
3614 break;
3615 default:
3616 dev_warn(&udev->dev, "%s: Can't set timeout for non-U1 or U2 state.\n",
3617 __func__);
3618 return -EINVAL;
3619 }
3620
3621 if (state == USB3_LPM_U1 && timeout > USB3_LPM_U1_MAX_TIMEOUT &&
3622 timeout != USB3_LPM_DEVICE_INITIATED) {
3623 dev_warn(&udev->dev, "Failed to set %s timeout to 0x%x, "
3624 "which is a reserved value.\n",
3625 usb3_lpm_names[state], timeout);
3626 return -EINVAL;
3627 }
3628
3629 ret = set_port_feature(udev->parent,
3630 USB_PORT_LPM_TIMEOUT(timeout) | udev->portnum,
3631 feature);
3632 if (ret < 0) {
3633 dev_warn(&udev->dev, "Failed to set %s timeout to 0x%x,"
3634 "error code %i\n", usb3_lpm_names[state],
3635 timeout, ret);
3636 return -EBUSY;
3637 }
3638 if (state == USB3_LPM_U1)
3639 udev->u1_params.timeout = timeout;
3640 else
3641 udev->u2_params.timeout = timeout;
3642 return 0;
3643}
3644
3645/*
3646 * Enable the hub-initiated U1/U2 idle timeouts, and enable device-initiated
3647 * U1/U2 entry.
3648 *
3649 * We will attempt to enable U1 or U2, but there are no guarantees that the
3650 * control transfers to set the hub timeout or enable device-initiated U1/U2
3651 * will be successful.
3652 *
3653 * If we cannot set the parent hub U1/U2 timeout, we attempt to let the xHCI
3654 * driver know about it. If that call fails, it should be harmless, and just
3655 * take up more slightly more bus bandwidth for unnecessary U1/U2 exit latency.
3656 */
3657static void usb_enable_link_state(struct usb_hcd *hcd, struct usb_device *udev,
3658 enum usb3_link_state state)
3659{
Sarah Sharp65a95b72012-10-05 10:32:07 -07003660 int timeout, ret;
Sarah Sharpae8963a2012-10-03 11:18:05 -07003661 __u8 u1_mel = udev->bos->ss_cap->bU1devExitLat;
3662 __le16 u2_mel = udev->bos->ss_cap->bU2DevExitLat;
3663
3664 /* If the device says it doesn't have *any* exit latency to come out of
3665 * U1 or U2, it's probably lying. Assume it doesn't implement that link
3666 * state.
3667 */
3668 if ((state == USB3_LPM_U1 && u1_mel == 0) ||
3669 (state == USB3_LPM_U2 && u2_mel == 0))
3670 return;
Sarah Sharp1ea7e0e2012-04-24 17:21:50 -07003671
Sarah Sharp65a95b72012-10-05 10:32:07 -07003672 /*
3673 * First, let the device know about the exit latencies
3674 * associated with the link state we're about to enable.
3675 */
3676 ret = usb_req_set_sel(udev, state);
3677 if (ret < 0) {
3678 dev_warn(&udev->dev, "Set SEL for device-initiated %s failed.\n",
3679 usb3_lpm_names[state]);
3680 return;
3681 }
3682
Sarah Sharp1ea7e0e2012-04-24 17:21:50 -07003683 /* We allow the host controller to set the U1/U2 timeout internally
3684 * first, so that it can change its schedule to account for the
3685 * additional latency to send data to a device in a lower power
3686 * link state.
3687 */
3688 timeout = hcd->driver->enable_usb3_lpm_timeout(hcd, udev, state);
3689
3690 /* xHCI host controller doesn't want to enable this LPM state. */
3691 if (timeout == 0)
3692 return;
3693
3694 if (timeout < 0) {
3695 dev_warn(&udev->dev, "Could not enable %s link state, "
3696 "xHCI error %i.\n", usb3_lpm_names[state],
3697 timeout);
3698 return;
3699 }
3700
3701 if (usb_set_lpm_timeout(udev, state, timeout))
3702 /* If we can't set the parent hub U1/U2 timeout,
3703 * device-initiated LPM won't be allowed either, so let the xHCI
3704 * host know that this link state won't be enabled.
3705 */
3706 hcd->driver->disable_usb3_lpm_timeout(hcd, udev, state);
3707
3708 /* Only a configured device will accept the Set Feature U1/U2_ENABLE */
3709 else if (udev->actconfig)
3710 usb_set_device_initiated_lpm(udev, state, true);
3711
3712}
3713
3714/*
3715 * Disable the hub-initiated U1/U2 idle timeouts, and disable device-initiated
3716 * U1/U2 entry.
3717 *
3718 * If this function returns -EBUSY, the parent hub will still allow U1/U2 entry.
3719 * If zero is returned, the parent will not allow the link to go into U1/U2.
3720 *
3721 * If zero is returned, device-initiated U1/U2 entry may still be enabled, but
3722 * it won't have an effect on the bus link state because the parent hub will
3723 * still disallow device-initiated U1/U2 entry.
3724 *
3725 * If zero is returned, the xHCI host controller may still think U1/U2 entry is
3726 * possible. The result will be slightly more bus bandwidth will be taken up
3727 * (to account for U1/U2 exit latency), but it should be harmless.
3728 */
3729static int usb_disable_link_state(struct usb_hcd *hcd, struct usb_device *udev,
3730 enum usb3_link_state state)
3731{
3732 int feature;
3733
3734 switch (state) {
3735 case USB3_LPM_U1:
3736 feature = USB_PORT_FEAT_U1_TIMEOUT;
3737 break;
3738 case USB3_LPM_U2:
3739 feature = USB_PORT_FEAT_U2_TIMEOUT;
3740 break;
3741 default:
3742 dev_warn(&udev->dev, "%s: Can't disable non-U1 or U2 state.\n",
3743 __func__);
3744 return -EINVAL;
3745 }
3746
3747 if (usb_set_lpm_timeout(udev, state, 0))
3748 return -EBUSY;
3749
3750 usb_set_device_initiated_lpm(udev, state, false);
3751
3752 if (hcd->driver->disable_usb3_lpm_timeout(hcd, udev, state))
3753 dev_warn(&udev->dev, "Could not disable xHCI %s timeout, "
3754 "bus schedule bandwidth may be impacted.\n",
3755 usb3_lpm_names[state]);
3756 return 0;
3757}
3758
3759/*
3760 * Disable hub-initiated and device-initiated U1 and U2 entry.
3761 * Caller must own the bandwidth_mutex.
3762 *
3763 * This will call usb_enable_lpm() on failure, which will decrement
3764 * lpm_disable_count, and will re-enable LPM if lpm_disable_count reaches zero.
3765 */
3766int usb_disable_lpm(struct usb_device *udev)
3767{
3768 struct usb_hcd *hcd;
3769
3770 if (!udev || !udev->parent ||
3771 udev->speed != USB_SPEED_SUPER ||
3772 !udev->lpm_capable)
3773 return 0;
3774
3775 hcd = bus_to_hcd(udev->bus);
3776 if (!hcd || !hcd->driver->disable_usb3_lpm_timeout)
3777 return 0;
3778
3779 udev->lpm_disable_count++;
Dan Carpenter55558c32012-05-22 20:54:34 +03003780 if ((udev->u1_params.timeout == 0 && udev->u2_params.timeout == 0))
Sarah Sharp1ea7e0e2012-04-24 17:21:50 -07003781 return 0;
3782
3783 /* If LPM is enabled, attempt to disable it. */
3784 if (usb_disable_link_state(hcd, udev, USB3_LPM_U1))
3785 goto enable_lpm;
3786 if (usb_disable_link_state(hcd, udev, USB3_LPM_U2))
3787 goto enable_lpm;
3788
3789 return 0;
3790
3791enable_lpm:
3792 usb_enable_lpm(udev);
3793 return -EBUSY;
3794}
3795EXPORT_SYMBOL_GPL(usb_disable_lpm);
3796
3797/* Grab the bandwidth_mutex before calling usb_disable_lpm() */
3798int usb_unlocked_disable_lpm(struct usb_device *udev)
3799{
3800 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
3801 int ret;
3802
3803 if (!hcd)
3804 return -EINVAL;
3805
3806 mutex_lock(hcd->bandwidth_mutex);
3807 ret = usb_disable_lpm(udev);
3808 mutex_unlock(hcd->bandwidth_mutex);
3809
3810 return ret;
3811}
3812EXPORT_SYMBOL_GPL(usb_unlocked_disable_lpm);
3813
3814/*
3815 * Attempt to enable device-initiated and hub-initiated U1 and U2 entry. The
3816 * xHCI host policy may prevent U1 or U2 from being enabled.
3817 *
3818 * Other callers may have disabled link PM, so U1 and U2 entry will be disabled
3819 * until the lpm_disable_count drops to zero. Caller must own the
3820 * bandwidth_mutex.
3821 */
3822void usb_enable_lpm(struct usb_device *udev)
3823{
3824 struct usb_hcd *hcd;
3825
3826 if (!udev || !udev->parent ||
3827 udev->speed != USB_SPEED_SUPER ||
3828 !udev->lpm_capable)
3829 return;
3830
3831 udev->lpm_disable_count--;
3832 hcd = bus_to_hcd(udev->bus);
3833 /* Double check that we can both enable and disable LPM.
3834 * Device must be configured to accept set feature U1/U2 timeout.
3835 */
3836 if (!hcd || !hcd->driver->enable_usb3_lpm_timeout ||
3837 !hcd->driver->disable_usb3_lpm_timeout)
3838 return;
3839
3840 if (udev->lpm_disable_count > 0)
3841 return;
3842
3843 usb_enable_link_state(hcd, udev, USB3_LPM_U1);
3844 usb_enable_link_state(hcd, udev, USB3_LPM_U2);
3845}
3846EXPORT_SYMBOL_GPL(usb_enable_lpm);
3847
3848/* Grab the bandwidth_mutex before calling usb_enable_lpm() */
3849void usb_unlocked_enable_lpm(struct usb_device *udev)
3850{
3851 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
3852
3853 if (!hcd)
3854 return;
3855
3856 mutex_lock(hcd->bandwidth_mutex);
3857 usb_enable_lpm(udev);
3858 mutex_unlock(hcd->bandwidth_mutex);
3859}
3860EXPORT_SYMBOL_GPL(usb_unlocked_enable_lpm);
3861
3862
Alan Sternd388dab2006-07-01 22:14:24 -04003863#else /* CONFIG_PM */
3864
Alan Sternf07600c2007-05-30 15:38:16 -04003865#define hub_suspend NULL
3866#define hub_resume NULL
3867#define hub_reset_resume NULL
Sarah Sharp1ea7e0e2012-04-24 17:21:50 -07003868
3869int usb_disable_lpm(struct usb_device *udev)
3870{
3871 return 0;
3872}
Sarah Sharpe9261fb2012-05-21 08:29:01 -07003873EXPORT_SYMBOL_GPL(usb_disable_lpm);
Sarah Sharp1ea7e0e2012-04-24 17:21:50 -07003874
3875void usb_enable_lpm(struct usb_device *udev) { }
Sarah Sharpe9261fb2012-05-21 08:29:01 -07003876EXPORT_SYMBOL_GPL(usb_enable_lpm);
Sarah Sharp1ea7e0e2012-04-24 17:21:50 -07003877
3878int usb_unlocked_disable_lpm(struct usb_device *udev)
3879{
3880 return 0;
3881}
Sarah Sharpe9261fb2012-05-21 08:29:01 -07003882EXPORT_SYMBOL_GPL(usb_unlocked_disable_lpm);
Sarah Sharp1ea7e0e2012-04-24 17:21:50 -07003883
3884void usb_unlocked_enable_lpm(struct usb_device *udev) { }
Sarah Sharpe9261fb2012-05-21 08:29:01 -07003885EXPORT_SYMBOL_GPL(usb_unlocked_enable_lpm);
Sarah Sharpf74631e2012-06-25 12:08:08 -07003886
3887int usb_disable_ltm(struct usb_device *udev)
3888{
3889 return 0;
3890}
3891EXPORT_SYMBOL_GPL(usb_disable_ltm);
3892
3893void usb_enable_ltm(struct usb_device *udev) { }
3894EXPORT_SYMBOL_GPL(usb_enable_ltm);
Alan Sternc4b51a42013-07-11 14:58:23 -04003895
3896#endif /* CONFIG_PM */
Alan Sternd388dab2006-07-01 22:14:24 -04003897
Linus Torvalds1da177e2005-04-16 15:20:36 -07003898
3899/* USB 2.0 spec, 7.1.7.3 / fig 7-29:
3900 *
3901 * Between connect detection and reset signaling there must be a delay
3902 * of 100ms at least for debounce and power-settling. The corresponding
3903 * timer shall restart whenever the downstream port detects a disconnect.
Matthias Beyer469271f2013-10-10 23:41:27 +02003904 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003905 * Apparently there are some bluetooth and irda-dongles and a number of
3906 * low-speed devices for which this debounce period may last over a second.
3907 * Not covered by the spec - but easy to deal with.
3908 *
3909 * This implementation uses a 1500ms total debounce timeout; if the
3910 * connection isn't stable by then it returns -ETIMEDOUT. It checks
3911 * every 25ms for transient disconnects. When the port status has been
3912 * unchanged for 100ms it returns the port status.
3913 */
Lan Tianyuad493e52013-01-23 04:26:30 +08003914int hub_port_debounce(struct usb_hub *hub, int port1, bool must_be_connected)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003915{
3916 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003917 u16 portchange, portstatus;
3918 unsigned connection = 0xffff;
Dan Williamsd99f6b42014-05-20 18:08:17 -07003919 int total_time, stable_time = 0;
3920 struct usb_port *port_dev = hub->ports[port1 - 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003921
3922 for (total_time = 0; ; total_time += HUB_DEBOUNCE_STEP) {
3923 ret = hub_port_status(hub, port1, &portstatus, &portchange);
3924 if (ret < 0)
3925 return ret;
3926
3927 if (!(portchange & USB_PORT_STAT_C_CONNECTION) &&
3928 (portstatus & USB_PORT_STAT_CONNECTION) == connection) {
Lan Tianyuad493e52013-01-23 04:26:30 +08003929 if (!must_be_connected ||
3930 (connection == USB_PORT_STAT_CONNECTION))
3931 stable_time += HUB_DEBOUNCE_STEP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003932 if (stable_time >= HUB_DEBOUNCE_STABLE)
3933 break;
3934 } else {
3935 stable_time = 0;
3936 connection = portstatus & USB_PORT_STAT_CONNECTION;
3937 }
3938
3939 if (portchange & USB_PORT_STAT_C_CONNECTION) {
Lan Tianyuad493e52013-01-23 04:26:30 +08003940 usb_clear_port_feature(hub->hdev, port1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003941 USB_PORT_FEAT_C_CONNECTION);
3942 }
3943
3944 if (total_time >= HUB_DEBOUNCE_TIMEOUT)
3945 break;
3946 msleep(HUB_DEBOUNCE_STEP);
3947 }
3948
Dan Williamsd99f6b42014-05-20 18:08:17 -07003949 dev_dbg(&port_dev->dev, "debounce total %dms stable %dms status 0x%x\n",
3950 total_time, stable_time, portstatus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003951
3952 if (stable_time < HUB_DEBOUNCE_STABLE)
3953 return -ETIMEDOUT;
3954 return portstatus;
3955}
3956
Inaky Perez-Gonzalezfc721f52008-04-08 13:24:46 -07003957void usb_ep0_reinit(struct usb_device *udev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003958{
Alan Sternddeac4e2009-01-15 17:03:33 -05003959 usb_disable_endpoint(udev, 0 + USB_DIR_IN, true);
3960 usb_disable_endpoint(udev, 0 + USB_DIR_OUT, true);
Alan Stern2caf7fc2008-12-31 11:31:33 -05003961 usb_enable_endpoint(udev, &udev->ep0, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003962}
Inaky Perez-Gonzalezfc721f52008-04-08 13:24:46 -07003963EXPORT_SYMBOL_GPL(usb_ep0_reinit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003964
3965#define usb_sndaddr0pipe() (PIPE_CONTROL << 30)
3966#define usb_rcvaddr0pipe() ((PIPE_CONTROL << 30) | USB_DIR_IN)
3967
Alan Stern4326ed02007-07-30 17:08:43 -04003968static int hub_set_address(struct usb_device *udev, int devnum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003969{
3970 int retval;
Sarah Sharpc6515272009-04-27 19:57:26 -07003971 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003972
Sarah Sharpc6515272009-04-27 19:57:26 -07003973 /*
3974 * The host controller will choose the device address,
3975 * instead of the core having chosen it earlier
3976 */
3977 if (!hcd->driver->address_device && devnum <= 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003978 return -EINVAL;
3979 if (udev->state == USB_STATE_ADDRESS)
3980 return 0;
3981 if (udev->state != USB_STATE_DEFAULT)
3982 return -EINVAL;
Andiry Xuc8d4af82010-10-14 07:22:51 -07003983 if (hcd->driver->address_device)
Sarah Sharpc6515272009-04-27 19:57:26 -07003984 retval = hcd->driver->address_device(hcd, udev);
Andiry Xuc8d4af82010-10-14 07:22:51 -07003985 else
Sarah Sharpc6515272009-04-27 19:57:26 -07003986 retval = usb_control_msg(udev, usb_sndaddr0pipe(),
3987 USB_REQ_SET_ADDRESS, 0, devnum, 0,
3988 NULL, 0, USB_CTRL_SET_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003989 if (retval == 0) {
Alan Stern3b29b682011-02-22 09:53:41 -05003990 update_devnum(udev, devnum);
David Vrabel4953d142008-04-08 13:24:46 -07003991 /* Device now using proper address. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003992 usb_set_device_state(udev, USB_STATE_ADDRESS);
Inaky Perez-Gonzalezfc721f52008-04-08 13:24:46 -07003993 usb_ep0_reinit(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003994 }
3995 return retval;
3996}
3997
Mathias Nyman890dae82013-09-30 17:26:31 +03003998/*
3999 * There are reports of USB 3.0 devices that say they support USB 2.0 Link PM
4000 * when they're plugged into a USB 2.0 port, but they don't work when LPM is
4001 * enabled.
4002 *
4003 * Only enable USB 2.0 Link PM if the port is internal (hardwired), or the
4004 * device says it supports the new USB 2.0 Link PM errata by setting the BESL
4005 * support bit in the BOS descriptor.
4006 */
4007static void hub_set_initial_usb2_lpm_policy(struct usb_device *udev)
4008{
Dan Williamsd99f6b42014-05-20 18:08:17 -07004009 struct usb_hub *hub = usb_hub_to_struct_hub(udev->parent);
4010 int connect_type = USB_PORT_CONNECT_TYPE_UNKNOWN;
Mathias Nyman890dae82013-09-30 17:26:31 +03004011
4012 if (!udev->usb2_hw_lpm_capable)
4013 return;
4014
Dan Williamsd99f6b42014-05-20 18:08:17 -07004015 if (hub)
4016 connect_type = hub->ports[udev->portnum - 1]->connect_type;
Mathias Nyman890dae82013-09-30 17:26:31 +03004017
Bjørn Mork23c05822014-02-27 14:23:55 +01004018 if ((udev->bos->ext_cap->bmAttributes & cpu_to_le32(USB_BESL_SUPPORT)) ||
Mathias Nyman890dae82013-09-30 17:26:31 +03004019 connect_type == USB_PORT_CONNECT_TYPE_HARD_WIRED) {
4020 udev->usb2_hw_lpm_allowed = 1;
4021 usb_set_usb2_hardware_lpm(udev, 1);
4022 }
4023}
4024
Dan Williams48fc7db2013-12-05 17:07:27 -08004025static int hub_enable_device(struct usb_device *udev)
4026{
4027 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
4028
4029 if (!hcd->driver->enable_device)
4030 return 0;
4031 if (udev->state == USB_STATE_ADDRESS)
4032 return 0;
4033 if (udev->state != USB_STATE_DEFAULT)
4034 return -EINVAL;
4035
4036 return hcd->driver->enable_device(hcd, udev);
4037}
4038
Linus Torvalds1da177e2005-04-16 15:20:36 -07004039/* Reset device, (re)assign address, get device descriptor.
4040 * Device connection must be stable, no more debouncing needed.
4041 * Returns device in USB_STATE_ADDRESS, except on error.
4042 *
4043 * If this is called for an already-existing device (as part of
Ming Lei742120c2008-06-18 22:00:29 +08004044 * usb_reset_and_verify_device), the caller must own the device lock. For a
Linus Torvalds1da177e2005-04-16 15:20:36 -07004045 * newly detected device that is not accessible through any global
4046 * pointers, it's not necessary to lock the device.
4047 */
4048static int
4049hub_port_init (struct usb_hub *hub, struct usb_device *udev, int port1,
4050 int retry_counter)
4051{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004052 struct usb_device *hdev = hub->hdev;
Sarah Sharpe7b77172009-04-27 19:54:26 -07004053 struct usb_hcd *hcd = bus_to_hcd(hdev->bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004054 int i, j, retval;
4055 unsigned delay = HUB_SHORT_RESET_TIME;
4056 enum usb_device_speed oldspeed = udev->speed;
Michal Nazarewicze538dfd2011-08-30 17:11:19 +02004057 const char *speed;
Alan Stern4326ed02007-07-30 17:08:43 -04004058 int devnum = udev->devnum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004059
4060 /* root hub ports have a slightly longer reset period
4061 * (from USB 2.0 spec, section 7.1.7.5)
4062 */
4063 if (!hdev->parent) {
4064 delay = HUB_ROOT_RESET_TIME;
4065 if (port1 == hdev->bus->otg_port)
4066 hdev->bus->b_hnp_enable = 0;
4067 }
4068
4069 /* Some low speed devices have problems with the quick delay, so */
4070 /* be a bit pessimistic with those devices. RHbug #23670 */
4071 if (oldspeed == USB_SPEED_LOW)
4072 delay = HUB_LONG_RESET_TIME;
4073
Todd E Brandt6fecd4f2014-05-19 10:55:32 -07004074 mutex_lock(&hdev->bus->usb_address0_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004075
Luben Tuikov07194ab2011-02-11 11:33:10 -08004076 /* Reset the device; full speed may morph to high speed */
4077 /* FIXME a USB 2.0 device may morph into SuperSpeed on reset. */
Andiry Xu75d7cf72011-09-13 16:41:11 -07004078 retval = hub_port_reset(hub, port1, udev, delay, false);
Luben Tuikov07194ab2011-02-11 11:33:10 -08004079 if (retval < 0) /* error or disconnect */
4080 goto fail;
4081 /* success, speed is known */
4082
Linus Torvalds1da177e2005-04-16 15:20:36 -07004083 retval = -ENODEV;
4084
4085 if (oldspeed != USB_SPEED_UNKNOWN && oldspeed != udev->speed) {
4086 dev_dbg(&udev->dev, "device reset changed speed!\n");
4087 goto fail;
4088 }
4089 oldspeed = udev->speed;
Alan Stern4326ed02007-07-30 17:08:43 -04004090
Linus Torvalds1da177e2005-04-16 15:20:36 -07004091 /* USB 2.0 section 5.5.3 talks about ep0 maxpacket ...
4092 * it's fixed size except for full speed devices.
Inaky Perez-Gonzalez5bb6e0a2006-08-25 19:35:30 -07004093 * For Wireless USB devices, ep0 max packet is always 512 (tho
4094 * reported as 0xff in the device descriptor). WUSB1.0[4.8.1].
Linus Torvalds1da177e2005-04-16 15:20:36 -07004095 */
4096 switch (udev->speed) {
Sarah Sharp6b403b02009-04-27 19:54:10 -07004097 case USB_SPEED_SUPER:
Greg Kroah-Hartman551cdbb2010-01-14 11:08:04 -08004098 case USB_SPEED_WIRELESS: /* fixed at 512 */
Harvey Harrison551509d2009-02-11 14:11:36 -08004099 udev->ep0.desc.wMaxPacketSize = cpu_to_le16(512);
Inaky Perez-Gonzalez5bb6e0a2006-08-25 19:35:30 -07004100 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004101 case USB_SPEED_HIGH: /* fixed at 64 */
Harvey Harrison551509d2009-02-11 14:11:36 -08004102 udev->ep0.desc.wMaxPacketSize = cpu_to_le16(64);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004103 break;
4104 case USB_SPEED_FULL: /* 8, 16, 32, or 64 */
4105 /* to determine the ep0 maxpacket size, try to read
4106 * the device descriptor to get bMaxPacketSize0 and
4107 * then correct our initial guess.
4108 */
Harvey Harrison551509d2009-02-11 14:11:36 -08004109 udev->ep0.desc.wMaxPacketSize = cpu_to_le16(64);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004110 break;
4111 case USB_SPEED_LOW: /* fixed at 8 */
Harvey Harrison551509d2009-02-11 14:11:36 -08004112 udev->ep0.desc.wMaxPacketSize = cpu_to_le16(8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004113 break;
4114 default:
4115 goto fail;
4116 }
Michal Nazarewicze538dfd2011-08-30 17:11:19 +02004117
4118 if (udev->speed == USB_SPEED_WIRELESS)
4119 speed = "variable speed Wireless";
4120 else
4121 speed = usb_speed_string(udev->speed);
4122
Sarah Sharpc6515272009-04-27 19:57:26 -07004123 if (udev->speed != USB_SPEED_SUPER)
4124 dev_info(&udev->dev,
Michal Nazarewicze538dfd2011-08-30 17:11:19 +02004125 "%s %s USB device number %d using %s\n",
4126 (udev->config) ? "reset" : "new", speed,
Alan Stern3b29b682011-02-22 09:53:41 -05004127 devnum, udev->bus->controller->driver->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004128
4129 /* Set up TT records, if needed */
4130 if (hdev->tt) {
4131 udev->tt = hdev->tt;
4132 udev->ttport = hdev->ttport;
4133 } else if (udev->speed != USB_SPEED_HIGH
4134 && hdev->speed == USB_SPEED_HIGH) {
Alan Sternd199c962011-01-31 10:56:37 -05004135 if (!hub->tt.hub) {
4136 dev_err(&udev->dev, "parent hub has no TT\n");
4137 retval = -EINVAL;
4138 goto fail;
4139 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004140 udev->tt = &hub->tt;
4141 udev->ttport = port1;
4142 }
Matthias Beyer469271f2013-10-10 23:41:27 +02004143
Linus Torvalds1da177e2005-04-16 15:20:36 -07004144 /* Why interleave GET_DESCRIPTOR and SET_ADDRESS this way?
4145 * Because device hardware and firmware is sometimes buggy in
4146 * this area, and this is how Linux has done it for ages.
4147 * Change it cautiously.
4148 *
Dan Williams48fc7db2013-12-05 17:07:27 -08004149 * NOTE: If use_new_scheme() is true we will start by issuing
Linus Torvalds1da177e2005-04-16 15:20:36 -07004150 * a 64-byte GET_DESCRIPTOR request. This is what Windows does,
4151 * so it may help with some non-standards-compliant devices.
4152 * Otherwise we start with SET_ADDRESS and then try to read the
4153 * first 8 bytes of the device descriptor to get the ep0 maxpacket
4154 * value.
4155 */
4156 for (i = 0; i < GET_DESCRIPTOR_TRIES; (++i, msleep(100))) {
Dan Williams48fc7db2013-12-05 17:07:27 -08004157 bool did_new_scheme = false;
4158
4159 if (use_new_scheme(udev, retry_counter)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004160 struct usb_device_descriptor *buf;
4161 int r = 0;
4162
Dan Williams48fc7db2013-12-05 17:07:27 -08004163 did_new_scheme = true;
4164 retval = hub_enable_device(udev);
Oliver Neukum938569e2014-02-27 10:57:10 +01004165 if (retval < 0) {
4166 dev_err(&udev->dev,
4167 "hub failed to enable device, error %d\n",
4168 retval);
Dan Williams48fc7db2013-12-05 17:07:27 -08004169 goto fail;
Oliver Neukum938569e2014-02-27 10:57:10 +01004170 }
Dan Williams48fc7db2013-12-05 17:07:27 -08004171
Linus Torvalds1da177e2005-04-16 15:20:36 -07004172#define GET_DESCRIPTOR_BUFSIZE 64
4173 buf = kmalloc(GET_DESCRIPTOR_BUFSIZE, GFP_NOIO);
4174 if (!buf) {
4175 retval = -ENOMEM;
4176 continue;
4177 }
4178
Alan Sternb89ee192007-05-11 10:19:04 -04004179 /* Retry on all errors; some devices are flakey.
4180 * 255 is for WUSB devices, we actually need to use
4181 * 512 (WUSB1.0[4.8.1]).
Linus Torvalds1da177e2005-04-16 15:20:36 -07004182 */
4183 for (j = 0; j < 3; ++j) {
4184 buf->bMaxPacketSize0 = 0;
4185 r = usb_control_msg(udev, usb_rcvaddr0pipe(),
4186 USB_REQ_GET_DESCRIPTOR, USB_DIR_IN,
4187 USB_DT_DEVICE << 8, 0,
4188 buf, GET_DESCRIPTOR_BUFSIZE,
Jaroslav Kyselafd7c5192008-10-10 16:24:45 +02004189 initial_descriptor_timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004190 switch (buf->bMaxPacketSize0) {
Inaky Perez-Gonzalez5bb6e0a2006-08-25 19:35:30 -07004191 case 8: case 16: case 32: case 64: case 255:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004192 if (buf->bDescriptorType ==
4193 USB_DT_DEVICE) {
4194 r = 0;
4195 break;
4196 }
4197 /* FALL THROUGH */
4198 default:
4199 if (r == 0)
4200 r = -EPROTO;
4201 break;
4202 }
4203 if (r == 0)
4204 break;
4205 }
4206 udev->descriptor.bMaxPacketSize0 =
4207 buf->bMaxPacketSize0;
4208 kfree(buf);
4209
Andiry Xu75d7cf72011-09-13 16:41:11 -07004210 retval = hub_port_reset(hub, port1, udev, delay, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004211 if (retval < 0) /* error or disconnect */
4212 goto fail;
4213 if (oldspeed != udev->speed) {
4214 dev_dbg(&udev->dev,
4215 "device reset changed speed!\n");
4216 retval = -ENODEV;
4217 goto fail;
4218 }
4219 if (r) {
Alan Sterne9e88fb2013-03-27 16:14:01 -04004220 if (r != -ENODEV)
4221 dev_err(&udev->dev, "device descriptor read/64, error %d\n",
4222 r);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004223 retval = -EMSGSIZE;
4224 continue;
4225 }
4226#undef GET_DESCRIPTOR_BUFSIZE
4227 }
4228
Matthias Beyer469271f2013-10-10 23:41:27 +02004229 /*
4230 * If device is WUSB, we already assigned an
4231 * unauthorized address in the Connect Ack sequence;
4232 * authorization will assign the final address.
4233 */
Sarah Sharpc6515272009-04-27 19:57:26 -07004234 if (udev->wusb == 0) {
Inaky Perez-Gonzalez6c529cd2008-04-08 13:24:46 -07004235 for (j = 0; j < SET_ADDRESS_TRIES; ++j) {
4236 retval = hub_set_address(udev, devnum);
4237 if (retval >= 0)
4238 break;
4239 msleep(200);
4240 }
4241 if (retval < 0) {
Alan Sterne9e88fb2013-03-27 16:14:01 -04004242 if (retval != -ENODEV)
4243 dev_err(&udev->dev, "device not accepting address %d, error %d\n",
4244 devnum, retval);
Inaky Perez-Gonzalez6c529cd2008-04-08 13:24:46 -07004245 goto fail;
4246 }
Sarah Sharpc6515272009-04-27 19:57:26 -07004247 if (udev->speed == USB_SPEED_SUPER) {
4248 devnum = udev->devnum;
4249 dev_info(&udev->dev,
Alan Stern3b29b682011-02-22 09:53:41 -05004250 "%s SuperSpeed USB device number %d using %s\n",
Sarah Sharpc6515272009-04-27 19:57:26 -07004251 (udev->config) ? "reset" : "new",
Alan Stern3b29b682011-02-22 09:53:41 -05004252 devnum, udev->bus->controller->driver->name);
Sarah Sharpc6515272009-04-27 19:57:26 -07004253 }
Inaky Perez-Gonzalez6c529cd2008-04-08 13:24:46 -07004254
4255 /* cope with hardware quirkiness:
4256 * - let SET_ADDRESS settle, some device hardware wants it
4257 * - read ep0 maxpacket even for high and low speed,
4258 */
4259 msleep(10);
Dan Williams48fc7db2013-12-05 17:07:27 -08004260 /* use_new_scheme() checks the speed which may have
4261 * changed since the initial look so we cache the result
4262 * in did_new_scheme
4263 */
4264 if (did_new_scheme)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004265 break;
Matthias Beyer469271f2013-10-10 23:41:27 +02004266 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004267
4268 retval = usb_get_device_descriptor(udev, 8);
4269 if (retval < 8) {
Alan Sterne9e88fb2013-03-27 16:14:01 -04004270 if (retval != -ENODEV)
4271 dev_err(&udev->dev,
Wu Fengguangb9cef6c2008-12-15 15:32:01 +08004272 "device descriptor read/8, error %d\n",
4273 retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004274 if (retval >= 0)
4275 retval = -EMSGSIZE;
4276 } else {
4277 retval = 0;
4278 break;
4279 }
4280 }
4281 if (retval)
4282 goto fail;
4283
Peter Chenb76baa82012-11-09 09:44:43 +08004284 if (hcd->phy && !hdev->parent)
Peter Chenac965112012-11-09 09:44:44 +08004285 usb_phy_notify_connect(hcd->phy, udev->speed);
Peter Chenb76baa82012-11-09 09:44:43 +08004286
Elric Fud8aec3d2012-03-26 21:16:02 +08004287 /*
4288 * Some superspeed devices have finished the link training process
4289 * and attached to a superspeed hub port, but the device descriptor
4290 * got from those devices show they aren't superspeed devices. Warm
4291 * reset the port attached by the devices can fix them.
4292 */
4293 if ((udev->speed == USB_SPEED_SUPER) &&
4294 (le16_to_cpu(udev->descriptor.bcdUSB) < 0x0300)) {
4295 dev_err(&udev->dev, "got a wrong device descriptor, "
4296 "warm reset device\n");
4297 hub_port_reset(hub, port1, udev,
4298 HUB_BH_RESET_TIME, true);
4299 retval = -EINVAL;
4300 goto fail;
4301 }
4302
Sarah Sharp6b403b02009-04-27 19:54:10 -07004303 if (udev->descriptor.bMaxPacketSize0 == 0xff ||
4304 udev->speed == USB_SPEED_SUPER)
4305 i = 512;
4306 else
4307 i = udev->descriptor.bMaxPacketSize0;
Kuninori Morimoto29cc8892011-08-23 03:12:03 -07004308 if (usb_endpoint_maxp(&udev->ep0.desc) != i) {
Alan Stern56626a72010-10-14 15:25:21 -04004309 if (udev->speed == USB_SPEED_LOW ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07004310 !(i == 8 || i == 16 || i == 32 || i == 64)) {
Alan Stern56626a72010-10-14 15:25:21 -04004311 dev_err(&udev->dev, "Invalid ep0 maxpacket: %d\n", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004312 retval = -EMSGSIZE;
4313 goto fail;
4314 }
Alan Stern56626a72010-10-14 15:25:21 -04004315 if (udev->speed == USB_SPEED_FULL)
4316 dev_dbg(&udev->dev, "ep0 maxpacket = %d\n", i);
4317 else
4318 dev_warn(&udev->dev, "Using ep0 maxpacket: %d\n", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004319 udev->ep0.desc.wMaxPacketSize = cpu_to_le16(i);
Inaky Perez-Gonzalezfc721f52008-04-08 13:24:46 -07004320 usb_ep0_reinit(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004321 }
Matthias Beyer469271f2013-10-10 23:41:27 +02004322
Linus Torvalds1da177e2005-04-16 15:20:36 -07004323 retval = usb_get_device_descriptor(udev, USB_DT_DEVICE_SIZE);
4324 if (retval < (signed)sizeof(udev->descriptor)) {
Alan Sterne9e88fb2013-03-27 16:14:01 -04004325 if (retval != -ENODEV)
4326 dev_err(&udev->dev, "device descriptor read/all, error %d\n",
4327 retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004328 if (retval >= 0)
4329 retval = -ENOMSG;
4330 goto fail;
4331 }
4332
Andiry Xu1ff4df52011-09-23 14:19:48 -07004333 if (udev->wusb == 0 && le16_to_cpu(udev->descriptor.bcdUSB) >= 0x0201) {
4334 retval = usb_get_bos_descriptor(udev);
Sarah Sharp51e0a012012-02-20 12:02:19 -08004335 if (!retval) {
Sarah Sharpd9b20992012-02-20 08:31:26 -08004336 udev->lpm_capable = usb_device_supports_lpm(udev);
Sarah Sharp51e0a012012-02-20 12:02:19 -08004337 usb_set_lpm_parameters(udev);
4338 }
Andiry Xu1ff4df52011-09-23 14:19:48 -07004339 }
Andiry Xu3148bf02011-09-23 14:19:47 -07004340
Linus Torvalds1da177e2005-04-16 15:20:36 -07004341 retval = 0;
Alek Du48f24972010-06-04 15:47:55 +08004342 /* notify HCD that we have a device connected and addressed */
4343 if (hcd->driver->update_device)
4344 hcd->driver->update_device(hcd, udev);
Mathias Nyman890dae82013-09-30 17:26:31 +03004345 hub_set_initial_usb2_lpm_policy(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004346fail:
Alan Stern4326ed02007-07-30 17:08:43 -04004347 if (retval) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004348 hub_port_disable(hub, port1, 0);
Alan Stern3b29b682011-02-22 09:53:41 -05004349 update_devnum(udev, devnum); /* for disconnect processing */
Alan Stern4326ed02007-07-30 17:08:43 -04004350 }
Todd E Brandt6fecd4f2014-05-19 10:55:32 -07004351 mutex_unlock(&hdev->bus->usb_address0_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004352 return retval;
4353}
4354
4355static void
4356check_highspeed (struct usb_hub *hub, struct usb_device *udev, int port1)
4357{
4358 struct usb_qualifier_descriptor *qual;
4359 int status;
4360
Christoph Lametere94b1762006-12-06 20:33:17 -08004361 qual = kmalloc (sizeof *qual, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004362 if (qual == NULL)
4363 return;
4364
4365 status = usb_get_descriptor (udev, USB_DT_DEVICE_QUALIFIER, 0,
4366 qual, sizeof *qual);
4367 if (status == sizeof *qual) {
4368 dev_info(&udev->dev, "not running at top speed; "
4369 "connect to a high speed hub\n");
4370 /* hub LEDs are probably harder to miss than syslog */
4371 if (hub->has_indicators) {
4372 hub->indicator[port1-1] = INDICATOR_GREEN_BLINK;
Shaibal Dutta22f6a0f2014-02-01 19:16:46 -08004373 queue_delayed_work(system_power_efficient_wq,
4374 &hub->leds, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004375 }
4376 }
Jesper Juhl1bc3c9e2005-04-18 17:39:34 -07004377 kfree(qual);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004378}
4379
4380static unsigned
4381hub_power_remaining (struct usb_hub *hub)
4382{
4383 struct usb_device *hdev = hub->hdev;
4384 int remaining;
Alan Stern55c52712005-11-23 12:03:12 -05004385 int port1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004386
Alan Stern55c52712005-11-23 12:03:12 -05004387 if (!hub->limited_power)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004388 return 0;
4389
Alan Stern55c52712005-11-23 12:03:12 -05004390 remaining = hdev->bus_mA - hub->descriptor->bHubContrCurrent;
4391 for (port1 = 1; port1 <= hdev->maxchild; ++port1) {
Dan Williamsd99f6b42014-05-20 18:08:17 -07004392 struct usb_port *port_dev = hub->ports[port1 - 1];
4393 struct usb_device *udev = port_dev->child;
4394 unsigned unit_load;
4395 int delta;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004396
4397 if (!udev)
4398 continue;
Sebastian Andrzej Siewior430ee582012-12-18 15:25:47 +01004399 if (hub_is_superspeed(udev))
4400 unit_load = 150;
4401 else
4402 unit_load = 100;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004403
Sebastian Andrzej Siewior430ee582012-12-18 15:25:47 +01004404 /*
4405 * Unconfigured devices may not use more than one unit load,
4406 * or 8mA for OTG ports
4407 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004408 if (udev->actconfig)
Sebastian Andrzej Siewior8d8479d2012-12-18 15:25:46 +01004409 delta = usb_get_max_power(udev, udev->actconfig);
Alan Stern55c52712005-11-23 12:03:12 -05004410 else if (port1 != udev->bus->otg_port || hdev->parent)
Sebastian Andrzej Siewior430ee582012-12-18 15:25:47 +01004411 delta = unit_load;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004412 else
Alan Stern55c52712005-11-23 12:03:12 -05004413 delta = 8;
4414 if (delta > hub->mA_per_port)
Dan Williamsd99f6b42014-05-20 18:08:17 -07004415 dev_warn(&port_dev->dev, "%dmA is over %umA budget!\n",
4416 delta, hub->mA_per_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004417 remaining -= delta;
4418 }
4419 if (remaining < 0) {
Alan Stern55c52712005-11-23 12:03:12 -05004420 dev_warn(hub->intfdev, "%dmA over power budget!\n",
Matthias Beyer469271f2013-10-10 23:41:27 +02004421 -remaining);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004422 remaining = 0;
4423 }
4424 return remaining;
4425}
4426
4427/* Handle physical or logical connection change events.
4428 * This routine is called when:
4429 * a port connection-change occurs;
4430 * a port enable-change occurs (often caused by EMI);
Ming Lei742120c2008-06-18 22:00:29 +08004431 * usb_reset_and_verify_device() encounters changed descriptors (as from
Linus Torvalds1da177e2005-04-16 15:20:36 -07004432 * a firmware download)
4433 * caller already locked the hub
4434 */
4435static void hub_port_connect_change(struct usb_hub *hub, int port1,
4436 u16 portstatus, u16 portchange)
4437{
4438 struct usb_device *hdev = hub->hdev;
Balaji Rao90da0962007-11-22 01:58:14 +05304439 struct usb_hcd *hcd = bus_to_hcd(hdev->bus);
Dan Williamsd99f6b42014-05-20 18:08:17 -07004440 struct usb_port *port_dev = hub->ports[port1 - 1];
Alan Stern8808f002008-04-28 11:06:55 -04004441 struct usb_device *udev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004442 int status, i;
Sebastian Andrzej Siewior430ee582012-12-18 15:25:47 +01004443 unsigned unit_load;
Alan Stern24618b02008-04-28 11:06:28 -04004444
Dan Williamsd99f6b42014-05-20 18:08:17 -07004445 dev_dbg(&port_dev->dev, "status %04x, change %04x, %s\n",
4446 portstatus, portchange, portspeed(hub, portstatus));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004447
4448 if (hub->has_indicators) {
4449 set_port_led(hub, port1, HUB_LED_AUTO);
4450 hub->indicator[port1-1] = INDICATOR_AUTO;
4451 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004452
4453#ifdef CONFIG_USB_OTG
4454 /* during HNP, don't repeat the debounce */
4455 if (hdev->bus->is_b_host)
Alan Stern24618b02008-04-28 11:06:28 -04004456 portchange &= ~(USB_PORT_STAT_C_CONNECTION |
4457 USB_PORT_STAT_C_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004458#endif
4459
Alan Stern8808f002008-04-28 11:06:55 -04004460 /* Try to resuscitate an existing device */
Dan Williamsd99f6b42014-05-20 18:08:17 -07004461 udev = port_dev->child;
Alan Stern8808f002008-04-28 11:06:55 -04004462 if ((portstatus & USB_PORT_STAT_CONNECTION) && udev &&
4463 udev->state != USB_STATE_NOTATTACHED) {
Alan Stern8808f002008-04-28 11:06:55 -04004464 usb_lock_device(udev);
4465 if (portstatus & USB_PORT_STAT_ENABLE) {
4466 status = 0; /* Nothing to do */
Alan Stern8808f002008-04-28 11:06:55 -04004467
Alan Stern84ebc102013-03-27 16:14:46 -04004468#ifdef CONFIG_PM_RUNTIME
Alan Stern5257d972008-09-22 14:43:08 -04004469 } else if (udev->state == USB_STATE_SUSPENDED &&
4470 udev->persist_enabled) {
Alan Stern8808f002008-04-28 11:06:55 -04004471 /* For a suspended device, treat this as a
4472 * remote wakeup event.
4473 */
Alan Stern0534d462010-01-08 12:56:30 -05004474 status = usb_remote_wakeup(udev);
Alan Stern8808f002008-04-28 11:06:55 -04004475#endif
4476
4477 } else {
Alan Stern5257d972008-09-22 14:43:08 -04004478 status = -ENODEV; /* Don't resuscitate */
Alan Stern8808f002008-04-28 11:06:55 -04004479 }
4480 usb_unlock_device(udev);
4481
4482 if (status == 0) {
4483 clear_bit(port1, hub->change_bits);
4484 return;
4485 }
4486 }
4487
Alan Stern24618b02008-04-28 11:06:28 -04004488 /* Disconnect any existing devices under this port */
Peter Chenb76baa82012-11-09 09:44:43 +08004489 if (udev) {
4490 if (hcd->phy && !hdev->parent &&
4491 !(portstatus & USB_PORT_STAT_CONNECTION))
Peter Chenac965112012-11-09 09:44:44 +08004492 usb_phy_notify_disconnect(hcd->phy, udev->speed);
Dan Williamsd99f6b42014-05-20 18:08:17 -07004493 usb_disconnect(&port_dev->child);
Peter Chenb76baa82012-11-09 09:44:43 +08004494 }
Alan Stern24618b02008-04-28 11:06:28 -04004495 clear_bit(port1, hub->change_bits);
4496
Alan Stern253e0572009-10-27 15:20:13 -04004497 /* We can forget about a "removed" device when there's a physical
4498 * disconnect or the connect status changes.
4499 */
4500 if (!(portstatus & USB_PORT_STAT_CONNECTION) ||
4501 (portchange & USB_PORT_STAT_C_CONNECTION))
4502 clear_bit(port1, hub->removed_bits);
4503
Alan Stern5257d972008-09-22 14:43:08 -04004504 if (portchange & (USB_PORT_STAT_C_CONNECTION |
4505 USB_PORT_STAT_C_ENABLE)) {
Lan Tianyuad493e52013-01-23 04:26:30 +08004506 status = hub_port_debounce_be_stable(hub, port1);
Alan Stern5257d972008-09-22 14:43:08 -04004507 if (status < 0) {
Alan Sterne9e88fb2013-03-27 16:14:01 -04004508 if (status != -ENODEV && printk_ratelimit())
Dan Williamsd99f6b42014-05-20 18:08:17 -07004509 dev_err(&port_dev->dev,
4510 "connect-debounce failed\n");
Alan Stern5257d972008-09-22 14:43:08 -04004511 portstatus &= ~USB_PORT_STAT_CONNECTION;
4512 } else {
4513 portstatus = status;
4514 }
4515 }
4516
Alan Stern253e0572009-10-27 15:20:13 -04004517 /* Return now if debouncing failed or nothing is connected or
4518 * the device was "removed".
4519 */
4520 if (!(portstatus & USB_PORT_STAT_CONNECTION) ||
4521 test_bit(port1, hub->removed_bits)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004522
4523 /* maybe switch power back on (e.g. root hub was reset) */
Dan Williams9262c192014-05-20 18:08:12 -07004524 if (hub_is_port_power_switchable(hub)
Andiry Xu0ed9a572011-04-27 18:07:43 +08004525 && !port_is_power_on(hub, portstatus))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004526 set_port_feature(hdev, port1, USB_PORT_FEAT_POWER);
Alan Stern5257d972008-09-22 14:43:08 -04004527
Linus Torvalds1da177e2005-04-16 15:20:36 -07004528 if (portstatus & USB_PORT_STAT_ENABLE)
Matthias Beyer469271f2013-10-10 23:41:27 +02004529 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004530 return;
4531 }
Sebastian Andrzej Siewior430ee582012-12-18 15:25:47 +01004532 if (hub_is_superspeed(hub->hdev))
4533 unit_load = 150;
4534 else
4535 unit_load = 100;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004536
Alan Sterne9e88fb2013-03-27 16:14:01 -04004537 status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004538 for (i = 0; i < SET_CONFIG_TRIES; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004539
4540 /* reallocate for each attempt, since references
4541 * to the previous one can escape in various ways
4542 */
4543 udev = usb_alloc_dev(hdev, hdev->bus, port1);
4544 if (!udev) {
Dan Williamsd99f6b42014-05-20 18:08:17 -07004545 dev_err(&port_dev->dev,
4546 "couldn't allocate usb_device\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004547 goto done;
4548 }
4549
4550 usb_set_device_state(udev, USB_STATE_POWERED);
Matthias Beyer469271f2013-10-10 23:41:27 +02004551 udev->bus_mA = hub->mA_per_port;
Alan Sternb6956ff2006-08-30 15:46:48 -04004552 udev->level = hdev->level + 1;
Inaky Perez-Gonzalez8af548d2008-04-08 13:24:46 -07004553 udev->wusb = hub_is_wusb(hub);
Alan Stern55c52712005-11-23 12:03:12 -05004554
Sarah Sharp131dec32010-12-06 21:00:19 -08004555 /* Only USB 3.0 devices are connected to SuperSpeed hubs. */
4556 if (hub_is_superspeed(hub->hdev))
Sarah Sharpe7b77172009-04-27 19:54:26 -07004557 udev->speed = USB_SPEED_SUPER;
4558 else
4559 udev->speed = USB_SPEED_UNKNOWN;
4560
Alan Stern3b29b682011-02-22 09:53:41 -05004561 choose_devnum(udev);
Andiry Xuc8d4af82010-10-14 07:22:51 -07004562 if (udev->devnum <= 0) {
4563 status = -ENOTCONN; /* Don't retry */
4564 goto loop;
Sarah Sharpc6515272009-04-27 19:57:26 -07004565 }
4566
Sarah Sharpe7b77172009-04-27 19:54:26 -07004567 /* reset (non-USB 3.0 devices) and get descriptor */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004568 status = hub_port_init(hub, udev, port1, i);
4569 if (status < 0)
4570 goto loop;
4571
Phil Dibowitz93362a82010-07-22 00:05:01 +02004572 usb_detect_quirks(udev);
4573 if (udev->quirks & USB_QUIRK_DELAY_INIT)
4574 msleep(1000);
4575
Linus Torvalds1da177e2005-04-16 15:20:36 -07004576 /* consecutive bus-powered hubs aren't reliable; they can
4577 * violate the voltage drop budget. if the new child has
4578 * a "powered" LED, users should notice we didn't enable it
4579 * (without reading syslog), even without per-port LEDs
4580 * on the parent.
4581 */
4582 if (udev->descriptor.bDeviceClass == USB_CLASS_HUB
Sebastian Andrzej Siewior430ee582012-12-18 15:25:47 +01004583 && udev->bus_mA <= unit_load) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004584 u16 devstat;
4585
4586 status = usb_get_status(udev, USB_RECIP_DEVICE, 0,
4587 &devstat);
Alan Stern15b73362013-07-30 15:35:40 -04004588 if (status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004589 dev_dbg(&udev->dev, "get status %d ?\n", status);
4590 goto loop_disable;
4591 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004592 if ((devstat & (1 << USB_DEVICE_SELF_POWERED)) == 0) {
4593 dev_err(&udev->dev,
4594 "can't connect bus-powered hub "
4595 "to this port\n");
4596 if (hub->has_indicators) {
4597 hub->indicator[port1-1] =
4598 INDICATOR_AMBER_BLINK;
Shaibal Dutta22f6a0f2014-02-01 19:16:46 -08004599 queue_delayed_work(
4600 system_power_efficient_wq,
4601 &hub->leds, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004602 }
4603 status = -ENOTCONN; /* Don't retry */
4604 goto loop_disable;
4605 }
4606 }
Matthias Beyer469271f2013-10-10 23:41:27 +02004607
Linus Torvalds1da177e2005-04-16 15:20:36 -07004608 /* check for devices running slower than they could */
4609 if (le16_to_cpu(udev->descriptor.bcdUSB) >= 0x0200
4610 && udev->speed == USB_SPEED_FULL
4611 && highspeed_hubs != 0)
4612 check_highspeed (hub, udev, port1);
4613
Greg Kroah-Hartmanfa286182012-05-14 09:20:37 -07004614 /* Store the parent's children[] pointer. At this point
Linus Torvalds1da177e2005-04-16 15:20:36 -07004615 * udev becomes globally accessible, although presumably
4616 * no one will look at it until hdev is unlocked.
4617 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004618 status = 0;
4619
Dan Williamsd8521af2014-05-20 18:08:28 -07004620 mutex_lock(&usb_port_peer_mutex);
4621
Linus Torvalds1da177e2005-04-16 15:20:36 -07004622 /* We mustn't add new devices if the parent hub has
4623 * been disconnected; we would race with the
4624 * recursively_mark_NOTATTACHED() routine.
4625 */
4626 spin_lock_irq(&device_state_lock);
4627 if (hdev->state == USB_STATE_NOTATTACHED)
4628 status = -ENOTCONN;
4629 else
Dan Williamsd99f6b42014-05-20 18:08:17 -07004630 port_dev->child = udev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004631 spin_unlock_irq(&device_state_lock);
Dan Williamsd8521af2014-05-20 18:08:28 -07004632 mutex_unlock(&usb_port_peer_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004633
4634 /* Run it through the hoops (find a driver, etc) */
4635 if (!status) {
4636 status = usb_new_device(udev);
4637 if (status) {
Dan Williamsd8521af2014-05-20 18:08:28 -07004638 mutex_lock(&usb_port_peer_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004639 spin_lock_irq(&device_state_lock);
Dan Williamsd99f6b42014-05-20 18:08:17 -07004640 port_dev->child = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004641 spin_unlock_irq(&device_state_lock);
Dan Williamsd8521af2014-05-20 18:08:28 -07004642 mutex_unlock(&usb_port_peer_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004643 }
4644 }
4645
Linus Torvalds1da177e2005-04-16 15:20:36 -07004646 if (status)
4647 goto loop_disable;
4648
4649 status = hub_power_remaining(hub);
4650 if (status)
Dan Williamsd99f6b42014-05-20 18:08:17 -07004651 dev_dbg(hub->intfdev, "%dmA power budget left\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004652
4653 return;
4654
4655loop_disable:
4656 hub_port_disable(hub, port1, 1);
4657loop:
Inaky Perez-Gonzalezfc721f52008-04-08 13:24:46 -07004658 usb_ep0_reinit(udev);
Alan Stern3b29b682011-02-22 09:53:41 -05004659 release_devnum(udev);
Herbert Xuf7410ce2010-01-10 20:15:03 +11004660 hub_free_dev(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004661 usb_put_dev(udev);
Vikram Panditaffcdc182007-05-25 21:31:07 -07004662 if ((status == -ENOTCONN) || (status == -ENOTSUPP))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004663 break;
4664 }
Alan Stern3a311552008-05-20 16:58:29 -04004665 if (hub->hdev->parent ||
4666 !hcd->driver->port_handed_over ||
Alan Sterne9e88fb2013-03-27 16:14:01 -04004667 !(hcd->driver->port_handed_over)(hcd, port1)) {
4668 if (status != -ENOTCONN && status != -ENODEV)
Dan Williamsd99f6b42014-05-20 18:08:17 -07004669 dev_err(&port_dev->dev,
4670 "unable to enumerate USB device\n");
Alan Sterne9e88fb2013-03-27 16:14:01 -04004671 }
Matthias Beyer469271f2013-10-10 23:41:27 +02004672
Linus Torvalds1da177e2005-04-16 15:20:36 -07004673done:
4674 hub_port_disable(hub, port1, 1);
Balaji Rao90da0962007-11-22 01:58:14 +05304675 if (hcd->driver->relinquish_port && !hub->hdev->parent)
4676 hcd->driver->relinquish_port(hcd, port1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004677}
4678
Sarah Sharp714b07b2012-01-24 13:53:18 -08004679/* Returns 1 if there was a remote wakeup and a connect status change. */
4680static int hub_handle_remote_wakeup(struct usb_hub *hub, unsigned int port,
Sarah Sharp72937e12012-01-24 11:46:50 -08004681 u16 portstatus, u16 portchange)
Sarah Sharp714b07b2012-01-24 13:53:18 -08004682{
Dan Williamsd99f6b42014-05-20 18:08:17 -07004683 struct usb_port *port_dev = hub->ports[port - 1];
Sarah Sharp714b07b2012-01-24 13:53:18 -08004684 struct usb_device *hdev;
4685 struct usb_device *udev;
4686 int connect_change = 0;
4687 int ret;
4688
4689 hdev = hub->hdev;
Dan Williamsd99f6b42014-05-20 18:08:17 -07004690 udev = port_dev->child;
Sarah Sharp4ee823b2011-11-14 18:00:01 -08004691 if (!hub_is_superspeed(hdev)) {
4692 if (!(portchange & USB_PORT_STAT_C_SUSPEND))
4693 return 0;
Lan Tianyuad493e52013-01-23 04:26:30 +08004694 usb_clear_port_feature(hdev, port, USB_PORT_FEAT_C_SUSPEND);
Sarah Sharp4ee823b2011-11-14 18:00:01 -08004695 } else {
4696 if (!udev || udev->state != USB_STATE_SUSPENDED ||
Sarah Sharp72937e12012-01-24 11:46:50 -08004697 (portstatus & USB_PORT_STAT_LINK_STATE) !=
4698 USB_SS_PORT_LS_U0)
Sarah Sharp4ee823b2011-11-14 18:00:01 -08004699 return 0;
4700 }
4701
Sarah Sharp714b07b2012-01-24 13:53:18 -08004702 if (udev) {
4703 /* TRSMRCY = 10 msec */
4704 msleep(10);
4705
4706 usb_lock_device(udev);
4707 ret = usb_remote_wakeup(udev);
4708 usb_unlock_device(udev);
4709 if (ret < 0)
4710 connect_change = 1;
4711 } else {
4712 ret = -ENODEV;
4713 hub_port_disable(hub, port, 1);
4714 }
Dan Williamsd99f6b42014-05-20 18:08:17 -07004715 dev_dbg(&port_dev->dev, "resume, status %d\n", ret);
Sarah Sharp714b07b2012-01-24 13:53:18 -08004716 return connect_change;
4717}
4718
Linus Torvalds1da177e2005-04-16 15:20:36 -07004719static void hub_events(void)
4720{
4721 struct list_head *tmp;
4722 struct usb_device *hdev;
4723 struct usb_interface *intf;
4724 struct usb_hub *hub;
4725 struct device *hub_dev;
4726 u16 hubstatus;
4727 u16 hubchange;
4728 u16 portstatus;
4729 u16 portchange;
4730 int i, ret;
Sarah Sharp4ee823b2011-11-14 18:00:01 -08004731 int connect_change, wakeup_change;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004732
4733 /*
4734 * We restart the list every time to avoid a deadlock with
4735 * deleting hubs downstream from this one. This should be
4736 * safe since we delete the hub from the event list.
4737 * Not the most efficient, but avoids deadlocks.
4738 */
4739 while (1) {
4740
4741 /* Grab the first entry at the beginning of the list */
4742 spin_lock_irq(&hub_event_lock);
4743 if (list_empty(&hub_event_list)) {
4744 spin_unlock_irq(&hub_event_lock);
4745 break;
4746 }
4747
4748 tmp = hub_event_list.next;
4749 list_del_init(tmp);
4750
4751 hub = list_entry(tmp, struct usb_hub, event_list);
Alan Sterne8054852007-05-04 11:55:11 -04004752 kref_get(&hub->kref);
4753 spin_unlock_irq(&hub_event_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004754
Alan Sterne8054852007-05-04 11:55:11 -04004755 hdev = hub->hdev;
4756 hub_dev = hub->intfdev;
4757 intf = to_usb_interface(hub_dev);
Alan Stern40f122f2006-11-09 14:44:33 -05004758 dev_dbg(hub_dev, "state %d ports %d chg %04x evt %04x\n",
Krzysztof Mazur3bbc47d2013-08-22 14:49:40 +02004759 hdev->state, hdev->maxchild,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004760 /* NOTE: expects max 15 ports... */
4761 (u16) hub->change_bits[0],
Alan Stern40f122f2006-11-09 14:44:33 -05004762 (u16) hub->event_bits[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004763
Linus Torvalds1da177e2005-04-16 15:20:36 -07004764 /* Lock the device, then check to see if we were
4765 * disconnected while waiting for the lock to succeed. */
Alan Stern06b84e82007-05-04 11:54:50 -04004766 usb_lock_device(hdev);
Alan Sterne8054852007-05-04 11:55:11 -04004767 if (unlikely(hub->disconnected))
Alan Stern9bbdf1e2010-01-08 12:57:28 -05004768 goto loop_disconnected;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004769
4770 /* If the hub has died, clean up after it */
4771 if (hdev->state == USB_STATE_NOTATTACHED) {
Alan Stern7de18d82006-06-01 13:37:24 -04004772 hub->error = -ENODEV;
Alan Stern43303542008-04-28 11:07:31 -04004773 hub_quiesce(hub, HUB_DISCONNECT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004774 goto loop;
4775 }
4776
Alan Stern40f122f2006-11-09 14:44:33 -05004777 /* Autoresume */
4778 ret = usb_autopm_get_interface(intf);
4779 if (ret) {
4780 dev_dbg(hub_dev, "Can't autoresume: %d\n", ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004781 goto loop;
Alan Stern40f122f2006-11-09 14:44:33 -05004782 }
4783
4784 /* If this is an inactive hub, do nothing */
4785 if (hub->quiescing)
4786 goto loop_autopm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004787
4788 if (hub->error) {
4789 dev_dbg (hub_dev, "resetting for error %d\n",
4790 hub->error);
4791
Ming Lei742120c2008-06-18 22:00:29 +08004792 ret = usb_reset_device(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004793 if (ret) {
4794 dev_dbg (hub_dev,
4795 "error resetting hub: %d\n", ret);
Alan Stern40f122f2006-11-09 14:44:33 -05004796 goto loop_autopm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004797 }
4798
4799 hub->nerrors = 0;
4800 hub->error = 0;
4801 }
4802
4803 /* deal with port status changes */
Krzysztof Mazur3bbc47d2013-08-22 14:49:40 +02004804 for (i = 1; i <= hdev->maxchild; i++) {
Dan Williamsd99f6b42014-05-20 18:08:17 -07004805 struct usb_port *port_dev = hub->ports[i - 1];
4806 struct usb_device *udev = port_dev->child;
Hans de Goedea82b76f2013-11-08 13:41:05 +01004807
Linus Torvalds1da177e2005-04-16 15:20:36 -07004808 if (test_bit(i, hub->busy_bits))
4809 continue;
4810 connect_change = test_bit(i, hub->change_bits);
Sarah Sharp72937e12012-01-24 11:46:50 -08004811 wakeup_change = test_and_clear_bit(i, hub->wakeup_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004812 if (!test_and_clear_bit(i, hub->event_bits) &&
Sarah Sharp4ee823b2011-11-14 18:00:01 -08004813 !connect_change && !wakeup_change)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004814 continue;
4815
4816 ret = hub_port_status(hub, i,
4817 &portstatus, &portchange);
4818 if (ret < 0)
4819 continue;
4820
Linus Torvalds1da177e2005-04-16 15:20:36 -07004821 if (portchange & USB_PORT_STAT_C_CONNECTION) {
Lan Tianyuad493e52013-01-23 04:26:30 +08004822 usb_clear_port_feature(hdev, i,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004823 USB_PORT_FEAT_C_CONNECTION);
4824 connect_change = 1;
4825 }
4826
4827 if (portchange & USB_PORT_STAT_C_ENABLE) {
4828 if (!connect_change)
Dan Williamsd99f6b42014-05-20 18:08:17 -07004829 dev_dbg(&port_dev->dev,
4830 "enable change, status %08x\n",
4831 portstatus);
Lan Tianyuad493e52013-01-23 04:26:30 +08004832 usb_clear_port_feature(hdev, i,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004833 USB_PORT_FEAT_C_ENABLE);
4834
4835 /*
4836 * EM interference sometimes causes badly
4837 * shielded USB devices to be shutdown by
4838 * the hub, this hack enables them again.
Matthias Beyer469271f2013-10-10 23:41:27 +02004839 * Works at least with mouse driver.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004840 */
4841 if (!(portstatus & USB_PORT_STAT_ENABLE)
Dan Williamsd99f6b42014-05-20 18:08:17 -07004842 && !connect_change && udev) {
4843 dev_err(&port_dev->dev,
4844 "disabled by hub (EMI?), re-enabling...\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004845 connect_change = 1;
4846 }
4847 }
4848
Sarah Sharp72937e12012-01-24 11:46:50 -08004849 if (hub_handle_remote_wakeup(hub, i,
4850 portstatus, portchange))
Sarah Sharp714b07b2012-01-24 13:53:18 -08004851 connect_change = 1;
Alan Stern8808f002008-04-28 11:06:55 -04004852
Linus Torvalds1da177e2005-04-16 15:20:36 -07004853 if (portchange & USB_PORT_STAT_C_OVERCURRENT) {
Paul Bolle752d57a2011-03-11 18:03:52 +01004854 u16 status = 0;
4855 u16 unused;
4856
Dan Williamsd99f6b42014-05-20 18:08:17 -07004857 dev_dbg(&port_dev->dev, "over-current change\n");
Lan Tianyuad493e52013-01-23 04:26:30 +08004858 usb_clear_port_feature(hdev, i,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004859 USB_PORT_FEAT_C_OVER_CURRENT);
Paul Bolle752d57a2011-03-11 18:03:52 +01004860 msleep(100); /* Cool down */
Alan Stern8520f382008-09-22 14:44:26 -04004861 hub_power_on(hub, true);
Paul Bolle752d57a2011-03-11 18:03:52 +01004862 hub_port_status(hub, i, &status, &unused);
4863 if (status & USB_PORT_STAT_OVERCURRENT)
Dan Williamsd99f6b42014-05-20 18:08:17 -07004864 dev_err(&port_dev->dev,
4865 "over-current condition\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004866 }
4867
4868 if (portchange & USB_PORT_STAT_C_RESET) {
Dan Williamsd99f6b42014-05-20 18:08:17 -07004869 dev_dbg(&port_dev->dev, "reset change\n");
Lan Tianyuad493e52013-01-23 04:26:30 +08004870 usb_clear_port_feature(hdev, i,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004871 USB_PORT_FEAT_C_RESET);
4872 }
Sarah Sharpc7061572010-12-06 15:08:20 -08004873 if ((portchange & USB_PORT_STAT_C_BH_RESET) &&
4874 hub_is_superspeed(hub->hdev)) {
Dan Williamsd99f6b42014-05-20 18:08:17 -07004875 dev_dbg(&port_dev->dev, "warm reset change\n");
Lan Tianyuad493e52013-01-23 04:26:30 +08004876 usb_clear_port_feature(hdev, i,
Sarah Sharpc7061572010-12-06 15:08:20 -08004877 USB_PORT_FEAT_C_BH_PORT_RESET);
4878 }
John Youndbe79bb2001-09-17 00:00:00 -07004879 if (portchange & USB_PORT_STAT_C_LINK_STATE) {
Lan Tianyuad493e52013-01-23 04:26:30 +08004880 usb_clear_port_feature(hub->hdev, i,
John Youndbe79bb2001-09-17 00:00:00 -07004881 USB_PORT_FEAT_C_PORT_LINK_STATE);
4882 }
4883 if (portchange & USB_PORT_STAT_C_CONFIG_ERROR) {
Dan Williamsd99f6b42014-05-20 18:08:17 -07004884 dev_warn(&port_dev->dev, "config error\n");
Lan Tianyuad493e52013-01-23 04:26:30 +08004885 usb_clear_port_feature(hub->hdev, i,
John Youndbe79bb2001-09-17 00:00:00 -07004886 USB_PORT_FEAT_C_PORT_CONFIG_ERROR);
4887 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004888
Andiry Xu5e467f62011-04-27 18:07:54 +08004889 /* Warm reset a USB3 protocol port if it's in
4890 * SS.Inactive state.
4891 */
Stanislaw Ledwon8bea2bd2012-06-18 15:20:00 +02004892 if (hub_port_warm_reset_required(hub, portstatus)) {
Sarah Sharp65bdac52012-11-14 17:58:04 -08004893 int status;
4894
Dan Williamsd99f6b42014-05-20 18:08:17 -07004895 dev_dbg(&port_dev->dev, "warm reset\n");
Julius Werner2d51f3c2013-11-07 10:59:14 -08004896 if (!udev ||
4897 !(portstatus & USB_PORT_STAT_CONNECTION) ||
4898 udev->state == USB_STATE_NOTATTACHED) {
Sarah Sharpd3b9d7a2012-11-01 11:20:44 -07004899 status = hub_port_reset(hub, i,
4900 NULL, HUB_BH_RESET_TIME,
4901 true);
4902 if (status < 0)
4903 hub_port_disable(hub, i, 1);
4904 } else {
4905 usb_lock_device(udev);
4906 status = usb_reset_device(udev);
4907 usb_unlock_device(udev);
Julius Wernerf3e94aa2013-07-30 19:51:20 -07004908 connect_change = 0;
Sarah Sharpd3b9d7a2012-11-01 11:20:44 -07004909 }
Hans de Goedea82b76f2013-11-08 13:41:05 +01004910 /*
4911 * On disconnect USB3 protocol ports transit from U0 to
4912 * SS.Inactive to Rx.Detect. If this happens a warm-
4913 * reset is not needed, but a (re)connect may happen
4914 * before khubd runs and sees the disconnect, and the
4915 * device may be an unknown state.
4916 *
4917 * If the port went through SS.Inactive without khubd
4918 * seeing it the C_LINK_STATE change flag will be set,
4919 * and we reset the dev to put it in a known state.
4920 */
4921 } else if (udev && hub_is_superspeed(hub->hdev) &&
4922 (portchange & USB_PORT_STAT_C_LINK_STATE) &&
4923 (portstatus & USB_PORT_STAT_CONNECTION)) {
4924 usb_lock_device(udev);
4925 usb_reset_device(udev);
4926 usb_unlock_device(udev);
4927 connect_change = 0;
Andiry Xu5e467f62011-04-27 18:07:54 +08004928 }
4929
Linus Torvalds1da177e2005-04-16 15:20:36 -07004930 if (connect_change)
4931 hub_port_connect_change(hub, i,
4932 portstatus, portchange);
4933 } /* end for i */
4934
4935 /* deal with hub status changes */
4936 if (test_and_clear_bit(0, hub->event_bits) == 0)
4937 ; /* do nothing */
4938 else if (hub_hub_status(hub, &hubstatus, &hubchange) < 0)
4939 dev_err (hub_dev, "get_hub_status failed\n");
4940 else {
4941 if (hubchange & HUB_CHANGE_LOCAL_POWER) {
4942 dev_dbg (hub_dev, "power change\n");
4943 clear_hub_feature(hdev, C_HUB_LOCAL_POWER);
Alan Stern55c52712005-11-23 12:03:12 -05004944 if (hubstatus & HUB_STATUS_LOCAL_POWER)
4945 /* FIXME: Is this always true? */
Alan Stern55c52712005-11-23 12:03:12 -05004946 hub->limited_power = 1;
jidong xiao403fae72007-09-14 00:08:51 +08004947 else
4948 hub->limited_power = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004949 }
4950 if (hubchange & HUB_CHANGE_OVERCURRENT) {
Paul Bolle752d57a2011-03-11 18:03:52 +01004951 u16 status = 0;
4952 u16 unused;
4953
4954 dev_dbg(hub_dev, "over-current change\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004955 clear_hub_feature(hdev, C_HUB_OVER_CURRENT);
Paul Bolle752d57a2011-03-11 18:03:52 +01004956 msleep(500); /* Cool down */
Matthias Beyer469271f2013-10-10 23:41:27 +02004957 hub_power_on(hub, true);
Paul Bolle752d57a2011-03-11 18:03:52 +01004958 hub_hub_status(hub, &status, &unused);
4959 if (status & HUB_STATUS_OVERCURRENT)
4960 dev_err(hub_dev, "over-current "
4961 "condition\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004962 }
4963 }
4964
Alan Stern8e4ceb32009-12-07 13:01:37 -05004965 loop_autopm:
4966 /* Balance the usb_autopm_get_interface() above */
4967 usb_autopm_put_interface_no_suspend(intf);
4968 loop:
4969 /* Balance the usb_autopm_get_interface_no_resume() in
4970 * kick_khubd() and allow autosuspend.
4971 */
4972 usb_autopm_put_interface(intf);
Alan Stern9bbdf1e2010-01-08 12:57:28 -05004973 loop_disconnected:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004974 usb_unlock_device(hdev);
Alan Sterne8054852007-05-04 11:55:11 -04004975 kref_put(&hub->kref, hub_release);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004976
Matthias Beyer469271f2013-10-10 23:41:27 +02004977 } /* end while (1) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004978}
4979
4980static int hub_thread(void *__unused)
4981{
Rahul Bedarkar025d4432014-01-04 11:24:41 +05304982 /* khubd needs to be freezable to avoid interfering with USB-PERSIST
Alan Stern3bb1af52008-03-03 15:15:36 -05004983 * port handover. Otherwise it might see that a full-speed device
4984 * was gone before the EHCI controller had handed its port over to
4985 * the companion full-speed controller.
4986 */
Rafael J. Wysocki83144182007-07-17 04:03:35 -07004987 set_freezable();
Alan Stern3bb1af52008-03-03 15:15:36 -05004988
Linus Torvalds1da177e2005-04-16 15:20:36 -07004989 do {
4990 hub_events();
Rafael J. Wysockie42837b2007-10-18 03:04:45 -07004991 wait_event_freezable(khubd_wait,
akpm@osdl.org9c8d6172005-06-20 14:29:58 -07004992 !list_empty(&hub_event_list) ||
4993 kthread_should_stop());
akpm@osdl.org9c8d6172005-06-20 14:29:58 -07004994 } while (!kthread_should_stop() || !list_empty(&hub_event_list));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004995
akpm@osdl.org9c8d6172005-06-20 14:29:58 -07004996 pr_debug("%s: khubd exiting\n", usbcore_name);
4997 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004998}
4999
Németh Márton1e927d92010-01-10 15:34:53 +01005000static const struct usb_device_id hub_id_table[] = {
Ming Leie6f30de2012-10-24 11:59:24 +08005001 { .match_flags = USB_DEVICE_ID_MATCH_VENDOR
Matthias Beyer469271f2013-10-10 23:41:27 +02005002 | USB_DEVICE_ID_MATCH_INT_CLASS,
Ming Leie6f30de2012-10-24 11:59:24 +08005003 .idVendor = USB_VENDOR_GENESYS_LOGIC,
5004 .bInterfaceClass = USB_CLASS_HUB,
5005 .driver_info = HUB_QUIRK_CHECK_PORT_AUTOSUSPEND},
Linus Torvalds1da177e2005-04-16 15:20:36 -07005006 { .match_flags = USB_DEVICE_ID_MATCH_DEV_CLASS,
5007 .bDeviceClass = USB_CLASS_HUB},
5008 { .match_flags = USB_DEVICE_ID_MATCH_INT_CLASS,
5009 .bInterfaceClass = USB_CLASS_HUB},
5010 { } /* Terminating entry */
5011};
5012
5013MODULE_DEVICE_TABLE (usb, hub_id_table);
5014
5015static struct usb_driver hub_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005016 .name = "hub",
5017 .probe = hub_probe,
5018 .disconnect = hub_disconnect,
5019 .suspend = hub_suspend,
5020 .resume = hub_resume,
Alan Sternf07600c2007-05-30 15:38:16 -04005021 .reset_resume = hub_reset_resume,
Alan Stern7de18d82006-06-01 13:37:24 -04005022 .pre_reset = hub_pre_reset,
5023 .post_reset = hub_post_reset,
Andi Kleenc532b292010-06-01 23:04:41 +02005024 .unlocked_ioctl = hub_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005025 .id_table = hub_id_table,
Alan Stern40f122f2006-11-09 14:44:33 -05005026 .supports_autosuspend = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005027};
5028
5029int usb_hub_init(void)
5030{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005031 if (usb_register(&hub_driver) < 0) {
5032 printk(KERN_ERR "%s: can't register hub driver\n",
5033 usbcore_name);
5034 return -1;
5035 }
5036
akpm@osdl.org9c8d6172005-06-20 14:29:58 -07005037 khubd_task = kthread_run(hub_thread, NULL, "khubd");
5038 if (!IS_ERR(khubd_task))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005039 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005040
5041 /* Fall through if kernel_thread failed */
5042 usb_deregister(&hub_driver);
5043 printk(KERN_ERR "%s: can't start khubd\n", usbcore_name);
5044
5045 return -1;
5046}
5047
5048void usb_hub_cleanup(void)
5049{
akpm@osdl.org9c8d6172005-06-20 14:29:58 -07005050 kthread_stop(khubd_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005051
5052 /*
5053 * Hub resources are freed for us by usb_deregister. It calls
5054 * usb_driver_purge on every device which in turn calls that
5055 * devices disconnect function if it is using this driver.
5056 * The hub_disconnect function takes care of releasing the
5057 * individual hub resources. -greg
5058 */
5059 usb_deregister(&hub_driver);
5060} /* usb_hub_cleanup() */
5061
Alan Sterneb764c42008-03-03 15:16:04 -05005062static int descriptors_changed(struct usb_device *udev,
Xenia Ragiadakoue3376d62013-08-29 21:45:48 +03005063 struct usb_device_descriptor *old_device_descriptor,
5064 struct usb_host_bos *old_bos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005065{
Alan Sterneb764c42008-03-03 15:16:04 -05005066 int changed = 0;
5067 unsigned index;
5068 unsigned serial_len = 0;
5069 unsigned len;
5070 unsigned old_length;
5071 int length;
5072 char *buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005073
Alan Sterneb764c42008-03-03 15:16:04 -05005074 if (memcmp(&udev->descriptor, old_device_descriptor,
5075 sizeof(*old_device_descriptor)) != 0)
5076 return 1;
5077
Xenia Ragiadakoue3376d62013-08-29 21:45:48 +03005078 if ((old_bos && !udev->bos) || (!old_bos && udev->bos))
5079 return 1;
5080 if (udev->bos) {
Xenia Ragiadakoub9a10482013-08-31 04:40:49 +03005081 len = le16_to_cpu(udev->bos->desc->wTotalLength);
5082 if (len != le16_to_cpu(old_bos->desc->wTotalLength))
Xenia Ragiadakoue3376d62013-08-29 21:45:48 +03005083 return 1;
Xenia Ragiadakoub9a10482013-08-31 04:40:49 +03005084 if (memcmp(udev->bos->desc, old_bos->desc, len))
Xenia Ragiadakoue3376d62013-08-29 21:45:48 +03005085 return 1;
5086 }
5087
Alan Sterneb764c42008-03-03 15:16:04 -05005088 /* Since the idVendor, idProduct, and bcdDevice values in the
5089 * device descriptor haven't changed, we will assume the
5090 * Manufacturer and Product strings haven't changed either.
5091 * But the SerialNumber string could be different (e.g., a
5092 * different flash card of the same brand).
5093 */
5094 if (udev->serial)
5095 serial_len = strlen(udev->serial) + 1;
5096
5097 len = serial_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005098 for (index = 0; index < udev->descriptor.bNumConfigurations; index++) {
Alan Sterneb764c42008-03-03 15:16:04 -05005099 old_length = le16_to_cpu(udev->config[index].desc.wTotalLength);
5100 len = max(len, old_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005101 }
Alan Sterneb764c42008-03-03 15:16:04 -05005102
Oliver Neukum0cc1a512008-01-10 10:31:48 +01005103 buf = kmalloc(len, GFP_NOIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005104 if (buf == NULL) {
5105 dev_err(&udev->dev, "no mem to re-read configs after reset\n");
5106 /* assume the worst */
5107 return 1;
5108 }
5109 for (index = 0; index < udev->descriptor.bNumConfigurations; index++) {
Alan Sterneb764c42008-03-03 15:16:04 -05005110 old_length = le16_to_cpu(udev->config[index].desc.wTotalLength);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005111 length = usb_get_descriptor(udev, USB_DT_CONFIG, index, buf,
5112 old_length);
Alan Sterneb764c42008-03-03 15:16:04 -05005113 if (length != old_length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005114 dev_dbg(&udev->dev, "config index %d, error %d\n",
5115 index, length);
Alan Sterneb764c42008-03-03 15:16:04 -05005116 changed = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005117 break;
5118 }
5119 if (memcmp (buf, udev->rawdescriptors[index], old_length)
5120 != 0) {
5121 dev_dbg(&udev->dev, "config index %d changed (#%d)\n",
Alan Sterneb764c42008-03-03 15:16:04 -05005122 index,
5123 ((struct usb_config_descriptor *) buf)->
5124 bConfigurationValue);
5125 changed = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005126 break;
5127 }
5128 }
Alan Sterneb764c42008-03-03 15:16:04 -05005129
5130 if (!changed && serial_len) {
5131 length = usb_string(udev, udev->descriptor.iSerialNumber,
5132 buf, serial_len);
5133 if (length + 1 != serial_len) {
5134 dev_dbg(&udev->dev, "serial string error %d\n",
5135 length);
5136 changed = 1;
5137 } else if (memcmp(buf, udev->serial, length) != 0) {
5138 dev_dbg(&udev->dev, "serial string changed\n");
5139 changed = 1;
5140 }
5141 }
5142
Linus Torvalds1da177e2005-04-16 15:20:36 -07005143 kfree(buf);
Alan Sterneb764c42008-03-03 15:16:04 -05005144 return changed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005145}
5146
5147/**
Ming Lei742120c2008-06-18 22:00:29 +08005148 * usb_reset_and_verify_device - perform a USB port reset to reinitialize a device
Linus Torvalds1da177e2005-04-16 15:20:36 -07005149 * @udev: device to reset (not in SUSPENDED or NOTATTACHED state)
5150 *
Alan Stern79efa092006-06-01 13:33:42 -04005151 * WARNING - don't use this routine to reset a composite device
5152 * (one with multiple interfaces owned by separate drivers)!
Ming Lei742120c2008-06-18 22:00:29 +08005153 * Use usb_reset_device() instead.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005154 *
5155 * Do a port reset, reassign the device's address, and establish its
5156 * former operating configuration. If the reset fails, or the device's
5157 * descriptors change from their values before the reset, or the original
5158 * configuration and altsettings cannot be restored, a flag will be set
5159 * telling khubd to pretend the device has been disconnected and then
5160 * re-connected. All drivers will be unbound, and the device will be
5161 * re-enumerated and probed all over again.
5162 *
Yacine Belkadi626f0902013-08-02 20:10:04 +02005163 * Return: 0 if the reset succeeded, -ENODEV if the device has been
Linus Torvalds1da177e2005-04-16 15:20:36 -07005164 * flagged for logical disconnection, or some other negative error code
5165 * if the reset wasn't even attempted.
5166 *
Yacine Belkadi626f0902013-08-02 20:10:04 +02005167 * Note:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005168 * The caller must own the device lock. For example, it's safe to use
5169 * this from a driver probe() routine after downloading new firmware.
5170 * For calls that might not occur during probe(), drivers should lock
5171 * the device using usb_lock_device_for_reset().
Alan Stern6bc6cff2007-05-04 11:53:03 -04005172 *
5173 * Locking exception: This routine may also be called from within an
5174 * autoresume handler. Such usage won't conflict with other tasks
5175 * holding the device lock because these tasks should always call
5176 * usb_autopm_resume_device(), thereby preventing any unwanted autoresume.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005177 */
Ming Lei742120c2008-06-18 22:00:29 +08005178static int usb_reset_and_verify_device(struct usb_device *udev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005179{
5180 struct usb_device *parent_hdev = udev->parent;
5181 struct usb_hub *parent_hub;
Sarah Sharp3f0479e2009-12-03 09:44:36 -08005182 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005183 struct usb_device_descriptor descriptor = udev->descriptor;
Xenia Ragiadakoue3376d62013-08-29 21:45:48 +03005184 struct usb_host_bos *bos;
Hans de Goede7a7b5622013-11-08 16:37:26 +01005185 int i, j, ret = 0;
Alan Stern12c3da32005-11-23 12:09:52 -05005186 int port1 = udev->portnum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005187
5188 if (udev->state == USB_STATE_NOTATTACHED ||
5189 udev->state == USB_STATE_SUSPENDED) {
5190 dev_dbg(&udev->dev, "device reset not allowed in state %d\n",
5191 udev->state);
5192 return -EINVAL;
5193 }
5194
5195 if (!parent_hdev) {
Wolfram Sang4bec9912010-08-29 18:17:14 +02005196 /* this requires hcd-specific logic; see ohci_restart() */
Harvey Harrison441b62c2008-03-03 16:08:34 -08005197 dev_dbg(&udev->dev, "%s for root hub!\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005198 return -EISDIR;
5199 }
Lan Tianyuad493e52013-01-23 04:26:30 +08005200 parent_hub = usb_hub_to_struct_hub(parent_hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005201
Sarah Sharpdcc01c02013-09-30 17:26:29 +03005202 /* Disable USB2 hardware LPM.
5203 * It will be re-enabled by the enumeration process.
5204 */
5205 if (udev->usb2_hw_lpm_enabled == 1)
5206 usb_set_usb2_hardware_lpm(udev, 0);
5207
Xenia Ragiadakoue3376d62013-08-29 21:45:48 +03005208 bos = udev->bos;
5209 udev->bos = NULL;
5210
Sarah Sharpf74631e2012-06-25 12:08:08 -07005211 /* Disable LPM and LTM while we reset the device and reinstall the alt
5212 * settings. Device-initiated LPM settings, and system exit latency
5213 * settings are cleared when the device is reset, so we have to set
5214 * them up again.
Sarah Sharp6d1d0512012-07-03 22:49:04 -07005215 */
5216 ret = usb_unlocked_disable_lpm(udev);
5217 if (ret) {
5218 dev_err(&udev->dev, "%s Failed to disable LPM\n.", __func__);
5219 goto re_enumerate;
5220 }
Sarah Sharpf74631e2012-06-25 12:08:08 -07005221 ret = usb_disable_ltm(udev);
5222 if (ret) {
5223 dev_err(&udev->dev, "%s Failed to disable LTM\n.",
5224 __func__);
5225 goto re_enumerate;
5226 }
Sarah Sharp6d1d0512012-07-03 22:49:04 -07005227
Linus Torvalds1da177e2005-04-16 15:20:36 -07005228 set_bit(port1, parent_hub->busy_bits);
5229 for (i = 0; i < SET_CONFIG_TRIES; ++i) {
5230
5231 /* ep0 maxpacket size may change; let the HCD know about it.
5232 * Other endpoints will be handled by re-enumeration. */
Inaky Perez-Gonzalezfc721f52008-04-08 13:24:46 -07005233 usb_ep0_reinit(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005234 ret = hub_port_init(parent_hub, udev, port1, i);
Alan Sterndd4dd192007-05-04 11:55:54 -04005235 if (ret >= 0 || ret == -ENOTCONN || ret == -ENODEV)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005236 break;
5237 }
5238 clear_bit(port1, parent_hub->busy_bits);
Alan Sternd5cbad42006-08-11 16:52:39 -04005239
Linus Torvalds1da177e2005-04-16 15:20:36 -07005240 if (ret < 0)
5241 goto re_enumerate;
Matthias Beyer469271f2013-10-10 23:41:27 +02005242
Linus Torvalds1da177e2005-04-16 15:20:36 -07005243 /* Device might have changed firmware (DFU or similar) */
Xenia Ragiadakoue3376d62013-08-29 21:45:48 +03005244 if (descriptors_changed(udev, &descriptor, bos)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005245 dev_info(&udev->dev, "device firmware changed\n");
5246 udev->descriptor = descriptor; /* for disconnect() calls */
5247 goto re_enumerate;
Matthias Beyer469271f2013-10-10 23:41:27 +02005248 }
Alan Stern4fe03872009-02-26 10:21:02 -05005249
5250 /* Restore the device's previous configuration */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005251 if (!udev->actconfig)
5252 goto done;
Sarah Sharp3f0479e2009-12-03 09:44:36 -08005253
Sarah Sharpd673bfc2010-10-15 08:55:24 -07005254 mutex_lock(hcd->bandwidth_mutex);
Sarah Sharp3f0479e2009-12-03 09:44:36 -08005255 ret = usb_hcd_alloc_bandwidth(udev, udev->actconfig, NULL, NULL);
5256 if (ret < 0) {
5257 dev_warn(&udev->dev,
5258 "Busted HC? Not enough HCD resources for "
5259 "old configuration.\n");
Sarah Sharpd673bfc2010-10-15 08:55:24 -07005260 mutex_unlock(hcd->bandwidth_mutex);
Sarah Sharp3f0479e2009-12-03 09:44:36 -08005261 goto re_enumerate;
5262 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005263 ret = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
5264 USB_REQ_SET_CONFIGURATION, 0,
5265 udev->actconfig->desc.bConfigurationValue, 0,
5266 NULL, 0, USB_CTRL_SET_TIMEOUT);
5267 if (ret < 0) {
5268 dev_err(&udev->dev,
5269 "can't restore configuration #%d (error=%d)\n",
5270 udev->actconfig->desc.bConfigurationValue, ret);
Sarah Sharpd673bfc2010-10-15 08:55:24 -07005271 mutex_unlock(hcd->bandwidth_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005272 goto re_enumerate;
Matthias Beyer469271f2013-10-10 23:41:27 +02005273 }
Sarah Sharpd673bfc2010-10-15 08:55:24 -07005274 mutex_unlock(hcd->bandwidth_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005275 usb_set_device_state(udev, USB_STATE_CONFIGURED);
5276
Alan Stern4fe03872009-02-26 10:21:02 -05005277 /* Put interfaces back into the same altsettings as before.
5278 * Don't bother to send the Set-Interface request for interfaces
5279 * that were already in altsetting 0; besides being unnecessary,
5280 * many devices can't handle it. Instead just reset the host-side
5281 * endpoint state.
5282 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005283 for (i = 0; i < udev->actconfig->desc.bNumInterfaces; i++) {
Sarah Sharp3f0479e2009-12-03 09:44:36 -08005284 struct usb_host_config *config = udev->actconfig;
5285 struct usb_interface *intf = config->interface[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07005286 struct usb_interface_descriptor *desc;
5287
Linus Torvalds1da177e2005-04-16 15:20:36 -07005288 desc = &intf->cur_altsetting->desc;
Alan Stern4fe03872009-02-26 10:21:02 -05005289 if (desc->bAlternateSetting == 0) {
5290 usb_disable_interface(udev, intf, true);
5291 usb_enable_interface(udev, intf, true);
5292 ret = 0;
5293 } else {
Sarah Sharp04a723e2010-01-06 10:16:51 -08005294 /* Let the bandwidth allocation function know that this
5295 * device has been reset, and it will have to use
5296 * alternate setting 0 as the current alternate setting.
Sarah Sharp3f0479e2009-12-03 09:44:36 -08005297 */
Sarah Sharp04a723e2010-01-06 10:16:51 -08005298 intf->resetting_device = 1;
Alan Stern4fe03872009-02-26 10:21:02 -05005299 ret = usb_set_interface(udev, desc->bInterfaceNumber,
5300 desc->bAlternateSetting);
Sarah Sharp04a723e2010-01-06 10:16:51 -08005301 intf->resetting_device = 0;
Alan Stern4fe03872009-02-26 10:21:02 -05005302 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005303 if (ret < 0) {
5304 dev_err(&udev->dev, "failed to restore interface %d "
5305 "altsetting %d (error=%d)\n",
5306 desc->bInterfaceNumber,
5307 desc->bAlternateSetting,
5308 ret);
5309 goto re_enumerate;
5310 }
Hans de Goede7a7b5622013-11-08 16:37:26 +01005311 /* Resetting also frees any allocated streams */
5312 for (j = 0; j < intf->cur_altsetting->desc.bNumEndpoints; j++)
5313 intf->cur_altsetting->endpoint[j].streams = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005314 }
5315
5316done:
Sarah Sharpf74631e2012-06-25 12:08:08 -07005317 /* Now that the alt settings are re-installed, enable LTM and LPM. */
Sarah Sharpde68bab2013-09-30 17:26:28 +03005318 usb_set_usb2_hardware_lpm(udev, 1);
Alan Stern78d9a482008-06-23 16:00:40 -04005319 usb_unlocked_enable_lpm(udev);
Sarah Sharpf74631e2012-06-25 12:08:08 -07005320 usb_enable_ltm(udev);
Xenia Ragiadakoue3376d62013-08-29 21:45:48 +03005321 usb_release_bos_descriptor(udev);
5322 udev->bos = bos;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005323 return 0;
Matthias Beyer469271f2013-10-10 23:41:27 +02005324
Linus Torvalds1da177e2005-04-16 15:20:36 -07005325re_enumerate:
Sarah Sharp6d1d0512012-07-03 22:49:04 -07005326 /* LPM state doesn't matter when we're about to destroy the device. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005327 hub_port_logical_disconnect(parent_hub, port1);
Xenia Ragiadakoue3376d62013-08-29 21:45:48 +03005328 usb_release_bos_descriptor(udev);
5329 udev->bos = bos;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005330 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005331}
5332
5333/**
5334 * usb_reset_device - warn interface drivers and perform a USB port reset
5335 * @udev: device to reset (not in SUSPENDED or NOTATTACHED state)
5336 *
Alan Stern79efa092006-06-01 13:33:42 -04005337 * Warns all drivers bound to registered interfaces (using their pre_reset
5338 * method), performs the port reset, and then lets the drivers know that
Ming Lei742120c2008-06-18 22:00:29 +08005339 * the reset is over (using their post_reset method).
Alan Stern79efa092006-06-01 13:33:42 -04005340 *
Yacine Belkadi626f0902013-08-02 20:10:04 +02005341 * Return: The same as for usb_reset_and_verify_device().
Alan Stern79efa092006-06-01 13:33:42 -04005342 *
Yacine Belkadi626f0902013-08-02 20:10:04 +02005343 * Note:
Alan Stern79efa092006-06-01 13:33:42 -04005344 * The caller must own the device lock. For example, it's safe to use
5345 * this from a driver probe() routine after downloading new firmware.
5346 * For calls that might not occur during probe(), drivers should lock
Ming Lei742120c2008-06-18 22:00:29 +08005347 * the device using usb_lock_device_for_reset().
Alan Stern79efa092006-06-01 13:33:42 -04005348 *
5349 * If an interface is currently being probed or disconnected, we assume
5350 * its driver knows how to handle resets. For all other interfaces,
5351 * if the driver doesn't have pre_reset and post_reset methods then
5352 * we attempt to unbind it and rebind afterward.
Alan Stern79efa092006-06-01 13:33:42 -04005353 */
Ming Lei742120c2008-06-18 22:00:29 +08005354int usb_reset_device(struct usb_device *udev)
Alan Stern79efa092006-06-01 13:33:42 -04005355{
5356 int ret;
Alan Stern852c4b42007-12-03 15:44:29 -05005357 int i;
Ming Lei4d769de2013-02-22 16:34:22 -08005358 unsigned int noio_flag;
Alan Stern79efa092006-06-01 13:33:42 -04005359 struct usb_host_config *config = udev->actconfig;
5360
5361 if (udev->state == USB_STATE_NOTATTACHED ||
5362 udev->state == USB_STATE_SUSPENDED) {
5363 dev_dbg(&udev->dev, "device reset not allowed in state %d\n",
5364 udev->state);
5365 return -EINVAL;
5366 }
5367
Ming Lei4d769de2013-02-22 16:34:22 -08005368 /*
5369 * Don't allocate memory with GFP_KERNEL in current
5370 * context to avoid possible deadlock if usb mass
5371 * storage interface or usbnet interface(iSCSI case)
5372 * is included in current configuration. The easist
5373 * approach is to do it for every device reset,
5374 * because the device 'memalloc_noio' flag may have
5375 * not been set before reseting the usb device.
5376 */
5377 noio_flag = memalloc_noio_save();
5378
Alan Stern645daaa2006-08-30 15:47:02 -04005379 /* Prevent autosuspend during the reset */
Alan Stern94fcda12006-11-20 11:38:46 -05005380 usb_autoresume_device(udev);
Alan Stern645daaa2006-08-30 15:47:02 -04005381
Alan Stern79efa092006-06-01 13:33:42 -04005382 if (config) {
Alan Stern79efa092006-06-01 13:33:42 -04005383 for (i = 0; i < config->desc.bNumInterfaces; ++i) {
Alan Stern852c4b42007-12-03 15:44:29 -05005384 struct usb_interface *cintf = config->interface[i];
5385 struct usb_driver *drv;
Alan Stern78d9a482008-06-23 16:00:40 -04005386 int unbind = 0;
Alan Stern852c4b42007-12-03 15:44:29 -05005387
5388 if (cintf->dev.driver) {
Alan Stern79efa092006-06-01 13:33:42 -04005389 drv = to_usb_driver(cintf->dev.driver);
Alan Stern78d9a482008-06-23 16:00:40 -04005390 if (drv->pre_reset && drv->post_reset)
5391 unbind = (drv->pre_reset)(cintf);
5392 else if (cintf->condition ==
5393 USB_INTERFACE_BOUND)
5394 unbind = 1;
5395 if (unbind)
5396 usb_forced_unbind_intf(cintf);
Alan Stern79efa092006-06-01 13:33:42 -04005397 }
5398 }
5399 }
5400
Ming Lei742120c2008-06-18 22:00:29 +08005401 ret = usb_reset_and_verify_device(udev);
Alan Stern79efa092006-06-01 13:33:42 -04005402
5403 if (config) {
Alan Stern79efa092006-06-01 13:33:42 -04005404 for (i = config->desc.bNumInterfaces - 1; i >= 0; --i) {
Alan Stern852c4b42007-12-03 15:44:29 -05005405 struct usb_interface *cintf = config->interface[i];
5406 struct usb_driver *drv;
Alan Stern78d9a482008-06-23 16:00:40 -04005407 int rebind = cintf->needs_binding;
Alan Stern852c4b42007-12-03 15:44:29 -05005408
Alan Stern78d9a482008-06-23 16:00:40 -04005409 if (!rebind && cintf->dev.driver) {
Alan Stern79efa092006-06-01 13:33:42 -04005410 drv = to_usb_driver(cintf->dev.driver);
5411 if (drv->post_reset)
Alan Stern78d9a482008-06-23 16:00:40 -04005412 rebind = (drv->post_reset)(cintf);
5413 else if (cintf->condition ==
5414 USB_INTERFACE_BOUND)
5415 rebind = 1;
Alan Stern6aec0442014-03-12 11:30:38 -04005416 if (rebind)
5417 cintf->needs_binding = 1;
Alan Stern79efa092006-06-01 13:33:42 -04005418 }
Alan Stern79efa092006-06-01 13:33:42 -04005419 }
Alan Stern6aec0442014-03-12 11:30:38 -04005420 usb_unbind_and_rebind_marked_interfaces(udev);
Alan Stern79efa092006-06-01 13:33:42 -04005421 }
5422
Alan Stern94fcda12006-11-20 11:38:46 -05005423 usb_autosuspend_device(udev);
Ming Lei4d769de2013-02-22 16:34:22 -08005424 memalloc_noio_restore(noio_flag);
Alan Stern79efa092006-06-01 13:33:42 -04005425 return ret;
5426}
Ming Lei742120c2008-06-18 22:00:29 +08005427EXPORT_SYMBOL_GPL(usb_reset_device);
Inaky Perez-Gonzalezdc023dc2008-11-13 10:31:35 -08005428
5429
5430/**
5431 * usb_queue_reset_device - Reset a USB device from an atomic context
5432 * @iface: USB interface belonging to the device to reset
5433 *
5434 * This function can be used to reset a USB device from an atomic
5435 * context, where usb_reset_device() won't work (as it blocks).
5436 *
5437 * Doing a reset via this method is functionally equivalent to calling
5438 * usb_reset_device(), except for the fact that it is delayed to a
5439 * workqueue. This means that any drivers bound to other interfaces
5440 * might be unbound, as well as users from usbfs in user space.
5441 *
5442 * Corner cases:
5443 *
5444 * - Scheduling two resets at the same time from two different drivers
5445 * attached to two different interfaces of the same device is
5446 * possible; depending on how the driver attached to each interface
5447 * handles ->pre_reset(), the second reset might happen or not.
5448 *
5449 * - If a driver is unbound and it had a pending reset, the reset will
5450 * be cancelled.
5451 *
5452 * - This function can be called during .probe() or .disconnect()
5453 * times. On return from .disconnect(), any pending resets will be
5454 * cancelled.
5455 *
5456 * There is no no need to lock/unlock the @reset_ws as schedule_work()
5457 * does its own.
5458 *
5459 * NOTE: We don't do any reference count tracking because it is not
5460 * needed. The lifecycle of the work_struct is tied to the
5461 * usb_interface. Before destroying the interface we cancel the
5462 * work_struct, so the fact that work_struct is queued and or
5463 * running means the interface (and thus, the device) exist and
5464 * are referenced.
5465 */
5466void usb_queue_reset_device(struct usb_interface *iface)
5467{
5468 schedule_work(&iface->reset_ws);
5469}
5470EXPORT_SYMBOL_GPL(usb_queue_reset_device);
Lan Tianyuff823c792012-09-05 13:44:32 +08005471
5472/**
5473 * usb_hub_find_child - Get the pointer of child device
5474 * attached to the port which is specified by @port1.
5475 * @hdev: USB device belonging to the usb hub
5476 * @port1: port num to indicate which port the child device
5477 * is attached to.
5478 *
5479 * USB drivers call this function to get hub's child device
5480 * pointer.
5481 *
Yacine Belkadi626f0902013-08-02 20:10:04 +02005482 * Return: %NULL if input param is invalid and
Lan Tianyuff823c792012-09-05 13:44:32 +08005483 * child's usb_device pointer if non-NULL.
5484 */
5485struct usb_device *usb_hub_find_child(struct usb_device *hdev,
5486 int port1)
5487{
Lan Tianyuad493e52013-01-23 04:26:30 +08005488 struct usb_hub *hub = usb_hub_to_struct_hub(hdev);
Lan Tianyuff823c792012-09-05 13:44:32 +08005489
5490 if (port1 < 1 || port1 > hdev->maxchild)
5491 return NULL;
5492 return hub->ports[port1 - 1]->child;
5493}
5494EXPORT_SYMBOL_GPL(usb_hub_find_child);
Lan Tianyud5575422012-09-05 13:44:33 +08005495
Lan Tianyud2123fd2013-01-21 22:18:00 +08005496void usb_hub_adjust_deviceremovable(struct usb_device *hdev,
5497 struct usb_hub_descriptor *desc)
5498{
Dan Williamsd99f6b42014-05-20 18:08:17 -07005499 struct usb_hub *hub = usb_hub_to_struct_hub(hdev);
Lan Tianyud2123fd2013-01-21 22:18:00 +08005500 enum usb_port_connect_type connect_type;
5501 int i;
5502
Dan Williamsd99f6b42014-05-20 18:08:17 -07005503 if (!hub)
5504 return;
5505
Lan Tianyud2123fd2013-01-21 22:18:00 +08005506 if (!hub_is_superspeed(hdev)) {
5507 for (i = 1; i <= hdev->maxchild; i++) {
Dan Williamsd99f6b42014-05-20 18:08:17 -07005508 struct usb_port *port_dev = hub->ports[i - 1];
Lan Tianyud2123fd2013-01-21 22:18:00 +08005509
Dan Williamsd99f6b42014-05-20 18:08:17 -07005510 connect_type = port_dev->connect_type;
Lan Tianyud2123fd2013-01-21 22:18:00 +08005511 if (connect_type == USB_PORT_CONNECT_TYPE_HARD_WIRED) {
5512 u8 mask = 1 << (i%8);
5513
5514 if (!(desc->u.hs.DeviceRemovable[i/8] & mask)) {
Dan Williamsd99f6b42014-05-20 18:08:17 -07005515 dev_dbg(&port_dev->dev, "DeviceRemovable is changed to 1 according to platform information.\n");
Lan Tianyud2123fd2013-01-21 22:18:00 +08005516 desc->u.hs.DeviceRemovable[i/8] |= mask;
5517 }
5518 }
5519 }
5520 } else {
5521 u16 port_removable = le16_to_cpu(desc->u.ss.DeviceRemovable);
5522
5523 for (i = 1; i <= hdev->maxchild; i++) {
Dan Williamsd99f6b42014-05-20 18:08:17 -07005524 struct usb_port *port_dev = hub->ports[i - 1];
Lan Tianyud2123fd2013-01-21 22:18:00 +08005525
Dan Williamsd99f6b42014-05-20 18:08:17 -07005526 connect_type = port_dev->connect_type;
Lan Tianyud2123fd2013-01-21 22:18:00 +08005527 if (connect_type == USB_PORT_CONNECT_TYPE_HARD_WIRED) {
5528 u16 mask = 1 << i;
5529
5530 if (!(port_removable & mask)) {
Dan Williamsd99f6b42014-05-20 18:08:17 -07005531 dev_dbg(&port_dev->dev, "DeviceRemovable is changed to 1 according to platform information.\n");
Lan Tianyud2123fd2013-01-21 22:18:00 +08005532 port_removable |= mask;
5533 }
5534 }
5535 }
5536
5537 desc->u.ss.DeviceRemovable = cpu_to_le16(port_removable);
5538 }
5539}
5540
Lan Tianyud5575422012-09-05 13:44:33 +08005541#ifdef CONFIG_ACPI
5542/**
5543 * usb_get_hub_port_acpi_handle - Get the usb port's acpi handle
5544 * @hdev: USB device belonging to the usb hub
5545 * @port1: port num of the port
5546 *
Yacine Belkadi626f0902013-08-02 20:10:04 +02005547 * Return: Port's acpi handle if successful, %NULL if params are
5548 * invalid.
Lan Tianyud5575422012-09-05 13:44:33 +08005549 */
5550acpi_handle usb_get_hub_port_acpi_handle(struct usb_device *hdev,
5551 int port1)
5552{
Lan Tianyuad493e52013-01-23 04:26:30 +08005553 struct usb_hub *hub = usb_hub_to_struct_hub(hdev);
Lan Tianyud5575422012-09-05 13:44:33 +08005554
Mathias Nyman413412612013-06-18 17:28:48 +03005555 if (!hub)
5556 return NULL;
5557
Rafael J. Wysocki3a83f992013-11-14 23:17:21 +01005558 return ACPI_HANDLE(&hub->ports[port1 - 1]->dev);
Lan Tianyud5575422012-09-05 13:44:33 +08005559}
5560#endif