blob: 1c32bbac98621f0f672563e5d464a4e2249fde4d [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * USB hub driver.
3 *
4 * (C) Copyright 1999 Linus Torvalds
5 * (C) Copyright 1999 Johannes Erdfelt
6 * (C) Copyright 1999 Gregory P. Smith
7 * (C) Copyright 2001 Brad Hards (bhards@bigpond.net.au)
8 *
9 */
10
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/kernel.h>
12#include <linux/errno.h>
13#include <linux/module.h>
14#include <linux/moduleparam.h>
15#include <linux/completion.h>
16#include <linux/sched.h>
17#include <linux/list.h>
18#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/ioctl.h>
20#include <linux/usb.h>
21#include <linux/usbdevice_fs.h>
Eric Lescouet27729aa2010-04-24 23:21:52 +020022#include <linux/usb/hcd.h>
Phil Dibowitz93362a82010-07-22 00:05:01 +020023#include <linux/usb/quirks.h>
akpm@osdl.org9c8d6172005-06-20 14:29:58 -070024#include <linux/kthread.h>
Arjan van de Ven4186ecf2006-01-11 15:55:29 +010025#include <linux/mutex.h>
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080026#include <linux/freezer.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <asm/uaccess.h>
29#include <asm/byteorder.h>
30
31#include "usb.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
Greg Kroah-Hartmanf2a383e2007-11-26 22:11:55 -080033/* if we are in debug mode, always announce new devices */
34#ifdef DEBUG
35#ifndef CONFIG_USB_ANNOUNCE_NEW_DEVICES
36#define CONFIG_USB_ANNOUNCE_NEW_DEVICES
37#endif
38#endif
39
Alan Stern1bb5f662006-11-06 11:56:13 -050040struct usb_hub {
41 struct device *intfdev; /* the "interface" device */
42 struct usb_device *hdev;
Alan Sterne8054852007-05-04 11:55:11 -040043 struct kref kref;
Alan Stern1bb5f662006-11-06 11:56:13 -050044 struct urb *urb; /* for interrupt polling pipe */
45
46 /* buffer for urb ... with extra space in case of babble */
47 char (*buffer)[8];
Alan Stern1bb5f662006-11-06 11:56:13 -050048 union {
49 struct usb_hub_status hub;
50 struct usb_port_status port;
51 } *status; /* buffer for status reports */
Alan Sterndb90e7a2007-02-05 09:56:15 -050052 struct mutex status_mutex; /* for the status buffer */
Alan Stern1bb5f662006-11-06 11:56:13 -050053
54 int error; /* last reported error */
55 int nerrors; /* track consecutive errors */
56
57 struct list_head event_list; /* hubs w/data or errs ready */
58 unsigned long event_bits[1]; /* status change bitmask */
59 unsigned long change_bits[1]; /* ports with logical connect
60 status change */
61 unsigned long busy_bits[1]; /* ports being reset or
62 resumed */
Alan Stern253e0572009-10-27 15:20:13 -040063 unsigned long removed_bits[1]; /* ports with a "removed"
64 device present */
Sarah Sharp4ee823b2011-11-14 18:00:01 -080065 unsigned long wakeup_bits[1]; /* ports that have signaled
66 remote wakeup */
Alan Stern1bb5f662006-11-06 11:56:13 -050067#if USB_MAXCHILDREN > 31 /* 8*sizeof(unsigned long) - 1 */
68#error event_bits[] is too short!
69#endif
70
71 struct usb_hub_descriptor *descriptor; /* class descriptor */
72 struct usb_tt tt; /* Transaction Translator */
73
74 unsigned mA_per_port; /* current for each child */
75
76 unsigned limited_power:1;
77 unsigned quiescing:1;
Alan Sterne8054852007-05-04 11:55:11 -040078 unsigned disconnected:1;
Alan Stern1bb5f662006-11-06 11:56:13 -050079
80 unsigned has_indicators:1;
81 u8 indicator[USB_MAXCHILDREN];
David Howells6d5aefb2006-12-05 19:36:26 +000082 struct delayed_work leds;
Alan Stern8520f382008-09-22 14:44:26 -040083 struct delayed_work init_work;
Alan Stern7cbe5dc2009-06-29 10:56:54 -040084 void **port_owners;
Alan Stern1bb5f662006-11-06 11:56:13 -050085};
86
John Youndbe79bb2001-09-17 00:00:00 -070087static inline int hub_is_superspeed(struct usb_device *hdev)
88{
Aman Deep7bf01182011-12-08 12:05:22 +053089 return (hdev->descriptor.bDeviceProtocol == USB_HUB_PR_SS);
John Youndbe79bb2001-09-17 00:00:00 -070090}
Alan Stern1bb5f662006-11-06 11:56:13 -050091
Linus Torvalds1da177e2005-04-16 15:20:36 -070092/* Protect struct usb_device->state and ->children members
Alan Stern9ad3d6c2005-11-17 17:10:32 -050093 * Note: Both are also protected by ->dev.sem, except that ->state can
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 * change to USB_STATE_NOTATTACHED even when the semaphore isn't held. */
95static DEFINE_SPINLOCK(device_state_lock);
96
97/* khubd's worklist and its lock */
98static DEFINE_SPINLOCK(hub_event_lock);
99static LIST_HEAD(hub_event_list); /* List of hubs needing servicing */
100
101/* Wakes up khubd */
102static DECLARE_WAIT_QUEUE_HEAD(khubd_wait);
103
akpm@osdl.org9c8d6172005-06-20 14:29:58 -0700104static struct task_struct *khubd_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
106/* cycle leds on hubs that aren't blinking for attention */
Rusty Russell90ab5ee2012-01-13 09:32:20 +1030107static bool blinkenlights = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108module_param (blinkenlights, bool, S_IRUGO);
109MODULE_PARM_DESC (blinkenlights, "true to cycle leds on hubs");
110
111/*
Jaroslav Kyselafd7c5192008-10-10 16:24:45 +0200112 * Device SATA8000 FW1.0 from DATAST0R Technology Corp requires about
113 * 10 seconds to send reply for the initial 64-byte descriptor request.
114 */
115/* define initial 64-byte descriptor request timeout in milliseconds */
116static int initial_descriptor_timeout = USB_CTRL_GET_TIMEOUT;
117module_param(initial_descriptor_timeout, int, S_IRUGO|S_IWUSR);
Wu Fengguangb9cef6c2008-12-15 15:32:01 +0800118MODULE_PARM_DESC(initial_descriptor_timeout,
119 "initial 64-byte descriptor request timeout in milliseconds "
120 "(default 5000 - 5.0 seconds)");
Jaroslav Kyselafd7c5192008-10-10 16:24:45 +0200121
122/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 * As of 2.6.10 we introduce a new USB device initialization scheme which
124 * closely resembles the way Windows works. Hopefully it will be compatible
125 * with a wider range of devices than the old scheme. However some previously
126 * working devices may start giving rise to "device not accepting address"
127 * errors; if that happens the user can try the old scheme by adjusting the
128 * following module parameters.
129 *
130 * For maximum flexibility there are two boolean parameters to control the
131 * hub driver's behavior. On the first initialization attempt, if the
132 * "old_scheme_first" parameter is set then the old scheme will be used,
133 * otherwise the new scheme is used. If that fails and "use_both_schemes"
134 * is set, then the driver will make another attempt, using the other scheme.
135 */
Rusty Russell90ab5ee2012-01-13 09:32:20 +1030136static bool old_scheme_first = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137module_param(old_scheme_first, bool, S_IRUGO | S_IWUSR);
138MODULE_PARM_DESC(old_scheme_first,
139 "start with the old device initialization scheme");
140
Rusty Russell90ab5ee2012-01-13 09:32:20 +1030141static bool use_both_schemes = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142module_param(use_both_schemes, bool, S_IRUGO | S_IWUSR);
143MODULE_PARM_DESC(use_both_schemes,
144 "try the other device initialization scheme if the "
145 "first one fails");
146
Alan Stern32fe0192007-10-10 16:27:07 -0400147/* Mutual exclusion for EHCI CF initialization. This interferes with
148 * port reset on some companion controllers.
149 */
150DECLARE_RWSEM(ehci_cf_port_reset_rwsem);
151EXPORT_SYMBOL_GPL(ehci_cf_port_reset_rwsem);
152
Alan Stern948fea32008-04-28 11:07:07 -0400153#define HUB_DEBOUNCE_TIMEOUT 1500
154#define HUB_DEBOUNCE_STEP 25
155#define HUB_DEBOUNCE_STABLE 100
156
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
Ming Lei742120c2008-06-18 22:00:29 +0800158static int usb_reset_and_verify_device(struct usb_device *udev);
159
Sarah Sharp131dec32010-12-06 21:00:19 -0800160static inline char *portspeed(struct usb_hub *hub, int portstatus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161{
Sarah Sharp131dec32010-12-06 21:00:19 -0800162 if (hub_is_superspeed(hub->hdev))
163 return "5.0 Gb/s";
Alan Stern288ead42010-03-04 11:32:30 -0500164 if (portstatus & USB_PORT_STAT_HIGH_SPEED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 return "480 Mb/s";
Alan Stern288ead42010-03-04 11:32:30 -0500166 else if (portstatus & USB_PORT_STAT_LOW_SPEED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 return "1.5 Mb/s";
168 else
169 return "12 Mb/s";
170}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
172/* Note that hdev or one of its children must be locked! */
Alan Stern251180842009-07-22 14:41:18 -0400173static struct usb_hub *hdev_to_hub(struct usb_device *hdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174{
Alan Stern251180842009-07-22 14:41:18 -0400175 if (!hdev || !hdev->actconfig)
176 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 return usb_get_intfdata(hdev->actconfig->interface[0]);
178}
179
180/* USB 2.0 spec Section 11.24.4.5 */
John Youndbe79bb2001-09-17 00:00:00 -0700181static int get_hub_descriptor(struct usb_device *hdev, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182{
John Youndbe79bb2001-09-17 00:00:00 -0700183 int i, ret, size;
184 unsigned dtype;
185
186 if (hub_is_superspeed(hdev)) {
187 dtype = USB_DT_SS_HUB;
188 size = USB_DT_SS_HUB_SIZE;
189 } else {
190 dtype = USB_DT_HUB;
191 size = sizeof(struct usb_hub_descriptor);
192 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
194 for (i = 0; i < 3; i++) {
195 ret = usb_control_msg(hdev, usb_rcvctrlpipe(hdev, 0),
196 USB_REQ_GET_DESCRIPTOR, USB_DIR_IN | USB_RT_HUB,
John Youndbe79bb2001-09-17 00:00:00 -0700197 dtype << 8, 0, data, size,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 USB_CTRL_GET_TIMEOUT);
199 if (ret >= (USB_DT_HUB_NONVAR_SIZE + 2))
200 return ret;
201 }
202 return -EINVAL;
203}
204
205/*
206 * USB 2.0 spec Section 11.24.2.1
207 */
208static int clear_hub_feature(struct usb_device *hdev, int feature)
209{
210 return usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
211 USB_REQ_CLEAR_FEATURE, USB_RT_HUB, feature, 0, NULL, 0, 1000);
212}
213
214/*
215 * USB 2.0 spec Section 11.24.2.2
216 */
217static int clear_port_feature(struct usb_device *hdev, int port1, int feature)
218{
219 return usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
220 USB_REQ_CLEAR_FEATURE, USB_RT_PORT, feature, port1,
221 NULL, 0, 1000);
222}
223
224/*
225 * USB 2.0 spec Section 11.24.2.13
226 */
227static int set_port_feature(struct usb_device *hdev, int port1, int feature)
228{
229 return usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
230 USB_REQ_SET_FEATURE, USB_RT_PORT, feature, port1,
231 NULL, 0, 1000);
232}
233
234/*
235 * USB 2.0 spec Section 11.24.2.7.1.10 and table 11-7
236 * for info about using port indicators
237 */
238static void set_port_led(
239 struct usb_hub *hub,
240 int port1,
241 int selector
242)
243{
244 int status = set_port_feature(hub->hdev, (selector << 8) | port1,
245 USB_PORT_FEAT_INDICATOR);
246 if (status < 0)
247 dev_dbg (hub->intfdev,
248 "port %d indicator %s status %d\n",
249 port1,
250 ({ char *s; switch (selector) {
251 case HUB_LED_AMBER: s = "amber"; break;
252 case HUB_LED_GREEN: s = "green"; break;
253 case HUB_LED_OFF: s = "off"; break;
254 case HUB_LED_AUTO: s = "auto"; break;
255 default: s = "??"; break;
256 }; s; }),
257 status);
258}
259
260#define LED_CYCLE_PERIOD ((2*HZ)/3)
261
David Howellsc4028952006-11-22 14:57:56 +0000262static void led_work (struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263{
David Howellsc4028952006-11-22 14:57:56 +0000264 struct usb_hub *hub =
265 container_of(work, struct usb_hub, leds.work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 struct usb_device *hdev = hub->hdev;
267 unsigned i;
268 unsigned changed = 0;
269 int cursor = -1;
270
271 if (hdev->state != USB_STATE_CONFIGURED || hub->quiescing)
272 return;
273
274 for (i = 0; i < hub->descriptor->bNbrPorts; i++) {
275 unsigned selector, mode;
276
277 /* 30%-50% duty cycle */
278
279 switch (hub->indicator[i]) {
280 /* cycle marker */
281 case INDICATOR_CYCLE:
282 cursor = i;
283 selector = HUB_LED_AUTO;
284 mode = INDICATOR_AUTO;
285 break;
286 /* blinking green = sw attention */
287 case INDICATOR_GREEN_BLINK:
288 selector = HUB_LED_GREEN;
289 mode = INDICATOR_GREEN_BLINK_OFF;
290 break;
291 case INDICATOR_GREEN_BLINK_OFF:
292 selector = HUB_LED_OFF;
293 mode = INDICATOR_GREEN_BLINK;
294 break;
295 /* blinking amber = hw attention */
296 case INDICATOR_AMBER_BLINK:
297 selector = HUB_LED_AMBER;
298 mode = INDICATOR_AMBER_BLINK_OFF;
299 break;
300 case INDICATOR_AMBER_BLINK_OFF:
301 selector = HUB_LED_OFF;
302 mode = INDICATOR_AMBER_BLINK;
303 break;
304 /* blink green/amber = reserved */
305 case INDICATOR_ALT_BLINK:
306 selector = HUB_LED_GREEN;
307 mode = INDICATOR_ALT_BLINK_OFF;
308 break;
309 case INDICATOR_ALT_BLINK_OFF:
310 selector = HUB_LED_AMBER;
311 mode = INDICATOR_ALT_BLINK;
312 break;
313 default:
314 continue;
315 }
316 if (selector != HUB_LED_AUTO)
317 changed = 1;
318 set_port_led(hub, i + 1, selector);
319 hub->indicator[i] = mode;
320 }
321 if (!changed && blinkenlights) {
322 cursor++;
323 cursor %= hub->descriptor->bNbrPorts;
324 set_port_led(hub, cursor + 1, HUB_LED_GREEN);
325 hub->indicator[cursor] = INDICATOR_CYCLE;
326 changed++;
327 }
328 if (changed)
329 schedule_delayed_work(&hub->leds, LED_CYCLE_PERIOD);
330}
331
332/* use a short timeout for hub/port status fetches */
333#define USB_STS_TIMEOUT 1000
334#define USB_STS_RETRIES 5
335
336/*
337 * USB 2.0 spec Section 11.24.2.6
338 */
339static int get_hub_status(struct usb_device *hdev,
340 struct usb_hub_status *data)
341{
342 int i, status = -ETIMEDOUT;
343
Libor Pechacek3824c1d2011-05-20 14:53:25 +0200344 for (i = 0; i < USB_STS_RETRIES &&
345 (status == -ETIMEDOUT || status == -EPIPE); i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 status = usb_control_msg(hdev, usb_rcvctrlpipe(hdev, 0),
347 USB_REQ_GET_STATUS, USB_DIR_IN | USB_RT_HUB, 0, 0,
348 data, sizeof(*data), USB_STS_TIMEOUT);
349 }
350 return status;
351}
352
353/*
354 * USB 2.0 spec Section 11.24.2.7
355 */
356static int get_port_status(struct usb_device *hdev, int port1,
357 struct usb_port_status *data)
358{
359 int i, status = -ETIMEDOUT;
360
Libor Pechacek3824c1d2011-05-20 14:53:25 +0200361 for (i = 0; i < USB_STS_RETRIES &&
362 (status == -ETIMEDOUT || status == -EPIPE); i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 status = usb_control_msg(hdev, usb_rcvctrlpipe(hdev, 0),
364 USB_REQ_GET_STATUS, USB_DIR_IN | USB_RT_PORT, 0, port1,
365 data, sizeof(*data), USB_STS_TIMEOUT);
366 }
367 return status;
368}
369
Alan Stern3eb14912008-03-03 15:15:43 -0500370static int hub_port_status(struct usb_hub *hub, int port1,
371 u16 *status, u16 *change)
372{
373 int ret;
374
375 mutex_lock(&hub->status_mutex);
376 ret = get_port_status(hub->hdev, port1, &hub->status->port);
377 if (ret < 4) {
378 dev_err(hub->intfdev,
379 "%s failed (err = %d)\n", __func__, ret);
380 if (ret >= 0)
381 ret = -EIO;
382 } else {
383 *status = le16_to_cpu(hub->status->port.wPortStatus);
384 *change = le16_to_cpu(hub->status->port.wPortChange);
John Youndbe79bb2001-09-17 00:00:00 -0700385
Alan Stern3eb14912008-03-03 15:15:43 -0500386 ret = 0;
387 }
388 mutex_unlock(&hub->status_mutex);
389 return ret;
390}
391
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392static void kick_khubd(struct usb_hub *hub)
393{
394 unsigned long flags;
395
396 spin_lock_irqsave(&hub_event_lock, flags);
Roel Kluin2e2c5ee2007-10-26 23:54:35 +0200397 if (!hub->disconnected && list_empty(&hub->event_list)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 list_add_tail(&hub->event_list, &hub_event_list);
Alan Stern8e4ceb32009-12-07 13:01:37 -0500399
400 /* Suppress autosuspend until khubd runs */
401 usb_autopm_get_interface_no_resume(
402 to_usb_interface(hub->intfdev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 wake_up(&khubd_wait);
404 }
405 spin_unlock_irqrestore(&hub_event_lock, flags);
406}
407
408void usb_kick_khubd(struct usb_device *hdev)
409{
Alan Stern251180842009-07-22 14:41:18 -0400410 struct usb_hub *hub = hdev_to_hub(hdev);
411
412 if (hub)
413 kick_khubd(hub);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414}
415
Sarah Sharp4ee823b2011-11-14 18:00:01 -0800416/*
417 * Let the USB core know that a USB 3.0 device has sent a Function Wake Device
418 * Notification, which indicates it had initiated remote wakeup.
419 *
420 * USB 3.0 hubs do not report the port link state change from U3 to U0 when the
421 * device initiates resume, so the USB core will not receive notice of the
422 * resume through the normal hub interrupt URB.
423 */
424void usb_wakeup_notification(struct usb_device *hdev,
425 unsigned int portnum)
426{
427 struct usb_hub *hub;
428
429 if (!hdev)
430 return;
431
432 hub = hdev_to_hub(hdev);
433 if (hub) {
434 set_bit(portnum, hub->wakeup_bits);
435 kick_khubd(hub);
436 }
437}
438EXPORT_SYMBOL_GPL(usb_wakeup_notification);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439
440/* completion function, fires on port status changes and various faults */
David Howells7d12e782006-10-05 14:55:46 +0100441static void hub_irq(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442{
Tobias Klauserec17cf12006-09-13 21:38:41 +0200443 struct usb_hub *hub = urb->context;
Alan Sterne0152682007-08-24 15:42:52 -0400444 int status = urb->status;
Roel Kluin71d27182009-03-13 12:19:18 +0100445 unsigned i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 unsigned long bits;
447
Alan Sterne0152682007-08-24 15:42:52 -0400448 switch (status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 case -ENOENT: /* synchronous unlink */
450 case -ECONNRESET: /* async unlink */
451 case -ESHUTDOWN: /* hardware going away */
452 return;
453
454 default: /* presumably an error */
455 /* Cause a hub reset after 10 consecutive errors */
Alan Sterne0152682007-08-24 15:42:52 -0400456 dev_dbg (hub->intfdev, "transfer --> %d\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 if ((++hub->nerrors < 10) || hub->error)
458 goto resubmit;
Alan Sterne0152682007-08-24 15:42:52 -0400459 hub->error = status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 /* FALL THROUGH */
Tobias Klauserec17cf12006-09-13 21:38:41 +0200461
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 /* let khubd handle things */
463 case 0: /* we got data: port status changed */
464 bits = 0;
465 for (i = 0; i < urb->actual_length; ++i)
466 bits |= ((unsigned long) ((*hub->buffer)[i]))
467 << (i*8);
468 hub->event_bits[0] = bits;
469 break;
470 }
471
472 hub->nerrors = 0;
473
474 /* Something happened, let khubd figure it out */
475 kick_khubd(hub);
476
477resubmit:
478 if (hub->quiescing)
479 return;
480
481 if ((status = usb_submit_urb (hub->urb, GFP_ATOMIC)) != 0
482 && status != -ENODEV && status != -EPERM)
483 dev_err (hub->intfdev, "resubmit --> %d\n", status);
484}
485
486/* USB 2.0 spec Section 11.24.2.3 */
487static inline int
488hub_clear_tt_buffer (struct usb_device *hdev, u16 devinfo, u16 tt)
489{
Alan Sternc2f65952009-11-18 11:37:15 -0500490 return usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 HUB_CLEAR_TT_BUFFER, USB_RT_PORT, devinfo,
492 tt, NULL, 0, 1000);
493}
494
495/*
496 * enumeration blocks khubd for a long time. we use keventd instead, since
497 * long blocking there is the exception, not the rule. accordingly, HCDs
498 * talking to TTs must queue control transfers (not just bulk and iso), so
499 * both can talk to the same hub concurrently.
500 */
Alan Sterncb88a1b2009-06-29 10:43:32 -0400501static void hub_tt_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502{
David Howellsc4028952006-11-22 14:57:56 +0000503 struct usb_hub *hub =
Alan Sterncb88a1b2009-06-29 10:43:32 -0400504 container_of(work, struct usb_hub, tt.clear_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 unsigned long flags;
Mark Lord55e5fdf2007-05-14 19:48:02 -0400506 int limit = 100;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507
508 spin_lock_irqsave (&hub->tt.lock, flags);
Mark Lord55e5fdf2007-05-14 19:48:02 -0400509 while (--limit && !list_empty (&hub->tt.clear_list)) {
H Hartley Sweetend0f830d2009-04-22 16:03:05 -0400510 struct list_head *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 struct usb_tt_clear *clear;
512 struct usb_device *hdev = hub->hdev;
Alan Sterncb88a1b2009-06-29 10:43:32 -0400513 const struct hc_driver *drv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 int status;
515
H Hartley Sweetend0f830d2009-04-22 16:03:05 -0400516 next = hub->tt.clear_list.next;
517 clear = list_entry (next, struct usb_tt_clear, clear_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 list_del (&clear->clear_list);
519
520 /* drop lock so HCD can concurrently report other TT errors */
521 spin_unlock_irqrestore (&hub->tt.lock, flags);
522 status = hub_clear_tt_buffer (hdev, clear->devinfo, clear->tt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 if (status)
524 dev_err (&hdev->dev,
525 "clear tt %d (%04x) error %d\n",
526 clear->tt, clear->devinfo, status);
Alan Sterncb88a1b2009-06-29 10:43:32 -0400527
528 /* Tell the HCD, even if the operation failed */
529 drv = clear->hcd->driver;
530 if (drv->clear_tt_buffer_complete)
531 (drv->clear_tt_buffer_complete)(clear->hcd, clear->ep);
532
Jesper Juhl1bc3c9e2005-04-18 17:39:34 -0700533 kfree(clear);
Alan Sterncb88a1b2009-06-29 10:43:32 -0400534 spin_lock_irqsave(&hub->tt.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 }
536 spin_unlock_irqrestore (&hub->tt.lock, flags);
537}
538
539/**
Alan Sterncb88a1b2009-06-29 10:43:32 -0400540 * usb_hub_clear_tt_buffer - clear control/bulk TT state in high speed hub
541 * @urb: an URB associated with the failed or incomplete split transaction
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 *
543 * High speed HCDs use this to tell the hub driver that some split control or
544 * bulk transaction failed in a way that requires clearing internal state of
545 * a transaction translator. This is normally detected (and reported) from
546 * interrupt context.
547 *
548 * It may not be possible for that hub to handle additional full (or low)
549 * speed transactions until that state is fully cleared out.
550 */
Alan Sterncb88a1b2009-06-29 10:43:32 -0400551int usb_hub_clear_tt_buffer(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552{
Alan Sterncb88a1b2009-06-29 10:43:32 -0400553 struct usb_device *udev = urb->dev;
554 int pipe = urb->pipe;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 struct usb_tt *tt = udev->tt;
556 unsigned long flags;
557 struct usb_tt_clear *clear;
558
559 /* we've got to cope with an arbitrary number of pending TT clears,
560 * since each TT has "at least two" buffers that can need it (and
561 * there can be many TTs per hub). even if they're uncommon.
562 */
Christoph Lameter54e6ecb2006-12-06 20:33:16 -0800563 if ((clear = kmalloc (sizeof *clear, GFP_ATOMIC)) == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 dev_err (&udev->dev, "can't save CLEAR_TT_BUFFER state\n");
565 /* FIXME recover somehow ... RESET_TT? */
Alan Sterncb88a1b2009-06-29 10:43:32 -0400566 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 }
568
569 /* info that CLEAR_TT_BUFFER needs */
570 clear->tt = tt->multi ? udev->ttport : 1;
571 clear->devinfo = usb_pipeendpoint (pipe);
572 clear->devinfo |= udev->devnum << 4;
573 clear->devinfo |= usb_pipecontrol (pipe)
574 ? (USB_ENDPOINT_XFER_CONTROL << 11)
575 : (USB_ENDPOINT_XFER_BULK << 11);
576 if (usb_pipein (pipe))
577 clear->devinfo |= 1 << 15;
Alan Sterncb88a1b2009-06-29 10:43:32 -0400578
579 /* info for completion callback */
580 clear->hcd = bus_to_hcd(udev->bus);
581 clear->ep = urb->ep;
582
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 /* tell keventd to clear state for this TT */
584 spin_lock_irqsave (&tt->lock, flags);
585 list_add_tail (&clear->clear_list, &tt->clear_list);
Alan Sterncb88a1b2009-06-29 10:43:32 -0400586 schedule_work(&tt->clear_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 spin_unlock_irqrestore (&tt->lock, flags);
Alan Sterncb88a1b2009-06-29 10:43:32 -0400588 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589}
Alan Sterncb88a1b2009-06-29 10:43:32 -0400590EXPORT_SYMBOL_GPL(usb_hub_clear_tt_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591
Alan Stern8520f382008-09-22 14:44:26 -0400592/* If do_delay is false, return the number of milliseconds the caller
593 * needs to delay.
594 */
595static unsigned hub_power_on(struct usb_hub *hub, bool do_delay)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596{
597 int port1;
David Brownellb7896962005-08-31 10:41:44 -0700598 unsigned pgood_delay = hub->descriptor->bPwrOn2PwrGood * 2;
Alan Stern8520f382008-09-22 14:44:26 -0400599 unsigned delay;
Alan Stern4489a572006-04-27 15:54:22 -0400600 u16 wHubCharacteristics =
601 le16_to_cpu(hub->descriptor->wHubCharacteristics);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602
Alan Stern4489a572006-04-27 15:54:22 -0400603 /* Enable power on each port. Some hubs have reserved values
604 * of LPSM (> 2) in their descriptors, even though they are
605 * USB 2.0 hubs. Some hubs do not implement port-power switching
606 * but only emulate it. In all cases, the ports won't work
607 * unless we send these messages to the hub.
608 */
609 if ((wHubCharacteristics & HUB_CHAR_LPSM) < 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 dev_dbg(hub->intfdev, "enabling power on all ports\n");
Alan Stern4489a572006-04-27 15:54:22 -0400611 else
612 dev_dbg(hub->intfdev, "trying to enable port power on "
613 "non-switchable hub\n");
614 for (port1 = 1; port1 <= hub->descriptor->bNbrPorts; port1++)
615 set_port_feature(hub->hdev, port1, USB_PORT_FEAT_POWER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616
David Brownellb7896962005-08-31 10:41:44 -0700617 /* Wait at least 100 msec for power to become stable */
Alan Stern8520f382008-09-22 14:44:26 -0400618 delay = max(pgood_delay, (unsigned) 100);
619 if (do_delay)
620 msleep(delay);
621 return delay;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622}
623
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624static int hub_hub_status(struct usb_hub *hub,
625 u16 *status, u16 *change)
626{
627 int ret;
628
Alan Sterndb90e7a2007-02-05 09:56:15 -0500629 mutex_lock(&hub->status_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 ret = get_hub_status(hub->hdev, &hub->status->hub);
631 if (ret < 0)
632 dev_err (hub->intfdev,
Harvey Harrison441b62c2008-03-03 16:08:34 -0800633 "%s failed (err = %d)\n", __func__, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 else {
635 *status = le16_to_cpu(hub->status->hub.wHubStatus);
636 *change = le16_to_cpu(hub->status->hub.wHubChange);
637 ret = 0;
638 }
Alan Sterndb90e7a2007-02-05 09:56:15 -0500639 mutex_unlock(&hub->status_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 return ret;
641}
642
Alan Stern8b28c752005-08-10 17:04:13 -0400643static int hub_port_disable(struct usb_hub *hub, int port1, int set_state)
644{
645 struct usb_device *hdev = hub->hdev;
Alan Stern0458d5b2007-05-04 11:52:20 -0400646 int ret = 0;
Alan Stern8b28c752005-08-10 17:04:13 -0400647
Alan Stern0458d5b2007-05-04 11:52:20 -0400648 if (hdev->children[port1-1] && set_state)
Alan Stern8b28c752005-08-10 17:04:13 -0400649 usb_set_device_state(hdev->children[port1-1],
650 USB_STATE_NOTATTACHED);
John Youndbe79bb2001-09-17 00:00:00 -0700651 if (!hub->error && !hub_is_superspeed(hub->hdev))
Alan Stern0458d5b2007-05-04 11:52:20 -0400652 ret = clear_port_feature(hdev, port1, USB_PORT_FEAT_ENABLE);
Alan Stern8b28c752005-08-10 17:04:13 -0400653 if (ret)
654 dev_err(hub->intfdev, "cannot disable port %d (err = %d)\n",
Alan Stern0458d5b2007-05-04 11:52:20 -0400655 port1, ret);
Alan Stern8b28c752005-08-10 17:04:13 -0400656 return ret;
657}
658
Alan Stern0458d5b2007-05-04 11:52:20 -0400659/*
Justin P. Mattock6d42fcd2011-02-26 20:33:56 -0800660 * Disable a port and mark a logical connect-change event, so that some
Alan Stern0458d5b2007-05-04 11:52:20 -0400661 * time later khubd will disconnect() any existing usb_device on the port
662 * and will re-enumerate if there actually is a device attached.
663 */
664static void hub_port_logical_disconnect(struct usb_hub *hub, int port1)
665{
666 dev_dbg(hub->intfdev, "logical disconnect on port %d\n", port1);
667 hub_port_disable(hub, port1, 1);
668
669 /* FIXME let caller ask to power down the port:
670 * - some devices won't enumerate without a VBUS power cycle
671 * - SRP saves power that way
672 * - ... new call, TBD ...
673 * That's easy if this hub can switch power per-port, and
674 * khubd reactivates the port later (timer, SRP, etc).
675 * Powerdown must be optional, because of reset/DFU.
676 */
677
678 set_bit(port1, hub->change_bits);
679 kick_khubd(hub);
680}
681
Alan Stern253e0572009-10-27 15:20:13 -0400682/**
683 * usb_remove_device - disable a device's port on its parent hub
684 * @udev: device to be disabled and removed
685 * Context: @udev locked, must be able to sleep.
686 *
687 * After @udev's port has been disabled, khubd is notified and it will
688 * see that the device has been disconnected. When the device is
689 * physically unplugged and something is plugged in, the events will
690 * be received and processed normally.
691 */
692int usb_remove_device(struct usb_device *udev)
693{
694 struct usb_hub *hub;
695 struct usb_interface *intf;
696
697 if (!udev->parent) /* Can't remove a root hub */
698 return -EINVAL;
699 hub = hdev_to_hub(udev->parent);
700 intf = to_usb_interface(hub->intfdev);
701
702 usb_autopm_get_interface(intf);
703 set_bit(udev->portnum, hub->removed_bits);
704 hub_port_logical_disconnect(hub, udev->portnum);
705 usb_autopm_put_interface(intf);
706 return 0;
707}
708
Alan Stern6ee0b272008-04-28 11:06:42 -0400709enum hub_activation_type {
Alan Stern8e4ceb32009-12-07 13:01:37 -0500710 HUB_INIT, HUB_INIT2, HUB_INIT3, /* INITs must come first */
Alan Stern8520f382008-09-22 14:44:26 -0400711 HUB_POST_RESET, HUB_RESUME, HUB_RESET_RESUME,
Alan Stern6ee0b272008-04-28 11:06:42 -0400712};
Alan Stern5e6effa2008-03-03 15:15:51 -0500713
Alan Stern8520f382008-09-22 14:44:26 -0400714static void hub_init_func2(struct work_struct *ws);
715static void hub_init_func3(struct work_struct *ws);
716
Alan Sternf2835212008-04-28 11:07:17 -0400717static void hub_activate(struct usb_hub *hub, enum hub_activation_type type)
Alan Stern5e6effa2008-03-03 15:15:51 -0500718{
719 struct usb_device *hdev = hub->hdev;
Sarah Sharp653a39d2010-12-23 11:12:42 -0800720 struct usb_hcd *hcd;
721 int ret;
Alan Stern5e6effa2008-03-03 15:15:51 -0500722 int port1;
Alan Sternf2835212008-04-28 11:07:17 -0400723 int status;
Alan Stern948fea32008-04-28 11:07:07 -0400724 bool need_debounce_delay = false;
Alan Stern8520f382008-09-22 14:44:26 -0400725 unsigned delay;
726
727 /* Continue a partial initialization */
728 if (type == HUB_INIT2)
729 goto init2;
730 if (type == HUB_INIT3)
731 goto init3;
Alan Stern5e6effa2008-03-03 15:15:51 -0500732
Alan Sternf2835212008-04-28 11:07:17 -0400733 /* After a resume, port power should still be on.
734 * For any other type of activation, turn it on.
735 */
Alan Stern8520f382008-09-22 14:44:26 -0400736 if (type != HUB_RESUME) {
737
738 /* Speed up system boot by using a delayed_work for the
739 * hub's initial power-up delays. This is pretty awkward
740 * and the implementation looks like a home-brewed sort of
741 * setjmp/longjmp, but it saves at least 100 ms for each
742 * root hub (assuming usbcore is compiled into the kernel
743 * rather than as a module). It adds up.
744 *
745 * This can't be done for HUB_RESUME or HUB_RESET_RESUME
746 * because for those activation types the ports have to be
747 * operational when we return. In theory this could be done
748 * for HUB_POST_RESET, but it's easier not to.
749 */
750 if (type == HUB_INIT) {
751 delay = hub_power_on(hub, false);
752 PREPARE_DELAYED_WORK(&hub->init_work, hub_init_func2);
753 schedule_delayed_work(&hub->init_work,
754 msecs_to_jiffies(delay));
Alan Stern61fbeba2008-10-27 12:07:44 -0400755
756 /* Suppress autosuspend until init is done */
Alan Stern8e4ceb32009-12-07 13:01:37 -0500757 usb_autopm_get_interface_no_resume(
758 to_usb_interface(hub->intfdev));
Alan Stern8520f382008-09-22 14:44:26 -0400759 return; /* Continues at init2: below */
Sarah Sharp653a39d2010-12-23 11:12:42 -0800760 } else if (type == HUB_RESET_RESUME) {
761 /* The internal host controller state for the hub device
762 * may be gone after a host power loss on system resume.
763 * Update the device's info so the HW knows it's a hub.
764 */
765 hcd = bus_to_hcd(hdev->bus);
766 if (hcd->driver->update_hub_device) {
767 ret = hcd->driver->update_hub_device(hcd, hdev,
768 &hub->tt, GFP_NOIO);
769 if (ret < 0) {
770 dev_err(hub->intfdev, "Host not "
771 "accepting hub info "
772 "update.\n");
773 dev_err(hub->intfdev, "LS/FS devices "
774 "and hubs may not work "
775 "under this hub\n.");
776 }
777 }
778 hub_power_on(hub, true);
Alan Stern8520f382008-09-22 14:44:26 -0400779 } else {
780 hub_power_on(hub, true);
781 }
782 }
783 init2:
Alan Sternf2835212008-04-28 11:07:17 -0400784
Alan Stern6ee0b272008-04-28 11:06:42 -0400785 /* Check each port and set hub->change_bits to let khubd know
786 * which ports need attention.
Alan Stern5e6effa2008-03-03 15:15:51 -0500787 */
788 for (port1 = 1; port1 <= hdev->maxchild; ++port1) {
789 struct usb_device *udev = hdev->children[port1-1];
Alan Stern5e6effa2008-03-03 15:15:51 -0500790 u16 portstatus, portchange;
791
Alan Stern6ee0b272008-04-28 11:06:42 -0400792 portstatus = portchange = 0;
793 status = hub_port_status(hub, port1, &portstatus, &portchange);
794 if (udev || (portstatus & USB_PORT_STAT_CONNECTION))
795 dev_dbg(hub->intfdev,
796 "port %d: status %04x change %04x\n",
797 port1, portstatus, portchange);
Alan Stern5e6effa2008-03-03 15:15:51 -0500798
Alan Stern6ee0b272008-04-28 11:06:42 -0400799 /* After anything other than HUB_RESUME (i.e., initialization
800 * or any sort of reset), every port should be disabled.
801 * Unconnected ports should likewise be disabled (paranoia),
802 * and so should ports for which we have no usb_device.
Alan Stern5e6effa2008-03-03 15:15:51 -0500803 */
Alan Stern6ee0b272008-04-28 11:06:42 -0400804 if ((portstatus & USB_PORT_STAT_ENABLE) && (
805 type != HUB_RESUME ||
806 !(portstatus & USB_PORT_STAT_CONNECTION) ||
807 !udev ||
808 udev->state == USB_STATE_NOTATTACHED)) {
Andiry Xu9f0a6cd2010-05-07 18:09:27 +0800809 /*
810 * USB3 protocol ports will automatically transition
811 * to Enabled state when detect an USB3.0 device attach.
812 * Do not disable USB3 protocol ports.
Andiry Xu9f0a6cd2010-05-07 18:09:27 +0800813 */
Sarah Sharp131dec32010-12-06 21:00:19 -0800814 if (!hub_is_superspeed(hdev)) {
Andiry Xu9f0a6cd2010-05-07 18:09:27 +0800815 clear_port_feature(hdev, port1,
816 USB_PORT_FEAT_ENABLE);
817 portstatus &= ~USB_PORT_STAT_ENABLE;
Sarah Sharp85f0ff42010-10-14 07:22:54 -0700818 } else {
819 /* Pretend that power was lost for USB3 devs */
820 portstatus &= ~USB_PORT_STAT_ENABLE;
Andiry Xu9f0a6cd2010-05-07 18:09:27 +0800821 }
Alan Stern6ee0b272008-04-28 11:06:42 -0400822 }
823
Alan Stern948fea32008-04-28 11:07:07 -0400824 /* Clear status-change flags; we'll debounce later */
825 if (portchange & USB_PORT_STAT_C_CONNECTION) {
826 need_debounce_delay = true;
827 clear_port_feature(hub->hdev, port1,
828 USB_PORT_FEAT_C_CONNECTION);
829 }
830 if (portchange & USB_PORT_STAT_C_ENABLE) {
831 need_debounce_delay = true;
832 clear_port_feature(hub->hdev, port1,
833 USB_PORT_FEAT_C_ENABLE);
834 }
Don Zickus79c3dd82011-11-03 09:07:18 -0400835 if ((portchange & USB_PORT_STAT_C_BH_RESET) &&
836 hub_is_superspeed(hub->hdev)) {
837 need_debounce_delay = true;
838 clear_port_feature(hub->hdev, port1,
839 USB_PORT_FEAT_C_BH_PORT_RESET);
840 }
Alan Stern253e0572009-10-27 15:20:13 -0400841 /* We can forget about a "removed" device when there's a
842 * physical disconnect or the connect status changes.
843 */
844 if (!(portstatus & USB_PORT_STAT_CONNECTION) ||
845 (portchange & USB_PORT_STAT_C_CONNECTION))
846 clear_bit(port1, hub->removed_bits);
847
Alan Stern6ee0b272008-04-28 11:06:42 -0400848 if (!udev || udev->state == USB_STATE_NOTATTACHED) {
849 /* Tell khubd to disconnect the device or
850 * check for a new connection
851 */
852 if (udev || (portstatus & USB_PORT_STAT_CONNECTION))
853 set_bit(port1, hub->change_bits);
854
855 } else if (portstatus & USB_PORT_STAT_ENABLE) {
856 /* The power session apparently survived the resume.
857 * If there was an overcurrent or suspend change
858 * (i.e., remote wakeup request), have khubd
859 * take care of it.
860 */
861 if (portchange)
862 set_bit(port1, hub->change_bits);
863
864 } else if (udev->persist_enabled) {
Alan Stern6ee0b272008-04-28 11:06:42 -0400865#ifdef CONFIG_PM
Alan Stern5e6effa2008-03-03 15:15:51 -0500866 udev->reset_resume = 1;
Alan Stern6ee0b272008-04-28 11:06:42 -0400867#endif
Alan Stern8808f002008-04-28 11:06:55 -0400868 set_bit(port1, hub->change_bits);
869
Alan Stern6ee0b272008-04-28 11:06:42 -0400870 } else {
871 /* The power session is gone; tell khubd */
872 usb_set_device_state(udev, USB_STATE_NOTATTACHED);
873 set_bit(port1, hub->change_bits);
Alan Stern5e6effa2008-03-03 15:15:51 -0500874 }
Alan Stern5e6effa2008-03-03 15:15:51 -0500875 }
876
Alan Stern948fea32008-04-28 11:07:07 -0400877 /* If no port-status-change flags were set, we don't need any
878 * debouncing. If flags were set we can try to debounce the
879 * ports all at once right now, instead of letting khubd do them
880 * one at a time later on.
881 *
882 * If any port-status changes do occur during this delay, khubd
883 * will see them later and handle them normally.
884 */
Alan Stern8520f382008-09-22 14:44:26 -0400885 if (need_debounce_delay) {
886 delay = HUB_DEBOUNCE_STABLE;
Alan Sternf2835212008-04-28 11:07:17 -0400887
Alan Stern8520f382008-09-22 14:44:26 -0400888 /* Don't do a long sleep inside a workqueue routine */
889 if (type == HUB_INIT2) {
890 PREPARE_DELAYED_WORK(&hub->init_work, hub_init_func3);
891 schedule_delayed_work(&hub->init_work,
892 msecs_to_jiffies(delay));
893 return; /* Continues at init3: below */
894 } else {
895 msleep(delay);
896 }
897 }
898 init3:
Alan Sternf2835212008-04-28 11:07:17 -0400899 hub->quiescing = 0;
900
901 status = usb_submit_urb(hub->urb, GFP_NOIO);
902 if (status < 0)
903 dev_err(hub->intfdev, "activate --> %d\n", status);
904 if (hub->has_indicators && blinkenlights)
905 schedule_delayed_work(&hub->leds, LED_CYCLE_PERIOD);
906
907 /* Scan all ports that need attention */
908 kick_khubd(hub);
Alan Stern8e4ceb32009-12-07 13:01:37 -0500909
910 /* Allow autosuspend if it was suppressed */
911 if (type <= HUB_INIT3)
912 usb_autopm_put_interface_async(to_usb_interface(hub->intfdev));
Alan Stern5e6effa2008-03-03 15:15:51 -0500913}
914
Alan Stern8520f382008-09-22 14:44:26 -0400915/* Implement the continuations for the delays above */
916static void hub_init_func2(struct work_struct *ws)
917{
918 struct usb_hub *hub = container_of(ws, struct usb_hub, init_work.work);
919
920 hub_activate(hub, HUB_INIT2);
921}
922
923static void hub_init_func3(struct work_struct *ws)
924{
925 struct usb_hub *hub = container_of(ws, struct usb_hub, init_work.work);
926
927 hub_activate(hub, HUB_INIT3);
928}
929
Alan Stern43303542008-04-28 11:07:31 -0400930enum hub_quiescing_type {
931 HUB_DISCONNECT, HUB_PRE_RESET, HUB_SUSPEND
932};
933
934static void hub_quiesce(struct usb_hub *hub, enum hub_quiescing_type type)
935{
936 struct usb_device *hdev = hub->hdev;
937 int i;
938
Alan Stern8520f382008-09-22 14:44:26 -0400939 cancel_delayed_work_sync(&hub->init_work);
940
Alan Stern43303542008-04-28 11:07:31 -0400941 /* khubd and related activity won't re-trigger */
942 hub->quiescing = 1;
943
944 if (type != HUB_SUSPEND) {
945 /* Disconnect all the children */
946 for (i = 0; i < hdev->maxchild; ++i) {
947 if (hdev->children[i])
948 usb_disconnect(&hdev->children[i]);
949 }
950 }
951
952 /* Stop khubd and related activity */
953 usb_kill_urb(hub->urb);
954 if (hub->has_indicators)
955 cancel_delayed_work_sync(&hub->leds);
956 if (hub->tt.hub)
Alan Sterncb88a1b2009-06-29 10:43:32 -0400957 cancel_work_sync(&hub->tt.clear_work);
Alan Stern43303542008-04-28 11:07:31 -0400958}
959
Alan Stern3eb14912008-03-03 15:15:43 -0500960/* caller has locked the hub device */
961static int hub_pre_reset(struct usb_interface *intf)
962{
963 struct usb_hub *hub = usb_get_intfdata(intf);
964
Alan Stern43303542008-04-28 11:07:31 -0400965 hub_quiesce(hub, HUB_PRE_RESET);
Alan Sternf07600c2007-05-30 15:38:16 -0400966 return 0;
Alan Stern7d069b72005-11-18 12:06:34 -0500967}
968
969/* caller has locked the hub device */
Alan Sternf07600c2007-05-30 15:38:16 -0400970static int hub_post_reset(struct usb_interface *intf)
Alan Stern7d069b72005-11-18 12:06:34 -0500971{
Alan Stern7de18d82006-06-01 13:37:24 -0400972 struct usb_hub *hub = usb_get_intfdata(intf);
973
Alan Sternf2835212008-04-28 11:07:17 -0400974 hub_activate(hub, HUB_POST_RESET);
Alan Sternf07600c2007-05-30 15:38:16 -0400975 return 0;
Alan Stern7d069b72005-11-18 12:06:34 -0500976}
977
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978static int hub_configure(struct usb_hub *hub,
979 struct usb_endpoint_descriptor *endpoint)
980{
Sarah Sharpb356b7c2009-09-04 10:53:24 -0700981 struct usb_hcd *hcd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 struct usb_device *hdev = hub->hdev;
983 struct device *hub_dev = hub->intfdev;
984 u16 hubstatus, hubchange;
Greg Kroah-Hartman74ad9bd2005-06-20 21:15:16 -0700985 u16 wHubCharacteristics;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 unsigned int pipe;
987 int maxp, ret;
Alan Stern7cbe5dc2009-06-29 10:56:54 -0400988 char *message = "out of memory";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989
Alan Sternd697cdd2009-10-27 15:18:46 -0400990 hub->buffer = kmalloc(sizeof(*hub->buffer), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 if (!hub->buffer) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 ret = -ENOMEM;
993 goto fail;
994 }
995
996 hub->status = kmalloc(sizeof(*hub->status), GFP_KERNEL);
997 if (!hub->status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 ret = -ENOMEM;
999 goto fail;
1000 }
Alan Sterndb90e7a2007-02-05 09:56:15 -05001001 mutex_init(&hub->status_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002
1003 hub->descriptor = kmalloc(sizeof(*hub->descriptor), GFP_KERNEL);
1004 if (!hub->descriptor) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 ret = -ENOMEM;
1006 goto fail;
1007 }
1008
John Youndbe79bb2001-09-17 00:00:00 -07001009 if (hub_is_superspeed(hdev) && (hdev->parent != NULL)) {
1010 ret = usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
1011 HUB_SET_DEPTH, USB_RT_HUB,
1012 hdev->level - 1, 0, NULL, 0,
1013 USB_CTRL_SET_TIMEOUT);
1014
1015 if (ret < 0) {
1016 message = "can't set hub depth";
1017 goto fail;
1018 }
1019 }
1020
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 /* Request the entire hub descriptor.
1022 * hub->descriptor can handle USB_MAXCHILDREN ports,
1023 * but the hub can/will return fewer bytes here.
1024 */
John Youndbe79bb2001-09-17 00:00:00 -07001025 ret = get_hub_descriptor(hdev, hub->descriptor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 if (ret < 0) {
1027 message = "can't read hub descriptor";
1028 goto fail;
1029 } else if (hub->descriptor->bNbrPorts > USB_MAXCHILDREN) {
1030 message = "hub has too many ports!";
1031 ret = -ENODEV;
1032 goto fail;
1033 }
1034
1035 hdev->maxchild = hub->descriptor->bNbrPorts;
1036 dev_info (hub_dev, "%d port%s detected\n", hdev->maxchild,
1037 (hdev->maxchild == 1) ? "" : "s");
1038
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001039 hub->port_owners = kzalloc(hdev->maxchild * sizeof(void *), GFP_KERNEL);
1040 if (!hub->port_owners) {
1041 ret = -ENOMEM;
1042 goto fail;
1043 }
1044
Greg Kroah-Hartman74ad9bd2005-06-20 21:15:16 -07001045 wHubCharacteristics = le16_to_cpu(hub->descriptor->wHubCharacteristics);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046
John Youndbe79bb2001-09-17 00:00:00 -07001047 /* FIXME for USB 3.0, skip for now */
1048 if ((wHubCharacteristics & HUB_CHAR_COMPOUND) &&
1049 !(hub_is_superspeed(hdev))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 int i;
1051 char portstr [USB_MAXCHILDREN + 1];
1052
1053 for (i = 0; i < hdev->maxchild; i++)
John Youndbe79bb2001-09-17 00:00:00 -07001054 portstr[i] = hub->descriptor->u.hs.DeviceRemovable
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 [((i + 1) / 8)] & (1 << ((i + 1) % 8))
1056 ? 'F' : 'R';
1057 portstr[hdev->maxchild] = 0;
1058 dev_dbg(hub_dev, "compound device; port removable status: %s\n", portstr);
1059 } else
1060 dev_dbg(hub_dev, "standalone hub\n");
1061
Greg Kroah-Hartman74ad9bd2005-06-20 21:15:16 -07001062 switch (wHubCharacteristics & HUB_CHAR_LPSM) {
Aman Deep7bf01182011-12-08 12:05:22 +05301063 case HUB_CHAR_COMMON_LPSM:
1064 dev_dbg(hub_dev, "ganged power switching\n");
1065 break;
1066 case HUB_CHAR_INDV_PORT_LPSM:
1067 dev_dbg(hub_dev, "individual port power switching\n");
1068 break;
1069 case HUB_CHAR_NO_LPSM:
1070 case HUB_CHAR_LPSM:
1071 dev_dbg(hub_dev, "no power switching (usb 1.0)\n");
1072 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 }
1074
Greg Kroah-Hartman74ad9bd2005-06-20 21:15:16 -07001075 switch (wHubCharacteristics & HUB_CHAR_OCPM) {
Aman Deep7bf01182011-12-08 12:05:22 +05301076 case HUB_CHAR_COMMON_OCPM:
1077 dev_dbg(hub_dev, "global over-current protection\n");
1078 break;
1079 case HUB_CHAR_INDV_PORT_OCPM:
1080 dev_dbg(hub_dev, "individual port over-current protection\n");
1081 break;
1082 case HUB_CHAR_NO_OCPM:
1083 case HUB_CHAR_OCPM:
1084 dev_dbg(hub_dev, "no over-current protection\n");
1085 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 }
1087
1088 spin_lock_init (&hub->tt.lock);
1089 INIT_LIST_HEAD (&hub->tt.clear_list);
Alan Sterncb88a1b2009-06-29 10:43:32 -04001090 INIT_WORK(&hub->tt.clear_work, hub_tt_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 switch (hdev->descriptor.bDeviceProtocol) {
Aman Deep7bf01182011-12-08 12:05:22 +05301092 case USB_HUB_PR_FS:
1093 break;
1094 case USB_HUB_PR_HS_SINGLE_TT:
1095 dev_dbg(hub_dev, "Single TT\n");
1096 hub->tt.hub = hdev;
1097 break;
1098 case USB_HUB_PR_HS_MULTI_TT:
1099 ret = usb_set_interface(hdev, 0, 1);
1100 if (ret == 0) {
1101 dev_dbg(hub_dev, "TT per port\n");
1102 hub->tt.multi = 1;
1103 } else
1104 dev_err(hub_dev, "Using single TT (err %d)\n",
1105 ret);
1106 hub->tt.hub = hdev;
1107 break;
1108 case USB_HUB_PR_SS:
1109 /* USB 3.0 hubs don't have a TT */
1110 break;
1111 default:
1112 dev_dbg(hub_dev, "Unrecognized hub protocol %d\n",
1113 hdev->descriptor.bDeviceProtocol);
1114 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 }
1116
david-b@pacbell.nete09711a2005-08-13 18:41:04 -07001117 /* Note 8 FS bit times == (8 bits / 12000000 bps) ~= 666ns */
Greg Kroah-Hartman74ad9bd2005-06-20 21:15:16 -07001118 switch (wHubCharacteristics & HUB_CHAR_TTTT) {
david-b@pacbell.nete09711a2005-08-13 18:41:04 -07001119 case HUB_TTTT_8_BITS:
1120 if (hdev->descriptor.bDeviceProtocol != 0) {
1121 hub->tt.think_time = 666;
1122 dev_dbg(hub_dev, "TT requires at most %d "
1123 "FS bit times (%d ns)\n",
1124 8, hub->tt.think_time);
1125 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 break;
david-b@pacbell.nete09711a2005-08-13 18:41:04 -07001127 case HUB_TTTT_16_BITS:
1128 hub->tt.think_time = 666 * 2;
1129 dev_dbg(hub_dev, "TT requires at most %d "
1130 "FS bit times (%d ns)\n",
1131 16, hub->tt.think_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 break;
david-b@pacbell.nete09711a2005-08-13 18:41:04 -07001133 case HUB_TTTT_24_BITS:
1134 hub->tt.think_time = 666 * 3;
1135 dev_dbg(hub_dev, "TT requires at most %d "
1136 "FS bit times (%d ns)\n",
1137 24, hub->tt.think_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 break;
david-b@pacbell.nete09711a2005-08-13 18:41:04 -07001139 case HUB_TTTT_32_BITS:
1140 hub->tt.think_time = 666 * 4;
1141 dev_dbg(hub_dev, "TT requires at most %d "
1142 "FS bit times (%d ns)\n",
1143 32, hub->tt.think_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 break;
1145 }
1146
1147 /* probe() zeroes hub->indicator[] */
Greg Kroah-Hartman74ad9bd2005-06-20 21:15:16 -07001148 if (wHubCharacteristics & HUB_CHAR_PORTIND) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 hub->has_indicators = 1;
1150 dev_dbg(hub_dev, "Port indicators are supported\n");
1151 }
1152
1153 dev_dbg(hub_dev, "power on to power good time: %dms\n",
1154 hub->descriptor->bPwrOn2PwrGood * 2);
1155
1156 /* power budgeting mostly matters with bus-powered hubs,
1157 * and battery-powered root hubs (may provide just 8 mA).
1158 */
1159 ret = usb_get_status(hdev, USB_RECIP_DEVICE, 0, &hubstatus);
Alan Stern55c52712005-11-23 12:03:12 -05001160 if (ret < 2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 message = "can't get hub status";
1162 goto fail;
1163 }
Alan Stern7d35b922005-04-25 11:18:32 -04001164 le16_to_cpus(&hubstatus);
1165 if (hdev == hdev->bus->root_hub) {
Alan Stern55c52712005-11-23 12:03:12 -05001166 if (hdev->bus_mA == 0 || hdev->bus_mA >= 500)
1167 hub->mA_per_port = 500;
1168 else {
1169 hub->mA_per_port = hdev->bus_mA;
1170 hub->limited_power = 1;
1171 }
Alan Stern7d35b922005-04-25 11:18:32 -04001172 } else if ((hubstatus & (1 << USB_DEVICE_SELF_POWERED)) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 dev_dbg(hub_dev, "hub controller current requirement: %dmA\n",
1174 hub->descriptor->bHubContrCurrent);
Alan Stern55c52712005-11-23 12:03:12 -05001175 hub->limited_power = 1;
1176 if (hdev->maxchild > 0) {
1177 int remaining = hdev->bus_mA -
1178 hub->descriptor->bHubContrCurrent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179
Alan Stern55c52712005-11-23 12:03:12 -05001180 if (remaining < hdev->maxchild * 100)
1181 dev_warn(hub_dev,
1182 "insufficient power available "
1183 "to use all downstream ports\n");
1184 hub->mA_per_port = 100; /* 7.2.1.1 */
1185 }
1186 } else { /* Self-powered external hub */
1187 /* FIXME: What about battery-powered external hubs that
1188 * provide less current per port? */
1189 hub->mA_per_port = 500;
1190 }
1191 if (hub->mA_per_port < 500)
1192 dev_dbg(hub_dev, "%umA bus power budget for each child\n",
1193 hub->mA_per_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194
Sarah Sharpb356b7c2009-09-04 10:53:24 -07001195 /* Update the HCD's internal representation of this hub before khubd
1196 * starts getting port status changes for devices under the hub.
1197 */
1198 hcd = bus_to_hcd(hdev->bus);
1199 if (hcd->driver->update_hub_device) {
1200 ret = hcd->driver->update_hub_device(hcd, hdev,
1201 &hub->tt, GFP_KERNEL);
1202 if (ret < 0) {
1203 message = "can't update HCD hub info";
1204 goto fail;
1205 }
1206 }
1207
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 ret = hub_hub_status(hub, &hubstatus, &hubchange);
1209 if (ret < 0) {
1210 message = "can't get hub status";
1211 goto fail;
1212 }
1213
1214 /* local power status reports aren't always correct */
1215 if (hdev->actconfig->desc.bmAttributes & USB_CONFIG_ATT_SELFPOWER)
1216 dev_dbg(hub_dev, "local power source is %s\n",
1217 (hubstatus & HUB_STATUS_LOCAL_POWER)
1218 ? "lost (inactive)" : "good");
1219
Greg Kroah-Hartman74ad9bd2005-06-20 21:15:16 -07001220 if ((wHubCharacteristics & HUB_CHAR_OCPM) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 dev_dbg(hub_dev, "%sover-current condition exists\n",
1222 (hubstatus & HUB_STATUS_OVERCURRENT) ? "" : "no ");
1223
inaky@linux.intel.com88fafff2006-10-11 20:05:59 -07001224 /* set up the interrupt endpoint
1225 * We use the EP's maxpacket size instead of (PORTS+1+7)/8
1226 * bytes as USB2.0[11.12.3] says because some hubs are known
1227 * to send more data (and thus cause overflow). For root hubs,
1228 * maxpktsize is defined in hcd.c's fake endpoint descriptors
1229 * to be big enough for at least USB_MAXCHILDREN ports. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 pipe = usb_rcvintpipe(hdev, endpoint->bEndpointAddress);
1231 maxp = usb_maxpacket(hdev, pipe, usb_pipeout(pipe));
1232
1233 if (maxp > sizeof(*hub->buffer))
1234 maxp = sizeof(*hub->buffer);
1235
1236 hub->urb = usb_alloc_urb(0, GFP_KERNEL);
1237 if (!hub->urb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 ret = -ENOMEM;
1239 goto fail;
1240 }
1241
1242 usb_fill_int_urb(hub->urb, hdev, pipe, *hub->buffer, maxp, hub_irq,
1243 hub, endpoint->bInterval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244
1245 /* maybe cycle the hub leds */
1246 if (hub->has_indicators && blinkenlights)
1247 hub->indicator [0] = INDICATOR_CYCLE;
1248
Alan Sternf2835212008-04-28 11:07:17 -04001249 hub_activate(hub, HUB_INIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 return 0;
1251
1252fail:
1253 dev_err (hub_dev, "config failed, %s (err %d)\n",
1254 message, ret);
1255 /* hub_disconnect() frees urb and descriptor */
1256 return ret;
1257}
1258
Alan Sterne8054852007-05-04 11:55:11 -04001259static void hub_release(struct kref *kref)
1260{
1261 struct usb_hub *hub = container_of(kref, struct usb_hub, kref);
1262
1263 usb_put_intf(to_usb_interface(hub->intfdev));
1264 kfree(hub);
1265}
1266
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267static unsigned highspeed_hubs;
1268
1269static void hub_disconnect(struct usb_interface *intf)
1270{
1271 struct usb_hub *hub = usb_get_intfdata (intf);
Alan Sterne8054852007-05-04 11:55:11 -04001272
1273 /* Take the hub off the event list and don't let it be added again */
1274 spin_lock_irq(&hub_event_lock);
Alan Stern8e4ceb32009-12-07 13:01:37 -05001275 if (!list_empty(&hub->event_list)) {
1276 list_del_init(&hub->event_list);
1277 usb_autopm_put_interface_no_suspend(intf);
1278 }
Alan Sterne8054852007-05-04 11:55:11 -04001279 hub->disconnected = 1;
1280 spin_unlock_irq(&hub_event_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281
Alan Stern7de18d82006-06-01 13:37:24 -04001282 /* Disconnect all children and quiesce the hub */
1283 hub->error = 0;
Alan Stern43303542008-04-28 11:07:31 -04001284 hub_quiesce(hub, HUB_DISCONNECT);
Alan Stern7de18d82006-06-01 13:37:24 -04001285
Alan Stern8b28c752005-08-10 17:04:13 -04001286 usb_set_intfdata (intf, NULL);
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001287 hub->hdev->maxchild = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288
Alan Sterne8054852007-05-04 11:55:11 -04001289 if (hub->hdev->speed == USB_SPEED_HIGH)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 highspeed_hubs--;
1291
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 usb_free_urb(hub->urb);
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001293 kfree(hub->port_owners);
Jesper Juhl1bc3c9e2005-04-18 17:39:34 -07001294 kfree(hub->descriptor);
Jesper Juhl1bc3c9e2005-04-18 17:39:34 -07001295 kfree(hub->status);
Alan Sternd697cdd2009-10-27 15:18:46 -04001296 kfree(hub->buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297
Alan Sterne8054852007-05-04 11:55:11 -04001298 kref_put(&hub->kref, hub_release);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299}
1300
1301static int hub_probe(struct usb_interface *intf, const struct usb_device_id *id)
1302{
1303 struct usb_host_interface *desc;
1304 struct usb_endpoint_descriptor *endpoint;
1305 struct usb_device *hdev;
1306 struct usb_hub *hub;
1307
1308 desc = intf->cur_altsetting;
1309 hdev = interface_to_usbdev(intf);
1310
Sarah Sharp0c9ffe02010-12-30 13:27:36 -08001311 /* Hubs have proper suspend/resume support. USB 3.0 device suspend is
1312 * different from USB 2.0/1.1 device suspend, and unfortunately we
1313 * don't support it yet. So leave autosuspend disabled for USB 3.0
1314 * external hubs for now. Enable autosuspend for USB 3.0 roothubs,
1315 * since that isn't a "real" hub.
1316 */
1317 if (!hub_is_superspeed(hdev) || !hdev->parent)
1318 usb_enable_autosuspend(hdev);
Alan Stern088f7fe2010-01-08 12:56:54 -05001319
Felipe Balbi38f3ad52008-06-12 10:49:47 +03001320 if (hdev->level == MAX_TOPO_LEVEL) {
Wu Fengguangb9cef6c2008-12-15 15:32:01 +08001321 dev_err(&intf->dev,
1322 "Unsupported bus topology: hub nested too deep\n");
Felipe Balbi38f3ad52008-06-12 10:49:47 +03001323 return -E2BIG;
1324 }
1325
David Brownell89ccbdc2006-04-02 10:18:09 -08001326#ifdef CONFIG_USB_OTG_BLACKLIST_HUB
1327 if (hdev->parent) {
1328 dev_warn(&intf->dev, "ignoring external hub\n");
1329 return -ENODEV;
1330 }
1331#endif
1332
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 /* Some hubs have a subclass of 1, which AFAICT according to the */
1334 /* specs is not defined, but it works */
1335 if ((desc->desc.bInterfaceSubClass != 0) &&
1336 (desc->desc.bInterfaceSubClass != 1)) {
1337descriptor_error:
1338 dev_err (&intf->dev, "bad descriptor, ignoring hub\n");
1339 return -EIO;
1340 }
1341
1342 /* Multiple endpoints? What kind of mutant ninja-hub is this? */
1343 if (desc->desc.bNumEndpoints != 1)
1344 goto descriptor_error;
1345
1346 endpoint = &desc->endpoint[0].desc;
1347
Luiz Fernando N. Capitulinofbf81c22006-09-27 11:58:53 -07001348 /* If it's not an interrupt in endpoint, we'd better punt! */
1349 if (!usb_endpoint_is_int_in(endpoint))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 goto descriptor_error;
1351
1352 /* We found a hub */
1353 dev_info (&intf->dev, "USB hub found\n");
1354
Alan Stern0a1ef3b2005-10-24 15:38:24 -04001355 hub = kzalloc(sizeof(*hub), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 if (!hub) {
1357 dev_dbg (&intf->dev, "couldn't kmalloc hub struct\n");
1358 return -ENOMEM;
1359 }
1360
Alan Sterne8054852007-05-04 11:55:11 -04001361 kref_init(&hub->kref);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 INIT_LIST_HEAD(&hub->event_list);
1363 hub->intfdev = &intf->dev;
1364 hub->hdev = hdev;
David Howellsc4028952006-11-22 14:57:56 +00001365 INIT_DELAYED_WORK(&hub->leds, led_work);
Alan Stern8520f382008-09-22 14:44:26 -04001366 INIT_DELAYED_WORK(&hub->init_work, NULL);
Alan Sterne8054852007-05-04 11:55:11 -04001367 usb_get_intf(intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368
1369 usb_set_intfdata (intf, hub);
Alan Stern40f122f2006-11-09 14:44:33 -05001370 intf->needs_remote_wakeup = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371
1372 if (hdev->speed == USB_SPEED_HIGH)
1373 highspeed_hubs++;
1374
1375 if (hub_configure(hub, endpoint) >= 0)
1376 return 0;
1377
1378 hub_disconnect (intf);
1379 return -ENODEV;
1380}
1381
1382static int
1383hub_ioctl(struct usb_interface *intf, unsigned int code, void *user_data)
1384{
1385 struct usb_device *hdev = interface_to_usbdev (intf);
1386
1387 /* assert ifno == 0 (part of hub spec) */
1388 switch (code) {
1389 case USBDEVFS_HUB_PORTINFO: {
1390 struct usbdevfs_hub_portinfo *info = user_data;
1391 int i;
1392
1393 spin_lock_irq(&device_state_lock);
1394 if (hdev->devnum <= 0)
1395 info->nports = 0;
1396 else {
1397 info->nports = hdev->maxchild;
1398 for (i = 0; i < info->nports; i++) {
1399 if (hdev->children[i] == NULL)
1400 info->port[i] = 0;
1401 else
1402 info->port[i] =
1403 hdev->children[i]->devnum;
1404 }
1405 }
1406 spin_unlock_irq(&device_state_lock);
1407
1408 return info->nports + 1;
1409 }
1410
1411 default:
1412 return -ENOSYS;
1413 }
1414}
1415
Alan Stern7cbe5dc2009-06-29 10:56:54 -04001416/*
1417 * Allow user programs to claim ports on a hub. When a device is attached
1418 * to one of these "claimed" ports, the program will "own" the device.
1419 */
1420static int find_port_owner(struct usb_device *hdev, unsigned port1,
1421 void ***ppowner)
1422{
1423 if (hdev->state == USB_STATE_NOTATTACHED)
1424 return -ENODEV;
1425 if (port1 == 0 || port1 > hdev->maxchild)
1426 return -EINVAL;
1427
1428 /* This assumes that devices not managed by the hub driver
1429 * will always have maxchild equal to 0.
1430 */
1431 *ppowner = &(hdev_to_hub(hdev)->port_owners[port1 - 1]);
1432 return 0;
1433}
1434
1435/* In the following three functions, the caller must hold hdev's lock */
1436int usb_hub_claim_port(struct usb_device *hdev, unsigned port1, void *owner)
1437{
1438 int rc;
1439 void **powner;
1440
1441 rc = find_port_owner(hdev, port1, &powner);
1442 if (rc)
1443 return rc;
1444 if (*powner)
1445 return -EBUSY;
1446 *powner = owner;
1447 return rc;
1448}
1449
1450int usb_hub_release_port(struct usb_device *hdev, unsigned port1, void *owner)
1451{
1452 int rc;
1453 void **powner;
1454
1455 rc = find_port_owner(hdev, port1, &powner);
1456 if (rc)
1457 return rc;
1458 if (*powner != owner)
1459 return -ENOENT;
1460 *powner = NULL;
1461 return rc;
1462}
1463
1464void usb_hub_release_all_ports(struct usb_device *hdev, void *owner)
1465{
1466 int n;
1467 void **powner;
1468
1469 n = find_port_owner(hdev, 1, &powner);
1470 if (n == 0) {
1471 for (; n < hdev->maxchild; (++n, ++powner)) {
1472 if (*powner == owner)
1473 *powner = NULL;
1474 }
1475 }
1476}
1477
1478/* The caller must hold udev's lock */
1479bool usb_device_is_owned(struct usb_device *udev)
1480{
1481 struct usb_hub *hub;
1482
1483 if (udev->state == USB_STATE_NOTATTACHED || !udev->parent)
1484 return false;
1485 hub = hdev_to_hub(udev->parent);
1486 return !!hub->port_owners[udev->portnum - 1];
1487}
1488
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490static void recursively_mark_NOTATTACHED(struct usb_device *udev)
1491{
1492 int i;
1493
1494 for (i = 0; i < udev->maxchild; ++i) {
1495 if (udev->children[i])
1496 recursively_mark_NOTATTACHED(udev->children[i]);
1497 }
Alan Stern9bbdf1e2010-01-08 12:57:28 -05001498 if (udev->state == USB_STATE_SUSPENDED)
Sarah Sharp15123002007-12-21 16:54:15 -08001499 udev->active_duration -= jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 udev->state = USB_STATE_NOTATTACHED;
1501}
1502
1503/**
1504 * usb_set_device_state - change a device's current state (usbcore, hcds)
1505 * @udev: pointer to device whose state should be changed
1506 * @new_state: new state value to be stored
1507 *
1508 * udev->state is _not_ fully protected by the device lock. Although
1509 * most transitions are made only while holding the lock, the state can
1510 * can change to USB_STATE_NOTATTACHED at almost any time. This
1511 * is so that devices can be marked as disconnected as soon as possible,
1512 * without having to wait for any semaphores to be released. As a result,
1513 * all changes to any device's state must be protected by the
1514 * device_state_lock spinlock.
1515 *
1516 * Once a device has been added to the device tree, all changes to its state
1517 * should be made using this routine. The state should _not_ be set directly.
1518 *
1519 * If udev->state is already USB_STATE_NOTATTACHED then no change is made.
1520 * Otherwise udev->state is set to new_state, and if new_state is
1521 * USB_STATE_NOTATTACHED then all of udev's descendants' states are also set
1522 * to USB_STATE_NOTATTACHED.
1523 */
1524void usb_set_device_state(struct usb_device *udev,
1525 enum usb_device_state new_state)
1526{
1527 unsigned long flags;
Rafael J. Wysocki4681b172011-02-08 23:25:48 +01001528 int wakeup = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529
1530 spin_lock_irqsave(&device_state_lock, flags);
1531 if (udev->state == USB_STATE_NOTATTACHED)
1532 ; /* do nothing */
David Brownellb94dc6b2005-09-12 19:39:39 -07001533 else if (new_state != USB_STATE_NOTATTACHED) {
David Brownellfb669cc2006-01-24 08:40:27 -08001534
1535 /* root hub wakeup capabilities are managed out-of-band
1536 * and may involve silicon errata ... ignore them here.
1537 */
1538 if (udev->parent) {
Alan Stern645daaa2006-08-30 15:47:02 -04001539 if (udev->state == USB_STATE_SUSPENDED
1540 || new_state == USB_STATE_SUSPENDED)
1541 ; /* No change to wakeup settings */
1542 else if (new_state == USB_STATE_CONFIGURED)
Rafael J. Wysocki4681b172011-02-08 23:25:48 +01001543 wakeup = udev->actconfig->desc.bmAttributes
1544 & USB_CONFIG_ATT_WAKEUP;
Alan Stern645daaa2006-08-30 15:47:02 -04001545 else
Rafael J. Wysocki4681b172011-02-08 23:25:48 +01001546 wakeup = 0;
David Brownellfb669cc2006-01-24 08:40:27 -08001547 }
Sarah Sharp15123002007-12-21 16:54:15 -08001548 if (udev->state == USB_STATE_SUSPENDED &&
1549 new_state != USB_STATE_SUSPENDED)
1550 udev->active_duration -= jiffies;
1551 else if (new_state == USB_STATE_SUSPENDED &&
1552 udev->state != USB_STATE_SUSPENDED)
1553 udev->active_duration += jiffies;
Alan Stern645daaa2006-08-30 15:47:02 -04001554 udev->state = new_state;
David Brownellb94dc6b2005-09-12 19:39:39 -07001555 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 recursively_mark_NOTATTACHED(udev);
1557 spin_unlock_irqrestore(&device_state_lock, flags);
Rafael J. Wysocki4681b172011-02-08 23:25:48 +01001558 if (wakeup >= 0)
1559 device_set_wakeup_capable(&udev->dev, wakeup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560}
David Vrabel6da9c992009-02-18 14:43:47 +00001561EXPORT_SYMBOL_GPL(usb_set_device_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562
Inaky Perez-Gonzalez8af548d2008-04-08 13:24:46 -07001563/*
Alan Stern3b29b682011-02-22 09:53:41 -05001564 * Choose a device number.
1565 *
1566 * Device numbers are used as filenames in usbfs. On USB-1.1 and
1567 * USB-2.0 buses they are also used as device addresses, however on
1568 * USB-3.0 buses the address is assigned by the controller hardware
1569 * and it usually is not the same as the device number.
1570 *
Inaky Perez-Gonzalez8af548d2008-04-08 13:24:46 -07001571 * WUSB devices are simple: they have no hubs behind, so the mapping
1572 * device <-> virtual port number becomes 1:1. Why? to simplify the
1573 * life of the device connection logic in
1574 * drivers/usb/wusbcore/devconnect.c. When we do the initial secret
1575 * handshake we need to assign a temporary address in the unauthorized
1576 * space. For simplicity we use the first virtual port number found to
1577 * be free [drivers/usb/wusbcore/devconnect.c:wusbhc_devconnect_ack()]
1578 * and that becomes it's address [X < 128] or its unauthorized address
1579 * [X | 0x80].
1580 *
1581 * We add 1 as an offset to the one-based USB-stack port number
1582 * (zero-based wusb virtual port index) for two reasons: (a) dev addr
1583 * 0 is reserved by USB for default address; (b) Linux's USB stack
1584 * uses always #1 for the root hub of the controller. So USB stack's
1585 * port #1, which is wusb virtual-port #0 has address #2.
Sarah Sharpc6515272009-04-27 19:57:26 -07001586 *
1587 * Devices connected under xHCI are not as simple. The host controller
1588 * supports virtualization, so the hardware assigns device addresses and
1589 * the HCD must setup data structures before issuing a set address
1590 * command to the hardware.
Inaky Perez-Gonzalez8af548d2008-04-08 13:24:46 -07001591 */
Alan Stern3b29b682011-02-22 09:53:41 -05001592static void choose_devnum(struct usb_device *udev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593{
1594 int devnum;
1595 struct usb_bus *bus = udev->bus;
1596
1597 /* If khubd ever becomes multithreaded, this will need a lock */
Inaky Perez-Gonzalez8af548d2008-04-08 13:24:46 -07001598 if (udev->wusb) {
1599 devnum = udev->portnum + 1;
1600 BUG_ON(test_bit(devnum, bus->devmap.devicemap));
1601 } else {
1602 /* Try to allocate the next devnum beginning at
1603 * bus->devnum_next. */
1604 devnum = find_next_zero_bit(bus->devmap.devicemap, 128,
1605 bus->devnum_next);
1606 if (devnum >= 128)
1607 devnum = find_next_zero_bit(bus->devmap.devicemap,
1608 128, 1);
1609 bus->devnum_next = ( devnum >= 127 ? 1 : devnum + 1);
1610 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 if (devnum < 128) {
1612 set_bit(devnum, bus->devmap.devicemap);
1613 udev->devnum = devnum;
1614 }
1615}
1616
Alan Stern3b29b682011-02-22 09:53:41 -05001617static void release_devnum(struct usb_device *udev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618{
1619 if (udev->devnum > 0) {
1620 clear_bit(udev->devnum, udev->bus->devmap.devicemap);
1621 udev->devnum = -1;
1622 }
1623}
1624
Alan Stern3b29b682011-02-22 09:53:41 -05001625static void update_devnum(struct usb_device *udev, int devnum)
David Vrabel4953d142008-04-08 13:24:46 -07001626{
1627 /* The address for a WUSB device is managed by wusbcore. */
1628 if (!udev->wusb)
1629 udev->devnum = devnum;
1630}
1631
Herbert Xuf7410ce2010-01-10 20:15:03 +11001632static void hub_free_dev(struct usb_device *udev)
1633{
1634 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
1635
1636 /* Root hubs aren't real devices, so don't free HCD resources */
1637 if (hcd->driver->free_dev && udev->parent)
1638 hcd->driver->free_dev(hcd, udev);
1639}
1640
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641/**
1642 * usb_disconnect - disconnect a device (usbcore-internal)
1643 * @pdev: pointer to device being disconnected
1644 * Context: !in_interrupt ()
1645 *
1646 * Something got disconnected. Get rid of it and all of its children.
1647 *
1648 * If *pdev is a normal device then the parent hub must already be locked.
1649 * If *pdev is a root hub then this routine will acquire the
1650 * usb_bus_list_lock on behalf of the caller.
1651 *
1652 * Only hub drivers (including virtual root hub drivers for host
1653 * controllers) should ever call this.
1654 *
1655 * This call is synchronous, and may not be used in an interrupt context.
1656 */
1657void usb_disconnect(struct usb_device **pdev)
1658{
1659 struct usb_device *udev = *pdev;
1660 int i;
Sarah Sharpfccf4e82011-06-05 23:22:22 -07001661 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663 /* mark the device as inactive, so any further urb submissions for
1664 * this device (and any of its children) will fail immediately.
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001665 * this quiesces everything except pending urbs.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666 */
1667 usb_set_device_state(udev, USB_STATE_NOTATTACHED);
Alan Stern3b29b682011-02-22 09:53:41 -05001668 dev_info(&udev->dev, "USB disconnect, device number %d\n",
1669 udev->devnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670
Alan Stern9ad3d6c2005-11-17 17:10:32 -05001671 usb_lock_device(udev);
1672
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 /* Free up all the children before we remove this device */
1674 for (i = 0; i < USB_MAXCHILDREN; i++) {
1675 if (udev->children[i])
1676 usb_disconnect(&udev->children[i]);
1677 }
1678
1679 /* deallocate hcd/hardware state ... nuking all pending urbs and
1680 * cleaning up all state associated with the current configuration
1681 * so that the hardware is now fully quiesced.
1682 */
Alan Stern782da722006-07-01 22:09:35 -04001683 dev_dbg (&udev->dev, "unregistering device\n");
Sarah Sharpfccf4e82011-06-05 23:22:22 -07001684 mutex_lock(hcd->bandwidth_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685 usb_disable_device(udev, 0);
Sarah Sharpfccf4e82011-06-05 23:22:22 -07001686 mutex_unlock(hcd->bandwidth_mutex);
Alan Sterncde217a2008-10-21 15:28:46 -04001687 usb_hcd_synchronize_unlinks(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688
Alan Stern3b23dd62008-12-05 14:10:34 -05001689 usb_remove_ep_devs(&udev->ep0);
Alan Stern782da722006-07-01 22:09:35 -04001690 usb_unlock_device(udev);
Greg Kroah-Hartman3099e752005-06-20 21:15:16 -07001691
Alan Stern782da722006-07-01 22:09:35 -04001692 /* Unregister the device. The device driver is responsible
Alan Stern3b23dd62008-12-05 14:10:34 -05001693 * for de-configuring the device and invoking the remove-device
1694 * notifier chain (used by usbfs and possibly others).
Alan Stern782da722006-07-01 22:09:35 -04001695 */
1696 device_del(&udev->dev);
1697
1698 /* Free the device number and delete the parent's children[]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699 * (or root_hub) pointer.
1700 */
Alan Stern3b29b682011-02-22 09:53:41 -05001701 release_devnum(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702
1703 /* Avoid races with recursively_mark_NOTATTACHED() */
1704 spin_lock_irq(&device_state_lock);
1705 *pdev = NULL;
1706 spin_unlock_irq(&device_state_lock);
1707
Herbert Xuf7410ce2010-01-10 20:15:03 +11001708 hub_free_dev(udev);
1709
Alan Stern782da722006-07-01 22:09:35 -04001710 put_device(&udev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711}
1712
Greg Kroah-Hartmanf2a383e2007-11-26 22:11:55 -08001713#ifdef CONFIG_USB_ANNOUNCE_NEW_DEVICES
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714static void show_string(struct usb_device *udev, char *id, char *string)
1715{
1716 if (!string)
1717 return;
1718 dev_printk(KERN_INFO, &udev->dev, "%s: %s\n", id, string);
1719}
1720
Greg Kroah-Hartmanf2a383e2007-11-26 22:11:55 -08001721static void announce_device(struct usb_device *udev)
1722{
1723 dev_info(&udev->dev, "New USB device found, idVendor=%04x, idProduct=%04x\n",
1724 le16_to_cpu(udev->descriptor.idVendor),
1725 le16_to_cpu(udev->descriptor.idProduct));
Wu Fengguangb9cef6c2008-12-15 15:32:01 +08001726 dev_info(&udev->dev,
1727 "New USB device strings: Mfr=%d, Product=%d, SerialNumber=%d\n",
Greg Kroah-Hartmanf2a383e2007-11-26 22:11:55 -08001728 udev->descriptor.iManufacturer,
1729 udev->descriptor.iProduct,
1730 udev->descriptor.iSerialNumber);
1731 show_string(udev, "Product", udev->product);
1732 show_string(udev, "Manufacturer", udev->manufacturer);
1733 show_string(udev, "SerialNumber", udev->serial);
1734}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735#else
Greg Kroah-Hartmanf2a383e2007-11-26 22:11:55 -08001736static inline void announce_device(struct usb_device *udev) { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737#endif
1738
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739#ifdef CONFIG_USB_OTG
1740#include "otg_whitelist.h"
1741#endif
1742
Oliver Neukum3ede7602007-01-11 14:35:50 +01001743/**
Alan Stern8d8558d2009-12-08 15:50:41 -05001744 * usb_enumerate_device_otg - FIXME (usbcore-internal)
Oliver Neukum3ede7602007-01-11 14:35:50 +01001745 * @udev: newly addressed device (in ADDRESS state)
1746 *
Alan Stern8d8558d2009-12-08 15:50:41 -05001747 * Finish enumeration for On-The-Go devices
Oliver Neukum3ede7602007-01-11 14:35:50 +01001748 */
Alan Stern8d8558d2009-12-08 15:50:41 -05001749static int usb_enumerate_device_otg(struct usb_device *udev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750{
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07001751 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752
1753#ifdef CONFIG_USB_OTG
1754 /*
1755 * OTG-aware devices on OTG-capable root hubs may be able to use SRP,
1756 * to wake us after we've powered off VBUS; and HNP, switching roles
1757 * "host" to "peripheral". The OTG descriptor helps figure this out.
1758 */
1759 if (!udev->bus->is_b_host
1760 && udev->config
1761 && udev->parent == udev->bus->root_hub) {
Felipe Balbi2eb50522009-12-04 15:47:43 +02001762 struct usb_otg_descriptor *desc = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763 struct usb_bus *bus = udev->bus;
1764
1765 /* descriptor may appear anywhere in config */
1766 if (__usb_get_extra_descriptor (udev->rawdescriptors[0],
1767 le16_to_cpu(udev->config[0].desc.wTotalLength),
1768 USB_DT_OTG, (void **) &desc) == 0) {
1769 if (desc->bmAttributes & USB_OTG_HNP) {
Alan Stern12c3da32005-11-23 12:09:52 -05001770 unsigned port1 = udev->portnum;
David Brownellfc849b82006-09-18 16:53:26 -07001771
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772 dev_info(&udev->dev,
1773 "Dual-Role OTG device on %sHNP port\n",
1774 (port1 == bus->otg_port)
1775 ? "" : "non-");
1776
1777 /* enable HNP before suspend, it's simpler */
1778 if (port1 == bus->otg_port)
1779 bus->b_hnp_enable = 1;
1780 err = usb_control_msg(udev,
1781 usb_sndctrlpipe(udev, 0),
1782 USB_REQ_SET_FEATURE, 0,
1783 bus->b_hnp_enable
1784 ? USB_DEVICE_B_HNP_ENABLE
1785 : USB_DEVICE_A_ALT_HNP_SUPPORT,
1786 0, NULL, 0, USB_CTRL_SET_TIMEOUT);
1787 if (err < 0) {
1788 /* OTG MESSAGE: report errors here,
1789 * customize to match your product.
1790 */
1791 dev_info(&udev->dev,
Wu Fengguangb9cef6c2008-12-15 15:32:01 +08001792 "can't set HNP mode: %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793 err);
1794 bus->b_hnp_enable = 0;
1795 }
1796 }
1797 }
1798 }
1799
1800 if (!is_targeted(udev)) {
1801
1802 /* Maybe it can talk to us, though we can't talk to it.
1803 * (Includes HNP test device.)
1804 */
1805 if (udev->bus->b_hnp_enable || udev->bus->is_b_host) {
David Brownell634a84f2009-01-15 13:51:28 -08001806 err = usb_port_suspend(udev, PMSG_SUSPEND);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807 if (err < 0)
1808 dev_dbg(&udev->dev, "HNP fail, %d\n", err);
1809 }
Vikram Panditaffcdc182007-05-25 21:31:07 -07001810 err = -ENOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811 goto fail;
1812 }
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07001813fail:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814#endif
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07001815 return err;
1816}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07001818
1819/**
Alan Stern8d8558d2009-12-08 15:50:41 -05001820 * usb_enumerate_device - Read device configs/intfs/otg (usbcore-internal)
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07001821 * @udev: newly addressed device (in ADDRESS state)
1822 *
1823 * This is only called by usb_new_device() and usb_authorize_device()
1824 * and FIXME -- all comments that apply to them apply here wrt to
1825 * environment.
1826 *
1827 * If the device is WUSB and not authorized, we don't attempt to read
1828 * the string descriptors, as they will be errored out by the device
1829 * until it has been authorized.
1830 */
Alan Stern8d8558d2009-12-08 15:50:41 -05001831static int usb_enumerate_device(struct usb_device *udev)
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07001832{
1833 int err;
1834
1835 if (udev->config == NULL) {
1836 err = usb_get_configuration(udev);
1837 if (err < 0) {
1838 dev_err(&udev->dev, "can't read configurations, error %d\n",
1839 err);
1840 goto fail;
1841 }
1842 }
1843 if (udev->wusb == 1 && udev->authorized == 0) {
1844 udev->product = kstrdup("n/a (unauthorized)", GFP_KERNEL);
1845 udev->manufacturer = kstrdup("n/a (unauthorized)", GFP_KERNEL);
1846 udev->serial = kstrdup("n/a (unauthorized)", GFP_KERNEL);
1847 }
1848 else {
1849 /* read the standard strings and cache them if present */
1850 udev->product = usb_cache_string(udev, udev->descriptor.iProduct);
1851 udev->manufacturer = usb_cache_string(udev,
1852 udev->descriptor.iManufacturer);
1853 udev->serial = usb_cache_string(udev, udev->descriptor.iSerialNumber);
1854 }
Alan Stern8d8558d2009-12-08 15:50:41 -05001855 err = usb_enumerate_device_otg(udev);
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07001856fail:
1857 return err;
1858}
1859
Matthew Garrettd35e70d2012-02-03 17:11:55 -05001860static void set_usb_port_removable(struct usb_device *udev)
1861{
1862 struct usb_device *hdev = udev->parent;
1863 struct usb_hub *hub;
1864 u8 port = udev->portnum;
1865 u16 wHubCharacteristics;
1866 bool removable = true;
1867
1868 if (!hdev)
1869 return;
1870
1871 hub = hdev_to_hub(udev->parent);
1872
1873 wHubCharacteristics = le16_to_cpu(hub->descriptor->wHubCharacteristics);
1874
1875 if (!(wHubCharacteristics & HUB_CHAR_COMPOUND))
1876 return;
1877
1878 if (hub_is_superspeed(hdev)) {
1879 if (hub->descriptor->u.ss.DeviceRemovable & (1 << port))
1880 removable = false;
1881 } else {
1882 if (hub->descriptor->u.hs.DeviceRemovable[port / 8] & (1 << (port % 8)))
1883 removable = false;
1884 }
1885
1886 if (removable)
1887 udev->removable = USB_DEVICE_REMOVABLE;
1888 else
1889 udev->removable = USB_DEVICE_FIXED;
1890}
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07001891
1892/**
1893 * usb_new_device - perform initial device setup (usbcore-internal)
1894 * @udev: newly addressed device (in ADDRESS state)
1895 *
Alan Stern8d8558d2009-12-08 15:50:41 -05001896 * This is called with devices which have been detected but not fully
1897 * enumerated. The device descriptor is available, but not descriptors
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07001898 * for any device configuration. The caller must have locked either
1899 * the parent hub (if udev is a normal device) or else the
1900 * usb_bus_list_lock (if udev is a root hub). The parent's pointer to
1901 * udev has already been installed, but udev is not yet visible through
1902 * sysfs or other filesystem code.
1903 *
1904 * It will return if the device is configured properly or not. Zero if
1905 * the interface was registered with the driver core; else a negative
1906 * errno value.
1907 *
1908 * This call is synchronous, and may not be used in an interrupt context.
1909 *
1910 * Only the hub driver or root-hub registrar should ever call this.
1911 */
1912int usb_new_device(struct usb_device *udev)
1913{
1914 int err;
1915
Dan Streetman16985402010-01-06 09:56:53 -05001916 if (udev->parent) {
Dan Streetman16985402010-01-06 09:56:53 -05001917 /* Initialize non-root-hub device wakeup to disabled;
1918 * device (un)configuration controls wakeup capable
1919 * sysfs power/wakeup controls wakeup enabled/disabled
1920 */
1921 device_init_wakeup(&udev->dev, 0);
Dan Streetman16985402010-01-06 09:56:53 -05001922 }
1923
Alan Stern9bbdf1e2010-01-08 12:57:28 -05001924 /* Tell the runtime-PM framework the device is active */
1925 pm_runtime_set_active(&udev->dev);
Alan Sternc08512c2010-11-15 15:57:58 -05001926 pm_runtime_get_noresume(&udev->dev);
Alan Sternfcc4a012010-11-15 15:57:51 -05001927 pm_runtime_use_autosuspend(&udev->dev);
Alan Stern9bbdf1e2010-01-08 12:57:28 -05001928 pm_runtime_enable(&udev->dev);
1929
Alan Sternc08512c2010-11-15 15:57:58 -05001930 /* By default, forbid autosuspend for all devices. It will be
1931 * allowed for hubs during binding.
1932 */
1933 usb_disable_autosuspend(udev);
1934
Alan Stern8d8558d2009-12-08 15:50:41 -05001935 err = usb_enumerate_device(udev); /* Read descriptors */
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07001936 if (err < 0)
1937 goto fail;
Sarah Sharpc6515272009-04-27 19:57:26 -07001938 dev_dbg(&udev->dev, "udev %d, busnum %d, minor = %d\n",
1939 udev->devnum, udev->bus->busnum,
1940 (((udev->bus->busnum-1) * 128) + (udev->devnum-1)));
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001941 /* export the usbdev device-node for libusb */
1942 udev->dev.devt = MKDEV(USB_DEVICE_MAJOR,
1943 (((udev->bus->busnum-1) * 128) + (udev->devnum-1)));
1944
Alan Stern6cd13202008-11-13 15:08:30 -05001945 /* Tell the world! */
1946 announce_device(udev);
Alan Stern195af2c2007-07-16 15:28:19 -04001947
Rafael J. Wysocki927bc912010-02-08 19:18:16 +01001948 device_enable_async_suspend(&udev->dev);
Matthew Garrettd35e70d2012-02-03 17:11:55 -05001949
1950 /*
1951 * check whether the hub marks this port as non-removable. Do it
1952 * now so that platform-specific data can override it in
1953 * device_add()
1954 */
1955 if (udev->parent)
1956 set_usb_port_removable(udev);
1957
Alan Stern782da722006-07-01 22:09:35 -04001958 /* Register the device. The device driver is responsible
Alan Stern3b23dd62008-12-05 14:10:34 -05001959 * for configuring the device and invoking the add-device
1960 * notifier chain (used by usbfs and possibly others).
Alan Stern782da722006-07-01 22:09:35 -04001961 */
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001962 err = device_add(&udev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963 if (err) {
1964 dev_err(&udev->dev, "can't device_add, error %d\n", err);
1965 goto fail;
1966 }
Alan Stern9ad3d6c2005-11-17 17:10:32 -05001967
Alan Stern3b23dd62008-12-05 14:10:34 -05001968 (void) usb_create_ep_devs(&udev->dev, &udev->ep0, udev);
Alan Sternc08512c2010-11-15 15:57:58 -05001969 usb_mark_last_busy(udev);
1970 pm_runtime_put_sync_autosuspend(&udev->dev);
Greg Kroah-Hartmanc0664752006-08-11 01:55:12 -07001971 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972
1973fail:
1974 usb_set_device_state(udev, USB_STATE_NOTATTACHED);
Alan Stern9bbdf1e2010-01-08 12:57:28 -05001975 pm_runtime_disable(&udev->dev);
1976 pm_runtime_set_suspended(&udev->dev);
Inaky Perez-Gonzalezd9d16e82007-07-31 20:34:05 -07001977 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978}
1979
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07001980
1981/**
Randy Dunlapfd39c862007-10-15 17:30:02 -07001982 * usb_deauthorize_device - deauthorize a device (usbcore-internal)
1983 * @usb_dev: USB device
1984 *
1985 * Move the USB device to a very basic state where interfaces are disabled
1986 * and the device is in fact unconfigured and unusable.
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07001987 *
1988 * We share a lock (that we have) with device_del(), so we need to
1989 * defer its call.
1990 */
1991int usb_deauthorize_device(struct usb_device *usb_dev)
1992{
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07001993 usb_lock_device(usb_dev);
1994 if (usb_dev->authorized == 0)
1995 goto out_unauthorized;
Alan Sternda307122009-12-08 15:54:44 -05001996
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07001997 usb_dev->authorized = 0;
1998 usb_set_configuration(usb_dev, -1);
Alan Sternda307122009-12-08 15:54:44 -05001999
2000 kfree(usb_dev->product);
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002001 usb_dev->product = kstrdup("n/a (unauthorized)", GFP_KERNEL);
Alan Sternda307122009-12-08 15:54:44 -05002002 kfree(usb_dev->manufacturer);
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002003 usb_dev->manufacturer = kstrdup("n/a (unauthorized)", GFP_KERNEL);
Alan Sternda307122009-12-08 15:54:44 -05002004 kfree(usb_dev->serial);
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002005 usb_dev->serial = kstrdup("n/a (unauthorized)", GFP_KERNEL);
Alan Sternda307122009-12-08 15:54:44 -05002006
2007 usb_destroy_configuration(usb_dev);
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002008 usb_dev->descriptor.bNumConfigurations = 0;
Alan Sternda307122009-12-08 15:54:44 -05002009
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002010out_unauthorized:
2011 usb_unlock_device(usb_dev);
2012 return 0;
2013}
2014
2015
2016int usb_authorize_device(struct usb_device *usb_dev)
2017{
2018 int result = 0, c;
Alan Sternda307122009-12-08 15:54:44 -05002019
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002020 usb_lock_device(usb_dev);
2021 if (usb_dev->authorized == 1)
2022 goto out_authorized;
Alan Sternda307122009-12-08 15:54:44 -05002023
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002024 result = usb_autoresume_device(usb_dev);
2025 if (result < 0) {
2026 dev_err(&usb_dev->dev,
2027 "can't autoresume for authorization: %d\n", result);
2028 goto error_autoresume;
2029 }
2030 result = usb_get_device_descriptor(usb_dev, sizeof(usb_dev->descriptor));
2031 if (result < 0) {
2032 dev_err(&usb_dev->dev, "can't re-read device descriptor for "
2033 "authorization: %d\n", result);
2034 goto error_device_descriptor;
2035 }
Alan Sternda307122009-12-08 15:54:44 -05002036
2037 kfree(usb_dev->product);
2038 usb_dev->product = NULL;
2039 kfree(usb_dev->manufacturer);
2040 usb_dev->manufacturer = NULL;
2041 kfree(usb_dev->serial);
2042 usb_dev->serial = NULL;
2043
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002044 usb_dev->authorized = 1;
Alan Stern8d8558d2009-12-08 15:50:41 -05002045 result = usb_enumerate_device(usb_dev);
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002046 if (result < 0)
Alan Stern8d8558d2009-12-08 15:50:41 -05002047 goto error_enumerate;
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002048 /* Choose and set the configuration. This registers the interfaces
2049 * with the driver core and lets interface drivers bind to them.
2050 */
Greg Kroah-Hartmanb5ea0602007-08-02 22:44:27 -06002051 c = usb_choose_configuration(usb_dev);
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002052 if (c >= 0) {
2053 result = usb_set_configuration(usb_dev, c);
2054 if (result) {
2055 dev_err(&usb_dev->dev,
2056 "can't set config #%d, error %d\n", c, result);
2057 /* This need not be fatal. The user can try to
2058 * set other configurations. */
2059 }
2060 }
2061 dev_info(&usb_dev->dev, "authorized to connect\n");
Alan Sternda307122009-12-08 15:54:44 -05002062
Alan Stern8d8558d2009-12-08 15:50:41 -05002063error_enumerate:
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002064error_device_descriptor:
Alan Sternda307122009-12-08 15:54:44 -05002065 usb_autosuspend_device(usb_dev);
Inaky Perez-Gonzalez93993a02007-07-31 20:34:06 -07002066error_autoresume:
2067out_authorized:
2068 usb_unlock_device(usb_dev); // complements locktree
2069 return result;
2070}
2071
2072
Inaky Perez-Gonzalez0165de02006-08-25 19:35:29 -07002073/* Returns 1 if @hub is a WUSB root hub, 0 otherwise */
2074static unsigned hub_is_wusb(struct usb_hub *hub)
2075{
2076 struct usb_hcd *hcd;
2077 if (hub->hdev->parent != NULL) /* not a root hub? */
2078 return 0;
2079 hcd = container_of(hub->hdev->bus, struct usb_hcd, self);
2080 return hcd->wireless;
2081}
2082
2083
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084#define PORT_RESET_TRIES 5
2085#define SET_ADDRESS_TRIES 2
2086#define GET_DESCRIPTOR_TRIES 2
2087#define SET_CONFIG_TRIES (2 * (use_both_schemes + 1))
Rusty Russell90ab5ee2012-01-13 09:32:20 +10302088#define USE_NEW_SCHEME(i) ((i) / 2 == (int)old_scheme_first)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089
2090#define HUB_ROOT_RESET_TIME 50 /* times are in msec */
2091#define HUB_SHORT_RESET_TIME 10
Andiry Xu75d7cf72011-09-13 16:41:11 -07002092#define HUB_BH_RESET_TIME 50
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093#define HUB_LONG_RESET_TIME 200
2094#define HUB_RESET_TIMEOUT 500
2095
Sarah Sharp10d674a2011-09-14 14:24:52 -07002096static int hub_port_reset(struct usb_hub *hub, int port1,
2097 struct usb_device *udev, unsigned int delay, bool warm);
2098
2099/* Is a USB 3.0 port in the Inactive state? */
2100static bool hub_port_inactive(struct usb_hub *hub, u16 portstatus)
2101{
2102 return hub_is_superspeed(hub->hdev) &&
2103 (portstatus & USB_PORT_STAT_LINK_STATE) ==
2104 USB_SS_PORT_LS_SS_INACTIVE;
2105}
2106
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107static int hub_port_wait_reset(struct usb_hub *hub, int port1,
Andiry Xu75d7cf72011-09-13 16:41:11 -07002108 struct usb_device *udev, unsigned int delay, bool warm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109{
2110 int delay_time, ret;
2111 u16 portstatus;
2112 u16 portchange;
2113
2114 for (delay_time = 0;
2115 delay_time < HUB_RESET_TIMEOUT;
2116 delay_time += delay) {
2117 /* wait to give the device a chance to reset */
2118 msleep(delay);
2119
2120 /* read and decode port status */
2121 ret = hub_port_status(hub, port1, &portstatus, &portchange);
2122 if (ret < 0)
2123 return ret;
2124
Andiry Xu75d7cf72011-09-13 16:41:11 -07002125 /*
2126 * Some buggy devices require a warm reset to be issued even
2127 * when the port appears not to be connected.
2128 */
2129 if (!warm) {
Sarah Sharp10d674a2011-09-14 14:24:52 -07002130 /*
2131 * Some buggy devices can cause an NEC host controller
2132 * to transition to the "Error" state after a hot port
2133 * reset. This will show up as the port state in
2134 * "Inactive", and the port may also report a
2135 * disconnect. Forcing a warm port reset seems to make
2136 * the device work.
2137 *
2138 * See https://bugzilla.kernel.org/show_bug.cgi?id=41752
2139 */
2140 if (hub_port_inactive(hub, portstatus)) {
2141 int ret;
2142
2143 if ((portchange & USB_PORT_STAT_C_CONNECTION))
2144 clear_port_feature(hub->hdev, port1,
2145 USB_PORT_FEAT_C_CONNECTION);
2146 if (portchange & USB_PORT_STAT_C_LINK_STATE)
2147 clear_port_feature(hub->hdev, port1,
2148 USB_PORT_FEAT_C_PORT_LINK_STATE);
2149 if (portchange & USB_PORT_STAT_C_RESET)
2150 clear_port_feature(hub->hdev, port1,
2151 USB_PORT_FEAT_C_RESET);
2152 dev_dbg(hub->intfdev, "hot reset failed, warm reset port %d\n",
2153 port1);
2154 ret = hub_port_reset(hub, port1,
2155 udev, HUB_BH_RESET_TIME,
2156 true);
2157 if ((portchange & USB_PORT_STAT_C_CONNECTION))
2158 clear_port_feature(hub->hdev, port1,
2159 USB_PORT_FEAT_C_CONNECTION);
2160 return ret;
2161 }
Andiry Xu75d7cf72011-09-13 16:41:11 -07002162 /* Device went away? */
2163 if (!(portstatus & USB_PORT_STAT_CONNECTION))
2164 return -ENOTCONN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165
Andiry Xu75d7cf72011-09-13 16:41:11 -07002166 /* bomb out completely if the connection bounced */
2167 if ((portchange & USB_PORT_STAT_C_CONNECTION))
2168 return -ENOTCONN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169
Andiry Xu75d7cf72011-09-13 16:41:11 -07002170 /* if we`ve finished resetting, then break out of
2171 * the loop
2172 */
2173 if (!(portstatus & USB_PORT_STAT_RESET) &&
2174 (portstatus & USB_PORT_STAT_ENABLE)) {
2175 if (hub_is_wusb(hub))
2176 udev->speed = USB_SPEED_WIRELESS;
2177 else if (hub_is_superspeed(hub->hdev))
2178 udev->speed = USB_SPEED_SUPER;
2179 else if (portstatus & USB_PORT_STAT_HIGH_SPEED)
2180 udev->speed = USB_SPEED_HIGH;
2181 else if (portstatus & USB_PORT_STAT_LOW_SPEED)
2182 udev->speed = USB_SPEED_LOW;
2183 else
2184 udev->speed = USB_SPEED_FULL;
2185 return 0;
2186 }
2187 } else {
2188 if (portchange & USB_PORT_STAT_C_BH_RESET)
2189 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190 }
2191
2192 /* switch to the long delay after two short delay failures */
2193 if (delay_time >= 2 * HUB_SHORT_RESET_TIME)
2194 delay = HUB_LONG_RESET_TIME;
2195
2196 dev_dbg (hub->intfdev,
Andiry Xu75d7cf72011-09-13 16:41:11 -07002197 "port %d not %sreset yet, waiting %dms\n",
2198 port1, warm ? "warm " : "", delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199 }
2200
2201 return -EBUSY;
2202}
2203
Andiry Xu75d7cf72011-09-13 16:41:11 -07002204static void hub_port_finish_reset(struct usb_hub *hub, int port1,
2205 struct usb_device *udev, int *status, bool warm)
2206{
2207 switch (*status) {
2208 case 0:
2209 if (!warm) {
2210 struct usb_hcd *hcd;
2211 /* TRSTRCY = 10 ms; plus some extra */
2212 msleep(10 + 40);
2213 update_devnum(udev, 0);
2214 hcd = bus_to_hcd(udev->bus);
2215 if (hcd->driver->reset_device) {
2216 *status = hcd->driver->reset_device(hcd, udev);
2217 if (*status < 0) {
2218 dev_err(&udev->dev, "Cannot reset "
2219 "HCD device state\n");
2220 break;
2221 }
2222 }
2223 }
2224 /* FALL THROUGH */
2225 case -ENOTCONN:
2226 case -ENODEV:
2227 clear_port_feature(hub->hdev,
2228 port1, USB_PORT_FEAT_C_RESET);
2229 /* FIXME need disconnect() for NOTATTACHED device */
2230 if (warm) {
2231 clear_port_feature(hub->hdev, port1,
2232 USB_PORT_FEAT_C_BH_PORT_RESET);
2233 clear_port_feature(hub->hdev, port1,
2234 USB_PORT_FEAT_C_PORT_LINK_STATE);
2235 } else {
2236 usb_set_device_state(udev, *status
2237 ? USB_STATE_NOTATTACHED
2238 : USB_STATE_DEFAULT);
2239 }
2240 break;
2241 }
2242}
2243
2244/* Handle port reset and port warm(BH) reset (for USB3 protocol ports) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245static int hub_port_reset(struct usb_hub *hub, int port1,
Andiry Xu75d7cf72011-09-13 16:41:11 -07002246 struct usb_device *udev, unsigned int delay, bool warm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247{
2248 int i, status;
2249
Andiry Xu75d7cf72011-09-13 16:41:11 -07002250 if (!warm) {
2251 /* Block EHCI CF initialization during the port reset.
2252 * Some companion controllers don't like it when they mix.
2253 */
2254 down_read(&ehci_cf_port_reset_rwsem);
2255 } else {
2256 if (!hub_is_superspeed(hub->hdev)) {
2257 dev_err(hub->intfdev, "only USB3 hub support "
2258 "warm reset\n");
2259 return -EINVAL;
2260 }
2261 }
Alan Stern32fe0192007-10-10 16:27:07 -04002262
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263 /* Reset the port */
2264 for (i = 0; i < PORT_RESET_TRIES; i++) {
Andiry Xu75d7cf72011-09-13 16:41:11 -07002265 status = set_port_feature(hub->hdev, port1, (warm ?
2266 USB_PORT_FEAT_BH_PORT_RESET :
2267 USB_PORT_FEAT_RESET));
2268 if (status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269 dev_err(hub->intfdev,
Andiry Xu75d7cf72011-09-13 16:41:11 -07002270 "cannot %sreset port %d (err = %d)\n",
2271 warm ? "warm " : "", port1, status);
2272 } else {
2273 status = hub_port_wait_reset(hub, port1, udev, delay,
2274 warm);
David Brownelldd165252005-08-31 10:45:25 -07002275 if (status && status != -ENOTCONN)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276 dev_dbg(hub->intfdev,
2277 "port_wait_reset: err = %d\n",
2278 status);
2279 }
2280
2281 /* return on disconnect or reset */
Andiry Xu75d7cf72011-09-13 16:41:11 -07002282 if (status == 0 || status == -ENOTCONN || status == -ENODEV) {
2283 hub_port_finish_reset(hub, port1, udev, &status, warm);
Alan Stern32fe0192007-10-10 16:27:07 -04002284 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285 }
2286
2287 dev_dbg (hub->intfdev,
Andiry Xu75d7cf72011-09-13 16:41:11 -07002288 "port %d not enabled, trying %sreset again...\n",
2289 port1, warm ? "warm " : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290 delay = HUB_LONG_RESET_TIME;
2291 }
2292
2293 dev_err (hub->intfdev,
2294 "Cannot enable port %i. Maybe the USB cable is bad?\n",
2295 port1);
2296
Andiry Xu75d7cf72011-09-13 16:41:11 -07002297done:
2298 if (!warm)
2299 up_read(&ehci_cf_port_reset_rwsem);
2300
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301 return status;
2302}
2303
Andiry Xu0ed9a572011-04-27 18:07:43 +08002304/* Check if a port is power on */
2305static int port_is_power_on(struct usb_hub *hub, unsigned portstatus)
2306{
2307 int ret = 0;
2308
2309 if (hub_is_superspeed(hub->hdev)) {
2310 if (portstatus & USB_SS_PORT_STAT_POWER)
2311 ret = 1;
2312 } else {
2313 if (portstatus & USB_PORT_STAT_POWER)
2314 ret = 1;
2315 }
2316
2317 return ret;
2318}
2319
Alan Sternd388dab2006-07-01 22:14:24 -04002320#ifdef CONFIG_PM
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321
Andiry Xu0ed9a572011-04-27 18:07:43 +08002322/* Check if a port is suspended(USB2.0 port) or in U3 state(USB3.0 port) */
2323static int port_is_suspended(struct usb_hub *hub, unsigned portstatus)
2324{
2325 int ret = 0;
2326
2327 if (hub_is_superspeed(hub->hdev)) {
2328 if ((portstatus & USB_PORT_STAT_LINK_STATE)
2329 == USB_SS_PORT_LS_U3)
2330 ret = 1;
2331 } else {
2332 if (portstatus & USB_PORT_STAT_SUSPEND)
2333 ret = 1;
2334 }
2335
2336 return ret;
2337}
Alan Sternb01b03f2008-04-28 11:06:11 -04002338
2339/* Determine whether the device on a port is ready for a normal resume,
2340 * is ready for a reset-resume, or should be disconnected.
2341 */
2342static int check_port_resume_type(struct usb_device *udev,
2343 struct usb_hub *hub, int port1,
2344 int status, unsigned portchange, unsigned portstatus)
2345{
2346 /* Is the device still present? */
Andiry Xu0ed9a572011-04-27 18:07:43 +08002347 if (status || port_is_suspended(hub, portstatus) ||
2348 !port_is_power_on(hub, portstatus) ||
2349 !(portstatus & USB_PORT_STAT_CONNECTION)) {
Alan Sternb01b03f2008-04-28 11:06:11 -04002350 if (status >= 0)
2351 status = -ENODEV;
2352 }
2353
Alan Stern86c57ed2008-06-30 11:14:43 -04002354 /* Can't do a normal resume if the port isn't enabled,
2355 * so try a reset-resume instead.
2356 */
2357 else if (!(portstatus & USB_PORT_STAT_ENABLE) && !udev->reset_resume) {
2358 if (udev->persist_enabled)
2359 udev->reset_resume = 1;
2360 else
2361 status = -ENODEV;
2362 }
Alan Sternb01b03f2008-04-28 11:06:11 -04002363
2364 if (status) {
2365 dev_dbg(hub->intfdev,
2366 "port %d status %04x.%04x after resume, %d\n",
2367 port1, portchange, portstatus, status);
2368 } else if (udev->reset_resume) {
2369
2370 /* Late port handoff can set status-change bits */
2371 if (portchange & USB_PORT_STAT_C_CONNECTION)
2372 clear_port_feature(hub->hdev, port1,
2373 USB_PORT_FEAT_C_CONNECTION);
2374 if (portchange & USB_PORT_STAT_C_ENABLE)
2375 clear_port_feature(hub->hdev, port1,
2376 USB_PORT_FEAT_C_ENABLE);
2377 }
2378
2379 return status;
2380}
2381
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382#ifdef CONFIG_USB_SUSPEND
2383
2384/*
Alan Stern140d8f62006-07-01 22:07:21 -04002385 * usb_port_suspend - suspend a usb device's upstream port
Alan Stern624d6c02007-05-30 15:35:16 -04002386 * @udev: device that's no longer in active use, not a root hub
David Brownell5edbfb72005-09-22 22:45:26 -07002387 * Context: must be able to sleep; device not locked; pm locks held
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388 *
2389 * Suspends a USB device that isn't in active use, conserving power.
2390 * Devices may wake out of a suspend, if anything important happens,
2391 * using the remote wakeup mechanism. They may also be taken out of
Alan Stern140d8f62006-07-01 22:07:21 -04002392 * suspend by the host, using usb_port_resume(). It's also routine
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393 * to disconnect devices while they are suspended.
2394 *
David Brownell390a8c32005-09-13 19:57:27 -07002395 * This only affects the USB hardware for a device; its interfaces
2396 * (and, for hubs, child devices) must already have been suspended.
2397 *
Alan Stern624d6c02007-05-30 15:35:16 -04002398 * Selective port suspend reduces power; most suspended devices draw
2399 * less than 500 uA. It's also used in OTG, along with remote wakeup.
2400 * All devices below the suspended port are also suspended.
2401 *
2402 * Devices leave suspend state when the host wakes them up. Some devices
2403 * also support "remote wakeup", where the device can activate the USB
2404 * tree above them to deliver data, such as a keypress or packet. In
2405 * some cases, this wakes the USB host.
2406 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407 * Suspending OTG devices may trigger HNP, if that's been enabled
2408 * between a pair of dual-role devices. That will change roles, such
2409 * as from A-Host to A-Peripheral or from B-Host back to B-Peripheral.
2410 *
Alan Stern4956ecc2007-05-30 16:51:28 -04002411 * Devices on USB hub ports have only one "suspend" state, corresponding
2412 * to ACPI D2, "may cause the device to lose some context".
2413 * State transitions include:
2414 *
2415 * - suspend, resume ... when the VBUS power link stays live
2416 * - suspend, disconnect ... VBUS lost
2417 *
2418 * Once VBUS drop breaks the circuit, the port it's using has to go through
2419 * normal re-enumeration procedures, starting with enabling VBUS power.
2420 * Other than re-initializing the hub (plug/unplug, except for root hubs),
2421 * Linux (2.6) currently has NO mechanisms to initiate that: no khubd
2422 * timer, no SRP, no requests through sysfs.
2423 *
2424 * If CONFIG_USB_SUSPEND isn't enabled, devices only really suspend when
2425 * the root hub for their bus goes into global suspend ... so we don't
2426 * (falsely) update the device power state to say it suspended.
2427 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002428 * Returns 0 on success, else negative errno.
2429 */
Alan Stern65bfd292008-11-25 16:39:18 -05002430int usb_port_suspend(struct usb_device *udev, pm_message_t msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431{
Alan Stern624d6c02007-05-30 15:35:16 -04002432 struct usb_hub *hub = hdev_to_hub(udev->parent);
2433 int port1 = udev->portnum;
2434 int status;
Alan Stern4956ecc2007-05-30 16:51:28 -04002435
Alan Stern624d6c02007-05-30 15:35:16 -04002436 /* enable remote wakeup when appropriate; this lets the device
2437 * wake up the upstream hub (including maybe the root hub).
2438 *
2439 * NOTE: OTG devices may issue remote wakeup (or SRP) even when
2440 * we don't explicitly enable it here.
2441 */
2442 if (udev->do_remote_wakeup) {
Sarah Sharp623bef92011-11-11 14:57:33 -08002443 if (!hub_is_superspeed(hub->hdev)) {
2444 status = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
2445 USB_REQ_SET_FEATURE, USB_RECIP_DEVICE,
2446 USB_DEVICE_REMOTE_WAKEUP, 0,
2447 NULL, 0,
2448 USB_CTRL_SET_TIMEOUT);
2449 } else {
2450 /* Assume there's only one function on the USB 3.0
2451 * device and enable remote wake for the first
2452 * interface. FIXME if the interface association
2453 * descriptor shows there's more than one function.
2454 */
2455 status = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
2456 USB_REQ_SET_FEATURE,
2457 USB_RECIP_INTERFACE,
2458 USB_INTRF_FUNC_SUSPEND,
Sarah Sharp3b9b6ac2012-01-06 15:48:30 -08002459 USB_INTRF_FUNC_SUSPEND_RW |
2460 USB_INTRF_FUNC_SUSPEND_LP,
Sarah Sharp623bef92011-11-11 14:57:33 -08002461 NULL, 0,
2462 USB_CTRL_SET_TIMEOUT);
2463 }
Oliver Neukum0c487202009-10-19 13:19:41 +02002464 if (status) {
Alan Stern624d6c02007-05-30 15:35:16 -04002465 dev_dbg(&udev->dev, "won't remote wakeup, status %d\n",
2466 status);
Oliver Neukum0c487202009-10-19 13:19:41 +02002467 /* bail if autosuspend is requested */
Alan Stern5b1b0b82011-08-19 23:49:48 +02002468 if (PMSG_IS_AUTO(msg))
Oliver Neukum0c487202009-10-19 13:19:41 +02002469 return status;
2470 }
Alan Stern624d6c02007-05-30 15:35:16 -04002471 }
2472
Andiry Xu65580b432011-09-23 14:19:52 -07002473 /* disable USB2 hardware LPM */
2474 if (udev->usb2_hw_lpm_enabled == 1)
2475 usb_set_usb2_hardware_lpm(udev, 0);
2476
Alan Stern624d6c02007-05-30 15:35:16 -04002477 /* see 7.1.7.6 */
Andiry Xua7114232011-04-27 18:07:50 +08002478 if (hub_is_superspeed(hub->hdev))
2479 status = set_port_feature(hub->hdev,
2480 port1 | (USB_SS_PORT_LS_U3 << 3),
2481 USB_PORT_FEAT_LINK_STATE);
Andiry Xua8f08d82011-03-31 14:56:50 +08002482 else
2483 status = set_port_feature(hub->hdev, port1,
2484 USB_PORT_FEAT_SUSPEND);
Alan Stern624d6c02007-05-30 15:35:16 -04002485 if (status) {
2486 dev_dbg(hub->intfdev, "can't suspend port %d, status %d\n",
2487 port1, status);
2488 /* paranoia: "should not happen" */
Oliver Neukum0c487202009-10-19 13:19:41 +02002489 if (udev->do_remote_wakeup)
2490 (void) usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
Alan Stern624d6c02007-05-30 15:35:16 -04002491 USB_REQ_CLEAR_FEATURE, USB_RECIP_DEVICE,
2492 USB_DEVICE_REMOTE_WAKEUP, 0,
2493 NULL, 0,
2494 USB_CTRL_SET_TIMEOUT);
Alan Sterncbb33002011-06-15 16:29:16 -04002495
2496 /* System sleep transitions should never fail */
Alan Stern5b1b0b82011-08-19 23:49:48 +02002497 if (!PMSG_IS_AUTO(msg))
Alan Sterncbb33002011-06-15 16:29:16 -04002498 status = 0;
Alan Stern624d6c02007-05-30 15:35:16 -04002499 } else {
2500 /* device has up to 10 msec to fully suspend */
Alan Stern30b1a7a2011-09-27 21:54:22 +02002501 dev_dbg(&udev->dev, "usb %ssuspend, wakeup %d\n",
2502 (PMSG_IS_AUTO(msg) ? "auto-" : ""),
2503 udev->do_remote_wakeup);
Alan Stern624d6c02007-05-30 15:35:16 -04002504 usb_set_device_state(udev, USB_STATE_SUSPENDED);
2505 msleep(10);
2506 }
Alan Sternc08512c2010-11-15 15:57:58 -05002507 usb_mark_last_busy(hub->hdev);
Alan Stern4956ecc2007-05-30 16:51:28 -04002508 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509}
David Brownellf3f32532005-09-22 22:37:29 -07002510
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511/*
David Brownell390a8c32005-09-13 19:57:27 -07002512 * If the USB "suspend" state is in use (rather than "global suspend"),
2513 * many devices will be individually taken out of suspend state using
Alan Stern54515fe2007-05-30 15:38:58 -04002514 * special "resume" signaling. This routine kicks in shortly after
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515 * hardware resume signaling is finished, either because of selective
2516 * resume (by host) or remote wakeup (by device) ... now see what changed
2517 * in the tree that's rooted at this device.
Alan Stern54515fe2007-05-30 15:38:58 -04002518 *
2519 * If @udev->reset_resume is set then the device is reset before the
2520 * status check is done.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521 */
Alan Stern140d8f62006-07-01 22:07:21 -04002522static int finish_port_resume(struct usb_device *udev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002523{
Alan Stern54515fe2007-05-30 15:38:58 -04002524 int status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002525 u16 devstatus;
2526
2527 /* caller owns the udev device lock */
Wu Fengguangb9cef6c2008-12-15 15:32:01 +08002528 dev_dbg(&udev->dev, "%s\n",
2529 udev->reset_resume ? "finish reset-resume" : "finish resume");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530
2531 /* usb ch9 identifies four variants of SUSPENDED, based on what
2532 * state the device resumes to. Linux currently won't see the
2533 * first two on the host side; they'd be inside hub_port_init()
2534 * during many timeouts, but khubd can't suspend until later.
2535 */
2536 usb_set_device_state(udev, udev->actconfig
2537 ? USB_STATE_CONFIGURED
2538 : USB_STATE_ADDRESS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539
Alan Stern54515fe2007-05-30 15:38:58 -04002540 /* 10.5.4.5 says not to reset a suspended port if the attached
2541 * device is enabled for remote wakeup. Hence the reset
2542 * operation is carried out here, after the port has been
2543 * resumed.
2544 */
2545 if (udev->reset_resume)
Alan Stern86c57ed2008-06-30 11:14:43 -04002546 retry_reset_resume:
Ming Lei742120c2008-06-18 22:00:29 +08002547 status = usb_reset_and_verify_device(udev);
Alan Stern54515fe2007-05-30 15:38:58 -04002548
Linus Torvalds1da177e2005-04-16 15:20:36 -07002549 /* 10.5.4.5 says be sure devices in the tree are still there.
2550 * For now let's assume the device didn't go crazy on resume,
2551 * and device drivers will know about any resume quirks.
2552 */
Alan Stern54515fe2007-05-30 15:38:58 -04002553 if (status == 0) {
Alan Stern46dede42007-08-14 10:56:10 -04002554 devstatus = 0;
Alan Stern54515fe2007-05-30 15:38:58 -04002555 status = usb_get_status(udev, USB_RECIP_DEVICE, 0, &devstatus);
2556 if (status >= 0)
Alan Stern46dede42007-08-14 10:56:10 -04002557 status = (status > 0 ? 0 : -ENODEV);
Alan Stern86c57ed2008-06-30 11:14:43 -04002558
2559 /* If a normal resume failed, try doing a reset-resume */
2560 if (status && !udev->reset_resume && udev->persist_enabled) {
2561 dev_dbg(&udev->dev, "retry with reset-resume\n");
2562 udev->reset_resume = 1;
2563 goto retry_reset_resume;
2564 }
Alan Stern54515fe2007-05-30 15:38:58 -04002565 }
Alan Sternb40b7a92006-06-19 15:12:38 -04002566
Alan Stern624d6c02007-05-30 15:35:16 -04002567 if (status) {
2568 dev_dbg(&udev->dev, "gone after usb resume? status %d\n",
2569 status);
2570 } else if (udev->actconfig) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002571 le16_to_cpus(&devstatus);
Alan Stern686314c2007-05-30 15:34:36 -04002572 if (devstatus & (1 << USB_DEVICE_REMOTE_WAKEUP)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002573 status = usb_control_msg(udev,
2574 usb_sndctrlpipe(udev, 0),
2575 USB_REQ_CLEAR_FEATURE,
2576 USB_RECIP_DEVICE,
2577 USB_DEVICE_REMOTE_WAKEUP, 0,
2578 NULL, 0,
2579 USB_CTRL_SET_TIMEOUT);
Alan Sterna8e7c562006-07-01 22:11:02 -04002580 if (status)
Wu Fengguangb9cef6c2008-12-15 15:32:01 +08002581 dev_dbg(&udev->dev,
2582 "disable remote wakeup, status %d\n",
2583 status);
Alan Stern4bf0ba82005-11-21 11:58:07 -05002584 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002585 status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002586 }
2587 return status;
2588}
2589
Alan Stern624d6c02007-05-30 15:35:16 -04002590/*
2591 * usb_port_resume - re-activate a suspended usb device's upstream port
2592 * @udev: device to re-activate, not a root hub
2593 * Context: must be able to sleep; device not locked; pm locks held
2594 *
2595 * This will re-activate the suspended device, increasing power usage
2596 * while letting drivers communicate again with its endpoints.
2597 * USB resume explicitly guarantees that the power session between
2598 * the host and the device is the same as it was when the device
2599 * suspended.
2600 *
Alan Sternfeccc302008-03-03 15:15:59 -05002601 * If @udev->reset_resume is set then this routine won't check that the
2602 * port is still enabled. Furthermore, finish_port_resume() above will
Alan Stern54515fe2007-05-30 15:38:58 -04002603 * reset @udev. The end result is that a broken power session can be
2604 * recovered and @udev will appear to persist across a loss of VBUS power.
2605 *
2606 * For example, if a host controller doesn't maintain VBUS suspend current
2607 * during a system sleep or is reset when the system wakes up, all the USB
2608 * power sessions below it will be broken. This is especially troublesome
2609 * for mass-storage devices containing mounted filesystems, since the
2610 * device will appear to have disconnected and all the memory mappings
2611 * to it will be lost. Using the USB_PERSIST facility, the device can be
2612 * made to appear as if it had not disconnected.
2613 *
Ming Lei742120c2008-06-18 22:00:29 +08002614 * This facility can be dangerous. Although usb_reset_and_verify_device() makes
Alan Sternfeccc302008-03-03 15:15:59 -05002615 * every effort to insure that the same device is present after the
Alan Stern54515fe2007-05-30 15:38:58 -04002616 * reset as before, it cannot provide a 100% guarantee. Furthermore it's
2617 * quite possible for a device to remain unaltered but its media to be
2618 * changed. If the user replaces a flash memory card while the system is
2619 * asleep, he will have only himself to blame when the filesystem on the
2620 * new card is corrupted and the system crashes.
2621 *
Alan Stern624d6c02007-05-30 15:35:16 -04002622 * Returns 0 on success, else negative errno.
2623 */
Alan Stern65bfd292008-11-25 16:39:18 -05002624int usb_port_resume(struct usb_device *udev, pm_message_t msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002625{
Alan Stern624d6c02007-05-30 15:35:16 -04002626 struct usb_hub *hub = hdev_to_hub(udev->parent);
2627 int port1 = udev->portnum;
2628 int status;
2629 u16 portchange, portstatus;
Alan Sternd25450c2006-11-20 11:14:30 -05002630
2631 /* Skip the initial Clear-Suspend step for a remote wakeup */
2632 status = hub_port_status(hub, port1, &portstatus, &portchange);
Andiry Xu0ed9a572011-04-27 18:07:43 +08002633 if (status == 0 && !port_is_suspended(hub, portstatus))
Alan Sternd25450c2006-11-20 11:14:30 -05002634 goto SuspendCleared;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635
2636 // dev_dbg(hub->intfdev, "resume port %d\n", port1);
2637
Alan Sternd5cbad42006-08-11 16:52:39 -04002638 set_bit(port1, hub->busy_bits);
2639
Linus Torvalds1da177e2005-04-16 15:20:36 -07002640 /* see 7.1.7.7; affects power usage, but not budgeting */
Andiry Xua7114232011-04-27 18:07:50 +08002641 if (hub_is_superspeed(hub->hdev))
2642 status = set_port_feature(hub->hdev,
2643 port1 | (USB_SS_PORT_LS_U0 << 3),
2644 USB_PORT_FEAT_LINK_STATE);
2645 else
2646 status = clear_port_feature(hub->hdev,
2647 port1, USB_PORT_FEAT_SUSPEND);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002648 if (status) {
Alan Stern624d6c02007-05-30 15:35:16 -04002649 dev_dbg(hub->intfdev, "can't resume port %d, status %d\n",
2650 port1, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002651 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002652 /* drive resume for at least 20 msec */
Alan Stern686314c2007-05-30 15:34:36 -04002653 dev_dbg(&udev->dev, "usb %sresume\n",
Alan Stern5b1b0b82011-08-19 23:49:48 +02002654 (PMSG_IS_AUTO(msg) ? "auto-" : ""));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002655 msleep(25);
2656
Linus Torvalds1da177e2005-04-16 15:20:36 -07002657 /* Virtual root hubs can trigger on GET_PORT_STATUS to
2658 * stop resume signaling. Then finish the resume
2659 * sequence.
2660 */
Alan Sternd25450c2006-11-20 11:14:30 -05002661 status = hub_port_status(hub, port1, &portstatus, &portchange);
Alan Stern54515fe2007-05-30 15:38:58 -04002662
Alan Sternb01b03f2008-04-28 11:06:11 -04002663 /* TRSMRCY = 10 msec */
2664 msleep(10);
2665 }
Alan Stern54515fe2007-05-30 15:38:58 -04002666
Alan Sternb01b03f2008-04-28 11:06:11 -04002667 SuspendCleared:
2668 if (status == 0) {
Andiry Xua7114232011-04-27 18:07:50 +08002669 if (hub_is_superspeed(hub->hdev)) {
2670 if (portchange & USB_PORT_STAT_C_LINK_STATE)
2671 clear_port_feature(hub->hdev, port1,
2672 USB_PORT_FEAT_C_PORT_LINK_STATE);
2673 } else {
2674 if (portchange & USB_PORT_STAT_C_SUSPEND)
2675 clear_port_feature(hub->hdev, port1,
2676 USB_PORT_FEAT_C_SUSPEND);
2677 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002678 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002679
Alan Sternd5cbad42006-08-11 16:52:39 -04002680 clear_bit(port1, hub->busy_bits);
Alan Sternd5cbad42006-08-11 16:52:39 -04002681
Alan Sternb01b03f2008-04-28 11:06:11 -04002682 status = check_port_resume_type(udev,
2683 hub, port1, status, portchange, portstatus);
Alan Stern54515fe2007-05-30 15:38:58 -04002684 if (status == 0)
2685 status = finish_port_resume(udev);
2686 if (status < 0) {
2687 dev_dbg(&udev->dev, "can't resume, status %d\n", status);
2688 hub_port_logical_disconnect(hub, port1);
Andiry Xu65580b432011-09-23 14:19:52 -07002689 } else {
2690 /* Try to enable USB2 hardware LPM */
2691 if (udev->usb2_hw_lpm_capable == 1)
2692 usb_set_usb2_hardware_lpm(udev, 1);
Alan Stern54515fe2007-05-30 15:38:58 -04002693 }
Andiry Xu65580b432011-09-23 14:19:52 -07002694
Linus Torvalds1da177e2005-04-16 15:20:36 -07002695 return status;
2696}
2697
Alan Stern8808f002008-04-28 11:06:55 -04002698/* caller has locked udev */
Alan Stern0534d462010-01-08 12:56:30 -05002699int usb_remote_wakeup(struct usb_device *udev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002700{
2701 int status = 0;
2702
Linus Torvalds1da177e2005-04-16 15:20:36 -07002703 if (udev->state == USB_STATE_SUSPENDED) {
Alan Stern645daaa2006-08-30 15:47:02 -04002704 dev_dbg(&udev->dev, "usb %sresume\n", "wakeup-");
Alan Stern9bbdf1e2010-01-08 12:57:28 -05002705 status = usb_autoresume_device(udev);
2706 if (status == 0) {
2707 /* Let the drivers do their thing, then... */
2708 usb_autosuspend_device(udev);
2709 }
Alan Sternd25450c2006-11-20 11:14:30 -05002710 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002711 return status;
2712}
2713
Alan Sternd388dab2006-07-01 22:14:24 -04002714#else /* CONFIG_USB_SUSPEND */
2715
2716/* When CONFIG_USB_SUSPEND isn't set, we never suspend or resume any ports. */
2717
Alan Stern65bfd292008-11-25 16:39:18 -05002718int usb_port_suspend(struct usb_device *udev, pm_message_t msg)
Alan Sternd388dab2006-07-01 22:14:24 -04002719{
2720 return 0;
2721}
2722
Alan Sternb01b03f2008-04-28 11:06:11 -04002723/* However we may need to do a reset-resume */
2724
Alan Stern65bfd292008-11-25 16:39:18 -05002725int usb_port_resume(struct usb_device *udev, pm_message_t msg)
Alan Sternd388dab2006-07-01 22:14:24 -04002726{
Alan Sternb01b03f2008-04-28 11:06:11 -04002727 struct usb_hub *hub = hdev_to_hub(udev->parent);
2728 int port1 = udev->portnum;
2729 int status;
2730 u16 portchange, portstatus;
Alan Stern54515fe2007-05-30 15:38:58 -04002731
Alan Sternb01b03f2008-04-28 11:06:11 -04002732 status = hub_port_status(hub, port1, &portstatus, &portchange);
2733 status = check_port_resume_type(udev,
2734 hub, port1, status, portchange, portstatus);
2735
2736 if (status) {
2737 dev_dbg(&udev->dev, "can't resume, status %d\n", status);
2738 hub_port_logical_disconnect(hub, port1);
2739 } else if (udev->reset_resume) {
Alan Stern54515fe2007-05-30 15:38:58 -04002740 dev_dbg(&udev->dev, "reset-resume\n");
Ming Lei742120c2008-06-18 22:00:29 +08002741 status = usb_reset_and_verify_device(udev);
Alan Stern54515fe2007-05-30 15:38:58 -04002742 }
2743 return status;
Alan Sternd388dab2006-07-01 22:14:24 -04002744}
2745
Alan Sternd388dab2006-07-01 22:14:24 -04002746#endif
2747
David Brownelldb690872005-09-13 19:56:33 -07002748static int hub_suspend(struct usb_interface *intf, pm_message_t msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002749{
2750 struct usb_hub *hub = usb_get_intfdata (intf);
2751 struct usb_device *hdev = hub->hdev;
2752 unsigned port1;
Sarah Sharp4296c70a2012-01-06 10:34:31 -08002753 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002754
Alan Sterncbb33002011-06-15 16:29:16 -04002755 /* Warn if children aren't already suspended */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002756 for (port1 = 1; port1 <= hdev->maxchild; port1++) {
2757 struct usb_device *udev;
2758
2759 udev = hdev->children [port1-1];
Alan Stern6840d252007-09-10 11:34:26 -04002760 if (udev && udev->can_submit) {
Alan Sterncbb33002011-06-15 16:29:16 -04002761 dev_warn(&intf->dev, "port %d nyet suspended\n", port1);
Alan Stern5b1b0b82011-08-19 23:49:48 +02002762 if (PMSG_IS_AUTO(msg))
Alan Sterncbb33002011-06-15 16:29:16 -04002763 return -EBUSY;
David Brownellc9f89fa2005-09-13 19:57:04 -07002764 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002765 }
Sarah Sharp4296c70a2012-01-06 10:34:31 -08002766 if (hub_is_superspeed(hdev) && hdev->do_remote_wakeup) {
2767 /* Enable hub to send remote wakeup for all ports. */
2768 for (port1 = 1; port1 <= hdev->maxchild; port1++) {
2769 status = set_port_feature(hdev,
2770 port1 |
2771 USB_PORT_FEAT_REMOTE_WAKE_CONNECT |
2772 USB_PORT_FEAT_REMOTE_WAKE_DISCONNECT |
2773 USB_PORT_FEAT_REMOTE_WAKE_OVER_CURRENT,
2774 USB_PORT_FEAT_REMOTE_WAKE_MASK);
2775 }
2776 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002777
Harvey Harrison441b62c2008-03-03 16:08:34 -08002778 dev_dbg(&intf->dev, "%s\n", __func__);
Alan Stern40f122f2006-11-09 14:44:33 -05002779
David Brownellc9f89fa2005-09-13 19:57:04 -07002780 /* stop khubd and related activity */
Alan Stern43303542008-04-28 11:07:31 -04002781 hub_quiesce(hub, HUB_SUSPEND);
Alan Sternb6f64362007-05-04 11:51:54 -04002782 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783}
2784
2785static int hub_resume(struct usb_interface *intf)
2786{
Alan Stern5e6effa2008-03-03 15:15:51 -05002787 struct usb_hub *hub = usb_get_intfdata(intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002788
Alan Stern5e6effa2008-03-03 15:15:51 -05002789 dev_dbg(&intf->dev, "%s\n", __func__);
Alan Sternf2835212008-04-28 11:07:17 -04002790 hub_activate(hub, HUB_RESUME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002791 return 0;
2792}
2793
Alan Sternb41a60e2007-05-30 15:39:33 -04002794static int hub_reset_resume(struct usb_interface *intf)
Alan Sternf07600c2007-05-30 15:38:16 -04002795{
Alan Sternb41a60e2007-05-30 15:39:33 -04002796 struct usb_hub *hub = usb_get_intfdata(intf);
Alan Sternf07600c2007-05-30 15:38:16 -04002797
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_RESET_RESUME);
Alan Sternf07600c2007-05-30 15:38:16 -04002800 return 0;
2801}
2802
Alan Stern54515fe2007-05-30 15:38:58 -04002803/**
2804 * usb_root_hub_lost_power - called by HCD if the root hub lost Vbus power
2805 * @rhdev: struct usb_device for the root hub
2806 *
2807 * The USB host controller driver calls this function when its root hub
2808 * is resumed and Vbus power has been interrupted or the controller
Alan Sternfeccc302008-03-03 15:15:59 -05002809 * has been reset. The routine marks @rhdev as having lost power.
2810 * When the hub driver is resumed it will take notice and carry out
2811 * power-session recovery for all the "USB-PERSIST"-enabled child devices;
2812 * the others will be disconnected.
Alan Stern54515fe2007-05-30 15:38:58 -04002813 */
2814void usb_root_hub_lost_power(struct usb_device *rhdev)
2815{
2816 dev_warn(&rhdev->dev, "root hub lost power or was reset\n");
2817 rhdev->reset_resume = 1;
2818}
2819EXPORT_SYMBOL_GPL(usb_root_hub_lost_power);
2820
Alan Sternd388dab2006-07-01 22:14:24 -04002821#else /* CONFIG_PM */
2822
Alan Sternf07600c2007-05-30 15:38:16 -04002823#define hub_suspend NULL
2824#define hub_resume NULL
2825#define hub_reset_resume NULL
Alan Sternd388dab2006-07-01 22:14:24 -04002826#endif
2827
Linus Torvalds1da177e2005-04-16 15:20:36 -07002828
2829/* USB 2.0 spec, 7.1.7.3 / fig 7-29:
2830 *
2831 * Between connect detection and reset signaling there must be a delay
2832 * of 100ms at least for debounce and power-settling. The corresponding
2833 * timer shall restart whenever the downstream port detects a disconnect.
2834 *
2835 * Apparently there are some bluetooth and irda-dongles and a number of
2836 * low-speed devices for which this debounce period may last over a second.
2837 * Not covered by the spec - but easy to deal with.
2838 *
2839 * This implementation uses a 1500ms total debounce timeout; if the
2840 * connection isn't stable by then it returns -ETIMEDOUT. It checks
2841 * every 25ms for transient disconnects. When the port status has been
2842 * unchanged for 100ms it returns the port status.
2843 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002844static int hub_port_debounce(struct usb_hub *hub, int port1)
2845{
2846 int ret;
2847 int total_time, stable_time = 0;
2848 u16 portchange, portstatus;
2849 unsigned connection = 0xffff;
2850
2851 for (total_time = 0; ; total_time += HUB_DEBOUNCE_STEP) {
2852 ret = hub_port_status(hub, port1, &portstatus, &portchange);
2853 if (ret < 0)
2854 return ret;
2855
2856 if (!(portchange & USB_PORT_STAT_C_CONNECTION) &&
2857 (portstatus & USB_PORT_STAT_CONNECTION) == connection) {
2858 stable_time += HUB_DEBOUNCE_STEP;
2859 if (stable_time >= HUB_DEBOUNCE_STABLE)
2860 break;
2861 } else {
2862 stable_time = 0;
2863 connection = portstatus & USB_PORT_STAT_CONNECTION;
2864 }
2865
2866 if (portchange & USB_PORT_STAT_C_CONNECTION) {
2867 clear_port_feature(hub->hdev, port1,
2868 USB_PORT_FEAT_C_CONNECTION);
2869 }
2870
2871 if (total_time >= HUB_DEBOUNCE_TIMEOUT)
2872 break;
2873 msleep(HUB_DEBOUNCE_STEP);
2874 }
2875
2876 dev_dbg (hub->intfdev,
2877 "debounce: port %d: total %dms stable %dms status 0x%x\n",
2878 port1, total_time, stable_time, portstatus);
2879
2880 if (stable_time < HUB_DEBOUNCE_STABLE)
2881 return -ETIMEDOUT;
2882 return portstatus;
2883}
2884
Inaky Perez-Gonzalezfc721f52008-04-08 13:24:46 -07002885void usb_ep0_reinit(struct usb_device *udev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002886{
Alan Sternddeac4e2009-01-15 17:03:33 -05002887 usb_disable_endpoint(udev, 0 + USB_DIR_IN, true);
2888 usb_disable_endpoint(udev, 0 + USB_DIR_OUT, true);
Alan Stern2caf7fc2008-12-31 11:31:33 -05002889 usb_enable_endpoint(udev, &udev->ep0, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002890}
Inaky Perez-Gonzalezfc721f52008-04-08 13:24:46 -07002891EXPORT_SYMBOL_GPL(usb_ep0_reinit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002892
2893#define usb_sndaddr0pipe() (PIPE_CONTROL << 30)
2894#define usb_rcvaddr0pipe() ((PIPE_CONTROL << 30) | USB_DIR_IN)
2895
Alan Stern4326ed02007-07-30 17:08:43 -04002896static int hub_set_address(struct usb_device *udev, int devnum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002897{
2898 int retval;
Sarah Sharpc6515272009-04-27 19:57:26 -07002899 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002900
Sarah Sharpc6515272009-04-27 19:57:26 -07002901 /*
2902 * The host controller will choose the device address,
2903 * instead of the core having chosen it earlier
2904 */
2905 if (!hcd->driver->address_device && devnum <= 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002906 return -EINVAL;
2907 if (udev->state == USB_STATE_ADDRESS)
2908 return 0;
2909 if (udev->state != USB_STATE_DEFAULT)
2910 return -EINVAL;
Andiry Xuc8d4af82010-10-14 07:22:51 -07002911 if (hcd->driver->address_device)
Sarah Sharpc6515272009-04-27 19:57:26 -07002912 retval = hcd->driver->address_device(hcd, udev);
Andiry Xuc8d4af82010-10-14 07:22:51 -07002913 else
Sarah Sharpc6515272009-04-27 19:57:26 -07002914 retval = usb_control_msg(udev, usb_sndaddr0pipe(),
2915 USB_REQ_SET_ADDRESS, 0, devnum, 0,
2916 NULL, 0, USB_CTRL_SET_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002917 if (retval == 0) {
Alan Stern3b29b682011-02-22 09:53:41 -05002918 update_devnum(udev, devnum);
David Vrabel4953d142008-04-08 13:24:46 -07002919 /* Device now using proper address. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002920 usb_set_device_state(udev, USB_STATE_ADDRESS);
Inaky Perez-Gonzalezfc721f52008-04-08 13:24:46 -07002921 usb_ep0_reinit(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922 }
2923 return retval;
2924}
2925
2926/* Reset device, (re)assign address, get device descriptor.
2927 * Device connection must be stable, no more debouncing needed.
2928 * Returns device in USB_STATE_ADDRESS, except on error.
2929 *
2930 * If this is called for an already-existing device (as part of
Ming Lei742120c2008-06-18 22:00:29 +08002931 * usb_reset_and_verify_device), the caller must own the device lock. For a
Linus Torvalds1da177e2005-04-16 15:20:36 -07002932 * newly detected device that is not accessible through any global
2933 * pointers, it's not necessary to lock the device.
2934 */
2935static int
2936hub_port_init (struct usb_hub *hub, struct usb_device *udev, int port1,
2937 int retry_counter)
2938{
Arjan van de Ven4186ecf2006-01-11 15:55:29 +01002939 static DEFINE_MUTEX(usb_address0_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002940
2941 struct usb_device *hdev = hub->hdev;
Sarah Sharpe7b77172009-04-27 19:54:26 -07002942 struct usb_hcd *hcd = bus_to_hcd(hdev->bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002943 int i, j, retval;
2944 unsigned delay = HUB_SHORT_RESET_TIME;
2945 enum usb_device_speed oldspeed = udev->speed;
Michal Nazarewicze538dfd2011-08-30 17:11:19 +02002946 const char *speed;
Alan Stern4326ed02007-07-30 17:08:43 -04002947 int devnum = udev->devnum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002948
2949 /* root hub ports have a slightly longer reset period
2950 * (from USB 2.0 spec, section 7.1.7.5)
2951 */
2952 if (!hdev->parent) {
2953 delay = HUB_ROOT_RESET_TIME;
2954 if (port1 == hdev->bus->otg_port)
2955 hdev->bus->b_hnp_enable = 0;
2956 }
2957
2958 /* Some low speed devices have problems with the quick delay, so */
2959 /* be a bit pessimistic with those devices. RHbug #23670 */
2960 if (oldspeed == USB_SPEED_LOW)
2961 delay = HUB_LONG_RESET_TIME;
2962
Arjan van de Ven4186ecf2006-01-11 15:55:29 +01002963 mutex_lock(&usb_address0_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002964
Luben Tuikov07194ab2011-02-11 11:33:10 -08002965 /* Reset the device; full speed may morph to high speed */
2966 /* FIXME a USB 2.0 device may morph into SuperSpeed on reset. */
Andiry Xu75d7cf72011-09-13 16:41:11 -07002967 retval = hub_port_reset(hub, port1, udev, delay, false);
Luben Tuikov07194ab2011-02-11 11:33:10 -08002968 if (retval < 0) /* error or disconnect */
2969 goto fail;
2970 /* success, speed is known */
2971
Linus Torvalds1da177e2005-04-16 15:20:36 -07002972 retval = -ENODEV;
2973
2974 if (oldspeed != USB_SPEED_UNKNOWN && oldspeed != udev->speed) {
2975 dev_dbg(&udev->dev, "device reset changed speed!\n");
2976 goto fail;
2977 }
2978 oldspeed = udev->speed;
Alan Stern4326ed02007-07-30 17:08:43 -04002979
Linus Torvalds1da177e2005-04-16 15:20:36 -07002980 /* USB 2.0 section 5.5.3 talks about ep0 maxpacket ...
2981 * it's fixed size except for full speed devices.
Inaky Perez-Gonzalez5bb6e0a2006-08-25 19:35:30 -07002982 * For Wireless USB devices, ep0 max packet is always 512 (tho
2983 * reported as 0xff in the device descriptor). WUSB1.0[4.8.1].
Linus Torvalds1da177e2005-04-16 15:20:36 -07002984 */
2985 switch (udev->speed) {
Sarah Sharp6b403b02009-04-27 19:54:10 -07002986 case USB_SPEED_SUPER:
Greg Kroah-Hartman551cdbb2010-01-14 11:08:04 -08002987 case USB_SPEED_WIRELESS: /* fixed at 512 */
Harvey Harrison551509d2009-02-11 14:11:36 -08002988 udev->ep0.desc.wMaxPacketSize = cpu_to_le16(512);
Inaky Perez-Gonzalez5bb6e0a2006-08-25 19:35:30 -07002989 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002990 case USB_SPEED_HIGH: /* fixed at 64 */
Harvey Harrison551509d2009-02-11 14:11:36 -08002991 udev->ep0.desc.wMaxPacketSize = cpu_to_le16(64);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002992 break;
2993 case USB_SPEED_FULL: /* 8, 16, 32, or 64 */
2994 /* to determine the ep0 maxpacket size, try to read
2995 * the device descriptor to get bMaxPacketSize0 and
2996 * then correct our initial guess.
2997 */
Harvey Harrison551509d2009-02-11 14:11:36 -08002998 udev->ep0.desc.wMaxPacketSize = cpu_to_le16(64);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002999 break;
3000 case USB_SPEED_LOW: /* fixed at 8 */
Harvey Harrison551509d2009-02-11 14:11:36 -08003001 udev->ep0.desc.wMaxPacketSize = cpu_to_le16(8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003002 break;
3003 default:
3004 goto fail;
3005 }
Michal Nazarewicze538dfd2011-08-30 17:11:19 +02003006
3007 if (udev->speed == USB_SPEED_WIRELESS)
3008 speed = "variable speed Wireless";
3009 else
3010 speed = usb_speed_string(udev->speed);
3011
Sarah Sharpc6515272009-04-27 19:57:26 -07003012 if (udev->speed != USB_SPEED_SUPER)
3013 dev_info(&udev->dev,
Michal Nazarewicze538dfd2011-08-30 17:11:19 +02003014 "%s %s USB device number %d using %s\n",
3015 (udev->config) ? "reset" : "new", speed,
Alan Stern3b29b682011-02-22 09:53:41 -05003016 devnum, udev->bus->controller->driver->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003017
3018 /* Set up TT records, if needed */
3019 if (hdev->tt) {
3020 udev->tt = hdev->tt;
3021 udev->ttport = hdev->ttport;
3022 } else if (udev->speed != USB_SPEED_HIGH
3023 && hdev->speed == USB_SPEED_HIGH) {
Alan Sternd199c962011-01-31 10:56:37 -05003024 if (!hub->tt.hub) {
3025 dev_err(&udev->dev, "parent hub has no TT\n");
3026 retval = -EINVAL;
3027 goto fail;
3028 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003029 udev->tt = &hub->tt;
3030 udev->ttport = port1;
3031 }
3032
3033 /* Why interleave GET_DESCRIPTOR and SET_ADDRESS this way?
3034 * Because device hardware and firmware is sometimes buggy in
3035 * this area, and this is how Linux has done it for ages.
3036 * Change it cautiously.
3037 *
3038 * NOTE: If USE_NEW_SCHEME() is true we will start by issuing
3039 * a 64-byte GET_DESCRIPTOR request. This is what Windows does,
3040 * so it may help with some non-standards-compliant devices.
3041 * Otherwise we start with SET_ADDRESS and then try to read the
3042 * first 8 bytes of the device descriptor to get the ep0 maxpacket
3043 * value.
3044 */
3045 for (i = 0; i < GET_DESCRIPTOR_TRIES; (++i, msleep(100))) {
Sarah Sharpc6515272009-04-27 19:57:26 -07003046 if (USE_NEW_SCHEME(retry_counter) && !(hcd->driver->flags & HCD_USB3)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003047 struct usb_device_descriptor *buf;
3048 int r = 0;
3049
3050#define GET_DESCRIPTOR_BUFSIZE 64
3051 buf = kmalloc(GET_DESCRIPTOR_BUFSIZE, GFP_NOIO);
3052 if (!buf) {
3053 retval = -ENOMEM;
3054 continue;
3055 }
3056
Alan Sternb89ee192007-05-11 10:19:04 -04003057 /* Retry on all errors; some devices are flakey.
3058 * 255 is for WUSB devices, we actually need to use
3059 * 512 (WUSB1.0[4.8.1]).
Linus Torvalds1da177e2005-04-16 15:20:36 -07003060 */
3061 for (j = 0; j < 3; ++j) {
3062 buf->bMaxPacketSize0 = 0;
3063 r = usb_control_msg(udev, usb_rcvaddr0pipe(),
3064 USB_REQ_GET_DESCRIPTOR, USB_DIR_IN,
3065 USB_DT_DEVICE << 8, 0,
3066 buf, GET_DESCRIPTOR_BUFSIZE,
Jaroslav Kyselafd7c5192008-10-10 16:24:45 +02003067 initial_descriptor_timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003068 switch (buf->bMaxPacketSize0) {
Inaky Perez-Gonzalez5bb6e0a2006-08-25 19:35:30 -07003069 case 8: case 16: case 32: case 64: case 255:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003070 if (buf->bDescriptorType ==
3071 USB_DT_DEVICE) {
3072 r = 0;
3073 break;
3074 }
3075 /* FALL THROUGH */
3076 default:
3077 if (r == 0)
3078 r = -EPROTO;
3079 break;
3080 }
3081 if (r == 0)
3082 break;
3083 }
3084 udev->descriptor.bMaxPacketSize0 =
3085 buf->bMaxPacketSize0;
3086 kfree(buf);
3087
Andiry Xu75d7cf72011-09-13 16:41:11 -07003088 retval = hub_port_reset(hub, port1, udev, delay, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003089 if (retval < 0) /* error or disconnect */
3090 goto fail;
3091 if (oldspeed != udev->speed) {
3092 dev_dbg(&udev->dev,
3093 "device reset changed speed!\n");
3094 retval = -ENODEV;
3095 goto fail;
3096 }
3097 if (r) {
Wu Fengguangb9cef6c2008-12-15 15:32:01 +08003098 dev_err(&udev->dev,
3099 "device descriptor read/64, error %d\n",
3100 r);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003101 retval = -EMSGSIZE;
3102 continue;
3103 }
3104#undef GET_DESCRIPTOR_BUFSIZE
3105 }
3106
Inaky Perez-Gonzalez6c529cd2008-04-08 13:24:46 -07003107 /*
3108 * If device is WUSB, we already assigned an
3109 * unauthorized address in the Connect Ack sequence;
3110 * authorization will assign the final address.
3111 */
Sarah Sharpc6515272009-04-27 19:57:26 -07003112 if (udev->wusb == 0) {
Inaky Perez-Gonzalez6c529cd2008-04-08 13:24:46 -07003113 for (j = 0; j < SET_ADDRESS_TRIES; ++j) {
3114 retval = hub_set_address(udev, devnum);
3115 if (retval >= 0)
3116 break;
3117 msleep(200);
3118 }
3119 if (retval < 0) {
3120 dev_err(&udev->dev,
3121 "device not accepting address %d, error %d\n",
3122 devnum, retval);
3123 goto fail;
3124 }
Sarah Sharpc6515272009-04-27 19:57:26 -07003125 if (udev->speed == USB_SPEED_SUPER) {
3126 devnum = udev->devnum;
3127 dev_info(&udev->dev,
Alan Stern3b29b682011-02-22 09:53:41 -05003128 "%s SuperSpeed USB device number %d using %s\n",
Sarah Sharpc6515272009-04-27 19:57:26 -07003129 (udev->config) ? "reset" : "new",
Alan Stern3b29b682011-02-22 09:53:41 -05003130 devnum, udev->bus->controller->driver->name);
Sarah Sharpc6515272009-04-27 19:57:26 -07003131 }
Inaky Perez-Gonzalez6c529cd2008-04-08 13:24:46 -07003132
3133 /* cope with hardware quirkiness:
3134 * - let SET_ADDRESS settle, some device hardware wants it
3135 * - read ep0 maxpacket even for high and low speed,
3136 */
3137 msleep(10);
Sarah Sharpc6515272009-04-27 19:57:26 -07003138 if (USE_NEW_SCHEME(retry_counter) && !(hcd->driver->flags & HCD_USB3))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003139 break;
Inaky Perez-Gonzalez6c529cd2008-04-08 13:24:46 -07003140 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003141
3142 retval = usb_get_device_descriptor(udev, 8);
3143 if (retval < 8) {
Wu Fengguangb9cef6c2008-12-15 15:32:01 +08003144 dev_err(&udev->dev,
3145 "device descriptor read/8, error %d\n",
3146 retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003147 if (retval >= 0)
3148 retval = -EMSGSIZE;
3149 } else {
3150 retval = 0;
3151 break;
3152 }
3153 }
3154 if (retval)
3155 goto fail;
3156
Sarah Sharp6b403b02009-04-27 19:54:10 -07003157 if (udev->descriptor.bMaxPacketSize0 == 0xff ||
3158 udev->speed == USB_SPEED_SUPER)
3159 i = 512;
3160 else
3161 i = udev->descriptor.bMaxPacketSize0;
Kuninori Morimoto29cc8892011-08-23 03:12:03 -07003162 if (usb_endpoint_maxp(&udev->ep0.desc) != i) {
Alan Stern56626a72010-10-14 15:25:21 -04003163 if (udev->speed == USB_SPEED_LOW ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07003164 !(i == 8 || i == 16 || i == 32 || i == 64)) {
Alan Stern56626a72010-10-14 15:25:21 -04003165 dev_err(&udev->dev, "Invalid ep0 maxpacket: %d\n", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003166 retval = -EMSGSIZE;
3167 goto fail;
3168 }
Alan Stern56626a72010-10-14 15:25:21 -04003169 if (udev->speed == USB_SPEED_FULL)
3170 dev_dbg(&udev->dev, "ep0 maxpacket = %d\n", i);
3171 else
3172 dev_warn(&udev->dev, "Using ep0 maxpacket: %d\n", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003173 udev->ep0.desc.wMaxPacketSize = cpu_to_le16(i);
Inaky Perez-Gonzalezfc721f52008-04-08 13:24:46 -07003174 usb_ep0_reinit(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003175 }
3176
3177 retval = usb_get_device_descriptor(udev, USB_DT_DEVICE_SIZE);
3178 if (retval < (signed)sizeof(udev->descriptor)) {
Wu Fengguangb9cef6c2008-12-15 15:32:01 +08003179 dev_err(&udev->dev, "device descriptor read/all, error %d\n",
3180 retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003181 if (retval >= 0)
3182 retval = -ENOMSG;
3183 goto fail;
3184 }
3185
Andiry Xu1ff4df52011-09-23 14:19:48 -07003186 if (udev->wusb == 0 && le16_to_cpu(udev->descriptor.bcdUSB) >= 0x0201) {
3187 retval = usb_get_bos_descriptor(udev);
3188 if (!retval) {
3189 if (udev->bos->ext_cap && (USB_LPM_SUPPORT &
3190 le32_to_cpu(udev->bos->ext_cap->bmAttributes)))
3191 udev->lpm_capable = 1;
3192 }
3193 }
Andiry Xu3148bf02011-09-23 14:19:47 -07003194
Linus Torvalds1da177e2005-04-16 15:20:36 -07003195 retval = 0;
Alek Du48f24972010-06-04 15:47:55 +08003196 /* notify HCD that we have a device connected and addressed */
3197 if (hcd->driver->update_device)
3198 hcd->driver->update_device(hcd, udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003199fail:
Alan Stern4326ed02007-07-30 17:08:43 -04003200 if (retval) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003201 hub_port_disable(hub, port1, 0);
Alan Stern3b29b682011-02-22 09:53:41 -05003202 update_devnum(udev, devnum); /* for disconnect processing */
Alan Stern4326ed02007-07-30 17:08:43 -04003203 }
Arjan van de Ven4186ecf2006-01-11 15:55:29 +01003204 mutex_unlock(&usb_address0_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003205 return retval;
3206}
3207
3208static void
3209check_highspeed (struct usb_hub *hub, struct usb_device *udev, int port1)
3210{
3211 struct usb_qualifier_descriptor *qual;
3212 int status;
3213
Christoph Lametere94b1762006-12-06 20:33:17 -08003214 qual = kmalloc (sizeof *qual, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003215 if (qual == NULL)
3216 return;
3217
3218 status = usb_get_descriptor (udev, USB_DT_DEVICE_QUALIFIER, 0,
3219 qual, sizeof *qual);
3220 if (status == sizeof *qual) {
3221 dev_info(&udev->dev, "not running at top speed; "
3222 "connect to a high speed hub\n");
3223 /* hub LEDs are probably harder to miss than syslog */
3224 if (hub->has_indicators) {
3225 hub->indicator[port1-1] = INDICATOR_GREEN_BLINK;
David Howellsc4028952006-11-22 14:57:56 +00003226 schedule_delayed_work (&hub->leds, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003227 }
3228 }
Jesper Juhl1bc3c9e2005-04-18 17:39:34 -07003229 kfree(qual);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003230}
3231
3232static unsigned
3233hub_power_remaining (struct usb_hub *hub)
3234{
3235 struct usb_device *hdev = hub->hdev;
3236 int remaining;
Alan Stern55c52712005-11-23 12:03:12 -05003237 int port1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003238
Alan Stern55c52712005-11-23 12:03:12 -05003239 if (!hub->limited_power)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003240 return 0;
3241
Alan Stern55c52712005-11-23 12:03:12 -05003242 remaining = hdev->bus_mA - hub->descriptor->bHubContrCurrent;
3243 for (port1 = 1; port1 <= hdev->maxchild; ++port1) {
3244 struct usb_device *udev = hdev->children[port1 - 1];
3245 int delta;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003246
3247 if (!udev)
3248 continue;
3249
Alan Stern55c52712005-11-23 12:03:12 -05003250 /* Unconfigured devices may not use more than 100mA,
3251 * or 8mA for OTG ports */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003252 if (udev->actconfig)
Alan Stern55c52712005-11-23 12:03:12 -05003253 delta = udev->actconfig->desc.bMaxPower * 2;
3254 else if (port1 != udev->bus->otg_port || hdev->parent)
3255 delta = 100;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003256 else
Alan Stern55c52712005-11-23 12:03:12 -05003257 delta = 8;
3258 if (delta > hub->mA_per_port)
Wu Fengguangb9cef6c2008-12-15 15:32:01 +08003259 dev_warn(&udev->dev,
3260 "%dmA is over %umA budget for port %d!\n",
3261 delta, hub->mA_per_port, port1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003262 remaining -= delta;
3263 }
3264 if (remaining < 0) {
Alan Stern55c52712005-11-23 12:03:12 -05003265 dev_warn(hub->intfdev, "%dmA over power budget!\n",
3266 - remaining);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003267 remaining = 0;
3268 }
3269 return remaining;
3270}
3271
3272/* Handle physical or logical connection change events.
3273 * This routine is called when:
3274 * a port connection-change occurs;
3275 * a port enable-change occurs (often caused by EMI);
Ming Lei742120c2008-06-18 22:00:29 +08003276 * usb_reset_and_verify_device() encounters changed descriptors (as from
Linus Torvalds1da177e2005-04-16 15:20:36 -07003277 * a firmware download)
3278 * caller already locked the hub
3279 */
3280static void hub_port_connect_change(struct usb_hub *hub, int port1,
3281 u16 portstatus, u16 portchange)
3282{
3283 struct usb_device *hdev = hub->hdev;
3284 struct device *hub_dev = hub->intfdev;
Balaji Rao90da0962007-11-22 01:58:14 +05303285 struct usb_hcd *hcd = bus_to_hcd(hdev->bus);
Alan Stern24618b02008-04-28 11:06:28 -04003286 unsigned wHubCharacteristics =
3287 le16_to_cpu(hub->descriptor->wHubCharacteristics);
Alan Stern8808f002008-04-28 11:06:55 -04003288 struct usb_device *udev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003289 int status, i;
Alan Stern24618b02008-04-28 11:06:28 -04003290
Linus Torvalds1da177e2005-04-16 15:20:36 -07003291 dev_dbg (hub_dev,
3292 "port %d, status %04x, change %04x, %s\n",
Sarah Sharp131dec32010-12-06 21:00:19 -08003293 port1, portstatus, portchange, portspeed(hub, portstatus));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003294
3295 if (hub->has_indicators) {
3296 set_port_led(hub, port1, HUB_LED_AUTO);
3297 hub->indicator[port1-1] = INDICATOR_AUTO;
3298 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003299
3300#ifdef CONFIG_USB_OTG
3301 /* during HNP, don't repeat the debounce */
3302 if (hdev->bus->is_b_host)
Alan Stern24618b02008-04-28 11:06:28 -04003303 portchange &= ~(USB_PORT_STAT_C_CONNECTION |
3304 USB_PORT_STAT_C_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003305#endif
3306
Alan Stern8808f002008-04-28 11:06:55 -04003307 /* Try to resuscitate an existing device */
3308 udev = hdev->children[port1-1];
3309 if ((portstatus & USB_PORT_STAT_CONNECTION) && udev &&
3310 udev->state != USB_STATE_NOTATTACHED) {
Alan Stern8808f002008-04-28 11:06:55 -04003311 usb_lock_device(udev);
3312 if (portstatus & USB_PORT_STAT_ENABLE) {
3313 status = 0; /* Nothing to do */
Alan Stern8808f002008-04-28 11:06:55 -04003314
3315#ifdef CONFIG_USB_SUSPEND
Alan Stern5257d972008-09-22 14:43:08 -04003316 } else if (udev->state == USB_STATE_SUSPENDED &&
3317 udev->persist_enabled) {
Alan Stern8808f002008-04-28 11:06:55 -04003318 /* For a suspended device, treat this as a
3319 * remote wakeup event.
3320 */
Alan Stern0534d462010-01-08 12:56:30 -05003321 status = usb_remote_wakeup(udev);
Alan Stern8808f002008-04-28 11:06:55 -04003322#endif
3323
3324 } else {
Alan Stern5257d972008-09-22 14:43:08 -04003325 status = -ENODEV; /* Don't resuscitate */
Alan Stern8808f002008-04-28 11:06:55 -04003326 }
3327 usb_unlock_device(udev);
3328
3329 if (status == 0) {
3330 clear_bit(port1, hub->change_bits);
3331 return;
3332 }
3333 }
3334
Alan Stern24618b02008-04-28 11:06:28 -04003335 /* Disconnect any existing devices under this port */
Alan Stern8808f002008-04-28 11:06:55 -04003336 if (udev)
Alan Stern24618b02008-04-28 11:06:28 -04003337 usb_disconnect(&hdev->children[port1-1]);
3338 clear_bit(port1, hub->change_bits);
3339
Alan Stern253e0572009-10-27 15:20:13 -04003340 /* We can forget about a "removed" device when there's a physical
3341 * disconnect or the connect status changes.
3342 */
3343 if (!(portstatus & USB_PORT_STAT_CONNECTION) ||
3344 (portchange & USB_PORT_STAT_C_CONNECTION))
3345 clear_bit(port1, hub->removed_bits);
3346
Alan Stern5257d972008-09-22 14:43:08 -04003347 if (portchange & (USB_PORT_STAT_C_CONNECTION |
3348 USB_PORT_STAT_C_ENABLE)) {
3349 status = hub_port_debounce(hub, port1);
3350 if (status < 0) {
3351 if (printk_ratelimit())
3352 dev_err(hub_dev, "connect-debounce failed, "
3353 "port %d disabled\n", port1);
3354 portstatus &= ~USB_PORT_STAT_CONNECTION;
3355 } else {
3356 portstatus = status;
3357 }
3358 }
3359
Alan Stern253e0572009-10-27 15:20:13 -04003360 /* Return now if debouncing failed or nothing is connected or
3361 * the device was "removed".
3362 */
3363 if (!(portstatus & USB_PORT_STAT_CONNECTION) ||
3364 test_bit(port1, hub->removed_bits)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003365
3366 /* maybe switch power back on (e.g. root hub was reset) */
Greg Kroah-Hartman74ad9bd2005-06-20 21:15:16 -07003367 if ((wHubCharacteristics & HUB_CHAR_LPSM) < 2
Andiry Xu0ed9a572011-04-27 18:07:43 +08003368 && !port_is_power_on(hub, portstatus))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003369 set_port_feature(hdev, port1, USB_PORT_FEAT_POWER);
Alan Stern5257d972008-09-22 14:43:08 -04003370
Linus Torvalds1da177e2005-04-16 15:20:36 -07003371 if (portstatus & USB_PORT_STAT_ENABLE)
3372 goto done;
3373 return;
3374 }
3375
Linus Torvalds1da177e2005-04-16 15:20:36 -07003376 for (i = 0; i < SET_CONFIG_TRIES; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003377
3378 /* reallocate for each attempt, since references
3379 * to the previous one can escape in various ways
3380 */
3381 udev = usb_alloc_dev(hdev, hdev->bus, port1);
3382 if (!udev) {
3383 dev_err (hub_dev,
3384 "couldn't allocate port %d usb_device\n",
3385 port1);
3386 goto done;
3387 }
3388
3389 usb_set_device_state(udev, USB_STATE_POWERED);
Alan Stern55c52712005-11-23 12:03:12 -05003390 udev->bus_mA = hub->mA_per_port;
Alan Sternb6956ff2006-08-30 15:46:48 -04003391 udev->level = hdev->level + 1;
Inaky Perez-Gonzalez8af548d2008-04-08 13:24:46 -07003392 udev->wusb = hub_is_wusb(hub);
Alan Stern55c52712005-11-23 12:03:12 -05003393
Sarah Sharp131dec32010-12-06 21:00:19 -08003394 /* Only USB 3.0 devices are connected to SuperSpeed hubs. */
3395 if (hub_is_superspeed(hub->hdev))
Sarah Sharpe7b77172009-04-27 19:54:26 -07003396 udev->speed = USB_SPEED_SUPER;
3397 else
3398 udev->speed = USB_SPEED_UNKNOWN;
3399
Alan Stern3b29b682011-02-22 09:53:41 -05003400 choose_devnum(udev);
Andiry Xuc8d4af82010-10-14 07:22:51 -07003401 if (udev->devnum <= 0) {
3402 status = -ENOTCONN; /* Don't retry */
3403 goto loop;
Sarah Sharpc6515272009-04-27 19:57:26 -07003404 }
3405
Sarah Sharpe7b77172009-04-27 19:54:26 -07003406 /* reset (non-USB 3.0 devices) and get descriptor */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003407 status = hub_port_init(hub, udev, port1, i);
3408 if (status < 0)
3409 goto loop;
3410
Phil Dibowitz93362a82010-07-22 00:05:01 +02003411 usb_detect_quirks(udev);
3412 if (udev->quirks & USB_QUIRK_DELAY_INIT)
3413 msleep(1000);
3414
Linus Torvalds1da177e2005-04-16 15:20:36 -07003415 /* consecutive bus-powered hubs aren't reliable; they can
3416 * violate the voltage drop budget. if the new child has
3417 * a "powered" LED, users should notice we didn't enable it
3418 * (without reading syslog), even without per-port LEDs
3419 * on the parent.
3420 */
3421 if (udev->descriptor.bDeviceClass == USB_CLASS_HUB
Alan Stern55c52712005-11-23 12:03:12 -05003422 && udev->bus_mA <= 100) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003423 u16 devstat;
3424
3425 status = usb_get_status(udev, USB_RECIP_DEVICE, 0,
3426 &devstat);
Alan Stern55c52712005-11-23 12:03:12 -05003427 if (status < 2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003428 dev_dbg(&udev->dev, "get status %d ?\n", status);
3429 goto loop_disable;
3430 }
Alan Stern55c52712005-11-23 12:03:12 -05003431 le16_to_cpus(&devstat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003432 if ((devstat & (1 << USB_DEVICE_SELF_POWERED)) == 0) {
3433 dev_err(&udev->dev,
3434 "can't connect bus-powered hub "
3435 "to this port\n");
3436 if (hub->has_indicators) {
3437 hub->indicator[port1-1] =
3438 INDICATOR_AMBER_BLINK;
David Howellsc4028952006-11-22 14:57:56 +00003439 schedule_delayed_work (&hub->leds, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003440 }
3441 status = -ENOTCONN; /* Don't retry */
3442 goto loop_disable;
3443 }
3444 }
3445
3446 /* check for devices running slower than they could */
3447 if (le16_to_cpu(udev->descriptor.bcdUSB) >= 0x0200
3448 && udev->speed == USB_SPEED_FULL
3449 && highspeed_hubs != 0)
3450 check_highspeed (hub, udev, port1);
3451
3452 /* Store the parent's children[] pointer. At this point
3453 * udev becomes globally accessible, although presumably
3454 * no one will look at it until hdev is unlocked.
3455 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003456 status = 0;
3457
3458 /* We mustn't add new devices if the parent hub has
3459 * been disconnected; we would race with the
3460 * recursively_mark_NOTATTACHED() routine.
3461 */
3462 spin_lock_irq(&device_state_lock);
3463 if (hdev->state == USB_STATE_NOTATTACHED)
3464 status = -ENOTCONN;
3465 else
3466 hdev->children[port1-1] = udev;
3467 spin_unlock_irq(&device_state_lock);
3468
3469 /* Run it through the hoops (find a driver, etc) */
3470 if (!status) {
3471 status = usb_new_device(udev);
3472 if (status) {
3473 spin_lock_irq(&device_state_lock);
3474 hdev->children[port1-1] = NULL;
3475 spin_unlock_irq(&device_state_lock);
3476 }
3477 }
3478
Linus Torvalds1da177e2005-04-16 15:20:36 -07003479 if (status)
3480 goto loop_disable;
3481
3482 status = hub_power_remaining(hub);
3483 if (status)
Alan Stern55c52712005-11-23 12:03:12 -05003484 dev_dbg(hub_dev, "%dmA power budget left\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003485
3486 return;
3487
3488loop_disable:
3489 hub_port_disable(hub, port1, 1);
3490loop:
Inaky Perez-Gonzalezfc721f52008-04-08 13:24:46 -07003491 usb_ep0_reinit(udev);
Alan Stern3b29b682011-02-22 09:53:41 -05003492 release_devnum(udev);
Herbert Xuf7410ce2010-01-10 20:15:03 +11003493 hub_free_dev(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003494 usb_put_dev(udev);
Vikram Panditaffcdc182007-05-25 21:31:07 -07003495 if ((status == -ENOTCONN) || (status == -ENOTSUPP))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003496 break;
3497 }
Alan Stern3a311552008-05-20 16:58:29 -04003498 if (hub->hdev->parent ||
3499 !hcd->driver->port_handed_over ||
3500 !(hcd->driver->port_handed_over)(hcd, port1))
3501 dev_err(hub_dev, "unable to enumerate USB device on port %d\n",
3502 port1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003503
3504done:
3505 hub_port_disable(hub, port1, 1);
Balaji Rao90da0962007-11-22 01:58:14 +05303506 if (hcd->driver->relinquish_port && !hub->hdev->parent)
3507 hcd->driver->relinquish_port(hcd, port1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003508}
3509
Sarah Sharp714b07b2012-01-24 13:53:18 -08003510/* Returns 1 if there was a remote wakeup and a connect status change. */
3511static int hub_handle_remote_wakeup(struct usb_hub *hub, unsigned int port,
3512 u16 portchange)
3513{
3514 struct usb_device *hdev;
3515 struct usb_device *udev;
3516 int connect_change = 0;
3517 int ret;
3518
3519 hdev = hub->hdev;
Sarah Sharp714b07b2012-01-24 13:53:18 -08003520 udev = hdev->children[port-1];
Sarah Sharp4ee823b2011-11-14 18:00:01 -08003521 if (!hub_is_superspeed(hdev)) {
3522 if (!(portchange & USB_PORT_STAT_C_SUSPEND))
3523 return 0;
3524 clear_port_feature(hdev, port, USB_PORT_FEAT_C_SUSPEND);
3525 } else {
3526 if (!udev || udev->state != USB_STATE_SUSPENDED ||
3527 !test_and_clear_bit(udev->portnum,
3528 hub->wakeup_bits))
3529 return 0;
3530 }
3531
Sarah Sharp714b07b2012-01-24 13:53:18 -08003532 if (udev) {
3533 /* TRSMRCY = 10 msec */
3534 msleep(10);
3535
3536 usb_lock_device(udev);
3537 ret = usb_remote_wakeup(udev);
3538 usb_unlock_device(udev);
3539 if (ret < 0)
3540 connect_change = 1;
3541 } else {
3542 ret = -ENODEV;
3543 hub_port_disable(hub, port, 1);
3544 }
3545 dev_dbg(hub->intfdev, "resume on port %d, status %d\n",
3546 port, ret);
3547 return connect_change;
3548}
3549
Linus Torvalds1da177e2005-04-16 15:20:36 -07003550static void hub_events(void)
3551{
3552 struct list_head *tmp;
3553 struct usb_device *hdev;
3554 struct usb_interface *intf;
3555 struct usb_hub *hub;
3556 struct device *hub_dev;
3557 u16 hubstatus;
3558 u16 hubchange;
3559 u16 portstatus;
3560 u16 portchange;
3561 int i, ret;
Sarah Sharp4ee823b2011-11-14 18:00:01 -08003562 int connect_change, wakeup_change;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003563
3564 /*
3565 * We restart the list every time to avoid a deadlock with
3566 * deleting hubs downstream from this one. This should be
3567 * safe since we delete the hub from the event list.
3568 * Not the most efficient, but avoids deadlocks.
3569 */
3570 while (1) {
3571
3572 /* Grab the first entry at the beginning of the list */
3573 spin_lock_irq(&hub_event_lock);
3574 if (list_empty(&hub_event_list)) {
3575 spin_unlock_irq(&hub_event_lock);
3576 break;
3577 }
3578
3579 tmp = hub_event_list.next;
3580 list_del_init(tmp);
3581
3582 hub = list_entry(tmp, struct usb_hub, event_list);
Alan Sterne8054852007-05-04 11:55:11 -04003583 kref_get(&hub->kref);
3584 spin_unlock_irq(&hub_event_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003585
Alan Sterne8054852007-05-04 11:55:11 -04003586 hdev = hub->hdev;
3587 hub_dev = hub->intfdev;
3588 intf = to_usb_interface(hub_dev);
Alan Stern40f122f2006-11-09 14:44:33 -05003589 dev_dbg(hub_dev, "state %d ports %d chg %04x evt %04x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003590 hdev->state, hub->descriptor
3591 ? hub->descriptor->bNbrPorts
3592 : 0,
3593 /* NOTE: expects max 15 ports... */
3594 (u16) hub->change_bits[0],
Alan Stern40f122f2006-11-09 14:44:33 -05003595 (u16) hub->event_bits[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003596
Linus Torvalds1da177e2005-04-16 15:20:36 -07003597 /* Lock the device, then check to see if we were
3598 * disconnected while waiting for the lock to succeed. */
Alan Stern06b84e82007-05-04 11:54:50 -04003599 usb_lock_device(hdev);
Alan Sterne8054852007-05-04 11:55:11 -04003600 if (unlikely(hub->disconnected))
Alan Stern9bbdf1e2010-01-08 12:57:28 -05003601 goto loop_disconnected;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003602
3603 /* If the hub has died, clean up after it */
3604 if (hdev->state == USB_STATE_NOTATTACHED) {
Alan Stern7de18d82006-06-01 13:37:24 -04003605 hub->error = -ENODEV;
Alan Stern43303542008-04-28 11:07:31 -04003606 hub_quiesce(hub, HUB_DISCONNECT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003607 goto loop;
3608 }
3609
Alan Stern40f122f2006-11-09 14:44:33 -05003610 /* Autoresume */
3611 ret = usb_autopm_get_interface(intf);
3612 if (ret) {
3613 dev_dbg(hub_dev, "Can't autoresume: %d\n", ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003614 goto loop;
Alan Stern40f122f2006-11-09 14:44:33 -05003615 }
3616
3617 /* If this is an inactive hub, do nothing */
3618 if (hub->quiescing)
3619 goto loop_autopm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003620
3621 if (hub->error) {
3622 dev_dbg (hub_dev, "resetting for error %d\n",
3623 hub->error);
3624
Ming Lei742120c2008-06-18 22:00:29 +08003625 ret = usb_reset_device(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003626 if (ret) {
3627 dev_dbg (hub_dev,
3628 "error resetting hub: %d\n", ret);
Alan Stern40f122f2006-11-09 14:44:33 -05003629 goto loop_autopm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003630 }
3631
3632 hub->nerrors = 0;
3633 hub->error = 0;
3634 }
3635
3636 /* deal with port status changes */
3637 for (i = 1; i <= hub->descriptor->bNbrPorts; i++) {
3638 if (test_bit(i, hub->busy_bits))
3639 continue;
3640 connect_change = test_bit(i, hub->change_bits);
Sarah Sharp4ee823b2011-11-14 18:00:01 -08003641 wakeup_change = test_bit(i, hub->wakeup_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003642 if (!test_and_clear_bit(i, hub->event_bits) &&
Sarah Sharp4ee823b2011-11-14 18:00:01 -08003643 !connect_change && !wakeup_change)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003644 continue;
3645
3646 ret = hub_port_status(hub, i,
3647 &portstatus, &portchange);
3648 if (ret < 0)
3649 continue;
3650
Linus Torvalds1da177e2005-04-16 15:20:36 -07003651 if (portchange & USB_PORT_STAT_C_CONNECTION) {
3652 clear_port_feature(hdev, i,
3653 USB_PORT_FEAT_C_CONNECTION);
3654 connect_change = 1;
3655 }
3656
3657 if (portchange & USB_PORT_STAT_C_ENABLE) {
3658 if (!connect_change)
3659 dev_dbg (hub_dev,
3660 "port %d enable change, "
3661 "status %08x\n",
3662 i, portstatus);
3663 clear_port_feature(hdev, i,
3664 USB_PORT_FEAT_C_ENABLE);
3665
3666 /*
3667 * EM interference sometimes causes badly
3668 * shielded USB devices to be shutdown by
3669 * the hub, this hack enables them again.
3670 * Works at least with mouse driver.
3671 */
3672 if (!(portstatus & USB_PORT_STAT_ENABLE)
3673 && !connect_change
3674 && hdev->children[i-1]) {
3675 dev_err (hub_dev,
3676 "port %i "
3677 "disabled by hub (EMI?), "
3678 "re-enabling...\n",
3679 i);
3680 connect_change = 1;
3681 }
3682 }
3683
Sarah Sharp714b07b2012-01-24 13:53:18 -08003684 if (hub_handle_remote_wakeup(hub, i, portchange))
3685 connect_change = 1;
Alan Stern8808f002008-04-28 11:06:55 -04003686
Linus Torvalds1da177e2005-04-16 15:20:36 -07003687 if (portchange & USB_PORT_STAT_C_OVERCURRENT) {
Paul Bolle752d57a2011-03-11 18:03:52 +01003688 u16 status = 0;
3689 u16 unused;
3690
3691 dev_dbg(hub_dev, "over-current change on port "
3692 "%d\n", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003693 clear_port_feature(hdev, i,
3694 USB_PORT_FEAT_C_OVER_CURRENT);
Paul Bolle752d57a2011-03-11 18:03:52 +01003695 msleep(100); /* Cool down */
Alan Stern8520f382008-09-22 14:44:26 -04003696 hub_power_on(hub, true);
Paul Bolle752d57a2011-03-11 18:03:52 +01003697 hub_port_status(hub, i, &status, &unused);
3698 if (status & USB_PORT_STAT_OVERCURRENT)
3699 dev_err(hub_dev, "over-current "
3700 "condition on port %d\n", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003701 }
3702
3703 if (portchange & USB_PORT_STAT_C_RESET) {
3704 dev_dbg (hub_dev,
3705 "reset change on port %d\n",
3706 i);
3707 clear_port_feature(hdev, i,
3708 USB_PORT_FEAT_C_RESET);
3709 }
Sarah Sharpc7061572010-12-06 15:08:20 -08003710 if ((portchange & USB_PORT_STAT_C_BH_RESET) &&
3711 hub_is_superspeed(hub->hdev)) {
3712 dev_dbg(hub_dev,
3713 "warm reset change on port %d\n",
3714 i);
3715 clear_port_feature(hdev, i,
3716 USB_PORT_FEAT_C_BH_PORT_RESET);
3717 }
John Youndbe79bb2001-09-17 00:00:00 -07003718 if (portchange & USB_PORT_STAT_C_LINK_STATE) {
3719 clear_port_feature(hub->hdev, i,
3720 USB_PORT_FEAT_C_PORT_LINK_STATE);
3721 }
3722 if (portchange & USB_PORT_STAT_C_CONFIG_ERROR) {
3723 dev_warn(hub_dev,
3724 "config error on port %d\n",
3725 i);
3726 clear_port_feature(hub->hdev, i,
3727 USB_PORT_FEAT_C_PORT_CONFIG_ERROR);
3728 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003729
Andiry Xu5e467f62011-04-27 18:07:54 +08003730 /* Warm reset a USB3 protocol port if it's in
3731 * SS.Inactive state.
3732 */
3733 if (hub_is_superspeed(hub->hdev) &&
3734 (portstatus & USB_PORT_STAT_LINK_STATE)
3735 == USB_SS_PORT_LS_SS_INACTIVE) {
3736 dev_dbg(hub_dev, "warm reset port %d\n", i);
Andiry Xu75d7cf72011-09-13 16:41:11 -07003737 hub_port_reset(hub, i, NULL,
3738 HUB_BH_RESET_TIME, true);
Andiry Xu5e467f62011-04-27 18:07:54 +08003739 }
3740
Linus Torvalds1da177e2005-04-16 15:20:36 -07003741 if (connect_change)
3742 hub_port_connect_change(hub, i,
3743 portstatus, portchange);
3744 } /* end for i */
3745
3746 /* deal with hub status changes */
3747 if (test_and_clear_bit(0, hub->event_bits) == 0)
3748 ; /* do nothing */
3749 else if (hub_hub_status(hub, &hubstatus, &hubchange) < 0)
3750 dev_err (hub_dev, "get_hub_status failed\n");
3751 else {
3752 if (hubchange & HUB_CHANGE_LOCAL_POWER) {
3753 dev_dbg (hub_dev, "power change\n");
3754 clear_hub_feature(hdev, C_HUB_LOCAL_POWER);
Alan Stern55c52712005-11-23 12:03:12 -05003755 if (hubstatus & HUB_STATUS_LOCAL_POWER)
3756 /* FIXME: Is this always true? */
Alan Stern55c52712005-11-23 12:03:12 -05003757 hub->limited_power = 1;
jidong xiao403fae72007-09-14 00:08:51 +08003758 else
3759 hub->limited_power = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003760 }
3761 if (hubchange & HUB_CHANGE_OVERCURRENT) {
Paul Bolle752d57a2011-03-11 18:03:52 +01003762 u16 status = 0;
3763 u16 unused;
3764
3765 dev_dbg(hub_dev, "over-current change\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003766 clear_hub_feature(hdev, C_HUB_OVER_CURRENT);
Paul Bolle752d57a2011-03-11 18:03:52 +01003767 msleep(500); /* Cool down */
Alan Stern8520f382008-09-22 14:44:26 -04003768 hub_power_on(hub, true);
Paul Bolle752d57a2011-03-11 18:03:52 +01003769 hub_hub_status(hub, &status, &unused);
3770 if (status & HUB_STATUS_OVERCURRENT)
3771 dev_err(hub_dev, "over-current "
3772 "condition\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003773 }
3774 }
3775
Alan Stern8e4ceb32009-12-07 13:01:37 -05003776 loop_autopm:
3777 /* Balance the usb_autopm_get_interface() above */
3778 usb_autopm_put_interface_no_suspend(intf);
3779 loop:
3780 /* Balance the usb_autopm_get_interface_no_resume() in
3781 * kick_khubd() and allow autosuspend.
3782 */
3783 usb_autopm_put_interface(intf);
Alan Stern9bbdf1e2010-01-08 12:57:28 -05003784 loop_disconnected:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003785 usb_unlock_device(hdev);
Alan Sterne8054852007-05-04 11:55:11 -04003786 kref_put(&hub->kref, hub_release);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003787
3788 } /* end while (1) */
3789}
3790
3791static int hub_thread(void *__unused)
3792{
Alan Stern3bb1af52008-03-03 15:15:36 -05003793 /* khubd needs to be freezable to avoid intefering with USB-PERSIST
3794 * port handover. Otherwise it might see that a full-speed device
3795 * was gone before the EHCI controller had handed its port over to
3796 * the companion full-speed controller.
3797 */
Rafael J. Wysocki83144182007-07-17 04:03:35 -07003798 set_freezable();
Alan Stern3bb1af52008-03-03 15:15:36 -05003799
Linus Torvalds1da177e2005-04-16 15:20:36 -07003800 do {
3801 hub_events();
Rafael J. Wysockie42837b2007-10-18 03:04:45 -07003802 wait_event_freezable(khubd_wait,
akpm@osdl.org9c8d6172005-06-20 14:29:58 -07003803 !list_empty(&hub_event_list) ||
3804 kthread_should_stop());
akpm@osdl.org9c8d6172005-06-20 14:29:58 -07003805 } while (!kthread_should_stop() || !list_empty(&hub_event_list));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003806
akpm@osdl.org9c8d6172005-06-20 14:29:58 -07003807 pr_debug("%s: khubd exiting\n", usbcore_name);
3808 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003809}
3810
Németh Márton1e927d92010-01-10 15:34:53 +01003811static const struct usb_device_id hub_id_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003812 { .match_flags = USB_DEVICE_ID_MATCH_DEV_CLASS,
3813 .bDeviceClass = USB_CLASS_HUB},
3814 { .match_flags = USB_DEVICE_ID_MATCH_INT_CLASS,
3815 .bInterfaceClass = USB_CLASS_HUB},
3816 { } /* Terminating entry */
3817};
3818
3819MODULE_DEVICE_TABLE (usb, hub_id_table);
3820
3821static struct usb_driver hub_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003822 .name = "hub",
3823 .probe = hub_probe,
3824 .disconnect = hub_disconnect,
3825 .suspend = hub_suspend,
3826 .resume = hub_resume,
Alan Sternf07600c2007-05-30 15:38:16 -04003827 .reset_resume = hub_reset_resume,
Alan Stern7de18d82006-06-01 13:37:24 -04003828 .pre_reset = hub_pre_reset,
3829 .post_reset = hub_post_reset,
Andi Kleenc532b292010-06-01 23:04:41 +02003830 .unlocked_ioctl = hub_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003831 .id_table = hub_id_table,
Alan Stern40f122f2006-11-09 14:44:33 -05003832 .supports_autosuspend = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003833};
3834
3835int usb_hub_init(void)
3836{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003837 if (usb_register(&hub_driver) < 0) {
3838 printk(KERN_ERR "%s: can't register hub driver\n",
3839 usbcore_name);
3840 return -1;
3841 }
3842
akpm@osdl.org9c8d6172005-06-20 14:29:58 -07003843 khubd_task = kthread_run(hub_thread, NULL, "khubd");
3844 if (!IS_ERR(khubd_task))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003845 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003846
3847 /* Fall through if kernel_thread failed */
3848 usb_deregister(&hub_driver);
3849 printk(KERN_ERR "%s: can't start khubd\n", usbcore_name);
3850
3851 return -1;
3852}
3853
3854void usb_hub_cleanup(void)
3855{
akpm@osdl.org9c8d6172005-06-20 14:29:58 -07003856 kthread_stop(khubd_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003857
3858 /*
3859 * Hub resources are freed for us by usb_deregister. It calls
3860 * usb_driver_purge on every device which in turn calls that
3861 * devices disconnect function if it is using this driver.
3862 * The hub_disconnect function takes care of releasing the
3863 * individual hub resources. -greg
3864 */
3865 usb_deregister(&hub_driver);
3866} /* usb_hub_cleanup() */
3867
Alan Sterneb764c42008-03-03 15:16:04 -05003868static int descriptors_changed(struct usb_device *udev,
3869 struct usb_device_descriptor *old_device_descriptor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003870{
Alan Sterneb764c42008-03-03 15:16:04 -05003871 int changed = 0;
3872 unsigned index;
3873 unsigned serial_len = 0;
3874 unsigned len;
3875 unsigned old_length;
3876 int length;
3877 char *buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003878
Alan Sterneb764c42008-03-03 15:16:04 -05003879 if (memcmp(&udev->descriptor, old_device_descriptor,
3880 sizeof(*old_device_descriptor)) != 0)
3881 return 1;
3882
3883 /* Since the idVendor, idProduct, and bcdDevice values in the
3884 * device descriptor haven't changed, we will assume the
3885 * Manufacturer and Product strings haven't changed either.
3886 * But the SerialNumber string could be different (e.g., a
3887 * different flash card of the same brand).
3888 */
3889 if (udev->serial)
3890 serial_len = strlen(udev->serial) + 1;
3891
3892 len = serial_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003893 for (index = 0; index < udev->descriptor.bNumConfigurations; index++) {
Alan Sterneb764c42008-03-03 15:16:04 -05003894 old_length = le16_to_cpu(udev->config[index].desc.wTotalLength);
3895 len = max(len, old_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003896 }
Alan Sterneb764c42008-03-03 15:16:04 -05003897
Oliver Neukum0cc1a512008-01-10 10:31:48 +01003898 buf = kmalloc(len, GFP_NOIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003899 if (buf == NULL) {
3900 dev_err(&udev->dev, "no mem to re-read configs after reset\n");
3901 /* assume the worst */
3902 return 1;
3903 }
3904 for (index = 0; index < udev->descriptor.bNumConfigurations; index++) {
Alan Sterneb764c42008-03-03 15:16:04 -05003905 old_length = le16_to_cpu(udev->config[index].desc.wTotalLength);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003906 length = usb_get_descriptor(udev, USB_DT_CONFIG, index, buf,
3907 old_length);
Alan Sterneb764c42008-03-03 15:16:04 -05003908 if (length != old_length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003909 dev_dbg(&udev->dev, "config index %d, error %d\n",
3910 index, length);
Alan Sterneb764c42008-03-03 15:16:04 -05003911 changed = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003912 break;
3913 }
3914 if (memcmp (buf, udev->rawdescriptors[index], old_length)
3915 != 0) {
3916 dev_dbg(&udev->dev, "config index %d changed (#%d)\n",
Alan Sterneb764c42008-03-03 15:16:04 -05003917 index,
3918 ((struct usb_config_descriptor *) buf)->
3919 bConfigurationValue);
3920 changed = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003921 break;
3922 }
3923 }
Alan Sterneb764c42008-03-03 15:16:04 -05003924
3925 if (!changed && serial_len) {
3926 length = usb_string(udev, udev->descriptor.iSerialNumber,
3927 buf, serial_len);
3928 if (length + 1 != serial_len) {
3929 dev_dbg(&udev->dev, "serial string error %d\n",
3930 length);
3931 changed = 1;
3932 } else if (memcmp(buf, udev->serial, length) != 0) {
3933 dev_dbg(&udev->dev, "serial string changed\n");
3934 changed = 1;
3935 }
3936 }
3937
Linus Torvalds1da177e2005-04-16 15:20:36 -07003938 kfree(buf);
Alan Sterneb764c42008-03-03 15:16:04 -05003939 return changed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003940}
3941
3942/**
Ming Lei742120c2008-06-18 22:00:29 +08003943 * usb_reset_and_verify_device - perform a USB port reset to reinitialize a device
Linus Torvalds1da177e2005-04-16 15:20:36 -07003944 * @udev: device to reset (not in SUSPENDED or NOTATTACHED state)
3945 *
Alan Stern79efa092006-06-01 13:33:42 -04003946 * WARNING - don't use this routine to reset a composite device
3947 * (one with multiple interfaces owned by separate drivers)!
Ming Lei742120c2008-06-18 22:00:29 +08003948 * Use usb_reset_device() instead.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003949 *
3950 * Do a port reset, reassign the device's address, and establish its
3951 * former operating configuration. If the reset fails, or the device's
3952 * descriptors change from their values before the reset, or the original
3953 * configuration and altsettings cannot be restored, a flag will be set
3954 * telling khubd to pretend the device has been disconnected and then
3955 * re-connected. All drivers will be unbound, and the device will be
3956 * re-enumerated and probed all over again.
3957 *
3958 * Returns 0 if the reset succeeded, -ENODEV if the device has been
3959 * flagged for logical disconnection, or some other negative error code
3960 * if the reset wasn't even attempted.
3961 *
3962 * The caller must own the device lock. For example, it's safe to use
3963 * this from a driver probe() routine after downloading new firmware.
3964 * For calls that might not occur during probe(), drivers should lock
3965 * the device using usb_lock_device_for_reset().
Alan Stern6bc6cff2007-05-04 11:53:03 -04003966 *
3967 * Locking exception: This routine may also be called from within an
3968 * autoresume handler. Such usage won't conflict with other tasks
3969 * holding the device lock because these tasks should always call
3970 * usb_autopm_resume_device(), thereby preventing any unwanted autoresume.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003971 */
Ming Lei742120c2008-06-18 22:00:29 +08003972static int usb_reset_and_verify_device(struct usb_device *udev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003973{
3974 struct usb_device *parent_hdev = udev->parent;
3975 struct usb_hub *parent_hub;
Sarah Sharp3f0479e2009-12-03 09:44:36 -08003976 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003977 struct usb_device_descriptor descriptor = udev->descriptor;
Alan Stern12c3da32005-11-23 12:09:52 -05003978 int i, ret = 0;
3979 int port1 = udev->portnum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003980
3981 if (udev->state == USB_STATE_NOTATTACHED ||
3982 udev->state == USB_STATE_SUSPENDED) {
3983 dev_dbg(&udev->dev, "device reset not allowed in state %d\n",
3984 udev->state);
3985 return -EINVAL;
3986 }
3987
3988 if (!parent_hdev) {
Wolfram Sang4bec9912010-08-29 18:17:14 +02003989 /* this requires hcd-specific logic; see ohci_restart() */
Harvey Harrison441b62c2008-03-03 16:08:34 -08003990 dev_dbg(&udev->dev, "%s for root hub!\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003991 return -EISDIR;
3992 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003993 parent_hub = hdev_to_hub(parent_hdev);
3994
Linus Torvalds1da177e2005-04-16 15:20:36 -07003995 set_bit(port1, parent_hub->busy_bits);
3996 for (i = 0; i < SET_CONFIG_TRIES; ++i) {
3997
3998 /* ep0 maxpacket size may change; let the HCD know about it.
3999 * Other endpoints will be handled by re-enumeration. */
Inaky Perez-Gonzalezfc721f52008-04-08 13:24:46 -07004000 usb_ep0_reinit(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004001 ret = hub_port_init(parent_hub, udev, port1, i);
Alan Sterndd4dd192007-05-04 11:55:54 -04004002 if (ret >= 0 || ret == -ENOTCONN || ret == -ENODEV)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004003 break;
4004 }
4005 clear_bit(port1, parent_hub->busy_bits);
Alan Sternd5cbad42006-08-11 16:52:39 -04004006
Linus Torvalds1da177e2005-04-16 15:20:36 -07004007 if (ret < 0)
4008 goto re_enumerate;
4009
4010 /* Device might have changed firmware (DFU or similar) */
Alan Sterneb764c42008-03-03 15:16:04 -05004011 if (descriptors_changed(udev, &descriptor)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004012 dev_info(&udev->dev, "device firmware changed\n");
4013 udev->descriptor = descriptor; /* for disconnect() calls */
4014 goto re_enumerate;
4015 }
Alan Stern4fe03872009-02-26 10:21:02 -05004016
4017 /* Restore the device's previous configuration */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004018 if (!udev->actconfig)
4019 goto done;
Sarah Sharp3f0479e2009-12-03 09:44:36 -08004020
Sarah Sharpd673bfc2010-10-15 08:55:24 -07004021 mutex_lock(hcd->bandwidth_mutex);
Sarah Sharp3f0479e2009-12-03 09:44:36 -08004022 ret = usb_hcd_alloc_bandwidth(udev, udev->actconfig, NULL, NULL);
4023 if (ret < 0) {
4024 dev_warn(&udev->dev,
4025 "Busted HC? Not enough HCD resources for "
4026 "old configuration.\n");
Sarah Sharpd673bfc2010-10-15 08:55:24 -07004027 mutex_unlock(hcd->bandwidth_mutex);
Sarah Sharp3f0479e2009-12-03 09:44:36 -08004028 goto re_enumerate;
4029 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004030 ret = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
4031 USB_REQ_SET_CONFIGURATION, 0,
4032 udev->actconfig->desc.bConfigurationValue, 0,
4033 NULL, 0, USB_CTRL_SET_TIMEOUT);
4034 if (ret < 0) {
4035 dev_err(&udev->dev,
4036 "can't restore configuration #%d (error=%d)\n",
4037 udev->actconfig->desc.bConfigurationValue, ret);
Sarah Sharpd673bfc2010-10-15 08:55:24 -07004038 mutex_unlock(hcd->bandwidth_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004039 goto re_enumerate;
4040 }
Sarah Sharpd673bfc2010-10-15 08:55:24 -07004041 mutex_unlock(hcd->bandwidth_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004042 usb_set_device_state(udev, USB_STATE_CONFIGURED);
4043
Alan Stern4fe03872009-02-26 10:21:02 -05004044 /* Put interfaces back into the same altsettings as before.
4045 * Don't bother to send the Set-Interface request for interfaces
4046 * that were already in altsetting 0; besides being unnecessary,
4047 * many devices can't handle it. Instead just reset the host-side
4048 * endpoint state.
4049 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004050 for (i = 0; i < udev->actconfig->desc.bNumInterfaces; i++) {
Sarah Sharp3f0479e2009-12-03 09:44:36 -08004051 struct usb_host_config *config = udev->actconfig;
4052 struct usb_interface *intf = config->interface[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004053 struct usb_interface_descriptor *desc;
4054
Linus Torvalds1da177e2005-04-16 15:20:36 -07004055 desc = &intf->cur_altsetting->desc;
Alan Stern4fe03872009-02-26 10:21:02 -05004056 if (desc->bAlternateSetting == 0) {
4057 usb_disable_interface(udev, intf, true);
4058 usb_enable_interface(udev, intf, true);
4059 ret = 0;
4060 } else {
Sarah Sharp04a723e2010-01-06 10:16:51 -08004061 /* Let the bandwidth allocation function know that this
4062 * device has been reset, and it will have to use
4063 * alternate setting 0 as the current alternate setting.
Sarah Sharp3f0479e2009-12-03 09:44:36 -08004064 */
Sarah Sharp04a723e2010-01-06 10:16:51 -08004065 intf->resetting_device = 1;
Alan Stern4fe03872009-02-26 10:21:02 -05004066 ret = usb_set_interface(udev, desc->bInterfaceNumber,
4067 desc->bAlternateSetting);
Sarah Sharp04a723e2010-01-06 10:16:51 -08004068 intf->resetting_device = 0;
Alan Stern4fe03872009-02-26 10:21:02 -05004069 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004070 if (ret < 0) {
4071 dev_err(&udev->dev, "failed to restore interface %d "
4072 "altsetting %d (error=%d)\n",
4073 desc->bInterfaceNumber,
4074 desc->bAlternateSetting,
4075 ret);
4076 goto re_enumerate;
4077 }
4078 }
4079
4080done:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004081 return 0;
4082
4083re_enumerate:
4084 hub_port_logical_disconnect(parent_hub, port1);
4085 return -ENODEV;
4086}
Alan Stern79efa092006-06-01 13:33:42 -04004087
4088/**
Ming Lei742120c2008-06-18 22:00:29 +08004089 * usb_reset_device - warn interface drivers and perform a USB port reset
Alan Stern79efa092006-06-01 13:33:42 -04004090 * @udev: device to reset (not in SUSPENDED or NOTATTACHED state)
Alan Stern79efa092006-06-01 13:33:42 -04004091 *
4092 * Warns all drivers bound to registered interfaces (using their pre_reset
4093 * method), performs the port reset, and then lets the drivers know that
4094 * the reset is over (using their post_reset method).
4095 *
Ming Lei742120c2008-06-18 22:00:29 +08004096 * Return value is the same as for usb_reset_and_verify_device().
Alan Stern79efa092006-06-01 13:33:42 -04004097 *
4098 * The caller must own the device lock. For example, it's safe to use
4099 * this from a driver probe() routine after downloading new firmware.
4100 * For calls that might not occur during probe(), drivers should lock
4101 * the device using usb_lock_device_for_reset().
Alan Stern78d9a482008-06-23 16:00:40 -04004102 *
4103 * If an interface is currently being probed or disconnected, we assume
4104 * its driver knows how to handle resets. For all other interfaces,
4105 * if the driver doesn't have pre_reset and post_reset methods then
4106 * we attempt to unbind it and rebind afterward.
Alan Stern79efa092006-06-01 13:33:42 -04004107 */
Ming Lei742120c2008-06-18 22:00:29 +08004108int usb_reset_device(struct usb_device *udev)
Alan Stern79efa092006-06-01 13:33:42 -04004109{
4110 int ret;
Alan Stern852c4b42007-12-03 15:44:29 -05004111 int i;
Alan Stern79efa092006-06-01 13:33:42 -04004112 struct usb_host_config *config = udev->actconfig;
4113
4114 if (udev->state == USB_STATE_NOTATTACHED ||
4115 udev->state == USB_STATE_SUSPENDED) {
4116 dev_dbg(&udev->dev, "device reset not allowed in state %d\n",
4117 udev->state);
4118 return -EINVAL;
4119 }
4120
Alan Stern645daaa2006-08-30 15:47:02 -04004121 /* Prevent autosuspend during the reset */
Alan Stern94fcda12006-11-20 11:38:46 -05004122 usb_autoresume_device(udev);
Alan Stern645daaa2006-08-30 15:47:02 -04004123
Alan Stern79efa092006-06-01 13:33:42 -04004124 if (config) {
Alan Stern79efa092006-06-01 13:33:42 -04004125 for (i = 0; i < config->desc.bNumInterfaces; ++i) {
Alan Stern852c4b42007-12-03 15:44:29 -05004126 struct usb_interface *cintf = config->interface[i];
4127 struct usb_driver *drv;
Alan Stern78d9a482008-06-23 16:00:40 -04004128 int unbind = 0;
Alan Stern852c4b42007-12-03 15:44:29 -05004129
4130 if (cintf->dev.driver) {
Alan Stern79efa092006-06-01 13:33:42 -04004131 drv = to_usb_driver(cintf->dev.driver);
Alan Stern78d9a482008-06-23 16:00:40 -04004132 if (drv->pre_reset && drv->post_reset)
4133 unbind = (drv->pre_reset)(cintf);
4134 else if (cintf->condition ==
4135 USB_INTERFACE_BOUND)
4136 unbind = 1;
4137 if (unbind)
4138 usb_forced_unbind_intf(cintf);
Alan Stern79efa092006-06-01 13:33:42 -04004139 }
4140 }
4141 }
4142
Ming Lei742120c2008-06-18 22:00:29 +08004143 ret = usb_reset_and_verify_device(udev);
Alan Stern79efa092006-06-01 13:33:42 -04004144
4145 if (config) {
Alan Stern79efa092006-06-01 13:33:42 -04004146 for (i = config->desc.bNumInterfaces - 1; i >= 0; --i) {
Alan Stern852c4b42007-12-03 15:44:29 -05004147 struct usb_interface *cintf = config->interface[i];
4148 struct usb_driver *drv;
Alan Stern78d9a482008-06-23 16:00:40 -04004149 int rebind = cintf->needs_binding;
Alan Stern852c4b42007-12-03 15:44:29 -05004150
Alan Stern78d9a482008-06-23 16:00:40 -04004151 if (!rebind && cintf->dev.driver) {
Alan Stern79efa092006-06-01 13:33:42 -04004152 drv = to_usb_driver(cintf->dev.driver);
4153 if (drv->post_reset)
Alan Stern78d9a482008-06-23 16:00:40 -04004154 rebind = (drv->post_reset)(cintf);
4155 else if (cintf->condition ==
4156 USB_INTERFACE_BOUND)
4157 rebind = 1;
Alan Stern79efa092006-06-01 13:33:42 -04004158 }
Alan Stern6c640942008-10-21 15:40:03 -04004159 if (ret == 0 && rebind)
Alan Stern78d9a482008-06-23 16:00:40 -04004160 usb_rebind_intf(cintf);
Alan Stern79efa092006-06-01 13:33:42 -04004161 }
4162 }
4163
Alan Stern94fcda12006-11-20 11:38:46 -05004164 usb_autosuspend_device(udev);
Alan Stern79efa092006-06-01 13:33:42 -04004165 return ret;
4166}
Ming Lei742120c2008-06-18 22:00:29 +08004167EXPORT_SYMBOL_GPL(usb_reset_device);
Inaky Perez-Gonzalezdc023dc2008-11-13 10:31:35 -08004168
4169
4170/**
4171 * usb_queue_reset_device - Reset a USB device from an atomic context
4172 * @iface: USB interface belonging to the device to reset
4173 *
4174 * This function can be used to reset a USB device from an atomic
4175 * context, where usb_reset_device() won't work (as it blocks).
4176 *
4177 * Doing a reset via this method is functionally equivalent to calling
4178 * usb_reset_device(), except for the fact that it is delayed to a
4179 * workqueue. This means that any drivers bound to other interfaces
4180 * might be unbound, as well as users from usbfs in user space.
4181 *
4182 * Corner cases:
4183 *
4184 * - Scheduling two resets at the same time from two different drivers
4185 * attached to two different interfaces of the same device is
4186 * possible; depending on how the driver attached to each interface
4187 * handles ->pre_reset(), the second reset might happen or not.
4188 *
4189 * - If a driver is unbound and it had a pending reset, the reset will
4190 * be cancelled.
4191 *
4192 * - This function can be called during .probe() or .disconnect()
4193 * times. On return from .disconnect(), any pending resets will be
4194 * cancelled.
4195 *
4196 * There is no no need to lock/unlock the @reset_ws as schedule_work()
4197 * does its own.
4198 *
4199 * NOTE: We don't do any reference count tracking because it is not
4200 * needed. The lifecycle of the work_struct is tied to the
4201 * usb_interface. Before destroying the interface we cancel the
4202 * work_struct, so the fact that work_struct is queued and or
4203 * running means the interface (and thus, the device) exist and
4204 * are referenced.
4205 */
4206void usb_queue_reset_device(struct usb_interface *iface)
4207{
4208 schedule_work(&iface->reset_ws);
4209}
4210EXPORT_SYMBOL_GPL(usb_queue_reset_device);