blob: cbf7168e3ce7062c7610e1dfe0c13b6e49f9ff86 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <asm/uaccess.h>
31#include <asm/byteorder.h>
32
33#include "usb.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
Greg Kroah-Hartmanf2a383e2007-11-26 22:11:55 -080035/* if we are in debug mode, always announce new devices */
36#ifdef DEBUG
37#ifndef CONFIG_USB_ANNOUNCE_NEW_DEVICES
38#define CONFIG_USB_ANNOUNCE_NEW_DEVICES
39#endif
40#endif
41
Ming Leie6f30de2012-10-24 11:59:24 +080042#define USB_VENDOR_GENESYS_LOGIC 0x05e3
43#define HUB_QUIRK_CHECK_PORT_AUTOSUSPEND 0x01
44
Lan Tianyufa2a9562012-09-05 13:44:31 +080045struct usb_port {
Lan Tianyuff823c792012-09-05 13:44:32 +080046 struct usb_device *child;
Lan Tianyufa2a9562012-09-05 13:44:31 +080047 struct device dev;
48 struct dev_state *port_owner;
Lan Tianyu05f91682012-09-05 13:44:34 +080049 enum usb_port_connect_type connect_type;
Lan Tianyufa2a9562012-09-05 13:44:31 +080050};
51
Alan Stern1bb5f662006-11-06 11:56:13 -050052struct usb_hub {
53 struct device *intfdev; /* the "interface" device */
54 struct usb_device *hdev;
Alan Sterne8054852007-05-04 11:55:11 -040055 struct kref kref;
Alan Stern1bb5f662006-11-06 11:56:13 -050056 struct urb *urb; /* for interrupt polling pipe */
57
58 /* buffer for urb ... with extra space in case of babble */
59 char (*buffer)[8];
Alan Stern1bb5f662006-11-06 11:56:13 -050060 union {
61 struct usb_hub_status hub;
62 struct usb_port_status port;
63 } *status; /* buffer for status reports */
Alan Sterndb90e7a2007-02-05 09:56:15 -050064 struct mutex status_mutex; /* for the status buffer */
Alan Stern1bb5f662006-11-06 11:56:13 -050065
66 int error; /* last reported error */
67 int nerrors; /* track consecutive errors */
68
69 struct list_head event_list; /* hubs w/data or errs ready */
70 unsigned long event_bits[1]; /* status change bitmask */
71 unsigned long change_bits[1]; /* ports with logical connect
72 status change */
73 unsigned long busy_bits[1]; /* ports being reset or
74 resumed */
Alan Stern253e0572009-10-27 15:20:13 -040075 unsigned long removed_bits[1]; /* ports with a "removed"
76 device present */
Sarah Sharp4ee823b2011-11-14 18:00:01 -080077 unsigned long wakeup_bits[1]; /* ports that have signaled
78 remote wakeup */
Alan Stern1bb5f662006-11-06 11:56:13 -050079#if USB_MAXCHILDREN > 31 /* 8*sizeof(unsigned long) - 1 */
80#error event_bits[] is too short!
81#endif
82
83 struct usb_hub_descriptor *descriptor; /* class descriptor */
84 struct usb_tt tt; /* Transaction Translator */
85
86 unsigned mA_per_port; /* current for each child */
87
88 unsigned limited_power:1;
89 unsigned quiescing:1;
Alan Sterne8054852007-05-04 11:55:11 -040090 unsigned disconnected:1;
Alan Stern1bb5f662006-11-06 11:56:13 -050091
Ming Leie6f30de2012-10-24 11:59:24 +080092 unsigned quirk_check_port_auto_suspend:1;
93
Alan Stern1bb5f662006-11-06 11:56:13 -050094 unsigned has_indicators:1;
95 u8 indicator[USB_MAXCHILDREN];
David Howells6d5aefb2006-12-05 19:36:26 +000096 struct delayed_work leds;
Alan Stern8520f382008-09-22 14:44:26 -040097 struct delayed_work init_work;
Lan Tianyufa2a9562012-09-05 13:44:31 +080098 struct usb_port **ports;
Alan Stern1bb5f662006-11-06 11:56:13 -050099};
100
John Youndbe79bb2001-09-17 00:00:00 -0700101static inline int hub_is_superspeed(struct usb_device *hdev)
102{
Aman Deep7bf01182011-12-08 12:05:22 +0530103 return (hdev->descriptor.bDeviceProtocol == USB_HUB_PR_SS);
John Youndbe79bb2001-09-17 00:00:00 -0700104}
Alan Stern1bb5f662006-11-06 11:56:13 -0500105
Greg Kroah-Hartmanfa286182012-05-14 09:20:37 -0700106/* Protect struct usb_device->state and ->children members
Alan Stern9ad3d6c2005-11-17 17:10:32 -0500107 * Note: Both are also protected by ->dev.sem, except that ->state can
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 * change to USB_STATE_NOTATTACHED even when the semaphore isn't held. */
109static DEFINE_SPINLOCK(device_state_lock);
110
111/* khubd's worklist and its lock */
112static DEFINE_SPINLOCK(hub_event_lock);
113static LIST_HEAD(hub_event_list); /* List of hubs needing servicing */
114
115/* Wakes up khubd */
116static DECLARE_WAIT_QUEUE_HEAD(khubd_wait);
117
akpm@osdl.org9c8d6172005-06-20 14:29:58 -0700118static struct task_struct *khubd_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
120/* cycle leds on hubs that aren't blinking for attention */
Rusty Russell90ab5ee2012-01-13 09:32:20 +1030121static bool blinkenlights = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122module_param (blinkenlights, bool, S_IRUGO);
123MODULE_PARM_DESC (blinkenlights, "true to cycle leds on hubs");
124
125/*
Jaroslav Kyselafd7c5192008-10-10 16:24:45 +0200126 * Device SATA8000 FW1.0 from DATAST0R Technology Corp requires about
127 * 10 seconds to send reply for the initial 64-byte descriptor request.
128 */
129/* define initial 64-byte descriptor request timeout in milliseconds */
130static int initial_descriptor_timeout = USB_CTRL_GET_TIMEOUT;
131module_param(initial_descriptor_timeout, int, S_IRUGO|S_IWUSR);
Wu Fengguangb9cef6c2008-12-15 15:32:01 +0800132MODULE_PARM_DESC(initial_descriptor_timeout,
133 "initial 64-byte descriptor request timeout in milliseconds "
134 "(default 5000 - 5.0 seconds)");
Jaroslav Kyselafd7c5192008-10-10 16:24:45 +0200135
136/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 * As of 2.6.10 we introduce a new USB device initialization scheme which
138 * closely resembles the way Windows works. Hopefully it will be compatible
139 * with a wider range of devices than the old scheme. However some previously
140 * working devices may start giving rise to "device not accepting address"
141 * errors; if that happens the user can try the old scheme by adjusting the
142 * following module parameters.
143 *
144 * For maximum flexibility there are two boolean parameters to control the
145 * hub driver's behavior. On the first initialization attempt, if the
146 * "old_scheme_first" parameter is set then the old scheme will be used,
147 * otherwise the new scheme is used. If that fails and "use_both_schemes"
148 * is set, then the driver will make another attempt, using the other scheme.
149 */
Rusty Russell90ab5ee2012-01-13 09:32:20 +1030150static bool old_scheme_first = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151module_param(old_scheme_first, bool, S_IRUGO | S_IWUSR);
152MODULE_PARM_DESC(old_scheme_first,
153 "start with the old device initialization scheme");
154
Rusty Russell90ab5ee2012-01-13 09:32:20 +1030155static bool use_both_schemes = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156module_param(use_both_schemes, bool, S_IRUGO | S_IWUSR);
157MODULE_PARM_DESC(use_both_schemes,
158 "try the other device initialization scheme if the "
159 "first one fails");
160
Alan Stern32fe0192007-10-10 16:27:07 -0400161/* Mutual exclusion for EHCI CF initialization. This interferes with
162 * port reset on some companion controllers.
163 */
164DECLARE_RWSEM(ehci_cf_port_reset_rwsem);
165EXPORT_SYMBOL_GPL(ehci_cf_port_reset_rwsem);
166
Alan Stern948fea32008-04-28 11:07:07 -0400167#define HUB_DEBOUNCE_TIMEOUT 1500
168#define HUB_DEBOUNCE_STEP 25
169#define HUB_DEBOUNCE_STABLE 100
170
Lan Tianyufa2a9562012-09-05 13:44:31 +0800171#define to_usb_port(_dev) \
172 container_of(_dev, struct usb_port, dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
Ming Lei742120c2008-06-18 22:00:29 +0800174static int usb_reset_and_verify_device(struct usb_device *udev);
175
Sarah Sharp131dec32010-12-06 21:00:19 -0800176static inline char *portspeed(struct usb_hub *hub, int portstatus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177{
Sarah Sharp131dec32010-12-06 21:00:19 -0800178 if (hub_is_superspeed(hub->hdev))
179 return "5.0 Gb/s";
Alan Stern288ead42010-03-04 11:32:30 -0500180 if (portstatus & USB_PORT_STAT_HIGH_SPEED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 return "480 Mb/s";
Alan Stern288ead42010-03-04 11:32:30 -0500182 else if (portstatus & USB_PORT_STAT_LOW_SPEED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 return "1.5 Mb/s";
184 else
185 return "12 Mb/s";
186}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
188/* Note that hdev or one of its children must be locked! */
Alan Stern251180842009-07-22 14:41:18 -0400189static struct usb_hub *hdev_to_hub(struct usb_device *hdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190{
Lan Tianyuff823c792012-09-05 13:44:32 +0800191 if (!hdev || !hdev->actconfig || !hdev->maxchild)
Alan Stern251180842009-07-22 14:41:18 -0400192 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 return usb_get_intfdata(hdev->actconfig->interface[0]);
194}
195
Sarah Sharpd9b20992012-02-20 08:31:26 -0800196static int usb_device_supports_lpm(struct usb_device *udev)
197{
198 /* USB 2.1 (and greater) devices indicate LPM support through
199 * their USB 2.0 Extended Capabilities BOS descriptor.
200 */
201 if (udev->speed == USB_SPEED_HIGH) {
202 if (udev->bos->ext_cap &&
203 (USB_LPM_SUPPORT &
204 le32_to_cpu(udev->bos->ext_cap->bmAttributes)))
205 return 1;
206 return 0;
207 }
Sarah Sharp51e0a012012-02-20 12:02:19 -0800208
209 /* All USB 3.0 must support LPM, but we need their max exit latency
210 * information from the SuperSpeed Extended Capabilities BOS descriptor.
211 */
212 if (!udev->bos->ss_cap) {
213 dev_warn(&udev->dev, "No LPM exit latency info found. "
214 "Power management will be impacted.\n");
215 return 0;
216 }
217 if (udev->parent->lpm_capable)
218 return 1;
219
220 dev_warn(&udev->dev, "Parent hub missing LPM exit latency info. "
221 "Power management will be impacted.\n");
Sarah Sharpd9b20992012-02-20 08:31:26 -0800222 return 0;
223}
224
Sarah Sharp51e0a012012-02-20 12:02:19 -0800225/*
226 * Set the Maximum Exit Latency (MEL) for the host to initiate a transition from
227 * either U1 or U2.
228 */
229static void usb_set_lpm_mel(struct usb_device *udev,
230 struct usb3_lpm_parameters *udev_lpm_params,
231 unsigned int udev_exit_latency,
232 struct usb_hub *hub,
233 struct usb3_lpm_parameters *hub_lpm_params,
234 unsigned int hub_exit_latency)
235{
236 unsigned int total_mel;
237 unsigned int device_mel;
238 unsigned int hub_mel;
239
240 /*
241 * Calculate the time it takes to transition all links from the roothub
242 * to the parent hub into U0. The parent hub must then decode the
243 * packet (hub header decode latency) to figure out which port it was
244 * bound for.
245 *
246 * The Hub Header decode latency is expressed in 0.1us intervals (0x1
247 * means 0.1us). Multiply that by 100 to get nanoseconds.
248 */
249 total_mel = hub_lpm_params->mel +
250 (hub->descriptor->u.ss.bHubHdrDecLat * 100);
251
252 /*
253 * How long will it take to transition the downstream hub's port into
254 * U0? The greater of either the hub exit latency or the device exit
255 * latency.
256 *
257 * The BOS U1/U2 exit latencies are expressed in 1us intervals.
258 * Multiply that by 1000 to get nanoseconds.
259 */
260 device_mel = udev_exit_latency * 1000;
261 hub_mel = hub_exit_latency * 1000;
262 if (device_mel > hub_mel)
263 total_mel += device_mel;
264 else
265 total_mel += hub_mel;
266
267 udev_lpm_params->mel = total_mel;
268}
269
270/*
271 * Set the maximum Device to Host Exit Latency (PEL) for the device to initiate
272 * a transition from either U1 or U2.
273 */
274static void usb_set_lpm_pel(struct usb_device *udev,
275 struct usb3_lpm_parameters *udev_lpm_params,
276 unsigned int udev_exit_latency,
277 struct usb_hub *hub,
278 struct usb3_lpm_parameters *hub_lpm_params,
279 unsigned int hub_exit_latency,
280 unsigned int port_to_port_exit_latency)
281{
282 unsigned int first_link_pel;
283 unsigned int hub_pel;
284
285 /*
286 * First, the device sends an LFPS to transition the link between the
287 * device and the parent hub into U0. The exit latency is the bigger of
288 * the device exit latency or the hub exit latency.
289 */
290 if (udev_exit_latency > hub_exit_latency)
291 first_link_pel = udev_exit_latency * 1000;
292 else
293 first_link_pel = hub_exit_latency * 1000;
294
295 /*
296 * When the hub starts to receive the LFPS, there is a slight delay for
297 * it to figure out that one of the ports is sending an LFPS. Then it
298 * will forward the LFPS to its upstream link. The exit latency is the
299 * delay, plus the PEL that we calculated for this hub.
300 */
301 hub_pel = port_to_port_exit_latency * 1000 + hub_lpm_params->pel;
302
303 /*
304 * According to figure C-7 in the USB 3.0 spec, the PEL for this device
305 * is the greater of the two exit latencies.
306 */
307 if (first_link_pel > hub_pel)
308 udev_lpm_params->pel = first_link_pel;
309 else
310 udev_lpm_params->pel = hub_pel;
311}
312
313/*
314 * Set the System Exit Latency (SEL) to indicate the total worst-case time from
315 * when a device initiates a transition to U0, until when it will receive the
316 * first packet from the host controller.
317 *
318 * Section C.1.5.1 describes the four components to this:
319 * - t1: device PEL
320 * - t2: time for the ERDY to make it from the device to the host.
321 * - t3: a host-specific delay to process the ERDY.
322 * - t4: time for the packet to make it from the host to the device.
323 *
324 * t3 is specific to both the xHCI host and the platform the host is integrated
325 * into. The Intel HW folks have said it's negligible, FIXME if a different
326 * vendor says otherwise.
327 */
328static void usb_set_lpm_sel(struct usb_device *udev,
329 struct usb3_lpm_parameters *udev_lpm_params)
330{
331 struct usb_device *parent;
332 unsigned int num_hubs;
333 unsigned int total_sel;
334
335 /* t1 = device PEL */
336 total_sel = udev_lpm_params->pel;
337 /* How many external hubs are in between the device & the root port. */
338 for (parent = udev->parent, num_hubs = 0; parent->parent;
339 parent = parent->parent)
340 num_hubs++;
341 /* t2 = 2.1us + 250ns * (num_hubs - 1) */
342 if (num_hubs > 0)
343 total_sel += 2100 + 250 * (num_hubs - 1);
344
345 /* t4 = 250ns * num_hubs */
346 total_sel += 250 * num_hubs;
347
348 udev_lpm_params->sel = total_sel;
349}
350
351static void usb_set_lpm_parameters(struct usb_device *udev)
352{
353 struct usb_hub *hub;
354 unsigned int port_to_port_delay;
355 unsigned int udev_u1_del;
356 unsigned int udev_u2_del;
357 unsigned int hub_u1_del;
358 unsigned int hub_u2_del;
359
360 if (!udev->lpm_capable || udev->speed != USB_SPEED_SUPER)
361 return;
362
363 hub = hdev_to_hub(udev->parent);
364 /* It doesn't take time to transition the roothub into U0, since it
365 * doesn't have an upstream link.
366 */
367 if (!hub)
368 return;
369
370 udev_u1_del = udev->bos->ss_cap->bU1devExitLat;
371 udev_u2_del = udev->bos->ss_cap->bU2DevExitLat;
372 hub_u1_del = udev->parent->bos->ss_cap->bU1devExitLat;
373 hub_u2_del = udev->parent->bos->ss_cap->bU2DevExitLat;
374
375 usb_set_lpm_mel(udev, &udev->u1_params, udev_u1_del,
376 hub, &udev->parent->u1_params, hub_u1_del);
377
378 usb_set_lpm_mel(udev, &udev->u2_params, udev_u2_del,
379 hub, &udev->parent->u2_params, hub_u2_del);
380
381 /*
382 * Appendix C, section C.2.2.2, says that there is a slight delay from
383 * when the parent hub notices the downstream port is trying to
384 * transition to U0 to when the hub initiates a U0 transition on its
385 * upstream port. The section says the delays are tPort2PortU1EL and
386 * tPort2PortU2EL, but it doesn't define what they are.
387 *
388 * The hub chapter, sections 10.4.2.4 and 10.4.2.5 seem to be talking
389 * about the same delays. Use the maximum delay calculations from those
390 * sections. For U1, it's tHubPort2PortExitLat, which is 1us max. For
391 * U2, it's tHubPort2PortExitLat + U2DevExitLat - U1DevExitLat. I
392 * assume the device exit latencies they are talking about are the hub
393 * exit latencies.
394 *
395 * What do we do if the U2 exit latency is less than the U1 exit
396 * latency? It's possible, although not likely...
397 */
398 port_to_port_delay = 1;
399
400 usb_set_lpm_pel(udev, &udev->u1_params, udev_u1_del,
401 hub, &udev->parent->u1_params, hub_u1_del,
402 port_to_port_delay);
403
404 if (hub_u2_del > hub_u1_del)
405 port_to_port_delay = 1 + hub_u2_del - hub_u1_del;
406 else
407 port_to_port_delay = 1 + hub_u1_del;
408
409 usb_set_lpm_pel(udev, &udev->u2_params, udev_u2_del,
410 hub, &udev->parent->u2_params, hub_u2_del,
411 port_to_port_delay);
412
413 /* Now that we've got PEL, calculate SEL. */
414 usb_set_lpm_sel(udev, &udev->u1_params);
415 usb_set_lpm_sel(udev, &udev->u2_params);
416}
417
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418/* USB 2.0 spec Section 11.24.4.5 */
John Youndbe79bb2001-09-17 00:00:00 -0700419static int get_hub_descriptor(struct usb_device *hdev, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420{
John Youndbe79bb2001-09-17 00:00:00 -0700421 int i, ret, size;
422 unsigned dtype;
423
424 if (hub_is_superspeed(hdev)) {
425 dtype = USB_DT_SS_HUB;
426 size = USB_DT_SS_HUB_SIZE;
427 } else {
428 dtype = USB_DT_HUB;
429 size = sizeof(struct usb_hub_descriptor);
430 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431
432 for (i = 0; i < 3; i++) {
433 ret = usb_control_msg(hdev, usb_rcvctrlpipe(hdev, 0),
434 USB_REQ_GET_DESCRIPTOR, USB_DIR_IN | USB_RT_HUB,
John Youndbe79bb2001-09-17 00:00:00 -0700435 dtype << 8, 0, data, size,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 USB_CTRL_GET_TIMEOUT);
437 if (ret >= (USB_DT_HUB_NONVAR_SIZE + 2))
438 return ret;
439 }
440 return -EINVAL;
441}
442
443/*
444 * USB 2.0 spec Section 11.24.2.1
445 */
446static int clear_hub_feature(struct usb_device *hdev, int feature)
447{
448 return usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
449 USB_REQ_CLEAR_FEATURE, USB_RT_HUB, feature, 0, NULL, 0, 1000);
450}
451
452/*
453 * USB 2.0 spec Section 11.24.2.2
454 */
455static int clear_port_feature(struct usb_device *hdev, int port1, int feature)
456{
457 return usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
458 USB_REQ_CLEAR_FEATURE, USB_RT_PORT, feature, port1,
459 NULL, 0, 1000);
460}
461
462/*
463 * USB 2.0 spec Section 11.24.2.13
464 */
465static int set_port_feature(struct usb_device *hdev, int port1, int feature)
466{
467 return usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
468 USB_REQ_SET_FEATURE, USB_RT_PORT, feature, port1,
469 NULL, 0, 1000);
470}
471
472/*
473 * USB 2.0 spec Section 11.24.2.7.1.10 and table 11-7
474 * for info about using port indicators
475 */
476static void set_port_led(
477 struct usb_hub *hub,
478 int port1,
479 int selector
480)
481{
482 int status = set_port_feature(hub->hdev, (selector << 8) | port1,
483 USB_PORT_FEAT_INDICATOR);
484 if (status < 0)
485 dev_dbg (hub->intfdev,
486 "port %d indicator %s status %d\n",
487 port1,
488 ({ char *s; switch (selector) {
489 case HUB_LED_AMBER: s = "amber"; break;
490 case HUB_LED_GREEN: s = "green"; break;
491 case HUB_LED_OFF: s = "off"; break;
492 case HUB_LED_AUTO: s = "auto"; break;
493 default: s = "??"; break;
494 }; s; }),
495 status);
496}
497
498#define LED_CYCLE_PERIOD ((2*HZ)/3)
499
David Howellsc4028952006-11-22 14:57:56 +0000500static void led_work (struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501{
David Howellsc4028952006-11-22 14:57:56 +0000502 struct usb_hub *hub =
503 container_of(work, struct usb_hub, leds.work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 struct usb_device *hdev = hub->hdev;
505 unsigned i;
506 unsigned changed = 0;
507 int cursor = -1;
508
509 if (hdev->state != USB_STATE_CONFIGURED || hub->quiescing)
510 return;
511
512 for (i = 0; i < hub->descriptor->bNbrPorts; i++) {
513 unsigned selector, mode;
514
515 /* 30%-50% duty cycle */
516
517 switch (hub->indicator[i]) {
518 /* cycle marker */
519 case INDICATOR_CYCLE:
520 cursor = i;
521 selector = HUB_LED_AUTO;
522 mode = INDICATOR_AUTO;
523 break;
524 /* blinking green = sw attention */
525 case INDICATOR_GREEN_BLINK:
526 selector = HUB_LED_GREEN;
527 mode = INDICATOR_GREEN_BLINK_OFF;
528 break;
529 case INDICATOR_GREEN_BLINK_OFF:
530 selector = HUB_LED_OFF;
531 mode = INDICATOR_GREEN_BLINK;
532 break;
533 /* blinking amber = hw attention */
534 case INDICATOR_AMBER_BLINK:
535 selector = HUB_LED_AMBER;
536 mode = INDICATOR_AMBER_BLINK_OFF;
537 break;
538 case INDICATOR_AMBER_BLINK_OFF:
539 selector = HUB_LED_OFF;
540 mode = INDICATOR_AMBER_BLINK;
541 break;
542 /* blink green/amber = reserved */
543 case INDICATOR_ALT_BLINK:
544 selector = HUB_LED_GREEN;
545 mode = INDICATOR_ALT_BLINK_OFF;
546 break;
547 case INDICATOR_ALT_BLINK_OFF:
548 selector = HUB_LED_AMBER;
549 mode = INDICATOR_ALT_BLINK;
550 break;
551 default:
552 continue;
553 }
554 if (selector != HUB_LED_AUTO)
555 changed = 1;
556 set_port_led(hub, i + 1, selector);
557 hub->indicator[i] = mode;
558 }
559 if (!changed && blinkenlights) {
560 cursor++;
561 cursor %= hub->descriptor->bNbrPorts;
562 set_port_led(hub, cursor + 1, HUB_LED_GREEN);
563 hub->indicator[cursor] = INDICATOR_CYCLE;
564 changed++;
565 }
566 if (changed)
567 schedule_delayed_work(&hub->leds, LED_CYCLE_PERIOD);
568}
569
570/* use a short timeout for hub/port status fetches */
571#define USB_STS_TIMEOUT 1000
572#define USB_STS_RETRIES 5
573
574/*
575 * USB 2.0 spec Section 11.24.2.6
576 */
577static int get_hub_status(struct usb_device *hdev,
578 struct usb_hub_status *data)
579{
580 int i, status = -ETIMEDOUT;
581
Libor Pechacek3824c1d2011-05-20 14:53:25 +0200582 for (i = 0; i < USB_STS_RETRIES &&
583 (status == -ETIMEDOUT || status == -EPIPE); i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 status = usb_control_msg(hdev, usb_rcvctrlpipe(hdev, 0),
585 USB_REQ_GET_STATUS, USB_DIR_IN | USB_RT_HUB, 0, 0,
586 data, sizeof(*data), USB_STS_TIMEOUT);
587 }
588 return status;
589}
590
591/*
592 * USB 2.0 spec Section 11.24.2.7
593 */
594static int get_port_status(struct usb_device *hdev, int port1,
595 struct usb_port_status *data)
596{
597 int i, status = -ETIMEDOUT;
598
Libor Pechacek3824c1d2011-05-20 14:53:25 +0200599 for (i = 0; i < USB_STS_RETRIES &&
600 (status == -ETIMEDOUT || status == -EPIPE); i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 status = usb_control_msg(hdev, usb_rcvctrlpipe(hdev, 0),
602 USB_REQ_GET_STATUS, USB_DIR_IN | USB_RT_PORT, 0, port1,
603 data, sizeof(*data), USB_STS_TIMEOUT);
604 }
605 return status;
606}
607
Alan Stern3eb14912008-03-03 15:15:43 -0500608static int hub_port_status(struct usb_hub *hub, int port1,
609 u16 *status, u16 *change)
610{
611 int ret;
612
613 mutex_lock(&hub->status_mutex);
614 ret = get_port_status(hub->hdev, port1, &hub->status->port);
615 if (ret < 4) {
616 dev_err(hub->intfdev,
617 "%s failed (err = %d)\n", __func__, ret);
618 if (ret >= 0)
619 ret = -EIO;
620 } else {
621 *status = le16_to_cpu(hub->status->port.wPortStatus);
622 *change = le16_to_cpu(hub->status->port.wPortChange);
John Youndbe79bb2001-09-17 00:00:00 -0700623
Alan Stern3eb14912008-03-03 15:15:43 -0500624 ret = 0;
625 }
626 mutex_unlock(&hub->status_mutex);
627 return ret;
628}
629
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630static void kick_khubd(struct usb_hub *hub)
631{
632 unsigned long flags;
633
634 spin_lock_irqsave(&hub_event_lock, flags);
Roel Kluin2e2c5ee2007-10-26 23:54:35 +0200635 if (!hub->disconnected && list_empty(&hub->event_list)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 list_add_tail(&hub->event_list, &hub_event_list);
Alan Stern8e4ceb32009-12-07 13:01:37 -0500637
638 /* Suppress autosuspend until khubd runs */
639 usb_autopm_get_interface_no_resume(
640 to_usb_interface(hub->intfdev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 wake_up(&khubd_wait);
642 }
643 spin_unlock_irqrestore(&hub_event_lock, flags);
644}
645
646void usb_kick_khubd(struct usb_device *hdev)
647{
Alan Stern251180842009-07-22 14:41:18 -0400648 struct usb_hub *hub = hdev_to_hub(hdev);
649
650 if (hub)
651 kick_khubd(hub);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652}
653
Sarah Sharp4ee823b2011-11-14 18:00:01 -0800654/*
655 * Let the USB core know that a USB 3.0 device has sent a Function Wake Device
656 * Notification, which indicates it had initiated remote wakeup.
657 *
658 * USB 3.0 hubs do not report the port link state change from U3 to U0 when the
659 * device initiates resume, so the USB core will not receive notice of the
660 * resume through the normal hub interrupt URB.
661 */
662void usb_wakeup_notification(struct usb_device *hdev,
663 unsigned int portnum)
664{
665 struct usb_hub *hub;
666
667 if (!hdev)
668 return;
669
670 hub = hdev_to_hub(hdev);
671 if (hub) {
672 set_bit(portnum, hub->wakeup_bits);
673 kick_khubd(hub);
674 }
675}
676EXPORT_SYMBOL_GPL(usb_wakeup_notification);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677
678/* completion function, fires on port status changes and various faults */
David Howells7d12e782006-10-05 14:55:46 +0100679static void hub_irq(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680{
Tobias Klauserec17cf12006-09-13 21:38:41 +0200681 struct usb_hub *hub = urb->context;
Alan Sterne0152682007-08-24 15:42:52 -0400682 int status = urb->status;
Roel Kluin71d27182009-03-13 12:19:18 +0100683 unsigned i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 unsigned long bits;
685
Alan Sterne0152682007-08-24 15:42:52 -0400686 switch (status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 case -ENOENT: /* synchronous unlink */
688 case -ECONNRESET: /* async unlink */
689 case -ESHUTDOWN: /* hardware going away */
690 return;
691
692 default: /* presumably an error */
693 /* Cause a hub reset after 10 consecutive errors */
Alan Sterne0152682007-08-24 15:42:52 -0400694 dev_dbg (hub->intfdev, "transfer --> %d\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 if ((++hub->nerrors < 10) || hub->error)
696 goto resubmit;
Alan Sterne0152682007-08-24 15:42:52 -0400697 hub->error = status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 /* FALL THROUGH */
Tobias Klauserec17cf12006-09-13 21:38:41 +0200699
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 /* let khubd handle things */
701 case 0: /* we got data: port status changed */
702 bits = 0;
703 for (i = 0; i < urb->actual_length; ++i)
704 bits |= ((unsigned long) ((*hub->buffer)[i]))
705 << (i*8);
706 hub->event_bits[0] = bits;
707 break;
708 }
709
710 hub->nerrors = 0;
711
712 /* Something happened, let khubd figure it out */
713 kick_khubd(hub);
714
715resubmit:
716 if (hub->quiescing)
717 return;
718
719 if ((status = usb_submit_urb (hub->urb, GFP_ATOMIC)) != 0
720 && status != -ENODEV && status != -EPERM)
721 dev_err (hub->intfdev, "resubmit --> %d\n", status);
722}
723
724/* USB 2.0 spec Section 11.24.2.3 */
725static inline int
726hub_clear_tt_buffer (struct usb_device *hdev, u16 devinfo, u16 tt)
727{
Alan Sternc2f65952009-11-18 11:37:15 -0500728 return usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 HUB_CLEAR_TT_BUFFER, USB_RT_PORT, devinfo,
730 tt, NULL, 0, 1000);
731}
732
733/*
734 * enumeration blocks khubd for a long time. we use keventd instead, since
735 * long blocking there is the exception, not the rule. accordingly, HCDs
736 * talking to TTs must queue control transfers (not just bulk and iso), so
737 * both can talk to the same hub concurrently.
738 */
Alan Sterncb88a1b2009-06-29 10:43:32 -0400739static void hub_tt_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740{
David Howellsc4028952006-11-22 14:57:56 +0000741 struct usb_hub *hub =
Alan Sterncb88a1b2009-06-29 10:43:32 -0400742 container_of(work, struct usb_hub, tt.clear_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 unsigned long flags;
744
745 spin_lock_irqsave (&hub->tt.lock, flags);
Octavian Purdila3b6054d2012-10-01 22:21:12 +0300746 while (!list_empty(&hub->tt.clear_list)) {
H Hartley Sweetend0f830d2009-04-22 16:03:05 -0400747 struct list_head *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 struct usb_tt_clear *clear;
749 struct usb_device *hdev = hub->hdev;
Alan Sterncb88a1b2009-06-29 10:43:32 -0400750 const struct hc_driver *drv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 int status;
752
H Hartley Sweetend0f830d2009-04-22 16:03:05 -0400753 next = hub->tt.clear_list.next;
754 clear = list_entry (next, struct usb_tt_clear, clear_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 list_del (&clear->clear_list);
756
757 /* drop lock so HCD can concurrently report other TT errors */
758 spin_unlock_irqrestore (&hub->tt.lock, flags);
759 status = hub_clear_tt_buffer (hdev, clear->devinfo, clear->tt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 if (status)
761 dev_err (&hdev->dev,
762 "clear tt %d (%04x) error %d\n",
763 clear->tt, clear->devinfo, status);
Alan Sterncb88a1b2009-06-29 10:43:32 -0400764
765 /* Tell the HCD, even if the operation failed */
766 drv = clear->hcd->driver;
767 if (drv->clear_tt_buffer_complete)
768 (drv->clear_tt_buffer_complete)(clear->hcd, clear->ep);
769
Jesper Juhl1bc3c9e2005-04-18 17:39:34 -0700770 kfree(clear);
Alan Sterncb88a1b2009-06-29 10:43:32 -0400771 spin_lock_irqsave(&hub->tt.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 }
773 spin_unlock_irqrestore (&hub->tt.lock, flags);
774}
775
776/**
Alan Sterncb88a1b2009-06-29 10:43:32 -0400777 * usb_hub_clear_tt_buffer - clear control/bulk TT state in high speed hub
778 * @urb: an URB associated with the failed or incomplete split transaction
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 *
780 * High speed HCDs use this to tell the hub driver that some split control or
781 * bulk transaction failed in a way that requires clearing internal state of
782 * a transaction translator. This is normally detected (and reported) from
783 * interrupt context.
784 *
785 * It may not be possible for that hub to handle additional full (or low)
786 * speed transactions until that state is fully cleared out.
787 */
Alan Sterncb88a1b2009-06-29 10:43:32 -0400788int usb_hub_clear_tt_buffer(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789{
Alan Sterncb88a1b2009-06-29 10:43:32 -0400790 struct usb_device *udev = urb->dev;
791 int pipe = urb->pipe;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 struct usb_tt *tt = udev->tt;
793 unsigned long flags;
794 struct usb_tt_clear *clear;
795
796 /* we've got to cope with an arbitrary number of pending TT clears,
797 * since each TT has "at least two" buffers that can need it (and
798 * there can be many TTs per hub). even if they're uncommon.
799 */
Christoph Lameter54e6ecb2006-12-06 20:33:16 -0800800 if ((clear = kmalloc (sizeof *clear, GFP_ATOMIC)) == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 dev_err (&udev->dev, "can't save CLEAR_TT_BUFFER state\n");
802 /* FIXME recover somehow ... RESET_TT? */
Alan Sterncb88a1b2009-06-29 10:43:32 -0400803 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 }
805
806 /* info that CLEAR_TT_BUFFER needs */
807 clear->tt = tt->multi ? udev->ttport : 1;
808 clear->devinfo = usb_pipeendpoint (pipe);
809 clear->devinfo |= udev->devnum << 4;
810 clear->devinfo |= usb_pipecontrol (pipe)
811 ? (USB_ENDPOINT_XFER_CONTROL << 11)
812 : (USB_ENDPOINT_XFER_BULK << 11);
813 if (usb_pipein (pipe))
814 clear->devinfo |= 1 << 15;
Alan Sterncb88a1b2009-06-29 10:43:32 -0400815
816 /* info for completion callback */
817 clear->hcd = bus_to_hcd(udev->bus);
818 clear->ep = urb->ep;
819
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 /* tell keventd to clear state for this TT */
821 spin_lock_irqsave (&tt->lock, flags);
822 list_add_tail (&clear->clear_list, &tt->clear_list);
Alan Sterncb88a1b2009-06-29 10:43:32 -0400823 schedule_work(&tt->clear_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 spin_unlock_irqrestore (&tt->lock, flags);
Alan Sterncb88a1b2009-06-29 10:43:32 -0400825 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826}
Alan Sterncb88a1b2009-06-29 10:43:32 -0400827EXPORT_SYMBOL_GPL(usb_hub_clear_tt_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828
Alan Stern8520f382008-09-22 14:44:26 -0400829/* If do_delay is false, return the number of milliseconds the caller
830 * needs to delay.
831 */
832static unsigned hub_power_on(struct usb_hub *hub, bool do_delay)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833{
834 int port1;
David Brownellb7896962005-08-31 10:41:44 -0700835 unsigned pgood_delay = hub->descriptor->bPwrOn2PwrGood * 2;
Alan Stern8520f382008-09-22 14:44:26 -0400836 unsigned delay;
Alan Stern4489a572006-04-27 15:54:22 -0400837 u16 wHubCharacteristics =
838 le16_to_cpu(hub->descriptor->wHubCharacteristics);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839
Alan Stern4489a572006-04-27 15:54:22 -0400840 /* Enable power on each port. Some hubs have reserved values
841 * of LPSM (> 2) in their descriptors, even though they are
842 * USB 2.0 hubs. Some hubs do not implement port-power switching
843 * but only emulate it. In all cases, the ports won't work
844 * unless we send these messages to the hub.
845 */
846 if ((wHubCharacteristics & HUB_CHAR_LPSM) < 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 dev_dbg(hub->intfdev, "enabling power on all ports\n");
Alan Stern4489a572006-04-27 15:54:22 -0400848 else
849 dev_dbg(hub->intfdev, "trying to enable port power on "
850 "non-switchable hub\n");
851 for (port1 = 1; port1 <= hub->descriptor->bNbrPorts; port1++)
Greg Kroah-Hartmana0693bd2012-09-24 13:04:02 -0700852 set_port_feature(hub->hdev, port1, USB_PORT_FEAT_POWER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853
David Brownellb7896962005-08-31 10:41:44 -0700854 /* Wait at least 100 msec for power to become stable */
Alan Stern8520f382008-09-22 14:44:26 -0400855 delay = max(pgood_delay, (unsigned) 100);
856 if (do_delay)
857 msleep(delay);
858 return delay;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859}
860
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861static int hub_hub_status(struct usb_hub *hub,
862 u16 *status, u16 *change)
863{
864 int ret;
865
Alan Sterndb90e7a2007-02-05 09:56:15 -0500866 mutex_lock(&hub->status_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 ret = get_hub_status(hub->hdev, &hub->status->hub);
868 if (ret < 0)
869 dev_err (hub->intfdev,
Harvey Harrison441b62c2008-03-03 16:08:34 -0800870 "%s failed (err = %d)\n", __func__, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 else {
872 *status = le16_to_cpu(hub->status->hub.wHubStatus);
873 *change = le16_to_cpu(hub->status->hub.wHubChange);
874 ret = 0;
875 }
Alan Sterndb90e7a2007-02-05 09:56:15 -0500876 mutex_unlock(&hub->status_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 return ret;
878}
879
Sarah Sharp41e7e052012-11-14 16:42:32 -0800880static int hub_set_port_link_state(struct usb_hub *hub, int port1,
881 unsigned int link_status)
882{
883 return set_port_feature(hub->hdev,
884 port1 | (link_status << 3),
885 USB_PORT_FEAT_LINK_STATE);
886}
887
888/*
889 * If USB 3.0 ports are placed into the Disabled state, they will no longer
890 * detect any device connects or disconnects. This is generally not what the
891 * USB core wants, since it expects a disabled port to produce a port status
892 * change event when a new device connects.
893 *
894 * Instead, set the link state to Disabled, wait for the link to settle into
895 * that state, clear any change bits, and then put the port into the RxDetect
896 * state.
897 */
898static int hub_usb3_port_disable(struct usb_hub *hub, int port1)
899{
900 int ret;
901 int total_time;
902 u16 portchange, portstatus;
903
904 if (!hub_is_superspeed(hub->hdev))
905 return -EINVAL;
906
907 ret = hub_set_port_link_state(hub, port1, USB_SS_PORT_LS_SS_DISABLED);
908 if (ret) {
909 dev_err(hub->intfdev, "cannot disable port %d (err = %d)\n",
910 port1, ret);
911 return ret;
912 }
913
914 /* Wait for the link to enter the disabled state. */
915 for (total_time = 0; ; total_time += HUB_DEBOUNCE_STEP) {
916 ret = hub_port_status(hub, port1, &portstatus, &portchange);
917 if (ret < 0)
918 return ret;
919
920 if ((portstatus & USB_PORT_STAT_LINK_STATE) ==
921 USB_SS_PORT_LS_SS_DISABLED)
922 break;
923 if (total_time >= HUB_DEBOUNCE_TIMEOUT)
924 break;
925 msleep(HUB_DEBOUNCE_STEP);
926 }
927 if (total_time >= HUB_DEBOUNCE_TIMEOUT)
928 dev_warn(hub->intfdev, "Could not disable port %d after %d ms\n",
929 port1, total_time);
930
931 return hub_set_port_link_state(hub, port1, USB_SS_PORT_LS_RX_DETECT);
932}
933
Alan Stern8b28c752005-08-10 17:04:13 -0400934static int hub_port_disable(struct usb_hub *hub, int port1, int set_state)
935{
936 struct usb_device *hdev = hub->hdev;
Alan Stern0458d5b2007-05-04 11:52:20 -0400937 int ret = 0;
Alan Stern8b28c752005-08-10 17:04:13 -0400938
Lan Tianyuff823c792012-09-05 13:44:32 +0800939 if (hub->ports[port1 - 1]->child && set_state)
940 usb_set_device_state(hub->ports[port1 - 1]->child,
Alan Stern8b28c752005-08-10 17:04:13 -0400941 USB_STATE_NOTATTACHED);
Sarah Sharp41e7e052012-11-14 16:42:32 -0800942 if (!hub->error) {
943 if (hub_is_superspeed(hub->hdev))
944 ret = hub_usb3_port_disable(hub, port1);
945 else
946 ret = clear_port_feature(hdev, port1,
947 USB_PORT_FEAT_ENABLE);
948 }
Alan Stern8b28c752005-08-10 17:04:13 -0400949 if (ret)
950 dev_err(hub->intfdev, "cannot disable port %d (err = %d)\n",
Alan Stern0458d5b2007-05-04 11:52:20 -0400951 port1, ret);
Alan Stern8b28c752005-08-10 17:04:13 -0400952 return ret;
953}
954
Alan Stern0458d5b2007-05-04 11:52:20 -0400955/*
Justin P. Mattock6d42fcd2011-02-26 20:33:56 -0800956 * Disable a port and mark a logical connect-change event, so that some
Alan Stern0458d5b2007-05-04 11:52:20 -0400957 * time later khubd will disconnect() any existing usb_device on the port
958 * and will re-enumerate if there actually is a device attached.
959 */
960static void hub_port_logical_disconnect(struct usb_hub *hub, int port1)
961{
962 dev_dbg(hub->intfdev, "logical disconnect on port %d\n", port1);
963 hub_port_disable(hub, port1, 1);
964
965 /* FIXME let caller ask to power down the port:
966 * - some devices won't enumerate without a VBUS power cycle
967 * - SRP saves power that way
968 * - ... new call, TBD ...
969 * That's easy if this hub can switch power per-port, and
970 * khubd reactivates the port later (timer, SRP, etc).
971 * Powerdown must be optional, because of reset/DFU.
972 */
973
974 set_bit(port1, hub->change_bits);
975 kick_khubd(hub);
976}
977
Alan Stern253e0572009-10-27 15:20:13 -0400978/**
979 * usb_remove_device - disable a device's port on its parent hub
980 * @udev: device to be disabled and removed
981 * Context: @udev locked, must be able to sleep.
982 *
983 * After @udev's port has been disabled, khubd is notified and it will
984 * see that the device has been disconnected. When the device is
985 * physically unplugged and something is plugged in, the events will
986 * be received and processed normally.
987 */
988int usb_remove_device(struct usb_device *udev)
989{
990 struct usb_hub *hub;
991 struct usb_interface *intf;
992
993 if (!udev->parent) /* Can't remove a root hub */
994 return -EINVAL;
995 hub = hdev_to_hub(udev->parent);
996 intf = to_usb_interface(hub->intfdev);
997
998 usb_autopm_get_interface(intf);
999 set_bit(udev->portnum, hub->removed_bits);
1000 hub_port_logical_disconnect(hub, udev->portnum);
1001 usb_autopm_put_interface(intf);
1002 return 0;
1003}
1004
Alan Stern6ee0b272008-04-28 11:06:42 -04001005enum hub_activation_type {
Alan Stern8e4ceb32009-12-07 13:01:37 -05001006 HUB_INIT, HUB_INIT2, HUB_INIT3, /* INITs must come first */
Alan Stern8520f382008-09-22 14:44:26 -04001007 HUB_POST_RESET, HUB_RESUME, HUB_RESET_RESUME,
Alan Stern6ee0b272008-04-28 11:06:42 -04001008};
Alan Stern5e6effa2008-03-03 15:15:51 -05001009
Alan Stern8520f382008-09-22 14:44:26 -04001010static void hub_init_func2(struct work_struct *ws);
1011static void hub_init_func3(struct work_struct *ws);
1012
Alan Sternf2835212008-04-28 11:07:17 -04001013static void hub_activate(struct usb_hub *hub, enum hub_activation_type type)
Alan Stern5e6effa2008-03-03 15:15:51 -05001014{
1015 struct usb_device *hdev = hub->hdev;
Sarah Sharp653a39d2010-12-23 11:12:42 -08001016 struct usb_hcd *hcd;
1017 int ret;
Alan Stern5e6effa2008-03-03 15:15:51 -05001018 int port1;
Alan Sternf2835212008-04-28 11:07:17 -04001019 int status;
Alan Stern948fea32008-04-28 11:07:07 -04001020 bool need_debounce_delay = false;
Alan Stern8520f382008-09-22 14:44:26 -04001021 unsigned delay;
1022
1023 /* Continue a partial initialization */
1024 if (type == HUB_INIT2)
1025 goto init2;
1026 if (type == HUB_INIT3)
1027 goto init3;
Alan Stern5e6effa2008-03-03 15:15:51 -05001028
Elric Fua45aa3b2012-02-18 13:32:27 +08001029 /* The superspeed hub except for root hub has to use Hub Depth
1030 * value as an offset into the route string to locate the bits
1031 * it uses to determine the downstream port number. So hub driver
1032 * should send a set hub depth request to superspeed hub after
1033 * the superspeed hub is set configuration in initialization or
1034 * reset procedure.
1035 *
1036 * After a resume, port power should still be on.
Alan Sternf2835212008-04-28 11:07:17 -04001037 * For any other type of activation, turn it on.
1038 */
Alan Stern8520f382008-09-22 14:44:26 -04001039 if (type != HUB_RESUME) {
Elric Fua45aa3b2012-02-18 13:32:27 +08001040 if (hdev->parent && hub_is_superspeed(hdev)) {
1041 ret = usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
1042 HUB_SET_DEPTH, USB_RT_HUB,
1043 hdev->level - 1, 0, NULL, 0,
1044 USB_CTRL_SET_TIMEOUT);
1045 if (ret < 0)
1046 dev_err(hub->intfdev,
1047 "set hub depth failed\n");
1048 }
Alan Stern8520f382008-09-22 14:44:26 -04001049
1050 /* Speed up system boot by using a delayed_work for the
1051 * hub's initial power-up delays. This is pretty awkward
1052 * and the implementation looks like a home-brewed sort of
1053 * setjmp/longjmp, but it saves at least 100 ms for each
1054 * root hub (assuming usbcore is compiled into the kernel
1055 * rather than as a module). It adds up.
1056 *
1057 * This can't be done for HUB_RESUME or HUB_RESET_RESUME
1058 * because for those activation types the ports have to be
1059 * operational when we return. In theory this could be done
1060 * for HUB_POST_RESET, but it's easier not to.
1061 */
1062 if (type == HUB_INIT) {
1063 delay = hub_power_on(hub, false);
1064 PREPARE_DELAYED_WORK(&hub->init_work, hub_init_func2);
1065 schedule_delayed_work(&hub->init_work,
1066 msecs_to_jiffies(delay));
Alan Stern61fbeba2008-10-27 12:07:44 -04001067
1068 /* Suppress autosuspend until init is done */
Alan Stern8e4ceb32009-12-07 13:01:37 -05001069 usb_autopm_get_interface_no_resume(
1070 to_usb_interface(hub->intfdev));
Alan Stern8520f382008-09-22 14:44:26 -04001071 return; /* Continues at init2: below */
Sarah Sharp653a39d2010-12-23 11:12:42 -08001072 } else if (type == HUB_RESET_RESUME) {
1073 /* The internal host controller state for the hub device
1074 * may be gone after a host power loss on system resume.
1075 * Update the device's info so the HW knows it's a hub.
1076 */
1077 hcd = bus_to_hcd(hdev->bus);
1078 if (hcd->driver->update_hub_device) {
1079 ret = hcd->driver->update_hub_device(hcd, hdev,
1080 &hub->tt, GFP_NOIO);
1081 if (ret < 0) {
1082 dev_err(hub->intfdev, "Host not "
1083 "accepting hub info "
1084 "update.\n");
1085 dev_err(hub->intfdev, "LS/FS devices "
1086 "and hubs may not work "
1087 "under this hub\n.");
1088 }
1089 }
1090 hub_power_on(hub, true);
Alan Stern8520f382008-09-22 14:44:26 -04001091 } else {
1092 hub_power_on(hub, true);
1093 }
1094 }
1095 init2:
Alan Sternf2835212008-04-28 11:07:17 -04001096
Alan Stern6ee0b272008-04-28 11:06:42 -04001097 /* Check each port and set hub->change_bits to let khubd know
1098 * which ports need attention.
Alan Stern5e6effa2008-03-03 15:15:51 -05001099 */
1100 for (port1 = 1; port1 <= hdev->maxchild; ++port1) {
Lan Tianyuff823c792012-09-05 13:44:32 +08001101 struct usb_device *udev = hub->ports[port1 - 1]->child;
Alan Stern5e6effa2008-03-03 15:15:51 -05001102 u16 portstatus, portchange;
1103
Alan Stern6ee0b272008-04-28 11:06:42 -04001104 portstatus = portchange = 0;
1105 status = hub_port_status(hub, port1, &portstatus, &portchange);
1106 if (udev || (portstatus & USB_PORT_STAT_CONNECTION))
1107 dev_dbg(hub->intfdev,
1108 "port %d: status %04x change %04x\n",
1109 port1, portstatus, portchange);
Alan Stern5e6effa2008-03-03 15:15:51 -05001110
Alan Stern6ee0b272008-04-28 11:06:42 -04001111 /* After anything other than HUB_RESUME (i.e., initialization
1112 * or any sort of reset), every port should be disabled.
1113 * Unconnected ports should likewise be disabled (paranoia),
1114 * and so should ports for which we have no usb_device.
Alan Stern5e6effa2008-03-03 15:15:51 -05001115 */
Alan Stern6ee0b272008-04-28 11:06:42 -04001116 if ((portstatus & USB_PORT_STAT_ENABLE) && (
1117 type != HUB_RESUME ||
1118 !(portstatus & USB_PORT_STAT_CONNECTION) ||
1119 !udev ||
1120 udev->state == USB_STATE_NOTATTACHED)) {
Andiry Xu9f0a6cd2010-05-07 18:09:27 +08001121 /*
1122 * USB3 protocol ports will automatically transition
1123 * to Enabled state when detect an USB3.0 device attach.
1124 * Do not disable USB3 protocol ports.
Andiry Xu9f0a6cd2010-05-07 18:09:27 +08001125 */
Sarah Sharp131dec32010-12-06 21:00:19 -08001126 if (!hub_is_superspeed(hdev)) {
Andiry Xu9f0a6cd2010-05-07 18:09:27 +08001127 clear_port_feature(hdev, port1,
1128 USB_PORT_FEAT_ENABLE);
1129 portstatus &= ~USB_PORT_STAT_ENABLE;
Sarah Sharp85f0ff42010-10-14 07:22:54 -07001130 } else {
1131 /* Pretend that power was lost for USB3 devs */
1132 portstatus &= ~USB_PORT_STAT_ENABLE;
Andiry Xu9f0a6cd2010-05-07 18:09:27 +08001133 }
Alan Stern6ee0b272008-04-28 11:06:42 -04001134 }
1135
Alan Stern948fea32008-04-28 11:07:07 -04001136 /* Clear status-change flags; we'll debounce later */
1137 if (portchange & USB_PORT_STAT_C_CONNECTION) {
1138 need_debounce_delay = true;
1139 clear_port_feature(hub->hdev, port1,
1140 USB_PORT_FEAT_C_CONNECTION);
1141 }
1142 if (portchange & USB_PORT_STAT_C_ENABLE) {
1143 need_debounce_delay = true;
1144 clear_port_feature(hub->hdev, port1,
1145 USB_PORT_FEAT_C_ENABLE);
1146 }
Don Zickus79c3dd82011-11-03 09:07:18 -04001147 if ((portchange & USB_PORT_STAT_C_BH_RESET) &&
1148 hub_is_superspeed(hub->hdev)) {
1149 need_debounce_delay = true;
1150 clear_port_feature(hub->hdev, port1,
1151 USB_PORT_FEAT_C_BH_PORT_RESET);
1152 }
Alan Stern253e0572009-10-27 15:20:13 -04001153 /* We can forget about a "removed" device when there's a
1154 * physical disconnect or the connect status changes.
1155 */
1156 if (!(portstatus & USB_PORT_STAT_CONNECTION) ||
1157 (portchange & USB_PORT_STAT_C_CONNECTION))
1158 clear_bit(port1, hub->removed_bits);
1159
Alan Stern6ee0b272008-04-28 11:06:42 -04001160 if (!udev || udev->state == USB_STATE_NOTATTACHED) {
1161 /* Tell khubd to disconnect the device or
1162 * check for a new connection
1163 */
1164 if (udev || (portstatus & USB_PORT_STAT_CONNECTION))
1165 set_bit(port1, hub->change_bits);
1166
1167 } else if (portstatus & USB_PORT_STAT_ENABLE) {
Sarah Sharp72937e12012-01-24 11:46:50 -08001168 bool port_resumed = (portstatus &
1169 USB_PORT_STAT_LINK_STATE) ==
1170 USB_SS_PORT_LS_U0;
Alan Stern6ee0b272008-04-28 11:06:42 -04001171 /* The power session apparently survived the resume.
1172 * If there was an overcurrent or suspend change
1173 * (i.e., remote wakeup request), have khubd
Sarah Sharp72937e12012-01-24 11:46:50 -08001174 * take care of it. Look at the port link state
1175 * for USB 3.0 hubs, since they don't have a suspend
1176 * change bit, and they don't set the port link change
1177 * bit on device-initiated resume.
Alan Stern6ee0b272008-04-28 11:06:42 -04001178 */
Sarah Sharp72937e12012-01-24 11:46:50 -08001179 if (portchange || (hub_is_superspeed(hub->hdev) &&
1180 port_resumed))
Alan Stern6ee0b272008-04-28 11:06:42 -04001181 set_bit(port1, hub->change_bits);
1182
1183 } else if (udev->persist_enabled) {
Alan Stern6ee0b272008-04-28 11:06:42 -04001184#ifdef CONFIG_PM
Alan Stern5e6effa2008-03-03 15:15:51 -05001185 udev->reset_resume = 1;
Alan Stern6ee0b272008-04-28 11:06:42 -04001186#endif
Alan Stern8808f002008-04-28 11:06:55 -04001187 set_bit(port1, hub->change_bits);
1188
Alan Stern6ee0b272008-04-28 11:06:42 -04001189 } else {
1190 /* The power session is gone; tell khubd */
1191 usb_set_device_state(udev, USB_STATE_NOTATTACHED);
1192 set_bit(port1, hub->change_bits);
Alan Stern5e6effa2008-03-03 15:15:51 -05001193 }
Alan Stern5e6effa2008-03-03 15:15:51 -05001194 }
1195
Alan Stern948fea32008-04-28 11:07:07 -04001196 /* If no port-status-change flags were set, we don't need any
1197 * debouncing. If flags were set we can try to debounce the
1198 * ports all at once right now, instead of letting khubd do them
1199 * one at a time later on.
1200 *
1201 * If any port-status changes do occur during this delay, khubd
1202 * will see them later and handle them normally.
1203 */
Alan Stern8520f382008-09-22 14:44:26 -04001204 if (need_debounce_delay) {
1205 delay = HUB_DEBOUNCE_STABLE;
Alan Sternf2835212008-04-28 11:07:17 -04001206
Alan Stern8520f382008-09-22 14:44:26 -04001207 /* Don't do a long sleep inside a workqueue routine */
1208 if (type == HUB_INIT2) {
1209 PREPARE_DELAYED_WORK(&hub->init_work, hub_init_func3);
1210 schedule_delayed_work(&hub->init_work,
1211 msecs_to_jiffies(delay));
1212 return; /* Continues at init3: below */
1213 } else {
1214 msleep(delay);
1215 }
1216 }
1217 init3:
Alan Sternf2835212008-04-28 11:07:17 -04001218 hub->quiescing = 0;
1219
1220 status = usb_submit_urb(hub->urb, GFP_NOIO);
1221 if (status < 0)
1222 dev_err(hub->intfdev, "activate --> %d\n", status);
1223 if (hub->has_indicators && blinkenlights)
1224 schedule_delayed_work(&hub->leds, LED_CYCLE_PERIOD);
1225
1226 /* Scan all ports that need attention */
1227 kick_khubd(hub);
Alan Stern8e4ceb32009-12-07 13:01:37 -05001228
1229 /* Allow autosuspend if it was suppressed */
1230 if (type <= HUB_INIT3)
1231 usb_autopm_put_interface_async(to_usb_interface(hub->intfdev));
Alan Stern5e6effa2008-03-03 15:15:51 -05001232}
1233
Alan Stern8520f382008-09-22 14:44:26 -04001234/* Implement the continuations for the delays above */
1235static void hub_init_func2(struct work_struct *ws)
1236{
1237 struct usb_hub *hub = container_of(ws, struct usb_hub, init_work.work);
1238
1239 hub_activate(hub, HUB_INIT2);
1240}
1241
1242static void hub_init_func3(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_INIT3);
1247}
1248
Alan Stern43303542008-04-28 11:07:31 -04001249enum hub_quiescing_type {
1250 HUB_DISCONNECT, HUB_PRE_RESET, HUB_SUSPEND
1251};
1252
1253static void hub_quiesce(struct usb_hub *hub, enum hub_quiescing_type type)
1254{
1255 struct usb_device *hdev = hub->hdev;
1256 int i;
1257
Alan Stern8520f382008-09-22 14:44:26 -04001258 cancel_delayed_work_sync(&hub->init_work);
1259
Alan Stern43303542008-04-28 11:07:31 -04001260 /* khubd and related activity won't re-trigger */
1261 hub->quiescing = 1;
1262
1263 if (type != HUB_SUSPEND) {
1264 /* Disconnect all the children */
1265 for (i = 0; i < hdev->maxchild; ++i) {
Lan Tianyuff823c792012-09-05 13:44:32 +08001266 if (hub->ports[i]->child)
1267 usb_disconnect(&hub->ports[i]->child);
Alan Stern43303542008-04-28 11:07:31 -04001268 }
1269 }
1270
1271 /* Stop khubd and related activity */
1272 usb_kill_urb(hub->urb);
1273 if (hub->has_indicators)
1274 cancel_delayed_work_sync(&hub->leds);
1275 if (hub->tt.hub)
Octavian Purdila036546b2012-10-23 11:33:12 +03001276 flush_work(&hub->tt.clear_work);
Alan Stern43303542008-04-28 11:07:31 -04001277}
1278
Alan Stern3eb14912008-03-03 15:15:43 -05001279/* caller has locked the hub device */
1280static int hub_pre_reset(struct usb_interface *intf)
1281{
1282 struct usb_hub *hub = usb_get_intfdata(intf);
1283
Alan Stern43303542008-04-28 11:07:31 -04001284 hub_quiesce(hub, HUB_PRE_RESET);
Alan Sternf07600c2007-05-30 15:38:16 -04001285 return 0;
Alan Stern7d069b72005-11-18 12:06:34 -05001286}
1287
1288/* caller has locked the hub device */
Alan Sternf07600c2007-05-30 15:38:16 -04001289static int hub_post_reset(struct usb_interface *intf)
Alan Stern7d069b72005-11-18 12:06:34 -05001290{
Alan Stern7de18d82006-06-01 13:37:24 -04001291 struct usb_hub *hub = usb_get_intfdata(intf);
1292
Alan Sternf2835212008-04-28 11:07:17 -04001293 hub_activate(hub, HUB_POST_RESET);
Alan Sternf07600c2007-05-30 15:38:16 -04001294 return 0;
Alan Stern7d069b72005-11-18 12:06:34 -05001295}
1296
Lan Tianyufa2a9562012-09-05 13:44:31 +08001297static void usb_port_device_release(struct device *dev)
1298{
1299 struct usb_port *port_dev = to_usb_port(dev);
1300
1301 kfree(port_dev);
1302}
1303
1304static void usb_hub_remove_port_device(struct usb_hub *hub,
1305 int port1)
1306{
1307 device_unregister(&hub->ports[port1 - 1]->dev);
1308}
1309
1310struct device_type usb_port_device_type = {
1311 .name = "usb_port",
1312 .release = usb_port_device_release,
1313};
1314
1315static int usb_hub_create_port_device(struct usb_hub *hub,
1316 int port1)
1317{
1318 struct usb_port *port_dev = NULL;
1319 int retval;
1320
1321 port_dev = kzalloc(sizeof(*port_dev), GFP_KERNEL);
1322 if (!port_dev) {
1323 retval = -ENOMEM;
1324 goto exit;
1325 }
1326
1327 hub->ports[port1 - 1] = port_dev;
1328 port_dev->dev.parent = hub->intfdev;
1329 port_dev->dev.type = &usb_port_device_type;
1330 dev_set_name(&port_dev->dev, "port%d", port1);
1331
1332 retval = device_register(&port_dev->dev);
1333 if (retval)
1334 goto error_register;
1335 return 0;
1336
1337error_register:
1338 put_device(&port_dev->dev);
1339exit:
1340 return retval;
1341}
1342
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343static int hub_configure(struct usb_hub *hub,
1344 struct usb_endpoint_descriptor *endpoint)
1345{
Sarah Sharpb356b7c2009-09-04 10:53:24 -07001346 struct usb_hcd *hcd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 struct usb_device *hdev = hub->hdev;
1348 struct device *hub_dev = hub->intfdev;
1349 u16 hubstatus, hubchange;
Greg Kroah-Hartman74ad9bd2005-06-20 21:15:16 -07001350 u16 wHubCharacteristics;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 unsigned int pipe;
Lan Tianyufa2a9562012-09-05 13:44:31 +08001352 int maxp, ret, i;
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001353 char *message = "out of memory";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354
Alan Sternd697cdd2009-10-27 15:18:46 -04001355 hub->buffer = kmalloc(sizeof(*hub->buffer), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 if (!hub->buffer) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 ret = -ENOMEM;
1358 goto fail;
1359 }
1360
1361 hub->status = kmalloc(sizeof(*hub->status), GFP_KERNEL);
1362 if (!hub->status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 ret = -ENOMEM;
1364 goto fail;
1365 }
Alan Sterndb90e7a2007-02-05 09:56:15 -05001366 mutex_init(&hub->status_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367
1368 hub->descriptor = kmalloc(sizeof(*hub->descriptor), GFP_KERNEL);
1369 if (!hub->descriptor) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 ret = -ENOMEM;
1371 goto fail;
1372 }
1373
1374 /* Request the entire hub descriptor.
1375 * hub->descriptor can handle USB_MAXCHILDREN ports,
1376 * but the hub can/will return fewer bytes here.
1377 */
John Youndbe79bb2001-09-17 00:00:00 -07001378 ret = get_hub_descriptor(hdev, hub->descriptor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 if (ret < 0) {
1380 message = "can't read hub descriptor";
1381 goto fail;
1382 } else if (hub->descriptor->bNbrPorts > USB_MAXCHILDREN) {
1383 message = "hub has too many ports!";
1384 ret = -ENODEV;
1385 goto fail;
1386 }
1387
1388 hdev->maxchild = hub->descriptor->bNbrPorts;
1389 dev_info (hub_dev, "%d port%s detected\n", hdev->maxchild,
1390 (hdev->maxchild == 1) ? "" : "s");
1391
Lan Tianyufa2a9562012-09-05 13:44:31 +08001392 hub->ports = kzalloc(hdev->maxchild * sizeof(struct usb_port *),
1393 GFP_KERNEL);
Lan Tianyuff823c792012-09-05 13:44:32 +08001394 if (!hub->ports) {
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001395 ret = -ENOMEM;
1396 goto fail;
1397 }
1398
Greg Kroah-Hartman74ad9bd2005-06-20 21:15:16 -07001399 wHubCharacteristics = le16_to_cpu(hub->descriptor->wHubCharacteristics);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400
John Youndbe79bb2001-09-17 00:00:00 -07001401 /* FIXME for USB 3.0, skip for now */
1402 if ((wHubCharacteristics & HUB_CHAR_COMPOUND) &&
1403 !(hub_is_superspeed(hdev))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 int i;
1405 char portstr [USB_MAXCHILDREN + 1];
1406
1407 for (i = 0; i < hdev->maxchild; i++)
John Youndbe79bb2001-09-17 00:00:00 -07001408 portstr[i] = hub->descriptor->u.hs.DeviceRemovable
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 [((i + 1) / 8)] & (1 << ((i + 1) % 8))
1410 ? 'F' : 'R';
1411 portstr[hdev->maxchild] = 0;
1412 dev_dbg(hub_dev, "compound device; port removable status: %s\n", portstr);
1413 } else
1414 dev_dbg(hub_dev, "standalone hub\n");
1415
Greg Kroah-Hartman74ad9bd2005-06-20 21:15:16 -07001416 switch (wHubCharacteristics & HUB_CHAR_LPSM) {
Aman Deep7bf01182011-12-08 12:05:22 +05301417 case HUB_CHAR_COMMON_LPSM:
1418 dev_dbg(hub_dev, "ganged power switching\n");
1419 break;
1420 case HUB_CHAR_INDV_PORT_LPSM:
1421 dev_dbg(hub_dev, "individual port power switching\n");
1422 break;
1423 case HUB_CHAR_NO_LPSM:
1424 case HUB_CHAR_LPSM:
1425 dev_dbg(hub_dev, "no power switching (usb 1.0)\n");
1426 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427 }
1428
Greg Kroah-Hartman74ad9bd2005-06-20 21:15:16 -07001429 switch (wHubCharacteristics & HUB_CHAR_OCPM) {
Aman Deep7bf01182011-12-08 12:05:22 +05301430 case HUB_CHAR_COMMON_OCPM:
1431 dev_dbg(hub_dev, "global over-current protection\n");
1432 break;
1433 case HUB_CHAR_INDV_PORT_OCPM:
1434 dev_dbg(hub_dev, "individual port over-current protection\n");
1435 break;
1436 case HUB_CHAR_NO_OCPM:
1437 case HUB_CHAR_OCPM:
1438 dev_dbg(hub_dev, "no over-current protection\n");
1439 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 }
1441
1442 spin_lock_init (&hub->tt.lock);
1443 INIT_LIST_HEAD (&hub->tt.clear_list);
Alan Sterncb88a1b2009-06-29 10:43:32 -04001444 INIT_WORK(&hub->tt.clear_work, hub_tt_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 switch (hdev->descriptor.bDeviceProtocol) {
Aman Deep7bf01182011-12-08 12:05:22 +05301446 case USB_HUB_PR_FS:
1447 break;
1448 case USB_HUB_PR_HS_SINGLE_TT:
1449 dev_dbg(hub_dev, "Single TT\n");
1450 hub->tt.hub = hdev;
1451 break;
1452 case USB_HUB_PR_HS_MULTI_TT:
1453 ret = usb_set_interface(hdev, 0, 1);
1454 if (ret == 0) {
1455 dev_dbg(hub_dev, "TT per port\n");
1456 hub->tt.multi = 1;
1457 } else
1458 dev_err(hub_dev, "Using single TT (err %d)\n",
1459 ret);
1460 hub->tt.hub = hdev;
1461 break;
1462 case USB_HUB_PR_SS:
1463 /* USB 3.0 hubs don't have a TT */
1464 break;
1465 default:
1466 dev_dbg(hub_dev, "Unrecognized hub protocol %d\n",
1467 hdev->descriptor.bDeviceProtocol);
1468 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 }
1470
david-b@pacbell.nete09711a2005-08-13 18:41:04 -07001471 /* Note 8 FS bit times == (8 bits / 12000000 bps) ~= 666ns */
Greg Kroah-Hartman74ad9bd2005-06-20 21:15:16 -07001472 switch (wHubCharacteristics & HUB_CHAR_TTTT) {
david-b@pacbell.nete09711a2005-08-13 18:41:04 -07001473 case HUB_TTTT_8_BITS:
1474 if (hdev->descriptor.bDeviceProtocol != 0) {
1475 hub->tt.think_time = 666;
1476 dev_dbg(hub_dev, "TT requires at most %d "
1477 "FS bit times (%d ns)\n",
1478 8, hub->tt.think_time);
1479 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480 break;
david-b@pacbell.nete09711a2005-08-13 18:41:04 -07001481 case HUB_TTTT_16_BITS:
1482 hub->tt.think_time = 666 * 2;
1483 dev_dbg(hub_dev, "TT requires at most %d "
1484 "FS bit times (%d ns)\n",
1485 16, hub->tt.think_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 break;
david-b@pacbell.nete09711a2005-08-13 18:41:04 -07001487 case HUB_TTTT_24_BITS:
1488 hub->tt.think_time = 666 * 3;
1489 dev_dbg(hub_dev, "TT requires at most %d "
1490 "FS bit times (%d ns)\n",
1491 24, hub->tt.think_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 break;
david-b@pacbell.nete09711a2005-08-13 18:41:04 -07001493 case HUB_TTTT_32_BITS:
1494 hub->tt.think_time = 666 * 4;
1495 dev_dbg(hub_dev, "TT requires at most %d "
1496 "FS bit times (%d ns)\n",
1497 32, hub->tt.think_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 break;
1499 }
1500
1501 /* probe() zeroes hub->indicator[] */
Greg Kroah-Hartman74ad9bd2005-06-20 21:15:16 -07001502 if (wHubCharacteristics & HUB_CHAR_PORTIND) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 hub->has_indicators = 1;
1504 dev_dbg(hub_dev, "Port indicators are supported\n");
1505 }
1506
1507 dev_dbg(hub_dev, "power on to power good time: %dms\n",
1508 hub->descriptor->bPwrOn2PwrGood * 2);
1509
1510 /* power budgeting mostly matters with bus-powered hubs,
1511 * and battery-powered root hubs (may provide just 8 mA).
1512 */
1513 ret = usb_get_status(hdev, USB_RECIP_DEVICE, 0, &hubstatus);
Alan Stern55c52712005-11-23 12:03:12 -05001514 if (ret < 2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515 message = "can't get hub status";
1516 goto fail;
1517 }
Alan Stern7d35b922005-04-25 11:18:32 -04001518 le16_to_cpus(&hubstatus);
1519 if (hdev == hdev->bus->root_hub) {
Alan Stern55c52712005-11-23 12:03:12 -05001520 if (hdev->bus_mA == 0 || hdev->bus_mA >= 500)
1521 hub->mA_per_port = 500;
1522 else {
1523 hub->mA_per_port = hdev->bus_mA;
1524 hub->limited_power = 1;
1525 }
Alan Stern7d35b922005-04-25 11:18:32 -04001526 } else if ((hubstatus & (1 << USB_DEVICE_SELF_POWERED)) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527 dev_dbg(hub_dev, "hub controller current requirement: %dmA\n",
1528 hub->descriptor->bHubContrCurrent);
Alan Stern55c52712005-11-23 12:03:12 -05001529 hub->limited_power = 1;
1530 if (hdev->maxchild > 0) {
1531 int remaining = hdev->bus_mA -
1532 hub->descriptor->bHubContrCurrent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533
Alan Stern55c52712005-11-23 12:03:12 -05001534 if (remaining < hdev->maxchild * 100)
1535 dev_warn(hub_dev,
1536 "insufficient power available "
1537 "to use all downstream ports\n");
1538 hub->mA_per_port = 100; /* 7.2.1.1 */
1539 }
1540 } else { /* Self-powered external hub */
1541 /* FIXME: What about battery-powered external hubs that
1542 * provide less current per port? */
1543 hub->mA_per_port = 500;
1544 }
1545 if (hub->mA_per_port < 500)
1546 dev_dbg(hub_dev, "%umA bus power budget for each child\n",
1547 hub->mA_per_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548
Sarah Sharpb356b7c2009-09-04 10:53:24 -07001549 /* Update the HCD's internal representation of this hub before khubd
1550 * starts getting port status changes for devices under the hub.
1551 */
1552 hcd = bus_to_hcd(hdev->bus);
1553 if (hcd->driver->update_hub_device) {
1554 ret = hcd->driver->update_hub_device(hcd, hdev,
1555 &hub->tt, GFP_KERNEL);
1556 if (ret < 0) {
1557 message = "can't update HCD hub info";
1558 goto fail;
1559 }
1560 }
1561
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562 ret = hub_hub_status(hub, &hubstatus, &hubchange);
1563 if (ret < 0) {
1564 message = "can't get hub status";
1565 goto fail;
1566 }
1567
1568 /* local power status reports aren't always correct */
1569 if (hdev->actconfig->desc.bmAttributes & USB_CONFIG_ATT_SELFPOWER)
1570 dev_dbg(hub_dev, "local power source is %s\n",
1571 (hubstatus & HUB_STATUS_LOCAL_POWER)
1572 ? "lost (inactive)" : "good");
1573
Greg Kroah-Hartman74ad9bd2005-06-20 21:15:16 -07001574 if ((wHubCharacteristics & HUB_CHAR_OCPM) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 dev_dbg(hub_dev, "%sover-current condition exists\n",
1576 (hubstatus & HUB_STATUS_OVERCURRENT) ? "" : "no ");
1577
inaky@linux.intel.com88fafff2006-10-11 20:05:59 -07001578 /* set up the interrupt endpoint
1579 * We use the EP's maxpacket size instead of (PORTS+1+7)/8
1580 * bytes as USB2.0[11.12.3] says because some hubs are known
1581 * to send more data (and thus cause overflow). For root hubs,
1582 * maxpktsize is defined in hcd.c's fake endpoint descriptors
1583 * to be big enough for at least USB_MAXCHILDREN ports. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584 pipe = usb_rcvintpipe(hdev, endpoint->bEndpointAddress);
1585 maxp = usb_maxpacket(hdev, pipe, usb_pipeout(pipe));
1586
1587 if (maxp > sizeof(*hub->buffer))
1588 maxp = sizeof(*hub->buffer);
1589
1590 hub->urb = usb_alloc_urb(0, GFP_KERNEL);
1591 if (!hub->urb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 ret = -ENOMEM;
1593 goto fail;
1594 }
1595
1596 usb_fill_int_urb(hub->urb, hdev, pipe, *hub->buffer, maxp, hub_irq,
1597 hub, endpoint->bInterval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598
1599 /* maybe cycle the hub leds */
1600 if (hub->has_indicators && blinkenlights)
1601 hub->indicator [0] = INDICATOR_CYCLE;
1602
Lan Tianyufa2a9562012-09-05 13:44:31 +08001603 for (i = 0; i < hdev->maxchild; i++)
1604 if (usb_hub_create_port_device(hub, i + 1) < 0)
1605 dev_err(hub->intfdev,
1606 "couldn't create port%d device.\n", i + 1);
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);
Lan Tianyufa2a9562012-09-05 13:44:31 +08001632 int i;
1633
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
Alan Stern8b28c752005-08-10 17:04:13 -04001647 usb_set_intfdata (intf, NULL);
Alexander Shishkin1f2235b2012-09-12 14:48:31 +03001648
1649 for (i = 0; i < hdev->maxchild; i++)
1650 usb_hub_remove_port_device(hub, i + 1);
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001651 hub->hdev->maxchild = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652
Alan Sterne8054852007-05-04 11:55:11 -04001653 if (hub->hdev->speed == USB_SPEED_HIGH)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654 highspeed_hubs--;
1655
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 usb_free_urb(hub->urb);
Lan Tianyufa2a9562012-09-05 13:44:31 +08001657 kfree(hub->ports);
Jesper Juhl1bc3c9e2005-04-18 17:39:34 -07001658 kfree(hub->descriptor);
Jesper Juhl1bc3c9e2005-04-18 17:39:34 -07001659 kfree(hub->status);
Alan Sternd697cdd2009-10-27 15:18:46 -04001660 kfree(hub->buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661
Alan Sterne8054852007-05-04 11:55:11 -04001662 kref_put(&hub->kref, hub_release);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663}
1664
1665static int hub_probe(struct usb_interface *intf, const struct usb_device_id *id)
1666{
1667 struct usb_host_interface *desc;
1668 struct usb_endpoint_descriptor *endpoint;
1669 struct usb_device *hdev;
1670 struct usb_hub *hub;
1671
1672 desc = intf->cur_altsetting;
1673 hdev = interface_to_usbdev(intf);
1674
Ming Lei596d7892012-10-24 11:59:25 +08001675 /*
1676 * Set default autosuspend delay as 0 to speedup bus suspend,
1677 * based on the below considerations:
1678 *
1679 * - Unlike other drivers, the hub driver does not rely on the
1680 * autosuspend delay to provide enough time to handle a wakeup
1681 * event, and the submitted status URB is just to check future
1682 * change on hub downstream ports, so it is safe to do it.
1683 *
1684 * - The patch might cause one or more auto supend/resume for
1685 * below very rare devices when they are plugged into hub
1686 * first time:
1687 *
1688 * devices having trouble initializing, and disconnect
1689 * themselves from the bus and then reconnect a second
1690 * or so later
1691 *
1692 * devices just for downloading firmware, and disconnects
1693 * themselves after completing it
1694 *
1695 * For these quite rare devices, their drivers may change the
1696 * autosuspend delay of their parent hub in the probe() to one
1697 * appropriate value to avoid the subtle problem if someone
1698 * does care it.
1699 *
1700 * - The patch may cause one or more auto suspend/resume on
1701 * hub during running 'lsusb', but it is probably too
1702 * infrequent to worry about.
1703 *
1704 * - Change autosuspend delay of hub can avoid unnecessary auto
1705 * suspend timer for hub, also may decrease power consumption
1706 * of USB bus.
1707 */
1708 pm_runtime_set_autosuspend_delay(&hdev->dev, 0);
1709
Sarah Sharp2839f5b2012-01-06 16:27:25 -08001710 /* Hubs have proper suspend/resume support. */
1711 usb_enable_autosuspend(hdev);
Alan Stern088f7fe2010-01-08 12:56:54 -05001712
Felipe Balbi38f3ad52008-06-12 10:49:47 +03001713 if (hdev->level == MAX_TOPO_LEVEL) {
Wu Fengguangb9cef6c2008-12-15 15:32:01 +08001714 dev_err(&intf->dev,
1715 "Unsupported bus topology: hub nested too deep\n");
Felipe Balbi38f3ad52008-06-12 10:49:47 +03001716 return -E2BIG;
1717 }
1718
David Brownell89ccbdc2006-04-02 10:18:09 -08001719#ifdef CONFIG_USB_OTG_BLACKLIST_HUB
1720 if (hdev->parent) {
1721 dev_warn(&intf->dev, "ignoring external hub\n");
1722 return -ENODEV;
1723 }
1724#endif
1725
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726 /* Some hubs have a subclass of 1, which AFAICT according to the */
1727 /* specs is not defined, but it works */
1728 if ((desc->desc.bInterfaceSubClass != 0) &&
1729 (desc->desc.bInterfaceSubClass != 1)) {
1730descriptor_error:
1731 dev_err (&intf->dev, "bad descriptor, ignoring hub\n");
1732 return -EIO;
1733 }
1734
1735 /* Multiple endpoints? What kind of mutant ninja-hub is this? */
1736 if (desc->desc.bNumEndpoints != 1)
1737 goto descriptor_error;
1738
1739 endpoint = &desc->endpoint[0].desc;
1740
Luiz Fernando N. Capitulinofbf81c22006-09-27 11:58:53 -07001741 /* If it's not an interrupt in endpoint, we'd better punt! */
1742 if (!usb_endpoint_is_int_in(endpoint))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 goto descriptor_error;
1744
1745 /* We found a hub */
1746 dev_info (&intf->dev, "USB hub found\n");
1747
Alan Stern0a1ef3b2005-10-24 15:38:24 -04001748 hub = kzalloc(sizeof(*hub), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749 if (!hub) {
1750 dev_dbg (&intf->dev, "couldn't kmalloc hub struct\n");
1751 return -ENOMEM;
1752 }
1753
Alan Sterne8054852007-05-04 11:55:11 -04001754 kref_init(&hub->kref);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 INIT_LIST_HEAD(&hub->event_list);
1756 hub->intfdev = &intf->dev;
1757 hub->hdev = hdev;
David Howellsc4028952006-11-22 14:57:56 +00001758 INIT_DELAYED_WORK(&hub->leds, led_work);
Alan Stern8520f382008-09-22 14:44:26 -04001759 INIT_DELAYED_WORK(&hub->init_work, NULL);
Alan Sterne8054852007-05-04 11:55:11 -04001760 usb_get_intf(intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761
1762 usb_set_intfdata (intf, hub);
Alan Stern40f122f2006-11-09 14:44:33 -05001763 intf->needs_remote_wakeup = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764
1765 if (hdev->speed == USB_SPEED_HIGH)
1766 highspeed_hubs++;
1767
Ming Leie6f30de2012-10-24 11:59:24 +08001768 if (id->driver_info & HUB_QUIRK_CHECK_PORT_AUTOSUSPEND)
1769 hub->quirk_check_port_auto_suspend = 1;
1770
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771 if (hub_configure(hub, endpoint) >= 0)
1772 return 0;
1773
1774 hub_disconnect (intf);
1775 return -ENODEV;
1776}
1777
1778static int
1779hub_ioctl(struct usb_interface *intf, unsigned int code, void *user_data)
1780{
1781 struct usb_device *hdev = interface_to_usbdev (intf);
Lan Tianyuff823c792012-09-05 13:44:32 +08001782 struct usb_hub *hub = hdev_to_hub(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783
1784 /* assert ifno == 0 (part of hub spec) */
1785 switch (code) {
1786 case USBDEVFS_HUB_PORTINFO: {
1787 struct usbdevfs_hub_portinfo *info = user_data;
1788 int i;
1789
1790 spin_lock_irq(&device_state_lock);
1791 if (hdev->devnum <= 0)
1792 info->nports = 0;
1793 else {
1794 info->nports = hdev->maxchild;
1795 for (i = 0; i < info->nports; i++) {
Lan Tianyuff823c792012-09-05 13:44:32 +08001796 if (hub->ports[i]->child == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 info->port[i] = 0;
1798 else
1799 info->port[i] =
Lan Tianyuff823c792012-09-05 13:44:32 +08001800 hub->ports[i]->child->devnum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801 }
1802 }
1803 spin_unlock_irq(&device_state_lock);
1804
1805 return info->nports + 1;
1806 }
1807
1808 default:
1809 return -ENOSYS;
1810 }
1811}
1812
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001813/*
1814 * Allow user programs to claim ports on a hub. When a device is attached
1815 * to one of these "claimed" ports, the program will "own" the device.
1816 */
1817static int find_port_owner(struct usb_device *hdev, unsigned port1,
Lan Tianyu336c5c32012-07-06 14:13:52 +08001818 struct dev_state ***ppowner)
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001819{
1820 if (hdev->state == USB_STATE_NOTATTACHED)
1821 return -ENODEV;
1822 if (port1 == 0 || port1 > hdev->maxchild)
1823 return -EINVAL;
1824
1825 /* This assumes that devices not managed by the hub driver
1826 * will always have maxchild equal to 0.
1827 */
Lan Tianyufa2a9562012-09-05 13:44:31 +08001828 *ppowner = &(hdev_to_hub(hdev)->ports[port1 - 1]->port_owner);
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001829 return 0;
1830}
1831
1832/* In the following three functions, the caller must hold hdev's lock */
Lan Tianyu336c5c32012-07-06 14:13:52 +08001833int usb_hub_claim_port(struct usb_device *hdev, unsigned port1,
1834 struct dev_state *owner)
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001835{
1836 int rc;
Lan Tianyu336c5c32012-07-06 14:13:52 +08001837 struct dev_state **powner;
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001838
1839 rc = find_port_owner(hdev, port1, &powner);
1840 if (rc)
1841 return rc;
1842 if (*powner)
1843 return -EBUSY;
1844 *powner = owner;
1845 return rc;
1846}
1847
Lan Tianyu336c5c32012-07-06 14:13:52 +08001848int usb_hub_release_port(struct usb_device *hdev, unsigned port1,
1849 struct dev_state *owner)
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001850{
1851 int rc;
Lan Tianyu336c5c32012-07-06 14:13:52 +08001852 struct dev_state **powner;
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001853
1854 rc = find_port_owner(hdev, port1, &powner);
1855 if (rc)
1856 return rc;
1857 if (*powner != owner)
1858 return -ENOENT;
1859 *powner = NULL;
1860 return rc;
1861}
1862
Lan Tianyu336c5c32012-07-06 14:13:52 +08001863void usb_hub_release_all_ports(struct usb_device *hdev, struct dev_state *owner)
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001864{
Lan Tianyufa2a9562012-09-05 13:44:31 +08001865 struct usb_hub *hub = hdev_to_hub(hdev);
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001866 int n;
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001867
Lan Tianyufa2a9562012-09-05 13:44:31 +08001868 for (n = 0; n < hdev->maxchild; n++) {
1869 if (hub->ports[n]->port_owner == owner)
1870 hub->ports[n]->port_owner = NULL;
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001871 }
Lan Tianyufa2a9562012-09-05 13:44:31 +08001872
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001873}
1874
1875/* The caller must hold udev's lock */
1876bool usb_device_is_owned(struct usb_device *udev)
1877{
1878 struct usb_hub *hub;
1879
1880 if (udev->state == USB_STATE_NOTATTACHED || !udev->parent)
1881 return false;
1882 hub = hdev_to_hub(udev->parent);
Lan Tianyufa2a9562012-09-05 13:44:31 +08001883 return !!hub->ports[udev->portnum - 1]->port_owner;
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001884}
1885
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886static void recursively_mark_NOTATTACHED(struct usb_device *udev)
1887{
Lan Tianyuff823c792012-09-05 13:44:32 +08001888 struct usb_hub *hub = hdev_to_hub(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889 int i;
1890
1891 for (i = 0; i < udev->maxchild; ++i) {
Lan Tianyuff823c792012-09-05 13:44:32 +08001892 if (hub->ports[i]->child)
1893 recursively_mark_NOTATTACHED(hub->ports[i]->child);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894 }
Alan Stern9bbdf1e2010-01-08 12:57:28 -05001895 if (udev->state == USB_STATE_SUSPENDED)
Sarah Sharp15123002007-12-21 16:54:15 -08001896 udev->active_duration -= jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897 udev->state = USB_STATE_NOTATTACHED;
1898}
1899
1900/**
1901 * usb_set_device_state - change a device's current state (usbcore, hcds)
1902 * @udev: pointer to device whose state should be changed
1903 * @new_state: new state value to be stored
1904 *
1905 * udev->state is _not_ fully protected by the device lock. Although
1906 * most transitions are made only while holding the lock, the state can
1907 * can change to USB_STATE_NOTATTACHED at almost any time. This
1908 * is so that devices can be marked as disconnected as soon as possible,
1909 * without having to wait for any semaphores to be released. As a result,
1910 * all changes to any device's state must be protected by the
1911 * device_state_lock spinlock.
1912 *
1913 * Once a device has been added to the device tree, all changes to its state
1914 * should be made using this routine. The state should _not_ be set directly.
1915 *
1916 * If udev->state is already USB_STATE_NOTATTACHED then no change is made.
1917 * Otherwise udev->state is set to new_state, and if new_state is
1918 * USB_STATE_NOTATTACHED then all of udev's descendants' states are also set
1919 * to USB_STATE_NOTATTACHED.
1920 */
1921void usb_set_device_state(struct usb_device *udev,
1922 enum usb_device_state new_state)
1923{
1924 unsigned long flags;
Rafael J. Wysocki4681b172011-02-08 23:25:48 +01001925 int wakeup = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926
1927 spin_lock_irqsave(&device_state_lock, flags);
1928 if (udev->state == USB_STATE_NOTATTACHED)
1929 ; /* do nothing */
David Brownellb94dc6b2005-09-12 19:39:39 -07001930 else if (new_state != USB_STATE_NOTATTACHED) {
David Brownellfb669cc2006-01-24 08:40:27 -08001931
1932 /* root hub wakeup capabilities are managed out-of-band
1933 * and may involve silicon errata ... ignore them here.
1934 */
1935 if (udev->parent) {
Alan Stern645daaa2006-08-30 15:47:02 -04001936 if (udev->state == USB_STATE_SUSPENDED
1937 || new_state == USB_STATE_SUSPENDED)
1938 ; /* No change to wakeup settings */
1939 else if (new_state == USB_STATE_CONFIGURED)
Rafael J. Wysocki4681b172011-02-08 23:25:48 +01001940 wakeup = udev->actconfig->desc.bmAttributes
1941 & USB_CONFIG_ATT_WAKEUP;
Alan Stern645daaa2006-08-30 15:47:02 -04001942 else
Rafael J. Wysocki4681b172011-02-08 23:25:48 +01001943 wakeup = 0;
David Brownellfb669cc2006-01-24 08:40:27 -08001944 }
Sarah Sharp15123002007-12-21 16:54:15 -08001945 if (udev->state == USB_STATE_SUSPENDED &&
1946 new_state != USB_STATE_SUSPENDED)
1947 udev->active_duration -= jiffies;
1948 else if (new_state == USB_STATE_SUSPENDED &&
1949 udev->state != USB_STATE_SUSPENDED)
1950 udev->active_duration += jiffies;
Alan Stern645daaa2006-08-30 15:47:02 -04001951 udev->state = new_state;
David Brownellb94dc6b2005-09-12 19:39:39 -07001952 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953 recursively_mark_NOTATTACHED(udev);
1954 spin_unlock_irqrestore(&device_state_lock, flags);
Rafael J. Wysocki4681b172011-02-08 23:25:48 +01001955 if (wakeup >= 0)
1956 device_set_wakeup_capable(&udev->dev, wakeup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957}
David Vrabel6da9c992009-02-18 14:43:47 +00001958EXPORT_SYMBOL_GPL(usb_set_device_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959
Inaky Perez-Gonzalez8af548d2008-04-08 13:24:46 -07001960/*
Alan Stern3b29b682011-02-22 09:53:41 -05001961 * Choose a device number.
1962 *
1963 * Device numbers are used as filenames in usbfs. On USB-1.1 and
1964 * USB-2.0 buses they are also used as device addresses, however on
1965 * USB-3.0 buses the address is assigned by the controller hardware
1966 * and it usually is not the same as the device number.
1967 *
Inaky Perez-Gonzalez8af548d2008-04-08 13:24:46 -07001968 * WUSB devices are simple: they have no hubs behind, so the mapping
1969 * device <-> virtual port number becomes 1:1. Why? to simplify the
1970 * life of the device connection logic in
1971 * drivers/usb/wusbcore/devconnect.c. When we do the initial secret
1972 * handshake we need to assign a temporary address in the unauthorized
1973 * space. For simplicity we use the first virtual port number found to
1974 * be free [drivers/usb/wusbcore/devconnect.c:wusbhc_devconnect_ack()]
1975 * and that becomes it's address [X < 128] or its unauthorized address
1976 * [X | 0x80].
1977 *
1978 * We add 1 as an offset to the one-based USB-stack port number
1979 * (zero-based wusb virtual port index) for two reasons: (a) dev addr
1980 * 0 is reserved by USB for default address; (b) Linux's USB stack
1981 * uses always #1 for the root hub of the controller. So USB stack's
1982 * port #1, which is wusb virtual-port #0 has address #2.
Sarah Sharpc6515272009-04-27 19:57:26 -07001983 *
1984 * Devices connected under xHCI are not as simple. The host controller
1985 * supports virtualization, so the hardware assigns device addresses and
1986 * the HCD must setup data structures before issuing a set address
1987 * command to the hardware.
Inaky Perez-Gonzalez8af548d2008-04-08 13:24:46 -07001988 */
Alan Stern3b29b682011-02-22 09:53:41 -05001989static void choose_devnum(struct usb_device *udev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990{
1991 int devnum;
1992 struct usb_bus *bus = udev->bus;
1993
1994 /* If khubd ever becomes multithreaded, this will need a lock */
Inaky Perez-Gonzalez8af548d2008-04-08 13:24:46 -07001995 if (udev->wusb) {
1996 devnum = udev->portnum + 1;
1997 BUG_ON(test_bit(devnum, bus->devmap.devicemap));
1998 } else {
1999 /* Try to allocate the next devnum beginning at
2000 * bus->devnum_next. */
2001 devnum = find_next_zero_bit(bus->devmap.devicemap, 128,
2002 bus->devnum_next);
2003 if (devnum >= 128)
2004 devnum = find_next_zero_bit(bus->devmap.devicemap,
2005 128, 1);
2006 bus->devnum_next = ( devnum >= 127 ? 1 : devnum + 1);
2007 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008 if (devnum < 128) {
2009 set_bit(devnum, bus->devmap.devicemap);
2010 udev->devnum = devnum;
2011 }
2012}
2013
Alan Stern3b29b682011-02-22 09:53:41 -05002014static void release_devnum(struct usb_device *udev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015{
2016 if (udev->devnum > 0) {
2017 clear_bit(udev->devnum, udev->bus->devmap.devicemap);
2018 udev->devnum = -1;
2019 }
2020}
2021
Alan Stern3b29b682011-02-22 09:53:41 -05002022static void update_devnum(struct usb_device *udev, int devnum)
David Vrabel4953d142008-04-08 13:24:46 -07002023{
2024 /* The address for a WUSB device is managed by wusbcore. */
2025 if (!udev->wusb)
2026 udev->devnum = devnum;
2027}
2028
Herbert Xuf7410ce2010-01-10 20:15:03 +11002029static void hub_free_dev(struct usb_device *udev)
2030{
2031 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
2032
2033 /* Root hubs aren't real devices, so don't free HCD resources */
2034 if (hcd->driver->free_dev && udev->parent)
2035 hcd->driver->free_dev(hcd, udev);
2036}
2037
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038/**
2039 * usb_disconnect - disconnect a device (usbcore-internal)
2040 * @pdev: pointer to device being disconnected
2041 * Context: !in_interrupt ()
2042 *
2043 * Something got disconnected. Get rid of it and all of its children.
2044 *
2045 * If *pdev is a normal device then the parent hub must already be locked.
2046 * If *pdev is a root hub then this routine will acquire the
2047 * usb_bus_list_lock on behalf of the caller.
2048 *
2049 * Only hub drivers (including virtual root hub drivers for host
2050 * controllers) should ever call this.
2051 *
2052 * This call is synchronous, and may not be used in an interrupt context.
2053 */
2054void usb_disconnect(struct usb_device **pdev)
2055{
2056 struct usb_device *udev = *pdev;
Lan Tianyuff823c792012-09-05 13:44:32 +08002057 struct usb_hub *hub = hdev_to_hub(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058 int i;
2059
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060 /* mark the device as inactive, so any further urb submissions for
2061 * this device (and any of its children) will fail immediately.
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002062 * this quiesces everything except pending urbs.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063 */
2064 usb_set_device_state(udev, USB_STATE_NOTATTACHED);
Alan Stern3b29b682011-02-22 09:53:41 -05002065 dev_info(&udev->dev, "USB disconnect, device number %d\n",
2066 udev->devnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067
Alan Stern9ad3d6c2005-11-17 17:10:32 -05002068 usb_lock_device(udev);
2069
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070 /* Free up all the children before we remove this device */
Huajun Li88162302012-03-12 21:00:19 +08002071 for (i = 0; i < udev->maxchild; i++) {
Lan Tianyuff823c792012-09-05 13:44:32 +08002072 if (hub->ports[i]->child)
2073 usb_disconnect(&hub->ports[i]->child);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074 }
2075
2076 /* deallocate hcd/hardware state ... nuking all pending urbs and
2077 * cleaning up all state associated with the current configuration
2078 * so that the hardware is now fully quiesced.
2079 */
Alan Stern782da722006-07-01 22:09:35 -04002080 dev_dbg (&udev->dev, "unregistering device\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081 usb_disable_device(udev, 0);
Alan Sterncde217a2008-10-21 15:28:46 -04002082 usb_hcd_synchronize_unlinks(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083
Alan Stern3b23dd62008-12-05 14:10:34 -05002084 usb_remove_ep_devs(&udev->ep0);
Alan Stern782da722006-07-01 22:09:35 -04002085 usb_unlock_device(udev);
Greg Kroah-Hartman3099e752005-06-20 21:15:16 -07002086
Alan Stern782da722006-07-01 22:09:35 -04002087 /* Unregister the device. The device driver is responsible
Alan Stern3b23dd62008-12-05 14:10:34 -05002088 * for de-configuring the device and invoking the remove-device
2089 * notifier chain (used by usbfs and possibly others).
Alan Stern782da722006-07-01 22:09:35 -04002090 */
2091 device_del(&udev->dev);
2092
2093 /* Free the device number and delete the parent's children[]
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094 * (or root_hub) pointer.
2095 */
Alan Stern3b29b682011-02-22 09:53:41 -05002096 release_devnum(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097
2098 /* Avoid races with recursively_mark_NOTATTACHED() */
2099 spin_lock_irq(&device_state_lock);
2100 *pdev = NULL;
2101 spin_unlock_irq(&device_state_lock);
2102
Herbert Xuf7410ce2010-01-10 20:15:03 +11002103 hub_free_dev(udev);
2104
Alan Stern782da722006-07-01 22:09:35 -04002105 put_device(&udev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106}
2107
Greg Kroah-Hartmanf2a383e2007-11-26 22:11:55 -08002108#ifdef CONFIG_USB_ANNOUNCE_NEW_DEVICES
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109static void show_string(struct usb_device *udev, char *id, char *string)
2110{
2111 if (!string)
2112 return;
Joe Perchesf2ec5222012-10-28 01:05:51 -07002113 dev_info(&udev->dev, "%s: %s\n", id, string);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114}
2115
Greg Kroah-Hartmanf2a383e2007-11-26 22:11:55 -08002116static void announce_device(struct usb_device *udev)
2117{
2118 dev_info(&udev->dev, "New USB device found, idVendor=%04x, idProduct=%04x\n",
2119 le16_to_cpu(udev->descriptor.idVendor),
2120 le16_to_cpu(udev->descriptor.idProduct));
Wu Fengguangb9cef6c2008-12-15 15:32:01 +08002121 dev_info(&udev->dev,
2122 "New USB device strings: Mfr=%d, Product=%d, SerialNumber=%d\n",
Greg Kroah-Hartmanf2a383e2007-11-26 22:11:55 -08002123 udev->descriptor.iManufacturer,
2124 udev->descriptor.iProduct,
2125 udev->descriptor.iSerialNumber);
2126 show_string(udev, "Product", udev->product);
2127 show_string(udev, "Manufacturer", udev->manufacturer);
2128 show_string(udev, "SerialNumber", udev->serial);
2129}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130#else
Greg Kroah-Hartmanf2a383e2007-11-26 22:11:55 -08002131static inline void announce_device(struct usb_device *udev) { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132#endif
2133
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134#ifdef CONFIG_USB_OTG
2135#include "otg_whitelist.h"
2136#endif
2137
Oliver Neukum3ede7602007-01-11 14:35:50 +01002138/**
Alan Stern8d8558d2009-12-08 15:50:41 -05002139 * usb_enumerate_device_otg - FIXME (usbcore-internal)
Oliver Neukum3ede7602007-01-11 14:35:50 +01002140 * @udev: newly addressed device (in ADDRESS state)
2141 *
Alan Stern8d8558d2009-12-08 15:50:41 -05002142 * Finish enumeration for On-The-Go devices
Oliver Neukum3ede7602007-01-11 14:35:50 +01002143 */
Alan Stern8d8558d2009-12-08 15:50:41 -05002144static int usb_enumerate_device_otg(struct usb_device *udev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145{
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07002146 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147
2148#ifdef CONFIG_USB_OTG
2149 /*
2150 * OTG-aware devices on OTG-capable root hubs may be able to use SRP,
2151 * to wake us after we've powered off VBUS; and HNP, switching roles
2152 * "host" to "peripheral". The OTG descriptor helps figure this out.
2153 */
2154 if (!udev->bus->is_b_host
2155 && udev->config
2156 && udev->parent == udev->bus->root_hub) {
Felipe Balbi2eb50522009-12-04 15:47:43 +02002157 struct usb_otg_descriptor *desc = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158 struct usb_bus *bus = udev->bus;
2159
2160 /* descriptor may appear anywhere in config */
2161 if (__usb_get_extra_descriptor (udev->rawdescriptors[0],
2162 le16_to_cpu(udev->config[0].desc.wTotalLength),
2163 USB_DT_OTG, (void **) &desc) == 0) {
2164 if (desc->bmAttributes & USB_OTG_HNP) {
Alan Stern12c3da32005-11-23 12:09:52 -05002165 unsigned port1 = udev->portnum;
David Brownellfc849b82006-09-18 16:53:26 -07002166
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167 dev_info(&udev->dev,
2168 "Dual-Role OTG device on %sHNP port\n",
2169 (port1 == bus->otg_port)
2170 ? "" : "non-");
2171
2172 /* enable HNP before suspend, it's simpler */
2173 if (port1 == bus->otg_port)
2174 bus->b_hnp_enable = 1;
2175 err = usb_control_msg(udev,
2176 usb_sndctrlpipe(udev, 0),
2177 USB_REQ_SET_FEATURE, 0,
2178 bus->b_hnp_enable
2179 ? USB_DEVICE_B_HNP_ENABLE
2180 : USB_DEVICE_A_ALT_HNP_SUPPORT,
2181 0, NULL, 0, USB_CTRL_SET_TIMEOUT);
2182 if (err < 0) {
2183 /* OTG MESSAGE: report errors here,
2184 * customize to match your product.
2185 */
2186 dev_info(&udev->dev,
Wu Fengguangb9cef6c2008-12-15 15:32:01 +08002187 "can't set HNP mode: %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188 err);
2189 bus->b_hnp_enable = 0;
2190 }
2191 }
2192 }
2193 }
2194
2195 if (!is_targeted(udev)) {
2196
2197 /* Maybe it can talk to us, though we can't talk to it.
2198 * (Includes HNP test device.)
2199 */
2200 if (udev->bus->b_hnp_enable || udev->bus->is_b_host) {
David Brownell634a84f2009-01-15 13:51:28 -08002201 err = usb_port_suspend(udev, PMSG_SUSPEND);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202 if (err < 0)
2203 dev_dbg(&udev->dev, "HNP fail, %d\n", err);
2204 }
Vikram Panditaffcdc182007-05-25 21:31:07 -07002205 err = -ENOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206 goto fail;
2207 }
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07002208fail:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209#endif
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07002210 return err;
2211}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07002213
2214/**
Alan Stern8d8558d2009-12-08 15:50:41 -05002215 * usb_enumerate_device - Read device configs/intfs/otg (usbcore-internal)
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07002216 * @udev: newly addressed device (in ADDRESS state)
2217 *
2218 * This is only called by usb_new_device() and usb_authorize_device()
2219 * and FIXME -- all comments that apply to them apply here wrt to
2220 * environment.
2221 *
2222 * If the device is WUSB and not authorized, we don't attempt to read
2223 * the string descriptors, as they will be errored out by the device
2224 * until it has been authorized.
2225 */
Alan Stern8d8558d2009-12-08 15:50:41 -05002226static int usb_enumerate_device(struct usb_device *udev)
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07002227{
2228 int err;
2229
2230 if (udev->config == NULL) {
2231 err = usb_get_configuration(udev);
2232 if (err < 0) {
2233 dev_err(&udev->dev, "can't read configurations, error %d\n",
2234 err);
Laurent Pinchart80da2e02012-07-19 12:39:13 +02002235 return err;
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07002236 }
2237 }
2238 if (udev->wusb == 1 && udev->authorized == 0) {
2239 udev->product = kstrdup("n/a (unauthorized)", GFP_KERNEL);
2240 udev->manufacturer = kstrdup("n/a (unauthorized)", GFP_KERNEL);
2241 udev->serial = kstrdup("n/a (unauthorized)", GFP_KERNEL);
2242 }
2243 else {
2244 /* read the standard strings and cache them if present */
2245 udev->product = usb_cache_string(udev, udev->descriptor.iProduct);
2246 udev->manufacturer = usb_cache_string(udev,
2247 udev->descriptor.iManufacturer);
2248 udev->serial = usb_cache_string(udev, udev->descriptor.iSerialNumber);
2249 }
Alan Stern8d8558d2009-12-08 15:50:41 -05002250 err = usb_enumerate_device_otg(udev);
Laurent Pinchart80da2e02012-07-19 12:39:13 +02002251 if (err < 0)
2252 return err;
2253
2254 usb_detect_interface_quirks(udev);
2255
2256 return 0;
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07002257}
2258
Matthew Garrettd35e70d2012-02-03 17:11:55 -05002259static void set_usb_port_removable(struct usb_device *udev)
2260{
2261 struct usb_device *hdev = udev->parent;
2262 struct usb_hub *hub;
2263 u8 port = udev->portnum;
2264 u16 wHubCharacteristics;
2265 bool removable = true;
2266
2267 if (!hdev)
2268 return;
2269
2270 hub = hdev_to_hub(udev->parent);
2271
2272 wHubCharacteristics = le16_to_cpu(hub->descriptor->wHubCharacteristics);
2273
2274 if (!(wHubCharacteristics & HUB_CHAR_COMPOUND))
2275 return;
2276
2277 if (hub_is_superspeed(hdev)) {
Lan Tianyuca3c1532012-09-11 04:22:36 +08002278 if (le16_to_cpu(hub->descriptor->u.ss.DeviceRemovable)
2279 & (1 << port))
Matthew Garrettd35e70d2012-02-03 17:11:55 -05002280 removable = false;
2281 } else {
2282 if (hub->descriptor->u.hs.DeviceRemovable[port / 8] & (1 << (port % 8)))
2283 removable = false;
2284 }
2285
2286 if (removable)
2287 udev->removable = USB_DEVICE_REMOVABLE;
2288 else
2289 udev->removable = USB_DEVICE_FIXED;
2290}
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07002291
2292/**
2293 * usb_new_device - perform initial device setup (usbcore-internal)
2294 * @udev: newly addressed device (in ADDRESS state)
2295 *
Alan Stern8d8558d2009-12-08 15:50:41 -05002296 * This is called with devices which have been detected but not fully
2297 * enumerated. The device descriptor is available, but not descriptors
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07002298 * for any device configuration. The caller must have locked either
2299 * the parent hub (if udev is a normal device) or else the
2300 * usb_bus_list_lock (if udev is a root hub). The parent's pointer to
2301 * udev has already been installed, but udev is not yet visible through
2302 * sysfs or other filesystem code.
2303 *
2304 * It will return if the device is configured properly or not. Zero if
2305 * the interface was registered with the driver core; else a negative
2306 * errno value.
2307 *
2308 * This call is synchronous, and may not be used in an interrupt context.
2309 *
2310 * Only the hub driver or root-hub registrar should ever call this.
2311 */
2312int usb_new_device(struct usb_device *udev)
2313{
2314 int err;
2315
Dan Streetman16985402010-01-06 09:56:53 -05002316 if (udev->parent) {
Dan Streetman16985402010-01-06 09:56:53 -05002317 /* Initialize non-root-hub device wakeup to disabled;
2318 * device (un)configuration controls wakeup capable
2319 * sysfs power/wakeup controls wakeup enabled/disabled
2320 */
2321 device_init_wakeup(&udev->dev, 0);
Dan Streetman16985402010-01-06 09:56:53 -05002322 }
2323
Alan Stern9bbdf1e2010-01-08 12:57:28 -05002324 /* Tell the runtime-PM framework the device is active */
2325 pm_runtime_set_active(&udev->dev);
Alan Sternc08512c2010-11-15 15:57:58 -05002326 pm_runtime_get_noresume(&udev->dev);
Alan Sternfcc4a012010-11-15 15:57:51 -05002327 pm_runtime_use_autosuspend(&udev->dev);
Alan Stern9bbdf1e2010-01-08 12:57:28 -05002328 pm_runtime_enable(&udev->dev);
2329
Alan Sternc08512c2010-11-15 15:57:58 -05002330 /* By default, forbid autosuspend for all devices. It will be
2331 * allowed for hubs during binding.
2332 */
2333 usb_disable_autosuspend(udev);
2334
Alan Stern8d8558d2009-12-08 15:50:41 -05002335 err = usb_enumerate_device(udev); /* Read descriptors */
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07002336 if (err < 0)
2337 goto fail;
Sarah Sharpc6515272009-04-27 19:57:26 -07002338 dev_dbg(&udev->dev, "udev %d, busnum %d, minor = %d\n",
2339 udev->devnum, udev->bus->busnum,
2340 (((udev->bus->busnum-1) * 128) + (udev->devnum-1)));
Kay Sievers9f8b17e2007-03-13 15:59:31 +01002341 /* export the usbdev device-node for libusb */
2342 udev->dev.devt = MKDEV(USB_DEVICE_MAJOR,
2343 (((udev->bus->busnum-1) * 128) + (udev->devnum-1)));
2344
Alan Stern6cd13202008-11-13 15:08:30 -05002345 /* Tell the world! */
2346 announce_device(udev);
Alan Stern195af2c2007-07-16 15:28:19 -04002347
Theodore Ts'ob04b3152012-07-04 11:22:20 -04002348 if (udev->serial)
2349 add_device_randomness(udev->serial, strlen(udev->serial));
2350 if (udev->product)
2351 add_device_randomness(udev->product, strlen(udev->product));
2352 if (udev->manufacturer)
2353 add_device_randomness(udev->manufacturer,
2354 strlen(udev->manufacturer));
2355
Rafael J. Wysocki927bc912010-02-08 19:18:16 +01002356 device_enable_async_suspend(&udev->dev);
Matthew Garrettd35e70d2012-02-03 17:11:55 -05002357
2358 /*
2359 * check whether the hub marks this port as non-removable. Do it
2360 * now so that platform-specific data can override it in
2361 * device_add()
2362 */
2363 if (udev->parent)
2364 set_usb_port_removable(udev);
2365
Alan Stern782da722006-07-01 22:09:35 -04002366 /* Register the device. The device driver is responsible
Alan Stern3b23dd62008-12-05 14:10:34 -05002367 * for configuring the device and invoking the add-device
2368 * notifier chain (used by usbfs and possibly others).
Alan Stern782da722006-07-01 22:09:35 -04002369 */
Kay Sievers9f8b17e2007-03-13 15:59:31 +01002370 err = device_add(&udev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371 if (err) {
2372 dev_err(&udev->dev, "can't device_add, error %d\n", err);
2373 goto fail;
2374 }
Alan Stern9ad3d6c2005-11-17 17:10:32 -05002375
Alan Stern3b23dd62008-12-05 14:10:34 -05002376 (void) usb_create_ep_devs(&udev->dev, &udev->ep0, udev);
Alan Sternc08512c2010-11-15 15:57:58 -05002377 usb_mark_last_busy(udev);
2378 pm_runtime_put_sync_autosuspend(&udev->dev);
Greg Kroah-Hartmanc0664752006-08-11 01:55:12 -07002379 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380
2381fail:
2382 usb_set_device_state(udev, USB_STATE_NOTATTACHED);
Alan Stern9bbdf1e2010-01-08 12:57:28 -05002383 pm_runtime_disable(&udev->dev);
2384 pm_runtime_set_suspended(&udev->dev);
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07002385 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386}
2387
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002388
2389/**
Randy Dunlapfd39c862007-10-15 17:30:02 -07002390 * usb_deauthorize_device - deauthorize a device (usbcore-internal)
2391 * @usb_dev: USB device
2392 *
2393 * Move the USB device to a very basic state where interfaces are disabled
2394 * and the device is in fact unconfigured and unusable.
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002395 *
2396 * We share a lock (that we have) with device_del(), so we need to
2397 * defer its call.
2398 */
2399int usb_deauthorize_device(struct usb_device *usb_dev)
2400{
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002401 usb_lock_device(usb_dev);
2402 if (usb_dev->authorized == 0)
2403 goto out_unauthorized;
Alan Sternda307122009-12-08 15:54:44 -05002404
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002405 usb_dev->authorized = 0;
2406 usb_set_configuration(usb_dev, -1);
Alan Sternda307122009-12-08 15:54:44 -05002407
2408 kfree(usb_dev->product);
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002409 usb_dev->product = kstrdup("n/a (unauthorized)", GFP_KERNEL);
Alan Sternda307122009-12-08 15:54:44 -05002410 kfree(usb_dev->manufacturer);
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002411 usb_dev->manufacturer = kstrdup("n/a (unauthorized)", GFP_KERNEL);
Alan Sternda307122009-12-08 15:54:44 -05002412 kfree(usb_dev->serial);
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002413 usb_dev->serial = kstrdup("n/a (unauthorized)", GFP_KERNEL);
Alan Sternda307122009-12-08 15:54:44 -05002414
2415 usb_destroy_configuration(usb_dev);
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002416 usb_dev->descriptor.bNumConfigurations = 0;
Alan Sternda307122009-12-08 15:54:44 -05002417
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002418out_unauthorized:
2419 usb_unlock_device(usb_dev);
2420 return 0;
2421}
2422
2423
2424int usb_authorize_device(struct usb_device *usb_dev)
2425{
2426 int result = 0, c;
Alan Sternda307122009-12-08 15:54:44 -05002427
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002428 usb_lock_device(usb_dev);
2429 if (usb_dev->authorized == 1)
2430 goto out_authorized;
Alan Sternda307122009-12-08 15:54:44 -05002431
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002432 result = usb_autoresume_device(usb_dev);
2433 if (result < 0) {
2434 dev_err(&usb_dev->dev,
2435 "can't autoresume for authorization: %d\n", result);
2436 goto error_autoresume;
2437 }
2438 result = usb_get_device_descriptor(usb_dev, sizeof(usb_dev->descriptor));
2439 if (result < 0) {
2440 dev_err(&usb_dev->dev, "can't re-read device descriptor for "
2441 "authorization: %d\n", result);
2442 goto error_device_descriptor;
2443 }
Alan Sternda307122009-12-08 15:54:44 -05002444
2445 kfree(usb_dev->product);
2446 usb_dev->product = NULL;
2447 kfree(usb_dev->manufacturer);
2448 usb_dev->manufacturer = NULL;
2449 kfree(usb_dev->serial);
2450 usb_dev->serial = NULL;
2451
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002452 usb_dev->authorized = 1;
Alan Stern8d8558d2009-12-08 15:50:41 -05002453 result = usb_enumerate_device(usb_dev);
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002454 if (result < 0)
Alan Stern8d8558d2009-12-08 15:50:41 -05002455 goto error_enumerate;
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002456 /* Choose and set the configuration. This registers the interfaces
2457 * with the driver core and lets interface drivers bind to them.
2458 */
Greg Kroah-Hartmanb5ea0602007-08-02 22:44:27 -06002459 c = usb_choose_configuration(usb_dev);
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002460 if (c >= 0) {
2461 result = usb_set_configuration(usb_dev, c);
2462 if (result) {
2463 dev_err(&usb_dev->dev,
2464 "can't set config #%d, error %d\n", c, result);
2465 /* This need not be fatal. The user can try to
2466 * set other configurations. */
2467 }
2468 }
2469 dev_info(&usb_dev->dev, "authorized to connect\n");
Alan Sternda307122009-12-08 15:54:44 -05002470
Alan Stern8d8558d2009-12-08 15:50:41 -05002471error_enumerate:
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002472error_device_descriptor:
Alan Sternda307122009-12-08 15:54:44 -05002473 usb_autosuspend_device(usb_dev);
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002474error_autoresume:
2475out_authorized:
2476 usb_unlock_device(usb_dev); // complements locktree
2477 return result;
2478}
2479
2480
Inaky Perez-Gonzalez0165de02006-08-25 19:35:29 -07002481/* Returns 1 if @hub is a WUSB root hub, 0 otherwise */
2482static unsigned hub_is_wusb(struct usb_hub *hub)
2483{
2484 struct usb_hcd *hcd;
2485 if (hub->hdev->parent != NULL) /* not a root hub? */
2486 return 0;
2487 hcd = container_of(hub->hdev->bus, struct usb_hcd, self);
2488 return hcd->wireless;
2489}
2490
2491
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492#define PORT_RESET_TRIES 5
2493#define SET_ADDRESS_TRIES 2
2494#define GET_DESCRIPTOR_TRIES 2
2495#define SET_CONFIG_TRIES (2 * (use_both_schemes + 1))
Rusty Russell90ab5ee2012-01-13 09:32:20 +10302496#define USE_NEW_SCHEME(i) ((i) / 2 == (int)old_scheme_first)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497
2498#define HUB_ROOT_RESET_TIME 50 /* times are in msec */
2499#define HUB_SHORT_RESET_TIME 10
Andiry Xu75d7cf72011-09-13 16:41:11 -07002500#define HUB_BH_RESET_TIME 50
Linus Torvalds1da177e2005-04-16 15:20:36 -07002501#define HUB_LONG_RESET_TIME 200
Sarah Sharp77c7f072012-11-14 17:16:52 -08002502#define HUB_RESET_TIMEOUT 800
Linus Torvalds1da177e2005-04-16 15:20:36 -07002503
Sarah Sharp10d674a2011-09-14 14:24:52 -07002504static int hub_port_reset(struct usb_hub *hub, int port1,
2505 struct usb_device *udev, unsigned int delay, bool warm);
2506
Stanislaw Ledwon8bea2bd2012-06-18 15:20:00 +02002507/* Is a USB 3.0 port in the Inactive or Complinance Mode state?
2508 * Port worm reset is required to recover
2509 */
2510static bool hub_port_warm_reset_required(struct usb_hub *hub, u16 portstatus)
Sarah Sharp10d674a2011-09-14 14:24:52 -07002511{
2512 return hub_is_superspeed(hub->hdev) &&
Stanislaw Ledwon8bea2bd2012-06-18 15:20:00 +02002513 (((portstatus & USB_PORT_STAT_LINK_STATE) ==
2514 USB_SS_PORT_LS_SS_INACTIVE) ||
2515 ((portstatus & USB_PORT_STAT_LINK_STATE) ==
2516 USB_SS_PORT_LS_COMP_MOD)) ;
Sarah Sharp10d674a2011-09-14 14:24:52 -07002517}
2518
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519static int hub_port_wait_reset(struct usb_hub *hub, int port1,
Andiry Xu75d7cf72011-09-13 16:41:11 -07002520 struct usb_device *udev, unsigned int delay, bool warm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521{
2522 int delay_time, ret;
2523 u16 portstatus;
2524 u16 portchange;
2525
2526 for (delay_time = 0;
2527 delay_time < HUB_RESET_TIMEOUT;
2528 delay_time += delay) {
2529 /* wait to give the device a chance to reset */
2530 msleep(delay);
2531
2532 /* read and decode port status */
2533 ret = hub_port_status(hub, port1, &portstatus, &portchange);
2534 if (ret < 0)
2535 return ret;
2536
Sarah Sharp4f434472012-11-15 14:58:04 -08002537 /* The port state is unknown until the reset completes. */
2538 if ((portstatus & USB_PORT_STAT_RESET))
2539 goto delay;
2540
Andiry Xu75d7cf72011-09-13 16:41:11 -07002541 /*
2542 * Some buggy devices require a warm reset to be issued even
2543 * when the port appears not to be connected.
2544 */
2545 if (!warm) {
Sarah Sharp10d674a2011-09-14 14:24:52 -07002546 /*
2547 * Some buggy devices can cause an NEC host controller
2548 * to transition to the "Error" state after a hot port
2549 * reset. This will show up as the port state in
2550 * "Inactive", and the port may also report a
2551 * disconnect. Forcing a warm port reset seems to make
2552 * the device work.
2553 *
2554 * See https://bugzilla.kernel.org/show_bug.cgi?id=41752
2555 */
Stanislaw Ledwon8bea2bd2012-06-18 15:20:00 +02002556 if (hub_port_warm_reset_required(hub, portstatus)) {
Sarah Sharp10d674a2011-09-14 14:24:52 -07002557 int ret;
2558
2559 if ((portchange & USB_PORT_STAT_C_CONNECTION))
2560 clear_port_feature(hub->hdev, port1,
2561 USB_PORT_FEAT_C_CONNECTION);
2562 if (portchange & USB_PORT_STAT_C_LINK_STATE)
2563 clear_port_feature(hub->hdev, port1,
2564 USB_PORT_FEAT_C_PORT_LINK_STATE);
2565 if (portchange & USB_PORT_STAT_C_RESET)
2566 clear_port_feature(hub->hdev, port1,
2567 USB_PORT_FEAT_C_RESET);
2568 dev_dbg(hub->intfdev, "hot reset failed, warm reset port %d\n",
2569 port1);
2570 ret = hub_port_reset(hub, port1,
2571 udev, HUB_BH_RESET_TIME,
2572 true);
2573 if ((portchange & USB_PORT_STAT_C_CONNECTION))
2574 clear_port_feature(hub->hdev, port1,
2575 USB_PORT_FEAT_C_CONNECTION);
2576 return ret;
2577 }
Andiry Xu75d7cf72011-09-13 16:41:11 -07002578 /* Device went away? */
2579 if (!(portstatus & USB_PORT_STAT_CONNECTION))
2580 return -ENOTCONN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581
Andiry Xu75d7cf72011-09-13 16:41:11 -07002582 /* bomb out completely if the connection bounced */
2583 if ((portchange & USB_PORT_STAT_C_CONNECTION))
2584 return -ENOTCONN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002585
Sarah Sharp4f434472012-11-15 14:58:04 -08002586 if ((portstatus & USB_PORT_STAT_ENABLE)) {
Andiry Xu75d7cf72011-09-13 16:41:11 -07002587 if (hub_is_wusb(hub))
2588 udev->speed = USB_SPEED_WIRELESS;
2589 else if (hub_is_superspeed(hub->hdev))
2590 udev->speed = USB_SPEED_SUPER;
2591 else if (portstatus & USB_PORT_STAT_HIGH_SPEED)
2592 udev->speed = USB_SPEED_HIGH;
2593 else if (portstatus & USB_PORT_STAT_LOW_SPEED)
2594 udev->speed = USB_SPEED_LOW;
2595 else
2596 udev->speed = USB_SPEED_FULL;
2597 return 0;
2598 }
2599 } else {
Sarah Sharp65bdac52012-11-14 17:58:04 -08002600 if (!(portstatus & USB_PORT_STAT_CONNECTION) ||
2601 hub_port_warm_reset_required(hub,
2602 portstatus))
2603 return -ENOTCONN;
2604
Sarah Sharp4f434472012-11-15 14:58:04 -08002605 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002606 }
2607
Sarah Sharp4f434472012-11-15 14:58:04 -08002608delay:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002609 /* switch to the long delay after two short delay failures */
2610 if (delay_time >= 2 * HUB_SHORT_RESET_TIME)
2611 delay = HUB_LONG_RESET_TIME;
2612
2613 dev_dbg (hub->intfdev,
Andiry Xu75d7cf72011-09-13 16:41:11 -07002614 "port %d not %sreset yet, waiting %dms\n",
2615 port1, warm ? "warm " : "", delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002616 }
2617
2618 return -EBUSY;
2619}
2620
Andiry Xu75d7cf72011-09-13 16:41:11 -07002621static void hub_port_finish_reset(struct usb_hub *hub, int port1,
2622 struct usb_device *udev, int *status, bool warm)
2623{
2624 switch (*status) {
2625 case 0:
2626 if (!warm) {
2627 struct usb_hcd *hcd;
2628 /* TRSTRCY = 10 ms; plus some extra */
2629 msleep(10 + 40);
2630 update_devnum(udev, 0);
2631 hcd = bus_to_hcd(udev->bus);
Sarah Sharp8b8132b2012-11-14 16:10:49 -08002632 /* The xHC may think the device is already reset,
2633 * so ignore the status.
2634 */
2635 if (hcd->driver->reset_device)
2636 hcd->driver->reset_device(hcd, udev);
Andiry Xu75d7cf72011-09-13 16:41:11 -07002637 }
2638 /* FALL THROUGH */
2639 case -ENOTCONN:
2640 case -ENODEV:
2641 clear_port_feature(hub->hdev,
2642 port1, USB_PORT_FEAT_C_RESET);
2643 /* FIXME need disconnect() for NOTATTACHED device */
Sarah Sharp1c7439c62012-11-14 15:58:52 -08002644 if (hub_is_superspeed(hub->hdev)) {
Andiry Xu75d7cf72011-09-13 16:41:11 -07002645 clear_port_feature(hub->hdev, port1,
2646 USB_PORT_FEAT_C_BH_PORT_RESET);
2647 clear_port_feature(hub->hdev, port1,
2648 USB_PORT_FEAT_C_PORT_LINK_STATE);
Sarah Sharp1c7439c62012-11-14 15:58:52 -08002649 }
2650 if (!warm)
Andiry Xu75d7cf72011-09-13 16:41:11 -07002651 usb_set_device_state(udev, *status
2652 ? USB_STATE_NOTATTACHED
2653 : USB_STATE_DEFAULT);
Andiry Xu75d7cf72011-09-13 16:41:11 -07002654 break;
2655 }
2656}
2657
2658/* Handle port reset and port warm(BH) reset (for USB3 protocol ports) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002659static int hub_port_reset(struct usb_hub *hub, int port1,
Andiry Xu75d7cf72011-09-13 16:41:11 -07002660 struct usb_device *udev, unsigned int delay, bool warm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002661{
2662 int i, status;
2663
Andiry Xu75d7cf72011-09-13 16:41:11 -07002664 if (!warm) {
2665 /* Block EHCI CF initialization during the port reset.
2666 * Some companion controllers don't like it when they mix.
2667 */
2668 down_read(&ehci_cf_port_reset_rwsem);
2669 } else {
2670 if (!hub_is_superspeed(hub->hdev)) {
2671 dev_err(hub->intfdev, "only USB3 hub support "
2672 "warm reset\n");
2673 return -EINVAL;
2674 }
2675 }
Alan Stern32fe0192007-10-10 16:27:07 -04002676
Linus Torvalds1da177e2005-04-16 15:20:36 -07002677 /* Reset the port */
2678 for (i = 0; i < PORT_RESET_TRIES; i++) {
Andiry Xu75d7cf72011-09-13 16:41:11 -07002679 status = set_port_feature(hub->hdev, port1, (warm ?
2680 USB_PORT_FEAT_BH_PORT_RESET :
2681 USB_PORT_FEAT_RESET));
2682 if (status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683 dev_err(hub->intfdev,
Andiry Xu75d7cf72011-09-13 16:41:11 -07002684 "cannot %sreset port %d (err = %d)\n",
2685 warm ? "warm " : "", port1, status);
2686 } else {
2687 status = hub_port_wait_reset(hub, port1, udev, delay,
2688 warm);
David Brownelldd165252005-08-31 10:45:25 -07002689 if (status && status != -ENOTCONN)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690 dev_dbg(hub->intfdev,
2691 "port_wait_reset: err = %d\n",
2692 status);
2693 }
2694
2695 /* return on disconnect or reset */
Andiry Xu75d7cf72011-09-13 16:41:11 -07002696 if (status == 0 || status == -ENOTCONN || status == -ENODEV) {
2697 hub_port_finish_reset(hub, port1, udev, &status, warm);
Alan Stern32fe0192007-10-10 16:27:07 -04002698 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002699 }
2700
2701 dev_dbg (hub->intfdev,
Andiry Xu75d7cf72011-09-13 16:41:11 -07002702 "port %d not enabled, trying %sreset again...\n",
2703 port1, warm ? "warm " : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002704 delay = HUB_LONG_RESET_TIME;
2705 }
2706
2707 dev_err (hub->intfdev,
2708 "Cannot enable port %i. Maybe the USB cable is bad?\n",
2709 port1);
2710
Andiry Xu75d7cf72011-09-13 16:41:11 -07002711done:
2712 if (!warm)
2713 up_read(&ehci_cf_port_reset_rwsem);
2714
Linus Torvalds1da177e2005-04-16 15:20:36 -07002715 return status;
2716}
2717
Andiry Xu0ed9a572011-04-27 18:07:43 +08002718/* Check if a port is power on */
2719static int port_is_power_on(struct usb_hub *hub, unsigned portstatus)
2720{
2721 int ret = 0;
2722
2723 if (hub_is_superspeed(hub->hdev)) {
2724 if (portstatus & USB_SS_PORT_STAT_POWER)
2725 ret = 1;
2726 } else {
2727 if (portstatus & USB_PORT_STAT_POWER)
2728 ret = 1;
2729 }
2730
2731 return ret;
2732}
2733
Alan Sternd388dab2006-07-01 22:14:24 -04002734#ifdef CONFIG_PM
Linus Torvalds1da177e2005-04-16 15:20:36 -07002735
Andiry Xu0ed9a572011-04-27 18:07:43 +08002736/* Check if a port is suspended(USB2.0 port) or in U3 state(USB3.0 port) */
2737static int port_is_suspended(struct usb_hub *hub, unsigned portstatus)
2738{
2739 int ret = 0;
2740
2741 if (hub_is_superspeed(hub->hdev)) {
2742 if ((portstatus & USB_PORT_STAT_LINK_STATE)
2743 == USB_SS_PORT_LS_U3)
2744 ret = 1;
2745 } else {
2746 if (portstatus & USB_PORT_STAT_SUSPEND)
2747 ret = 1;
2748 }
2749
2750 return ret;
2751}
Alan Sternb01b03f2008-04-28 11:06:11 -04002752
2753/* Determine whether the device on a port is ready for a normal resume,
2754 * is ready for a reset-resume, or should be disconnected.
2755 */
2756static int check_port_resume_type(struct usb_device *udev,
2757 struct usb_hub *hub, int port1,
2758 int status, unsigned portchange, unsigned portstatus)
2759{
2760 /* Is the device still present? */
Andiry Xu0ed9a572011-04-27 18:07:43 +08002761 if (status || port_is_suspended(hub, portstatus) ||
2762 !port_is_power_on(hub, portstatus) ||
2763 !(portstatus & USB_PORT_STAT_CONNECTION)) {
Alan Sternb01b03f2008-04-28 11:06:11 -04002764 if (status >= 0)
2765 status = -ENODEV;
2766 }
2767
Alan Stern86c57ed2008-06-30 11:14:43 -04002768 /* Can't do a normal resume if the port isn't enabled,
2769 * so try a reset-resume instead.
2770 */
2771 else if (!(portstatus & USB_PORT_STAT_ENABLE) && !udev->reset_resume) {
2772 if (udev->persist_enabled)
2773 udev->reset_resume = 1;
2774 else
2775 status = -ENODEV;
2776 }
Alan Sternb01b03f2008-04-28 11:06:11 -04002777
2778 if (status) {
2779 dev_dbg(hub->intfdev,
2780 "port %d status %04x.%04x after resume, %d\n",
2781 port1, portchange, portstatus, status);
2782 } else if (udev->reset_resume) {
2783
2784 /* Late port handoff can set status-change bits */
2785 if (portchange & USB_PORT_STAT_C_CONNECTION)
2786 clear_port_feature(hub->hdev, port1,
2787 USB_PORT_FEAT_C_CONNECTION);
2788 if (portchange & USB_PORT_STAT_C_ENABLE)
2789 clear_port_feature(hub->hdev, port1,
2790 USB_PORT_FEAT_C_ENABLE);
2791 }
2792
2793 return status;
2794}
2795
Sarah Sharpf74631e2012-06-25 12:08:08 -07002796int usb_disable_ltm(struct usb_device *udev)
2797{
2798 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
2799
2800 /* Check if the roothub and device supports LTM. */
2801 if (!usb_device_supports_ltm(hcd->self.root_hub) ||
2802 !usb_device_supports_ltm(udev))
2803 return 0;
2804
2805 /* Clear Feature LTM Enable can only be sent if the device is
2806 * configured.
2807 */
2808 if (!udev->actconfig)
2809 return 0;
2810
2811 return usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
2812 USB_REQ_CLEAR_FEATURE, USB_RECIP_DEVICE,
2813 USB_DEVICE_LTM_ENABLE, 0, NULL, 0,
2814 USB_CTRL_SET_TIMEOUT);
2815}
2816EXPORT_SYMBOL_GPL(usb_disable_ltm);
2817
2818void usb_enable_ltm(struct usb_device *udev)
2819{
2820 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
2821
2822 /* Check if the roothub and device supports LTM. */
2823 if (!usb_device_supports_ltm(hcd->self.root_hub) ||
2824 !usb_device_supports_ltm(udev))
2825 return;
2826
2827 /* Set Feature LTM Enable can only be sent if the device is
2828 * configured.
2829 */
2830 if (!udev->actconfig)
2831 return;
2832
2833 usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
2834 USB_REQ_SET_FEATURE, USB_RECIP_DEVICE,
2835 USB_DEVICE_LTM_ENABLE, 0, NULL, 0,
2836 USB_CTRL_SET_TIMEOUT);
2837}
2838EXPORT_SYMBOL_GPL(usb_enable_ltm);
2839
Linus Torvalds1da177e2005-04-16 15:20:36 -07002840#ifdef CONFIG_USB_SUSPEND
Lan Tianyu54a3ac02013-01-24 10:31:28 +08002841/*
2842 * usb_disable_function_remotewakeup - disable usb3.0
2843 * device's function remote wakeup
2844 * @udev: target device
2845 *
2846 * Assume there's only one function on the USB 3.0
2847 * device and disable remote wake for the first
2848 * interface. FIXME if the interface association
2849 * descriptor shows there's more than one function.
2850 */
2851static int usb_disable_function_remotewakeup(struct usb_device *udev)
2852{
2853 return usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
2854 USB_REQ_CLEAR_FEATURE, USB_RECIP_INTERFACE,
2855 USB_INTRF_FUNC_SUSPEND, 0, NULL, 0,
2856 USB_CTRL_SET_TIMEOUT);
2857}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002858
2859/*
Alan Stern140d8f62006-07-01 22:07:21 -04002860 * usb_port_suspend - suspend a usb device's upstream port
Alan Stern624d6c02007-05-30 15:35:16 -04002861 * @udev: device that's no longer in active use, not a root hub
David Brownell5edbfb72005-09-22 22:45:26 -07002862 * Context: must be able to sleep; device not locked; pm locks held
Linus Torvalds1da177e2005-04-16 15:20:36 -07002863 *
2864 * Suspends a USB device that isn't in active use, conserving power.
2865 * Devices may wake out of a suspend, if anything important happens,
2866 * using the remote wakeup mechanism. They may also be taken out of
Alan Stern140d8f62006-07-01 22:07:21 -04002867 * suspend by the host, using usb_port_resume(). It's also routine
Linus Torvalds1da177e2005-04-16 15:20:36 -07002868 * to disconnect devices while they are suspended.
2869 *
David Brownell390a8c32005-09-13 19:57:27 -07002870 * This only affects the USB hardware for a device; its interfaces
2871 * (and, for hubs, child devices) must already have been suspended.
2872 *
Alan Stern624d6c02007-05-30 15:35:16 -04002873 * Selective port suspend reduces power; most suspended devices draw
2874 * less than 500 uA. It's also used in OTG, along with remote wakeup.
2875 * All devices below the suspended port are also suspended.
2876 *
2877 * Devices leave suspend state when the host wakes them up. Some devices
2878 * also support "remote wakeup", where the device can activate the USB
2879 * tree above them to deliver data, such as a keypress or packet. In
2880 * some cases, this wakes the USB host.
2881 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002882 * Suspending OTG devices may trigger HNP, if that's been enabled
2883 * between a pair of dual-role devices. That will change roles, such
2884 * as from A-Host to A-Peripheral or from B-Host back to B-Peripheral.
2885 *
Alan Stern4956ecc2007-05-30 16:51:28 -04002886 * Devices on USB hub ports have only one "suspend" state, corresponding
2887 * to ACPI D2, "may cause the device to lose some context".
2888 * State transitions include:
2889 *
2890 * - suspend, resume ... when the VBUS power link stays live
2891 * - suspend, disconnect ... VBUS lost
2892 *
2893 * Once VBUS drop breaks the circuit, the port it's using has to go through
2894 * normal re-enumeration procedures, starting with enabling VBUS power.
2895 * Other than re-initializing the hub (plug/unplug, except for root hubs),
2896 * Linux (2.6) currently has NO mechanisms to initiate that: no khubd
2897 * timer, no SRP, no requests through sysfs.
2898 *
2899 * If CONFIG_USB_SUSPEND isn't enabled, devices only really suspend when
2900 * the root hub for their bus goes into global suspend ... so we don't
2901 * (falsely) update the device power state to say it suspended.
2902 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002903 * Returns 0 on success, else negative errno.
2904 */
Alan Stern65bfd292008-11-25 16:39:18 -05002905int usb_port_suspend(struct usb_device *udev, pm_message_t msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002906{
Alan Stern624d6c02007-05-30 15:35:16 -04002907 struct usb_hub *hub = hdev_to_hub(udev->parent);
2908 int port1 = udev->portnum;
2909 int status;
Alan Stern4956ecc2007-05-30 16:51:28 -04002910
Alan Stern624d6c02007-05-30 15:35:16 -04002911 /* enable remote wakeup when appropriate; this lets the device
2912 * wake up the upstream hub (including maybe the root hub).
2913 *
2914 * NOTE: OTG devices may issue remote wakeup (or SRP) even when
2915 * we don't explicitly enable it here.
2916 */
2917 if (udev->do_remote_wakeup) {
Sarah Sharp623bef92011-11-11 14:57:33 -08002918 if (!hub_is_superspeed(hub->hdev)) {
2919 status = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
2920 USB_REQ_SET_FEATURE, USB_RECIP_DEVICE,
2921 USB_DEVICE_REMOTE_WAKEUP, 0,
2922 NULL, 0,
2923 USB_CTRL_SET_TIMEOUT);
2924 } else {
2925 /* Assume there's only one function on the USB 3.0
2926 * device and enable remote wake for the first
2927 * interface. FIXME if the interface association
2928 * descriptor shows there's more than one function.
2929 */
2930 status = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
2931 USB_REQ_SET_FEATURE,
2932 USB_RECIP_INTERFACE,
2933 USB_INTRF_FUNC_SUSPEND,
Sarah Sharp3b9b6ac2012-01-06 15:48:30 -08002934 USB_INTRF_FUNC_SUSPEND_RW |
2935 USB_INTRF_FUNC_SUSPEND_LP,
Sarah Sharp623bef92011-11-11 14:57:33 -08002936 NULL, 0,
2937 USB_CTRL_SET_TIMEOUT);
2938 }
Oliver Neukum0c487202009-10-19 13:19:41 +02002939 if (status) {
Alan Stern624d6c02007-05-30 15:35:16 -04002940 dev_dbg(&udev->dev, "won't remote wakeup, status %d\n",
2941 status);
Oliver Neukum0c487202009-10-19 13:19:41 +02002942 /* bail if autosuspend is requested */
Alan Stern5b1b0b82011-08-19 23:49:48 +02002943 if (PMSG_IS_AUTO(msg))
Oliver Neukum0c487202009-10-19 13:19:41 +02002944 return status;
2945 }
Alan Stern624d6c02007-05-30 15:35:16 -04002946 }
2947
Andiry Xu65580b432011-09-23 14:19:52 -07002948 /* disable USB2 hardware LPM */
2949 if (udev->usb2_hw_lpm_enabled == 1)
2950 usb_set_usb2_hardware_lpm(udev, 0);
2951
Sarah Sharpf74631e2012-06-25 12:08:08 -07002952 if (usb_disable_ltm(udev)) {
2953 dev_err(&udev->dev, "%s Failed to disable LTM before suspend\n.",
2954 __func__);
2955 return -ENOMEM;
2956 }
Sarah Sharp83060952012-05-02 14:25:52 -07002957 if (usb_unlocked_disable_lpm(udev)) {
2958 dev_err(&udev->dev, "%s Failed to disable LPM before suspend\n.",
2959 __func__);
2960 return -ENOMEM;
2961 }
2962
Alan Stern624d6c02007-05-30 15:35:16 -04002963 /* see 7.1.7.6 */
Andiry Xua7114232011-04-27 18:07:50 +08002964 if (hub_is_superspeed(hub->hdev))
2965 status = set_port_feature(hub->hdev,
2966 port1 | (USB_SS_PORT_LS_U3 << 3),
2967 USB_PORT_FEAT_LINK_STATE);
Andiry Xua8f08d82011-03-31 14:56:50 +08002968 else
2969 status = set_port_feature(hub->hdev, port1,
2970 USB_PORT_FEAT_SUSPEND);
Alan Stern624d6c02007-05-30 15:35:16 -04002971 if (status) {
2972 dev_dbg(hub->intfdev, "can't suspend port %d, status %d\n",
2973 port1, status);
2974 /* paranoia: "should not happen" */
Lan Tianyu54a3ac02013-01-24 10:31:28 +08002975 if (udev->do_remote_wakeup) {
2976 if (!hub_is_superspeed(hub->hdev)) {
2977 (void) usb_control_msg(udev,
2978 usb_sndctrlpipe(udev, 0),
2979 USB_REQ_CLEAR_FEATURE,
2980 USB_RECIP_DEVICE,
2981 USB_DEVICE_REMOTE_WAKEUP, 0,
2982 NULL, 0,
2983 USB_CTRL_SET_TIMEOUT);
2984 } else
2985 (void) usb_disable_function_remotewakeup(udev);
2986
2987 }
Alan Sterncbb33002011-06-15 16:29:16 -04002988
Andiry Xuc3e751e2012-05-05 00:50:10 +08002989 /* Try to enable USB2 hardware LPM again */
2990 if (udev->usb2_hw_lpm_capable == 1)
2991 usb_set_usb2_hardware_lpm(udev, 1);
2992
Sarah Sharpf74631e2012-06-25 12:08:08 -07002993 /* Try to enable USB3 LTM and LPM again */
2994 usb_enable_ltm(udev);
Sarah Sharp83060952012-05-02 14:25:52 -07002995 usb_unlocked_enable_lpm(udev);
2996
Alan Sterncbb33002011-06-15 16:29:16 -04002997 /* System sleep transitions should never fail */
Alan Stern5b1b0b82011-08-19 23:49:48 +02002998 if (!PMSG_IS_AUTO(msg))
Alan Sterncbb33002011-06-15 16:29:16 -04002999 status = 0;
Alan Stern624d6c02007-05-30 15:35:16 -04003000 } else {
3001 /* device has up to 10 msec to fully suspend */
Alan Stern30b1a7a2011-09-27 21:54:22 +02003002 dev_dbg(&udev->dev, "usb %ssuspend, wakeup %d\n",
3003 (PMSG_IS_AUTO(msg) ? "auto-" : ""),
3004 udev->do_remote_wakeup);
Alan Stern624d6c02007-05-30 15:35:16 -04003005 usb_set_device_state(udev, USB_STATE_SUSPENDED);
Alan Sternbfd1e912012-10-19 11:03:39 -04003006 udev->port_is_suspended = 1;
Alan Stern624d6c02007-05-30 15:35:16 -04003007 msleep(10);
3008 }
Alan Sternc08512c2010-11-15 15:57:58 -05003009 usb_mark_last_busy(hub->hdev);
Alan Stern4956ecc2007-05-30 16:51:28 -04003010 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003011}
David Brownellf3f32532005-09-22 22:37:29 -07003012
Linus Torvalds1da177e2005-04-16 15:20:36 -07003013/*
David Brownell390a8c32005-09-13 19:57:27 -07003014 * If the USB "suspend" state is in use (rather than "global suspend"),
3015 * many devices will be individually taken out of suspend state using
Alan Stern54515fe2007-05-30 15:38:58 -04003016 * special "resume" signaling. This routine kicks in shortly after
Linus Torvalds1da177e2005-04-16 15:20:36 -07003017 * hardware resume signaling is finished, either because of selective
3018 * resume (by host) or remote wakeup (by device) ... now see what changed
3019 * in the tree that's rooted at this device.
Alan Stern54515fe2007-05-30 15:38:58 -04003020 *
3021 * If @udev->reset_resume is set then the device is reset before the
3022 * status check is done.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003023 */
Alan Stern140d8f62006-07-01 22:07:21 -04003024static int finish_port_resume(struct usb_device *udev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003025{
Alan Stern54515fe2007-05-30 15:38:58 -04003026 int status = 0;
Oliver Neukum07e72b92012-11-29 15:05:57 +01003027 u16 devstatus = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003028
3029 /* caller owns the udev device lock */
Wu Fengguangb9cef6c2008-12-15 15:32:01 +08003030 dev_dbg(&udev->dev, "%s\n",
3031 udev->reset_resume ? "finish reset-resume" : "finish resume");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003032
3033 /* usb ch9 identifies four variants of SUSPENDED, based on what
3034 * state the device resumes to. Linux currently won't see the
3035 * first two on the host side; they'd be inside hub_port_init()
3036 * during many timeouts, but khubd can't suspend until later.
3037 */
3038 usb_set_device_state(udev, udev->actconfig
3039 ? USB_STATE_CONFIGURED
3040 : USB_STATE_ADDRESS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003041
Alan Stern54515fe2007-05-30 15:38:58 -04003042 /* 10.5.4.5 says not to reset a suspended port if the attached
3043 * device is enabled for remote wakeup. Hence the reset
3044 * operation is carried out here, after the port has been
3045 * resumed.
3046 */
3047 if (udev->reset_resume)
Alan Stern86c57ed2008-06-30 11:14:43 -04003048 retry_reset_resume:
Ming Lei742120c2008-06-18 22:00:29 +08003049 status = usb_reset_and_verify_device(udev);
Alan Stern54515fe2007-05-30 15:38:58 -04003050
Linus Torvalds1da177e2005-04-16 15:20:36 -07003051 /* 10.5.4.5 says be sure devices in the tree are still there.
3052 * For now let's assume the device didn't go crazy on resume,
3053 * and device drivers will know about any resume quirks.
3054 */
Alan Stern54515fe2007-05-30 15:38:58 -04003055 if (status == 0) {
Alan Stern46dede42007-08-14 10:56:10 -04003056 devstatus = 0;
Alan Stern54515fe2007-05-30 15:38:58 -04003057 status = usb_get_status(udev, USB_RECIP_DEVICE, 0, &devstatus);
3058 if (status >= 0)
Alan Stern46dede42007-08-14 10:56:10 -04003059 status = (status > 0 ? 0 : -ENODEV);
Alan Stern86c57ed2008-06-30 11:14:43 -04003060
3061 /* If a normal resume failed, try doing a reset-resume */
3062 if (status && !udev->reset_resume && udev->persist_enabled) {
3063 dev_dbg(&udev->dev, "retry with reset-resume\n");
3064 udev->reset_resume = 1;
3065 goto retry_reset_resume;
3066 }
Alan Stern54515fe2007-05-30 15:38:58 -04003067 }
Alan Sternb40b7a92006-06-19 15:12:38 -04003068
Alan Stern624d6c02007-05-30 15:35:16 -04003069 if (status) {
3070 dev_dbg(&udev->dev, "gone after usb resume? status %d\n",
3071 status);
Oliver Neukum07e72b92012-11-29 15:05:57 +01003072 /*
3073 * There are a few quirky devices which violate the standard
3074 * by claiming to have remote wakeup enabled after a reset,
3075 * which crash if the feature is cleared, hence check for
3076 * udev->reset_resume
3077 */
3078 } else if (udev->actconfig && !udev->reset_resume) {
Lan Tianyu54a3ac02013-01-24 10:31:28 +08003079 if (!hub_is_superspeed(udev->parent)) {
3080 le16_to_cpus(&devstatus);
3081 if (devstatus & (1 << USB_DEVICE_REMOTE_WAKEUP))
3082 status = usb_control_msg(udev,
3083 usb_sndctrlpipe(udev, 0),
3084 USB_REQ_CLEAR_FEATURE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003085 USB_RECIP_DEVICE,
Lan Tianyu54a3ac02013-01-24 10:31:28 +08003086 USB_DEVICE_REMOTE_WAKEUP, 0,
3087 NULL, 0,
3088 USB_CTRL_SET_TIMEOUT);
3089 } else {
3090 status = usb_get_status(udev, USB_RECIP_INTERFACE, 0,
3091 &devstatus);
3092 le16_to_cpus(&devstatus);
3093 if (!status && devstatus & (USB_INTRF_STAT_FUNC_RW_CAP
3094 | USB_INTRF_STAT_FUNC_RW))
3095 status =
3096 usb_disable_function_remotewakeup(udev);
Alan Stern4bf0ba82005-11-21 11:58:07 -05003097 }
Lan Tianyu54a3ac02013-01-24 10:31:28 +08003098
3099 if (status)
3100 dev_dbg(&udev->dev,
3101 "disable remote wakeup, status %d\n",
3102 status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003103 status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003104 }
3105 return status;
3106}
3107
Alan Stern624d6c02007-05-30 15:35:16 -04003108/*
3109 * usb_port_resume - re-activate a suspended usb device's upstream port
3110 * @udev: device to re-activate, not a root hub
3111 * Context: must be able to sleep; device not locked; pm locks held
3112 *
3113 * This will re-activate the suspended device, increasing power usage
3114 * while letting drivers communicate again with its endpoints.
3115 * USB resume explicitly guarantees that the power session between
3116 * the host and the device is the same as it was when the device
3117 * suspended.
3118 *
Alan Sternfeccc302008-03-03 15:15:59 -05003119 * If @udev->reset_resume is set then this routine won't check that the
3120 * port is still enabled. Furthermore, finish_port_resume() above will
Alan Stern54515fe2007-05-30 15:38:58 -04003121 * reset @udev. The end result is that a broken power session can be
3122 * recovered and @udev will appear to persist across a loss of VBUS power.
3123 *
3124 * For example, if a host controller doesn't maintain VBUS suspend current
3125 * during a system sleep or is reset when the system wakes up, all the USB
3126 * power sessions below it will be broken. This is especially troublesome
3127 * for mass-storage devices containing mounted filesystems, since the
3128 * device will appear to have disconnected and all the memory mappings
3129 * to it will be lost. Using the USB_PERSIST facility, the device can be
3130 * made to appear as if it had not disconnected.
3131 *
Ming Lei742120c2008-06-18 22:00:29 +08003132 * This facility can be dangerous. Although usb_reset_and_verify_device() makes
Alan Sternfeccc302008-03-03 15:15:59 -05003133 * every effort to insure that the same device is present after the
Alan Stern54515fe2007-05-30 15:38:58 -04003134 * reset as before, it cannot provide a 100% guarantee. Furthermore it's
3135 * quite possible for a device to remain unaltered but its media to be
3136 * changed. If the user replaces a flash memory card while the system is
3137 * asleep, he will have only himself to blame when the filesystem on the
3138 * new card is corrupted and the system crashes.
3139 *
Alan Stern624d6c02007-05-30 15:35:16 -04003140 * Returns 0 on success, else negative errno.
3141 */
Alan Stern65bfd292008-11-25 16:39:18 -05003142int usb_port_resume(struct usb_device *udev, pm_message_t msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003143{
Alan Stern624d6c02007-05-30 15:35:16 -04003144 struct usb_hub *hub = hdev_to_hub(udev->parent);
3145 int port1 = udev->portnum;
3146 int status;
3147 u16 portchange, portstatus;
Alan Sternd25450c2006-11-20 11:14:30 -05003148
3149 /* Skip the initial Clear-Suspend step for a remote wakeup */
3150 status = hub_port_status(hub, port1, &portstatus, &portchange);
Andiry Xu0ed9a572011-04-27 18:07:43 +08003151 if (status == 0 && !port_is_suspended(hub, portstatus))
Alan Sternd25450c2006-11-20 11:14:30 -05003152 goto SuspendCleared;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003153
3154 // dev_dbg(hub->intfdev, "resume port %d\n", port1);
3155
Alan Sternd5cbad42006-08-11 16:52:39 -04003156 set_bit(port1, hub->busy_bits);
3157
Linus Torvalds1da177e2005-04-16 15:20:36 -07003158 /* see 7.1.7.7; affects power usage, but not budgeting */
Andiry Xua7114232011-04-27 18:07:50 +08003159 if (hub_is_superspeed(hub->hdev))
3160 status = set_port_feature(hub->hdev,
3161 port1 | (USB_SS_PORT_LS_U0 << 3),
3162 USB_PORT_FEAT_LINK_STATE);
3163 else
3164 status = clear_port_feature(hub->hdev,
3165 port1, USB_PORT_FEAT_SUSPEND);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003166 if (status) {
Alan Stern624d6c02007-05-30 15:35:16 -04003167 dev_dbg(hub->intfdev, "can't resume port %d, status %d\n",
3168 port1, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003169 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003170 /* drive resume for at least 20 msec */
Alan Stern686314c2007-05-30 15:34:36 -04003171 dev_dbg(&udev->dev, "usb %sresume\n",
Alan Stern5b1b0b82011-08-19 23:49:48 +02003172 (PMSG_IS_AUTO(msg) ? "auto-" : ""));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003173 msleep(25);
3174
Linus Torvalds1da177e2005-04-16 15:20:36 -07003175 /* Virtual root hubs can trigger on GET_PORT_STATUS to
3176 * stop resume signaling. Then finish the resume
3177 * sequence.
3178 */
Alan Sternd25450c2006-11-20 11:14:30 -05003179 status = hub_port_status(hub, port1, &portstatus, &portchange);
Alan Stern54515fe2007-05-30 15:38:58 -04003180
Alan Sternb01b03f2008-04-28 11:06:11 -04003181 /* TRSMRCY = 10 msec */
3182 msleep(10);
3183 }
Alan Stern54515fe2007-05-30 15:38:58 -04003184
Alan Sternb01b03f2008-04-28 11:06:11 -04003185 SuspendCleared:
3186 if (status == 0) {
Alan Sternbfd1e912012-10-19 11:03:39 -04003187 udev->port_is_suspended = 0;
Andiry Xua7114232011-04-27 18:07:50 +08003188 if (hub_is_superspeed(hub->hdev)) {
3189 if (portchange & USB_PORT_STAT_C_LINK_STATE)
3190 clear_port_feature(hub->hdev, port1,
3191 USB_PORT_FEAT_C_PORT_LINK_STATE);
3192 } else {
3193 if (portchange & USB_PORT_STAT_C_SUSPEND)
3194 clear_port_feature(hub->hdev, port1,
3195 USB_PORT_FEAT_C_SUSPEND);
3196 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003197 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003198
Alan Sternd5cbad42006-08-11 16:52:39 -04003199 clear_bit(port1, hub->busy_bits);
Alan Sternd5cbad42006-08-11 16:52:39 -04003200
Alan Sternb01b03f2008-04-28 11:06:11 -04003201 status = check_port_resume_type(udev,
3202 hub, port1, status, portchange, portstatus);
Alan Stern54515fe2007-05-30 15:38:58 -04003203 if (status == 0)
3204 status = finish_port_resume(udev);
3205 if (status < 0) {
3206 dev_dbg(&udev->dev, "can't resume, status %d\n", status);
3207 hub_port_logical_disconnect(hub, port1);
Andiry Xu65580b432011-09-23 14:19:52 -07003208 } else {
3209 /* Try to enable USB2 hardware LPM */
3210 if (udev->usb2_hw_lpm_capable == 1)
3211 usb_set_usb2_hardware_lpm(udev, 1);
Sarah Sharp83060952012-05-02 14:25:52 -07003212
Sarah Sharpf74631e2012-06-25 12:08:08 -07003213 /* Try to enable USB3 LTM and LPM */
3214 usb_enable_ltm(udev);
Sarah Sharp83060952012-05-02 14:25:52 -07003215 usb_unlocked_enable_lpm(udev);
Alan Stern54515fe2007-05-30 15:38:58 -04003216 }
Andiry Xu65580b432011-09-23 14:19:52 -07003217
Linus Torvalds1da177e2005-04-16 15:20:36 -07003218 return status;
3219}
3220
Alan Stern8808f002008-04-28 11:06:55 -04003221/* caller has locked udev */
Alan Stern0534d462010-01-08 12:56:30 -05003222int usb_remote_wakeup(struct usb_device *udev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003223{
3224 int status = 0;
3225
Linus Torvalds1da177e2005-04-16 15:20:36 -07003226 if (udev->state == USB_STATE_SUSPENDED) {
Alan Stern645daaa2006-08-30 15:47:02 -04003227 dev_dbg(&udev->dev, "usb %sresume\n", "wakeup-");
Alan Stern9bbdf1e2010-01-08 12:57:28 -05003228 status = usb_autoresume_device(udev);
3229 if (status == 0) {
3230 /* Let the drivers do their thing, then... */
3231 usb_autosuspend_device(udev);
3232 }
Alan Sternd25450c2006-11-20 11:14:30 -05003233 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003234 return status;
3235}
3236
Alan Sternd388dab2006-07-01 22:14:24 -04003237#else /* CONFIG_USB_SUSPEND */
3238
3239/* When CONFIG_USB_SUSPEND isn't set, we never suspend or resume any ports. */
3240
Alan Stern65bfd292008-11-25 16:39:18 -05003241int usb_port_suspend(struct usb_device *udev, pm_message_t msg)
Alan Sternd388dab2006-07-01 22:14:24 -04003242{
3243 return 0;
3244}
3245
Alan Sternb01b03f2008-04-28 11:06:11 -04003246/* However we may need to do a reset-resume */
3247
Alan Stern65bfd292008-11-25 16:39:18 -05003248int usb_port_resume(struct usb_device *udev, pm_message_t msg)
Alan Sternd388dab2006-07-01 22:14:24 -04003249{
Alan Sternb01b03f2008-04-28 11:06:11 -04003250 struct usb_hub *hub = hdev_to_hub(udev->parent);
3251 int port1 = udev->portnum;
3252 int status;
3253 u16 portchange, portstatus;
Alan Stern54515fe2007-05-30 15:38:58 -04003254
Alan Sternb01b03f2008-04-28 11:06:11 -04003255 status = hub_port_status(hub, port1, &portstatus, &portchange);
3256 status = check_port_resume_type(udev,
3257 hub, port1, status, portchange, portstatus);
3258
3259 if (status) {
3260 dev_dbg(&udev->dev, "can't resume, status %d\n", status);
3261 hub_port_logical_disconnect(hub, port1);
3262 } else if (udev->reset_resume) {
Alan Stern54515fe2007-05-30 15:38:58 -04003263 dev_dbg(&udev->dev, "reset-resume\n");
Ming Lei742120c2008-06-18 22:00:29 +08003264 status = usb_reset_and_verify_device(udev);
Alan Stern54515fe2007-05-30 15:38:58 -04003265 }
3266 return status;
Alan Sternd388dab2006-07-01 22:14:24 -04003267}
3268
Alan Sternd388dab2006-07-01 22:14:24 -04003269#endif
3270
Ming Leie6f30de2012-10-24 11:59:24 +08003271static int check_ports_changed(struct usb_hub *hub)
3272{
3273 int port1;
3274
3275 for (port1 = 1; port1 <= hub->hdev->maxchild; ++port1) {
3276 u16 portstatus, portchange;
3277 int status;
3278
3279 status = hub_port_status(hub, port1, &portstatus, &portchange);
3280 if (!status && portchange)
3281 return 1;
3282 }
3283 return 0;
3284}
3285
David Brownelldb690872005-09-13 19:56:33 -07003286static int hub_suspend(struct usb_interface *intf, pm_message_t msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003287{
3288 struct usb_hub *hub = usb_get_intfdata (intf);
3289 struct usb_device *hdev = hub->hdev;
3290 unsigned port1;
Sarah Sharp4296c70a2012-01-06 10:34:31 -08003291 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003292
Alan Sterncbb33002011-06-15 16:29:16 -04003293 /* Warn if children aren't already suspended */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003294 for (port1 = 1; port1 <= hdev->maxchild; port1++) {
3295 struct usb_device *udev;
3296
Lan Tianyuff823c792012-09-05 13:44:32 +08003297 udev = hub->ports[port1 - 1]->child;
Alan Stern6840d252007-09-10 11:34:26 -04003298 if (udev && udev->can_submit) {
Alan Sterncbb33002011-06-15 16:29:16 -04003299 dev_warn(&intf->dev, "port %d nyet suspended\n", port1);
Alan Stern5b1b0b82011-08-19 23:49:48 +02003300 if (PMSG_IS_AUTO(msg))
Alan Sterncbb33002011-06-15 16:29:16 -04003301 return -EBUSY;
David Brownellc9f89fa2005-09-13 19:57:04 -07003302 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003303 }
Ming Leie6f30de2012-10-24 11:59:24 +08003304
3305 if (hdev->do_remote_wakeup && hub->quirk_check_port_auto_suspend) {
3306 /* check if there are changes pending on hub ports */
3307 if (check_ports_changed(hub)) {
3308 if (PMSG_IS_AUTO(msg))
3309 return -EBUSY;
3310 pm_wakeup_event(&hdev->dev, 2000);
3311 }
3312 }
3313
Sarah Sharp4296c70a2012-01-06 10:34:31 -08003314 if (hub_is_superspeed(hdev) && hdev->do_remote_wakeup) {
3315 /* Enable hub to send remote wakeup for all ports. */
3316 for (port1 = 1; port1 <= hdev->maxchild; port1++) {
3317 status = set_port_feature(hdev,
3318 port1 |
3319 USB_PORT_FEAT_REMOTE_WAKE_CONNECT |
3320 USB_PORT_FEAT_REMOTE_WAKE_DISCONNECT |
3321 USB_PORT_FEAT_REMOTE_WAKE_OVER_CURRENT,
3322 USB_PORT_FEAT_REMOTE_WAKE_MASK);
3323 }
3324 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003325
Harvey Harrison441b62c2008-03-03 16:08:34 -08003326 dev_dbg(&intf->dev, "%s\n", __func__);
Alan Stern40f122f2006-11-09 14:44:33 -05003327
David Brownellc9f89fa2005-09-13 19:57:04 -07003328 /* stop khubd and related activity */
Alan Stern43303542008-04-28 11:07:31 -04003329 hub_quiesce(hub, HUB_SUSPEND);
Alan Sternb6f64362007-05-04 11:51:54 -04003330 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003331}
3332
3333static int hub_resume(struct usb_interface *intf)
3334{
Alan Stern5e6effa2008-03-03 15:15:51 -05003335 struct usb_hub *hub = usb_get_intfdata(intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003336
Alan Stern5e6effa2008-03-03 15:15:51 -05003337 dev_dbg(&intf->dev, "%s\n", __func__);
Alan Sternf2835212008-04-28 11:07:17 -04003338 hub_activate(hub, HUB_RESUME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003339 return 0;
3340}
3341
Alan Sternb41a60e2007-05-30 15:39:33 -04003342static int hub_reset_resume(struct usb_interface *intf)
Alan Sternf07600c2007-05-30 15:38:16 -04003343{
Alan Sternb41a60e2007-05-30 15:39:33 -04003344 struct usb_hub *hub = usb_get_intfdata(intf);
Alan Sternf07600c2007-05-30 15:38:16 -04003345
Alan Stern5e6effa2008-03-03 15:15:51 -05003346 dev_dbg(&intf->dev, "%s\n", __func__);
Alan Sternf2835212008-04-28 11:07:17 -04003347 hub_activate(hub, HUB_RESET_RESUME);
Alan Sternf07600c2007-05-30 15:38:16 -04003348 return 0;
3349}
3350
Alan Stern54515fe2007-05-30 15:38:58 -04003351/**
3352 * usb_root_hub_lost_power - called by HCD if the root hub lost Vbus power
3353 * @rhdev: struct usb_device for the root hub
3354 *
3355 * The USB host controller driver calls this function when its root hub
3356 * is resumed and Vbus power has been interrupted or the controller
Alan Sternfeccc302008-03-03 15:15:59 -05003357 * has been reset. The routine marks @rhdev as having lost power.
3358 * When the hub driver is resumed it will take notice and carry out
3359 * power-session recovery for all the "USB-PERSIST"-enabled child devices;
3360 * the others will be disconnected.
Alan Stern54515fe2007-05-30 15:38:58 -04003361 */
3362void usb_root_hub_lost_power(struct usb_device *rhdev)
3363{
3364 dev_warn(&rhdev->dev, "root hub lost power or was reset\n");
3365 rhdev->reset_resume = 1;
3366}
3367EXPORT_SYMBOL_GPL(usb_root_hub_lost_power);
3368
Sarah Sharp1ea7e0e2012-04-24 17:21:50 -07003369static const char * const usb3_lpm_names[] = {
3370 "U0",
3371 "U1",
3372 "U2",
3373 "U3",
3374};
3375
3376/*
3377 * Send a Set SEL control transfer to the device, prior to enabling
3378 * device-initiated U1 or U2. This lets the device know the exit latencies from
3379 * the time the device initiates a U1 or U2 exit, to the time it will receive a
3380 * packet from the host.
3381 *
3382 * This function will fail if the SEL or PEL values for udev are greater than
3383 * the maximum allowed values for the link state to be enabled.
3384 */
3385static int usb_req_set_sel(struct usb_device *udev, enum usb3_link_state state)
3386{
3387 struct usb_set_sel_req *sel_values;
3388 unsigned long long u1_sel;
3389 unsigned long long u1_pel;
3390 unsigned long long u2_sel;
3391 unsigned long long u2_pel;
3392 int ret;
3393
3394 /* Convert SEL and PEL stored in ns to us */
3395 u1_sel = DIV_ROUND_UP(udev->u1_params.sel, 1000);
3396 u1_pel = DIV_ROUND_UP(udev->u1_params.pel, 1000);
3397 u2_sel = DIV_ROUND_UP(udev->u2_params.sel, 1000);
3398 u2_pel = DIV_ROUND_UP(udev->u2_params.pel, 1000);
3399
3400 /*
3401 * Make sure that the calculated SEL and PEL values for the link
3402 * state we're enabling aren't bigger than the max SEL/PEL
3403 * value that will fit in the SET SEL control transfer.
3404 * Otherwise the device would get an incorrect idea of the exit
3405 * latency for the link state, and could start a device-initiated
3406 * U1/U2 when the exit latencies are too high.
3407 */
3408 if ((state == USB3_LPM_U1 &&
3409 (u1_sel > USB3_LPM_MAX_U1_SEL_PEL ||
3410 u1_pel > USB3_LPM_MAX_U1_SEL_PEL)) ||
3411 (state == USB3_LPM_U2 &&
3412 (u2_sel > USB3_LPM_MAX_U2_SEL_PEL ||
3413 u2_pel > USB3_LPM_MAX_U2_SEL_PEL))) {
Sarah Sharp1510a1a2012-10-05 10:30:35 -07003414 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 -07003415 usb3_lpm_names[state], u1_sel, u1_pel);
3416 return -EINVAL;
3417 }
3418
3419 /*
3420 * If we're enabling device-initiated LPM for one link state,
3421 * but the other link state has a too high SEL or PEL value,
3422 * just set those values to the max in the Set SEL request.
3423 */
3424 if (u1_sel > USB3_LPM_MAX_U1_SEL_PEL)
3425 u1_sel = USB3_LPM_MAX_U1_SEL_PEL;
3426
3427 if (u1_pel > USB3_LPM_MAX_U1_SEL_PEL)
3428 u1_pel = USB3_LPM_MAX_U1_SEL_PEL;
3429
3430 if (u2_sel > USB3_LPM_MAX_U2_SEL_PEL)
3431 u2_sel = USB3_LPM_MAX_U2_SEL_PEL;
3432
3433 if (u2_pel > USB3_LPM_MAX_U2_SEL_PEL)
3434 u2_pel = USB3_LPM_MAX_U2_SEL_PEL;
3435
3436 /*
3437 * usb_enable_lpm() can be called as part of a failed device reset,
3438 * which may be initiated by an error path of a mass storage driver.
3439 * Therefore, use GFP_NOIO.
3440 */
3441 sel_values = kmalloc(sizeof *(sel_values), GFP_NOIO);
3442 if (!sel_values)
3443 return -ENOMEM;
3444
3445 sel_values->u1_sel = u1_sel;
3446 sel_values->u1_pel = u1_pel;
3447 sel_values->u2_sel = cpu_to_le16(u2_sel);
3448 sel_values->u2_pel = cpu_to_le16(u2_pel);
3449
3450 ret = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
3451 USB_REQ_SET_SEL,
3452 USB_RECIP_DEVICE,
3453 0, 0,
3454 sel_values, sizeof *(sel_values),
3455 USB_CTRL_SET_TIMEOUT);
3456 kfree(sel_values);
3457 return ret;
3458}
3459
3460/*
3461 * Enable or disable device-initiated U1 or U2 transitions.
3462 */
3463static int usb_set_device_initiated_lpm(struct usb_device *udev,
3464 enum usb3_link_state state, bool enable)
3465{
3466 int ret;
3467 int feature;
3468
3469 switch (state) {
3470 case USB3_LPM_U1:
3471 feature = USB_DEVICE_U1_ENABLE;
3472 break;
3473 case USB3_LPM_U2:
3474 feature = USB_DEVICE_U2_ENABLE;
3475 break;
3476 default:
3477 dev_warn(&udev->dev, "%s: Can't %s non-U1 or U2 state.\n",
3478 __func__, enable ? "enable" : "disable");
3479 return -EINVAL;
3480 }
3481
3482 if (udev->state != USB_STATE_CONFIGURED) {
3483 dev_dbg(&udev->dev, "%s: Can't %s %s state "
3484 "for unconfigured device.\n",
3485 __func__, enable ? "enable" : "disable",
3486 usb3_lpm_names[state]);
3487 return 0;
3488 }
3489
3490 if (enable) {
3491 /*
Sarah Sharp1ea7e0e2012-04-24 17:21:50 -07003492 * Now send the control transfer to enable device-initiated LPM
3493 * for either U1 or U2.
3494 */
3495 ret = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
3496 USB_REQ_SET_FEATURE,
3497 USB_RECIP_DEVICE,
3498 feature,
3499 0, NULL, 0,
3500 USB_CTRL_SET_TIMEOUT);
3501 } else {
3502 ret = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
3503 USB_REQ_CLEAR_FEATURE,
3504 USB_RECIP_DEVICE,
3505 feature,
3506 0, NULL, 0,
3507 USB_CTRL_SET_TIMEOUT);
3508 }
3509 if (ret < 0) {
3510 dev_warn(&udev->dev, "%s of device-initiated %s failed.\n",
3511 enable ? "Enable" : "Disable",
3512 usb3_lpm_names[state]);
3513 return -EBUSY;
3514 }
3515 return 0;
3516}
3517
3518static int usb_set_lpm_timeout(struct usb_device *udev,
3519 enum usb3_link_state state, int timeout)
3520{
3521 int ret;
3522 int feature;
3523
3524 switch (state) {
3525 case USB3_LPM_U1:
3526 feature = USB_PORT_FEAT_U1_TIMEOUT;
3527 break;
3528 case USB3_LPM_U2:
3529 feature = USB_PORT_FEAT_U2_TIMEOUT;
3530 break;
3531 default:
3532 dev_warn(&udev->dev, "%s: Can't set timeout for non-U1 or U2 state.\n",
3533 __func__);
3534 return -EINVAL;
3535 }
3536
3537 if (state == USB3_LPM_U1 && timeout > USB3_LPM_U1_MAX_TIMEOUT &&
3538 timeout != USB3_LPM_DEVICE_INITIATED) {
3539 dev_warn(&udev->dev, "Failed to set %s timeout to 0x%x, "
3540 "which is a reserved value.\n",
3541 usb3_lpm_names[state], timeout);
3542 return -EINVAL;
3543 }
3544
3545 ret = set_port_feature(udev->parent,
3546 USB_PORT_LPM_TIMEOUT(timeout) | udev->portnum,
3547 feature);
3548 if (ret < 0) {
3549 dev_warn(&udev->dev, "Failed to set %s timeout to 0x%x,"
3550 "error code %i\n", usb3_lpm_names[state],
3551 timeout, ret);
3552 return -EBUSY;
3553 }
3554 if (state == USB3_LPM_U1)
3555 udev->u1_params.timeout = timeout;
3556 else
3557 udev->u2_params.timeout = timeout;
3558 return 0;
3559}
3560
3561/*
3562 * Enable the hub-initiated U1/U2 idle timeouts, and enable device-initiated
3563 * U1/U2 entry.
3564 *
3565 * We will attempt to enable U1 or U2, but there are no guarantees that the
3566 * control transfers to set the hub timeout or enable device-initiated U1/U2
3567 * will be successful.
3568 *
3569 * If we cannot set the parent hub U1/U2 timeout, we attempt to let the xHCI
3570 * driver know about it. If that call fails, it should be harmless, and just
3571 * take up more slightly more bus bandwidth for unnecessary U1/U2 exit latency.
3572 */
3573static void usb_enable_link_state(struct usb_hcd *hcd, struct usb_device *udev,
3574 enum usb3_link_state state)
3575{
Sarah Sharp65a95b72012-10-05 10:32:07 -07003576 int timeout, ret;
Sarah Sharpae8963a2012-10-03 11:18:05 -07003577 __u8 u1_mel = udev->bos->ss_cap->bU1devExitLat;
3578 __le16 u2_mel = udev->bos->ss_cap->bU2DevExitLat;
3579
3580 /* If the device says it doesn't have *any* exit latency to come out of
3581 * U1 or U2, it's probably lying. Assume it doesn't implement that link
3582 * state.
3583 */
3584 if ((state == USB3_LPM_U1 && u1_mel == 0) ||
3585 (state == USB3_LPM_U2 && u2_mel == 0))
3586 return;
Sarah Sharp1ea7e0e2012-04-24 17:21:50 -07003587
Sarah Sharp65a95b72012-10-05 10:32:07 -07003588 /*
3589 * First, let the device know about the exit latencies
3590 * associated with the link state we're about to enable.
3591 */
3592 ret = usb_req_set_sel(udev, state);
3593 if (ret < 0) {
3594 dev_warn(&udev->dev, "Set SEL for device-initiated %s failed.\n",
3595 usb3_lpm_names[state]);
3596 return;
3597 }
3598
Sarah Sharp1ea7e0e2012-04-24 17:21:50 -07003599 /* We allow the host controller to set the U1/U2 timeout internally
3600 * first, so that it can change its schedule to account for the
3601 * additional latency to send data to a device in a lower power
3602 * link state.
3603 */
3604 timeout = hcd->driver->enable_usb3_lpm_timeout(hcd, udev, state);
3605
3606 /* xHCI host controller doesn't want to enable this LPM state. */
3607 if (timeout == 0)
3608 return;
3609
3610 if (timeout < 0) {
3611 dev_warn(&udev->dev, "Could not enable %s link state, "
3612 "xHCI error %i.\n", usb3_lpm_names[state],
3613 timeout);
3614 return;
3615 }
3616
3617 if (usb_set_lpm_timeout(udev, state, timeout))
3618 /* If we can't set the parent hub U1/U2 timeout,
3619 * device-initiated LPM won't be allowed either, so let the xHCI
3620 * host know that this link state won't be enabled.
3621 */
3622 hcd->driver->disable_usb3_lpm_timeout(hcd, udev, state);
3623
3624 /* Only a configured device will accept the Set Feature U1/U2_ENABLE */
3625 else if (udev->actconfig)
3626 usb_set_device_initiated_lpm(udev, state, true);
3627
3628}
3629
3630/*
3631 * Disable the hub-initiated U1/U2 idle timeouts, and disable device-initiated
3632 * U1/U2 entry.
3633 *
3634 * If this function returns -EBUSY, the parent hub will still allow U1/U2 entry.
3635 * If zero is returned, the parent will not allow the link to go into U1/U2.
3636 *
3637 * If zero is returned, device-initiated U1/U2 entry may still be enabled, but
3638 * it won't have an effect on the bus link state because the parent hub will
3639 * still disallow device-initiated U1/U2 entry.
3640 *
3641 * If zero is returned, the xHCI host controller may still think U1/U2 entry is
3642 * possible. The result will be slightly more bus bandwidth will be taken up
3643 * (to account for U1/U2 exit latency), but it should be harmless.
3644 */
3645static int usb_disable_link_state(struct usb_hcd *hcd, struct usb_device *udev,
3646 enum usb3_link_state state)
3647{
3648 int feature;
3649
3650 switch (state) {
3651 case USB3_LPM_U1:
3652 feature = USB_PORT_FEAT_U1_TIMEOUT;
3653 break;
3654 case USB3_LPM_U2:
3655 feature = USB_PORT_FEAT_U2_TIMEOUT;
3656 break;
3657 default:
3658 dev_warn(&udev->dev, "%s: Can't disable non-U1 or U2 state.\n",
3659 __func__);
3660 return -EINVAL;
3661 }
3662
3663 if (usb_set_lpm_timeout(udev, state, 0))
3664 return -EBUSY;
3665
3666 usb_set_device_initiated_lpm(udev, state, false);
3667
3668 if (hcd->driver->disable_usb3_lpm_timeout(hcd, udev, state))
3669 dev_warn(&udev->dev, "Could not disable xHCI %s timeout, "
3670 "bus schedule bandwidth may be impacted.\n",
3671 usb3_lpm_names[state]);
3672 return 0;
3673}
3674
3675/*
3676 * Disable hub-initiated and device-initiated U1 and U2 entry.
3677 * Caller must own the bandwidth_mutex.
3678 *
3679 * This will call usb_enable_lpm() on failure, which will decrement
3680 * lpm_disable_count, and will re-enable LPM if lpm_disable_count reaches zero.
3681 */
3682int usb_disable_lpm(struct usb_device *udev)
3683{
3684 struct usb_hcd *hcd;
3685
3686 if (!udev || !udev->parent ||
3687 udev->speed != USB_SPEED_SUPER ||
3688 !udev->lpm_capable)
3689 return 0;
3690
3691 hcd = bus_to_hcd(udev->bus);
3692 if (!hcd || !hcd->driver->disable_usb3_lpm_timeout)
3693 return 0;
3694
3695 udev->lpm_disable_count++;
Dan Carpenter55558c32012-05-22 20:54:34 +03003696 if ((udev->u1_params.timeout == 0 && udev->u2_params.timeout == 0))
Sarah Sharp1ea7e0e2012-04-24 17:21:50 -07003697 return 0;
3698
3699 /* If LPM is enabled, attempt to disable it. */
3700 if (usb_disable_link_state(hcd, udev, USB3_LPM_U1))
3701 goto enable_lpm;
3702 if (usb_disable_link_state(hcd, udev, USB3_LPM_U2))
3703 goto enable_lpm;
3704
3705 return 0;
3706
3707enable_lpm:
3708 usb_enable_lpm(udev);
3709 return -EBUSY;
3710}
3711EXPORT_SYMBOL_GPL(usb_disable_lpm);
3712
3713/* Grab the bandwidth_mutex before calling usb_disable_lpm() */
3714int usb_unlocked_disable_lpm(struct usb_device *udev)
3715{
3716 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
3717 int ret;
3718
3719 if (!hcd)
3720 return -EINVAL;
3721
3722 mutex_lock(hcd->bandwidth_mutex);
3723 ret = usb_disable_lpm(udev);
3724 mutex_unlock(hcd->bandwidth_mutex);
3725
3726 return ret;
3727}
3728EXPORT_SYMBOL_GPL(usb_unlocked_disable_lpm);
3729
3730/*
3731 * Attempt to enable device-initiated and hub-initiated U1 and U2 entry. The
3732 * xHCI host policy may prevent U1 or U2 from being enabled.
3733 *
3734 * Other callers may have disabled link PM, so U1 and U2 entry will be disabled
3735 * until the lpm_disable_count drops to zero. Caller must own the
3736 * bandwidth_mutex.
3737 */
3738void usb_enable_lpm(struct usb_device *udev)
3739{
3740 struct usb_hcd *hcd;
3741
3742 if (!udev || !udev->parent ||
3743 udev->speed != USB_SPEED_SUPER ||
3744 !udev->lpm_capable)
3745 return;
3746
3747 udev->lpm_disable_count--;
3748 hcd = bus_to_hcd(udev->bus);
3749 /* Double check that we can both enable and disable LPM.
3750 * Device must be configured to accept set feature U1/U2 timeout.
3751 */
3752 if (!hcd || !hcd->driver->enable_usb3_lpm_timeout ||
3753 !hcd->driver->disable_usb3_lpm_timeout)
3754 return;
3755
3756 if (udev->lpm_disable_count > 0)
3757 return;
3758
3759 usb_enable_link_state(hcd, udev, USB3_LPM_U1);
3760 usb_enable_link_state(hcd, udev, USB3_LPM_U2);
3761}
3762EXPORT_SYMBOL_GPL(usb_enable_lpm);
3763
3764/* Grab the bandwidth_mutex before calling usb_enable_lpm() */
3765void usb_unlocked_enable_lpm(struct usb_device *udev)
3766{
3767 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
3768
3769 if (!hcd)
3770 return;
3771
3772 mutex_lock(hcd->bandwidth_mutex);
3773 usb_enable_lpm(udev);
3774 mutex_unlock(hcd->bandwidth_mutex);
3775}
3776EXPORT_SYMBOL_GPL(usb_unlocked_enable_lpm);
3777
3778
Alan Sternd388dab2006-07-01 22:14:24 -04003779#else /* CONFIG_PM */
3780
Alan Sternf07600c2007-05-30 15:38:16 -04003781#define hub_suspend NULL
3782#define hub_resume NULL
3783#define hub_reset_resume NULL
Sarah Sharp1ea7e0e2012-04-24 17:21:50 -07003784
3785int usb_disable_lpm(struct usb_device *udev)
3786{
3787 return 0;
3788}
Sarah Sharpe9261fb2012-05-21 08:29:01 -07003789EXPORT_SYMBOL_GPL(usb_disable_lpm);
Sarah Sharp1ea7e0e2012-04-24 17:21:50 -07003790
3791void usb_enable_lpm(struct usb_device *udev) { }
Sarah Sharpe9261fb2012-05-21 08:29:01 -07003792EXPORT_SYMBOL_GPL(usb_enable_lpm);
Sarah Sharp1ea7e0e2012-04-24 17:21:50 -07003793
3794int usb_unlocked_disable_lpm(struct usb_device *udev)
3795{
3796 return 0;
3797}
Sarah Sharpe9261fb2012-05-21 08:29:01 -07003798EXPORT_SYMBOL_GPL(usb_unlocked_disable_lpm);
Sarah Sharp1ea7e0e2012-04-24 17:21:50 -07003799
3800void usb_unlocked_enable_lpm(struct usb_device *udev) { }
Sarah Sharpe9261fb2012-05-21 08:29:01 -07003801EXPORT_SYMBOL_GPL(usb_unlocked_enable_lpm);
Sarah Sharpf74631e2012-06-25 12:08:08 -07003802
3803int usb_disable_ltm(struct usb_device *udev)
3804{
3805 return 0;
3806}
3807EXPORT_SYMBOL_GPL(usb_disable_ltm);
3808
3809void usb_enable_ltm(struct usb_device *udev) { }
3810EXPORT_SYMBOL_GPL(usb_enable_ltm);
Alan Sternd388dab2006-07-01 22:14:24 -04003811#endif
3812
Linus Torvalds1da177e2005-04-16 15:20:36 -07003813
3814/* USB 2.0 spec, 7.1.7.3 / fig 7-29:
3815 *
3816 * Between connect detection and reset signaling there must be a delay
3817 * of 100ms at least for debounce and power-settling. The corresponding
3818 * timer shall restart whenever the downstream port detects a disconnect.
3819 *
3820 * Apparently there are some bluetooth and irda-dongles and a number of
3821 * low-speed devices for which this debounce period may last over a second.
3822 * Not covered by the spec - but easy to deal with.
3823 *
3824 * This implementation uses a 1500ms total debounce timeout; if the
3825 * connection isn't stable by then it returns -ETIMEDOUT. It checks
3826 * every 25ms for transient disconnects. When the port status has been
3827 * unchanged for 100ms it returns the port status.
3828 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003829static int hub_port_debounce(struct usb_hub *hub, int port1)
3830{
3831 int ret;
3832 int total_time, stable_time = 0;
3833 u16 portchange, portstatus;
3834 unsigned connection = 0xffff;
3835
3836 for (total_time = 0; ; total_time += HUB_DEBOUNCE_STEP) {
3837 ret = hub_port_status(hub, port1, &portstatus, &portchange);
3838 if (ret < 0)
3839 return ret;
3840
3841 if (!(portchange & USB_PORT_STAT_C_CONNECTION) &&
3842 (portstatus & USB_PORT_STAT_CONNECTION) == connection) {
3843 stable_time += HUB_DEBOUNCE_STEP;
3844 if (stable_time >= HUB_DEBOUNCE_STABLE)
3845 break;
3846 } else {
3847 stable_time = 0;
3848 connection = portstatus & USB_PORT_STAT_CONNECTION;
3849 }
3850
3851 if (portchange & USB_PORT_STAT_C_CONNECTION) {
3852 clear_port_feature(hub->hdev, port1,
3853 USB_PORT_FEAT_C_CONNECTION);
3854 }
3855
3856 if (total_time >= HUB_DEBOUNCE_TIMEOUT)
3857 break;
3858 msleep(HUB_DEBOUNCE_STEP);
3859 }
3860
3861 dev_dbg (hub->intfdev,
3862 "debounce: port %d: total %dms stable %dms status 0x%x\n",
3863 port1, total_time, stable_time, portstatus);
3864
3865 if (stable_time < HUB_DEBOUNCE_STABLE)
3866 return -ETIMEDOUT;
3867 return portstatus;
3868}
3869
Inaky Perez-Gonzalezfc721f52008-04-08 13:24:46 -07003870void usb_ep0_reinit(struct usb_device *udev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003871{
Alan Sternddeac4e2009-01-15 17:03:33 -05003872 usb_disable_endpoint(udev, 0 + USB_DIR_IN, true);
3873 usb_disable_endpoint(udev, 0 + USB_DIR_OUT, true);
Alan Stern2caf7fc2008-12-31 11:31:33 -05003874 usb_enable_endpoint(udev, &udev->ep0, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003875}
Inaky Perez-Gonzalezfc721f52008-04-08 13:24:46 -07003876EXPORT_SYMBOL_GPL(usb_ep0_reinit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003877
3878#define usb_sndaddr0pipe() (PIPE_CONTROL << 30)
3879#define usb_rcvaddr0pipe() ((PIPE_CONTROL << 30) | USB_DIR_IN)
3880
Alan Stern4326ed02007-07-30 17:08:43 -04003881static int hub_set_address(struct usb_device *udev, int devnum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003882{
3883 int retval;
Sarah Sharpc6515272009-04-27 19:57:26 -07003884 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003885
Sarah Sharpc6515272009-04-27 19:57:26 -07003886 /*
3887 * The host controller will choose the device address,
3888 * instead of the core having chosen it earlier
3889 */
3890 if (!hcd->driver->address_device && devnum <= 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003891 return -EINVAL;
3892 if (udev->state == USB_STATE_ADDRESS)
3893 return 0;
3894 if (udev->state != USB_STATE_DEFAULT)
3895 return -EINVAL;
Andiry Xuc8d4af82010-10-14 07:22:51 -07003896 if (hcd->driver->address_device)
Sarah Sharpc6515272009-04-27 19:57:26 -07003897 retval = hcd->driver->address_device(hcd, udev);
Andiry Xuc8d4af82010-10-14 07:22:51 -07003898 else
Sarah Sharpc6515272009-04-27 19:57:26 -07003899 retval = usb_control_msg(udev, usb_sndaddr0pipe(),
3900 USB_REQ_SET_ADDRESS, 0, devnum, 0,
3901 NULL, 0, USB_CTRL_SET_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003902 if (retval == 0) {
Alan Stern3b29b682011-02-22 09:53:41 -05003903 update_devnum(udev, devnum);
David Vrabel4953d142008-04-08 13:24:46 -07003904 /* Device now using proper address. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003905 usb_set_device_state(udev, USB_STATE_ADDRESS);
Inaky Perez-Gonzalezfc721f52008-04-08 13:24:46 -07003906 usb_ep0_reinit(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003907 }
3908 return retval;
3909}
3910
3911/* Reset device, (re)assign address, get device descriptor.
3912 * Device connection must be stable, no more debouncing needed.
3913 * Returns device in USB_STATE_ADDRESS, except on error.
3914 *
3915 * If this is called for an already-existing device (as part of
Ming Lei742120c2008-06-18 22:00:29 +08003916 * usb_reset_and_verify_device), the caller must own the device lock. For a
Linus Torvalds1da177e2005-04-16 15:20:36 -07003917 * newly detected device that is not accessible through any global
3918 * pointers, it's not necessary to lock the device.
3919 */
3920static int
3921hub_port_init (struct usb_hub *hub, struct usb_device *udev, int port1,
3922 int retry_counter)
3923{
Arjan van de Ven4186ecf2006-01-11 15:55:29 +01003924 static DEFINE_MUTEX(usb_address0_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003925
3926 struct usb_device *hdev = hub->hdev;
Sarah Sharpe7b77172009-04-27 19:54:26 -07003927 struct usb_hcd *hcd = bus_to_hcd(hdev->bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003928 int i, j, retval;
3929 unsigned delay = HUB_SHORT_RESET_TIME;
3930 enum usb_device_speed oldspeed = udev->speed;
Michal Nazarewicze538dfd2011-08-30 17:11:19 +02003931 const char *speed;
Alan Stern4326ed02007-07-30 17:08:43 -04003932 int devnum = udev->devnum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003933
3934 /* root hub ports have a slightly longer reset period
3935 * (from USB 2.0 spec, section 7.1.7.5)
3936 */
3937 if (!hdev->parent) {
3938 delay = HUB_ROOT_RESET_TIME;
3939 if (port1 == hdev->bus->otg_port)
3940 hdev->bus->b_hnp_enable = 0;
3941 }
3942
3943 /* Some low speed devices have problems with the quick delay, so */
3944 /* be a bit pessimistic with those devices. RHbug #23670 */
3945 if (oldspeed == USB_SPEED_LOW)
3946 delay = HUB_LONG_RESET_TIME;
3947
Arjan van de Ven4186ecf2006-01-11 15:55:29 +01003948 mutex_lock(&usb_address0_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003949
Luben Tuikov07194ab2011-02-11 11:33:10 -08003950 /* Reset the device; full speed may morph to high speed */
3951 /* FIXME a USB 2.0 device may morph into SuperSpeed on reset. */
Andiry Xu75d7cf72011-09-13 16:41:11 -07003952 retval = hub_port_reset(hub, port1, udev, delay, false);
Luben Tuikov07194ab2011-02-11 11:33:10 -08003953 if (retval < 0) /* error or disconnect */
3954 goto fail;
3955 /* success, speed is known */
3956
Linus Torvalds1da177e2005-04-16 15:20:36 -07003957 retval = -ENODEV;
3958
3959 if (oldspeed != USB_SPEED_UNKNOWN && oldspeed != udev->speed) {
3960 dev_dbg(&udev->dev, "device reset changed speed!\n");
3961 goto fail;
3962 }
3963 oldspeed = udev->speed;
Alan Stern4326ed02007-07-30 17:08:43 -04003964
Linus Torvalds1da177e2005-04-16 15:20:36 -07003965 /* USB 2.0 section 5.5.3 talks about ep0 maxpacket ...
3966 * it's fixed size except for full speed devices.
Inaky Perez-Gonzalez5bb6e0a2006-08-25 19:35:30 -07003967 * For Wireless USB devices, ep0 max packet is always 512 (tho
3968 * reported as 0xff in the device descriptor). WUSB1.0[4.8.1].
Linus Torvalds1da177e2005-04-16 15:20:36 -07003969 */
3970 switch (udev->speed) {
Sarah Sharp6b403b02009-04-27 19:54:10 -07003971 case USB_SPEED_SUPER:
Greg Kroah-Hartman551cdbb2010-01-14 11:08:04 -08003972 case USB_SPEED_WIRELESS: /* fixed at 512 */
Harvey Harrison551509d2009-02-11 14:11:36 -08003973 udev->ep0.desc.wMaxPacketSize = cpu_to_le16(512);
Inaky Perez-Gonzalez5bb6e0a2006-08-25 19:35:30 -07003974 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003975 case USB_SPEED_HIGH: /* fixed at 64 */
Harvey Harrison551509d2009-02-11 14:11:36 -08003976 udev->ep0.desc.wMaxPacketSize = cpu_to_le16(64);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003977 break;
3978 case USB_SPEED_FULL: /* 8, 16, 32, or 64 */
3979 /* to determine the ep0 maxpacket size, try to read
3980 * the device descriptor to get bMaxPacketSize0 and
3981 * then correct our initial guess.
3982 */
Harvey Harrison551509d2009-02-11 14:11:36 -08003983 udev->ep0.desc.wMaxPacketSize = cpu_to_le16(64);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003984 break;
3985 case USB_SPEED_LOW: /* fixed at 8 */
Harvey Harrison551509d2009-02-11 14:11:36 -08003986 udev->ep0.desc.wMaxPacketSize = cpu_to_le16(8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003987 break;
3988 default:
3989 goto fail;
3990 }
Michal Nazarewicze538dfd2011-08-30 17:11:19 +02003991
3992 if (udev->speed == USB_SPEED_WIRELESS)
3993 speed = "variable speed Wireless";
3994 else
3995 speed = usb_speed_string(udev->speed);
3996
Sarah Sharpc6515272009-04-27 19:57:26 -07003997 if (udev->speed != USB_SPEED_SUPER)
3998 dev_info(&udev->dev,
Michal Nazarewicze538dfd2011-08-30 17:11:19 +02003999 "%s %s USB device number %d using %s\n",
4000 (udev->config) ? "reset" : "new", speed,
Alan Stern3b29b682011-02-22 09:53:41 -05004001 devnum, udev->bus->controller->driver->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004002
4003 /* Set up TT records, if needed */
4004 if (hdev->tt) {
4005 udev->tt = hdev->tt;
4006 udev->ttport = hdev->ttport;
4007 } else if (udev->speed != USB_SPEED_HIGH
4008 && hdev->speed == USB_SPEED_HIGH) {
Alan Sternd199c962011-01-31 10:56:37 -05004009 if (!hub->tt.hub) {
4010 dev_err(&udev->dev, "parent hub has no TT\n");
4011 retval = -EINVAL;
4012 goto fail;
4013 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004014 udev->tt = &hub->tt;
4015 udev->ttport = port1;
4016 }
4017
4018 /* Why interleave GET_DESCRIPTOR and SET_ADDRESS this way?
4019 * Because device hardware and firmware is sometimes buggy in
4020 * this area, and this is how Linux has done it for ages.
4021 * Change it cautiously.
4022 *
4023 * NOTE: If USE_NEW_SCHEME() is true we will start by issuing
4024 * a 64-byte GET_DESCRIPTOR request. This is what Windows does,
4025 * so it may help with some non-standards-compliant devices.
4026 * Otherwise we start with SET_ADDRESS and then try to read the
4027 * first 8 bytes of the device descriptor to get the ep0 maxpacket
4028 * value.
4029 */
4030 for (i = 0; i < GET_DESCRIPTOR_TRIES; (++i, msleep(100))) {
Sarah Sharpc6515272009-04-27 19:57:26 -07004031 if (USE_NEW_SCHEME(retry_counter) && !(hcd->driver->flags & HCD_USB3)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004032 struct usb_device_descriptor *buf;
4033 int r = 0;
4034
4035#define GET_DESCRIPTOR_BUFSIZE 64
4036 buf = kmalloc(GET_DESCRIPTOR_BUFSIZE, GFP_NOIO);
4037 if (!buf) {
4038 retval = -ENOMEM;
4039 continue;
4040 }
4041
Alan Sternb89ee192007-05-11 10:19:04 -04004042 /* Retry on all errors; some devices are flakey.
4043 * 255 is for WUSB devices, we actually need to use
4044 * 512 (WUSB1.0[4.8.1]).
Linus Torvalds1da177e2005-04-16 15:20:36 -07004045 */
4046 for (j = 0; j < 3; ++j) {
4047 buf->bMaxPacketSize0 = 0;
4048 r = usb_control_msg(udev, usb_rcvaddr0pipe(),
4049 USB_REQ_GET_DESCRIPTOR, USB_DIR_IN,
4050 USB_DT_DEVICE << 8, 0,
4051 buf, GET_DESCRIPTOR_BUFSIZE,
Jaroslav Kyselafd7c5192008-10-10 16:24:45 +02004052 initial_descriptor_timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004053 switch (buf->bMaxPacketSize0) {
Inaky Perez-Gonzalez5bb6e0a2006-08-25 19:35:30 -07004054 case 8: case 16: case 32: case 64: case 255:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004055 if (buf->bDescriptorType ==
4056 USB_DT_DEVICE) {
4057 r = 0;
4058 break;
4059 }
4060 /* FALL THROUGH */
4061 default:
4062 if (r == 0)
4063 r = -EPROTO;
4064 break;
4065 }
4066 if (r == 0)
4067 break;
4068 }
4069 udev->descriptor.bMaxPacketSize0 =
4070 buf->bMaxPacketSize0;
4071 kfree(buf);
4072
Andiry Xu75d7cf72011-09-13 16:41:11 -07004073 retval = hub_port_reset(hub, port1, udev, delay, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004074 if (retval < 0) /* error or disconnect */
4075 goto fail;
4076 if (oldspeed != udev->speed) {
4077 dev_dbg(&udev->dev,
4078 "device reset changed speed!\n");
4079 retval = -ENODEV;
4080 goto fail;
4081 }
4082 if (r) {
Wu Fengguangb9cef6c2008-12-15 15:32:01 +08004083 dev_err(&udev->dev,
4084 "device descriptor read/64, error %d\n",
4085 r);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004086 retval = -EMSGSIZE;
4087 continue;
4088 }
4089#undef GET_DESCRIPTOR_BUFSIZE
4090 }
4091
Inaky Perez-Gonzalez6c529cd2008-04-08 13:24:46 -07004092 /*
4093 * If device is WUSB, we already assigned an
4094 * unauthorized address in the Connect Ack sequence;
4095 * authorization will assign the final address.
4096 */
Sarah Sharpc6515272009-04-27 19:57:26 -07004097 if (udev->wusb == 0) {
Inaky Perez-Gonzalez6c529cd2008-04-08 13:24:46 -07004098 for (j = 0; j < SET_ADDRESS_TRIES; ++j) {
4099 retval = hub_set_address(udev, devnum);
4100 if (retval >= 0)
4101 break;
4102 msleep(200);
4103 }
4104 if (retval < 0) {
4105 dev_err(&udev->dev,
4106 "device not accepting address %d, error %d\n",
4107 devnum, retval);
4108 goto fail;
4109 }
Sarah Sharpc6515272009-04-27 19:57:26 -07004110 if (udev->speed == USB_SPEED_SUPER) {
4111 devnum = udev->devnum;
4112 dev_info(&udev->dev,
Alan Stern3b29b682011-02-22 09:53:41 -05004113 "%s SuperSpeed USB device number %d using %s\n",
Sarah Sharpc6515272009-04-27 19:57:26 -07004114 (udev->config) ? "reset" : "new",
Alan Stern3b29b682011-02-22 09:53:41 -05004115 devnum, udev->bus->controller->driver->name);
Sarah Sharpc6515272009-04-27 19:57:26 -07004116 }
Inaky Perez-Gonzalez6c529cd2008-04-08 13:24:46 -07004117
4118 /* cope with hardware quirkiness:
4119 * - let SET_ADDRESS settle, some device hardware wants it
4120 * - read ep0 maxpacket even for high and low speed,
4121 */
4122 msleep(10);
Sarah Sharpc6515272009-04-27 19:57:26 -07004123 if (USE_NEW_SCHEME(retry_counter) && !(hcd->driver->flags & HCD_USB3))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004124 break;
Inaky Perez-Gonzalez6c529cd2008-04-08 13:24:46 -07004125 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004126
4127 retval = usb_get_device_descriptor(udev, 8);
4128 if (retval < 8) {
Wu Fengguangb9cef6c2008-12-15 15:32:01 +08004129 dev_err(&udev->dev,
4130 "device descriptor read/8, error %d\n",
4131 retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004132 if (retval >= 0)
4133 retval = -EMSGSIZE;
4134 } else {
4135 retval = 0;
4136 break;
4137 }
4138 }
4139 if (retval)
4140 goto fail;
4141
Peter Chenb76baa82012-11-09 09:44:43 +08004142 if (hcd->phy && !hdev->parent)
Peter Chenac965112012-11-09 09:44:44 +08004143 usb_phy_notify_connect(hcd->phy, udev->speed);
Peter Chenb76baa82012-11-09 09:44:43 +08004144
Elric Fud8aec3d2012-03-26 21:16:02 +08004145 /*
4146 * Some superspeed devices have finished the link training process
4147 * and attached to a superspeed hub port, but the device descriptor
4148 * got from those devices show they aren't superspeed devices. Warm
4149 * reset the port attached by the devices can fix them.
4150 */
4151 if ((udev->speed == USB_SPEED_SUPER) &&
4152 (le16_to_cpu(udev->descriptor.bcdUSB) < 0x0300)) {
4153 dev_err(&udev->dev, "got a wrong device descriptor, "
4154 "warm reset device\n");
4155 hub_port_reset(hub, port1, udev,
4156 HUB_BH_RESET_TIME, true);
4157 retval = -EINVAL;
4158 goto fail;
4159 }
4160
Sarah Sharp6b403b02009-04-27 19:54:10 -07004161 if (udev->descriptor.bMaxPacketSize0 == 0xff ||
4162 udev->speed == USB_SPEED_SUPER)
4163 i = 512;
4164 else
4165 i = udev->descriptor.bMaxPacketSize0;
Kuninori Morimoto29cc8892011-08-23 03:12:03 -07004166 if (usb_endpoint_maxp(&udev->ep0.desc) != i) {
Alan Stern56626a72010-10-14 15:25:21 -04004167 if (udev->speed == USB_SPEED_LOW ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07004168 !(i == 8 || i == 16 || i == 32 || i == 64)) {
Alan Stern56626a72010-10-14 15:25:21 -04004169 dev_err(&udev->dev, "Invalid ep0 maxpacket: %d\n", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004170 retval = -EMSGSIZE;
4171 goto fail;
4172 }
Alan Stern56626a72010-10-14 15:25:21 -04004173 if (udev->speed == USB_SPEED_FULL)
4174 dev_dbg(&udev->dev, "ep0 maxpacket = %d\n", i);
4175 else
4176 dev_warn(&udev->dev, "Using ep0 maxpacket: %d\n", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004177 udev->ep0.desc.wMaxPacketSize = cpu_to_le16(i);
Inaky Perez-Gonzalezfc721f52008-04-08 13:24:46 -07004178 usb_ep0_reinit(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004179 }
4180
4181 retval = usb_get_device_descriptor(udev, USB_DT_DEVICE_SIZE);
4182 if (retval < (signed)sizeof(udev->descriptor)) {
Wu Fengguangb9cef6c2008-12-15 15:32:01 +08004183 dev_err(&udev->dev, "device descriptor read/all, error %d\n",
4184 retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004185 if (retval >= 0)
4186 retval = -ENOMSG;
4187 goto fail;
4188 }
4189
Andiry Xu1ff4df52011-09-23 14:19:48 -07004190 if (udev->wusb == 0 && le16_to_cpu(udev->descriptor.bcdUSB) >= 0x0201) {
4191 retval = usb_get_bos_descriptor(udev);
Sarah Sharp51e0a012012-02-20 12:02:19 -08004192 if (!retval) {
Sarah Sharpd9b20992012-02-20 08:31:26 -08004193 udev->lpm_capable = usb_device_supports_lpm(udev);
Sarah Sharp51e0a012012-02-20 12:02:19 -08004194 usb_set_lpm_parameters(udev);
4195 }
Andiry Xu1ff4df52011-09-23 14:19:48 -07004196 }
Andiry Xu3148bf02011-09-23 14:19:47 -07004197
Linus Torvalds1da177e2005-04-16 15:20:36 -07004198 retval = 0;
Alek Du48f24972010-06-04 15:47:55 +08004199 /* notify HCD that we have a device connected and addressed */
4200 if (hcd->driver->update_device)
4201 hcd->driver->update_device(hcd, udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004202fail:
Alan Stern4326ed02007-07-30 17:08:43 -04004203 if (retval) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004204 hub_port_disable(hub, port1, 0);
Alan Stern3b29b682011-02-22 09:53:41 -05004205 update_devnum(udev, devnum); /* for disconnect processing */
Alan Stern4326ed02007-07-30 17:08:43 -04004206 }
Arjan van de Ven4186ecf2006-01-11 15:55:29 +01004207 mutex_unlock(&usb_address0_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004208 return retval;
4209}
4210
4211static void
4212check_highspeed (struct usb_hub *hub, struct usb_device *udev, int port1)
4213{
4214 struct usb_qualifier_descriptor *qual;
4215 int status;
4216
Christoph Lametere94b1762006-12-06 20:33:17 -08004217 qual = kmalloc (sizeof *qual, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004218 if (qual == NULL)
4219 return;
4220
4221 status = usb_get_descriptor (udev, USB_DT_DEVICE_QUALIFIER, 0,
4222 qual, sizeof *qual);
4223 if (status == sizeof *qual) {
4224 dev_info(&udev->dev, "not running at top speed; "
4225 "connect to a high speed hub\n");
4226 /* hub LEDs are probably harder to miss than syslog */
4227 if (hub->has_indicators) {
4228 hub->indicator[port1-1] = INDICATOR_GREEN_BLINK;
David Howellsc4028952006-11-22 14:57:56 +00004229 schedule_delayed_work (&hub->leds, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004230 }
4231 }
Jesper Juhl1bc3c9e2005-04-18 17:39:34 -07004232 kfree(qual);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004233}
4234
4235static unsigned
4236hub_power_remaining (struct usb_hub *hub)
4237{
4238 struct usb_device *hdev = hub->hdev;
4239 int remaining;
Alan Stern55c52712005-11-23 12:03:12 -05004240 int port1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004241
Alan Stern55c52712005-11-23 12:03:12 -05004242 if (!hub->limited_power)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004243 return 0;
4244
Alan Stern55c52712005-11-23 12:03:12 -05004245 remaining = hdev->bus_mA - hub->descriptor->bHubContrCurrent;
4246 for (port1 = 1; port1 <= hdev->maxchild; ++port1) {
Lan Tianyuff823c792012-09-05 13:44:32 +08004247 struct usb_device *udev = hub->ports[port1 - 1]->child;
Alan Stern55c52712005-11-23 12:03:12 -05004248 int delta;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004249
4250 if (!udev)
4251 continue;
4252
Alan Stern55c52712005-11-23 12:03:12 -05004253 /* Unconfigured devices may not use more than 100mA,
4254 * or 8mA for OTG ports */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004255 if (udev->actconfig)
Alan Stern55c52712005-11-23 12:03:12 -05004256 delta = udev->actconfig->desc.bMaxPower * 2;
4257 else if (port1 != udev->bus->otg_port || hdev->parent)
4258 delta = 100;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004259 else
Alan Stern55c52712005-11-23 12:03:12 -05004260 delta = 8;
4261 if (delta > hub->mA_per_port)
Wu Fengguangb9cef6c2008-12-15 15:32:01 +08004262 dev_warn(&udev->dev,
4263 "%dmA is over %umA budget for port %d!\n",
4264 delta, hub->mA_per_port, port1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004265 remaining -= delta;
4266 }
4267 if (remaining < 0) {
Alan Stern55c52712005-11-23 12:03:12 -05004268 dev_warn(hub->intfdev, "%dmA over power budget!\n",
4269 - remaining);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004270 remaining = 0;
4271 }
4272 return remaining;
4273}
4274
4275/* Handle physical or logical connection change events.
4276 * This routine is called when:
4277 * a port connection-change occurs;
4278 * a port enable-change occurs (often caused by EMI);
Ming Lei742120c2008-06-18 22:00:29 +08004279 * usb_reset_and_verify_device() encounters changed descriptors (as from
Linus Torvalds1da177e2005-04-16 15:20:36 -07004280 * a firmware download)
4281 * caller already locked the hub
4282 */
4283static void hub_port_connect_change(struct usb_hub *hub, int port1,
4284 u16 portstatus, u16 portchange)
4285{
4286 struct usb_device *hdev = hub->hdev;
4287 struct device *hub_dev = hub->intfdev;
Balaji Rao90da0962007-11-22 01:58:14 +05304288 struct usb_hcd *hcd = bus_to_hcd(hdev->bus);
Alan Stern24618b02008-04-28 11:06:28 -04004289 unsigned wHubCharacteristics =
4290 le16_to_cpu(hub->descriptor->wHubCharacteristics);
Alan Stern8808f002008-04-28 11:06:55 -04004291 struct usb_device *udev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004292 int status, i;
Alan Stern24618b02008-04-28 11:06:28 -04004293
Linus Torvalds1da177e2005-04-16 15:20:36 -07004294 dev_dbg (hub_dev,
4295 "port %d, status %04x, change %04x, %s\n",
Sarah Sharp131dec32010-12-06 21:00:19 -08004296 port1, portstatus, portchange, portspeed(hub, portstatus));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004297
4298 if (hub->has_indicators) {
4299 set_port_led(hub, port1, HUB_LED_AUTO);
4300 hub->indicator[port1-1] = INDICATOR_AUTO;
4301 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004302
4303#ifdef CONFIG_USB_OTG
4304 /* during HNP, don't repeat the debounce */
4305 if (hdev->bus->is_b_host)
Alan Stern24618b02008-04-28 11:06:28 -04004306 portchange &= ~(USB_PORT_STAT_C_CONNECTION |
4307 USB_PORT_STAT_C_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004308#endif
4309
Alan Stern8808f002008-04-28 11:06:55 -04004310 /* Try to resuscitate an existing device */
Lan Tianyuff823c792012-09-05 13:44:32 +08004311 udev = hub->ports[port1 - 1]->child;
Alan Stern8808f002008-04-28 11:06:55 -04004312 if ((portstatus & USB_PORT_STAT_CONNECTION) && udev &&
4313 udev->state != USB_STATE_NOTATTACHED) {
Alan Stern8808f002008-04-28 11:06:55 -04004314 usb_lock_device(udev);
4315 if (portstatus & USB_PORT_STAT_ENABLE) {
4316 status = 0; /* Nothing to do */
Alan Stern8808f002008-04-28 11:06:55 -04004317
4318#ifdef CONFIG_USB_SUSPEND
Alan Stern5257d972008-09-22 14:43:08 -04004319 } else if (udev->state == USB_STATE_SUSPENDED &&
4320 udev->persist_enabled) {
Alan Stern8808f002008-04-28 11:06:55 -04004321 /* For a suspended device, treat this as a
4322 * remote wakeup event.
4323 */
Alan Stern0534d462010-01-08 12:56:30 -05004324 status = usb_remote_wakeup(udev);
Alan Stern8808f002008-04-28 11:06:55 -04004325#endif
4326
4327 } else {
Alan Stern5257d972008-09-22 14:43:08 -04004328 status = -ENODEV; /* Don't resuscitate */
Alan Stern8808f002008-04-28 11:06:55 -04004329 }
4330 usb_unlock_device(udev);
4331
4332 if (status == 0) {
4333 clear_bit(port1, hub->change_bits);
4334 return;
4335 }
4336 }
4337
Alan Stern24618b02008-04-28 11:06:28 -04004338 /* Disconnect any existing devices under this port */
Peter Chenb76baa82012-11-09 09:44:43 +08004339 if (udev) {
4340 if (hcd->phy && !hdev->parent &&
4341 !(portstatus & USB_PORT_STAT_CONNECTION))
Peter Chenac965112012-11-09 09:44:44 +08004342 usb_phy_notify_disconnect(hcd->phy, udev->speed);
Lan Tianyuff823c792012-09-05 13:44:32 +08004343 usb_disconnect(&hub->ports[port1 - 1]->child);
Peter Chenb76baa82012-11-09 09:44:43 +08004344 }
Alan Stern24618b02008-04-28 11:06:28 -04004345 clear_bit(port1, hub->change_bits);
4346
Alan Stern253e0572009-10-27 15:20:13 -04004347 /* We can forget about a "removed" device when there's a physical
4348 * disconnect or the connect status changes.
4349 */
4350 if (!(portstatus & USB_PORT_STAT_CONNECTION) ||
4351 (portchange & USB_PORT_STAT_C_CONNECTION))
4352 clear_bit(port1, hub->removed_bits);
4353
Alan Stern5257d972008-09-22 14:43:08 -04004354 if (portchange & (USB_PORT_STAT_C_CONNECTION |
4355 USB_PORT_STAT_C_ENABLE)) {
4356 status = hub_port_debounce(hub, port1);
4357 if (status < 0) {
4358 if (printk_ratelimit())
4359 dev_err(hub_dev, "connect-debounce failed, "
4360 "port %d disabled\n", port1);
4361 portstatus &= ~USB_PORT_STAT_CONNECTION;
4362 } else {
4363 portstatus = status;
4364 }
4365 }
4366
Alan Stern253e0572009-10-27 15:20:13 -04004367 /* Return now if debouncing failed or nothing is connected or
4368 * the device was "removed".
4369 */
4370 if (!(portstatus & USB_PORT_STAT_CONNECTION) ||
4371 test_bit(port1, hub->removed_bits)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004372
4373 /* maybe switch power back on (e.g. root hub was reset) */
Greg Kroah-Hartman74ad9bd2005-06-20 21:15:16 -07004374 if ((wHubCharacteristics & HUB_CHAR_LPSM) < 2
Andiry Xu0ed9a572011-04-27 18:07:43 +08004375 && !port_is_power_on(hub, portstatus))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004376 set_port_feature(hdev, port1, USB_PORT_FEAT_POWER);
Alan Stern5257d972008-09-22 14:43:08 -04004377
Linus Torvalds1da177e2005-04-16 15:20:36 -07004378 if (portstatus & USB_PORT_STAT_ENABLE)
4379 goto done;
4380 return;
4381 }
4382
Linus Torvalds1da177e2005-04-16 15:20:36 -07004383 for (i = 0; i < SET_CONFIG_TRIES; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004384
4385 /* reallocate for each attempt, since references
4386 * to the previous one can escape in various ways
4387 */
4388 udev = usb_alloc_dev(hdev, hdev->bus, port1);
4389 if (!udev) {
4390 dev_err (hub_dev,
4391 "couldn't allocate port %d usb_device\n",
4392 port1);
4393 goto done;
4394 }
4395
4396 usb_set_device_state(udev, USB_STATE_POWERED);
Alan Stern55c52712005-11-23 12:03:12 -05004397 udev->bus_mA = hub->mA_per_port;
Alan Sternb6956ff2006-08-30 15:46:48 -04004398 udev->level = hdev->level + 1;
Inaky Perez-Gonzalez8af548d2008-04-08 13:24:46 -07004399 udev->wusb = hub_is_wusb(hub);
Alan Stern55c52712005-11-23 12:03:12 -05004400
Sarah Sharp131dec32010-12-06 21:00:19 -08004401 /* Only USB 3.0 devices are connected to SuperSpeed hubs. */
4402 if (hub_is_superspeed(hub->hdev))
Sarah Sharpe7b77172009-04-27 19:54:26 -07004403 udev->speed = USB_SPEED_SUPER;
4404 else
4405 udev->speed = USB_SPEED_UNKNOWN;
4406
Alan Stern3b29b682011-02-22 09:53:41 -05004407 choose_devnum(udev);
Andiry Xuc8d4af82010-10-14 07:22:51 -07004408 if (udev->devnum <= 0) {
4409 status = -ENOTCONN; /* Don't retry */
4410 goto loop;
Sarah Sharpc6515272009-04-27 19:57:26 -07004411 }
4412
Sarah Sharpe7b77172009-04-27 19:54:26 -07004413 /* reset (non-USB 3.0 devices) and get descriptor */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004414 status = hub_port_init(hub, udev, port1, i);
4415 if (status < 0)
4416 goto loop;
4417
Phil Dibowitz93362a82010-07-22 00:05:01 +02004418 usb_detect_quirks(udev);
4419 if (udev->quirks & USB_QUIRK_DELAY_INIT)
4420 msleep(1000);
4421
Linus Torvalds1da177e2005-04-16 15:20:36 -07004422 /* consecutive bus-powered hubs aren't reliable; they can
4423 * violate the voltage drop budget. if the new child has
4424 * a "powered" LED, users should notice we didn't enable it
4425 * (without reading syslog), even without per-port LEDs
4426 * on the parent.
4427 */
4428 if (udev->descriptor.bDeviceClass == USB_CLASS_HUB
Alan Stern55c52712005-11-23 12:03:12 -05004429 && udev->bus_mA <= 100) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004430 u16 devstat;
4431
4432 status = usb_get_status(udev, USB_RECIP_DEVICE, 0,
4433 &devstat);
Alan Stern55c52712005-11-23 12:03:12 -05004434 if (status < 2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004435 dev_dbg(&udev->dev, "get status %d ?\n", status);
4436 goto loop_disable;
4437 }
Alan Stern55c52712005-11-23 12:03:12 -05004438 le16_to_cpus(&devstat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004439 if ((devstat & (1 << USB_DEVICE_SELF_POWERED)) == 0) {
4440 dev_err(&udev->dev,
4441 "can't connect bus-powered hub "
4442 "to this port\n");
4443 if (hub->has_indicators) {
4444 hub->indicator[port1-1] =
4445 INDICATOR_AMBER_BLINK;
David Howellsc4028952006-11-22 14:57:56 +00004446 schedule_delayed_work (&hub->leds, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004447 }
4448 status = -ENOTCONN; /* Don't retry */
4449 goto loop_disable;
4450 }
4451 }
4452
4453 /* check for devices running slower than they could */
4454 if (le16_to_cpu(udev->descriptor.bcdUSB) >= 0x0200
4455 && udev->speed == USB_SPEED_FULL
4456 && highspeed_hubs != 0)
4457 check_highspeed (hub, udev, port1);
4458
Greg Kroah-Hartmanfa286182012-05-14 09:20:37 -07004459 /* Store the parent's children[] pointer. At this point
Linus Torvalds1da177e2005-04-16 15:20:36 -07004460 * udev becomes globally accessible, although presumably
4461 * no one will look at it until hdev is unlocked.
4462 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004463 status = 0;
4464
4465 /* We mustn't add new devices if the parent hub has
4466 * been disconnected; we would race with the
4467 * recursively_mark_NOTATTACHED() routine.
4468 */
4469 spin_lock_irq(&device_state_lock);
4470 if (hdev->state == USB_STATE_NOTATTACHED)
4471 status = -ENOTCONN;
4472 else
Lan Tianyuff823c792012-09-05 13:44:32 +08004473 hub->ports[port1 - 1]->child = udev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004474 spin_unlock_irq(&device_state_lock);
4475
4476 /* Run it through the hoops (find a driver, etc) */
4477 if (!status) {
4478 status = usb_new_device(udev);
4479 if (status) {
4480 spin_lock_irq(&device_state_lock);
Lan Tianyuff823c792012-09-05 13:44:32 +08004481 hub->ports[port1 - 1]->child = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004482 spin_unlock_irq(&device_state_lock);
4483 }
4484 }
4485
Linus Torvalds1da177e2005-04-16 15:20:36 -07004486 if (status)
4487 goto loop_disable;
4488
4489 status = hub_power_remaining(hub);
4490 if (status)
Alan Stern55c52712005-11-23 12:03:12 -05004491 dev_dbg(hub_dev, "%dmA power budget left\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004492
4493 return;
4494
4495loop_disable:
4496 hub_port_disable(hub, port1, 1);
4497loop:
Inaky Perez-Gonzalezfc721f52008-04-08 13:24:46 -07004498 usb_ep0_reinit(udev);
Alan Stern3b29b682011-02-22 09:53:41 -05004499 release_devnum(udev);
Herbert Xuf7410ce2010-01-10 20:15:03 +11004500 hub_free_dev(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004501 usb_put_dev(udev);
Vikram Panditaffcdc182007-05-25 21:31:07 -07004502 if ((status == -ENOTCONN) || (status == -ENOTSUPP))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004503 break;
4504 }
Alan Stern3a311552008-05-20 16:58:29 -04004505 if (hub->hdev->parent ||
4506 !hcd->driver->port_handed_over ||
4507 !(hcd->driver->port_handed_over)(hcd, port1))
4508 dev_err(hub_dev, "unable to enumerate USB device on port %d\n",
4509 port1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004510
4511done:
4512 hub_port_disable(hub, port1, 1);
Balaji Rao90da0962007-11-22 01:58:14 +05304513 if (hcd->driver->relinquish_port && !hub->hdev->parent)
4514 hcd->driver->relinquish_port(hcd, port1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004515}
4516
Sarah Sharp714b07b2012-01-24 13:53:18 -08004517/* Returns 1 if there was a remote wakeup and a connect status change. */
4518static int hub_handle_remote_wakeup(struct usb_hub *hub, unsigned int port,
Sarah Sharp72937e12012-01-24 11:46:50 -08004519 u16 portstatus, u16 portchange)
Sarah Sharp714b07b2012-01-24 13:53:18 -08004520{
4521 struct usb_device *hdev;
4522 struct usb_device *udev;
4523 int connect_change = 0;
4524 int ret;
4525
4526 hdev = hub->hdev;
Lan Tianyuff823c792012-09-05 13:44:32 +08004527 udev = hub->ports[port - 1]->child;
Sarah Sharp4ee823b2011-11-14 18:00:01 -08004528 if (!hub_is_superspeed(hdev)) {
4529 if (!(portchange & USB_PORT_STAT_C_SUSPEND))
4530 return 0;
4531 clear_port_feature(hdev, port, USB_PORT_FEAT_C_SUSPEND);
4532 } else {
4533 if (!udev || udev->state != USB_STATE_SUSPENDED ||
Sarah Sharp72937e12012-01-24 11:46:50 -08004534 (portstatus & USB_PORT_STAT_LINK_STATE) !=
4535 USB_SS_PORT_LS_U0)
Sarah Sharp4ee823b2011-11-14 18:00:01 -08004536 return 0;
4537 }
4538
Sarah Sharp714b07b2012-01-24 13:53:18 -08004539 if (udev) {
4540 /* TRSMRCY = 10 msec */
4541 msleep(10);
4542
4543 usb_lock_device(udev);
4544 ret = usb_remote_wakeup(udev);
4545 usb_unlock_device(udev);
4546 if (ret < 0)
4547 connect_change = 1;
4548 } else {
4549 ret = -ENODEV;
4550 hub_port_disable(hub, port, 1);
4551 }
4552 dev_dbg(hub->intfdev, "resume on port %d, status %d\n",
4553 port, ret);
4554 return connect_change;
4555}
4556
Linus Torvalds1da177e2005-04-16 15:20:36 -07004557static void hub_events(void)
4558{
4559 struct list_head *tmp;
4560 struct usb_device *hdev;
4561 struct usb_interface *intf;
4562 struct usb_hub *hub;
4563 struct device *hub_dev;
4564 u16 hubstatus;
4565 u16 hubchange;
4566 u16 portstatus;
4567 u16 portchange;
4568 int i, ret;
Sarah Sharp4ee823b2011-11-14 18:00:01 -08004569 int connect_change, wakeup_change;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004570
4571 /*
4572 * We restart the list every time to avoid a deadlock with
4573 * deleting hubs downstream from this one. This should be
4574 * safe since we delete the hub from the event list.
4575 * Not the most efficient, but avoids deadlocks.
4576 */
4577 while (1) {
4578
4579 /* Grab the first entry at the beginning of the list */
4580 spin_lock_irq(&hub_event_lock);
4581 if (list_empty(&hub_event_list)) {
4582 spin_unlock_irq(&hub_event_lock);
4583 break;
4584 }
4585
4586 tmp = hub_event_list.next;
4587 list_del_init(tmp);
4588
4589 hub = list_entry(tmp, struct usb_hub, event_list);
Alan Sterne8054852007-05-04 11:55:11 -04004590 kref_get(&hub->kref);
4591 spin_unlock_irq(&hub_event_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004592
Alan Sterne8054852007-05-04 11:55:11 -04004593 hdev = hub->hdev;
4594 hub_dev = hub->intfdev;
4595 intf = to_usb_interface(hub_dev);
Alan Stern40f122f2006-11-09 14:44:33 -05004596 dev_dbg(hub_dev, "state %d ports %d chg %04x evt %04x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07004597 hdev->state, hub->descriptor
4598 ? hub->descriptor->bNbrPorts
4599 : 0,
4600 /* NOTE: expects max 15 ports... */
4601 (u16) hub->change_bits[0],
Alan Stern40f122f2006-11-09 14:44:33 -05004602 (u16) hub->event_bits[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004603
Linus Torvalds1da177e2005-04-16 15:20:36 -07004604 /* Lock the device, then check to see if we were
4605 * disconnected while waiting for the lock to succeed. */
Alan Stern06b84e82007-05-04 11:54:50 -04004606 usb_lock_device(hdev);
Alan Sterne8054852007-05-04 11:55:11 -04004607 if (unlikely(hub->disconnected))
Alan Stern9bbdf1e2010-01-08 12:57:28 -05004608 goto loop_disconnected;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004609
4610 /* If the hub has died, clean up after it */
4611 if (hdev->state == USB_STATE_NOTATTACHED) {
Alan Stern7de18d82006-06-01 13:37:24 -04004612 hub->error = -ENODEV;
Alan Stern43303542008-04-28 11:07:31 -04004613 hub_quiesce(hub, HUB_DISCONNECT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004614 goto loop;
4615 }
4616
Alan Stern40f122f2006-11-09 14:44:33 -05004617 /* Autoresume */
4618 ret = usb_autopm_get_interface(intf);
4619 if (ret) {
4620 dev_dbg(hub_dev, "Can't autoresume: %d\n", ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004621 goto loop;
Alan Stern40f122f2006-11-09 14:44:33 -05004622 }
4623
4624 /* If this is an inactive hub, do nothing */
4625 if (hub->quiescing)
4626 goto loop_autopm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004627
4628 if (hub->error) {
4629 dev_dbg (hub_dev, "resetting for error %d\n",
4630 hub->error);
4631
Ming Lei742120c2008-06-18 22:00:29 +08004632 ret = usb_reset_device(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004633 if (ret) {
4634 dev_dbg (hub_dev,
4635 "error resetting hub: %d\n", ret);
Alan Stern40f122f2006-11-09 14:44:33 -05004636 goto loop_autopm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004637 }
4638
4639 hub->nerrors = 0;
4640 hub->error = 0;
4641 }
4642
4643 /* deal with port status changes */
4644 for (i = 1; i <= hub->descriptor->bNbrPorts; i++) {
4645 if (test_bit(i, hub->busy_bits))
4646 continue;
4647 connect_change = test_bit(i, hub->change_bits);
Sarah Sharp72937e12012-01-24 11:46:50 -08004648 wakeup_change = test_and_clear_bit(i, hub->wakeup_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004649 if (!test_and_clear_bit(i, hub->event_bits) &&
Sarah Sharp4ee823b2011-11-14 18:00:01 -08004650 !connect_change && !wakeup_change)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004651 continue;
4652
4653 ret = hub_port_status(hub, i,
4654 &portstatus, &portchange);
4655 if (ret < 0)
4656 continue;
4657
Linus Torvalds1da177e2005-04-16 15:20:36 -07004658 if (portchange & USB_PORT_STAT_C_CONNECTION) {
4659 clear_port_feature(hdev, i,
4660 USB_PORT_FEAT_C_CONNECTION);
4661 connect_change = 1;
4662 }
4663
4664 if (portchange & USB_PORT_STAT_C_ENABLE) {
4665 if (!connect_change)
4666 dev_dbg (hub_dev,
4667 "port %d enable change, "
4668 "status %08x\n",
4669 i, portstatus);
4670 clear_port_feature(hdev, i,
4671 USB_PORT_FEAT_C_ENABLE);
4672
4673 /*
4674 * EM interference sometimes causes badly
4675 * shielded USB devices to be shutdown by
4676 * the hub, this hack enables them again.
4677 * Works at least with mouse driver.
4678 */
4679 if (!(portstatus & USB_PORT_STAT_ENABLE)
4680 && !connect_change
Lan Tianyuff823c792012-09-05 13:44:32 +08004681 && hub->ports[i - 1]->child) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004682 dev_err (hub_dev,
4683 "port %i "
4684 "disabled by hub (EMI?), "
4685 "re-enabling...\n",
4686 i);
4687 connect_change = 1;
4688 }
4689 }
4690
Sarah Sharp72937e12012-01-24 11:46:50 -08004691 if (hub_handle_remote_wakeup(hub, i,
4692 portstatus, portchange))
Sarah Sharp714b07b2012-01-24 13:53:18 -08004693 connect_change = 1;
Alan Stern8808f002008-04-28 11:06:55 -04004694
Linus Torvalds1da177e2005-04-16 15:20:36 -07004695 if (portchange & USB_PORT_STAT_C_OVERCURRENT) {
Paul Bolle752d57a2011-03-11 18:03:52 +01004696 u16 status = 0;
4697 u16 unused;
4698
4699 dev_dbg(hub_dev, "over-current change on port "
4700 "%d\n", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004701 clear_port_feature(hdev, i,
4702 USB_PORT_FEAT_C_OVER_CURRENT);
Paul Bolle752d57a2011-03-11 18:03:52 +01004703 msleep(100); /* Cool down */
Alan Stern8520f382008-09-22 14:44:26 -04004704 hub_power_on(hub, true);
Paul Bolle752d57a2011-03-11 18:03:52 +01004705 hub_port_status(hub, i, &status, &unused);
4706 if (status & USB_PORT_STAT_OVERCURRENT)
4707 dev_err(hub_dev, "over-current "
4708 "condition on port %d\n", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004709 }
4710
4711 if (portchange & USB_PORT_STAT_C_RESET) {
4712 dev_dbg (hub_dev,
4713 "reset change on port %d\n",
4714 i);
4715 clear_port_feature(hdev, i,
4716 USB_PORT_FEAT_C_RESET);
4717 }
Sarah Sharpc7061572010-12-06 15:08:20 -08004718 if ((portchange & USB_PORT_STAT_C_BH_RESET) &&
4719 hub_is_superspeed(hub->hdev)) {
4720 dev_dbg(hub_dev,
4721 "warm reset change on port %d\n",
4722 i);
4723 clear_port_feature(hdev, i,
4724 USB_PORT_FEAT_C_BH_PORT_RESET);
4725 }
John Youndbe79bb2001-09-17 00:00:00 -07004726 if (portchange & USB_PORT_STAT_C_LINK_STATE) {
4727 clear_port_feature(hub->hdev, i,
4728 USB_PORT_FEAT_C_PORT_LINK_STATE);
4729 }
4730 if (portchange & USB_PORT_STAT_C_CONFIG_ERROR) {
4731 dev_warn(hub_dev,
4732 "config error on port %d\n",
4733 i);
4734 clear_port_feature(hub->hdev, i,
4735 USB_PORT_FEAT_C_PORT_CONFIG_ERROR);
4736 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004737
Andiry Xu5e467f62011-04-27 18:07:54 +08004738 /* Warm reset a USB3 protocol port if it's in
4739 * SS.Inactive state.
4740 */
Stanislaw Ledwon8bea2bd2012-06-18 15:20:00 +02004741 if (hub_port_warm_reset_required(hub, portstatus)) {
Sarah Sharp65bdac52012-11-14 17:58:04 -08004742 int status;
4743
Andiry Xu5e467f62011-04-27 18:07:54 +08004744 dev_dbg(hub_dev, "warm reset port %d\n", i);
Sarah Sharp65bdac52012-11-14 17:58:04 -08004745 status = hub_port_reset(hub, i, NULL,
Andiry Xu75d7cf72011-09-13 16:41:11 -07004746 HUB_BH_RESET_TIME, true);
Sarah Sharp65bdac52012-11-14 17:58:04 -08004747 if (status < 0)
4748 hub_port_disable(hub, i, 1);
4749 connect_change = 0;
Andiry Xu5e467f62011-04-27 18:07:54 +08004750 }
4751
Linus Torvalds1da177e2005-04-16 15:20:36 -07004752 if (connect_change)
4753 hub_port_connect_change(hub, i,
4754 portstatus, portchange);
4755 } /* end for i */
4756
4757 /* deal with hub status changes */
4758 if (test_and_clear_bit(0, hub->event_bits) == 0)
4759 ; /* do nothing */
4760 else if (hub_hub_status(hub, &hubstatus, &hubchange) < 0)
4761 dev_err (hub_dev, "get_hub_status failed\n");
4762 else {
4763 if (hubchange & HUB_CHANGE_LOCAL_POWER) {
4764 dev_dbg (hub_dev, "power change\n");
4765 clear_hub_feature(hdev, C_HUB_LOCAL_POWER);
Alan Stern55c52712005-11-23 12:03:12 -05004766 if (hubstatus & HUB_STATUS_LOCAL_POWER)
4767 /* FIXME: Is this always true? */
Alan Stern55c52712005-11-23 12:03:12 -05004768 hub->limited_power = 1;
jidong xiao403fae72007-09-14 00:08:51 +08004769 else
4770 hub->limited_power = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004771 }
4772 if (hubchange & HUB_CHANGE_OVERCURRENT) {
Paul Bolle752d57a2011-03-11 18:03:52 +01004773 u16 status = 0;
4774 u16 unused;
4775
4776 dev_dbg(hub_dev, "over-current change\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004777 clear_hub_feature(hdev, C_HUB_OVER_CURRENT);
Paul Bolle752d57a2011-03-11 18:03:52 +01004778 msleep(500); /* Cool down */
Alan Stern8520f382008-09-22 14:44:26 -04004779 hub_power_on(hub, true);
Paul Bolle752d57a2011-03-11 18:03:52 +01004780 hub_hub_status(hub, &status, &unused);
4781 if (status & HUB_STATUS_OVERCURRENT)
4782 dev_err(hub_dev, "over-current "
4783 "condition\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004784 }
4785 }
4786
Alan Stern8e4ceb32009-12-07 13:01:37 -05004787 loop_autopm:
4788 /* Balance the usb_autopm_get_interface() above */
4789 usb_autopm_put_interface_no_suspend(intf);
4790 loop:
4791 /* Balance the usb_autopm_get_interface_no_resume() in
4792 * kick_khubd() and allow autosuspend.
4793 */
4794 usb_autopm_put_interface(intf);
Alan Stern9bbdf1e2010-01-08 12:57:28 -05004795 loop_disconnected:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004796 usb_unlock_device(hdev);
Alan Sterne8054852007-05-04 11:55:11 -04004797 kref_put(&hub->kref, hub_release);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004798
4799 } /* end while (1) */
4800}
4801
4802static int hub_thread(void *__unused)
4803{
Alan Stern3bb1af52008-03-03 15:15:36 -05004804 /* khubd needs to be freezable to avoid intefering with USB-PERSIST
4805 * port handover. Otherwise it might see that a full-speed device
4806 * was gone before the EHCI controller had handed its port over to
4807 * the companion full-speed controller.
4808 */
Rafael J. Wysocki83144182007-07-17 04:03:35 -07004809 set_freezable();
Alan Stern3bb1af52008-03-03 15:15:36 -05004810
Linus Torvalds1da177e2005-04-16 15:20:36 -07004811 do {
4812 hub_events();
Rafael J. Wysockie42837b2007-10-18 03:04:45 -07004813 wait_event_freezable(khubd_wait,
akpm@osdl.org9c8d6172005-06-20 14:29:58 -07004814 !list_empty(&hub_event_list) ||
4815 kthread_should_stop());
akpm@osdl.org9c8d6172005-06-20 14:29:58 -07004816 } while (!kthread_should_stop() || !list_empty(&hub_event_list));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004817
akpm@osdl.org9c8d6172005-06-20 14:29:58 -07004818 pr_debug("%s: khubd exiting\n", usbcore_name);
4819 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004820}
4821
Németh Márton1e927d92010-01-10 15:34:53 +01004822static const struct usb_device_id hub_id_table[] = {
Ming Leie6f30de2012-10-24 11:59:24 +08004823 { .match_flags = USB_DEVICE_ID_MATCH_VENDOR
4824 | USB_DEVICE_ID_MATCH_INT_CLASS,
4825 .idVendor = USB_VENDOR_GENESYS_LOGIC,
4826 .bInterfaceClass = USB_CLASS_HUB,
4827 .driver_info = HUB_QUIRK_CHECK_PORT_AUTOSUSPEND},
Linus Torvalds1da177e2005-04-16 15:20:36 -07004828 { .match_flags = USB_DEVICE_ID_MATCH_DEV_CLASS,
4829 .bDeviceClass = USB_CLASS_HUB},
4830 { .match_flags = USB_DEVICE_ID_MATCH_INT_CLASS,
4831 .bInterfaceClass = USB_CLASS_HUB},
4832 { } /* Terminating entry */
4833};
4834
4835MODULE_DEVICE_TABLE (usb, hub_id_table);
4836
4837static struct usb_driver hub_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004838 .name = "hub",
4839 .probe = hub_probe,
4840 .disconnect = hub_disconnect,
4841 .suspend = hub_suspend,
4842 .resume = hub_resume,
Alan Sternf07600c2007-05-30 15:38:16 -04004843 .reset_resume = hub_reset_resume,
Alan Stern7de18d82006-06-01 13:37:24 -04004844 .pre_reset = hub_pre_reset,
4845 .post_reset = hub_post_reset,
Andi Kleenc532b292010-06-01 23:04:41 +02004846 .unlocked_ioctl = hub_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004847 .id_table = hub_id_table,
Alan Stern40f122f2006-11-09 14:44:33 -05004848 .supports_autosuspend = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004849};
4850
4851int usb_hub_init(void)
4852{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004853 if (usb_register(&hub_driver) < 0) {
4854 printk(KERN_ERR "%s: can't register hub driver\n",
4855 usbcore_name);
4856 return -1;
4857 }
4858
akpm@osdl.org9c8d6172005-06-20 14:29:58 -07004859 khubd_task = kthread_run(hub_thread, NULL, "khubd");
4860 if (!IS_ERR(khubd_task))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004861 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004862
4863 /* Fall through if kernel_thread failed */
4864 usb_deregister(&hub_driver);
4865 printk(KERN_ERR "%s: can't start khubd\n", usbcore_name);
4866
4867 return -1;
4868}
4869
4870void usb_hub_cleanup(void)
4871{
akpm@osdl.org9c8d6172005-06-20 14:29:58 -07004872 kthread_stop(khubd_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004873
4874 /*
4875 * Hub resources are freed for us by usb_deregister. It calls
4876 * usb_driver_purge on every device which in turn calls that
4877 * devices disconnect function if it is using this driver.
4878 * The hub_disconnect function takes care of releasing the
4879 * individual hub resources. -greg
4880 */
4881 usb_deregister(&hub_driver);
4882} /* usb_hub_cleanup() */
4883
Alan Sterneb764c42008-03-03 15:16:04 -05004884static int descriptors_changed(struct usb_device *udev,
4885 struct usb_device_descriptor *old_device_descriptor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004886{
Alan Sterneb764c42008-03-03 15:16:04 -05004887 int changed = 0;
4888 unsigned index;
4889 unsigned serial_len = 0;
4890 unsigned len;
4891 unsigned old_length;
4892 int length;
4893 char *buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004894
Alan Sterneb764c42008-03-03 15:16:04 -05004895 if (memcmp(&udev->descriptor, old_device_descriptor,
4896 sizeof(*old_device_descriptor)) != 0)
4897 return 1;
4898
4899 /* Since the idVendor, idProduct, and bcdDevice values in the
4900 * device descriptor haven't changed, we will assume the
4901 * Manufacturer and Product strings haven't changed either.
4902 * But the SerialNumber string could be different (e.g., a
4903 * different flash card of the same brand).
4904 */
4905 if (udev->serial)
4906 serial_len = strlen(udev->serial) + 1;
4907
4908 len = serial_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004909 for (index = 0; index < udev->descriptor.bNumConfigurations; index++) {
Alan Sterneb764c42008-03-03 15:16:04 -05004910 old_length = le16_to_cpu(udev->config[index].desc.wTotalLength);
4911 len = max(len, old_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004912 }
Alan Sterneb764c42008-03-03 15:16:04 -05004913
Oliver Neukum0cc1a512008-01-10 10:31:48 +01004914 buf = kmalloc(len, GFP_NOIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004915 if (buf == NULL) {
4916 dev_err(&udev->dev, "no mem to re-read configs after reset\n");
4917 /* assume the worst */
4918 return 1;
4919 }
4920 for (index = 0; index < udev->descriptor.bNumConfigurations; index++) {
Alan Sterneb764c42008-03-03 15:16:04 -05004921 old_length = le16_to_cpu(udev->config[index].desc.wTotalLength);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004922 length = usb_get_descriptor(udev, USB_DT_CONFIG, index, buf,
4923 old_length);
Alan Sterneb764c42008-03-03 15:16:04 -05004924 if (length != old_length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004925 dev_dbg(&udev->dev, "config index %d, error %d\n",
4926 index, length);
Alan Sterneb764c42008-03-03 15:16:04 -05004927 changed = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004928 break;
4929 }
4930 if (memcmp (buf, udev->rawdescriptors[index], old_length)
4931 != 0) {
4932 dev_dbg(&udev->dev, "config index %d changed (#%d)\n",
Alan Sterneb764c42008-03-03 15:16:04 -05004933 index,
4934 ((struct usb_config_descriptor *) buf)->
4935 bConfigurationValue);
4936 changed = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004937 break;
4938 }
4939 }
Alan Sterneb764c42008-03-03 15:16:04 -05004940
4941 if (!changed && serial_len) {
4942 length = usb_string(udev, udev->descriptor.iSerialNumber,
4943 buf, serial_len);
4944 if (length + 1 != serial_len) {
4945 dev_dbg(&udev->dev, "serial string error %d\n",
4946 length);
4947 changed = 1;
4948 } else if (memcmp(buf, udev->serial, length) != 0) {
4949 dev_dbg(&udev->dev, "serial string changed\n");
4950 changed = 1;
4951 }
4952 }
4953
Linus Torvalds1da177e2005-04-16 15:20:36 -07004954 kfree(buf);
Alan Sterneb764c42008-03-03 15:16:04 -05004955 return changed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004956}
4957
4958/**
Ming Lei742120c2008-06-18 22:00:29 +08004959 * usb_reset_and_verify_device - perform a USB port reset to reinitialize a device
Linus Torvalds1da177e2005-04-16 15:20:36 -07004960 * @udev: device to reset (not in SUSPENDED or NOTATTACHED state)
4961 *
Alan Stern79efa092006-06-01 13:33:42 -04004962 * WARNING - don't use this routine to reset a composite device
4963 * (one with multiple interfaces owned by separate drivers)!
Ming Lei742120c2008-06-18 22:00:29 +08004964 * Use usb_reset_device() instead.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004965 *
4966 * Do a port reset, reassign the device's address, and establish its
4967 * former operating configuration. If the reset fails, or the device's
4968 * descriptors change from their values before the reset, or the original
4969 * configuration and altsettings cannot be restored, a flag will be set
4970 * telling khubd to pretend the device has been disconnected and then
4971 * re-connected. All drivers will be unbound, and the device will be
4972 * re-enumerated and probed all over again.
4973 *
4974 * Returns 0 if the reset succeeded, -ENODEV if the device has been
4975 * flagged for logical disconnection, or some other negative error code
4976 * if the reset wasn't even attempted.
4977 *
4978 * The caller must own the device lock. For example, it's safe to use
4979 * this from a driver probe() routine after downloading new firmware.
4980 * For calls that might not occur during probe(), drivers should lock
4981 * the device using usb_lock_device_for_reset().
Alan Stern6bc6cff2007-05-04 11:53:03 -04004982 *
4983 * Locking exception: This routine may also be called from within an
4984 * autoresume handler. Such usage won't conflict with other tasks
4985 * holding the device lock because these tasks should always call
4986 * usb_autopm_resume_device(), thereby preventing any unwanted autoresume.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004987 */
Ming Lei742120c2008-06-18 22:00:29 +08004988static int usb_reset_and_verify_device(struct usb_device *udev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004989{
4990 struct usb_device *parent_hdev = udev->parent;
4991 struct usb_hub *parent_hub;
Sarah Sharp3f0479e2009-12-03 09:44:36 -08004992 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004993 struct usb_device_descriptor descriptor = udev->descriptor;
Alan Stern12c3da32005-11-23 12:09:52 -05004994 int i, ret = 0;
4995 int port1 = udev->portnum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004996
4997 if (udev->state == USB_STATE_NOTATTACHED ||
4998 udev->state == USB_STATE_SUSPENDED) {
4999 dev_dbg(&udev->dev, "device reset not allowed in state %d\n",
5000 udev->state);
5001 return -EINVAL;
5002 }
5003
5004 if (!parent_hdev) {
Wolfram Sang4bec9912010-08-29 18:17:14 +02005005 /* this requires hcd-specific logic; see ohci_restart() */
Harvey Harrison441b62c2008-03-03 16:08:34 -08005006 dev_dbg(&udev->dev, "%s for root hub!\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005007 return -EISDIR;
5008 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005009 parent_hub = hdev_to_hub(parent_hdev);
5010
Sarah Sharpf74631e2012-06-25 12:08:08 -07005011 /* Disable LPM and LTM while we reset the device and reinstall the alt
5012 * settings. Device-initiated LPM settings, and system exit latency
5013 * settings are cleared when the device is reset, so we have to set
5014 * them up again.
Sarah Sharp6d1d0512012-07-03 22:49:04 -07005015 */
5016 ret = usb_unlocked_disable_lpm(udev);
5017 if (ret) {
5018 dev_err(&udev->dev, "%s Failed to disable LPM\n.", __func__);
5019 goto re_enumerate;
5020 }
Sarah Sharpf74631e2012-06-25 12:08:08 -07005021 ret = usb_disable_ltm(udev);
5022 if (ret) {
5023 dev_err(&udev->dev, "%s Failed to disable LTM\n.",
5024 __func__);
5025 goto re_enumerate;
5026 }
Sarah Sharp6d1d0512012-07-03 22:49:04 -07005027
Linus Torvalds1da177e2005-04-16 15:20:36 -07005028 set_bit(port1, parent_hub->busy_bits);
5029 for (i = 0; i < SET_CONFIG_TRIES; ++i) {
5030
5031 /* ep0 maxpacket size may change; let the HCD know about it.
5032 * Other endpoints will be handled by re-enumeration. */
Inaky Perez-Gonzalezfc721f52008-04-08 13:24:46 -07005033 usb_ep0_reinit(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005034 ret = hub_port_init(parent_hub, udev, port1, i);
Alan Sterndd4dd192007-05-04 11:55:54 -04005035 if (ret >= 0 || ret == -ENOTCONN || ret == -ENODEV)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005036 break;
5037 }
5038 clear_bit(port1, parent_hub->busy_bits);
Alan Sternd5cbad42006-08-11 16:52:39 -04005039
Linus Torvalds1da177e2005-04-16 15:20:36 -07005040 if (ret < 0)
5041 goto re_enumerate;
5042
5043 /* Device might have changed firmware (DFU or similar) */
Alan Sterneb764c42008-03-03 15:16:04 -05005044 if (descriptors_changed(udev, &descriptor)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005045 dev_info(&udev->dev, "device firmware changed\n");
5046 udev->descriptor = descriptor; /* for disconnect() calls */
5047 goto re_enumerate;
5048 }
Alan Stern4fe03872009-02-26 10:21:02 -05005049
5050 /* Restore the device's previous configuration */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005051 if (!udev->actconfig)
5052 goto done;
Sarah Sharp3f0479e2009-12-03 09:44:36 -08005053
Sarah Sharpd673bfc2010-10-15 08:55:24 -07005054 mutex_lock(hcd->bandwidth_mutex);
Sarah Sharp3f0479e2009-12-03 09:44:36 -08005055 ret = usb_hcd_alloc_bandwidth(udev, udev->actconfig, NULL, NULL);
5056 if (ret < 0) {
5057 dev_warn(&udev->dev,
5058 "Busted HC? Not enough HCD resources for "
5059 "old configuration.\n");
Sarah Sharpd673bfc2010-10-15 08:55:24 -07005060 mutex_unlock(hcd->bandwidth_mutex);
Sarah Sharp3f0479e2009-12-03 09:44:36 -08005061 goto re_enumerate;
5062 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005063 ret = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
5064 USB_REQ_SET_CONFIGURATION, 0,
5065 udev->actconfig->desc.bConfigurationValue, 0,
5066 NULL, 0, USB_CTRL_SET_TIMEOUT);
5067 if (ret < 0) {
5068 dev_err(&udev->dev,
5069 "can't restore configuration #%d (error=%d)\n",
5070 udev->actconfig->desc.bConfigurationValue, ret);
Sarah Sharpd673bfc2010-10-15 08:55:24 -07005071 mutex_unlock(hcd->bandwidth_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005072 goto re_enumerate;
5073 }
Sarah Sharpd673bfc2010-10-15 08:55:24 -07005074 mutex_unlock(hcd->bandwidth_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005075 usb_set_device_state(udev, USB_STATE_CONFIGURED);
5076
Alan Stern4fe03872009-02-26 10:21:02 -05005077 /* Put interfaces back into the same altsettings as before.
5078 * Don't bother to send the Set-Interface request for interfaces
5079 * that were already in altsetting 0; besides being unnecessary,
5080 * many devices can't handle it. Instead just reset the host-side
5081 * endpoint state.
5082 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005083 for (i = 0; i < udev->actconfig->desc.bNumInterfaces; i++) {
Sarah Sharp3f0479e2009-12-03 09:44:36 -08005084 struct usb_host_config *config = udev->actconfig;
5085 struct usb_interface *intf = config->interface[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07005086 struct usb_interface_descriptor *desc;
5087
Linus Torvalds1da177e2005-04-16 15:20:36 -07005088 desc = &intf->cur_altsetting->desc;
Alan Stern4fe03872009-02-26 10:21:02 -05005089 if (desc->bAlternateSetting == 0) {
5090 usb_disable_interface(udev, intf, true);
5091 usb_enable_interface(udev, intf, true);
5092 ret = 0;
5093 } else {
Sarah Sharp04a723e2010-01-06 10:16:51 -08005094 /* Let the bandwidth allocation function know that this
5095 * device has been reset, and it will have to use
5096 * alternate setting 0 as the current alternate setting.
Sarah Sharp3f0479e2009-12-03 09:44:36 -08005097 */
Sarah Sharp04a723e2010-01-06 10:16:51 -08005098 intf->resetting_device = 1;
Alan Stern4fe03872009-02-26 10:21:02 -05005099 ret = usb_set_interface(udev, desc->bInterfaceNumber,
5100 desc->bAlternateSetting);
Sarah Sharp04a723e2010-01-06 10:16:51 -08005101 intf->resetting_device = 0;
Alan Stern4fe03872009-02-26 10:21:02 -05005102 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005103 if (ret < 0) {
5104 dev_err(&udev->dev, "failed to restore interface %d "
5105 "altsetting %d (error=%d)\n",
5106 desc->bInterfaceNumber,
5107 desc->bAlternateSetting,
5108 ret);
5109 goto re_enumerate;
5110 }
5111 }
5112
5113done:
Sarah Sharpf74631e2012-06-25 12:08:08 -07005114 /* Now that the alt settings are re-installed, enable LTM and LPM. */
Alan Stern78d9a482008-06-23 16:00:40 -04005115 usb_unlocked_enable_lpm(udev);
Sarah Sharpf74631e2012-06-25 12:08:08 -07005116 usb_enable_ltm(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005117 return 0;
5118
5119re_enumerate:
Sarah Sharp6d1d0512012-07-03 22:49:04 -07005120 /* LPM state doesn't matter when we're about to destroy the device. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005121 hub_port_logical_disconnect(parent_hub, port1);
5122 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005123}
5124
5125/**
5126 * usb_reset_device - warn interface drivers and perform a USB port reset
5127 * @udev: device to reset (not in SUSPENDED or NOTATTACHED state)
5128 *
Alan Stern79efa092006-06-01 13:33:42 -04005129 * Warns all drivers bound to registered interfaces (using their pre_reset
5130 * method), performs the port reset, and then lets the drivers know that
Ming Lei742120c2008-06-18 22:00:29 +08005131 * the reset is over (using their post_reset method).
Alan Stern79efa092006-06-01 13:33:42 -04005132 *
Alan Stern79efa092006-06-01 13:33:42 -04005133 * Return value is the same as for usb_reset_and_verify_device().
5134 *
5135 * The caller must own the device lock. For example, it's safe to use
5136 * this from a driver probe() routine after downloading new firmware.
5137 * For calls that might not occur during probe(), drivers should lock
Ming Lei742120c2008-06-18 22:00:29 +08005138 * the device using usb_lock_device_for_reset().
Alan Stern79efa092006-06-01 13:33:42 -04005139 *
5140 * If an interface is currently being probed or disconnected, we assume
5141 * its driver knows how to handle resets. For all other interfaces,
5142 * if the driver doesn't have pre_reset and post_reset methods then
5143 * we attempt to unbind it and rebind afterward.
Alan Stern79efa092006-06-01 13:33:42 -04005144 */
Ming Lei742120c2008-06-18 22:00:29 +08005145int usb_reset_device(struct usb_device *udev)
Alan Stern79efa092006-06-01 13:33:42 -04005146{
5147 int ret;
Alan Stern852c4b42007-12-03 15:44:29 -05005148 int i;
Alan Stern79efa092006-06-01 13:33:42 -04005149 struct usb_host_config *config = udev->actconfig;
5150
5151 if (udev->state == USB_STATE_NOTATTACHED ||
5152 udev->state == USB_STATE_SUSPENDED) {
5153 dev_dbg(&udev->dev, "device reset not allowed in state %d\n",
5154 udev->state);
5155 return -EINVAL;
5156 }
5157
Alan Stern645daaa2006-08-30 15:47:02 -04005158 /* Prevent autosuspend during the reset */
Alan Stern94fcda12006-11-20 11:38:46 -05005159 usb_autoresume_device(udev);
Alan Stern645daaa2006-08-30 15:47:02 -04005160
Alan Stern79efa092006-06-01 13:33:42 -04005161 if (config) {
Alan Stern79efa092006-06-01 13:33:42 -04005162 for (i = 0; i < config->desc.bNumInterfaces; ++i) {
Alan Stern852c4b42007-12-03 15:44:29 -05005163 struct usb_interface *cintf = config->interface[i];
5164 struct usb_driver *drv;
Alan Stern78d9a482008-06-23 16:00:40 -04005165 int unbind = 0;
Alan Stern852c4b42007-12-03 15:44:29 -05005166
5167 if (cintf->dev.driver) {
Alan Stern79efa092006-06-01 13:33:42 -04005168 drv = to_usb_driver(cintf->dev.driver);
Alan Stern78d9a482008-06-23 16:00:40 -04005169 if (drv->pre_reset && drv->post_reset)
5170 unbind = (drv->pre_reset)(cintf);
5171 else if (cintf->condition ==
5172 USB_INTERFACE_BOUND)
5173 unbind = 1;
5174 if (unbind)
5175 usb_forced_unbind_intf(cintf);
Alan Stern79efa092006-06-01 13:33:42 -04005176 }
5177 }
5178 }
5179
Ming Lei742120c2008-06-18 22:00:29 +08005180 ret = usb_reset_and_verify_device(udev);
Alan Stern79efa092006-06-01 13:33:42 -04005181
5182 if (config) {
Alan Stern79efa092006-06-01 13:33:42 -04005183 for (i = config->desc.bNumInterfaces - 1; i >= 0; --i) {
Alan Stern852c4b42007-12-03 15:44:29 -05005184 struct usb_interface *cintf = config->interface[i];
5185 struct usb_driver *drv;
Alan Stern78d9a482008-06-23 16:00:40 -04005186 int rebind = cintf->needs_binding;
Alan Stern852c4b42007-12-03 15:44:29 -05005187
Alan Stern78d9a482008-06-23 16:00:40 -04005188 if (!rebind && cintf->dev.driver) {
Alan Stern79efa092006-06-01 13:33:42 -04005189 drv = to_usb_driver(cintf->dev.driver);
5190 if (drv->post_reset)
Alan Stern78d9a482008-06-23 16:00:40 -04005191 rebind = (drv->post_reset)(cintf);
5192 else if (cintf->condition ==
5193 USB_INTERFACE_BOUND)
5194 rebind = 1;
Alan Stern79efa092006-06-01 13:33:42 -04005195 }
Alan Stern6c640942008-10-21 15:40:03 -04005196 if (ret == 0 && rebind)
Alan Stern78d9a482008-06-23 16:00:40 -04005197 usb_rebind_intf(cintf);
Alan Stern79efa092006-06-01 13:33:42 -04005198 }
5199 }
5200
Alan Stern94fcda12006-11-20 11:38:46 -05005201 usb_autosuspend_device(udev);
Alan Stern79efa092006-06-01 13:33:42 -04005202 return ret;
5203}
Ming Lei742120c2008-06-18 22:00:29 +08005204EXPORT_SYMBOL_GPL(usb_reset_device);
Inaky Perez-Gonzalezdc023dc2008-11-13 10:31:35 -08005205
5206
5207/**
5208 * usb_queue_reset_device - Reset a USB device from an atomic context
5209 * @iface: USB interface belonging to the device to reset
5210 *
5211 * This function can be used to reset a USB device from an atomic
5212 * context, where usb_reset_device() won't work (as it blocks).
5213 *
5214 * Doing a reset via this method is functionally equivalent to calling
5215 * usb_reset_device(), except for the fact that it is delayed to a
5216 * workqueue. This means that any drivers bound to other interfaces
5217 * might be unbound, as well as users from usbfs in user space.
5218 *
5219 * Corner cases:
5220 *
5221 * - Scheduling two resets at the same time from two different drivers
5222 * attached to two different interfaces of the same device is
5223 * possible; depending on how the driver attached to each interface
5224 * handles ->pre_reset(), the second reset might happen or not.
5225 *
5226 * - If a driver is unbound and it had a pending reset, the reset will
5227 * be cancelled.
5228 *
5229 * - This function can be called during .probe() or .disconnect()
5230 * times. On return from .disconnect(), any pending resets will be
5231 * cancelled.
5232 *
5233 * There is no no need to lock/unlock the @reset_ws as schedule_work()
5234 * does its own.
5235 *
5236 * NOTE: We don't do any reference count tracking because it is not
5237 * needed. The lifecycle of the work_struct is tied to the
5238 * usb_interface. Before destroying the interface we cancel the
5239 * work_struct, so the fact that work_struct is queued and or
5240 * running means the interface (and thus, the device) exist and
5241 * are referenced.
5242 */
5243void usb_queue_reset_device(struct usb_interface *iface)
5244{
5245 schedule_work(&iface->reset_ws);
5246}
5247EXPORT_SYMBOL_GPL(usb_queue_reset_device);
Lan Tianyuff823c792012-09-05 13:44:32 +08005248
5249/**
5250 * usb_hub_find_child - Get the pointer of child device
5251 * attached to the port which is specified by @port1.
5252 * @hdev: USB device belonging to the usb hub
5253 * @port1: port num to indicate which port the child device
5254 * is attached to.
5255 *
5256 * USB drivers call this function to get hub's child device
5257 * pointer.
5258 *
5259 * Return NULL if input param is invalid and
5260 * child's usb_device pointer if non-NULL.
5261 */
5262struct usb_device *usb_hub_find_child(struct usb_device *hdev,
5263 int port1)
5264{
5265 struct usb_hub *hub = hdev_to_hub(hdev);
5266
5267 if (port1 < 1 || port1 > hdev->maxchild)
5268 return NULL;
5269 return hub->ports[port1 - 1]->child;
5270}
5271EXPORT_SYMBOL_GPL(usb_hub_find_child);
Lan Tianyud5575422012-09-05 13:44:33 +08005272
Lan Tianyu05f91682012-09-05 13:44:34 +08005273/**
5274 * usb_set_hub_port_connect_type - set hub port connect type.
5275 * @hdev: USB device belonging to the usb hub
5276 * @port1: port num of the port
5277 * @type: connect type of the port
5278 */
5279void usb_set_hub_port_connect_type(struct usb_device *hdev, int port1,
5280 enum usb_port_connect_type type)
5281{
5282 struct usb_hub *hub = hdev_to_hub(hdev);
5283
5284 hub->ports[port1 - 1]->connect_type = type;
5285}
5286
5287/**
5288 * usb_get_hub_port_connect_type - Get the port's connect type
5289 * @hdev: USB device belonging to the usb hub
5290 * @port1: port num of the port
5291 *
5292 * Return connect type of the port and if input params are
5293 * invalid, return USB_PORT_CONNECT_TYPE_UNKNOWN.
5294 */
5295enum usb_port_connect_type
5296usb_get_hub_port_connect_type(struct usb_device *hdev, int port1)
5297{
5298 struct usb_hub *hub = hdev_to_hub(hdev);
5299
5300 return hub->ports[port1 - 1]->connect_type;
5301}
5302
Lan Tianyud5575422012-09-05 13:44:33 +08005303#ifdef CONFIG_ACPI
5304/**
5305 * usb_get_hub_port_acpi_handle - Get the usb port's acpi handle
5306 * @hdev: USB device belonging to the usb hub
5307 * @port1: port num of the port
5308 *
5309 * Return port's acpi handle if successful, NULL if params are
5310 * invaild.
5311 */
5312acpi_handle usb_get_hub_port_acpi_handle(struct usb_device *hdev,
5313 int port1)
5314{
5315 struct usb_hub *hub = hdev_to_hub(hdev);
5316
5317 return DEVICE_ACPI_HANDLE(&hub->ports[port1 - 1]->dev);
5318}
5319#endif