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