]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - drivers/usb/core/driver.c
usb: s3c-hsotg: Add header file protection macros in s3c-hsotg.h
[mirror_ubuntu-zesty-kernel.git] / drivers / usb / core / driver.c
CommitLineData
ddae41be
GKH
1/*
2 * drivers/usb/driver.c - most of the driver model stuff for usb
3 *
4 * (C) Copyright 2005 Greg Kroah-Hartman <gregkh@suse.de>
5 *
6 * based on drivers/usb/usb.c which had the following copyrights:
7 * (C) Copyright Linus Torvalds 1999
8 * (C) Copyright Johannes Erdfelt 1999-2001
9 * (C) Copyright Andreas Gal 1999
10 * (C) Copyright Gregory P. Smith 1999
11 * (C) Copyright Deti Fliegl 1999 (new USB architecture)
12 * (C) Copyright Randy Dunlap 2000
13 * (C) Copyright David Brownell 2000-2004
14 * (C) Copyright Yggdrasil Computing, Inc. 2000
15 * (usb_device_id matching changes by Adam J. Richter)
16 * (C) Copyright Greg Kroah-Hartman 2002-2003
17 *
18 * NOTE! This is not actually a driver at all, rather this is
19 * just a collection of helper routines that implement the
36e56a34
AS
20 * matching, probing, releasing, suspending and resuming for
21 * real drivers.
ddae41be
GKH
22 *
23 */
24
ddae41be 25#include <linux/device.h>
5a0e3ad6 26#include <linux/slab.h>
f940fcd8 27#include <linux/export.h>
ddae41be 28#include <linux/usb.h>
6bc6cff5 29#include <linux/usb/quirks.h>
27729aad 30#include <linux/usb/hcd.h>
27729aad 31
ddae41be
GKH
32#include "usb.h"
33
20dfdad7 34
733260ff
GKH
35#ifdef CONFIG_HOTPLUG
36
37/*
38 * Adds a new dynamic USBdevice ID to this driver,
39 * and cause the driver to probe for all devices again.
40 */
93bacefc
GKH
41ssize_t usb_store_new_id(struct usb_dynids *dynids,
42 struct device_driver *driver,
43 const char *buf, size_t count)
733260ff 44{
733260ff
GKH
45 struct usb_dynid *dynid;
46 u32 idVendor = 0;
47 u32 idProduct = 0;
ff231db8 48 unsigned int bInterfaceClass = 0;
733260ff 49 int fields = 0;
1b21d5e1 50 int retval = 0;
733260ff 51
ff231db8
JD
52 fields = sscanf(buf, "%x %x %x", &idVendor, &idProduct,
53 &bInterfaceClass);
733260ff
GKH
54 if (fields < 2)
55 return -EINVAL;
56
57 dynid = kzalloc(sizeof(*dynid), GFP_KERNEL);
58 if (!dynid)
59 return -ENOMEM;
60
61 INIT_LIST_HEAD(&dynid->node);
62 dynid->id.idVendor = idVendor;
63 dynid->id.idProduct = idProduct;
64 dynid->id.match_flags = USB_DEVICE_ID_MATCH_DEVICE;
ff231db8
JD
65 if (fields == 3) {
66 dynid->id.bInterfaceClass = (u8)bInterfaceClass;
67 dynid->id.match_flags |= USB_DEVICE_ID_MATCH_INT_CLASS;
68 }
733260ff 69
93bacefc 70 spin_lock(&dynids->lock);
e5dd0115 71 list_add_tail(&dynid->node, &dynids->list);
93bacefc 72 spin_unlock(&dynids->lock);
733260ff 73
cef9bc56 74 retval = driver_attach(driver);
733260ff 75
1b21d5e1
GKH
76 if (retval)
77 return retval;
733260ff
GKH
78 return count;
79}
93bacefc
GKH
80EXPORT_SYMBOL_GPL(usb_store_new_id);
81
ef206f3f 82ssize_t usb_show_dynids(struct usb_dynids *dynids, char *buf)
e6bbcef0
BM
83{
84 struct usb_dynid *dynid;
e6bbcef0
BM
85 size_t count = 0;
86
ef206f3f 87 list_for_each_entry(dynid, &dynids->list, node)
e6bbcef0
BM
88 if (dynid->id.bInterfaceClass != 0)
89 count += scnprintf(&buf[count], PAGE_SIZE - count, "%04x %04x %02x\n",
90 dynid->id.idVendor, dynid->id.idProduct,
91 dynid->id.bInterfaceClass);
92 else
93 count += scnprintf(&buf[count], PAGE_SIZE - count, "%04x %04x\n",
94 dynid->id.idVendor, dynid->id.idProduct);
95 return count;
96}
ef206f3f
BM
97EXPORT_SYMBOL_GPL(usb_show_dynids);
98
99static ssize_t show_dynids(struct device_driver *driver, char *buf)
100{
101 struct usb_driver *usb_drv = to_usb_driver(driver);
102
103 return usb_show_dynids(&usb_drv->dynids, buf);
104}
e6bbcef0 105
93bacefc
GKH
106static ssize_t store_new_id(struct device_driver *driver,
107 const char *buf, size_t count)
108{
109 struct usb_driver *usb_drv = to_usb_driver(driver);
110
111 return usb_store_new_id(&usb_drv->dynids, driver, buf, count);
112}
e6bbcef0 113static DRIVER_ATTR(new_id, S_IRUGO | S_IWUSR, show_dynids, store_new_id);
733260ff 114
0c7a2b72
CR
115/**
116 * store_remove_id - remove a USB device ID from this driver
117 * @driver: target device driver
118 * @buf: buffer for scanning device ID data
119 * @count: input size
120 *
121 * Removes a dynamic usb device ID from this driver.
122 */
123static ssize_t
124store_remove_id(struct device_driver *driver, const char *buf, size_t count)
125{
126 struct usb_dynid *dynid, *n;
127 struct usb_driver *usb_driver = to_usb_driver(driver);
128 u32 idVendor = 0;
129 u32 idProduct = 0;
130 int fields = 0;
131 int retval = 0;
132
133 fields = sscanf(buf, "%x %x", &idVendor, &idProduct);
134 if (fields < 2)
135 return -EINVAL;
136
137 spin_lock(&usb_driver->dynids.lock);
138 list_for_each_entry_safe(dynid, n, &usb_driver->dynids.list, node) {
139 struct usb_device_id *id = &dynid->id;
140 if ((id->idVendor == idVendor) &&
141 (id->idProduct == idProduct)) {
142 list_del(&dynid->node);
143 kfree(dynid);
144 retval = 0;
145 break;
146 }
147 }
148 spin_unlock(&usb_driver->dynids.lock);
149
150 if (retval)
151 return retval;
152 return count;
153}
e6bbcef0 154static DRIVER_ATTR(remove_id, S_IRUGO | S_IWUSR, show_dynids, store_remove_id);
0c7a2b72 155
ed283e9f 156static int usb_create_newid_files(struct usb_driver *usb_drv)
733260ff
GKH
157{
158 int error = 0;
159
ba9dc657
GKH
160 if (usb_drv->no_dynamic_id)
161 goto exit;
162
ed283e9f 163 if (usb_drv->probe != NULL) {
15147ffd
GKH
164 error = driver_create_file(&usb_drv->drvwrap.driver,
165 &driver_attr_new_id);
ed283e9f
AS
166 if (error == 0) {
167 error = driver_create_file(&usb_drv->drvwrap.driver,
168 &driver_attr_remove_id);
169 if (error)
170 driver_remove_file(&usb_drv->drvwrap.driver,
171 &driver_attr_new_id);
172 }
173 }
ba9dc657 174exit:
733260ff
GKH
175 return error;
176}
177
ed283e9f 178static void usb_remove_newid_files(struct usb_driver *usb_drv)
ba9dc657
GKH
179{
180 if (usb_drv->no_dynamic_id)
181 return;
182
ed283e9f 183 if (usb_drv->probe != NULL) {
15147ffd 184 driver_remove_file(&usb_drv->drvwrap.driver,
0c7a2b72 185 &driver_attr_remove_id);
ed283e9f
AS
186 driver_remove_file(&usb_drv->drvwrap.driver,
187 &driver_attr_new_id);
188 }
0c7a2b72
CR
189}
190
733260ff
GKH
191static void usb_free_dynids(struct usb_driver *usb_drv)
192{
193 struct usb_dynid *dynid, *n;
194
195 spin_lock(&usb_drv->dynids.lock);
196 list_for_each_entry_safe(dynid, n, &usb_drv->dynids.list, node) {
197 list_del(&dynid->node);
198 kfree(dynid);
199 }
200 spin_unlock(&usb_drv->dynids.lock);
201}
202#else
ed283e9f 203static inline int usb_create_newid_files(struct usb_driver *usb_drv)
0c7a2b72
CR
204{
205 return 0;
206}
207
ed283e9f 208static void usb_remove_newid_files(struct usb_driver *usb_drv)
0c7a2b72
CR
209{
210}
211
733260ff
GKH
212static inline void usb_free_dynids(struct usb_driver *usb_drv)
213{
214}
215#endif
216
217static const struct usb_device_id *usb_match_dynamic_id(struct usb_interface *intf,
218 struct usb_driver *drv)
219{
220 struct usb_dynid *dynid;
221
222 spin_lock(&drv->dynids.lock);
223 list_for_each_entry(dynid, &drv->dynids.list, node) {
224 if (usb_match_one_id(intf, &dynid->id)) {
225 spin_unlock(&drv->dynids.lock);
226 return &dynid->id;
227 }
228 }
229 spin_unlock(&drv->dynids.lock);
230 return NULL;
231}
232
233
8bb54ab5
AS
234/* called from driver core with dev locked */
235static int usb_probe_device(struct device *dev)
236{
237 struct usb_device_driver *udriver = to_usb_device_driver(dev->driver);
55129666 238 struct usb_device *udev = to_usb_device(dev);
9bbdf1e0 239 int error = 0;
8bb54ab5 240
441b62c1 241 dev_dbg(dev, "%s\n", __func__);
8bb54ab5 242
8bb54ab5
AS
243 /* TODO: Add real matching code */
244
645daaab
AS
245 /* The device should always appear to be in use
246 * unless the driver suports autosuspend.
247 */
9bbdf1e0
AS
248 if (!udriver->supports_autosuspend)
249 error = usb_autoresume_device(udev);
645daaab 250
9bbdf1e0
AS
251 if (!error)
252 error = udriver->probe(udev);
8bb54ab5
AS
253 return error;
254}
255
256/* called from driver core with dev locked */
257static int usb_unbind_device(struct device *dev)
258{
9bbdf1e0 259 struct usb_device *udev = to_usb_device(dev);
8bb54ab5
AS
260 struct usb_device_driver *udriver = to_usb_device_driver(dev->driver);
261
9bbdf1e0
AS
262 udriver->disconnect(udev);
263 if (!udriver->supports_autosuspend)
264 usb_autosuspend_device(udev);
8bb54ab5
AS
265 return 0;
266}
267
dc023dce
IPG
268/*
269 * Cancel any pending scheduled resets
270 *
271 * [see usb_queue_reset_device()]
272 *
273 * Called after unconfiguring / when releasing interfaces. See
274 * comments in __usb_queue_reset_device() regarding
275 * udev->reset_running.
276 */
277static void usb_cancel_queued_reset(struct usb_interface *iface)
278{
279 if (iface->reset_running == 0)
280 cancel_work_sync(&iface->reset_ws);
281}
8bb54ab5
AS
282
283/* called from driver core with dev locked */
ddae41be
GKH
284static int usb_probe_interface(struct device *dev)
285{
8bb54ab5 286 struct usb_driver *driver = to_usb_driver(dev->driver);
55129666
KS
287 struct usb_interface *intf = to_usb_interface(dev);
288 struct usb_device *udev = interface_to_usbdev(intf);
ddae41be
GKH
289 const struct usb_device_id *id;
290 int error = -ENODEV;
8306095f 291 int lpm_disable_error;
ddae41be 292
441b62c1 293 dev_dbg(dev, "%s\n", __func__);
ddae41be 294
78d9a487 295 intf->needs_binding = 0;
ddae41be 296
7cbe5dca 297 if (usb_device_is_owned(udev))
0f3dda9f 298 return error;
7cbe5dca 299
2c044a48
GKH
300 if (udev->authorized == 0) {
301 dev_err(&intf->dev, "Device is not authorized for usage\n");
0f3dda9f 302 return error;
2c044a48 303 }
72230abb 304
ddae41be 305 id = usb_match_id(intf, driver->id_table);
733260ff
GKH
306 if (!id)
307 id = usb_match_dynamic_id(intf, driver);
0f3dda9f
AS
308 if (!id)
309 return error;
55151d7d 310
0f3dda9f
AS
311 dev_dbg(dev, "%s - got id\n", __func__);
312
313 error = usb_autoresume_device(udev);
314 if (error)
315 return error;
316
0f3dda9f 317 intf->condition = USB_INTERFACE_BINDING;
645daaab 318
571dc79d 319 /* Probed interfaces are initially active. They are
9bbdf1e0
AS
320 * runtime-PM-enabled only if the driver has autosuspend support.
321 * They are sensitive to their children's power states.
0f3dda9f 322 */
9bbdf1e0
AS
323 pm_runtime_set_active(dev);
324 pm_suspend_ignore_children(dev, false);
325 if (driver->supports_autosuspend)
326 pm_runtime_enable(dev);
0f3dda9f 327
8306095f
SS
328 /* If the new driver doesn't allow hub-initiated LPM, and we can't
329 * disable hub-initiated LPM, then fail the probe.
330 *
331 * Otherwise, leaving LPM enabled should be harmless, because the
332 * endpoint intervals should remain the same, and the U1/U2 timeouts
333 * should remain the same.
334 *
335 * If we need to install alt setting 0 before probe, or another alt
336 * setting during probe, that should also be fine. usb_set_interface()
337 * will attempt to disable LPM, and fail if it can't disable it.
338 */
339 lpm_disable_error = usb_unlocked_disable_lpm(udev);
340 if (lpm_disable_error && driver->disable_hub_initiated_lpm) {
341 dev_err(&intf->dev, "%s Failed to disable LPM for driver %s\n.",
342 __func__, driver->name);
343 error = lpm_disable_error;
344 goto err;
345 }
346
0f3dda9f
AS
347 /* Carry out a deferred switch to altsetting 0 */
348 if (intf->needs_altsetting0) {
349 error = usb_set_interface(udev, intf->altsetting[0].
350 desc.bInterfaceNumber, 0);
351 if (error < 0)
352 goto err;
353 intf->needs_altsetting0 = 0;
ddae41be
GKH
354 }
355
0f3dda9f
AS
356 error = driver->probe(intf, id);
357 if (error)
358 goto err;
359
360 intf->condition = USB_INTERFACE_BOUND;
8306095f
SS
361
362 /* If the LPM disable succeeded, balance the ref counts. */
363 if (!lpm_disable_error)
364 usb_unlocked_enable_lpm(udev);
365
0f3dda9f 366 usb_autosuspend_device(udev);
ddae41be 367 return error;
1e5ea5e3 368
0f3dda9f 369 err:
e714fad0 370 usb_set_intfdata(intf, NULL);
1e5ea5e3
ON
371 intf->needs_remote_wakeup = 0;
372 intf->condition = USB_INTERFACE_UNBOUND;
373 usb_cancel_queued_reset(intf);
9bbdf1e0
AS
374
375 /* Unbound interfaces are always runtime-PM-disabled and -suspended */
89842ae6
AS
376 if (driver->supports_autosuspend)
377 pm_runtime_disable(dev);
9bbdf1e0
AS
378 pm_runtime_set_suspended(dev);
379
1e5ea5e3
ON
380 usb_autosuspend_device(udev);
381 return error;
ddae41be
GKH
382}
383
8bb54ab5 384/* called from driver core with dev locked */
ddae41be
GKH
385static int usb_unbind_interface(struct device *dev)
386{
8bb54ab5 387 struct usb_driver *driver = to_usb_driver(dev->driver);
ddae41be 388 struct usb_interface *intf = to_usb_interface(dev);
645daaab 389 struct usb_device *udev;
8306095f 390 int error, r, lpm_disable_error;
ddae41be
GKH
391
392 intf->condition = USB_INTERFACE_UNBINDING;
393
645daaab
AS
394 /* Autoresume for set_interface call below */
395 udev = interface_to_usbdev(intf);
94fcda1f 396 error = usb_autoresume_device(udev);
645daaab 397
8306095f
SS
398 /* Hub-initiated LPM policy may change, so attempt to disable LPM until
399 * the driver is unbound. If LPM isn't disabled, that's fine because it
400 * wouldn't be enabled unless all the bound interfaces supported
401 * hub-initiated LPM.
402 */
403 lpm_disable_error = usb_unlocked_disable_lpm(udev);
404
9da82bd4
AS
405 /* Terminate all URBs for this interface unless the driver
406 * supports "soft" unbinding.
407 */
408 if (!driver->soft_unbind)
ddeac4e7 409 usb_disable_interface(udev, intf, false);
ddae41be 410
8bb54ab5 411 driver->disconnect(intf);
dc023dce 412 usb_cancel_queued_reset(intf);
ddae41be 413
55151d7d
AS
414 /* Reset other interface state.
415 * We cannot do a Set-Interface if the device is suspended or
416 * if it is prepared for a system sleep (since installing a new
417 * altsetting means creating new endpoint device entries).
418 * When either of these happens, defer the Set-Interface.
419 */
2caf7fcd
AS
420 if (intf->cur_altsetting->desc.bAlternateSetting == 0) {
421 /* Already in altsetting 0 so skip Set-Interface.
422 * Just re-enable it without affecting the endpoint toggles.
423 */
424 usb_enable_interface(udev, intf, false);
f76b168b 425 } else if (!error && !intf->dev.power.is_prepared) {
1e5ea5e3 426 r = usb_set_interface(udev, intf->altsetting[0].
55151d7d 427 desc.bInterfaceNumber, 0);
1e5ea5e3
ON
428 if (r < 0)
429 intf->needs_altsetting0 = 1;
430 } else {
55151d7d 431 intf->needs_altsetting0 = 1;
1e5ea5e3 432 }
ddae41be 433 usb_set_intfdata(intf, NULL);
645daaab 434
ddae41be 435 intf->condition = USB_INTERFACE_UNBOUND;
645daaab
AS
436 intf->needs_remote_wakeup = 0;
437
8306095f
SS
438 /* Attempt to re-enable USB3 LPM, if the disable succeeded. */
439 if (!lpm_disable_error)
440 usb_unlocked_enable_lpm(udev);
441
9bbdf1e0 442 /* Unbound interfaces are always runtime-PM-disabled and -suspended */
89842ae6
AS
443 if (driver->supports_autosuspend)
444 pm_runtime_disable(dev);
9bbdf1e0
AS
445 pm_runtime_set_suspended(dev);
446
447 /* Undo any residual pm_autopm_get_interface_* calls */
448 for (r = atomic_read(&intf->pm_usage_cnt); r > 0; --r)
449 usb_autopm_put_interface_no_suspend(intf);
450 atomic_set(&intf->pm_usage_cnt, 0);
451
645daaab 452 if (!error)
94fcda1f 453 usb_autosuspend_device(udev);
ddae41be
GKH
454
455 return 0;
456}
457
36e56a34
AS
458/**
459 * usb_driver_claim_interface - bind a driver to an interface
460 * @driver: the driver to be bound
461 * @iface: the interface to which it will be bound; must be in the
462 * usb device's active configuration
463 * @priv: driver data associated with that interface
464 *
465 * This is used by usb device drivers that need to claim more than one
466 * interface on a device when probing (audio and acm are current examples).
467 * No device driver should directly modify internal usb_interface or
468 * usb_device structure members.
469 *
470 * Few drivers should need to use this routine, since the most natural
471 * way to bind to an interface is to return the private data from
472 * the driver's probe() method.
473 *
341487a8
GKH
474 * Callers must own the device lock, so driver probe() entries don't need
475 * extra locking, but other call contexts may need to explicitly claim that
476 * lock.
36e56a34
AS
477 */
478int usb_driver_claim_interface(struct usb_driver *driver,
2c044a48 479 struct usb_interface *iface, void *priv)
36e56a34
AS
480{
481 struct device *dev = &iface->dev;
8306095f 482 struct usb_device *udev;
1b21d5e1 483 int retval = 0;
8306095f 484 int lpm_disable_error;
36e56a34
AS
485
486 if (dev->driver)
487 return -EBUSY;
488
8306095f
SS
489 udev = interface_to_usbdev(iface);
490
8bb54ab5 491 dev->driver = &driver->drvwrap.driver;
36e56a34 492 usb_set_intfdata(iface, priv);
78d9a487 493 iface->needs_binding = 0;
645daaab 494
36e56a34 495 iface->condition = USB_INTERFACE_BOUND;
9bbdf1e0 496
8306095f
SS
497 /* Disable LPM until this driver is bound. */
498 lpm_disable_error = usb_unlocked_disable_lpm(udev);
499 if (lpm_disable_error && driver->disable_hub_initiated_lpm) {
500 dev_err(&iface->dev, "%s Failed to disable LPM for driver %s\n.",
501 __func__, driver->name);
502 return -ENOMEM;
503 }
504
89842ae6
AS
505 /* Claimed interfaces are initially inactive (suspended) and
506 * runtime-PM-enabled, but only if the driver has autosuspend
507 * support. Otherwise they are marked active, to prevent the
508 * device from being autosuspended, but left disabled. In either
509 * case they are sensitive to their children's power states.
9bbdf1e0 510 */
9bbdf1e0
AS
511 pm_suspend_ignore_children(dev, false);
512 if (driver->supports_autosuspend)
513 pm_runtime_enable(dev);
89842ae6
AS
514 else
515 pm_runtime_set_active(dev);
36e56a34
AS
516
517 /* if interface was already added, bind now; else let
518 * the future device_add() bind it, bypassing probe()
519 */
520 if (device_is_registered(dev))
1b21d5e1 521 retval = device_bind_driver(dev);
36e56a34 522
8306095f
SS
523 /* Attempt to re-enable USB3 LPM, if the disable was successful. */
524 if (!lpm_disable_error)
525 usb_unlocked_enable_lpm(udev);
526
1b21d5e1 527 return retval;
36e56a34 528}
782e70c6 529EXPORT_SYMBOL_GPL(usb_driver_claim_interface);
36e56a34
AS
530
531/**
532 * usb_driver_release_interface - unbind a driver from an interface
533 * @driver: the driver to be unbound
534 * @iface: the interface from which it will be unbound
535 *
536 * This can be used by drivers to release an interface without waiting
537 * for their disconnect() methods to be called. In typical cases this
538 * also causes the driver disconnect() method to be called.
539 *
540 * This call is synchronous, and may not be used in an interrupt context.
341487a8
GKH
541 * Callers must own the device lock, so driver disconnect() entries don't
542 * need extra locking, but other call contexts may need to explicitly claim
543 * that lock.
36e56a34
AS
544 */
545void usb_driver_release_interface(struct usb_driver *driver,
546 struct usb_interface *iface)
547{
548 struct device *dev = &iface->dev;
549
550 /* this should never happen, don't release something that's not ours */
8bb54ab5 551 if (!dev->driver || dev->driver != &driver->drvwrap.driver)
36e56a34
AS
552 return;
553
554 /* don't release from within disconnect() */
555 if (iface->condition != USB_INTERFACE_BOUND)
556 return;
91f8d063 557 iface->condition = USB_INTERFACE_UNBINDING;
36e56a34 558
91f8d063
AS
559 /* Release via the driver core only if the interface
560 * has already been registered
561 */
36e56a34 562 if (device_is_registered(dev)) {
36e56a34 563 device_release_driver(dev);
dc023dce 564 } else {
8e9394ce 565 device_lock(dev);
91f8d063
AS
566 usb_unbind_interface(dev);
567 dev->driver = NULL;
8e9394ce 568 device_unlock(dev);
36e56a34 569 }
36e56a34 570}
782e70c6 571EXPORT_SYMBOL_GPL(usb_driver_release_interface);
36e56a34 572
733260ff 573/* returns 0 if no match, 1 if match */
bb417020 574int usb_match_device(struct usb_device *dev, const struct usb_device_id *id)
733260ff 575{
733260ff
GKH
576 if ((id->match_flags & USB_DEVICE_ID_MATCH_VENDOR) &&
577 id->idVendor != le16_to_cpu(dev->descriptor.idVendor))
578 return 0;
579
580 if ((id->match_flags & USB_DEVICE_ID_MATCH_PRODUCT) &&
581 id->idProduct != le16_to_cpu(dev->descriptor.idProduct))
582 return 0;
583
584 /* No need to test id->bcdDevice_lo != 0, since 0 is never
585 greater than any unsigned number. */
586 if ((id->match_flags & USB_DEVICE_ID_MATCH_DEV_LO) &&
587 (id->bcdDevice_lo > le16_to_cpu(dev->descriptor.bcdDevice)))
588 return 0;
589
590 if ((id->match_flags & USB_DEVICE_ID_MATCH_DEV_HI) &&
591 (id->bcdDevice_hi < le16_to_cpu(dev->descriptor.bcdDevice)))
592 return 0;
593
594 if ((id->match_flags & USB_DEVICE_ID_MATCH_DEV_CLASS) &&
595 (id->bDeviceClass != dev->descriptor.bDeviceClass))
596 return 0;
597
598 if ((id->match_flags & USB_DEVICE_ID_MATCH_DEV_SUBCLASS) &&
2c044a48 599 (id->bDeviceSubClass != dev->descriptor.bDeviceSubClass))
733260ff
GKH
600 return 0;
601
602 if ((id->match_flags & USB_DEVICE_ID_MATCH_DEV_PROTOCOL) &&
603 (id->bDeviceProtocol != dev->descriptor.bDeviceProtocol))
604 return 0;
605
bb417020
GKH
606 return 1;
607}
608
609/* returns 0 if no match, 1 if match */
610int usb_match_one_id(struct usb_interface *interface,
611 const struct usb_device_id *id)
612{
613 struct usb_host_interface *intf;
614 struct usb_device *dev;
615
616 /* proc_connectinfo in devio.c may call us with id == NULL. */
617 if (id == NULL)
618 return 0;
619
620 intf = interface->cur_altsetting;
621 dev = interface_to_usbdev(interface);
622
623 if (!usb_match_device(dev, id))
624 return 0;
625
81df2d59 626 /* The interface class, subclass, protocol and number should never be
93c8bf45
AS
627 * checked for a match if the device class is Vendor Specific,
628 * unless the match record specifies the Vendor ID. */
629 if (dev->descriptor.bDeviceClass == USB_CLASS_VENDOR_SPEC &&
630 !(id->match_flags & USB_DEVICE_ID_MATCH_VENDOR) &&
631 (id->match_flags & (USB_DEVICE_ID_MATCH_INT_CLASS |
632 USB_DEVICE_ID_MATCH_INT_SUBCLASS |
81df2d59
BM
633 USB_DEVICE_ID_MATCH_INT_PROTOCOL |
634 USB_DEVICE_ID_MATCH_INT_NUMBER)))
93c8bf45
AS
635 return 0;
636
733260ff
GKH
637 if ((id->match_flags & USB_DEVICE_ID_MATCH_INT_CLASS) &&
638 (id->bInterfaceClass != intf->desc.bInterfaceClass))
639 return 0;
640
641 if ((id->match_flags & USB_DEVICE_ID_MATCH_INT_SUBCLASS) &&
642 (id->bInterfaceSubClass != intf->desc.bInterfaceSubClass))
643 return 0;
644
645 if ((id->match_flags & USB_DEVICE_ID_MATCH_INT_PROTOCOL) &&
646 (id->bInterfaceProtocol != intf->desc.bInterfaceProtocol))
647 return 0;
648
81df2d59
BM
649 if ((id->match_flags & USB_DEVICE_ID_MATCH_INT_NUMBER) &&
650 (id->bInterfaceNumber != intf->desc.bInterfaceNumber))
651 return 0;
652
733260ff
GKH
653 return 1;
654}
93bacefc
GKH
655EXPORT_SYMBOL_GPL(usb_match_one_id);
656
ddae41be
GKH
657/**
658 * usb_match_id - find first usb_device_id matching device or interface
659 * @interface: the interface of interest
660 * @id: array of usb_device_id structures, terminated by zero entry
661 *
662 * usb_match_id searches an array of usb_device_id's and returns
663 * the first one matching the device or interface, or null.
664 * This is used when binding (or rebinding) a driver to an interface.
665 * Most USB device drivers will use this indirectly, through the usb core,
666 * but some layered driver frameworks use it directly.
667 * These device tables are exported with MODULE_DEVICE_TABLE, through
668 * modutils, to support the driver loading functionality of USB hotplugging.
669 *
670 * What Matches:
671 *
672 * The "match_flags" element in a usb_device_id controls which
673 * members are used. If the corresponding bit is set, the
674 * value in the device_id must match its corresponding member
675 * in the device or interface descriptor, or else the device_id
676 * does not match.
677 *
678 * "driver_info" is normally used only by device drivers,
679 * but you can create a wildcard "matches anything" usb_device_id
680 * as a driver's "modules.usbmap" entry if you provide an id with
681 * only a nonzero "driver_info" field. If you do this, the USB device
682 * driver's probe() routine should use additional intelligence to
683 * decide whether to bind to the specified interface.
684 *
685 * What Makes Good usb_device_id Tables:
686 *
687 * The match algorithm is very simple, so that intelligence in
688 * driver selection must come from smart driver id records.
689 * Unless you have good reasons to use another selection policy,
690 * provide match elements only in related groups, and order match
691 * specifiers from specific to general. Use the macros provided
692 * for that purpose if you can.
693 *
694 * The most specific match specifiers use device descriptor
695 * data. These are commonly used with product-specific matches;
696 * the USB_DEVICE macro lets you provide vendor and product IDs,
697 * and you can also match against ranges of product revisions.
698 * These are widely used for devices with application or vendor
699 * specific bDeviceClass values.
700 *
701 * Matches based on device class/subclass/protocol specifications
702 * are slightly more general; use the USB_DEVICE_INFO macro, or
703 * its siblings. These are used with single-function devices
704 * where bDeviceClass doesn't specify that each interface has
705 * its own class.
706 *
707 * Matches based on interface class/subclass/protocol are the
708 * most general; they let drivers bind to any interface on a
709 * multiple-function device. Use the USB_INTERFACE_INFO
710 * macro, or its siblings, to match class-per-interface style
93c8bf45
AS
711 * devices (as recorded in bInterfaceClass).
712 *
713 * Note that an entry created by USB_INTERFACE_INFO won't match
714 * any interface if the device class is set to Vendor-Specific.
715 * This is deliberate; according to the USB spec the meanings of
716 * the interface class/subclass/protocol for these devices are also
717 * vendor-specific, and hence matching against a standard product
718 * class wouldn't work anyway. If you really want to use an
719 * interface-based match for such a device, create a match record
720 * that also specifies the vendor ID. (Unforunately there isn't a
721 * standard macro for creating records like this.)
ddae41be
GKH
722 *
723 * Within those groups, remember that not all combinations are
724 * meaningful. For example, don't give a product version range
725 * without vendor and product IDs; or specify a protocol without
726 * its associated class and subclass.
727 */
728const struct usb_device_id *usb_match_id(struct usb_interface *interface,
729 const struct usb_device_id *id)
730{
ddae41be
GKH
731 /* proc_connectinfo in devio.c may call us with id == NULL. */
732 if (id == NULL)
733 return NULL;
734
ddae41be
GKH
735 /* It is important to check that id->driver_info is nonzero,
736 since an entry that is all zeroes except for a nonzero
737 id->driver_info is the way to create an entry that
738 indicates that the driver want to examine every
739 device and interface. */
de6f92b9
GKH
740 for (; id->idVendor || id->idProduct || id->bDeviceClass ||
741 id->bInterfaceClass || id->driver_info; id++) {
733260ff
GKH
742 if (usb_match_one_id(interface, id))
743 return id;
ddae41be
GKH
744 }
745
746 return NULL;
747}
782e70c6 748EXPORT_SYMBOL_GPL(usb_match_id);
ddae41be 749
8bb22d2b 750static int usb_device_match(struct device *dev, struct device_driver *drv)
ddae41be 751{
8bb54ab5
AS
752 /* devices and interfaces are handled separately */
753 if (is_usb_device(dev)) {
ddae41be 754
8bb54ab5
AS
755 /* interface drivers never match devices */
756 if (!is_usb_device_driver(drv))
757 return 0;
ddae41be 758
8bb54ab5 759 /* TODO: Add real matching code */
ddae41be
GKH
760 return 1;
761
55129666 762 } else if (is_usb_interface(dev)) {
8bb54ab5
AS
763 struct usb_interface *intf;
764 struct usb_driver *usb_drv;
765 const struct usb_device_id *id;
766
767 /* device drivers never match interfaces */
768 if (is_usb_device_driver(drv))
769 return 0;
770
771 intf = to_usb_interface(dev);
772 usb_drv = to_usb_driver(drv);
773
774 id = usb_match_id(intf, usb_drv->id_table);
775 if (id)
776 return 1;
777
778 id = usb_match_dynamic_id(intf, usb_drv);
779 if (id)
780 return 1;
781 }
782
ddae41be
GKH
783 return 0;
784}
785
36e56a34 786#ifdef CONFIG_HOTPLUG
7eff2e7a 787static int usb_uevent(struct device *dev, struct kobj_uevent_env *env)
36e56a34 788{
36e56a34 789 struct usb_device *usb_dev;
36e56a34 790
55129666 791 if (is_usb_device(dev)) {
782da727 792 usb_dev = to_usb_device(dev);
55129666 793 } else if (is_usb_interface(dev)) {
9f8b17e6 794 struct usb_interface *intf = to_usb_interface(dev);
55129666 795
8bb54ab5 796 usb_dev = interface_to_usbdev(intf);
55129666
KS
797 } else {
798 return 0;
8bb54ab5 799 }
36e56a34
AS
800
801 if (usb_dev->devnum < 0) {
cceffe93 802 /* driver is often null here; dev_dbg() would oops */
7071a3ce 803 pr_debug("usb %s: already deleted?\n", dev_name(dev));
36e56a34
AS
804 return -ENODEV;
805 }
806 if (!usb_dev->bus) {
7071a3ce 807 pr_debug("usb %s: bus removed?\n", dev_name(dev));
36e56a34
AS
808 return -ENODEV;
809 }
810
36e56a34 811 /* per-device configurations are common */
7eff2e7a 812 if (add_uevent_var(env, "PRODUCT=%x/%x/%x",
36e56a34
AS
813 le16_to_cpu(usb_dev->descriptor.idVendor),
814 le16_to_cpu(usb_dev->descriptor.idProduct),
815 le16_to_cpu(usb_dev->descriptor.bcdDevice)))
816 return -ENOMEM;
817
818 /* class-based driver binding models */
7eff2e7a 819 if (add_uevent_var(env, "TYPE=%d/%d/%d",
36e56a34
AS
820 usb_dev->descriptor.bDeviceClass,
821 usb_dev->descriptor.bDeviceSubClass,
822 usb_dev->descriptor.bDeviceProtocol))
823 return -ENOMEM;
824
36e56a34
AS
825 return 0;
826}
827
828#else
829
7eff2e7a 830static int usb_uevent(struct device *dev, struct kobj_uevent_env *env)
36e56a34
AS
831{
832 return -ENODEV;
833}
36e56a34
AS
834#endif /* CONFIG_HOTPLUG */
835
ddae41be 836/**
8bb54ab5
AS
837 * usb_register_device_driver - register a USB device (not interface) driver
838 * @new_udriver: USB operations for the device driver
2143acc6 839 * @owner: module owner of this driver.
ddae41be 840 *
8bb54ab5
AS
841 * Registers a USB device driver with the USB core. The list of
842 * unattached devices will be rescanned whenever a new driver is
843 * added, allowing the new driver to attach to any recognized devices.
844 * Returns a negative error code on failure and 0 on success.
845 */
846int usb_register_device_driver(struct usb_device_driver *new_udriver,
847 struct module *owner)
848{
849 int retval = 0;
850
851 if (usb_disabled())
852 return -ENODEV;
853
854 new_udriver->drvwrap.for_devices = 1;
855 new_udriver->drvwrap.driver.name = (char *) new_udriver->name;
856 new_udriver->drvwrap.driver.bus = &usb_bus_type;
857 new_udriver->drvwrap.driver.probe = usb_probe_device;
858 new_udriver->drvwrap.driver.remove = usb_unbind_device;
859 new_udriver->drvwrap.driver.owner = owner;
860
861 retval = driver_register(&new_udriver->drvwrap.driver);
862
fb28d58b 863 if (!retval)
8bb54ab5
AS
864 pr_info("%s: registered new device driver %s\n",
865 usbcore_name, new_udriver->name);
fb28d58b 866 else
8bb54ab5
AS
867 printk(KERN_ERR "%s: error %d registering device "
868 " driver %s\n",
869 usbcore_name, retval, new_udriver->name);
8bb54ab5
AS
870
871 return retval;
872}
873EXPORT_SYMBOL_GPL(usb_register_device_driver);
874
875/**
876 * usb_deregister_device_driver - unregister a USB device (not interface) driver
877 * @udriver: USB operations of the device driver to unregister
878 * Context: must be able to sleep
879 *
880 * Unlinks the specified driver from the internal USB driver list.
881 */
882void usb_deregister_device_driver(struct usb_device_driver *udriver)
883{
884 pr_info("%s: deregistering device driver %s\n",
885 usbcore_name, udriver->name);
886
887 driver_unregister(&udriver->drvwrap.driver);
8bb54ab5
AS
888}
889EXPORT_SYMBOL_GPL(usb_deregister_device_driver);
890
891/**
892 * usb_register_driver - register a USB interface driver
893 * @new_driver: USB operations for the interface driver
894 * @owner: module owner of this driver.
892705a1 895 * @mod_name: module name string
8bb54ab5
AS
896 *
897 * Registers a USB interface driver with the USB core. The list of
898 * unattached interfaces will be rescanned whenever a new driver is
899 * added, allowing the new driver to attach to any recognized interfaces.
ddae41be
GKH
900 * Returns a negative error code on failure and 0 on success.
901 *
902 * NOTE: if you want your driver to use the USB major number, you must call
903 * usb_register_dev() to enable that functionality. This function no longer
904 * takes care of that.
905 */
80f745fb
GKH
906int usb_register_driver(struct usb_driver *new_driver, struct module *owner,
907 const char *mod_name)
ddae41be
GKH
908{
909 int retval = 0;
910
911 if (usb_disabled())
912 return -ENODEV;
913
8bb54ab5
AS
914 new_driver->drvwrap.for_devices = 0;
915 new_driver->drvwrap.driver.name = (char *) new_driver->name;
916 new_driver->drvwrap.driver.bus = &usb_bus_type;
917 new_driver->drvwrap.driver.probe = usb_probe_interface;
918 new_driver->drvwrap.driver.remove = usb_unbind_interface;
919 new_driver->drvwrap.driver.owner = owner;
80f745fb 920 new_driver->drvwrap.driver.mod_name = mod_name;
733260ff
GKH
921 spin_lock_init(&new_driver->dynids.lock);
922 INIT_LIST_HEAD(&new_driver->dynids.list);
ddae41be 923
8bb54ab5 924 retval = driver_register(&new_driver->drvwrap.driver);
0c7a2b72
CR
925 if (retval)
926 goto out;
ddae41be 927
ed283e9f 928 retval = usb_create_newid_files(new_driver);
0c7a2b72
CR
929 if (retval)
930 goto out_newid;
931
0c7a2b72 932 pr_info("%s: registered new interface driver %s\n",
ddae41be 933 usbcore_name, new_driver->name);
ddae41be 934
0c7a2b72 935out:
ddae41be 936 return retval;
0c7a2b72 937
0c7a2b72
CR
938out_newid:
939 driver_unregister(&new_driver->drvwrap.driver);
940
941 printk(KERN_ERR "%s: error %d registering interface "
942 " driver %s\n",
943 usbcore_name, retval, new_driver->name);
944 goto out;
ddae41be 945}
782e70c6 946EXPORT_SYMBOL_GPL(usb_register_driver);
ddae41be
GKH
947
948/**
8bb54ab5
AS
949 * usb_deregister - unregister a USB interface driver
950 * @driver: USB operations of the interface driver to unregister
ddae41be
GKH
951 * Context: must be able to sleep
952 *
953 * Unlinks the specified driver from the internal USB driver list.
954 *
955 * NOTE: If you called usb_register_dev(), you still need to call
956 * usb_deregister_dev() to clean up your driver's allocated minor numbers,
957 * this * call will no longer do it for you.
958 */
959void usb_deregister(struct usb_driver *driver)
960{
8bb54ab5
AS
961 pr_info("%s: deregistering interface driver %s\n",
962 usbcore_name, driver->name);
ddae41be 963
ed283e9f 964 usb_remove_newid_files(driver);
8bb54ab5 965 driver_unregister(&driver->drvwrap.driver);
ed283e9f 966 usb_free_dynids(driver);
ddae41be 967}
782e70c6 968EXPORT_SYMBOL_GPL(usb_deregister);
36e56a34 969
78d9a487
AS
970/* Forced unbinding of a USB interface driver, either because
971 * it doesn't support pre_reset/post_reset/reset_resume or
972 * because it doesn't support suspend/resume.
973 *
974 * The caller must hold @intf's device's lock, but not its pm_mutex
975 * and not @intf->dev.sem.
976 */
977void usb_forced_unbind_intf(struct usb_interface *intf)
978{
979 struct usb_driver *driver = to_usb_driver(intf->dev.driver);
980
981 dev_dbg(&intf->dev, "forced unbind\n");
982 usb_driver_release_interface(driver, intf);
983
984 /* Mark the interface for later rebinding */
985 intf->needs_binding = 1;
986}
987
988/* Delayed forced unbinding of a USB interface driver and scan
989 * for rebinding.
990 *
991 * The caller must hold @intf's device's lock, but not its pm_mutex
992 * and not @intf->dev.sem.
993 *
5096aedc
AS
994 * Note: Rebinds will be skipped if a system sleep transition is in
995 * progress and the PM "complete" callback hasn't occurred yet.
78d9a487
AS
996 */
997void usb_rebind_intf(struct usb_interface *intf)
998{
999 int rc;
1000
1001 /* Delayed unbind of an existing driver */
1493138a
ON
1002 if (intf->dev.driver)
1003 usb_forced_unbind_intf(intf);
78d9a487
AS
1004
1005 /* Try to rebind the interface */
f76b168b 1006 if (!intf->dev.power.is_prepared) {
5096aedc
AS
1007 intf->needs_binding = 0;
1008 rc = device_attach(&intf->dev);
1009 if (rc < 0)
1010 dev_warn(&intf->dev, "rebind failed: %d\n", rc);
1011 }
78d9a487
AS
1012}
1013
9ff78433
AS
1014#ifdef CONFIG_PM
1015
1493138a
ON
1016/* Unbind drivers for @udev's interfaces that don't support suspend/resume
1017 * There is no check for reset_resume here because it can be determined
1018 * only during resume whether reset_resume is needed.
78d9a487
AS
1019 *
1020 * The caller must hold @udev's device lock.
78d9a487 1021 */
1493138a 1022static void unbind_no_pm_drivers_interfaces(struct usb_device *udev)
78d9a487
AS
1023{
1024 struct usb_host_config *config;
1025 int i;
1026 struct usb_interface *intf;
1027 struct usb_driver *drv;
1028
1029 config = udev->actconfig;
1030 if (config) {
1031 for (i = 0; i < config->desc.bNumInterfaces; ++i) {
1032 intf = config->interface[i];
1493138a
ON
1033
1034 if (intf->dev.driver) {
1035 drv = to_usb_driver(intf->dev.driver);
1036 if (!drv->suspend || !drv->resume)
1037 usb_forced_unbind_intf(intf);
78d9a487
AS
1038 }
1039 }
1040 }
1041}
1042
1493138a
ON
1043/* Unbind drivers for @udev's interfaces that failed to support reset-resume.
1044 * These interfaces have the needs_binding flag set by usb_resume_interface().
1045 *
1046 * The caller must hold @udev's device lock.
1047 */
1048static void unbind_no_reset_resume_drivers_interfaces(struct usb_device *udev)
1049{
1050 struct usb_host_config *config;
1051 int i;
1052 struct usb_interface *intf;
1053
1054 config = udev->actconfig;
1055 if (config) {
1056 for (i = 0; i < config->desc.bNumInterfaces; ++i) {
1057 intf = config->interface[i];
1058 if (intf->dev.driver && intf->needs_binding)
1059 usb_forced_unbind_intf(intf);
1060 }
1061 }
1062}
1063
1064static void do_rebind_interfaces(struct usb_device *udev)
1065{
1066 struct usb_host_config *config;
1067 int i;
1068 struct usb_interface *intf;
1069
1070 config = udev->actconfig;
1071 if (config) {
1072 for (i = 0; i < config->desc.bNumInterfaces; ++i) {
1073 intf = config->interface[i];
1074 if (intf->needs_binding)
1075 usb_rebind_intf(intf);
1076 }
1077 }
1078}
1079
d5ec1686 1080static int usb_suspend_device(struct usb_device *udev, pm_message_t msg)
36e56a34 1081{
782da727 1082 struct usb_device_driver *udriver;
2bf4086d 1083 int status = 0;
36e56a34 1084
114b368c
AS
1085 if (udev->state == USB_STATE_NOTATTACHED ||
1086 udev->state == USB_STATE_SUSPENDED)
1087 goto done;
1088
b6f6436d
AS
1089 /* For devices that don't have a driver, we do a generic suspend. */
1090 if (udev->dev.driver)
1091 udriver = to_usb_device_driver(udev->dev.driver);
1092 else {
645daaab 1093 udev->do_remote_wakeup = 0;
b6f6436d 1094 udriver = &usb_generic_driver;
1c5df7e7 1095 }
2bf4086d
AS
1096 status = udriver->suspend(udev, msg);
1097
20dfdad7 1098 done:
441b62c1 1099 dev_vdbg(&udev->dev, "%s: status %d\n", __func__, status);
2bf4086d 1100 return status;
1cc8a25d
AS
1101}
1102
65bfd296 1103static int usb_resume_device(struct usb_device *udev, pm_message_t msg)
1cc8a25d
AS
1104{
1105 struct usb_device_driver *udriver;
2bf4086d 1106 int status = 0;
36e56a34 1107
0458d5b4
AS
1108 if (udev->state == USB_STATE_NOTATTACHED)
1109 goto done;
1cc8a25d 1110
1c5df7e7
AS
1111 /* Can't resume it if it doesn't have a driver. */
1112 if (udev->dev.driver == NULL) {
1113 status = -ENOTCONN;
2bf4086d 1114 goto done;
1c5df7e7
AS
1115 }
1116
6d19c009
AS
1117 /* Non-root devices on a full/low-speed bus must wait for their
1118 * companion high-speed root hub, in case a handoff is needed.
1119 */
5b1b0b81 1120 if (!PMSG_IS_AUTO(msg) && udev->parent && udev->bus->hs_companion)
6d19c009
AS
1121 device_pm_wait_for_dev(&udev->dev,
1122 &udev->bus->hs_companion->root_hub->dev);
1123
6bc6cff5
AS
1124 if (udev->quirks & USB_QUIRK_RESET_RESUME)
1125 udev->reset_resume = 1;
1126
1cc8a25d 1127 udriver = to_usb_device_driver(udev->dev.driver);
65bfd296 1128 status = udriver->resume(udev, msg);
2bf4086d 1129
20dfdad7 1130 done:
441b62c1 1131 dev_vdbg(&udev->dev, "%s: status %d\n", __func__, status);
2bf4086d 1132 return status;
1cc8a25d
AS
1133}
1134
65605ae8
AS
1135static int usb_suspend_interface(struct usb_device *udev,
1136 struct usb_interface *intf, pm_message_t msg)
1cc8a25d
AS
1137{
1138 struct usb_driver *driver;
2bf4086d 1139 int status = 0;
1cc8a25d 1140
9bbdf1e0
AS
1141 if (udev->state == USB_STATE_NOTATTACHED ||
1142 intf->condition == USB_INTERFACE_UNBOUND)
2bf4086d 1143 goto done;
114b368c 1144 driver = to_usb_driver(intf->dev.driver);
36e56a34 1145
e78832cd
ON
1146 /* at this time we know the driver supports suspend */
1147 status = driver->suspend(intf, msg);
1148 if (status && !PMSG_IS_AUTO(msg))
1149 dev_err(&intf->dev, "suspend error %d\n", status);
2bf4086d 1150
20dfdad7 1151 done:
441b62c1 1152 dev_vdbg(&intf->dev, "%s: status %d\n", __func__, status);
36e56a34
AS
1153 return status;
1154}
1155
65605ae8 1156static int usb_resume_interface(struct usb_device *udev,
65bfd296 1157 struct usb_interface *intf, pm_message_t msg, int reset_resume)
36e56a34 1158{
1cc8a25d 1159 struct usb_driver *driver;
2bf4086d 1160 int status = 0;
36e56a34 1161
9bbdf1e0 1162 if (udev->state == USB_STATE_NOTATTACHED)
2bf4086d 1163 goto done;
36e56a34 1164
645daaab
AS
1165 /* Don't let autoresume interfere with unbinding */
1166 if (intf->condition == USB_INTERFACE_UNBINDING)
1167 goto done;
1168
1c5df7e7 1169 /* Can't resume it if it doesn't have a driver. */
55151d7d
AS
1170 if (intf->condition == USB_INTERFACE_UNBOUND) {
1171
1172 /* Carry out a deferred switch to altsetting 0 */
f76b168b 1173 if (intf->needs_altsetting0 && !intf->dev.power.is_prepared) {
55151d7d
AS
1174 usb_set_interface(udev, intf->altsetting[0].
1175 desc.bInterfaceNumber, 0);
1176 intf->needs_altsetting0 = 0;
1177 }
78d9a487 1178 goto done;
55151d7d 1179 }
78d9a487
AS
1180
1181 /* Don't resume if the interface is marked for rebinding */
1182 if (intf->needs_binding)
2bf4086d 1183 goto done;
1cc8a25d 1184 driver = to_usb_driver(intf->dev.driver);
36e56a34 1185
f07600cf
AS
1186 if (reset_resume) {
1187 if (driver->reset_resume) {
1188 status = driver->reset_resume(intf);
1189 if (status)
1190 dev_err(&intf->dev, "%s error %d\n",
1191 "reset_resume", status);
1192 } else {
78d9a487 1193 intf->needs_binding = 1;
f07600cf
AS
1194 dev_warn(&intf->dev, "no %s for driver %s?\n",
1195 "reset_resume", driver->name);
1196 }
1197 } else {
e78832cd
ON
1198 status = driver->resume(intf);
1199 if (status)
1200 dev_err(&intf->dev, "resume error %d\n", status);
f07600cf 1201 }
2bf4086d
AS
1202
1203done:
441b62c1 1204 dev_vdbg(&intf->dev, "%s: status %d\n", __func__, status);
f07600cf 1205
78d9a487 1206 /* Later we will unbind the driver and/or reprobe, if necessary */
2bf4086d 1207 return status;
36e56a34
AS
1208}
1209
645daaab
AS
1210/**
1211 * usb_suspend_both - suspend a USB device and its interfaces
1212 * @udev: the usb_device to suspend
1213 * @msg: Power Management message describing this state transition
1214 *
1215 * This is the central routine for suspending USB devices. It calls the
1216 * suspend methods for all the interface drivers in @udev and then calls
1217 * the suspend method for @udev itself. If an error occurs at any stage,
1218 * all the interfaces which were suspended are resumed so that they remain
1219 * in the same state as the device.
1220 *
9bbdf1e0
AS
1221 * Autosuspend requests originating from a child device or an interface
1222 * driver may be made without the protection of @udev's device lock, but
1223 * all other suspend calls will hold the lock. Usbcore will insure that
1224 * method calls do not arrive during bind, unbind, or reset operations.
1225 * However drivers must be prepared to handle suspend calls arriving at
1226 * unpredictable times.
645daaab
AS
1227 *
1228 * This routine can run only in process context.
1229 */
718efa64 1230static int usb_suspend_both(struct usb_device *udev, pm_message_t msg)
a8e7c565
AS
1231{
1232 int status = 0;
571dc79d 1233 int i = 0, n = 0;
a8e7c565 1234 struct usb_interface *intf;
645daaab 1235
1941044a
AS
1236 if (udev->state == USB_STATE_NOTATTACHED ||
1237 udev->state == USB_STATE_SUSPENDED)
1238 goto done;
a8e7c565 1239
645daaab 1240 /* Suspend all the interfaces and then udev itself */
a8e7c565 1241 if (udev->actconfig) {
571dc79d
AS
1242 n = udev->actconfig->desc.bNumInterfaces;
1243 for (i = n - 1; i >= 0; --i) {
a8e7c565 1244 intf = udev->actconfig->interface[i];
65605ae8 1245 status = usb_suspend_interface(udev, intf, msg);
0af212ba
AS
1246
1247 /* Ignore errors during system sleep transitions */
5b1b0b81 1248 if (!PMSG_IS_AUTO(msg))
0af212ba 1249 status = 0;
a8e7c565
AS
1250 if (status != 0)
1251 break;
1252 }
1253 }
0af212ba 1254 if (status == 0) {
d5ec1686 1255 status = usb_suspend_device(udev, msg);
a8e7c565 1256
cd4376e2
AS
1257 /*
1258 * Ignore errors from non-root-hub devices during
1259 * system sleep transitions. For the most part,
1260 * these devices should go to low power anyway when
1261 * the entire bus is suspended.
1262 */
1263 if (udev->parent && !PMSG_IS_AUTO(msg))
0af212ba
AS
1264 status = 0;
1265 }
1266
a8e7c565
AS
1267 /* If the suspend failed, resume interfaces that did get suspended */
1268 if (status != 0) {
9bbdf1e0 1269 msg.event ^= (PM_EVENT_SUSPEND | PM_EVENT_RESUME);
571dc79d 1270 while (++i < n) {
a8e7c565 1271 intf = udev->actconfig->interface[i];
9bbdf1e0 1272 usb_resume_interface(udev, intf, msg, 0);
a8e7c565 1273 }
645daaab 1274
9bbdf1e0
AS
1275 /* If the suspend succeeded then prevent any more URB submissions
1276 * and flush any outstanding URBs.
6840d255 1277 */
ef7f6c70 1278 } else {
6840d255
AS
1279 udev->can_submit = 0;
1280 for (i = 0; i < 16; ++i) {
1281 usb_hcd_flush_endpoint(udev, udev->ep_out[i]);
1282 usb_hcd_flush_endpoint(udev, udev->ep_in[i]);
1283 }
ef7f6c70 1284 }
645daaab 1285
1941044a 1286 done:
441b62c1 1287 dev_vdbg(&udev->dev, "%s: status %d\n", __func__, status);
a8e7c565
AS
1288 return status;
1289}
1290
645daaab
AS
1291/**
1292 * usb_resume_both - resume a USB device and its interfaces
1293 * @udev: the usb_device to resume
65bfd296 1294 * @msg: Power Management message describing this state transition
645daaab
AS
1295 *
1296 * This is the central routine for resuming USB devices. It calls the
1297 * the resume method for @udev and then calls the resume methods for all
1298 * the interface drivers in @udev.
1299 *
9bbdf1e0
AS
1300 * Autoresume requests originating from a child device or an interface
1301 * driver may be made without the protection of @udev's device lock, but
1302 * all other resume calls will hold the lock. Usbcore will insure that
1303 * method calls do not arrive during bind, unbind, or reset operations.
1304 * However drivers must be prepared to handle resume calls arriving at
1305 * unpredictable times.
645daaab
AS
1306 *
1307 * This routine can run only in process context.
1308 */
65bfd296 1309static int usb_resume_both(struct usb_device *udev, pm_message_t msg)
a8e7c565 1310{
645daaab 1311 int status = 0;
a8e7c565
AS
1312 int i;
1313 struct usb_interface *intf;
645daaab 1314
1941044a
AS
1315 if (udev->state == USB_STATE_NOTATTACHED) {
1316 status = -ENODEV;
1317 goto done;
1318 }
6840d255 1319 udev->can_submit = 1;
a8e7c565 1320
9bbdf1e0
AS
1321 /* Resume the device */
1322 if (udev->state == USB_STATE_SUSPENDED || udev->reset_resume)
65bfd296 1323 status = usb_resume_device(udev, msg);
114b368c 1324
9bbdf1e0 1325 /* Resume the interfaces */
a8e7c565
AS
1326 if (status == 0 && udev->actconfig) {
1327 for (i = 0; i < udev->actconfig->desc.bNumInterfaces; i++) {
1328 intf = udev->actconfig->interface[i];
65bfd296
AS
1329 usb_resume_interface(udev, intf, msg,
1330 udev->reset_resume);
a8e7c565
AS
1331 }
1332 }
c08512c7 1333 usb_mark_last_busy(udev);
645daaab 1334
1941044a 1335 done:
441b62c1 1336 dev_vdbg(&udev->dev, "%s: status %d\n", __func__, status);
70a1c9e0
AS
1337 if (!status)
1338 udev->reset_resume = 0;
645daaab
AS
1339 return status;
1340}
1341
5f677f1d
AS
1342static void choose_wakeup(struct usb_device *udev, pm_message_t msg)
1343{
48826626 1344 int w;
5f677f1d
AS
1345
1346 /* Remote wakeup is needed only when we actually go to sleep.
1347 * For things like FREEZE and QUIESCE, if the device is already
1348 * autosuspended then its current wakeup setting is okay.
1349 */
1350 if (msg.event == PM_EVENT_FREEZE || msg.event == PM_EVENT_QUIESCE) {
1351 if (udev->state != USB_STATE_SUSPENDED)
1352 udev->do_remote_wakeup = 0;
1353 return;
1354 }
1355
48826626 1356 /* Enable remote wakeup if it is allowed, even if no interface drivers
5f677f1d
AS
1357 * actually want it.
1358 */
48826626 1359 w = device_may_wakeup(&udev->dev);
5f677f1d
AS
1360
1361 /* If the device is autosuspended with the wrong wakeup setting,
1362 * autoresume now so the setting can be changed.
1363 */
1364 if (udev->state == USB_STATE_SUSPENDED && w != udev->do_remote_wakeup)
1365 pm_runtime_resume(&udev->dev);
1366 udev->do_remote_wakeup = w;
1367}
1368
9bbdf1e0 1369/* The device lock is held by the PM core */
0c590e23
AS
1370int usb_suspend(struct device *dev, pm_message_t msg)
1371{
9bbdf1e0 1372 struct usb_device *udev = to_usb_device(dev);
0c590e23 1373
1493138a
ON
1374 unbind_no_pm_drivers_interfaces(udev);
1375
1376 /* From now on we are sure all drivers support suspend/resume
1377 * but not necessarily reset_resume()
1378 * so we may still need to unbind and rebind upon resume
1379 */
5f677f1d 1380 choose_wakeup(udev, msg);
9bbdf1e0 1381 return usb_suspend_both(udev, msg);
0c590e23
AS
1382}
1383
9bbdf1e0 1384/* The device lock is held by the PM core */
98d9a82e 1385int usb_resume_complete(struct device *dev)
0c590e23 1386{
98d9a82e 1387 struct usb_device *udev = to_usb_device(dev);
0c590e23 1388
1493138a
ON
1389 /* For PM complete calls, all we do is rebind interfaces
1390 * whose needs_binding flag is set
1391 */
98d9a82e
ON
1392 if (udev->state != USB_STATE_NOTATTACHED)
1393 do_rebind_interfaces(udev);
1394 return 0;
1395}
0c590e23 1396
9bbdf1e0 1397/* The device lock is held by the PM core */
0c590e23
AS
1398int usb_resume(struct device *dev, pm_message_t msg)
1399{
9bbdf1e0 1400 struct usb_device *udev = to_usb_device(dev);
0c590e23
AS
1401 int status;
1402
98d9a82e 1403 /* For all calls, take the device back to full power and
9bbdf1e0 1404 * tell the PM core in case it was autosuspended previously.
1493138a
ON
1405 * Unbind the interfaces that will need rebinding later,
1406 * because they fail to support reset_resume.
1407 * (This can't be done in usb_resume_interface()
98d9a82e 1408 * above because it doesn't own the right set of locks.)
0c590e23 1409 */
98d9a82e
ON
1410 status = usb_resume_both(udev, msg);
1411 if (status == 0) {
1412 pm_runtime_disable(dev);
1413 pm_runtime_set_active(dev);
1414 pm_runtime_enable(dev);
1415 unbind_no_reset_resume_drivers_interfaces(udev);
9bbdf1e0 1416 }
0c590e23
AS
1417
1418 /* Avoid PM error messages for devices disconnected while suspended
1419 * as we'll display regular disconnect messages just a bit later.
1420 */
7491f133 1421 if (status == -ENODEV || status == -ESHUTDOWN)
9bbdf1e0 1422 status = 0;
0c590e23
AS
1423 return status;
1424}
1425
1426#endif /* CONFIG_PM */
1427
645daaab
AS
1428#ifdef CONFIG_USB_SUSPEND
1429
088f7fec
AS
1430/**
1431 * usb_enable_autosuspend - allow a USB device to be autosuspended
1432 * @udev: the USB device which may be autosuspended
1433 *
1434 * This routine allows @udev to be autosuspended. An autosuspend won't
1435 * take place until the autosuspend_delay has elapsed and all the other
1436 * necessary conditions are satisfied.
1437 *
1438 * The caller must hold @udev's device lock.
1439 */
9e18c821 1440void usb_enable_autosuspend(struct usb_device *udev)
088f7fec 1441{
9e18c821 1442 pm_runtime_allow(&udev->dev);
088f7fec
AS
1443}
1444EXPORT_SYMBOL_GPL(usb_enable_autosuspend);
1445
1446/**
1447 * usb_disable_autosuspend - prevent a USB device from being autosuspended
1448 * @udev: the USB device which may not be autosuspended
1449 *
1450 * This routine prevents @udev from being autosuspended and wakes it up
1451 * if it is already autosuspended.
1452 *
1453 * The caller must hold @udev's device lock.
1454 */
9e18c821 1455void usb_disable_autosuspend(struct usb_device *udev)
088f7fec 1456{
9e18c821 1457 pm_runtime_forbid(&udev->dev);
088f7fec
AS
1458}
1459EXPORT_SYMBOL_GPL(usb_disable_autosuspend);
1460
645daaab
AS
1461/**
1462 * usb_autosuspend_device - delayed autosuspend of a USB device and its interfaces
701f35af 1463 * @udev: the usb_device to autosuspend
645daaab
AS
1464 *
1465 * This routine should be called when a core subsystem is finished using
1466 * @udev and wants to allow it to autosuspend. Examples would be when
1467 * @udev's device file in usbfs is closed or after a configuration change.
1468 *
9bbdf1e0
AS
1469 * @udev's usage counter is decremented; if it drops to 0 and all the
1470 * interfaces are inactive then a delayed autosuspend will be attempted.
1471 * The attempt may fail (see autosuspend_check()).
645daaab 1472 *
62e299e6 1473 * The caller must hold @udev's device lock.
645daaab
AS
1474 *
1475 * This routine can run only in process context.
1476 */
94fcda1f 1477void usb_autosuspend_device(struct usb_device *udev)
645daaab 1478{
94fcda1f
AS
1479 int status;
1480
6ddf27cd 1481 usb_mark_last_busy(udev);
fcc4a01e 1482 status = pm_runtime_put_sync_autosuspend(&udev->dev);
9bbdf1e0
AS
1483 dev_vdbg(&udev->dev, "%s: cnt %d -> %d\n",
1484 __func__, atomic_read(&udev->dev.power.usage_count),
1485 status);
645daaab
AS
1486}
1487
1488/**
1489 * usb_autoresume_device - immediately autoresume a USB device and its interfaces
701f35af 1490 * @udev: the usb_device to autoresume
645daaab
AS
1491 *
1492 * This routine should be called when a core subsystem wants to use @udev
94fcda1f 1493 * and needs to guarantee that it is not suspended. No autosuspend will
9bbdf1e0
AS
1494 * occur until usb_autosuspend_device() is called. (Note that this will
1495 * not prevent suspend events originating in the PM core.) Examples would
1496 * be when @udev's device file in usbfs is opened or when a remote-wakeup
94fcda1f 1497 * request is received.
645daaab 1498 *
94fcda1f
AS
1499 * @udev's usage counter is incremented to prevent subsequent autosuspends.
1500 * However if the autoresume fails then the usage counter is re-decremented.
645daaab 1501 *
62e299e6 1502 * The caller must hold @udev's device lock.
645daaab
AS
1503 *
1504 * This routine can run only in process context.
1505 */
94fcda1f 1506int usb_autoresume_device(struct usb_device *udev)
645daaab
AS
1507{
1508 int status;
1509
9bbdf1e0
AS
1510 status = pm_runtime_get_sync(&udev->dev);
1511 if (status < 0)
1512 pm_runtime_put_sync(&udev->dev);
1513 dev_vdbg(&udev->dev, "%s: cnt %d -> %d\n",
1514 __func__, atomic_read(&udev->dev.power.usage_count),
1515 status);
1516 if (status > 0)
1517 status = 0;
af4f7606
AS
1518 return status;
1519}
1520
645daaab
AS
1521/**
1522 * usb_autopm_put_interface - decrement a USB interface's PM-usage counter
701f35af 1523 * @intf: the usb_interface whose counter should be decremented
645daaab
AS
1524 *
1525 * This routine should be called by an interface driver when it is
1526 * finished using @intf and wants to allow it to autosuspend. A typical
1527 * example would be a character-device driver when its device file is
1528 * closed.
1529 *
1530 * The routine decrements @intf's usage counter. When the counter reaches
9bbdf1e0
AS
1531 * 0, a delayed autosuspend request for @intf's device is attempted. The
1532 * attempt may fail (see autosuspend_check()).
645daaab 1533 *
645daaab
AS
1534 * This routine can run only in process context.
1535 */
1536void usb_autopm_put_interface(struct usb_interface *intf)
1537{
9bbdf1e0
AS
1538 struct usb_device *udev = interface_to_usbdev(intf);
1539 int status;
645daaab 1540
6ddf27cd 1541 usb_mark_last_busy(udev);
9bbdf1e0
AS
1542 atomic_dec(&intf->pm_usage_cnt);
1543 status = pm_runtime_put_sync(&intf->dev);
1544 dev_vdbg(&intf->dev, "%s: cnt %d -> %d\n",
1545 __func__, atomic_read(&intf->dev.power.usage_count),
1546 status);
645daaab
AS
1547}
1548EXPORT_SYMBOL_GPL(usb_autopm_put_interface);
1549
9ac39f28
AS
1550/**
1551 * usb_autopm_put_interface_async - decrement a USB interface's PM-usage counter
1552 * @intf: the usb_interface whose counter should be decremented
1553 *
9bbdf1e0
AS
1554 * This routine does much the same thing as usb_autopm_put_interface():
1555 * It decrements @intf's usage counter and schedules a delayed
1556 * autosuspend request if the counter is <= 0. The difference is that it
1557 * does not perform any synchronization; callers should hold a private
1558 * lock and handle all synchronization issues themselves.
9ac39f28
AS
1559 *
1560 * Typically a driver would call this routine during an URB's completion
1561 * handler, if no more URBs were pending.
1562 *
1563 * This routine can run in atomic context.
1564 */
1565void usb_autopm_put_interface_async(struct usb_interface *intf)
1566{
1567 struct usb_device *udev = interface_to_usbdev(intf);
fcc4a01e 1568 int status;
9ac39f28 1569
6ddf27cd 1570 usb_mark_last_busy(udev);
9bbdf1e0 1571 atomic_dec(&intf->pm_usage_cnt);
fcc4a01e 1572 status = pm_runtime_put(&intf->dev);
9bbdf1e0
AS
1573 dev_vdbg(&intf->dev, "%s: cnt %d -> %d\n",
1574 __func__, atomic_read(&intf->dev.power.usage_count),
1575 status);
9ac39f28
AS
1576}
1577EXPORT_SYMBOL_GPL(usb_autopm_put_interface_async);
1578
9bbdf1e0
AS
1579/**
1580 * usb_autopm_put_interface_no_suspend - decrement a USB interface's PM-usage counter
1581 * @intf: the usb_interface whose counter should be decremented
1582 *
1583 * This routine decrements @intf's usage counter but does not carry out an
1584 * autosuspend.
1585 *
1586 * This routine can run in atomic context.
1587 */
1588void usb_autopm_put_interface_no_suspend(struct usb_interface *intf)
1589{
1590 struct usb_device *udev = interface_to_usbdev(intf);
1591
6ddf27cd 1592 usb_mark_last_busy(udev);
9bbdf1e0
AS
1593 atomic_dec(&intf->pm_usage_cnt);
1594 pm_runtime_put_noidle(&intf->dev);
1595}
1596EXPORT_SYMBOL_GPL(usb_autopm_put_interface_no_suspend);
1597
645daaab
AS
1598/**
1599 * usb_autopm_get_interface - increment a USB interface's PM-usage counter
701f35af 1600 * @intf: the usb_interface whose counter should be incremented
645daaab
AS
1601 *
1602 * This routine should be called by an interface driver when it wants to
1603 * use @intf and needs to guarantee that it is not suspended. In addition,
1604 * the routine prevents @intf from being autosuspended subsequently. (Note
1605 * that this will not prevent suspend events originating in the PM core.)
1606 * This prevention will persist until usb_autopm_put_interface() is called
1607 * or @intf is unbound. A typical example would be a character-device
1608 * driver when its device file is opened.
1609 *
9bbdf1e0
AS
1610 * @intf's usage counter is incremented to prevent subsequent autosuspends.
1611 * However if the autoresume fails then the counter is re-decremented.
645daaab
AS
1612 *
1613 * This routine can run only in process context.
1614 */
1615int usb_autopm_get_interface(struct usb_interface *intf)
1616{
af4f7606 1617 int status;
645daaab 1618
9bbdf1e0
AS
1619 status = pm_runtime_get_sync(&intf->dev);
1620 if (status < 0)
1621 pm_runtime_put_sync(&intf->dev);
1622 else
1623 atomic_inc(&intf->pm_usage_cnt);
1624 dev_vdbg(&intf->dev, "%s: cnt %d -> %d\n",
1625 __func__, atomic_read(&intf->dev.power.usage_count),
1626 status);
1627 if (status > 0)
1628 status = 0;
a8e7c565
AS
1629 return status;
1630}
645daaab
AS
1631EXPORT_SYMBOL_GPL(usb_autopm_get_interface);
1632
9ac39f28
AS
1633/**
1634 * usb_autopm_get_interface_async - increment a USB interface's PM-usage counter
1635 * @intf: the usb_interface whose counter should be incremented
1636 *
1637 * This routine does much the same thing as
9bbdf1e0
AS
1638 * usb_autopm_get_interface(): It increments @intf's usage counter and
1639 * queues an autoresume request if the device is suspended. The
1640 * differences are that it does not perform any synchronization (callers
1641 * should hold a private lock and handle all synchronization issues
1642 * themselves), and it does not autoresume the device directly (it only
1643 * queues a request). After a successful call, the device may not yet be
1644 * resumed.
9ac39f28
AS
1645 *
1646 * This routine can run in atomic context.
1647 */
1648int usb_autopm_get_interface_async(struct usb_interface *intf)
1649{
63defa73 1650 int status;
9bbdf1e0 1651
63defa73 1652 status = pm_runtime_get(&intf->dev);
9bbdf1e0
AS
1653 if (status < 0 && status != -EINPROGRESS)
1654 pm_runtime_put_noidle(&intf->dev);
1655 else
ccf5b801 1656 atomic_inc(&intf->pm_usage_cnt);
9bbdf1e0
AS
1657 dev_vdbg(&intf->dev, "%s: cnt %d -> %d\n",
1658 __func__, atomic_read(&intf->dev.power.usage_count),
1659 status);
c5a48592 1660 if (status > 0 || status == -EINPROGRESS)
9bbdf1e0 1661 status = 0;
9ac39f28
AS
1662 return status;
1663}
1664EXPORT_SYMBOL_GPL(usb_autopm_get_interface_async);
1665
9bbdf1e0
AS
1666/**
1667 * usb_autopm_get_interface_no_resume - increment a USB interface's PM-usage counter
1668 * @intf: the usb_interface whose counter should be incremented
1669 *
1670 * This routine increments @intf's usage counter but does not carry out an
1671 * autoresume.
1672 *
1673 * This routine can run in atomic context.
1674 */
1675void usb_autopm_get_interface_no_resume(struct usb_interface *intf)
1676{
1677 struct usb_device *udev = interface_to_usbdev(intf);
1678
6ddf27cd 1679 usb_mark_last_busy(udev);
9bbdf1e0
AS
1680 atomic_inc(&intf->pm_usage_cnt);
1681 pm_runtime_get_noresume(&intf->dev);
1682}
1683EXPORT_SYMBOL_GPL(usb_autopm_get_interface_no_resume);
1684
1685/* Internal routine to check whether we may autosuspend a device. */
1686static int autosuspend_check(struct usb_device *udev)
1687{
7560d32e 1688 int w, i;
9bbdf1e0 1689 struct usb_interface *intf;
9bbdf1e0
AS
1690
1691 /* Fail if autosuspend is disabled, or any interfaces are in use, or
1692 * any interface drivers require remote wakeup but it isn't available.
1693 */
7560d32e 1694 w = 0;
9bbdf1e0
AS
1695 if (udev->actconfig) {
1696 for (i = 0; i < udev->actconfig->desc.bNumInterfaces; i++) {
1697 intf = udev->actconfig->interface[i];
1698
1699 /* We don't need to check interfaces that are
1700 * disabled for runtime PM. Either they are unbound
1701 * or else their drivers don't support autosuspend
1702 * and so they are permanently active.
1703 */
1704 if (intf->dev.power.disable_depth)
1705 continue;
1706 if (atomic_read(&intf->dev.power.usage_count) > 0)
1707 return -EBUSY;
7560d32e 1708 w |= intf->needs_remote_wakeup;
9bbdf1e0
AS
1709
1710 /* Don't allow autosuspend if the device will need
1711 * a reset-resume and any of its interface drivers
1712 * doesn't include support or needs remote wakeup.
1713 */
1714 if (udev->quirks & USB_QUIRK_RESET_RESUME) {
1715 struct usb_driver *driver;
1716
1717 driver = to_usb_driver(intf->dev.driver);
1718 if (!driver->reset_resume ||
1719 intf->needs_remote_wakeup)
1720 return -EOPNOTSUPP;
1721 }
1722 }
1723 }
7560d32e
AS
1724 if (w && !device_can_wakeup(&udev->dev)) {
1725 dev_dbg(&udev->dev, "remote wakeup needed for autosuspend\n");
1726 return -EOPNOTSUPP;
1727 }
1728 udev->do_remote_wakeup = w;
9bbdf1e0
AS
1729 return 0;
1730}
1731
e1620d59 1732int usb_runtime_suspend(struct device *dev)
9bbdf1e0 1733{
63defa73
ML
1734 struct usb_device *udev = to_usb_device(dev);
1735 int status;
718efa64 1736
9bbdf1e0
AS
1737 /* A USB device can be suspended if it passes the various autosuspend
1738 * checks. Runtime suspend for a USB device means suspending all the
1739 * interfaces and then the device itself.
1740 */
63defa73
ML
1741 if (autosuspend_check(udev) != 0)
1742 return -EAGAIN;
9bbdf1e0 1743
63defa73 1744 status = usb_suspend_both(udev, PMSG_AUTO_SUSPEND);
b2c0a863
AS
1745
1746 /* Allow a retry if autosuspend failed temporarily */
1747 if (status == -EAGAIN || status == -EBUSY)
1748 usb_mark_last_busy(udev);
1749
db7c7c0a
SS
1750 /* The PM core reacts badly unless the return code is 0,
1751 * -EAGAIN, or -EBUSY, so always return -EBUSY on an error.
1752 */
1753 if (status != 0)
1754 return -EBUSY;
9bbdf1e0
AS
1755 return status;
1756}
1757
e1620d59 1758int usb_runtime_resume(struct device *dev)
9bbdf1e0 1759{
63defa73
ML
1760 struct usb_device *udev = to_usb_device(dev);
1761 int status;
1762
9bbdf1e0
AS
1763 /* Runtime resume for a USB device means resuming both the device
1764 * and all its interfaces.
1765 */
63defa73 1766 status = usb_resume_both(udev, PMSG_AUTO_RESUME);
63defa73 1767 return status;
9bbdf1e0
AS
1768}
1769
e1620d59 1770int usb_runtime_idle(struct device *dev)
9bbdf1e0 1771{
63defa73
ML
1772 struct usb_device *udev = to_usb_device(dev);
1773
9bbdf1e0 1774 /* An idle USB device can be suspended if it passes the various
63defa73 1775 * autosuspend checks.
9bbdf1e0 1776 */
63defa73 1777 if (autosuspend_check(udev) == 0)
fcc4a01e 1778 pm_runtime_autosuspend(dev);
9bbdf1e0
AS
1779 return 0;
1780}
1781
65580b43
AX
1782int usb_set_usb2_hardware_lpm(struct usb_device *udev, int enable)
1783{
1784 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
1785 int ret = -EPERM;
1786
1787 if (hcd->driver->set_usb2_hw_lpm) {
1788 ret = hcd->driver->set_usb2_hw_lpm(hcd, udev, enable);
1789 if (!ret)
1790 udev->usb2_hw_lpm_enabled = enable;
1791 }
1792
1793 return ret;
1794}
1795
645daaab 1796#endif /* CONFIG_USB_SUSPEND */
a8e7c565 1797
36e56a34
AS
1798struct bus_type usb_bus_type = {
1799 .name = "usb",
1800 .match = usb_device_match,
1801 .uevent = usb_uevent,
36e56a34 1802};