blob: 631f3058248152973bb69ee2592bb3363d9dc0ab [file] [log] [blame]
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -08001/*
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
Alan Stern36e56a32006-07-01 22:08:06 -040020 * matching, probing, releasing, suspending and resuming for
21 * real drivers.
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -080022 *
23 */
24
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -080025#include <linux/device.h>
26#include <linux/usb.h>
Alan Sternbd859282006-09-19 10:14:07 -040027#include <linux/workqueue.h>
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -080028#include "hcd.h"
29#include "usb.h"
30
Greg Kroah-Hartman733260f2005-11-16 13:41:28 -080031#ifdef CONFIG_HOTPLUG
32
33/*
34 * Adds a new dynamic USBdevice ID to this driver,
35 * and cause the driver to probe for all devices again.
36 */
Greg Kroah-Hartman93bacef2006-12-17 21:50:23 +010037ssize_t usb_store_new_id(struct usb_dynids *dynids,
38 struct device_driver *driver,
39 const char *buf, size_t count)
Greg Kroah-Hartman733260f2005-11-16 13:41:28 -080040{
Greg Kroah-Hartman733260f2005-11-16 13:41:28 -080041 struct usb_dynid *dynid;
42 u32 idVendor = 0;
43 u32 idProduct = 0;
44 int fields = 0;
Greg Kroah-Hartman1b21d5e2006-08-28 11:43:25 -070045 int retval = 0;
Greg Kroah-Hartman733260f2005-11-16 13:41:28 -080046
47 fields = sscanf(buf, "%x %x", &idVendor, &idProduct);
48 if (fields < 2)
49 return -EINVAL;
50
51 dynid = kzalloc(sizeof(*dynid), GFP_KERNEL);
52 if (!dynid)
53 return -ENOMEM;
54
55 INIT_LIST_HEAD(&dynid->node);
56 dynid->id.idVendor = idVendor;
57 dynid->id.idProduct = idProduct;
58 dynid->id.match_flags = USB_DEVICE_ID_MATCH_DEVICE;
59
Greg Kroah-Hartman93bacef2006-12-17 21:50:23 +010060 spin_lock(&dynids->lock);
61 list_add_tail(&dynids->list, &dynid->node);
62 spin_unlock(&dynids->lock);
Greg Kroah-Hartman733260f2005-11-16 13:41:28 -080063
64 if (get_driver(driver)) {
Greg Kroah-Hartman1b21d5e2006-08-28 11:43:25 -070065 retval = driver_attach(driver);
Greg Kroah-Hartman733260f2005-11-16 13:41:28 -080066 put_driver(driver);
67 }
68
Greg Kroah-Hartman1b21d5e2006-08-28 11:43:25 -070069 if (retval)
70 return retval;
Greg Kroah-Hartman733260f2005-11-16 13:41:28 -080071 return count;
72}
Greg Kroah-Hartman93bacef2006-12-17 21:50:23 +010073EXPORT_SYMBOL_GPL(usb_store_new_id);
74
75static ssize_t store_new_id(struct device_driver *driver,
76 const char *buf, size_t count)
77{
78 struct usb_driver *usb_drv = to_usb_driver(driver);
79
80 return usb_store_new_id(&usb_drv->dynids, driver, buf, count);
81}
Greg Kroah-Hartman733260f2005-11-16 13:41:28 -080082static DRIVER_ATTR(new_id, S_IWUSR, NULL, store_new_id);
83
84static int usb_create_newid_file(struct usb_driver *usb_drv)
85{
86 int error = 0;
87
Greg Kroah-Hartmanba9dc652005-11-16 13:41:28 -080088 if (usb_drv->no_dynamic_id)
89 goto exit;
90
Greg Kroah-Hartman733260f2005-11-16 13:41:28 -080091 if (usb_drv->probe != NULL)
Alan Stern8bb54ab2006-07-01 22:08:49 -040092 error = sysfs_create_file(&usb_drv->drvwrap.driver.kobj,
Greg Kroah-Hartman733260f2005-11-16 13:41:28 -080093 &driver_attr_new_id.attr);
Greg Kroah-Hartmanba9dc652005-11-16 13:41:28 -080094exit:
Greg Kroah-Hartman733260f2005-11-16 13:41:28 -080095 return error;
96}
97
Greg Kroah-Hartmanba9dc652005-11-16 13:41:28 -080098static void usb_remove_newid_file(struct usb_driver *usb_drv)
99{
100 if (usb_drv->no_dynamic_id)
101 return;
102
103 if (usb_drv->probe != NULL)
Alan Stern8bb54ab2006-07-01 22:08:49 -0400104 sysfs_remove_file(&usb_drv->drvwrap.driver.kobj,
Greg Kroah-Hartmanba9dc652005-11-16 13:41:28 -0800105 &driver_attr_new_id.attr);
106}
107
Greg Kroah-Hartman733260f2005-11-16 13:41:28 -0800108static void usb_free_dynids(struct usb_driver *usb_drv)
109{
110 struct usb_dynid *dynid, *n;
111
112 spin_lock(&usb_drv->dynids.lock);
113 list_for_each_entry_safe(dynid, n, &usb_drv->dynids.list, node) {
114 list_del(&dynid->node);
115 kfree(dynid);
116 }
117 spin_unlock(&usb_drv->dynids.lock);
118}
119#else
120static inline int usb_create_newid_file(struct usb_driver *usb_drv)
121{
122 return 0;
123}
124
Greg Kroah-Hartmanba9dc652005-11-16 13:41:28 -0800125static void usb_remove_newid_file(struct usb_driver *usb_drv)
126{
127}
128
Greg Kroah-Hartman733260f2005-11-16 13:41:28 -0800129static inline void usb_free_dynids(struct usb_driver *usb_drv)
130{
131}
132#endif
133
134static const struct usb_device_id *usb_match_dynamic_id(struct usb_interface *intf,
135 struct usb_driver *drv)
136{
137 struct usb_dynid *dynid;
138
139 spin_lock(&drv->dynids.lock);
140 list_for_each_entry(dynid, &drv->dynids.list, node) {
141 if (usb_match_one_id(intf, &dynid->id)) {
142 spin_unlock(&drv->dynids.lock);
143 return &dynid->id;
144 }
145 }
146 spin_unlock(&drv->dynids.lock);
147 return NULL;
148}
149
150
Alan Stern8bb54ab2006-07-01 22:08:49 -0400151/* called from driver core with dev locked */
152static int usb_probe_device(struct device *dev)
153{
154 struct usb_device_driver *udriver = to_usb_device_driver(dev->driver);
155 struct usb_device *udev;
156 int error = -ENODEV;
157
158 dev_dbg(dev, "%s\n", __FUNCTION__);
159
160 if (!is_usb_device(dev)) /* Sanity check */
161 return error;
162
163 udev = to_usb_device(dev);
164
Alan Stern8bb54ab2006-07-01 22:08:49 -0400165 /* TODO: Add real matching code */
166
Alan Stern645daaa2006-08-30 15:47:02 -0400167 /* The device should always appear to be in use
168 * unless the driver suports autosuspend.
169 */
170 udev->pm_usage_cnt = !(udriver->supports_autosuspend);
171
Alan Stern8bb54ab2006-07-01 22:08:49 -0400172 error = udriver->probe(udev);
173 return error;
174}
175
176/* called from driver core with dev locked */
177static int usb_unbind_device(struct device *dev)
178{
179 struct usb_device_driver *udriver = to_usb_device_driver(dev->driver);
180
181 udriver->disconnect(to_usb_device(dev));
182 return 0;
183}
184
185
186/* called from driver core with dev locked */
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800187static int usb_probe_interface(struct device *dev)
188{
Alan Stern8bb54ab2006-07-01 22:08:49 -0400189 struct usb_driver *driver = to_usb_driver(dev->driver);
190 struct usb_interface *intf;
Alan Stern645daaa2006-08-30 15:47:02 -0400191 struct usb_device *udev;
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800192 const struct usb_device_id *id;
193 int error = -ENODEV;
194
195 dev_dbg(dev, "%s\n", __FUNCTION__);
196
Alan Stern8bb54ab2006-07-01 22:08:49 -0400197 if (is_usb_device(dev)) /* Sanity check */
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800198 return error;
Alan Stern8bb54ab2006-07-01 22:08:49 -0400199
200 intf = to_usb_interface(dev);
Alan Stern645daaa2006-08-30 15:47:02 -0400201 udev = interface_to_usbdev(intf);
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800202
203 id = usb_match_id(intf, driver->id_table);
Greg Kroah-Hartman733260f2005-11-16 13:41:28 -0800204 if (!id)
205 id = usb_match_dynamic_id(intf, driver);
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800206 if (id) {
207 dev_dbg(dev, "%s - got id\n", __FUNCTION__);
208
Alan Stern94fcda12006-11-20 11:38:46 -0500209 error = usb_autoresume_device(udev);
Alan Stern645daaa2006-08-30 15:47:02 -0400210 if (error)
211 return error;
212
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800213 /* Interface "power state" doesn't correspond to any hardware
214 * state whatsoever. We use it to record when it's bound to
215 * a driver that may start I/0: it's not frozen/quiesced.
216 */
217 mark_active(intf);
218 intf->condition = USB_INTERFACE_BINDING;
Alan Stern645daaa2006-08-30 15:47:02 -0400219
220 /* The interface should always appear to be in use
221 * unless the driver suports autosuspend.
222 */
223 intf->pm_usage_cnt = !(driver->supports_autosuspend);
224
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800225 error = driver->probe(intf, id);
226 if (error) {
227 mark_quiesced(intf);
Alan Stern645daaa2006-08-30 15:47:02 -0400228 intf->needs_remote_wakeup = 0;
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800229 intf->condition = USB_INTERFACE_UNBOUND;
230 } else
231 intf->condition = USB_INTERFACE_BOUND;
Alan Stern645daaa2006-08-30 15:47:02 -0400232
Alan Stern94fcda12006-11-20 11:38:46 -0500233 usb_autosuspend_device(udev);
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800234 }
235
236 return error;
237}
238
Alan Stern8bb54ab2006-07-01 22:08:49 -0400239/* called from driver core with dev locked */
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800240static int usb_unbind_interface(struct device *dev)
241{
Alan Stern8bb54ab2006-07-01 22:08:49 -0400242 struct usb_driver *driver = to_usb_driver(dev->driver);
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800243 struct usb_interface *intf = to_usb_interface(dev);
Alan Stern645daaa2006-08-30 15:47:02 -0400244 struct usb_device *udev;
245 int error;
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800246
247 intf->condition = USB_INTERFACE_UNBINDING;
248
Alan Stern645daaa2006-08-30 15:47:02 -0400249 /* Autoresume for set_interface call below */
250 udev = interface_to_usbdev(intf);
Alan Stern94fcda12006-11-20 11:38:46 -0500251 error = usb_autoresume_device(udev);
Alan Stern645daaa2006-08-30 15:47:02 -0400252
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800253 /* release all urbs for this interface */
254 usb_disable_interface(interface_to_usbdev(intf), intf);
255
Alan Stern8bb54ab2006-07-01 22:08:49 -0400256 driver->disconnect(intf);
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800257
258 /* reset other interface state */
259 usb_set_interface(interface_to_usbdev(intf),
260 intf->altsetting[0].desc.bInterfaceNumber,
261 0);
262 usb_set_intfdata(intf, NULL);
Alan Stern645daaa2006-08-30 15:47:02 -0400263
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800264 intf->condition = USB_INTERFACE_UNBOUND;
265 mark_quiesced(intf);
Alan Stern645daaa2006-08-30 15:47:02 -0400266 intf->needs_remote_wakeup = 0;
267
268 if (!error)
Alan Stern94fcda12006-11-20 11:38:46 -0500269 usb_autosuspend_device(udev);
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800270
271 return 0;
272}
273
Alan Stern36e56a32006-07-01 22:08:06 -0400274/**
275 * usb_driver_claim_interface - bind a driver to an interface
276 * @driver: the driver to be bound
277 * @iface: the interface to which it will be bound; must be in the
278 * usb device's active configuration
279 * @priv: driver data associated with that interface
280 *
281 * This is used by usb device drivers that need to claim more than one
282 * interface on a device when probing (audio and acm are current examples).
283 * No device driver should directly modify internal usb_interface or
284 * usb_device structure members.
285 *
286 * Few drivers should need to use this routine, since the most natural
287 * way to bind to an interface is to return the private data from
288 * the driver's probe() method.
289 *
Greg Kroah-Hartman341487a2007-04-09 11:52:31 -0400290 * Callers must own the device lock, so driver probe() entries don't need
291 * extra locking, but other call contexts may need to explicitly claim that
292 * lock.
Alan Stern36e56a32006-07-01 22:08:06 -0400293 */
294int usb_driver_claim_interface(struct usb_driver *driver,
295 struct usb_interface *iface, void* priv)
296{
297 struct device *dev = &iface->dev;
Alan Stern645daaa2006-08-30 15:47:02 -0400298 struct usb_device *udev = interface_to_usbdev(iface);
Greg Kroah-Hartman1b21d5e2006-08-28 11:43:25 -0700299 int retval = 0;
Alan Stern36e56a32006-07-01 22:08:06 -0400300
301 if (dev->driver)
302 return -EBUSY;
303
Alan Stern8bb54ab2006-07-01 22:08:49 -0400304 dev->driver = &driver->drvwrap.driver;
Alan Stern36e56a32006-07-01 22:08:06 -0400305 usb_set_intfdata(iface, priv);
Alan Stern645daaa2006-08-30 15:47:02 -0400306
Alan Sterne0318eb2006-09-26 14:50:20 -0400307 usb_pm_lock(udev);
Alan Stern36e56a32006-07-01 22:08:06 -0400308 iface->condition = USB_INTERFACE_BOUND;
309 mark_active(iface);
Alan Stern645daaa2006-08-30 15:47:02 -0400310 iface->pm_usage_cnt = !(driver->supports_autosuspend);
Alan Sterne0318eb2006-09-26 14:50:20 -0400311 usb_pm_unlock(udev);
Alan Stern36e56a32006-07-01 22:08:06 -0400312
313 /* if interface was already added, bind now; else let
314 * the future device_add() bind it, bypassing probe()
315 */
316 if (device_is_registered(dev))
Greg Kroah-Hartman1b21d5e2006-08-28 11:43:25 -0700317 retval = device_bind_driver(dev);
Alan Stern36e56a32006-07-01 22:08:06 -0400318
Greg Kroah-Hartman1b21d5e2006-08-28 11:43:25 -0700319 return retval;
Alan Stern36e56a32006-07-01 22:08:06 -0400320}
321EXPORT_SYMBOL(usb_driver_claim_interface);
322
323/**
324 * usb_driver_release_interface - unbind a driver from an interface
325 * @driver: the driver to be unbound
326 * @iface: the interface from which it will be unbound
327 *
328 * This can be used by drivers to release an interface without waiting
329 * for their disconnect() methods to be called. In typical cases this
330 * also causes the driver disconnect() method to be called.
331 *
332 * This call is synchronous, and may not be used in an interrupt context.
Greg Kroah-Hartman341487a2007-04-09 11:52:31 -0400333 * Callers must own the device lock, so driver disconnect() entries don't
334 * need extra locking, but other call contexts may need to explicitly claim
335 * that lock.
Alan Stern36e56a32006-07-01 22:08:06 -0400336 */
337void usb_driver_release_interface(struct usb_driver *driver,
338 struct usb_interface *iface)
339{
340 struct device *dev = &iface->dev;
Alan Stern645daaa2006-08-30 15:47:02 -0400341 struct usb_device *udev = interface_to_usbdev(iface);
Alan Stern36e56a32006-07-01 22:08:06 -0400342
343 /* this should never happen, don't release something that's not ours */
Alan Stern8bb54ab2006-07-01 22:08:49 -0400344 if (!dev->driver || dev->driver != &driver->drvwrap.driver)
Alan Stern36e56a32006-07-01 22:08:06 -0400345 return;
346
347 /* don't release from within disconnect() */
348 if (iface->condition != USB_INTERFACE_BOUND)
349 return;
350
351 /* don't release if the interface hasn't been added yet */
352 if (device_is_registered(dev)) {
353 iface->condition = USB_INTERFACE_UNBINDING;
354 device_release_driver(dev);
355 }
356
357 dev->driver = NULL;
358 usb_set_intfdata(iface, NULL);
Alan Stern645daaa2006-08-30 15:47:02 -0400359
Alan Sterne0318eb2006-09-26 14:50:20 -0400360 usb_pm_lock(udev);
Alan Stern36e56a32006-07-01 22:08:06 -0400361 iface->condition = USB_INTERFACE_UNBOUND;
362 mark_quiesced(iface);
Alan Stern645daaa2006-08-30 15:47:02 -0400363 iface->needs_remote_wakeup = 0;
Alan Sterne0318eb2006-09-26 14:50:20 -0400364 usb_pm_unlock(udev);
Alan Stern36e56a32006-07-01 22:08:06 -0400365}
366EXPORT_SYMBOL(usb_driver_release_interface);
367
Greg Kroah-Hartman733260f2005-11-16 13:41:28 -0800368/* returns 0 if no match, 1 if match */
Greg Kroah-Hartmanbb417022007-01-26 14:26:21 +0100369int usb_match_device(struct usb_device *dev, const struct usb_device_id *id)
Greg Kroah-Hartman733260f2005-11-16 13:41:28 -0800370{
Greg Kroah-Hartman733260f2005-11-16 13:41:28 -0800371 if ((id->match_flags & USB_DEVICE_ID_MATCH_VENDOR) &&
372 id->idVendor != le16_to_cpu(dev->descriptor.idVendor))
373 return 0;
374
375 if ((id->match_flags & USB_DEVICE_ID_MATCH_PRODUCT) &&
376 id->idProduct != le16_to_cpu(dev->descriptor.idProduct))
377 return 0;
378
379 /* No need to test id->bcdDevice_lo != 0, since 0 is never
380 greater than any unsigned number. */
381 if ((id->match_flags & USB_DEVICE_ID_MATCH_DEV_LO) &&
382 (id->bcdDevice_lo > le16_to_cpu(dev->descriptor.bcdDevice)))
383 return 0;
384
385 if ((id->match_flags & USB_DEVICE_ID_MATCH_DEV_HI) &&
386 (id->bcdDevice_hi < le16_to_cpu(dev->descriptor.bcdDevice)))
387 return 0;
388
389 if ((id->match_flags & USB_DEVICE_ID_MATCH_DEV_CLASS) &&
390 (id->bDeviceClass != dev->descriptor.bDeviceClass))
391 return 0;
392
393 if ((id->match_flags & USB_DEVICE_ID_MATCH_DEV_SUBCLASS) &&
394 (id->bDeviceSubClass!= dev->descriptor.bDeviceSubClass))
395 return 0;
396
397 if ((id->match_flags & USB_DEVICE_ID_MATCH_DEV_PROTOCOL) &&
398 (id->bDeviceProtocol != dev->descriptor.bDeviceProtocol))
399 return 0;
400
Greg Kroah-Hartmanbb417022007-01-26 14:26:21 +0100401 return 1;
402}
403
404/* returns 0 if no match, 1 if match */
405int usb_match_one_id(struct usb_interface *interface,
406 const struct usb_device_id *id)
407{
408 struct usb_host_interface *intf;
409 struct usb_device *dev;
410
411 /* proc_connectinfo in devio.c may call us with id == NULL. */
412 if (id == NULL)
413 return 0;
414
415 intf = interface->cur_altsetting;
416 dev = interface_to_usbdev(interface);
417
418 if (!usb_match_device(dev, id))
419 return 0;
420
Alan Stern93c8bf42006-10-18 16:41:51 -0400421 /* The interface class, subclass, and protocol should never be
422 * checked for a match if the device class is Vendor Specific,
423 * unless the match record specifies the Vendor ID. */
424 if (dev->descriptor.bDeviceClass == USB_CLASS_VENDOR_SPEC &&
425 !(id->match_flags & USB_DEVICE_ID_MATCH_VENDOR) &&
426 (id->match_flags & (USB_DEVICE_ID_MATCH_INT_CLASS |
427 USB_DEVICE_ID_MATCH_INT_SUBCLASS |
428 USB_DEVICE_ID_MATCH_INT_PROTOCOL)))
429 return 0;
430
Greg Kroah-Hartman733260f2005-11-16 13:41:28 -0800431 if ((id->match_flags & USB_DEVICE_ID_MATCH_INT_CLASS) &&
432 (id->bInterfaceClass != intf->desc.bInterfaceClass))
433 return 0;
434
435 if ((id->match_flags & USB_DEVICE_ID_MATCH_INT_SUBCLASS) &&
436 (id->bInterfaceSubClass != intf->desc.bInterfaceSubClass))
437 return 0;
438
439 if ((id->match_flags & USB_DEVICE_ID_MATCH_INT_PROTOCOL) &&
440 (id->bInterfaceProtocol != intf->desc.bInterfaceProtocol))
441 return 0;
442
443 return 1;
444}
Greg Kroah-Hartman93bacef2006-12-17 21:50:23 +0100445EXPORT_SYMBOL_GPL(usb_match_one_id);
446
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800447/**
448 * usb_match_id - find first usb_device_id matching device or interface
449 * @interface: the interface of interest
450 * @id: array of usb_device_id structures, terminated by zero entry
451 *
452 * usb_match_id searches an array of usb_device_id's and returns
453 * the first one matching the device or interface, or null.
454 * This is used when binding (or rebinding) a driver to an interface.
455 * Most USB device drivers will use this indirectly, through the usb core,
456 * but some layered driver frameworks use it directly.
457 * These device tables are exported with MODULE_DEVICE_TABLE, through
458 * modutils, to support the driver loading functionality of USB hotplugging.
459 *
460 * What Matches:
461 *
462 * The "match_flags" element in a usb_device_id controls which
463 * members are used. If the corresponding bit is set, the
464 * value in the device_id must match its corresponding member
465 * in the device or interface descriptor, or else the device_id
466 * does not match.
467 *
468 * "driver_info" is normally used only by device drivers,
469 * but you can create a wildcard "matches anything" usb_device_id
470 * as a driver's "modules.usbmap" entry if you provide an id with
471 * only a nonzero "driver_info" field. If you do this, the USB device
472 * driver's probe() routine should use additional intelligence to
473 * decide whether to bind to the specified interface.
474 *
475 * What Makes Good usb_device_id Tables:
476 *
477 * The match algorithm is very simple, so that intelligence in
478 * driver selection must come from smart driver id records.
479 * Unless you have good reasons to use another selection policy,
480 * provide match elements only in related groups, and order match
481 * specifiers from specific to general. Use the macros provided
482 * for that purpose if you can.
483 *
484 * The most specific match specifiers use device descriptor
485 * data. These are commonly used with product-specific matches;
486 * the USB_DEVICE macro lets you provide vendor and product IDs,
487 * and you can also match against ranges of product revisions.
488 * These are widely used for devices with application or vendor
489 * specific bDeviceClass values.
490 *
491 * Matches based on device class/subclass/protocol specifications
492 * are slightly more general; use the USB_DEVICE_INFO macro, or
493 * its siblings. These are used with single-function devices
494 * where bDeviceClass doesn't specify that each interface has
495 * its own class.
496 *
497 * Matches based on interface class/subclass/protocol are the
498 * most general; they let drivers bind to any interface on a
499 * multiple-function device. Use the USB_INTERFACE_INFO
500 * macro, or its siblings, to match class-per-interface style
Alan Stern93c8bf42006-10-18 16:41:51 -0400501 * devices (as recorded in bInterfaceClass).
502 *
503 * Note that an entry created by USB_INTERFACE_INFO won't match
504 * any interface if the device class is set to Vendor-Specific.
505 * This is deliberate; according to the USB spec the meanings of
506 * the interface class/subclass/protocol for these devices are also
507 * vendor-specific, and hence matching against a standard product
508 * class wouldn't work anyway. If you really want to use an
509 * interface-based match for such a device, create a match record
510 * that also specifies the vendor ID. (Unforunately there isn't a
511 * standard macro for creating records like this.)
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800512 *
513 * Within those groups, remember that not all combinations are
514 * meaningful. For example, don't give a product version range
515 * without vendor and product IDs; or specify a protocol without
516 * its associated class and subclass.
517 */
518const struct usb_device_id *usb_match_id(struct usb_interface *interface,
519 const struct usb_device_id *id)
520{
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800521 /* proc_connectinfo in devio.c may call us with id == NULL. */
522 if (id == NULL)
523 return NULL;
524
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800525 /* It is important to check that id->driver_info is nonzero,
526 since an entry that is all zeroes except for a nonzero
527 id->driver_info is the way to create an entry that
528 indicates that the driver want to examine every
529 device and interface. */
530 for (; id->idVendor || id->bDeviceClass || id->bInterfaceClass ||
531 id->driver_info; id++) {
Greg Kroah-Hartman733260f2005-11-16 13:41:28 -0800532 if (usb_match_one_id(interface, id))
533 return id;
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800534 }
535
536 return NULL;
537}
Greg Kroah-Hartmanb87ba0a2006-03-20 13:17:13 -0800538EXPORT_SYMBOL_GPL_FUTURE(usb_match_id);
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800539
Adrian Bunk8bb22d22006-11-21 22:02:54 +0100540static int usb_device_match(struct device *dev, struct device_driver *drv)
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800541{
Alan Stern8bb54ab2006-07-01 22:08:49 -0400542 /* devices and interfaces are handled separately */
543 if (is_usb_device(dev)) {
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800544
Alan Stern8bb54ab2006-07-01 22:08:49 -0400545 /* interface drivers never match devices */
546 if (!is_usb_device_driver(drv))
547 return 0;
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800548
Alan Stern8bb54ab2006-07-01 22:08:49 -0400549 /* TODO: Add real matching code */
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800550 return 1;
551
Alan Stern8bb54ab2006-07-01 22:08:49 -0400552 } else {
553 struct usb_interface *intf;
554 struct usb_driver *usb_drv;
555 const struct usb_device_id *id;
556
557 /* device drivers never match interfaces */
558 if (is_usb_device_driver(drv))
559 return 0;
560
561 intf = to_usb_interface(dev);
562 usb_drv = to_usb_driver(drv);
563
564 id = usb_match_id(intf, usb_drv->id_table);
565 if (id)
566 return 1;
567
568 id = usb_match_dynamic_id(intf, usb_drv);
569 if (id)
570 return 1;
571 }
572
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800573 return 0;
574}
575
Alan Stern36e56a32006-07-01 22:08:06 -0400576#ifdef CONFIG_HOTPLUG
Alan Stern36e56a32006-07-01 22:08:06 -0400577static int usb_uevent(struct device *dev, char **envp, int num_envp,
578 char *buffer, int buffer_size)
579{
Alan Stern36e56a32006-07-01 22:08:06 -0400580 struct usb_device *usb_dev;
Alan Stern36e56a32006-07-01 22:08:06 -0400581 int i = 0;
582 int length = 0;
583
584 if (!dev)
585 return -ENODEV;
586
587 /* driver is often null here; dev_dbg() would oops */
588 pr_debug ("usb %s: uevent\n", dev->bus_id);
589
Kay Sievers9f8b17e2007-03-13 15:59:31 +0100590 if (is_usb_device(dev))
Alan Stern782da722006-07-01 22:09:35 -0400591 usb_dev = to_usb_device(dev);
Kay Sievers9f8b17e2007-03-13 15:59:31 +0100592 else {
593 struct usb_interface *intf = to_usb_interface(dev);
Alan Stern8bb54ab2006-07-01 22:08:49 -0400594 usb_dev = interface_to_usbdev(intf);
Alan Stern8bb54ab2006-07-01 22:08:49 -0400595 }
Alan Stern36e56a32006-07-01 22:08:06 -0400596
597 if (usb_dev->devnum < 0) {
598 pr_debug ("usb %s: already deleted?\n", dev->bus_id);
599 return -ENODEV;
600 }
601 if (!usb_dev->bus) {
602 pr_debug ("usb %s: bus removed?\n", dev->bus_id);
603 return -ENODEV;
604 }
605
606#ifdef CONFIG_USB_DEVICEFS
607 /* If this is available, userspace programs can directly read
608 * all the device descriptors we don't tell them about. Or
Kay Sievers9f8b17e2007-03-13 15:59:31 +0100609 * act as usermode drivers.
Alan Stern36e56a32006-07-01 22:08:06 -0400610 */
611 if (add_uevent_var(envp, num_envp, &i,
612 buffer, buffer_size, &length,
613 "DEVICE=/proc/bus/usb/%03d/%03d",
614 usb_dev->bus->busnum, usb_dev->devnum))
615 return -ENOMEM;
616#endif
617
618 /* per-device configurations are common */
619 if (add_uevent_var(envp, num_envp, &i,
620 buffer, buffer_size, &length,
621 "PRODUCT=%x/%x/%x",
622 le16_to_cpu(usb_dev->descriptor.idVendor),
623 le16_to_cpu(usb_dev->descriptor.idProduct),
624 le16_to_cpu(usb_dev->descriptor.bcdDevice)))
625 return -ENOMEM;
626
627 /* class-based driver binding models */
628 if (add_uevent_var(envp, num_envp, &i,
629 buffer, buffer_size, &length,
630 "TYPE=%d/%d/%d",
631 usb_dev->descriptor.bDeviceClass,
632 usb_dev->descriptor.bDeviceSubClass,
633 usb_dev->descriptor.bDeviceProtocol))
634 return -ENOMEM;
635
Kay Sievers9f8b17e2007-03-13 15:59:31 +0100636 if (add_uevent_var(envp, num_envp, &i,
Alan Stern36e56a32006-07-01 22:08:06 -0400637 buffer, buffer_size, &length,
Kay Sievers9f8b17e2007-03-13 15:59:31 +0100638 "BUSNUM=%03d",
639 usb_dev->bus->busnum))
640 return -ENOMEM;
Alan Stern36e56a32006-07-01 22:08:06 -0400641
Kay Sievers9f8b17e2007-03-13 15:59:31 +0100642 if (add_uevent_var(envp, num_envp, &i,
Alan Stern36e56a32006-07-01 22:08:06 -0400643 buffer, buffer_size, &length,
Kay Sievers9f8b17e2007-03-13 15:59:31 +0100644 "DEVNUM=%03d",
645 usb_dev->devnum))
646 return -ENOMEM;
Alan Stern36e56a32006-07-01 22:08:06 -0400647
648 envp[i] = NULL;
Alan Stern36e56a32006-07-01 22:08:06 -0400649 return 0;
650}
651
652#else
653
654static int usb_uevent(struct device *dev, char **envp,
Kay Sievers9f8b17e2007-03-13 15:59:31 +0100655 int num_envp, char *buffer, int buffer_size)
Alan Stern36e56a32006-07-01 22:08:06 -0400656{
657 return -ENODEV;
658}
Alan Stern36e56a32006-07-01 22:08:06 -0400659#endif /* CONFIG_HOTPLUG */
660
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800661/**
Alan Stern8bb54ab2006-07-01 22:08:49 -0400662 * usb_register_device_driver - register a USB device (not interface) driver
663 * @new_udriver: USB operations for the device driver
Greg Kroah-Hartman2143acc2005-11-21 14:53:03 -0800664 * @owner: module owner of this driver.
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800665 *
Alan Stern8bb54ab2006-07-01 22:08:49 -0400666 * Registers a USB device driver with the USB core. The list of
667 * unattached devices will be rescanned whenever a new driver is
668 * added, allowing the new driver to attach to any recognized devices.
669 * Returns a negative error code on failure and 0 on success.
670 */
671int usb_register_device_driver(struct usb_device_driver *new_udriver,
672 struct module *owner)
673{
674 int retval = 0;
675
676 if (usb_disabled())
677 return -ENODEV;
678
679 new_udriver->drvwrap.for_devices = 1;
680 new_udriver->drvwrap.driver.name = (char *) new_udriver->name;
681 new_udriver->drvwrap.driver.bus = &usb_bus_type;
682 new_udriver->drvwrap.driver.probe = usb_probe_device;
683 new_udriver->drvwrap.driver.remove = usb_unbind_device;
684 new_udriver->drvwrap.driver.owner = owner;
685
686 retval = driver_register(&new_udriver->drvwrap.driver);
687
688 if (!retval) {
689 pr_info("%s: registered new device driver %s\n",
690 usbcore_name, new_udriver->name);
691 usbfs_update_special();
692 } else {
693 printk(KERN_ERR "%s: error %d registering device "
694 " driver %s\n",
695 usbcore_name, retval, new_udriver->name);
696 }
697
698 return retval;
699}
700EXPORT_SYMBOL_GPL(usb_register_device_driver);
701
702/**
703 * usb_deregister_device_driver - unregister a USB device (not interface) driver
704 * @udriver: USB operations of the device driver to unregister
705 * Context: must be able to sleep
706 *
707 * Unlinks the specified driver from the internal USB driver list.
708 */
709void usb_deregister_device_driver(struct usb_device_driver *udriver)
710{
711 pr_info("%s: deregistering device driver %s\n",
712 usbcore_name, udriver->name);
713
714 driver_unregister(&udriver->drvwrap.driver);
715 usbfs_update_special();
716}
717EXPORT_SYMBOL_GPL(usb_deregister_device_driver);
718
719/**
720 * usb_register_driver - register a USB interface driver
721 * @new_driver: USB operations for the interface driver
722 * @owner: module owner of this driver.
Randy Dunlap892705a2007-02-10 14:41:41 -0800723 * @mod_name: module name string
Alan Stern8bb54ab2006-07-01 22:08:49 -0400724 *
725 * Registers a USB interface driver with the USB core. The list of
726 * unattached interfaces will be rescanned whenever a new driver is
727 * added, allowing the new driver to attach to any recognized interfaces.
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800728 * Returns a negative error code on failure and 0 on success.
729 *
730 * NOTE: if you want your driver to use the USB major number, you must call
731 * usb_register_dev() to enable that functionality. This function no longer
732 * takes care of that.
733 */
Greg Kroah-Hartman80f745f2007-01-15 11:50:02 -0800734int usb_register_driver(struct usb_driver *new_driver, struct module *owner,
735 const char *mod_name)
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800736{
737 int retval = 0;
738
739 if (usb_disabled())
740 return -ENODEV;
741
Alan Stern8bb54ab2006-07-01 22:08:49 -0400742 new_driver->drvwrap.for_devices = 0;
743 new_driver->drvwrap.driver.name = (char *) new_driver->name;
744 new_driver->drvwrap.driver.bus = &usb_bus_type;
745 new_driver->drvwrap.driver.probe = usb_probe_interface;
746 new_driver->drvwrap.driver.remove = usb_unbind_interface;
747 new_driver->drvwrap.driver.owner = owner;
Greg Kroah-Hartman80f745f2007-01-15 11:50:02 -0800748 new_driver->drvwrap.driver.mod_name = mod_name;
Greg Kroah-Hartman733260f2005-11-16 13:41:28 -0800749 spin_lock_init(&new_driver->dynids.lock);
750 INIT_LIST_HEAD(&new_driver->dynids.list);
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800751
Alan Stern8bb54ab2006-07-01 22:08:49 -0400752 retval = driver_register(&new_driver->drvwrap.driver);
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800753
754 if (!retval) {
Alan Stern8bb54ab2006-07-01 22:08:49 -0400755 pr_info("%s: registered new interface driver %s\n",
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800756 usbcore_name, new_driver->name);
757 usbfs_update_special();
Greg Kroah-Hartman733260f2005-11-16 13:41:28 -0800758 usb_create_newid_file(new_driver);
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800759 } else {
Alan Stern8bb54ab2006-07-01 22:08:49 -0400760 printk(KERN_ERR "%s: error %d registering interface "
761 " driver %s\n",
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800762 usbcore_name, retval, new_driver->name);
763 }
764
765 return retval;
766}
Greg Kroah-Hartmanb87ba0a2006-03-20 13:17:13 -0800767EXPORT_SYMBOL_GPL_FUTURE(usb_register_driver);
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800768
769/**
Alan Stern8bb54ab2006-07-01 22:08:49 -0400770 * usb_deregister - unregister a USB interface driver
771 * @driver: USB operations of the interface driver to unregister
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800772 * Context: must be able to sleep
773 *
774 * Unlinks the specified driver from the internal USB driver list.
775 *
776 * NOTE: If you called usb_register_dev(), you still need to call
777 * usb_deregister_dev() to clean up your driver's allocated minor numbers,
778 * this * call will no longer do it for you.
779 */
780void usb_deregister(struct usb_driver *driver)
781{
Alan Stern8bb54ab2006-07-01 22:08:49 -0400782 pr_info("%s: deregistering interface driver %s\n",
783 usbcore_name, driver->name);
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800784
Greg Kroah-Hartmanba9dc652005-11-16 13:41:28 -0800785 usb_remove_newid_file(driver);
Greg Kroah-Hartman733260f2005-11-16 13:41:28 -0800786 usb_free_dynids(driver);
Alan Stern8bb54ab2006-07-01 22:08:49 -0400787 driver_unregister(&driver->drvwrap.driver);
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800788
789 usbfs_update_special();
790}
Greg Kroah-Hartmanb87ba0a2006-03-20 13:17:13 -0800791EXPORT_SYMBOL_GPL_FUTURE(usb_deregister);
Alan Stern36e56a32006-07-01 22:08:06 -0400792
793#ifdef CONFIG_PM
794
Alan Sterne0318eb2006-09-26 14:50:20 -0400795/* Caller has locked udev's pm_mutex */
Stephen Hemmingerd5ec1682006-11-14 10:06:17 -0800796static int usb_suspend_device(struct usb_device *udev, pm_message_t msg)
Alan Stern36e56a32006-07-01 22:08:06 -0400797{
Alan Stern782da722006-07-01 22:09:35 -0400798 struct usb_device_driver *udriver;
Alan Stern2bf40862006-07-01 22:12:19 -0400799 int status = 0;
Alan Stern36e56a32006-07-01 22:08:06 -0400800
Alan Stern114b3682006-07-01 22:13:04 -0400801 if (udev->state == USB_STATE_NOTATTACHED ||
802 udev->state == USB_STATE_SUSPENDED)
803 goto done;
804
Alan Stern1c5df7e2006-07-01 22:13:50 -0400805 /* For devices that don't have a driver, we do a standard suspend. */
806 if (udev->dev.driver == NULL) {
Alan Stern645daaa2006-08-30 15:47:02 -0400807 udev->do_remote_wakeup = 0;
Alan Stern1c5df7e2006-07-01 22:13:50 -0400808 status = usb_port_suspend(udev);
Alan Stern2bf40862006-07-01 22:12:19 -0400809 goto done;
Alan Stern1c5df7e2006-07-01 22:13:50 -0400810 }
811
Alan Stern1cc8a252006-07-01 22:10:15 -0400812 udriver = to_usb_device_driver(udev->dev.driver);
Alan Stern2bf40862006-07-01 22:12:19 -0400813 status = udriver->suspend(udev, msg);
814
815done:
Alan Stern645daaa2006-08-30 15:47:02 -0400816 // dev_dbg(&udev->dev, "%s: status %d\n", __FUNCTION__, status);
Alan Stern2bf40862006-07-01 22:12:19 -0400817 if (status == 0)
818 udev->dev.power.power_state.event = msg.event;
819 return status;
Alan Stern1cc8a252006-07-01 22:10:15 -0400820}
Alan Stern36e56a32006-07-01 22:08:06 -0400821
Alan Sterne0318eb2006-09-26 14:50:20 -0400822/* Caller has locked udev's pm_mutex */
Stephen Hemmingerd5ec1682006-11-14 10:06:17 -0800823static int usb_resume_device(struct usb_device *udev)
Alan Stern1cc8a252006-07-01 22:10:15 -0400824{
825 struct usb_device_driver *udriver;
Alan Stern2bf40862006-07-01 22:12:19 -0400826 int status = 0;
Alan Stern1cc8a252006-07-01 22:10:15 -0400827
Alan Stern114b3682006-07-01 22:13:04 -0400828 if (udev->state == USB_STATE_NOTATTACHED ||
829 udev->state != USB_STATE_SUSPENDED)
Alan Stern2bf40862006-07-01 22:12:19 -0400830 goto done;
Alan Stern1cc8a252006-07-01 22:10:15 -0400831
Alan Stern1c5df7e2006-07-01 22:13:50 -0400832 /* Can't resume it if it doesn't have a driver. */
833 if (udev->dev.driver == NULL) {
834 status = -ENOTCONN;
Alan Stern2bf40862006-07-01 22:12:19 -0400835 goto done;
Alan Stern1c5df7e2006-07-01 22:13:50 -0400836 }
837
Alan Stern1cc8a252006-07-01 22:10:15 -0400838 udriver = to_usb_device_driver(udev->dev.driver);
Alan Stern2bf40862006-07-01 22:12:19 -0400839 status = udriver->resume(udev);
840
841done:
Alan Stern645daaa2006-08-30 15:47:02 -0400842 // dev_dbg(&udev->dev, "%s: status %d\n", __FUNCTION__, status);
Alan Stern2add5222007-03-20 14:59:39 -0400843 if (status == 0) {
844 udev->autoresume_disabled = 0;
Alan Stern2bf40862006-07-01 22:12:19 -0400845 udev->dev.power.power_state.event = PM_EVENT_ON;
Alan Stern2add5222007-03-20 14:59:39 -0400846 }
Alan Stern2bf40862006-07-01 22:12:19 -0400847 return status;
Alan Stern1cc8a252006-07-01 22:10:15 -0400848}
849
Alan Sterne0318eb2006-09-26 14:50:20 -0400850/* Caller has locked intf's usb_device's pm mutex */
Stephen Hemmingerd5ec1682006-11-14 10:06:17 -0800851static int usb_suspend_interface(struct usb_interface *intf, pm_message_t msg)
Alan Stern1cc8a252006-07-01 22:10:15 -0400852{
853 struct usb_driver *driver;
Alan Stern2bf40862006-07-01 22:12:19 -0400854 int status = 0;
Alan Stern1cc8a252006-07-01 22:10:15 -0400855
Alan Stern114b3682006-07-01 22:13:04 -0400856 /* with no hardware, USB interfaces only use FREEZE and ON states */
857 if (interface_to_usbdev(intf)->state == USB_STATE_NOTATTACHED ||
858 !is_active(intf))
859 goto done;
860
Alan Stern645daaa2006-08-30 15:47:02 -0400861 if (intf->condition == USB_INTERFACE_UNBOUND) /* This can't happen */
Alan Stern2bf40862006-07-01 22:12:19 -0400862 goto done;
Alan Stern1cc8a252006-07-01 22:10:15 -0400863 driver = to_usb_driver(intf->dev.driver);
Alan Stern36e56a32006-07-01 22:08:06 -0400864
Alan Stern36e56a32006-07-01 22:08:06 -0400865 if (driver->suspend && driver->resume) {
Alan Stern1cc8a252006-07-01 22:10:15 -0400866 status = driver->suspend(intf, msg);
Alan Stern645daaa2006-08-30 15:47:02 -0400867 if (status == 0)
868 mark_quiesced(intf);
869 else if (!interface_to_usbdev(intf)->auto_pm)
Alan Stern1cc8a252006-07-01 22:10:15 -0400870 dev_err(&intf->dev, "%s error %d\n",
871 "suspend", status);
Alan Stern36e56a32006-07-01 22:08:06 -0400872 } else {
873 // FIXME else if there's no suspend method, disconnect...
Alan Stern645daaa2006-08-30 15:47:02 -0400874 // Not possible if auto_pm is set...
Alan Stern1cc8a252006-07-01 22:10:15 -0400875 dev_warn(&intf->dev, "no suspend for driver %s?\n",
876 driver->name);
Alan Stern36e56a32006-07-01 22:08:06 -0400877 mark_quiesced(intf);
Alan Stern36e56a32006-07-01 22:08:06 -0400878 }
Alan Stern2bf40862006-07-01 22:12:19 -0400879
880done:
Alan Stern645daaa2006-08-30 15:47:02 -0400881 // dev_dbg(&intf->dev, "%s: status %d\n", __FUNCTION__, status);
Alan Stern2bf40862006-07-01 22:12:19 -0400882 if (status == 0)
883 intf->dev.power.power_state.event = msg.event;
Alan Stern36e56a32006-07-01 22:08:06 -0400884 return status;
885}
886
Alan Stern645daaa2006-08-30 15:47:02 -0400887/* Caller has locked intf's usb_device's pm_mutex */
Stephen Hemmingerd5ec1682006-11-14 10:06:17 -0800888static int usb_resume_interface(struct usb_interface *intf)
Alan Stern36e56a32006-07-01 22:08:06 -0400889{
Alan Stern1cc8a252006-07-01 22:10:15 -0400890 struct usb_driver *driver;
Alan Stern2bf40862006-07-01 22:12:19 -0400891 int status = 0;
Alan Stern36e56a32006-07-01 22:08:06 -0400892
Alan Stern114b3682006-07-01 22:13:04 -0400893 if (interface_to_usbdev(intf)->state == USB_STATE_NOTATTACHED ||
894 is_active(intf))
Alan Stern2bf40862006-07-01 22:12:19 -0400895 goto done;
Alan Stern36e56a32006-07-01 22:08:06 -0400896
Alan Stern645daaa2006-08-30 15:47:02 -0400897 /* Don't let autoresume interfere with unbinding */
898 if (intf->condition == USB_INTERFACE_UNBINDING)
899 goto done;
900
Alan Stern1c5df7e2006-07-01 22:13:50 -0400901 /* Can't resume it if it doesn't have a driver. */
Alan Stern645daaa2006-08-30 15:47:02 -0400902 if (intf->condition == USB_INTERFACE_UNBOUND) {
Alan Stern1c5df7e2006-07-01 22:13:50 -0400903 status = -ENOTCONN;
Alan Stern2bf40862006-07-01 22:12:19 -0400904 goto done;
Alan Stern1c5df7e2006-07-01 22:13:50 -0400905 }
Alan Stern1cc8a252006-07-01 22:10:15 -0400906 driver = to_usb_driver(intf->dev.driver);
Alan Stern36e56a32006-07-01 22:08:06 -0400907
Alan Stern36e56a32006-07-01 22:08:06 -0400908 if (driver->resume) {
909 status = driver->resume(intf);
Alan Stern2bf40862006-07-01 22:12:19 -0400910 if (status)
Alan Stern1cc8a252006-07-01 22:10:15 -0400911 dev_err(&intf->dev, "%s error %d\n",
912 "resume", status);
Alan Stern2bf40862006-07-01 22:12:19 -0400913 else
914 mark_active(intf);
915 } else {
Alan Stern1cc8a252006-07-01 22:10:15 -0400916 dev_warn(&intf->dev, "no resume for driver %s?\n",
917 driver->name);
Alan Stern2bf40862006-07-01 22:12:19 -0400918 mark_active(intf);
919 }
920
921done:
Alan Stern645daaa2006-08-30 15:47:02 -0400922 // dev_dbg(&intf->dev, "%s: status %d\n", __FUNCTION__, status);
Alan Stern2bf40862006-07-01 22:12:19 -0400923 if (status == 0)
924 intf->dev.power.power_state.event = PM_EVENT_ON;
925 return status;
Alan Stern36e56a32006-07-01 22:08:06 -0400926}
927
Alan Stern94fcda12006-11-20 11:38:46 -0500928#ifdef CONFIG_USB_SUSPEND
929
Alan Sternaf4f7602006-10-30 17:06:45 -0500930/* Internal routine to check whether we may autosuspend a device. */
931static int autosuspend_check(struct usb_device *udev)
932{
933 int i;
934 struct usb_interface *intf;
Alan Stern19410442007-03-27 13:33:59 -0400935 long suspend_time;
Alan Sternaf4f7602006-10-30 17:06:45 -0500936
Alan Sternb5e795f2007-02-20 15:00:53 -0500937 /* For autosuspend, fail fast if anything is in use or autosuspend
938 * is disabled. Also fail if any interfaces require remote wakeup
939 * but it isn't available.
940 */
Alan Sternaf4f7602006-10-30 17:06:45 -0500941 udev->do_remote_wakeup = device_may_wakeup(&udev->dev);
942 if (udev->pm_usage_cnt > 0)
943 return -EBUSY;
Alan Stern2add5222007-03-20 14:59:39 -0400944 if (udev->autosuspend_delay < 0 || udev->autosuspend_disabled)
Alan Sternb5e795f2007-02-20 15:00:53 -0500945 return -EPERM;
946
Alan Stern19410442007-03-27 13:33:59 -0400947 suspend_time = udev->last_busy + udev->autosuspend_delay;
Alan Sternaf4f7602006-10-30 17:06:45 -0500948 if (udev->actconfig) {
949 for (i = 0; i < udev->actconfig->desc.bNumInterfaces; i++) {
950 intf = udev->actconfig->interface[i];
951 if (!is_active(intf))
952 continue;
953 if (intf->pm_usage_cnt > 0)
954 return -EBUSY;
955 if (intf->needs_remote_wakeup &&
956 !udev->do_remote_wakeup) {
957 dev_dbg(&udev->dev, "remote wakeup needed "
958 "for autosuspend\n");
959 return -EOPNOTSUPP;
960 }
961 }
962 }
Alan Stern19410442007-03-27 13:33:59 -0400963
964 /* If everything is okay but the device hasn't been idle for long
965 * enough, queue a delayed autosuspend request.
966 */
967 suspend_time -= jiffies;
968 if (suspend_time > 0) {
969 if (!timer_pending(&udev->autosuspend.timer))
970 queue_delayed_work(ksuspend_usb_wq, &udev->autosuspend,
971 suspend_time);
972 return -EAGAIN;
973 }
Alan Sternaf4f7602006-10-30 17:06:45 -0500974 return 0;
975}
976
Alan Stern94fcda12006-11-20 11:38:46 -0500977#else
978
979#define autosuspend_check(udev) 0
980
Alan Sternb5e795f2007-02-20 15:00:53 -0500981#endif /* CONFIG_USB_SUSPEND */
Alan Stern94fcda12006-11-20 11:38:46 -0500982
Alan Stern645daaa2006-08-30 15:47:02 -0400983/**
984 * usb_suspend_both - suspend a USB device and its interfaces
985 * @udev: the usb_device to suspend
986 * @msg: Power Management message describing this state transition
987 *
988 * This is the central routine for suspending USB devices. It calls the
989 * suspend methods for all the interface drivers in @udev and then calls
990 * the suspend method for @udev itself. If an error occurs at any stage,
991 * all the interfaces which were suspended are resumed so that they remain
992 * in the same state as the device.
993 *
994 * If an autosuspend is in progress (@udev->auto_pm is set), the routine
995 * checks first to make sure that neither the device itself or any of its
996 * active interfaces is in use (pm_usage_cnt is greater than 0). If they
997 * are, the autosuspend fails.
998 *
999 * If the suspend succeeds, the routine recursively queues an autosuspend
1000 * request for @udev's parent device, thereby propagating the change up
1001 * the device tree. If all of the parent's children are now suspended,
1002 * the parent will autosuspend in turn.
1003 *
1004 * The suspend method calls are subject to mutual exclusion under control
1005 * of @udev's pm_mutex. Many of these calls are also under the protection
1006 * of @udev's device lock (including all requests originating outside the
1007 * USB subsystem), but autosuspend requests generated by a child device or
1008 * interface driver may not be. Usbcore will insure that the method calls
1009 * do not arrive during bind, unbind, or reset operations. However, drivers
1010 * must be prepared to handle suspend calls arriving at unpredictable times.
1011 * The only way to block such calls is to do an autoresume (preventing
1012 * autosuspends) while holding @udev's device lock (preventing outside
1013 * suspends).
1014 *
1015 * The caller must hold @udev->pm_mutex.
1016 *
1017 * This routine can run only in process context.
1018 */
Alan Stern718efa62007-03-09 15:41:13 -05001019static int usb_suspend_both(struct usb_device *udev, pm_message_t msg)
Alan Sterna8e7c562006-07-01 22:11:02 -04001020{
1021 int status = 0;
1022 int i = 0;
1023 struct usb_interface *intf;
Alan Stern645daaa2006-08-30 15:47:02 -04001024 struct usb_device *parent = udev->parent;
Alan Sterna8e7c562006-07-01 22:11:02 -04001025
Alan Stern19410442007-03-27 13:33:59 -04001026 if (udev->state == USB_STATE_NOTATTACHED ||
1027 udev->state == USB_STATE_SUSPENDED)
1028 goto done;
Alan Stern645daaa2006-08-30 15:47:02 -04001029
1030 udev->do_remote_wakeup = device_may_wakeup(&udev->dev);
1031
Alan Stern645daaa2006-08-30 15:47:02 -04001032 if (udev->auto_pm) {
Alan Sternaf4f7602006-10-30 17:06:45 -05001033 status = autosuspend_check(udev);
1034 if (status < 0)
Alan Stern19410442007-03-27 13:33:59 -04001035 goto done;
Alan Stern645daaa2006-08-30 15:47:02 -04001036 }
Alan Stern19410442007-03-27 13:33:59 -04001037 cancel_delayed_work(&udev->autosuspend);
Alan Stern645daaa2006-08-30 15:47:02 -04001038
1039 /* Suspend all the interfaces and then udev itself */
Alan Sterna8e7c562006-07-01 22:11:02 -04001040 if (udev->actconfig) {
1041 for (; i < udev->actconfig->desc.bNumInterfaces; i++) {
1042 intf = udev->actconfig->interface[i];
Stephen Hemmingerd5ec1682006-11-14 10:06:17 -08001043 status = usb_suspend_interface(intf, msg);
Alan Sterna8e7c562006-07-01 22:11:02 -04001044 if (status != 0)
1045 break;
1046 }
1047 }
1048 if (status == 0)
Stephen Hemmingerd5ec1682006-11-14 10:06:17 -08001049 status = usb_suspend_device(udev, msg);
Alan Sterna8e7c562006-07-01 22:11:02 -04001050
1051 /* If the suspend failed, resume interfaces that did get suspended */
1052 if (status != 0) {
1053 while (--i >= 0) {
1054 intf = udev->actconfig->interface[i];
Stephen Hemmingerd5ec1682006-11-14 10:06:17 -08001055 usb_resume_interface(intf);
Alan Sterna8e7c562006-07-01 22:11:02 -04001056 }
Alan Stern645daaa2006-08-30 15:47:02 -04001057
1058 /* If the suspend succeeded, propagate it up the tree */
1059 } else if (parent)
Alan Stern94fcda12006-11-20 11:38:46 -05001060 usb_autosuspend_device(parent);
Alan Stern645daaa2006-08-30 15:47:02 -04001061
Alan Stern19410442007-03-27 13:33:59 -04001062 done:
Alan Stern645daaa2006-08-30 15:47:02 -04001063 // dev_dbg(&udev->dev, "%s: status %d\n", __FUNCTION__, status);
Alan Sterna8e7c562006-07-01 22:11:02 -04001064 return status;
1065}
1066
Alan Stern645daaa2006-08-30 15:47:02 -04001067/**
1068 * usb_resume_both - resume a USB device and its interfaces
1069 * @udev: the usb_device to resume
1070 *
1071 * This is the central routine for resuming USB devices. It calls the
1072 * the resume method for @udev and then calls the resume methods for all
1073 * the interface drivers in @udev.
1074 *
1075 * Before starting the resume, the routine calls itself recursively for
1076 * the parent device of @udev, thereby propagating the change up the device
1077 * tree and assuring that @udev will be able to resume. If the parent is
1078 * unable to resume successfully, the routine fails.
1079 *
1080 * The resume method calls are subject to mutual exclusion under control
1081 * of @udev's pm_mutex. Many of these calls are also under the protection
1082 * of @udev's device lock (including all requests originating outside the
1083 * USB subsystem), but autoresume requests generated by a child device or
1084 * interface driver may not be. Usbcore will insure that the method calls
1085 * do not arrive during bind, unbind, or reset operations. However, drivers
1086 * must be prepared to handle resume calls arriving at unpredictable times.
1087 * The only way to block such calls is to do an autoresume (preventing
1088 * other autoresumes) while holding @udev's device lock (preventing outside
1089 * resumes).
1090 *
1091 * The caller must hold @udev->pm_mutex.
1092 *
1093 * This routine can run only in process context.
1094 */
Alan Stern718efa62007-03-09 15:41:13 -05001095static int usb_resume_both(struct usb_device *udev)
Alan Sterna8e7c562006-07-01 22:11:02 -04001096{
Alan Stern645daaa2006-08-30 15:47:02 -04001097 int status = 0;
Alan Sterna8e7c562006-07-01 22:11:02 -04001098 int i;
1099 struct usb_interface *intf;
Alan Stern645daaa2006-08-30 15:47:02 -04001100 struct usb_device *parent = udev->parent;
Alan Sterna8e7c562006-07-01 22:11:02 -04001101
Alan Stern645daaa2006-08-30 15:47:02 -04001102 cancel_delayed_work(&udev->autosuspend);
Alan Stern19410442007-03-27 13:33:59 -04001103 if (udev->state == USB_STATE_NOTATTACHED) {
1104 status = -ENODEV;
1105 goto done;
1106 }
Alan Stern645daaa2006-08-30 15:47:02 -04001107
1108 /* Propagate the resume up the tree, if necessary */
1109 if (udev->state == USB_STATE_SUSPENDED) {
Alan Stern19410442007-03-27 13:33:59 -04001110 if (udev->auto_pm && udev->autoresume_disabled) {
1111 status = -EPERM;
1112 goto done;
1113 }
Alan Stern645daaa2006-08-30 15:47:02 -04001114 if (parent) {
Alan Stern94fcda12006-11-20 11:38:46 -05001115 status = usb_autoresume_device(parent);
Alan Sternee49fb52006-11-22 16:55:54 -05001116 if (status == 0) {
1117 status = usb_resume_device(udev);
1118 if (status) {
Alan Stern94fcda12006-11-20 11:38:46 -05001119 usb_autosuspend_device(parent);
Alan Sternee49fb52006-11-22 16:55:54 -05001120
1121 /* It's possible usb_resume_device()
1122 * failed after the port was
1123 * unsuspended, causing udev to be
1124 * logically disconnected. We don't
1125 * want usb_disconnect() to autosuspend
1126 * the parent again, so tell it that
1127 * udev disconnected while still
1128 * suspended. */
1129 if (udev->state ==
1130 USB_STATE_NOTATTACHED)
1131 udev->discon_suspended = 1;
1132 }
1133 }
Alan Stern645daaa2006-08-30 15:47:02 -04001134 } else {
1135
1136 /* We can't progagate beyond the USB subsystem,
1137 * so if a root hub's controller is suspended
1138 * then we're stuck. */
1139 if (udev->dev.parent->power.power_state.event !=
1140 PM_EVENT_ON)
1141 status = -EHOSTUNREACH;
Alan Sternee49fb52006-11-22 16:55:54 -05001142 else
1143 status = usb_resume_device(udev);
1144 }
Alan Stern592fbbe2006-09-19 10:08:43 -04001145 } else {
1146
1147 /* Needed only for setting udev->dev.power.power_state.event
1148 * and for possible debugging message. */
Stephen Hemmingerd5ec1682006-11-14 10:06:17 -08001149 status = usb_resume_device(udev);
Alan Stern114b3682006-07-01 22:13:04 -04001150 }
1151
Alan Sterna8e7c562006-07-01 22:11:02 -04001152 if (status == 0 && udev->actconfig) {
1153 for (i = 0; i < udev->actconfig->desc.bNumInterfaces; i++) {
1154 intf = udev->actconfig->interface[i];
Stephen Hemmingerd5ec1682006-11-14 10:06:17 -08001155 usb_resume_interface(intf);
Alan Sterna8e7c562006-07-01 22:11:02 -04001156 }
1157 }
Alan Stern645daaa2006-08-30 15:47:02 -04001158
Alan Stern19410442007-03-27 13:33:59 -04001159 done:
Alan Stern645daaa2006-08-30 15:47:02 -04001160 // dev_dbg(&udev->dev, "%s: status %d\n", __FUNCTION__, status);
Alan Sterna8e7c562006-07-01 22:11:02 -04001161 return status;
1162}
1163
Alan Stern645daaa2006-08-30 15:47:02 -04001164#ifdef CONFIG_USB_SUSPEND
1165
Alan Stern94fcda12006-11-20 11:38:46 -05001166/* Internal routine to adjust a device's usage counter and change
1167 * its autosuspend state.
1168 */
1169static int usb_autopm_do_device(struct usb_device *udev, int inc_usage_cnt)
1170{
1171 int status = 0;
1172
1173 usb_pm_lock(udev);
Alan Stern19410442007-03-27 13:33:59 -04001174 udev->auto_pm = 1;
Alan Stern94fcda12006-11-20 11:38:46 -05001175 udev->pm_usage_cnt += inc_usage_cnt;
1176 WARN_ON(udev->pm_usage_cnt < 0);
1177 if (inc_usage_cnt >= 0 && udev->pm_usage_cnt > 0) {
Alan Stern19410442007-03-27 13:33:59 -04001178 if (udev->state == USB_STATE_SUSPENDED)
1179 status = usb_resume_both(udev);
Alan Stern94fcda12006-11-20 11:38:46 -05001180 if (status != 0)
1181 udev->pm_usage_cnt -= inc_usage_cnt;
Alan Stern19410442007-03-27 13:33:59 -04001182 else if (inc_usage_cnt)
1183 udev->last_busy = jiffies;
1184 } else if (inc_usage_cnt <= 0 && udev->pm_usage_cnt <= 0) {
1185 if (inc_usage_cnt)
1186 udev->last_busy = jiffies;
1187 status = usb_suspend_both(udev, PMSG_SUSPEND);
1188 }
Alan Stern94fcda12006-11-20 11:38:46 -05001189 usb_pm_unlock(udev);
1190 return status;
1191}
1192
Alan Stern19410442007-03-27 13:33:59 -04001193/* usb_autosuspend_work - callback routine to autosuspend a USB device */
1194void usb_autosuspend_work(struct work_struct *work)
1195{
1196 struct usb_device *udev =
1197 container_of(work, struct usb_device, autosuspend.work);
1198
1199 usb_autopm_do_device(udev, 0);
1200}
1201
Alan Stern645daaa2006-08-30 15:47:02 -04001202/**
1203 * usb_autosuspend_device - delayed autosuspend of a USB device and its interfaces
Henrik Kretzschmar701f35a2006-09-25 17:00:56 -07001204 * @udev: the usb_device to autosuspend
Alan Stern645daaa2006-08-30 15:47:02 -04001205 *
1206 * This routine should be called when a core subsystem is finished using
1207 * @udev and wants to allow it to autosuspend. Examples would be when
1208 * @udev's device file in usbfs is closed or after a configuration change.
1209 *
Alan Stern94fcda12006-11-20 11:38:46 -05001210 * @udev's usage counter is decremented. If it or any of the usage counters
1211 * for an active interface is greater than 0, no autosuspend request will be
1212 * queued. (If an interface driver does not support autosuspend then its
1213 * usage counter is permanently positive.) Furthermore, if an interface
1214 * driver requires remote-wakeup capability during autosuspend but remote
1215 * wakeup is disabled, the autosuspend will fail.
Alan Stern645daaa2006-08-30 15:47:02 -04001216 *
1217 * Often the caller will hold @udev's device lock, but this is not
1218 * necessary.
1219 *
1220 * This routine can run only in process context.
1221 */
Alan Stern94fcda12006-11-20 11:38:46 -05001222void usb_autosuspend_device(struct usb_device *udev)
Alan Stern645daaa2006-08-30 15:47:02 -04001223{
Alan Stern94fcda12006-11-20 11:38:46 -05001224 int status;
1225
1226 status = usb_autopm_do_device(udev, -1);
Alan Stern645daaa2006-08-30 15:47:02 -04001227 // dev_dbg(&udev->dev, "%s: cnt %d\n",
1228 // __FUNCTION__, udev->pm_usage_cnt);
1229}
1230
1231/**
Alan Stern19c26232007-02-20 15:03:32 -05001232 * usb_try_autosuspend_device - attempt an autosuspend of a USB device and its interfaces
1233 * @udev: the usb_device to autosuspend
1234 *
1235 * This routine should be called when a core subsystem thinks @udev may
1236 * be ready to autosuspend.
1237 *
1238 * @udev's usage counter left unchanged. If it or any of the usage counters
1239 * for an active interface is greater than 0, or autosuspend is not allowed
1240 * for any other reason, no autosuspend request will be queued.
1241 *
1242 * This routine can run only in process context.
1243 */
1244void usb_try_autosuspend_device(struct usb_device *udev)
1245{
1246 usb_autopm_do_device(udev, 0);
1247 // dev_dbg(&udev->dev, "%s: cnt %d\n",
1248 // __FUNCTION__, udev->pm_usage_cnt);
1249}
1250
1251/**
Alan Stern645daaa2006-08-30 15:47:02 -04001252 * usb_autoresume_device - immediately autoresume a USB device and its interfaces
Henrik Kretzschmar701f35a2006-09-25 17:00:56 -07001253 * @udev: the usb_device to autoresume
Alan Stern645daaa2006-08-30 15:47:02 -04001254 *
1255 * This routine should be called when a core subsystem wants to use @udev
Alan Stern94fcda12006-11-20 11:38:46 -05001256 * and needs to guarantee that it is not suspended. No autosuspend will
1257 * occur until usb_autosuspend_device is called. (Note that this will not
1258 * prevent suspend events originating in the PM core.) Examples would be
1259 * when @udev's device file in usbfs is opened or when a remote-wakeup
1260 * request is received.
Alan Stern645daaa2006-08-30 15:47:02 -04001261 *
Alan Stern94fcda12006-11-20 11:38:46 -05001262 * @udev's usage counter is incremented to prevent subsequent autosuspends.
1263 * However if the autoresume fails then the usage counter is re-decremented.
Alan Stern645daaa2006-08-30 15:47:02 -04001264 *
1265 * Often the caller will hold @udev's device lock, but this is not
1266 * necessary (and attempting it might cause deadlock).
1267 *
1268 * This routine can run only in process context.
1269 */
Alan Stern94fcda12006-11-20 11:38:46 -05001270int usb_autoresume_device(struct usb_device *udev)
Alan Stern645daaa2006-08-30 15:47:02 -04001271{
1272 int status;
1273
Alan Stern94fcda12006-11-20 11:38:46 -05001274 status = usb_autopm_do_device(udev, 1);
Alan Stern645daaa2006-08-30 15:47:02 -04001275 // dev_dbg(&udev->dev, "%s: status %d cnt %d\n",
1276 // __FUNCTION__, status, udev->pm_usage_cnt);
1277 return status;
1278}
1279
Alan Sternaf4f7602006-10-30 17:06:45 -05001280/* Internal routine to adjust an interface's usage counter and change
1281 * its device's autosuspend state.
1282 */
1283static int usb_autopm_do_interface(struct usb_interface *intf,
1284 int inc_usage_cnt)
1285{
1286 struct usb_device *udev = interface_to_usbdev(intf);
1287 int status = 0;
1288
1289 usb_pm_lock(udev);
1290 if (intf->condition == USB_INTERFACE_UNBOUND)
1291 status = -ENODEV;
1292 else {
Alan Stern19410442007-03-27 13:33:59 -04001293 udev->auto_pm = 1;
Alan Sternaf4f7602006-10-30 17:06:45 -05001294 intf->pm_usage_cnt += inc_usage_cnt;
1295 if (inc_usage_cnt >= 0 && intf->pm_usage_cnt > 0) {
Alan Stern19410442007-03-27 13:33:59 -04001296 if (udev->state == USB_STATE_SUSPENDED)
1297 status = usb_resume_both(udev);
Alan Sternaf4f7602006-10-30 17:06:45 -05001298 if (status != 0)
1299 intf->pm_usage_cnt -= inc_usage_cnt;
Alan Stern19410442007-03-27 13:33:59 -04001300 else if (inc_usage_cnt)
1301 udev->last_busy = jiffies;
1302 } else if (inc_usage_cnt <= 0 && intf->pm_usage_cnt <= 0) {
1303 if (inc_usage_cnt)
1304 udev->last_busy = jiffies;
1305 status = usb_suspend_both(udev, PMSG_SUSPEND);
1306 }
Alan Sternaf4f7602006-10-30 17:06:45 -05001307 }
1308 usb_pm_unlock(udev);
1309 return status;
1310}
1311
Alan Stern645daaa2006-08-30 15:47:02 -04001312/**
1313 * usb_autopm_put_interface - decrement a USB interface's PM-usage counter
Henrik Kretzschmar701f35a2006-09-25 17:00:56 -07001314 * @intf: the usb_interface whose counter should be decremented
Alan Stern645daaa2006-08-30 15:47:02 -04001315 *
1316 * This routine should be called by an interface driver when it is
1317 * finished using @intf and wants to allow it to autosuspend. A typical
1318 * example would be a character-device driver when its device file is
1319 * closed.
1320 *
1321 * The routine decrements @intf's usage counter. When the counter reaches
1322 * 0, a delayed autosuspend request for @intf's device is queued. When
1323 * the delay expires, if @intf->pm_usage_cnt is still <= 0 along with all
1324 * the other usage counters for the sibling interfaces and @intf's
1325 * usb_device, the device and all its interfaces will be autosuspended.
1326 *
1327 * Note that @intf->pm_usage_cnt is owned by the interface driver. The
1328 * core will not change its value other than the increment and decrement
1329 * in usb_autopm_get_interface and usb_autopm_put_interface. The driver
1330 * may use this simple counter-oriented discipline or may set the value
1331 * any way it likes.
1332 *
1333 * If the driver has set @intf->needs_remote_wakeup then autosuspend will
1334 * take place only if the device's remote-wakeup facility is enabled.
1335 *
1336 * Suspend method calls queued by this routine can arrive at any time
1337 * while @intf is resumed and its usage counter is equal to 0. They are
1338 * not protected by the usb_device's lock but only by its pm_mutex.
1339 * Drivers must provide their own synchronization.
1340 *
1341 * This routine can run only in process context.
1342 */
1343void usb_autopm_put_interface(struct usb_interface *intf)
1344{
Alan Sternaf4f7602006-10-30 17:06:45 -05001345 int status;
Alan Stern645daaa2006-08-30 15:47:02 -04001346
Alan Sternaf4f7602006-10-30 17:06:45 -05001347 status = usb_autopm_do_interface(intf, -1);
1348 // dev_dbg(&intf->dev, "%s: status %d cnt %d\n",
1349 // __FUNCTION__, status, intf->pm_usage_cnt);
Alan Stern645daaa2006-08-30 15:47:02 -04001350}
1351EXPORT_SYMBOL_GPL(usb_autopm_put_interface);
1352
1353/**
1354 * usb_autopm_get_interface - increment a USB interface's PM-usage counter
Henrik Kretzschmar701f35a2006-09-25 17:00:56 -07001355 * @intf: the usb_interface whose counter should be incremented
Alan Stern645daaa2006-08-30 15:47:02 -04001356 *
1357 * This routine should be called by an interface driver when it wants to
1358 * use @intf and needs to guarantee that it is not suspended. In addition,
1359 * the routine prevents @intf from being autosuspended subsequently. (Note
1360 * that this will not prevent suspend events originating in the PM core.)
1361 * This prevention will persist until usb_autopm_put_interface() is called
1362 * or @intf is unbound. A typical example would be a character-device
1363 * driver when its device file is opened.
1364 *
Alan Stern19410442007-03-27 13:33:59 -04001365 *
1366 * The routine increments @intf's usage counter. (However if the
1367 * autoresume fails then the counter is re-decremented.) So long as the
1368 * counter is greater than 0, autosuspend will not be allowed for @intf
1369 * or its usb_device. When the driver is finished using @intf it should
1370 * call usb_autopm_put_interface() to decrement the usage counter and
1371 * queue a delayed autosuspend request (if the counter is <= 0).
1372 *
Alan Stern645daaa2006-08-30 15:47:02 -04001373 *
1374 * Note that @intf->pm_usage_cnt is owned by the interface driver. The
1375 * core will not change its value other than the increment and decrement
1376 * in usb_autopm_get_interface and usb_autopm_put_interface. The driver
1377 * may use this simple counter-oriented discipline or may set the value
1378 * any way it likes.
1379 *
1380 * Resume method calls generated by this routine can arrive at any time
1381 * while @intf is suspended. They are not protected by the usb_device's
1382 * lock but only by its pm_mutex. Drivers must provide their own
1383 * synchronization.
1384 *
1385 * This routine can run only in process context.
1386 */
1387int usb_autopm_get_interface(struct usb_interface *intf)
1388{
Alan Sternaf4f7602006-10-30 17:06:45 -05001389 int status;
Alan Stern645daaa2006-08-30 15:47:02 -04001390
Alan Sternaf4f7602006-10-30 17:06:45 -05001391 status = usb_autopm_do_interface(intf, 1);
Alan Stern645daaa2006-08-30 15:47:02 -04001392 // dev_dbg(&intf->dev, "%s: status %d cnt %d\n",
1393 // __FUNCTION__, status, intf->pm_usage_cnt);
1394 return status;
1395}
1396EXPORT_SYMBOL_GPL(usb_autopm_get_interface);
1397
Alan Stern692a1862006-10-30 17:07:51 -05001398/**
1399 * usb_autopm_set_interface - set a USB interface's autosuspend state
1400 * @intf: the usb_interface whose state should be set
1401 *
1402 * This routine sets the autosuspend state of @intf's device according
1403 * to @intf's usage counter, which the caller must have set previously.
1404 * If the counter is <= 0, the device is autosuspended (if it isn't
1405 * already suspended and if nothing else prevents the autosuspend). If
1406 * the counter is > 0, the device is autoresumed (if it isn't already
1407 * awake).
1408 */
1409int usb_autopm_set_interface(struct usb_interface *intf)
1410{
1411 int status;
1412
1413 status = usb_autopm_do_interface(intf, 0);
1414 // dev_dbg(&intf->dev, "%s: status %d cnt %d\n",
1415 // __FUNCTION__, status, intf->pm_usage_cnt);
1416 return status;
1417}
1418EXPORT_SYMBOL_GPL(usb_autopm_set_interface);
1419
Alan Stern718efa62007-03-09 15:41:13 -05001420#else
1421
1422void usb_autosuspend_work(struct work_struct *work)
1423{}
1424
Alan Stern645daaa2006-08-30 15:47:02 -04001425#endif /* CONFIG_USB_SUSPEND */
1426
Alan Stern6b157c92007-03-13 16:37:30 -04001427/**
1428 * usb_external_suspend_device - external suspend of a USB device and its interfaces
1429 * @udev: the usb_device to suspend
1430 * @msg: Power Management message describing this state transition
1431 *
1432 * This routine handles external suspend requests: ones not generated
1433 * internally by a USB driver (autosuspend) but rather coming from the user
1434 * (via sysfs) or the PM core (system sleep). The suspend will be carried
1435 * out regardless of @udev's usage counter or those of its interfaces,
1436 * and regardless of whether or not remote wakeup is enabled. Of course,
1437 * interface drivers still have the option of failing the suspend (if
1438 * there are unsuspended children, for example).
1439 *
1440 * The caller must hold @udev's device lock.
1441 */
1442int usb_external_suspend_device(struct usb_device *udev, pm_message_t msg)
Alan Stern1cc8a252006-07-01 22:10:15 -04001443{
1444 int status;
1445
Alan Stern6b157c92007-03-13 16:37:30 -04001446 usb_pm_lock(udev);
1447 udev->auto_pm = 0;
1448 status = usb_suspend_both(udev, msg);
1449 usb_pm_unlock(udev);
Alan Stern1cc8a252006-07-01 22:10:15 -04001450 return status;
1451}
1452
Alan Stern6b157c92007-03-13 16:37:30 -04001453/**
1454 * usb_external_resume_device - external resume of a USB device and its interfaces
1455 * @udev: the usb_device to resume
1456 *
1457 * This routine handles external resume requests: ones not generated
1458 * internally by a USB driver (autoresume) but rather coming from the user
1459 * (via sysfs), the PM core (system resume), or the device itself (remote
1460 * wakeup). @udev's usage counter is unaffected.
1461 *
1462 * The caller must hold @udev's device lock.
1463 */
1464int usb_external_resume_device(struct usb_device *udev)
1465{
1466 int status;
1467
1468 usb_pm_lock(udev);
1469 udev->auto_pm = 0;
1470 status = usb_resume_both(udev);
1471 usb_pm_unlock(udev);
1472
1473 /* Now that the device is awake, we can start trying to autosuspend
1474 * it again. */
1475 if (status == 0)
1476 usb_try_autosuspend_device(udev);
1477 return status;
1478}
1479
1480static int usb_suspend(struct device *dev, pm_message_t message)
1481{
1482 if (!is_usb_device(dev)) /* Ignore PM for interfaces */
1483 return 0;
1484 return usb_external_suspend_device(to_usb_device(dev), message);
1485}
1486
Alan Stern1cc8a252006-07-01 22:10:15 -04001487static int usb_resume(struct device *dev)
1488{
Alan Stern2add5222007-03-20 14:59:39 -04001489 struct usb_device *udev;
1490
Alan Stern6b157c92007-03-13 16:37:30 -04001491 if (!is_usb_device(dev)) /* Ignore PM for interfaces */
1492 return 0;
Alan Stern2add5222007-03-20 14:59:39 -04001493 udev = to_usb_device(dev);
1494 if (udev->autoresume_disabled)
1495 return -EPERM;
1496 return usb_external_resume_device(udev);
Alan Stern1cc8a252006-07-01 22:10:15 -04001497}
1498
Alan Stern6b157c92007-03-13 16:37:30 -04001499#else
1500
1501#define usb_suspend NULL
1502#define usb_resume NULL
1503
Alan Stern36e56a32006-07-01 22:08:06 -04001504#endif /* CONFIG_PM */
1505
1506struct bus_type usb_bus_type = {
1507 .name = "usb",
1508 .match = usb_device_match,
1509 .uevent = usb_uevent,
Alan Stern782da722006-07-01 22:09:35 -04001510 .suspend = usb_suspend,
1511 .resume = usb_resume,
Alan Stern36e56a32006-07-01 22:08:06 -04001512};