Merge branch 'stable-3.2' into pandora-3.2
[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;
432         int retval = 0;
433
434         if (!iface)
435                 return -ENODEV;
436
437         dev = &iface->dev;
438         if (dev->driver)
439                 return -EBUSY;
440
441         dev->driver = &driver->drvwrap.driver;
442         usb_set_intfdata(iface, priv);
443         iface->needs_binding = 0;
444
445         iface->condition = USB_INTERFACE_BOUND;
446
447         /* Claimed interfaces are initially inactive (suspended) and
448          * runtime-PM-enabled, but only if the driver has autosuspend
449          * support.  Otherwise they are marked active, to prevent the
450          * device from being autosuspended, but left disabled.  In either
451          * case they are sensitive to their children's power states.
452          */
453         pm_suspend_ignore_children(dev, false);
454         if (driver->supports_autosuspend)
455                 pm_runtime_enable(dev);
456         else
457                 pm_runtime_set_active(dev);
458
459         /* if interface was already added, bind now; else let
460          * the future device_add() bind it, bypassing probe()
461          */
462         if (device_is_registered(dev))
463                 retval = device_bind_driver(dev);
464
465         return retval;
466 }
467 EXPORT_SYMBOL_GPL(usb_driver_claim_interface);
468
469 /**
470  * usb_driver_release_interface - unbind a driver from an interface
471  * @driver: the driver to be unbound
472  * @iface: the interface from which it will be unbound
473  *
474  * This can be used by drivers to release an interface without waiting
475  * for their disconnect() methods to be called.  In typical cases this
476  * also causes the driver disconnect() method to be called.
477  *
478  * This call is synchronous, and may not be used in an interrupt context.
479  * Callers must own the device lock, so driver disconnect() entries don't
480  * need extra locking, but other call contexts may need to explicitly claim
481  * that lock.
482  */
483 void usb_driver_release_interface(struct usb_driver *driver,
484                                         struct usb_interface *iface)
485 {
486         struct device *dev = &iface->dev;
487
488         /* this should never happen, don't release something that's not ours */
489         if (!dev->driver || dev->driver != &driver->drvwrap.driver)
490                 return;
491
492         /* don't release from within disconnect() */
493         if (iface->condition != USB_INTERFACE_BOUND)
494                 return;
495         iface->condition = USB_INTERFACE_UNBINDING;
496
497         /* Release via the driver core only if the interface
498          * has already been registered
499          */
500         if (device_is_registered(dev)) {
501                 device_release_driver(dev);
502         } else {
503                 device_lock(dev);
504                 usb_unbind_interface(dev);
505                 dev->driver = NULL;
506                 device_unlock(dev);
507         }
508 }
509 EXPORT_SYMBOL_GPL(usb_driver_release_interface);
510
511 /* returns 0 if no match, 1 if match */
512 int usb_match_device(struct usb_device *dev, const struct usb_device_id *id)
513 {
514         if ((id->match_flags & USB_DEVICE_ID_MATCH_VENDOR) &&
515             id->idVendor != le16_to_cpu(dev->descriptor.idVendor))
516                 return 0;
517
518         if ((id->match_flags & USB_DEVICE_ID_MATCH_PRODUCT) &&
519             id->idProduct != le16_to_cpu(dev->descriptor.idProduct))
520                 return 0;
521
522         /* No need to test id->bcdDevice_lo != 0, since 0 is never
523            greater than any unsigned number. */
524         if ((id->match_flags & USB_DEVICE_ID_MATCH_DEV_LO) &&
525             (id->bcdDevice_lo > le16_to_cpu(dev->descriptor.bcdDevice)))
526                 return 0;
527
528         if ((id->match_flags & USB_DEVICE_ID_MATCH_DEV_HI) &&
529             (id->bcdDevice_hi < le16_to_cpu(dev->descriptor.bcdDevice)))
530                 return 0;
531
532         if ((id->match_flags & USB_DEVICE_ID_MATCH_DEV_CLASS) &&
533             (id->bDeviceClass != dev->descriptor.bDeviceClass))
534                 return 0;
535
536         if ((id->match_flags & USB_DEVICE_ID_MATCH_DEV_SUBCLASS) &&
537             (id->bDeviceSubClass != dev->descriptor.bDeviceSubClass))
538                 return 0;
539
540         if ((id->match_flags & USB_DEVICE_ID_MATCH_DEV_PROTOCOL) &&
541             (id->bDeviceProtocol != dev->descriptor.bDeviceProtocol))
542                 return 0;
543
544         return 1;
545 }
546
547 /* returns 0 if no match, 1 if match */
548 int usb_match_one_id_intf(struct usb_device *dev,
549                           struct usb_host_interface *intf,
550                           const struct usb_device_id *id)
551 {
552         /* The interface class, subclass, and protocol should never be
553          * checked for a match if the device class is Vendor Specific,
554          * unless the match record specifies the Vendor ID. */
555         if (dev->descriptor.bDeviceClass == USB_CLASS_VENDOR_SPEC &&
556                         !(id->match_flags & USB_DEVICE_ID_MATCH_VENDOR) &&
557                         (id->match_flags & (USB_DEVICE_ID_MATCH_INT_CLASS |
558                                 USB_DEVICE_ID_MATCH_INT_SUBCLASS |
559                                 USB_DEVICE_ID_MATCH_INT_PROTOCOL)))
560                 return 0;
561
562         if ((id->match_flags & USB_DEVICE_ID_MATCH_INT_CLASS) &&
563             (id->bInterfaceClass != intf->desc.bInterfaceClass))
564                 return 0;
565
566         if ((id->match_flags & USB_DEVICE_ID_MATCH_INT_SUBCLASS) &&
567             (id->bInterfaceSubClass != intf->desc.bInterfaceSubClass))
568                 return 0;
569
570         if ((id->match_flags & USB_DEVICE_ID_MATCH_INT_PROTOCOL) &&
571             (id->bInterfaceProtocol != intf->desc.bInterfaceProtocol))
572                 return 0;
573
574         return 1;
575 }
576
577 /* returns 0 if no match, 1 if match */
578 int usb_match_one_id(struct usb_interface *interface,
579                      const struct usb_device_id *id)
580 {
581         struct usb_host_interface *intf;
582         struct usb_device *dev;
583
584         /* proc_connectinfo in devio.c may call us with id == NULL. */
585         if (id == NULL)
586                 return 0;
587
588         intf = interface->cur_altsetting;
589         dev = interface_to_usbdev(interface);
590
591         if (!usb_match_device(dev, id))
592                 return 0;
593
594         return usb_match_one_id_intf(dev, intf, id);
595 }
596 EXPORT_SYMBOL_GPL(usb_match_one_id);
597
598 /**
599  * usb_match_id - find first usb_device_id matching device or interface
600  * @interface: the interface of interest
601  * @id: array of usb_device_id structures, terminated by zero entry
602  *
603  * usb_match_id searches an array of usb_device_id's and returns
604  * the first one matching the device or interface, or null.
605  * This is used when binding (or rebinding) a driver to an interface.
606  * Most USB device drivers will use this indirectly, through the usb core,
607  * but some layered driver frameworks use it directly.
608  * These device tables are exported with MODULE_DEVICE_TABLE, through
609  * modutils, to support the driver loading functionality of USB hotplugging.
610  *
611  * What Matches:
612  *
613  * The "match_flags" element in a usb_device_id controls which
614  * members are used.  If the corresponding bit is set, the
615  * value in the device_id must match its corresponding member
616  * in the device or interface descriptor, or else the device_id
617  * does not match.
618  *
619  * "driver_info" is normally used only by device drivers,
620  * but you can create a wildcard "matches anything" usb_device_id
621  * as a driver's "modules.usbmap" entry if you provide an id with
622  * only a nonzero "driver_info" field.  If you do this, the USB device
623  * driver's probe() routine should use additional intelligence to
624  * decide whether to bind to the specified interface.
625  *
626  * What Makes Good usb_device_id Tables:
627  *
628  * The match algorithm is very simple, so that intelligence in
629  * driver selection must come from smart driver id records.
630  * Unless you have good reasons to use another selection policy,
631  * provide match elements only in related groups, and order match
632  * specifiers from specific to general.  Use the macros provided
633  * for that purpose if you can.
634  *
635  * The most specific match specifiers use device descriptor
636  * data.  These are commonly used with product-specific matches;
637  * the USB_DEVICE macro lets you provide vendor and product IDs,
638  * and you can also match against ranges of product revisions.
639  * These are widely used for devices with application or vendor
640  * specific bDeviceClass values.
641  *
642  * Matches based on device class/subclass/protocol specifications
643  * are slightly more general; use the USB_DEVICE_INFO macro, or
644  * its siblings.  These are used with single-function devices
645  * where bDeviceClass doesn't specify that each interface has
646  * its own class.
647  *
648  * Matches based on interface class/subclass/protocol are the
649  * most general; they let drivers bind to any interface on a
650  * multiple-function device.  Use the USB_INTERFACE_INFO
651  * macro, or its siblings, to match class-per-interface style
652  * devices (as recorded in bInterfaceClass).
653  *
654  * Note that an entry created by USB_INTERFACE_INFO won't match
655  * any interface if the device class is set to Vendor-Specific.
656  * This is deliberate; according to the USB spec the meanings of
657  * the interface class/subclass/protocol for these devices are also
658  * vendor-specific, and hence matching against a standard product
659  * class wouldn't work anyway.  If you really want to use an
660  * interface-based match for such a device, create a match record
661  * that also specifies the vendor ID.  (Unforunately there isn't a
662  * standard macro for creating records like this.)
663  *
664  * Within those groups, remember that not all combinations are
665  * meaningful.  For example, don't give a product version range
666  * without vendor and product IDs; or specify a protocol without
667  * its associated class and subclass.
668  */
669 const struct usb_device_id *usb_match_id(struct usb_interface *interface,
670                                          const struct usb_device_id *id)
671 {
672         /* proc_connectinfo in devio.c may call us with id == NULL. */
673         if (id == NULL)
674                 return NULL;
675
676         /* It is important to check that id->driver_info is nonzero,
677            since an entry that is all zeroes except for a nonzero
678            id->driver_info is the way to create an entry that
679            indicates that the driver want to examine every
680            device and interface. */
681         for (; id->idVendor || id->idProduct || id->bDeviceClass ||
682                id->bInterfaceClass || id->driver_info; id++) {
683                 if (usb_match_one_id(interface, id))
684                         return id;
685         }
686
687         return NULL;
688 }
689 EXPORT_SYMBOL_GPL(usb_match_id);
690
691 static int usb_device_match(struct device *dev, struct device_driver *drv)
692 {
693         /* devices and interfaces are handled separately */
694         if (is_usb_device(dev)) {
695
696                 /* interface drivers never match devices */
697                 if (!is_usb_device_driver(drv))
698                         return 0;
699
700                 /* TODO: Add real matching code */
701                 return 1;
702
703         } else if (is_usb_interface(dev)) {
704                 struct usb_interface *intf;
705                 struct usb_driver *usb_drv;
706                 const struct usb_device_id *id;
707
708                 /* device drivers never match interfaces */
709                 if (is_usb_device_driver(drv))
710                         return 0;
711
712                 intf = to_usb_interface(dev);
713                 usb_drv = to_usb_driver(drv);
714
715                 id = usb_match_id(intf, usb_drv->id_table);
716                 if (id)
717                         return 1;
718
719                 id = usb_match_dynamic_id(intf, usb_drv);
720                 if (id)
721                         return 1;
722         }
723
724         return 0;
725 }
726
727 #ifdef  CONFIG_HOTPLUG
728 static int usb_uevent(struct device *dev, struct kobj_uevent_env *env)
729 {
730         struct usb_device *usb_dev;
731
732         if (is_usb_device(dev)) {
733                 usb_dev = to_usb_device(dev);
734         } else if (is_usb_interface(dev)) {
735                 struct usb_interface *intf = to_usb_interface(dev);
736
737                 usb_dev = interface_to_usbdev(intf);
738         } else {
739                 return 0;
740         }
741
742         if (usb_dev->devnum < 0) {
743                 /* driver is often null here; dev_dbg() would oops */
744                 pr_debug("usb %s: already deleted?\n", dev_name(dev));
745                 return -ENODEV;
746         }
747         if (!usb_dev->bus) {
748                 pr_debug("usb %s: bus removed?\n", dev_name(dev));
749                 return -ENODEV;
750         }
751
752 #ifdef  CONFIG_USB_DEVICEFS
753         /* If this is available, userspace programs can directly read
754          * all the device descriptors we don't tell them about.  Or
755          * act as usermode drivers.
756          */
757         if (add_uevent_var(env, "DEVICE=/proc/bus/usb/%03d/%03d",
758                            usb_dev->bus->busnum, usb_dev->devnum))
759                 return -ENOMEM;
760 #endif
761
762         /* per-device configurations are common */
763         if (add_uevent_var(env, "PRODUCT=%x/%x/%x",
764                            le16_to_cpu(usb_dev->descriptor.idVendor),
765                            le16_to_cpu(usb_dev->descriptor.idProduct),
766                            le16_to_cpu(usb_dev->descriptor.bcdDevice)))
767                 return -ENOMEM;
768
769         /* class-based driver binding models */
770         if (add_uevent_var(env, "TYPE=%d/%d/%d",
771                            usb_dev->descriptor.bDeviceClass,
772                            usb_dev->descriptor.bDeviceSubClass,
773                            usb_dev->descriptor.bDeviceProtocol))
774                 return -ENOMEM;
775
776         return 0;
777 }
778
779 #else
780
781 static int usb_uevent(struct device *dev, struct kobj_uevent_env *env)
782 {
783         return -ENODEV;
784 }
785 #endif  /* CONFIG_HOTPLUG */
786
787 /**
788  * usb_register_device_driver - register a USB device (not interface) driver
789  * @new_udriver: USB operations for the device driver
790  * @owner: module owner of this driver.
791  *
792  * Registers a USB device driver with the USB core.  The list of
793  * unattached devices will be rescanned whenever a new driver is
794  * added, allowing the new driver to attach to any recognized devices.
795  * Returns a negative error code on failure and 0 on success.
796  */
797 int usb_register_device_driver(struct usb_device_driver *new_udriver,
798                 struct module *owner)
799 {
800         int retval = 0;
801
802         if (usb_disabled())
803                 return -ENODEV;
804
805         new_udriver->drvwrap.for_devices = 1;
806         new_udriver->drvwrap.driver.name = (char *) new_udriver->name;
807         new_udriver->drvwrap.driver.bus = &usb_bus_type;
808         new_udriver->drvwrap.driver.probe = usb_probe_device;
809         new_udriver->drvwrap.driver.remove = usb_unbind_device;
810         new_udriver->drvwrap.driver.owner = owner;
811
812         retval = driver_register(&new_udriver->drvwrap.driver);
813
814         if (!retval) {
815                 pr_info("%s: registered new device driver %s\n",
816                         usbcore_name, new_udriver->name);
817                 usbfs_update_special();
818         } else {
819                 printk(KERN_ERR "%s: error %d registering device "
820                         "       driver %s\n",
821                         usbcore_name, retval, new_udriver->name);
822         }
823
824         return retval;
825 }
826 EXPORT_SYMBOL_GPL(usb_register_device_driver);
827
828 /**
829  * usb_deregister_device_driver - unregister a USB device (not interface) driver
830  * @udriver: USB operations of the device driver to unregister
831  * Context: must be able to sleep
832  *
833  * Unlinks the specified driver from the internal USB driver list.
834  */
835 void usb_deregister_device_driver(struct usb_device_driver *udriver)
836 {
837         pr_info("%s: deregistering device driver %s\n",
838                         usbcore_name, udriver->name);
839
840         driver_unregister(&udriver->drvwrap.driver);
841         usbfs_update_special();
842 }
843 EXPORT_SYMBOL_GPL(usb_deregister_device_driver);
844
845 /**
846  * usb_register_driver - register a USB interface driver
847  * @new_driver: USB operations for the interface driver
848  * @owner: module owner of this driver.
849  * @mod_name: module name string
850  *
851  * Registers a USB interface driver with the USB core.  The list of
852  * unattached interfaces will be rescanned whenever a new driver is
853  * added, allowing the new driver to attach to any recognized interfaces.
854  * Returns a negative error code on failure and 0 on success.
855  *
856  * NOTE: if you want your driver to use the USB major number, you must call
857  * usb_register_dev() to enable that functionality.  This function no longer
858  * takes care of that.
859  */
860 int usb_register_driver(struct usb_driver *new_driver, struct module *owner,
861                         const char *mod_name)
862 {
863         int retval = 0;
864
865         if (usb_disabled())
866                 return -ENODEV;
867
868         new_driver->drvwrap.for_devices = 0;
869         new_driver->drvwrap.driver.name = (char *) new_driver->name;
870         new_driver->drvwrap.driver.bus = &usb_bus_type;
871         new_driver->drvwrap.driver.probe = usb_probe_interface;
872         new_driver->drvwrap.driver.remove = usb_unbind_interface;
873         new_driver->drvwrap.driver.owner = owner;
874         new_driver->drvwrap.driver.mod_name = mod_name;
875         spin_lock_init(&new_driver->dynids.lock);
876         INIT_LIST_HEAD(&new_driver->dynids.list);
877
878         retval = driver_register(&new_driver->drvwrap.driver);
879         if (retval)
880                 goto out;
881
882         usbfs_update_special();
883
884         retval = usb_create_newid_file(new_driver);
885         if (retval)
886                 goto out_newid;
887
888         retval = usb_create_removeid_file(new_driver);
889         if (retval)
890                 goto out_removeid;
891
892         pr_info("%s: registered new interface driver %s\n",
893                         usbcore_name, new_driver->name);
894
895 out:
896         return retval;
897
898 out_removeid:
899         usb_remove_newid_file(new_driver);
900 out_newid:
901         driver_unregister(&new_driver->drvwrap.driver);
902
903         printk(KERN_ERR "%s: error %d registering interface "
904                         "       driver %s\n",
905                         usbcore_name, retval, new_driver->name);
906         goto out;
907 }
908 EXPORT_SYMBOL_GPL(usb_register_driver);
909
910 /**
911  * usb_deregister - unregister a USB interface driver
912  * @driver: USB operations of the interface driver to unregister
913  * Context: must be able to sleep
914  *
915  * Unlinks the specified driver from the internal USB driver list.
916  *
917  * NOTE: If you called usb_register_dev(), you still need to call
918  * usb_deregister_dev() to clean up your driver's allocated minor numbers,
919  * this * call will no longer do it for you.
920  */
921 void usb_deregister(struct usb_driver *driver)
922 {
923         pr_info("%s: deregistering interface driver %s\n",
924                         usbcore_name, driver->name);
925
926         usb_remove_removeid_file(driver);
927         usb_remove_newid_file(driver);
928         usb_free_dynids(driver);
929         driver_unregister(&driver->drvwrap.driver);
930
931         usbfs_update_special();
932 }
933 EXPORT_SYMBOL_GPL(usb_deregister);
934
935 /* Forced unbinding of a USB interface driver, either because
936  * it doesn't support pre_reset/post_reset/reset_resume or
937  * because it doesn't support suspend/resume.
938  *
939  * The caller must hold @intf's device's lock, but not its pm_mutex
940  * and not @intf->dev.sem.
941  */
942 void usb_forced_unbind_intf(struct usb_interface *intf)
943 {
944         struct usb_driver *driver = to_usb_driver(intf->dev.driver);
945
946         dev_dbg(&intf->dev, "forced unbind\n");
947         usb_driver_release_interface(driver, intf);
948
949         /* Mark the interface for later rebinding */
950         intf->needs_binding = 1;
951 }
952
953 /* Delayed forced unbinding of a USB interface driver and scan
954  * for rebinding.
955  *
956  * The caller must hold @intf's device's lock, but not its pm_mutex
957  * and not @intf->dev.sem.
958  *
959  * Note: Rebinds will be skipped if a system sleep transition is in
960  * progress and the PM "complete" callback hasn't occurred yet.
961  */
962 void usb_rebind_intf(struct usb_interface *intf)
963 {
964         int rc;
965
966         /* Delayed unbind of an existing driver */
967         if (intf->dev.driver) {
968                 struct usb_driver *driver =
969                                 to_usb_driver(intf->dev.driver);
970
971                 dev_dbg(&intf->dev, "forced unbind\n");
972                 usb_driver_release_interface(driver, intf);
973         }
974
975         /* Try to rebind the interface */
976         if (!intf->dev.power.is_prepared) {
977                 intf->needs_binding = 0;
978                 rc = device_attach(&intf->dev);
979                 if (rc < 0)
980                         dev_warn(&intf->dev, "rebind failed: %d\n", rc);
981         }
982 }
983
984 #ifdef CONFIG_PM
985
986 #define DO_UNBIND       0
987 #define DO_REBIND       1
988
989 /* Unbind drivers for @udev's interfaces that don't support suspend/resume,
990  * or rebind interfaces that have been unbound, according to @action.
991  *
992  * The caller must hold @udev's device lock.
993  */
994 static void do_unbind_rebind(struct usb_device *udev, int action)
995 {
996         struct usb_host_config  *config;
997         int                     i;
998         struct usb_interface    *intf;
999         struct usb_driver       *drv;
1000
1001         config = udev->actconfig;
1002         if (config) {
1003                 for (i = 0; i < config->desc.bNumInterfaces; ++i) {
1004                         intf = config->interface[i];
1005                         switch (action) {
1006                         case DO_UNBIND:
1007                                 if (intf->dev.driver) {
1008                                         drv = to_usb_driver(intf->dev.driver);
1009                                         if (!drv->suspend || !drv->resume)
1010                                                 usb_forced_unbind_intf(intf);
1011                                 }
1012                                 break;
1013                         case DO_REBIND:
1014                                 if (intf->needs_binding)
1015                                         usb_rebind_intf(intf);
1016                                 break;
1017                         }
1018                 }
1019         }
1020 }
1021
1022 static int usb_suspend_device(struct usb_device *udev, pm_message_t msg)
1023 {
1024         struct usb_device_driver        *udriver;
1025         int                             status = 0;
1026
1027         if (udev->state == USB_STATE_NOTATTACHED ||
1028                         udev->state == USB_STATE_SUSPENDED)
1029                 goto done;
1030
1031         /* For devices that don't have a driver, we do a generic suspend. */
1032         if (udev->dev.driver)
1033                 udriver = to_usb_device_driver(udev->dev.driver);
1034         else {
1035                 udev->do_remote_wakeup = 0;
1036                 udriver = &usb_generic_driver;
1037         }
1038         status = udriver->suspend(udev, msg);
1039
1040  done:
1041         dev_vdbg(&udev->dev, "%s: status %d\n", __func__, status);
1042         return status;
1043 }
1044
1045 static int usb_resume_device(struct usb_device *udev, pm_message_t msg)
1046 {
1047         struct usb_device_driver        *udriver;
1048         int                             status = 0;
1049
1050         if (udev->state == USB_STATE_NOTATTACHED)
1051                 goto done;
1052
1053         /* Can't resume it if it doesn't have a driver. */
1054         if (udev->dev.driver == NULL) {
1055                 status = -ENOTCONN;
1056                 goto done;
1057         }
1058
1059         /* Non-root devices on a full/low-speed bus must wait for their
1060          * companion high-speed root hub, in case a handoff is needed.
1061          */
1062         if (!PMSG_IS_AUTO(msg) && udev->parent && udev->bus->hs_companion)
1063                 device_pm_wait_for_dev(&udev->dev,
1064                                 &udev->bus->hs_companion->root_hub->dev);
1065
1066         if (udev->quirks & USB_QUIRK_RESET_RESUME)
1067                 udev->reset_resume = 1;
1068
1069         udriver = to_usb_device_driver(udev->dev.driver);
1070         status = udriver->resume(udev, msg);
1071
1072  done:
1073         dev_vdbg(&udev->dev, "%s: status %d\n", __func__, status);
1074         return status;
1075 }
1076
1077 static int usb_suspend_interface(struct usb_device *udev,
1078                 struct usb_interface *intf, pm_message_t msg)
1079 {
1080         struct usb_driver       *driver;
1081         int                     status = 0;
1082
1083         if (udev->state == USB_STATE_NOTATTACHED ||
1084                         intf->condition == USB_INTERFACE_UNBOUND)
1085                 goto done;
1086         driver = to_usb_driver(intf->dev.driver);
1087
1088         if (driver->suspend) {
1089                 status = driver->suspend(intf, msg);
1090                 if (status && !PMSG_IS_AUTO(msg))
1091                         dev_err(&intf->dev, "%s error %d\n",
1092                                         "suspend", status);
1093         } else {
1094                 /* Later we will unbind the driver and reprobe */
1095                 intf->needs_binding = 1;
1096                 dev_warn(&intf->dev, "no %s for driver %s?\n",
1097                                 "suspend", driver->name);
1098         }
1099
1100  done:
1101         dev_vdbg(&intf->dev, "%s: status %d\n", __func__, status);
1102         return status;
1103 }
1104
1105 static int usb_resume_interface(struct usb_device *udev,
1106                 struct usb_interface *intf, pm_message_t msg, int reset_resume)
1107 {
1108         struct usb_driver       *driver;
1109         int                     status = 0;
1110
1111         if (udev->state == USB_STATE_NOTATTACHED)
1112                 goto done;
1113
1114         /* Don't let autoresume interfere with unbinding */
1115         if (intf->condition == USB_INTERFACE_UNBINDING)
1116                 goto done;
1117
1118         /* Can't resume it if it doesn't have a driver. */
1119         if (intf->condition == USB_INTERFACE_UNBOUND) {
1120
1121                 /* Carry out a deferred switch to altsetting 0 */
1122                 if (intf->needs_altsetting0 && !intf->dev.power.is_prepared) {
1123                         usb_set_interface(udev, intf->altsetting[0].
1124                                         desc.bInterfaceNumber, 0);
1125                         intf->needs_altsetting0 = 0;
1126                 }
1127                 goto done;
1128         }
1129
1130         /* Don't resume if the interface is marked for rebinding */
1131         if (intf->needs_binding)
1132                 goto done;
1133         driver = to_usb_driver(intf->dev.driver);
1134
1135         if (reset_resume) {
1136                 if (driver->reset_resume) {
1137                         status = driver->reset_resume(intf);
1138                         if (status)
1139                                 dev_err(&intf->dev, "%s error %d\n",
1140                                                 "reset_resume", status);
1141                 } else {
1142                         intf->needs_binding = 1;
1143                         dev_warn(&intf->dev, "no %s for driver %s?\n",
1144                                         "reset_resume", driver->name);
1145                 }
1146         } else {
1147                 if (driver->resume) {
1148                         status = driver->resume(intf);
1149                         if (status)
1150                                 dev_err(&intf->dev, "%s error %d\n",
1151                                                 "resume", status);
1152                 } else {
1153                         intf->needs_binding = 1;
1154                         dev_warn(&intf->dev, "no %s for driver %s?\n",
1155                                         "resume", driver->name);
1156                 }
1157         }
1158
1159 done:
1160         dev_vdbg(&intf->dev, "%s: status %d\n", __func__, status);
1161
1162         /* Later we will unbind the driver and/or reprobe, if necessary */
1163         return status;
1164 }
1165
1166 /**
1167  * usb_suspend_both - suspend a USB device and its interfaces
1168  * @udev: the usb_device to suspend
1169  * @msg: Power Management message describing this state transition
1170  *
1171  * This is the central routine for suspending USB devices.  It calls the
1172  * suspend methods for all the interface drivers in @udev and then calls
1173  * the suspend method for @udev itself.  If an error occurs at any stage,
1174  * all the interfaces which were suspended are resumed so that they remain
1175  * in the same state as the device.
1176  *
1177  * Autosuspend requests originating from a child device or an interface
1178  * driver may be made without the protection of @udev's device lock, but
1179  * all other suspend calls will hold the lock.  Usbcore will insure that
1180  * method calls do not arrive during bind, unbind, or reset operations.
1181  * However drivers must be prepared to handle suspend calls arriving at
1182  * unpredictable times.
1183  *
1184  * This routine can run only in process context.
1185  */
1186 static int usb_suspend_both(struct usb_device *udev, pm_message_t msg)
1187 {
1188         int                     status = 0;
1189         int                     i = 0, n = 0;
1190         struct usb_interface    *intf;
1191
1192         if (udev->state == USB_STATE_NOTATTACHED ||
1193                         udev->state == USB_STATE_SUSPENDED)
1194                 goto done;
1195
1196         /* Suspend all the interfaces and then udev itself */
1197         if (udev->actconfig) {
1198                 n = udev->actconfig->desc.bNumInterfaces;
1199                 for (i = n - 1; i >= 0; --i) {
1200                         intf = udev->actconfig->interface[i];
1201                         status = usb_suspend_interface(udev, intf, msg);
1202
1203                         /* Ignore errors during system sleep transitions */
1204                         if (!PMSG_IS_AUTO(msg))
1205                                 status = 0;
1206                         if (status != 0)
1207                                 break;
1208                 }
1209         }
1210         if (status == 0) {
1211                 status = usb_suspend_device(udev, msg);
1212
1213                 /*
1214                  * Ignore errors from non-root-hub devices during
1215                  * system sleep transitions.  For the most part,
1216                  * these devices should go to low power anyway when
1217                  * the entire bus is suspended.
1218                  */
1219                 if (udev->parent && !PMSG_IS_AUTO(msg))
1220                         status = 0;
1221
1222                 /*
1223                  * If the device is inaccessible, don't try to resume
1224                  * suspended interfaces and just return the error.
1225                  */
1226                 if (status && status != -EBUSY) {
1227                         int err;
1228                         u16 devstat;
1229
1230                         err = usb_get_status(udev, USB_RECIP_DEVICE, 0,
1231                                              &devstat);
1232                         if (err) {
1233                                 dev_err(&udev->dev,
1234                                         "Failed to suspend device, error %d\n",
1235                                         status);
1236                                 goto done;
1237                         }
1238                 }
1239         }
1240
1241         /* If the suspend failed, resume interfaces that did get suspended */
1242         if (status != 0) {
1243                 msg.event ^= (PM_EVENT_SUSPEND | PM_EVENT_RESUME);
1244                 while (++i < n) {
1245                         intf = udev->actconfig->interface[i];
1246                         usb_resume_interface(udev, intf, msg, 0);
1247                 }
1248
1249         /* If the suspend succeeded then prevent any more URB submissions
1250          * and flush any outstanding URBs.
1251          */
1252         } else {
1253                 udev->can_submit = 0;
1254                 for (i = 0; i < 16; ++i) {
1255                         usb_hcd_flush_endpoint(udev, udev->ep_out[i]);
1256                         usb_hcd_flush_endpoint(udev, udev->ep_in[i]);
1257                 }
1258         }
1259
1260  done:
1261         dev_vdbg(&udev->dev, "%s: status %d\n", __func__, status);
1262         return status;
1263 }
1264
1265 /**
1266  * usb_resume_both - resume a USB device and its interfaces
1267  * @udev: the usb_device to resume
1268  * @msg: Power Management message describing this state transition
1269  *
1270  * This is the central routine for resuming USB devices.  It calls the
1271  * the resume method for @udev and then calls the resume methods for all
1272  * the interface drivers in @udev.
1273  *
1274  * Autoresume requests originating from a child device or an interface
1275  * driver may be made without the protection of @udev's device lock, but
1276  * all other resume calls will hold the lock.  Usbcore will insure that
1277  * method calls do not arrive during bind, unbind, or reset operations.
1278  * However drivers must be prepared to handle resume calls arriving at
1279  * unpredictable times.
1280  *
1281  * This routine can run only in process context.
1282  */
1283 static int usb_resume_both(struct usb_device *udev, pm_message_t msg)
1284 {
1285         int                     status = 0;
1286         int                     i;
1287         struct usb_interface    *intf;
1288
1289         if (udev->state == USB_STATE_NOTATTACHED) {
1290                 status = -ENODEV;
1291                 goto done;
1292         }
1293         udev->can_submit = 1;
1294
1295         /* Resume the device */
1296         if (udev->state == USB_STATE_SUSPENDED || udev->reset_resume)
1297                 status = usb_resume_device(udev, msg);
1298
1299         /* Resume the interfaces */
1300         if (status == 0 && udev->actconfig) {
1301                 for (i = 0; i < udev->actconfig->desc.bNumInterfaces; i++) {
1302                         intf = udev->actconfig->interface[i];
1303                         usb_resume_interface(udev, intf, msg,
1304                                         udev->reset_resume);
1305                 }
1306         }
1307         usb_mark_last_busy(udev);
1308
1309  done:
1310         dev_vdbg(&udev->dev, "%s: status %d\n", __func__, status);
1311         if (!status)
1312                 udev->reset_resume = 0;
1313         return status;
1314 }
1315
1316 static void choose_wakeup(struct usb_device *udev, pm_message_t msg)
1317 {
1318         int     w;
1319
1320         /* Remote wakeup is needed only when we actually go to sleep.
1321          * For things like FREEZE and QUIESCE, if the device is already
1322          * autosuspended then its current wakeup setting is okay.
1323          */
1324         if (msg.event == PM_EVENT_FREEZE || msg.event == PM_EVENT_QUIESCE) {
1325                 if (udev->state != USB_STATE_SUSPENDED)
1326                         udev->do_remote_wakeup = 0;
1327                 return;
1328         }
1329
1330         /* Enable remote wakeup if it is allowed, even if no interface drivers
1331          * actually want it.
1332          */
1333         w = device_may_wakeup(&udev->dev);
1334
1335         /* If the device is autosuspended with the wrong wakeup setting,
1336          * autoresume now so the setting can be changed.
1337          */
1338         if (udev->state == USB_STATE_SUSPENDED && w != udev->do_remote_wakeup)
1339                 pm_runtime_resume(&udev->dev);
1340         udev->do_remote_wakeup = w;
1341 }
1342
1343 /* The device lock is held by the PM core */
1344 int usb_suspend(struct device *dev, pm_message_t msg)
1345 {
1346         struct usb_device       *udev = to_usb_device(dev);
1347
1348         do_unbind_rebind(udev, DO_UNBIND);
1349         choose_wakeup(udev, msg);
1350         return usb_suspend_both(udev, msg);
1351 }
1352
1353 /* The device lock is held by the PM core */
1354 int usb_resume(struct device *dev, pm_message_t msg)
1355 {
1356         struct usb_device       *udev = to_usb_device(dev);
1357         int                     status;
1358
1359         /* For PM complete calls, all we do is rebind interfaces */
1360         if (msg.event == PM_EVENT_ON) {
1361                 if (udev->state != USB_STATE_NOTATTACHED)
1362                         do_unbind_rebind(udev, DO_REBIND);
1363                 status = 0;
1364
1365         /* For all other calls, take the device back to full power and
1366          * tell the PM core in case it was autosuspended previously.
1367          * Unbind the interfaces that will need rebinding later.
1368          */
1369         } else {
1370                 status = usb_resume_both(udev, msg);
1371                 if (status == 0) {
1372                         pm_runtime_disable(dev);
1373                         pm_runtime_set_active(dev);
1374                         pm_runtime_enable(dev);
1375                         do_unbind_rebind(udev, DO_REBIND);
1376                 }
1377         }
1378
1379         /* Avoid PM error messages for devices disconnected while suspended
1380          * as we'll display regular disconnect messages just a bit later.
1381          */
1382         if (status == -ENODEV || status == -ESHUTDOWN)
1383                 status = 0;
1384         return status;
1385 }
1386
1387 #endif /* CONFIG_PM */
1388
1389 #ifdef CONFIG_USB_SUSPEND
1390
1391 /**
1392  * usb_enable_autosuspend - allow a USB device to be autosuspended
1393  * @udev: the USB device which may be autosuspended
1394  *
1395  * This routine allows @udev to be autosuspended.  An autosuspend won't
1396  * take place until the autosuspend_delay has elapsed and all the other
1397  * necessary conditions are satisfied.
1398  *
1399  * The caller must hold @udev's device lock.
1400  */
1401 void usb_enable_autosuspend(struct usb_device *udev)
1402 {
1403         pm_runtime_allow(&udev->dev);
1404 }
1405 EXPORT_SYMBOL_GPL(usb_enable_autosuspend);
1406
1407 /**
1408  * usb_disable_autosuspend - prevent a USB device from being autosuspended
1409  * @udev: the USB device which may not be autosuspended
1410  *
1411  * This routine prevents @udev from being autosuspended and wakes it up
1412  * if it is already autosuspended.
1413  *
1414  * The caller must hold @udev's device lock.
1415  */
1416 void usb_disable_autosuspend(struct usb_device *udev)
1417 {
1418         pm_runtime_forbid(&udev->dev);
1419 }
1420 EXPORT_SYMBOL_GPL(usb_disable_autosuspend);
1421
1422 /**
1423  * usb_autosuspend_device - delayed autosuspend of a USB device and its interfaces
1424  * @udev: the usb_device to autosuspend
1425  *
1426  * This routine should be called when a core subsystem is finished using
1427  * @udev and wants to allow it to autosuspend.  Examples would be when
1428  * @udev's device file in usbfs is closed or after a configuration change.
1429  *
1430  * @udev's usage counter is decremented; if it drops to 0 and all the
1431  * interfaces are inactive then a delayed autosuspend will be attempted.
1432  * The attempt may fail (see autosuspend_check()).
1433  *
1434  * The caller must hold @udev's device lock.
1435  *
1436  * This routine can run only in process context.
1437  */
1438 void usb_autosuspend_device(struct usb_device *udev)
1439 {
1440         int     status;
1441
1442         usb_mark_last_busy(udev);
1443         status = pm_runtime_put_sync_autosuspend(&udev->dev);
1444         dev_vdbg(&udev->dev, "%s: cnt %d -> %d\n",
1445                         __func__, atomic_read(&udev->dev.power.usage_count),
1446                         status);
1447 }
1448
1449 /**
1450  * usb_autoresume_device - immediately autoresume a USB device and its interfaces
1451  * @udev: the usb_device to autoresume
1452  *
1453  * This routine should be called when a core subsystem wants to use @udev
1454  * and needs to guarantee that it is not suspended.  No autosuspend will
1455  * occur until usb_autosuspend_device() is called.  (Note that this will
1456  * not prevent suspend events originating in the PM core.)  Examples would
1457  * be when @udev's device file in usbfs is opened or when a remote-wakeup
1458  * request is received.
1459  *
1460  * @udev's usage counter is incremented to prevent subsequent autosuspends.
1461  * However if the autoresume fails then the usage counter is re-decremented.
1462  *
1463  * The caller must hold @udev's device lock.
1464  *
1465  * This routine can run only in process context.
1466  */
1467 int usb_autoresume_device(struct usb_device *udev)
1468 {
1469         int     status;
1470
1471         status = pm_runtime_get_sync(&udev->dev);
1472         if (status < 0)
1473                 pm_runtime_put_sync(&udev->dev);
1474         dev_vdbg(&udev->dev, "%s: cnt %d -> %d\n",
1475                         __func__, atomic_read(&udev->dev.power.usage_count),
1476                         status);
1477         if (status > 0)
1478                 status = 0;
1479         return status;
1480 }
1481
1482 /**
1483  * usb_autopm_put_interface - decrement a USB interface's PM-usage counter
1484  * @intf: the usb_interface whose counter should be decremented
1485  *
1486  * This routine should be called by an interface driver when it is
1487  * finished using @intf and wants to allow it to autosuspend.  A typical
1488  * example would be a character-device driver when its device file is
1489  * closed.
1490  *
1491  * The routine decrements @intf's usage counter.  When the counter reaches
1492  * 0, a delayed autosuspend request for @intf's device is attempted.  The
1493  * attempt may fail (see autosuspend_check()).
1494  *
1495  * This routine can run only in process context.
1496  */
1497 void usb_autopm_put_interface(struct usb_interface *intf)
1498 {
1499         struct usb_device       *udev = interface_to_usbdev(intf);
1500         int                     status;
1501
1502         usb_mark_last_busy(udev);
1503         atomic_dec(&intf->pm_usage_cnt);
1504         status = pm_runtime_put_sync(&intf->dev);
1505         dev_vdbg(&intf->dev, "%s: cnt %d -> %d\n",
1506                         __func__, atomic_read(&intf->dev.power.usage_count),
1507                         status);
1508 }
1509 EXPORT_SYMBOL_GPL(usb_autopm_put_interface);
1510
1511 /**
1512  * usb_autopm_put_interface_async - decrement a USB interface's PM-usage counter
1513  * @intf: the usb_interface whose counter should be decremented
1514  *
1515  * This routine does much the same thing as usb_autopm_put_interface():
1516  * It decrements @intf's usage counter and schedules a delayed
1517  * autosuspend request if the counter is <= 0.  The difference is that it
1518  * does not perform any synchronization; callers should hold a private
1519  * lock and handle all synchronization issues themselves.
1520  *
1521  * Typically a driver would call this routine during an URB's completion
1522  * handler, if no more URBs were pending.
1523  *
1524  * This routine can run in atomic context.
1525  */
1526 void usb_autopm_put_interface_async(struct usb_interface *intf)
1527 {
1528         struct usb_device       *udev = interface_to_usbdev(intf);
1529         int                     status;
1530
1531         usb_mark_last_busy(udev);
1532         atomic_dec(&intf->pm_usage_cnt);
1533         status = pm_runtime_put(&intf->dev);
1534         dev_vdbg(&intf->dev, "%s: cnt %d -> %d\n",
1535                         __func__, atomic_read(&intf->dev.power.usage_count),
1536                         status);
1537 }
1538 EXPORT_SYMBOL_GPL(usb_autopm_put_interface_async);
1539
1540 /**
1541  * usb_autopm_put_interface_no_suspend - decrement a USB interface's PM-usage counter
1542  * @intf: the usb_interface whose counter should be decremented
1543  *
1544  * This routine decrements @intf's usage counter but does not carry out an
1545  * autosuspend.
1546  *
1547  * This routine can run in atomic context.
1548  */
1549 void usb_autopm_put_interface_no_suspend(struct usb_interface *intf)
1550 {
1551         struct usb_device       *udev = interface_to_usbdev(intf);
1552
1553         usb_mark_last_busy(udev);
1554         atomic_dec(&intf->pm_usage_cnt);
1555         pm_runtime_put_noidle(&intf->dev);
1556 }
1557 EXPORT_SYMBOL_GPL(usb_autopm_put_interface_no_suspend);
1558
1559 /**
1560  * usb_autopm_get_interface - increment a USB interface's PM-usage counter
1561  * @intf: the usb_interface whose counter should be incremented
1562  *
1563  * This routine should be called by an interface driver when it wants to
1564  * use @intf and needs to guarantee that it is not suspended.  In addition,
1565  * the routine prevents @intf from being autosuspended subsequently.  (Note
1566  * that this will not prevent suspend events originating in the PM core.)
1567  * This prevention will persist until usb_autopm_put_interface() is called
1568  * or @intf is unbound.  A typical example would be a character-device
1569  * driver when its device file is opened.
1570  *
1571  * @intf's usage counter is incremented to prevent subsequent autosuspends.
1572  * However if the autoresume fails then the counter is re-decremented.
1573  *
1574  * This routine can run only in process context.
1575  */
1576 int usb_autopm_get_interface(struct usb_interface *intf)
1577 {
1578         int     status;
1579
1580         status = pm_runtime_get_sync(&intf->dev);
1581         if (status < 0)
1582                 pm_runtime_put_sync(&intf->dev);
1583         else
1584                 atomic_inc(&intf->pm_usage_cnt);
1585         dev_vdbg(&intf->dev, "%s: cnt %d -> %d\n",
1586                         __func__, atomic_read(&intf->dev.power.usage_count),
1587                         status);
1588         if (status > 0)
1589                 status = 0;
1590         return status;
1591 }
1592 EXPORT_SYMBOL_GPL(usb_autopm_get_interface);
1593
1594 /**
1595  * usb_autopm_get_interface_async - increment a USB interface's PM-usage counter
1596  * @intf: the usb_interface whose counter should be incremented
1597  *
1598  * This routine does much the same thing as
1599  * usb_autopm_get_interface(): It increments @intf's usage counter and
1600  * queues an autoresume request if the device is suspended.  The
1601  * differences are that it does not perform any synchronization (callers
1602  * should hold a private lock and handle all synchronization issues
1603  * themselves), and it does not autoresume the device directly (it only
1604  * queues a request).  After a successful call, the device may not yet be
1605  * resumed.
1606  *
1607  * This routine can run in atomic context.
1608  */
1609 int usb_autopm_get_interface_async(struct usb_interface *intf)
1610 {
1611         int     status;
1612
1613         status = pm_runtime_get(&intf->dev);
1614         if (status < 0 && status != -EINPROGRESS)
1615                 pm_runtime_put_noidle(&intf->dev);
1616         else
1617                 atomic_inc(&intf->pm_usage_cnt);
1618         dev_vdbg(&intf->dev, "%s: cnt %d -> %d\n",
1619                         __func__, atomic_read(&intf->dev.power.usage_count),
1620                         status);
1621         if (status > 0 || status == -EINPROGRESS)
1622                 status = 0;
1623         return status;
1624 }
1625 EXPORT_SYMBOL_GPL(usb_autopm_get_interface_async);
1626
1627 /**
1628  * usb_autopm_get_interface_no_resume - increment a USB interface's PM-usage counter
1629  * @intf: the usb_interface whose counter should be incremented
1630  *
1631  * This routine increments @intf's usage counter but does not carry out an
1632  * autoresume.
1633  *
1634  * This routine can run in atomic context.
1635  */
1636 void usb_autopm_get_interface_no_resume(struct usb_interface *intf)
1637 {
1638         struct usb_device       *udev = interface_to_usbdev(intf);
1639
1640         usb_mark_last_busy(udev);
1641         atomic_inc(&intf->pm_usage_cnt);
1642         pm_runtime_get_noresume(&intf->dev);
1643 }
1644 EXPORT_SYMBOL_GPL(usb_autopm_get_interface_no_resume);
1645
1646 /* Internal routine to check whether we may autosuspend a device. */
1647 static int autosuspend_check(struct usb_device *udev)
1648 {
1649         int                     w, i;
1650         struct usb_interface    *intf;
1651
1652         if (udev->state == USB_STATE_NOTATTACHED)
1653                 return -ENODEV;
1654
1655         /* Fail if autosuspend is disabled, or any interfaces are in use, or
1656          * any interface drivers require remote wakeup but it isn't available.
1657          */
1658         w = 0;
1659         if (udev->actconfig) {
1660                 for (i = 0; i < udev->actconfig->desc.bNumInterfaces; i++) {
1661                         intf = udev->actconfig->interface[i];
1662
1663                         /* We don't need to check interfaces that are
1664                          * disabled for runtime PM.  Either they are unbound
1665                          * or else their drivers don't support autosuspend
1666                          * and so they are permanently active.
1667                          */
1668                         if (intf->dev.power.disable_depth)
1669                                 continue;
1670                         if (atomic_read(&intf->dev.power.usage_count) > 0)
1671                                 return -EBUSY;
1672                         w |= intf->needs_remote_wakeup;
1673
1674                         /* Don't allow autosuspend if the device will need
1675                          * a reset-resume and any of its interface drivers
1676                          * doesn't include support or needs remote wakeup.
1677                          */
1678                         if (udev->quirks & USB_QUIRK_RESET_RESUME) {
1679                                 struct usb_driver *driver;
1680
1681                                 driver = to_usb_driver(intf->dev.driver);
1682                                 if (!driver->reset_resume ||
1683                                                 intf->needs_remote_wakeup)
1684                                         return -EOPNOTSUPP;
1685                         }
1686                 }
1687         }
1688         if (w && !device_can_wakeup(&udev->dev)) {
1689                 dev_dbg(&udev->dev, "remote wakeup needed for autosuspend\n");
1690                 return -EOPNOTSUPP;
1691         }
1692
1693         /*
1694          * If the device is a direct child of the root hub and the HCD
1695          * doesn't handle wakeup requests, don't allow autosuspend when
1696          * wakeup is needed.
1697          */
1698         if (w && udev->parent == udev->bus->root_hub &&
1699                         bus_to_hcd(udev->bus)->cant_recv_wakeups) {
1700                 dev_dbg(&udev->dev, "HCD doesn't handle wakeup requests\n");
1701                 return -EOPNOTSUPP;
1702         }
1703
1704         udev->do_remote_wakeup = w;
1705         return 0;
1706 }
1707
1708 int usb_runtime_suspend(struct device *dev)
1709 {
1710         struct usb_device       *udev = to_usb_device(dev);
1711         int                     status;
1712
1713         /* A USB device can be suspended if it passes the various autosuspend
1714          * checks.  Runtime suspend for a USB device means suspending all the
1715          * interfaces and then the device itself.
1716          */
1717         if (autosuspend_check(udev) != 0)
1718                 return -EAGAIN;
1719
1720         status = usb_suspend_both(udev, PMSG_AUTO_SUSPEND);
1721
1722         /* Allow a retry if autosuspend failed temporarily */
1723         if (status == -EAGAIN || status == -EBUSY)
1724                 usb_mark_last_busy(udev);
1725
1726         /*
1727          * The PM core reacts badly unless the return code is 0,
1728          * -EAGAIN, or -EBUSY, so always return -EBUSY on an error
1729          * (except for root hubs, because they don't suspend through
1730          * an upstream port like other USB devices).
1731          */
1732         if (status != 0 && udev->parent)
1733                 return -EBUSY;
1734         return status;
1735 }
1736
1737 int usb_runtime_resume(struct device *dev)
1738 {
1739         struct usb_device       *udev = to_usb_device(dev);
1740         int                     status;
1741
1742         /* Runtime resume for a USB device means resuming both the device
1743          * and all its interfaces.
1744          */
1745         status = usb_resume_both(udev, PMSG_AUTO_RESUME);
1746         return status;
1747 }
1748
1749 int usb_runtime_idle(struct device *dev)
1750 {
1751         struct usb_device       *udev = to_usb_device(dev);
1752
1753         /* An idle USB device can be suspended if it passes the various
1754          * autosuspend checks.
1755          */
1756         if (autosuspend_check(udev) == 0)
1757                 pm_runtime_autosuspend(dev);
1758         return 0;
1759 }
1760
1761 int usb_set_usb2_hardware_lpm(struct usb_device *udev, int enable)
1762 {
1763         struct usb_hcd *hcd = bus_to_hcd(udev->bus);
1764         int ret = -EPERM;
1765
1766         if (hcd->driver->set_usb2_hw_lpm) {
1767                 ret = hcd->driver->set_usb2_hw_lpm(hcd, udev, enable);
1768                 if (!ret)
1769                         udev->usb2_hw_lpm_enabled = enable;
1770         }
1771
1772         return ret;
1773 }
1774
1775 #endif /* CONFIG_USB_SUSPEND */
1776
1777 struct bus_type usb_bus_type = {
1778         .name =         "usb",
1779         .match =        usb_device_match,
1780         .uevent =       usb_uevent,
1781 };