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