blob: 28664eb7f5554cfe07f017d9d5e24be65671e85b [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
Elric Fua45aa3b2012-02-18 13:32:27 +0800733 /* The superspeed hub except for root hub has to use Hub Depth
734 * value as an offset into the route string to locate the bits
735 * it uses to determine the downstream port number. So hub driver
736 * should send a set hub depth request to superspeed hub after
737 * the superspeed hub is set configuration in initialization or
738 * reset procedure.
739 *
740 * After a resume, port power should still be on.
Alan Sternf2835212008-04-28 11:07:17 -0400741 * For any other type of activation, turn it on.
742 */
Alan Stern8520f382008-09-22 14:44:26 -0400743 if (type != HUB_RESUME) {
Elric Fua45aa3b2012-02-18 13:32:27 +0800744 if (hdev->parent && hub_is_superspeed(hdev)) {
745 ret = usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
746 HUB_SET_DEPTH, USB_RT_HUB,
747 hdev->level - 1, 0, NULL, 0,
748 USB_CTRL_SET_TIMEOUT);
749 if (ret < 0)
750 dev_err(hub->intfdev,
751 "set hub depth failed\n");
752 }
Alan Stern8520f382008-09-22 14:44:26 -0400753
754 /* Speed up system boot by using a delayed_work for the
755 * hub's initial power-up delays. This is pretty awkward
756 * and the implementation looks like a home-brewed sort of
757 * setjmp/longjmp, but it saves at least 100 ms for each
758 * root hub (assuming usbcore is compiled into the kernel
759 * rather than as a module). It adds up.
760 *
761 * This can't be done for HUB_RESUME or HUB_RESET_RESUME
762 * because for those activation types the ports have to be
763 * operational when we return. In theory this could be done
764 * for HUB_POST_RESET, but it's easier not to.
765 */
766 if (type == HUB_INIT) {
767 delay = hub_power_on(hub, false);
768 PREPARE_DELAYED_WORK(&hub->init_work, hub_init_func2);
769 schedule_delayed_work(&hub->init_work,
770 msecs_to_jiffies(delay));
Alan Stern61fbeba2008-10-27 12:07:44 -0400771
772 /* Suppress autosuspend until init is done */
Alan Stern8e4ceb32009-12-07 13:01:37 -0500773 usb_autopm_get_interface_no_resume(
774 to_usb_interface(hub->intfdev));
Alan Stern8520f382008-09-22 14:44:26 -0400775 return; /* Continues at init2: below */
Sarah Sharp653a39d2010-12-23 11:12:42 -0800776 } else if (type == HUB_RESET_RESUME) {
777 /* The internal host controller state for the hub device
778 * may be gone after a host power loss on system resume.
779 * Update the device's info so the HW knows it's a hub.
780 */
781 hcd = bus_to_hcd(hdev->bus);
782 if (hcd->driver->update_hub_device) {
783 ret = hcd->driver->update_hub_device(hcd, hdev,
784 &hub->tt, GFP_NOIO);
785 if (ret < 0) {
786 dev_err(hub->intfdev, "Host not "
787 "accepting hub info "
788 "update.\n");
789 dev_err(hub->intfdev, "LS/FS devices "
790 "and hubs may not work "
791 "under this hub\n.");
792 }
793 }
794 hub_power_on(hub, true);
Alan Stern8520f382008-09-22 14:44:26 -0400795 } else {
796 hub_power_on(hub, true);
797 }
798 }
799 init2:
Alan Sternf2835212008-04-28 11:07:17 -0400800
Alan Stern6ee0b272008-04-28 11:06:42 -0400801 /* Check each port and set hub->change_bits to let khubd know
802 * which ports need attention.
Alan Stern5e6effa2008-03-03 15:15:51 -0500803 */
804 for (port1 = 1; port1 <= hdev->maxchild; ++port1) {
805 struct usb_device *udev = hdev->children[port1-1];
Alan Stern5e6effa2008-03-03 15:15:51 -0500806 u16 portstatus, portchange;
807
Alan Stern6ee0b272008-04-28 11:06:42 -0400808 portstatus = portchange = 0;
809 status = hub_port_status(hub, port1, &portstatus, &portchange);
810 if (udev || (portstatus & USB_PORT_STAT_CONNECTION))
811 dev_dbg(hub->intfdev,
812 "port %d: status %04x change %04x\n",
813 port1, portstatus, portchange);
Alan Stern5e6effa2008-03-03 15:15:51 -0500814
Alan Stern6ee0b272008-04-28 11:06:42 -0400815 /* After anything other than HUB_RESUME (i.e., initialization
816 * or any sort of reset), every port should be disabled.
817 * Unconnected ports should likewise be disabled (paranoia),
818 * and so should ports for which we have no usb_device.
Alan Stern5e6effa2008-03-03 15:15:51 -0500819 */
Alan Stern6ee0b272008-04-28 11:06:42 -0400820 if ((portstatus & USB_PORT_STAT_ENABLE) && (
821 type != HUB_RESUME ||
822 !(portstatus & USB_PORT_STAT_CONNECTION) ||
823 !udev ||
824 udev->state == USB_STATE_NOTATTACHED)) {
Andiry Xu9f0a6cd2010-05-07 18:09:27 +0800825 /*
826 * USB3 protocol ports will automatically transition
827 * to Enabled state when detect an USB3.0 device attach.
828 * Do not disable USB3 protocol ports.
Andiry Xu9f0a6cd2010-05-07 18:09:27 +0800829 */
Sarah Sharp131dec32010-12-06 21:00:19 -0800830 if (!hub_is_superspeed(hdev)) {
Andiry Xu9f0a6cd2010-05-07 18:09:27 +0800831 clear_port_feature(hdev, port1,
832 USB_PORT_FEAT_ENABLE);
833 portstatus &= ~USB_PORT_STAT_ENABLE;
Sarah Sharp85f0ff42010-10-14 07:22:54 -0700834 } else {
835 /* Pretend that power was lost for USB3 devs */
836 portstatus &= ~USB_PORT_STAT_ENABLE;
Andiry Xu9f0a6cd2010-05-07 18:09:27 +0800837 }
Alan Stern6ee0b272008-04-28 11:06:42 -0400838 }
839
Alan Stern948fea32008-04-28 11:07:07 -0400840 /* Clear status-change flags; we'll debounce later */
841 if (portchange & USB_PORT_STAT_C_CONNECTION) {
842 need_debounce_delay = true;
843 clear_port_feature(hub->hdev, port1,
844 USB_PORT_FEAT_C_CONNECTION);
845 }
846 if (portchange & USB_PORT_STAT_C_ENABLE) {
847 need_debounce_delay = true;
848 clear_port_feature(hub->hdev, port1,
849 USB_PORT_FEAT_C_ENABLE);
850 }
Don Zickus79c3dd82011-11-03 09:07:18 -0400851 if ((portchange & USB_PORT_STAT_C_BH_RESET) &&
852 hub_is_superspeed(hub->hdev)) {
853 need_debounce_delay = true;
854 clear_port_feature(hub->hdev, port1,
855 USB_PORT_FEAT_C_BH_PORT_RESET);
856 }
Alan Stern253e0572009-10-27 15:20:13 -0400857 /* We can forget about a "removed" device when there's a
858 * physical disconnect or the connect status changes.
859 */
860 if (!(portstatus & USB_PORT_STAT_CONNECTION) ||
861 (portchange & USB_PORT_STAT_C_CONNECTION))
862 clear_bit(port1, hub->removed_bits);
863
Alan Stern6ee0b272008-04-28 11:06:42 -0400864 if (!udev || udev->state == USB_STATE_NOTATTACHED) {
865 /* Tell khubd to disconnect the device or
866 * check for a new connection
867 */
868 if (udev || (portstatus & USB_PORT_STAT_CONNECTION))
869 set_bit(port1, hub->change_bits);
870
871 } else if (portstatus & USB_PORT_STAT_ENABLE) {
Sarah Sharp72937e12012-01-24 11:46:50 -0800872 bool port_resumed = (portstatus &
873 USB_PORT_STAT_LINK_STATE) ==
874 USB_SS_PORT_LS_U0;
Alan Stern6ee0b272008-04-28 11:06:42 -0400875 /* The power session apparently survived the resume.
876 * If there was an overcurrent or suspend change
877 * (i.e., remote wakeup request), have khubd
Sarah Sharp72937e12012-01-24 11:46:50 -0800878 * take care of it. Look at the port link state
879 * for USB 3.0 hubs, since they don't have a suspend
880 * change bit, and they don't set the port link change
881 * bit on device-initiated resume.
Alan Stern6ee0b272008-04-28 11:06:42 -0400882 */
Sarah Sharp72937e12012-01-24 11:46:50 -0800883 if (portchange || (hub_is_superspeed(hub->hdev) &&
884 port_resumed))
Alan Stern6ee0b272008-04-28 11:06:42 -0400885 set_bit(port1, hub->change_bits);
886
887 } else if (udev->persist_enabled) {
Alan Stern6ee0b272008-04-28 11:06:42 -0400888#ifdef CONFIG_PM
Alan Stern5e6effa2008-03-03 15:15:51 -0500889 udev->reset_resume = 1;
Alan Stern6ee0b272008-04-28 11:06:42 -0400890#endif
Alan Stern8808f002008-04-28 11:06:55 -0400891 set_bit(port1, hub->change_bits);
892
Alan Stern6ee0b272008-04-28 11:06:42 -0400893 } else {
894 /* The power session is gone; tell khubd */
895 usb_set_device_state(udev, USB_STATE_NOTATTACHED);
896 set_bit(port1, hub->change_bits);
Alan Stern5e6effa2008-03-03 15:15:51 -0500897 }
Alan Stern5e6effa2008-03-03 15:15:51 -0500898 }
899
Alan Stern948fea32008-04-28 11:07:07 -0400900 /* If no port-status-change flags were set, we don't need any
901 * debouncing. If flags were set we can try to debounce the
902 * ports all at once right now, instead of letting khubd do them
903 * one at a time later on.
904 *
905 * If any port-status changes do occur during this delay, khubd
906 * will see them later and handle them normally.
907 */
Alan Stern8520f382008-09-22 14:44:26 -0400908 if (need_debounce_delay) {
909 delay = HUB_DEBOUNCE_STABLE;
Alan Sternf2835212008-04-28 11:07:17 -0400910
Alan Stern8520f382008-09-22 14:44:26 -0400911 /* Don't do a long sleep inside a workqueue routine */
912 if (type == HUB_INIT2) {
913 PREPARE_DELAYED_WORK(&hub->init_work, hub_init_func3);
914 schedule_delayed_work(&hub->init_work,
915 msecs_to_jiffies(delay));
916 return; /* Continues at init3: below */
917 } else {
918 msleep(delay);
919 }
920 }
921 init3:
Alan Sternf2835212008-04-28 11:07:17 -0400922 hub->quiescing = 0;
923
924 status = usb_submit_urb(hub->urb, GFP_NOIO);
925 if (status < 0)
926 dev_err(hub->intfdev, "activate --> %d\n", status);
927 if (hub->has_indicators && blinkenlights)
928 schedule_delayed_work(&hub->leds, LED_CYCLE_PERIOD);
929
930 /* Scan all ports that need attention */
931 kick_khubd(hub);
Alan Stern8e4ceb32009-12-07 13:01:37 -0500932
933 /* Allow autosuspend if it was suppressed */
934 if (type <= HUB_INIT3)
935 usb_autopm_put_interface_async(to_usb_interface(hub->intfdev));
Alan Stern5e6effa2008-03-03 15:15:51 -0500936}
937
Alan Stern8520f382008-09-22 14:44:26 -0400938/* Implement the continuations for the delays above */
939static void hub_init_func2(struct work_struct *ws)
940{
941 struct usb_hub *hub = container_of(ws, struct usb_hub, init_work.work);
942
943 hub_activate(hub, HUB_INIT2);
944}
945
946static void hub_init_func3(struct work_struct *ws)
947{
948 struct usb_hub *hub = container_of(ws, struct usb_hub, init_work.work);
949
950 hub_activate(hub, HUB_INIT3);
951}
952
Alan Stern43303542008-04-28 11:07:31 -0400953enum hub_quiescing_type {
954 HUB_DISCONNECT, HUB_PRE_RESET, HUB_SUSPEND
955};
956
957static void hub_quiesce(struct usb_hub *hub, enum hub_quiescing_type type)
958{
959 struct usb_device *hdev = hub->hdev;
960 int i;
961
Alan Stern8520f382008-09-22 14:44:26 -0400962 cancel_delayed_work_sync(&hub->init_work);
963
Alan Stern43303542008-04-28 11:07:31 -0400964 /* khubd and related activity won't re-trigger */
965 hub->quiescing = 1;
966
967 if (type != HUB_SUSPEND) {
968 /* Disconnect all the children */
969 for (i = 0; i < hdev->maxchild; ++i) {
970 if (hdev->children[i])
971 usb_disconnect(&hdev->children[i]);
972 }
973 }
974
975 /* Stop khubd and related activity */
976 usb_kill_urb(hub->urb);
977 if (hub->has_indicators)
978 cancel_delayed_work_sync(&hub->leds);
979 if (hub->tt.hub)
Alan Sterncb88a1b2009-06-29 10:43:32 -0400980 cancel_work_sync(&hub->tt.clear_work);
Alan Stern43303542008-04-28 11:07:31 -0400981}
982
Alan Stern3eb14912008-03-03 15:15:43 -0500983/* caller has locked the hub device */
984static int hub_pre_reset(struct usb_interface *intf)
985{
986 struct usb_hub *hub = usb_get_intfdata(intf);
987
Alan Stern43303542008-04-28 11:07:31 -0400988 hub_quiesce(hub, HUB_PRE_RESET);
Alan Sternf07600c2007-05-30 15:38:16 -0400989 return 0;
Alan Stern7d069b72005-11-18 12:06:34 -0500990}
991
992/* caller has locked the hub device */
Alan Sternf07600c2007-05-30 15:38:16 -0400993static int hub_post_reset(struct usb_interface *intf)
Alan Stern7d069b72005-11-18 12:06:34 -0500994{
Alan Stern7de18d82006-06-01 13:37:24 -0400995 struct usb_hub *hub = usb_get_intfdata(intf);
996
Alan Sternf2835212008-04-28 11:07:17 -0400997 hub_activate(hub, HUB_POST_RESET);
Alan Sternf07600c2007-05-30 15:38:16 -0400998 return 0;
Alan Stern7d069b72005-11-18 12:06:34 -0500999}
1000
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001static int hub_configure(struct usb_hub *hub,
1002 struct usb_endpoint_descriptor *endpoint)
1003{
Sarah Sharpb356b7c2009-09-04 10:53:24 -07001004 struct usb_hcd *hcd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 struct usb_device *hdev = hub->hdev;
1006 struct device *hub_dev = hub->intfdev;
1007 u16 hubstatus, hubchange;
Greg Kroah-Hartman74ad9bd2005-06-20 21:15:16 -07001008 u16 wHubCharacteristics;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 unsigned int pipe;
1010 int maxp, ret;
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001011 char *message = "out of memory";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012
Alan Sternd697cdd2009-10-27 15:18:46 -04001013 hub->buffer = kmalloc(sizeof(*hub->buffer), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 if (!hub->buffer) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 ret = -ENOMEM;
1016 goto fail;
1017 }
1018
1019 hub->status = kmalloc(sizeof(*hub->status), GFP_KERNEL);
1020 if (!hub->status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 ret = -ENOMEM;
1022 goto fail;
1023 }
Alan Sterndb90e7a2007-02-05 09:56:15 -05001024 mutex_init(&hub->status_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025
1026 hub->descriptor = kmalloc(sizeof(*hub->descriptor), GFP_KERNEL);
1027 if (!hub->descriptor) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 ret = -ENOMEM;
1029 goto fail;
1030 }
1031
1032 /* Request the entire hub descriptor.
1033 * hub->descriptor can handle USB_MAXCHILDREN ports,
1034 * but the hub can/will return fewer bytes here.
1035 */
John Youndbe79bb2001-09-17 00:00:00 -07001036 ret = get_hub_descriptor(hdev, hub->descriptor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 if (ret < 0) {
1038 message = "can't read hub descriptor";
1039 goto fail;
1040 } else if (hub->descriptor->bNbrPorts > USB_MAXCHILDREN) {
1041 message = "hub has too many ports!";
1042 ret = -ENODEV;
1043 goto fail;
1044 }
1045
1046 hdev->maxchild = hub->descriptor->bNbrPorts;
1047 dev_info (hub_dev, "%d port%s detected\n", hdev->maxchild,
1048 (hdev->maxchild == 1) ? "" : "s");
1049
Huajun Li88162302012-03-12 21:00:19 +08001050 hdev->children = kzalloc(hdev->maxchild *
1051 sizeof(struct usb_device *), GFP_KERNEL);
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001052 hub->port_owners = kzalloc(hdev->maxchild * sizeof(void *), GFP_KERNEL);
Huajun Li88162302012-03-12 21:00:19 +08001053 if (!hdev->children || !hub->port_owners) {
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001054 ret = -ENOMEM;
1055 goto fail;
1056 }
1057
Greg Kroah-Hartman74ad9bd2005-06-20 21:15:16 -07001058 wHubCharacteristics = le16_to_cpu(hub->descriptor->wHubCharacteristics);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059
John Youndbe79bb2001-09-17 00:00:00 -07001060 /* FIXME for USB 3.0, skip for now */
1061 if ((wHubCharacteristics & HUB_CHAR_COMPOUND) &&
1062 !(hub_is_superspeed(hdev))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 int i;
1064 char portstr [USB_MAXCHILDREN + 1];
1065
1066 for (i = 0; i < hdev->maxchild; i++)
John Youndbe79bb2001-09-17 00:00:00 -07001067 portstr[i] = hub->descriptor->u.hs.DeviceRemovable
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 [((i + 1) / 8)] & (1 << ((i + 1) % 8))
1069 ? 'F' : 'R';
1070 portstr[hdev->maxchild] = 0;
1071 dev_dbg(hub_dev, "compound device; port removable status: %s\n", portstr);
1072 } else
1073 dev_dbg(hub_dev, "standalone hub\n");
1074
Greg Kroah-Hartman74ad9bd2005-06-20 21:15:16 -07001075 switch (wHubCharacteristics & HUB_CHAR_LPSM) {
Aman Deep7bf01182011-12-08 12:05:22 +05301076 case HUB_CHAR_COMMON_LPSM:
1077 dev_dbg(hub_dev, "ganged power switching\n");
1078 break;
1079 case HUB_CHAR_INDV_PORT_LPSM:
1080 dev_dbg(hub_dev, "individual port power switching\n");
1081 break;
1082 case HUB_CHAR_NO_LPSM:
1083 case HUB_CHAR_LPSM:
1084 dev_dbg(hub_dev, "no power switching (usb 1.0)\n");
1085 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 }
1087
Greg Kroah-Hartman74ad9bd2005-06-20 21:15:16 -07001088 switch (wHubCharacteristics & HUB_CHAR_OCPM) {
Aman Deep7bf01182011-12-08 12:05:22 +05301089 case HUB_CHAR_COMMON_OCPM:
1090 dev_dbg(hub_dev, "global over-current protection\n");
1091 break;
1092 case HUB_CHAR_INDV_PORT_OCPM:
1093 dev_dbg(hub_dev, "individual port over-current protection\n");
1094 break;
1095 case HUB_CHAR_NO_OCPM:
1096 case HUB_CHAR_OCPM:
1097 dev_dbg(hub_dev, "no over-current protection\n");
1098 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 }
1100
1101 spin_lock_init (&hub->tt.lock);
1102 INIT_LIST_HEAD (&hub->tt.clear_list);
Alan Sterncb88a1b2009-06-29 10:43:32 -04001103 INIT_WORK(&hub->tt.clear_work, hub_tt_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 switch (hdev->descriptor.bDeviceProtocol) {
Aman Deep7bf01182011-12-08 12:05:22 +05301105 case USB_HUB_PR_FS:
1106 break;
1107 case USB_HUB_PR_HS_SINGLE_TT:
1108 dev_dbg(hub_dev, "Single TT\n");
1109 hub->tt.hub = hdev;
1110 break;
1111 case USB_HUB_PR_HS_MULTI_TT:
1112 ret = usb_set_interface(hdev, 0, 1);
1113 if (ret == 0) {
1114 dev_dbg(hub_dev, "TT per port\n");
1115 hub->tt.multi = 1;
1116 } else
1117 dev_err(hub_dev, "Using single TT (err %d)\n",
1118 ret);
1119 hub->tt.hub = hdev;
1120 break;
1121 case USB_HUB_PR_SS:
1122 /* USB 3.0 hubs don't have a TT */
1123 break;
1124 default:
1125 dev_dbg(hub_dev, "Unrecognized hub protocol %d\n",
1126 hdev->descriptor.bDeviceProtocol);
1127 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 }
1129
david-b@pacbell.nete09711a2005-08-13 18:41:04 -07001130 /* Note 8 FS bit times == (8 bits / 12000000 bps) ~= 666ns */
Greg Kroah-Hartman74ad9bd2005-06-20 21:15:16 -07001131 switch (wHubCharacteristics & HUB_CHAR_TTTT) {
david-b@pacbell.nete09711a2005-08-13 18:41:04 -07001132 case HUB_TTTT_8_BITS:
1133 if (hdev->descriptor.bDeviceProtocol != 0) {
1134 hub->tt.think_time = 666;
1135 dev_dbg(hub_dev, "TT requires at most %d "
1136 "FS bit times (%d ns)\n",
1137 8, hub->tt.think_time);
1138 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 break;
david-b@pacbell.nete09711a2005-08-13 18:41:04 -07001140 case HUB_TTTT_16_BITS:
1141 hub->tt.think_time = 666 * 2;
1142 dev_dbg(hub_dev, "TT requires at most %d "
1143 "FS bit times (%d ns)\n",
1144 16, 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_24_BITS:
1147 hub->tt.think_time = 666 * 3;
1148 dev_dbg(hub_dev, "TT requires at most %d "
1149 "FS bit times (%d ns)\n",
1150 24, hub->tt.think_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 break;
david-b@pacbell.nete09711a2005-08-13 18:41:04 -07001152 case HUB_TTTT_32_BITS:
1153 hub->tt.think_time = 666 * 4;
1154 dev_dbg(hub_dev, "TT requires at most %d "
1155 "FS bit times (%d ns)\n",
1156 32, hub->tt.think_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 break;
1158 }
1159
1160 /* probe() zeroes hub->indicator[] */
Greg Kroah-Hartman74ad9bd2005-06-20 21:15:16 -07001161 if (wHubCharacteristics & HUB_CHAR_PORTIND) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 hub->has_indicators = 1;
1163 dev_dbg(hub_dev, "Port indicators are supported\n");
1164 }
1165
1166 dev_dbg(hub_dev, "power on to power good time: %dms\n",
1167 hub->descriptor->bPwrOn2PwrGood * 2);
1168
1169 /* power budgeting mostly matters with bus-powered hubs,
1170 * and battery-powered root hubs (may provide just 8 mA).
1171 */
1172 ret = usb_get_status(hdev, USB_RECIP_DEVICE, 0, &hubstatus);
Alan Stern55c52712005-11-23 12:03:12 -05001173 if (ret < 2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 message = "can't get hub status";
1175 goto fail;
1176 }
Alan Stern7d35b922005-04-25 11:18:32 -04001177 le16_to_cpus(&hubstatus);
1178 if (hdev == hdev->bus->root_hub) {
Alan Stern55c52712005-11-23 12:03:12 -05001179 if (hdev->bus_mA == 0 || hdev->bus_mA >= 500)
1180 hub->mA_per_port = 500;
1181 else {
1182 hub->mA_per_port = hdev->bus_mA;
1183 hub->limited_power = 1;
1184 }
Alan Stern7d35b922005-04-25 11:18:32 -04001185 } else if ((hubstatus & (1 << USB_DEVICE_SELF_POWERED)) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 dev_dbg(hub_dev, "hub controller current requirement: %dmA\n",
1187 hub->descriptor->bHubContrCurrent);
Alan Stern55c52712005-11-23 12:03:12 -05001188 hub->limited_power = 1;
1189 if (hdev->maxchild > 0) {
1190 int remaining = hdev->bus_mA -
1191 hub->descriptor->bHubContrCurrent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192
Alan Stern55c52712005-11-23 12:03:12 -05001193 if (remaining < hdev->maxchild * 100)
1194 dev_warn(hub_dev,
1195 "insufficient power available "
1196 "to use all downstream ports\n");
1197 hub->mA_per_port = 100; /* 7.2.1.1 */
1198 }
1199 } else { /* Self-powered external hub */
1200 /* FIXME: What about battery-powered external hubs that
1201 * provide less current per port? */
1202 hub->mA_per_port = 500;
1203 }
1204 if (hub->mA_per_port < 500)
1205 dev_dbg(hub_dev, "%umA bus power budget for each child\n",
1206 hub->mA_per_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207
Sarah Sharpb356b7c2009-09-04 10:53:24 -07001208 /* Update the HCD's internal representation of this hub before khubd
1209 * starts getting port status changes for devices under the hub.
1210 */
1211 hcd = bus_to_hcd(hdev->bus);
1212 if (hcd->driver->update_hub_device) {
1213 ret = hcd->driver->update_hub_device(hcd, hdev,
1214 &hub->tt, GFP_KERNEL);
1215 if (ret < 0) {
1216 message = "can't update HCD hub info";
1217 goto fail;
1218 }
1219 }
1220
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 ret = hub_hub_status(hub, &hubstatus, &hubchange);
1222 if (ret < 0) {
1223 message = "can't get hub status";
1224 goto fail;
1225 }
1226
1227 /* local power status reports aren't always correct */
1228 if (hdev->actconfig->desc.bmAttributes & USB_CONFIG_ATT_SELFPOWER)
1229 dev_dbg(hub_dev, "local power source is %s\n",
1230 (hubstatus & HUB_STATUS_LOCAL_POWER)
1231 ? "lost (inactive)" : "good");
1232
Greg Kroah-Hartman74ad9bd2005-06-20 21:15:16 -07001233 if ((wHubCharacteristics & HUB_CHAR_OCPM) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 dev_dbg(hub_dev, "%sover-current condition exists\n",
1235 (hubstatus & HUB_STATUS_OVERCURRENT) ? "" : "no ");
1236
inaky@linux.intel.com88fafff2006-10-11 20:05:59 -07001237 /* set up the interrupt endpoint
1238 * We use the EP's maxpacket size instead of (PORTS+1+7)/8
1239 * bytes as USB2.0[11.12.3] says because some hubs are known
1240 * to send more data (and thus cause overflow). For root hubs,
1241 * maxpktsize is defined in hcd.c's fake endpoint descriptors
1242 * to be big enough for at least USB_MAXCHILDREN ports. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 pipe = usb_rcvintpipe(hdev, endpoint->bEndpointAddress);
1244 maxp = usb_maxpacket(hdev, pipe, usb_pipeout(pipe));
1245
1246 if (maxp > sizeof(*hub->buffer))
1247 maxp = sizeof(*hub->buffer);
1248
1249 hub->urb = usb_alloc_urb(0, GFP_KERNEL);
1250 if (!hub->urb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 ret = -ENOMEM;
1252 goto fail;
1253 }
1254
1255 usb_fill_int_urb(hub->urb, hdev, pipe, *hub->buffer, maxp, hub_irq,
1256 hub, endpoint->bInterval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257
1258 /* maybe cycle the hub leds */
1259 if (hub->has_indicators && blinkenlights)
1260 hub->indicator [0] = INDICATOR_CYCLE;
1261
Alan Sternf2835212008-04-28 11:07:17 -04001262 hub_activate(hub, HUB_INIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 return 0;
1264
1265fail:
1266 dev_err (hub_dev, "config failed, %s (err %d)\n",
1267 message, ret);
1268 /* hub_disconnect() frees urb and descriptor */
1269 return ret;
1270}
1271
Alan Sterne8054852007-05-04 11:55:11 -04001272static void hub_release(struct kref *kref)
1273{
1274 struct usb_hub *hub = container_of(kref, struct usb_hub, kref);
1275
1276 usb_put_intf(to_usb_interface(hub->intfdev));
1277 kfree(hub);
1278}
1279
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280static unsigned highspeed_hubs;
1281
1282static void hub_disconnect(struct usb_interface *intf)
1283{
Huajun Li88162302012-03-12 21:00:19 +08001284 struct usb_hub *hub = usb_get_intfdata(intf);
1285 struct usb_device *hdev = interface_to_usbdev(intf);
Alan Sterne8054852007-05-04 11:55:11 -04001286
1287 /* Take the hub off the event list and don't let it be added again */
1288 spin_lock_irq(&hub_event_lock);
Alan Stern8e4ceb32009-12-07 13:01:37 -05001289 if (!list_empty(&hub->event_list)) {
1290 list_del_init(&hub->event_list);
1291 usb_autopm_put_interface_no_suspend(intf);
1292 }
Alan Sterne8054852007-05-04 11:55:11 -04001293 hub->disconnected = 1;
1294 spin_unlock_irq(&hub_event_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295
Alan Stern7de18d82006-06-01 13:37:24 -04001296 /* Disconnect all children and quiesce the hub */
1297 hub->error = 0;
Alan Stern43303542008-04-28 11:07:31 -04001298 hub_quiesce(hub, HUB_DISCONNECT);
Alan Stern7de18d82006-06-01 13:37:24 -04001299
Alan Stern8b28c752005-08-10 17:04:13 -04001300 usb_set_intfdata (intf, NULL);
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001301 hub->hdev->maxchild = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302
Alan Sterne8054852007-05-04 11:55:11 -04001303 if (hub->hdev->speed == USB_SPEED_HIGH)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 highspeed_hubs--;
1305
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306 usb_free_urb(hub->urb);
Huajun Li88162302012-03-12 21:00:19 +08001307 kfree(hdev->children);
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001308 kfree(hub->port_owners);
Jesper Juhl1bc3c9e2005-04-18 17:39:34 -07001309 kfree(hub->descriptor);
Jesper Juhl1bc3c9e2005-04-18 17:39:34 -07001310 kfree(hub->status);
Alan Sternd697cdd2009-10-27 15:18:46 -04001311 kfree(hub->buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312
Alan Sterne8054852007-05-04 11:55:11 -04001313 kref_put(&hub->kref, hub_release);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314}
1315
1316static int hub_probe(struct usb_interface *intf, const struct usb_device_id *id)
1317{
1318 struct usb_host_interface *desc;
1319 struct usb_endpoint_descriptor *endpoint;
1320 struct usb_device *hdev;
1321 struct usb_hub *hub;
1322
1323 desc = intf->cur_altsetting;
1324 hdev = interface_to_usbdev(intf);
1325
Sarah Sharp2839f5b2012-01-06 16:27:25 -08001326 /* Hubs have proper suspend/resume support. */
1327 usb_enable_autosuspend(hdev);
Alan Stern088f7fe2010-01-08 12:56:54 -05001328
Felipe Balbi38f3ad52008-06-12 10:49:47 +03001329 if (hdev->level == MAX_TOPO_LEVEL) {
Wu Fengguangb9cef6c2008-12-15 15:32:01 +08001330 dev_err(&intf->dev,
1331 "Unsupported bus topology: hub nested too deep\n");
Felipe Balbi38f3ad52008-06-12 10:49:47 +03001332 return -E2BIG;
1333 }
1334
David Brownell89ccbdc2006-04-02 10:18:09 -08001335#ifdef CONFIG_USB_OTG_BLACKLIST_HUB
1336 if (hdev->parent) {
1337 dev_warn(&intf->dev, "ignoring external hub\n");
1338 return -ENODEV;
1339 }
1340#endif
1341
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 /* Some hubs have a subclass of 1, which AFAICT according to the */
1343 /* specs is not defined, but it works */
1344 if ((desc->desc.bInterfaceSubClass != 0) &&
1345 (desc->desc.bInterfaceSubClass != 1)) {
1346descriptor_error:
1347 dev_err (&intf->dev, "bad descriptor, ignoring hub\n");
1348 return -EIO;
1349 }
1350
1351 /* Multiple endpoints? What kind of mutant ninja-hub is this? */
1352 if (desc->desc.bNumEndpoints != 1)
1353 goto descriptor_error;
1354
1355 endpoint = &desc->endpoint[0].desc;
1356
Luiz Fernando N. Capitulinofbf81c22006-09-27 11:58:53 -07001357 /* If it's not an interrupt in endpoint, we'd better punt! */
1358 if (!usb_endpoint_is_int_in(endpoint))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 goto descriptor_error;
1360
1361 /* We found a hub */
1362 dev_info (&intf->dev, "USB hub found\n");
1363
Alan Stern0a1ef3b2005-10-24 15:38:24 -04001364 hub = kzalloc(sizeof(*hub), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 if (!hub) {
1366 dev_dbg (&intf->dev, "couldn't kmalloc hub struct\n");
1367 return -ENOMEM;
1368 }
1369
Alan Sterne8054852007-05-04 11:55:11 -04001370 kref_init(&hub->kref);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 INIT_LIST_HEAD(&hub->event_list);
1372 hub->intfdev = &intf->dev;
1373 hub->hdev = hdev;
David Howellsc4028952006-11-22 14:57:56 +00001374 INIT_DELAYED_WORK(&hub->leds, led_work);
Alan Stern8520f382008-09-22 14:44:26 -04001375 INIT_DELAYED_WORK(&hub->init_work, NULL);
Alan Sterne8054852007-05-04 11:55:11 -04001376 usb_get_intf(intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377
1378 usb_set_intfdata (intf, hub);
Alan Stern40f122f2006-11-09 14:44:33 -05001379 intf->needs_remote_wakeup = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380
1381 if (hdev->speed == USB_SPEED_HIGH)
1382 highspeed_hubs++;
1383
1384 if (hub_configure(hub, endpoint) >= 0)
1385 return 0;
1386
1387 hub_disconnect (intf);
1388 return -ENODEV;
1389}
1390
1391static int
1392hub_ioctl(struct usb_interface *intf, unsigned int code, void *user_data)
1393{
1394 struct usb_device *hdev = interface_to_usbdev (intf);
1395
1396 /* assert ifno == 0 (part of hub spec) */
1397 switch (code) {
1398 case USBDEVFS_HUB_PORTINFO: {
1399 struct usbdevfs_hub_portinfo *info = user_data;
1400 int i;
1401
1402 spin_lock_irq(&device_state_lock);
1403 if (hdev->devnum <= 0)
1404 info->nports = 0;
1405 else {
1406 info->nports = hdev->maxchild;
1407 for (i = 0; i < info->nports; i++) {
1408 if (hdev->children[i] == NULL)
1409 info->port[i] = 0;
1410 else
1411 info->port[i] =
1412 hdev->children[i]->devnum;
1413 }
1414 }
1415 spin_unlock_irq(&device_state_lock);
1416
1417 return info->nports + 1;
1418 }
1419
1420 default:
1421 return -ENOSYS;
1422 }
1423}
1424
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001425/*
1426 * Allow user programs to claim ports on a hub. When a device is attached
1427 * to one of these "claimed" ports, the program will "own" the device.
1428 */
1429static int find_port_owner(struct usb_device *hdev, unsigned port1,
1430 void ***ppowner)
1431{
1432 if (hdev->state == USB_STATE_NOTATTACHED)
1433 return -ENODEV;
1434 if (port1 == 0 || port1 > hdev->maxchild)
1435 return -EINVAL;
1436
1437 /* This assumes that devices not managed by the hub driver
1438 * will always have maxchild equal to 0.
1439 */
1440 *ppowner = &(hdev_to_hub(hdev)->port_owners[port1 - 1]);
1441 return 0;
1442}
1443
1444/* In the following three functions, the caller must hold hdev's lock */
1445int usb_hub_claim_port(struct usb_device *hdev, unsigned port1, void *owner)
1446{
1447 int rc;
1448 void **powner;
1449
1450 rc = find_port_owner(hdev, port1, &powner);
1451 if (rc)
1452 return rc;
1453 if (*powner)
1454 return -EBUSY;
1455 *powner = owner;
1456 return rc;
1457}
1458
1459int usb_hub_release_port(struct usb_device *hdev, unsigned port1, void *owner)
1460{
1461 int rc;
1462 void **powner;
1463
1464 rc = find_port_owner(hdev, port1, &powner);
1465 if (rc)
1466 return rc;
1467 if (*powner != owner)
1468 return -ENOENT;
1469 *powner = NULL;
1470 return rc;
1471}
1472
1473void usb_hub_release_all_ports(struct usb_device *hdev, void *owner)
1474{
1475 int n;
1476 void **powner;
1477
1478 n = find_port_owner(hdev, 1, &powner);
1479 if (n == 0) {
1480 for (; n < hdev->maxchild; (++n, ++powner)) {
1481 if (*powner == owner)
1482 *powner = NULL;
1483 }
1484 }
1485}
1486
1487/* The caller must hold udev's lock */
1488bool usb_device_is_owned(struct usb_device *udev)
1489{
1490 struct usb_hub *hub;
1491
1492 if (udev->state == USB_STATE_NOTATTACHED || !udev->parent)
1493 return false;
1494 hub = hdev_to_hub(udev->parent);
1495 return !!hub->port_owners[udev->portnum - 1];
1496}
1497
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499static void recursively_mark_NOTATTACHED(struct usb_device *udev)
1500{
1501 int i;
1502
1503 for (i = 0; i < udev->maxchild; ++i) {
1504 if (udev->children[i])
1505 recursively_mark_NOTATTACHED(udev->children[i]);
1506 }
Alan Stern9bbdf1e2010-01-08 12:57:28 -05001507 if (udev->state == USB_STATE_SUSPENDED)
Sarah Sharp15123002007-12-21 16:54:15 -08001508 udev->active_duration -= jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509 udev->state = USB_STATE_NOTATTACHED;
1510}
1511
1512/**
1513 * usb_set_device_state - change a device's current state (usbcore, hcds)
1514 * @udev: pointer to device whose state should be changed
1515 * @new_state: new state value to be stored
1516 *
1517 * udev->state is _not_ fully protected by the device lock. Although
1518 * most transitions are made only while holding the lock, the state can
1519 * can change to USB_STATE_NOTATTACHED at almost any time. This
1520 * is so that devices can be marked as disconnected as soon as possible,
1521 * without having to wait for any semaphores to be released. As a result,
1522 * all changes to any device's state must be protected by the
1523 * device_state_lock spinlock.
1524 *
1525 * Once a device has been added to the device tree, all changes to its state
1526 * should be made using this routine. The state should _not_ be set directly.
1527 *
1528 * If udev->state is already USB_STATE_NOTATTACHED then no change is made.
1529 * Otherwise udev->state is set to new_state, and if new_state is
1530 * USB_STATE_NOTATTACHED then all of udev's descendants' states are also set
1531 * to USB_STATE_NOTATTACHED.
1532 */
1533void usb_set_device_state(struct usb_device *udev,
1534 enum usb_device_state new_state)
1535{
1536 unsigned long flags;
Rafael J. Wysocki4681b172011-02-08 23:25:48 +01001537 int wakeup = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538
1539 spin_lock_irqsave(&device_state_lock, flags);
1540 if (udev->state == USB_STATE_NOTATTACHED)
1541 ; /* do nothing */
David Brownellb94dc6b2005-09-12 19:39:39 -07001542 else if (new_state != USB_STATE_NOTATTACHED) {
David Brownellfb669cc2006-01-24 08:40:27 -08001543
1544 /* root hub wakeup capabilities are managed out-of-band
1545 * and may involve silicon errata ... ignore them here.
1546 */
1547 if (udev->parent) {
Alan Stern645daaa2006-08-30 15:47:02 -04001548 if (udev->state == USB_STATE_SUSPENDED
1549 || new_state == USB_STATE_SUSPENDED)
1550 ; /* No change to wakeup settings */
1551 else if (new_state == USB_STATE_CONFIGURED)
Rafael J. Wysocki4681b172011-02-08 23:25:48 +01001552 wakeup = udev->actconfig->desc.bmAttributes
1553 & USB_CONFIG_ATT_WAKEUP;
Alan Stern645daaa2006-08-30 15:47:02 -04001554 else
Rafael J. Wysocki4681b172011-02-08 23:25:48 +01001555 wakeup = 0;
David Brownellfb669cc2006-01-24 08:40:27 -08001556 }
Sarah Sharp15123002007-12-21 16:54:15 -08001557 if (udev->state == USB_STATE_SUSPENDED &&
1558 new_state != USB_STATE_SUSPENDED)
1559 udev->active_duration -= jiffies;
1560 else if (new_state == USB_STATE_SUSPENDED &&
1561 udev->state != USB_STATE_SUSPENDED)
1562 udev->active_duration += jiffies;
Alan Stern645daaa2006-08-30 15:47:02 -04001563 udev->state = new_state;
David Brownellb94dc6b2005-09-12 19:39:39 -07001564 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565 recursively_mark_NOTATTACHED(udev);
1566 spin_unlock_irqrestore(&device_state_lock, flags);
Rafael J. Wysocki4681b172011-02-08 23:25:48 +01001567 if (wakeup >= 0)
1568 device_set_wakeup_capable(&udev->dev, wakeup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569}
David Vrabel6da9c992009-02-18 14:43:47 +00001570EXPORT_SYMBOL_GPL(usb_set_device_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571
Inaky Perez-Gonzalez8af548d2008-04-08 13:24:46 -07001572/*
Alan Stern3b29b682011-02-22 09:53:41 -05001573 * Choose a device number.
1574 *
1575 * Device numbers are used as filenames in usbfs. On USB-1.1 and
1576 * USB-2.0 buses they are also used as device addresses, however on
1577 * USB-3.0 buses the address is assigned by the controller hardware
1578 * and it usually is not the same as the device number.
1579 *
Inaky Perez-Gonzalez8af548d2008-04-08 13:24:46 -07001580 * WUSB devices are simple: they have no hubs behind, so the mapping
1581 * device <-> virtual port number becomes 1:1. Why? to simplify the
1582 * life of the device connection logic in
1583 * drivers/usb/wusbcore/devconnect.c. When we do the initial secret
1584 * handshake we need to assign a temporary address in the unauthorized
1585 * space. For simplicity we use the first virtual port number found to
1586 * be free [drivers/usb/wusbcore/devconnect.c:wusbhc_devconnect_ack()]
1587 * and that becomes it's address [X < 128] or its unauthorized address
1588 * [X | 0x80].
1589 *
1590 * We add 1 as an offset to the one-based USB-stack port number
1591 * (zero-based wusb virtual port index) for two reasons: (a) dev addr
1592 * 0 is reserved by USB for default address; (b) Linux's USB stack
1593 * uses always #1 for the root hub of the controller. So USB stack's
1594 * port #1, which is wusb virtual-port #0 has address #2.
Sarah Sharpc6515272009-04-27 19:57:26 -07001595 *
1596 * Devices connected under xHCI are not as simple. The host controller
1597 * supports virtualization, so the hardware assigns device addresses and
1598 * the HCD must setup data structures before issuing a set address
1599 * command to the hardware.
Inaky Perez-Gonzalez8af548d2008-04-08 13:24:46 -07001600 */
Alan Stern3b29b682011-02-22 09:53:41 -05001601static void choose_devnum(struct usb_device *udev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602{
1603 int devnum;
1604 struct usb_bus *bus = udev->bus;
1605
1606 /* If khubd ever becomes multithreaded, this will need a lock */
Inaky Perez-Gonzalez8af548d2008-04-08 13:24:46 -07001607 if (udev->wusb) {
1608 devnum = udev->portnum + 1;
1609 BUG_ON(test_bit(devnum, bus->devmap.devicemap));
1610 } else {
1611 /* Try to allocate the next devnum beginning at
1612 * bus->devnum_next. */
1613 devnum = find_next_zero_bit(bus->devmap.devicemap, 128,
1614 bus->devnum_next);
1615 if (devnum >= 128)
1616 devnum = find_next_zero_bit(bus->devmap.devicemap,
1617 128, 1);
1618 bus->devnum_next = ( devnum >= 127 ? 1 : devnum + 1);
1619 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620 if (devnum < 128) {
1621 set_bit(devnum, bus->devmap.devicemap);
1622 udev->devnum = devnum;
1623 }
1624}
1625
Alan Stern3b29b682011-02-22 09:53:41 -05001626static void release_devnum(struct usb_device *udev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627{
1628 if (udev->devnum > 0) {
1629 clear_bit(udev->devnum, udev->bus->devmap.devicemap);
1630 udev->devnum = -1;
1631 }
1632}
1633
Alan Stern3b29b682011-02-22 09:53:41 -05001634static void update_devnum(struct usb_device *udev, int devnum)
David Vrabel4953d142008-04-08 13:24:46 -07001635{
1636 /* The address for a WUSB device is managed by wusbcore. */
1637 if (!udev->wusb)
1638 udev->devnum = devnum;
1639}
1640
Herbert Xuf7410ce2010-01-10 20:15:03 +11001641static void hub_free_dev(struct usb_device *udev)
1642{
1643 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
1644
1645 /* Root hubs aren't real devices, so don't free HCD resources */
1646 if (hcd->driver->free_dev && udev->parent)
1647 hcd->driver->free_dev(hcd, udev);
1648}
1649
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650/**
1651 * usb_disconnect - disconnect a device (usbcore-internal)
1652 * @pdev: pointer to device being disconnected
1653 * Context: !in_interrupt ()
1654 *
1655 * Something got disconnected. Get rid of it and all of its children.
1656 *
1657 * If *pdev is a normal device then the parent hub must already be locked.
1658 * If *pdev is a root hub then this routine will acquire the
1659 * usb_bus_list_lock on behalf of the caller.
1660 *
1661 * Only hub drivers (including virtual root hub drivers for host
1662 * controllers) should ever call this.
1663 *
1664 * This call is synchronous, and may not be used in an interrupt context.
1665 */
1666void usb_disconnect(struct usb_device **pdev)
1667{
1668 struct usb_device *udev = *pdev;
1669 int i;
Sarah Sharpfccf4e82011-06-05 23:22:22 -07001670 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 /* mark the device as inactive, so any further urb submissions for
1673 * this device (and any of its children) will fail immediately.
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001674 * this quiesces everything except pending urbs.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675 */
1676 usb_set_device_state(udev, USB_STATE_NOTATTACHED);
Alan Stern3b29b682011-02-22 09:53:41 -05001677 dev_info(&udev->dev, "USB disconnect, device number %d\n",
1678 udev->devnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679
Alan Stern9ad3d6c2005-11-17 17:10:32 -05001680 usb_lock_device(udev);
1681
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682 /* Free up all the children before we remove this device */
Huajun Li88162302012-03-12 21:00:19 +08001683 for (i = 0; i < udev->maxchild; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684 if (udev->children[i])
1685 usb_disconnect(&udev->children[i]);
1686 }
1687
1688 /* deallocate hcd/hardware state ... nuking all pending urbs and
1689 * cleaning up all state associated with the current configuration
1690 * so that the hardware is now fully quiesced.
1691 */
Alan Stern782da722006-07-01 22:09:35 -04001692 dev_dbg (&udev->dev, "unregistering device\n");
Sarah Sharpfccf4e82011-06-05 23:22:22 -07001693 mutex_lock(hcd->bandwidth_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694 usb_disable_device(udev, 0);
Sarah Sharpfccf4e82011-06-05 23:22:22 -07001695 mutex_unlock(hcd->bandwidth_mutex);
Alan Sterncde217a2008-10-21 15:28:46 -04001696 usb_hcd_synchronize_unlinks(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697
Alan Stern3b23dd62008-12-05 14:10:34 -05001698 usb_remove_ep_devs(&udev->ep0);
Alan Stern782da722006-07-01 22:09:35 -04001699 usb_unlock_device(udev);
Greg Kroah-Hartman3099e752005-06-20 21:15:16 -07001700
Alan Stern782da722006-07-01 22:09:35 -04001701 /* Unregister the device. The device driver is responsible
Alan Stern3b23dd62008-12-05 14:10:34 -05001702 * for de-configuring the device and invoking the remove-device
1703 * notifier chain (used by usbfs and possibly others).
Alan Stern782da722006-07-01 22:09:35 -04001704 */
1705 device_del(&udev->dev);
1706
1707 /* Free the device number and delete the parent's children[]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708 * (or root_hub) pointer.
1709 */
Alan Stern3b29b682011-02-22 09:53:41 -05001710 release_devnum(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711
1712 /* Avoid races with recursively_mark_NOTATTACHED() */
1713 spin_lock_irq(&device_state_lock);
1714 *pdev = NULL;
1715 spin_unlock_irq(&device_state_lock);
1716
Herbert Xuf7410ce2010-01-10 20:15:03 +11001717 hub_free_dev(udev);
1718
Alan Stern782da722006-07-01 22:09:35 -04001719 put_device(&udev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720}
1721
Greg Kroah-Hartmanf2a383e2007-11-26 22:11:55 -08001722#ifdef CONFIG_USB_ANNOUNCE_NEW_DEVICES
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723static void show_string(struct usb_device *udev, char *id, char *string)
1724{
1725 if (!string)
1726 return;
1727 dev_printk(KERN_INFO, &udev->dev, "%s: %s\n", id, string);
1728}
1729
Greg Kroah-Hartmanf2a383e2007-11-26 22:11:55 -08001730static void announce_device(struct usb_device *udev)
1731{
1732 dev_info(&udev->dev, "New USB device found, idVendor=%04x, idProduct=%04x\n",
1733 le16_to_cpu(udev->descriptor.idVendor),
1734 le16_to_cpu(udev->descriptor.idProduct));
Wu Fengguangb9cef6c2008-12-15 15:32:01 +08001735 dev_info(&udev->dev,
1736 "New USB device strings: Mfr=%d, Product=%d, SerialNumber=%d\n",
Greg Kroah-Hartmanf2a383e2007-11-26 22:11:55 -08001737 udev->descriptor.iManufacturer,
1738 udev->descriptor.iProduct,
1739 udev->descriptor.iSerialNumber);
1740 show_string(udev, "Product", udev->product);
1741 show_string(udev, "Manufacturer", udev->manufacturer);
1742 show_string(udev, "SerialNumber", udev->serial);
1743}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744#else
Greg Kroah-Hartmanf2a383e2007-11-26 22:11:55 -08001745static inline void announce_device(struct usb_device *udev) { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746#endif
1747
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748#ifdef CONFIG_USB_OTG
1749#include "otg_whitelist.h"
1750#endif
1751
Oliver Neukum3ede7602007-01-11 14:35:50 +01001752/**
Alan Stern8d8558d2009-12-08 15:50:41 -05001753 * usb_enumerate_device_otg - FIXME (usbcore-internal)
Oliver Neukum3ede7602007-01-11 14:35:50 +01001754 * @udev: newly addressed device (in ADDRESS state)
1755 *
Alan Stern8d8558d2009-12-08 15:50:41 -05001756 * Finish enumeration for On-The-Go devices
Oliver Neukum3ede7602007-01-11 14:35:50 +01001757 */
Alan Stern8d8558d2009-12-08 15:50:41 -05001758static int usb_enumerate_device_otg(struct usb_device *udev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759{
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07001760 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761
1762#ifdef CONFIG_USB_OTG
1763 /*
1764 * OTG-aware devices on OTG-capable root hubs may be able to use SRP,
1765 * to wake us after we've powered off VBUS; and HNP, switching roles
1766 * "host" to "peripheral". The OTG descriptor helps figure this out.
1767 */
1768 if (!udev->bus->is_b_host
1769 && udev->config
1770 && udev->parent == udev->bus->root_hub) {
Felipe Balbi2eb50522009-12-04 15:47:43 +02001771 struct usb_otg_descriptor *desc = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772 struct usb_bus *bus = udev->bus;
1773
1774 /* descriptor may appear anywhere in config */
1775 if (__usb_get_extra_descriptor (udev->rawdescriptors[0],
1776 le16_to_cpu(udev->config[0].desc.wTotalLength),
1777 USB_DT_OTG, (void **) &desc) == 0) {
1778 if (desc->bmAttributes & USB_OTG_HNP) {
Alan Stern12c3da32005-11-23 12:09:52 -05001779 unsigned port1 = udev->portnum;
David Brownellfc849b82006-09-18 16:53:26 -07001780
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781 dev_info(&udev->dev,
1782 "Dual-Role OTG device on %sHNP port\n",
1783 (port1 == bus->otg_port)
1784 ? "" : "non-");
1785
1786 /* enable HNP before suspend, it's simpler */
1787 if (port1 == bus->otg_port)
1788 bus->b_hnp_enable = 1;
1789 err = usb_control_msg(udev,
1790 usb_sndctrlpipe(udev, 0),
1791 USB_REQ_SET_FEATURE, 0,
1792 bus->b_hnp_enable
1793 ? USB_DEVICE_B_HNP_ENABLE
1794 : USB_DEVICE_A_ALT_HNP_SUPPORT,
1795 0, NULL, 0, USB_CTRL_SET_TIMEOUT);
1796 if (err < 0) {
1797 /* OTG MESSAGE: report errors here,
1798 * customize to match your product.
1799 */
1800 dev_info(&udev->dev,
Wu Fengguangb9cef6c2008-12-15 15:32:01 +08001801 "can't set HNP mode: %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 err);
1803 bus->b_hnp_enable = 0;
1804 }
1805 }
1806 }
1807 }
1808
1809 if (!is_targeted(udev)) {
1810
1811 /* Maybe it can talk to us, though we can't talk to it.
1812 * (Includes HNP test device.)
1813 */
1814 if (udev->bus->b_hnp_enable || udev->bus->is_b_host) {
David Brownell634a84f2009-01-15 13:51:28 -08001815 err = usb_port_suspend(udev, PMSG_SUSPEND);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816 if (err < 0)
1817 dev_dbg(&udev->dev, "HNP fail, %d\n", err);
1818 }
Vikram Panditaffcdc182007-05-25 21:31:07 -07001819 err = -ENOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820 goto fail;
1821 }
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07001822fail:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823#endif
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07001824 return err;
1825}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07001827
1828/**
Alan Stern8d8558d2009-12-08 15:50:41 -05001829 * usb_enumerate_device - Read device configs/intfs/otg (usbcore-internal)
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07001830 * @udev: newly addressed device (in ADDRESS state)
1831 *
1832 * This is only called by usb_new_device() and usb_authorize_device()
1833 * and FIXME -- all comments that apply to them apply here wrt to
1834 * environment.
1835 *
1836 * If the device is WUSB and not authorized, we don't attempt to read
1837 * the string descriptors, as they will be errored out by the device
1838 * until it has been authorized.
1839 */
Alan Stern8d8558d2009-12-08 15:50:41 -05001840static int usb_enumerate_device(struct usb_device *udev)
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07001841{
1842 int err;
1843
1844 if (udev->config == NULL) {
1845 err = usb_get_configuration(udev);
1846 if (err < 0) {
1847 dev_err(&udev->dev, "can't read configurations, error %d\n",
1848 err);
1849 goto fail;
1850 }
1851 }
1852 if (udev->wusb == 1 && udev->authorized == 0) {
1853 udev->product = kstrdup("n/a (unauthorized)", GFP_KERNEL);
1854 udev->manufacturer = kstrdup("n/a (unauthorized)", GFP_KERNEL);
1855 udev->serial = kstrdup("n/a (unauthorized)", GFP_KERNEL);
1856 }
1857 else {
1858 /* read the standard strings and cache them if present */
1859 udev->product = usb_cache_string(udev, udev->descriptor.iProduct);
1860 udev->manufacturer = usb_cache_string(udev,
1861 udev->descriptor.iManufacturer);
1862 udev->serial = usb_cache_string(udev, udev->descriptor.iSerialNumber);
1863 }
Alan Stern8d8558d2009-12-08 15:50:41 -05001864 err = usb_enumerate_device_otg(udev);
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07001865fail:
1866 return err;
1867}
1868
Matthew Garrettd35e70d2012-02-03 17:11:55 -05001869static void set_usb_port_removable(struct usb_device *udev)
1870{
1871 struct usb_device *hdev = udev->parent;
1872 struct usb_hub *hub;
1873 u8 port = udev->portnum;
1874 u16 wHubCharacteristics;
1875 bool removable = true;
1876
1877 if (!hdev)
1878 return;
1879
1880 hub = hdev_to_hub(udev->parent);
1881
1882 wHubCharacteristics = le16_to_cpu(hub->descriptor->wHubCharacteristics);
1883
1884 if (!(wHubCharacteristics & HUB_CHAR_COMPOUND))
1885 return;
1886
1887 if (hub_is_superspeed(hdev)) {
1888 if (hub->descriptor->u.ss.DeviceRemovable & (1 << port))
1889 removable = false;
1890 } else {
1891 if (hub->descriptor->u.hs.DeviceRemovable[port / 8] & (1 << (port % 8)))
1892 removable = false;
1893 }
1894
1895 if (removable)
1896 udev->removable = USB_DEVICE_REMOVABLE;
1897 else
1898 udev->removable = USB_DEVICE_FIXED;
1899}
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07001900
1901/**
1902 * usb_new_device - perform initial device setup (usbcore-internal)
1903 * @udev: newly addressed device (in ADDRESS state)
1904 *
Alan Stern8d8558d2009-12-08 15:50:41 -05001905 * This is called with devices which have been detected but not fully
1906 * enumerated. The device descriptor is available, but not descriptors
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07001907 * for any device configuration. The caller must have locked either
1908 * the parent hub (if udev is a normal device) or else the
1909 * usb_bus_list_lock (if udev is a root hub). The parent's pointer to
1910 * udev has already been installed, but udev is not yet visible through
1911 * sysfs or other filesystem code.
1912 *
1913 * It will return if the device is configured properly or not. Zero if
1914 * the interface was registered with the driver core; else a negative
1915 * errno value.
1916 *
1917 * This call is synchronous, and may not be used in an interrupt context.
1918 *
1919 * Only the hub driver or root-hub registrar should ever call this.
1920 */
1921int usb_new_device(struct usb_device *udev)
1922{
1923 int err;
1924
Dan Streetman16985402010-01-06 09:56:53 -05001925 if (udev->parent) {
Dan Streetman16985402010-01-06 09:56:53 -05001926 /* Initialize non-root-hub device wakeup to disabled;
1927 * device (un)configuration controls wakeup capable
1928 * sysfs power/wakeup controls wakeup enabled/disabled
1929 */
1930 device_init_wakeup(&udev->dev, 0);
Dan Streetman16985402010-01-06 09:56:53 -05001931 }
1932
Alan Stern9bbdf1e2010-01-08 12:57:28 -05001933 /* Tell the runtime-PM framework the device is active */
1934 pm_runtime_set_active(&udev->dev);
Alan Sternc08512c2010-11-15 15:57:58 -05001935 pm_runtime_get_noresume(&udev->dev);
Alan Sternfcc4a012010-11-15 15:57:51 -05001936 pm_runtime_use_autosuspend(&udev->dev);
Alan Stern9bbdf1e2010-01-08 12:57:28 -05001937 pm_runtime_enable(&udev->dev);
1938
Alan Sternc08512c2010-11-15 15:57:58 -05001939 /* By default, forbid autosuspend for all devices. It will be
1940 * allowed for hubs during binding.
1941 */
1942 usb_disable_autosuspend(udev);
1943
Alan Stern8d8558d2009-12-08 15:50:41 -05001944 err = usb_enumerate_device(udev); /* Read descriptors */
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07001945 if (err < 0)
1946 goto fail;
Sarah Sharpc6515272009-04-27 19:57:26 -07001947 dev_dbg(&udev->dev, "udev %d, busnum %d, minor = %d\n",
1948 udev->devnum, udev->bus->busnum,
1949 (((udev->bus->busnum-1) * 128) + (udev->devnum-1)));
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001950 /* export the usbdev device-node for libusb */
1951 udev->dev.devt = MKDEV(USB_DEVICE_MAJOR,
1952 (((udev->bus->busnum-1) * 128) + (udev->devnum-1)));
1953
Alan Stern6cd13202008-11-13 15:08:30 -05001954 /* Tell the world! */
1955 announce_device(udev);
Alan Stern195af2c2007-07-16 15:28:19 -04001956
Rafael J. Wysocki927bc912010-02-08 19:18:16 +01001957 device_enable_async_suspend(&udev->dev);
Matthew Garrettd35e70d2012-02-03 17:11:55 -05001958
1959 /*
1960 * check whether the hub marks this port as non-removable. Do it
1961 * now so that platform-specific data can override it in
1962 * device_add()
1963 */
1964 if (udev->parent)
1965 set_usb_port_removable(udev);
1966
Alan Stern782da722006-07-01 22:09:35 -04001967 /* Register the device. The device driver is responsible
Alan Stern3b23dd62008-12-05 14:10:34 -05001968 * for configuring the device and invoking the add-device
1969 * notifier chain (used by usbfs and possibly others).
Alan Stern782da722006-07-01 22:09:35 -04001970 */
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001971 err = device_add(&udev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972 if (err) {
1973 dev_err(&udev->dev, "can't device_add, error %d\n", err);
1974 goto fail;
1975 }
Alan Stern9ad3d6c2005-11-17 17:10:32 -05001976
Alan Stern3b23dd62008-12-05 14:10:34 -05001977 (void) usb_create_ep_devs(&udev->dev, &udev->ep0, udev);
Alan Sternc08512c2010-11-15 15:57:58 -05001978 usb_mark_last_busy(udev);
1979 pm_runtime_put_sync_autosuspend(&udev->dev);
Greg Kroah-Hartmanc0664752006-08-11 01:55:12 -07001980 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981
1982fail:
1983 usb_set_device_state(udev, USB_STATE_NOTATTACHED);
Alan Stern9bbdf1e2010-01-08 12:57:28 -05001984 pm_runtime_disable(&udev->dev);
1985 pm_runtime_set_suspended(&udev->dev);
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07001986 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987}
1988
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07001989
1990/**
Randy Dunlapfd39c862007-10-15 17:30:02 -07001991 * usb_deauthorize_device - deauthorize a device (usbcore-internal)
1992 * @usb_dev: USB device
1993 *
1994 * Move the USB device to a very basic state where interfaces are disabled
1995 * and the device is in fact unconfigured and unusable.
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07001996 *
1997 * We share a lock (that we have) with device_del(), so we need to
1998 * defer its call.
1999 */
2000int usb_deauthorize_device(struct usb_device *usb_dev)
2001{
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002002 usb_lock_device(usb_dev);
2003 if (usb_dev->authorized == 0)
2004 goto out_unauthorized;
Alan Sternda307122009-12-08 15:54:44 -05002005
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002006 usb_dev->authorized = 0;
2007 usb_set_configuration(usb_dev, -1);
Alan Sternda307122009-12-08 15:54:44 -05002008
2009 kfree(usb_dev->product);
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002010 usb_dev->product = kstrdup("n/a (unauthorized)", GFP_KERNEL);
Alan Sternda307122009-12-08 15:54:44 -05002011 kfree(usb_dev->manufacturer);
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002012 usb_dev->manufacturer = kstrdup("n/a (unauthorized)", GFP_KERNEL);
Alan Sternda307122009-12-08 15:54:44 -05002013 kfree(usb_dev->serial);
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002014 usb_dev->serial = kstrdup("n/a (unauthorized)", GFP_KERNEL);
Alan Sternda307122009-12-08 15:54:44 -05002015
2016 usb_destroy_configuration(usb_dev);
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002017 usb_dev->descriptor.bNumConfigurations = 0;
Alan Sternda307122009-12-08 15:54:44 -05002018
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002019out_unauthorized:
2020 usb_unlock_device(usb_dev);
2021 return 0;
2022}
2023
2024
2025int usb_authorize_device(struct usb_device *usb_dev)
2026{
2027 int result = 0, c;
Alan Sternda307122009-12-08 15:54:44 -05002028
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002029 usb_lock_device(usb_dev);
2030 if (usb_dev->authorized == 1)
2031 goto out_authorized;
Alan Sternda307122009-12-08 15:54:44 -05002032
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002033 result = usb_autoresume_device(usb_dev);
2034 if (result < 0) {
2035 dev_err(&usb_dev->dev,
2036 "can't autoresume for authorization: %d\n", result);
2037 goto error_autoresume;
2038 }
2039 result = usb_get_device_descriptor(usb_dev, sizeof(usb_dev->descriptor));
2040 if (result < 0) {
2041 dev_err(&usb_dev->dev, "can't re-read device descriptor for "
2042 "authorization: %d\n", result);
2043 goto error_device_descriptor;
2044 }
Alan Sternda307122009-12-08 15:54:44 -05002045
2046 kfree(usb_dev->product);
2047 usb_dev->product = NULL;
2048 kfree(usb_dev->manufacturer);
2049 usb_dev->manufacturer = NULL;
2050 kfree(usb_dev->serial);
2051 usb_dev->serial = NULL;
2052
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002053 usb_dev->authorized = 1;
Alan Stern8d8558d2009-12-08 15:50:41 -05002054 result = usb_enumerate_device(usb_dev);
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002055 if (result < 0)
Alan Stern8d8558d2009-12-08 15:50:41 -05002056 goto error_enumerate;
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002057 /* Choose and set the configuration. This registers the interfaces
2058 * with the driver core and lets interface drivers bind to them.
2059 */
Greg Kroah-Hartmanb5ea0602007-08-02 22:44:27 -06002060 c = usb_choose_configuration(usb_dev);
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002061 if (c >= 0) {
2062 result = usb_set_configuration(usb_dev, c);
2063 if (result) {
2064 dev_err(&usb_dev->dev,
2065 "can't set config #%d, error %d\n", c, result);
2066 /* This need not be fatal. The user can try to
2067 * set other configurations. */
2068 }
2069 }
2070 dev_info(&usb_dev->dev, "authorized to connect\n");
Alan Sternda307122009-12-08 15:54:44 -05002071
Alan Stern8d8558d2009-12-08 15:50:41 -05002072error_enumerate:
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002073error_device_descriptor:
Alan Sternda307122009-12-08 15:54:44 -05002074 usb_autosuspend_device(usb_dev);
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002075error_autoresume:
2076out_authorized:
2077 usb_unlock_device(usb_dev); // complements locktree
2078 return result;
2079}
2080
2081
Inaky Perez-Gonzalez0165de02006-08-25 19:35:29 -07002082/* Returns 1 if @hub is a WUSB root hub, 0 otherwise */
2083static unsigned hub_is_wusb(struct usb_hub *hub)
2084{
2085 struct usb_hcd *hcd;
2086 if (hub->hdev->parent != NULL) /* not a root hub? */
2087 return 0;
2088 hcd = container_of(hub->hdev->bus, struct usb_hcd, self);
2089 return hcd->wireless;
2090}
2091
2092
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093#define PORT_RESET_TRIES 5
2094#define SET_ADDRESS_TRIES 2
2095#define GET_DESCRIPTOR_TRIES 2
2096#define SET_CONFIG_TRIES (2 * (use_both_schemes + 1))
Rusty Russell90ab5ee2012-01-13 09:32:20 +10302097#define USE_NEW_SCHEME(i) ((i) / 2 == (int)old_scheme_first)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098
2099#define HUB_ROOT_RESET_TIME 50 /* times are in msec */
2100#define HUB_SHORT_RESET_TIME 10
Andiry Xu75d7cf72011-09-13 16:41:11 -07002101#define HUB_BH_RESET_TIME 50
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102#define HUB_LONG_RESET_TIME 200
2103#define HUB_RESET_TIMEOUT 500
2104
Sarah Sharp10d674a2011-09-14 14:24:52 -07002105static int hub_port_reset(struct usb_hub *hub, int port1,
2106 struct usb_device *udev, unsigned int delay, bool warm);
2107
2108/* Is a USB 3.0 port in the Inactive state? */
2109static bool hub_port_inactive(struct usb_hub *hub, u16 portstatus)
2110{
2111 return hub_is_superspeed(hub->hdev) &&
2112 (portstatus & USB_PORT_STAT_LINK_STATE) ==
2113 USB_SS_PORT_LS_SS_INACTIVE;
2114}
2115
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116static int hub_port_wait_reset(struct usb_hub *hub, int port1,
Andiry Xu75d7cf72011-09-13 16:41:11 -07002117 struct usb_device *udev, unsigned int delay, bool warm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118{
2119 int delay_time, ret;
2120 u16 portstatus;
2121 u16 portchange;
2122
2123 for (delay_time = 0;
2124 delay_time < HUB_RESET_TIMEOUT;
2125 delay_time += delay) {
2126 /* wait to give the device a chance to reset */
2127 msleep(delay);
2128
2129 /* read and decode port status */
2130 ret = hub_port_status(hub, port1, &portstatus, &portchange);
2131 if (ret < 0)
2132 return ret;
2133
Andiry Xu75d7cf72011-09-13 16:41:11 -07002134 /*
2135 * Some buggy devices require a warm reset to be issued even
2136 * when the port appears not to be connected.
2137 */
2138 if (!warm) {
Sarah Sharp10d674a2011-09-14 14:24:52 -07002139 /*
2140 * Some buggy devices can cause an NEC host controller
2141 * to transition to the "Error" state after a hot port
2142 * reset. This will show up as the port state in
2143 * "Inactive", and the port may also report a
2144 * disconnect. Forcing a warm port reset seems to make
2145 * the device work.
2146 *
2147 * See https://bugzilla.kernel.org/show_bug.cgi?id=41752
2148 */
2149 if (hub_port_inactive(hub, portstatus)) {
2150 int ret;
2151
2152 if ((portchange & USB_PORT_STAT_C_CONNECTION))
2153 clear_port_feature(hub->hdev, port1,
2154 USB_PORT_FEAT_C_CONNECTION);
2155 if (portchange & USB_PORT_STAT_C_LINK_STATE)
2156 clear_port_feature(hub->hdev, port1,
2157 USB_PORT_FEAT_C_PORT_LINK_STATE);
2158 if (portchange & USB_PORT_STAT_C_RESET)
2159 clear_port_feature(hub->hdev, port1,
2160 USB_PORT_FEAT_C_RESET);
2161 dev_dbg(hub->intfdev, "hot reset failed, warm reset port %d\n",
2162 port1);
2163 ret = hub_port_reset(hub, port1,
2164 udev, HUB_BH_RESET_TIME,
2165 true);
2166 if ((portchange & USB_PORT_STAT_C_CONNECTION))
2167 clear_port_feature(hub->hdev, port1,
2168 USB_PORT_FEAT_C_CONNECTION);
2169 return ret;
2170 }
Andiry Xu75d7cf72011-09-13 16:41:11 -07002171 /* Device went away? */
2172 if (!(portstatus & USB_PORT_STAT_CONNECTION))
2173 return -ENOTCONN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174
Andiry Xu75d7cf72011-09-13 16:41:11 -07002175 /* bomb out completely if the connection bounced */
2176 if ((portchange & USB_PORT_STAT_C_CONNECTION))
2177 return -ENOTCONN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178
Andiry Xu75d7cf72011-09-13 16:41:11 -07002179 /* if we`ve finished resetting, then break out of
2180 * the loop
2181 */
2182 if (!(portstatus & USB_PORT_STAT_RESET) &&
2183 (portstatus & USB_PORT_STAT_ENABLE)) {
2184 if (hub_is_wusb(hub))
2185 udev->speed = USB_SPEED_WIRELESS;
2186 else if (hub_is_superspeed(hub->hdev))
2187 udev->speed = USB_SPEED_SUPER;
2188 else if (portstatus & USB_PORT_STAT_HIGH_SPEED)
2189 udev->speed = USB_SPEED_HIGH;
2190 else if (portstatus & USB_PORT_STAT_LOW_SPEED)
2191 udev->speed = USB_SPEED_LOW;
2192 else
2193 udev->speed = USB_SPEED_FULL;
2194 return 0;
2195 }
2196 } else {
2197 if (portchange & USB_PORT_STAT_C_BH_RESET)
2198 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199 }
2200
2201 /* switch to the long delay after two short delay failures */
2202 if (delay_time >= 2 * HUB_SHORT_RESET_TIME)
2203 delay = HUB_LONG_RESET_TIME;
2204
2205 dev_dbg (hub->intfdev,
Andiry Xu75d7cf72011-09-13 16:41:11 -07002206 "port %d not %sreset yet, waiting %dms\n",
2207 port1, warm ? "warm " : "", delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208 }
2209
2210 return -EBUSY;
2211}
2212
Andiry Xu75d7cf72011-09-13 16:41:11 -07002213static void hub_port_finish_reset(struct usb_hub *hub, int port1,
2214 struct usb_device *udev, int *status, bool warm)
2215{
2216 switch (*status) {
2217 case 0:
2218 if (!warm) {
2219 struct usb_hcd *hcd;
2220 /* TRSTRCY = 10 ms; plus some extra */
2221 msleep(10 + 40);
2222 update_devnum(udev, 0);
2223 hcd = bus_to_hcd(udev->bus);
2224 if (hcd->driver->reset_device) {
2225 *status = hcd->driver->reset_device(hcd, udev);
2226 if (*status < 0) {
2227 dev_err(&udev->dev, "Cannot reset "
2228 "HCD device state\n");
2229 break;
2230 }
2231 }
2232 }
2233 /* FALL THROUGH */
2234 case -ENOTCONN:
2235 case -ENODEV:
2236 clear_port_feature(hub->hdev,
2237 port1, USB_PORT_FEAT_C_RESET);
2238 /* FIXME need disconnect() for NOTATTACHED device */
2239 if (warm) {
2240 clear_port_feature(hub->hdev, port1,
2241 USB_PORT_FEAT_C_BH_PORT_RESET);
2242 clear_port_feature(hub->hdev, port1,
2243 USB_PORT_FEAT_C_PORT_LINK_STATE);
2244 } else {
2245 usb_set_device_state(udev, *status
2246 ? USB_STATE_NOTATTACHED
2247 : USB_STATE_DEFAULT);
2248 }
2249 break;
2250 }
2251}
2252
2253/* Handle port reset and port warm(BH) reset (for USB3 protocol ports) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254static int hub_port_reset(struct usb_hub *hub, int port1,
Andiry Xu75d7cf72011-09-13 16:41:11 -07002255 struct usb_device *udev, unsigned int delay, bool warm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256{
2257 int i, status;
2258
Andiry Xu75d7cf72011-09-13 16:41:11 -07002259 if (!warm) {
2260 /* Block EHCI CF initialization during the port reset.
2261 * Some companion controllers don't like it when they mix.
2262 */
2263 down_read(&ehci_cf_port_reset_rwsem);
2264 } else {
2265 if (!hub_is_superspeed(hub->hdev)) {
2266 dev_err(hub->intfdev, "only USB3 hub support "
2267 "warm reset\n");
2268 return -EINVAL;
2269 }
2270 }
Alan Stern32fe0192007-10-10 16:27:07 -04002271
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272 /* Reset the port */
2273 for (i = 0; i < PORT_RESET_TRIES; i++) {
Andiry Xu75d7cf72011-09-13 16:41:11 -07002274 status = set_port_feature(hub->hdev, port1, (warm ?
2275 USB_PORT_FEAT_BH_PORT_RESET :
2276 USB_PORT_FEAT_RESET));
2277 if (status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278 dev_err(hub->intfdev,
Andiry Xu75d7cf72011-09-13 16:41:11 -07002279 "cannot %sreset port %d (err = %d)\n",
2280 warm ? "warm " : "", port1, status);
2281 } else {
2282 status = hub_port_wait_reset(hub, port1, udev, delay,
2283 warm);
David Brownelldd165252005-08-31 10:45:25 -07002284 if (status && status != -ENOTCONN)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285 dev_dbg(hub->intfdev,
2286 "port_wait_reset: err = %d\n",
2287 status);
2288 }
2289
2290 /* return on disconnect or reset */
Andiry Xu75d7cf72011-09-13 16:41:11 -07002291 if (status == 0 || status == -ENOTCONN || status == -ENODEV) {
2292 hub_port_finish_reset(hub, port1, udev, &status, warm);
Alan Stern32fe0192007-10-10 16:27:07 -04002293 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294 }
2295
2296 dev_dbg (hub->intfdev,
Andiry Xu75d7cf72011-09-13 16:41:11 -07002297 "port %d not enabled, trying %sreset again...\n",
2298 port1, warm ? "warm " : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299 delay = HUB_LONG_RESET_TIME;
2300 }
2301
2302 dev_err (hub->intfdev,
2303 "Cannot enable port %i. Maybe the USB cable is bad?\n",
2304 port1);
2305
Andiry Xu75d7cf72011-09-13 16:41:11 -07002306done:
2307 if (!warm)
2308 up_read(&ehci_cf_port_reset_rwsem);
2309
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310 return status;
2311}
2312
Andiry Xu0ed9a572011-04-27 18:07:43 +08002313/* Check if a port is power on */
2314static int port_is_power_on(struct usb_hub *hub, unsigned portstatus)
2315{
2316 int ret = 0;
2317
2318 if (hub_is_superspeed(hub->hdev)) {
2319 if (portstatus & USB_SS_PORT_STAT_POWER)
2320 ret = 1;
2321 } else {
2322 if (portstatus & USB_PORT_STAT_POWER)
2323 ret = 1;
2324 }
2325
2326 return ret;
2327}
2328
Alan Sternd388dab2006-07-01 22:14:24 -04002329#ifdef CONFIG_PM
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330
Andiry Xu0ed9a572011-04-27 18:07:43 +08002331/* Check if a port is suspended(USB2.0 port) or in U3 state(USB3.0 port) */
2332static int port_is_suspended(struct usb_hub *hub, unsigned portstatus)
2333{
2334 int ret = 0;
2335
2336 if (hub_is_superspeed(hub->hdev)) {
2337 if ((portstatus & USB_PORT_STAT_LINK_STATE)
2338 == USB_SS_PORT_LS_U3)
2339 ret = 1;
2340 } else {
2341 if (portstatus & USB_PORT_STAT_SUSPEND)
2342 ret = 1;
2343 }
2344
2345 return ret;
2346}
Alan Sternb01b03f2008-04-28 11:06:11 -04002347
2348/* Determine whether the device on a port is ready for a normal resume,
2349 * is ready for a reset-resume, or should be disconnected.
2350 */
2351static int check_port_resume_type(struct usb_device *udev,
2352 struct usb_hub *hub, int port1,
2353 int status, unsigned portchange, unsigned portstatus)
2354{
2355 /* Is the device still present? */
Andiry Xu0ed9a572011-04-27 18:07:43 +08002356 if (status || port_is_suspended(hub, portstatus) ||
2357 !port_is_power_on(hub, portstatus) ||
2358 !(portstatus & USB_PORT_STAT_CONNECTION)) {
Alan Sternb01b03f2008-04-28 11:06:11 -04002359 if (status >= 0)
2360 status = -ENODEV;
2361 }
2362
Alan Stern86c57ed2008-06-30 11:14:43 -04002363 /* Can't do a normal resume if the port isn't enabled,
2364 * so try a reset-resume instead.
2365 */
2366 else if (!(portstatus & USB_PORT_STAT_ENABLE) && !udev->reset_resume) {
2367 if (udev->persist_enabled)
2368 udev->reset_resume = 1;
2369 else
2370 status = -ENODEV;
2371 }
Alan Sternb01b03f2008-04-28 11:06:11 -04002372
2373 if (status) {
2374 dev_dbg(hub->intfdev,
2375 "port %d status %04x.%04x after resume, %d\n",
2376 port1, portchange, portstatus, status);
2377 } else if (udev->reset_resume) {
2378
2379 /* Late port handoff can set status-change bits */
2380 if (portchange & USB_PORT_STAT_C_CONNECTION)
2381 clear_port_feature(hub->hdev, port1,
2382 USB_PORT_FEAT_C_CONNECTION);
2383 if (portchange & USB_PORT_STAT_C_ENABLE)
2384 clear_port_feature(hub->hdev, port1,
2385 USB_PORT_FEAT_C_ENABLE);
2386 }
2387
2388 return status;
2389}
2390
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391#ifdef CONFIG_USB_SUSPEND
2392
2393/*
Alan Stern140d8f62006-07-01 22:07:21 -04002394 * usb_port_suspend - suspend a usb device's upstream port
Alan Stern624d6c02007-05-30 15:35:16 -04002395 * @udev: device that's no longer in active use, not a root hub
David Brownell5edbfb72005-09-22 22:45:26 -07002396 * Context: must be able to sleep; device not locked; pm locks held
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397 *
2398 * Suspends a USB device that isn't in active use, conserving power.
2399 * Devices may wake out of a suspend, if anything important happens,
2400 * using the remote wakeup mechanism. They may also be taken out of
Alan Stern140d8f62006-07-01 22:07:21 -04002401 * suspend by the host, using usb_port_resume(). It's also routine
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402 * to disconnect devices while they are suspended.
2403 *
David Brownell390a8c32005-09-13 19:57:27 -07002404 * This only affects the USB hardware for a device; its interfaces
2405 * (and, for hubs, child devices) must already have been suspended.
2406 *
Alan Stern624d6c02007-05-30 15:35:16 -04002407 * Selective port suspend reduces power; most suspended devices draw
2408 * less than 500 uA. It's also used in OTG, along with remote wakeup.
2409 * All devices below the suspended port are also suspended.
2410 *
2411 * Devices leave suspend state when the host wakes them up. Some devices
2412 * also support "remote wakeup", where the device can activate the USB
2413 * tree above them to deliver data, such as a keypress or packet. In
2414 * some cases, this wakes the USB host.
2415 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416 * Suspending OTG devices may trigger HNP, if that's been enabled
2417 * between a pair of dual-role devices. That will change roles, such
2418 * as from A-Host to A-Peripheral or from B-Host back to B-Peripheral.
2419 *
Alan Stern4956ecc2007-05-30 16:51:28 -04002420 * Devices on USB hub ports have only one "suspend" state, corresponding
2421 * to ACPI D2, "may cause the device to lose some context".
2422 * State transitions include:
2423 *
2424 * - suspend, resume ... when the VBUS power link stays live
2425 * - suspend, disconnect ... VBUS lost
2426 *
2427 * Once VBUS drop breaks the circuit, the port it's using has to go through
2428 * normal re-enumeration procedures, starting with enabling VBUS power.
2429 * Other than re-initializing the hub (plug/unplug, except for root hubs),
2430 * Linux (2.6) currently has NO mechanisms to initiate that: no khubd
2431 * timer, no SRP, no requests through sysfs.
2432 *
2433 * If CONFIG_USB_SUSPEND isn't enabled, devices only really suspend when
2434 * the root hub for their bus goes into global suspend ... so we don't
2435 * (falsely) update the device power state to say it suspended.
2436 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437 * Returns 0 on success, else negative errno.
2438 */
Alan Stern65bfd292008-11-25 16:39:18 -05002439int usb_port_suspend(struct usb_device *udev, pm_message_t msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440{
Alan Stern624d6c02007-05-30 15:35:16 -04002441 struct usb_hub *hub = hdev_to_hub(udev->parent);
2442 int port1 = udev->portnum;
2443 int status;
Alan Stern4956ecc2007-05-30 16:51:28 -04002444
Alan Stern624d6c02007-05-30 15:35:16 -04002445 /* enable remote wakeup when appropriate; this lets the device
2446 * wake up the upstream hub (including maybe the root hub).
2447 *
2448 * NOTE: OTG devices may issue remote wakeup (or SRP) even when
2449 * we don't explicitly enable it here.
2450 */
2451 if (udev->do_remote_wakeup) {
Sarah Sharp623bef92011-11-11 14:57:33 -08002452 if (!hub_is_superspeed(hub->hdev)) {
2453 status = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
2454 USB_REQ_SET_FEATURE, USB_RECIP_DEVICE,
2455 USB_DEVICE_REMOTE_WAKEUP, 0,
2456 NULL, 0,
2457 USB_CTRL_SET_TIMEOUT);
2458 } else {
2459 /* Assume there's only one function on the USB 3.0
2460 * device and enable remote wake for the first
2461 * interface. FIXME if the interface association
2462 * descriptor shows there's more than one function.
2463 */
2464 status = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
2465 USB_REQ_SET_FEATURE,
2466 USB_RECIP_INTERFACE,
2467 USB_INTRF_FUNC_SUSPEND,
Sarah Sharp3b9b6ac2012-01-06 15:48:30 -08002468 USB_INTRF_FUNC_SUSPEND_RW |
2469 USB_INTRF_FUNC_SUSPEND_LP,
Sarah Sharp623bef92011-11-11 14:57:33 -08002470 NULL, 0,
2471 USB_CTRL_SET_TIMEOUT);
2472 }
Oliver Neukum0c487202009-10-19 13:19:41 +02002473 if (status) {
Alan Stern624d6c02007-05-30 15:35:16 -04002474 dev_dbg(&udev->dev, "won't remote wakeup, status %d\n",
2475 status);
Oliver Neukum0c487202009-10-19 13:19:41 +02002476 /* bail if autosuspend is requested */
Alan Stern5b1b0b82011-08-19 23:49:48 +02002477 if (PMSG_IS_AUTO(msg))
Oliver Neukum0c487202009-10-19 13:19:41 +02002478 return status;
2479 }
Alan Stern624d6c02007-05-30 15:35:16 -04002480 }
2481
Andiry Xu65580b432011-09-23 14:19:52 -07002482 /* disable USB2 hardware LPM */
2483 if (udev->usb2_hw_lpm_enabled == 1)
2484 usb_set_usb2_hardware_lpm(udev, 0);
2485
Alan Stern624d6c02007-05-30 15:35:16 -04002486 /* see 7.1.7.6 */
Andiry Xua7114232011-04-27 18:07:50 +08002487 if (hub_is_superspeed(hub->hdev))
2488 status = set_port_feature(hub->hdev,
2489 port1 | (USB_SS_PORT_LS_U3 << 3),
2490 USB_PORT_FEAT_LINK_STATE);
Andiry Xua8f08d82011-03-31 14:56:50 +08002491 else
2492 status = set_port_feature(hub->hdev, port1,
2493 USB_PORT_FEAT_SUSPEND);
Alan Stern624d6c02007-05-30 15:35:16 -04002494 if (status) {
2495 dev_dbg(hub->intfdev, "can't suspend port %d, status %d\n",
2496 port1, status);
2497 /* paranoia: "should not happen" */
Oliver Neukum0c487202009-10-19 13:19:41 +02002498 if (udev->do_remote_wakeup)
2499 (void) usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
Alan Stern624d6c02007-05-30 15:35:16 -04002500 USB_REQ_CLEAR_FEATURE, USB_RECIP_DEVICE,
2501 USB_DEVICE_REMOTE_WAKEUP, 0,
2502 NULL, 0,
2503 USB_CTRL_SET_TIMEOUT);
Alan Sterncbb33002011-06-15 16:29:16 -04002504
2505 /* System sleep transitions should never fail */
Alan Stern5b1b0b82011-08-19 23:49:48 +02002506 if (!PMSG_IS_AUTO(msg))
Alan Sterncbb33002011-06-15 16:29:16 -04002507 status = 0;
Alan Stern624d6c02007-05-30 15:35:16 -04002508 } else {
2509 /* device has up to 10 msec to fully suspend */
Alan Stern30b1a7a2011-09-27 21:54:22 +02002510 dev_dbg(&udev->dev, "usb %ssuspend, wakeup %d\n",
2511 (PMSG_IS_AUTO(msg) ? "auto-" : ""),
2512 udev->do_remote_wakeup);
Alan Stern624d6c02007-05-30 15:35:16 -04002513 usb_set_device_state(udev, USB_STATE_SUSPENDED);
2514 msleep(10);
2515 }
Alan Sternc08512c2010-11-15 15:57:58 -05002516 usb_mark_last_busy(hub->hdev);
Alan Stern4956ecc2007-05-30 16:51:28 -04002517 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518}
David Brownellf3f32532005-09-22 22:37:29 -07002519
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520/*
David Brownell390a8c32005-09-13 19:57:27 -07002521 * If the USB "suspend" state is in use (rather than "global suspend"),
2522 * many devices will be individually taken out of suspend state using
Alan Stern54515fe2007-05-30 15:38:58 -04002523 * special "resume" signaling. This routine kicks in shortly after
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524 * hardware resume signaling is finished, either because of selective
2525 * resume (by host) or remote wakeup (by device) ... now see what changed
2526 * in the tree that's rooted at this device.
Alan Stern54515fe2007-05-30 15:38:58 -04002527 *
2528 * If @udev->reset_resume is set then the device is reset before the
2529 * status check is done.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530 */
Alan Stern140d8f62006-07-01 22:07:21 -04002531static int finish_port_resume(struct usb_device *udev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532{
Alan Stern54515fe2007-05-30 15:38:58 -04002533 int status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534 u16 devstatus;
2535
2536 /* caller owns the udev device lock */
Wu Fengguangb9cef6c2008-12-15 15:32:01 +08002537 dev_dbg(&udev->dev, "%s\n",
2538 udev->reset_resume ? "finish reset-resume" : "finish resume");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539
2540 /* usb ch9 identifies four variants of SUSPENDED, based on what
2541 * state the device resumes to. Linux currently won't see the
2542 * first two on the host side; they'd be inside hub_port_init()
2543 * during many timeouts, but khubd can't suspend until later.
2544 */
2545 usb_set_device_state(udev, udev->actconfig
2546 ? USB_STATE_CONFIGURED
2547 : USB_STATE_ADDRESS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548
Alan Stern54515fe2007-05-30 15:38:58 -04002549 /* 10.5.4.5 says not to reset a suspended port if the attached
2550 * device is enabled for remote wakeup. Hence the reset
2551 * operation is carried out here, after the port has been
2552 * resumed.
2553 */
2554 if (udev->reset_resume)
Alan Stern86c57ed2008-06-30 11:14:43 -04002555 retry_reset_resume:
Ming Lei742120c2008-06-18 22:00:29 +08002556 status = usb_reset_and_verify_device(udev);
Alan Stern54515fe2007-05-30 15:38:58 -04002557
Linus Torvalds1da177e2005-04-16 15:20:36 -07002558 /* 10.5.4.5 says be sure devices in the tree are still there.
2559 * For now let's assume the device didn't go crazy on resume,
2560 * and device drivers will know about any resume quirks.
2561 */
Alan Stern54515fe2007-05-30 15:38:58 -04002562 if (status == 0) {
Alan Stern46dede42007-08-14 10:56:10 -04002563 devstatus = 0;
Alan Stern54515fe2007-05-30 15:38:58 -04002564 status = usb_get_status(udev, USB_RECIP_DEVICE, 0, &devstatus);
2565 if (status >= 0)
Alan Stern46dede42007-08-14 10:56:10 -04002566 status = (status > 0 ? 0 : -ENODEV);
Alan Stern86c57ed2008-06-30 11:14:43 -04002567
2568 /* If a normal resume failed, try doing a reset-resume */
2569 if (status && !udev->reset_resume && udev->persist_enabled) {
2570 dev_dbg(&udev->dev, "retry with reset-resume\n");
2571 udev->reset_resume = 1;
2572 goto retry_reset_resume;
2573 }
Alan Stern54515fe2007-05-30 15:38:58 -04002574 }
Alan Sternb40b7a92006-06-19 15:12:38 -04002575
Alan Stern624d6c02007-05-30 15:35:16 -04002576 if (status) {
2577 dev_dbg(&udev->dev, "gone after usb resume? status %d\n",
2578 status);
2579 } else if (udev->actconfig) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002580 le16_to_cpus(&devstatus);
Alan Stern686314c2007-05-30 15:34:36 -04002581 if (devstatus & (1 << USB_DEVICE_REMOTE_WAKEUP)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002582 status = usb_control_msg(udev,
2583 usb_sndctrlpipe(udev, 0),
2584 USB_REQ_CLEAR_FEATURE,
2585 USB_RECIP_DEVICE,
2586 USB_DEVICE_REMOTE_WAKEUP, 0,
2587 NULL, 0,
2588 USB_CTRL_SET_TIMEOUT);
Alan Sterna8e7c562006-07-01 22:11:02 -04002589 if (status)
Wu Fengguangb9cef6c2008-12-15 15:32:01 +08002590 dev_dbg(&udev->dev,
2591 "disable remote wakeup, status %d\n",
2592 status);
Alan Stern4bf0ba82005-11-21 11:58:07 -05002593 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002594 status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002595 }
2596 return status;
2597}
2598
Alan Stern624d6c02007-05-30 15:35:16 -04002599/*
2600 * usb_port_resume - re-activate a suspended usb device's upstream port
2601 * @udev: device to re-activate, not a root hub
2602 * Context: must be able to sleep; device not locked; pm locks held
2603 *
2604 * This will re-activate the suspended device, increasing power usage
2605 * while letting drivers communicate again with its endpoints.
2606 * USB resume explicitly guarantees that the power session between
2607 * the host and the device is the same as it was when the device
2608 * suspended.
2609 *
Alan Sternfeccc302008-03-03 15:15:59 -05002610 * If @udev->reset_resume is set then this routine won't check that the
2611 * port is still enabled. Furthermore, finish_port_resume() above will
Alan Stern54515fe2007-05-30 15:38:58 -04002612 * reset @udev. The end result is that a broken power session can be
2613 * recovered and @udev will appear to persist across a loss of VBUS power.
2614 *
2615 * For example, if a host controller doesn't maintain VBUS suspend current
2616 * during a system sleep or is reset when the system wakes up, all the USB
2617 * power sessions below it will be broken. This is especially troublesome
2618 * for mass-storage devices containing mounted filesystems, since the
2619 * device will appear to have disconnected and all the memory mappings
2620 * to it will be lost. Using the USB_PERSIST facility, the device can be
2621 * made to appear as if it had not disconnected.
2622 *
Ming Lei742120c2008-06-18 22:00:29 +08002623 * This facility can be dangerous. Although usb_reset_and_verify_device() makes
Alan Sternfeccc302008-03-03 15:15:59 -05002624 * every effort to insure that the same device is present after the
Alan Stern54515fe2007-05-30 15:38:58 -04002625 * reset as before, it cannot provide a 100% guarantee. Furthermore it's
2626 * quite possible for a device to remain unaltered but its media to be
2627 * changed. If the user replaces a flash memory card while the system is
2628 * asleep, he will have only himself to blame when the filesystem on the
2629 * new card is corrupted and the system crashes.
2630 *
Alan Stern624d6c02007-05-30 15:35:16 -04002631 * Returns 0 on success, else negative errno.
2632 */
Alan Stern65bfd292008-11-25 16:39:18 -05002633int usb_port_resume(struct usb_device *udev, pm_message_t msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002634{
Alan Stern624d6c02007-05-30 15:35:16 -04002635 struct usb_hub *hub = hdev_to_hub(udev->parent);
2636 int port1 = udev->portnum;
2637 int status;
2638 u16 portchange, portstatus;
Alan Sternd25450c2006-11-20 11:14:30 -05002639
2640 /* Skip the initial Clear-Suspend step for a remote wakeup */
2641 status = hub_port_status(hub, port1, &portstatus, &portchange);
Andiry Xu0ed9a572011-04-27 18:07:43 +08002642 if (status == 0 && !port_is_suspended(hub, portstatus))
Alan Sternd25450c2006-11-20 11:14:30 -05002643 goto SuspendCleared;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002644
2645 // dev_dbg(hub->intfdev, "resume port %d\n", port1);
2646
Alan Sternd5cbad42006-08-11 16:52:39 -04002647 set_bit(port1, hub->busy_bits);
2648
Linus Torvalds1da177e2005-04-16 15:20:36 -07002649 /* see 7.1.7.7; affects power usage, but not budgeting */
Andiry Xua7114232011-04-27 18:07:50 +08002650 if (hub_is_superspeed(hub->hdev))
2651 status = set_port_feature(hub->hdev,
2652 port1 | (USB_SS_PORT_LS_U0 << 3),
2653 USB_PORT_FEAT_LINK_STATE);
2654 else
2655 status = clear_port_feature(hub->hdev,
2656 port1, USB_PORT_FEAT_SUSPEND);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002657 if (status) {
Alan Stern624d6c02007-05-30 15:35:16 -04002658 dev_dbg(hub->intfdev, "can't resume port %d, status %d\n",
2659 port1, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002661 /* drive resume for at least 20 msec */
Alan Stern686314c2007-05-30 15:34:36 -04002662 dev_dbg(&udev->dev, "usb %sresume\n",
Alan Stern5b1b0b82011-08-19 23:49:48 +02002663 (PMSG_IS_AUTO(msg) ? "auto-" : ""));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002664 msleep(25);
2665
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666 /* Virtual root hubs can trigger on GET_PORT_STATUS to
2667 * stop resume signaling. Then finish the resume
2668 * sequence.
2669 */
Alan Sternd25450c2006-11-20 11:14:30 -05002670 status = hub_port_status(hub, port1, &portstatus, &portchange);
Alan Stern54515fe2007-05-30 15:38:58 -04002671
Alan Sternb01b03f2008-04-28 11:06:11 -04002672 /* TRSMRCY = 10 msec */
2673 msleep(10);
2674 }
Alan Stern54515fe2007-05-30 15:38:58 -04002675
Alan Sternb01b03f2008-04-28 11:06:11 -04002676 SuspendCleared:
2677 if (status == 0) {
Andiry Xua7114232011-04-27 18:07:50 +08002678 if (hub_is_superspeed(hub->hdev)) {
2679 if (portchange & USB_PORT_STAT_C_LINK_STATE)
2680 clear_port_feature(hub->hdev, port1,
2681 USB_PORT_FEAT_C_PORT_LINK_STATE);
2682 } else {
2683 if (portchange & USB_PORT_STAT_C_SUSPEND)
2684 clear_port_feature(hub->hdev, port1,
2685 USB_PORT_FEAT_C_SUSPEND);
2686 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002687 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002688
Alan Sternd5cbad42006-08-11 16:52:39 -04002689 clear_bit(port1, hub->busy_bits);
Alan Sternd5cbad42006-08-11 16:52:39 -04002690
Alan Sternb01b03f2008-04-28 11:06:11 -04002691 status = check_port_resume_type(udev,
2692 hub, port1, status, portchange, portstatus);
Alan Stern54515fe2007-05-30 15:38:58 -04002693 if (status == 0)
2694 status = finish_port_resume(udev);
2695 if (status < 0) {
2696 dev_dbg(&udev->dev, "can't resume, status %d\n", status);
2697 hub_port_logical_disconnect(hub, port1);
Andiry Xu65580b432011-09-23 14:19:52 -07002698 } else {
2699 /* Try to enable USB2 hardware LPM */
2700 if (udev->usb2_hw_lpm_capable == 1)
2701 usb_set_usb2_hardware_lpm(udev, 1);
Alan Stern54515fe2007-05-30 15:38:58 -04002702 }
Andiry Xu65580b432011-09-23 14:19:52 -07002703
Linus Torvalds1da177e2005-04-16 15:20:36 -07002704 return status;
2705}
2706
Alan Stern8808f002008-04-28 11:06:55 -04002707/* caller has locked udev */
Alan Stern0534d462010-01-08 12:56:30 -05002708int usb_remote_wakeup(struct usb_device *udev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002709{
2710 int status = 0;
2711
Linus Torvalds1da177e2005-04-16 15:20:36 -07002712 if (udev->state == USB_STATE_SUSPENDED) {
Alan Stern645daaa2006-08-30 15:47:02 -04002713 dev_dbg(&udev->dev, "usb %sresume\n", "wakeup-");
Alan Stern9bbdf1e2010-01-08 12:57:28 -05002714 status = usb_autoresume_device(udev);
2715 if (status == 0) {
2716 /* Let the drivers do their thing, then... */
2717 usb_autosuspend_device(udev);
2718 }
Alan Sternd25450c2006-11-20 11:14:30 -05002719 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002720 return status;
2721}
2722
Alan Sternd388dab2006-07-01 22:14:24 -04002723#else /* CONFIG_USB_SUSPEND */
2724
2725/* When CONFIG_USB_SUSPEND isn't set, we never suspend or resume any ports. */
2726
Alan Stern65bfd292008-11-25 16:39:18 -05002727int usb_port_suspend(struct usb_device *udev, pm_message_t msg)
Alan Sternd388dab2006-07-01 22:14:24 -04002728{
2729 return 0;
2730}
2731
Alan Sternb01b03f2008-04-28 11:06:11 -04002732/* However we may need to do a reset-resume */
2733
Alan Stern65bfd292008-11-25 16:39:18 -05002734int usb_port_resume(struct usb_device *udev, pm_message_t msg)
Alan Sternd388dab2006-07-01 22:14:24 -04002735{
Alan Sternb01b03f2008-04-28 11:06:11 -04002736 struct usb_hub *hub = hdev_to_hub(udev->parent);
2737 int port1 = udev->portnum;
2738 int status;
2739 u16 portchange, portstatus;
Alan Stern54515fe2007-05-30 15:38:58 -04002740
Alan Sternb01b03f2008-04-28 11:06:11 -04002741 status = hub_port_status(hub, port1, &portstatus, &portchange);
2742 status = check_port_resume_type(udev,
2743 hub, port1, status, portchange, portstatus);
2744
2745 if (status) {
2746 dev_dbg(&udev->dev, "can't resume, status %d\n", status);
2747 hub_port_logical_disconnect(hub, port1);
2748 } else if (udev->reset_resume) {
Alan Stern54515fe2007-05-30 15:38:58 -04002749 dev_dbg(&udev->dev, "reset-resume\n");
Ming Lei742120c2008-06-18 22:00:29 +08002750 status = usb_reset_and_verify_device(udev);
Alan Stern54515fe2007-05-30 15:38:58 -04002751 }
2752 return status;
Alan Sternd388dab2006-07-01 22:14:24 -04002753}
2754
Alan Sternd388dab2006-07-01 22:14:24 -04002755#endif
2756
David Brownelldb690872005-09-13 19:56:33 -07002757static int hub_suspend(struct usb_interface *intf, pm_message_t msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002758{
2759 struct usb_hub *hub = usb_get_intfdata (intf);
2760 struct usb_device *hdev = hub->hdev;
2761 unsigned port1;
Sarah Sharp4296c70a2012-01-06 10:34:31 -08002762 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002763
Alan Sterncbb33002011-06-15 16:29:16 -04002764 /* Warn if children aren't already suspended */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002765 for (port1 = 1; port1 <= hdev->maxchild; port1++) {
2766 struct usb_device *udev;
2767
2768 udev = hdev->children [port1-1];
Alan Stern6840d252007-09-10 11:34:26 -04002769 if (udev && udev->can_submit) {
Alan Sterncbb33002011-06-15 16:29:16 -04002770 dev_warn(&intf->dev, "port %d nyet suspended\n", port1);
Alan Stern5b1b0b82011-08-19 23:49:48 +02002771 if (PMSG_IS_AUTO(msg))
Alan Sterncbb33002011-06-15 16:29:16 -04002772 return -EBUSY;
David Brownellc9f89fa2005-09-13 19:57:04 -07002773 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002774 }
Sarah Sharp4296c70a2012-01-06 10:34:31 -08002775 if (hub_is_superspeed(hdev) && hdev->do_remote_wakeup) {
2776 /* Enable hub to send remote wakeup for all ports. */
2777 for (port1 = 1; port1 <= hdev->maxchild; port1++) {
2778 status = set_port_feature(hdev,
2779 port1 |
2780 USB_PORT_FEAT_REMOTE_WAKE_CONNECT |
2781 USB_PORT_FEAT_REMOTE_WAKE_DISCONNECT |
2782 USB_PORT_FEAT_REMOTE_WAKE_OVER_CURRENT,
2783 USB_PORT_FEAT_REMOTE_WAKE_MASK);
2784 }
2785 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002786
Harvey Harrison441b62c2008-03-03 16:08:34 -08002787 dev_dbg(&intf->dev, "%s\n", __func__);
Alan Stern40f122f2006-11-09 14:44:33 -05002788
David Brownellc9f89fa2005-09-13 19:57:04 -07002789 /* stop khubd and related activity */
Alan Stern43303542008-04-28 11:07:31 -04002790 hub_quiesce(hub, HUB_SUSPEND);
Alan Sternb6f64362007-05-04 11:51:54 -04002791 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002792}
2793
2794static int hub_resume(struct usb_interface *intf)
2795{
Alan Stern5e6effa2008-03-03 15:15:51 -05002796 struct usb_hub *hub = usb_get_intfdata(intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002797
Alan Stern5e6effa2008-03-03 15:15:51 -05002798 dev_dbg(&intf->dev, "%s\n", __func__);
Alan Sternf2835212008-04-28 11:07:17 -04002799 hub_activate(hub, HUB_RESUME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002800 return 0;
2801}
2802
Alan Sternb41a60e2007-05-30 15:39:33 -04002803static int hub_reset_resume(struct usb_interface *intf)
Alan Sternf07600c2007-05-30 15:38:16 -04002804{
Alan Sternb41a60e2007-05-30 15:39:33 -04002805 struct usb_hub *hub = usb_get_intfdata(intf);
Alan Sternf07600c2007-05-30 15:38:16 -04002806
Alan Stern5e6effa2008-03-03 15:15:51 -05002807 dev_dbg(&intf->dev, "%s\n", __func__);
Alan Sternf2835212008-04-28 11:07:17 -04002808 hub_activate(hub, HUB_RESET_RESUME);
Alan Sternf07600c2007-05-30 15:38:16 -04002809 return 0;
2810}
2811
Alan Stern54515fe2007-05-30 15:38:58 -04002812/**
2813 * usb_root_hub_lost_power - called by HCD if the root hub lost Vbus power
2814 * @rhdev: struct usb_device for the root hub
2815 *
2816 * The USB host controller driver calls this function when its root hub
2817 * is resumed and Vbus power has been interrupted or the controller
Alan Sternfeccc302008-03-03 15:15:59 -05002818 * has been reset. The routine marks @rhdev as having lost power.
2819 * When the hub driver is resumed it will take notice and carry out
2820 * power-session recovery for all the "USB-PERSIST"-enabled child devices;
2821 * the others will be disconnected.
Alan Stern54515fe2007-05-30 15:38:58 -04002822 */
2823void usb_root_hub_lost_power(struct usb_device *rhdev)
2824{
2825 dev_warn(&rhdev->dev, "root hub lost power or was reset\n");
2826 rhdev->reset_resume = 1;
2827}
2828EXPORT_SYMBOL_GPL(usb_root_hub_lost_power);
2829
Alan Sternd388dab2006-07-01 22:14:24 -04002830#else /* CONFIG_PM */
2831
Alan Sternf07600c2007-05-30 15:38:16 -04002832#define hub_suspend NULL
2833#define hub_resume NULL
2834#define hub_reset_resume NULL
Alan Sternd388dab2006-07-01 22:14:24 -04002835#endif
2836
Linus Torvalds1da177e2005-04-16 15:20:36 -07002837
2838/* USB 2.0 spec, 7.1.7.3 / fig 7-29:
2839 *
2840 * Between connect detection and reset signaling there must be a delay
2841 * of 100ms at least for debounce and power-settling. The corresponding
2842 * timer shall restart whenever the downstream port detects a disconnect.
2843 *
2844 * Apparently there are some bluetooth and irda-dongles and a number of
2845 * low-speed devices for which this debounce period may last over a second.
2846 * Not covered by the spec - but easy to deal with.
2847 *
2848 * This implementation uses a 1500ms total debounce timeout; if the
2849 * connection isn't stable by then it returns -ETIMEDOUT. It checks
2850 * every 25ms for transient disconnects. When the port status has been
2851 * unchanged for 100ms it returns the port status.
2852 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002853static int hub_port_debounce(struct usb_hub *hub, int port1)
2854{
2855 int ret;
2856 int total_time, stable_time = 0;
2857 u16 portchange, portstatus;
2858 unsigned connection = 0xffff;
2859
2860 for (total_time = 0; ; total_time += HUB_DEBOUNCE_STEP) {
2861 ret = hub_port_status(hub, port1, &portstatus, &portchange);
2862 if (ret < 0)
2863 return ret;
2864
2865 if (!(portchange & USB_PORT_STAT_C_CONNECTION) &&
2866 (portstatus & USB_PORT_STAT_CONNECTION) == connection) {
2867 stable_time += HUB_DEBOUNCE_STEP;
2868 if (stable_time >= HUB_DEBOUNCE_STABLE)
2869 break;
2870 } else {
2871 stable_time = 0;
2872 connection = portstatus & USB_PORT_STAT_CONNECTION;
2873 }
2874
2875 if (portchange & USB_PORT_STAT_C_CONNECTION) {
2876 clear_port_feature(hub->hdev, port1,
2877 USB_PORT_FEAT_C_CONNECTION);
2878 }
2879
2880 if (total_time >= HUB_DEBOUNCE_TIMEOUT)
2881 break;
2882 msleep(HUB_DEBOUNCE_STEP);
2883 }
2884
2885 dev_dbg (hub->intfdev,
2886 "debounce: port %d: total %dms stable %dms status 0x%x\n",
2887 port1, total_time, stable_time, portstatus);
2888
2889 if (stable_time < HUB_DEBOUNCE_STABLE)
2890 return -ETIMEDOUT;
2891 return portstatus;
2892}
2893
Inaky Perez-Gonzalezfc721f52008-04-08 13:24:46 -07002894void usb_ep0_reinit(struct usb_device *udev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002895{
Alan Sternddeac4e72009-01-15 17:03:33 -05002896 usb_disable_endpoint(udev, 0 + USB_DIR_IN, true);
2897 usb_disable_endpoint(udev, 0 + USB_DIR_OUT, true);
Alan Stern2caf7fc2008-12-31 11:31:33 -05002898 usb_enable_endpoint(udev, &udev->ep0, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002899}
Inaky Perez-Gonzalezfc721f52008-04-08 13:24:46 -07002900EXPORT_SYMBOL_GPL(usb_ep0_reinit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901
2902#define usb_sndaddr0pipe() (PIPE_CONTROL << 30)
2903#define usb_rcvaddr0pipe() ((PIPE_CONTROL << 30) | USB_DIR_IN)
2904
Alan Stern4326ed02007-07-30 17:08:43 -04002905static int hub_set_address(struct usb_device *udev, int devnum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002906{
2907 int retval;
Sarah Sharpc6515272009-04-27 19:57:26 -07002908 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002909
Sarah Sharpc6515272009-04-27 19:57:26 -07002910 /*
2911 * The host controller will choose the device address,
2912 * instead of the core having chosen it earlier
2913 */
2914 if (!hcd->driver->address_device && devnum <= 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002915 return -EINVAL;
2916 if (udev->state == USB_STATE_ADDRESS)
2917 return 0;
2918 if (udev->state != USB_STATE_DEFAULT)
2919 return -EINVAL;
Andiry Xuc8d4af82010-10-14 07:22:51 -07002920 if (hcd->driver->address_device)
Sarah Sharpc6515272009-04-27 19:57:26 -07002921 retval = hcd->driver->address_device(hcd, udev);
Andiry Xuc8d4af82010-10-14 07:22:51 -07002922 else
Sarah Sharpc6515272009-04-27 19:57:26 -07002923 retval = usb_control_msg(udev, usb_sndaddr0pipe(),
2924 USB_REQ_SET_ADDRESS, 0, devnum, 0,
2925 NULL, 0, USB_CTRL_SET_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002926 if (retval == 0) {
Alan Stern3b29b682011-02-22 09:53:41 -05002927 update_devnum(udev, devnum);
David Vrabel4953d142008-04-08 13:24:46 -07002928 /* Device now using proper address. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002929 usb_set_device_state(udev, USB_STATE_ADDRESS);
Inaky Perez-Gonzalezfc721f52008-04-08 13:24:46 -07002930 usb_ep0_reinit(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002931 }
2932 return retval;
2933}
2934
2935/* Reset device, (re)assign address, get device descriptor.
2936 * Device connection must be stable, no more debouncing needed.
2937 * Returns device in USB_STATE_ADDRESS, except on error.
2938 *
2939 * If this is called for an already-existing device (as part of
Ming Lei742120c2008-06-18 22:00:29 +08002940 * usb_reset_and_verify_device), the caller must own the device lock. For a
Linus Torvalds1da177e2005-04-16 15:20:36 -07002941 * newly detected device that is not accessible through any global
2942 * pointers, it's not necessary to lock the device.
2943 */
2944static int
2945hub_port_init (struct usb_hub *hub, struct usb_device *udev, int port1,
2946 int retry_counter)
2947{
Arjan van de Ven4186ecf2006-01-11 15:55:29 +01002948 static DEFINE_MUTEX(usb_address0_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002949
2950 struct usb_device *hdev = hub->hdev;
Sarah Sharpe7b77172009-04-27 19:54:26 -07002951 struct usb_hcd *hcd = bus_to_hcd(hdev->bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002952 int i, j, retval;
2953 unsigned delay = HUB_SHORT_RESET_TIME;
2954 enum usb_device_speed oldspeed = udev->speed;
Michal Nazarewicze538dfd2011-08-30 17:11:19 +02002955 const char *speed;
Alan Stern4326ed02007-07-30 17:08:43 -04002956 int devnum = udev->devnum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002957
2958 /* root hub ports have a slightly longer reset period
2959 * (from USB 2.0 spec, section 7.1.7.5)
2960 */
2961 if (!hdev->parent) {
2962 delay = HUB_ROOT_RESET_TIME;
2963 if (port1 == hdev->bus->otg_port)
2964 hdev->bus->b_hnp_enable = 0;
2965 }
2966
2967 /* Some low speed devices have problems with the quick delay, so */
2968 /* be a bit pessimistic with those devices. RHbug #23670 */
2969 if (oldspeed == USB_SPEED_LOW)
2970 delay = HUB_LONG_RESET_TIME;
2971
Arjan van de Ven4186ecf2006-01-11 15:55:29 +01002972 mutex_lock(&usb_address0_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002973
Luben Tuikov07194ab2011-02-11 11:33:10 -08002974 /* Reset the device; full speed may morph to high speed */
2975 /* FIXME a USB 2.0 device may morph into SuperSpeed on reset. */
Andiry Xu75d7cf72011-09-13 16:41:11 -07002976 retval = hub_port_reset(hub, port1, udev, delay, false);
Luben Tuikov07194ab2011-02-11 11:33:10 -08002977 if (retval < 0) /* error or disconnect */
2978 goto fail;
2979 /* success, speed is known */
2980
Linus Torvalds1da177e2005-04-16 15:20:36 -07002981 retval = -ENODEV;
2982
2983 if (oldspeed != USB_SPEED_UNKNOWN && oldspeed != udev->speed) {
2984 dev_dbg(&udev->dev, "device reset changed speed!\n");
2985 goto fail;
2986 }
2987 oldspeed = udev->speed;
Alan Stern4326ed02007-07-30 17:08:43 -04002988
Linus Torvalds1da177e2005-04-16 15:20:36 -07002989 /* USB 2.0 section 5.5.3 talks about ep0 maxpacket ...
2990 * it's fixed size except for full speed devices.
Inaky Perez-Gonzalez5bb6e0a2006-08-25 19:35:30 -07002991 * For Wireless USB devices, ep0 max packet is always 512 (tho
2992 * reported as 0xff in the device descriptor). WUSB1.0[4.8.1].
Linus Torvalds1da177e2005-04-16 15:20:36 -07002993 */
2994 switch (udev->speed) {
Sarah Sharp6b403b02009-04-27 19:54:10 -07002995 case USB_SPEED_SUPER:
Greg Kroah-Hartman551cdbb2010-01-14 11:08:04 -08002996 case USB_SPEED_WIRELESS: /* fixed at 512 */
Harvey Harrison551509d2009-02-11 14:11:36 -08002997 udev->ep0.desc.wMaxPacketSize = cpu_to_le16(512);
Inaky Perez-Gonzalez5bb6e0a2006-08-25 19:35:30 -07002998 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002999 case USB_SPEED_HIGH: /* fixed at 64 */
Harvey Harrison551509d2009-02-11 14:11:36 -08003000 udev->ep0.desc.wMaxPacketSize = cpu_to_le16(64);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003001 break;
3002 case USB_SPEED_FULL: /* 8, 16, 32, or 64 */
3003 /* to determine the ep0 maxpacket size, try to read
3004 * the device descriptor to get bMaxPacketSize0 and
3005 * then correct our initial guess.
3006 */
Harvey Harrison551509d2009-02-11 14:11:36 -08003007 udev->ep0.desc.wMaxPacketSize = cpu_to_le16(64);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003008 break;
3009 case USB_SPEED_LOW: /* fixed at 8 */
Harvey Harrison551509d2009-02-11 14:11:36 -08003010 udev->ep0.desc.wMaxPacketSize = cpu_to_le16(8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003011 break;
3012 default:
3013 goto fail;
3014 }
Michal Nazarewicze538dfd2011-08-30 17:11:19 +02003015
3016 if (udev->speed == USB_SPEED_WIRELESS)
3017 speed = "variable speed Wireless";
3018 else
3019 speed = usb_speed_string(udev->speed);
3020
Sarah Sharpc6515272009-04-27 19:57:26 -07003021 if (udev->speed != USB_SPEED_SUPER)
3022 dev_info(&udev->dev,
Michal Nazarewicze538dfd2011-08-30 17:11:19 +02003023 "%s %s USB device number %d using %s\n",
3024 (udev->config) ? "reset" : "new", speed,
Alan Stern3b29b682011-02-22 09:53:41 -05003025 devnum, udev->bus->controller->driver->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003026
3027 /* Set up TT records, if needed */
3028 if (hdev->tt) {
3029 udev->tt = hdev->tt;
3030 udev->ttport = hdev->ttport;
3031 } else if (udev->speed != USB_SPEED_HIGH
3032 && hdev->speed == USB_SPEED_HIGH) {
Alan Sternd199c962011-01-31 10:56:37 -05003033 if (!hub->tt.hub) {
3034 dev_err(&udev->dev, "parent hub has no TT\n");
3035 retval = -EINVAL;
3036 goto fail;
3037 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003038 udev->tt = &hub->tt;
3039 udev->ttport = port1;
3040 }
3041
3042 /* Why interleave GET_DESCRIPTOR and SET_ADDRESS this way?
3043 * Because device hardware and firmware is sometimes buggy in
3044 * this area, and this is how Linux has done it for ages.
3045 * Change it cautiously.
3046 *
3047 * NOTE: If USE_NEW_SCHEME() is true we will start by issuing
3048 * a 64-byte GET_DESCRIPTOR request. This is what Windows does,
3049 * so it may help with some non-standards-compliant devices.
3050 * Otherwise we start with SET_ADDRESS and then try to read the
3051 * first 8 bytes of the device descriptor to get the ep0 maxpacket
3052 * value.
3053 */
3054 for (i = 0; i < GET_DESCRIPTOR_TRIES; (++i, msleep(100))) {
Sarah Sharpc6515272009-04-27 19:57:26 -07003055 if (USE_NEW_SCHEME(retry_counter) && !(hcd->driver->flags & HCD_USB3)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003056 struct usb_device_descriptor *buf;
3057 int r = 0;
3058
3059#define GET_DESCRIPTOR_BUFSIZE 64
3060 buf = kmalloc(GET_DESCRIPTOR_BUFSIZE, GFP_NOIO);
3061 if (!buf) {
3062 retval = -ENOMEM;
3063 continue;
3064 }
3065
Alan Sternb89ee192007-05-11 10:19:04 -04003066 /* Retry on all errors; some devices are flakey.
3067 * 255 is for WUSB devices, we actually need to use
3068 * 512 (WUSB1.0[4.8.1]).
Linus Torvalds1da177e2005-04-16 15:20:36 -07003069 */
3070 for (j = 0; j < 3; ++j) {
3071 buf->bMaxPacketSize0 = 0;
3072 r = usb_control_msg(udev, usb_rcvaddr0pipe(),
3073 USB_REQ_GET_DESCRIPTOR, USB_DIR_IN,
3074 USB_DT_DEVICE << 8, 0,
3075 buf, GET_DESCRIPTOR_BUFSIZE,
Jaroslav Kyselafd7c5192008-10-10 16:24:45 +02003076 initial_descriptor_timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003077 switch (buf->bMaxPacketSize0) {
Inaky Perez-Gonzalez5bb6e0a2006-08-25 19:35:30 -07003078 case 8: case 16: case 32: case 64: case 255:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003079 if (buf->bDescriptorType ==
3080 USB_DT_DEVICE) {
3081 r = 0;
3082 break;
3083 }
3084 /* FALL THROUGH */
3085 default:
3086 if (r == 0)
3087 r = -EPROTO;
3088 break;
3089 }
3090 if (r == 0)
3091 break;
3092 }
3093 udev->descriptor.bMaxPacketSize0 =
3094 buf->bMaxPacketSize0;
3095 kfree(buf);
3096
Andiry Xu75d7cf72011-09-13 16:41:11 -07003097 retval = hub_port_reset(hub, port1, udev, delay, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003098 if (retval < 0) /* error or disconnect */
3099 goto fail;
3100 if (oldspeed != udev->speed) {
3101 dev_dbg(&udev->dev,
3102 "device reset changed speed!\n");
3103 retval = -ENODEV;
3104 goto fail;
3105 }
3106 if (r) {
Wu Fengguangb9cef6c2008-12-15 15:32:01 +08003107 dev_err(&udev->dev,
3108 "device descriptor read/64, error %d\n",
3109 r);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003110 retval = -EMSGSIZE;
3111 continue;
3112 }
3113#undef GET_DESCRIPTOR_BUFSIZE
3114 }
3115
Inaky Perez-Gonzalez6c529cd2008-04-08 13:24:46 -07003116 /*
3117 * If device is WUSB, we already assigned an
3118 * unauthorized address in the Connect Ack sequence;
3119 * authorization will assign the final address.
3120 */
Sarah Sharpc6515272009-04-27 19:57:26 -07003121 if (udev->wusb == 0) {
Inaky Perez-Gonzalez6c529cd2008-04-08 13:24:46 -07003122 for (j = 0; j < SET_ADDRESS_TRIES; ++j) {
3123 retval = hub_set_address(udev, devnum);
3124 if (retval >= 0)
3125 break;
3126 msleep(200);
3127 }
3128 if (retval < 0) {
3129 dev_err(&udev->dev,
3130 "device not accepting address %d, error %d\n",
3131 devnum, retval);
3132 goto fail;
3133 }
Sarah Sharpc6515272009-04-27 19:57:26 -07003134 if (udev->speed == USB_SPEED_SUPER) {
3135 devnum = udev->devnum;
3136 dev_info(&udev->dev,
Alan Stern3b29b682011-02-22 09:53:41 -05003137 "%s SuperSpeed USB device number %d using %s\n",
Sarah Sharpc6515272009-04-27 19:57:26 -07003138 (udev->config) ? "reset" : "new",
Alan Stern3b29b682011-02-22 09:53:41 -05003139 devnum, udev->bus->controller->driver->name);
Sarah Sharpc6515272009-04-27 19:57:26 -07003140 }
Inaky Perez-Gonzalez6c529cd2008-04-08 13:24:46 -07003141
3142 /* cope with hardware quirkiness:
3143 * - let SET_ADDRESS settle, some device hardware wants it
3144 * - read ep0 maxpacket even for high and low speed,
3145 */
3146 msleep(10);
Sarah Sharpc6515272009-04-27 19:57:26 -07003147 if (USE_NEW_SCHEME(retry_counter) && !(hcd->driver->flags & HCD_USB3))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003148 break;
Inaky Perez-Gonzalez6c529cd2008-04-08 13:24:46 -07003149 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003150
3151 retval = usb_get_device_descriptor(udev, 8);
3152 if (retval < 8) {
Wu Fengguangb9cef6c2008-12-15 15:32:01 +08003153 dev_err(&udev->dev,
3154 "device descriptor read/8, error %d\n",
3155 retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003156 if (retval >= 0)
3157 retval = -EMSGSIZE;
3158 } else {
3159 retval = 0;
3160 break;
3161 }
3162 }
3163 if (retval)
3164 goto fail;
3165
Sarah Sharp6b403b02009-04-27 19:54:10 -07003166 if (udev->descriptor.bMaxPacketSize0 == 0xff ||
3167 udev->speed == USB_SPEED_SUPER)
3168 i = 512;
3169 else
3170 i = udev->descriptor.bMaxPacketSize0;
Kuninori Morimoto29cc8892011-08-23 03:12:03 -07003171 if (usb_endpoint_maxp(&udev->ep0.desc) != i) {
Alan Stern56626a72010-10-14 15:25:21 -04003172 if (udev->speed == USB_SPEED_LOW ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07003173 !(i == 8 || i == 16 || i == 32 || i == 64)) {
Alan Stern56626a72010-10-14 15:25:21 -04003174 dev_err(&udev->dev, "Invalid ep0 maxpacket: %d\n", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003175 retval = -EMSGSIZE;
3176 goto fail;
3177 }
Alan Stern56626a72010-10-14 15:25:21 -04003178 if (udev->speed == USB_SPEED_FULL)
3179 dev_dbg(&udev->dev, "ep0 maxpacket = %d\n", i);
3180 else
3181 dev_warn(&udev->dev, "Using ep0 maxpacket: %d\n", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003182 udev->ep0.desc.wMaxPacketSize = cpu_to_le16(i);
Inaky Perez-Gonzalezfc721f52008-04-08 13:24:46 -07003183 usb_ep0_reinit(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003184 }
3185
3186 retval = usb_get_device_descriptor(udev, USB_DT_DEVICE_SIZE);
3187 if (retval < (signed)sizeof(udev->descriptor)) {
Wu Fengguangb9cef6c2008-12-15 15:32:01 +08003188 dev_err(&udev->dev, "device descriptor read/all, error %d\n",
3189 retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003190 if (retval >= 0)
3191 retval = -ENOMSG;
3192 goto fail;
3193 }
3194
Andiry Xu1ff4df52011-09-23 14:19:48 -07003195 if (udev->wusb == 0 && le16_to_cpu(udev->descriptor.bcdUSB) >= 0x0201) {
3196 retval = usb_get_bos_descriptor(udev);
3197 if (!retval) {
3198 if (udev->bos->ext_cap && (USB_LPM_SUPPORT &
3199 le32_to_cpu(udev->bos->ext_cap->bmAttributes)))
3200 udev->lpm_capable = 1;
3201 }
3202 }
Andiry Xu3148bf02011-09-23 14:19:47 -07003203
Linus Torvalds1da177e2005-04-16 15:20:36 -07003204 retval = 0;
Alek Du48f24972010-06-04 15:47:55 +08003205 /* notify HCD that we have a device connected and addressed */
3206 if (hcd->driver->update_device)
3207 hcd->driver->update_device(hcd, udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003208fail:
Alan Stern4326ed02007-07-30 17:08:43 -04003209 if (retval) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003210 hub_port_disable(hub, port1, 0);
Alan Stern3b29b682011-02-22 09:53:41 -05003211 update_devnum(udev, devnum); /* for disconnect processing */
Alan Stern4326ed02007-07-30 17:08:43 -04003212 }
Arjan van de Ven4186ecf2006-01-11 15:55:29 +01003213 mutex_unlock(&usb_address0_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003214 return retval;
3215}
3216
3217static void
3218check_highspeed (struct usb_hub *hub, struct usb_device *udev, int port1)
3219{
3220 struct usb_qualifier_descriptor *qual;
3221 int status;
3222
Christoph Lametere94b1762006-12-06 20:33:17 -08003223 qual = kmalloc (sizeof *qual, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003224 if (qual == NULL)
3225 return;
3226
3227 status = usb_get_descriptor (udev, USB_DT_DEVICE_QUALIFIER, 0,
3228 qual, sizeof *qual);
3229 if (status == sizeof *qual) {
3230 dev_info(&udev->dev, "not running at top speed; "
3231 "connect to a high speed hub\n");
3232 /* hub LEDs are probably harder to miss than syslog */
3233 if (hub->has_indicators) {
3234 hub->indicator[port1-1] = INDICATOR_GREEN_BLINK;
David Howellsc4028952006-11-22 14:57:56 +00003235 schedule_delayed_work (&hub->leds, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003236 }
3237 }
Jesper Juhl1bc3c9e2005-04-18 17:39:34 -07003238 kfree(qual);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003239}
3240
3241static unsigned
3242hub_power_remaining (struct usb_hub *hub)
3243{
3244 struct usb_device *hdev = hub->hdev;
3245 int remaining;
Alan Stern55c52712005-11-23 12:03:12 -05003246 int port1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003247
Alan Stern55c52712005-11-23 12:03:12 -05003248 if (!hub->limited_power)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003249 return 0;
3250
Alan Stern55c52712005-11-23 12:03:12 -05003251 remaining = hdev->bus_mA - hub->descriptor->bHubContrCurrent;
3252 for (port1 = 1; port1 <= hdev->maxchild; ++port1) {
3253 struct usb_device *udev = hdev->children[port1 - 1];
3254 int delta;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003255
3256 if (!udev)
3257 continue;
3258
Alan Stern55c52712005-11-23 12:03:12 -05003259 /* Unconfigured devices may not use more than 100mA,
3260 * or 8mA for OTG ports */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003261 if (udev->actconfig)
Alan Stern55c52712005-11-23 12:03:12 -05003262 delta = udev->actconfig->desc.bMaxPower * 2;
3263 else if (port1 != udev->bus->otg_port || hdev->parent)
3264 delta = 100;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003265 else
Alan Stern55c52712005-11-23 12:03:12 -05003266 delta = 8;
3267 if (delta > hub->mA_per_port)
Wu Fengguangb9cef6c2008-12-15 15:32:01 +08003268 dev_warn(&udev->dev,
3269 "%dmA is over %umA budget for port %d!\n",
3270 delta, hub->mA_per_port, port1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003271 remaining -= delta;
3272 }
3273 if (remaining < 0) {
Alan Stern55c52712005-11-23 12:03:12 -05003274 dev_warn(hub->intfdev, "%dmA over power budget!\n",
3275 - remaining);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003276 remaining = 0;
3277 }
3278 return remaining;
3279}
3280
3281/* Handle physical or logical connection change events.
3282 * This routine is called when:
3283 * a port connection-change occurs;
3284 * a port enable-change occurs (often caused by EMI);
Ming Lei742120c2008-06-18 22:00:29 +08003285 * usb_reset_and_verify_device() encounters changed descriptors (as from
Linus Torvalds1da177e2005-04-16 15:20:36 -07003286 * a firmware download)
3287 * caller already locked the hub
3288 */
3289static void hub_port_connect_change(struct usb_hub *hub, int port1,
3290 u16 portstatus, u16 portchange)
3291{
3292 struct usb_device *hdev = hub->hdev;
3293 struct device *hub_dev = hub->intfdev;
Balaji Rao90da0962007-11-22 01:58:14 +05303294 struct usb_hcd *hcd = bus_to_hcd(hdev->bus);
Alan Stern24618b02008-04-28 11:06:28 -04003295 unsigned wHubCharacteristics =
3296 le16_to_cpu(hub->descriptor->wHubCharacteristics);
Alan Stern8808f002008-04-28 11:06:55 -04003297 struct usb_device *udev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003298 int status, i;
Alan Stern24618b02008-04-28 11:06:28 -04003299
Linus Torvalds1da177e2005-04-16 15:20:36 -07003300 dev_dbg (hub_dev,
3301 "port %d, status %04x, change %04x, %s\n",
Sarah Sharp131dec32010-12-06 21:00:19 -08003302 port1, portstatus, portchange, portspeed(hub, portstatus));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003303
3304 if (hub->has_indicators) {
3305 set_port_led(hub, port1, HUB_LED_AUTO);
3306 hub->indicator[port1-1] = INDICATOR_AUTO;
3307 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003308
3309#ifdef CONFIG_USB_OTG
3310 /* during HNP, don't repeat the debounce */
3311 if (hdev->bus->is_b_host)
Alan Stern24618b02008-04-28 11:06:28 -04003312 portchange &= ~(USB_PORT_STAT_C_CONNECTION |
3313 USB_PORT_STAT_C_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003314#endif
3315
Alan Stern8808f002008-04-28 11:06:55 -04003316 /* Try to resuscitate an existing device */
3317 udev = hdev->children[port1-1];
3318 if ((portstatus & USB_PORT_STAT_CONNECTION) && udev &&
3319 udev->state != USB_STATE_NOTATTACHED) {
Alan Stern8808f002008-04-28 11:06:55 -04003320 usb_lock_device(udev);
3321 if (portstatus & USB_PORT_STAT_ENABLE) {
3322 status = 0; /* Nothing to do */
Alan Stern8808f002008-04-28 11:06:55 -04003323
3324#ifdef CONFIG_USB_SUSPEND
Alan Stern5257d972008-09-22 14:43:08 -04003325 } else if (udev->state == USB_STATE_SUSPENDED &&
3326 udev->persist_enabled) {
Alan Stern8808f002008-04-28 11:06:55 -04003327 /* For a suspended device, treat this as a
3328 * remote wakeup event.
3329 */
Alan Stern0534d462010-01-08 12:56:30 -05003330 status = usb_remote_wakeup(udev);
Alan Stern8808f002008-04-28 11:06:55 -04003331#endif
3332
3333 } else {
Alan Stern5257d972008-09-22 14:43:08 -04003334 status = -ENODEV; /* Don't resuscitate */
Alan Stern8808f002008-04-28 11:06:55 -04003335 }
3336 usb_unlock_device(udev);
3337
3338 if (status == 0) {
3339 clear_bit(port1, hub->change_bits);
3340 return;
3341 }
3342 }
3343
Alan Stern24618b02008-04-28 11:06:28 -04003344 /* Disconnect any existing devices under this port */
Alan Stern8808f002008-04-28 11:06:55 -04003345 if (udev)
Alan Stern24618b02008-04-28 11:06:28 -04003346 usb_disconnect(&hdev->children[port1-1]);
3347 clear_bit(port1, hub->change_bits);
3348
Alan Stern253e0572009-10-27 15:20:13 -04003349 /* We can forget about a "removed" device when there's a physical
3350 * disconnect or the connect status changes.
3351 */
3352 if (!(portstatus & USB_PORT_STAT_CONNECTION) ||
3353 (portchange & USB_PORT_STAT_C_CONNECTION))
3354 clear_bit(port1, hub->removed_bits);
3355
Alan Stern5257d972008-09-22 14:43:08 -04003356 if (portchange & (USB_PORT_STAT_C_CONNECTION |
3357 USB_PORT_STAT_C_ENABLE)) {
3358 status = hub_port_debounce(hub, port1);
3359 if (status < 0) {
3360 if (printk_ratelimit())
3361 dev_err(hub_dev, "connect-debounce failed, "
3362 "port %d disabled\n", port1);
3363 portstatus &= ~USB_PORT_STAT_CONNECTION;
3364 } else {
3365 portstatus = status;
3366 }
3367 }
3368
Alan Stern253e0572009-10-27 15:20:13 -04003369 /* Return now if debouncing failed or nothing is connected or
3370 * the device was "removed".
3371 */
3372 if (!(portstatus & USB_PORT_STAT_CONNECTION) ||
3373 test_bit(port1, hub->removed_bits)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003374
3375 /* maybe switch power back on (e.g. root hub was reset) */
Greg Kroah-Hartman74ad9bd2005-06-20 21:15:16 -07003376 if ((wHubCharacteristics & HUB_CHAR_LPSM) < 2
Andiry Xu0ed9a572011-04-27 18:07:43 +08003377 && !port_is_power_on(hub, portstatus))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003378 set_port_feature(hdev, port1, USB_PORT_FEAT_POWER);
Alan Stern5257d972008-09-22 14:43:08 -04003379
Linus Torvalds1da177e2005-04-16 15:20:36 -07003380 if (portstatus & USB_PORT_STAT_ENABLE)
3381 goto done;
3382 return;
3383 }
3384
Linus Torvalds1da177e2005-04-16 15:20:36 -07003385 for (i = 0; i < SET_CONFIG_TRIES; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003386
3387 /* reallocate for each attempt, since references
3388 * to the previous one can escape in various ways
3389 */
3390 udev = usb_alloc_dev(hdev, hdev->bus, port1);
3391 if (!udev) {
3392 dev_err (hub_dev,
3393 "couldn't allocate port %d usb_device\n",
3394 port1);
3395 goto done;
3396 }
3397
3398 usb_set_device_state(udev, USB_STATE_POWERED);
Alan Stern55c52712005-11-23 12:03:12 -05003399 udev->bus_mA = hub->mA_per_port;
Alan Sternb6956ff2006-08-30 15:46:48 -04003400 udev->level = hdev->level + 1;
Inaky Perez-Gonzalez8af548d2008-04-08 13:24:46 -07003401 udev->wusb = hub_is_wusb(hub);
Alan Stern55c52712005-11-23 12:03:12 -05003402
Sarah Sharp131dec32010-12-06 21:00:19 -08003403 /* Only USB 3.0 devices are connected to SuperSpeed hubs. */
3404 if (hub_is_superspeed(hub->hdev))
Sarah Sharpe7b77172009-04-27 19:54:26 -07003405 udev->speed = USB_SPEED_SUPER;
3406 else
3407 udev->speed = USB_SPEED_UNKNOWN;
3408
Alan Stern3b29b682011-02-22 09:53:41 -05003409 choose_devnum(udev);
Andiry Xuc8d4af82010-10-14 07:22:51 -07003410 if (udev->devnum <= 0) {
3411 status = -ENOTCONN; /* Don't retry */
3412 goto loop;
Sarah Sharpc6515272009-04-27 19:57:26 -07003413 }
3414
Sarah Sharpe7b77172009-04-27 19:54:26 -07003415 /* reset (non-USB 3.0 devices) and get descriptor */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003416 status = hub_port_init(hub, udev, port1, i);
3417 if (status < 0)
3418 goto loop;
3419
Phil Dibowitz93362a82010-07-22 00:05:01 +02003420 usb_detect_quirks(udev);
3421 if (udev->quirks & USB_QUIRK_DELAY_INIT)
3422 msleep(1000);
3423
Linus Torvalds1da177e2005-04-16 15:20:36 -07003424 /* consecutive bus-powered hubs aren't reliable; they can
3425 * violate the voltage drop budget. if the new child has
3426 * a "powered" LED, users should notice we didn't enable it
3427 * (without reading syslog), even without per-port LEDs
3428 * on the parent.
3429 */
3430 if (udev->descriptor.bDeviceClass == USB_CLASS_HUB
Alan Stern55c52712005-11-23 12:03:12 -05003431 && udev->bus_mA <= 100) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003432 u16 devstat;
3433
3434 status = usb_get_status(udev, USB_RECIP_DEVICE, 0,
3435 &devstat);
Alan Stern55c52712005-11-23 12:03:12 -05003436 if (status < 2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003437 dev_dbg(&udev->dev, "get status %d ?\n", status);
3438 goto loop_disable;
3439 }
Alan Stern55c52712005-11-23 12:03:12 -05003440 le16_to_cpus(&devstat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003441 if ((devstat & (1 << USB_DEVICE_SELF_POWERED)) == 0) {
3442 dev_err(&udev->dev,
3443 "can't connect bus-powered hub "
3444 "to this port\n");
3445 if (hub->has_indicators) {
3446 hub->indicator[port1-1] =
3447 INDICATOR_AMBER_BLINK;
David Howellsc4028952006-11-22 14:57:56 +00003448 schedule_delayed_work (&hub->leds, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003449 }
3450 status = -ENOTCONN; /* Don't retry */
3451 goto loop_disable;
3452 }
3453 }
3454
3455 /* check for devices running slower than they could */
3456 if (le16_to_cpu(udev->descriptor.bcdUSB) >= 0x0200
3457 && udev->speed == USB_SPEED_FULL
3458 && highspeed_hubs != 0)
3459 check_highspeed (hub, udev, port1);
3460
3461 /* Store the parent's children[] pointer. At this point
3462 * udev becomes globally accessible, although presumably
3463 * no one will look at it until hdev is unlocked.
3464 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003465 status = 0;
3466
3467 /* We mustn't add new devices if the parent hub has
3468 * been disconnected; we would race with the
3469 * recursively_mark_NOTATTACHED() routine.
3470 */
3471 spin_lock_irq(&device_state_lock);
3472 if (hdev->state == USB_STATE_NOTATTACHED)
3473 status = -ENOTCONN;
3474 else
3475 hdev->children[port1-1] = udev;
3476 spin_unlock_irq(&device_state_lock);
3477
3478 /* Run it through the hoops (find a driver, etc) */
3479 if (!status) {
3480 status = usb_new_device(udev);
3481 if (status) {
3482 spin_lock_irq(&device_state_lock);
3483 hdev->children[port1-1] = NULL;
3484 spin_unlock_irq(&device_state_lock);
3485 }
3486 }
3487
Linus Torvalds1da177e2005-04-16 15:20:36 -07003488 if (status)
3489 goto loop_disable;
3490
3491 status = hub_power_remaining(hub);
3492 if (status)
Alan Stern55c52712005-11-23 12:03:12 -05003493 dev_dbg(hub_dev, "%dmA power budget left\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003494
3495 return;
3496
3497loop_disable:
3498 hub_port_disable(hub, port1, 1);
3499loop:
Inaky Perez-Gonzalezfc721f52008-04-08 13:24:46 -07003500 usb_ep0_reinit(udev);
Alan Stern3b29b682011-02-22 09:53:41 -05003501 release_devnum(udev);
Herbert Xuf7410ce2010-01-10 20:15:03 +11003502 hub_free_dev(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003503 usb_put_dev(udev);
Vikram Panditaffcdc182007-05-25 21:31:07 -07003504 if ((status == -ENOTCONN) || (status == -ENOTSUPP))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003505 break;
3506 }
Alan Stern3a311552008-05-20 16:58:29 -04003507 if (hub->hdev->parent ||
3508 !hcd->driver->port_handed_over ||
3509 !(hcd->driver->port_handed_over)(hcd, port1))
3510 dev_err(hub_dev, "unable to enumerate USB device on port %d\n",
3511 port1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003512
3513done:
3514 hub_port_disable(hub, port1, 1);
Balaji Rao90da0962007-11-22 01:58:14 +05303515 if (hcd->driver->relinquish_port && !hub->hdev->parent)
3516 hcd->driver->relinquish_port(hcd, port1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003517}
3518
Sarah Sharp714b07b2012-01-24 13:53:18 -08003519/* Returns 1 if there was a remote wakeup and a connect status change. */
3520static int hub_handle_remote_wakeup(struct usb_hub *hub, unsigned int port,
Sarah Sharp72937e12012-01-24 11:46:50 -08003521 u16 portstatus, u16 portchange)
Sarah Sharp714b07b2012-01-24 13:53:18 -08003522{
3523 struct usb_device *hdev;
3524 struct usb_device *udev;
3525 int connect_change = 0;
3526 int ret;
3527
3528 hdev = hub->hdev;
Sarah Sharp714b07b2012-01-24 13:53:18 -08003529 udev = hdev->children[port-1];
Sarah Sharp4ee823b2011-11-14 18:00:01 -08003530 if (!hub_is_superspeed(hdev)) {
3531 if (!(portchange & USB_PORT_STAT_C_SUSPEND))
3532 return 0;
3533 clear_port_feature(hdev, port, USB_PORT_FEAT_C_SUSPEND);
3534 } else {
3535 if (!udev || udev->state != USB_STATE_SUSPENDED ||
Sarah Sharp72937e12012-01-24 11:46:50 -08003536 (portstatus & USB_PORT_STAT_LINK_STATE) !=
3537 USB_SS_PORT_LS_U0)
Sarah Sharp4ee823b2011-11-14 18:00:01 -08003538 return 0;
3539 }
3540
Sarah Sharp714b07b2012-01-24 13:53:18 -08003541 if (udev) {
3542 /* TRSMRCY = 10 msec */
3543 msleep(10);
3544
3545 usb_lock_device(udev);
3546 ret = usb_remote_wakeup(udev);
3547 usb_unlock_device(udev);
3548 if (ret < 0)
3549 connect_change = 1;
3550 } else {
3551 ret = -ENODEV;
3552 hub_port_disable(hub, port, 1);
3553 }
3554 dev_dbg(hub->intfdev, "resume on port %d, status %d\n",
3555 port, ret);
3556 return connect_change;
3557}
3558
Linus Torvalds1da177e2005-04-16 15:20:36 -07003559static void hub_events(void)
3560{
3561 struct list_head *tmp;
3562 struct usb_device *hdev;
3563 struct usb_interface *intf;
3564 struct usb_hub *hub;
3565 struct device *hub_dev;
3566 u16 hubstatus;
3567 u16 hubchange;
3568 u16 portstatus;
3569 u16 portchange;
3570 int i, ret;
Sarah Sharp4ee823b2011-11-14 18:00:01 -08003571 int connect_change, wakeup_change;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003572
3573 /*
3574 * We restart the list every time to avoid a deadlock with
3575 * deleting hubs downstream from this one. This should be
3576 * safe since we delete the hub from the event list.
3577 * Not the most efficient, but avoids deadlocks.
3578 */
3579 while (1) {
3580
3581 /* Grab the first entry at the beginning of the list */
3582 spin_lock_irq(&hub_event_lock);
3583 if (list_empty(&hub_event_list)) {
3584 spin_unlock_irq(&hub_event_lock);
3585 break;
3586 }
3587
3588 tmp = hub_event_list.next;
3589 list_del_init(tmp);
3590
3591 hub = list_entry(tmp, struct usb_hub, event_list);
Alan Sterne8054852007-05-04 11:55:11 -04003592 kref_get(&hub->kref);
3593 spin_unlock_irq(&hub_event_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003594
Alan Sterne8054852007-05-04 11:55:11 -04003595 hdev = hub->hdev;
3596 hub_dev = hub->intfdev;
3597 intf = to_usb_interface(hub_dev);
Alan Stern40f122f2006-11-09 14:44:33 -05003598 dev_dbg(hub_dev, "state %d ports %d chg %04x evt %04x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003599 hdev->state, hub->descriptor
3600 ? hub->descriptor->bNbrPorts
3601 : 0,
3602 /* NOTE: expects max 15 ports... */
3603 (u16) hub->change_bits[0],
Alan Stern40f122f2006-11-09 14:44:33 -05003604 (u16) hub->event_bits[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003605
Linus Torvalds1da177e2005-04-16 15:20:36 -07003606 /* Lock the device, then check to see if we were
3607 * disconnected while waiting for the lock to succeed. */
Alan Stern06b84e82007-05-04 11:54:50 -04003608 usb_lock_device(hdev);
Alan Sterne8054852007-05-04 11:55:11 -04003609 if (unlikely(hub->disconnected))
Alan Stern9bbdf1e2010-01-08 12:57:28 -05003610 goto loop_disconnected;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003611
3612 /* If the hub has died, clean up after it */
3613 if (hdev->state == USB_STATE_NOTATTACHED) {
Alan Stern7de18d82006-06-01 13:37:24 -04003614 hub->error = -ENODEV;
Alan Stern43303542008-04-28 11:07:31 -04003615 hub_quiesce(hub, HUB_DISCONNECT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003616 goto loop;
3617 }
3618
Alan Stern40f122f2006-11-09 14:44:33 -05003619 /* Autoresume */
3620 ret = usb_autopm_get_interface(intf);
3621 if (ret) {
3622 dev_dbg(hub_dev, "Can't autoresume: %d\n", ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003623 goto loop;
Alan Stern40f122f2006-11-09 14:44:33 -05003624 }
3625
3626 /* If this is an inactive hub, do nothing */
3627 if (hub->quiescing)
3628 goto loop_autopm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003629
3630 if (hub->error) {
3631 dev_dbg (hub_dev, "resetting for error %d\n",
3632 hub->error);
3633
Ming Lei742120c2008-06-18 22:00:29 +08003634 ret = usb_reset_device(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003635 if (ret) {
3636 dev_dbg (hub_dev,
3637 "error resetting hub: %d\n", ret);
Alan Stern40f122f2006-11-09 14:44:33 -05003638 goto loop_autopm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003639 }
3640
3641 hub->nerrors = 0;
3642 hub->error = 0;
3643 }
3644
3645 /* deal with port status changes */
3646 for (i = 1; i <= hub->descriptor->bNbrPorts; i++) {
3647 if (test_bit(i, hub->busy_bits))
3648 continue;
3649 connect_change = test_bit(i, hub->change_bits);
Sarah Sharp72937e12012-01-24 11:46:50 -08003650 wakeup_change = test_and_clear_bit(i, hub->wakeup_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003651 if (!test_and_clear_bit(i, hub->event_bits) &&
Sarah Sharp4ee823b2011-11-14 18:00:01 -08003652 !connect_change && !wakeup_change)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003653 continue;
3654
3655 ret = hub_port_status(hub, i,
3656 &portstatus, &portchange);
3657 if (ret < 0)
3658 continue;
3659
Linus Torvalds1da177e2005-04-16 15:20:36 -07003660 if (portchange & USB_PORT_STAT_C_CONNECTION) {
3661 clear_port_feature(hdev, i,
3662 USB_PORT_FEAT_C_CONNECTION);
3663 connect_change = 1;
3664 }
3665
3666 if (portchange & USB_PORT_STAT_C_ENABLE) {
3667 if (!connect_change)
3668 dev_dbg (hub_dev,
3669 "port %d enable change, "
3670 "status %08x\n",
3671 i, portstatus);
3672 clear_port_feature(hdev, i,
3673 USB_PORT_FEAT_C_ENABLE);
3674
3675 /*
3676 * EM interference sometimes causes badly
3677 * shielded USB devices to be shutdown by
3678 * the hub, this hack enables them again.
3679 * Works at least with mouse driver.
3680 */
3681 if (!(portstatus & USB_PORT_STAT_ENABLE)
3682 && !connect_change
3683 && hdev->children[i-1]) {
3684 dev_err (hub_dev,
3685 "port %i "
3686 "disabled by hub (EMI?), "
3687 "re-enabling...\n",
3688 i);
3689 connect_change = 1;
3690 }
3691 }
3692
Sarah Sharp72937e12012-01-24 11:46:50 -08003693 if (hub_handle_remote_wakeup(hub, i,
3694 portstatus, portchange))
Sarah Sharp714b07b2012-01-24 13:53:18 -08003695 connect_change = 1;
Alan Stern8808f002008-04-28 11:06:55 -04003696
Linus Torvalds1da177e2005-04-16 15:20:36 -07003697 if (portchange & USB_PORT_STAT_C_OVERCURRENT) {
Paul Bolle752d57a2011-03-11 18:03:52 +01003698 u16 status = 0;
3699 u16 unused;
3700
3701 dev_dbg(hub_dev, "over-current change on port "
3702 "%d\n", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003703 clear_port_feature(hdev, i,
3704 USB_PORT_FEAT_C_OVER_CURRENT);
Paul Bolle752d57a2011-03-11 18:03:52 +01003705 msleep(100); /* Cool down */
Alan Stern8520f382008-09-22 14:44:26 -04003706 hub_power_on(hub, true);
Paul Bolle752d57a2011-03-11 18:03:52 +01003707 hub_port_status(hub, i, &status, &unused);
3708 if (status & USB_PORT_STAT_OVERCURRENT)
3709 dev_err(hub_dev, "over-current "
3710 "condition on port %d\n", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003711 }
3712
3713 if (portchange & USB_PORT_STAT_C_RESET) {
3714 dev_dbg (hub_dev,
3715 "reset change on port %d\n",
3716 i);
3717 clear_port_feature(hdev, i,
3718 USB_PORT_FEAT_C_RESET);
3719 }
Sarah Sharpc7061572010-12-06 15:08:20 -08003720 if ((portchange & USB_PORT_STAT_C_BH_RESET) &&
3721 hub_is_superspeed(hub->hdev)) {
3722 dev_dbg(hub_dev,
3723 "warm reset change on port %d\n",
3724 i);
3725 clear_port_feature(hdev, i,
3726 USB_PORT_FEAT_C_BH_PORT_RESET);
3727 }
John Youndbe79bb2001-09-17 00:00:00 -07003728 if (portchange & USB_PORT_STAT_C_LINK_STATE) {
3729 clear_port_feature(hub->hdev, i,
3730 USB_PORT_FEAT_C_PORT_LINK_STATE);
3731 }
3732 if (portchange & USB_PORT_STAT_C_CONFIG_ERROR) {
3733 dev_warn(hub_dev,
3734 "config error on port %d\n",
3735 i);
3736 clear_port_feature(hub->hdev, i,
3737 USB_PORT_FEAT_C_PORT_CONFIG_ERROR);
3738 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003739
Andiry Xu5e467f62011-04-27 18:07:54 +08003740 /* Warm reset a USB3 protocol port if it's in
3741 * SS.Inactive state.
3742 */
3743 if (hub_is_superspeed(hub->hdev) &&
3744 (portstatus & USB_PORT_STAT_LINK_STATE)
3745 == USB_SS_PORT_LS_SS_INACTIVE) {
3746 dev_dbg(hub_dev, "warm reset port %d\n", i);
Andiry Xu75d7cf72011-09-13 16:41:11 -07003747 hub_port_reset(hub, i, NULL,
3748 HUB_BH_RESET_TIME, true);
Andiry Xu5e467f62011-04-27 18:07:54 +08003749 }
3750
Linus Torvalds1da177e2005-04-16 15:20:36 -07003751 if (connect_change)
3752 hub_port_connect_change(hub, i,
3753 portstatus, portchange);
3754 } /* end for i */
3755
3756 /* deal with hub status changes */
3757 if (test_and_clear_bit(0, hub->event_bits) == 0)
3758 ; /* do nothing */
3759 else if (hub_hub_status(hub, &hubstatus, &hubchange) < 0)
3760 dev_err (hub_dev, "get_hub_status failed\n");
3761 else {
3762 if (hubchange & HUB_CHANGE_LOCAL_POWER) {
3763 dev_dbg (hub_dev, "power change\n");
3764 clear_hub_feature(hdev, C_HUB_LOCAL_POWER);
Alan Stern55c52712005-11-23 12:03:12 -05003765 if (hubstatus & HUB_STATUS_LOCAL_POWER)
3766 /* FIXME: Is this always true? */
Alan Stern55c52712005-11-23 12:03:12 -05003767 hub->limited_power = 1;
jidong xiao403fae72007-09-14 00:08:51 +08003768 else
3769 hub->limited_power = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003770 }
3771 if (hubchange & HUB_CHANGE_OVERCURRENT) {
Paul Bolle752d57a2011-03-11 18:03:52 +01003772 u16 status = 0;
3773 u16 unused;
3774
3775 dev_dbg(hub_dev, "over-current change\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003776 clear_hub_feature(hdev, C_HUB_OVER_CURRENT);
Paul Bolle752d57a2011-03-11 18:03:52 +01003777 msleep(500); /* Cool down */
Alan Stern8520f382008-09-22 14:44:26 -04003778 hub_power_on(hub, true);
Paul Bolle752d57a2011-03-11 18:03:52 +01003779 hub_hub_status(hub, &status, &unused);
3780 if (status & HUB_STATUS_OVERCURRENT)
3781 dev_err(hub_dev, "over-current "
3782 "condition\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003783 }
3784 }
3785
Alan Stern8e4ceb32009-12-07 13:01:37 -05003786 loop_autopm:
3787 /* Balance the usb_autopm_get_interface() above */
3788 usb_autopm_put_interface_no_suspend(intf);
3789 loop:
3790 /* Balance the usb_autopm_get_interface_no_resume() in
3791 * kick_khubd() and allow autosuspend.
3792 */
3793 usb_autopm_put_interface(intf);
Alan Stern9bbdf1e2010-01-08 12:57:28 -05003794 loop_disconnected:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003795 usb_unlock_device(hdev);
Alan Sterne8054852007-05-04 11:55:11 -04003796 kref_put(&hub->kref, hub_release);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003797
3798 } /* end while (1) */
3799}
3800
3801static int hub_thread(void *__unused)
3802{
Alan Stern3bb1af52008-03-03 15:15:36 -05003803 /* khubd needs to be freezable to avoid intefering with USB-PERSIST
3804 * port handover. Otherwise it might see that a full-speed device
3805 * was gone before the EHCI controller had handed its port over to
3806 * the companion full-speed controller.
3807 */
Rafael J. Wysocki83144182007-07-17 04:03:35 -07003808 set_freezable();
Alan Stern3bb1af52008-03-03 15:15:36 -05003809
Linus Torvalds1da177e2005-04-16 15:20:36 -07003810 do {
3811 hub_events();
Rafael J. Wysockie42837b2007-10-18 03:04:45 -07003812 wait_event_freezable(khubd_wait,
akpm@osdl.org9c8d6172005-06-20 14:29:58 -07003813 !list_empty(&hub_event_list) ||
3814 kthread_should_stop());
akpm@osdl.org9c8d6172005-06-20 14:29:58 -07003815 } while (!kthread_should_stop() || !list_empty(&hub_event_list));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003816
akpm@osdl.org9c8d6172005-06-20 14:29:58 -07003817 pr_debug("%s: khubd exiting\n", usbcore_name);
3818 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003819}
3820
Németh Márton1e927d92010-01-10 15:34:53 +01003821static const struct usb_device_id hub_id_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003822 { .match_flags = USB_DEVICE_ID_MATCH_DEV_CLASS,
3823 .bDeviceClass = USB_CLASS_HUB},
3824 { .match_flags = USB_DEVICE_ID_MATCH_INT_CLASS,
3825 .bInterfaceClass = USB_CLASS_HUB},
3826 { } /* Terminating entry */
3827};
3828
3829MODULE_DEVICE_TABLE (usb, hub_id_table);
3830
3831static struct usb_driver hub_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003832 .name = "hub",
3833 .probe = hub_probe,
3834 .disconnect = hub_disconnect,
3835 .suspend = hub_suspend,
3836 .resume = hub_resume,
Alan Sternf07600c2007-05-30 15:38:16 -04003837 .reset_resume = hub_reset_resume,
Alan Stern7de18d82006-06-01 13:37:24 -04003838 .pre_reset = hub_pre_reset,
3839 .post_reset = hub_post_reset,
Andi Kleenc532b292010-06-01 23:04:41 +02003840 .unlocked_ioctl = hub_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003841 .id_table = hub_id_table,
Alan Stern40f122f2006-11-09 14:44:33 -05003842 .supports_autosuspend = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003843};
3844
3845int usb_hub_init(void)
3846{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003847 if (usb_register(&hub_driver) < 0) {
3848 printk(KERN_ERR "%s: can't register hub driver\n",
3849 usbcore_name);
3850 return -1;
3851 }
3852
akpm@osdl.org9c8d6172005-06-20 14:29:58 -07003853 khubd_task = kthread_run(hub_thread, NULL, "khubd");
3854 if (!IS_ERR(khubd_task))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003855 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003856
3857 /* Fall through if kernel_thread failed */
3858 usb_deregister(&hub_driver);
3859 printk(KERN_ERR "%s: can't start khubd\n", usbcore_name);
3860
3861 return -1;
3862}
3863
3864void usb_hub_cleanup(void)
3865{
akpm@osdl.org9c8d6172005-06-20 14:29:58 -07003866 kthread_stop(khubd_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003867
3868 /*
3869 * Hub resources are freed for us by usb_deregister. It calls
3870 * usb_driver_purge on every device which in turn calls that
3871 * devices disconnect function if it is using this driver.
3872 * The hub_disconnect function takes care of releasing the
3873 * individual hub resources. -greg
3874 */
3875 usb_deregister(&hub_driver);
3876} /* usb_hub_cleanup() */
3877
Alan Sterneb764c42008-03-03 15:16:04 -05003878static int descriptors_changed(struct usb_device *udev,
3879 struct usb_device_descriptor *old_device_descriptor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003880{
Alan Sterneb764c42008-03-03 15:16:04 -05003881 int changed = 0;
3882 unsigned index;
3883 unsigned serial_len = 0;
3884 unsigned len;
3885 unsigned old_length;
3886 int length;
3887 char *buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003888
Alan Sterneb764c42008-03-03 15:16:04 -05003889 if (memcmp(&udev->descriptor, old_device_descriptor,
3890 sizeof(*old_device_descriptor)) != 0)
3891 return 1;
3892
3893 /* Since the idVendor, idProduct, and bcdDevice values in the
3894 * device descriptor haven't changed, we will assume the
3895 * Manufacturer and Product strings haven't changed either.
3896 * But the SerialNumber string could be different (e.g., a
3897 * different flash card of the same brand).
3898 */
3899 if (udev->serial)
3900 serial_len = strlen(udev->serial) + 1;
3901
3902 len = serial_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003903 for (index = 0; index < udev->descriptor.bNumConfigurations; index++) {
Alan Sterneb764c42008-03-03 15:16:04 -05003904 old_length = le16_to_cpu(udev->config[index].desc.wTotalLength);
3905 len = max(len, old_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003906 }
Alan Sterneb764c42008-03-03 15:16:04 -05003907
Oliver Neukum0cc1a512008-01-10 10:31:48 +01003908 buf = kmalloc(len, GFP_NOIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003909 if (buf == NULL) {
3910 dev_err(&udev->dev, "no mem to re-read configs after reset\n");
3911 /* assume the worst */
3912 return 1;
3913 }
3914 for (index = 0; index < udev->descriptor.bNumConfigurations; index++) {
Alan Sterneb764c42008-03-03 15:16:04 -05003915 old_length = le16_to_cpu(udev->config[index].desc.wTotalLength);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003916 length = usb_get_descriptor(udev, USB_DT_CONFIG, index, buf,
3917 old_length);
Alan Sterneb764c42008-03-03 15:16:04 -05003918 if (length != old_length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003919 dev_dbg(&udev->dev, "config index %d, error %d\n",
3920 index, length);
Alan Sterneb764c42008-03-03 15:16:04 -05003921 changed = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003922 break;
3923 }
3924 if (memcmp (buf, udev->rawdescriptors[index], old_length)
3925 != 0) {
3926 dev_dbg(&udev->dev, "config index %d changed (#%d)\n",
Alan Sterneb764c42008-03-03 15:16:04 -05003927 index,
3928 ((struct usb_config_descriptor *) buf)->
3929 bConfigurationValue);
3930 changed = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003931 break;
3932 }
3933 }
Alan Sterneb764c42008-03-03 15:16:04 -05003934
3935 if (!changed && serial_len) {
3936 length = usb_string(udev, udev->descriptor.iSerialNumber,
3937 buf, serial_len);
3938 if (length + 1 != serial_len) {
3939 dev_dbg(&udev->dev, "serial string error %d\n",
3940 length);
3941 changed = 1;
3942 } else if (memcmp(buf, udev->serial, length) != 0) {
3943 dev_dbg(&udev->dev, "serial string changed\n");
3944 changed = 1;
3945 }
3946 }
3947
Linus Torvalds1da177e2005-04-16 15:20:36 -07003948 kfree(buf);
Alan Sterneb764c42008-03-03 15:16:04 -05003949 return changed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003950}
3951
3952/**
Ming Lei742120c2008-06-18 22:00:29 +08003953 * usb_reset_and_verify_device - perform a USB port reset to reinitialize a device
Linus Torvalds1da177e2005-04-16 15:20:36 -07003954 * @udev: device to reset (not in SUSPENDED or NOTATTACHED state)
3955 *
Alan Stern79efa092006-06-01 13:33:42 -04003956 * WARNING - don't use this routine to reset a composite device
3957 * (one with multiple interfaces owned by separate drivers)!
Ming Lei742120c2008-06-18 22:00:29 +08003958 * Use usb_reset_device() instead.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003959 *
3960 * Do a port reset, reassign the device's address, and establish its
3961 * former operating configuration. If the reset fails, or the device's
3962 * descriptors change from their values before the reset, or the original
3963 * configuration and altsettings cannot be restored, a flag will be set
3964 * telling khubd to pretend the device has been disconnected and then
3965 * re-connected. All drivers will be unbound, and the device will be
3966 * re-enumerated and probed all over again.
3967 *
3968 * Returns 0 if the reset succeeded, -ENODEV if the device has been
3969 * flagged for logical disconnection, or some other negative error code
3970 * if the reset wasn't even attempted.
3971 *
3972 * The caller must own the device lock. For example, it's safe to use
3973 * this from a driver probe() routine after downloading new firmware.
3974 * For calls that might not occur during probe(), drivers should lock
3975 * the device using usb_lock_device_for_reset().
Alan Stern6bc6cff2007-05-04 11:53:03 -04003976 *
3977 * Locking exception: This routine may also be called from within an
3978 * autoresume handler. Such usage won't conflict with other tasks
3979 * holding the device lock because these tasks should always call
3980 * usb_autopm_resume_device(), thereby preventing any unwanted autoresume.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003981 */
Ming Lei742120c2008-06-18 22:00:29 +08003982static int usb_reset_and_verify_device(struct usb_device *udev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003983{
3984 struct usb_device *parent_hdev = udev->parent;
3985 struct usb_hub *parent_hub;
Sarah Sharp3f0479e2009-12-03 09:44:36 -08003986 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003987 struct usb_device_descriptor descriptor = udev->descriptor;
Alan Stern12c3da32005-11-23 12:09:52 -05003988 int i, ret = 0;
3989 int port1 = udev->portnum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003990
3991 if (udev->state == USB_STATE_NOTATTACHED ||
3992 udev->state == USB_STATE_SUSPENDED) {
3993 dev_dbg(&udev->dev, "device reset not allowed in state %d\n",
3994 udev->state);
3995 return -EINVAL;
3996 }
3997
3998 if (!parent_hdev) {
Wolfram Sang4bec9912010-08-29 18:17:14 +02003999 /* this requires hcd-specific logic; see ohci_restart() */
Harvey Harrison441b62c2008-03-03 16:08:34 -08004000 dev_dbg(&udev->dev, "%s for root hub!\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004001 return -EISDIR;
4002 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004003 parent_hub = hdev_to_hub(parent_hdev);
4004
Linus Torvalds1da177e2005-04-16 15:20:36 -07004005 set_bit(port1, parent_hub->busy_bits);
4006 for (i = 0; i < SET_CONFIG_TRIES; ++i) {
4007
4008 /* ep0 maxpacket size may change; let the HCD know about it.
4009 * Other endpoints will be handled by re-enumeration. */
Inaky Perez-Gonzalezfc721f52008-04-08 13:24:46 -07004010 usb_ep0_reinit(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004011 ret = hub_port_init(parent_hub, udev, port1, i);
Alan Sterndd4dd192007-05-04 11:55:54 -04004012 if (ret >= 0 || ret == -ENOTCONN || ret == -ENODEV)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004013 break;
4014 }
4015 clear_bit(port1, parent_hub->busy_bits);
Alan Sternd5cbad42006-08-11 16:52:39 -04004016
Linus Torvalds1da177e2005-04-16 15:20:36 -07004017 if (ret < 0)
4018 goto re_enumerate;
4019
4020 /* Device might have changed firmware (DFU or similar) */
Alan Sterneb764c42008-03-03 15:16:04 -05004021 if (descriptors_changed(udev, &descriptor)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004022 dev_info(&udev->dev, "device firmware changed\n");
4023 udev->descriptor = descriptor; /* for disconnect() calls */
4024 goto re_enumerate;
4025 }
Alan Stern4fe03872009-02-26 10:21:02 -05004026
4027 /* Restore the device's previous configuration */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004028 if (!udev->actconfig)
4029 goto done;
Sarah Sharp3f0479e2009-12-03 09:44:36 -08004030
Sarah Sharpd673bfc2010-10-15 08:55:24 -07004031 mutex_lock(hcd->bandwidth_mutex);
Sarah Sharp3f0479e2009-12-03 09:44:36 -08004032 ret = usb_hcd_alloc_bandwidth(udev, udev->actconfig, NULL, NULL);
4033 if (ret < 0) {
4034 dev_warn(&udev->dev,
4035 "Busted HC? Not enough HCD resources for "
4036 "old configuration.\n");
Sarah Sharpd673bfc2010-10-15 08:55:24 -07004037 mutex_unlock(hcd->bandwidth_mutex);
Sarah Sharp3f0479e2009-12-03 09:44:36 -08004038 goto re_enumerate;
4039 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004040 ret = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
4041 USB_REQ_SET_CONFIGURATION, 0,
4042 udev->actconfig->desc.bConfigurationValue, 0,
4043 NULL, 0, USB_CTRL_SET_TIMEOUT);
4044 if (ret < 0) {
4045 dev_err(&udev->dev,
4046 "can't restore configuration #%d (error=%d)\n",
4047 udev->actconfig->desc.bConfigurationValue, ret);
Sarah Sharpd673bfc2010-10-15 08:55:24 -07004048 mutex_unlock(hcd->bandwidth_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004049 goto re_enumerate;
4050 }
Sarah Sharpd673bfc2010-10-15 08:55:24 -07004051 mutex_unlock(hcd->bandwidth_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004052 usb_set_device_state(udev, USB_STATE_CONFIGURED);
4053
Alan Stern4fe03872009-02-26 10:21:02 -05004054 /* Put interfaces back into the same altsettings as before.
4055 * Don't bother to send the Set-Interface request for interfaces
4056 * that were already in altsetting 0; besides being unnecessary,
4057 * many devices can't handle it. Instead just reset the host-side
4058 * endpoint state.
4059 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004060 for (i = 0; i < udev->actconfig->desc.bNumInterfaces; i++) {
Sarah Sharp3f0479e2009-12-03 09:44:36 -08004061 struct usb_host_config *config = udev->actconfig;
4062 struct usb_interface *intf = config->interface[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004063 struct usb_interface_descriptor *desc;
4064
Linus Torvalds1da177e2005-04-16 15:20:36 -07004065 desc = &intf->cur_altsetting->desc;
Alan Stern4fe03872009-02-26 10:21:02 -05004066 if (desc->bAlternateSetting == 0) {
4067 usb_disable_interface(udev, intf, true);
4068 usb_enable_interface(udev, intf, true);
4069 ret = 0;
4070 } else {
Sarah Sharp04a723e2010-01-06 10:16:51 -08004071 /* Let the bandwidth allocation function know that this
4072 * device has been reset, and it will have to use
4073 * alternate setting 0 as the current alternate setting.
Sarah Sharp3f0479e2009-12-03 09:44:36 -08004074 */
Sarah Sharp04a723e2010-01-06 10:16:51 -08004075 intf->resetting_device = 1;
Alan Stern4fe03872009-02-26 10:21:02 -05004076 ret = usb_set_interface(udev, desc->bInterfaceNumber,
4077 desc->bAlternateSetting);
Sarah Sharp04a723e2010-01-06 10:16:51 -08004078 intf->resetting_device = 0;
Alan Stern4fe03872009-02-26 10:21:02 -05004079 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004080 if (ret < 0) {
4081 dev_err(&udev->dev, "failed to restore interface %d "
4082 "altsetting %d (error=%d)\n",
4083 desc->bInterfaceNumber,
4084 desc->bAlternateSetting,
4085 ret);
4086 goto re_enumerate;
4087 }
4088 }
4089
4090done:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004091 return 0;
4092
4093re_enumerate:
4094 hub_port_logical_disconnect(parent_hub, port1);
4095 return -ENODEV;
4096}
Alan Stern79efa092006-06-01 13:33:42 -04004097
4098/**
Ming Lei742120c2008-06-18 22:00:29 +08004099 * usb_reset_device - warn interface drivers and perform a USB port reset
Alan Stern79efa092006-06-01 13:33:42 -04004100 * @udev: device to reset (not in SUSPENDED or NOTATTACHED state)
Alan Stern79efa092006-06-01 13:33:42 -04004101 *
4102 * Warns all drivers bound to registered interfaces (using their pre_reset
4103 * method), performs the port reset, and then lets the drivers know that
4104 * the reset is over (using their post_reset method).
4105 *
Ming Lei742120c2008-06-18 22:00:29 +08004106 * Return value is the same as for usb_reset_and_verify_device().
Alan Stern79efa092006-06-01 13:33:42 -04004107 *
4108 * The caller must own the device lock. For example, it's safe to use
4109 * this from a driver probe() routine after downloading new firmware.
4110 * For calls that might not occur during probe(), drivers should lock
4111 * the device using usb_lock_device_for_reset().
Alan Stern78d9a482008-06-23 16:00:40 -04004112 *
4113 * If an interface is currently being probed or disconnected, we assume
4114 * its driver knows how to handle resets. For all other interfaces,
4115 * if the driver doesn't have pre_reset and post_reset methods then
4116 * we attempt to unbind it and rebind afterward.
Alan Stern79efa092006-06-01 13:33:42 -04004117 */
Ming Lei742120c2008-06-18 22:00:29 +08004118int usb_reset_device(struct usb_device *udev)
Alan Stern79efa092006-06-01 13:33:42 -04004119{
4120 int ret;
Alan Stern852c4b42007-12-03 15:44:29 -05004121 int i;
Alan Stern79efa092006-06-01 13:33:42 -04004122 struct usb_host_config *config = udev->actconfig;
4123
4124 if (udev->state == USB_STATE_NOTATTACHED ||
4125 udev->state == USB_STATE_SUSPENDED) {
4126 dev_dbg(&udev->dev, "device reset not allowed in state %d\n",
4127 udev->state);
4128 return -EINVAL;
4129 }
4130
Alan Stern645daaa2006-08-30 15:47:02 -04004131 /* Prevent autosuspend during the reset */
Alan Stern94fcda12006-11-20 11:38:46 -05004132 usb_autoresume_device(udev);
Alan Stern645daaa2006-08-30 15:47:02 -04004133
Alan Stern79efa092006-06-01 13:33:42 -04004134 if (config) {
Alan Stern79efa092006-06-01 13:33:42 -04004135 for (i = 0; i < config->desc.bNumInterfaces; ++i) {
Alan Stern852c4b42007-12-03 15:44:29 -05004136 struct usb_interface *cintf = config->interface[i];
4137 struct usb_driver *drv;
Alan Stern78d9a482008-06-23 16:00:40 -04004138 int unbind = 0;
Alan Stern852c4b42007-12-03 15:44:29 -05004139
4140 if (cintf->dev.driver) {
Alan Stern79efa092006-06-01 13:33:42 -04004141 drv = to_usb_driver(cintf->dev.driver);
Alan Stern78d9a482008-06-23 16:00:40 -04004142 if (drv->pre_reset && drv->post_reset)
4143 unbind = (drv->pre_reset)(cintf);
4144 else if (cintf->condition ==
4145 USB_INTERFACE_BOUND)
4146 unbind = 1;
4147 if (unbind)
4148 usb_forced_unbind_intf(cintf);
Alan Stern79efa092006-06-01 13:33:42 -04004149 }
4150 }
4151 }
4152
Ming Lei742120c2008-06-18 22:00:29 +08004153 ret = usb_reset_and_verify_device(udev);
Alan Stern79efa092006-06-01 13:33:42 -04004154
4155 if (config) {
Alan Stern79efa092006-06-01 13:33:42 -04004156 for (i = config->desc.bNumInterfaces - 1; i >= 0; --i) {
Alan Stern852c4b42007-12-03 15:44:29 -05004157 struct usb_interface *cintf = config->interface[i];
4158 struct usb_driver *drv;
Alan Stern78d9a482008-06-23 16:00:40 -04004159 int rebind = cintf->needs_binding;
Alan Stern852c4b42007-12-03 15:44:29 -05004160
Alan Stern78d9a482008-06-23 16:00:40 -04004161 if (!rebind && cintf->dev.driver) {
Alan Stern79efa092006-06-01 13:33:42 -04004162 drv = to_usb_driver(cintf->dev.driver);
4163 if (drv->post_reset)
Alan Stern78d9a482008-06-23 16:00:40 -04004164 rebind = (drv->post_reset)(cintf);
4165 else if (cintf->condition ==
4166 USB_INTERFACE_BOUND)
4167 rebind = 1;
Alan Stern79efa092006-06-01 13:33:42 -04004168 }
Alan Stern6c640942008-10-21 15:40:03 -04004169 if (ret == 0 && rebind)
Alan Stern78d9a482008-06-23 16:00:40 -04004170 usb_rebind_intf(cintf);
Alan Stern79efa092006-06-01 13:33:42 -04004171 }
4172 }
4173
Alan Stern94fcda12006-11-20 11:38:46 -05004174 usb_autosuspend_device(udev);
Alan Stern79efa092006-06-01 13:33:42 -04004175 return ret;
4176}
Ming Lei742120c2008-06-18 22:00:29 +08004177EXPORT_SYMBOL_GPL(usb_reset_device);
Inaky Perez-Gonzalezdc023dc2008-11-13 10:31:35 -08004178
4179
4180/**
4181 * usb_queue_reset_device - Reset a USB device from an atomic context
4182 * @iface: USB interface belonging to the device to reset
4183 *
4184 * This function can be used to reset a USB device from an atomic
4185 * context, where usb_reset_device() won't work (as it blocks).
4186 *
4187 * Doing a reset via this method is functionally equivalent to calling
4188 * usb_reset_device(), except for the fact that it is delayed to a
4189 * workqueue. This means that any drivers bound to other interfaces
4190 * might be unbound, as well as users from usbfs in user space.
4191 *
4192 * Corner cases:
4193 *
4194 * - Scheduling two resets at the same time from two different drivers
4195 * attached to two different interfaces of the same device is
4196 * possible; depending on how the driver attached to each interface
4197 * handles ->pre_reset(), the second reset might happen or not.
4198 *
4199 * - If a driver is unbound and it had a pending reset, the reset will
4200 * be cancelled.
4201 *
4202 * - This function can be called during .probe() or .disconnect()
4203 * times. On return from .disconnect(), any pending resets will be
4204 * cancelled.
4205 *
4206 * There is no no need to lock/unlock the @reset_ws as schedule_work()
4207 * does its own.
4208 *
4209 * NOTE: We don't do any reference count tracking because it is not
4210 * needed. The lifecycle of the work_struct is tied to the
4211 * usb_interface. Before destroying the interface we cancel the
4212 * work_struct, so the fact that work_struct is queued and or
4213 * running means the interface (and thus, the device) exist and
4214 * are referenced.
4215 */
4216void usb_queue_reset_device(struct usb_interface *iface)
4217{
4218 schedule_work(&iface->reset_ws);
4219}
4220EXPORT_SYMBOL_GPL(usb_queue_reset_device);