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