blob: 41c06025506ee8e19647b6d65e3f3be9e0ea41c8 [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);
157 struct usb_device *udev;
158 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
162 if (!is_usb_device(dev)) /* Sanity check */
163 return error;
164
165 udev = to_usb_device(dev);
166
Alan Stern8bb54ab2006-07-01 22:08:49 -0400167 /* TODO: Add real matching code */
168
Alan Stern645daaa2006-08-30 15:47:02 -0400169 /* The device should always appear to be in use
170 * unless the driver suports autosuspend.
171 */
172 udev->pm_usage_cnt = !(udriver->supports_autosuspend);
173
Alan Stern8bb54ab2006-07-01 22:08:49 -0400174 error = udriver->probe(udev);
175 return error;
176}
177
178/* called from driver core with dev locked */
179static int usb_unbind_device(struct device *dev)
180{
181 struct usb_device_driver *udriver = to_usb_device_driver(dev->driver);
182
183 udriver->disconnect(to_usb_device(dev));
184 return 0;
185}
186
Inaky Perez-Gonzalezdc023dc2008-11-13 10:31:35 -0800187/*
188 * Cancel any pending scheduled resets
189 *
190 * [see usb_queue_reset_device()]
191 *
192 * Called after unconfiguring / when releasing interfaces. See
193 * comments in __usb_queue_reset_device() regarding
194 * udev->reset_running.
195 */
196static void usb_cancel_queued_reset(struct usb_interface *iface)
197{
198 if (iface->reset_running == 0)
199 cancel_work_sync(&iface->reset_ws);
200}
Alan Stern8bb54ab2006-07-01 22:08:49 -0400201
202/* called from driver core with dev locked */
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800203static int usb_probe_interface(struct device *dev)
204{
Alan Stern8bb54ab2006-07-01 22:08:49 -0400205 struct usb_driver *driver = to_usb_driver(dev->driver);
206 struct usb_interface *intf;
Alan Stern645daaa2006-08-30 15:47:02 -0400207 struct usb_device *udev;
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800208 const struct usb_device_id *id;
209 int error = -ENODEV;
210
Harvey Harrison441b62c2008-03-03 16:08:34 -0800211 dev_dbg(dev, "%s\n", __func__);
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800212
Alan Stern8bb54ab2006-07-01 22:08:49 -0400213 if (is_usb_device(dev)) /* Sanity check */
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800214 return error;
Alan Stern8bb54ab2006-07-01 22:08:49 -0400215
216 intf = to_usb_interface(dev);
Alan Stern645daaa2006-08-30 15:47:02 -0400217 udev = interface_to_usbdev(intf);
Alan Stern78d9a482008-06-23 16:00:40 -0400218 intf->needs_binding = 0;
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800219
Greg Kroah-Hartman2c044a42008-01-30 15:21:33 -0800220 if (udev->authorized == 0) {
221 dev_err(&intf->dev, "Device is not authorized for usage\n");
222 return -ENODEV;
223 }
Inaky Perez-Gonzalez72230ab2007-07-31 20:34:03 -0700224
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800225 id = usb_match_id(intf, driver->id_table);
Greg Kroah-Hartman733260f2005-11-16 13:41:28 -0800226 if (!id)
227 id = usb_match_dynamic_id(intf, driver);
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800228 if (id) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800229 dev_dbg(dev, "%s - got id\n", __func__);
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800230
Alan Stern94fcda12006-11-20 11:38:46 -0500231 error = usb_autoresume_device(udev);
Alan Stern645daaa2006-08-30 15:47:02 -0400232 if (error)
233 return error;
234
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800235 /* Interface "power state" doesn't correspond to any hardware
236 * state whatsoever. We use it to record when it's bound to
237 * a driver that may start I/0: it's not frozen/quiesced.
238 */
239 mark_active(intf);
240 intf->condition = USB_INTERFACE_BINDING;
Alan Stern645daaa2006-08-30 15:47:02 -0400241
242 /* The interface should always appear to be in use
243 * unless the driver suports autosuspend.
244 */
245 intf->pm_usage_cnt = !(driver->supports_autosuspend);
246
Alan Stern55151d72008-08-12 14:33:59 -0400247 /* Carry out a deferred switch to altsetting 0 */
248 if (intf->needs_altsetting0) {
249 usb_set_interface(udev, intf->altsetting[0].
250 desc.bInterfaceNumber, 0);
251 intf->needs_altsetting0 = 0;
252 }
253
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800254 error = driver->probe(intf, id);
255 if (error) {
256 mark_quiesced(intf);
Alan Stern645daaa2006-08-30 15:47:02 -0400257 intf->needs_remote_wakeup = 0;
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800258 intf->condition = USB_INTERFACE_UNBOUND;
Inaky Perez-Gonzalezdc023dc2008-11-13 10:31:35 -0800259 usb_cancel_queued_reset(intf);
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800260 } else
261 intf->condition = USB_INTERFACE_BOUND;
Alan Stern645daaa2006-08-30 15:47:02 -0400262
Alan Stern94fcda12006-11-20 11:38:46 -0500263 usb_autosuspend_device(udev);
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800264 }
265
266 return error;
267}
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;
275 int error;
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)
287 usb_disable_interface(udev, intf);
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 Stern24c09962008-12-01 10:24:41 -0500298 if (intf->cur_altsetting->desc.bAlternateSetting == 0)
299 ; /* Already in altsetting 0 so skip Set-Interface */
300 else if (!error && intf->dev.power.status == DPM_ON)
Alan Stern55151d72008-08-12 14:33:59 -0400301 usb_set_interface(udev, intf->altsetting[0].
302 desc.bInterfaceNumber, 0);
303 else
304 intf->needs_altsetting0 = 1;
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800305 usb_set_intfdata(intf, NULL);
Alan Stern645daaa2006-08-30 15:47:02 -0400306
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800307 intf->condition = USB_INTERFACE_UNBOUND;
308 mark_quiesced(intf);
Alan Stern645daaa2006-08-30 15:47:02 -0400309 intf->needs_remote_wakeup = 0;
310
311 if (!error)
Alan Stern94fcda12006-11-20 11:38:46 -0500312 usb_autosuspend_device(udev);
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800313
314 return 0;
315}
316
Alan Stern36e56a32006-07-01 22:08:06 -0400317/**
318 * usb_driver_claim_interface - bind a driver to an interface
319 * @driver: the driver to be bound
320 * @iface: the interface to which it will be bound; must be in the
321 * usb device's active configuration
322 * @priv: driver data associated with that interface
323 *
324 * This is used by usb device drivers that need to claim more than one
325 * interface on a device when probing (audio and acm are current examples).
326 * No device driver should directly modify internal usb_interface or
327 * usb_device structure members.
328 *
329 * Few drivers should need to use this routine, since the most natural
330 * way to bind to an interface is to return the private data from
331 * the driver's probe() method.
332 *
Greg Kroah-Hartman341487a82007-04-09 11:52:31 -0400333 * Callers must own the device lock, so driver probe() entries don't need
334 * extra locking, but other call contexts may need to explicitly claim that
335 * lock.
Alan Stern36e56a32006-07-01 22:08:06 -0400336 */
337int usb_driver_claim_interface(struct usb_driver *driver,
Greg Kroah-Hartman2c044a42008-01-30 15:21:33 -0800338 struct usb_interface *iface, void *priv)
Alan Stern36e56a32006-07-01 22:08:06 -0400339{
340 struct device *dev = &iface->dev;
Alan Stern645daaa2006-08-30 15:47:02 -0400341 struct usb_device *udev = interface_to_usbdev(iface);
Greg Kroah-Hartman1b21d5e2006-08-28 11:43:25 -0700342 int retval = 0;
Alan Stern36e56a32006-07-01 22:08:06 -0400343
344 if (dev->driver)
345 return -EBUSY;
346
Alan Stern8bb54ab2006-07-01 22:08:49 -0400347 dev->driver = &driver->drvwrap.driver;
Alan Stern36e56a32006-07-01 22:08:06 -0400348 usb_set_intfdata(iface, priv);
Alan Stern78d9a482008-06-23 16:00:40 -0400349 iface->needs_binding = 0;
Alan Stern645daaa2006-08-30 15:47:02 -0400350
Alan Sterne0318eb2006-09-26 14:50:20 -0400351 usb_pm_lock(udev);
Alan Stern36e56a32006-07-01 22:08:06 -0400352 iface->condition = USB_INTERFACE_BOUND;
353 mark_active(iface);
Alan Stern645daaa2006-08-30 15:47:02 -0400354 iface->pm_usage_cnt = !(driver->supports_autosuspend);
Alan Sterne0318eb2006-09-26 14:50:20 -0400355 usb_pm_unlock(udev);
Alan Stern36e56a32006-07-01 22:08:06 -0400356
357 /* if interface was already added, bind now; else let
358 * the future device_add() bind it, bypassing probe()
359 */
360 if (device_is_registered(dev))
Greg Kroah-Hartman1b21d5e2006-08-28 11:43:25 -0700361 retval = device_bind_driver(dev);
Alan Stern36e56a32006-07-01 22:08:06 -0400362
Greg Kroah-Hartman1b21d5e2006-08-28 11:43:25 -0700363 return retval;
Alan Stern36e56a32006-07-01 22:08:06 -0400364}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -0600365EXPORT_SYMBOL_GPL(usb_driver_claim_interface);
Alan Stern36e56a32006-07-01 22:08:06 -0400366
367/**
368 * usb_driver_release_interface - unbind a driver from an interface
369 * @driver: the driver to be unbound
370 * @iface: the interface from which it will be unbound
371 *
372 * This can be used by drivers to release an interface without waiting
373 * for their disconnect() methods to be called. In typical cases this
374 * also causes the driver disconnect() method to be called.
375 *
376 * This call is synchronous, and may not be used in an interrupt context.
Greg Kroah-Hartman341487a82007-04-09 11:52:31 -0400377 * Callers must own the device lock, so driver disconnect() entries don't
378 * need extra locking, but other call contexts may need to explicitly claim
379 * that lock.
Alan Stern36e56a32006-07-01 22:08:06 -0400380 */
381void usb_driver_release_interface(struct usb_driver *driver,
382 struct usb_interface *iface)
383{
384 struct device *dev = &iface->dev;
Alan Stern645daaa2006-08-30 15:47:02 -0400385 struct usb_device *udev = interface_to_usbdev(iface);
Alan Stern36e56a32006-07-01 22:08:06 -0400386
387 /* this should never happen, don't release something that's not ours */
Alan Stern8bb54ab2006-07-01 22:08:49 -0400388 if (!dev->driver || dev->driver != &driver->drvwrap.driver)
Alan Stern36e56a32006-07-01 22:08:06 -0400389 return;
390
391 /* don't release from within disconnect() */
392 if (iface->condition != USB_INTERFACE_BOUND)
393 return;
394
395 /* don't release if the interface hasn't been added yet */
396 if (device_is_registered(dev)) {
397 iface->condition = USB_INTERFACE_UNBINDING;
398 device_release_driver(dev);
Inaky Perez-Gonzalezdc023dc2008-11-13 10:31:35 -0800399 } else {
400 iface->condition = USB_INTERFACE_UNBOUND;
401 usb_cancel_queued_reset(iface);
Alan Stern36e56a32006-07-01 22:08:06 -0400402 }
Alan Stern36e56a32006-07-01 22:08:06 -0400403 dev->driver = NULL;
404 usb_set_intfdata(iface, NULL);
Alan Stern645daaa2006-08-30 15:47:02 -0400405
Alan Sterne0318eb2006-09-26 14:50:20 -0400406 usb_pm_lock(udev);
Alan Stern36e56a32006-07-01 22:08:06 -0400407 iface->condition = USB_INTERFACE_UNBOUND;
408 mark_quiesced(iface);
Alan Stern645daaa2006-08-30 15:47:02 -0400409 iface->needs_remote_wakeup = 0;
Alan Sterne0318eb2006-09-26 14:50:20 -0400410 usb_pm_unlock(udev);
Alan Stern36e56a32006-07-01 22:08:06 -0400411}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -0600412EXPORT_SYMBOL_GPL(usb_driver_release_interface);
Alan Stern36e56a32006-07-01 22:08:06 -0400413
Greg Kroah-Hartman733260f2005-11-16 13:41:28 -0800414/* returns 0 if no match, 1 if match */
Greg Kroah-Hartmanbb417022007-01-26 14:26:21 +0100415int usb_match_device(struct usb_device *dev, const struct usb_device_id *id)
Greg Kroah-Hartman733260f2005-11-16 13:41:28 -0800416{
Greg Kroah-Hartman733260f2005-11-16 13:41:28 -0800417 if ((id->match_flags & USB_DEVICE_ID_MATCH_VENDOR) &&
418 id->idVendor != le16_to_cpu(dev->descriptor.idVendor))
419 return 0;
420
421 if ((id->match_flags & USB_DEVICE_ID_MATCH_PRODUCT) &&
422 id->idProduct != le16_to_cpu(dev->descriptor.idProduct))
423 return 0;
424
425 /* No need to test id->bcdDevice_lo != 0, since 0 is never
426 greater than any unsigned number. */
427 if ((id->match_flags & USB_DEVICE_ID_MATCH_DEV_LO) &&
428 (id->bcdDevice_lo > le16_to_cpu(dev->descriptor.bcdDevice)))
429 return 0;
430
431 if ((id->match_flags & USB_DEVICE_ID_MATCH_DEV_HI) &&
432 (id->bcdDevice_hi < le16_to_cpu(dev->descriptor.bcdDevice)))
433 return 0;
434
435 if ((id->match_flags & USB_DEVICE_ID_MATCH_DEV_CLASS) &&
436 (id->bDeviceClass != dev->descriptor.bDeviceClass))
437 return 0;
438
439 if ((id->match_flags & USB_DEVICE_ID_MATCH_DEV_SUBCLASS) &&
Greg Kroah-Hartman2c044a42008-01-30 15:21:33 -0800440 (id->bDeviceSubClass != dev->descriptor.bDeviceSubClass))
Greg Kroah-Hartman733260f2005-11-16 13:41:28 -0800441 return 0;
442
443 if ((id->match_flags & USB_DEVICE_ID_MATCH_DEV_PROTOCOL) &&
444 (id->bDeviceProtocol != dev->descriptor.bDeviceProtocol))
445 return 0;
446
Greg Kroah-Hartmanbb417022007-01-26 14:26:21 +0100447 return 1;
448}
449
450/* returns 0 if no match, 1 if match */
451int usb_match_one_id(struct usb_interface *interface,
452 const struct usb_device_id *id)
453{
454 struct usb_host_interface *intf;
455 struct usb_device *dev;
456
457 /* proc_connectinfo in devio.c may call us with id == NULL. */
458 if (id == NULL)
459 return 0;
460
461 intf = interface->cur_altsetting;
462 dev = interface_to_usbdev(interface);
463
464 if (!usb_match_device(dev, id))
465 return 0;
466
Alan Stern93c8bf42006-10-18 16:41:51 -0400467 /* The interface class, subclass, and protocol should never be
468 * checked for a match if the device class is Vendor Specific,
469 * unless the match record specifies the Vendor ID. */
470 if (dev->descriptor.bDeviceClass == USB_CLASS_VENDOR_SPEC &&
471 !(id->match_flags & USB_DEVICE_ID_MATCH_VENDOR) &&
472 (id->match_flags & (USB_DEVICE_ID_MATCH_INT_CLASS |
473 USB_DEVICE_ID_MATCH_INT_SUBCLASS |
474 USB_DEVICE_ID_MATCH_INT_PROTOCOL)))
475 return 0;
476
Greg Kroah-Hartman733260f2005-11-16 13:41:28 -0800477 if ((id->match_flags & USB_DEVICE_ID_MATCH_INT_CLASS) &&
478 (id->bInterfaceClass != intf->desc.bInterfaceClass))
479 return 0;
480
481 if ((id->match_flags & USB_DEVICE_ID_MATCH_INT_SUBCLASS) &&
482 (id->bInterfaceSubClass != intf->desc.bInterfaceSubClass))
483 return 0;
484
485 if ((id->match_flags & USB_DEVICE_ID_MATCH_INT_PROTOCOL) &&
486 (id->bInterfaceProtocol != intf->desc.bInterfaceProtocol))
487 return 0;
488
489 return 1;
490}
Greg Kroah-Hartman93bacef2006-12-17 21:50:23 +0100491EXPORT_SYMBOL_GPL(usb_match_one_id);
492
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800493/**
494 * usb_match_id - find first usb_device_id matching device or interface
495 * @interface: the interface of interest
496 * @id: array of usb_device_id structures, terminated by zero entry
497 *
498 * usb_match_id searches an array of usb_device_id's and returns
499 * the first one matching the device or interface, or null.
500 * This is used when binding (or rebinding) a driver to an interface.
501 * Most USB device drivers will use this indirectly, through the usb core,
502 * but some layered driver frameworks use it directly.
503 * These device tables are exported with MODULE_DEVICE_TABLE, through
504 * modutils, to support the driver loading functionality of USB hotplugging.
505 *
506 * What Matches:
507 *
508 * The "match_flags" element in a usb_device_id controls which
509 * members are used. If the corresponding bit is set, the
510 * value in the device_id must match its corresponding member
511 * in the device or interface descriptor, or else the device_id
512 * does not match.
513 *
514 * "driver_info" is normally used only by device drivers,
515 * but you can create a wildcard "matches anything" usb_device_id
516 * as a driver's "modules.usbmap" entry if you provide an id with
517 * only a nonzero "driver_info" field. If you do this, the USB device
518 * driver's probe() routine should use additional intelligence to
519 * decide whether to bind to the specified interface.
520 *
521 * What Makes Good usb_device_id Tables:
522 *
523 * The match algorithm is very simple, so that intelligence in
524 * driver selection must come from smart driver id records.
525 * Unless you have good reasons to use another selection policy,
526 * provide match elements only in related groups, and order match
527 * specifiers from specific to general. Use the macros provided
528 * for that purpose if you can.
529 *
530 * The most specific match specifiers use device descriptor
531 * data. These are commonly used with product-specific matches;
532 * the USB_DEVICE macro lets you provide vendor and product IDs,
533 * and you can also match against ranges of product revisions.
534 * These are widely used for devices with application or vendor
535 * specific bDeviceClass values.
536 *
537 * Matches based on device class/subclass/protocol specifications
538 * are slightly more general; use the USB_DEVICE_INFO macro, or
539 * its siblings. These are used with single-function devices
540 * where bDeviceClass doesn't specify that each interface has
541 * its own class.
542 *
543 * Matches based on interface class/subclass/protocol are the
544 * most general; they let drivers bind to any interface on a
545 * multiple-function device. Use the USB_INTERFACE_INFO
546 * macro, or its siblings, to match class-per-interface style
Alan Stern93c8bf42006-10-18 16:41:51 -0400547 * devices (as recorded in bInterfaceClass).
548 *
549 * Note that an entry created by USB_INTERFACE_INFO won't match
550 * any interface if the device class is set to Vendor-Specific.
551 * This is deliberate; according to the USB spec the meanings of
552 * the interface class/subclass/protocol for these devices are also
553 * vendor-specific, and hence matching against a standard product
554 * class wouldn't work anyway. If you really want to use an
555 * interface-based match for such a device, create a match record
556 * that also specifies the vendor ID. (Unforunately there isn't a
557 * standard macro for creating records like this.)
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800558 *
559 * Within those groups, remember that not all combinations are
560 * meaningful. For example, don't give a product version range
561 * without vendor and product IDs; or specify a protocol without
562 * its associated class and subclass.
563 */
564const struct usb_device_id *usb_match_id(struct usb_interface *interface,
565 const struct usb_device_id *id)
566{
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800567 /* proc_connectinfo in devio.c may call us with id == NULL. */
568 if (id == NULL)
569 return NULL;
570
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800571 /* It is important to check that id->driver_info is nonzero,
572 since an entry that is all zeroes except for a nonzero
573 id->driver_info is the way to create an entry that
574 indicates that the driver want to examine every
575 device and interface. */
Greg Kroah-Hartmande6f92b2008-01-28 09:50:12 -0800576 for (; id->idVendor || id->idProduct || id->bDeviceClass ||
577 id->bInterfaceClass || id->driver_info; id++) {
Greg Kroah-Hartman733260f2005-11-16 13:41:28 -0800578 if (usb_match_one_id(interface, id))
579 return id;
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800580 }
581
582 return NULL;
583}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -0600584EXPORT_SYMBOL_GPL(usb_match_id);
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800585
Adrian Bunk8bb22d22006-11-21 22:02:54 +0100586static int usb_device_match(struct device *dev, struct device_driver *drv)
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800587{
Alan Stern8bb54ab2006-07-01 22:08:49 -0400588 /* devices and interfaces are handled separately */
589 if (is_usb_device(dev)) {
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800590
Alan Stern8bb54ab2006-07-01 22:08:49 -0400591 /* interface drivers never match devices */
592 if (!is_usb_device_driver(drv))
593 return 0;
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800594
Alan Stern8bb54ab2006-07-01 22:08:49 -0400595 /* TODO: Add real matching code */
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800596 return 1;
597
Alan Stern8bb54ab2006-07-01 22:08:49 -0400598 } else {
599 struct usb_interface *intf;
600 struct usb_driver *usb_drv;
601 const struct usb_device_id *id;
602
603 /* device drivers never match interfaces */
604 if (is_usb_device_driver(drv))
605 return 0;
606
607 intf = to_usb_interface(dev);
608 usb_drv = to_usb_driver(drv);
609
610 id = usb_match_id(intf, usb_drv->id_table);
611 if (id)
612 return 1;
613
614 id = usb_match_dynamic_id(intf, usb_drv);
615 if (id)
616 return 1;
617 }
618
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800619 return 0;
620}
621
Alan Stern36e56a32006-07-01 22:08:06 -0400622#ifdef CONFIG_HOTPLUG
Kay Sievers7eff2e72007-08-14 15:15:12 +0200623static int usb_uevent(struct device *dev, struct kobj_uevent_env *env)
Alan Stern36e56a32006-07-01 22:08:06 -0400624{
Alan Stern36e56a32006-07-01 22:08:06 -0400625 struct usb_device *usb_dev;
Alan Stern36e56a32006-07-01 22:08:06 -0400626
Alan Stern36e56a32006-07-01 22:08:06 -0400627 /* driver is often null here; dev_dbg() would oops */
Kay Sievers7071a3c2008-05-02 06:02:41 +0200628 pr_debug("usb %s: uevent\n", dev_name(dev));
Alan Stern36e56a32006-07-01 22:08:06 -0400629
Kay Sievers9f8b17e2007-03-13 15:59:31 +0100630 if (is_usb_device(dev))
Alan Stern782da722006-07-01 22:09:35 -0400631 usb_dev = to_usb_device(dev);
Kay Sievers9f8b17e2007-03-13 15:59:31 +0100632 else {
633 struct usb_interface *intf = to_usb_interface(dev);
Alan Stern8bb54ab2006-07-01 22:08:49 -0400634 usb_dev = interface_to_usbdev(intf);
Alan Stern8bb54ab2006-07-01 22:08:49 -0400635 }
Alan Stern36e56a32006-07-01 22:08:06 -0400636
637 if (usb_dev->devnum < 0) {
Kay Sievers7071a3c2008-05-02 06:02:41 +0200638 pr_debug("usb %s: already deleted?\n", dev_name(dev));
Alan Stern36e56a32006-07-01 22:08:06 -0400639 return -ENODEV;
640 }
641 if (!usb_dev->bus) {
Kay Sievers7071a3c2008-05-02 06:02:41 +0200642 pr_debug("usb %s: bus removed?\n", dev_name(dev));
Alan Stern36e56a32006-07-01 22:08:06 -0400643 return -ENODEV;
644 }
645
646#ifdef CONFIG_USB_DEVICEFS
647 /* If this is available, userspace programs can directly read
648 * all the device descriptors we don't tell them about. Or
Kay Sievers9f8b17e2007-03-13 15:59:31 +0100649 * act as usermode drivers.
Alan Stern36e56a32006-07-01 22:08:06 -0400650 */
Kay Sievers7eff2e72007-08-14 15:15:12 +0200651 if (add_uevent_var(env, "DEVICE=/proc/bus/usb/%03d/%03d",
Alan Stern36e56a32006-07-01 22:08:06 -0400652 usb_dev->bus->busnum, usb_dev->devnum))
653 return -ENOMEM;
654#endif
655
656 /* per-device configurations are common */
Kay Sievers7eff2e72007-08-14 15:15:12 +0200657 if (add_uevent_var(env, "PRODUCT=%x/%x/%x",
Alan Stern36e56a32006-07-01 22:08:06 -0400658 le16_to_cpu(usb_dev->descriptor.idVendor),
659 le16_to_cpu(usb_dev->descriptor.idProduct),
660 le16_to_cpu(usb_dev->descriptor.bcdDevice)))
661 return -ENOMEM;
662
663 /* class-based driver binding models */
Kay Sievers7eff2e72007-08-14 15:15:12 +0200664 if (add_uevent_var(env, "TYPE=%d/%d/%d",
Alan Stern36e56a32006-07-01 22:08:06 -0400665 usb_dev->descriptor.bDeviceClass,
666 usb_dev->descriptor.bDeviceSubClass,
667 usb_dev->descriptor.bDeviceProtocol))
668 return -ENOMEM;
669
Alan Stern36e56a32006-07-01 22:08:06 -0400670 return 0;
671}
672
673#else
674
Kay Sievers7eff2e72007-08-14 15:15:12 +0200675static int usb_uevent(struct device *dev, struct kobj_uevent_env *env)
Alan Stern36e56a32006-07-01 22:08:06 -0400676{
677 return -ENODEV;
678}
Alan Stern36e56a32006-07-01 22:08:06 -0400679#endif /* CONFIG_HOTPLUG */
680
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800681/**
Alan Stern8bb54ab2006-07-01 22:08:49 -0400682 * usb_register_device_driver - register a USB device (not interface) driver
683 * @new_udriver: USB operations for the device driver
Greg Kroah-Hartman2143acc2005-11-21 14:53:03 -0800684 * @owner: module owner of this driver.
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800685 *
Alan Stern8bb54ab2006-07-01 22:08:49 -0400686 * Registers a USB device driver with the USB core. The list of
687 * unattached devices will be rescanned whenever a new driver is
688 * added, allowing the new driver to attach to any recognized devices.
689 * Returns a negative error code on failure and 0 on success.
690 */
691int usb_register_device_driver(struct usb_device_driver *new_udriver,
692 struct module *owner)
693{
694 int retval = 0;
695
696 if (usb_disabled())
697 return -ENODEV;
698
699 new_udriver->drvwrap.for_devices = 1;
700 new_udriver->drvwrap.driver.name = (char *) new_udriver->name;
701 new_udriver->drvwrap.driver.bus = &usb_bus_type;
702 new_udriver->drvwrap.driver.probe = usb_probe_device;
703 new_udriver->drvwrap.driver.remove = usb_unbind_device;
704 new_udriver->drvwrap.driver.owner = owner;
705
706 retval = driver_register(&new_udriver->drvwrap.driver);
707
708 if (!retval) {
709 pr_info("%s: registered new device driver %s\n",
710 usbcore_name, new_udriver->name);
711 usbfs_update_special();
712 } else {
713 printk(KERN_ERR "%s: error %d registering device "
714 " driver %s\n",
715 usbcore_name, retval, new_udriver->name);
716 }
717
718 return retval;
719}
720EXPORT_SYMBOL_GPL(usb_register_device_driver);
721
722/**
723 * usb_deregister_device_driver - unregister a USB device (not interface) driver
724 * @udriver: USB operations of the device driver to unregister
725 * Context: must be able to sleep
726 *
727 * Unlinks the specified driver from the internal USB driver list.
728 */
729void usb_deregister_device_driver(struct usb_device_driver *udriver)
730{
731 pr_info("%s: deregistering device driver %s\n",
732 usbcore_name, udriver->name);
733
734 driver_unregister(&udriver->drvwrap.driver);
735 usbfs_update_special();
736}
737EXPORT_SYMBOL_GPL(usb_deregister_device_driver);
738
739/**
740 * usb_register_driver - register a USB interface driver
741 * @new_driver: USB operations for the interface driver
742 * @owner: module owner of this driver.
Randy Dunlap892705a2007-02-10 14:41:41 -0800743 * @mod_name: module name string
Alan Stern8bb54ab2006-07-01 22:08:49 -0400744 *
745 * Registers a USB interface driver with the USB core. The list of
746 * unattached interfaces will be rescanned whenever a new driver is
747 * added, allowing the new driver to attach to any recognized interfaces.
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800748 * Returns a negative error code on failure and 0 on success.
749 *
750 * NOTE: if you want your driver to use the USB major number, you must call
751 * usb_register_dev() to enable that functionality. This function no longer
752 * takes care of that.
753 */
Greg Kroah-Hartman80f745f2007-01-15 11:50:02 -0800754int usb_register_driver(struct usb_driver *new_driver, struct module *owner,
755 const char *mod_name)
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800756{
757 int retval = 0;
758
759 if (usb_disabled())
760 return -ENODEV;
761
Alan Stern8bb54ab2006-07-01 22:08:49 -0400762 new_driver->drvwrap.for_devices = 0;
763 new_driver->drvwrap.driver.name = (char *) new_driver->name;
764 new_driver->drvwrap.driver.bus = &usb_bus_type;
765 new_driver->drvwrap.driver.probe = usb_probe_interface;
766 new_driver->drvwrap.driver.remove = usb_unbind_interface;
767 new_driver->drvwrap.driver.owner = owner;
Greg Kroah-Hartman80f745f2007-01-15 11:50:02 -0800768 new_driver->drvwrap.driver.mod_name = mod_name;
Greg Kroah-Hartman733260f2005-11-16 13:41:28 -0800769 spin_lock_init(&new_driver->dynids.lock);
770 INIT_LIST_HEAD(&new_driver->dynids.list);
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800771
Alan Stern8bb54ab2006-07-01 22:08:49 -0400772 retval = driver_register(&new_driver->drvwrap.driver);
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800773
774 if (!retval) {
Alan Stern8bb54ab2006-07-01 22:08:49 -0400775 pr_info("%s: registered new interface driver %s\n",
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800776 usbcore_name, new_driver->name);
777 usbfs_update_special();
Greg Kroah-Hartman733260f2005-11-16 13:41:28 -0800778 usb_create_newid_file(new_driver);
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800779 } else {
Alan Stern8bb54ab2006-07-01 22:08:49 -0400780 printk(KERN_ERR "%s: error %d registering interface "
781 " driver %s\n",
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800782 usbcore_name, retval, new_driver->name);
783 }
784
785 return retval;
786}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -0600787EXPORT_SYMBOL_GPL(usb_register_driver);
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800788
789/**
Alan Stern8bb54ab2006-07-01 22:08:49 -0400790 * usb_deregister - unregister a USB interface driver
791 * @driver: USB operations of the interface driver to unregister
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800792 * Context: must be able to sleep
793 *
794 * Unlinks the specified driver from the internal USB driver list.
795 *
796 * NOTE: If you called usb_register_dev(), you still need to call
797 * usb_deregister_dev() to clean up your driver's allocated minor numbers,
798 * this * call will no longer do it for you.
799 */
800void usb_deregister(struct usb_driver *driver)
801{
Alan Stern8bb54ab2006-07-01 22:08:49 -0400802 pr_info("%s: deregistering interface driver %s\n",
803 usbcore_name, driver->name);
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800804
Greg Kroah-Hartmanba9dc652005-11-16 13:41:28 -0800805 usb_remove_newid_file(driver);
Greg Kroah-Hartman733260f2005-11-16 13:41:28 -0800806 usb_free_dynids(driver);
Alan Stern8bb54ab2006-07-01 22:08:49 -0400807 driver_unregister(&driver->drvwrap.driver);
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800808
809 usbfs_update_special();
810}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -0600811EXPORT_SYMBOL_GPL(usb_deregister);
Alan Stern36e56a32006-07-01 22:08:06 -0400812
Alan Stern78d9a482008-06-23 16:00:40 -0400813/* Forced unbinding of a USB interface driver, either because
814 * it doesn't support pre_reset/post_reset/reset_resume or
815 * because it doesn't support suspend/resume.
816 *
817 * The caller must hold @intf's device's lock, but not its pm_mutex
818 * and not @intf->dev.sem.
819 */
820void usb_forced_unbind_intf(struct usb_interface *intf)
821{
822 struct usb_driver *driver = to_usb_driver(intf->dev.driver);
823
824 dev_dbg(&intf->dev, "forced unbind\n");
825 usb_driver_release_interface(driver, intf);
826
827 /* Mark the interface for later rebinding */
828 intf->needs_binding = 1;
829}
830
831/* Delayed forced unbinding of a USB interface driver and scan
832 * for rebinding.
833 *
834 * The caller must hold @intf's device's lock, but not its pm_mutex
835 * and not @intf->dev.sem.
836 *
Alan Stern5096aed2008-08-12 14:34:14 -0400837 * Note: Rebinds will be skipped if a system sleep transition is in
838 * progress and the PM "complete" callback hasn't occurred yet.
Alan Stern78d9a482008-06-23 16:00:40 -0400839 */
840void usb_rebind_intf(struct usb_interface *intf)
841{
842 int rc;
843
844 /* Delayed unbind of an existing driver */
845 if (intf->dev.driver) {
846 struct usb_driver *driver =
847 to_usb_driver(intf->dev.driver);
848
849 dev_dbg(&intf->dev, "forced unbind\n");
850 usb_driver_release_interface(driver, intf);
851 }
852
853 /* Try to rebind the interface */
Alan Stern5096aed2008-08-12 14:34:14 -0400854 if (intf->dev.power.status == DPM_ON) {
855 intf->needs_binding = 0;
856 rc = device_attach(&intf->dev);
857 if (rc < 0)
858 dev_warn(&intf->dev, "rebind failed: %d\n", rc);
859 }
Alan Stern78d9a482008-06-23 16:00:40 -0400860}
861
Alan Stern9ff78432008-08-07 13:04:51 -0400862#ifdef CONFIG_PM
863
Alan Stern78d9a482008-06-23 16:00:40 -0400864#define DO_UNBIND 0
865#define DO_REBIND 1
866
867/* Unbind drivers for @udev's interfaces that don't support suspend/resume,
868 * or rebind interfaces that have been unbound, according to @action.
869 *
870 * The caller must hold @udev's device lock.
Alan Stern78d9a482008-06-23 16:00:40 -0400871 */
872static void do_unbind_rebind(struct usb_device *udev, int action)
873{
874 struct usb_host_config *config;
875 int i;
876 struct usb_interface *intf;
877 struct usb_driver *drv;
878
879 config = udev->actconfig;
880 if (config) {
881 for (i = 0; i < config->desc.bNumInterfaces; ++i) {
882 intf = config->interface[i];
883 switch (action) {
884 case DO_UNBIND:
885 if (intf->dev.driver) {
886 drv = to_usb_driver(intf->dev.driver);
887 if (!drv->suspend || !drv->resume)
888 usb_forced_unbind_intf(intf);
889 }
890 break;
891 case DO_REBIND:
Alan Stern5096aed2008-08-12 14:34:14 -0400892 if (intf->needs_binding)
Alan Stern78d9a482008-06-23 16:00:40 -0400893 usb_rebind_intf(intf);
Alan Stern78d9a482008-06-23 16:00:40 -0400894 break;
895 }
896 }
897 }
898}
899
Alan Sterne0318eb2006-09-26 14:50:20 -0400900/* Caller has locked udev's pm_mutex */
Stephen Hemmingerd5ec1682006-11-14 10:06:17 -0800901static int usb_suspend_device(struct usb_device *udev, pm_message_t msg)
Alan Stern36e56a32006-07-01 22:08:06 -0400902{
Alan Stern782da722006-07-01 22:09:35 -0400903 struct usb_device_driver *udriver;
Alan Stern2bf40862006-07-01 22:12:19 -0400904 int status = 0;
Alan Stern36e56a32006-07-01 22:08:06 -0400905
Alan Stern114b3682006-07-01 22:13:04 -0400906 if (udev->state == USB_STATE_NOTATTACHED ||
907 udev->state == USB_STATE_SUSPENDED)
908 goto done;
909
Alan Sternb6f64362007-05-04 11:51:54 -0400910 /* For devices that don't have a driver, we do a generic suspend. */
911 if (udev->dev.driver)
912 udriver = to_usb_device_driver(udev->dev.driver);
913 else {
Alan Stern645daaa2006-08-30 15:47:02 -0400914 udev->do_remote_wakeup = 0;
Alan Sternb6f64362007-05-04 11:51:54 -0400915 udriver = &usb_generic_driver;
Alan Stern1c5df7e2006-07-01 22:13:50 -0400916 }
Alan Stern2bf40862006-07-01 22:12:19 -0400917 status = udriver->suspend(udev, msg);
918
Alan Stern20dfdad2007-05-22 11:50:17 -0400919 done:
Harvey Harrison441b62c2008-03-03 16:08:34 -0800920 dev_vdbg(&udev->dev, "%s: status %d\n", __func__, status);
Alan Stern2bf40862006-07-01 22:12:19 -0400921 return status;
Alan Stern1cc8a252006-07-01 22:10:15 -0400922}
Alan Stern36e56a32006-07-01 22:08:06 -0400923
Alan Sterne0318eb2006-09-26 14:50:20 -0400924/* Caller has locked udev's pm_mutex */
Alan Stern65bfd292008-11-25 16:39:18 -0500925static int usb_resume_device(struct usb_device *udev, pm_message_t msg)
Alan Stern1cc8a252006-07-01 22:10:15 -0400926{
927 struct usb_device_driver *udriver;
Alan Stern2bf40862006-07-01 22:12:19 -0400928 int status = 0;
Alan Stern1cc8a252006-07-01 22:10:15 -0400929
Alan Stern0458d5b2007-05-04 11:52:20 -0400930 if (udev->state == USB_STATE_NOTATTACHED)
931 goto done;
Alan Stern1cc8a252006-07-01 22:10:15 -0400932
Alan Stern1c5df7e2006-07-01 22:13:50 -0400933 /* Can't resume it if it doesn't have a driver. */
934 if (udev->dev.driver == NULL) {
935 status = -ENOTCONN;
Alan Stern2bf40862006-07-01 22:12:19 -0400936 goto done;
Alan Stern1c5df7e2006-07-01 22:13:50 -0400937 }
938
Alan Stern6bc6cff2007-05-04 11:53:03 -0400939 if (udev->quirks & USB_QUIRK_RESET_RESUME)
940 udev->reset_resume = 1;
941
Alan Stern1cc8a252006-07-01 22:10:15 -0400942 udriver = to_usb_device_driver(udev->dev.driver);
Alan Stern65bfd292008-11-25 16:39:18 -0500943 status = udriver->resume(udev, msg);
Alan Stern2bf40862006-07-01 22:12:19 -0400944
Alan Stern20dfdad2007-05-22 11:50:17 -0400945 done:
Harvey Harrison441b62c2008-03-03 16:08:34 -0800946 dev_vdbg(&udev->dev, "%s: status %d\n", __func__, status);
Alan Stern70a1c9e2008-03-06 17:00:58 -0500947 if (status == 0)
Alan Stern2add5222007-03-20 14:59:39 -0400948 udev->autoresume_disabled = 0;
Alan Stern2bf40862006-07-01 22:12:19 -0400949 return status;
Alan Stern1cc8a252006-07-01 22:10:15 -0400950}
951
Alan Sterne0318eb2006-09-26 14:50:20 -0400952/* Caller has locked intf's usb_device's pm mutex */
Alan Stern65605ae2008-08-12 14:33:27 -0400953static int usb_suspend_interface(struct usb_device *udev,
954 struct usb_interface *intf, pm_message_t msg)
Alan Stern1cc8a252006-07-01 22:10:15 -0400955{
956 struct usb_driver *driver;
Alan Stern2bf40862006-07-01 22:12:19 -0400957 int status = 0;
Alan Stern1cc8a252006-07-01 22:10:15 -0400958
Alan Stern114b3682006-07-01 22:13:04 -0400959 /* with no hardware, USB interfaces only use FREEZE and ON states */
Alan Stern65605ae2008-08-12 14:33:27 -0400960 if (udev->state == USB_STATE_NOTATTACHED || !is_active(intf))
Alan Stern114b3682006-07-01 22:13:04 -0400961 goto done;
962
Inaky Perez-Gonzalezdc023dc2008-11-13 10:31:35 -0800963 /* This can happen; see usb_driver_release_interface() */
964 if (intf->condition == USB_INTERFACE_UNBOUND)
Alan Stern2bf40862006-07-01 22:12:19 -0400965 goto done;
Alan Stern1cc8a252006-07-01 22:10:15 -0400966 driver = to_usb_driver(intf->dev.driver);
Alan Stern36e56a32006-07-01 22:08:06 -0400967
Alan Stern78d9a482008-06-23 16:00:40 -0400968 if (driver->suspend) {
Alan Stern1cc8a252006-07-01 22:10:15 -0400969 status = driver->suspend(intf, msg);
Alan Stern645daaa2006-08-30 15:47:02 -0400970 if (status == 0)
971 mark_quiesced(intf);
Alan Stern65bfd292008-11-25 16:39:18 -0500972 else if (!(msg.event & PM_EVENT_AUTO))
Alan Stern1cc8a252006-07-01 22:10:15 -0400973 dev_err(&intf->dev, "%s error %d\n",
974 "suspend", status);
Alan Stern36e56a32006-07-01 22:08:06 -0400975 } else {
Alan Stern78d9a482008-06-23 16:00:40 -0400976 /* Later we will unbind the driver and reprobe */
977 intf->needs_binding = 1;
978 dev_warn(&intf->dev, "no %s for driver %s?\n",
979 "suspend", driver->name);
Alan Stern36e56a32006-07-01 22:08:06 -0400980 mark_quiesced(intf);
Alan Stern36e56a32006-07-01 22:08:06 -0400981 }
Alan Stern2bf40862006-07-01 22:12:19 -0400982
Alan Stern20dfdad2007-05-22 11:50:17 -0400983 done:
Harvey Harrison441b62c2008-03-03 16:08:34 -0800984 dev_vdbg(&intf->dev, "%s: status %d\n", __func__, status);
Alan Stern36e56a32006-07-01 22:08:06 -0400985 return status;
986}
987
Alan Stern645daaa2006-08-30 15:47:02 -0400988/* Caller has locked intf's usb_device's pm_mutex */
Alan Stern65605ae2008-08-12 14:33:27 -0400989static int usb_resume_interface(struct usb_device *udev,
Alan Stern65bfd292008-11-25 16:39:18 -0500990 struct usb_interface *intf, pm_message_t msg, int reset_resume)
Alan Stern36e56a32006-07-01 22:08:06 -0400991{
Alan Stern1cc8a252006-07-01 22:10:15 -0400992 struct usb_driver *driver;
Alan Stern2bf40862006-07-01 22:12:19 -0400993 int status = 0;
Alan Stern36e56a32006-07-01 22:08:06 -0400994
Alan Stern65605ae2008-08-12 14:33:27 -0400995 if (udev->state == USB_STATE_NOTATTACHED || is_active(intf))
Alan Stern2bf40862006-07-01 22:12:19 -0400996 goto done;
Alan Stern36e56a32006-07-01 22:08:06 -0400997
Alan Stern645daaa2006-08-30 15:47:02 -0400998 /* Don't let autoresume interfere with unbinding */
999 if (intf->condition == USB_INTERFACE_UNBINDING)
1000 goto done;
1001
Alan Stern1c5df7e2006-07-01 22:13:50 -04001002 /* Can't resume it if it doesn't have a driver. */
Alan Stern55151d72008-08-12 14:33:59 -04001003 if (intf->condition == USB_INTERFACE_UNBOUND) {
1004
1005 /* Carry out a deferred switch to altsetting 0 */
1006 if (intf->needs_altsetting0 &&
1007 intf->dev.power.status == DPM_ON) {
1008 usb_set_interface(udev, intf->altsetting[0].
1009 desc.bInterfaceNumber, 0);
1010 intf->needs_altsetting0 = 0;
1011 }
Alan Stern2bf40862006-07-01 22:12:19 -04001012 goto done;
Alan Stern55151d72008-08-12 14:33:59 -04001013 }
Alan Stern78d9a482008-06-23 16:00:40 -04001014
1015 /* Don't resume if the interface is marked for rebinding */
1016 if (intf->needs_binding)
1017 goto done;
Alan Stern1cc8a252006-07-01 22:10:15 -04001018 driver = to_usb_driver(intf->dev.driver);
Alan Stern36e56a32006-07-01 22:08:06 -04001019
Alan Sternf07600c2007-05-30 15:38:16 -04001020 if (reset_resume) {
1021 if (driver->reset_resume) {
1022 status = driver->reset_resume(intf);
1023 if (status)
1024 dev_err(&intf->dev, "%s error %d\n",
1025 "reset_resume", status);
1026 } else {
Alan Stern78d9a482008-06-23 16:00:40 -04001027 intf->needs_binding = 1;
Alan Sternf07600c2007-05-30 15:38:16 -04001028 dev_warn(&intf->dev, "no %s for driver %s?\n",
1029 "reset_resume", driver->name);
1030 }
1031 } else {
1032 if (driver->resume) {
1033 status = driver->resume(intf);
1034 if (status)
1035 dev_err(&intf->dev, "%s error %d\n",
1036 "resume", status);
1037 } else {
Alan Stern78d9a482008-06-23 16:00:40 -04001038 intf->needs_binding = 1;
Alan Sternf07600c2007-05-30 15:38:16 -04001039 dev_warn(&intf->dev, "no %s for driver %s?\n",
1040 "resume", driver->name);
1041 }
1042 }
Alan Stern2bf40862006-07-01 22:12:19 -04001043
1044done:
Harvey Harrison441b62c2008-03-03 16:08:34 -08001045 dev_vdbg(&intf->dev, "%s: status %d\n", __func__, status);
Alan Stern78d9a482008-06-23 16:00:40 -04001046 if (status == 0 && intf->condition == USB_INTERFACE_BOUND)
Alan Stern0458d5b2007-05-04 11:52:20 -04001047 mark_active(intf);
Alan Sternf07600c2007-05-30 15:38:16 -04001048
Alan Stern78d9a482008-06-23 16:00:40 -04001049 /* Later we will unbind the driver and/or reprobe, if necessary */
Alan Stern2bf40862006-07-01 22:12:19 -04001050 return status;
Alan Stern36e56a32006-07-01 22:08:06 -04001051}
1052
Alan Stern94fcda12006-11-20 11:38:46 -05001053#ifdef CONFIG_USB_SUSPEND
1054
Alan Sternaf4f7602006-10-30 17:06:45 -05001055/* Internal routine to check whether we may autosuspend a device. */
Alan Sternd1aa3e62007-10-11 16:47:36 -04001056static int autosuspend_check(struct usb_device *udev, int reschedule)
Alan Sternaf4f7602006-10-30 17:06:45 -05001057{
1058 int i;
1059 struct usb_interface *intf;
Alan Sternd1aa3e62007-10-11 16:47:36 -04001060 unsigned long suspend_time, j;
Alan Sternaf4f7602006-10-30 17:06:45 -05001061
Alan Sternb5e795f2007-02-20 15:00:53 -05001062 /* For autosuspend, fail fast if anything is in use or autosuspend
1063 * is disabled. Also fail if any interfaces require remote wakeup
1064 * but it isn't available.
1065 */
Alan Sternaf4f7602006-10-30 17:06:45 -05001066 if (udev->pm_usage_cnt > 0)
1067 return -EBUSY;
Alan Stern2add5222007-03-20 14:59:39 -04001068 if (udev->autosuspend_delay < 0 || udev->autosuspend_disabled)
Alan Sternb5e795f2007-02-20 15:00:53 -05001069 return -EPERM;
1070
Alan Stern19410442007-03-27 13:33:59 -04001071 suspend_time = udev->last_busy + udev->autosuspend_delay;
Alan Sternaf4f7602006-10-30 17:06:45 -05001072 if (udev->actconfig) {
1073 for (i = 0; i < udev->actconfig->desc.bNumInterfaces; i++) {
1074 intf = udev->actconfig->interface[i];
1075 if (!is_active(intf))
1076 continue;
1077 if (intf->pm_usage_cnt > 0)
1078 return -EBUSY;
1079 if (intf->needs_remote_wakeup &&
1080 !udev->do_remote_wakeup) {
1081 dev_dbg(&udev->dev, "remote wakeup needed "
1082 "for autosuspend\n");
1083 return -EOPNOTSUPP;
1084 }
Alan Sternf07600c2007-05-30 15:38:16 -04001085
1086 /* Don't allow autosuspend if the device will need
1087 * a reset-resume and any of its interface drivers
1088 * doesn't include support.
1089 */
1090 if (udev->quirks & USB_QUIRK_RESET_RESUME) {
1091 struct usb_driver *driver;
1092
1093 driver = to_usb_driver(intf->dev.driver);
Oliver Neukum399d31d2008-09-15 17:29:28 +02001094 if (!driver->reset_resume ||
1095 intf->needs_remote_wakeup)
Alan Sternf07600c2007-05-30 15:38:16 -04001096 return -EOPNOTSUPP;
1097 }
Alan Sternaf4f7602006-10-30 17:06:45 -05001098 }
1099 }
Alan Stern19410442007-03-27 13:33:59 -04001100
1101 /* If everything is okay but the device hasn't been idle for long
Alan Sternd1aa3e62007-10-11 16:47:36 -04001102 * enough, queue a delayed autosuspend request. If the device
1103 * _has_ been idle for long enough and the reschedule flag is set,
1104 * likewise queue a delayed (1 second) autosuspend request.
Alan Stern19410442007-03-27 13:33:59 -04001105 */
Alan Sternd1aa3e62007-10-11 16:47:36 -04001106 j = jiffies;
1107 if (time_before(j, suspend_time))
1108 reschedule = 1;
1109 else
1110 suspend_time = j + HZ;
1111 if (reschedule) {
Alan Stern8c9862e2007-04-11 12:06:16 -04001112 if (!timer_pending(&udev->autosuspend.timer)) {
Alan Stern19410442007-03-27 13:33:59 -04001113 queue_delayed_work(ksuspend_usb_wq, &udev->autosuspend,
Alan Stern4ec06d62008-11-25 16:40:02 -05001114 round_jiffies_up_relative(suspend_time - j));
Alan Sternd1aa3e62007-10-11 16:47:36 -04001115 }
Alan Stern19410442007-03-27 13:33:59 -04001116 return -EAGAIN;
1117 }
Alan Sternaf4f7602006-10-30 17:06:45 -05001118 return 0;
1119}
1120
Alan Stern94fcda12006-11-20 11:38:46 -05001121#else
1122
Alan Sternd1aa3e62007-10-11 16:47:36 -04001123static inline int autosuspend_check(struct usb_device *udev, int reschedule)
Alan Sternef7f6c72007-04-05 16:03:49 -04001124{
1125 return 0;
1126}
Alan Stern94fcda12006-11-20 11:38:46 -05001127
Alan Sternb5e795f2007-02-20 15:00:53 -05001128#endif /* CONFIG_USB_SUSPEND */
Alan Stern94fcda12006-11-20 11:38:46 -05001129
Alan Stern645daaa2006-08-30 15:47:02 -04001130/**
1131 * usb_suspend_both - suspend a USB device and its interfaces
1132 * @udev: the usb_device to suspend
1133 * @msg: Power Management message describing this state transition
1134 *
1135 * This is the central routine for suspending USB devices. It calls the
1136 * suspend methods for all the interface drivers in @udev and then calls
1137 * the suspend method for @udev itself. If an error occurs at any stage,
1138 * all the interfaces which were suspended are resumed so that they remain
1139 * in the same state as the device.
1140 *
Alan Stern65bfd292008-11-25 16:39:18 -05001141 * If an autosuspend is in progress the routine checks first to make sure
1142 * that neither the device itself or any of its active interfaces is in use
1143 * (pm_usage_cnt is greater than 0). If they are, the autosuspend fails.
Alan Stern645daaa2006-08-30 15:47:02 -04001144 *
1145 * If the suspend succeeds, the routine recursively queues an autosuspend
1146 * request for @udev's parent device, thereby propagating the change up
1147 * the device tree. If all of the parent's children are now suspended,
1148 * the parent will autosuspend in turn.
1149 *
1150 * The suspend method calls are subject to mutual exclusion under control
1151 * of @udev's pm_mutex. Many of these calls are also under the protection
1152 * of @udev's device lock (including all requests originating outside the
1153 * USB subsystem), but autosuspend requests generated by a child device or
1154 * interface driver may not be. Usbcore will insure that the method calls
1155 * do not arrive during bind, unbind, or reset operations. However, drivers
1156 * must be prepared to handle suspend calls arriving at unpredictable times.
1157 * The only way to block such calls is to do an autoresume (preventing
1158 * autosuspends) while holding @udev's device lock (preventing outside
1159 * suspends).
1160 *
1161 * The caller must hold @udev->pm_mutex.
1162 *
1163 * This routine can run only in process context.
1164 */
Alan Stern718efa62007-03-09 15:41:13 -05001165static int usb_suspend_both(struct usb_device *udev, pm_message_t msg)
Alan Sterna8e7c562006-07-01 22:11:02 -04001166{
1167 int status = 0;
1168 int i = 0;
1169 struct usb_interface *intf;
Alan Stern645daaa2006-08-30 15:47:02 -04001170 struct usb_device *parent = udev->parent;
Alan Sterna8e7c562006-07-01 22:11:02 -04001171
Alan Stern19410442007-03-27 13:33:59 -04001172 if (udev->state == USB_STATE_NOTATTACHED ||
1173 udev->state == USB_STATE_SUSPENDED)
1174 goto done;
Alan Stern645daaa2006-08-30 15:47:02 -04001175
1176 udev->do_remote_wakeup = device_may_wakeup(&udev->dev);
1177
Alan Stern65bfd292008-11-25 16:39:18 -05001178 if (msg.event & PM_EVENT_AUTO) {
Alan Sternd1aa3e62007-10-11 16:47:36 -04001179 status = autosuspend_check(udev, 0);
Alan Sternaf4f7602006-10-30 17:06:45 -05001180 if (status < 0)
Alan Stern19410442007-03-27 13:33:59 -04001181 goto done;
Alan Stern645daaa2006-08-30 15:47:02 -04001182 }
1183
1184 /* Suspend all the interfaces and then udev itself */
Alan Sterna8e7c562006-07-01 22:11:02 -04001185 if (udev->actconfig) {
1186 for (; i < udev->actconfig->desc.bNumInterfaces; i++) {
1187 intf = udev->actconfig->interface[i];
Alan Stern65605ae2008-08-12 14:33:27 -04001188 status = usb_suspend_interface(udev, intf, msg);
Alan Sterna8e7c562006-07-01 22:11:02 -04001189 if (status != 0)
1190 break;
1191 }
1192 }
Alan Stern5ad4f712007-09-10 11:31:43 -04001193 if (status == 0)
Stephen Hemmingerd5ec1682006-11-14 10:06:17 -08001194 status = usb_suspend_device(udev, msg);
Alan Sterna8e7c562006-07-01 22:11:02 -04001195
1196 /* If the suspend failed, resume interfaces that did get suspended */
1197 if (status != 0) {
Alan Stern65bfd292008-11-25 16:39:18 -05001198 pm_message_t msg2;
1199
1200 msg2.event = msg.event ^ (PM_EVENT_SUSPEND | PM_EVENT_RESUME);
Alan Sterna8e7c562006-07-01 22:11:02 -04001201 while (--i >= 0) {
1202 intf = udev->actconfig->interface[i];
Alan Stern65bfd292008-11-25 16:39:18 -05001203 usb_resume_interface(udev, intf, msg2, 0);
Alan Sterna8e7c562006-07-01 22:11:02 -04001204 }
Alan Stern645daaa2006-08-30 15:47:02 -04001205
Alan Sternef7f6c72007-04-05 16:03:49 -04001206 /* Try another autosuspend when the interfaces aren't busy */
Alan Stern65bfd292008-11-25 16:39:18 -05001207 if (msg.event & PM_EVENT_AUTO)
Alan Sternd1aa3e62007-10-11 16:47:36 -04001208 autosuspend_check(udev, status == -EBUSY);
Alan Sternef7f6c72007-04-05 16:03:49 -04001209
Alan Stern6840d252007-09-10 11:34:26 -04001210 /* If the suspend succeeded then prevent any more URB submissions,
1211 * flush any outstanding URBs, and propagate the suspend up the tree.
1212 */
Alan Sternef7f6c72007-04-05 16:03:49 -04001213 } else {
1214 cancel_delayed_work(&udev->autosuspend);
Alan Stern6840d252007-09-10 11:34:26 -04001215 udev->can_submit = 0;
1216 for (i = 0; i < 16; ++i) {
1217 usb_hcd_flush_endpoint(udev, udev->ep_out[i]);
1218 usb_hcd_flush_endpoint(udev, udev->ep_in[i]);
1219 }
Alan Stern7108f282007-09-20 12:37:50 -04001220
1221 /* If this is just a FREEZE or a PRETHAW, udev might
1222 * not really be suspended. Only true suspends get
1223 * propagated up the device tree.
1224 */
1225 if (parent && udev->state == USB_STATE_SUSPENDED)
Alan Sternef7f6c72007-04-05 16:03:49 -04001226 usb_autosuspend_device(parent);
1227 }
Alan Stern645daaa2006-08-30 15:47:02 -04001228
Alan Stern19410442007-03-27 13:33:59 -04001229 done:
Harvey Harrison441b62c2008-03-03 16:08:34 -08001230 dev_vdbg(&udev->dev, "%s: status %d\n", __func__, status);
Alan Sterna8e7c562006-07-01 22:11:02 -04001231 return status;
1232}
1233
Alan Stern645daaa2006-08-30 15:47:02 -04001234/**
1235 * usb_resume_both - resume a USB device and its interfaces
1236 * @udev: the usb_device to resume
Alan Stern65bfd292008-11-25 16:39:18 -05001237 * @msg: Power Management message describing this state transition
Alan Stern645daaa2006-08-30 15:47:02 -04001238 *
1239 * This is the central routine for resuming USB devices. It calls the
1240 * the resume method for @udev and then calls the resume methods for all
1241 * the interface drivers in @udev.
1242 *
1243 * Before starting the resume, the routine calls itself recursively for
1244 * the parent device of @udev, thereby propagating the change up the device
1245 * tree and assuring that @udev will be able to resume. If the parent is
1246 * unable to resume successfully, the routine fails.
1247 *
1248 * The resume method calls are subject to mutual exclusion under control
1249 * of @udev's pm_mutex. Many of these calls are also under the protection
1250 * of @udev's device lock (including all requests originating outside the
1251 * USB subsystem), but autoresume requests generated by a child device or
1252 * interface driver may not be. Usbcore will insure that the method calls
1253 * do not arrive during bind, unbind, or reset operations. However, drivers
1254 * must be prepared to handle resume calls arriving at unpredictable times.
1255 * The only way to block such calls is to do an autoresume (preventing
1256 * other autoresumes) while holding @udev's device lock (preventing outside
1257 * resumes).
1258 *
1259 * The caller must hold @udev->pm_mutex.
1260 *
1261 * This routine can run only in process context.
1262 */
Alan Stern65bfd292008-11-25 16:39:18 -05001263static int usb_resume_both(struct usb_device *udev, pm_message_t msg)
Alan Sterna8e7c562006-07-01 22:11:02 -04001264{
Alan Stern645daaa2006-08-30 15:47:02 -04001265 int status = 0;
Alan Sterna8e7c562006-07-01 22:11:02 -04001266 int i;
1267 struct usb_interface *intf;
Alan Stern645daaa2006-08-30 15:47:02 -04001268 struct usb_device *parent = udev->parent;
Alan Sterna8e7c562006-07-01 22:11:02 -04001269
Alan Stern645daaa2006-08-30 15:47:02 -04001270 cancel_delayed_work(&udev->autosuspend);
Alan Stern19410442007-03-27 13:33:59 -04001271 if (udev->state == USB_STATE_NOTATTACHED) {
1272 status = -ENODEV;
1273 goto done;
1274 }
Alan Stern6840d252007-09-10 11:34:26 -04001275 udev->can_submit = 1;
Alan Stern645daaa2006-08-30 15:47:02 -04001276
1277 /* Propagate the resume up the tree, if necessary */
1278 if (udev->state == USB_STATE_SUSPENDED) {
Alan Stern65bfd292008-11-25 16:39:18 -05001279 if ((msg.event & PM_EVENT_AUTO) &&
1280 udev->autoresume_disabled) {
Alan Stern19410442007-03-27 13:33:59 -04001281 status = -EPERM;
1282 goto done;
1283 }
Alan Stern645daaa2006-08-30 15:47:02 -04001284 if (parent) {
Alan Stern94fcda12006-11-20 11:38:46 -05001285 status = usb_autoresume_device(parent);
Alan Sternee49fb52006-11-22 16:55:54 -05001286 if (status == 0) {
Alan Stern65bfd292008-11-25 16:39:18 -05001287 status = usb_resume_device(udev, msg);
Alan Sternf07600c2007-05-30 15:38:16 -04001288 if (status || udev->state ==
1289 USB_STATE_NOTATTACHED) {
Alan Stern94fcda12006-11-20 11:38:46 -05001290 usb_autosuspend_device(parent);
Alan Sternee49fb52006-11-22 16:55:54 -05001291
1292 /* It's possible usb_resume_device()
1293 * failed after the port was
1294 * unsuspended, causing udev to be
1295 * logically disconnected. We don't
1296 * want usb_disconnect() to autosuspend
1297 * the parent again, so tell it that
1298 * udev disconnected while still
1299 * suspended. */
1300 if (udev->state ==
1301 USB_STATE_NOTATTACHED)
1302 udev->discon_suspended = 1;
1303 }
1304 }
Alan Stern645daaa2006-08-30 15:47:02 -04001305 } else {
1306
1307 /* We can't progagate beyond the USB subsystem,
1308 * so if a root hub's controller is suspended
1309 * then we're stuck. */
Alan Stern65bfd292008-11-25 16:39:18 -05001310 status = usb_resume_device(udev, msg);
Greg Kroah-Hartman2c044a42008-01-30 15:21:33 -08001311 }
Alan Stern6ee0b272008-04-28 11:06:42 -04001312 } else if (udev->reset_resume)
Alan Stern65bfd292008-11-25 16:39:18 -05001313 status = usb_resume_device(udev, msg);
Alan Stern114b3682006-07-01 22:13:04 -04001314
Alan Sterna8e7c562006-07-01 22:11:02 -04001315 if (status == 0 && udev->actconfig) {
1316 for (i = 0; i < udev->actconfig->desc.bNumInterfaces; i++) {
1317 intf = udev->actconfig->interface[i];
Alan Stern65bfd292008-11-25 16:39:18 -05001318 usb_resume_interface(udev, intf, msg,
1319 udev->reset_resume);
Alan Sterna8e7c562006-07-01 22:11:02 -04001320 }
1321 }
Alan Stern645daaa2006-08-30 15:47:02 -04001322
Alan Stern19410442007-03-27 13:33:59 -04001323 done:
Harvey Harrison441b62c2008-03-03 16:08:34 -08001324 dev_vdbg(&udev->dev, "%s: status %d\n", __func__, status);
Alan Stern70a1c9e2008-03-06 17:00:58 -05001325 if (!status)
1326 udev->reset_resume = 0;
Alan Sterna8e7c562006-07-01 22:11:02 -04001327 return status;
1328}
1329
Alan Stern645daaa2006-08-30 15:47:02 -04001330#ifdef CONFIG_USB_SUSPEND
1331
Alan Stern94fcda12006-11-20 11:38:46 -05001332/* Internal routine to adjust a device's usage counter and change
1333 * its autosuspend state.
1334 */
1335static int usb_autopm_do_device(struct usb_device *udev, int inc_usage_cnt)
1336{
1337 int status = 0;
1338
1339 usb_pm_lock(udev);
Alan Stern19410442007-03-27 13:33:59 -04001340 udev->auto_pm = 1;
Alan Stern94fcda12006-11-20 11:38:46 -05001341 udev->pm_usage_cnt += inc_usage_cnt;
1342 WARN_ON(udev->pm_usage_cnt < 0);
Alan Stern013d27f2007-08-20 12:18:39 -04001343 if (inc_usage_cnt)
1344 udev->last_busy = jiffies;
Alan Stern94fcda12006-11-20 11:38:46 -05001345 if (inc_usage_cnt >= 0 && udev->pm_usage_cnt > 0) {
Alan Stern19410442007-03-27 13:33:59 -04001346 if (udev->state == USB_STATE_SUSPENDED)
Alan Stern65bfd292008-11-25 16:39:18 -05001347 status = usb_resume_both(udev, PMSG_AUTO_RESUME);
Alan Stern94fcda12006-11-20 11:38:46 -05001348 if (status != 0)
1349 udev->pm_usage_cnt -= inc_usage_cnt;
Alan Stern19410442007-03-27 13:33:59 -04001350 else if (inc_usage_cnt)
1351 udev->last_busy = jiffies;
1352 } else if (inc_usage_cnt <= 0 && udev->pm_usage_cnt <= 0) {
Alan Stern65bfd292008-11-25 16:39:18 -05001353 status = usb_suspend_both(udev, PMSG_AUTO_SUSPEND);
Alan Stern19410442007-03-27 13:33:59 -04001354 }
Alan Stern94fcda12006-11-20 11:38:46 -05001355 usb_pm_unlock(udev);
1356 return status;
1357}
1358
Alan Stern19410442007-03-27 13:33:59 -04001359/* usb_autosuspend_work - callback routine to autosuspend a USB device */
1360void usb_autosuspend_work(struct work_struct *work)
1361{
1362 struct usb_device *udev =
1363 container_of(work, struct usb_device, autosuspend.work);
1364
1365 usb_autopm_do_device(udev, 0);
1366}
1367
Alan Stern9ac39f22008-11-12 16:19:49 -05001368/* usb_autoresume_work - callback routine to autoresume a USB device */
1369void usb_autoresume_work(struct work_struct *work)
1370{
1371 struct usb_device *udev =
1372 container_of(work, struct usb_device, autoresume);
1373
1374 /* Wake it up, let the drivers do their thing, and then put it
1375 * back to sleep.
1376 */
1377 if (usb_autopm_do_device(udev, 1) == 0)
1378 usb_autopm_do_device(udev, -1);
1379}
1380
Alan Stern645daaa2006-08-30 15:47:02 -04001381/**
1382 * usb_autosuspend_device - delayed autosuspend of a USB device and its interfaces
Henrik Kretzschmar701f35a2006-09-25 17:00:56 -07001383 * @udev: the usb_device to autosuspend
Alan Stern645daaa2006-08-30 15:47:02 -04001384 *
1385 * This routine should be called when a core subsystem is finished using
1386 * @udev and wants to allow it to autosuspend. Examples would be when
1387 * @udev's device file in usbfs is closed or after a configuration change.
1388 *
Alan Stern94fcda12006-11-20 11:38:46 -05001389 * @udev's usage counter is decremented. If it or any of the usage counters
1390 * for an active interface is greater than 0, no autosuspend request will be
1391 * queued. (If an interface driver does not support autosuspend then its
1392 * usage counter is permanently positive.) Furthermore, if an interface
1393 * driver requires remote-wakeup capability during autosuspend but remote
1394 * wakeup is disabled, the autosuspend will fail.
Alan Stern645daaa2006-08-30 15:47:02 -04001395 *
1396 * Often the caller will hold @udev's device lock, but this is not
1397 * necessary.
1398 *
1399 * This routine can run only in process context.
1400 */
Alan Stern94fcda12006-11-20 11:38:46 -05001401void usb_autosuspend_device(struct usb_device *udev)
Alan Stern645daaa2006-08-30 15:47:02 -04001402{
Alan Stern94fcda12006-11-20 11:38:46 -05001403 int status;
1404
1405 status = usb_autopm_do_device(udev, -1);
Alan Stern20dfdad2007-05-22 11:50:17 -04001406 dev_vdbg(&udev->dev, "%s: cnt %d\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -08001407 __func__, udev->pm_usage_cnt);
Alan Stern645daaa2006-08-30 15:47:02 -04001408}
1409
1410/**
Alan Stern19c26232007-02-20 15:03:32 -05001411 * usb_try_autosuspend_device - attempt an autosuspend of a USB device and its interfaces
1412 * @udev: the usb_device to autosuspend
1413 *
1414 * This routine should be called when a core subsystem thinks @udev may
1415 * be ready to autosuspend.
1416 *
1417 * @udev's usage counter left unchanged. If it or any of the usage counters
1418 * for an active interface is greater than 0, or autosuspend is not allowed
1419 * for any other reason, no autosuspend request will be queued.
1420 *
1421 * This routine can run only in process context.
1422 */
1423void usb_try_autosuspend_device(struct usb_device *udev)
1424{
1425 usb_autopm_do_device(udev, 0);
Alan Stern20dfdad2007-05-22 11:50:17 -04001426 dev_vdbg(&udev->dev, "%s: cnt %d\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -08001427 __func__, udev->pm_usage_cnt);
Alan Stern19c26232007-02-20 15:03:32 -05001428}
1429
1430/**
Alan Stern645daaa2006-08-30 15:47:02 -04001431 * usb_autoresume_device - immediately autoresume a USB device and its interfaces
Henrik Kretzschmar701f35a2006-09-25 17:00:56 -07001432 * @udev: the usb_device to autoresume
Alan Stern645daaa2006-08-30 15:47:02 -04001433 *
1434 * This routine should be called when a core subsystem wants to use @udev
Alan Stern94fcda12006-11-20 11:38:46 -05001435 * and needs to guarantee that it is not suspended. No autosuspend will
1436 * occur until usb_autosuspend_device is called. (Note that this will not
1437 * prevent suspend events originating in the PM core.) Examples would be
1438 * when @udev's device file in usbfs is opened or when a remote-wakeup
1439 * request is received.
Alan Stern645daaa2006-08-30 15:47:02 -04001440 *
Alan Stern94fcda12006-11-20 11:38:46 -05001441 * @udev's usage counter is incremented to prevent subsequent autosuspends.
1442 * However if the autoresume fails then the usage counter is re-decremented.
Alan Stern645daaa2006-08-30 15:47:02 -04001443 *
1444 * Often the caller will hold @udev's device lock, but this is not
1445 * necessary (and attempting it might cause deadlock).
1446 *
1447 * This routine can run only in process context.
1448 */
Alan Stern94fcda12006-11-20 11:38:46 -05001449int usb_autoresume_device(struct usb_device *udev)
Alan Stern645daaa2006-08-30 15:47:02 -04001450{
1451 int status;
1452
Alan Stern94fcda12006-11-20 11:38:46 -05001453 status = usb_autopm_do_device(udev, 1);
Alan Stern20dfdad2007-05-22 11:50:17 -04001454 dev_vdbg(&udev->dev, "%s: status %d cnt %d\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -08001455 __func__, status, udev->pm_usage_cnt);
Alan Stern645daaa2006-08-30 15:47:02 -04001456 return status;
1457}
1458
Alan Sternaf4f7602006-10-30 17:06:45 -05001459/* Internal routine to adjust an interface's usage counter and change
1460 * its device's autosuspend state.
1461 */
1462static int usb_autopm_do_interface(struct usb_interface *intf,
1463 int inc_usage_cnt)
1464{
1465 struct usb_device *udev = interface_to_usbdev(intf);
1466 int status = 0;
1467
1468 usb_pm_lock(udev);
1469 if (intf->condition == USB_INTERFACE_UNBOUND)
1470 status = -ENODEV;
1471 else {
Alan Stern19410442007-03-27 13:33:59 -04001472 udev->auto_pm = 1;
Alan Sternaf4f7602006-10-30 17:06:45 -05001473 intf->pm_usage_cnt += inc_usage_cnt;
Alan Stern013d27f2007-08-20 12:18:39 -04001474 udev->last_busy = jiffies;
Alan Sternaf4f7602006-10-30 17:06:45 -05001475 if (inc_usage_cnt >= 0 && intf->pm_usage_cnt > 0) {
Alan Stern19410442007-03-27 13:33:59 -04001476 if (udev->state == USB_STATE_SUSPENDED)
Alan Stern65bfd292008-11-25 16:39:18 -05001477 status = usb_resume_both(udev,
1478 PMSG_AUTO_RESUME);
Alan Sternaf4f7602006-10-30 17:06:45 -05001479 if (status != 0)
1480 intf->pm_usage_cnt -= inc_usage_cnt;
Alan Stern013d27f2007-08-20 12:18:39 -04001481 else
Alan Stern19410442007-03-27 13:33:59 -04001482 udev->last_busy = jiffies;
1483 } else if (inc_usage_cnt <= 0 && intf->pm_usage_cnt <= 0) {
Alan Stern65bfd292008-11-25 16:39:18 -05001484 status = usb_suspend_both(udev, PMSG_AUTO_SUSPEND);
Alan Stern19410442007-03-27 13:33:59 -04001485 }
Alan Sternaf4f7602006-10-30 17:06:45 -05001486 }
1487 usb_pm_unlock(udev);
1488 return status;
1489}
1490
Alan Stern645daaa2006-08-30 15:47:02 -04001491/**
1492 * usb_autopm_put_interface - decrement a USB interface's PM-usage counter
Henrik Kretzschmar701f35a2006-09-25 17:00:56 -07001493 * @intf: the usb_interface whose counter should be decremented
Alan Stern645daaa2006-08-30 15:47:02 -04001494 *
1495 * This routine should be called by an interface driver when it is
1496 * finished using @intf and wants to allow it to autosuspend. A typical
1497 * example would be a character-device driver when its device file is
1498 * closed.
1499 *
1500 * The routine decrements @intf's usage counter. When the counter reaches
1501 * 0, a delayed autosuspend request for @intf's device is queued. When
1502 * the delay expires, if @intf->pm_usage_cnt is still <= 0 along with all
1503 * the other usage counters for the sibling interfaces and @intf's
1504 * usb_device, the device and all its interfaces will be autosuspended.
1505 *
1506 * Note that @intf->pm_usage_cnt is owned by the interface driver. The
1507 * core will not change its value other than the increment and decrement
1508 * in usb_autopm_get_interface and usb_autopm_put_interface. The driver
1509 * may use this simple counter-oriented discipline or may set the value
1510 * any way it likes.
1511 *
1512 * If the driver has set @intf->needs_remote_wakeup then autosuspend will
1513 * take place only if the device's remote-wakeup facility is enabled.
1514 *
1515 * Suspend method calls queued by this routine can arrive at any time
1516 * while @intf is resumed and its usage counter is equal to 0. They are
1517 * not protected by the usb_device's lock but only by its pm_mutex.
1518 * Drivers must provide their own synchronization.
1519 *
1520 * This routine can run only in process context.
1521 */
1522void usb_autopm_put_interface(struct usb_interface *intf)
1523{
Alan Sternaf4f7602006-10-30 17:06:45 -05001524 int status;
Alan Stern645daaa2006-08-30 15:47:02 -04001525
Alan Sternaf4f7602006-10-30 17:06:45 -05001526 status = usb_autopm_do_interface(intf, -1);
Alan Stern20dfdad2007-05-22 11:50:17 -04001527 dev_vdbg(&intf->dev, "%s: status %d cnt %d\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -08001528 __func__, status, intf->pm_usage_cnt);
Alan Stern645daaa2006-08-30 15:47:02 -04001529}
1530EXPORT_SYMBOL_GPL(usb_autopm_put_interface);
1531
1532/**
Alan Stern9ac39f22008-11-12 16:19:49 -05001533 * usb_autopm_put_interface_async - decrement a USB interface's PM-usage counter
1534 * @intf: the usb_interface whose counter should be decremented
1535 *
1536 * This routine does essentially the same thing as
1537 * usb_autopm_put_interface(): it decrements @intf's usage counter and
1538 * queues a delayed autosuspend request if the counter is <= 0. The
1539 * difference is that it does not acquire the device's pm_mutex;
1540 * callers must handle all synchronization issues themselves.
1541 *
1542 * Typically a driver would call this routine during an URB's completion
1543 * handler, if no more URBs were pending.
1544 *
1545 * This routine can run in atomic context.
1546 */
1547void usb_autopm_put_interface_async(struct usb_interface *intf)
1548{
1549 struct usb_device *udev = interface_to_usbdev(intf);
1550 int status = 0;
1551
1552 if (intf->condition == USB_INTERFACE_UNBOUND) {
1553 status = -ENODEV;
1554 } else {
1555 udev->last_busy = jiffies;
1556 --intf->pm_usage_cnt;
1557 if (udev->autosuspend_disabled || udev->autosuspend_delay < 0)
1558 status = -EPERM;
1559 else if (intf->pm_usage_cnt <= 0 &&
1560 !timer_pending(&udev->autosuspend.timer)) {
1561 queue_delayed_work(ksuspend_usb_wq, &udev->autosuspend,
Alan Stern4ec06d62008-11-25 16:40:02 -05001562 round_jiffies_up_relative(
Alan Stern9ac39f22008-11-12 16:19:49 -05001563 udev->autosuspend_delay));
1564 }
1565 }
1566 dev_vdbg(&intf->dev, "%s: status %d cnt %d\n",
1567 __func__, status, intf->pm_usage_cnt);
1568}
1569EXPORT_SYMBOL_GPL(usb_autopm_put_interface_async);
1570
1571/**
Alan Stern645daaa2006-08-30 15:47:02 -04001572 * usb_autopm_get_interface - increment a USB interface's PM-usage counter
Henrik Kretzschmar701f35a2006-09-25 17:00:56 -07001573 * @intf: the usb_interface whose counter should be incremented
Alan Stern645daaa2006-08-30 15:47:02 -04001574 *
1575 * This routine should be called by an interface driver when it wants to
1576 * use @intf and needs to guarantee that it is not suspended. In addition,
1577 * the routine prevents @intf from being autosuspended subsequently. (Note
1578 * that this will not prevent suspend events originating in the PM core.)
1579 * This prevention will persist until usb_autopm_put_interface() is called
1580 * or @intf is unbound. A typical example would be a character-device
1581 * driver when its device file is opened.
1582 *
Alan Stern19410442007-03-27 13:33:59 -04001583 *
1584 * The routine increments @intf's usage counter. (However if the
1585 * autoresume fails then the counter is re-decremented.) So long as the
1586 * counter is greater than 0, autosuspend will not be allowed for @intf
1587 * or its usb_device. When the driver is finished using @intf it should
1588 * call usb_autopm_put_interface() to decrement the usage counter and
1589 * queue a delayed autosuspend request (if the counter is <= 0).
1590 *
Alan Stern645daaa2006-08-30 15:47:02 -04001591 *
1592 * Note that @intf->pm_usage_cnt is owned by the interface driver. The
1593 * core will not change its value other than the increment and decrement
1594 * in usb_autopm_get_interface and usb_autopm_put_interface. The driver
1595 * may use this simple counter-oriented discipline or may set the value
1596 * any way it likes.
1597 *
1598 * Resume method calls generated by this routine can arrive at any time
1599 * while @intf is suspended. They are not protected by the usb_device's
1600 * lock but only by its pm_mutex. Drivers must provide their own
1601 * synchronization.
1602 *
1603 * This routine can run only in process context.
1604 */
1605int usb_autopm_get_interface(struct usb_interface *intf)
1606{
Alan Sternaf4f7602006-10-30 17:06:45 -05001607 int status;
Alan Stern645daaa2006-08-30 15:47:02 -04001608
Alan Sternaf4f7602006-10-30 17:06:45 -05001609 status = usb_autopm_do_interface(intf, 1);
Alan Stern20dfdad2007-05-22 11:50:17 -04001610 dev_vdbg(&intf->dev, "%s: status %d cnt %d\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -08001611 __func__, status, intf->pm_usage_cnt);
Alan Stern645daaa2006-08-30 15:47:02 -04001612 return status;
1613}
1614EXPORT_SYMBOL_GPL(usb_autopm_get_interface);
1615
Alan Stern692a1862006-10-30 17:07:51 -05001616/**
Alan Stern9ac39f22008-11-12 16:19:49 -05001617 * usb_autopm_get_interface_async - increment a USB interface's PM-usage counter
1618 * @intf: the usb_interface whose counter should be incremented
1619 *
1620 * This routine does much the same thing as
1621 * usb_autopm_get_interface(): it increments @intf's usage counter and
1622 * queues an autoresume request if the result is > 0. The differences
1623 * are that it does not acquire the device's pm_mutex (callers must
1624 * handle all synchronization issues themselves), and it does not
1625 * autoresume the device directly (it only queues a request). After a
1626 * successful call, the device will generally not yet be resumed.
1627 *
1628 * This routine can run in atomic context.
1629 */
1630int usb_autopm_get_interface_async(struct usb_interface *intf)
1631{
1632 struct usb_device *udev = interface_to_usbdev(intf);
1633 int status = 0;
1634
1635 if (intf->condition == USB_INTERFACE_UNBOUND)
1636 status = -ENODEV;
1637 else if (udev->autoresume_disabled)
1638 status = -EPERM;
1639 else if (++intf->pm_usage_cnt > 0 && udev->state == USB_STATE_SUSPENDED)
1640 queue_work(ksuspend_usb_wq, &udev->autoresume);
1641 dev_vdbg(&intf->dev, "%s: status %d cnt %d\n",
1642 __func__, status, intf->pm_usage_cnt);
1643 return status;
1644}
1645EXPORT_SYMBOL_GPL(usb_autopm_get_interface_async);
1646
1647/**
Alan Stern692a1862006-10-30 17:07:51 -05001648 * usb_autopm_set_interface - set a USB interface's autosuspend state
1649 * @intf: the usb_interface whose state should be set
1650 *
1651 * This routine sets the autosuspend state of @intf's device according
1652 * to @intf's usage counter, which the caller must have set previously.
1653 * If the counter is <= 0, the device is autosuspended (if it isn't
1654 * already suspended and if nothing else prevents the autosuspend). If
1655 * the counter is > 0, the device is autoresumed (if it isn't already
1656 * awake).
1657 */
1658int usb_autopm_set_interface(struct usb_interface *intf)
1659{
1660 int status;
1661
1662 status = usb_autopm_do_interface(intf, 0);
Alan Stern20dfdad2007-05-22 11:50:17 -04001663 dev_vdbg(&intf->dev, "%s: status %d cnt %d\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -08001664 __func__, status, intf->pm_usage_cnt);
Alan Stern692a1862006-10-30 17:07:51 -05001665 return status;
1666}
1667EXPORT_SYMBOL_GPL(usb_autopm_set_interface);
1668
Alan Stern718efa62007-03-09 15:41:13 -05001669#else
1670
1671void usb_autosuspend_work(struct work_struct *work)
1672{}
1673
Alan Stern9ac39f22008-11-12 16:19:49 -05001674void usb_autoresume_work(struct work_struct *work)
1675{}
1676
Alan Stern645daaa2006-08-30 15:47:02 -04001677#endif /* CONFIG_USB_SUSPEND */
1678
Alan Stern6b157c92007-03-13 16:37:30 -04001679/**
1680 * usb_external_suspend_device - external suspend of a USB device and its interfaces
1681 * @udev: the usb_device to suspend
1682 * @msg: Power Management message describing this state transition
1683 *
1684 * This routine handles external suspend requests: ones not generated
1685 * internally by a USB driver (autosuspend) but rather coming from the user
1686 * (via sysfs) or the PM core (system sleep). The suspend will be carried
1687 * out regardless of @udev's usage counter or those of its interfaces,
1688 * and regardless of whether or not remote wakeup is enabled. Of course,
1689 * interface drivers still have the option of failing the suspend (if
1690 * there are unsuspended children, for example).
1691 *
1692 * The caller must hold @udev's device lock.
1693 */
1694int usb_external_suspend_device(struct usb_device *udev, pm_message_t msg)
Alan Stern1cc8a252006-07-01 22:10:15 -04001695{
1696 int status;
1697
Alan Stern78d9a482008-06-23 16:00:40 -04001698 do_unbind_rebind(udev, DO_UNBIND);
Alan Stern6b157c92007-03-13 16:37:30 -04001699 usb_pm_lock(udev);
1700 udev->auto_pm = 0;
1701 status = usb_suspend_both(udev, msg);
1702 usb_pm_unlock(udev);
Alan Stern1cc8a252006-07-01 22:10:15 -04001703 return status;
1704}
1705
Alan Stern6b157c92007-03-13 16:37:30 -04001706/**
1707 * usb_external_resume_device - external resume of a USB device and its interfaces
1708 * @udev: the usb_device to resume
Alan Stern65bfd292008-11-25 16:39:18 -05001709 * @msg: Power Management message describing this state transition
Alan Stern6b157c92007-03-13 16:37:30 -04001710 *
1711 * This routine handles external resume requests: ones not generated
1712 * internally by a USB driver (autoresume) but rather coming from the user
1713 * (via sysfs), the PM core (system resume), or the device itself (remote
1714 * wakeup). @udev's usage counter is unaffected.
1715 *
1716 * The caller must hold @udev's device lock.
1717 */
Alan Stern65bfd292008-11-25 16:39:18 -05001718int usb_external_resume_device(struct usb_device *udev, pm_message_t msg)
Alan Stern6b157c92007-03-13 16:37:30 -04001719{
1720 int status;
1721
1722 usb_pm_lock(udev);
1723 udev->auto_pm = 0;
Alan Stern65bfd292008-11-25 16:39:18 -05001724 status = usb_resume_both(udev, msg);
Alan Sternef7f6c72007-04-05 16:03:49 -04001725 udev->last_busy = jiffies;
Alan Stern6b157c92007-03-13 16:37:30 -04001726 usb_pm_unlock(udev);
Alan Stern6c640942008-10-21 15:40:03 -04001727 if (status == 0)
1728 do_unbind_rebind(udev, DO_REBIND);
Alan Stern6b157c92007-03-13 16:37:30 -04001729
1730 /* Now that the device is awake, we can start trying to autosuspend
1731 * it again. */
1732 if (status == 0)
1733 usb_try_autosuspend_device(udev);
1734 return status;
1735}
1736
Alan Stern65bfd292008-11-25 16:39:18 -05001737int usb_suspend(struct device *dev, pm_message_t msg)
Alan Stern6b157c92007-03-13 16:37:30 -04001738{
Alan Stern271f9e62007-10-10 16:30:12 -04001739 struct usb_device *udev;
1740
Alan Stern271f9e62007-10-10 16:30:12 -04001741 udev = to_usb_device(dev);
1742
1743 /* If udev is already suspended, we can skip this suspend and
Alan Stern3bb1af52008-03-03 15:15:36 -05001744 * we should also skip the upcoming system resume. High-speed
1745 * root hubs are an exception; they need to resume whenever the
1746 * system wakes up in order for USB-PERSIST port handover to work
1747 * properly.
1748 */
Alan Stern271f9e62007-10-10 16:30:12 -04001749 if (udev->state == USB_STATE_SUSPENDED) {
Alan Stern3bb1af52008-03-03 15:15:36 -05001750 if (udev->parent || udev->speed != USB_SPEED_HIGH)
1751 udev->skip_sys_resume = 1;
Alan Stern271f9e62007-10-10 16:30:12 -04001752 return 0;
1753 }
1754
1755 udev->skip_sys_resume = 0;
Alan Stern65bfd292008-11-25 16:39:18 -05001756 return usb_external_suspend_device(udev, msg);
Alan Stern6b157c92007-03-13 16:37:30 -04001757}
1758
Alan Stern65bfd292008-11-25 16:39:18 -05001759int usb_resume(struct device *dev, pm_message_t msg)
Alan Stern1cc8a252006-07-01 22:10:15 -04001760{
Alan Stern2add5222007-03-20 14:59:39 -04001761 struct usb_device *udev;
1762
Alan Stern2add5222007-03-20 14:59:39 -04001763 udev = to_usb_device(dev);
Alan Stern0458d5b2007-05-04 11:52:20 -04001764
Alan Stern271f9e62007-10-10 16:30:12 -04001765 /* If udev->skip_sys_resume is set then udev was already suspended
Alan Stern8808f002008-04-28 11:06:55 -04001766 * when the system sleep started, so we don't want to resume it
1767 * during this system wakeup.
1768 */
1769 if (udev->skip_sys_resume)
1770 return 0;
Alan Stern65bfd292008-11-25 16:39:18 -05001771 return usb_external_resume_device(udev, msg);
Alan Stern1cc8a252006-07-01 22:10:15 -04001772}
1773
Alan Stern36e56a32006-07-01 22:08:06 -04001774#endif /* CONFIG_PM */
1775
1776struct bus_type usb_bus_type = {
1777 .name = "usb",
1778 .match = usb_device_match,
1779 .uevent = usb_uevent,
Alan Stern36e56a32006-07-01 22:08:06 -04001780};