blob: 994aa8853bac4cb120a709cda59aaff110868344 [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>
Phil Dibowitz93362a82010-07-22 00:05:01 +020023#include <linux/usb/quirks.h>
akpm@osdl.org9c8d6172005-06-20 14:29:58 -070024#include <linux/kthread.h>
Arjan van de Ven4186ecf2006-01-11 15:55:29 +010025#include <linux/mutex.h>
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080026#include <linux/freezer.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <asm/uaccess.h>
29#include <asm/byteorder.h>
30
31#include "usb.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
Greg Kroah-Hartmanf2a383e2007-11-26 22:11:55 -080033/* if we are in debug mode, always announce new devices */
34#ifdef DEBUG
35#ifndef CONFIG_USB_ANNOUNCE_NEW_DEVICES
36#define CONFIG_USB_ANNOUNCE_NEW_DEVICES
37#endif
38#endif
39
Alan Stern1bb5f662006-11-06 11:56:13 -050040struct usb_hub {
41 struct device *intfdev; /* the "interface" device */
42 struct usb_device *hdev;
Alan Sterne8054852007-05-04 11:55:11 -040043 struct kref kref;
Alan Stern1bb5f662006-11-06 11:56:13 -050044 struct urb *urb; /* for interrupt polling pipe */
45
46 /* buffer for urb ... with extra space in case of babble */
47 char (*buffer)[8];
Alan Stern1bb5f662006-11-06 11:56:13 -050048 union {
49 struct usb_hub_status hub;
50 struct usb_port_status port;
51 } *status; /* buffer for status reports */
Alan Sterndb90e7a2007-02-05 09:56:15 -050052 struct mutex status_mutex; /* for the status buffer */
Alan Stern1bb5f662006-11-06 11:56:13 -050053
54 int error; /* last reported error */
55 int nerrors; /* track consecutive errors */
56
57 struct list_head event_list; /* hubs w/data or errs ready */
58 unsigned long event_bits[1]; /* status change bitmask */
59 unsigned long change_bits[1]; /* ports with logical connect
60 status change */
61 unsigned long busy_bits[1]; /* ports being reset or
62 resumed */
Alan Stern253e0572009-10-27 15:20:13 -040063 unsigned long removed_bits[1]; /* ports with a "removed"
64 device present */
Sarah Sharp4ee823b2011-11-14 18:00:01 -080065 unsigned long wakeup_bits[1]; /* ports that have signaled
66 remote wakeup */
Alan Stern1bb5f662006-11-06 11:56:13 -050067#if USB_MAXCHILDREN > 31 /* 8*sizeof(unsigned long) - 1 */
68#error event_bits[] is too short!
69#endif
70
71 struct usb_hub_descriptor *descriptor; /* class descriptor */
72 struct usb_tt tt; /* Transaction Translator */
73
74 unsigned mA_per_port; /* current for each child */
75
76 unsigned limited_power:1;
77 unsigned quiescing:1;
Alan Sterne8054852007-05-04 11:55:11 -040078 unsigned disconnected:1;
Alan Stern1bb5f662006-11-06 11:56:13 -050079
80 unsigned has_indicators:1;
81 u8 indicator[USB_MAXCHILDREN];
David Howells6d5aefb2006-12-05 19:36:26 +000082 struct delayed_work leds;
Alan Stern8520f382008-09-22 14:44:26 -040083 struct delayed_work init_work;
Alan Stern7cbe5dc2009-06-29 10:56:54 -040084 void **port_owners;
Alan Stern1bb5f662006-11-06 11:56:13 -050085};
86
John Youndbe79bb2001-09-17 00:00:00 -070087static inline int hub_is_superspeed(struct usb_device *hdev)
88{
Aman Deep7bf01182011-12-08 12:05:22 +053089 return (hdev->descriptor.bDeviceProtocol == USB_HUB_PR_SS);
John Youndbe79bb2001-09-17 00:00:00 -070090}
Alan Stern1bb5f662006-11-06 11:56:13 -050091
Linus Torvalds1da177e2005-04-16 15:20:36 -070092/* Protect struct usb_device->state and ->children members
Alan Stern9ad3d6c2005-11-17 17:10:32 -050093 * Note: Both are also protected by ->dev.sem, except that ->state can
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 * change to USB_STATE_NOTATTACHED even when the semaphore isn't held. */
95static DEFINE_SPINLOCK(device_state_lock);
96
97/* khubd's worklist and its lock */
98static DEFINE_SPINLOCK(hub_event_lock);
99static LIST_HEAD(hub_event_list); /* List of hubs needing servicing */
100
101/* Wakes up khubd */
102static DECLARE_WAIT_QUEUE_HEAD(khubd_wait);
103
akpm@osdl.org9c8d6172005-06-20 14:29:58 -0700104static struct task_struct *khubd_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
106/* cycle leds on hubs that aren't blinking for attention */
Rusty Russell90ab5ee2012-01-13 09:32:20 +1030107static bool blinkenlights = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108module_param (blinkenlights, bool, S_IRUGO);
109MODULE_PARM_DESC (blinkenlights, "true to cycle leds on hubs");
110
111/*
Jaroslav Kyselafd7c5192008-10-10 16:24:45 +0200112 * Device SATA8000 FW1.0 from DATAST0R Technology Corp requires about
113 * 10 seconds to send reply for the initial 64-byte descriptor request.
114 */
115/* define initial 64-byte descriptor request timeout in milliseconds */
116static int initial_descriptor_timeout = USB_CTRL_GET_TIMEOUT;
117module_param(initial_descriptor_timeout, int, S_IRUGO|S_IWUSR);
Wu Fengguangb9cef6c2008-12-15 15:32:01 +0800118MODULE_PARM_DESC(initial_descriptor_timeout,
119 "initial 64-byte descriptor request timeout in milliseconds "
120 "(default 5000 - 5.0 seconds)");
Jaroslav Kyselafd7c5192008-10-10 16:24:45 +0200121
122/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 * As of 2.6.10 we introduce a new USB device initialization scheme which
124 * closely resembles the way Windows works. Hopefully it will be compatible
125 * with a wider range of devices than the old scheme. However some previously
126 * working devices may start giving rise to "device not accepting address"
127 * errors; if that happens the user can try the old scheme by adjusting the
128 * following module parameters.
129 *
130 * For maximum flexibility there are two boolean parameters to control the
131 * hub driver's behavior. On the first initialization attempt, if the
132 * "old_scheme_first" parameter is set then the old scheme will be used,
133 * otherwise the new scheme is used. If that fails and "use_both_schemes"
134 * is set, then the driver will make another attempt, using the other scheme.
135 */
Rusty Russell90ab5ee2012-01-13 09:32:20 +1030136static bool old_scheme_first = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137module_param(old_scheme_first, bool, S_IRUGO | S_IWUSR);
138MODULE_PARM_DESC(old_scheme_first,
139 "start with the old device initialization scheme");
140
Rusty Russell90ab5ee2012-01-13 09:32:20 +1030141static bool use_both_schemes = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142module_param(use_both_schemes, bool, S_IRUGO | S_IWUSR);
143MODULE_PARM_DESC(use_both_schemes,
144 "try the other device initialization scheme if the "
145 "first one fails");
146
Alan Stern32fe0192007-10-10 16:27:07 -0400147/* Mutual exclusion for EHCI CF initialization. This interferes with
148 * port reset on some companion controllers.
149 */
150DECLARE_RWSEM(ehci_cf_port_reset_rwsem);
151EXPORT_SYMBOL_GPL(ehci_cf_port_reset_rwsem);
152
Alan Stern948fea32008-04-28 11:07:07 -0400153#define HUB_DEBOUNCE_TIMEOUT 1500
154#define HUB_DEBOUNCE_STEP 25
155#define HUB_DEBOUNCE_STABLE 100
156
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
Ming Lei742120c2008-06-18 22:00:29 +0800158static int usb_reset_and_verify_device(struct usb_device *udev);
159
Sarah Sharp131dec32010-12-06 21:00:19 -0800160static inline char *portspeed(struct usb_hub *hub, int portstatus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161{
Sarah Sharp131dec32010-12-06 21:00:19 -0800162 if (hub_is_superspeed(hub->hdev))
163 return "5.0 Gb/s";
Alan Stern288ead42010-03-04 11:32:30 -0500164 if (portstatus & USB_PORT_STAT_HIGH_SPEED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 return "480 Mb/s";
Alan Stern288ead42010-03-04 11:32:30 -0500166 else if (portstatus & USB_PORT_STAT_LOW_SPEED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 return "1.5 Mb/s";
168 else
169 return "12 Mb/s";
170}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
172/* Note that hdev or one of its children must be locked! */
Alan Stern251180842009-07-22 14:41:18 -0400173static struct usb_hub *hdev_to_hub(struct usb_device *hdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174{
Alan Stern251180842009-07-22 14:41:18 -0400175 if (!hdev || !hdev->actconfig)
176 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 return usb_get_intfdata(hdev->actconfig->interface[0]);
178}
179
180/* USB 2.0 spec Section 11.24.4.5 */
John Youndbe79bb2001-09-17 00:00:00 -0700181static int get_hub_descriptor(struct usb_device *hdev, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182{
John Youndbe79bb2001-09-17 00:00:00 -0700183 int i, ret, size;
184 unsigned dtype;
185
186 if (hub_is_superspeed(hdev)) {
187 dtype = USB_DT_SS_HUB;
188 size = USB_DT_SS_HUB_SIZE;
189 } else {
190 dtype = USB_DT_HUB;
191 size = sizeof(struct usb_hub_descriptor);
192 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
194 for (i = 0; i < 3; i++) {
195 ret = usb_control_msg(hdev, usb_rcvctrlpipe(hdev, 0),
196 USB_REQ_GET_DESCRIPTOR, USB_DIR_IN | USB_RT_HUB,
John Youndbe79bb2001-09-17 00:00:00 -0700197 dtype << 8, 0, data, size,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 USB_CTRL_GET_TIMEOUT);
199 if (ret >= (USB_DT_HUB_NONVAR_SIZE + 2))
200 return ret;
201 }
202 return -EINVAL;
203}
204
205/*
206 * USB 2.0 spec Section 11.24.2.1
207 */
208static int clear_hub_feature(struct usb_device *hdev, int feature)
209{
210 return usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
211 USB_REQ_CLEAR_FEATURE, USB_RT_HUB, feature, 0, NULL, 0, 1000);
212}
213
214/*
215 * USB 2.0 spec Section 11.24.2.2
216 */
217static int clear_port_feature(struct usb_device *hdev, int port1, int feature)
218{
219 return usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
220 USB_REQ_CLEAR_FEATURE, USB_RT_PORT, feature, port1,
221 NULL, 0, 1000);
222}
223
224/*
225 * USB 2.0 spec Section 11.24.2.13
226 */
227static int set_port_feature(struct usb_device *hdev, int port1, int feature)
228{
229 return usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
230 USB_REQ_SET_FEATURE, USB_RT_PORT, feature, port1,
231 NULL, 0, 1000);
232}
233
234/*
235 * USB 2.0 spec Section 11.24.2.7.1.10 and table 11-7
236 * for info about using port indicators
237 */
238static void set_port_led(
239 struct usb_hub *hub,
240 int port1,
241 int selector
242)
243{
244 int status = set_port_feature(hub->hdev, (selector << 8) | port1,
245 USB_PORT_FEAT_INDICATOR);
246 if (status < 0)
247 dev_dbg (hub->intfdev,
248 "port %d indicator %s status %d\n",
249 port1,
250 ({ char *s; switch (selector) {
251 case HUB_LED_AMBER: s = "amber"; break;
252 case HUB_LED_GREEN: s = "green"; break;
253 case HUB_LED_OFF: s = "off"; break;
254 case HUB_LED_AUTO: s = "auto"; break;
255 default: s = "??"; break;
256 }; s; }),
257 status);
258}
259
260#define LED_CYCLE_PERIOD ((2*HZ)/3)
261
David Howellsc4028952006-11-22 14:57:56 +0000262static void led_work (struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263{
David Howellsc4028952006-11-22 14:57:56 +0000264 struct usb_hub *hub =
265 container_of(work, struct usb_hub, leds.work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 struct usb_device *hdev = hub->hdev;
267 unsigned i;
268 unsigned changed = 0;
269 int cursor = -1;
270
271 if (hdev->state != USB_STATE_CONFIGURED || hub->quiescing)
272 return;
273
274 for (i = 0; i < hub->descriptor->bNbrPorts; i++) {
275 unsigned selector, mode;
276
277 /* 30%-50% duty cycle */
278
279 switch (hub->indicator[i]) {
280 /* cycle marker */
281 case INDICATOR_CYCLE:
282 cursor = i;
283 selector = HUB_LED_AUTO;
284 mode = INDICATOR_AUTO;
285 break;
286 /* blinking green = sw attention */
287 case INDICATOR_GREEN_BLINK:
288 selector = HUB_LED_GREEN;
289 mode = INDICATOR_GREEN_BLINK_OFF;
290 break;
291 case INDICATOR_GREEN_BLINK_OFF:
292 selector = HUB_LED_OFF;
293 mode = INDICATOR_GREEN_BLINK;
294 break;
295 /* blinking amber = hw attention */
296 case INDICATOR_AMBER_BLINK:
297 selector = HUB_LED_AMBER;
298 mode = INDICATOR_AMBER_BLINK_OFF;
299 break;
300 case INDICATOR_AMBER_BLINK_OFF:
301 selector = HUB_LED_OFF;
302 mode = INDICATOR_AMBER_BLINK;
303 break;
304 /* blink green/amber = reserved */
305 case INDICATOR_ALT_BLINK:
306 selector = HUB_LED_GREEN;
307 mode = INDICATOR_ALT_BLINK_OFF;
308 break;
309 case INDICATOR_ALT_BLINK_OFF:
310 selector = HUB_LED_AMBER;
311 mode = INDICATOR_ALT_BLINK;
312 break;
313 default:
314 continue;
315 }
316 if (selector != HUB_LED_AUTO)
317 changed = 1;
318 set_port_led(hub, i + 1, selector);
319 hub->indicator[i] = mode;
320 }
321 if (!changed && blinkenlights) {
322 cursor++;
323 cursor %= hub->descriptor->bNbrPorts;
324 set_port_led(hub, cursor + 1, HUB_LED_GREEN);
325 hub->indicator[cursor] = INDICATOR_CYCLE;
326 changed++;
327 }
328 if (changed)
329 schedule_delayed_work(&hub->leds, LED_CYCLE_PERIOD);
330}
331
332/* use a short timeout for hub/port status fetches */
333#define USB_STS_TIMEOUT 1000
334#define USB_STS_RETRIES 5
335
336/*
337 * USB 2.0 spec Section 11.24.2.6
338 */
339static int get_hub_status(struct usb_device *hdev,
340 struct usb_hub_status *data)
341{
342 int i, status = -ETIMEDOUT;
343
Libor Pechacek3824c1d2011-05-20 14:53:25 +0200344 for (i = 0; i < USB_STS_RETRIES &&
345 (status == -ETIMEDOUT || status == -EPIPE); i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 status = usb_control_msg(hdev, usb_rcvctrlpipe(hdev, 0),
347 USB_REQ_GET_STATUS, USB_DIR_IN | USB_RT_HUB, 0, 0,
348 data, sizeof(*data), USB_STS_TIMEOUT);
349 }
350 return status;
351}
352
353/*
354 * USB 2.0 spec Section 11.24.2.7
355 */
356static int get_port_status(struct usb_device *hdev, int port1,
357 struct usb_port_status *data)
358{
359 int i, status = -ETIMEDOUT;
360
Libor Pechacek3824c1d2011-05-20 14:53:25 +0200361 for (i = 0; i < USB_STS_RETRIES &&
362 (status == -ETIMEDOUT || status == -EPIPE); i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 status = usb_control_msg(hdev, usb_rcvctrlpipe(hdev, 0),
364 USB_REQ_GET_STATUS, USB_DIR_IN | USB_RT_PORT, 0, port1,
365 data, sizeof(*data), USB_STS_TIMEOUT);
366 }
367 return status;
368}
369
Alan Stern3eb14912008-03-03 15:15:43 -0500370static int hub_port_status(struct usb_hub *hub, int port1,
371 u16 *status, u16 *change)
372{
373 int ret;
374
375 mutex_lock(&hub->status_mutex);
376 ret = get_port_status(hub->hdev, port1, &hub->status->port);
377 if (ret < 4) {
378 dev_err(hub->intfdev,
379 "%s failed (err = %d)\n", __func__, ret);
380 if (ret >= 0)
381 ret = -EIO;
382 } else {
383 *status = le16_to_cpu(hub->status->port.wPortStatus);
384 *change = le16_to_cpu(hub->status->port.wPortChange);
John Youndbe79bb2001-09-17 00:00:00 -0700385
Alan Stern3eb14912008-03-03 15:15:43 -0500386 ret = 0;
387 }
388 mutex_unlock(&hub->status_mutex);
389 return ret;
390}
391
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392static void kick_khubd(struct usb_hub *hub)
393{
394 unsigned long flags;
395
396 spin_lock_irqsave(&hub_event_lock, flags);
Roel Kluin2e2c5ee2007-10-26 23:54:35 +0200397 if (!hub->disconnected && list_empty(&hub->event_list)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 list_add_tail(&hub->event_list, &hub_event_list);
Alan Stern8e4ceb32009-12-07 13:01:37 -0500399
400 /* Suppress autosuspend until khubd runs */
401 usb_autopm_get_interface_no_resume(
402 to_usb_interface(hub->intfdev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 wake_up(&khubd_wait);
404 }
405 spin_unlock_irqrestore(&hub_event_lock, flags);
406}
407
408void usb_kick_khubd(struct usb_device *hdev)
409{
Alan Stern251180842009-07-22 14:41:18 -0400410 struct usb_hub *hub = hdev_to_hub(hdev);
411
412 if (hub)
413 kick_khubd(hub);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414}
415
Sarah Sharp4ee823b2011-11-14 18:00:01 -0800416/*
417 * Let the USB core know that a USB 3.0 device has sent a Function Wake Device
418 * Notification, which indicates it had initiated remote wakeup.
419 *
420 * USB 3.0 hubs do not report the port link state change from U3 to U0 when the
421 * device initiates resume, so the USB core will not receive notice of the
422 * resume through the normal hub interrupt URB.
423 */
424void usb_wakeup_notification(struct usb_device *hdev,
425 unsigned int portnum)
426{
427 struct usb_hub *hub;
428
429 if (!hdev)
430 return;
431
432 hub = hdev_to_hub(hdev);
433 if (hub) {
434 set_bit(portnum, hub->wakeup_bits);
435 kick_khubd(hub);
436 }
437}
438EXPORT_SYMBOL_GPL(usb_wakeup_notification);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439
440/* completion function, fires on port status changes and various faults */
David Howells7d12e782006-10-05 14:55:46 +0100441static void hub_irq(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442{
Tobias Klauserec17cf12006-09-13 21:38:41 +0200443 struct usb_hub *hub = urb->context;
Alan Sterne0152682007-08-24 15:42:52 -0400444 int status = urb->status;
Roel Kluin71d27182009-03-13 12:19:18 +0100445 unsigned i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 unsigned long bits;
447
Alan Sterne0152682007-08-24 15:42:52 -0400448 switch (status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 case -ENOENT: /* synchronous unlink */
450 case -ECONNRESET: /* async unlink */
451 case -ESHUTDOWN: /* hardware going away */
452 return;
453
454 default: /* presumably an error */
455 /* Cause a hub reset after 10 consecutive errors */
Alan Sterne0152682007-08-24 15:42:52 -0400456 dev_dbg (hub->intfdev, "transfer --> %d\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 if ((++hub->nerrors < 10) || hub->error)
458 goto resubmit;
Alan Sterne0152682007-08-24 15:42:52 -0400459 hub->error = status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 /* FALL THROUGH */
Tobias Klauserec17cf12006-09-13 21:38:41 +0200461
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 /* let khubd handle things */
463 case 0: /* we got data: port status changed */
464 bits = 0;
465 for (i = 0; i < urb->actual_length; ++i)
466 bits |= ((unsigned long) ((*hub->buffer)[i]))
467 << (i*8);
468 hub->event_bits[0] = bits;
469 break;
470 }
471
472 hub->nerrors = 0;
473
474 /* Something happened, let khubd figure it out */
475 kick_khubd(hub);
476
477resubmit:
478 if (hub->quiescing)
479 return;
480
481 if ((status = usb_submit_urb (hub->urb, GFP_ATOMIC)) != 0
482 && status != -ENODEV && status != -EPERM)
483 dev_err (hub->intfdev, "resubmit --> %d\n", status);
484}
485
486/* USB 2.0 spec Section 11.24.2.3 */
487static inline int
488hub_clear_tt_buffer (struct usb_device *hdev, u16 devinfo, u16 tt)
489{
Alan Sternc2f65952009-11-18 11:37:15 -0500490 return usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 HUB_CLEAR_TT_BUFFER, USB_RT_PORT, devinfo,
492 tt, NULL, 0, 1000);
493}
494
495/*
496 * enumeration blocks khubd for a long time. we use keventd instead, since
497 * long blocking there is the exception, not the rule. accordingly, HCDs
498 * talking to TTs must queue control transfers (not just bulk and iso), so
499 * both can talk to the same hub concurrently.
500 */
Alan Sterncb88a1b2009-06-29 10:43:32 -0400501static void hub_tt_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502{
David Howellsc4028952006-11-22 14:57:56 +0000503 struct usb_hub *hub =
Alan Sterncb88a1b2009-06-29 10:43:32 -0400504 container_of(work, struct usb_hub, tt.clear_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 unsigned long flags;
Mark Lord55e5fdf2007-05-14 19:48:02 -0400506 int limit = 100;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507
508 spin_lock_irqsave (&hub->tt.lock, flags);
Mark Lord55e5fdf2007-05-14 19:48:02 -0400509 while (--limit && !list_empty (&hub->tt.clear_list)) {
H Hartley Sweetend0f830d2009-04-22 16:03:05 -0400510 struct list_head *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 struct usb_tt_clear *clear;
512 struct usb_device *hdev = hub->hdev;
Alan Sterncb88a1b2009-06-29 10:43:32 -0400513 const struct hc_driver *drv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 int status;
515
H Hartley Sweetend0f830d2009-04-22 16:03:05 -0400516 next = hub->tt.clear_list.next;
517 clear = list_entry (next, struct usb_tt_clear, clear_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 list_del (&clear->clear_list);
519
520 /* drop lock so HCD can concurrently report other TT errors */
521 spin_unlock_irqrestore (&hub->tt.lock, flags);
522 status = hub_clear_tt_buffer (hdev, clear->devinfo, clear->tt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 if (status)
524 dev_err (&hdev->dev,
525 "clear tt %d (%04x) error %d\n",
526 clear->tt, clear->devinfo, status);
Alan Sterncb88a1b2009-06-29 10:43:32 -0400527
528 /* Tell the HCD, even if the operation failed */
529 drv = clear->hcd->driver;
530 if (drv->clear_tt_buffer_complete)
531 (drv->clear_tt_buffer_complete)(clear->hcd, clear->ep);
532
Jesper Juhl1bc3c9e2005-04-18 17:39:34 -0700533 kfree(clear);
Alan Sterncb88a1b2009-06-29 10:43:32 -0400534 spin_lock_irqsave(&hub->tt.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 }
536 spin_unlock_irqrestore (&hub->tt.lock, flags);
537}
538
539/**
Alan Sterncb88a1b2009-06-29 10:43:32 -0400540 * usb_hub_clear_tt_buffer - clear control/bulk TT state in high speed hub
541 * @urb: an URB associated with the failed or incomplete split transaction
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 *
543 * High speed HCDs use this to tell the hub driver that some split control or
544 * bulk transaction failed in a way that requires clearing internal state of
545 * a transaction translator. This is normally detected (and reported) from
546 * interrupt context.
547 *
548 * It may not be possible for that hub to handle additional full (or low)
549 * speed transactions until that state is fully cleared out.
550 */
Alan Sterncb88a1b2009-06-29 10:43:32 -0400551int usb_hub_clear_tt_buffer(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552{
Alan Sterncb88a1b2009-06-29 10:43:32 -0400553 struct usb_device *udev = urb->dev;
554 int pipe = urb->pipe;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 struct usb_tt *tt = udev->tt;
556 unsigned long flags;
557 struct usb_tt_clear *clear;
558
559 /* we've got to cope with an arbitrary number of pending TT clears,
560 * since each TT has "at least two" buffers that can need it (and
561 * there can be many TTs per hub). even if they're uncommon.
562 */
Christoph Lameter54e6ecb2006-12-06 20:33:16 -0800563 if ((clear = kmalloc (sizeof *clear, GFP_ATOMIC)) == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 dev_err (&udev->dev, "can't save CLEAR_TT_BUFFER state\n");
565 /* FIXME recover somehow ... RESET_TT? */
Alan Sterncb88a1b2009-06-29 10:43:32 -0400566 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 }
568
569 /* info that CLEAR_TT_BUFFER needs */
570 clear->tt = tt->multi ? udev->ttport : 1;
571 clear->devinfo = usb_pipeendpoint (pipe);
572 clear->devinfo |= udev->devnum << 4;
573 clear->devinfo |= usb_pipecontrol (pipe)
574 ? (USB_ENDPOINT_XFER_CONTROL << 11)
575 : (USB_ENDPOINT_XFER_BULK << 11);
576 if (usb_pipein (pipe))
577 clear->devinfo |= 1 << 15;
Alan Sterncb88a1b2009-06-29 10:43:32 -0400578
579 /* info for completion callback */
580 clear->hcd = bus_to_hcd(udev->bus);
581 clear->ep = urb->ep;
582
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 /* tell keventd to clear state for this TT */
584 spin_lock_irqsave (&tt->lock, flags);
585 list_add_tail (&clear->clear_list, &tt->clear_list);
Alan Sterncb88a1b2009-06-29 10:43:32 -0400586 schedule_work(&tt->clear_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 spin_unlock_irqrestore (&tt->lock, flags);
Alan Sterncb88a1b2009-06-29 10:43:32 -0400588 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589}
Alan Sterncb88a1b2009-06-29 10:43:32 -0400590EXPORT_SYMBOL_GPL(usb_hub_clear_tt_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591
Alan Stern8520f382008-09-22 14:44:26 -0400592/* If do_delay is false, return the number of milliseconds the caller
593 * needs to delay.
594 */
595static unsigned hub_power_on(struct usb_hub *hub, bool do_delay)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596{
597 int port1;
David Brownellb7896962005-08-31 10:41:44 -0700598 unsigned pgood_delay = hub->descriptor->bPwrOn2PwrGood * 2;
Alan Stern8520f382008-09-22 14:44:26 -0400599 unsigned delay;
Alan Stern4489a572006-04-27 15:54:22 -0400600 u16 wHubCharacteristics =
601 le16_to_cpu(hub->descriptor->wHubCharacteristics);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602
Alan Stern4489a572006-04-27 15:54:22 -0400603 /* Enable power on each port. Some hubs have reserved values
604 * of LPSM (> 2) in their descriptors, even though they are
605 * USB 2.0 hubs. Some hubs do not implement port-power switching
606 * but only emulate it. In all cases, the ports won't work
607 * unless we send these messages to the hub.
608 */
609 if ((wHubCharacteristics & HUB_CHAR_LPSM) < 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 dev_dbg(hub->intfdev, "enabling power on all ports\n");
Alan Stern4489a572006-04-27 15:54:22 -0400611 else
612 dev_dbg(hub->intfdev, "trying to enable port power on "
613 "non-switchable hub\n");
614 for (port1 = 1; port1 <= hub->descriptor->bNbrPorts; port1++)
615 set_port_feature(hub->hdev, port1, USB_PORT_FEAT_POWER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616
David Brownellb7896962005-08-31 10:41:44 -0700617 /* Wait at least 100 msec for power to become stable */
Alan Stern8520f382008-09-22 14:44:26 -0400618 delay = max(pgood_delay, (unsigned) 100);
619 if (do_delay)
620 msleep(delay);
621 return delay;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622}
623
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624static int hub_hub_status(struct usb_hub *hub,
625 u16 *status, u16 *change)
626{
627 int ret;
628
Alan Sterndb90e7a2007-02-05 09:56:15 -0500629 mutex_lock(&hub->status_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 ret = get_hub_status(hub->hdev, &hub->status->hub);
631 if (ret < 0)
632 dev_err (hub->intfdev,
Harvey Harrison441b62c2008-03-03 16:08:34 -0800633 "%s failed (err = %d)\n", __func__, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 else {
635 *status = le16_to_cpu(hub->status->hub.wHubStatus);
636 *change = le16_to_cpu(hub->status->hub.wHubChange);
637 ret = 0;
638 }
Alan Sterndb90e7a2007-02-05 09:56:15 -0500639 mutex_unlock(&hub->status_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 return ret;
641}
642
Alan Stern8b28c752005-08-10 17:04:13 -0400643static int hub_port_disable(struct usb_hub *hub, int port1, int set_state)
644{
645 struct usb_device *hdev = hub->hdev;
Alan Stern0458d5b2007-05-04 11:52:20 -0400646 int ret = 0;
Alan Stern8b28c752005-08-10 17:04:13 -0400647
Alan Stern0458d5b2007-05-04 11:52:20 -0400648 if (hdev->children[port1-1] && set_state)
Alan Stern8b28c752005-08-10 17:04:13 -0400649 usb_set_device_state(hdev->children[port1-1],
650 USB_STATE_NOTATTACHED);
John Youndbe79bb2001-09-17 00:00:00 -0700651 if (!hub->error && !hub_is_superspeed(hub->hdev))
Alan Stern0458d5b2007-05-04 11:52:20 -0400652 ret = clear_port_feature(hdev, port1, USB_PORT_FEAT_ENABLE);
Alan Stern8b28c752005-08-10 17:04:13 -0400653 if (ret)
654 dev_err(hub->intfdev, "cannot disable port %d (err = %d)\n",
Alan Stern0458d5b2007-05-04 11:52:20 -0400655 port1, ret);
Alan Stern8b28c752005-08-10 17:04:13 -0400656 return ret;
657}
658
Alan Stern0458d5b2007-05-04 11:52:20 -0400659/*
Justin P. Mattock6d42fcd2011-02-26 20:33:56 -0800660 * Disable a port and mark a logical connect-change event, so that some
Alan Stern0458d5b2007-05-04 11:52:20 -0400661 * time later khubd will disconnect() any existing usb_device on the port
662 * and will re-enumerate if there actually is a device attached.
663 */
664static void hub_port_logical_disconnect(struct usb_hub *hub, int port1)
665{
666 dev_dbg(hub->intfdev, "logical disconnect on port %d\n", port1);
667 hub_port_disable(hub, port1, 1);
668
669 /* FIXME let caller ask to power down the port:
670 * - some devices won't enumerate without a VBUS power cycle
671 * - SRP saves power that way
672 * - ... new call, TBD ...
673 * That's easy if this hub can switch power per-port, and
674 * khubd reactivates the port later (timer, SRP, etc).
675 * Powerdown must be optional, because of reset/DFU.
676 */
677
678 set_bit(port1, hub->change_bits);
679 kick_khubd(hub);
680}
681
Alan Stern253e0572009-10-27 15:20:13 -0400682/**
683 * usb_remove_device - disable a device's port on its parent hub
684 * @udev: device to be disabled and removed
685 * Context: @udev locked, must be able to sleep.
686 *
687 * After @udev's port has been disabled, khubd is notified and it will
688 * see that the device has been disconnected. When the device is
689 * physically unplugged and something is plugged in, the events will
690 * be received and processed normally.
691 */
692int usb_remove_device(struct usb_device *udev)
693{
694 struct usb_hub *hub;
695 struct usb_interface *intf;
696
697 if (!udev->parent) /* Can't remove a root hub */
698 return -EINVAL;
699 hub = hdev_to_hub(udev->parent);
700 intf = to_usb_interface(hub->intfdev);
701
702 usb_autopm_get_interface(intf);
703 set_bit(udev->portnum, hub->removed_bits);
704 hub_port_logical_disconnect(hub, udev->portnum);
705 usb_autopm_put_interface(intf);
706 return 0;
707}
708
Alan Stern6ee0b272008-04-28 11:06:42 -0400709enum hub_activation_type {
Alan Stern8e4ceb32009-12-07 13:01:37 -0500710 HUB_INIT, HUB_INIT2, HUB_INIT3, /* INITs must come first */
Alan Stern8520f382008-09-22 14:44:26 -0400711 HUB_POST_RESET, HUB_RESUME, HUB_RESET_RESUME,
Alan Stern6ee0b272008-04-28 11:06:42 -0400712};
Alan Stern5e6effa2008-03-03 15:15:51 -0500713
Alan Stern8520f382008-09-22 14:44:26 -0400714static void hub_init_func2(struct work_struct *ws);
715static void hub_init_func3(struct work_struct *ws);
716
Alan Sternf2835212008-04-28 11:07:17 -0400717static void hub_activate(struct usb_hub *hub, enum hub_activation_type type)
Alan Stern5e6effa2008-03-03 15:15:51 -0500718{
719 struct usb_device *hdev = hub->hdev;
Sarah Sharp653a39d2010-12-23 11:12:42 -0800720 struct usb_hcd *hcd;
721 int ret;
Alan Stern5e6effa2008-03-03 15:15:51 -0500722 int port1;
Alan Sternf2835212008-04-28 11:07:17 -0400723 int status;
Alan Stern948fea32008-04-28 11:07:07 -0400724 bool need_debounce_delay = false;
Alan Stern8520f382008-09-22 14:44:26 -0400725 unsigned delay;
726
727 /* Continue a partial initialization */
728 if (type == HUB_INIT2)
729 goto init2;
730 if (type == HUB_INIT3)
731 goto init3;
Alan Stern5e6effa2008-03-03 15:15:51 -0500732
Alan Sternf2835212008-04-28 11:07:17 -0400733 /* After a resume, port power should still be on.
734 * For any other type of activation, turn it on.
735 */
Alan Stern8520f382008-09-22 14:44:26 -0400736 if (type != HUB_RESUME) {
737
738 /* Speed up system boot by using a delayed_work for the
739 * hub's initial power-up delays. This is pretty awkward
740 * and the implementation looks like a home-brewed sort of
741 * setjmp/longjmp, but it saves at least 100 ms for each
742 * root hub (assuming usbcore is compiled into the kernel
743 * rather than as a module). It adds up.
744 *
745 * This can't be done for HUB_RESUME or HUB_RESET_RESUME
746 * because for those activation types the ports have to be
747 * operational when we return. In theory this could be done
748 * for HUB_POST_RESET, but it's easier not to.
749 */
750 if (type == HUB_INIT) {
751 delay = hub_power_on(hub, false);
752 PREPARE_DELAYED_WORK(&hub->init_work, hub_init_func2);
753 schedule_delayed_work(&hub->init_work,
754 msecs_to_jiffies(delay));
Alan Stern61fbeba2008-10-27 12:07:44 -0400755
756 /* Suppress autosuspend until init is done */
Alan Stern8e4ceb32009-12-07 13:01:37 -0500757 usb_autopm_get_interface_no_resume(
758 to_usb_interface(hub->intfdev));
Alan Stern8520f382008-09-22 14:44:26 -0400759 return; /* Continues at init2: below */
Sarah Sharp653a39d2010-12-23 11:12:42 -0800760 } else if (type == HUB_RESET_RESUME) {
761 /* The internal host controller state for the hub device
762 * may be gone after a host power loss on system resume.
763 * Update the device's info so the HW knows it's a hub.
764 */
765 hcd = bus_to_hcd(hdev->bus);
766 if (hcd->driver->update_hub_device) {
767 ret = hcd->driver->update_hub_device(hcd, hdev,
768 &hub->tt, GFP_NOIO);
769 if (ret < 0) {
770 dev_err(hub->intfdev, "Host not "
771 "accepting hub info "
772 "update.\n");
773 dev_err(hub->intfdev, "LS/FS devices "
774 "and hubs may not work "
775 "under this hub\n.");
776 }
777 }
778 hub_power_on(hub, true);
Alan Stern8520f382008-09-22 14:44:26 -0400779 } else {
780 hub_power_on(hub, true);
781 }
782 }
783 init2:
Alan Sternf2835212008-04-28 11:07:17 -0400784
Alan Stern6ee0b272008-04-28 11:06:42 -0400785 /* Check each port and set hub->change_bits to let khubd know
786 * which ports need attention.
Alan Stern5e6effa2008-03-03 15:15:51 -0500787 */
788 for (port1 = 1; port1 <= hdev->maxchild; ++port1) {
789 struct usb_device *udev = hdev->children[port1-1];
Alan Stern5e6effa2008-03-03 15:15:51 -0500790 u16 portstatus, portchange;
791
Alan Stern6ee0b272008-04-28 11:06:42 -0400792 portstatus = portchange = 0;
793 status = hub_port_status(hub, port1, &portstatus, &portchange);
794 if (udev || (portstatus & USB_PORT_STAT_CONNECTION))
795 dev_dbg(hub->intfdev,
796 "port %d: status %04x change %04x\n",
797 port1, portstatus, portchange);
Alan Stern5e6effa2008-03-03 15:15:51 -0500798
Alan Stern6ee0b272008-04-28 11:06:42 -0400799 /* After anything other than HUB_RESUME (i.e., initialization
800 * or any sort of reset), every port should be disabled.
801 * Unconnected ports should likewise be disabled (paranoia),
802 * and so should ports for which we have no usb_device.
Alan Stern5e6effa2008-03-03 15:15:51 -0500803 */
Alan Stern6ee0b272008-04-28 11:06:42 -0400804 if ((portstatus & USB_PORT_STAT_ENABLE) && (
805 type != HUB_RESUME ||
806 !(portstatus & USB_PORT_STAT_CONNECTION) ||
807 !udev ||
808 udev->state == USB_STATE_NOTATTACHED)) {
Andiry Xu9f0a6cd2010-05-07 18:09:27 +0800809 /*
810 * USB3 protocol ports will automatically transition
811 * to Enabled state when detect an USB3.0 device attach.
812 * Do not disable USB3 protocol ports.
Andiry Xu9f0a6cd2010-05-07 18:09:27 +0800813 */
Sarah Sharp131dec32010-12-06 21:00:19 -0800814 if (!hub_is_superspeed(hdev)) {
Andiry Xu9f0a6cd2010-05-07 18:09:27 +0800815 clear_port_feature(hdev, port1,
816 USB_PORT_FEAT_ENABLE);
817 portstatus &= ~USB_PORT_STAT_ENABLE;
Sarah Sharp85f0ff42010-10-14 07:22:54 -0700818 } else {
819 /* Pretend that power was lost for USB3 devs */
820 portstatus &= ~USB_PORT_STAT_ENABLE;
Andiry Xu9f0a6cd2010-05-07 18:09:27 +0800821 }
Alan Stern6ee0b272008-04-28 11:06:42 -0400822 }
823
Alan Stern948fea32008-04-28 11:07:07 -0400824 /* Clear status-change flags; we'll debounce later */
825 if (portchange & USB_PORT_STAT_C_CONNECTION) {
826 need_debounce_delay = true;
827 clear_port_feature(hub->hdev, port1,
828 USB_PORT_FEAT_C_CONNECTION);
829 }
830 if (portchange & USB_PORT_STAT_C_ENABLE) {
831 need_debounce_delay = true;
832 clear_port_feature(hub->hdev, port1,
833 USB_PORT_FEAT_C_ENABLE);
834 }
Don Zickus79c3dd82011-11-03 09:07:18 -0400835 if ((portchange & USB_PORT_STAT_C_BH_RESET) &&
836 hub_is_superspeed(hub->hdev)) {
837 need_debounce_delay = true;
838 clear_port_feature(hub->hdev, port1,
839 USB_PORT_FEAT_C_BH_PORT_RESET);
840 }
Alan Stern253e0572009-10-27 15:20:13 -0400841 /* We can forget about a "removed" device when there's a
842 * physical disconnect or the connect status changes.
843 */
844 if (!(portstatus & USB_PORT_STAT_CONNECTION) ||
845 (portchange & USB_PORT_STAT_C_CONNECTION))
846 clear_bit(port1, hub->removed_bits);
847
Alan Stern6ee0b272008-04-28 11:06:42 -0400848 if (!udev || udev->state == USB_STATE_NOTATTACHED) {
849 /* Tell khubd to disconnect the device or
850 * check for a new connection
851 */
852 if (udev || (portstatus & USB_PORT_STAT_CONNECTION))
853 set_bit(port1, hub->change_bits);
854
855 } else if (portstatus & USB_PORT_STAT_ENABLE) {
Sarah Sharp72937e12012-01-24 11:46:50 -0800856 bool port_resumed = (portstatus &
857 USB_PORT_STAT_LINK_STATE) ==
858 USB_SS_PORT_LS_U0;
Alan Stern6ee0b272008-04-28 11:06:42 -0400859 /* The power session apparently survived the resume.
860 * If there was an overcurrent or suspend change
861 * (i.e., remote wakeup request), have khubd
Sarah Sharp72937e12012-01-24 11:46:50 -0800862 * take care of it. Look at the port link state
863 * for USB 3.0 hubs, since they don't have a suspend
864 * change bit, and they don't set the port link change
865 * bit on device-initiated resume.
Alan Stern6ee0b272008-04-28 11:06:42 -0400866 */
Sarah Sharp72937e12012-01-24 11:46:50 -0800867 if (portchange || (hub_is_superspeed(hub->hdev) &&
868 port_resumed))
Alan Stern6ee0b272008-04-28 11:06:42 -0400869 set_bit(port1, hub->change_bits);
870
871 } else if (udev->persist_enabled) {
Alan Stern6ee0b272008-04-28 11:06:42 -0400872#ifdef CONFIG_PM
Alan Stern5e6effa2008-03-03 15:15:51 -0500873 udev->reset_resume = 1;
Alan Stern6ee0b272008-04-28 11:06:42 -0400874#endif
Alan Stern8808f002008-04-28 11:06:55 -0400875 set_bit(port1, hub->change_bits);
876
Alan Stern6ee0b272008-04-28 11:06:42 -0400877 } else {
878 /* The power session is gone; tell khubd */
879 usb_set_device_state(udev, USB_STATE_NOTATTACHED);
880 set_bit(port1, hub->change_bits);
Alan Stern5e6effa2008-03-03 15:15:51 -0500881 }
Alan Stern5e6effa2008-03-03 15:15:51 -0500882 }
883
Alan Stern948fea32008-04-28 11:07:07 -0400884 /* If no port-status-change flags were set, we don't need any
885 * debouncing. If flags were set we can try to debounce the
886 * ports all at once right now, instead of letting khubd do them
887 * one at a time later on.
888 *
889 * If any port-status changes do occur during this delay, khubd
890 * will see them later and handle them normally.
891 */
Alan Stern8520f382008-09-22 14:44:26 -0400892 if (need_debounce_delay) {
893 delay = HUB_DEBOUNCE_STABLE;
Alan Sternf2835212008-04-28 11:07:17 -0400894
Alan Stern8520f382008-09-22 14:44:26 -0400895 /* Don't do a long sleep inside a workqueue routine */
896 if (type == HUB_INIT2) {
897 PREPARE_DELAYED_WORK(&hub->init_work, hub_init_func3);
898 schedule_delayed_work(&hub->init_work,
899 msecs_to_jiffies(delay));
900 return; /* Continues at init3: below */
901 } else {
902 msleep(delay);
903 }
904 }
905 init3:
Alan Sternf2835212008-04-28 11:07:17 -0400906 hub->quiescing = 0;
907
908 status = usb_submit_urb(hub->urb, GFP_NOIO);
909 if (status < 0)
910 dev_err(hub->intfdev, "activate --> %d\n", status);
911 if (hub->has_indicators && blinkenlights)
912 schedule_delayed_work(&hub->leds, LED_CYCLE_PERIOD);
913
914 /* Scan all ports that need attention */
915 kick_khubd(hub);
Alan Stern8e4ceb32009-12-07 13:01:37 -0500916
917 /* Allow autosuspend if it was suppressed */
918 if (type <= HUB_INIT3)
919 usb_autopm_put_interface_async(to_usb_interface(hub->intfdev));
Alan Stern5e6effa2008-03-03 15:15:51 -0500920}
921
Alan Stern8520f382008-09-22 14:44:26 -0400922/* Implement the continuations for the delays above */
923static void hub_init_func2(struct work_struct *ws)
924{
925 struct usb_hub *hub = container_of(ws, struct usb_hub, init_work.work);
926
927 hub_activate(hub, HUB_INIT2);
928}
929
930static void hub_init_func3(struct work_struct *ws)
931{
932 struct usb_hub *hub = container_of(ws, struct usb_hub, init_work.work);
933
934 hub_activate(hub, HUB_INIT3);
935}
936
Alan Stern43303542008-04-28 11:07:31 -0400937enum hub_quiescing_type {
938 HUB_DISCONNECT, HUB_PRE_RESET, HUB_SUSPEND
939};
940
941static void hub_quiesce(struct usb_hub *hub, enum hub_quiescing_type type)
942{
943 struct usb_device *hdev = hub->hdev;
944 int i;
945
Alan Stern8520f382008-09-22 14:44:26 -0400946 cancel_delayed_work_sync(&hub->init_work);
947
Alan Stern43303542008-04-28 11:07:31 -0400948 /* khubd and related activity won't re-trigger */
949 hub->quiescing = 1;
950
951 if (type != HUB_SUSPEND) {
952 /* Disconnect all the children */
953 for (i = 0; i < hdev->maxchild; ++i) {
954 if (hdev->children[i])
955 usb_disconnect(&hdev->children[i]);
956 }
957 }
958
959 /* Stop khubd and related activity */
960 usb_kill_urb(hub->urb);
961 if (hub->has_indicators)
962 cancel_delayed_work_sync(&hub->leds);
963 if (hub->tt.hub)
Alan Sterncb88a1b2009-06-29 10:43:32 -0400964 cancel_work_sync(&hub->tt.clear_work);
Alan Stern43303542008-04-28 11:07:31 -0400965}
966
Alan Stern3eb14912008-03-03 15:15:43 -0500967/* caller has locked the hub device */
968static int hub_pre_reset(struct usb_interface *intf)
969{
970 struct usb_hub *hub = usb_get_intfdata(intf);
971
Alan Stern43303542008-04-28 11:07:31 -0400972 hub_quiesce(hub, HUB_PRE_RESET);
Alan Sternf07600c2007-05-30 15:38:16 -0400973 return 0;
Alan Stern7d069b72005-11-18 12:06:34 -0500974}
975
976/* caller has locked the hub device */
Alan Sternf07600c2007-05-30 15:38:16 -0400977static int hub_post_reset(struct usb_interface *intf)
Alan Stern7d069b72005-11-18 12:06:34 -0500978{
Alan Stern7de18d82006-06-01 13:37:24 -0400979 struct usb_hub *hub = usb_get_intfdata(intf);
980
Alan Sternf2835212008-04-28 11:07:17 -0400981 hub_activate(hub, HUB_POST_RESET);
Alan Sternf07600c2007-05-30 15:38:16 -0400982 return 0;
Alan Stern7d069b72005-11-18 12:06:34 -0500983}
984
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985static int hub_configure(struct usb_hub *hub,
986 struct usb_endpoint_descriptor *endpoint)
987{
Sarah Sharpb356b7c2009-09-04 10:53:24 -0700988 struct usb_hcd *hcd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 struct usb_device *hdev = hub->hdev;
990 struct device *hub_dev = hub->intfdev;
991 u16 hubstatus, hubchange;
Greg Kroah-Hartman74ad9bd2005-06-20 21:15:16 -0700992 u16 wHubCharacteristics;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 unsigned int pipe;
994 int maxp, ret;
Alan Stern7cbe5dc2009-06-29 10:56:54 -0400995 char *message = "out of memory";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996
Alan Sternd697cdd2009-10-27 15:18:46 -0400997 hub->buffer = kmalloc(sizeof(*hub->buffer), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 if (!hub->buffer) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 ret = -ENOMEM;
1000 goto fail;
1001 }
1002
1003 hub->status = kmalloc(sizeof(*hub->status), GFP_KERNEL);
1004 if (!hub->status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 ret = -ENOMEM;
1006 goto fail;
1007 }
Alan Sterndb90e7a2007-02-05 09:56:15 -05001008 mutex_init(&hub->status_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009
1010 hub->descriptor = kmalloc(sizeof(*hub->descriptor), GFP_KERNEL);
1011 if (!hub->descriptor) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 ret = -ENOMEM;
1013 goto fail;
1014 }
1015
John Youndbe79bb2001-09-17 00:00:00 -07001016 if (hub_is_superspeed(hdev) && (hdev->parent != NULL)) {
1017 ret = usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
1018 HUB_SET_DEPTH, USB_RT_HUB,
1019 hdev->level - 1, 0, NULL, 0,
1020 USB_CTRL_SET_TIMEOUT);
1021
1022 if (ret < 0) {
1023 message = "can't set hub depth";
1024 goto fail;
1025 }
1026 }
1027
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 /* Request the entire hub descriptor.
1029 * hub->descriptor can handle USB_MAXCHILDREN ports,
1030 * but the hub can/will return fewer bytes here.
1031 */
John Youndbe79bb2001-09-17 00:00:00 -07001032 ret = get_hub_descriptor(hdev, hub->descriptor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 if (ret < 0) {
1034 message = "can't read hub descriptor";
1035 goto fail;
1036 } else if (hub->descriptor->bNbrPorts > USB_MAXCHILDREN) {
1037 message = "hub has too many ports!";
1038 ret = -ENODEV;
1039 goto fail;
1040 }
1041
1042 hdev->maxchild = hub->descriptor->bNbrPorts;
1043 dev_info (hub_dev, "%d port%s detected\n", hdev->maxchild,
1044 (hdev->maxchild == 1) ? "" : "s");
1045
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001046 hub->port_owners = kzalloc(hdev->maxchild * sizeof(void *), GFP_KERNEL);
1047 if (!hub->port_owners) {
1048 ret = -ENOMEM;
1049 goto fail;
1050 }
1051
Greg Kroah-Hartman74ad9bd2005-06-20 21:15:16 -07001052 wHubCharacteristics = le16_to_cpu(hub->descriptor->wHubCharacteristics);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053
John Youndbe79bb2001-09-17 00:00:00 -07001054 /* FIXME for USB 3.0, skip for now */
1055 if ((wHubCharacteristics & HUB_CHAR_COMPOUND) &&
1056 !(hub_is_superspeed(hdev))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 int i;
1058 char portstr [USB_MAXCHILDREN + 1];
1059
1060 for (i = 0; i < hdev->maxchild; i++)
John Youndbe79bb2001-09-17 00:00:00 -07001061 portstr[i] = hub->descriptor->u.hs.DeviceRemovable
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 [((i + 1) / 8)] & (1 << ((i + 1) % 8))
1063 ? 'F' : 'R';
1064 portstr[hdev->maxchild] = 0;
1065 dev_dbg(hub_dev, "compound device; port removable status: %s\n", portstr);
1066 } else
1067 dev_dbg(hub_dev, "standalone hub\n");
1068
Greg Kroah-Hartman74ad9bd2005-06-20 21:15:16 -07001069 switch (wHubCharacteristics & HUB_CHAR_LPSM) {
Aman Deep7bf01182011-12-08 12:05:22 +05301070 case HUB_CHAR_COMMON_LPSM:
1071 dev_dbg(hub_dev, "ganged power switching\n");
1072 break;
1073 case HUB_CHAR_INDV_PORT_LPSM:
1074 dev_dbg(hub_dev, "individual port power switching\n");
1075 break;
1076 case HUB_CHAR_NO_LPSM:
1077 case HUB_CHAR_LPSM:
1078 dev_dbg(hub_dev, "no power switching (usb 1.0)\n");
1079 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 }
1081
Greg Kroah-Hartman74ad9bd2005-06-20 21:15:16 -07001082 switch (wHubCharacteristics & HUB_CHAR_OCPM) {
Aman Deep7bf01182011-12-08 12:05:22 +05301083 case HUB_CHAR_COMMON_OCPM:
1084 dev_dbg(hub_dev, "global over-current protection\n");
1085 break;
1086 case HUB_CHAR_INDV_PORT_OCPM:
1087 dev_dbg(hub_dev, "individual port over-current protection\n");
1088 break;
1089 case HUB_CHAR_NO_OCPM:
1090 case HUB_CHAR_OCPM:
1091 dev_dbg(hub_dev, "no over-current protection\n");
1092 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 }
1094
1095 spin_lock_init (&hub->tt.lock);
1096 INIT_LIST_HEAD (&hub->tt.clear_list);
Alan Sterncb88a1b2009-06-29 10:43:32 -04001097 INIT_WORK(&hub->tt.clear_work, hub_tt_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 switch (hdev->descriptor.bDeviceProtocol) {
Aman Deep7bf01182011-12-08 12:05:22 +05301099 case USB_HUB_PR_FS:
1100 break;
1101 case USB_HUB_PR_HS_SINGLE_TT:
1102 dev_dbg(hub_dev, "Single TT\n");
1103 hub->tt.hub = hdev;
1104 break;
1105 case USB_HUB_PR_HS_MULTI_TT:
1106 ret = usb_set_interface(hdev, 0, 1);
1107 if (ret == 0) {
1108 dev_dbg(hub_dev, "TT per port\n");
1109 hub->tt.multi = 1;
1110 } else
1111 dev_err(hub_dev, "Using single TT (err %d)\n",
1112 ret);
1113 hub->tt.hub = hdev;
1114 break;
1115 case USB_HUB_PR_SS:
1116 /* USB 3.0 hubs don't have a TT */
1117 break;
1118 default:
1119 dev_dbg(hub_dev, "Unrecognized hub protocol %d\n",
1120 hdev->descriptor.bDeviceProtocol);
1121 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 }
1123
david-b@pacbell.nete09711a2005-08-13 18:41:04 -07001124 /* Note 8 FS bit times == (8 bits / 12000000 bps) ~= 666ns */
Greg Kroah-Hartman74ad9bd2005-06-20 21:15:16 -07001125 switch (wHubCharacteristics & HUB_CHAR_TTTT) {
david-b@pacbell.nete09711a2005-08-13 18:41:04 -07001126 case HUB_TTTT_8_BITS:
1127 if (hdev->descriptor.bDeviceProtocol != 0) {
1128 hub->tt.think_time = 666;
1129 dev_dbg(hub_dev, "TT requires at most %d "
1130 "FS bit times (%d ns)\n",
1131 8, hub->tt.think_time);
1132 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 break;
david-b@pacbell.nete09711a2005-08-13 18:41:04 -07001134 case HUB_TTTT_16_BITS:
1135 hub->tt.think_time = 666 * 2;
1136 dev_dbg(hub_dev, "TT requires at most %d "
1137 "FS bit times (%d ns)\n",
1138 16, hub->tt.think_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 break;
david-b@pacbell.nete09711a2005-08-13 18:41:04 -07001140 case HUB_TTTT_24_BITS:
1141 hub->tt.think_time = 666 * 3;
1142 dev_dbg(hub_dev, "TT requires at most %d "
1143 "FS bit times (%d ns)\n",
1144 24, hub->tt.think_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 break;
david-b@pacbell.nete09711a2005-08-13 18:41:04 -07001146 case HUB_TTTT_32_BITS:
1147 hub->tt.think_time = 666 * 4;
1148 dev_dbg(hub_dev, "TT requires at most %d "
1149 "FS bit times (%d ns)\n",
1150 32, hub->tt.think_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 break;
1152 }
1153
1154 /* probe() zeroes hub->indicator[] */
Greg Kroah-Hartman74ad9bd2005-06-20 21:15:16 -07001155 if (wHubCharacteristics & HUB_CHAR_PORTIND) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 hub->has_indicators = 1;
1157 dev_dbg(hub_dev, "Port indicators are supported\n");
1158 }
1159
1160 dev_dbg(hub_dev, "power on to power good time: %dms\n",
1161 hub->descriptor->bPwrOn2PwrGood * 2);
1162
1163 /* power budgeting mostly matters with bus-powered hubs,
1164 * and battery-powered root hubs (may provide just 8 mA).
1165 */
1166 ret = usb_get_status(hdev, USB_RECIP_DEVICE, 0, &hubstatus);
Alan Stern55c52712005-11-23 12:03:12 -05001167 if (ret < 2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 message = "can't get hub status";
1169 goto fail;
1170 }
Alan Stern7d35b922005-04-25 11:18:32 -04001171 le16_to_cpus(&hubstatus);
1172 if (hdev == hdev->bus->root_hub) {
Alan Stern55c52712005-11-23 12:03:12 -05001173 if (hdev->bus_mA == 0 || hdev->bus_mA >= 500)
1174 hub->mA_per_port = 500;
1175 else {
1176 hub->mA_per_port = hdev->bus_mA;
1177 hub->limited_power = 1;
1178 }
Alan Stern7d35b922005-04-25 11:18:32 -04001179 } else if ((hubstatus & (1 << USB_DEVICE_SELF_POWERED)) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 dev_dbg(hub_dev, "hub controller current requirement: %dmA\n",
1181 hub->descriptor->bHubContrCurrent);
Alan Stern55c52712005-11-23 12:03:12 -05001182 hub->limited_power = 1;
1183 if (hdev->maxchild > 0) {
1184 int remaining = hdev->bus_mA -
1185 hub->descriptor->bHubContrCurrent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186
Alan Stern55c52712005-11-23 12:03:12 -05001187 if (remaining < hdev->maxchild * 100)
1188 dev_warn(hub_dev,
1189 "insufficient power available "
1190 "to use all downstream ports\n");
1191 hub->mA_per_port = 100; /* 7.2.1.1 */
1192 }
1193 } else { /* Self-powered external hub */
1194 /* FIXME: What about battery-powered external hubs that
1195 * provide less current per port? */
1196 hub->mA_per_port = 500;
1197 }
1198 if (hub->mA_per_port < 500)
1199 dev_dbg(hub_dev, "%umA bus power budget for each child\n",
1200 hub->mA_per_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201
Sarah Sharpb356b7c2009-09-04 10:53:24 -07001202 /* Update the HCD's internal representation of this hub before khubd
1203 * starts getting port status changes for devices under the hub.
1204 */
1205 hcd = bus_to_hcd(hdev->bus);
1206 if (hcd->driver->update_hub_device) {
1207 ret = hcd->driver->update_hub_device(hcd, hdev,
1208 &hub->tt, GFP_KERNEL);
1209 if (ret < 0) {
1210 message = "can't update HCD hub info";
1211 goto fail;
1212 }
1213 }
1214
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 ret = hub_hub_status(hub, &hubstatus, &hubchange);
1216 if (ret < 0) {
1217 message = "can't get hub status";
1218 goto fail;
1219 }
1220
1221 /* local power status reports aren't always correct */
1222 if (hdev->actconfig->desc.bmAttributes & USB_CONFIG_ATT_SELFPOWER)
1223 dev_dbg(hub_dev, "local power source is %s\n",
1224 (hubstatus & HUB_STATUS_LOCAL_POWER)
1225 ? "lost (inactive)" : "good");
1226
Greg Kroah-Hartman74ad9bd2005-06-20 21:15:16 -07001227 if ((wHubCharacteristics & HUB_CHAR_OCPM) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 dev_dbg(hub_dev, "%sover-current condition exists\n",
1229 (hubstatus & HUB_STATUS_OVERCURRENT) ? "" : "no ");
1230
inaky@linux.intel.com88fafff2006-10-11 20:05:59 -07001231 /* set up the interrupt endpoint
1232 * We use the EP's maxpacket size instead of (PORTS+1+7)/8
1233 * bytes as USB2.0[11.12.3] says because some hubs are known
1234 * to send more data (and thus cause overflow). For root hubs,
1235 * maxpktsize is defined in hcd.c's fake endpoint descriptors
1236 * to be big enough for at least USB_MAXCHILDREN ports. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 pipe = usb_rcvintpipe(hdev, endpoint->bEndpointAddress);
1238 maxp = usb_maxpacket(hdev, pipe, usb_pipeout(pipe));
1239
1240 if (maxp > sizeof(*hub->buffer))
1241 maxp = sizeof(*hub->buffer);
1242
1243 hub->urb = usb_alloc_urb(0, GFP_KERNEL);
1244 if (!hub->urb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 ret = -ENOMEM;
1246 goto fail;
1247 }
1248
1249 usb_fill_int_urb(hub->urb, hdev, pipe, *hub->buffer, maxp, hub_irq,
1250 hub, endpoint->bInterval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251
1252 /* maybe cycle the hub leds */
1253 if (hub->has_indicators && blinkenlights)
1254 hub->indicator [0] = INDICATOR_CYCLE;
1255
Alan Sternf2835212008-04-28 11:07:17 -04001256 hub_activate(hub, HUB_INIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 return 0;
1258
1259fail:
1260 dev_err (hub_dev, "config failed, %s (err %d)\n",
1261 message, ret);
1262 /* hub_disconnect() frees urb and descriptor */
1263 return ret;
1264}
1265
Alan Sterne8054852007-05-04 11:55:11 -04001266static void hub_release(struct kref *kref)
1267{
1268 struct usb_hub *hub = container_of(kref, struct usb_hub, kref);
1269
1270 usb_put_intf(to_usb_interface(hub->intfdev));
1271 kfree(hub);
1272}
1273
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274static unsigned highspeed_hubs;
1275
1276static void hub_disconnect(struct usb_interface *intf)
1277{
1278 struct usb_hub *hub = usb_get_intfdata (intf);
Alan Sterne8054852007-05-04 11:55:11 -04001279
1280 /* Take the hub off the event list and don't let it be added again */
1281 spin_lock_irq(&hub_event_lock);
Alan Stern8e4ceb32009-12-07 13:01:37 -05001282 if (!list_empty(&hub->event_list)) {
1283 list_del_init(&hub->event_list);
1284 usb_autopm_put_interface_no_suspend(intf);
1285 }
Alan Sterne8054852007-05-04 11:55:11 -04001286 hub->disconnected = 1;
1287 spin_unlock_irq(&hub_event_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288
Alan Stern7de18d82006-06-01 13:37:24 -04001289 /* Disconnect all children and quiesce the hub */
1290 hub->error = 0;
Alan Stern43303542008-04-28 11:07:31 -04001291 hub_quiesce(hub, HUB_DISCONNECT);
Alan Stern7de18d82006-06-01 13:37:24 -04001292
Alan Stern8b28c752005-08-10 17:04:13 -04001293 usb_set_intfdata (intf, NULL);
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001294 hub->hdev->maxchild = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295
Alan Sterne8054852007-05-04 11:55:11 -04001296 if (hub->hdev->speed == USB_SPEED_HIGH)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 highspeed_hubs--;
1298
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 usb_free_urb(hub->urb);
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001300 kfree(hub->port_owners);
Jesper Juhl1bc3c9e2005-04-18 17:39:34 -07001301 kfree(hub->descriptor);
Jesper Juhl1bc3c9e2005-04-18 17:39:34 -07001302 kfree(hub->status);
Alan Sternd697cdd2009-10-27 15:18:46 -04001303 kfree(hub->buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304
Alan Sterne8054852007-05-04 11:55:11 -04001305 kref_put(&hub->kref, hub_release);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306}
1307
1308static int hub_probe(struct usb_interface *intf, const struct usb_device_id *id)
1309{
1310 struct usb_host_interface *desc;
1311 struct usb_endpoint_descriptor *endpoint;
1312 struct usb_device *hdev;
1313 struct usb_hub *hub;
1314
1315 desc = intf->cur_altsetting;
1316 hdev = interface_to_usbdev(intf);
1317
Sarah Sharp0c9ffe02010-12-30 13:27:36 -08001318 /* Hubs have proper suspend/resume support. USB 3.0 device suspend is
1319 * different from USB 2.0/1.1 device suspend, and unfortunately we
1320 * don't support it yet. So leave autosuspend disabled for USB 3.0
1321 * external hubs for now. Enable autosuspend for USB 3.0 roothubs,
1322 * since that isn't a "real" hub.
1323 */
1324 if (!hub_is_superspeed(hdev) || !hdev->parent)
1325 usb_enable_autosuspend(hdev);
Alan Stern088f7fe2010-01-08 12:56:54 -05001326
Felipe Balbi38f3ad52008-06-12 10:49:47 +03001327 if (hdev->level == MAX_TOPO_LEVEL) {
Wu Fengguangb9cef6c2008-12-15 15:32:01 +08001328 dev_err(&intf->dev,
1329 "Unsupported bus topology: hub nested too deep\n");
Felipe Balbi38f3ad52008-06-12 10:49:47 +03001330 return -E2BIG;
1331 }
1332
David Brownell89ccbdc2006-04-02 10:18:09 -08001333#ifdef CONFIG_USB_OTG_BLACKLIST_HUB
1334 if (hdev->parent) {
1335 dev_warn(&intf->dev, "ignoring external hub\n");
1336 return -ENODEV;
1337 }
1338#endif
1339
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 /* Some hubs have a subclass of 1, which AFAICT according to the */
1341 /* specs is not defined, but it works */
1342 if ((desc->desc.bInterfaceSubClass != 0) &&
1343 (desc->desc.bInterfaceSubClass != 1)) {
1344descriptor_error:
1345 dev_err (&intf->dev, "bad descriptor, ignoring hub\n");
1346 return -EIO;
1347 }
1348
1349 /* Multiple endpoints? What kind of mutant ninja-hub is this? */
1350 if (desc->desc.bNumEndpoints != 1)
1351 goto descriptor_error;
1352
1353 endpoint = &desc->endpoint[0].desc;
1354
Luiz Fernando N. Capitulinofbf81c22006-09-27 11:58:53 -07001355 /* If it's not an interrupt in endpoint, we'd better punt! */
1356 if (!usb_endpoint_is_int_in(endpoint))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 goto descriptor_error;
1358
1359 /* We found a hub */
1360 dev_info (&intf->dev, "USB hub found\n");
1361
Alan Stern0a1ef3b2005-10-24 15:38:24 -04001362 hub = kzalloc(sizeof(*hub), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 if (!hub) {
1364 dev_dbg (&intf->dev, "couldn't kmalloc hub struct\n");
1365 return -ENOMEM;
1366 }
1367
Alan Sterne8054852007-05-04 11:55:11 -04001368 kref_init(&hub->kref);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369 INIT_LIST_HEAD(&hub->event_list);
1370 hub->intfdev = &intf->dev;
1371 hub->hdev = hdev;
David Howellsc4028952006-11-22 14:57:56 +00001372 INIT_DELAYED_WORK(&hub->leds, led_work);
Alan Stern8520f382008-09-22 14:44:26 -04001373 INIT_DELAYED_WORK(&hub->init_work, NULL);
Alan Sterne8054852007-05-04 11:55:11 -04001374 usb_get_intf(intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375
1376 usb_set_intfdata (intf, hub);
Alan Stern40f122f2006-11-09 14:44:33 -05001377 intf->needs_remote_wakeup = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378
1379 if (hdev->speed == USB_SPEED_HIGH)
1380 highspeed_hubs++;
1381
1382 if (hub_configure(hub, endpoint) >= 0)
1383 return 0;
1384
1385 hub_disconnect (intf);
1386 return -ENODEV;
1387}
1388
1389static int
1390hub_ioctl(struct usb_interface *intf, unsigned int code, void *user_data)
1391{
1392 struct usb_device *hdev = interface_to_usbdev (intf);
1393
1394 /* assert ifno == 0 (part of hub spec) */
1395 switch (code) {
1396 case USBDEVFS_HUB_PORTINFO: {
1397 struct usbdevfs_hub_portinfo *info = user_data;
1398 int i;
1399
1400 spin_lock_irq(&device_state_lock);
1401 if (hdev->devnum <= 0)
1402 info->nports = 0;
1403 else {
1404 info->nports = hdev->maxchild;
1405 for (i = 0; i < info->nports; i++) {
1406 if (hdev->children[i] == NULL)
1407 info->port[i] = 0;
1408 else
1409 info->port[i] =
1410 hdev->children[i]->devnum;
1411 }
1412 }
1413 spin_unlock_irq(&device_state_lock);
1414
1415 return info->nports + 1;
1416 }
1417
1418 default:
1419 return -ENOSYS;
1420 }
1421}
1422
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001423/*
1424 * Allow user programs to claim ports on a hub. When a device is attached
1425 * to one of these "claimed" ports, the program will "own" the device.
1426 */
1427static int find_port_owner(struct usb_device *hdev, unsigned port1,
1428 void ***ppowner)
1429{
1430 if (hdev->state == USB_STATE_NOTATTACHED)
1431 return -ENODEV;
1432 if (port1 == 0 || port1 > hdev->maxchild)
1433 return -EINVAL;
1434
1435 /* This assumes that devices not managed by the hub driver
1436 * will always have maxchild equal to 0.
1437 */
1438 *ppowner = &(hdev_to_hub(hdev)->port_owners[port1 - 1]);
1439 return 0;
1440}
1441
1442/* In the following three functions, the caller must hold hdev's lock */
1443int usb_hub_claim_port(struct usb_device *hdev, unsigned port1, void *owner)
1444{
1445 int rc;
1446 void **powner;
1447
1448 rc = find_port_owner(hdev, port1, &powner);
1449 if (rc)
1450 return rc;
1451 if (*powner)
1452 return -EBUSY;
1453 *powner = owner;
1454 return rc;
1455}
1456
1457int usb_hub_release_port(struct usb_device *hdev, unsigned port1, void *owner)
1458{
1459 int rc;
1460 void **powner;
1461
1462 rc = find_port_owner(hdev, port1, &powner);
1463 if (rc)
1464 return rc;
1465 if (*powner != owner)
1466 return -ENOENT;
1467 *powner = NULL;
1468 return rc;
1469}
1470
1471void usb_hub_release_all_ports(struct usb_device *hdev, void *owner)
1472{
1473 int n;
1474 void **powner;
1475
1476 n = find_port_owner(hdev, 1, &powner);
1477 if (n == 0) {
1478 for (; n < hdev->maxchild; (++n, ++powner)) {
1479 if (*powner == owner)
1480 *powner = NULL;
1481 }
1482 }
1483}
1484
1485/* The caller must hold udev's lock */
1486bool usb_device_is_owned(struct usb_device *udev)
1487{
1488 struct usb_hub *hub;
1489
1490 if (udev->state == USB_STATE_NOTATTACHED || !udev->parent)
1491 return false;
1492 hub = hdev_to_hub(udev->parent);
1493 return !!hub->port_owners[udev->portnum - 1];
1494}
1495
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497static void recursively_mark_NOTATTACHED(struct usb_device *udev)
1498{
1499 int i;
1500
1501 for (i = 0; i < udev->maxchild; ++i) {
1502 if (udev->children[i])
1503 recursively_mark_NOTATTACHED(udev->children[i]);
1504 }
Alan Stern9bbdf1e2010-01-08 12:57:28 -05001505 if (udev->state == USB_STATE_SUSPENDED)
Sarah Sharp15123002007-12-21 16:54:15 -08001506 udev->active_duration -= jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 udev->state = USB_STATE_NOTATTACHED;
1508}
1509
1510/**
1511 * usb_set_device_state - change a device's current state (usbcore, hcds)
1512 * @udev: pointer to device whose state should be changed
1513 * @new_state: new state value to be stored
1514 *
1515 * udev->state is _not_ fully protected by the device lock. Although
1516 * most transitions are made only while holding the lock, the state can
1517 * can change to USB_STATE_NOTATTACHED at almost any time. This
1518 * is so that devices can be marked as disconnected as soon as possible,
1519 * without having to wait for any semaphores to be released. As a result,
1520 * all changes to any device's state must be protected by the
1521 * device_state_lock spinlock.
1522 *
1523 * Once a device has been added to the device tree, all changes to its state
1524 * should be made using this routine. The state should _not_ be set directly.
1525 *
1526 * If udev->state is already USB_STATE_NOTATTACHED then no change is made.
1527 * Otherwise udev->state is set to new_state, and if new_state is
1528 * USB_STATE_NOTATTACHED then all of udev's descendants' states are also set
1529 * to USB_STATE_NOTATTACHED.
1530 */
1531void usb_set_device_state(struct usb_device *udev,
1532 enum usb_device_state new_state)
1533{
1534 unsigned long flags;
Rafael J. Wysocki4681b172011-02-08 23:25:48 +01001535 int wakeup = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536
1537 spin_lock_irqsave(&device_state_lock, flags);
1538 if (udev->state == USB_STATE_NOTATTACHED)
1539 ; /* do nothing */
David Brownellb94dc6b2005-09-12 19:39:39 -07001540 else if (new_state != USB_STATE_NOTATTACHED) {
David Brownellfb669cc2006-01-24 08:40:27 -08001541
1542 /* root hub wakeup capabilities are managed out-of-band
1543 * and may involve silicon errata ... ignore them here.
1544 */
1545 if (udev->parent) {
Alan Stern645daaa2006-08-30 15:47:02 -04001546 if (udev->state == USB_STATE_SUSPENDED
1547 || new_state == USB_STATE_SUSPENDED)
1548 ; /* No change to wakeup settings */
1549 else if (new_state == USB_STATE_CONFIGURED)
Rafael J. Wysocki4681b172011-02-08 23:25:48 +01001550 wakeup = udev->actconfig->desc.bmAttributes
1551 & USB_CONFIG_ATT_WAKEUP;
Alan Stern645daaa2006-08-30 15:47:02 -04001552 else
Rafael J. Wysocki4681b172011-02-08 23:25:48 +01001553 wakeup = 0;
David Brownellfb669cc2006-01-24 08:40:27 -08001554 }
Sarah Sharp15123002007-12-21 16:54:15 -08001555 if (udev->state == USB_STATE_SUSPENDED &&
1556 new_state != USB_STATE_SUSPENDED)
1557 udev->active_duration -= jiffies;
1558 else if (new_state == USB_STATE_SUSPENDED &&
1559 udev->state != USB_STATE_SUSPENDED)
1560 udev->active_duration += jiffies;
Alan Stern645daaa2006-08-30 15:47:02 -04001561 udev->state = new_state;
David Brownellb94dc6b2005-09-12 19:39:39 -07001562 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 recursively_mark_NOTATTACHED(udev);
1564 spin_unlock_irqrestore(&device_state_lock, flags);
Rafael J. Wysocki4681b172011-02-08 23:25:48 +01001565 if (wakeup >= 0)
1566 device_set_wakeup_capable(&udev->dev, wakeup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567}
David Vrabel6da9c992009-02-18 14:43:47 +00001568EXPORT_SYMBOL_GPL(usb_set_device_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569
Inaky Perez-Gonzalez8af548d2008-04-08 13:24:46 -07001570/*
Alan Stern3b29b682011-02-22 09:53:41 -05001571 * Choose a device number.
1572 *
1573 * Device numbers are used as filenames in usbfs. On USB-1.1 and
1574 * USB-2.0 buses they are also used as device addresses, however on
1575 * USB-3.0 buses the address is assigned by the controller hardware
1576 * and it usually is not the same as the device number.
1577 *
Inaky Perez-Gonzalez8af548d2008-04-08 13:24:46 -07001578 * WUSB devices are simple: they have no hubs behind, so the mapping
1579 * device <-> virtual port number becomes 1:1. Why? to simplify the
1580 * life of the device connection logic in
1581 * drivers/usb/wusbcore/devconnect.c. When we do the initial secret
1582 * handshake we need to assign a temporary address in the unauthorized
1583 * space. For simplicity we use the first virtual port number found to
1584 * be free [drivers/usb/wusbcore/devconnect.c:wusbhc_devconnect_ack()]
1585 * and that becomes it's address [X < 128] or its unauthorized address
1586 * [X | 0x80].
1587 *
1588 * We add 1 as an offset to the one-based USB-stack port number
1589 * (zero-based wusb virtual port index) for two reasons: (a) dev addr
1590 * 0 is reserved by USB for default address; (b) Linux's USB stack
1591 * uses always #1 for the root hub of the controller. So USB stack's
1592 * port #1, which is wusb virtual-port #0 has address #2.
Sarah Sharpc6515272009-04-27 19:57:26 -07001593 *
1594 * Devices connected under xHCI are not as simple. The host controller
1595 * supports virtualization, so the hardware assigns device addresses and
1596 * the HCD must setup data structures before issuing a set address
1597 * command to the hardware.
Inaky Perez-Gonzalez8af548d2008-04-08 13:24:46 -07001598 */
Alan Stern3b29b682011-02-22 09:53:41 -05001599static void choose_devnum(struct usb_device *udev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600{
1601 int devnum;
1602 struct usb_bus *bus = udev->bus;
1603
1604 /* If khubd ever becomes multithreaded, this will need a lock */
Inaky Perez-Gonzalez8af548d2008-04-08 13:24:46 -07001605 if (udev->wusb) {
1606 devnum = udev->portnum + 1;
1607 BUG_ON(test_bit(devnum, bus->devmap.devicemap));
1608 } else {
1609 /* Try to allocate the next devnum beginning at
1610 * bus->devnum_next. */
1611 devnum = find_next_zero_bit(bus->devmap.devicemap, 128,
1612 bus->devnum_next);
1613 if (devnum >= 128)
1614 devnum = find_next_zero_bit(bus->devmap.devicemap,
1615 128, 1);
1616 bus->devnum_next = ( devnum >= 127 ? 1 : devnum + 1);
1617 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 if (devnum < 128) {
1619 set_bit(devnum, bus->devmap.devicemap);
1620 udev->devnum = devnum;
1621 }
1622}
1623
Alan Stern3b29b682011-02-22 09:53:41 -05001624static void release_devnum(struct usb_device *udev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625{
1626 if (udev->devnum > 0) {
1627 clear_bit(udev->devnum, udev->bus->devmap.devicemap);
1628 udev->devnum = -1;
1629 }
1630}
1631
Alan Stern3b29b682011-02-22 09:53:41 -05001632static void update_devnum(struct usb_device *udev, int devnum)
David Vrabel4953d142008-04-08 13:24:46 -07001633{
1634 /* The address for a WUSB device is managed by wusbcore. */
1635 if (!udev->wusb)
1636 udev->devnum = devnum;
1637}
1638
Herbert Xuf7410ce2010-01-10 20:15:03 +11001639static void hub_free_dev(struct usb_device *udev)
1640{
1641 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
1642
1643 /* Root hubs aren't real devices, so don't free HCD resources */
1644 if (hcd->driver->free_dev && udev->parent)
1645 hcd->driver->free_dev(hcd, udev);
1646}
1647
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648/**
1649 * usb_disconnect - disconnect a device (usbcore-internal)
1650 * @pdev: pointer to device being disconnected
1651 * Context: !in_interrupt ()
1652 *
1653 * Something got disconnected. Get rid of it and all of its children.
1654 *
1655 * If *pdev is a normal device then the parent hub must already be locked.
1656 * If *pdev is a root hub then this routine will acquire the
1657 * usb_bus_list_lock on behalf of the caller.
1658 *
1659 * Only hub drivers (including virtual root hub drivers for host
1660 * controllers) should ever call this.
1661 *
1662 * This call is synchronous, and may not be used in an interrupt context.
1663 */
1664void usb_disconnect(struct usb_device **pdev)
1665{
1666 struct usb_device *udev = *pdev;
1667 int i;
Sarah Sharpfccf4e82011-06-05 23:22:22 -07001668 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 /* mark the device as inactive, so any further urb submissions for
1671 * this device (and any of its children) will fail immediately.
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001672 * this quiesces everything except pending urbs.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 */
1674 usb_set_device_state(udev, USB_STATE_NOTATTACHED);
Alan Stern3b29b682011-02-22 09:53:41 -05001675 dev_info(&udev->dev, "USB disconnect, device number %d\n",
1676 udev->devnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677
Alan Stern9ad3d6c2005-11-17 17:10:32 -05001678 usb_lock_device(udev);
1679
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680 /* Free up all the children before we remove this device */
1681 for (i = 0; i < USB_MAXCHILDREN; i++) {
1682 if (udev->children[i])
1683 usb_disconnect(&udev->children[i]);
1684 }
1685
1686 /* deallocate hcd/hardware state ... nuking all pending urbs and
1687 * cleaning up all state associated with the current configuration
1688 * so that the hardware is now fully quiesced.
1689 */
Alan Stern782da722006-07-01 22:09:35 -04001690 dev_dbg (&udev->dev, "unregistering device\n");
Sarah Sharpfccf4e82011-06-05 23:22:22 -07001691 mutex_lock(hcd->bandwidth_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692 usb_disable_device(udev, 0);
Sarah Sharpfccf4e82011-06-05 23:22:22 -07001693 mutex_unlock(hcd->bandwidth_mutex);
Alan Sterncde217a2008-10-21 15:28:46 -04001694 usb_hcd_synchronize_unlinks(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695
Alan Stern3b23dd62008-12-05 14:10:34 -05001696 usb_remove_ep_devs(&udev->ep0);
Alan Stern782da722006-07-01 22:09:35 -04001697 usb_unlock_device(udev);
Greg Kroah-Hartman3099e752005-06-20 21:15:16 -07001698
Alan Stern782da722006-07-01 22:09:35 -04001699 /* Unregister the device. The device driver is responsible
Alan Stern3b23dd62008-12-05 14:10:34 -05001700 * for de-configuring the device and invoking the remove-device
1701 * notifier chain (used by usbfs and possibly others).
Alan Stern782da722006-07-01 22:09:35 -04001702 */
1703 device_del(&udev->dev);
1704
1705 /* Free the device number and delete the parent's children[]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706 * (or root_hub) pointer.
1707 */
Alan Stern3b29b682011-02-22 09:53:41 -05001708 release_devnum(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709
1710 /* Avoid races with recursively_mark_NOTATTACHED() */
1711 spin_lock_irq(&device_state_lock);
1712 *pdev = NULL;
1713 spin_unlock_irq(&device_state_lock);
1714
Herbert Xuf7410ce2010-01-10 20:15:03 +11001715 hub_free_dev(udev);
1716
Alan Stern782da722006-07-01 22:09:35 -04001717 put_device(&udev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718}
1719
Greg Kroah-Hartmanf2a383e2007-11-26 22:11:55 -08001720#ifdef CONFIG_USB_ANNOUNCE_NEW_DEVICES
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721static void show_string(struct usb_device *udev, char *id, char *string)
1722{
1723 if (!string)
1724 return;
1725 dev_printk(KERN_INFO, &udev->dev, "%s: %s\n", id, string);
1726}
1727
Greg Kroah-Hartmanf2a383e2007-11-26 22:11:55 -08001728static void announce_device(struct usb_device *udev)
1729{
1730 dev_info(&udev->dev, "New USB device found, idVendor=%04x, idProduct=%04x\n",
1731 le16_to_cpu(udev->descriptor.idVendor),
1732 le16_to_cpu(udev->descriptor.idProduct));
Wu Fengguangb9cef6c2008-12-15 15:32:01 +08001733 dev_info(&udev->dev,
1734 "New USB device strings: Mfr=%d, Product=%d, SerialNumber=%d\n",
Greg Kroah-Hartmanf2a383e2007-11-26 22:11:55 -08001735 udev->descriptor.iManufacturer,
1736 udev->descriptor.iProduct,
1737 udev->descriptor.iSerialNumber);
1738 show_string(udev, "Product", udev->product);
1739 show_string(udev, "Manufacturer", udev->manufacturer);
1740 show_string(udev, "SerialNumber", udev->serial);
1741}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742#else
Greg Kroah-Hartmanf2a383e2007-11-26 22:11:55 -08001743static inline void announce_device(struct usb_device *udev) { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744#endif
1745
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746#ifdef CONFIG_USB_OTG
1747#include "otg_whitelist.h"
1748#endif
1749
Oliver Neukum3ede7602007-01-11 14:35:50 +01001750/**
Alan Stern8d8558d2009-12-08 15:50:41 -05001751 * usb_enumerate_device_otg - FIXME (usbcore-internal)
Oliver Neukum3ede7602007-01-11 14:35:50 +01001752 * @udev: newly addressed device (in ADDRESS state)
1753 *
Alan Stern8d8558d2009-12-08 15:50:41 -05001754 * Finish enumeration for On-The-Go devices
Oliver Neukum3ede7602007-01-11 14:35:50 +01001755 */
Alan Stern8d8558d2009-12-08 15:50:41 -05001756static int usb_enumerate_device_otg(struct usb_device *udev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757{
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07001758 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759
1760#ifdef CONFIG_USB_OTG
1761 /*
1762 * OTG-aware devices on OTG-capable root hubs may be able to use SRP,
1763 * to wake us after we've powered off VBUS; and HNP, switching roles
1764 * "host" to "peripheral". The OTG descriptor helps figure this out.
1765 */
1766 if (!udev->bus->is_b_host
1767 && udev->config
1768 && udev->parent == udev->bus->root_hub) {
Felipe Balbi2eb50522009-12-04 15:47:43 +02001769 struct usb_otg_descriptor *desc = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770 struct usb_bus *bus = udev->bus;
1771
1772 /* descriptor may appear anywhere in config */
1773 if (__usb_get_extra_descriptor (udev->rawdescriptors[0],
1774 le16_to_cpu(udev->config[0].desc.wTotalLength),
1775 USB_DT_OTG, (void **) &desc) == 0) {
1776 if (desc->bmAttributes & USB_OTG_HNP) {
Alan Stern12c3da32005-11-23 12:09:52 -05001777 unsigned port1 = udev->portnum;
David Brownellfc849b82006-09-18 16:53:26 -07001778
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 dev_info(&udev->dev,
1780 "Dual-Role OTG device on %sHNP port\n",
1781 (port1 == bus->otg_port)
1782 ? "" : "non-");
1783
1784 /* enable HNP before suspend, it's simpler */
1785 if (port1 == bus->otg_port)
1786 bus->b_hnp_enable = 1;
1787 err = usb_control_msg(udev,
1788 usb_sndctrlpipe(udev, 0),
1789 USB_REQ_SET_FEATURE, 0,
1790 bus->b_hnp_enable
1791 ? USB_DEVICE_B_HNP_ENABLE
1792 : USB_DEVICE_A_ALT_HNP_SUPPORT,
1793 0, NULL, 0, USB_CTRL_SET_TIMEOUT);
1794 if (err < 0) {
1795 /* OTG MESSAGE: report errors here,
1796 * customize to match your product.
1797 */
1798 dev_info(&udev->dev,
Wu Fengguangb9cef6c2008-12-15 15:32:01 +08001799 "can't set HNP mode: %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800 err);
1801 bus->b_hnp_enable = 0;
1802 }
1803 }
1804 }
1805 }
1806
1807 if (!is_targeted(udev)) {
1808
1809 /* Maybe it can talk to us, though we can't talk to it.
1810 * (Includes HNP test device.)
1811 */
1812 if (udev->bus->b_hnp_enable || udev->bus->is_b_host) {
David Brownell634a84f2009-01-15 13:51:28 -08001813 err = usb_port_suspend(udev, PMSG_SUSPEND);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 if (err < 0)
1815 dev_dbg(&udev->dev, "HNP fail, %d\n", err);
1816 }
Vikram Panditaffcdc182007-05-25 21:31:07 -07001817 err = -ENOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818 goto fail;
1819 }
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07001820fail:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821#endif
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07001822 return err;
1823}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07001825
1826/**
Alan Stern8d8558d2009-12-08 15:50:41 -05001827 * usb_enumerate_device - Read device configs/intfs/otg (usbcore-internal)
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07001828 * @udev: newly addressed device (in ADDRESS state)
1829 *
1830 * This is only called by usb_new_device() and usb_authorize_device()
1831 * and FIXME -- all comments that apply to them apply here wrt to
1832 * environment.
1833 *
1834 * If the device is WUSB and not authorized, we don't attempt to read
1835 * the string descriptors, as they will be errored out by the device
1836 * until it has been authorized.
1837 */
Alan Stern8d8558d2009-12-08 15:50:41 -05001838static int usb_enumerate_device(struct usb_device *udev)
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07001839{
1840 int err;
1841
1842 if (udev->config == NULL) {
1843 err = usb_get_configuration(udev);
1844 if (err < 0) {
1845 dev_err(&udev->dev, "can't read configurations, error %d\n",
1846 err);
1847 goto fail;
1848 }
1849 }
1850 if (udev->wusb == 1 && udev->authorized == 0) {
1851 udev->product = kstrdup("n/a (unauthorized)", GFP_KERNEL);
1852 udev->manufacturer = kstrdup("n/a (unauthorized)", GFP_KERNEL);
1853 udev->serial = kstrdup("n/a (unauthorized)", GFP_KERNEL);
1854 }
1855 else {
1856 /* read the standard strings and cache them if present */
1857 udev->product = usb_cache_string(udev, udev->descriptor.iProduct);
1858 udev->manufacturer = usb_cache_string(udev,
1859 udev->descriptor.iManufacturer);
1860 udev->serial = usb_cache_string(udev, udev->descriptor.iSerialNumber);
1861 }
Alan Stern8d8558d2009-12-08 15:50:41 -05001862 err = usb_enumerate_device_otg(udev);
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07001863fail:
1864 return err;
1865}
1866
Matthew Garrettd35e70d2012-02-03 17:11:55 -05001867static void set_usb_port_removable(struct usb_device *udev)
1868{
1869 struct usb_device *hdev = udev->parent;
1870 struct usb_hub *hub;
1871 u8 port = udev->portnum;
1872 u16 wHubCharacteristics;
1873 bool removable = true;
1874
1875 if (!hdev)
1876 return;
1877
1878 hub = hdev_to_hub(udev->parent);
1879
1880 wHubCharacteristics = le16_to_cpu(hub->descriptor->wHubCharacteristics);
1881
1882 if (!(wHubCharacteristics & HUB_CHAR_COMPOUND))
1883 return;
1884
1885 if (hub_is_superspeed(hdev)) {
1886 if (hub->descriptor->u.ss.DeviceRemovable & (1 << port))
1887 removable = false;
1888 } else {
1889 if (hub->descriptor->u.hs.DeviceRemovable[port / 8] & (1 << (port % 8)))
1890 removable = false;
1891 }
1892
1893 if (removable)
1894 udev->removable = USB_DEVICE_REMOVABLE;
1895 else
1896 udev->removable = USB_DEVICE_FIXED;
1897}
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07001898
1899/**
1900 * usb_new_device - perform initial device setup (usbcore-internal)
1901 * @udev: newly addressed device (in ADDRESS state)
1902 *
Alan Stern8d8558d2009-12-08 15:50:41 -05001903 * This is called with devices which have been detected but not fully
1904 * enumerated. The device descriptor is available, but not descriptors
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07001905 * for any device configuration. The caller must have locked either
1906 * the parent hub (if udev is a normal device) or else the
1907 * usb_bus_list_lock (if udev is a root hub). The parent's pointer to
1908 * udev has already been installed, but udev is not yet visible through
1909 * sysfs or other filesystem code.
1910 *
1911 * It will return if the device is configured properly or not. Zero if
1912 * the interface was registered with the driver core; else a negative
1913 * errno value.
1914 *
1915 * This call is synchronous, and may not be used in an interrupt context.
1916 *
1917 * Only the hub driver or root-hub registrar should ever call this.
1918 */
1919int usb_new_device(struct usb_device *udev)
1920{
1921 int err;
1922
Dan Streetman16985402010-01-06 09:56:53 -05001923 if (udev->parent) {
Dan Streetman16985402010-01-06 09:56:53 -05001924 /* Initialize non-root-hub device wakeup to disabled;
1925 * device (un)configuration controls wakeup capable
1926 * sysfs power/wakeup controls wakeup enabled/disabled
1927 */
1928 device_init_wakeup(&udev->dev, 0);
Dan Streetman16985402010-01-06 09:56:53 -05001929 }
1930
Alan Stern9bbdf1e2010-01-08 12:57:28 -05001931 /* Tell the runtime-PM framework the device is active */
1932 pm_runtime_set_active(&udev->dev);
Alan Sternc08512c2010-11-15 15:57:58 -05001933 pm_runtime_get_noresume(&udev->dev);
Alan Sternfcc4a012010-11-15 15:57:51 -05001934 pm_runtime_use_autosuspend(&udev->dev);
Alan Stern9bbdf1e2010-01-08 12:57:28 -05001935 pm_runtime_enable(&udev->dev);
1936
Alan Sternc08512c2010-11-15 15:57:58 -05001937 /* By default, forbid autosuspend for all devices. It will be
1938 * allowed for hubs during binding.
1939 */
1940 usb_disable_autosuspend(udev);
1941
Alan Stern8d8558d2009-12-08 15:50:41 -05001942 err = usb_enumerate_device(udev); /* Read descriptors */
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07001943 if (err < 0)
1944 goto fail;
Sarah Sharpc6515272009-04-27 19:57:26 -07001945 dev_dbg(&udev->dev, "udev %d, busnum %d, minor = %d\n",
1946 udev->devnum, udev->bus->busnum,
1947 (((udev->bus->busnum-1) * 128) + (udev->devnum-1)));
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001948 /* export the usbdev device-node for libusb */
1949 udev->dev.devt = MKDEV(USB_DEVICE_MAJOR,
1950 (((udev->bus->busnum-1) * 128) + (udev->devnum-1)));
1951
Alan Stern6cd13202008-11-13 15:08:30 -05001952 /* Tell the world! */
1953 announce_device(udev);
Alan Stern195af2c2007-07-16 15:28:19 -04001954
Rafael J. Wysocki927bc912010-02-08 19:18:16 +01001955 device_enable_async_suspend(&udev->dev);
Matthew Garrettd35e70d2012-02-03 17:11:55 -05001956
1957 /*
1958 * check whether the hub marks this port as non-removable. Do it
1959 * now so that platform-specific data can override it in
1960 * device_add()
1961 */
1962 if (udev->parent)
1963 set_usb_port_removable(udev);
1964
Alan Stern782da722006-07-01 22:09:35 -04001965 /* Register the device. The device driver is responsible
Alan Stern3b23dd62008-12-05 14:10:34 -05001966 * for configuring the device and invoking the add-device
1967 * notifier chain (used by usbfs and possibly others).
Alan Stern782da722006-07-01 22:09:35 -04001968 */
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001969 err = device_add(&udev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970 if (err) {
1971 dev_err(&udev->dev, "can't device_add, error %d\n", err);
1972 goto fail;
1973 }
Alan Stern9ad3d6c2005-11-17 17:10:32 -05001974
Alan Stern3b23dd62008-12-05 14:10:34 -05001975 (void) usb_create_ep_devs(&udev->dev, &udev->ep0, udev);
Alan Sternc08512c2010-11-15 15:57:58 -05001976 usb_mark_last_busy(udev);
1977 pm_runtime_put_sync_autosuspend(&udev->dev);
Greg Kroah-Hartmanc0664752006-08-11 01:55:12 -07001978 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979
1980fail:
1981 usb_set_device_state(udev, USB_STATE_NOTATTACHED);
Alan Stern9bbdf1e2010-01-08 12:57:28 -05001982 pm_runtime_disable(&udev->dev);
1983 pm_runtime_set_suspended(&udev->dev);
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07001984 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985}
1986
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07001987
1988/**
Randy Dunlapfd39c862007-10-15 17:30:02 -07001989 * usb_deauthorize_device - deauthorize a device (usbcore-internal)
1990 * @usb_dev: USB device
1991 *
1992 * Move the USB device to a very basic state where interfaces are disabled
1993 * and the device is in fact unconfigured and unusable.
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07001994 *
1995 * We share a lock (that we have) with device_del(), so we need to
1996 * defer its call.
1997 */
1998int usb_deauthorize_device(struct usb_device *usb_dev)
1999{
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002000 usb_lock_device(usb_dev);
2001 if (usb_dev->authorized == 0)
2002 goto out_unauthorized;
Alan Sternda307122009-12-08 15:54:44 -05002003
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002004 usb_dev->authorized = 0;
2005 usb_set_configuration(usb_dev, -1);
Alan Sternda307122009-12-08 15:54:44 -05002006
2007 kfree(usb_dev->product);
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002008 usb_dev->product = kstrdup("n/a (unauthorized)", GFP_KERNEL);
Alan Sternda307122009-12-08 15:54:44 -05002009 kfree(usb_dev->manufacturer);
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002010 usb_dev->manufacturer = kstrdup("n/a (unauthorized)", GFP_KERNEL);
Alan Sternda307122009-12-08 15:54:44 -05002011 kfree(usb_dev->serial);
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002012 usb_dev->serial = kstrdup("n/a (unauthorized)", GFP_KERNEL);
Alan Sternda307122009-12-08 15:54:44 -05002013
2014 usb_destroy_configuration(usb_dev);
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002015 usb_dev->descriptor.bNumConfigurations = 0;
Alan Sternda307122009-12-08 15:54:44 -05002016
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002017out_unauthorized:
2018 usb_unlock_device(usb_dev);
2019 return 0;
2020}
2021
2022
2023int usb_authorize_device(struct usb_device *usb_dev)
2024{
2025 int result = 0, c;
Alan Sternda307122009-12-08 15:54:44 -05002026
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002027 usb_lock_device(usb_dev);
2028 if (usb_dev->authorized == 1)
2029 goto out_authorized;
Alan Sternda307122009-12-08 15:54:44 -05002030
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002031 result = usb_autoresume_device(usb_dev);
2032 if (result < 0) {
2033 dev_err(&usb_dev->dev,
2034 "can't autoresume for authorization: %d\n", result);
2035 goto error_autoresume;
2036 }
2037 result = usb_get_device_descriptor(usb_dev, sizeof(usb_dev->descriptor));
2038 if (result < 0) {
2039 dev_err(&usb_dev->dev, "can't re-read device descriptor for "
2040 "authorization: %d\n", result);
2041 goto error_device_descriptor;
2042 }
Alan Sternda307122009-12-08 15:54:44 -05002043
2044 kfree(usb_dev->product);
2045 usb_dev->product = NULL;
2046 kfree(usb_dev->manufacturer);
2047 usb_dev->manufacturer = NULL;
2048 kfree(usb_dev->serial);
2049 usb_dev->serial = NULL;
2050
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002051 usb_dev->authorized = 1;
Alan Stern8d8558d2009-12-08 15:50:41 -05002052 result = usb_enumerate_device(usb_dev);
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002053 if (result < 0)
Alan Stern8d8558d2009-12-08 15:50:41 -05002054 goto error_enumerate;
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002055 /* Choose and set the configuration. This registers the interfaces
2056 * with the driver core and lets interface drivers bind to them.
2057 */
Greg Kroah-Hartmanb5ea0602007-08-02 22:44:27 -06002058 c = usb_choose_configuration(usb_dev);
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002059 if (c >= 0) {
2060 result = usb_set_configuration(usb_dev, c);
2061 if (result) {
2062 dev_err(&usb_dev->dev,
2063 "can't set config #%d, error %d\n", c, result);
2064 /* This need not be fatal. The user can try to
2065 * set other configurations. */
2066 }
2067 }
2068 dev_info(&usb_dev->dev, "authorized to connect\n");
Alan Sternda307122009-12-08 15:54:44 -05002069
Alan Stern8d8558d2009-12-08 15:50:41 -05002070error_enumerate:
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002071error_device_descriptor:
Alan Sternda307122009-12-08 15:54:44 -05002072 usb_autosuspend_device(usb_dev);
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002073error_autoresume:
2074out_authorized:
2075 usb_unlock_device(usb_dev); // complements locktree
2076 return result;
2077}
2078
2079
Inaky Perez-Gonzalez0165de02006-08-25 19:35:29 -07002080/* Returns 1 if @hub is a WUSB root hub, 0 otherwise */
2081static unsigned hub_is_wusb(struct usb_hub *hub)
2082{
2083 struct usb_hcd *hcd;
2084 if (hub->hdev->parent != NULL) /* not a root hub? */
2085 return 0;
2086 hcd = container_of(hub->hdev->bus, struct usb_hcd, self);
2087 return hcd->wireless;
2088}
2089
2090
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091#define PORT_RESET_TRIES 5
2092#define SET_ADDRESS_TRIES 2
2093#define GET_DESCRIPTOR_TRIES 2
2094#define SET_CONFIG_TRIES (2 * (use_both_schemes + 1))
Rusty Russell90ab5ee2012-01-13 09:32:20 +10302095#define USE_NEW_SCHEME(i) ((i) / 2 == (int)old_scheme_first)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096
2097#define HUB_ROOT_RESET_TIME 50 /* times are in msec */
2098#define HUB_SHORT_RESET_TIME 10
Andiry Xu75d7cf72011-09-13 16:41:11 -07002099#define HUB_BH_RESET_TIME 50
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100#define HUB_LONG_RESET_TIME 200
2101#define HUB_RESET_TIMEOUT 500
2102
Sarah Sharp10d674a2011-09-14 14:24:52 -07002103static int hub_port_reset(struct usb_hub *hub, int port1,
2104 struct usb_device *udev, unsigned int delay, bool warm);
2105
2106/* Is a USB 3.0 port in the Inactive state? */
2107static bool hub_port_inactive(struct usb_hub *hub, u16 portstatus)
2108{
2109 return hub_is_superspeed(hub->hdev) &&
2110 (portstatus & USB_PORT_STAT_LINK_STATE) ==
2111 USB_SS_PORT_LS_SS_INACTIVE;
2112}
2113
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114static int hub_port_wait_reset(struct usb_hub *hub, int port1,
Andiry Xu75d7cf72011-09-13 16:41:11 -07002115 struct usb_device *udev, unsigned int delay, bool warm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116{
2117 int delay_time, ret;
2118 u16 portstatus;
2119 u16 portchange;
2120
2121 for (delay_time = 0;
2122 delay_time < HUB_RESET_TIMEOUT;
2123 delay_time += delay) {
2124 /* wait to give the device a chance to reset */
2125 msleep(delay);
2126
2127 /* read and decode port status */
2128 ret = hub_port_status(hub, port1, &portstatus, &portchange);
2129 if (ret < 0)
2130 return ret;
2131
Andiry Xu75d7cf72011-09-13 16:41:11 -07002132 /*
2133 * Some buggy devices require a warm reset to be issued even
2134 * when the port appears not to be connected.
2135 */
2136 if (!warm) {
Sarah Sharp10d674a2011-09-14 14:24:52 -07002137 /*
2138 * Some buggy devices can cause an NEC host controller
2139 * to transition to the "Error" state after a hot port
2140 * reset. This will show up as the port state in
2141 * "Inactive", and the port may also report a
2142 * disconnect. Forcing a warm port reset seems to make
2143 * the device work.
2144 *
2145 * See https://bugzilla.kernel.org/show_bug.cgi?id=41752
2146 */
2147 if (hub_port_inactive(hub, portstatus)) {
2148 int ret;
2149
2150 if ((portchange & USB_PORT_STAT_C_CONNECTION))
2151 clear_port_feature(hub->hdev, port1,
2152 USB_PORT_FEAT_C_CONNECTION);
2153 if (portchange & USB_PORT_STAT_C_LINK_STATE)
2154 clear_port_feature(hub->hdev, port1,
2155 USB_PORT_FEAT_C_PORT_LINK_STATE);
2156 if (portchange & USB_PORT_STAT_C_RESET)
2157 clear_port_feature(hub->hdev, port1,
2158 USB_PORT_FEAT_C_RESET);
2159 dev_dbg(hub->intfdev, "hot reset failed, warm reset port %d\n",
2160 port1);
2161 ret = hub_port_reset(hub, port1,
2162 udev, HUB_BH_RESET_TIME,
2163 true);
2164 if ((portchange & USB_PORT_STAT_C_CONNECTION))
2165 clear_port_feature(hub->hdev, port1,
2166 USB_PORT_FEAT_C_CONNECTION);
2167 return ret;
2168 }
Andiry Xu75d7cf72011-09-13 16:41:11 -07002169 /* Device went away? */
2170 if (!(portstatus & USB_PORT_STAT_CONNECTION))
2171 return -ENOTCONN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172
Andiry Xu75d7cf72011-09-13 16:41:11 -07002173 /* bomb out completely if the connection bounced */
2174 if ((portchange & USB_PORT_STAT_C_CONNECTION))
2175 return -ENOTCONN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176
Andiry Xu75d7cf72011-09-13 16:41:11 -07002177 /* if we`ve finished resetting, then break out of
2178 * the loop
2179 */
2180 if (!(portstatus & USB_PORT_STAT_RESET) &&
2181 (portstatus & USB_PORT_STAT_ENABLE)) {
2182 if (hub_is_wusb(hub))
2183 udev->speed = USB_SPEED_WIRELESS;
2184 else if (hub_is_superspeed(hub->hdev))
2185 udev->speed = USB_SPEED_SUPER;
2186 else if (portstatus & USB_PORT_STAT_HIGH_SPEED)
2187 udev->speed = USB_SPEED_HIGH;
2188 else if (portstatus & USB_PORT_STAT_LOW_SPEED)
2189 udev->speed = USB_SPEED_LOW;
2190 else
2191 udev->speed = USB_SPEED_FULL;
2192 return 0;
2193 }
2194 } else {
2195 if (portchange & USB_PORT_STAT_C_BH_RESET)
2196 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197 }
2198
2199 /* switch to the long delay after two short delay failures */
2200 if (delay_time >= 2 * HUB_SHORT_RESET_TIME)
2201 delay = HUB_LONG_RESET_TIME;
2202
2203 dev_dbg (hub->intfdev,
Andiry Xu75d7cf72011-09-13 16:41:11 -07002204 "port %d not %sreset yet, waiting %dms\n",
2205 port1, warm ? "warm " : "", delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206 }
2207
2208 return -EBUSY;
2209}
2210
Andiry Xu75d7cf72011-09-13 16:41:11 -07002211static void hub_port_finish_reset(struct usb_hub *hub, int port1,
2212 struct usb_device *udev, int *status, bool warm)
2213{
2214 switch (*status) {
2215 case 0:
2216 if (!warm) {
2217 struct usb_hcd *hcd;
2218 /* TRSTRCY = 10 ms; plus some extra */
2219 msleep(10 + 40);
2220 update_devnum(udev, 0);
2221 hcd = bus_to_hcd(udev->bus);
2222 if (hcd->driver->reset_device) {
2223 *status = hcd->driver->reset_device(hcd, udev);
2224 if (*status < 0) {
2225 dev_err(&udev->dev, "Cannot reset "
2226 "HCD device state\n");
2227 break;
2228 }
2229 }
2230 }
2231 /* FALL THROUGH */
2232 case -ENOTCONN:
2233 case -ENODEV:
2234 clear_port_feature(hub->hdev,
2235 port1, USB_PORT_FEAT_C_RESET);
2236 /* FIXME need disconnect() for NOTATTACHED device */
2237 if (warm) {
2238 clear_port_feature(hub->hdev, port1,
2239 USB_PORT_FEAT_C_BH_PORT_RESET);
2240 clear_port_feature(hub->hdev, port1,
2241 USB_PORT_FEAT_C_PORT_LINK_STATE);
2242 } else {
2243 usb_set_device_state(udev, *status
2244 ? USB_STATE_NOTATTACHED
2245 : USB_STATE_DEFAULT);
2246 }
2247 break;
2248 }
2249}
2250
2251/* Handle port reset and port warm(BH) reset (for USB3 protocol ports) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252static int hub_port_reset(struct usb_hub *hub, int port1,
Andiry Xu75d7cf72011-09-13 16:41:11 -07002253 struct usb_device *udev, unsigned int delay, bool warm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254{
2255 int i, status;
2256
Andiry Xu75d7cf72011-09-13 16:41:11 -07002257 if (!warm) {
2258 /* Block EHCI CF initialization during the port reset.
2259 * Some companion controllers don't like it when they mix.
2260 */
2261 down_read(&ehci_cf_port_reset_rwsem);
2262 } else {
2263 if (!hub_is_superspeed(hub->hdev)) {
2264 dev_err(hub->intfdev, "only USB3 hub support "
2265 "warm reset\n");
2266 return -EINVAL;
2267 }
2268 }
Alan Stern32fe0192007-10-10 16:27:07 -04002269
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270 /* Reset the port */
2271 for (i = 0; i < PORT_RESET_TRIES; i++) {
Andiry Xu75d7cf72011-09-13 16:41:11 -07002272 status = set_port_feature(hub->hdev, port1, (warm ?
2273 USB_PORT_FEAT_BH_PORT_RESET :
2274 USB_PORT_FEAT_RESET));
2275 if (status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276 dev_err(hub->intfdev,
Andiry Xu75d7cf72011-09-13 16:41:11 -07002277 "cannot %sreset port %d (err = %d)\n",
2278 warm ? "warm " : "", port1, status);
2279 } else {
2280 status = hub_port_wait_reset(hub, port1, udev, delay,
2281 warm);
David Brownelldd165252005-08-31 10:45:25 -07002282 if (status && status != -ENOTCONN)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283 dev_dbg(hub->intfdev,
2284 "port_wait_reset: err = %d\n",
2285 status);
2286 }
2287
2288 /* return on disconnect or reset */
Andiry Xu75d7cf72011-09-13 16:41:11 -07002289 if (status == 0 || status == -ENOTCONN || status == -ENODEV) {
2290 hub_port_finish_reset(hub, port1, udev, &status, warm);
Alan Stern32fe0192007-10-10 16:27:07 -04002291 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292 }
2293
2294 dev_dbg (hub->intfdev,
Andiry Xu75d7cf72011-09-13 16:41:11 -07002295 "port %d not enabled, trying %sreset again...\n",
2296 port1, warm ? "warm " : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297 delay = HUB_LONG_RESET_TIME;
2298 }
2299
2300 dev_err (hub->intfdev,
2301 "Cannot enable port %i. Maybe the USB cable is bad?\n",
2302 port1);
2303
Andiry Xu75d7cf72011-09-13 16:41:11 -07002304done:
2305 if (!warm)
2306 up_read(&ehci_cf_port_reset_rwsem);
2307
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308 return status;
2309}
2310
Andiry Xu0ed9a572011-04-27 18:07:43 +08002311/* Check if a port is power on */
2312static int port_is_power_on(struct usb_hub *hub, unsigned portstatus)
2313{
2314 int ret = 0;
2315
2316 if (hub_is_superspeed(hub->hdev)) {
2317 if (portstatus & USB_SS_PORT_STAT_POWER)
2318 ret = 1;
2319 } else {
2320 if (portstatus & USB_PORT_STAT_POWER)
2321 ret = 1;
2322 }
2323
2324 return ret;
2325}
2326
Alan Sternd388dab2006-07-01 22:14:24 -04002327#ifdef CONFIG_PM
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328
Andiry Xu0ed9a572011-04-27 18:07:43 +08002329/* Check if a port is suspended(USB2.0 port) or in U3 state(USB3.0 port) */
2330static int port_is_suspended(struct usb_hub *hub, unsigned portstatus)
2331{
2332 int ret = 0;
2333
2334 if (hub_is_superspeed(hub->hdev)) {
2335 if ((portstatus & USB_PORT_STAT_LINK_STATE)
2336 == USB_SS_PORT_LS_U3)
2337 ret = 1;
2338 } else {
2339 if (portstatus & USB_PORT_STAT_SUSPEND)
2340 ret = 1;
2341 }
2342
2343 return ret;
2344}
Alan Sternb01b03f2008-04-28 11:06:11 -04002345
2346/* Determine whether the device on a port is ready for a normal resume,
2347 * is ready for a reset-resume, or should be disconnected.
2348 */
2349static int check_port_resume_type(struct usb_device *udev,
2350 struct usb_hub *hub, int port1,
2351 int status, unsigned portchange, unsigned portstatus)
2352{
2353 /* Is the device still present? */
Andiry Xu0ed9a572011-04-27 18:07:43 +08002354 if (status || port_is_suspended(hub, portstatus) ||
2355 !port_is_power_on(hub, portstatus) ||
2356 !(portstatus & USB_PORT_STAT_CONNECTION)) {
Alan Sternb01b03f2008-04-28 11:06:11 -04002357 if (status >= 0)
2358 status = -ENODEV;
2359 }
2360
Alan Stern86c57ed2008-06-30 11:14:43 -04002361 /* Can't do a normal resume if the port isn't enabled,
2362 * so try a reset-resume instead.
2363 */
2364 else if (!(portstatus & USB_PORT_STAT_ENABLE) && !udev->reset_resume) {
2365 if (udev->persist_enabled)
2366 udev->reset_resume = 1;
2367 else
2368 status = -ENODEV;
2369 }
Alan Sternb01b03f2008-04-28 11:06:11 -04002370
2371 if (status) {
2372 dev_dbg(hub->intfdev,
2373 "port %d status %04x.%04x after resume, %d\n",
2374 port1, portchange, portstatus, status);
2375 } else if (udev->reset_resume) {
2376
2377 /* Late port handoff can set status-change bits */
2378 if (portchange & USB_PORT_STAT_C_CONNECTION)
2379 clear_port_feature(hub->hdev, port1,
2380 USB_PORT_FEAT_C_CONNECTION);
2381 if (portchange & USB_PORT_STAT_C_ENABLE)
2382 clear_port_feature(hub->hdev, port1,
2383 USB_PORT_FEAT_C_ENABLE);
2384 }
2385
2386 return status;
2387}
2388
Linus Torvalds1da177e2005-04-16 15:20:36 -07002389#ifdef CONFIG_USB_SUSPEND
2390
2391/*
Alan Stern140d8f62006-07-01 22:07:21 -04002392 * usb_port_suspend - suspend a usb device's upstream port
Alan Stern624d6c02007-05-30 15:35:16 -04002393 * @udev: device that's no longer in active use, not a root hub
David Brownell5edbfb72005-09-22 22:45:26 -07002394 * Context: must be able to sleep; device not locked; pm locks held
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395 *
2396 * Suspends a USB device that isn't in active use, conserving power.
2397 * Devices may wake out of a suspend, if anything important happens,
2398 * using the remote wakeup mechanism. They may also be taken out of
Alan Stern140d8f62006-07-01 22:07:21 -04002399 * suspend by the host, using usb_port_resume(). It's also routine
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400 * to disconnect devices while they are suspended.
2401 *
David Brownell390a8c32005-09-13 19:57:27 -07002402 * This only affects the USB hardware for a device; its interfaces
2403 * (and, for hubs, child devices) must already have been suspended.
2404 *
Alan Stern624d6c02007-05-30 15:35:16 -04002405 * Selective port suspend reduces power; most suspended devices draw
2406 * less than 500 uA. It's also used in OTG, along with remote wakeup.
2407 * All devices below the suspended port are also suspended.
2408 *
2409 * Devices leave suspend state when the host wakes them up. Some devices
2410 * also support "remote wakeup", where the device can activate the USB
2411 * tree above them to deliver data, such as a keypress or packet. In
2412 * some cases, this wakes the USB host.
2413 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414 * Suspending OTG devices may trigger HNP, if that's been enabled
2415 * between a pair of dual-role devices. That will change roles, such
2416 * as from A-Host to A-Peripheral or from B-Host back to B-Peripheral.
2417 *
Alan Stern4956ecc2007-05-30 16:51:28 -04002418 * Devices on USB hub ports have only one "suspend" state, corresponding
2419 * to ACPI D2, "may cause the device to lose some context".
2420 * State transitions include:
2421 *
2422 * - suspend, resume ... when the VBUS power link stays live
2423 * - suspend, disconnect ... VBUS lost
2424 *
2425 * Once VBUS drop breaks the circuit, the port it's using has to go through
2426 * normal re-enumeration procedures, starting with enabling VBUS power.
2427 * Other than re-initializing the hub (plug/unplug, except for root hubs),
2428 * Linux (2.6) currently has NO mechanisms to initiate that: no khubd
2429 * timer, no SRP, no requests through sysfs.
2430 *
2431 * If CONFIG_USB_SUSPEND isn't enabled, devices only really suspend when
2432 * the root hub for their bus goes into global suspend ... so we don't
2433 * (falsely) update the device power state to say it suspended.
2434 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435 * Returns 0 on success, else negative errno.
2436 */
Alan Stern65bfd292008-11-25 16:39:18 -05002437int usb_port_suspend(struct usb_device *udev, pm_message_t msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002438{
Alan Stern624d6c02007-05-30 15:35:16 -04002439 struct usb_hub *hub = hdev_to_hub(udev->parent);
2440 int port1 = udev->portnum;
2441 int status;
Alan Stern4956ecc2007-05-30 16:51:28 -04002442
Alan Stern624d6c02007-05-30 15:35:16 -04002443 /* enable remote wakeup when appropriate; this lets the device
2444 * wake up the upstream hub (including maybe the root hub).
2445 *
2446 * NOTE: OTG devices may issue remote wakeup (or SRP) even when
2447 * we don't explicitly enable it here.
2448 */
2449 if (udev->do_remote_wakeup) {
Sarah Sharp623bef92011-11-11 14:57:33 -08002450 if (!hub_is_superspeed(hub->hdev)) {
2451 status = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
2452 USB_REQ_SET_FEATURE, USB_RECIP_DEVICE,
2453 USB_DEVICE_REMOTE_WAKEUP, 0,
2454 NULL, 0,
2455 USB_CTRL_SET_TIMEOUT);
2456 } else {
2457 /* Assume there's only one function on the USB 3.0
2458 * device and enable remote wake for the first
2459 * interface. FIXME if the interface association
2460 * descriptor shows there's more than one function.
2461 */
2462 status = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
2463 USB_REQ_SET_FEATURE,
2464 USB_RECIP_INTERFACE,
2465 USB_INTRF_FUNC_SUSPEND,
Sarah Sharp3b9b6ac2012-01-06 15:48:30 -08002466 USB_INTRF_FUNC_SUSPEND_RW |
2467 USB_INTRF_FUNC_SUSPEND_LP,
Sarah Sharp623bef92011-11-11 14:57:33 -08002468 NULL, 0,
2469 USB_CTRL_SET_TIMEOUT);
2470 }
Oliver Neukum0c487202009-10-19 13:19:41 +02002471 if (status) {
Alan Stern624d6c02007-05-30 15:35:16 -04002472 dev_dbg(&udev->dev, "won't remote wakeup, status %d\n",
2473 status);
Oliver Neukum0c487202009-10-19 13:19:41 +02002474 /* bail if autosuspend is requested */
Alan Stern5b1b0b82011-08-19 23:49:48 +02002475 if (PMSG_IS_AUTO(msg))
Oliver Neukum0c487202009-10-19 13:19:41 +02002476 return status;
2477 }
Alan Stern624d6c02007-05-30 15:35:16 -04002478 }
2479
Andiry Xu65580b432011-09-23 14:19:52 -07002480 /* disable USB2 hardware LPM */
2481 if (udev->usb2_hw_lpm_enabled == 1)
2482 usb_set_usb2_hardware_lpm(udev, 0);
2483
Alan Stern624d6c02007-05-30 15:35:16 -04002484 /* see 7.1.7.6 */
Andiry Xua7114232011-04-27 18:07:50 +08002485 if (hub_is_superspeed(hub->hdev))
2486 status = set_port_feature(hub->hdev,
2487 port1 | (USB_SS_PORT_LS_U3 << 3),
2488 USB_PORT_FEAT_LINK_STATE);
Andiry Xua8f08d82011-03-31 14:56:50 +08002489 else
2490 status = set_port_feature(hub->hdev, port1,
2491 USB_PORT_FEAT_SUSPEND);
Alan Stern624d6c02007-05-30 15:35:16 -04002492 if (status) {
2493 dev_dbg(hub->intfdev, "can't suspend port %d, status %d\n",
2494 port1, status);
2495 /* paranoia: "should not happen" */
Oliver Neukum0c487202009-10-19 13:19:41 +02002496 if (udev->do_remote_wakeup)
2497 (void) usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
Alan Stern624d6c02007-05-30 15:35:16 -04002498 USB_REQ_CLEAR_FEATURE, USB_RECIP_DEVICE,
2499 USB_DEVICE_REMOTE_WAKEUP, 0,
2500 NULL, 0,
2501 USB_CTRL_SET_TIMEOUT);
Alan Sterncbb33002011-06-15 16:29:16 -04002502
2503 /* System sleep transitions should never fail */
Alan Stern5b1b0b82011-08-19 23:49:48 +02002504 if (!PMSG_IS_AUTO(msg))
Alan Sterncbb33002011-06-15 16:29:16 -04002505 status = 0;
Alan Stern624d6c02007-05-30 15:35:16 -04002506 } else {
2507 /* device has up to 10 msec to fully suspend */
Alan Stern30b1a7a2011-09-27 21:54:22 +02002508 dev_dbg(&udev->dev, "usb %ssuspend, wakeup %d\n",
2509 (PMSG_IS_AUTO(msg) ? "auto-" : ""),
2510 udev->do_remote_wakeup);
Alan Stern624d6c02007-05-30 15:35:16 -04002511 usb_set_device_state(udev, USB_STATE_SUSPENDED);
2512 msleep(10);
2513 }
Alan Sternc08512c2010-11-15 15:57:58 -05002514 usb_mark_last_busy(hub->hdev);
Alan Stern4956ecc2007-05-30 16:51:28 -04002515 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002516}
David Brownellf3f32532005-09-22 22:37:29 -07002517
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518/*
David Brownell390a8c32005-09-13 19:57:27 -07002519 * If the USB "suspend" state is in use (rather than "global suspend"),
2520 * many devices will be individually taken out of suspend state using
Alan Stern54515fe2007-05-30 15:38:58 -04002521 * special "resume" signaling. This routine kicks in shortly after
Linus Torvalds1da177e2005-04-16 15:20:36 -07002522 * hardware resume signaling is finished, either because of selective
2523 * resume (by host) or remote wakeup (by device) ... now see what changed
2524 * in the tree that's rooted at this device.
Alan Stern54515fe2007-05-30 15:38:58 -04002525 *
2526 * If @udev->reset_resume is set then the device is reset before the
2527 * status check is done.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002528 */
Alan Stern140d8f62006-07-01 22:07:21 -04002529static int finish_port_resume(struct usb_device *udev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530{
Alan Stern54515fe2007-05-30 15:38:58 -04002531 int status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532 u16 devstatus;
2533
2534 /* caller owns the udev device lock */
Wu Fengguangb9cef6c2008-12-15 15:32:01 +08002535 dev_dbg(&udev->dev, "%s\n",
2536 udev->reset_resume ? "finish reset-resume" : "finish resume");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002537
2538 /* usb ch9 identifies four variants of SUSPENDED, based on what
2539 * state the device resumes to. Linux currently won't see the
2540 * first two on the host side; they'd be inside hub_port_init()
2541 * during many timeouts, but khubd can't suspend until later.
2542 */
2543 usb_set_device_state(udev, udev->actconfig
2544 ? USB_STATE_CONFIGURED
2545 : USB_STATE_ADDRESS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002546
Alan Stern54515fe2007-05-30 15:38:58 -04002547 /* 10.5.4.5 says not to reset a suspended port if the attached
2548 * device is enabled for remote wakeup. Hence the reset
2549 * operation is carried out here, after the port has been
2550 * resumed.
2551 */
2552 if (udev->reset_resume)
Alan Stern86c57ed2008-06-30 11:14:43 -04002553 retry_reset_resume:
Ming Lei742120c2008-06-18 22:00:29 +08002554 status = usb_reset_and_verify_device(udev);
Alan Stern54515fe2007-05-30 15:38:58 -04002555
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556 /* 10.5.4.5 says be sure devices in the tree are still there.
2557 * For now let's assume the device didn't go crazy on resume,
2558 * and device drivers will know about any resume quirks.
2559 */
Alan Stern54515fe2007-05-30 15:38:58 -04002560 if (status == 0) {
Alan Stern46dede42007-08-14 10:56:10 -04002561 devstatus = 0;
Alan Stern54515fe2007-05-30 15:38:58 -04002562 status = usb_get_status(udev, USB_RECIP_DEVICE, 0, &devstatus);
2563 if (status >= 0)
Alan Stern46dede42007-08-14 10:56:10 -04002564 status = (status > 0 ? 0 : -ENODEV);
Alan Stern86c57ed2008-06-30 11:14:43 -04002565
2566 /* If a normal resume failed, try doing a reset-resume */
2567 if (status && !udev->reset_resume && udev->persist_enabled) {
2568 dev_dbg(&udev->dev, "retry with reset-resume\n");
2569 udev->reset_resume = 1;
2570 goto retry_reset_resume;
2571 }
Alan Stern54515fe2007-05-30 15:38:58 -04002572 }
Alan Sternb40b7a92006-06-19 15:12:38 -04002573
Alan Stern624d6c02007-05-30 15:35:16 -04002574 if (status) {
2575 dev_dbg(&udev->dev, "gone after usb resume? status %d\n",
2576 status);
2577 } else if (udev->actconfig) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002578 le16_to_cpus(&devstatus);
Alan Stern686314c2007-05-30 15:34:36 -04002579 if (devstatus & (1 << USB_DEVICE_REMOTE_WAKEUP)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002580 status = usb_control_msg(udev,
2581 usb_sndctrlpipe(udev, 0),
2582 USB_REQ_CLEAR_FEATURE,
2583 USB_RECIP_DEVICE,
2584 USB_DEVICE_REMOTE_WAKEUP, 0,
2585 NULL, 0,
2586 USB_CTRL_SET_TIMEOUT);
Alan Sterna8e7c562006-07-01 22:11:02 -04002587 if (status)
Wu Fengguangb9cef6c2008-12-15 15:32:01 +08002588 dev_dbg(&udev->dev,
2589 "disable remote wakeup, status %d\n",
2590 status);
Alan Stern4bf0ba82005-11-21 11:58:07 -05002591 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592 status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002593 }
2594 return status;
2595}
2596
Alan Stern624d6c02007-05-30 15:35:16 -04002597/*
2598 * usb_port_resume - re-activate a suspended usb device's upstream port
2599 * @udev: device to re-activate, not a root hub
2600 * Context: must be able to sleep; device not locked; pm locks held
2601 *
2602 * This will re-activate the suspended device, increasing power usage
2603 * while letting drivers communicate again with its endpoints.
2604 * USB resume explicitly guarantees that the power session between
2605 * the host and the device is the same as it was when the device
2606 * suspended.
2607 *
Alan Sternfeccc302008-03-03 15:15:59 -05002608 * If @udev->reset_resume is set then this routine won't check that the
2609 * port is still enabled. Furthermore, finish_port_resume() above will
Alan Stern54515fe2007-05-30 15:38:58 -04002610 * reset @udev. The end result is that a broken power session can be
2611 * recovered and @udev will appear to persist across a loss of VBUS power.
2612 *
2613 * For example, if a host controller doesn't maintain VBUS suspend current
2614 * during a system sleep or is reset when the system wakes up, all the USB
2615 * power sessions below it will be broken. This is especially troublesome
2616 * for mass-storage devices containing mounted filesystems, since the
2617 * device will appear to have disconnected and all the memory mappings
2618 * to it will be lost. Using the USB_PERSIST facility, the device can be
2619 * made to appear as if it had not disconnected.
2620 *
Ming Lei742120c2008-06-18 22:00:29 +08002621 * This facility can be dangerous. Although usb_reset_and_verify_device() makes
Alan Sternfeccc302008-03-03 15:15:59 -05002622 * every effort to insure that the same device is present after the
Alan Stern54515fe2007-05-30 15:38:58 -04002623 * reset as before, it cannot provide a 100% guarantee. Furthermore it's
2624 * quite possible for a device to remain unaltered but its media to be
2625 * changed. If the user replaces a flash memory card while the system is
2626 * asleep, he will have only himself to blame when the filesystem on the
2627 * new card is corrupted and the system crashes.
2628 *
Alan Stern624d6c02007-05-30 15:35:16 -04002629 * Returns 0 on success, else negative errno.
2630 */
Alan Stern65bfd292008-11-25 16:39:18 -05002631int usb_port_resume(struct usb_device *udev, pm_message_t msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002632{
Alan Stern624d6c02007-05-30 15:35:16 -04002633 struct usb_hub *hub = hdev_to_hub(udev->parent);
2634 int port1 = udev->portnum;
2635 int status;
2636 u16 portchange, portstatus;
Alan Sternd25450c2006-11-20 11:14:30 -05002637
2638 /* Skip the initial Clear-Suspend step for a remote wakeup */
2639 status = hub_port_status(hub, port1, &portstatus, &portchange);
Andiry Xu0ed9a572011-04-27 18:07:43 +08002640 if (status == 0 && !port_is_suspended(hub, portstatus))
Alan Sternd25450c2006-11-20 11:14:30 -05002641 goto SuspendCleared;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002642
2643 // dev_dbg(hub->intfdev, "resume port %d\n", port1);
2644
Alan Sternd5cbad42006-08-11 16:52:39 -04002645 set_bit(port1, hub->busy_bits);
2646
Linus Torvalds1da177e2005-04-16 15:20:36 -07002647 /* see 7.1.7.7; affects power usage, but not budgeting */
Andiry Xua7114232011-04-27 18:07:50 +08002648 if (hub_is_superspeed(hub->hdev))
2649 status = set_port_feature(hub->hdev,
2650 port1 | (USB_SS_PORT_LS_U0 << 3),
2651 USB_PORT_FEAT_LINK_STATE);
2652 else
2653 status = clear_port_feature(hub->hdev,
2654 port1, USB_PORT_FEAT_SUSPEND);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002655 if (status) {
Alan Stern624d6c02007-05-30 15:35:16 -04002656 dev_dbg(hub->intfdev, "can't resume port %d, status %d\n",
2657 port1, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002658 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002659 /* drive resume for at least 20 msec */
Alan Stern686314c2007-05-30 15:34:36 -04002660 dev_dbg(&udev->dev, "usb %sresume\n",
Alan Stern5b1b0b82011-08-19 23:49:48 +02002661 (PMSG_IS_AUTO(msg) ? "auto-" : ""));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002662 msleep(25);
2663
Linus Torvalds1da177e2005-04-16 15:20:36 -07002664 /* Virtual root hubs can trigger on GET_PORT_STATUS to
2665 * stop resume signaling. Then finish the resume
2666 * sequence.
2667 */
Alan Sternd25450c2006-11-20 11:14:30 -05002668 status = hub_port_status(hub, port1, &portstatus, &portchange);
Alan Stern54515fe2007-05-30 15:38:58 -04002669
Alan Sternb01b03f2008-04-28 11:06:11 -04002670 /* TRSMRCY = 10 msec */
2671 msleep(10);
2672 }
Alan Stern54515fe2007-05-30 15:38:58 -04002673
Alan Sternb01b03f2008-04-28 11:06:11 -04002674 SuspendCleared:
2675 if (status == 0) {
Andiry Xua7114232011-04-27 18:07:50 +08002676 if (hub_is_superspeed(hub->hdev)) {
2677 if (portchange & USB_PORT_STAT_C_LINK_STATE)
2678 clear_port_feature(hub->hdev, port1,
2679 USB_PORT_FEAT_C_PORT_LINK_STATE);
2680 } else {
2681 if (portchange & USB_PORT_STAT_C_SUSPEND)
2682 clear_port_feature(hub->hdev, port1,
2683 USB_PORT_FEAT_C_SUSPEND);
2684 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002685 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686
Alan Sternd5cbad42006-08-11 16:52:39 -04002687 clear_bit(port1, hub->busy_bits);
Alan Sternd5cbad42006-08-11 16:52:39 -04002688
Alan Sternb01b03f2008-04-28 11:06:11 -04002689 status = check_port_resume_type(udev,
2690 hub, port1, status, portchange, portstatus);
Alan Stern54515fe2007-05-30 15:38:58 -04002691 if (status == 0)
2692 status = finish_port_resume(udev);
2693 if (status < 0) {
2694 dev_dbg(&udev->dev, "can't resume, status %d\n", status);
2695 hub_port_logical_disconnect(hub, port1);
Andiry Xu65580b432011-09-23 14:19:52 -07002696 } else {
2697 /* Try to enable USB2 hardware LPM */
2698 if (udev->usb2_hw_lpm_capable == 1)
2699 usb_set_usb2_hardware_lpm(udev, 1);
Alan Stern54515fe2007-05-30 15:38:58 -04002700 }
Andiry Xu65580b432011-09-23 14:19:52 -07002701
Linus Torvalds1da177e2005-04-16 15:20:36 -07002702 return status;
2703}
2704
Alan Stern8808f002008-04-28 11:06:55 -04002705/* caller has locked udev */
Alan Stern0534d462010-01-08 12:56:30 -05002706int usb_remote_wakeup(struct usb_device *udev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002707{
2708 int status = 0;
2709
Linus Torvalds1da177e2005-04-16 15:20:36 -07002710 if (udev->state == USB_STATE_SUSPENDED) {
Alan Stern645daaa2006-08-30 15:47:02 -04002711 dev_dbg(&udev->dev, "usb %sresume\n", "wakeup-");
Alan Stern9bbdf1e2010-01-08 12:57:28 -05002712 status = usb_autoresume_device(udev);
2713 if (status == 0) {
2714 /* Let the drivers do their thing, then... */
2715 usb_autosuspend_device(udev);
2716 }
Alan Sternd25450c2006-11-20 11:14:30 -05002717 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002718 return status;
2719}
2720
Alan Sternd388dab2006-07-01 22:14:24 -04002721#else /* CONFIG_USB_SUSPEND */
2722
2723/* When CONFIG_USB_SUSPEND isn't set, we never suspend or resume any ports. */
2724
Alan Stern65bfd292008-11-25 16:39:18 -05002725int usb_port_suspend(struct usb_device *udev, pm_message_t msg)
Alan Sternd388dab2006-07-01 22:14:24 -04002726{
2727 return 0;
2728}
2729
Alan Sternb01b03f2008-04-28 11:06:11 -04002730/* However we may need to do a reset-resume */
2731
Alan Stern65bfd292008-11-25 16:39:18 -05002732int usb_port_resume(struct usb_device *udev, pm_message_t msg)
Alan Sternd388dab2006-07-01 22:14:24 -04002733{
Alan Sternb01b03f2008-04-28 11:06:11 -04002734 struct usb_hub *hub = hdev_to_hub(udev->parent);
2735 int port1 = udev->portnum;
2736 int status;
2737 u16 portchange, portstatus;
Alan Stern54515fe2007-05-30 15:38:58 -04002738
Alan Sternb01b03f2008-04-28 11:06:11 -04002739 status = hub_port_status(hub, port1, &portstatus, &portchange);
2740 status = check_port_resume_type(udev,
2741 hub, port1, status, portchange, portstatus);
2742
2743 if (status) {
2744 dev_dbg(&udev->dev, "can't resume, status %d\n", status);
2745 hub_port_logical_disconnect(hub, port1);
2746 } else if (udev->reset_resume) {
Alan Stern54515fe2007-05-30 15:38:58 -04002747 dev_dbg(&udev->dev, "reset-resume\n");
Ming Lei742120c2008-06-18 22:00:29 +08002748 status = usb_reset_and_verify_device(udev);
Alan Stern54515fe2007-05-30 15:38:58 -04002749 }
2750 return status;
Alan Sternd388dab2006-07-01 22:14:24 -04002751}
2752
Alan Sternd388dab2006-07-01 22:14:24 -04002753#endif
2754
David Brownelldb690872005-09-13 19:56:33 -07002755static int hub_suspend(struct usb_interface *intf, pm_message_t msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002756{
2757 struct usb_hub *hub = usb_get_intfdata (intf);
2758 struct usb_device *hdev = hub->hdev;
2759 unsigned port1;
Sarah Sharp4296c70a2012-01-06 10:34:31 -08002760 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002761
Alan Sterncbb33002011-06-15 16:29:16 -04002762 /* Warn if children aren't already suspended */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002763 for (port1 = 1; port1 <= hdev->maxchild; port1++) {
2764 struct usb_device *udev;
2765
2766 udev = hdev->children [port1-1];
Alan Stern6840d252007-09-10 11:34:26 -04002767 if (udev && udev->can_submit) {
Alan Sterncbb33002011-06-15 16:29:16 -04002768 dev_warn(&intf->dev, "port %d nyet suspended\n", port1);
Alan Stern5b1b0b82011-08-19 23:49:48 +02002769 if (PMSG_IS_AUTO(msg))
Alan Sterncbb33002011-06-15 16:29:16 -04002770 return -EBUSY;
David Brownellc9f89fa2005-09-13 19:57:04 -07002771 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002772 }
Sarah Sharp4296c70a2012-01-06 10:34:31 -08002773 if (hub_is_superspeed(hdev) && hdev->do_remote_wakeup) {
2774 /* Enable hub to send remote wakeup for all ports. */
2775 for (port1 = 1; port1 <= hdev->maxchild; port1++) {
2776 status = set_port_feature(hdev,
2777 port1 |
2778 USB_PORT_FEAT_REMOTE_WAKE_CONNECT |
2779 USB_PORT_FEAT_REMOTE_WAKE_DISCONNECT |
2780 USB_PORT_FEAT_REMOTE_WAKE_OVER_CURRENT,
2781 USB_PORT_FEAT_REMOTE_WAKE_MASK);
2782 }
2783 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002784
Harvey Harrison441b62c2008-03-03 16:08:34 -08002785 dev_dbg(&intf->dev, "%s\n", __func__);
Alan Stern40f122f2006-11-09 14:44:33 -05002786
David Brownellc9f89fa2005-09-13 19:57:04 -07002787 /* stop khubd and related activity */
Alan Stern43303542008-04-28 11:07:31 -04002788 hub_quiesce(hub, HUB_SUSPEND);
Alan Sternb6f64362007-05-04 11:51:54 -04002789 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002790}
2791
2792static int hub_resume(struct usb_interface *intf)
2793{
Alan Stern5e6effa2008-03-03 15:15:51 -05002794 struct usb_hub *hub = usb_get_intfdata(intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002795
Alan Stern5e6effa2008-03-03 15:15:51 -05002796 dev_dbg(&intf->dev, "%s\n", __func__);
Alan Sternf2835212008-04-28 11:07:17 -04002797 hub_activate(hub, HUB_RESUME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002798 return 0;
2799}
2800
Alan Sternb41a60e2007-05-30 15:39:33 -04002801static int hub_reset_resume(struct usb_interface *intf)
Alan Sternf07600c2007-05-30 15:38:16 -04002802{
Alan Sternb41a60e2007-05-30 15:39:33 -04002803 struct usb_hub *hub = usb_get_intfdata(intf);
Alan Sternf07600c2007-05-30 15:38:16 -04002804
Alan Stern5e6effa2008-03-03 15:15:51 -05002805 dev_dbg(&intf->dev, "%s\n", __func__);
Alan Sternf2835212008-04-28 11:07:17 -04002806 hub_activate(hub, HUB_RESET_RESUME);
Alan Sternf07600c2007-05-30 15:38:16 -04002807 return 0;
2808}
2809
Alan Stern54515fe2007-05-30 15:38:58 -04002810/**
2811 * usb_root_hub_lost_power - called by HCD if the root hub lost Vbus power
2812 * @rhdev: struct usb_device for the root hub
2813 *
2814 * The USB host controller driver calls this function when its root hub
2815 * is resumed and Vbus power has been interrupted or the controller
Alan Sternfeccc302008-03-03 15:15:59 -05002816 * has been reset. The routine marks @rhdev as having lost power.
2817 * When the hub driver is resumed it will take notice and carry out
2818 * power-session recovery for all the "USB-PERSIST"-enabled child devices;
2819 * the others will be disconnected.
Alan Stern54515fe2007-05-30 15:38:58 -04002820 */
2821void usb_root_hub_lost_power(struct usb_device *rhdev)
2822{
2823 dev_warn(&rhdev->dev, "root hub lost power or was reset\n");
2824 rhdev->reset_resume = 1;
2825}
2826EXPORT_SYMBOL_GPL(usb_root_hub_lost_power);
2827
Alan Sternd388dab2006-07-01 22:14:24 -04002828#else /* CONFIG_PM */
2829
Alan Sternf07600c2007-05-30 15:38:16 -04002830#define hub_suspend NULL
2831#define hub_resume NULL
2832#define hub_reset_resume NULL
Alan Sternd388dab2006-07-01 22:14:24 -04002833#endif
2834
Linus Torvalds1da177e2005-04-16 15:20:36 -07002835
2836/* USB 2.0 spec, 7.1.7.3 / fig 7-29:
2837 *
2838 * Between connect detection and reset signaling there must be a delay
2839 * of 100ms at least for debounce and power-settling. The corresponding
2840 * timer shall restart whenever the downstream port detects a disconnect.
2841 *
2842 * Apparently there are some bluetooth and irda-dongles and a number of
2843 * low-speed devices for which this debounce period may last over a second.
2844 * Not covered by the spec - but easy to deal with.
2845 *
2846 * This implementation uses a 1500ms total debounce timeout; if the
2847 * connection isn't stable by then it returns -ETIMEDOUT. It checks
2848 * every 25ms for transient disconnects. When the port status has been
2849 * unchanged for 100ms it returns the port status.
2850 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002851static int hub_port_debounce(struct usb_hub *hub, int port1)
2852{
2853 int ret;
2854 int total_time, stable_time = 0;
2855 u16 portchange, portstatus;
2856 unsigned connection = 0xffff;
2857
2858 for (total_time = 0; ; total_time += HUB_DEBOUNCE_STEP) {
2859 ret = hub_port_status(hub, port1, &portstatus, &portchange);
2860 if (ret < 0)
2861 return ret;
2862
2863 if (!(portchange & USB_PORT_STAT_C_CONNECTION) &&
2864 (portstatus & USB_PORT_STAT_CONNECTION) == connection) {
2865 stable_time += HUB_DEBOUNCE_STEP;
2866 if (stable_time >= HUB_DEBOUNCE_STABLE)
2867 break;
2868 } else {
2869 stable_time = 0;
2870 connection = portstatus & USB_PORT_STAT_CONNECTION;
2871 }
2872
2873 if (portchange & USB_PORT_STAT_C_CONNECTION) {
2874 clear_port_feature(hub->hdev, port1,
2875 USB_PORT_FEAT_C_CONNECTION);
2876 }
2877
2878 if (total_time >= HUB_DEBOUNCE_TIMEOUT)
2879 break;
2880 msleep(HUB_DEBOUNCE_STEP);
2881 }
2882
2883 dev_dbg (hub->intfdev,
2884 "debounce: port %d: total %dms stable %dms status 0x%x\n",
2885 port1, total_time, stable_time, portstatus);
2886
2887 if (stable_time < HUB_DEBOUNCE_STABLE)
2888 return -ETIMEDOUT;
2889 return portstatus;
2890}
2891
Inaky Perez-Gonzalezfc721f52008-04-08 13:24:46 -07002892void usb_ep0_reinit(struct usb_device *udev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002893{
Alan Sternddeac4e2009-01-15 17:03:33 -05002894 usb_disable_endpoint(udev, 0 + USB_DIR_IN, true);
2895 usb_disable_endpoint(udev, 0 + USB_DIR_OUT, true);
Alan Stern2caf7fc2008-12-31 11:31:33 -05002896 usb_enable_endpoint(udev, &udev->ep0, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002897}
Inaky Perez-Gonzalezfc721f52008-04-08 13:24:46 -07002898EXPORT_SYMBOL_GPL(usb_ep0_reinit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002899
2900#define usb_sndaddr0pipe() (PIPE_CONTROL << 30)
2901#define usb_rcvaddr0pipe() ((PIPE_CONTROL << 30) | USB_DIR_IN)
2902
Alan Stern4326ed02007-07-30 17:08:43 -04002903static int hub_set_address(struct usb_device *udev, int devnum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002904{
2905 int retval;
Sarah Sharpc6515272009-04-27 19:57:26 -07002906 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002907
Sarah Sharpc6515272009-04-27 19:57:26 -07002908 /*
2909 * The host controller will choose the device address,
2910 * instead of the core having chosen it earlier
2911 */
2912 if (!hcd->driver->address_device && devnum <= 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002913 return -EINVAL;
2914 if (udev->state == USB_STATE_ADDRESS)
2915 return 0;
2916 if (udev->state != USB_STATE_DEFAULT)
2917 return -EINVAL;
Andiry Xuc8d4af82010-10-14 07:22:51 -07002918 if (hcd->driver->address_device)
Sarah Sharpc6515272009-04-27 19:57:26 -07002919 retval = hcd->driver->address_device(hcd, udev);
Andiry Xuc8d4af82010-10-14 07:22:51 -07002920 else
Sarah Sharpc6515272009-04-27 19:57:26 -07002921 retval = usb_control_msg(udev, usb_sndaddr0pipe(),
2922 USB_REQ_SET_ADDRESS, 0, devnum, 0,
2923 NULL, 0, USB_CTRL_SET_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002924 if (retval == 0) {
Alan Stern3b29b682011-02-22 09:53:41 -05002925 update_devnum(udev, devnum);
David Vrabel4953d142008-04-08 13:24:46 -07002926 /* Device now using proper address. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002927 usb_set_device_state(udev, USB_STATE_ADDRESS);
Inaky Perez-Gonzalezfc721f52008-04-08 13:24:46 -07002928 usb_ep0_reinit(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002929 }
2930 return retval;
2931}
2932
2933/* Reset device, (re)assign address, get device descriptor.
2934 * Device connection must be stable, no more debouncing needed.
2935 * Returns device in USB_STATE_ADDRESS, except on error.
2936 *
2937 * If this is called for an already-existing device (as part of
Ming Lei742120c2008-06-18 22:00:29 +08002938 * usb_reset_and_verify_device), the caller must own the device lock. For a
Linus Torvalds1da177e2005-04-16 15:20:36 -07002939 * newly detected device that is not accessible through any global
2940 * pointers, it's not necessary to lock the device.
2941 */
2942static int
2943hub_port_init (struct usb_hub *hub, struct usb_device *udev, int port1,
2944 int retry_counter)
2945{
Arjan van de Ven4186ecf2006-01-11 15:55:29 +01002946 static DEFINE_MUTEX(usb_address0_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002947
2948 struct usb_device *hdev = hub->hdev;
Sarah Sharpe7b77172009-04-27 19:54:26 -07002949 struct usb_hcd *hcd = bus_to_hcd(hdev->bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002950 int i, j, retval;
2951 unsigned delay = HUB_SHORT_RESET_TIME;
2952 enum usb_device_speed oldspeed = udev->speed;
Michal Nazarewicze538dfd2011-08-30 17:11:19 +02002953 const char *speed;
Alan Stern4326ed02007-07-30 17:08:43 -04002954 int devnum = udev->devnum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002955
2956 /* root hub ports have a slightly longer reset period
2957 * (from USB 2.0 spec, section 7.1.7.5)
2958 */
2959 if (!hdev->parent) {
2960 delay = HUB_ROOT_RESET_TIME;
2961 if (port1 == hdev->bus->otg_port)
2962 hdev->bus->b_hnp_enable = 0;
2963 }
2964
2965 /* Some low speed devices have problems with the quick delay, so */
2966 /* be a bit pessimistic with those devices. RHbug #23670 */
2967 if (oldspeed == USB_SPEED_LOW)
2968 delay = HUB_LONG_RESET_TIME;
2969
Arjan van de Ven4186ecf2006-01-11 15:55:29 +01002970 mutex_lock(&usb_address0_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002971
Luben Tuikov07194ab2011-02-11 11:33:10 -08002972 /* Reset the device; full speed may morph to high speed */
2973 /* FIXME a USB 2.0 device may morph into SuperSpeed on reset. */
Andiry Xu75d7cf72011-09-13 16:41:11 -07002974 retval = hub_port_reset(hub, port1, udev, delay, false);
Luben Tuikov07194ab2011-02-11 11:33:10 -08002975 if (retval < 0) /* error or disconnect */
2976 goto fail;
2977 /* success, speed is known */
2978
Linus Torvalds1da177e2005-04-16 15:20:36 -07002979 retval = -ENODEV;
2980
2981 if (oldspeed != USB_SPEED_UNKNOWN && oldspeed != udev->speed) {
2982 dev_dbg(&udev->dev, "device reset changed speed!\n");
2983 goto fail;
2984 }
2985 oldspeed = udev->speed;
Alan Stern4326ed02007-07-30 17:08:43 -04002986
Linus Torvalds1da177e2005-04-16 15:20:36 -07002987 /* USB 2.0 section 5.5.3 talks about ep0 maxpacket ...
2988 * it's fixed size except for full speed devices.
Inaky Perez-Gonzalez5bb6e0a2006-08-25 19:35:30 -07002989 * For Wireless USB devices, ep0 max packet is always 512 (tho
2990 * reported as 0xff in the device descriptor). WUSB1.0[4.8.1].
Linus Torvalds1da177e2005-04-16 15:20:36 -07002991 */
2992 switch (udev->speed) {
Sarah Sharp6b403b02009-04-27 19:54:10 -07002993 case USB_SPEED_SUPER:
Greg Kroah-Hartman551cdbb2010-01-14 11:08:04 -08002994 case USB_SPEED_WIRELESS: /* fixed at 512 */
Harvey Harrison551509d2009-02-11 14:11:36 -08002995 udev->ep0.desc.wMaxPacketSize = cpu_to_le16(512);
Inaky Perez-Gonzalez5bb6e0a2006-08-25 19:35:30 -07002996 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002997 case USB_SPEED_HIGH: /* fixed at 64 */
Harvey Harrison551509d2009-02-11 14:11:36 -08002998 udev->ep0.desc.wMaxPacketSize = cpu_to_le16(64);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002999 break;
3000 case USB_SPEED_FULL: /* 8, 16, 32, or 64 */
3001 /* to determine the ep0 maxpacket size, try to read
3002 * the device descriptor to get bMaxPacketSize0 and
3003 * then correct our initial guess.
3004 */
Harvey Harrison551509d2009-02-11 14:11:36 -08003005 udev->ep0.desc.wMaxPacketSize = cpu_to_le16(64);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003006 break;
3007 case USB_SPEED_LOW: /* fixed at 8 */
Harvey Harrison551509d2009-02-11 14:11:36 -08003008 udev->ep0.desc.wMaxPacketSize = cpu_to_le16(8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003009 break;
3010 default:
3011 goto fail;
3012 }
Michal Nazarewicze538dfd2011-08-30 17:11:19 +02003013
3014 if (udev->speed == USB_SPEED_WIRELESS)
3015 speed = "variable speed Wireless";
3016 else
3017 speed = usb_speed_string(udev->speed);
3018
Sarah Sharpc6515272009-04-27 19:57:26 -07003019 if (udev->speed != USB_SPEED_SUPER)
3020 dev_info(&udev->dev,
Michal Nazarewicze538dfd2011-08-30 17:11:19 +02003021 "%s %s USB device number %d using %s\n",
3022 (udev->config) ? "reset" : "new", speed,
Alan Stern3b29b682011-02-22 09:53:41 -05003023 devnum, udev->bus->controller->driver->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003024
3025 /* Set up TT records, if needed */
3026 if (hdev->tt) {
3027 udev->tt = hdev->tt;
3028 udev->ttport = hdev->ttport;
3029 } else if (udev->speed != USB_SPEED_HIGH
3030 && hdev->speed == USB_SPEED_HIGH) {
Alan Sternd199c962011-01-31 10:56:37 -05003031 if (!hub->tt.hub) {
3032 dev_err(&udev->dev, "parent hub has no TT\n");
3033 retval = -EINVAL;
3034 goto fail;
3035 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003036 udev->tt = &hub->tt;
3037 udev->ttport = port1;
3038 }
3039
3040 /* Why interleave GET_DESCRIPTOR and SET_ADDRESS this way?
3041 * Because device hardware and firmware is sometimes buggy in
3042 * this area, and this is how Linux has done it for ages.
3043 * Change it cautiously.
3044 *
3045 * NOTE: If USE_NEW_SCHEME() is true we will start by issuing
3046 * a 64-byte GET_DESCRIPTOR request. This is what Windows does,
3047 * so it may help with some non-standards-compliant devices.
3048 * Otherwise we start with SET_ADDRESS and then try to read the
3049 * first 8 bytes of the device descriptor to get the ep0 maxpacket
3050 * value.
3051 */
3052 for (i = 0; i < GET_DESCRIPTOR_TRIES; (++i, msleep(100))) {
Sarah Sharpc6515272009-04-27 19:57:26 -07003053 if (USE_NEW_SCHEME(retry_counter) && !(hcd->driver->flags & HCD_USB3)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003054 struct usb_device_descriptor *buf;
3055 int r = 0;
3056
3057#define GET_DESCRIPTOR_BUFSIZE 64
3058 buf = kmalloc(GET_DESCRIPTOR_BUFSIZE, GFP_NOIO);
3059 if (!buf) {
3060 retval = -ENOMEM;
3061 continue;
3062 }
3063
Alan Sternb89ee192007-05-11 10:19:04 -04003064 /* Retry on all errors; some devices are flakey.
3065 * 255 is for WUSB devices, we actually need to use
3066 * 512 (WUSB1.0[4.8.1]).
Linus Torvalds1da177e2005-04-16 15:20:36 -07003067 */
3068 for (j = 0; j < 3; ++j) {
3069 buf->bMaxPacketSize0 = 0;
3070 r = usb_control_msg(udev, usb_rcvaddr0pipe(),
3071 USB_REQ_GET_DESCRIPTOR, USB_DIR_IN,
3072 USB_DT_DEVICE << 8, 0,
3073 buf, GET_DESCRIPTOR_BUFSIZE,
Jaroslav Kyselafd7c5192008-10-10 16:24:45 +02003074 initial_descriptor_timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003075 switch (buf->bMaxPacketSize0) {
Inaky Perez-Gonzalez5bb6e0a2006-08-25 19:35:30 -07003076 case 8: case 16: case 32: case 64: case 255:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003077 if (buf->bDescriptorType ==
3078 USB_DT_DEVICE) {
3079 r = 0;
3080 break;
3081 }
3082 /* FALL THROUGH */
3083 default:
3084 if (r == 0)
3085 r = -EPROTO;
3086 break;
3087 }
3088 if (r == 0)
3089 break;
3090 }
3091 udev->descriptor.bMaxPacketSize0 =
3092 buf->bMaxPacketSize0;
3093 kfree(buf);
3094
Andiry Xu75d7cf72011-09-13 16:41:11 -07003095 retval = hub_port_reset(hub, port1, udev, delay, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003096 if (retval < 0) /* error or disconnect */
3097 goto fail;
3098 if (oldspeed != udev->speed) {
3099 dev_dbg(&udev->dev,
3100 "device reset changed speed!\n");
3101 retval = -ENODEV;
3102 goto fail;
3103 }
3104 if (r) {
Wu Fengguangb9cef6c2008-12-15 15:32:01 +08003105 dev_err(&udev->dev,
3106 "device descriptor read/64, error %d\n",
3107 r);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003108 retval = -EMSGSIZE;
3109 continue;
3110 }
3111#undef GET_DESCRIPTOR_BUFSIZE
3112 }
3113
Inaky Perez-Gonzalez6c529cd2008-04-08 13:24:46 -07003114 /*
3115 * If device is WUSB, we already assigned an
3116 * unauthorized address in the Connect Ack sequence;
3117 * authorization will assign the final address.
3118 */
Sarah Sharpc6515272009-04-27 19:57:26 -07003119 if (udev->wusb == 0) {
Inaky Perez-Gonzalez6c529cd2008-04-08 13:24:46 -07003120 for (j = 0; j < SET_ADDRESS_TRIES; ++j) {
3121 retval = hub_set_address(udev, devnum);
3122 if (retval >= 0)
3123 break;
3124 msleep(200);
3125 }
3126 if (retval < 0) {
3127 dev_err(&udev->dev,
3128 "device not accepting address %d, error %d\n",
3129 devnum, retval);
3130 goto fail;
3131 }
Sarah Sharpc6515272009-04-27 19:57:26 -07003132 if (udev->speed == USB_SPEED_SUPER) {
3133 devnum = udev->devnum;
3134 dev_info(&udev->dev,
Alan Stern3b29b682011-02-22 09:53:41 -05003135 "%s SuperSpeed USB device number %d using %s\n",
Sarah Sharpc6515272009-04-27 19:57:26 -07003136 (udev->config) ? "reset" : "new",
Alan Stern3b29b682011-02-22 09:53:41 -05003137 devnum, udev->bus->controller->driver->name);
Sarah Sharpc6515272009-04-27 19:57:26 -07003138 }
Inaky Perez-Gonzalez6c529cd2008-04-08 13:24:46 -07003139
3140 /* cope with hardware quirkiness:
3141 * - let SET_ADDRESS settle, some device hardware wants it
3142 * - read ep0 maxpacket even for high and low speed,
3143 */
3144 msleep(10);
Sarah Sharpc6515272009-04-27 19:57:26 -07003145 if (USE_NEW_SCHEME(retry_counter) && !(hcd->driver->flags & HCD_USB3))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003146 break;
Inaky Perez-Gonzalez6c529cd2008-04-08 13:24:46 -07003147 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003148
3149 retval = usb_get_device_descriptor(udev, 8);
3150 if (retval < 8) {
Wu Fengguangb9cef6c2008-12-15 15:32:01 +08003151 dev_err(&udev->dev,
3152 "device descriptor read/8, error %d\n",
3153 retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003154 if (retval >= 0)
3155 retval = -EMSGSIZE;
3156 } else {
3157 retval = 0;
3158 break;
3159 }
3160 }
3161 if (retval)
3162 goto fail;
3163
Sarah Sharp6b403b02009-04-27 19:54:10 -07003164 if (udev->descriptor.bMaxPacketSize0 == 0xff ||
3165 udev->speed == USB_SPEED_SUPER)
3166 i = 512;
3167 else
3168 i = udev->descriptor.bMaxPacketSize0;
Kuninori Morimoto29cc8892011-08-23 03:12:03 -07003169 if (usb_endpoint_maxp(&udev->ep0.desc) != i) {
Alan Stern56626a72010-10-14 15:25:21 -04003170 if (udev->speed == USB_SPEED_LOW ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07003171 !(i == 8 || i == 16 || i == 32 || i == 64)) {
Alan Stern56626a72010-10-14 15:25:21 -04003172 dev_err(&udev->dev, "Invalid ep0 maxpacket: %d\n", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003173 retval = -EMSGSIZE;
3174 goto fail;
3175 }
Alan Stern56626a72010-10-14 15:25:21 -04003176 if (udev->speed == USB_SPEED_FULL)
3177 dev_dbg(&udev->dev, "ep0 maxpacket = %d\n", i);
3178 else
3179 dev_warn(&udev->dev, "Using ep0 maxpacket: %d\n", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003180 udev->ep0.desc.wMaxPacketSize = cpu_to_le16(i);
Inaky Perez-Gonzalezfc721f52008-04-08 13:24:46 -07003181 usb_ep0_reinit(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003182 }
3183
3184 retval = usb_get_device_descriptor(udev, USB_DT_DEVICE_SIZE);
3185 if (retval < (signed)sizeof(udev->descriptor)) {
Wu Fengguangb9cef6c2008-12-15 15:32:01 +08003186 dev_err(&udev->dev, "device descriptor read/all, error %d\n",
3187 retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003188 if (retval >= 0)
3189 retval = -ENOMSG;
3190 goto fail;
3191 }
3192
Andiry Xu1ff4df52011-09-23 14:19:48 -07003193 if (udev->wusb == 0 && le16_to_cpu(udev->descriptor.bcdUSB) >= 0x0201) {
3194 retval = usb_get_bos_descriptor(udev);
3195 if (!retval) {
3196 if (udev->bos->ext_cap && (USB_LPM_SUPPORT &
3197 le32_to_cpu(udev->bos->ext_cap->bmAttributes)))
3198 udev->lpm_capable = 1;
3199 }
3200 }
Andiry Xu3148bf02011-09-23 14:19:47 -07003201
Linus Torvalds1da177e2005-04-16 15:20:36 -07003202 retval = 0;
Alek Du48f24972010-06-04 15:47:55 +08003203 /* notify HCD that we have a device connected and addressed */
3204 if (hcd->driver->update_device)
3205 hcd->driver->update_device(hcd, udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003206fail:
Alan Stern4326ed02007-07-30 17:08:43 -04003207 if (retval) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003208 hub_port_disable(hub, port1, 0);
Alan Stern3b29b682011-02-22 09:53:41 -05003209 update_devnum(udev, devnum); /* for disconnect processing */
Alan Stern4326ed02007-07-30 17:08:43 -04003210 }
Arjan van de Ven4186ecf2006-01-11 15:55:29 +01003211 mutex_unlock(&usb_address0_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003212 return retval;
3213}
3214
3215static void
3216check_highspeed (struct usb_hub *hub, struct usb_device *udev, int port1)
3217{
3218 struct usb_qualifier_descriptor *qual;
3219 int status;
3220
Christoph Lametere94b1762006-12-06 20:33:17 -08003221 qual = kmalloc (sizeof *qual, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003222 if (qual == NULL)
3223 return;
3224
3225 status = usb_get_descriptor (udev, USB_DT_DEVICE_QUALIFIER, 0,
3226 qual, sizeof *qual);
3227 if (status == sizeof *qual) {
3228 dev_info(&udev->dev, "not running at top speed; "
3229 "connect to a high speed hub\n");
3230 /* hub LEDs are probably harder to miss than syslog */
3231 if (hub->has_indicators) {
3232 hub->indicator[port1-1] = INDICATOR_GREEN_BLINK;
David Howellsc4028952006-11-22 14:57:56 +00003233 schedule_delayed_work (&hub->leds, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003234 }
3235 }
Jesper Juhl1bc3c9e2005-04-18 17:39:34 -07003236 kfree(qual);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003237}
3238
3239static unsigned
3240hub_power_remaining (struct usb_hub *hub)
3241{
3242 struct usb_device *hdev = hub->hdev;
3243 int remaining;
Alan Stern55c52712005-11-23 12:03:12 -05003244 int port1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003245
Alan Stern55c52712005-11-23 12:03:12 -05003246 if (!hub->limited_power)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003247 return 0;
3248
Alan Stern55c52712005-11-23 12:03:12 -05003249 remaining = hdev->bus_mA - hub->descriptor->bHubContrCurrent;
3250 for (port1 = 1; port1 <= hdev->maxchild; ++port1) {
3251 struct usb_device *udev = hdev->children[port1 - 1];
3252 int delta;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003253
3254 if (!udev)
3255 continue;
3256
Alan Stern55c52712005-11-23 12:03:12 -05003257 /* Unconfigured devices may not use more than 100mA,
3258 * or 8mA for OTG ports */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003259 if (udev->actconfig)
Alan Stern55c52712005-11-23 12:03:12 -05003260 delta = udev->actconfig->desc.bMaxPower * 2;
3261 else if (port1 != udev->bus->otg_port || hdev->parent)
3262 delta = 100;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003263 else
Alan Stern55c52712005-11-23 12:03:12 -05003264 delta = 8;
3265 if (delta > hub->mA_per_port)
Wu Fengguangb9cef6c2008-12-15 15:32:01 +08003266 dev_warn(&udev->dev,
3267 "%dmA is over %umA budget for port %d!\n",
3268 delta, hub->mA_per_port, port1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003269 remaining -= delta;
3270 }
3271 if (remaining < 0) {
Alan Stern55c52712005-11-23 12:03:12 -05003272 dev_warn(hub->intfdev, "%dmA over power budget!\n",
3273 - remaining);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003274 remaining = 0;
3275 }
3276 return remaining;
3277}
3278
3279/* Handle physical or logical connection change events.
3280 * This routine is called when:
3281 * a port connection-change occurs;
3282 * a port enable-change occurs (often caused by EMI);
Ming Lei742120c2008-06-18 22:00:29 +08003283 * usb_reset_and_verify_device() encounters changed descriptors (as from
Linus Torvalds1da177e2005-04-16 15:20:36 -07003284 * a firmware download)
3285 * caller already locked the hub
3286 */
3287static void hub_port_connect_change(struct usb_hub *hub, int port1,
3288 u16 portstatus, u16 portchange)
3289{
3290 struct usb_device *hdev = hub->hdev;
3291 struct device *hub_dev = hub->intfdev;
Balaji Rao90da0962007-11-22 01:58:14 +05303292 struct usb_hcd *hcd = bus_to_hcd(hdev->bus);
Alan Stern24618b02008-04-28 11:06:28 -04003293 unsigned wHubCharacteristics =
3294 le16_to_cpu(hub->descriptor->wHubCharacteristics);
Alan Stern8808f002008-04-28 11:06:55 -04003295 struct usb_device *udev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003296 int status, i;
Alan Stern24618b02008-04-28 11:06:28 -04003297
Linus Torvalds1da177e2005-04-16 15:20:36 -07003298 dev_dbg (hub_dev,
3299 "port %d, status %04x, change %04x, %s\n",
Sarah Sharp131dec32010-12-06 21:00:19 -08003300 port1, portstatus, portchange, portspeed(hub, portstatus));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003301
3302 if (hub->has_indicators) {
3303 set_port_led(hub, port1, HUB_LED_AUTO);
3304 hub->indicator[port1-1] = INDICATOR_AUTO;
3305 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003306
3307#ifdef CONFIG_USB_OTG
3308 /* during HNP, don't repeat the debounce */
3309 if (hdev->bus->is_b_host)
Alan Stern24618b02008-04-28 11:06:28 -04003310 portchange &= ~(USB_PORT_STAT_C_CONNECTION |
3311 USB_PORT_STAT_C_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003312#endif
3313
Alan Stern8808f002008-04-28 11:06:55 -04003314 /* Try to resuscitate an existing device */
3315 udev = hdev->children[port1-1];
3316 if ((portstatus & USB_PORT_STAT_CONNECTION) && udev &&
3317 udev->state != USB_STATE_NOTATTACHED) {
Alan Stern8808f002008-04-28 11:06:55 -04003318 usb_lock_device(udev);
3319 if (portstatus & USB_PORT_STAT_ENABLE) {
3320 status = 0; /* Nothing to do */
Alan Stern8808f002008-04-28 11:06:55 -04003321
3322#ifdef CONFIG_USB_SUSPEND
Alan Stern5257d972008-09-22 14:43:08 -04003323 } else if (udev->state == USB_STATE_SUSPENDED &&
3324 udev->persist_enabled) {
Alan Stern8808f002008-04-28 11:06:55 -04003325 /* For a suspended device, treat this as a
3326 * remote wakeup event.
3327 */
Alan Stern0534d462010-01-08 12:56:30 -05003328 status = usb_remote_wakeup(udev);
Alan Stern8808f002008-04-28 11:06:55 -04003329#endif
3330
3331 } else {
Alan Stern5257d972008-09-22 14:43:08 -04003332 status = -ENODEV; /* Don't resuscitate */
Alan Stern8808f002008-04-28 11:06:55 -04003333 }
3334 usb_unlock_device(udev);
3335
3336 if (status == 0) {
3337 clear_bit(port1, hub->change_bits);
3338 return;
3339 }
3340 }
3341
Alan Stern24618b02008-04-28 11:06:28 -04003342 /* Disconnect any existing devices under this port */
Alan Stern8808f002008-04-28 11:06:55 -04003343 if (udev)
Alan Stern24618b02008-04-28 11:06:28 -04003344 usb_disconnect(&hdev->children[port1-1]);
3345 clear_bit(port1, hub->change_bits);
3346
Alan Stern253e0572009-10-27 15:20:13 -04003347 /* We can forget about a "removed" device when there's a physical
3348 * disconnect or the connect status changes.
3349 */
3350 if (!(portstatus & USB_PORT_STAT_CONNECTION) ||
3351 (portchange & USB_PORT_STAT_C_CONNECTION))
3352 clear_bit(port1, hub->removed_bits);
3353
Alan Stern5257d972008-09-22 14:43:08 -04003354 if (portchange & (USB_PORT_STAT_C_CONNECTION |
3355 USB_PORT_STAT_C_ENABLE)) {
3356 status = hub_port_debounce(hub, port1);
3357 if (status < 0) {
3358 if (printk_ratelimit())
3359 dev_err(hub_dev, "connect-debounce failed, "
3360 "port %d disabled\n", port1);
3361 portstatus &= ~USB_PORT_STAT_CONNECTION;
3362 } else {
3363 portstatus = status;
3364 }
3365 }
3366
Alan Stern253e0572009-10-27 15:20:13 -04003367 /* Return now if debouncing failed or nothing is connected or
3368 * the device was "removed".
3369 */
3370 if (!(portstatus & USB_PORT_STAT_CONNECTION) ||
3371 test_bit(port1, hub->removed_bits)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003372
3373 /* maybe switch power back on (e.g. root hub was reset) */
Greg Kroah-Hartman74ad9bd2005-06-20 21:15:16 -07003374 if ((wHubCharacteristics & HUB_CHAR_LPSM) < 2
Andiry Xu0ed9a572011-04-27 18:07:43 +08003375 && !port_is_power_on(hub, portstatus))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003376 set_port_feature(hdev, port1, USB_PORT_FEAT_POWER);
Alan Stern5257d972008-09-22 14:43:08 -04003377
Linus Torvalds1da177e2005-04-16 15:20:36 -07003378 if (portstatus & USB_PORT_STAT_ENABLE)
3379 goto done;
3380 return;
3381 }
3382
Linus Torvalds1da177e2005-04-16 15:20:36 -07003383 for (i = 0; i < SET_CONFIG_TRIES; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003384
3385 /* reallocate for each attempt, since references
3386 * to the previous one can escape in various ways
3387 */
3388 udev = usb_alloc_dev(hdev, hdev->bus, port1);
3389 if (!udev) {
3390 dev_err (hub_dev,
3391 "couldn't allocate port %d usb_device\n",
3392 port1);
3393 goto done;
3394 }
3395
3396 usb_set_device_state(udev, USB_STATE_POWERED);
Alan Stern55c52712005-11-23 12:03:12 -05003397 udev->bus_mA = hub->mA_per_port;
Alan Sternb6956ff2006-08-30 15:46:48 -04003398 udev->level = hdev->level + 1;
Inaky Perez-Gonzalez8af548d2008-04-08 13:24:46 -07003399 udev->wusb = hub_is_wusb(hub);
Alan Stern55c52712005-11-23 12:03:12 -05003400
Sarah Sharp131dec32010-12-06 21:00:19 -08003401 /* Only USB 3.0 devices are connected to SuperSpeed hubs. */
3402 if (hub_is_superspeed(hub->hdev))
Sarah Sharpe7b77172009-04-27 19:54:26 -07003403 udev->speed = USB_SPEED_SUPER;
3404 else
3405 udev->speed = USB_SPEED_UNKNOWN;
3406
Alan Stern3b29b682011-02-22 09:53:41 -05003407 choose_devnum(udev);
Andiry Xuc8d4af82010-10-14 07:22:51 -07003408 if (udev->devnum <= 0) {
3409 status = -ENOTCONN; /* Don't retry */
3410 goto loop;
Sarah Sharpc6515272009-04-27 19:57:26 -07003411 }
3412
Sarah Sharpe7b77172009-04-27 19:54:26 -07003413 /* reset (non-USB 3.0 devices) and get descriptor */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003414 status = hub_port_init(hub, udev, port1, i);
3415 if (status < 0)
3416 goto loop;
3417
Phil Dibowitz93362a82010-07-22 00:05:01 +02003418 usb_detect_quirks(udev);
3419 if (udev->quirks & USB_QUIRK_DELAY_INIT)
3420 msleep(1000);
3421
Linus Torvalds1da177e2005-04-16 15:20:36 -07003422 /* consecutive bus-powered hubs aren't reliable; they can
3423 * violate the voltage drop budget. if the new child has
3424 * a "powered" LED, users should notice we didn't enable it
3425 * (without reading syslog), even without per-port LEDs
3426 * on the parent.
3427 */
3428 if (udev->descriptor.bDeviceClass == USB_CLASS_HUB
Alan Stern55c52712005-11-23 12:03:12 -05003429 && udev->bus_mA <= 100) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003430 u16 devstat;
3431
3432 status = usb_get_status(udev, USB_RECIP_DEVICE, 0,
3433 &devstat);
Alan Stern55c52712005-11-23 12:03:12 -05003434 if (status < 2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003435 dev_dbg(&udev->dev, "get status %d ?\n", status);
3436 goto loop_disable;
3437 }
Alan Stern55c52712005-11-23 12:03:12 -05003438 le16_to_cpus(&devstat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003439 if ((devstat & (1 << USB_DEVICE_SELF_POWERED)) == 0) {
3440 dev_err(&udev->dev,
3441 "can't connect bus-powered hub "
3442 "to this port\n");
3443 if (hub->has_indicators) {
3444 hub->indicator[port1-1] =
3445 INDICATOR_AMBER_BLINK;
David Howellsc4028952006-11-22 14:57:56 +00003446 schedule_delayed_work (&hub->leds, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003447 }
3448 status = -ENOTCONN; /* Don't retry */
3449 goto loop_disable;
3450 }
3451 }
3452
3453 /* check for devices running slower than they could */
3454 if (le16_to_cpu(udev->descriptor.bcdUSB) >= 0x0200
3455 && udev->speed == USB_SPEED_FULL
3456 && highspeed_hubs != 0)
3457 check_highspeed (hub, udev, port1);
3458
3459 /* Store the parent's children[] pointer. At this point
3460 * udev becomes globally accessible, although presumably
3461 * no one will look at it until hdev is unlocked.
3462 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003463 status = 0;
3464
3465 /* We mustn't add new devices if the parent hub has
3466 * been disconnected; we would race with the
3467 * recursively_mark_NOTATTACHED() routine.
3468 */
3469 spin_lock_irq(&device_state_lock);
3470 if (hdev->state == USB_STATE_NOTATTACHED)
3471 status = -ENOTCONN;
3472 else
3473 hdev->children[port1-1] = udev;
3474 spin_unlock_irq(&device_state_lock);
3475
3476 /* Run it through the hoops (find a driver, etc) */
3477 if (!status) {
3478 status = usb_new_device(udev);
3479 if (status) {
3480 spin_lock_irq(&device_state_lock);
3481 hdev->children[port1-1] = NULL;
3482 spin_unlock_irq(&device_state_lock);
3483 }
3484 }
3485
Linus Torvalds1da177e2005-04-16 15:20:36 -07003486 if (status)
3487 goto loop_disable;
3488
3489 status = hub_power_remaining(hub);
3490 if (status)
Alan Stern55c52712005-11-23 12:03:12 -05003491 dev_dbg(hub_dev, "%dmA power budget left\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003492
3493 return;
3494
3495loop_disable:
3496 hub_port_disable(hub, port1, 1);
3497loop:
Inaky Perez-Gonzalezfc721f52008-04-08 13:24:46 -07003498 usb_ep0_reinit(udev);
Alan Stern3b29b682011-02-22 09:53:41 -05003499 release_devnum(udev);
Herbert Xuf7410ce2010-01-10 20:15:03 +11003500 hub_free_dev(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003501 usb_put_dev(udev);
Vikram Panditaffcdc182007-05-25 21:31:07 -07003502 if ((status == -ENOTCONN) || (status == -ENOTSUPP))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003503 break;
3504 }
Alan Stern3a311552008-05-20 16:58:29 -04003505 if (hub->hdev->parent ||
3506 !hcd->driver->port_handed_over ||
3507 !(hcd->driver->port_handed_over)(hcd, port1))
3508 dev_err(hub_dev, "unable to enumerate USB device on port %d\n",
3509 port1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003510
3511done:
3512 hub_port_disable(hub, port1, 1);
Balaji Rao90da0962007-11-22 01:58:14 +05303513 if (hcd->driver->relinquish_port && !hub->hdev->parent)
3514 hcd->driver->relinquish_port(hcd, port1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003515}
3516
Sarah Sharp714b07b2012-01-24 13:53:18 -08003517/* Returns 1 if there was a remote wakeup and a connect status change. */
3518static int hub_handle_remote_wakeup(struct usb_hub *hub, unsigned int port,
Sarah Sharp72937e12012-01-24 11:46:50 -08003519 u16 portstatus, u16 portchange)
Sarah Sharp714b07b2012-01-24 13:53:18 -08003520{
3521 struct usb_device *hdev;
3522 struct usb_device *udev;
3523 int connect_change = 0;
3524 int ret;
3525
3526 hdev = hub->hdev;
Sarah Sharp714b07b2012-01-24 13:53:18 -08003527 udev = hdev->children[port-1];
Sarah Sharp4ee823b2011-11-14 18:00:01 -08003528 if (!hub_is_superspeed(hdev)) {
3529 if (!(portchange & USB_PORT_STAT_C_SUSPEND))
3530 return 0;
3531 clear_port_feature(hdev, port, USB_PORT_FEAT_C_SUSPEND);
3532 } else {
3533 if (!udev || udev->state != USB_STATE_SUSPENDED ||
Sarah Sharp72937e12012-01-24 11:46:50 -08003534 (portstatus & USB_PORT_STAT_LINK_STATE) !=
3535 USB_SS_PORT_LS_U0)
Sarah Sharp4ee823b2011-11-14 18:00:01 -08003536 return 0;
3537 }
3538
Sarah Sharp714b07b2012-01-24 13:53:18 -08003539 if (udev) {
3540 /* TRSMRCY = 10 msec */
3541 msleep(10);
3542
3543 usb_lock_device(udev);
3544 ret = usb_remote_wakeup(udev);
3545 usb_unlock_device(udev);
3546 if (ret < 0)
3547 connect_change = 1;
3548 } else {
3549 ret = -ENODEV;
3550 hub_port_disable(hub, port, 1);
3551 }
3552 dev_dbg(hub->intfdev, "resume on port %d, status %d\n",
3553 port, ret);
3554 return connect_change;
3555}
3556
Linus Torvalds1da177e2005-04-16 15:20:36 -07003557static void hub_events(void)
3558{
3559 struct list_head *tmp;
3560 struct usb_device *hdev;
3561 struct usb_interface *intf;
3562 struct usb_hub *hub;
3563 struct device *hub_dev;
3564 u16 hubstatus;
3565 u16 hubchange;
3566 u16 portstatus;
3567 u16 portchange;
3568 int i, ret;
Sarah Sharp4ee823b2011-11-14 18:00:01 -08003569 int connect_change, wakeup_change;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003570
3571 /*
3572 * We restart the list every time to avoid a deadlock with
3573 * deleting hubs downstream from this one. This should be
3574 * safe since we delete the hub from the event list.
3575 * Not the most efficient, but avoids deadlocks.
3576 */
3577 while (1) {
3578
3579 /* Grab the first entry at the beginning of the list */
3580 spin_lock_irq(&hub_event_lock);
3581 if (list_empty(&hub_event_list)) {
3582 spin_unlock_irq(&hub_event_lock);
3583 break;
3584 }
3585
3586 tmp = hub_event_list.next;
3587 list_del_init(tmp);
3588
3589 hub = list_entry(tmp, struct usb_hub, event_list);
Alan Sterne8054852007-05-04 11:55:11 -04003590 kref_get(&hub->kref);
3591 spin_unlock_irq(&hub_event_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003592
Alan Sterne8054852007-05-04 11:55:11 -04003593 hdev = hub->hdev;
3594 hub_dev = hub->intfdev;
3595 intf = to_usb_interface(hub_dev);
Alan Stern40f122f2006-11-09 14:44:33 -05003596 dev_dbg(hub_dev, "state %d ports %d chg %04x evt %04x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003597 hdev->state, hub->descriptor
3598 ? hub->descriptor->bNbrPorts
3599 : 0,
3600 /* NOTE: expects max 15 ports... */
3601 (u16) hub->change_bits[0],
Alan Stern40f122f2006-11-09 14:44:33 -05003602 (u16) hub->event_bits[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003603
Linus Torvalds1da177e2005-04-16 15:20:36 -07003604 /* Lock the device, then check to see if we were
3605 * disconnected while waiting for the lock to succeed. */
Alan Stern06b84e82007-05-04 11:54:50 -04003606 usb_lock_device(hdev);
Alan Sterne8054852007-05-04 11:55:11 -04003607 if (unlikely(hub->disconnected))
Alan Stern9bbdf1e2010-01-08 12:57:28 -05003608 goto loop_disconnected;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003609
3610 /* If the hub has died, clean up after it */
3611 if (hdev->state == USB_STATE_NOTATTACHED) {
Alan Stern7de18d82006-06-01 13:37:24 -04003612 hub->error = -ENODEV;
Alan Stern43303542008-04-28 11:07:31 -04003613 hub_quiesce(hub, HUB_DISCONNECT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003614 goto loop;
3615 }
3616
Alan Stern40f122f2006-11-09 14:44:33 -05003617 /* Autoresume */
3618 ret = usb_autopm_get_interface(intf);
3619 if (ret) {
3620 dev_dbg(hub_dev, "Can't autoresume: %d\n", ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003621 goto loop;
Alan Stern40f122f2006-11-09 14:44:33 -05003622 }
3623
3624 /* If this is an inactive hub, do nothing */
3625 if (hub->quiescing)
3626 goto loop_autopm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003627
3628 if (hub->error) {
3629 dev_dbg (hub_dev, "resetting for error %d\n",
3630 hub->error);
3631
Ming Lei742120c2008-06-18 22:00:29 +08003632 ret = usb_reset_device(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003633 if (ret) {
3634 dev_dbg (hub_dev,
3635 "error resetting hub: %d\n", ret);
Alan Stern40f122f2006-11-09 14:44:33 -05003636 goto loop_autopm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003637 }
3638
3639 hub->nerrors = 0;
3640 hub->error = 0;
3641 }
3642
3643 /* deal with port status changes */
3644 for (i = 1; i <= hub->descriptor->bNbrPorts; i++) {
3645 if (test_bit(i, hub->busy_bits))
3646 continue;
3647 connect_change = test_bit(i, hub->change_bits);
Sarah Sharp72937e12012-01-24 11:46:50 -08003648 wakeup_change = test_and_clear_bit(i, hub->wakeup_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003649 if (!test_and_clear_bit(i, hub->event_bits) &&
Sarah Sharp4ee823b2011-11-14 18:00:01 -08003650 !connect_change && !wakeup_change)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003651 continue;
3652
3653 ret = hub_port_status(hub, i,
3654 &portstatus, &portchange);
3655 if (ret < 0)
3656 continue;
3657
Linus Torvalds1da177e2005-04-16 15:20:36 -07003658 if (portchange & USB_PORT_STAT_C_CONNECTION) {
3659 clear_port_feature(hdev, i,
3660 USB_PORT_FEAT_C_CONNECTION);
3661 connect_change = 1;
3662 }
3663
3664 if (portchange & USB_PORT_STAT_C_ENABLE) {
3665 if (!connect_change)
3666 dev_dbg (hub_dev,
3667 "port %d enable change, "
3668 "status %08x\n",
3669 i, portstatus);
3670 clear_port_feature(hdev, i,
3671 USB_PORT_FEAT_C_ENABLE);
3672
3673 /*
3674 * EM interference sometimes causes badly
3675 * shielded USB devices to be shutdown by
3676 * the hub, this hack enables them again.
3677 * Works at least with mouse driver.
3678 */
3679 if (!(portstatus & USB_PORT_STAT_ENABLE)
3680 && !connect_change
3681 && hdev->children[i-1]) {
3682 dev_err (hub_dev,
3683 "port %i "
3684 "disabled by hub (EMI?), "
3685 "re-enabling...\n",
3686 i);
3687 connect_change = 1;
3688 }
3689 }
3690
Sarah Sharp72937e12012-01-24 11:46:50 -08003691 if (hub_handle_remote_wakeup(hub, i,
3692 portstatus, portchange))
Sarah Sharp714b07b2012-01-24 13:53:18 -08003693 connect_change = 1;
Alan Stern8808f002008-04-28 11:06:55 -04003694
Linus Torvalds1da177e2005-04-16 15:20:36 -07003695 if (portchange & USB_PORT_STAT_C_OVERCURRENT) {
Paul Bolle752d57a2011-03-11 18:03:52 +01003696 u16 status = 0;
3697 u16 unused;
3698
3699 dev_dbg(hub_dev, "over-current change on port "
3700 "%d\n", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003701 clear_port_feature(hdev, i,
3702 USB_PORT_FEAT_C_OVER_CURRENT);
Paul Bolle752d57a2011-03-11 18:03:52 +01003703 msleep(100); /* Cool down */
Alan Stern8520f382008-09-22 14:44:26 -04003704 hub_power_on(hub, true);
Paul Bolle752d57a2011-03-11 18:03:52 +01003705 hub_port_status(hub, i, &status, &unused);
3706 if (status & USB_PORT_STAT_OVERCURRENT)
3707 dev_err(hub_dev, "over-current "
3708 "condition on port %d\n", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003709 }
3710
3711 if (portchange & USB_PORT_STAT_C_RESET) {
3712 dev_dbg (hub_dev,
3713 "reset change on port %d\n",
3714 i);
3715 clear_port_feature(hdev, i,
3716 USB_PORT_FEAT_C_RESET);
3717 }
Sarah Sharpc7061572010-12-06 15:08:20 -08003718 if ((portchange & USB_PORT_STAT_C_BH_RESET) &&
3719 hub_is_superspeed(hub->hdev)) {
3720 dev_dbg(hub_dev,
3721 "warm reset change on port %d\n",
3722 i);
3723 clear_port_feature(hdev, i,
3724 USB_PORT_FEAT_C_BH_PORT_RESET);
3725 }
John Youndbe79bb2001-09-17 00:00:00 -07003726 if (portchange & USB_PORT_STAT_C_LINK_STATE) {
3727 clear_port_feature(hub->hdev, i,
3728 USB_PORT_FEAT_C_PORT_LINK_STATE);
3729 }
3730 if (portchange & USB_PORT_STAT_C_CONFIG_ERROR) {
3731 dev_warn(hub_dev,
3732 "config error on port %d\n",
3733 i);
3734 clear_port_feature(hub->hdev, i,
3735 USB_PORT_FEAT_C_PORT_CONFIG_ERROR);
3736 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003737
Andiry Xu5e467f62011-04-27 18:07:54 +08003738 /* Warm reset a USB3 protocol port if it's in
3739 * SS.Inactive state.
3740 */
3741 if (hub_is_superspeed(hub->hdev) &&
3742 (portstatus & USB_PORT_STAT_LINK_STATE)
3743 == USB_SS_PORT_LS_SS_INACTIVE) {
3744 dev_dbg(hub_dev, "warm reset port %d\n", i);
Andiry Xu75d7cf72011-09-13 16:41:11 -07003745 hub_port_reset(hub, i, NULL,
3746 HUB_BH_RESET_TIME, true);
Andiry Xu5e467f62011-04-27 18:07:54 +08003747 }
3748
Linus Torvalds1da177e2005-04-16 15:20:36 -07003749 if (connect_change)
3750 hub_port_connect_change(hub, i,
3751 portstatus, portchange);
3752 } /* end for i */
3753
3754 /* deal with hub status changes */
3755 if (test_and_clear_bit(0, hub->event_bits) == 0)
3756 ; /* do nothing */
3757 else if (hub_hub_status(hub, &hubstatus, &hubchange) < 0)
3758 dev_err (hub_dev, "get_hub_status failed\n");
3759 else {
3760 if (hubchange & HUB_CHANGE_LOCAL_POWER) {
3761 dev_dbg (hub_dev, "power change\n");
3762 clear_hub_feature(hdev, C_HUB_LOCAL_POWER);
Alan Stern55c52712005-11-23 12:03:12 -05003763 if (hubstatus & HUB_STATUS_LOCAL_POWER)
3764 /* FIXME: Is this always true? */
Alan Stern55c52712005-11-23 12:03:12 -05003765 hub->limited_power = 1;
jidong xiao403fae72007-09-14 00:08:51 +08003766 else
3767 hub->limited_power = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003768 }
3769 if (hubchange & HUB_CHANGE_OVERCURRENT) {
Paul Bolle752d57a2011-03-11 18:03:52 +01003770 u16 status = 0;
3771 u16 unused;
3772
3773 dev_dbg(hub_dev, "over-current change\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003774 clear_hub_feature(hdev, C_HUB_OVER_CURRENT);
Paul Bolle752d57a2011-03-11 18:03:52 +01003775 msleep(500); /* Cool down */
Alan Stern8520f382008-09-22 14:44:26 -04003776 hub_power_on(hub, true);
Paul Bolle752d57a2011-03-11 18:03:52 +01003777 hub_hub_status(hub, &status, &unused);
3778 if (status & HUB_STATUS_OVERCURRENT)
3779 dev_err(hub_dev, "over-current "
3780 "condition\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003781 }
3782 }
3783
Alan Stern8e4ceb32009-12-07 13:01:37 -05003784 loop_autopm:
3785 /* Balance the usb_autopm_get_interface() above */
3786 usb_autopm_put_interface_no_suspend(intf);
3787 loop:
3788 /* Balance the usb_autopm_get_interface_no_resume() in
3789 * kick_khubd() and allow autosuspend.
3790 */
3791 usb_autopm_put_interface(intf);
Alan Stern9bbdf1e2010-01-08 12:57:28 -05003792 loop_disconnected:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003793 usb_unlock_device(hdev);
Alan Sterne8054852007-05-04 11:55:11 -04003794 kref_put(&hub->kref, hub_release);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003795
3796 } /* end while (1) */
3797}
3798
3799static int hub_thread(void *__unused)
3800{
Alan Stern3bb1af52008-03-03 15:15:36 -05003801 /* khubd needs to be freezable to avoid intefering with USB-PERSIST
3802 * port handover. Otherwise it might see that a full-speed device
3803 * was gone before the EHCI controller had handed its port over to
3804 * the companion full-speed controller.
3805 */
Rafael J. Wysocki83144182007-07-17 04:03:35 -07003806 set_freezable();
Alan Stern3bb1af52008-03-03 15:15:36 -05003807
Linus Torvalds1da177e2005-04-16 15:20:36 -07003808 do {
3809 hub_events();
Rafael J. Wysockie42837b2007-10-18 03:04:45 -07003810 wait_event_freezable(khubd_wait,
akpm@osdl.org9c8d6172005-06-20 14:29:58 -07003811 !list_empty(&hub_event_list) ||
3812 kthread_should_stop());
akpm@osdl.org9c8d6172005-06-20 14:29:58 -07003813 } while (!kthread_should_stop() || !list_empty(&hub_event_list));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003814
akpm@osdl.org9c8d6172005-06-20 14:29:58 -07003815 pr_debug("%s: khubd exiting\n", usbcore_name);
3816 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003817}
3818
Németh Márton1e927d92010-01-10 15:34:53 +01003819static const struct usb_device_id hub_id_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003820 { .match_flags = USB_DEVICE_ID_MATCH_DEV_CLASS,
3821 .bDeviceClass = USB_CLASS_HUB},
3822 { .match_flags = USB_DEVICE_ID_MATCH_INT_CLASS,
3823 .bInterfaceClass = USB_CLASS_HUB},
3824 { } /* Terminating entry */
3825};
3826
3827MODULE_DEVICE_TABLE (usb, hub_id_table);
3828
3829static struct usb_driver hub_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003830 .name = "hub",
3831 .probe = hub_probe,
3832 .disconnect = hub_disconnect,
3833 .suspend = hub_suspend,
3834 .resume = hub_resume,
Alan Sternf07600c2007-05-30 15:38:16 -04003835 .reset_resume = hub_reset_resume,
Alan Stern7de18d82006-06-01 13:37:24 -04003836 .pre_reset = hub_pre_reset,
3837 .post_reset = hub_post_reset,
Andi Kleenc532b292010-06-01 23:04:41 +02003838 .unlocked_ioctl = hub_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003839 .id_table = hub_id_table,
Alan Stern40f122f2006-11-09 14:44:33 -05003840 .supports_autosuspend = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003841};
3842
3843int usb_hub_init(void)
3844{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003845 if (usb_register(&hub_driver) < 0) {
3846 printk(KERN_ERR "%s: can't register hub driver\n",
3847 usbcore_name);
3848 return -1;
3849 }
3850
akpm@osdl.org9c8d6172005-06-20 14:29:58 -07003851 khubd_task = kthread_run(hub_thread, NULL, "khubd");
3852 if (!IS_ERR(khubd_task))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003853 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003854
3855 /* Fall through if kernel_thread failed */
3856 usb_deregister(&hub_driver);
3857 printk(KERN_ERR "%s: can't start khubd\n", usbcore_name);
3858
3859 return -1;
3860}
3861
3862void usb_hub_cleanup(void)
3863{
akpm@osdl.org9c8d6172005-06-20 14:29:58 -07003864 kthread_stop(khubd_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003865
3866 /*
3867 * Hub resources are freed for us by usb_deregister. It calls
3868 * usb_driver_purge on every device which in turn calls that
3869 * devices disconnect function if it is using this driver.
3870 * The hub_disconnect function takes care of releasing the
3871 * individual hub resources. -greg
3872 */
3873 usb_deregister(&hub_driver);
3874} /* usb_hub_cleanup() */
3875
Alan Sterneb764c42008-03-03 15:16:04 -05003876static int descriptors_changed(struct usb_device *udev,
3877 struct usb_device_descriptor *old_device_descriptor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003878{
Alan Sterneb764c42008-03-03 15:16:04 -05003879 int changed = 0;
3880 unsigned index;
3881 unsigned serial_len = 0;
3882 unsigned len;
3883 unsigned old_length;
3884 int length;
3885 char *buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003886
Alan Sterneb764c42008-03-03 15:16:04 -05003887 if (memcmp(&udev->descriptor, old_device_descriptor,
3888 sizeof(*old_device_descriptor)) != 0)
3889 return 1;
3890
3891 /* Since the idVendor, idProduct, and bcdDevice values in the
3892 * device descriptor haven't changed, we will assume the
3893 * Manufacturer and Product strings haven't changed either.
3894 * But the SerialNumber string could be different (e.g., a
3895 * different flash card of the same brand).
3896 */
3897 if (udev->serial)
3898 serial_len = strlen(udev->serial) + 1;
3899
3900 len = serial_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003901 for (index = 0; index < udev->descriptor.bNumConfigurations; index++) {
Alan Sterneb764c42008-03-03 15:16:04 -05003902 old_length = le16_to_cpu(udev->config[index].desc.wTotalLength);
3903 len = max(len, old_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003904 }
Alan Sterneb764c42008-03-03 15:16:04 -05003905
Oliver Neukum0cc1a512008-01-10 10:31:48 +01003906 buf = kmalloc(len, GFP_NOIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003907 if (buf == NULL) {
3908 dev_err(&udev->dev, "no mem to re-read configs after reset\n");
3909 /* assume the worst */
3910 return 1;
3911 }
3912 for (index = 0; index < udev->descriptor.bNumConfigurations; index++) {
Alan Sterneb764c42008-03-03 15:16:04 -05003913 old_length = le16_to_cpu(udev->config[index].desc.wTotalLength);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003914 length = usb_get_descriptor(udev, USB_DT_CONFIG, index, buf,
3915 old_length);
Alan Sterneb764c42008-03-03 15:16:04 -05003916 if (length != old_length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003917 dev_dbg(&udev->dev, "config index %d, error %d\n",
3918 index, length);
Alan Sterneb764c42008-03-03 15:16:04 -05003919 changed = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003920 break;
3921 }
3922 if (memcmp (buf, udev->rawdescriptors[index], old_length)
3923 != 0) {
3924 dev_dbg(&udev->dev, "config index %d changed (#%d)\n",
Alan Sterneb764c42008-03-03 15:16:04 -05003925 index,
3926 ((struct usb_config_descriptor *) buf)->
3927 bConfigurationValue);
3928 changed = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003929 break;
3930 }
3931 }
Alan Sterneb764c42008-03-03 15:16:04 -05003932
3933 if (!changed && serial_len) {
3934 length = usb_string(udev, udev->descriptor.iSerialNumber,
3935 buf, serial_len);
3936 if (length + 1 != serial_len) {
3937 dev_dbg(&udev->dev, "serial string error %d\n",
3938 length);
3939 changed = 1;
3940 } else if (memcmp(buf, udev->serial, length) != 0) {
3941 dev_dbg(&udev->dev, "serial string changed\n");
3942 changed = 1;
3943 }
3944 }
3945
Linus Torvalds1da177e2005-04-16 15:20:36 -07003946 kfree(buf);
Alan Sterneb764c42008-03-03 15:16:04 -05003947 return changed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003948}
3949
3950/**
Ming Lei742120c2008-06-18 22:00:29 +08003951 * usb_reset_and_verify_device - perform a USB port reset to reinitialize a device
Linus Torvalds1da177e2005-04-16 15:20:36 -07003952 * @udev: device to reset (not in SUSPENDED or NOTATTACHED state)
3953 *
Alan Stern79efa092006-06-01 13:33:42 -04003954 * WARNING - don't use this routine to reset a composite device
3955 * (one with multiple interfaces owned by separate drivers)!
Ming Lei742120c2008-06-18 22:00:29 +08003956 * Use usb_reset_device() instead.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003957 *
3958 * Do a port reset, reassign the device's address, and establish its
3959 * former operating configuration. If the reset fails, or the device's
3960 * descriptors change from their values before the reset, or the original
3961 * configuration and altsettings cannot be restored, a flag will be set
3962 * telling khubd to pretend the device has been disconnected and then
3963 * re-connected. All drivers will be unbound, and the device will be
3964 * re-enumerated and probed all over again.
3965 *
3966 * Returns 0 if the reset succeeded, -ENODEV if the device has been
3967 * flagged for logical disconnection, or some other negative error code
3968 * if the reset wasn't even attempted.
3969 *
3970 * The caller must own the device lock. For example, it's safe to use
3971 * this from a driver probe() routine after downloading new firmware.
3972 * For calls that might not occur during probe(), drivers should lock
3973 * the device using usb_lock_device_for_reset().
Alan Stern6bc6cff2007-05-04 11:53:03 -04003974 *
3975 * Locking exception: This routine may also be called from within an
3976 * autoresume handler. Such usage won't conflict with other tasks
3977 * holding the device lock because these tasks should always call
3978 * usb_autopm_resume_device(), thereby preventing any unwanted autoresume.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003979 */
Ming Lei742120c2008-06-18 22:00:29 +08003980static int usb_reset_and_verify_device(struct usb_device *udev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003981{
3982 struct usb_device *parent_hdev = udev->parent;
3983 struct usb_hub *parent_hub;
Sarah Sharp3f0479e2009-12-03 09:44:36 -08003984 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003985 struct usb_device_descriptor descriptor = udev->descriptor;
Alan Stern12c3da32005-11-23 12:09:52 -05003986 int i, ret = 0;
3987 int port1 = udev->portnum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003988
3989 if (udev->state == USB_STATE_NOTATTACHED ||
3990 udev->state == USB_STATE_SUSPENDED) {
3991 dev_dbg(&udev->dev, "device reset not allowed in state %d\n",
3992 udev->state);
3993 return -EINVAL;
3994 }
3995
3996 if (!parent_hdev) {
Wolfram Sang4bec9912010-08-29 18:17:14 +02003997 /* this requires hcd-specific logic; see ohci_restart() */
Harvey Harrison441b62c2008-03-03 16:08:34 -08003998 dev_dbg(&udev->dev, "%s for root hub!\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003999 return -EISDIR;
4000 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004001 parent_hub = hdev_to_hub(parent_hdev);
4002
Linus Torvalds1da177e2005-04-16 15:20:36 -07004003 set_bit(port1, parent_hub->busy_bits);
4004 for (i = 0; i < SET_CONFIG_TRIES; ++i) {
4005
4006 /* ep0 maxpacket size may change; let the HCD know about it.
4007 * Other endpoints will be handled by re-enumeration. */
Inaky Perez-Gonzalezfc721f52008-04-08 13:24:46 -07004008 usb_ep0_reinit(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004009 ret = hub_port_init(parent_hub, udev, port1, i);
Alan Sterndd4dd192007-05-04 11:55:54 -04004010 if (ret >= 0 || ret == -ENOTCONN || ret == -ENODEV)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004011 break;
4012 }
4013 clear_bit(port1, parent_hub->busy_bits);
Alan Sternd5cbad42006-08-11 16:52:39 -04004014
Linus Torvalds1da177e2005-04-16 15:20:36 -07004015 if (ret < 0)
4016 goto re_enumerate;
4017
4018 /* Device might have changed firmware (DFU or similar) */
Alan Sterneb764c42008-03-03 15:16:04 -05004019 if (descriptors_changed(udev, &descriptor)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004020 dev_info(&udev->dev, "device firmware changed\n");
4021 udev->descriptor = descriptor; /* for disconnect() calls */
4022 goto re_enumerate;
4023 }
Alan Stern4fe03872009-02-26 10:21:02 -05004024
4025 /* Restore the device's previous configuration */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004026 if (!udev->actconfig)
4027 goto done;
Sarah Sharp3f0479e2009-12-03 09:44:36 -08004028
Sarah Sharpd673bfc2010-10-15 08:55:24 -07004029 mutex_lock(hcd->bandwidth_mutex);
Sarah Sharp3f0479e2009-12-03 09:44:36 -08004030 ret = usb_hcd_alloc_bandwidth(udev, udev->actconfig, NULL, NULL);
4031 if (ret < 0) {
4032 dev_warn(&udev->dev,
4033 "Busted HC? Not enough HCD resources for "
4034 "old configuration.\n");
Sarah Sharpd673bfc2010-10-15 08:55:24 -07004035 mutex_unlock(hcd->bandwidth_mutex);
Sarah Sharp3f0479e2009-12-03 09:44:36 -08004036 goto re_enumerate;
4037 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004038 ret = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
4039 USB_REQ_SET_CONFIGURATION, 0,
4040 udev->actconfig->desc.bConfigurationValue, 0,
4041 NULL, 0, USB_CTRL_SET_TIMEOUT);
4042 if (ret < 0) {
4043 dev_err(&udev->dev,
4044 "can't restore configuration #%d (error=%d)\n",
4045 udev->actconfig->desc.bConfigurationValue, ret);
Sarah Sharpd673bfc2010-10-15 08:55:24 -07004046 mutex_unlock(hcd->bandwidth_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004047 goto re_enumerate;
4048 }
Sarah Sharpd673bfc2010-10-15 08:55:24 -07004049 mutex_unlock(hcd->bandwidth_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004050 usb_set_device_state(udev, USB_STATE_CONFIGURED);
4051
Alan Stern4fe03872009-02-26 10:21:02 -05004052 /* Put interfaces back into the same altsettings as before.
4053 * Don't bother to send the Set-Interface request for interfaces
4054 * that were already in altsetting 0; besides being unnecessary,
4055 * many devices can't handle it. Instead just reset the host-side
4056 * endpoint state.
4057 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004058 for (i = 0; i < udev->actconfig->desc.bNumInterfaces; i++) {
Sarah Sharp3f0479e2009-12-03 09:44:36 -08004059 struct usb_host_config *config = udev->actconfig;
4060 struct usb_interface *intf = config->interface[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004061 struct usb_interface_descriptor *desc;
4062
Linus Torvalds1da177e2005-04-16 15:20:36 -07004063 desc = &intf->cur_altsetting->desc;
Alan Stern4fe03872009-02-26 10:21:02 -05004064 if (desc->bAlternateSetting == 0) {
4065 usb_disable_interface(udev, intf, true);
4066 usb_enable_interface(udev, intf, true);
4067 ret = 0;
4068 } else {
Sarah Sharp04a723e2010-01-06 10:16:51 -08004069 /* Let the bandwidth allocation function know that this
4070 * device has been reset, and it will have to use
4071 * alternate setting 0 as the current alternate setting.
Sarah Sharp3f0479e2009-12-03 09:44:36 -08004072 */
Sarah Sharp04a723e2010-01-06 10:16:51 -08004073 intf->resetting_device = 1;
Alan Stern4fe03872009-02-26 10:21:02 -05004074 ret = usb_set_interface(udev, desc->bInterfaceNumber,
4075 desc->bAlternateSetting);
Sarah Sharp04a723e2010-01-06 10:16:51 -08004076 intf->resetting_device = 0;
Alan Stern4fe03872009-02-26 10:21:02 -05004077 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004078 if (ret < 0) {
4079 dev_err(&udev->dev, "failed to restore interface %d "
4080 "altsetting %d (error=%d)\n",
4081 desc->bInterfaceNumber,
4082 desc->bAlternateSetting,
4083 ret);
4084 goto re_enumerate;
4085 }
4086 }
4087
4088done:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004089 return 0;
4090
4091re_enumerate:
4092 hub_port_logical_disconnect(parent_hub, port1);
4093 return -ENODEV;
4094}
Alan Stern79efa092006-06-01 13:33:42 -04004095
4096/**
Ming Lei742120c2008-06-18 22:00:29 +08004097 * usb_reset_device - warn interface drivers and perform a USB port reset
Alan Stern79efa092006-06-01 13:33:42 -04004098 * @udev: device to reset (not in SUSPENDED or NOTATTACHED state)
Alan Stern79efa092006-06-01 13:33:42 -04004099 *
4100 * Warns all drivers bound to registered interfaces (using their pre_reset
4101 * method), performs the port reset, and then lets the drivers know that
4102 * the reset is over (using their post_reset method).
4103 *
Ming Lei742120c2008-06-18 22:00:29 +08004104 * Return value is the same as for usb_reset_and_verify_device().
Alan Stern79efa092006-06-01 13:33:42 -04004105 *
4106 * The caller must own the device lock. For example, it's safe to use
4107 * this from a driver probe() routine after downloading new firmware.
4108 * For calls that might not occur during probe(), drivers should lock
4109 * the device using usb_lock_device_for_reset().
Alan Stern78d9a482008-06-23 16:00:40 -04004110 *
4111 * If an interface is currently being probed or disconnected, we assume
4112 * its driver knows how to handle resets. For all other interfaces,
4113 * if the driver doesn't have pre_reset and post_reset methods then
4114 * we attempt to unbind it and rebind afterward.
Alan Stern79efa092006-06-01 13:33:42 -04004115 */
Ming Lei742120c2008-06-18 22:00:29 +08004116int usb_reset_device(struct usb_device *udev)
Alan Stern79efa092006-06-01 13:33:42 -04004117{
4118 int ret;
Alan Stern852c4b42007-12-03 15:44:29 -05004119 int i;
Alan Stern79efa092006-06-01 13:33:42 -04004120 struct usb_host_config *config = udev->actconfig;
4121
4122 if (udev->state == USB_STATE_NOTATTACHED ||
4123 udev->state == USB_STATE_SUSPENDED) {
4124 dev_dbg(&udev->dev, "device reset not allowed in state %d\n",
4125 udev->state);
4126 return -EINVAL;
4127 }
4128
Alan Stern645daaa2006-08-30 15:47:02 -04004129 /* Prevent autosuspend during the reset */
Alan Stern94fcda12006-11-20 11:38:46 -05004130 usb_autoresume_device(udev);
Alan Stern645daaa2006-08-30 15:47:02 -04004131
Alan Stern79efa092006-06-01 13:33:42 -04004132 if (config) {
Alan Stern79efa092006-06-01 13:33:42 -04004133 for (i = 0; i < config->desc.bNumInterfaces; ++i) {
Alan Stern852c4b42007-12-03 15:44:29 -05004134 struct usb_interface *cintf = config->interface[i];
4135 struct usb_driver *drv;
Alan Stern78d9a482008-06-23 16:00:40 -04004136 int unbind = 0;
Alan Stern852c4b42007-12-03 15:44:29 -05004137
4138 if (cintf->dev.driver) {
Alan Stern79efa092006-06-01 13:33:42 -04004139 drv = to_usb_driver(cintf->dev.driver);
Alan Stern78d9a482008-06-23 16:00:40 -04004140 if (drv->pre_reset && drv->post_reset)
4141 unbind = (drv->pre_reset)(cintf);
4142 else if (cintf->condition ==
4143 USB_INTERFACE_BOUND)
4144 unbind = 1;
4145 if (unbind)
4146 usb_forced_unbind_intf(cintf);
Alan Stern79efa092006-06-01 13:33:42 -04004147 }
4148 }
4149 }
4150
Ming Lei742120c2008-06-18 22:00:29 +08004151 ret = usb_reset_and_verify_device(udev);
Alan Stern79efa092006-06-01 13:33:42 -04004152
4153 if (config) {
Alan Stern79efa092006-06-01 13:33:42 -04004154 for (i = config->desc.bNumInterfaces - 1; i >= 0; --i) {
Alan Stern852c4b42007-12-03 15:44:29 -05004155 struct usb_interface *cintf = config->interface[i];
4156 struct usb_driver *drv;
Alan Stern78d9a482008-06-23 16:00:40 -04004157 int rebind = cintf->needs_binding;
Alan Stern852c4b42007-12-03 15:44:29 -05004158
Alan Stern78d9a482008-06-23 16:00:40 -04004159 if (!rebind && cintf->dev.driver) {
Alan Stern79efa092006-06-01 13:33:42 -04004160 drv = to_usb_driver(cintf->dev.driver);
4161 if (drv->post_reset)
Alan Stern78d9a482008-06-23 16:00:40 -04004162 rebind = (drv->post_reset)(cintf);
4163 else if (cintf->condition ==
4164 USB_INTERFACE_BOUND)
4165 rebind = 1;
Alan Stern79efa092006-06-01 13:33:42 -04004166 }
Alan Stern6c640942008-10-21 15:40:03 -04004167 if (ret == 0 && rebind)
Alan Stern78d9a482008-06-23 16:00:40 -04004168 usb_rebind_intf(cintf);
Alan Stern79efa092006-06-01 13:33:42 -04004169 }
4170 }
4171
Alan Stern94fcda12006-11-20 11:38:46 -05004172 usb_autosuspend_device(udev);
Alan Stern79efa092006-06-01 13:33:42 -04004173 return ret;
4174}
Ming Lei742120c2008-06-18 22:00:29 +08004175EXPORT_SYMBOL_GPL(usb_reset_device);
Inaky Perez-Gonzalezdc023dc2008-11-13 10:31:35 -08004176
4177
4178/**
4179 * usb_queue_reset_device - Reset a USB device from an atomic context
4180 * @iface: USB interface belonging to the device to reset
4181 *
4182 * This function can be used to reset a USB device from an atomic
4183 * context, where usb_reset_device() won't work (as it blocks).
4184 *
4185 * Doing a reset via this method is functionally equivalent to calling
4186 * usb_reset_device(), except for the fact that it is delayed to a
4187 * workqueue. This means that any drivers bound to other interfaces
4188 * might be unbound, as well as users from usbfs in user space.
4189 *
4190 * Corner cases:
4191 *
4192 * - Scheduling two resets at the same time from two different drivers
4193 * attached to two different interfaces of the same device is
4194 * possible; depending on how the driver attached to each interface
4195 * handles ->pre_reset(), the second reset might happen or not.
4196 *
4197 * - If a driver is unbound and it had a pending reset, the reset will
4198 * be cancelled.
4199 *
4200 * - This function can be called during .probe() or .disconnect()
4201 * times. On return from .disconnect(), any pending resets will be
4202 * cancelled.
4203 *
4204 * There is no no need to lock/unlock the @reset_ws as schedule_work()
4205 * does its own.
4206 *
4207 * NOTE: We don't do any reference count tracking because it is not
4208 * needed. The lifecycle of the work_struct is tied to the
4209 * usb_interface. Before destroying the interface we cancel the
4210 * work_struct, so the fact that work_struct is queued and or
4211 * running means the interface (and thus, the device) exist and
4212 * are referenced.
4213 */
4214void usb_queue_reset_device(struct usb_interface *iface)
4215{
4216 schedule_work(&iface->reset_ws);
4217}
4218EXPORT_SYMBOL_GPL(usb_queue_reset_device);