Linux 4.19.133
[linux/fpc-iii.git] / drivers / usb / core / driver.c
blob3255b2bb0fd56d721858ee5bae0d545be4df7b16
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3 * drivers/usb/driver.c - most of the driver model stuff for usb
5 * (C) Copyright 2005 Greg Kroah-Hartman <gregkh@suse.de>
7 * based on drivers/usb/usb.c which had the following copyrights:
8 * (C) Copyright Linus Torvalds 1999
9 * (C) Copyright Johannes Erdfelt 1999-2001
10 * (C) Copyright Andreas Gal 1999
11 * (C) Copyright Gregory P. Smith 1999
12 * (C) Copyright Deti Fliegl 1999 (new USB architecture)
13 * (C) Copyright Randy Dunlap 2000
14 * (C) Copyright David Brownell 2000-2004
15 * (C) Copyright Yggdrasil Computing, Inc. 2000
16 * (usb_device_id matching changes by Adam J. Richter)
17 * (C) Copyright Greg Kroah-Hartman 2002-2003
19 * Released under the GPLv2 only.
21 * NOTE! This is not actually a driver at all, rather this is
22 * just a collection of helper routines that implement the
23 * matching, probing, releasing, suspending and resuming for
24 * real drivers.
28 #include <linux/device.h>
29 #include <linux/slab.h>
30 #include <linux/export.h>
31 #include <linux/usb.h>
32 #include <linux/usb/quirks.h>
33 #include <linux/usb/hcd.h>
35 #include "usb.h"
39 * Adds a new dynamic USBdevice ID to this driver,
40 * and cause the driver to probe for all devices again.
42 ssize_t usb_store_new_id(struct usb_dynids *dynids,
43 const struct usb_device_id *id_table,
44 struct device_driver *driver,
45 const char *buf, size_t count)
47 struct usb_dynid *dynid;
48 u32 idVendor = 0;
49 u32 idProduct = 0;
50 unsigned int bInterfaceClass = 0;
51 u32 refVendor, refProduct;
52 int fields = 0;
53 int retval = 0;
55 fields = sscanf(buf, "%x %x %x %x %x", &idVendor, &idProduct,
56 &bInterfaceClass, &refVendor, &refProduct);
57 if (fields < 2)
58 return -EINVAL;
60 dynid = kzalloc(sizeof(*dynid), GFP_KERNEL);
61 if (!dynid)
62 return -ENOMEM;
64 INIT_LIST_HEAD(&dynid->node);
65 dynid->id.idVendor = idVendor;
66 dynid->id.idProduct = idProduct;
67 dynid->id.match_flags = USB_DEVICE_ID_MATCH_DEVICE;
68 if (fields > 2 && bInterfaceClass) {
69 if (bInterfaceClass > 255) {
70 retval = -EINVAL;
71 goto fail;
74 dynid->id.bInterfaceClass = (u8)bInterfaceClass;
75 dynid->id.match_flags |= USB_DEVICE_ID_MATCH_INT_CLASS;
78 if (fields > 4) {
79 const struct usb_device_id *id = id_table;
81 if (!id) {
82 retval = -ENODEV;
83 goto fail;
86 for (; id->match_flags; id++)
87 if (id->idVendor == refVendor && id->idProduct == refProduct)
88 break;
90 if (id->match_flags) {
91 dynid->id.driver_info = id->driver_info;
92 } else {
93 retval = -ENODEV;
94 goto fail;
98 spin_lock(&dynids->lock);
99 list_add_tail(&dynid->node, &dynids->list);
100 spin_unlock(&dynids->lock);
102 retval = driver_attach(driver);
104 if (retval)
105 return retval;
106 return count;
108 fail:
109 kfree(dynid);
110 return retval;
112 EXPORT_SYMBOL_GPL(usb_store_new_id);
114 ssize_t usb_show_dynids(struct usb_dynids *dynids, char *buf)
116 struct usb_dynid *dynid;
117 size_t count = 0;
119 list_for_each_entry(dynid, &dynids->list, node)
120 if (dynid->id.bInterfaceClass != 0)
121 count += scnprintf(&buf[count], PAGE_SIZE - count, "%04x %04x %02x\n",
122 dynid->id.idVendor, dynid->id.idProduct,
123 dynid->id.bInterfaceClass);
124 else
125 count += scnprintf(&buf[count], PAGE_SIZE - count, "%04x %04x\n",
126 dynid->id.idVendor, dynid->id.idProduct);
127 return count;
129 EXPORT_SYMBOL_GPL(usb_show_dynids);
131 static ssize_t new_id_show(struct device_driver *driver, char *buf)
133 struct usb_driver *usb_drv = to_usb_driver(driver);
135 return usb_show_dynids(&usb_drv->dynids, buf);
138 static ssize_t new_id_store(struct device_driver *driver,
139 const char *buf, size_t count)
141 struct usb_driver *usb_drv = to_usb_driver(driver);
143 return usb_store_new_id(&usb_drv->dynids, usb_drv->id_table, driver, buf, count);
145 static DRIVER_ATTR_RW(new_id);
148 * Remove a USB device ID from this driver
150 static ssize_t remove_id_store(struct device_driver *driver, const char *buf,
151 size_t count)
153 struct usb_dynid *dynid, *n;
154 struct usb_driver *usb_driver = to_usb_driver(driver);
155 u32 idVendor;
156 u32 idProduct;
157 int fields;
159 fields = sscanf(buf, "%x %x", &idVendor, &idProduct);
160 if (fields < 2)
161 return -EINVAL;
163 spin_lock(&usb_driver->dynids.lock);
164 list_for_each_entry_safe(dynid, n, &usb_driver->dynids.list, node) {
165 struct usb_device_id *id = &dynid->id;
167 if ((id->idVendor == idVendor) &&
168 (id->idProduct == idProduct)) {
169 list_del(&dynid->node);
170 kfree(dynid);
171 break;
174 spin_unlock(&usb_driver->dynids.lock);
175 return count;
178 static ssize_t remove_id_show(struct device_driver *driver, char *buf)
180 return new_id_show(driver, buf);
182 static DRIVER_ATTR_RW(remove_id);
184 static int usb_create_newid_files(struct usb_driver *usb_drv)
186 int error = 0;
188 if (usb_drv->no_dynamic_id)
189 goto exit;
191 if (usb_drv->probe != NULL) {
192 error = driver_create_file(&usb_drv->drvwrap.driver,
193 &driver_attr_new_id);
194 if (error == 0) {
195 error = driver_create_file(&usb_drv->drvwrap.driver,
196 &driver_attr_remove_id);
197 if (error)
198 driver_remove_file(&usb_drv->drvwrap.driver,
199 &driver_attr_new_id);
202 exit:
203 return error;
206 static void usb_remove_newid_files(struct usb_driver *usb_drv)
208 if (usb_drv->no_dynamic_id)
209 return;
211 if (usb_drv->probe != NULL) {
212 driver_remove_file(&usb_drv->drvwrap.driver,
213 &driver_attr_remove_id);
214 driver_remove_file(&usb_drv->drvwrap.driver,
215 &driver_attr_new_id);
219 static void usb_free_dynids(struct usb_driver *usb_drv)
221 struct usb_dynid *dynid, *n;
223 spin_lock(&usb_drv->dynids.lock);
224 list_for_each_entry_safe(dynid, n, &usb_drv->dynids.list, node) {
225 list_del(&dynid->node);
226 kfree(dynid);
228 spin_unlock(&usb_drv->dynids.lock);
231 static const struct usb_device_id *usb_match_dynamic_id(struct usb_interface *intf,
232 struct usb_driver *drv)
234 struct usb_dynid *dynid;
236 spin_lock(&drv->dynids.lock);
237 list_for_each_entry(dynid, &drv->dynids.list, node) {
238 if (usb_match_one_id(intf, &dynid->id)) {
239 spin_unlock(&drv->dynids.lock);
240 return &dynid->id;
243 spin_unlock(&drv->dynids.lock);
244 return NULL;
248 /* called from driver core with dev locked */
249 static int usb_probe_device(struct device *dev)
251 struct usb_device_driver *udriver = to_usb_device_driver(dev->driver);
252 struct usb_device *udev = to_usb_device(dev);
253 int error = 0;
255 dev_dbg(dev, "%s\n", __func__);
257 /* TODO: Add real matching code */
259 /* The device should always appear to be in use
260 * unless the driver supports autosuspend.
262 if (!udriver->supports_autosuspend)
263 error = usb_autoresume_device(udev);
265 if (!error)
266 error = udriver->probe(udev);
267 return error;
270 /* called from driver core with dev locked */
271 static int usb_unbind_device(struct device *dev)
273 struct usb_device *udev = to_usb_device(dev);
274 struct usb_device_driver *udriver = to_usb_device_driver(dev->driver);
276 udriver->disconnect(udev);
277 if (!udriver->supports_autosuspend)
278 usb_autosuspend_device(udev);
279 return 0;
282 /* called from driver core with dev locked */
283 static int usb_probe_interface(struct device *dev)
285 struct usb_driver *driver = to_usb_driver(dev->driver);
286 struct usb_interface *intf = to_usb_interface(dev);
287 struct usb_device *udev = interface_to_usbdev(intf);
288 const struct usb_device_id *id;
289 int error = -ENODEV;
290 int lpm_disable_error = -ENODEV;
292 dev_dbg(dev, "%s\n", __func__);
294 intf->needs_binding = 0;
296 if (usb_device_is_owned(udev))
297 return error;
299 if (udev->authorized == 0) {
300 dev_err(&intf->dev, "Device is not authorized for usage\n");
301 return error;
302 } else if (intf->authorized == 0) {
303 dev_err(&intf->dev, "Interface %d is not authorized for usage\n",
304 intf->altsetting->desc.bInterfaceNumber);
305 return error;
308 id = usb_match_dynamic_id(intf, driver);
309 if (!id)
310 id = usb_match_id(intf, driver->id_table);
311 if (!id)
312 return error;
314 dev_dbg(dev, "%s - got id\n", __func__);
316 error = usb_autoresume_device(udev);
317 if (error)
318 return error;
320 intf->condition = USB_INTERFACE_BINDING;
322 /* Probed interfaces are initially active. They are
323 * runtime-PM-enabled only if the driver has autosuspend support.
324 * They are sensitive to their children's power states.
326 pm_runtime_set_active(dev);
327 pm_suspend_ignore_children(dev, false);
328 if (driver->supports_autosuspend)
329 pm_runtime_enable(dev);
331 /* If the new driver doesn't allow hub-initiated LPM, and we can't
332 * disable hub-initiated LPM, then fail the probe.
334 * Otherwise, leaving LPM enabled should be harmless, because the
335 * endpoint intervals should remain the same, and the U1/U2 timeouts
336 * should remain the same.
338 * If we need to install alt setting 0 before probe, or another alt
339 * setting during probe, that should also be fine. usb_set_interface()
340 * will attempt to disable LPM, and fail if it can't disable it.
342 if (driver->disable_hub_initiated_lpm) {
343 lpm_disable_error = usb_unlocked_disable_lpm(udev);
344 if (lpm_disable_error) {
345 dev_err(&intf->dev, "%s Failed to disable LPM for driver %s\n",
346 __func__, driver->name);
347 error = lpm_disable_error;
348 goto err;
352 /* Carry out a deferred switch to altsetting 0 */
353 if (intf->needs_altsetting0) {
354 error = usb_set_interface(udev, intf->altsetting[0].
355 desc.bInterfaceNumber, 0);
356 if (error < 0)
357 goto err;
358 intf->needs_altsetting0 = 0;
361 error = driver->probe(intf, id);
362 if (error)
363 goto err;
365 intf->condition = USB_INTERFACE_BOUND;
367 /* If the LPM disable succeeded, balance the ref counts. */
368 if (!lpm_disable_error)
369 usb_unlocked_enable_lpm(udev);
371 usb_autosuspend_device(udev);
372 return error;
374 err:
375 usb_set_intfdata(intf, NULL);
376 intf->needs_remote_wakeup = 0;
377 intf->condition = USB_INTERFACE_UNBOUND;
379 /* If the LPM disable succeeded, balance the ref counts. */
380 if (!lpm_disable_error)
381 usb_unlocked_enable_lpm(udev);
383 /* Unbound interfaces are always runtime-PM-disabled and -suspended */
384 if (driver->supports_autosuspend)
385 pm_runtime_disable(dev);
386 pm_runtime_set_suspended(dev);
388 usb_autosuspend_device(udev);
389 return error;
392 /* called from driver core with dev locked */
393 static int usb_unbind_interface(struct device *dev)
395 struct usb_driver *driver = to_usb_driver(dev->driver);
396 struct usb_interface *intf = to_usb_interface(dev);
397 struct usb_host_endpoint *ep, **eps = NULL;
398 struct usb_device *udev;
399 int i, j, error, r;
400 int lpm_disable_error = -ENODEV;
402 intf->condition = USB_INTERFACE_UNBINDING;
404 /* Autoresume for set_interface call below */
405 udev = interface_to_usbdev(intf);
406 error = usb_autoresume_device(udev);
408 /* If hub-initiated LPM policy may change, attempt to disable LPM until
409 * the driver is unbound. If LPM isn't disabled, that's fine because it
410 * wouldn't be enabled unless all the bound interfaces supported
411 * hub-initiated LPM.
413 if (driver->disable_hub_initiated_lpm)
414 lpm_disable_error = usb_unlocked_disable_lpm(udev);
417 * Terminate all URBs for this interface unless the driver
418 * supports "soft" unbinding and the device is still present.
420 if (!driver->soft_unbind || udev->state == USB_STATE_NOTATTACHED)
421 usb_disable_interface(udev, intf, false);
423 driver->disconnect(intf);
425 /* Free streams */
426 for (i = 0, j = 0; i < intf->cur_altsetting->desc.bNumEndpoints; i++) {
427 ep = &intf->cur_altsetting->endpoint[i];
428 if (ep->streams == 0)
429 continue;
430 if (j == 0) {
431 eps = kmalloc_array(USB_MAXENDPOINTS, sizeof(void *),
432 GFP_KERNEL);
433 if (!eps)
434 break;
436 eps[j++] = ep;
438 if (j) {
439 usb_free_streams(intf, eps, j, GFP_KERNEL);
440 kfree(eps);
443 /* Reset other interface state.
444 * We cannot do a Set-Interface if the device is suspended or
445 * if it is prepared for a system sleep (since installing a new
446 * altsetting means creating new endpoint device entries).
447 * When either of these happens, defer the Set-Interface.
449 if (intf->cur_altsetting->desc.bAlternateSetting == 0) {
450 /* Already in altsetting 0 so skip Set-Interface.
451 * Just re-enable it without affecting the endpoint toggles.
453 usb_enable_interface(udev, intf, false);
454 } else if (!error && !intf->dev.power.is_prepared) {
455 r = usb_set_interface(udev, intf->altsetting[0].
456 desc.bInterfaceNumber, 0);
457 if (r < 0)
458 intf->needs_altsetting0 = 1;
459 } else {
460 intf->needs_altsetting0 = 1;
462 usb_set_intfdata(intf, NULL);
464 intf->condition = USB_INTERFACE_UNBOUND;
465 intf->needs_remote_wakeup = 0;
467 /* Attempt to re-enable USB3 LPM, if the disable succeeded. */
468 if (!lpm_disable_error)
469 usb_unlocked_enable_lpm(udev);
471 /* Unbound interfaces are always runtime-PM-disabled and -suspended */
472 if (driver->supports_autosuspend)
473 pm_runtime_disable(dev);
474 pm_runtime_set_suspended(dev);
476 if (!error)
477 usb_autosuspend_device(udev);
479 return 0;
483 * usb_driver_claim_interface - bind a driver to an interface
484 * @driver: the driver to be bound
485 * @iface: the interface to which it will be bound; must be in the
486 * usb device's active configuration
487 * @priv: driver data associated with that interface
489 * This is used by usb device drivers that need to claim more than one
490 * interface on a device when probing (audio and acm are current examples).
491 * No device driver should directly modify internal usb_interface or
492 * usb_device structure members.
494 * Few drivers should need to use this routine, since the most natural
495 * way to bind to an interface is to return the private data from
496 * the driver's probe() method.
498 * Callers must own the device lock, so driver probe() entries don't need
499 * extra locking, but other call contexts may need to explicitly claim that
500 * lock.
502 * Return: 0 on success.
504 int usb_driver_claim_interface(struct usb_driver *driver,
505 struct usb_interface *iface, void *priv)
507 struct device *dev;
508 struct usb_device *udev;
509 int retval = 0;
511 if (!iface)
512 return -ENODEV;
514 dev = &iface->dev;
515 if (dev->driver)
516 return -EBUSY;
518 /* reject claim if interface is not authorized */
519 if (!iface->authorized)
520 return -ENODEV;
522 udev = interface_to_usbdev(iface);
524 dev->driver = &driver->drvwrap.driver;
525 usb_set_intfdata(iface, priv);
526 iface->needs_binding = 0;
528 iface->condition = USB_INTERFACE_BOUND;
530 /* Claimed interfaces are initially inactive (suspended) and
531 * runtime-PM-enabled, but only if the driver has autosuspend
532 * support. Otherwise they are marked active, to prevent the
533 * device from being autosuspended, but left disabled. In either
534 * case they are sensitive to their children's power states.
536 pm_suspend_ignore_children(dev, false);
537 if (driver->supports_autosuspend)
538 pm_runtime_enable(dev);
539 else
540 pm_runtime_set_active(dev);
542 /* if interface was already added, bind now; else let
543 * the future device_add() bind it, bypassing probe()
545 if (device_is_registered(dev))
546 retval = device_bind_driver(dev);
548 if (retval) {
549 dev->driver = NULL;
550 usb_set_intfdata(iface, NULL);
551 iface->needs_remote_wakeup = 0;
552 iface->condition = USB_INTERFACE_UNBOUND;
555 * Unbound interfaces are always runtime-PM-disabled
556 * and runtime-PM-suspended
558 if (driver->supports_autosuspend)
559 pm_runtime_disable(dev);
560 pm_runtime_set_suspended(dev);
563 return retval;
565 EXPORT_SYMBOL_GPL(usb_driver_claim_interface);
568 * usb_driver_release_interface - unbind a driver from an interface
569 * @driver: the driver to be unbound
570 * @iface: the interface from which it will be unbound
572 * This can be used by drivers to release an interface without waiting
573 * for their disconnect() methods to be called. In typical cases this
574 * also causes the driver disconnect() method to be called.
576 * This call is synchronous, and may not be used in an interrupt context.
577 * Callers must own the device lock, so driver disconnect() entries don't
578 * need extra locking, but other call contexts may need to explicitly claim
579 * that lock.
581 void usb_driver_release_interface(struct usb_driver *driver,
582 struct usb_interface *iface)
584 struct device *dev = &iface->dev;
586 /* this should never happen, don't release something that's not ours */
587 if (!dev->driver || dev->driver != &driver->drvwrap.driver)
588 return;
590 /* don't release from within disconnect() */
591 if (iface->condition != USB_INTERFACE_BOUND)
592 return;
593 iface->condition = USB_INTERFACE_UNBINDING;
595 /* Release via the driver core only if the interface
596 * has already been registered
598 if (device_is_registered(dev)) {
599 device_release_driver(dev);
600 } else {
601 device_lock(dev);
602 usb_unbind_interface(dev);
603 dev->driver = NULL;
604 device_unlock(dev);
607 EXPORT_SYMBOL_GPL(usb_driver_release_interface);
609 /* returns 0 if no match, 1 if match */
610 int usb_match_device(struct usb_device *dev, const struct usb_device_id *id)
612 if ((id->match_flags & USB_DEVICE_ID_MATCH_VENDOR) &&
613 id->idVendor != le16_to_cpu(dev->descriptor.idVendor))
614 return 0;
616 if ((id->match_flags & USB_DEVICE_ID_MATCH_PRODUCT) &&
617 id->idProduct != le16_to_cpu(dev->descriptor.idProduct))
618 return 0;
620 /* No need to test id->bcdDevice_lo != 0, since 0 is never
621 greater than any unsigned number. */
622 if ((id->match_flags & USB_DEVICE_ID_MATCH_DEV_LO) &&
623 (id->bcdDevice_lo > le16_to_cpu(dev->descriptor.bcdDevice)))
624 return 0;
626 if ((id->match_flags & USB_DEVICE_ID_MATCH_DEV_HI) &&
627 (id->bcdDevice_hi < le16_to_cpu(dev->descriptor.bcdDevice)))
628 return 0;
630 if ((id->match_flags & USB_DEVICE_ID_MATCH_DEV_CLASS) &&
631 (id->bDeviceClass != dev->descriptor.bDeviceClass))
632 return 0;
634 if ((id->match_flags & USB_DEVICE_ID_MATCH_DEV_SUBCLASS) &&
635 (id->bDeviceSubClass != dev->descriptor.bDeviceSubClass))
636 return 0;
638 if ((id->match_flags & USB_DEVICE_ID_MATCH_DEV_PROTOCOL) &&
639 (id->bDeviceProtocol != dev->descriptor.bDeviceProtocol))
640 return 0;
642 return 1;
645 /* returns 0 if no match, 1 if match */
646 int usb_match_one_id_intf(struct usb_device *dev,
647 struct usb_host_interface *intf,
648 const struct usb_device_id *id)
650 /* The interface class, subclass, protocol and number should never be
651 * checked for a match if the device class is Vendor Specific,
652 * unless the match record specifies the Vendor ID. */
653 if (dev->descriptor.bDeviceClass == USB_CLASS_VENDOR_SPEC &&
654 !(id->match_flags & USB_DEVICE_ID_MATCH_VENDOR) &&
655 (id->match_flags & (USB_DEVICE_ID_MATCH_INT_CLASS |
656 USB_DEVICE_ID_MATCH_INT_SUBCLASS |
657 USB_DEVICE_ID_MATCH_INT_PROTOCOL |
658 USB_DEVICE_ID_MATCH_INT_NUMBER)))
659 return 0;
661 if ((id->match_flags & USB_DEVICE_ID_MATCH_INT_CLASS) &&
662 (id->bInterfaceClass != intf->desc.bInterfaceClass))
663 return 0;
665 if ((id->match_flags & USB_DEVICE_ID_MATCH_INT_SUBCLASS) &&
666 (id->bInterfaceSubClass != intf->desc.bInterfaceSubClass))
667 return 0;
669 if ((id->match_flags & USB_DEVICE_ID_MATCH_INT_PROTOCOL) &&
670 (id->bInterfaceProtocol != intf->desc.bInterfaceProtocol))
671 return 0;
673 if ((id->match_flags & USB_DEVICE_ID_MATCH_INT_NUMBER) &&
674 (id->bInterfaceNumber != intf->desc.bInterfaceNumber))
675 return 0;
677 return 1;
680 /* returns 0 if no match, 1 if match */
681 int usb_match_one_id(struct usb_interface *interface,
682 const struct usb_device_id *id)
684 struct usb_host_interface *intf;
685 struct usb_device *dev;
687 /* proc_connectinfo in devio.c may call us with id == NULL. */
688 if (id == NULL)
689 return 0;
691 intf = interface->cur_altsetting;
692 dev = interface_to_usbdev(interface);
694 if (!usb_match_device(dev, id))
695 return 0;
697 return usb_match_one_id_intf(dev, intf, id);
699 EXPORT_SYMBOL_GPL(usb_match_one_id);
702 * usb_match_id - find first usb_device_id matching device or interface
703 * @interface: the interface of interest
704 * @id: array of usb_device_id structures, terminated by zero entry
706 * usb_match_id searches an array of usb_device_id's and returns
707 * the first one matching the device or interface, or null.
708 * This is used when binding (or rebinding) a driver to an interface.
709 * Most USB device drivers will use this indirectly, through the usb core,
710 * but some layered driver frameworks use it directly.
711 * These device tables are exported with MODULE_DEVICE_TABLE, through
712 * modutils, to support the driver loading functionality of USB hotplugging.
714 * Return: The first matching usb_device_id, or %NULL.
716 * What Matches:
718 * The "match_flags" element in a usb_device_id controls which
719 * members are used. If the corresponding bit is set, the
720 * value in the device_id must match its corresponding member
721 * in the device or interface descriptor, or else the device_id
722 * does not match.
724 * "driver_info" is normally used only by device drivers,
725 * but you can create a wildcard "matches anything" usb_device_id
726 * as a driver's "modules.usbmap" entry if you provide an id with
727 * only a nonzero "driver_info" field. If you do this, the USB device
728 * driver's probe() routine should use additional intelligence to
729 * decide whether to bind to the specified interface.
731 * What Makes Good usb_device_id Tables:
733 * The match algorithm is very simple, so that intelligence in
734 * driver selection must come from smart driver id records.
735 * Unless you have good reasons to use another selection policy,
736 * provide match elements only in related groups, and order match
737 * specifiers from specific to general. Use the macros provided
738 * for that purpose if you can.
740 * The most specific match specifiers use device descriptor
741 * data. These are commonly used with product-specific matches;
742 * the USB_DEVICE macro lets you provide vendor and product IDs,
743 * and you can also match against ranges of product revisions.
744 * These are widely used for devices with application or vendor
745 * specific bDeviceClass values.
747 * Matches based on device class/subclass/protocol specifications
748 * are slightly more general; use the USB_DEVICE_INFO macro, or
749 * its siblings. These are used with single-function devices
750 * where bDeviceClass doesn't specify that each interface has
751 * its own class.
753 * Matches based on interface class/subclass/protocol are the
754 * most general; they let drivers bind to any interface on a
755 * multiple-function device. Use the USB_INTERFACE_INFO
756 * macro, or its siblings, to match class-per-interface style
757 * devices (as recorded in bInterfaceClass).
759 * Note that an entry created by USB_INTERFACE_INFO won't match
760 * any interface if the device class is set to Vendor-Specific.
761 * This is deliberate; according to the USB spec the meanings of
762 * the interface class/subclass/protocol for these devices are also
763 * vendor-specific, and hence matching against a standard product
764 * class wouldn't work anyway. If you really want to use an
765 * interface-based match for such a device, create a match record
766 * that also specifies the vendor ID. (Unforunately there isn't a
767 * standard macro for creating records like this.)
769 * Within those groups, remember that not all combinations are
770 * meaningful. For example, don't give a product version range
771 * without vendor and product IDs; or specify a protocol without
772 * its associated class and subclass.
774 const struct usb_device_id *usb_match_id(struct usb_interface *interface,
775 const struct usb_device_id *id)
777 /* proc_connectinfo in devio.c may call us with id == NULL. */
778 if (id == NULL)
779 return NULL;
781 /* It is important to check that id->driver_info is nonzero,
782 since an entry that is all zeroes except for a nonzero
783 id->driver_info is the way to create an entry that
784 indicates that the driver want to examine every
785 device and interface. */
786 for (; id->idVendor || id->idProduct || id->bDeviceClass ||
787 id->bInterfaceClass || id->driver_info; id++) {
788 if (usb_match_one_id(interface, id))
789 return id;
792 return NULL;
794 EXPORT_SYMBOL_GPL(usb_match_id);
796 static int usb_device_match(struct device *dev, struct device_driver *drv)
798 /* devices and interfaces are handled separately */
799 if (is_usb_device(dev)) {
801 /* interface drivers never match devices */
802 if (!is_usb_device_driver(drv))
803 return 0;
805 /* TODO: Add real matching code */
806 return 1;
808 } else if (is_usb_interface(dev)) {
809 struct usb_interface *intf;
810 struct usb_driver *usb_drv;
811 const struct usb_device_id *id;
813 /* device drivers never match interfaces */
814 if (is_usb_device_driver(drv))
815 return 0;
817 intf = to_usb_interface(dev);
818 usb_drv = to_usb_driver(drv);
820 id = usb_match_id(intf, usb_drv->id_table);
821 if (id)
822 return 1;
824 id = usb_match_dynamic_id(intf, usb_drv);
825 if (id)
826 return 1;
829 return 0;
832 static int usb_uevent(struct device *dev, struct kobj_uevent_env *env)
834 struct usb_device *usb_dev;
836 if (is_usb_device(dev)) {
837 usb_dev = to_usb_device(dev);
838 } else if (is_usb_interface(dev)) {
839 struct usb_interface *intf = to_usb_interface(dev);
841 usb_dev = interface_to_usbdev(intf);
842 } else {
843 return 0;
846 if (usb_dev->devnum < 0) {
847 /* driver is often null here; dev_dbg() would oops */
848 pr_debug("usb %s: already deleted?\n", dev_name(dev));
849 return -ENODEV;
851 if (!usb_dev->bus) {
852 pr_debug("usb %s: bus removed?\n", dev_name(dev));
853 return -ENODEV;
856 /* per-device configurations are common */
857 if (add_uevent_var(env, "PRODUCT=%x/%x/%x",
858 le16_to_cpu(usb_dev->descriptor.idVendor),
859 le16_to_cpu(usb_dev->descriptor.idProduct),
860 le16_to_cpu(usb_dev->descriptor.bcdDevice)))
861 return -ENOMEM;
863 /* class-based driver binding models */
864 if (add_uevent_var(env, "TYPE=%d/%d/%d",
865 usb_dev->descriptor.bDeviceClass,
866 usb_dev->descriptor.bDeviceSubClass,
867 usb_dev->descriptor.bDeviceProtocol))
868 return -ENOMEM;
870 return 0;
874 * usb_register_device_driver - register a USB device (not interface) driver
875 * @new_udriver: USB operations for the device driver
876 * @owner: module owner of this driver.
878 * Registers a USB device driver with the USB core. The list of
879 * unattached devices will be rescanned whenever a new driver is
880 * added, allowing the new driver to attach to any recognized devices.
882 * Return: A negative error code on failure and 0 on success.
884 int usb_register_device_driver(struct usb_device_driver *new_udriver,
885 struct module *owner)
887 int retval = 0;
889 if (usb_disabled())
890 return -ENODEV;
892 new_udriver->drvwrap.for_devices = 1;
893 new_udriver->drvwrap.driver.name = new_udriver->name;
894 new_udriver->drvwrap.driver.bus = &usb_bus_type;
895 new_udriver->drvwrap.driver.probe = usb_probe_device;
896 new_udriver->drvwrap.driver.remove = usb_unbind_device;
897 new_udriver->drvwrap.driver.owner = owner;
899 retval = driver_register(&new_udriver->drvwrap.driver);
901 if (!retval)
902 pr_info("%s: registered new device driver %s\n",
903 usbcore_name, new_udriver->name);
904 else
905 printk(KERN_ERR "%s: error %d registering device "
906 " driver %s\n",
907 usbcore_name, retval, new_udriver->name);
909 return retval;
911 EXPORT_SYMBOL_GPL(usb_register_device_driver);
914 * usb_deregister_device_driver - unregister a USB device (not interface) driver
915 * @udriver: USB operations of the device driver to unregister
916 * Context: must be able to sleep
918 * Unlinks the specified driver from the internal USB driver list.
920 void usb_deregister_device_driver(struct usb_device_driver *udriver)
922 pr_info("%s: deregistering device driver %s\n",
923 usbcore_name, udriver->name);
925 driver_unregister(&udriver->drvwrap.driver);
927 EXPORT_SYMBOL_GPL(usb_deregister_device_driver);
930 * usb_register_driver - register a USB interface driver
931 * @new_driver: USB operations for the interface driver
932 * @owner: module owner of this driver.
933 * @mod_name: module name string
935 * Registers a USB interface driver with the USB core. The list of
936 * unattached interfaces will be rescanned whenever a new driver is
937 * added, allowing the new driver to attach to any recognized interfaces.
939 * Return: A negative error code on failure and 0 on success.
941 * NOTE: if you want your driver to use the USB major number, you must call
942 * usb_register_dev() to enable that functionality. This function no longer
943 * takes care of that.
945 int usb_register_driver(struct usb_driver *new_driver, struct module *owner,
946 const char *mod_name)
948 int retval = 0;
950 if (usb_disabled())
951 return -ENODEV;
953 new_driver->drvwrap.for_devices = 0;
954 new_driver->drvwrap.driver.name = new_driver->name;
955 new_driver->drvwrap.driver.bus = &usb_bus_type;
956 new_driver->drvwrap.driver.probe = usb_probe_interface;
957 new_driver->drvwrap.driver.remove = usb_unbind_interface;
958 new_driver->drvwrap.driver.owner = owner;
959 new_driver->drvwrap.driver.mod_name = mod_name;
960 spin_lock_init(&new_driver->dynids.lock);
961 INIT_LIST_HEAD(&new_driver->dynids.list);
963 retval = driver_register(&new_driver->drvwrap.driver);
964 if (retval)
965 goto out;
967 retval = usb_create_newid_files(new_driver);
968 if (retval)
969 goto out_newid;
971 pr_info("%s: registered new interface driver %s\n",
972 usbcore_name, new_driver->name);
974 out:
975 return retval;
977 out_newid:
978 driver_unregister(&new_driver->drvwrap.driver);
980 printk(KERN_ERR "%s: error %d registering interface "
981 " driver %s\n",
982 usbcore_name, retval, new_driver->name);
983 goto out;
985 EXPORT_SYMBOL_GPL(usb_register_driver);
988 * usb_deregister - unregister a USB interface driver
989 * @driver: USB operations of the interface driver to unregister
990 * Context: must be able to sleep
992 * Unlinks the specified driver from the internal USB driver list.
994 * NOTE: If you called usb_register_dev(), you still need to call
995 * usb_deregister_dev() to clean up your driver's allocated minor numbers,
996 * this * call will no longer do it for you.
998 void usb_deregister(struct usb_driver *driver)
1000 pr_info("%s: deregistering interface driver %s\n",
1001 usbcore_name, driver->name);
1003 usb_remove_newid_files(driver);
1004 driver_unregister(&driver->drvwrap.driver);
1005 usb_free_dynids(driver);
1007 EXPORT_SYMBOL_GPL(usb_deregister);
1009 /* Forced unbinding of a USB interface driver, either because
1010 * it doesn't support pre_reset/post_reset/reset_resume or
1011 * because it doesn't support suspend/resume.
1013 * The caller must hold @intf's device's lock, but not @intf's lock.
1015 void usb_forced_unbind_intf(struct usb_interface *intf)
1017 struct usb_driver *driver = to_usb_driver(intf->dev.driver);
1019 dev_dbg(&intf->dev, "forced unbind\n");
1020 usb_driver_release_interface(driver, intf);
1022 /* Mark the interface for later rebinding */
1023 intf->needs_binding = 1;
1027 * Unbind drivers for @udev's marked interfaces. These interfaces have
1028 * the needs_binding flag set, for example by usb_resume_interface().
1030 * The caller must hold @udev's device lock.
1032 static void unbind_marked_interfaces(struct usb_device *udev)
1034 struct usb_host_config *config;
1035 int i;
1036 struct usb_interface *intf;
1038 config = udev->actconfig;
1039 if (config) {
1040 for (i = 0; i < config->desc.bNumInterfaces; ++i) {
1041 intf = config->interface[i];
1042 if (intf->dev.driver && intf->needs_binding)
1043 usb_forced_unbind_intf(intf);
1048 /* Delayed forced unbinding of a USB interface driver and scan
1049 * for rebinding.
1051 * The caller must hold @intf's device's lock, but not @intf's lock.
1053 * Note: Rebinds will be skipped if a system sleep transition is in
1054 * progress and the PM "complete" callback hasn't occurred yet.
1056 static void usb_rebind_intf(struct usb_interface *intf)
1058 int rc;
1060 /* Delayed unbind of an existing driver */
1061 if (intf->dev.driver)
1062 usb_forced_unbind_intf(intf);
1064 /* Try to rebind the interface */
1065 if (!intf->dev.power.is_prepared) {
1066 intf->needs_binding = 0;
1067 rc = device_attach(&intf->dev);
1068 if (rc < 0 && rc != -EPROBE_DEFER)
1069 dev_warn(&intf->dev, "rebind failed: %d\n", rc);
1074 * Rebind drivers to @udev's marked interfaces. These interfaces have
1075 * the needs_binding flag set.
1077 * The caller must hold @udev's device lock.
1079 static void rebind_marked_interfaces(struct usb_device *udev)
1081 struct usb_host_config *config;
1082 int i;
1083 struct usb_interface *intf;
1085 config = udev->actconfig;
1086 if (config) {
1087 for (i = 0; i < config->desc.bNumInterfaces; ++i) {
1088 intf = config->interface[i];
1089 if (intf->needs_binding)
1090 usb_rebind_intf(intf);
1096 * Unbind all of @udev's marked interfaces and then rebind all of them.
1097 * This ordering is necessary because some drivers claim several interfaces
1098 * when they are first probed.
1100 * The caller must hold @udev's device lock.
1102 void usb_unbind_and_rebind_marked_interfaces(struct usb_device *udev)
1104 unbind_marked_interfaces(udev);
1105 rebind_marked_interfaces(udev);
1108 #ifdef CONFIG_PM
1110 /* Unbind drivers for @udev's interfaces that don't support suspend/resume
1111 * There is no check for reset_resume here because it can be determined
1112 * only during resume whether reset_resume is needed.
1114 * The caller must hold @udev's device lock.
1116 static void unbind_no_pm_drivers_interfaces(struct usb_device *udev)
1118 struct usb_host_config *config;
1119 int i;
1120 struct usb_interface *intf;
1121 struct usb_driver *drv;
1123 config = udev->actconfig;
1124 if (config) {
1125 for (i = 0; i < config->desc.bNumInterfaces; ++i) {
1126 intf = config->interface[i];
1128 if (intf->dev.driver) {
1129 drv = to_usb_driver(intf->dev.driver);
1130 if (!drv->suspend || !drv->resume)
1131 usb_forced_unbind_intf(intf);
1137 static int usb_suspend_device(struct usb_device *udev, pm_message_t msg)
1139 struct usb_device_driver *udriver;
1140 int status = 0;
1142 if (udev->state == USB_STATE_NOTATTACHED ||
1143 udev->state == USB_STATE_SUSPENDED)
1144 goto done;
1146 /* For devices that don't have a driver, we do a generic suspend. */
1147 if (udev->dev.driver)
1148 udriver = to_usb_device_driver(udev->dev.driver);
1149 else {
1150 udev->do_remote_wakeup = 0;
1151 udriver = &usb_generic_driver;
1153 status = udriver->suspend(udev, msg);
1155 done:
1156 dev_vdbg(&udev->dev, "%s: status %d\n", __func__, status);
1157 return status;
1160 static int usb_resume_device(struct usb_device *udev, pm_message_t msg)
1162 struct usb_device_driver *udriver;
1163 int status = 0;
1165 if (udev->state == USB_STATE_NOTATTACHED)
1166 goto done;
1168 /* Can't resume it if it doesn't have a driver. */
1169 if (udev->dev.driver == NULL) {
1170 status = -ENOTCONN;
1171 goto done;
1174 /* Non-root devices on a full/low-speed bus must wait for their
1175 * companion high-speed root hub, in case a handoff is needed.
1177 if (!PMSG_IS_AUTO(msg) && udev->parent && udev->bus->hs_companion)
1178 device_pm_wait_for_dev(&udev->dev,
1179 &udev->bus->hs_companion->root_hub->dev);
1181 if (udev->quirks & USB_QUIRK_RESET_RESUME)
1182 udev->reset_resume = 1;
1184 udriver = to_usb_device_driver(udev->dev.driver);
1185 status = udriver->resume(udev, msg);
1187 done:
1188 dev_vdbg(&udev->dev, "%s: status %d\n", __func__, status);
1189 return status;
1192 static int usb_suspend_interface(struct usb_device *udev,
1193 struct usb_interface *intf, pm_message_t msg)
1195 struct usb_driver *driver;
1196 int status = 0;
1198 if (udev->state == USB_STATE_NOTATTACHED ||
1199 intf->condition == USB_INTERFACE_UNBOUND)
1200 goto done;
1201 driver = to_usb_driver(intf->dev.driver);
1203 /* at this time we know the driver supports suspend */
1204 status = driver->suspend(intf, msg);
1205 if (status && !PMSG_IS_AUTO(msg))
1206 dev_err(&intf->dev, "suspend error %d\n", status);
1208 done:
1209 dev_vdbg(&intf->dev, "%s: status %d\n", __func__, status);
1210 return status;
1213 static int usb_resume_interface(struct usb_device *udev,
1214 struct usb_interface *intf, pm_message_t msg, int reset_resume)
1216 struct usb_driver *driver;
1217 int status = 0;
1219 if (udev->state == USB_STATE_NOTATTACHED)
1220 goto done;
1222 /* Don't let autoresume interfere with unbinding */
1223 if (intf->condition == USB_INTERFACE_UNBINDING)
1224 goto done;
1226 /* Can't resume it if it doesn't have a driver. */
1227 if (intf->condition == USB_INTERFACE_UNBOUND) {
1229 /* Carry out a deferred switch to altsetting 0 */
1230 if (intf->needs_altsetting0 && !intf->dev.power.is_prepared) {
1231 usb_set_interface(udev, intf->altsetting[0].
1232 desc.bInterfaceNumber, 0);
1233 intf->needs_altsetting0 = 0;
1235 goto done;
1238 /* Don't resume if the interface is marked for rebinding */
1239 if (intf->needs_binding)
1240 goto done;
1241 driver = to_usb_driver(intf->dev.driver);
1243 if (reset_resume) {
1244 if (driver->reset_resume) {
1245 status = driver->reset_resume(intf);
1246 if (status)
1247 dev_err(&intf->dev, "%s error %d\n",
1248 "reset_resume", status);
1249 } else {
1250 intf->needs_binding = 1;
1251 dev_dbg(&intf->dev, "no reset_resume for driver %s?\n",
1252 driver->name);
1254 } else {
1255 status = driver->resume(intf);
1256 if (status)
1257 dev_err(&intf->dev, "resume error %d\n", status);
1260 done:
1261 dev_vdbg(&intf->dev, "%s: status %d\n", __func__, status);
1263 /* Later we will unbind the driver and/or reprobe, if necessary */
1264 return status;
1268 * usb_suspend_both - suspend a USB device and its interfaces
1269 * @udev: the usb_device to suspend
1270 * @msg: Power Management message describing this state transition
1272 * This is the central routine for suspending USB devices. It calls the
1273 * suspend methods for all the interface drivers in @udev and then calls
1274 * the suspend method for @udev itself. When the routine is called in
1275 * autosuspend, if an error occurs at any stage, all the interfaces
1276 * which were suspended are resumed so that they remain in the same
1277 * state as the device, but when called from system sleep, all error
1278 * from suspend methods of interfaces and the non-root-hub device itself
1279 * are simply ignored, so all suspended interfaces are only resumed
1280 * to the device's state when @udev is root-hub and its suspend method
1281 * returns failure.
1283 * Autosuspend requests originating from a child device or an interface
1284 * driver may be made without the protection of @udev's device lock, but
1285 * all other suspend calls will hold the lock. Usbcore will insure that
1286 * method calls do not arrive during bind, unbind, or reset operations.
1287 * However drivers must be prepared to handle suspend calls arriving at
1288 * unpredictable times.
1290 * This routine can run only in process context.
1292 * Return: 0 if the suspend succeeded.
1294 static int usb_suspend_both(struct usb_device *udev, pm_message_t msg)
1296 int status = 0;
1297 int i = 0, n = 0;
1298 struct usb_interface *intf;
1300 if (udev->state == USB_STATE_NOTATTACHED ||
1301 udev->state == USB_STATE_SUSPENDED)
1302 goto done;
1304 /* Suspend all the interfaces and then udev itself */
1305 if (udev->actconfig) {
1306 n = udev->actconfig->desc.bNumInterfaces;
1307 for (i = n - 1; i >= 0; --i) {
1308 intf = udev->actconfig->interface[i];
1309 status = usb_suspend_interface(udev, intf, msg);
1311 /* Ignore errors during system sleep transitions */
1312 if (!PMSG_IS_AUTO(msg))
1313 status = 0;
1314 if (status != 0)
1315 break;
1318 if (status == 0) {
1319 status = usb_suspend_device(udev, msg);
1322 * Ignore errors from non-root-hub devices during
1323 * system sleep transitions. For the most part,
1324 * these devices should go to low power anyway when
1325 * the entire bus is suspended.
1327 if (udev->parent && !PMSG_IS_AUTO(msg))
1328 status = 0;
1331 * If the device is inaccessible, don't try to resume
1332 * suspended interfaces and just return the error.
1334 if (status && status != -EBUSY) {
1335 int err;
1336 u16 devstat;
1338 err = usb_get_std_status(udev, USB_RECIP_DEVICE, 0,
1339 &devstat);
1340 if (err) {
1341 dev_err(&udev->dev,
1342 "Failed to suspend device, error %d\n",
1343 status);
1344 goto done;
1349 /* If the suspend failed, resume interfaces that did get suspended */
1350 if (status != 0) {
1351 if (udev->actconfig) {
1352 msg.event ^= (PM_EVENT_SUSPEND | PM_EVENT_RESUME);
1353 while (++i < n) {
1354 intf = udev->actconfig->interface[i];
1355 usb_resume_interface(udev, intf, msg, 0);
1359 /* If the suspend succeeded then prevent any more URB submissions
1360 * and flush any outstanding URBs.
1362 } else {
1363 udev->can_submit = 0;
1364 for (i = 0; i < 16; ++i) {
1365 usb_hcd_flush_endpoint(udev, udev->ep_out[i]);
1366 usb_hcd_flush_endpoint(udev, udev->ep_in[i]);
1370 done:
1371 dev_vdbg(&udev->dev, "%s: status %d\n", __func__, status);
1372 return status;
1376 * usb_resume_both - resume a USB device and its interfaces
1377 * @udev: the usb_device to resume
1378 * @msg: Power Management message describing this state transition
1380 * This is the central routine for resuming USB devices. It calls the
1381 * the resume method for @udev and then calls the resume methods for all
1382 * the interface drivers in @udev.
1384 * Autoresume requests originating from a child device or an interface
1385 * driver may be made without the protection of @udev's device lock, but
1386 * all other resume calls will hold the lock. Usbcore will insure that
1387 * method calls do not arrive during bind, unbind, or reset operations.
1388 * However drivers must be prepared to handle resume calls arriving at
1389 * unpredictable times.
1391 * This routine can run only in process context.
1393 * Return: 0 on success.
1395 static int usb_resume_both(struct usb_device *udev, pm_message_t msg)
1397 int status = 0;
1398 int i;
1399 struct usb_interface *intf;
1401 if (udev->state == USB_STATE_NOTATTACHED) {
1402 status = -ENODEV;
1403 goto done;
1405 udev->can_submit = 1;
1407 /* Resume the device */
1408 if (udev->state == USB_STATE_SUSPENDED || udev->reset_resume)
1409 status = usb_resume_device(udev, msg);
1411 /* Resume the interfaces */
1412 if (status == 0 && udev->actconfig) {
1413 for (i = 0; i < udev->actconfig->desc.bNumInterfaces; i++) {
1414 intf = udev->actconfig->interface[i];
1415 usb_resume_interface(udev, intf, msg,
1416 udev->reset_resume);
1419 usb_mark_last_busy(udev);
1421 done:
1422 dev_vdbg(&udev->dev, "%s: status %d\n", __func__, status);
1423 if (!status)
1424 udev->reset_resume = 0;
1425 return status;
1428 static void choose_wakeup(struct usb_device *udev, pm_message_t msg)
1430 int w;
1432 /* Remote wakeup is needed only when we actually go to sleep.
1433 * For things like FREEZE and QUIESCE, if the device is already
1434 * autosuspended then its current wakeup setting is okay.
1436 if (msg.event == PM_EVENT_FREEZE || msg.event == PM_EVENT_QUIESCE) {
1437 if (udev->state != USB_STATE_SUSPENDED)
1438 udev->do_remote_wakeup = 0;
1439 return;
1442 /* Enable remote wakeup if it is allowed, even if no interface drivers
1443 * actually want it.
1445 w = device_may_wakeup(&udev->dev);
1447 /* If the device is autosuspended with the wrong wakeup setting,
1448 * autoresume now so the setting can be changed.
1450 if (udev->state == USB_STATE_SUSPENDED && w != udev->do_remote_wakeup)
1451 pm_runtime_resume(&udev->dev);
1452 udev->do_remote_wakeup = w;
1455 /* The device lock is held by the PM core */
1456 int usb_suspend(struct device *dev, pm_message_t msg)
1458 struct usb_device *udev = to_usb_device(dev);
1459 int r;
1461 unbind_no_pm_drivers_interfaces(udev);
1463 /* From now on we are sure all drivers support suspend/resume
1464 * but not necessarily reset_resume()
1465 * so we may still need to unbind and rebind upon resume
1467 choose_wakeup(udev, msg);
1468 r = usb_suspend_both(udev, msg);
1469 if (r)
1470 return r;
1472 if (udev->quirks & USB_QUIRK_DISCONNECT_SUSPEND)
1473 usb_port_disable(udev);
1475 return 0;
1478 /* The device lock is held by the PM core */
1479 int usb_resume_complete(struct device *dev)
1481 struct usb_device *udev = to_usb_device(dev);
1483 /* For PM complete calls, all we do is rebind interfaces
1484 * whose needs_binding flag is set
1486 if (udev->state != USB_STATE_NOTATTACHED)
1487 rebind_marked_interfaces(udev);
1488 return 0;
1491 /* The device lock is held by the PM core */
1492 int usb_resume(struct device *dev, pm_message_t msg)
1494 struct usb_device *udev = to_usb_device(dev);
1495 int status;
1497 /* For all calls, take the device back to full power and
1498 * tell the PM core in case it was autosuspended previously.
1499 * Unbind the interfaces that will need rebinding later,
1500 * because they fail to support reset_resume.
1501 * (This can't be done in usb_resume_interface()
1502 * above because it doesn't own the right set of locks.)
1504 status = usb_resume_both(udev, msg);
1505 if (status == 0) {
1506 pm_runtime_disable(dev);
1507 pm_runtime_set_active(dev);
1508 pm_runtime_enable(dev);
1509 unbind_marked_interfaces(udev);
1512 /* Avoid PM error messages for devices disconnected while suspended
1513 * as we'll display regular disconnect messages just a bit later.
1515 if (status == -ENODEV || status == -ESHUTDOWN)
1516 status = 0;
1517 return status;
1521 * usb_enable_autosuspend - allow a USB device to be autosuspended
1522 * @udev: the USB device which may be autosuspended
1524 * This routine allows @udev to be autosuspended. An autosuspend won't
1525 * take place until the autosuspend_delay has elapsed and all the other
1526 * necessary conditions are satisfied.
1528 * The caller must hold @udev's device lock.
1530 void usb_enable_autosuspend(struct usb_device *udev)
1532 pm_runtime_allow(&udev->dev);
1534 EXPORT_SYMBOL_GPL(usb_enable_autosuspend);
1537 * usb_disable_autosuspend - prevent a USB device from being autosuspended
1538 * @udev: the USB device which may not be autosuspended
1540 * This routine prevents @udev from being autosuspended and wakes it up
1541 * if it is already autosuspended.
1543 * The caller must hold @udev's device lock.
1545 void usb_disable_autosuspend(struct usb_device *udev)
1547 pm_runtime_forbid(&udev->dev);
1549 EXPORT_SYMBOL_GPL(usb_disable_autosuspend);
1552 * usb_autosuspend_device - delayed autosuspend of a USB device and its interfaces
1553 * @udev: the usb_device to autosuspend
1555 * This routine should be called when a core subsystem is finished using
1556 * @udev and wants to allow it to autosuspend. Examples would be when
1557 * @udev's device file in usbfs is closed or after a configuration change.
1559 * @udev's usage counter is decremented; if it drops to 0 and all the
1560 * interfaces are inactive then a delayed autosuspend will be attempted.
1561 * The attempt may fail (see autosuspend_check()).
1563 * The caller must hold @udev's device lock.
1565 * This routine can run only in process context.
1567 void usb_autosuspend_device(struct usb_device *udev)
1569 int status;
1571 usb_mark_last_busy(udev);
1572 status = pm_runtime_put_sync_autosuspend(&udev->dev);
1573 dev_vdbg(&udev->dev, "%s: cnt %d -> %d\n",
1574 __func__, atomic_read(&udev->dev.power.usage_count),
1575 status);
1579 * usb_autoresume_device - immediately autoresume a USB device and its interfaces
1580 * @udev: the usb_device to autoresume
1582 * This routine should be called when a core subsystem wants to use @udev
1583 * and needs to guarantee that it is not suspended. No autosuspend will
1584 * occur until usb_autosuspend_device() is called. (Note that this will
1585 * not prevent suspend events originating in the PM core.) Examples would
1586 * be when @udev's device file in usbfs is opened or when a remote-wakeup
1587 * request is received.
1589 * @udev's usage counter is incremented to prevent subsequent autosuspends.
1590 * However if the autoresume fails then the usage counter is re-decremented.
1592 * The caller must hold @udev's device lock.
1594 * This routine can run only in process context.
1596 * Return: 0 on success. A negative error code otherwise.
1598 int usb_autoresume_device(struct usb_device *udev)
1600 int status;
1602 status = pm_runtime_get_sync(&udev->dev);
1603 if (status < 0)
1604 pm_runtime_put_sync(&udev->dev);
1605 dev_vdbg(&udev->dev, "%s: cnt %d -> %d\n",
1606 __func__, atomic_read(&udev->dev.power.usage_count),
1607 status);
1608 if (status > 0)
1609 status = 0;
1610 return status;
1614 * usb_autopm_put_interface - decrement a USB interface's PM-usage counter
1615 * @intf: the usb_interface whose counter should be decremented
1617 * This routine should be called by an interface driver when it is
1618 * finished using @intf and wants to allow it to autosuspend. A typical
1619 * example would be a character-device driver when its device file is
1620 * closed.
1622 * The routine decrements @intf's usage counter. When the counter reaches
1623 * 0, a delayed autosuspend request for @intf's device is attempted. The
1624 * attempt may fail (see autosuspend_check()).
1626 * This routine can run only in process context.
1628 void usb_autopm_put_interface(struct usb_interface *intf)
1630 struct usb_device *udev = interface_to_usbdev(intf);
1631 int status;
1633 usb_mark_last_busy(udev);
1634 status = pm_runtime_put_sync(&intf->dev);
1635 dev_vdbg(&intf->dev, "%s: cnt %d -> %d\n",
1636 __func__, atomic_read(&intf->dev.power.usage_count),
1637 status);
1639 EXPORT_SYMBOL_GPL(usb_autopm_put_interface);
1642 * usb_autopm_put_interface_async - decrement a USB interface's PM-usage counter
1643 * @intf: the usb_interface whose counter should be decremented
1645 * This routine does much the same thing as usb_autopm_put_interface():
1646 * It decrements @intf's usage counter and schedules a delayed
1647 * autosuspend request if the counter is <= 0. The difference is that it
1648 * does not perform any synchronization; callers should hold a private
1649 * lock and handle all synchronization issues themselves.
1651 * Typically a driver would call this routine during an URB's completion
1652 * handler, if no more URBs were pending.
1654 * This routine can run in atomic context.
1656 void usb_autopm_put_interface_async(struct usb_interface *intf)
1658 struct usb_device *udev = interface_to_usbdev(intf);
1659 int status;
1661 usb_mark_last_busy(udev);
1662 status = pm_runtime_put(&intf->dev);
1663 dev_vdbg(&intf->dev, "%s: cnt %d -> %d\n",
1664 __func__, atomic_read(&intf->dev.power.usage_count),
1665 status);
1667 EXPORT_SYMBOL_GPL(usb_autopm_put_interface_async);
1670 * usb_autopm_put_interface_no_suspend - decrement a USB interface's PM-usage counter
1671 * @intf: the usb_interface whose counter should be decremented
1673 * This routine decrements @intf's usage counter but does not carry out an
1674 * autosuspend.
1676 * This routine can run in atomic context.
1678 void usb_autopm_put_interface_no_suspend(struct usb_interface *intf)
1680 struct usb_device *udev = interface_to_usbdev(intf);
1682 usb_mark_last_busy(udev);
1683 pm_runtime_put_noidle(&intf->dev);
1685 EXPORT_SYMBOL_GPL(usb_autopm_put_interface_no_suspend);
1688 * usb_autopm_get_interface - increment a USB interface's PM-usage counter
1689 * @intf: the usb_interface whose counter should be incremented
1691 * This routine should be called by an interface driver when it wants to
1692 * use @intf and needs to guarantee that it is not suspended. In addition,
1693 * the routine prevents @intf from being autosuspended subsequently. (Note
1694 * that this will not prevent suspend events originating in the PM core.)
1695 * This prevention will persist until usb_autopm_put_interface() is called
1696 * or @intf is unbound. A typical example would be a character-device
1697 * driver when its device file is opened.
1699 * @intf's usage counter is incremented to prevent subsequent autosuspends.
1700 * However if the autoresume fails then the counter is re-decremented.
1702 * This routine can run only in process context.
1704 * Return: 0 on success.
1706 int usb_autopm_get_interface(struct usb_interface *intf)
1708 int status;
1710 status = pm_runtime_get_sync(&intf->dev);
1711 if (status < 0)
1712 pm_runtime_put_sync(&intf->dev);
1713 dev_vdbg(&intf->dev, "%s: cnt %d -> %d\n",
1714 __func__, atomic_read(&intf->dev.power.usage_count),
1715 status);
1716 if (status > 0)
1717 status = 0;
1718 return status;
1720 EXPORT_SYMBOL_GPL(usb_autopm_get_interface);
1723 * usb_autopm_get_interface_async - increment a USB interface's PM-usage counter
1724 * @intf: the usb_interface whose counter should be incremented
1726 * This routine does much the same thing as
1727 * usb_autopm_get_interface(): It increments @intf's usage counter and
1728 * queues an autoresume request if the device is suspended. The
1729 * differences are that it does not perform any synchronization (callers
1730 * should hold a private lock and handle all synchronization issues
1731 * themselves), and it does not autoresume the device directly (it only
1732 * queues a request). After a successful call, the device may not yet be
1733 * resumed.
1735 * This routine can run in atomic context.
1737 * Return: 0 on success. A negative error code otherwise.
1739 int usb_autopm_get_interface_async(struct usb_interface *intf)
1741 int status;
1743 status = pm_runtime_get(&intf->dev);
1744 if (status < 0 && status != -EINPROGRESS)
1745 pm_runtime_put_noidle(&intf->dev);
1746 dev_vdbg(&intf->dev, "%s: cnt %d -> %d\n",
1747 __func__, atomic_read(&intf->dev.power.usage_count),
1748 status);
1749 if (status > 0 || status == -EINPROGRESS)
1750 status = 0;
1751 return status;
1753 EXPORT_SYMBOL_GPL(usb_autopm_get_interface_async);
1756 * usb_autopm_get_interface_no_resume - increment a USB interface's PM-usage counter
1757 * @intf: the usb_interface whose counter should be incremented
1759 * This routine increments @intf's usage counter but does not carry out an
1760 * autoresume.
1762 * This routine can run in atomic context.
1764 void usb_autopm_get_interface_no_resume(struct usb_interface *intf)
1766 struct usb_device *udev = interface_to_usbdev(intf);
1768 usb_mark_last_busy(udev);
1769 pm_runtime_get_noresume(&intf->dev);
1771 EXPORT_SYMBOL_GPL(usb_autopm_get_interface_no_resume);
1773 /* Internal routine to check whether we may autosuspend a device. */
1774 static int autosuspend_check(struct usb_device *udev)
1776 int w, i;
1777 struct usb_interface *intf;
1779 if (udev->state == USB_STATE_NOTATTACHED)
1780 return -ENODEV;
1782 /* Fail if autosuspend is disabled, or any interfaces are in use, or
1783 * any interface drivers require remote wakeup but it isn't available.
1785 w = 0;
1786 if (udev->actconfig) {
1787 for (i = 0; i < udev->actconfig->desc.bNumInterfaces; i++) {
1788 intf = udev->actconfig->interface[i];
1790 /* We don't need to check interfaces that are
1791 * disabled for runtime PM. Either they are unbound
1792 * or else their drivers don't support autosuspend
1793 * and so they are permanently active.
1795 if (intf->dev.power.disable_depth)
1796 continue;
1797 if (atomic_read(&intf->dev.power.usage_count) > 0)
1798 return -EBUSY;
1799 w |= intf->needs_remote_wakeup;
1801 /* Don't allow autosuspend if the device will need
1802 * a reset-resume and any of its interface drivers
1803 * doesn't include support or needs remote wakeup.
1805 if (udev->quirks & USB_QUIRK_RESET_RESUME) {
1806 struct usb_driver *driver;
1808 driver = to_usb_driver(intf->dev.driver);
1809 if (!driver->reset_resume ||
1810 intf->needs_remote_wakeup)
1811 return -EOPNOTSUPP;
1815 if (w && !device_can_wakeup(&udev->dev)) {
1816 dev_dbg(&udev->dev, "remote wakeup needed for autosuspend\n");
1817 return -EOPNOTSUPP;
1821 * If the device is a direct child of the root hub and the HCD
1822 * doesn't handle wakeup requests, don't allow autosuspend when
1823 * wakeup is needed.
1825 if (w && udev->parent == udev->bus->root_hub &&
1826 bus_to_hcd(udev->bus)->cant_recv_wakeups) {
1827 dev_dbg(&udev->dev, "HCD doesn't handle wakeup requests\n");
1828 return -EOPNOTSUPP;
1831 udev->do_remote_wakeup = w;
1832 return 0;
1835 int usb_runtime_suspend(struct device *dev)
1837 struct usb_device *udev = to_usb_device(dev);
1838 int status;
1840 /* A USB device can be suspended if it passes the various autosuspend
1841 * checks. Runtime suspend for a USB device means suspending all the
1842 * interfaces and then the device itself.
1844 if (autosuspend_check(udev) != 0)
1845 return -EAGAIN;
1847 status = usb_suspend_both(udev, PMSG_AUTO_SUSPEND);
1849 /* Allow a retry if autosuspend failed temporarily */
1850 if (status == -EAGAIN || status == -EBUSY)
1851 usb_mark_last_busy(udev);
1854 * The PM core reacts badly unless the return code is 0,
1855 * -EAGAIN, or -EBUSY, so always return -EBUSY on an error
1856 * (except for root hubs, because they don't suspend through
1857 * an upstream port like other USB devices).
1859 if (status != 0 && udev->parent)
1860 return -EBUSY;
1861 return status;
1864 int usb_runtime_resume(struct device *dev)
1866 struct usb_device *udev = to_usb_device(dev);
1867 int status;
1869 /* Runtime resume for a USB device means resuming both the device
1870 * and all its interfaces.
1872 status = usb_resume_both(udev, PMSG_AUTO_RESUME);
1873 return status;
1876 int usb_runtime_idle(struct device *dev)
1878 struct usb_device *udev = to_usb_device(dev);
1880 /* An idle USB device can be suspended if it passes the various
1881 * autosuspend checks.
1883 if (autosuspend_check(udev) == 0)
1884 pm_runtime_autosuspend(dev);
1885 /* Tell the core not to suspend it, though. */
1886 return -EBUSY;
1889 static int usb_set_usb2_hardware_lpm(struct usb_device *udev, int enable)
1891 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
1892 int ret = -EPERM;
1894 if (hcd->driver->set_usb2_hw_lpm) {
1895 ret = hcd->driver->set_usb2_hw_lpm(hcd, udev, enable);
1896 if (!ret)
1897 udev->usb2_hw_lpm_enabled = enable;
1900 return ret;
1903 int usb_enable_usb2_hardware_lpm(struct usb_device *udev)
1905 if (!udev->usb2_hw_lpm_capable ||
1906 !udev->usb2_hw_lpm_allowed ||
1907 udev->usb2_hw_lpm_enabled)
1908 return 0;
1910 return usb_set_usb2_hardware_lpm(udev, 1);
1913 int usb_disable_usb2_hardware_lpm(struct usb_device *udev)
1915 if (!udev->usb2_hw_lpm_enabled)
1916 return 0;
1918 return usb_set_usb2_hardware_lpm(udev, 0);
1921 #endif /* CONFIG_PM */
1923 struct bus_type usb_bus_type = {
1924 .name = "usb",
1925 .match = usb_device_match,
1926 .uevent = usb_uevent,
1927 .need_parent_lock = true,