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