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