2 * drivers/usb/driver.c - most of the driver model stuff for usb
4 * (C) Copyright 2005 Greg Kroah-Hartman <gregkh@suse.de>
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
18 * NOTE! This is not actually a driver at all, rather this is
19 * just a collection of helper routines that implement the
20 * matching, probing, releasing, suspending and resuming for
25 #include <linux/device.h>
26 #include <linux/slab.h>
27 #include <linux/export.h>
28 #include <linux/usb.h>
29 #include <linux/usb/quirks.h>
30 #include <linux/usb/hcd.h>
36 * Adds a new dynamic USBdevice ID to this driver,
37 * and cause the driver to probe for all devices again.
39 ssize_t
usb_store_new_id(struct usb_dynids
*dynids
,
40 const struct usb_device_id
*id_table
,
41 struct device_driver
*driver
,
42 const char *buf
, size_t count
)
44 struct usb_dynid
*dynid
;
47 unsigned int bInterfaceClass
= 0;
48 u32 refVendor
, refProduct
;
52 fields
= sscanf(buf
, "%x %x %x %x %x", &idVendor
, &idProduct
,
53 &bInterfaceClass
, &refVendor
, &refProduct
);
57 dynid
= kzalloc(sizeof(*dynid
), GFP_KERNEL
);
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
;
65 if (fields
> 2 && bInterfaceClass
) {
66 if (bInterfaceClass
> 255) {
71 dynid
->id
.bInterfaceClass
= (u8
)bInterfaceClass
;
72 dynid
->id
.match_flags
|= USB_DEVICE_ID_MATCH_INT_CLASS
;
76 const struct usb_device_id
*id
= id_table
;
83 for (; id
->match_flags
; id
++)
84 if (id
->idVendor
== refVendor
&& id
->idProduct
== refProduct
)
87 if (id
->match_flags
) {
88 dynid
->id
.driver_info
= id
->driver_info
;
95 spin_lock(&dynids
->lock
);
96 list_add_tail(&dynid
->node
, &dynids
->list
);
97 spin_unlock(&dynids
->lock
);
99 retval
= driver_attach(driver
);
109 EXPORT_SYMBOL_GPL(usb_store_new_id
);
111 ssize_t
usb_show_dynids(struct usb_dynids
*dynids
, char *buf
)
113 struct usb_dynid
*dynid
;
116 list_for_each_entry(dynid
, &dynids
->list
, node
)
117 if (dynid
->id
.bInterfaceClass
!= 0)
118 count
+= scnprintf(&buf
[count
], PAGE_SIZE
- count
, "%04x %04x %02x\n",
119 dynid
->id
.idVendor
, dynid
->id
.idProduct
,
120 dynid
->id
.bInterfaceClass
);
122 count
+= scnprintf(&buf
[count
], PAGE_SIZE
- count
, "%04x %04x\n",
123 dynid
->id
.idVendor
, dynid
->id
.idProduct
);
126 EXPORT_SYMBOL_GPL(usb_show_dynids
);
128 static ssize_t
new_id_show(struct device_driver
*driver
, char *buf
)
130 struct usb_driver
*usb_drv
= to_usb_driver(driver
);
132 return usb_show_dynids(&usb_drv
->dynids
, buf
);
135 static ssize_t
new_id_store(struct device_driver
*driver
,
136 const char *buf
, size_t count
)
138 struct usb_driver
*usb_drv
= to_usb_driver(driver
);
140 return usb_store_new_id(&usb_drv
->dynids
, usb_drv
->id_table
, driver
, buf
, count
);
142 static DRIVER_ATTR_RW(new_id
);
145 * Remove a USB device ID from this driver
147 static ssize_t
remove_id_store(struct device_driver
*driver
, const char *buf
,
150 struct usb_dynid
*dynid
, *n
;
151 struct usb_driver
*usb_driver
= to_usb_driver(driver
);
156 fields
= sscanf(buf
, "%x %x", &idVendor
, &idProduct
);
160 spin_lock(&usb_driver
->dynids
.lock
);
161 list_for_each_entry_safe(dynid
, n
, &usb_driver
->dynids
.list
, node
) {
162 struct usb_device_id
*id
= &dynid
->id
;
163 if ((id
->idVendor
== idVendor
) &&
164 (id
->idProduct
== idProduct
)) {
165 list_del(&dynid
->node
);
170 spin_unlock(&usb_driver
->dynids
.lock
);
174 static ssize_t
remove_id_show(struct device_driver
*driver
, char *buf
)
176 return new_id_show(driver
, buf
);
178 static DRIVER_ATTR_RW(remove_id
);
180 static int usb_create_newid_files(struct usb_driver
*usb_drv
)
184 if (usb_drv
->no_dynamic_id
)
187 if (usb_drv
->probe
!= NULL
) {
188 error
= driver_create_file(&usb_drv
->drvwrap
.driver
,
189 &driver_attr_new_id
);
191 error
= driver_create_file(&usb_drv
->drvwrap
.driver
,
192 &driver_attr_remove_id
);
194 driver_remove_file(&usb_drv
->drvwrap
.driver
,
195 &driver_attr_new_id
);
202 static void usb_remove_newid_files(struct usb_driver
*usb_drv
)
204 if (usb_drv
->no_dynamic_id
)
207 if (usb_drv
->probe
!= NULL
) {
208 driver_remove_file(&usb_drv
->drvwrap
.driver
,
209 &driver_attr_remove_id
);
210 driver_remove_file(&usb_drv
->drvwrap
.driver
,
211 &driver_attr_new_id
);
215 static void usb_free_dynids(struct usb_driver
*usb_drv
)
217 struct usb_dynid
*dynid
, *n
;
219 spin_lock(&usb_drv
->dynids
.lock
);
220 list_for_each_entry_safe(dynid
, n
, &usb_drv
->dynids
.list
, node
) {
221 list_del(&dynid
->node
);
224 spin_unlock(&usb_drv
->dynids
.lock
);
227 static const struct usb_device_id
*usb_match_dynamic_id(struct usb_interface
*intf
,
228 struct usb_driver
*drv
)
230 struct usb_dynid
*dynid
;
232 spin_lock(&drv
->dynids
.lock
);
233 list_for_each_entry(dynid
, &drv
->dynids
.list
, node
) {
234 if (usb_match_one_id(intf
, &dynid
->id
)) {
235 spin_unlock(&drv
->dynids
.lock
);
239 spin_unlock(&drv
->dynids
.lock
);
244 /* called from driver core with dev locked */
245 static int usb_probe_device(struct device
*dev
)
247 struct usb_device_driver
*udriver
= to_usb_device_driver(dev
->driver
);
248 struct usb_device
*udev
= to_usb_device(dev
);
251 dev_dbg(dev
, "%s\n", __func__
);
253 /* TODO: Add real matching code */
255 /* The device should always appear to be in use
256 * unless the driver supports autosuspend.
258 if (!udriver
->supports_autosuspend
)
259 error
= usb_autoresume_device(udev
);
262 error
= udriver
->probe(udev
);
266 /* called from driver core with dev locked */
267 static int usb_unbind_device(struct device
*dev
)
269 struct usb_device
*udev
= to_usb_device(dev
);
270 struct usb_device_driver
*udriver
= to_usb_device_driver(dev
->driver
);
272 udriver
->disconnect(udev
);
273 if (!udriver
->supports_autosuspend
)
274 usb_autosuspend_device(udev
);
278 /* called from driver core with dev locked */
279 static int usb_probe_interface(struct device
*dev
)
281 struct usb_driver
*driver
= to_usb_driver(dev
->driver
);
282 struct usb_interface
*intf
= to_usb_interface(dev
);
283 struct usb_device
*udev
= interface_to_usbdev(intf
);
284 const struct usb_device_id
*id
;
286 int lpm_disable_error
;
288 dev_dbg(dev
, "%s\n", __func__
);
290 intf
->needs_binding
= 0;
292 if (usb_device_is_owned(udev
))
295 if (udev
->authorized
== 0) {
296 dev_err(&intf
->dev
, "Device is not authorized for usage\n");
300 id
= usb_match_dynamic_id(intf
, driver
);
302 id
= usb_match_id(intf
, driver
->id_table
);
306 dev_dbg(dev
, "%s - got id\n", __func__
);
308 error
= usb_autoresume_device(udev
);
312 intf
->condition
= USB_INTERFACE_BINDING
;
314 /* Probed interfaces are initially active. They are
315 * runtime-PM-enabled only if the driver has autosuspend support.
316 * They are sensitive to their children's power states.
318 pm_runtime_set_active(dev
);
319 pm_suspend_ignore_children(dev
, false);
320 if (driver
->supports_autosuspend
)
321 pm_runtime_enable(dev
);
323 /* If the new driver doesn't allow hub-initiated LPM, and we can't
324 * disable hub-initiated LPM, then fail the probe.
326 * Otherwise, leaving LPM enabled should be harmless, because the
327 * endpoint intervals should remain the same, and the U1/U2 timeouts
328 * should remain the same.
330 * If we need to install alt setting 0 before probe, or another alt
331 * setting during probe, that should also be fine. usb_set_interface()
332 * will attempt to disable LPM, and fail if it can't disable it.
334 lpm_disable_error
= usb_unlocked_disable_lpm(udev
);
335 if (lpm_disable_error
&& driver
->disable_hub_initiated_lpm
) {
336 dev_err(&intf
->dev
, "%s Failed to disable LPM for driver %s\n.",
337 __func__
, driver
->name
);
338 error
= lpm_disable_error
;
342 /* Carry out a deferred switch to altsetting 0 */
343 if (intf
->needs_altsetting0
) {
344 error
= usb_set_interface(udev
, intf
->altsetting
[0].
345 desc
.bInterfaceNumber
, 0);
348 intf
->needs_altsetting0
= 0;
351 error
= driver
->probe(intf
, id
);
355 intf
->condition
= USB_INTERFACE_BOUND
;
357 /* If the LPM disable succeeded, balance the ref counts. */
358 if (!lpm_disable_error
)
359 usb_unlocked_enable_lpm(udev
);
361 usb_autosuspend_device(udev
);
365 usb_set_intfdata(intf
, NULL
);
366 intf
->needs_remote_wakeup
= 0;
367 intf
->condition
= USB_INTERFACE_UNBOUND
;
369 /* If the LPM disable succeeded, balance the ref counts. */
370 if (!lpm_disable_error
)
371 usb_unlocked_enable_lpm(udev
);
373 /* Unbound interfaces are always runtime-PM-disabled and -suspended */
374 if (driver
->supports_autosuspend
)
375 pm_runtime_disable(dev
);
376 pm_runtime_set_suspended(dev
);
378 usb_autosuspend_device(udev
);
382 /* called from driver core with dev locked */
383 static int usb_unbind_interface(struct device
*dev
)
385 struct usb_driver
*driver
= to_usb_driver(dev
->driver
);
386 struct usb_interface
*intf
= to_usb_interface(dev
);
387 struct usb_host_endpoint
*ep
, **eps
= NULL
;
388 struct usb_device
*udev
;
389 int i
, j
, error
, r
, lpm_disable_error
;
391 intf
->condition
= USB_INTERFACE_UNBINDING
;
393 /* Autoresume for set_interface call below */
394 udev
= interface_to_usbdev(intf
);
395 error
= usb_autoresume_device(udev
);
397 /* Hub-initiated LPM policy may change, so attempt to disable LPM until
398 * the driver is unbound. If LPM isn't disabled, that's fine because it
399 * wouldn't be enabled unless all the bound interfaces supported
402 lpm_disable_error
= usb_unlocked_disable_lpm(udev
);
405 * Terminate all URBs for this interface unless the driver
406 * supports "soft" unbinding and the device is still present.
408 if (!driver
->soft_unbind
|| udev
->state
== USB_STATE_NOTATTACHED
)
409 usb_disable_interface(udev
, intf
, false);
411 driver
->disconnect(intf
);
414 for (i
= 0, j
= 0; i
< intf
->cur_altsetting
->desc
.bNumEndpoints
; i
++) {
415 ep
= &intf
->cur_altsetting
->endpoint
[i
];
416 if (ep
->streams
== 0)
419 eps
= kmalloc(USB_MAXENDPOINTS
* sizeof(void *),
422 dev_warn(dev
, "oom, leaking streams\n");
429 usb_free_streams(intf
, eps
, j
, GFP_KERNEL
);
433 /* Reset other interface state.
434 * We cannot do a Set-Interface if the device is suspended or
435 * if it is prepared for a system sleep (since installing a new
436 * altsetting means creating new endpoint device entries).
437 * When either of these happens, defer the Set-Interface.
439 if (intf
->cur_altsetting
->desc
.bAlternateSetting
== 0) {
440 /* Already in altsetting 0 so skip Set-Interface.
441 * Just re-enable it without affecting the endpoint toggles.
443 usb_enable_interface(udev
, intf
, false);
444 } else if (!error
&& !intf
->dev
.power
.is_prepared
) {
445 r
= usb_set_interface(udev
, intf
->altsetting
[0].
446 desc
.bInterfaceNumber
, 0);
448 intf
->needs_altsetting0
= 1;
450 intf
->needs_altsetting0
= 1;
452 usb_set_intfdata(intf
, NULL
);
454 intf
->condition
= USB_INTERFACE_UNBOUND
;
455 intf
->needs_remote_wakeup
= 0;
457 /* Attempt to re-enable USB3 LPM, if the disable succeeded. */
458 if (!lpm_disable_error
)
459 usb_unlocked_enable_lpm(udev
);
461 /* Unbound interfaces are always runtime-PM-disabled and -suspended */
462 if (driver
->supports_autosuspend
)
463 pm_runtime_disable(dev
);
464 pm_runtime_set_suspended(dev
);
466 /* Undo any residual pm_autopm_get_interface_* calls */
467 for (r
= atomic_read(&intf
->pm_usage_cnt
); r
> 0; --r
)
468 usb_autopm_put_interface_no_suspend(intf
);
469 atomic_set(&intf
->pm_usage_cnt
, 0);
472 usb_autosuspend_device(udev
);
478 * usb_driver_claim_interface - bind a driver to an interface
479 * @driver: the driver to be bound
480 * @iface: the interface to which it will be bound; must be in the
481 * usb device's active configuration
482 * @priv: driver data associated with that interface
484 * This is used by usb device drivers that need to claim more than one
485 * interface on a device when probing (audio and acm are current examples).
486 * No device driver should directly modify internal usb_interface or
487 * usb_device structure members.
489 * Few drivers should need to use this routine, since the most natural
490 * way to bind to an interface is to return the private data from
491 * the driver's probe() method.
493 * Callers must own the device lock, so driver probe() entries don't need
494 * extra locking, but other call contexts may need to explicitly claim that
497 * Return: 0 on success.
499 int usb_driver_claim_interface(struct usb_driver
*driver
,
500 struct usb_interface
*iface
, void *priv
)
502 struct device
*dev
= &iface
->dev
;
503 struct usb_device
*udev
;
505 int lpm_disable_error
;
510 udev
= interface_to_usbdev(iface
);
512 dev
->driver
= &driver
->drvwrap
.driver
;
513 usb_set_intfdata(iface
, priv
);
514 iface
->needs_binding
= 0;
516 iface
->condition
= USB_INTERFACE_BOUND
;
518 /* Disable LPM until this driver is bound. */
519 lpm_disable_error
= usb_unlocked_disable_lpm(udev
);
520 if (lpm_disable_error
&& driver
->disable_hub_initiated_lpm
) {
521 dev_err(&iface
->dev
, "%s Failed to disable LPM for driver %s\n.",
522 __func__
, driver
->name
);
526 /* Claimed interfaces are initially inactive (suspended) and
527 * runtime-PM-enabled, but only if the driver has autosuspend
528 * support. Otherwise they are marked active, to prevent the
529 * device from being autosuspended, but left disabled. In either
530 * case they are sensitive to their children's power states.
532 pm_suspend_ignore_children(dev
, false);
533 if (driver
->supports_autosuspend
)
534 pm_runtime_enable(dev
);
536 pm_runtime_set_active(dev
);
538 /* if interface was already added, bind now; else let
539 * the future device_add() bind it, bypassing probe()
541 if (device_is_registered(dev
))
542 retval
= device_bind_driver(dev
);
544 /* Attempt to re-enable USB3 LPM, if the disable was successful. */
545 if (!lpm_disable_error
)
546 usb_unlocked_enable_lpm(udev
);
550 EXPORT_SYMBOL_GPL(usb_driver_claim_interface
);
553 * usb_driver_release_interface - unbind a driver from an interface
554 * @driver: the driver to be unbound
555 * @iface: the interface from which it will be unbound
557 * This can be used by drivers to release an interface without waiting
558 * for their disconnect() methods to be called. In typical cases this
559 * also causes the driver disconnect() method to be called.
561 * This call is synchronous, and may not be used in an interrupt context.
562 * Callers must own the device lock, so driver disconnect() entries don't
563 * need extra locking, but other call contexts may need to explicitly claim
566 void usb_driver_release_interface(struct usb_driver
*driver
,
567 struct usb_interface
*iface
)
569 struct device
*dev
= &iface
->dev
;
571 /* this should never happen, don't release something that's not ours */
572 if (!dev
->driver
|| dev
->driver
!= &driver
->drvwrap
.driver
)
575 /* don't release from within disconnect() */
576 if (iface
->condition
!= USB_INTERFACE_BOUND
)
578 iface
->condition
= USB_INTERFACE_UNBINDING
;
580 /* Release via the driver core only if the interface
581 * has already been registered
583 if (device_is_registered(dev
)) {
584 device_release_driver(dev
);
587 usb_unbind_interface(dev
);
592 EXPORT_SYMBOL_GPL(usb_driver_release_interface
);
594 /* returns 0 if no match, 1 if match */
595 int usb_match_device(struct usb_device
*dev
, const struct usb_device_id
*id
)
597 if ((id
->match_flags
& USB_DEVICE_ID_MATCH_VENDOR
) &&
598 id
->idVendor
!= le16_to_cpu(dev
->descriptor
.idVendor
))
601 if ((id
->match_flags
& USB_DEVICE_ID_MATCH_PRODUCT
) &&
602 id
->idProduct
!= le16_to_cpu(dev
->descriptor
.idProduct
))
605 /* No need to test id->bcdDevice_lo != 0, since 0 is never
606 greater than any unsigned number. */
607 if ((id
->match_flags
& USB_DEVICE_ID_MATCH_DEV_LO
) &&
608 (id
->bcdDevice_lo
> le16_to_cpu(dev
->descriptor
.bcdDevice
)))
611 if ((id
->match_flags
& USB_DEVICE_ID_MATCH_DEV_HI
) &&
612 (id
->bcdDevice_hi
< le16_to_cpu(dev
->descriptor
.bcdDevice
)))
615 if ((id
->match_flags
& USB_DEVICE_ID_MATCH_DEV_CLASS
) &&
616 (id
->bDeviceClass
!= dev
->descriptor
.bDeviceClass
))
619 if ((id
->match_flags
& USB_DEVICE_ID_MATCH_DEV_SUBCLASS
) &&
620 (id
->bDeviceSubClass
!= dev
->descriptor
.bDeviceSubClass
))
623 if ((id
->match_flags
& USB_DEVICE_ID_MATCH_DEV_PROTOCOL
) &&
624 (id
->bDeviceProtocol
!= dev
->descriptor
.bDeviceProtocol
))
630 /* returns 0 if no match, 1 if match */
631 int usb_match_one_id_intf(struct usb_device
*dev
,
632 struct usb_host_interface
*intf
,
633 const struct usb_device_id
*id
)
635 /* The interface class, subclass, protocol and number should never be
636 * checked for a match if the device class is Vendor Specific,
637 * unless the match record specifies the Vendor ID. */
638 if (dev
->descriptor
.bDeviceClass
== USB_CLASS_VENDOR_SPEC
&&
639 !(id
->match_flags
& USB_DEVICE_ID_MATCH_VENDOR
) &&
640 (id
->match_flags
& (USB_DEVICE_ID_MATCH_INT_CLASS
|
641 USB_DEVICE_ID_MATCH_INT_SUBCLASS
|
642 USB_DEVICE_ID_MATCH_INT_PROTOCOL
|
643 USB_DEVICE_ID_MATCH_INT_NUMBER
)))
646 if ((id
->match_flags
& USB_DEVICE_ID_MATCH_INT_CLASS
) &&
647 (id
->bInterfaceClass
!= intf
->desc
.bInterfaceClass
))
650 if ((id
->match_flags
& USB_DEVICE_ID_MATCH_INT_SUBCLASS
) &&
651 (id
->bInterfaceSubClass
!= intf
->desc
.bInterfaceSubClass
))
654 if ((id
->match_flags
& USB_DEVICE_ID_MATCH_INT_PROTOCOL
) &&
655 (id
->bInterfaceProtocol
!= intf
->desc
.bInterfaceProtocol
))
658 if ((id
->match_flags
& USB_DEVICE_ID_MATCH_INT_NUMBER
) &&
659 (id
->bInterfaceNumber
!= intf
->desc
.bInterfaceNumber
))
665 /* returns 0 if no match, 1 if match */
666 int usb_match_one_id(struct usb_interface
*interface
,
667 const struct usb_device_id
*id
)
669 struct usb_host_interface
*intf
;
670 struct usb_device
*dev
;
672 /* proc_connectinfo in devio.c may call us with id == NULL. */
676 intf
= interface
->cur_altsetting
;
677 dev
= interface_to_usbdev(interface
);
679 if (!usb_match_device(dev
, id
))
682 return usb_match_one_id_intf(dev
, intf
, id
);
684 EXPORT_SYMBOL_GPL(usb_match_one_id
);
687 * usb_match_id - find first usb_device_id matching device or interface
688 * @interface: the interface of interest
689 * @id: array of usb_device_id structures, terminated by zero entry
691 * usb_match_id searches an array of usb_device_id's and returns
692 * the first one matching the device or interface, or null.
693 * This is used when binding (or rebinding) a driver to an interface.
694 * Most USB device drivers will use this indirectly, through the usb core,
695 * but some layered driver frameworks use it directly.
696 * These device tables are exported with MODULE_DEVICE_TABLE, through
697 * modutils, to support the driver loading functionality of USB hotplugging.
699 * Return: The first matching usb_device_id, or %NULL.
703 * The "match_flags" element in a usb_device_id controls which
704 * members are used. If the corresponding bit is set, the
705 * value in the device_id must match its corresponding member
706 * in the device or interface descriptor, or else the device_id
709 * "driver_info" is normally used only by device drivers,
710 * but you can create a wildcard "matches anything" usb_device_id
711 * as a driver's "modules.usbmap" entry if you provide an id with
712 * only a nonzero "driver_info" field. If you do this, the USB device
713 * driver's probe() routine should use additional intelligence to
714 * decide whether to bind to the specified interface.
716 * What Makes Good usb_device_id Tables:
718 * The match algorithm is very simple, so that intelligence in
719 * driver selection must come from smart driver id records.
720 * Unless you have good reasons to use another selection policy,
721 * provide match elements only in related groups, and order match
722 * specifiers from specific to general. Use the macros provided
723 * for that purpose if you can.
725 * The most specific match specifiers use device descriptor
726 * data. These are commonly used with product-specific matches;
727 * the USB_DEVICE macro lets you provide vendor and product IDs,
728 * and you can also match against ranges of product revisions.
729 * These are widely used for devices with application or vendor
730 * specific bDeviceClass values.
732 * Matches based on device class/subclass/protocol specifications
733 * are slightly more general; use the USB_DEVICE_INFO macro, or
734 * its siblings. These are used with single-function devices
735 * where bDeviceClass doesn't specify that each interface has
738 * Matches based on interface class/subclass/protocol are the
739 * most general; they let drivers bind to any interface on a
740 * multiple-function device. Use the USB_INTERFACE_INFO
741 * macro, or its siblings, to match class-per-interface style
742 * devices (as recorded in bInterfaceClass).
744 * Note that an entry created by USB_INTERFACE_INFO won't match
745 * any interface if the device class is set to Vendor-Specific.
746 * This is deliberate; according to the USB spec the meanings of
747 * the interface class/subclass/protocol for these devices are also
748 * vendor-specific, and hence matching against a standard product
749 * class wouldn't work anyway. If you really want to use an
750 * interface-based match for such a device, create a match record
751 * that also specifies the vendor ID. (Unforunately there isn't a
752 * standard macro for creating records like this.)
754 * Within those groups, remember that not all combinations are
755 * meaningful. For example, don't give a product version range
756 * without vendor and product IDs; or specify a protocol without
757 * its associated class and subclass.
759 const struct usb_device_id
*usb_match_id(struct usb_interface
*interface
,
760 const struct usb_device_id
*id
)
762 /* proc_connectinfo in devio.c may call us with id == NULL. */
766 /* It is important to check that id->driver_info is nonzero,
767 since an entry that is all zeroes except for a nonzero
768 id->driver_info is the way to create an entry that
769 indicates that the driver want to examine every
770 device and interface. */
771 for (; id
->idVendor
|| id
->idProduct
|| id
->bDeviceClass
||
772 id
->bInterfaceClass
|| id
->driver_info
; id
++) {
773 if (usb_match_one_id(interface
, id
))
779 EXPORT_SYMBOL_GPL(usb_match_id
);
781 static int usb_device_match(struct device
*dev
, struct device_driver
*drv
)
783 /* devices and interfaces are handled separately */
784 if (is_usb_device(dev
)) {
786 /* interface drivers never match devices */
787 if (!is_usb_device_driver(drv
))
790 /* TODO: Add real matching code */
793 } else if (is_usb_interface(dev
)) {
794 struct usb_interface
*intf
;
795 struct usb_driver
*usb_drv
;
796 const struct usb_device_id
*id
;
798 /* device drivers never match interfaces */
799 if (is_usb_device_driver(drv
))
802 intf
= to_usb_interface(dev
);
803 usb_drv
= to_usb_driver(drv
);
805 id
= usb_match_id(intf
, usb_drv
->id_table
);
809 id
= usb_match_dynamic_id(intf
, usb_drv
);
817 static int usb_uevent(struct device
*dev
, struct kobj_uevent_env
*env
)
819 struct usb_device
*usb_dev
;
821 if (is_usb_device(dev
)) {
822 usb_dev
= to_usb_device(dev
);
823 } else if (is_usb_interface(dev
)) {
824 struct usb_interface
*intf
= to_usb_interface(dev
);
826 usb_dev
= interface_to_usbdev(intf
);
831 if (usb_dev
->devnum
< 0) {
832 /* driver is often null here; dev_dbg() would oops */
833 pr_debug("usb %s: already deleted?\n", dev_name(dev
));
837 pr_debug("usb %s: bus removed?\n", dev_name(dev
));
841 /* per-device configurations are common */
842 if (add_uevent_var(env
, "PRODUCT=%x/%x/%x",
843 le16_to_cpu(usb_dev
->descriptor
.idVendor
),
844 le16_to_cpu(usb_dev
->descriptor
.idProduct
),
845 le16_to_cpu(usb_dev
->descriptor
.bcdDevice
)))
848 /* class-based driver binding models */
849 if (add_uevent_var(env
, "TYPE=%d/%d/%d",
850 usb_dev
->descriptor
.bDeviceClass
,
851 usb_dev
->descriptor
.bDeviceSubClass
,
852 usb_dev
->descriptor
.bDeviceProtocol
))
859 * usb_register_device_driver - register a USB device (not interface) driver
860 * @new_udriver: USB operations for the device driver
861 * @owner: module owner of this driver.
863 * Registers a USB device driver with the USB core. The list of
864 * unattached devices will be rescanned whenever a new driver is
865 * added, allowing the new driver to attach to any recognized devices.
867 * Return: A negative error code on failure and 0 on success.
869 int usb_register_device_driver(struct usb_device_driver
*new_udriver
,
870 struct module
*owner
)
877 new_udriver
->drvwrap
.for_devices
= 1;
878 new_udriver
->drvwrap
.driver
.name
= new_udriver
->name
;
879 new_udriver
->drvwrap
.driver
.bus
= &usb_bus_type
;
880 new_udriver
->drvwrap
.driver
.probe
= usb_probe_device
;
881 new_udriver
->drvwrap
.driver
.remove
= usb_unbind_device
;
882 new_udriver
->drvwrap
.driver
.owner
= owner
;
884 retval
= driver_register(&new_udriver
->drvwrap
.driver
);
887 pr_info("%s: registered new device driver %s\n",
888 usbcore_name
, new_udriver
->name
);
890 printk(KERN_ERR
"%s: error %d registering device "
892 usbcore_name
, retval
, new_udriver
->name
);
896 EXPORT_SYMBOL_GPL(usb_register_device_driver
);
899 * usb_deregister_device_driver - unregister a USB device (not interface) driver
900 * @udriver: USB operations of the device driver to unregister
901 * Context: must be able to sleep
903 * Unlinks the specified driver from the internal USB driver list.
905 void usb_deregister_device_driver(struct usb_device_driver
*udriver
)
907 pr_info("%s: deregistering device driver %s\n",
908 usbcore_name
, udriver
->name
);
910 driver_unregister(&udriver
->drvwrap
.driver
);
912 EXPORT_SYMBOL_GPL(usb_deregister_device_driver
);
915 * usb_register_driver - register a USB interface driver
916 * @new_driver: USB operations for the interface driver
917 * @owner: module owner of this driver.
918 * @mod_name: module name string
920 * Registers a USB interface driver with the USB core. The list of
921 * unattached interfaces will be rescanned whenever a new driver is
922 * added, allowing the new driver to attach to any recognized interfaces.
924 * Return: A negative error code on failure and 0 on success.
926 * NOTE: if you want your driver to use the USB major number, you must call
927 * usb_register_dev() to enable that functionality. This function no longer
928 * takes care of that.
930 int usb_register_driver(struct usb_driver
*new_driver
, struct module
*owner
,
931 const char *mod_name
)
938 new_driver
->drvwrap
.for_devices
= 0;
939 new_driver
->drvwrap
.driver
.name
= new_driver
->name
;
940 new_driver
->drvwrap
.driver
.bus
= &usb_bus_type
;
941 new_driver
->drvwrap
.driver
.probe
= usb_probe_interface
;
942 new_driver
->drvwrap
.driver
.remove
= usb_unbind_interface
;
943 new_driver
->drvwrap
.driver
.owner
= owner
;
944 new_driver
->drvwrap
.driver
.mod_name
= mod_name
;
945 spin_lock_init(&new_driver
->dynids
.lock
);
946 INIT_LIST_HEAD(&new_driver
->dynids
.list
);
948 retval
= driver_register(&new_driver
->drvwrap
.driver
);
952 retval
= usb_create_newid_files(new_driver
);
956 pr_info("%s: registered new interface driver %s\n",
957 usbcore_name
, new_driver
->name
);
963 driver_unregister(&new_driver
->drvwrap
.driver
);
965 printk(KERN_ERR
"%s: error %d registering interface "
967 usbcore_name
, retval
, new_driver
->name
);
970 EXPORT_SYMBOL_GPL(usb_register_driver
);
973 * usb_deregister - unregister a USB interface driver
974 * @driver: USB operations of the interface driver to unregister
975 * Context: must be able to sleep
977 * Unlinks the specified driver from the internal USB driver list.
979 * NOTE: If you called usb_register_dev(), you still need to call
980 * usb_deregister_dev() to clean up your driver's allocated minor numbers,
981 * this * call will no longer do it for you.
983 void usb_deregister(struct usb_driver
*driver
)
985 pr_info("%s: deregistering interface driver %s\n",
986 usbcore_name
, driver
->name
);
988 usb_remove_newid_files(driver
);
989 driver_unregister(&driver
->drvwrap
.driver
);
990 usb_free_dynids(driver
);
992 EXPORT_SYMBOL_GPL(usb_deregister
);
994 /* Forced unbinding of a USB interface driver, either because
995 * it doesn't support pre_reset/post_reset/reset_resume or
996 * because it doesn't support suspend/resume.
998 * The caller must hold @intf's device's lock, but not @intf's lock.
1000 void usb_forced_unbind_intf(struct usb_interface
*intf
)
1002 struct usb_driver
*driver
= to_usb_driver(intf
->dev
.driver
);
1004 dev_dbg(&intf
->dev
, "forced unbind\n");
1005 usb_driver_release_interface(driver
, intf
);
1007 /* Mark the interface for later rebinding */
1008 intf
->needs_binding
= 1;
1012 * Unbind drivers for @udev's marked interfaces. These interfaces have
1013 * the needs_binding flag set, for example by usb_resume_interface().
1015 * The caller must hold @udev's device lock.
1017 static void unbind_marked_interfaces(struct usb_device
*udev
)
1019 struct usb_host_config
*config
;
1021 struct usb_interface
*intf
;
1023 config
= udev
->actconfig
;
1025 for (i
= 0; i
< config
->desc
.bNumInterfaces
; ++i
) {
1026 intf
= config
->interface
[i
];
1027 if (intf
->dev
.driver
&& intf
->needs_binding
)
1028 usb_forced_unbind_intf(intf
);
1033 /* Delayed forced unbinding of a USB interface driver and scan
1036 * The caller must hold @intf's device's lock, but not @intf's lock.
1038 * Note: Rebinds will be skipped if a system sleep transition is in
1039 * progress and the PM "complete" callback hasn't occurred yet.
1041 static void usb_rebind_intf(struct usb_interface
*intf
)
1045 /* Delayed unbind of an existing driver */
1046 if (intf
->dev
.driver
)
1047 usb_forced_unbind_intf(intf
);
1049 /* Try to rebind the interface */
1050 if (!intf
->dev
.power
.is_prepared
) {
1051 intf
->needs_binding
= 0;
1052 rc
= device_attach(&intf
->dev
);
1054 dev_warn(&intf
->dev
, "rebind failed: %d\n", rc
);
1059 * Rebind drivers to @udev's marked interfaces. These interfaces have
1060 * the needs_binding flag set.
1062 * The caller must hold @udev's device lock.
1064 static void rebind_marked_interfaces(struct usb_device
*udev
)
1066 struct usb_host_config
*config
;
1068 struct usb_interface
*intf
;
1070 config
= udev
->actconfig
;
1072 for (i
= 0; i
< config
->desc
.bNumInterfaces
; ++i
) {
1073 intf
= config
->interface
[i
];
1074 if (intf
->needs_binding
)
1075 usb_rebind_intf(intf
);
1081 * Unbind all of @udev's marked interfaces and then rebind all of them.
1082 * This ordering is necessary because some drivers claim several interfaces
1083 * when they are first probed.
1085 * The caller must hold @udev's device lock.
1087 void usb_unbind_and_rebind_marked_interfaces(struct usb_device
*udev
)
1089 unbind_marked_interfaces(udev
);
1090 rebind_marked_interfaces(udev
);
1095 /* Unbind drivers for @udev's interfaces that don't support suspend/resume
1096 * There is no check for reset_resume here because it can be determined
1097 * only during resume whether reset_resume is needed.
1099 * The caller must hold @udev's device lock.
1101 static void unbind_no_pm_drivers_interfaces(struct usb_device
*udev
)
1103 struct usb_host_config
*config
;
1105 struct usb_interface
*intf
;
1106 struct usb_driver
*drv
;
1108 config
= udev
->actconfig
;
1110 for (i
= 0; i
< config
->desc
.bNumInterfaces
; ++i
) {
1111 intf
= config
->interface
[i
];
1113 if (intf
->dev
.driver
) {
1114 drv
= to_usb_driver(intf
->dev
.driver
);
1115 if (!drv
->suspend
|| !drv
->resume
)
1116 usb_forced_unbind_intf(intf
);
1122 static int usb_suspend_device(struct usb_device
*udev
, pm_message_t msg
)
1124 struct usb_device_driver
*udriver
;
1127 if (udev
->state
== USB_STATE_NOTATTACHED
||
1128 udev
->state
== USB_STATE_SUSPENDED
)
1131 /* For devices that don't have a driver, we do a generic suspend. */
1132 if (udev
->dev
.driver
)
1133 udriver
= to_usb_device_driver(udev
->dev
.driver
);
1135 udev
->do_remote_wakeup
= 0;
1136 udriver
= &usb_generic_driver
;
1138 status
= udriver
->suspend(udev
, msg
);
1141 dev_vdbg(&udev
->dev
, "%s: status %d\n", __func__
, status
);
1145 static int usb_resume_device(struct usb_device
*udev
, pm_message_t msg
)
1147 struct usb_device_driver
*udriver
;
1150 if (udev
->state
== USB_STATE_NOTATTACHED
)
1153 /* Can't resume it if it doesn't have a driver. */
1154 if (udev
->dev
.driver
== NULL
) {
1159 /* Non-root devices on a full/low-speed bus must wait for their
1160 * companion high-speed root hub, in case a handoff is needed.
1162 if (!PMSG_IS_AUTO(msg
) && udev
->parent
&& udev
->bus
->hs_companion
)
1163 device_pm_wait_for_dev(&udev
->dev
,
1164 &udev
->bus
->hs_companion
->root_hub
->dev
);
1166 if (udev
->quirks
& USB_QUIRK_RESET_RESUME
)
1167 udev
->reset_resume
= 1;
1169 udriver
= to_usb_device_driver(udev
->dev
.driver
);
1170 status
= udriver
->resume(udev
, msg
);
1173 dev_vdbg(&udev
->dev
, "%s: status %d\n", __func__
, status
);
1177 static int usb_suspend_interface(struct usb_device
*udev
,
1178 struct usb_interface
*intf
, pm_message_t msg
)
1180 struct usb_driver
*driver
;
1183 if (udev
->state
== USB_STATE_NOTATTACHED
||
1184 intf
->condition
== USB_INTERFACE_UNBOUND
)
1186 driver
= to_usb_driver(intf
->dev
.driver
);
1188 /* at this time we know the driver supports suspend */
1189 status
= driver
->suspend(intf
, msg
);
1190 if (status
&& !PMSG_IS_AUTO(msg
))
1191 dev_err(&intf
->dev
, "suspend error %d\n", status
);
1194 dev_vdbg(&intf
->dev
, "%s: status %d\n", __func__
, status
);
1198 static int usb_resume_interface(struct usb_device
*udev
,
1199 struct usb_interface
*intf
, pm_message_t msg
, int reset_resume
)
1201 struct usb_driver
*driver
;
1204 if (udev
->state
== USB_STATE_NOTATTACHED
)
1207 /* Don't let autoresume interfere with unbinding */
1208 if (intf
->condition
== USB_INTERFACE_UNBINDING
)
1211 /* Can't resume it if it doesn't have a driver. */
1212 if (intf
->condition
== USB_INTERFACE_UNBOUND
) {
1214 /* Carry out a deferred switch to altsetting 0 */
1215 if (intf
->needs_altsetting0
&& !intf
->dev
.power
.is_prepared
) {
1216 usb_set_interface(udev
, intf
->altsetting
[0].
1217 desc
.bInterfaceNumber
, 0);
1218 intf
->needs_altsetting0
= 0;
1223 /* Don't resume if the interface is marked for rebinding */
1224 if (intf
->needs_binding
)
1226 driver
= to_usb_driver(intf
->dev
.driver
);
1229 if (driver
->reset_resume
) {
1230 status
= driver
->reset_resume(intf
);
1232 dev_err(&intf
->dev
, "%s error %d\n",
1233 "reset_resume", status
);
1235 intf
->needs_binding
= 1;
1236 dev_dbg(&intf
->dev
, "no reset_resume for driver %s?\n",
1240 status
= driver
->resume(intf
);
1242 dev_err(&intf
->dev
, "resume error %d\n", status
);
1246 dev_vdbg(&intf
->dev
, "%s: status %d\n", __func__
, status
);
1248 /* Later we will unbind the driver and/or reprobe, if necessary */
1253 * usb_suspend_both - suspend a USB device and its interfaces
1254 * @udev: the usb_device to suspend
1255 * @msg: Power Management message describing this state transition
1257 * This is the central routine for suspending USB devices. It calls the
1258 * suspend methods for all the interface drivers in @udev and then calls
1259 * the suspend method for @udev itself. When the routine is called in
1260 * autosuspend, if an error occurs at any stage, all the interfaces
1261 * which were suspended are resumed so that they remain in the same
1262 * state as the device, but when called from system sleep, all error
1263 * from suspend methods of interfaces and the non-root-hub device itself
1264 * are simply ignored, so all suspended interfaces are only resumed
1265 * to the device's state when @udev is root-hub and its suspend method
1268 * Autosuspend requests originating from a child device or an interface
1269 * driver may be made without the protection of @udev's device lock, but
1270 * all other suspend calls will hold the lock. Usbcore will insure that
1271 * method calls do not arrive during bind, unbind, or reset operations.
1272 * However drivers must be prepared to handle suspend calls arriving at
1273 * unpredictable times.
1275 * This routine can run only in process context.
1277 * Return: 0 if the suspend succeeded.
1279 static int usb_suspend_both(struct usb_device
*udev
, pm_message_t msg
)
1283 struct usb_interface
*intf
;
1285 if (udev
->state
== USB_STATE_NOTATTACHED
||
1286 udev
->state
== USB_STATE_SUSPENDED
)
1289 /* Suspend all the interfaces and then udev itself */
1290 if (udev
->actconfig
) {
1291 n
= udev
->actconfig
->desc
.bNumInterfaces
;
1292 for (i
= n
- 1; i
>= 0; --i
) {
1293 intf
= udev
->actconfig
->interface
[i
];
1294 status
= usb_suspend_interface(udev
, intf
, msg
);
1296 /* Ignore errors during system sleep transitions */
1297 if (!PMSG_IS_AUTO(msg
))
1304 status
= usb_suspend_device(udev
, msg
);
1307 * Ignore errors from non-root-hub devices during
1308 * system sleep transitions. For the most part,
1309 * these devices should go to low power anyway when
1310 * the entire bus is suspended.
1312 if (udev
->parent
&& !PMSG_IS_AUTO(msg
))
1316 /* If the suspend failed, resume interfaces that did get suspended */
1318 if (udev
->actconfig
) {
1319 msg
.event
^= (PM_EVENT_SUSPEND
| PM_EVENT_RESUME
);
1321 intf
= udev
->actconfig
->interface
[i
];
1322 usb_resume_interface(udev
, intf
, msg
, 0);
1326 /* If the suspend succeeded then prevent any more URB submissions
1327 * and flush any outstanding URBs.
1330 udev
->can_submit
= 0;
1331 for (i
= 0; i
< 16; ++i
) {
1332 usb_hcd_flush_endpoint(udev
, udev
->ep_out
[i
]);
1333 usb_hcd_flush_endpoint(udev
, udev
->ep_in
[i
]);
1338 dev_vdbg(&udev
->dev
, "%s: status %d\n", __func__
, status
);
1343 * usb_resume_both - resume a USB device and its interfaces
1344 * @udev: the usb_device to resume
1345 * @msg: Power Management message describing this state transition
1347 * This is the central routine for resuming USB devices. It calls the
1348 * the resume method for @udev and then calls the resume methods for all
1349 * the interface drivers in @udev.
1351 * Autoresume requests originating from a child device or an interface
1352 * driver may be made without the protection of @udev's device lock, but
1353 * all other resume calls will hold the lock. Usbcore will insure that
1354 * method calls do not arrive during bind, unbind, or reset operations.
1355 * However drivers must be prepared to handle resume calls arriving at
1356 * unpredictable times.
1358 * This routine can run only in process context.
1360 * Return: 0 on success.
1362 static int usb_resume_both(struct usb_device
*udev
, pm_message_t msg
)
1366 struct usb_interface
*intf
;
1368 if (udev
->state
== USB_STATE_NOTATTACHED
) {
1372 udev
->can_submit
= 1;
1374 /* Resume the device */
1375 if (udev
->state
== USB_STATE_SUSPENDED
|| udev
->reset_resume
)
1376 status
= usb_resume_device(udev
, msg
);
1378 /* Resume the interfaces */
1379 if (status
== 0 && udev
->actconfig
) {
1380 for (i
= 0; i
< udev
->actconfig
->desc
.bNumInterfaces
; i
++) {
1381 intf
= udev
->actconfig
->interface
[i
];
1382 usb_resume_interface(udev
, intf
, msg
,
1383 udev
->reset_resume
);
1386 usb_mark_last_busy(udev
);
1389 dev_vdbg(&udev
->dev
, "%s: status %d\n", __func__
, status
);
1391 udev
->reset_resume
= 0;
1395 static void choose_wakeup(struct usb_device
*udev
, pm_message_t msg
)
1399 /* Remote wakeup is needed only when we actually go to sleep.
1400 * For things like FREEZE and QUIESCE, if the device is already
1401 * autosuspended then its current wakeup setting is okay.
1403 if (msg
.event
== PM_EVENT_FREEZE
|| msg
.event
== PM_EVENT_QUIESCE
) {
1404 if (udev
->state
!= USB_STATE_SUSPENDED
)
1405 udev
->do_remote_wakeup
= 0;
1409 /* Enable remote wakeup if it is allowed, even if no interface drivers
1412 w
= device_may_wakeup(&udev
->dev
);
1414 /* If the device is autosuspended with the wrong wakeup setting,
1415 * autoresume now so the setting can be changed.
1417 if (udev
->state
== USB_STATE_SUSPENDED
&& w
!= udev
->do_remote_wakeup
)
1418 pm_runtime_resume(&udev
->dev
);
1419 udev
->do_remote_wakeup
= w
;
1422 /* The device lock is held by the PM core */
1423 int usb_suspend(struct device
*dev
, pm_message_t msg
)
1425 struct usb_device
*udev
= to_usb_device(dev
);
1427 unbind_no_pm_drivers_interfaces(udev
);
1429 /* From now on we are sure all drivers support suspend/resume
1430 * but not necessarily reset_resume()
1431 * so we may still need to unbind and rebind upon resume
1433 choose_wakeup(udev
, msg
);
1434 return usb_suspend_both(udev
, msg
);
1437 /* The device lock is held by the PM core */
1438 int usb_resume_complete(struct device
*dev
)
1440 struct usb_device
*udev
= to_usb_device(dev
);
1442 /* For PM complete calls, all we do is rebind interfaces
1443 * whose needs_binding flag is set
1445 if (udev
->state
!= USB_STATE_NOTATTACHED
)
1446 rebind_marked_interfaces(udev
);
1450 /* The device lock is held by the PM core */
1451 int usb_resume(struct device
*dev
, pm_message_t msg
)
1453 struct usb_device
*udev
= to_usb_device(dev
);
1456 /* For all calls, take the device back to full power and
1457 * tell the PM core in case it was autosuspended previously.
1458 * Unbind the interfaces that will need rebinding later,
1459 * because they fail to support reset_resume.
1460 * (This can't be done in usb_resume_interface()
1461 * above because it doesn't own the right set of locks.)
1463 status
= usb_resume_both(udev
, msg
);
1465 pm_runtime_disable(dev
);
1466 pm_runtime_set_active(dev
);
1467 pm_runtime_enable(dev
);
1468 unbind_marked_interfaces(udev
);
1471 /* Avoid PM error messages for devices disconnected while suspended
1472 * as we'll display regular disconnect messages just a bit later.
1474 if (status
== -ENODEV
|| status
== -ESHUTDOWN
)
1480 * usb_enable_autosuspend - allow a USB device to be autosuspended
1481 * @udev: the USB device which may be autosuspended
1483 * This routine allows @udev to be autosuspended. An autosuspend won't
1484 * take place until the autosuspend_delay has elapsed and all the other
1485 * necessary conditions are satisfied.
1487 * The caller must hold @udev's device lock.
1489 void usb_enable_autosuspend(struct usb_device
*udev
)
1491 pm_runtime_allow(&udev
->dev
);
1493 EXPORT_SYMBOL_GPL(usb_enable_autosuspend
);
1496 * usb_disable_autosuspend - prevent a USB device from being autosuspended
1497 * @udev: the USB device which may not be autosuspended
1499 * This routine prevents @udev from being autosuspended and wakes it up
1500 * if it is already autosuspended.
1502 * The caller must hold @udev's device lock.
1504 void usb_disable_autosuspend(struct usb_device
*udev
)
1506 pm_runtime_forbid(&udev
->dev
);
1508 EXPORT_SYMBOL_GPL(usb_disable_autosuspend
);
1511 * usb_autosuspend_device - delayed autosuspend of a USB device and its interfaces
1512 * @udev: the usb_device to autosuspend
1514 * This routine should be called when a core subsystem is finished using
1515 * @udev and wants to allow it to autosuspend. Examples would be when
1516 * @udev's device file in usbfs is closed or after a configuration change.
1518 * @udev's usage counter is decremented; if it drops to 0 and all the
1519 * interfaces are inactive then a delayed autosuspend will be attempted.
1520 * The attempt may fail (see autosuspend_check()).
1522 * The caller must hold @udev's device lock.
1524 * This routine can run only in process context.
1526 void usb_autosuspend_device(struct usb_device
*udev
)
1530 usb_mark_last_busy(udev
);
1531 status
= pm_runtime_put_sync_autosuspend(&udev
->dev
);
1532 dev_vdbg(&udev
->dev
, "%s: cnt %d -> %d\n",
1533 __func__
, atomic_read(&udev
->dev
.power
.usage_count
),
1538 * usb_autoresume_device - immediately autoresume a USB device and its interfaces
1539 * @udev: the usb_device to autoresume
1541 * This routine should be called when a core subsystem wants to use @udev
1542 * and needs to guarantee that it is not suspended. No autosuspend will
1543 * occur until usb_autosuspend_device() is called. (Note that this will
1544 * not prevent suspend events originating in the PM core.) Examples would
1545 * be when @udev's device file in usbfs is opened or when a remote-wakeup
1546 * request is received.
1548 * @udev's usage counter is incremented to prevent subsequent autosuspends.
1549 * However if the autoresume fails then the usage counter is re-decremented.
1551 * The caller must hold @udev's device lock.
1553 * This routine can run only in process context.
1555 * Return: 0 on success. A negative error code otherwise.
1557 int usb_autoresume_device(struct usb_device
*udev
)
1561 status
= pm_runtime_get_sync(&udev
->dev
);
1563 pm_runtime_put_sync(&udev
->dev
);
1564 dev_vdbg(&udev
->dev
, "%s: cnt %d -> %d\n",
1565 __func__
, atomic_read(&udev
->dev
.power
.usage_count
),
1573 * usb_autopm_put_interface - decrement a USB interface's PM-usage counter
1574 * @intf: the usb_interface whose counter should be decremented
1576 * This routine should be called by an interface driver when it is
1577 * finished using @intf and wants to allow it to autosuspend. A typical
1578 * example would be a character-device driver when its device file is
1581 * The routine decrements @intf's usage counter. When the counter reaches
1582 * 0, a delayed autosuspend request for @intf's device is attempted. The
1583 * attempt may fail (see autosuspend_check()).
1585 * This routine can run only in process context.
1587 void usb_autopm_put_interface(struct usb_interface
*intf
)
1589 struct usb_device
*udev
= interface_to_usbdev(intf
);
1592 usb_mark_last_busy(udev
);
1593 atomic_dec(&intf
->pm_usage_cnt
);
1594 status
= pm_runtime_put_sync(&intf
->dev
);
1595 dev_vdbg(&intf
->dev
, "%s: cnt %d -> %d\n",
1596 __func__
, atomic_read(&intf
->dev
.power
.usage_count
),
1599 EXPORT_SYMBOL_GPL(usb_autopm_put_interface
);
1602 * usb_autopm_put_interface_async - decrement a USB interface's PM-usage counter
1603 * @intf: the usb_interface whose counter should be decremented
1605 * This routine does much the same thing as usb_autopm_put_interface():
1606 * It decrements @intf's usage counter and schedules a delayed
1607 * autosuspend request if the counter is <= 0. The difference is that it
1608 * does not perform any synchronization; callers should hold a private
1609 * lock and handle all synchronization issues themselves.
1611 * Typically a driver would call this routine during an URB's completion
1612 * handler, if no more URBs were pending.
1614 * This routine can run in atomic context.
1616 void usb_autopm_put_interface_async(struct usb_interface
*intf
)
1618 struct usb_device
*udev
= interface_to_usbdev(intf
);
1621 usb_mark_last_busy(udev
);
1622 atomic_dec(&intf
->pm_usage_cnt
);
1623 status
= pm_runtime_put(&intf
->dev
);
1624 dev_vdbg(&intf
->dev
, "%s: cnt %d -> %d\n",
1625 __func__
, atomic_read(&intf
->dev
.power
.usage_count
),
1628 EXPORT_SYMBOL_GPL(usb_autopm_put_interface_async
);
1631 * usb_autopm_put_interface_no_suspend - decrement a USB interface's PM-usage counter
1632 * @intf: the usb_interface whose counter should be decremented
1634 * This routine decrements @intf's usage counter but does not carry out an
1637 * This routine can run in atomic context.
1639 void usb_autopm_put_interface_no_suspend(struct usb_interface
*intf
)
1641 struct usb_device
*udev
= interface_to_usbdev(intf
);
1643 usb_mark_last_busy(udev
);
1644 atomic_dec(&intf
->pm_usage_cnt
);
1645 pm_runtime_put_noidle(&intf
->dev
);
1647 EXPORT_SYMBOL_GPL(usb_autopm_put_interface_no_suspend
);
1650 * usb_autopm_get_interface - increment a USB interface's PM-usage counter
1651 * @intf: the usb_interface whose counter should be incremented
1653 * This routine should be called by an interface driver when it wants to
1654 * use @intf and needs to guarantee that it is not suspended. In addition,
1655 * the routine prevents @intf from being autosuspended subsequently. (Note
1656 * that this will not prevent suspend events originating in the PM core.)
1657 * This prevention will persist until usb_autopm_put_interface() is called
1658 * or @intf is unbound. A typical example would be a character-device
1659 * driver when its device file is opened.
1661 * @intf's usage counter is incremented to prevent subsequent autosuspends.
1662 * However if the autoresume fails then the counter is re-decremented.
1664 * This routine can run only in process context.
1666 * Return: 0 on success.
1668 int usb_autopm_get_interface(struct usb_interface
*intf
)
1672 status
= pm_runtime_get_sync(&intf
->dev
);
1674 pm_runtime_put_sync(&intf
->dev
);
1676 atomic_inc(&intf
->pm_usage_cnt
);
1677 dev_vdbg(&intf
->dev
, "%s: cnt %d -> %d\n",
1678 __func__
, atomic_read(&intf
->dev
.power
.usage_count
),
1684 EXPORT_SYMBOL_GPL(usb_autopm_get_interface
);
1687 * usb_autopm_get_interface_async - increment a USB interface's PM-usage counter
1688 * @intf: the usb_interface whose counter should be incremented
1690 * This routine does much the same thing as
1691 * usb_autopm_get_interface(): It increments @intf's usage counter and
1692 * queues an autoresume request if the device is suspended. The
1693 * differences are that it does not perform any synchronization (callers
1694 * should hold a private lock and handle all synchronization issues
1695 * themselves), and it does not autoresume the device directly (it only
1696 * queues a request). After a successful call, the device may not yet be
1699 * This routine can run in atomic context.
1701 * Return: 0 on success. A negative error code otherwise.
1703 int usb_autopm_get_interface_async(struct usb_interface
*intf
)
1707 status
= pm_runtime_get(&intf
->dev
);
1708 if (status
< 0 && status
!= -EINPROGRESS
)
1709 pm_runtime_put_noidle(&intf
->dev
);
1711 atomic_inc(&intf
->pm_usage_cnt
);
1712 dev_vdbg(&intf
->dev
, "%s: cnt %d -> %d\n",
1713 __func__
, atomic_read(&intf
->dev
.power
.usage_count
),
1715 if (status
> 0 || status
== -EINPROGRESS
)
1719 EXPORT_SYMBOL_GPL(usb_autopm_get_interface_async
);
1722 * usb_autopm_get_interface_no_resume - increment a USB interface's PM-usage counter
1723 * @intf: the usb_interface whose counter should be incremented
1725 * This routine increments @intf's usage counter but does not carry out an
1728 * This routine can run in atomic context.
1730 void usb_autopm_get_interface_no_resume(struct usb_interface
*intf
)
1732 struct usb_device
*udev
= interface_to_usbdev(intf
);
1734 usb_mark_last_busy(udev
);
1735 atomic_inc(&intf
->pm_usage_cnt
);
1736 pm_runtime_get_noresume(&intf
->dev
);
1738 EXPORT_SYMBOL_GPL(usb_autopm_get_interface_no_resume
);
1740 /* Internal routine to check whether we may autosuspend a device. */
1741 static int autosuspend_check(struct usb_device
*udev
)
1744 struct usb_interface
*intf
;
1746 /* Fail if autosuspend is disabled, or any interfaces are in use, or
1747 * any interface drivers require remote wakeup but it isn't available.
1750 if (udev
->actconfig
) {
1751 for (i
= 0; i
< udev
->actconfig
->desc
.bNumInterfaces
; i
++) {
1752 intf
= udev
->actconfig
->interface
[i
];
1754 /* We don't need to check interfaces that are
1755 * disabled for runtime PM. Either they are unbound
1756 * or else their drivers don't support autosuspend
1757 * and so they are permanently active.
1759 if (intf
->dev
.power
.disable_depth
)
1761 if (atomic_read(&intf
->dev
.power
.usage_count
) > 0)
1763 w
|= intf
->needs_remote_wakeup
;
1765 /* Don't allow autosuspend if the device will need
1766 * a reset-resume and any of its interface drivers
1767 * doesn't include support or needs remote wakeup.
1769 if (udev
->quirks
& USB_QUIRK_RESET_RESUME
) {
1770 struct usb_driver
*driver
;
1772 driver
= to_usb_driver(intf
->dev
.driver
);
1773 if (!driver
->reset_resume
||
1774 intf
->needs_remote_wakeup
)
1779 if (w
&& !device_can_wakeup(&udev
->dev
)) {
1780 dev_dbg(&udev
->dev
, "remote wakeup needed for autosuspend\n");
1785 * If the device is a direct child of the root hub and the HCD
1786 * doesn't handle wakeup requests, don't allow autosuspend when
1789 if (w
&& udev
->parent
== udev
->bus
->root_hub
&&
1790 bus_to_hcd(udev
->bus
)->cant_recv_wakeups
) {
1791 dev_dbg(&udev
->dev
, "HCD doesn't handle wakeup requests\n");
1795 udev
->do_remote_wakeup
= w
;
1799 int usb_runtime_suspend(struct device
*dev
)
1801 struct usb_device
*udev
= to_usb_device(dev
);
1804 /* A USB device can be suspended if it passes the various autosuspend
1805 * checks. Runtime suspend for a USB device means suspending all the
1806 * interfaces and then the device itself.
1808 if (autosuspend_check(udev
) != 0)
1811 status
= usb_suspend_both(udev
, PMSG_AUTO_SUSPEND
);
1813 /* Allow a retry if autosuspend failed temporarily */
1814 if (status
== -EAGAIN
|| status
== -EBUSY
)
1815 usb_mark_last_busy(udev
);
1818 * The PM core reacts badly unless the return code is 0,
1819 * -EAGAIN, or -EBUSY, so always return -EBUSY on an error
1820 * (except for root hubs, because they don't suspend through
1821 * an upstream port like other USB devices).
1823 if (status
!= 0 && udev
->parent
)
1828 int usb_runtime_resume(struct device
*dev
)
1830 struct usb_device
*udev
= to_usb_device(dev
);
1833 /* Runtime resume for a USB device means resuming both the device
1834 * and all its interfaces.
1836 status
= usb_resume_both(udev
, PMSG_AUTO_RESUME
);
1840 int usb_runtime_idle(struct device
*dev
)
1842 struct usb_device
*udev
= to_usb_device(dev
);
1844 /* An idle USB device can be suspended if it passes the various
1845 * autosuspend checks.
1847 if (autosuspend_check(udev
) == 0)
1848 pm_runtime_autosuspend(dev
);
1849 /* Tell the core not to suspend it, though. */
1853 int usb_set_usb2_hardware_lpm(struct usb_device
*udev
, int enable
)
1855 struct usb_hcd
*hcd
= bus_to_hcd(udev
->bus
);
1858 if (enable
&& !udev
->usb2_hw_lpm_allowed
)
1861 if (hcd
->driver
->set_usb2_hw_lpm
) {
1862 ret
= hcd
->driver
->set_usb2_hw_lpm(hcd
, udev
, enable
);
1864 udev
->usb2_hw_lpm_enabled
= enable
;
1870 #endif /* CONFIG_PM */
1872 struct bus_type usb_bus_type
= {
1874 .match
= usb_device_match
,
1875 .uevent
= usb_uevent
,