blob: 4f864472c5c4db4eea4004cd49e902cb4acd75c9 [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 Stern6bc6cff2007-05-04 11:53:03 -040027#include <linux/usb/quirks.h>
Alan Sternbd859282006-09-19 10:14:07 -040028#include <linux/workqueue.h>
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -080029#include "hcd.h"
30#include "usb.h"
31
Alan Stern20dfdad2007-05-22 11:50:17 -040032
Greg Kroah-Hartman733260f2005-11-16 13:41:28 -080033#ifdef CONFIG_HOTPLUG
34
35/*
36 * Adds a new dynamic USBdevice ID to this driver,
37 * and cause the driver to probe for all devices again.
38 */
Greg Kroah-Hartman93bacef2006-12-17 21:50:23 +010039ssize_t usb_store_new_id(struct usb_dynids *dynids,
40 struct device_driver *driver,
41 const char *buf, size_t count)
Greg Kroah-Hartman733260f2005-11-16 13:41:28 -080042{
Greg Kroah-Hartman733260f2005-11-16 13:41:28 -080043 struct usb_dynid *dynid;
44 u32 idVendor = 0;
45 u32 idProduct = 0;
46 int fields = 0;
Greg Kroah-Hartman1b21d5e2006-08-28 11:43:25 -070047 int retval = 0;
Greg Kroah-Hartman733260f2005-11-16 13:41:28 -080048
49 fields = sscanf(buf, "%x %x", &idVendor, &idProduct);
50 if (fields < 2)
51 return -EINVAL;
52
53 dynid = kzalloc(sizeof(*dynid), GFP_KERNEL);
54 if (!dynid)
55 return -ENOMEM;
56
57 INIT_LIST_HEAD(&dynid->node);
58 dynid->id.idVendor = idVendor;
59 dynid->id.idProduct = idProduct;
60 dynid->id.match_flags = USB_DEVICE_ID_MATCH_DEVICE;
61
Greg Kroah-Hartman93bacef2006-12-17 21:50:23 +010062 spin_lock(&dynids->lock);
Nathael Pajanie5dd0112007-09-04 11:46:23 +020063 list_add_tail(&dynid->node, &dynids->list);
Greg Kroah-Hartman93bacef2006-12-17 21:50:23 +010064 spin_unlock(&dynids->lock);
Greg Kroah-Hartman733260f2005-11-16 13:41:28 -080065
66 if (get_driver(driver)) {
Greg Kroah-Hartman1b21d5e2006-08-28 11:43:25 -070067 retval = driver_attach(driver);
Greg Kroah-Hartman733260f2005-11-16 13:41:28 -080068 put_driver(driver);
69 }
70
Greg Kroah-Hartman1b21d5e2006-08-28 11:43:25 -070071 if (retval)
72 return retval;
Greg Kroah-Hartman733260f2005-11-16 13:41:28 -080073 return count;
74}
Greg Kroah-Hartman93bacef2006-12-17 21:50:23 +010075EXPORT_SYMBOL_GPL(usb_store_new_id);
76
77static ssize_t store_new_id(struct device_driver *driver,
78 const char *buf, size_t count)
79{
80 struct usb_driver *usb_drv = to_usb_driver(driver);
81
82 return usb_store_new_id(&usb_drv->dynids, driver, buf, count);
83}
Greg Kroah-Hartman733260f2005-11-16 13:41:28 -080084static DRIVER_ATTR(new_id, S_IWUSR, NULL, store_new_id);
85
86static int usb_create_newid_file(struct usb_driver *usb_drv)
87{
88 int error = 0;
89
Greg Kroah-Hartmanba9dc652005-11-16 13:41:28 -080090 if (usb_drv->no_dynamic_id)
91 goto exit;
92
Greg Kroah-Hartman733260f2005-11-16 13:41:28 -080093 if (usb_drv->probe != NULL)
Greg Kroah-Hartman15147ff2007-11-28 12:23:18 -080094 error = driver_create_file(&usb_drv->drvwrap.driver,
95 &driver_attr_new_id);
Greg Kroah-Hartmanba9dc652005-11-16 13:41:28 -080096exit:
Greg Kroah-Hartman733260f2005-11-16 13:41:28 -080097 return error;
98}
99
Greg Kroah-Hartmanba9dc652005-11-16 13:41:28 -0800100static void usb_remove_newid_file(struct usb_driver *usb_drv)
101{
102 if (usb_drv->no_dynamic_id)
103 return;
104
105 if (usb_drv->probe != NULL)
Greg Kroah-Hartman15147ff2007-11-28 12:23:18 -0800106 driver_remove_file(&usb_drv->drvwrap.driver,
107 &driver_attr_new_id);
Greg Kroah-Hartmanba9dc652005-11-16 13:41:28 -0800108}
109
Greg Kroah-Hartman733260f2005-11-16 13:41:28 -0800110static void usb_free_dynids(struct usb_driver *usb_drv)
111{
112 struct usb_dynid *dynid, *n;
113
114 spin_lock(&usb_drv->dynids.lock);
115 list_for_each_entry_safe(dynid, n, &usb_drv->dynids.list, node) {
116 list_del(&dynid->node);
117 kfree(dynid);
118 }
119 spin_unlock(&usb_drv->dynids.lock);
120}
121#else
122static inline int usb_create_newid_file(struct usb_driver *usb_drv)
123{
124 return 0;
125}
126
Greg Kroah-Hartmanba9dc652005-11-16 13:41:28 -0800127static void usb_remove_newid_file(struct usb_driver *usb_drv)
128{
129}
130
Greg Kroah-Hartman733260f2005-11-16 13:41:28 -0800131static inline void usb_free_dynids(struct usb_driver *usb_drv)
132{
133}
134#endif
135
136static const struct usb_device_id *usb_match_dynamic_id(struct usb_interface *intf,
137 struct usb_driver *drv)
138{
139 struct usb_dynid *dynid;
140
141 spin_lock(&drv->dynids.lock);
142 list_for_each_entry(dynid, &drv->dynids.list, node) {
143 if (usb_match_one_id(intf, &dynid->id)) {
144 spin_unlock(&drv->dynids.lock);
145 return &dynid->id;
146 }
147 }
148 spin_unlock(&drv->dynids.lock);
149 return NULL;
150}
151
152
Alan Stern8bb54ab2006-07-01 22:08:49 -0400153/* called from driver core with dev locked */
154static int usb_probe_device(struct device *dev)
155{
156 struct usb_device_driver *udriver = to_usb_device_driver(dev->driver);
Kay Sievers55129662009-05-04 19:48:32 +0200157 struct usb_device *udev = to_usb_device(dev);
Alan Stern8bb54ab2006-07-01 22:08:49 -0400158 int error = -ENODEV;
159
Harvey Harrison441b62c2008-03-03 16:08:34 -0800160 dev_dbg(dev, "%s\n", __func__);
Alan Stern8bb54ab2006-07-01 22:08:49 -0400161
Alan Stern8bb54ab2006-07-01 22:08:49 -0400162 /* TODO: Add real matching code */
163
Alan Stern645daaa2006-08-30 15:47:02 -0400164 /* The device should always appear to be in use
165 * unless the driver suports autosuspend.
166 */
167 udev->pm_usage_cnt = !(udriver->supports_autosuspend);
168
Alan Stern8bb54ab2006-07-01 22:08:49 -0400169 error = udriver->probe(udev);
170 return error;
171}
172
173/* called from driver core with dev locked */
174static int usb_unbind_device(struct device *dev)
175{
176 struct usb_device_driver *udriver = to_usb_device_driver(dev->driver);
177
178 udriver->disconnect(to_usb_device(dev));
179 return 0;
180}
181
Inaky Perez-Gonzalezdc023dc2008-11-13 10:31:35 -0800182/*
183 * Cancel any pending scheduled resets
184 *
185 * [see usb_queue_reset_device()]
186 *
187 * Called after unconfiguring / when releasing interfaces. See
188 * comments in __usb_queue_reset_device() regarding
189 * udev->reset_running.
190 */
191static void usb_cancel_queued_reset(struct usb_interface *iface)
192{
193 if (iface->reset_running == 0)
194 cancel_work_sync(&iface->reset_ws);
195}
Alan Stern8bb54ab2006-07-01 22:08:49 -0400196
197/* called from driver core with dev locked */
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800198static int usb_probe_interface(struct device *dev)
199{
Alan Stern8bb54ab2006-07-01 22:08:49 -0400200 struct usb_driver *driver = to_usb_driver(dev->driver);
Kay Sievers55129662009-05-04 19:48:32 +0200201 struct usb_interface *intf = to_usb_interface(dev);
202 struct usb_device *udev = interface_to_usbdev(intf);
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800203 const struct usb_device_id *id;
204 int error = -ENODEV;
205
Harvey Harrison441b62c2008-03-03 16:08:34 -0800206 dev_dbg(dev, "%s\n", __func__);
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800207
Alan Stern78d9a482008-06-23 16:00:40 -0400208 intf->needs_binding = 0;
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800209
Alan Stern7cbe5dc2009-06-29 10:56:54 -0400210 if (usb_device_is_owned(udev))
211 return -ENODEV;
212
Greg Kroah-Hartman2c044a42008-01-30 15:21:33 -0800213 if (udev->authorized == 0) {
214 dev_err(&intf->dev, "Device is not authorized for usage\n");
215 return -ENODEV;
216 }
Inaky Perez-Gonzalez72230ab2007-07-31 20:34:03 -0700217
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800218 id = usb_match_id(intf, driver->id_table);
Greg Kroah-Hartman733260f2005-11-16 13:41:28 -0800219 if (!id)
220 id = usb_match_dynamic_id(intf, driver);
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800221 if (id) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800222 dev_dbg(dev, "%s - got id\n", __func__);
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800223
Alan Stern94fcda12006-11-20 11:38:46 -0500224 error = usb_autoresume_device(udev);
Alan Stern645daaa2006-08-30 15:47:02 -0400225 if (error)
226 return error;
227
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800228 /* Interface "power state" doesn't correspond to any hardware
229 * state whatsoever. We use it to record when it's bound to
230 * a driver that may start I/0: it's not frozen/quiesced.
231 */
232 mark_active(intf);
233 intf->condition = USB_INTERFACE_BINDING;
Alan Stern645daaa2006-08-30 15:47:02 -0400234
235 /* The interface should always appear to be in use
236 * unless the driver suports autosuspend.
237 */
Alan Sternccf5b802009-06-29 11:00:01 -0400238 atomic_set(&intf->pm_usage_cnt, !driver->supports_autosuspend);
Alan Stern645daaa2006-08-30 15:47:02 -0400239
Alan Stern55151d72008-08-12 14:33:59 -0400240 /* Carry out a deferred switch to altsetting 0 */
241 if (intf->needs_altsetting0) {
Oliver Neukum1e5ea5e2009-08-27 16:46:56 +0200242 error = usb_set_interface(udev, intf->altsetting[0].
Alan Stern55151d72008-08-12 14:33:59 -0400243 desc.bInterfaceNumber, 0);
Oliver Neukum1e5ea5e2009-08-27 16:46:56 +0200244 if (error < 0)
245 goto err;
246
Alan Stern55151d72008-08-12 14:33:59 -0400247 intf->needs_altsetting0 = 0;
248 }
249
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800250 error = driver->probe(intf, id);
Oliver Neukum1e5ea5e2009-08-27 16:46:56 +0200251 if (error)
252 goto err;
Alan Stern645daaa2006-08-30 15:47:02 -0400253
Oliver Neukum1e5ea5e2009-08-27 16:46:56 +0200254 intf->condition = USB_INTERFACE_BOUND;
Alan Stern94fcda12006-11-20 11:38:46 -0500255 usb_autosuspend_device(udev);
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800256 }
257
258 return error;
Oliver Neukum1e5ea5e2009-08-27 16:46:56 +0200259
260err:
261 mark_quiesced(intf);
262 intf->needs_remote_wakeup = 0;
263 intf->condition = USB_INTERFACE_UNBOUND;
264 usb_cancel_queued_reset(intf);
265 usb_autosuspend_device(udev);
266 return error;
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800267}
268
Alan Stern8bb54ab2006-07-01 22:08:49 -0400269/* called from driver core with dev locked */
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800270static int usb_unbind_interface(struct device *dev)
271{
Alan Stern8bb54ab2006-07-01 22:08:49 -0400272 struct usb_driver *driver = to_usb_driver(dev->driver);
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800273 struct usb_interface *intf = to_usb_interface(dev);
Alan Stern645daaa2006-08-30 15:47:02 -0400274 struct usb_device *udev;
Oliver Neukum1e5ea5e2009-08-27 16:46:56 +0200275 int error, r;
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800276
277 intf->condition = USB_INTERFACE_UNBINDING;
278
Alan Stern645daaa2006-08-30 15:47:02 -0400279 /* Autoresume for set_interface call below */
280 udev = interface_to_usbdev(intf);
Alan Stern94fcda12006-11-20 11:38:46 -0500281 error = usb_autoresume_device(udev);
Alan Stern645daaa2006-08-30 15:47:02 -0400282
Alan Stern9da82bd2008-05-08 11:54:37 -0400283 /* Terminate all URBs for this interface unless the driver
284 * supports "soft" unbinding.
285 */
286 if (!driver->soft_unbind)
Alan Sternddeac4e72009-01-15 17:03:33 -0500287 usb_disable_interface(udev, intf, false);
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800288
Alan Stern8bb54ab2006-07-01 22:08:49 -0400289 driver->disconnect(intf);
Inaky Perez-Gonzalezdc023dc2008-11-13 10:31:35 -0800290 usb_cancel_queued_reset(intf);
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800291
Alan Stern55151d72008-08-12 14:33:59 -0400292 /* Reset other interface state.
293 * We cannot do a Set-Interface if the device is suspended or
294 * if it is prepared for a system sleep (since installing a new
295 * altsetting means creating new endpoint device entries).
296 * When either of these happens, defer the Set-Interface.
297 */
Alan Stern2caf7fc2008-12-31 11:31:33 -0500298 if (intf->cur_altsetting->desc.bAlternateSetting == 0) {
299 /* Already in altsetting 0 so skip Set-Interface.
300 * Just re-enable it without affecting the endpoint toggles.
301 */
302 usb_enable_interface(udev, intf, false);
Oliver Neukum1e5ea5e2009-08-27 16:46:56 +0200303 } else if (!error && intf->dev.power.status == DPM_ON) {
304 r = usb_set_interface(udev, intf->altsetting[0].
Alan Stern55151d72008-08-12 14:33:59 -0400305 desc.bInterfaceNumber, 0);
Oliver Neukum1e5ea5e2009-08-27 16:46:56 +0200306 if (r < 0)
307 intf->needs_altsetting0 = 1;
308 } else {
Alan Stern55151d72008-08-12 14:33:59 -0400309 intf->needs_altsetting0 = 1;
Oliver Neukum1e5ea5e2009-08-27 16:46:56 +0200310 }
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800311 usb_set_intfdata(intf, NULL);
Alan Stern645daaa2006-08-30 15:47:02 -0400312
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800313 intf->condition = USB_INTERFACE_UNBOUND;
314 mark_quiesced(intf);
Alan Stern645daaa2006-08-30 15:47:02 -0400315 intf->needs_remote_wakeup = 0;
316
317 if (!error)
Alan Stern94fcda12006-11-20 11:38:46 -0500318 usb_autosuspend_device(udev);
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800319
320 return 0;
321}
322
Alan Stern36e56a32006-07-01 22:08:06 -0400323/**
324 * usb_driver_claim_interface - bind a driver to an interface
325 * @driver: the driver to be bound
326 * @iface: the interface to which it will be bound; must be in the
327 * usb device's active configuration
328 * @priv: driver data associated with that interface
329 *
330 * This is used by usb device drivers that need to claim more than one
331 * interface on a device when probing (audio and acm are current examples).
332 * No device driver should directly modify internal usb_interface or
333 * usb_device structure members.
334 *
335 * Few drivers should need to use this routine, since the most natural
336 * way to bind to an interface is to return the private data from
337 * the driver's probe() method.
338 *
Greg Kroah-Hartman341487a82007-04-09 11:52:31 -0400339 * Callers must own the device lock, so driver probe() entries don't need
340 * extra locking, but other call contexts may need to explicitly claim that
341 * lock.
Alan Stern36e56a32006-07-01 22:08:06 -0400342 */
343int usb_driver_claim_interface(struct usb_driver *driver,
Greg Kroah-Hartman2c044a42008-01-30 15:21:33 -0800344 struct usb_interface *iface, void *priv)
Alan Stern36e56a32006-07-01 22:08:06 -0400345{
346 struct device *dev = &iface->dev;
Alan Stern645daaa2006-08-30 15:47:02 -0400347 struct usb_device *udev = interface_to_usbdev(iface);
Greg Kroah-Hartman1b21d5e2006-08-28 11:43:25 -0700348 int retval = 0;
Alan Stern36e56a32006-07-01 22:08:06 -0400349
350 if (dev->driver)
351 return -EBUSY;
352
Alan Stern8bb54ab2006-07-01 22:08:49 -0400353 dev->driver = &driver->drvwrap.driver;
Alan Stern36e56a32006-07-01 22:08:06 -0400354 usb_set_intfdata(iface, priv);
Alan Stern78d9a482008-06-23 16:00:40 -0400355 iface->needs_binding = 0;
Alan Stern645daaa2006-08-30 15:47:02 -0400356
Alan Sterne0318eb2006-09-26 14:50:20 -0400357 usb_pm_lock(udev);
Alan Stern36e56a32006-07-01 22:08:06 -0400358 iface->condition = USB_INTERFACE_BOUND;
359 mark_active(iface);
Alan Sternccf5b802009-06-29 11:00:01 -0400360 atomic_set(&iface->pm_usage_cnt, !driver->supports_autosuspend);
Alan Sterne0318eb2006-09-26 14:50:20 -0400361 usb_pm_unlock(udev);
Alan Stern36e56a32006-07-01 22:08:06 -0400362
363 /* if interface was already added, bind now; else let
364 * the future device_add() bind it, bypassing probe()
365 */
366 if (device_is_registered(dev))
Greg Kroah-Hartman1b21d5e2006-08-28 11:43:25 -0700367 retval = device_bind_driver(dev);
Alan Stern36e56a32006-07-01 22:08:06 -0400368
Greg Kroah-Hartman1b21d5e2006-08-28 11:43:25 -0700369 return retval;
Alan Stern36e56a32006-07-01 22:08:06 -0400370}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -0600371EXPORT_SYMBOL_GPL(usb_driver_claim_interface);
Alan Stern36e56a32006-07-01 22:08:06 -0400372
373/**
374 * usb_driver_release_interface - unbind a driver from an interface
375 * @driver: the driver to be unbound
376 * @iface: the interface from which it will be unbound
377 *
378 * This can be used by drivers to release an interface without waiting
379 * for their disconnect() methods to be called. In typical cases this
380 * also causes the driver disconnect() method to be called.
381 *
382 * This call is synchronous, and may not be used in an interrupt context.
Greg Kroah-Hartman341487a82007-04-09 11:52:31 -0400383 * Callers must own the device lock, so driver disconnect() entries don't
384 * need extra locking, but other call contexts may need to explicitly claim
385 * that lock.
Alan Stern36e56a32006-07-01 22:08:06 -0400386 */
387void usb_driver_release_interface(struct usb_driver *driver,
388 struct usb_interface *iface)
389{
390 struct device *dev = &iface->dev;
391
392 /* this should never happen, don't release something that's not ours */
Alan Stern8bb54ab2006-07-01 22:08:49 -0400393 if (!dev->driver || dev->driver != &driver->drvwrap.driver)
Alan Stern36e56a32006-07-01 22:08:06 -0400394 return;
395
396 /* don't release from within disconnect() */
397 if (iface->condition != USB_INTERFACE_BOUND)
398 return;
Alan Stern91f8d062009-04-16 15:35:09 -0400399 iface->condition = USB_INTERFACE_UNBINDING;
Alan Stern36e56a32006-07-01 22:08:06 -0400400
Alan Stern91f8d062009-04-16 15:35:09 -0400401 /* Release via the driver core only if the interface
402 * has already been registered
403 */
Alan Stern36e56a32006-07-01 22:08:06 -0400404 if (device_is_registered(dev)) {
Alan Stern36e56a32006-07-01 22:08:06 -0400405 device_release_driver(dev);
Inaky Perez-Gonzalezdc023dc2008-11-13 10:31:35 -0800406 } else {
Alan Stern91f8d062009-04-16 15:35:09 -0400407 down(&dev->sem);
408 usb_unbind_interface(dev);
409 dev->driver = NULL;
410 up(&dev->sem);
Alan Stern36e56a32006-07-01 22:08:06 -0400411 }
Alan Stern36e56a32006-07-01 22:08:06 -0400412}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -0600413EXPORT_SYMBOL_GPL(usb_driver_release_interface);
Alan Stern36e56a32006-07-01 22:08:06 -0400414
Greg Kroah-Hartman733260f2005-11-16 13:41:28 -0800415/* returns 0 if no match, 1 if match */
Greg Kroah-Hartmanbb417022007-01-26 14:26:21 +0100416int usb_match_device(struct usb_device *dev, const struct usb_device_id *id)
Greg Kroah-Hartman733260f2005-11-16 13:41:28 -0800417{
Greg Kroah-Hartman733260f2005-11-16 13:41:28 -0800418 if ((id->match_flags & USB_DEVICE_ID_MATCH_VENDOR) &&
419 id->idVendor != le16_to_cpu(dev->descriptor.idVendor))
420 return 0;
421
422 if ((id->match_flags & USB_DEVICE_ID_MATCH_PRODUCT) &&
423 id->idProduct != le16_to_cpu(dev->descriptor.idProduct))
424 return 0;
425
426 /* No need to test id->bcdDevice_lo != 0, since 0 is never
427 greater than any unsigned number. */
428 if ((id->match_flags & USB_DEVICE_ID_MATCH_DEV_LO) &&
429 (id->bcdDevice_lo > le16_to_cpu(dev->descriptor.bcdDevice)))
430 return 0;
431
432 if ((id->match_flags & USB_DEVICE_ID_MATCH_DEV_HI) &&
433 (id->bcdDevice_hi < le16_to_cpu(dev->descriptor.bcdDevice)))
434 return 0;
435
436 if ((id->match_flags & USB_DEVICE_ID_MATCH_DEV_CLASS) &&
437 (id->bDeviceClass != dev->descriptor.bDeviceClass))
438 return 0;
439
440 if ((id->match_flags & USB_DEVICE_ID_MATCH_DEV_SUBCLASS) &&
Greg Kroah-Hartman2c044a42008-01-30 15:21:33 -0800441 (id->bDeviceSubClass != dev->descriptor.bDeviceSubClass))
Greg Kroah-Hartman733260f2005-11-16 13:41:28 -0800442 return 0;
443
444 if ((id->match_flags & USB_DEVICE_ID_MATCH_DEV_PROTOCOL) &&
445 (id->bDeviceProtocol != dev->descriptor.bDeviceProtocol))
446 return 0;
447
Greg Kroah-Hartmanbb417022007-01-26 14:26:21 +0100448 return 1;
449}
450
451/* returns 0 if no match, 1 if match */
452int usb_match_one_id(struct usb_interface *interface,
453 const struct usb_device_id *id)
454{
455 struct usb_host_interface *intf;
456 struct usb_device *dev;
457
458 /* proc_connectinfo in devio.c may call us with id == NULL. */
459 if (id == NULL)
460 return 0;
461
462 intf = interface->cur_altsetting;
463 dev = interface_to_usbdev(interface);
464
465 if (!usb_match_device(dev, id))
466 return 0;
467
Alan Stern93c8bf42006-10-18 16:41:51 -0400468 /* The interface class, subclass, and protocol should never be
469 * checked for a match if the device class is Vendor Specific,
470 * unless the match record specifies the Vendor ID. */
471 if (dev->descriptor.bDeviceClass == USB_CLASS_VENDOR_SPEC &&
472 !(id->match_flags & USB_DEVICE_ID_MATCH_VENDOR) &&
473 (id->match_flags & (USB_DEVICE_ID_MATCH_INT_CLASS |
474 USB_DEVICE_ID_MATCH_INT_SUBCLASS |
475 USB_DEVICE_ID_MATCH_INT_PROTOCOL)))
476 return 0;
477
Greg Kroah-Hartman733260f2005-11-16 13:41:28 -0800478 if ((id->match_flags & USB_DEVICE_ID_MATCH_INT_CLASS) &&
479 (id->bInterfaceClass != intf->desc.bInterfaceClass))
480 return 0;
481
482 if ((id->match_flags & USB_DEVICE_ID_MATCH_INT_SUBCLASS) &&
483 (id->bInterfaceSubClass != intf->desc.bInterfaceSubClass))
484 return 0;
485
486 if ((id->match_flags & USB_DEVICE_ID_MATCH_INT_PROTOCOL) &&
487 (id->bInterfaceProtocol != intf->desc.bInterfaceProtocol))
488 return 0;
489
490 return 1;
491}
Greg Kroah-Hartman93bacef2006-12-17 21:50:23 +0100492EXPORT_SYMBOL_GPL(usb_match_one_id);
493
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800494/**
495 * usb_match_id - find first usb_device_id matching device or interface
496 * @interface: the interface of interest
497 * @id: array of usb_device_id structures, terminated by zero entry
498 *
499 * usb_match_id searches an array of usb_device_id's and returns
500 * the first one matching the device or interface, or null.
501 * This is used when binding (or rebinding) a driver to an interface.
502 * Most USB device drivers will use this indirectly, through the usb core,
503 * but some layered driver frameworks use it directly.
504 * These device tables are exported with MODULE_DEVICE_TABLE, through
505 * modutils, to support the driver loading functionality of USB hotplugging.
506 *
507 * What Matches:
508 *
509 * The "match_flags" element in a usb_device_id controls which
510 * members are used. If the corresponding bit is set, the
511 * value in the device_id must match its corresponding member
512 * in the device or interface descriptor, or else the device_id
513 * does not match.
514 *
515 * "driver_info" is normally used only by device drivers,
516 * but you can create a wildcard "matches anything" usb_device_id
517 * as a driver's "modules.usbmap" entry if you provide an id with
518 * only a nonzero "driver_info" field. If you do this, the USB device
519 * driver's probe() routine should use additional intelligence to
520 * decide whether to bind to the specified interface.
521 *
522 * What Makes Good usb_device_id Tables:
523 *
524 * The match algorithm is very simple, so that intelligence in
525 * driver selection must come from smart driver id records.
526 * Unless you have good reasons to use another selection policy,
527 * provide match elements only in related groups, and order match
528 * specifiers from specific to general. Use the macros provided
529 * for that purpose if you can.
530 *
531 * The most specific match specifiers use device descriptor
532 * data. These are commonly used with product-specific matches;
533 * the USB_DEVICE macro lets you provide vendor and product IDs,
534 * and you can also match against ranges of product revisions.
535 * These are widely used for devices with application or vendor
536 * specific bDeviceClass values.
537 *
538 * Matches based on device class/subclass/protocol specifications
539 * are slightly more general; use the USB_DEVICE_INFO macro, or
540 * its siblings. These are used with single-function devices
541 * where bDeviceClass doesn't specify that each interface has
542 * its own class.
543 *
544 * Matches based on interface class/subclass/protocol are the
545 * most general; they let drivers bind to any interface on a
546 * multiple-function device. Use the USB_INTERFACE_INFO
547 * macro, or its siblings, to match class-per-interface style
Alan Stern93c8bf42006-10-18 16:41:51 -0400548 * devices (as recorded in bInterfaceClass).
549 *
550 * Note that an entry created by USB_INTERFACE_INFO won't match
551 * any interface if the device class is set to Vendor-Specific.
552 * This is deliberate; according to the USB spec the meanings of
553 * the interface class/subclass/protocol for these devices are also
554 * vendor-specific, and hence matching against a standard product
555 * class wouldn't work anyway. If you really want to use an
556 * interface-based match for such a device, create a match record
557 * that also specifies the vendor ID. (Unforunately there isn't a
558 * standard macro for creating records like this.)
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800559 *
560 * Within those groups, remember that not all combinations are
561 * meaningful. For example, don't give a product version range
562 * without vendor and product IDs; or specify a protocol without
563 * its associated class and subclass.
564 */
565const struct usb_device_id *usb_match_id(struct usb_interface *interface,
566 const struct usb_device_id *id)
567{
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800568 /* proc_connectinfo in devio.c may call us with id == NULL. */
569 if (id == NULL)
570 return NULL;
571
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800572 /* It is important to check that id->driver_info is nonzero,
573 since an entry that is all zeroes except for a nonzero
574 id->driver_info is the way to create an entry that
575 indicates that the driver want to examine every
576 device and interface. */
Greg Kroah-Hartmande6f92b2008-01-28 09:50:12 -0800577 for (; id->idVendor || id->idProduct || id->bDeviceClass ||
578 id->bInterfaceClass || id->driver_info; id++) {
Greg Kroah-Hartman733260f2005-11-16 13:41:28 -0800579 if (usb_match_one_id(interface, id))
580 return id;
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800581 }
582
583 return NULL;
584}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -0600585EXPORT_SYMBOL_GPL(usb_match_id);
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800586
Adrian Bunk8bb22d22006-11-21 22:02:54 +0100587static int usb_device_match(struct device *dev, struct device_driver *drv)
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800588{
Alan Stern8bb54ab2006-07-01 22:08:49 -0400589 /* devices and interfaces are handled separately */
590 if (is_usb_device(dev)) {
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800591
Alan Stern8bb54ab2006-07-01 22:08:49 -0400592 /* interface drivers never match devices */
593 if (!is_usb_device_driver(drv))
594 return 0;
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800595
Alan Stern8bb54ab2006-07-01 22:08:49 -0400596 /* TODO: Add real matching code */
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800597 return 1;
598
Kay Sievers55129662009-05-04 19:48:32 +0200599 } else if (is_usb_interface(dev)) {
Alan Stern8bb54ab2006-07-01 22:08:49 -0400600 struct usb_interface *intf;
601 struct usb_driver *usb_drv;
602 const struct usb_device_id *id;
603
604 /* device drivers never match interfaces */
605 if (is_usb_device_driver(drv))
606 return 0;
607
608 intf = to_usb_interface(dev);
609 usb_drv = to_usb_driver(drv);
610
611 id = usb_match_id(intf, usb_drv->id_table);
612 if (id)
613 return 1;
614
615 id = usb_match_dynamic_id(intf, usb_drv);
616 if (id)
617 return 1;
618 }
619
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800620 return 0;
621}
622
Alan Stern36e56a32006-07-01 22:08:06 -0400623#ifdef CONFIG_HOTPLUG
Kay Sievers7eff2e72007-08-14 15:15:12 +0200624static int usb_uevent(struct device *dev, struct kobj_uevent_env *env)
Alan Stern36e56a32006-07-01 22:08:06 -0400625{
Alan Stern36e56a32006-07-01 22:08:06 -0400626 struct usb_device *usb_dev;
Alan Stern36e56a32006-07-01 22:08:06 -0400627
Alan Stern36e56a32006-07-01 22:08:06 -0400628 /* driver is often null here; dev_dbg() would oops */
Kay Sievers7071a3c2008-05-02 06:02:41 +0200629 pr_debug("usb %s: uevent\n", dev_name(dev));
Alan Stern36e56a32006-07-01 22:08:06 -0400630
Kay Sievers55129662009-05-04 19:48:32 +0200631 if (is_usb_device(dev)) {
Alan Stern782da722006-07-01 22:09:35 -0400632 usb_dev = to_usb_device(dev);
Kay Sievers55129662009-05-04 19:48:32 +0200633 } else if (is_usb_interface(dev)) {
Kay Sievers9f8b17e2007-03-13 15:59:31 +0100634 struct usb_interface *intf = to_usb_interface(dev);
Kay Sievers55129662009-05-04 19:48:32 +0200635
Alan Stern8bb54ab2006-07-01 22:08:49 -0400636 usb_dev = interface_to_usbdev(intf);
Kay Sievers55129662009-05-04 19:48:32 +0200637 } else {
638 return 0;
Alan Stern8bb54ab2006-07-01 22:08:49 -0400639 }
Alan Stern36e56a32006-07-01 22:08:06 -0400640
641 if (usb_dev->devnum < 0) {
Kay Sievers7071a3c2008-05-02 06:02:41 +0200642 pr_debug("usb %s: already deleted?\n", dev_name(dev));
Alan Stern36e56a32006-07-01 22:08:06 -0400643 return -ENODEV;
644 }
645 if (!usb_dev->bus) {
Kay Sievers7071a3c2008-05-02 06:02:41 +0200646 pr_debug("usb %s: bus removed?\n", dev_name(dev));
Alan Stern36e56a32006-07-01 22:08:06 -0400647 return -ENODEV;
648 }
649
650#ifdef CONFIG_USB_DEVICEFS
651 /* If this is available, userspace programs can directly read
652 * all the device descriptors we don't tell them about. Or
Kay Sievers9f8b17e2007-03-13 15:59:31 +0100653 * act as usermode drivers.
Alan Stern36e56a32006-07-01 22:08:06 -0400654 */
Kay Sievers7eff2e72007-08-14 15:15:12 +0200655 if (add_uevent_var(env, "DEVICE=/proc/bus/usb/%03d/%03d",
Alan Stern36e56a32006-07-01 22:08:06 -0400656 usb_dev->bus->busnum, usb_dev->devnum))
657 return -ENOMEM;
658#endif
659
660 /* per-device configurations are common */
Kay Sievers7eff2e72007-08-14 15:15:12 +0200661 if (add_uevent_var(env, "PRODUCT=%x/%x/%x",
Alan Stern36e56a32006-07-01 22:08:06 -0400662 le16_to_cpu(usb_dev->descriptor.idVendor),
663 le16_to_cpu(usb_dev->descriptor.idProduct),
664 le16_to_cpu(usb_dev->descriptor.bcdDevice)))
665 return -ENOMEM;
666
667 /* class-based driver binding models */
Kay Sievers7eff2e72007-08-14 15:15:12 +0200668 if (add_uevent_var(env, "TYPE=%d/%d/%d",
Alan Stern36e56a32006-07-01 22:08:06 -0400669 usb_dev->descriptor.bDeviceClass,
670 usb_dev->descriptor.bDeviceSubClass,
671 usb_dev->descriptor.bDeviceProtocol))
672 return -ENOMEM;
673
Alan Stern36e56a32006-07-01 22:08:06 -0400674 return 0;
675}
676
677#else
678
Kay Sievers7eff2e72007-08-14 15:15:12 +0200679static int usb_uevent(struct device *dev, struct kobj_uevent_env *env)
Alan Stern36e56a32006-07-01 22:08:06 -0400680{
681 return -ENODEV;
682}
Alan Stern36e56a32006-07-01 22:08:06 -0400683#endif /* CONFIG_HOTPLUG */
684
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800685/**
Alan Stern8bb54ab2006-07-01 22:08:49 -0400686 * usb_register_device_driver - register a USB device (not interface) driver
687 * @new_udriver: USB operations for the device driver
Greg Kroah-Hartman2143acc2005-11-21 14:53:03 -0800688 * @owner: module owner of this driver.
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800689 *
Alan Stern8bb54ab2006-07-01 22:08:49 -0400690 * Registers a USB device driver with the USB core. The list of
691 * unattached devices will be rescanned whenever a new driver is
692 * added, allowing the new driver to attach to any recognized devices.
693 * Returns a negative error code on failure and 0 on success.
694 */
695int usb_register_device_driver(struct usb_device_driver *new_udriver,
696 struct module *owner)
697{
698 int retval = 0;
699
700 if (usb_disabled())
701 return -ENODEV;
702
703 new_udriver->drvwrap.for_devices = 1;
704 new_udriver->drvwrap.driver.name = (char *) new_udriver->name;
705 new_udriver->drvwrap.driver.bus = &usb_bus_type;
706 new_udriver->drvwrap.driver.probe = usb_probe_device;
707 new_udriver->drvwrap.driver.remove = usb_unbind_device;
708 new_udriver->drvwrap.driver.owner = owner;
709
710 retval = driver_register(&new_udriver->drvwrap.driver);
711
712 if (!retval) {
713 pr_info("%s: registered new device driver %s\n",
714 usbcore_name, new_udriver->name);
715 usbfs_update_special();
716 } else {
717 printk(KERN_ERR "%s: error %d registering device "
718 " driver %s\n",
719 usbcore_name, retval, new_udriver->name);
720 }
721
722 return retval;
723}
724EXPORT_SYMBOL_GPL(usb_register_device_driver);
725
726/**
727 * usb_deregister_device_driver - unregister a USB device (not interface) driver
728 * @udriver: USB operations of the device driver to unregister
729 * Context: must be able to sleep
730 *
731 * Unlinks the specified driver from the internal USB driver list.
732 */
733void usb_deregister_device_driver(struct usb_device_driver *udriver)
734{
735 pr_info("%s: deregistering device driver %s\n",
736 usbcore_name, udriver->name);
737
738 driver_unregister(&udriver->drvwrap.driver);
739 usbfs_update_special();
740}
741EXPORT_SYMBOL_GPL(usb_deregister_device_driver);
742
743/**
744 * usb_register_driver - register a USB interface driver
745 * @new_driver: USB operations for the interface driver
746 * @owner: module owner of this driver.
Randy Dunlap892705a2007-02-10 14:41:41 -0800747 * @mod_name: module name string
Alan Stern8bb54ab2006-07-01 22:08:49 -0400748 *
749 * Registers a USB interface driver with the USB core. The list of
750 * unattached interfaces will be rescanned whenever a new driver is
751 * added, allowing the new driver to attach to any recognized interfaces.
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800752 * Returns a negative error code on failure and 0 on success.
753 *
754 * NOTE: if you want your driver to use the USB major number, you must call
755 * usb_register_dev() to enable that functionality. This function no longer
756 * takes care of that.
757 */
Greg Kroah-Hartman80f745f2007-01-15 11:50:02 -0800758int usb_register_driver(struct usb_driver *new_driver, struct module *owner,
759 const char *mod_name)
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800760{
761 int retval = 0;
762
763 if (usb_disabled())
764 return -ENODEV;
765
Alan Stern8bb54ab2006-07-01 22:08:49 -0400766 new_driver->drvwrap.for_devices = 0;
767 new_driver->drvwrap.driver.name = (char *) new_driver->name;
768 new_driver->drvwrap.driver.bus = &usb_bus_type;
769 new_driver->drvwrap.driver.probe = usb_probe_interface;
770 new_driver->drvwrap.driver.remove = usb_unbind_interface;
771 new_driver->drvwrap.driver.owner = owner;
Greg Kroah-Hartman80f745f2007-01-15 11:50:02 -0800772 new_driver->drvwrap.driver.mod_name = mod_name;
Greg Kroah-Hartman733260f2005-11-16 13:41:28 -0800773 spin_lock_init(&new_driver->dynids.lock);
774 INIT_LIST_HEAD(&new_driver->dynids.list);
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800775
Alan Stern8bb54ab2006-07-01 22:08:49 -0400776 retval = driver_register(&new_driver->drvwrap.driver);
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800777
778 if (!retval) {
Alan Stern8bb54ab2006-07-01 22:08:49 -0400779 pr_info("%s: registered new interface driver %s\n",
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800780 usbcore_name, new_driver->name);
781 usbfs_update_special();
Greg Kroah-Hartman733260f2005-11-16 13:41:28 -0800782 usb_create_newid_file(new_driver);
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800783 } else {
Alan Stern8bb54ab2006-07-01 22:08:49 -0400784 printk(KERN_ERR "%s: error %d registering interface "
785 " driver %s\n",
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800786 usbcore_name, retval, new_driver->name);
787 }
788
789 return retval;
790}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -0600791EXPORT_SYMBOL_GPL(usb_register_driver);
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800792
793/**
Alan Stern8bb54ab2006-07-01 22:08:49 -0400794 * usb_deregister - unregister a USB interface driver
795 * @driver: USB operations of the interface driver to unregister
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800796 * Context: must be able to sleep
797 *
798 * Unlinks the specified driver from the internal USB driver list.
799 *
800 * NOTE: If you called usb_register_dev(), you still need to call
801 * usb_deregister_dev() to clean up your driver's allocated minor numbers,
802 * this * call will no longer do it for you.
803 */
804void usb_deregister(struct usb_driver *driver)
805{
Alan Stern8bb54ab2006-07-01 22:08:49 -0400806 pr_info("%s: deregistering interface driver %s\n",
807 usbcore_name, driver->name);
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800808
Greg Kroah-Hartmanba9dc652005-11-16 13:41:28 -0800809 usb_remove_newid_file(driver);
Greg Kroah-Hartman733260f2005-11-16 13:41:28 -0800810 usb_free_dynids(driver);
Alan Stern8bb54ab2006-07-01 22:08:49 -0400811 driver_unregister(&driver->drvwrap.driver);
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800812
813 usbfs_update_special();
814}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -0600815EXPORT_SYMBOL_GPL(usb_deregister);
Alan Stern36e56a32006-07-01 22:08:06 -0400816
Alan Stern78d9a482008-06-23 16:00:40 -0400817/* Forced unbinding of a USB interface driver, either because
818 * it doesn't support pre_reset/post_reset/reset_resume or
819 * because it doesn't support suspend/resume.
820 *
821 * The caller must hold @intf's device's lock, but not its pm_mutex
822 * and not @intf->dev.sem.
823 */
824void usb_forced_unbind_intf(struct usb_interface *intf)
825{
826 struct usb_driver *driver = to_usb_driver(intf->dev.driver);
827
828 dev_dbg(&intf->dev, "forced unbind\n");
829 usb_driver_release_interface(driver, intf);
830
831 /* Mark the interface for later rebinding */
832 intf->needs_binding = 1;
833}
834
835/* Delayed forced unbinding of a USB interface driver and scan
836 * for rebinding.
837 *
838 * The caller must hold @intf's device's lock, but not its pm_mutex
839 * and not @intf->dev.sem.
840 *
Alan Stern5096aed2008-08-12 14:34:14 -0400841 * Note: Rebinds will be skipped if a system sleep transition is in
842 * progress and the PM "complete" callback hasn't occurred yet.
Alan Stern78d9a482008-06-23 16:00:40 -0400843 */
844void usb_rebind_intf(struct usb_interface *intf)
845{
846 int rc;
847
848 /* Delayed unbind of an existing driver */
849 if (intf->dev.driver) {
850 struct usb_driver *driver =
851 to_usb_driver(intf->dev.driver);
852
853 dev_dbg(&intf->dev, "forced unbind\n");
854 usb_driver_release_interface(driver, intf);
855 }
856
857 /* Try to rebind the interface */
Alan Stern5096aed2008-08-12 14:34:14 -0400858 if (intf->dev.power.status == DPM_ON) {
859 intf->needs_binding = 0;
860 rc = device_attach(&intf->dev);
861 if (rc < 0)
862 dev_warn(&intf->dev, "rebind failed: %d\n", rc);
863 }
Alan Stern78d9a482008-06-23 16:00:40 -0400864}
865
Alan Stern9ff78432008-08-07 13:04:51 -0400866#ifdef CONFIG_PM
867
Alan Stern78d9a482008-06-23 16:00:40 -0400868#define DO_UNBIND 0
869#define DO_REBIND 1
870
871/* Unbind drivers for @udev's interfaces that don't support suspend/resume,
872 * or rebind interfaces that have been unbound, according to @action.
873 *
874 * The caller must hold @udev's device lock.
Alan Stern78d9a482008-06-23 16:00:40 -0400875 */
876static void do_unbind_rebind(struct usb_device *udev, int action)
877{
878 struct usb_host_config *config;
879 int i;
880 struct usb_interface *intf;
881 struct usb_driver *drv;
882
883 config = udev->actconfig;
884 if (config) {
885 for (i = 0; i < config->desc.bNumInterfaces; ++i) {
886 intf = config->interface[i];
887 switch (action) {
888 case DO_UNBIND:
889 if (intf->dev.driver) {
890 drv = to_usb_driver(intf->dev.driver);
891 if (!drv->suspend || !drv->resume)
892 usb_forced_unbind_intf(intf);
893 }
894 break;
895 case DO_REBIND:
Alan Stern5096aed2008-08-12 14:34:14 -0400896 if (intf->needs_binding)
Alan Stern78d9a482008-06-23 16:00:40 -0400897 usb_rebind_intf(intf);
Alan Stern78d9a482008-06-23 16:00:40 -0400898 break;
899 }
900 }
901 }
902}
903
Alan Sterne0318eb2006-09-26 14:50:20 -0400904/* Caller has locked udev's pm_mutex */
Stephen Hemmingerd5ec1682006-11-14 10:06:17 -0800905static int usb_suspend_device(struct usb_device *udev, pm_message_t msg)
Alan Stern36e56a32006-07-01 22:08:06 -0400906{
Alan Stern782da722006-07-01 22:09:35 -0400907 struct usb_device_driver *udriver;
Alan Stern2bf40862006-07-01 22:12:19 -0400908 int status = 0;
Alan Stern36e56a32006-07-01 22:08:06 -0400909
Alan Stern114b3682006-07-01 22:13:04 -0400910 if (udev->state == USB_STATE_NOTATTACHED ||
911 udev->state == USB_STATE_SUSPENDED)
912 goto done;
913
Alan Sternb6f64362007-05-04 11:51:54 -0400914 /* For devices that don't have a driver, we do a generic suspend. */
915 if (udev->dev.driver)
916 udriver = to_usb_device_driver(udev->dev.driver);
917 else {
Alan Stern645daaa2006-08-30 15:47:02 -0400918 udev->do_remote_wakeup = 0;
Alan Sternb6f64362007-05-04 11:51:54 -0400919 udriver = &usb_generic_driver;
Alan Stern1c5df7e2006-07-01 22:13:50 -0400920 }
Alan Stern2bf40862006-07-01 22:12:19 -0400921 status = udriver->suspend(udev, msg);
922
Alan Stern20dfdad2007-05-22 11:50:17 -0400923 done:
Harvey Harrison441b62c2008-03-03 16:08:34 -0800924 dev_vdbg(&udev->dev, "%s: status %d\n", __func__, status);
Alan Stern2bf40862006-07-01 22:12:19 -0400925 return status;
Alan Stern1cc8a252006-07-01 22:10:15 -0400926}
Alan Stern36e56a32006-07-01 22:08:06 -0400927
Alan Sterne0318eb2006-09-26 14:50:20 -0400928/* Caller has locked udev's pm_mutex */
Alan Stern65bfd292008-11-25 16:39:18 -0500929static int usb_resume_device(struct usb_device *udev, pm_message_t msg)
Alan Stern1cc8a252006-07-01 22:10:15 -0400930{
931 struct usb_device_driver *udriver;
Alan Stern2bf40862006-07-01 22:12:19 -0400932 int status = 0;
Alan Stern1cc8a252006-07-01 22:10:15 -0400933
Alan Stern0458d5b2007-05-04 11:52:20 -0400934 if (udev->state == USB_STATE_NOTATTACHED)
935 goto done;
Alan Stern1cc8a252006-07-01 22:10:15 -0400936
Alan Stern1c5df7e2006-07-01 22:13:50 -0400937 /* Can't resume it if it doesn't have a driver. */
938 if (udev->dev.driver == NULL) {
939 status = -ENOTCONN;
Alan Stern2bf40862006-07-01 22:12:19 -0400940 goto done;
Alan Stern1c5df7e2006-07-01 22:13:50 -0400941 }
942
Alan Stern6bc6cff2007-05-04 11:53:03 -0400943 if (udev->quirks & USB_QUIRK_RESET_RESUME)
944 udev->reset_resume = 1;
945
Alan Stern1cc8a252006-07-01 22:10:15 -0400946 udriver = to_usb_device_driver(udev->dev.driver);
Alan Stern65bfd292008-11-25 16:39:18 -0500947 status = udriver->resume(udev, msg);
Alan Stern2bf40862006-07-01 22:12:19 -0400948
Alan Stern20dfdad2007-05-22 11:50:17 -0400949 done:
Harvey Harrison441b62c2008-03-03 16:08:34 -0800950 dev_vdbg(&udev->dev, "%s: status %d\n", __func__, status);
Alan Stern70a1c9e2008-03-06 17:00:58 -0500951 if (status == 0)
Alan Stern2add5222007-03-20 14:59:39 -0400952 udev->autoresume_disabled = 0;
Alan Stern2bf40862006-07-01 22:12:19 -0400953 return status;
Alan Stern1cc8a252006-07-01 22:10:15 -0400954}
955
Alan Sterne0318eb2006-09-26 14:50:20 -0400956/* Caller has locked intf's usb_device's pm mutex */
Alan Stern65605ae2008-08-12 14:33:27 -0400957static int usb_suspend_interface(struct usb_device *udev,
958 struct usb_interface *intf, pm_message_t msg)
Alan Stern1cc8a252006-07-01 22:10:15 -0400959{
960 struct usb_driver *driver;
Alan Stern2bf40862006-07-01 22:12:19 -0400961 int status = 0;
Alan Stern1cc8a252006-07-01 22:10:15 -0400962
Alan Stern114b3682006-07-01 22:13:04 -0400963 /* with no hardware, USB interfaces only use FREEZE and ON states */
Alan Stern65605ae2008-08-12 14:33:27 -0400964 if (udev->state == USB_STATE_NOTATTACHED || !is_active(intf))
Alan Stern114b3682006-07-01 22:13:04 -0400965 goto done;
966
Inaky Perez-Gonzalezdc023dc2008-11-13 10:31:35 -0800967 /* This can happen; see usb_driver_release_interface() */
968 if (intf->condition == USB_INTERFACE_UNBOUND)
Alan Stern2bf40862006-07-01 22:12:19 -0400969 goto done;
Alan Stern1cc8a252006-07-01 22:10:15 -0400970 driver = to_usb_driver(intf->dev.driver);
Alan Stern36e56a32006-07-01 22:08:06 -0400971
Alan Stern78d9a482008-06-23 16:00:40 -0400972 if (driver->suspend) {
Alan Stern1cc8a252006-07-01 22:10:15 -0400973 status = driver->suspend(intf, msg);
Alan Stern645daaa2006-08-30 15:47:02 -0400974 if (status == 0)
975 mark_quiesced(intf);
Alan Stern65bfd292008-11-25 16:39:18 -0500976 else if (!(msg.event & PM_EVENT_AUTO))
Alan Stern1cc8a252006-07-01 22:10:15 -0400977 dev_err(&intf->dev, "%s error %d\n",
978 "suspend", status);
Alan Stern36e56a32006-07-01 22:08:06 -0400979 } else {
Alan Stern78d9a482008-06-23 16:00:40 -0400980 /* Later we will unbind the driver and reprobe */
981 intf->needs_binding = 1;
982 dev_warn(&intf->dev, "no %s for driver %s?\n",
983 "suspend", driver->name);
Alan Stern36e56a32006-07-01 22:08:06 -0400984 mark_quiesced(intf);
Alan Stern36e56a32006-07-01 22:08:06 -0400985 }
Alan Stern2bf40862006-07-01 22:12:19 -0400986
Alan Stern20dfdad2007-05-22 11:50:17 -0400987 done:
Harvey Harrison441b62c2008-03-03 16:08:34 -0800988 dev_vdbg(&intf->dev, "%s: status %d\n", __func__, status);
Alan Stern36e56a32006-07-01 22:08:06 -0400989 return status;
990}
991
Alan Stern645daaa2006-08-30 15:47:02 -0400992/* Caller has locked intf's usb_device's pm_mutex */
Alan Stern65605ae2008-08-12 14:33:27 -0400993static int usb_resume_interface(struct usb_device *udev,
Alan Stern65bfd292008-11-25 16:39:18 -0500994 struct usb_interface *intf, pm_message_t msg, int reset_resume)
Alan Stern36e56a32006-07-01 22:08:06 -0400995{
Alan Stern1cc8a252006-07-01 22:10:15 -0400996 struct usb_driver *driver;
Alan Stern2bf40862006-07-01 22:12:19 -0400997 int status = 0;
Alan Stern36e56a32006-07-01 22:08:06 -0400998
Alan Stern65605ae2008-08-12 14:33:27 -0400999 if (udev->state == USB_STATE_NOTATTACHED || is_active(intf))
Alan Stern2bf40862006-07-01 22:12:19 -04001000 goto done;
Alan Stern36e56a32006-07-01 22:08:06 -04001001
Alan Stern645daaa2006-08-30 15:47:02 -04001002 /* Don't let autoresume interfere with unbinding */
1003 if (intf->condition == USB_INTERFACE_UNBINDING)
1004 goto done;
1005
Alan Stern1c5df7e2006-07-01 22:13:50 -04001006 /* Can't resume it if it doesn't have a driver. */
Alan Stern55151d72008-08-12 14:33:59 -04001007 if (intf->condition == USB_INTERFACE_UNBOUND) {
1008
1009 /* Carry out a deferred switch to altsetting 0 */
1010 if (intf->needs_altsetting0 &&
1011 intf->dev.power.status == DPM_ON) {
1012 usb_set_interface(udev, intf->altsetting[0].
1013 desc.bInterfaceNumber, 0);
1014 intf->needs_altsetting0 = 0;
1015 }
Alan Stern2bf40862006-07-01 22:12:19 -04001016 goto done;
Alan Stern55151d72008-08-12 14:33:59 -04001017 }
Alan Stern78d9a482008-06-23 16:00:40 -04001018
1019 /* Don't resume if the interface is marked for rebinding */
1020 if (intf->needs_binding)
1021 goto done;
Alan Stern1cc8a252006-07-01 22:10:15 -04001022 driver = to_usb_driver(intf->dev.driver);
Alan Stern36e56a32006-07-01 22:08:06 -04001023
Alan Sternf07600c2007-05-30 15:38:16 -04001024 if (reset_resume) {
1025 if (driver->reset_resume) {
1026 status = driver->reset_resume(intf);
1027 if (status)
1028 dev_err(&intf->dev, "%s error %d\n",
1029 "reset_resume", status);
1030 } else {
Alan Stern78d9a482008-06-23 16:00:40 -04001031 intf->needs_binding = 1;
Alan Sternf07600c2007-05-30 15:38:16 -04001032 dev_warn(&intf->dev, "no %s for driver %s?\n",
1033 "reset_resume", driver->name);
1034 }
1035 } else {
1036 if (driver->resume) {
1037 status = driver->resume(intf);
1038 if (status)
1039 dev_err(&intf->dev, "%s error %d\n",
1040 "resume", status);
1041 } else {
Alan Stern78d9a482008-06-23 16:00:40 -04001042 intf->needs_binding = 1;
Alan Sternf07600c2007-05-30 15:38:16 -04001043 dev_warn(&intf->dev, "no %s for driver %s?\n",
1044 "resume", driver->name);
1045 }
1046 }
Alan Stern2bf40862006-07-01 22:12:19 -04001047
1048done:
Harvey Harrison441b62c2008-03-03 16:08:34 -08001049 dev_vdbg(&intf->dev, "%s: status %d\n", __func__, status);
Alan Stern78d9a482008-06-23 16:00:40 -04001050 if (status == 0 && intf->condition == USB_INTERFACE_BOUND)
Alan Stern0458d5b2007-05-04 11:52:20 -04001051 mark_active(intf);
Alan Sternf07600c2007-05-30 15:38:16 -04001052
Alan Stern78d9a482008-06-23 16:00:40 -04001053 /* Later we will unbind the driver and/or reprobe, if necessary */
Alan Stern2bf40862006-07-01 22:12:19 -04001054 return status;
Alan Stern36e56a32006-07-01 22:08:06 -04001055}
1056
Alan Stern94fcda12006-11-20 11:38:46 -05001057#ifdef CONFIG_USB_SUSPEND
1058
Alan Sternaf4f7602006-10-30 17:06:45 -05001059/* Internal routine to check whether we may autosuspend a device. */
Alan Sternd1aa3e62007-10-11 16:47:36 -04001060static int autosuspend_check(struct usb_device *udev, int reschedule)
Alan Sternaf4f7602006-10-30 17:06:45 -05001061{
1062 int i;
1063 struct usb_interface *intf;
Alan Sternd1aa3e62007-10-11 16:47:36 -04001064 unsigned long suspend_time, j;
Alan Sternaf4f7602006-10-30 17:06:45 -05001065
Alan Sternb5e795f2007-02-20 15:00:53 -05001066 /* For autosuspend, fail fast if anything is in use or autosuspend
1067 * is disabled. Also fail if any interfaces require remote wakeup
1068 * but it isn't available.
1069 */
Alan Sternaf4f7602006-10-30 17:06:45 -05001070 if (udev->pm_usage_cnt > 0)
1071 return -EBUSY;
Alan Stern2add5222007-03-20 14:59:39 -04001072 if (udev->autosuspend_delay < 0 || udev->autosuspend_disabled)
Alan Sternb5e795f2007-02-20 15:00:53 -05001073 return -EPERM;
1074
Alan Stern19410442007-03-27 13:33:59 -04001075 suspend_time = udev->last_busy + udev->autosuspend_delay;
Alan Sternaf4f7602006-10-30 17:06:45 -05001076 if (udev->actconfig) {
1077 for (i = 0; i < udev->actconfig->desc.bNumInterfaces; i++) {
1078 intf = udev->actconfig->interface[i];
1079 if (!is_active(intf))
1080 continue;
Alan Sternccf5b802009-06-29 11:00:01 -04001081 if (atomic_read(&intf->pm_usage_cnt) > 0)
Alan Sternaf4f7602006-10-30 17:06:45 -05001082 return -EBUSY;
1083 if (intf->needs_remote_wakeup &&
1084 !udev->do_remote_wakeup) {
1085 dev_dbg(&udev->dev, "remote wakeup needed "
1086 "for autosuspend\n");
1087 return -EOPNOTSUPP;
1088 }
Alan Sternf07600c2007-05-30 15:38:16 -04001089
1090 /* Don't allow autosuspend if the device will need
1091 * a reset-resume and any of its interface drivers
1092 * doesn't include support.
1093 */
1094 if (udev->quirks & USB_QUIRK_RESET_RESUME) {
1095 struct usb_driver *driver;
1096
1097 driver = to_usb_driver(intf->dev.driver);
Oliver Neukum399d31d2008-09-15 17:29:28 +02001098 if (!driver->reset_resume ||
1099 intf->needs_remote_wakeup)
Alan Sternf07600c2007-05-30 15:38:16 -04001100 return -EOPNOTSUPP;
1101 }
Alan Sternaf4f7602006-10-30 17:06:45 -05001102 }
1103 }
Alan Stern19410442007-03-27 13:33:59 -04001104
1105 /* If everything is okay but the device hasn't been idle for long
Alan Sternd1aa3e62007-10-11 16:47:36 -04001106 * enough, queue a delayed autosuspend request. If the device
1107 * _has_ been idle for long enough and the reschedule flag is set,
1108 * likewise queue a delayed (1 second) autosuspend request.
Alan Stern19410442007-03-27 13:33:59 -04001109 */
Alan Sternd1aa3e62007-10-11 16:47:36 -04001110 j = jiffies;
1111 if (time_before(j, suspend_time))
1112 reschedule = 1;
1113 else
1114 suspend_time = j + HZ;
1115 if (reschedule) {
Alan Stern8c9862e2007-04-11 12:06:16 -04001116 if (!timer_pending(&udev->autosuspend.timer)) {
Alan Stern19410442007-03-27 13:33:59 -04001117 queue_delayed_work(ksuspend_usb_wq, &udev->autosuspend,
Alan Stern4ec06d62008-11-25 16:40:02 -05001118 round_jiffies_up_relative(suspend_time - j));
Alan Sternd1aa3e62007-10-11 16:47:36 -04001119 }
Alan Stern19410442007-03-27 13:33:59 -04001120 return -EAGAIN;
1121 }
Alan Sternaf4f7602006-10-30 17:06:45 -05001122 return 0;
1123}
1124
Alan Stern94fcda12006-11-20 11:38:46 -05001125#else
1126
Alan Sternd1aa3e62007-10-11 16:47:36 -04001127static inline int autosuspend_check(struct usb_device *udev, int reschedule)
Alan Sternef7f6c72007-04-05 16:03:49 -04001128{
1129 return 0;
1130}
Alan Stern94fcda12006-11-20 11:38:46 -05001131
Alan Sternb5e795f2007-02-20 15:00:53 -05001132#endif /* CONFIG_USB_SUSPEND */
Alan Stern94fcda12006-11-20 11:38:46 -05001133
Alan Stern645daaa2006-08-30 15:47:02 -04001134/**
1135 * usb_suspend_both - suspend a USB device and its interfaces
1136 * @udev: the usb_device to suspend
1137 * @msg: Power Management message describing this state transition
1138 *
1139 * This is the central routine for suspending USB devices. It calls the
1140 * suspend methods for all the interface drivers in @udev and then calls
1141 * the suspend method for @udev itself. If an error occurs at any stage,
1142 * all the interfaces which were suspended are resumed so that they remain
1143 * in the same state as the device.
1144 *
Alan Stern65bfd292008-11-25 16:39:18 -05001145 * If an autosuspend is in progress the routine checks first to make sure
1146 * that neither the device itself or any of its active interfaces is in use
1147 * (pm_usage_cnt is greater than 0). If they are, the autosuspend fails.
Alan Stern645daaa2006-08-30 15:47:02 -04001148 *
1149 * If the suspend succeeds, the routine recursively queues an autosuspend
1150 * request for @udev's parent device, thereby propagating the change up
1151 * the device tree. If all of the parent's children are now suspended,
1152 * the parent will autosuspend in turn.
1153 *
1154 * The suspend method calls are subject to mutual exclusion under control
1155 * of @udev's pm_mutex. Many of these calls are also under the protection
1156 * of @udev's device lock (including all requests originating outside the
1157 * USB subsystem), but autosuspend requests generated by a child device or
1158 * interface driver may not be. Usbcore will insure that the method calls
1159 * do not arrive during bind, unbind, or reset operations. However, drivers
1160 * must be prepared to handle suspend calls arriving at unpredictable times.
1161 * The only way to block such calls is to do an autoresume (preventing
1162 * autosuspends) while holding @udev's device lock (preventing outside
1163 * suspends).
1164 *
1165 * The caller must hold @udev->pm_mutex.
1166 *
1167 * This routine can run only in process context.
1168 */
Alan Stern718efa62007-03-09 15:41:13 -05001169static int usb_suspend_both(struct usb_device *udev, pm_message_t msg)
Alan Sterna8e7c562006-07-01 22:11:02 -04001170{
1171 int status = 0;
1172 int i = 0;
1173 struct usb_interface *intf;
Alan Stern645daaa2006-08-30 15:47:02 -04001174 struct usb_device *parent = udev->parent;
Alan Sterna8e7c562006-07-01 22:11:02 -04001175
Alan Stern19410442007-03-27 13:33:59 -04001176 if (udev->state == USB_STATE_NOTATTACHED ||
1177 udev->state == USB_STATE_SUSPENDED)
1178 goto done;
Alan Stern645daaa2006-08-30 15:47:02 -04001179
1180 udev->do_remote_wakeup = device_may_wakeup(&udev->dev);
1181
Alan Stern65bfd292008-11-25 16:39:18 -05001182 if (msg.event & PM_EVENT_AUTO) {
Alan Sternd1aa3e62007-10-11 16:47:36 -04001183 status = autosuspend_check(udev, 0);
Alan Sternaf4f7602006-10-30 17:06:45 -05001184 if (status < 0)
Alan Stern19410442007-03-27 13:33:59 -04001185 goto done;
Alan Stern645daaa2006-08-30 15:47:02 -04001186 }
1187
1188 /* Suspend all the interfaces and then udev itself */
Alan Sterna8e7c562006-07-01 22:11:02 -04001189 if (udev->actconfig) {
1190 for (; i < udev->actconfig->desc.bNumInterfaces; i++) {
1191 intf = udev->actconfig->interface[i];
Alan Stern65605ae2008-08-12 14:33:27 -04001192 status = usb_suspend_interface(udev, intf, msg);
Alan Sterna8e7c562006-07-01 22:11:02 -04001193 if (status != 0)
1194 break;
1195 }
1196 }
Alan Stern5ad4f712007-09-10 11:31:43 -04001197 if (status == 0)
Stephen Hemmingerd5ec1682006-11-14 10:06:17 -08001198 status = usb_suspend_device(udev, msg);
Alan Sterna8e7c562006-07-01 22:11:02 -04001199
1200 /* If the suspend failed, resume interfaces that did get suspended */
1201 if (status != 0) {
Alan Stern65bfd292008-11-25 16:39:18 -05001202 pm_message_t msg2;
1203
1204 msg2.event = msg.event ^ (PM_EVENT_SUSPEND | PM_EVENT_RESUME);
Alan Sterna8e7c562006-07-01 22:11:02 -04001205 while (--i >= 0) {
1206 intf = udev->actconfig->interface[i];
Alan Stern65bfd292008-11-25 16:39:18 -05001207 usb_resume_interface(udev, intf, msg2, 0);
Alan Sterna8e7c562006-07-01 22:11:02 -04001208 }
Alan Stern645daaa2006-08-30 15:47:02 -04001209
Alan Sternef7f6c72007-04-05 16:03:49 -04001210 /* Try another autosuspend when the interfaces aren't busy */
Alan Stern65bfd292008-11-25 16:39:18 -05001211 if (msg.event & PM_EVENT_AUTO)
Alan Sternd1aa3e62007-10-11 16:47:36 -04001212 autosuspend_check(udev, status == -EBUSY);
Alan Sternef7f6c72007-04-05 16:03:49 -04001213
Alan Stern6840d252007-09-10 11:34:26 -04001214 /* If the suspend succeeded then prevent any more URB submissions,
1215 * flush any outstanding URBs, and propagate the suspend up the tree.
1216 */
Alan Sternef7f6c72007-04-05 16:03:49 -04001217 } else {
1218 cancel_delayed_work(&udev->autosuspend);
Alan Stern6840d252007-09-10 11:34:26 -04001219 udev->can_submit = 0;
1220 for (i = 0; i < 16; ++i) {
1221 usb_hcd_flush_endpoint(udev, udev->ep_out[i]);
1222 usb_hcd_flush_endpoint(udev, udev->ep_in[i]);
1223 }
Alan Stern7108f282007-09-20 12:37:50 -04001224
1225 /* If this is just a FREEZE or a PRETHAW, udev might
1226 * not really be suspended. Only true suspends get
1227 * propagated up the device tree.
1228 */
1229 if (parent && udev->state == USB_STATE_SUSPENDED)
Alan Sternef7f6c72007-04-05 16:03:49 -04001230 usb_autosuspend_device(parent);
1231 }
Alan Stern645daaa2006-08-30 15:47:02 -04001232
Alan Stern19410442007-03-27 13:33:59 -04001233 done:
Harvey Harrison441b62c2008-03-03 16:08:34 -08001234 dev_vdbg(&udev->dev, "%s: status %d\n", __func__, status);
Alan Sterna8e7c562006-07-01 22:11:02 -04001235 return status;
1236}
1237
Alan Stern645daaa2006-08-30 15:47:02 -04001238/**
1239 * usb_resume_both - resume a USB device and its interfaces
1240 * @udev: the usb_device to resume
Alan Stern65bfd292008-11-25 16:39:18 -05001241 * @msg: Power Management message describing this state transition
Alan Stern645daaa2006-08-30 15:47:02 -04001242 *
1243 * This is the central routine for resuming USB devices. It calls the
1244 * the resume method for @udev and then calls the resume methods for all
1245 * the interface drivers in @udev.
1246 *
1247 * Before starting the resume, the routine calls itself recursively for
1248 * the parent device of @udev, thereby propagating the change up the device
1249 * tree and assuring that @udev will be able to resume. If the parent is
1250 * unable to resume successfully, the routine fails.
1251 *
1252 * The resume method calls are subject to mutual exclusion under control
1253 * of @udev's pm_mutex. Many of these calls are also under the protection
1254 * of @udev's device lock (including all requests originating outside the
1255 * USB subsystem), but autoresume requests generated by a child device or
1256 * interface driver may not be. Usbcore will insure that the method calls
1257 * do not arrive during bind, unbind, or reset operations. However, drivers
1258 * must be prepared to handle resume calls arriving at unpredictable times.
1259 * The only way to block such calls is to do an autoresume (preventing
1260 * other autoresumes) while holding @udev's device lock (preventing outside
1261 * resumes).
1262 *
1263 * The caller must hold @udev->pm_mutex.
1264 *
1265 * This routine can run only in process context.
1266 */
Alan Stern65bfd292008-11-25 16:39:18 -05001267static int usb_resume_both(struct usb_device *udev, pm_message_t msg)
Alan Sterna8e7c562006-07-01 22:11:02 -04001268{
Alan Stern645daaa2006-08-30 15:47:02 -04001269 int status = 0;
Alan Sterna8e7c562006-07-01 22:11:02 -04001270 int i;
1271 struct usb_interface *intf;
Alan Stern645daaa2006-08-30 15:47:02 -04001272 struct usb_device *parent = udev->parent;
Alan Sterna8e7c562006-07-01 22:11:02 -04001273
Alan Stern645daaa2006-08-30 15:47:02 -04001274 cancel_delayed_work(&udev->autosuspend);
Alan Stern19410442007-03-27 13:33:59 -04001275 if (udev->state == USB_STATE_NOTATTACHED) {
1276 status = -ENODEV;
1277 goto done;
1278 }
Alan Stern6840d252007-09-10 11:34:26 -04001279 udev->can_submit = 1;
Alan Stern645daaa2006-08-30 15:47:02 -04001280
1281 /* Propagate the resume up the tree, if necessary */
1282 if (udev->state == USB_STATE_SUSPENDED) {
Alan Stern65bfd292008-11-25 16:39:18 -05001283 if ((msg.event & PM_EVENT_AUTO) &&
1284 udev->autoresume_disabled) {
Alan Stern19410442007-03-27 13:33:59 -04001285 status = -EPERM;
1286 goto done;
1287 }
Alan Stern645daaa2006-08-30 15:47:02 -04001288 if (parent) {
Alan Stern94fcda12006-11-20 11:38:46 -05001289 status = usb_autoresume_device(parent);
Alan Sternee49fb52006-11-22 16:55:54 -05001290 if (status == 0) {
Alan Stern65bfd292008-11-25 16:39:18 -05001291 status = usb_resume_device(udev, msg);
Alan Sternf07600c2007-05-30 15:38:16 -04001292 if (status || udev->state ==
1293 USB_STATE_NOTATTACHED) {
Alan Stern94fcda12006-11-20 11:38:46 -05001294 usb_autosuspend_device(parent);
Alan Sternee49fb52006-11-22 16:55:54 -05001295
1296 /* It's possible usb_resume_device()
1297 * failed after the port was
1298 * unsuspended, causing udev to be
1299 * logically disconnected. We don't
1300 * want usb_disconnect() to autosuspend
1301 * the parent again, so tell it that
1302 * udev disconnected while still
1303 * suspended. */
1304 if (udev->state ==
1305 USB_STATE_NOTATTACHED)
1306 udev->discon_suspended = 1;
1307 }
1308 }
Alan Stern645daaa2006-08-30 15:47:02 -04001309 } else {
1310
1311 /* We can't progagate beyond the USB subsystem,
1312 * so if a root hub's controller is suspended
1313 * then we're stuck. */
Alan Stern65bfd292008-11-25 16:39:18 -05001314 status = usb_resume_device(udev, msg);
Greg Kroah-Hartman2c044a42008-01-30 15:21:33 -08001315 }
Alan Stern6ee0b272008-04-28 11:06:42 -04001316 } else if (udev->reset_resume)
Alan Stern65bfd292008-11-25 16:39:18 -05001317 status = usb_resume_device(udev, msg);
Alan Stern114b3682006-07-01 22:13:04 -04001318
Alan Sterna8e7c562006-07-01 22:11:02 -04001319 if (status == 0 && udev->actconfig) {
1320 for (i = 0; i < udev->actconfig->desc.bNumInterfaces; i++) {
1321 intf = udev->actconfig->interface[i];
Alan Stern65bfd292008-11-25 16:39:18 -05001322 usb_resume_interface(udev, intf, msg,
1323 udev->reset_resume);
Alan Sterna8e7c562006-07-01 22:11:02 -04001324 }
1325 }
Alan Stern645daaa2006-08-30 15:47:02 -04001326
Alan Stern19410442007-03-27 13:33:59 -04001327 done:
Harvey Harrison441b62c2008-03-03 16:08:34 -08001328 dev_vdbg(&udev->dev, "%s: status %d\n", __func__, status);
Alan Stern70a1c9e2008-03-06 17:00:58 -05001329 if (!status)
1330 udev->reset_resume = 0;
Alan Sterna8e7c562006-07-01 22:11:02 -04001331 return status;
1332}
1333
Alan Stern645daaa2006-08-30 15:47:02 -04001334#ifdef CONFIG_USB_SUSPEND
1335
Alan Stern94fcda12006-11-20 11:38:46 -05001336/* Internal routine to adjust a device's usage counter and change
1337 * its autosuspend state.
1338 */
1339static int usb_autopm_do_device(struct usb_device *udev, int inc_usage_cnt)
1340{
1341 int status = 0;
1342
1343 usb_pm_lock(udev);
Alan Stern19410442007-03-27 13:33:59 -04001344 udev->auto_pm = 1;
Alan Stern94fcda12006-11-20 11:38:46 -05001345 udev->pm_usage_cnt += inc_usage_cnt;
1346 WARN_ON(udev->pm_usage_cnt < 0);
Alan Stern013d27f2007-08-20 12:18:39 -04001347 if (inc_usage_cnt)
1348 udev->last_busy = jiffies;
Alan Stern94fcda12006-11-20 11:38:46 -05001349 if (inc_usage_cnt >= 0 && udev->pm_usage_cnt > 0) {
Alan Stern19410442007-03-27 13:33:59 -04001350 if (udev->state == USB_STATE_SUSPENDED)
Alan Stern65bfd292008-11-25 16:39:18 -05001351 status = usb_resume_both(udev, PMSG_AUTO_RESUME);
Alan Stern94fcda12006-11-20 11:38:46 -05001352 if (status != 0)
1353 udev->pm_usage_cnt -= inc_usage_cnt;
Alan Stern19410442007-03-27 13:33:59 -04001354 else if (inc_usage_cnt)
1355 udev->last_busy = jiffies;
1356 } else if (inc_usage_cnt <= 0 && udev->pm_usage_cnt <= 0) {
Alan Stern65bfd292008-11-25 16:39:18 -05001357 status = usb_suspend_both(udev, PMSG_AUTO_SUSPEND);
Alan Stern19410442007-03-27 13:33:59 -04001358 }
Alan Stern94fcda12006-11-20 11:38:46 -05001359 usb_pm_unlock(udev);
1360 return status;
1361}
1362
Alan Stern19410442007-03-27 13:33:59 -04001363/* usb_autosuspend_work - callback routine to autosuspend a USB device */
1364void usb_autosuspend_work(struct work_struct *work)
1365{
1366 struct usb_device *udev =
1367 container_of(work, struct usb_device, autosuspend.work);
1368
1369 usb_autopm_do_device(udev, 0);
1370}
1371
Alan Stern9ac39f22008-11-12 16:19:49 -05001372/* usb_autoresume_work - callback routine to autoresume a USB device */
1373void usb_autoresume_work(struct work_struct *work)
1374{
1375 struct usb_device *udev =
1376 container_of(work, struct usb_device, autoresume);
1377
1378 /* Wake it up, let the drivers do their thing, and then put it
1379 * back to sleep.
1380 */
1381 if (usb_autopm_do_device(udev, 1) == 0)
1382 usb_autopm_do_device(udev, -1);
1383}
1384
Alan Stern645daaa2006-08-30 15:47:02 -04001385/**
1386 * usb_autosuspend_device - delayed autosuspend of a USB device and its interfaces
Henrik Kretzschmar701f35a2006-09-25 17:00:56 -07001387 * @udev: the usb_device to autosuspend
Alan Stern645daaa2006-08-30 15:47:02 -04001388 *
1389 * This routine should be called when a core subsystem is finished using
1390 * @udev and wants to allow it to autosuspend. Examples would be when
1391 * @udev's device file in usbfs is closed or after a configuration change.
1392 *
Alan Stern94fcda12006-11-20 11:38:46 -05001393 * @udev's usage counter is decremented. If it or any of the usage counters
1394 * for an active interface is greater than 0, no autosuspend request will be
1395 * queued. (If an interface driver does not support autosuspend then its
1396 * usage counter is permanently positive.) Furthermore, if an interface
1397 * driver requires remote-wakeup capability during autosuspend but remote
1398 * wakeup is disabled, the autosuspend will fail.
Alan Stern645daaa2006-08-30 15:47:02 -04001399 *
1400 * Often the caller will hold @udev's device lock, but this is not
1401 * necessary.
1402 *
1403 * This routine can run only in process context.
1404 */
Alan Stern94fcda12006-11-20 11:38:46 -05001405void usb_autosuspend_device(struct usb_device *udev)
Alan Stern645daaa2006-08-30 15:47:02 -04001406{
Alan Stern94fcda12006-11-20 11:38:46 -05001407 int status;
1408
1409 status = usb_autopm_do_device(udev, -1);
Alan Stern20dfdad2007-05-22 11:50:17 -04001410 dev_vdbg(&udev->dev, "%s: cnt %d\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -08001411 __func__, udev->pm_usage_cnt);
Alan Stern645daaa2006-08-30 15:47:02 -04001412}
1413
1414/**
Alan Stern19c26232007-02-20 15:03:32 -05001415 * usb_try_autosuspend_device - attempt an autosuspend of a USB device and its interfaces
1416 * @udev: the usb_device to autosuspend
1417 *
1418 * This routine should be called when a core subsystem thinks @udev may
1419 * be ready to autosuspend.
1420 *
1421 * @udev's usage counter left unchanged. If it or any of the usage counters
1422 * for an active interface is greater than 0, or autosuspend is not allowed
1423 * for any other reason, no autosuspend request will be queued.
1424 *
1425 * This routine can run only in process context.
1426 */
1427void usb_try_autosuspend_device(struct usb_device *udev)
1428{
1429 usb_autopm_do_device(udev, 0);
Alan Stern20dfdad2007-05-22 11:50:17 -04001430 dev_vdbg(&udev->dev, "%s: cnt %d\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -08001431 __func__, udev->pm_usage_cnt);
Alan Stern19c26232007-02-20 15:03:32 -05001432}
1433
1434/**
Alan Stern645daaa2006-08-30 15:47:02 -04001435 * usb_autoresume_device - immediately autoresume a USB device and its interfaces
Henrik Kretzschmar701f35a2006-09-25 17:00:56 -07001436 * @udev: the usb_device to autoresume
Alan Stern645daaa2006-08-30 15:47:02 -04001437 *
1438 * This routine should be called when a core subsystem wants to use @udev
Alan Stern94fcda12006-11-20 11:38:46 -05001439 * and needs to guarantee that it is not suspended. No autosuspend will
1440 * occur until usb_autosuspend_device is called. (Note that this will not
1441 * prevent suspend events originating in the PM core.) Examples would be
1442 * when @udev's device file in usbfs is opened or when a remote-wakeup
1443 * request is received.
Alan Stern645daaa2006-08-30 15:47:02 -04001444 *
Alan Stern94fcda12006-11-20 11:38:46 -05001445 * @udev's usage counter is incremented to prevent subsequent autosuspends.
1446 * However if the autoresume fails then the usage counter is re-decremented.
Alan Stern645daaa2006-08-30 15:47:02 -04001447 *
1448 * Often the caller will hold @udev's device lock, but this is not
1449 * necessary (and attempting it might cause deadlock).
1450 *
1451 * This routine can run only in process context.
1452 */
Alan Stern94fcda12006-11-20 11:38:46 -05001453int usb_autoresume_device(struct usb_device *udev)
Alan Stern645daaa2006-08-30 15:47:02 -04001454{
1455 int status;
1456
Alan Stern94fcda12006-11-20 11:38:46 -05001457 status = usb_autopm_do_device(udev, 1);
Alan Stern20dfdad2007-05-22 11:50:17 -04001458 dev_vdbg(&udev->dev, "%s: status %d cnt %d\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -08001459 __func__, status, udev->pm_usage_cnt);
Alan Stern645daaa2006-08-30 15:47:02 -04001460 return status;
1461}
1462
Alan Sternaf4f7602006-10-30 17:06:45 -05001463/* Internal routine to adjust an interface's usage counter and change
1464 * its device's autosuspend state.
1465 */
1466static int usb_autopm_do_interface(struct usb_interface *intf,
1467 int inc_usage_cnt)
1468{
1469 struct usb_device *udev = interface_to_usbdev(intf);
1470 int status = 0;
1471
1472 usb_pm_lock(udev);
1473 if (intf->condition == USB_INTERFACE_UNBOUND)
1474 status = -ENODEV;
1475 else {
Alan Stern19410442007-03-27 13:33:59 -04001476 udev->auto_pm = 1;
Alan Sternccf5b802009-06-29 11:00:01 -04001477 atomic_add(inc_usage_cnt, &intf->pm_usage_cnt);
Alan Stern013d27f2007-08-20 12:18:39 -04001478 udev->last_busy = jiffies;
Alan Sternccf5b802009-06-29 11:00:01 -04001479 if (inc_usage_cnt >= 0 &&
1480 atomic_read(&intf->pm_usage_cnt) > 0) {
Alan Stern19410442007-03-27 13:33:59 -04001481 if (udev->state == USB_STATE_SUSPENDED)
Alan Stern65bfd292008-11-25 16:39:18 -05001482 status = usb_resume_both(udev,
1483 PMSG_AUTO_RESUME);
Alan Sternaf4f7602006-10-30 17:06:45 -05001484 if (status != 0)
Alan Sternccf5b802009-06-29 11:00:01 -04001485 atomic_sub(inc_usage_cnt, &intf->pm_usage_cnt);
Alan Stern013d27f2007-08-20 12:18:39 -04001486 else
Alan Stern19410442007-03-27 13:33:59 -04001487 udev->last_busy = jiffies;
Alan Sternccf5b802009-06-29 11:00:01 -04001488 } else if (inc_usage_cnt <= 0 &&
1489 atomic_read(&intf->pm_usage_cnt) <= 0) {
Alan Stern65bfd292008-11-25 16:39:18 -05001490 status = usb_suspend_both(udev, PMSG_AUTO_SUSPEND);
Alan Stern19410442007-03-27 13:33:59 -04001491 }
Alan Sternaf4f7602006-10-30 17:06:45 -05001492 }
1493 usb_pm_unlock(udev);
1494 return status;
1495}
1496
Alan Stern645daaa2006-08-30 15:47:02 -04001497/**
1498 * usb_autopm_put_interface - decrement a USB interface's PM-usage counter
Henrik Kretzschmar701f35a2006-09-25 17:00:56 -07001499 * @intf: the usb_interface whose counter should be decremented
Alan Stern645daaa2006-08-30 15:47:02 -04001500 *
1501 * This routine should be called by an interface driver when it is
1502 * finished using @intf and wants to allow it to autosuspend. A typical
1503 * example would be a character-device driver when its device file is
1504 * closed.
1505 *
1506 * The routine decrements @intf's usage counter. When the counter reaches
1507 * 0, a delayed autosuspend request for @intf's device is queued. When
1508 * the delay expires, if @intf->pm_usage_cnt is still <= 0 along with all
1509 * the other usage counters for the sibling interfaces and @intf's
1510 * usb_device, the device and all its interfaces will be autosuspended.
1511 *
1512 * Note that @intf->pm_usage_cnt is owned by the interface driver. The
1513 * core will not change its value other than the increment and decrement
1514 * in usb_autopm_get_interface and usb_autopm_put_interface. The driver
1515 * may use this simple counter-oriented discipline or may set the value
1516 * any way it likes.
1517 *
1518 * If the driver has set @intf->needs_remote_wakeup then autosuspend will
1519 * take place only if the device's remote-wakeup facility is enabled.
1520 *
1521 * Suspend method calls queued by this routine can arrive at any time
1522 * while @intf is resumed and its usage counter is equal to 0. They are
1523 * not protected by the usb_device's lock but only by its pm_mutex.
1524 * Drivers must provide their own synchronization.
1525 *
1526 * This routine can run only in process context.
1527 */
1528void usb_autopm_put_interface(struct usb_interface *intf)
1529{
Alan Sternaf4f7602006-10-30 17:06:45 -05001530 int status;
Alan Stern645daaa2006-08-30 15:47:02 -04001531
Alan Sternaf4f7602006-10-30 17:06:45 -05001532 status = usb_autopm_do_interface(intf, -1);
Alan Stern20dfdad2007-05-22 11:50:17 -04001533 dev_vdbg(&intf->dev, "%s: status %d cnt %d\n",
Alan Sternccf5b802009-06-29 11:00:01 -04001534 __func__, status, atomic_read(&intf->pm_usage_cnt));
Alan Stern645daaa2006-08-30 15:47:02 -04001535}
1536EXPORT_SYMBOL_GPL(usb_autopm_put_interface);
1537
1538/**
Alan Stern9ac39f22008-11-12 16:19:49 -05001539 * usb_autopm_put_interface_async - decrement a USB interface's PM-usage counter
1540 * @intf: the usb_interface whose counter should be decremented
1541 *
1542 * This routine does essentially the same thing as
1543 * usb_autopm_put_interface(): it decrements @intf's usage counter and
1544 * queues a delayed autosuspend request if the counter is <= 0. The
1545 * difference is that it does not acquire the device's pm_mutex;
1546 * callers must handle all synchronization issues themselves.
1547 *
1548 * Typically a driver would call this routine during an URB's completion
1549 * handler, if no more URBs were pending.
1550 *
1551 * This routine can run in atomic context.
1552 */
1553void usb_autopm_put_interface_async(struct usb_interface *intf)
1554{
1555 struct usb_device *udev = interface_to_usbdev(intf);
1556 int status = 0;
1557
1558 if (intf->condition == USB_INTERFACE_UNBOUND) {
1559 status = -ENODEV;
1560 } else {
1561 udev->last_busy = jiffies;
Alan Sternccf5b802009-06-29 11:00:01 -04001562 atomic_dec(&intf->pm_usage_cnt);
Alan Stern9ac39f22008-11-12 16:19:49 -05001563 if (udev->autosuspend_disabled || udev->autosuspend_delay < 0)
1564 status = -EPERM;
Alan Sternccf5b802009-06-29 11:00:01 -04001565 else if (atomic_read(&intf->pm_usage_cnt) <= 0 &&
Alan Stern9ac39f22008-11-12 16:19:49 -05001566 !timer_pending(&udev->autosuspend.timer)) {
1567 queue_delayed_work(ksuspend_usb_wq, &udev->autosuspend,
Alan Stern4ec06d62008-11-25 16:40:02 -05001568 round_jiffies_up_relative(
Alan Stern9ac39f22008-11-12 16:19:49 -05001569 udev->autosuspend_delay));
1570 }
1571 }
1572 dev_vdbg(&intf->dev, "%s: status %d cnt %d\n",
Alan Sternccf5b802009-06-29 11:00:01 -04001573 __func__, status, atomic_read(&intf->pm_usage_cnt));
Alan Stern9ac39f22008-11-12 16:19:49 -05001574}
1575EXPORT_SYMBOL_GPL(usb_autopm_put_interface_async);
1576
1577/**
Alan Stern645daaa2006-08-30 15:47:02 -04001578 * usb_autopm_get_interface - increment a USB interface's PM-usage counter
Henrik Kretzschmar701f35a2006-09-25 17:00:56 -07001579 * @intf: the usb_interface whose counter should be incremented
Alan Stern645daaa2006-08-30 15:47:02 -04001580 *
1581 * This routine should be called by an interface driver when it wants to
1582 * use @intf and needs to guarantee that it is not suspended. In addition,
1583 * the routine prevents @intf from being autosuspended subsequently. (Note
1584 * that this will not prevent suspend events originating in the PM core.)
1585 * This prevention will persist until usb_autopm_put_interface() is called
1586 * or @intf is unbound. A typical example would be a character-device
1587 * driver when its device file is opened.
1588 *
Alan Stern19410442007-03-27 13:33:59 -04001589 *
1590 * The routine increments @intf's usage counter. (However if the
1591 * autoresume fails then the counter is re-decremented.) So long as the
1592 * counter is greater than 0, autosuspend will not be allowed for @intf
1593 * or its usb_device. When the driver is finished using @intf it should
1594 * call usb_autopm_put_interface() to decrement the usage counter and
1595 * queue a delayed autosuspend request (if the counter is <= 0).
1596 *
Alan Stern645daaa2006-08-30 15:47:02 -04001597 *
1598 * Note that @intf->pm_usage_cnt is owned by the interface driver. The
1599 * core will not change its value other than the increment and decrement
1600 * in usb_autopm_get_interface and usb_autopm_put_interface. The driver
1601 * may use this simple counter-oriented discipline or may set the value
1602 * any way it likes.
1603 *
1604 * Resume method calls generated by this routine can arrive at any time
1605 * while @intf is suspended. They are not protected by the usb_device's
1606 * lock but only by its pm_mutex. Drivers must provide their own
1607 * synchronization.
1608 *
1609 * This routine can run only in process context.
1610 */
1611int usb_autopm_get_interface(struct usb_interface *intf)
1612{
Alan Sternaf4f7602006-10-30 17:06:45 -05001613 int status;
Alan Stern645daaa2006-08-30 15:47:02 -04001614
Alan Sternaf4f7602006-10-30 17:06:45 -05001615 status = usb_autopm_do_interface(intf, 1);
Alan Stern20dfdad2007-05-22 11:50:17 -04001616 dev_vdbg(&intf->dev, "%s: status %d cnt %d\n",
Alan Sternccf5b802009-06-29 11:00:01 -04001617 __func__, status, atomic_read(&intf->pm_usage_cnt));
Alan Stern645daaa2006-08-30 15:47:02 -04001618 return status;
1619}
1620EXPORT_SYMBOL_GPL(usb_autopm_get_interface);
1621
Alan Stern692a1862006-10-30 17:07:51 -05001622/**
Alan Stern9ac39f22008-11-12 16:19:49 -05001623 * usb_autopm_get_interface_async - increment a USB interface's PM-usage counter
1624 * @intf: the usb_interface whose counter should be incremented
1625 *
1626 * This routine does much the same thing as
1627 * usb_autopm_get_interface(): it increments @intf's usage counter and
1628 * queues an autoresume request if the result is > 0. The differences
1629 * are that it does not acquire the device's pm_mutex (callers must
1630 * handle all synchronization issues themselves), and it does not
1631 * autoresume the device directly (it only queues a request). After a
1632 * successful call, the device will generally not yet be resumed.
1633 *
1634 * This routine can run in atomic context.
1635 */
1636int usb_autopm_get_interface_async(struct usb_interface *intf)
1637{
1638 struct usb_device *udev = interface_to_usbdev(intf);
1639 int status = 0;
1640
1641 if (intf->condition == USB_INTERFACE_UNBOUND)
1642 status = -ENODEV;
1643 else if (udev->autoresume_disabled)
1644 status = -EPERM;
Alan Sternccf5b802009-06-29 11:00:01 -04001645 else {
1646 atomic_inc(&intf->pm_usage_cnt);
1647 if (atomic_read(&intf->pm_usage_cnt) > 0 &&
1648 udev->state == USB_STATE_SUSPENDED)
1649 queue_work(ksuspend_usb_wq, &udev->autoresume);
1650 }
Alan Stern9ac39f22008-11-12 16:19:49 -05001651 dev_vdbg(&intf->dev, "%s: status %d cnt %d\n",
Alan Sternccf5b802009-06-29 11:00:01 -04001652 __func__, status, atomic_read(&intf->pm_usage_cnt));
Alan Stern9ac39f22008-11-12 16:19:49 -05001653 return status;
1654}
1655EXPORT_SYMBOL_GPL(usb_autopm_get_interface_async);
1656
1657/**
Alan Stern692a1862006-10-30 17:07:51 -05001658 * usb_autopm_set_interface - set a USB interface's autosuspend state
1659 * @intf: the usb_interface whose state should be set
1660 *
1661 * This routine sets the autosuspend state of @intf's device according
1662 * to @intf's usage counter, which the caller must have set previously.
1663 * If the counter is <= 0, the device is autosuspended (if it isn't
1664 * already suspended and if nothing else prevents the autosuspend). If
1665 * the counter is > 0, the device is autoresumed (if it isn't already
1666 * awake).
1667 */
1668int usb_autopm_set_interface(struct usb_interface *intf)
1669{
1670 int status;
1671
1672 status = usb_autopm_do_interface(intf, 0);
Alan Stern20dfdad2007-05-22 11:50:17 -04001673 dev_vdbg(&intf->dev, "%s: status %d cnt %d\n",
Alan Sternccf5b802009-06-29 11:00:01 -04001674 __func__, status, atomic_read(&intf->pm_usage_cnt));
Alan Stern692a1862006-10-30 17:07:51 -05001675 return status;
1676}
1677EXPORT_SYMBOL_GPL(usb_autopm_set_interface);
1678
Alan Stern718efa62007-03-09 15:41:13 -05001679#else
1680
1681void usb_autosuspend_work(struct work_struct *work)
1682{}
1683
Alan Stern9ac39f22008-11-12 16:19:49 -05001684void usb_autoresume_work(struct work_struct *work)
1685{}
1686
Alan Stern645daaa2006-08-30 15:47:02 -04001687#endif /* CONFIG_USB_SUSPEND */
1688
Alan Stern6b157c92007-03-13 16:37:30 -04001689/**
1690 * usb_external_suspend_device - external suspend of a USB device and its interfaces
1691 * @udev: the usb_device to suspend
1692 * @msg: Power Management message describing this state transition
1693 *
1694 * This routine handles external suspend requests: ones not generated
1695 * internally by a USB driver (autosuspend) but rather coming from the user
1696 * (via sysfs) or the PM core (system sleep). The suspend will be carried
1697 * out regardless of @udev's usage counter or those of its interfaces,
1698 * and regardless of whether or not remote wakeup is enabled. Of course,
1699 * interface drivers still have the option of failing the suspend (if
1700 * there are unsuspended children, for example).
1701 *
1702 * The caller must hold @udev's device lock.
1703 */
1704int usb_external_suspend_device(struct usb_device *udev, pm_message_t msg)
Alan Stern1cc8a252006-07-01 22:10:15 -04001705{
1706 int status;
1707
Alan Stern78d9a482008-06-23 16:00:40 -04001708 do_unbind_rebind(udev, DO_UNBIND);
Alan Stern6b157c92007-03-13 16:37:30 -04001709 usb_pm_lock(udev);
1710 udev->auto_pm = 0;
1711 status = usb_suspend_both(udev, msg);
1712 usb_pm_unlock(udev);
Alan Stern1cc8a252006-07-01 22:10:15 -04001713 return status;
1714}
1715
Alan Stern6b157c92007-03-13 16:37:30 -04001716/**
1717 * usb_external_resume_device - external resume of a USB device and its interfaces
1718 * @udev: the usb_device to resume
Alan Stern65bfd292008-11-25 16:39:18 -05001719 * @msg: Power Management message describing this state transition
Alan Stern6b157c92007-03-13 16:37:30 -04001720 *
1721 * This routine handles external resume requests: ones not generated
1722 * internally by a USB driver (autoresume) but rather coming from the user
1723 * (via sysfs), the PM core (system resume), or the device itself (remote
1724 * wakeup). @udev's usage counter is unaffected.
1725 *
1726 * The caller must hold @udev's device lock.
1727 */
Alan Stern65bfd292008-11-25 16:39:18 -05001728int usb_external_resume_device(struct usb_device *udev, pm_message_t msg)
Alan Stern6b157c92007-03-13 16:37:30 -04001729{
1730 int status;
1731
1732 usb_pm_lock(udev);
1733 udev->auto_pm = 0;
Alan Stern65bfd292008-11-25 16:39:18 -05001734 status = usb_resume_both(udev, msg);
Alan Sternef7f6c72007-04-05 16:03:49 -04001735 udev->last_busy = jiffies;
Alan Stern6b157c92007-03-13 16:37:30 -04001736 usb_pm_unlock(udev);
Alan Stern6c640942008-10-21 15:40:03 -04001737 if (status == 0)
1738 do_unbind_rebind(udev, DO_REBIND);
Alan Stern6b157c92007-03-13 16:37:30 -04001739
1740 /* Now that the device is awake, we can start trying to autosuspend
1741 * it again. */
1742 if (status == 0)
1743 usb_try_autosuspend_device(udev);
1744 return status;
1745}
1746
Alan Stern65bfd292008-11-25 16:39:18 -05001747int usb_suspend(struct device *dev, pm_message_t msg)
Alan Stern6b157c92007-03-13 16:37:30 -04001748{
Alan Stern271f9e62007-10-10 16:30:12 -04001749 struct usb_device *udev;
1750
Alan Stern271f9e62007-10-10 16:30:12 -04001751 udev = to_usb_device(dev);
1752
1753 /* If udev is already suspended, we can skip this suspend and
Alan Stern3bb1af52008-03-03 15:15:36 -05001754 * we should also skip the upcoming system resume. High-speed
1755 * root hubs are an exception; they need to resume whenever the
1756 * system wakes up in order for USB-PERSIST port handover to work
1757 * properly.
1758 */
Alan Stern271f9e62007-10-10 16:30:12 -04001759 if (udev->state == USB_STATE_SUSPENDED) {
Alan Stern3bb1af52008-03-03 15:15:36 -05001760 if (udev->parent || udev->speed != USB_SPEED_HIGH)
1761 udev->skip_sys_resume = 1;
Alan Stern271f9e62007-10-10 16:30:12 -04001762 return 0;
1763 }
1764
1765 udev->skip_sys_resume = 0;
Alan Stern65bfd292008-11-25 16:39:18 -05001766 return usb_external_suspend_device(udev, msg);
Alan Stern6b157c92007-03-13 16:37:30 -04001767}
1768
Alan Stern65bfd292008-11-25 16:39:18 -05001769int usb_resume(struct device *dev, pm_message_t msg)
Alan Stern1cc8a252006-07-01 22:10:15 -04001770{
Alan Stern2add5222007-03-20 14:59:39 -04001771 struct usb_device *udev;
Frans Pop23a54e52009-06-04 22:30:48 +02001772 int status;
Alan Stern2add5222007-03-20 14:59:39 -04001773
Alan Stern2add5222007-03-20 14:59:39 -04001774 udev = to_usb_device(dev);
Alan Stern0458d5b2007-05-04 11:52:20 -04001775
Alan Stern271f9e62007-10-10 16:30:12 -04001776 /* If udev->skip_sys_resume is set then udev was already suspended
Alan Stern8808f002008-04-28 11:06:55 -04001777 * when the system sleep started, so we don't want to resume it
1778 * during this system wakeup.
1779 */
1780 if (udev->skip_sys_resume)
1781 return 0;
Frans Pop23a54e52009-06-04 22:30:48 +02001782 status = usb_external_resume_device(udev, msg);
1783
1784 /* Avoid PM error messages for devices disconnected while suspended
1785 * as we'll display regular disconnect messages just a bit later.
1786 */
1787 if (status == -ENODEV)
1788 return 0;
1789 return status;
Alan Stern1cc8a252006-07-01 22:10:15 -04001790}
1791
Alan Stern36e56a32006-07-01 22:08:06 -04001792#endif /* CONFIG_PM */
1793
1794struct bus_type usb_bus_type = {
1795 .name = "usb",
1796 .match = usb_device_match,
1797 .uevent = usb_uevent,
Alan Stern36e56a32006-07-01 22:08:06 -04001798};