blob: fcafb2dce3aca12736816d23966f17e4613e8a88 [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
CHENG Renquan0c7a2b72009-11-22 01:28:52 +080086/**
87 * store_remove_id - remove a USB device ID from this driver
88 * @driver: target device driver
89 * @buf: buffer for scanning device ID data
90 * @count: input size
91 *
92 * Removes a dynamic usb device ID from this driver.
93 */
94static ssize_t
95store_remove_id(struct device_driver *driver, const char *buf, size_t count)
96{
97 struct usb_dynid *dynid, *n;
98 struct usb_driver *usb_driver = to_usb_driver(driver);
99 u32 idVendor = 0;
100 u32 idProduct = 0;
101 int fields = 0;
102 int retval = 0;
103
104 fields = sscanf(buf, "%x %x", &idVendor, &idProduct);
105 if (fields < 2)
106 return -EINVAL;
107
108 spin_lock(&usb_driver->dynids.lock);
109 list_for_each_entry_safe(dynid, n, &usb_driver->dynids.list, node) {
110 struct usb_device_id *id = &dynid->id;
111 if ((id->idVendor == idVendor) &&
112 (id->idProduct == idProduct)) {
113 list_del(&dynid->node);
114 kfree(dynid);
115 retval = 0;
116 break;
117 }
118 }
119 spin_unlock(&usb_driver->dynids.lock);
120
121 if (retval)
122 return retval;
123 return count;
124}
125static DRIVER_ATTR(remove_id, S_IWUSR, NULL, store_remove_id);
126
Greg Kroah-Hartman733260f2005-11-16 13:41:28 -0800127static int usb_create_newid_file(struct usb_driver *usb_drv)
128{
129 int error = 0;
130
Greg Kroah-Hartmanba9dc652005-11-16 13:41:28 -0800131 if (usb_drv->no_dynamic_id)
132 goto exit;
133
Greg Kroah-Hartman733260f2005-11-16 13:41:28 -0800134 if (usb_drv->probe != NULL)
Greg Kroah-Hartman15147ff2007-11-28 12:23:18 -0800135 error = driver_create_file(&usb_drv->drvwrap.driver,
136 &driver_attr_new_id);
Greg Kroah-Hartmanba9dc652005-11-16 13:41:28 -0800137exit:
Greg Kroah-Hartman733260f2005-11-16 13:41:28 -0800138 return error;
139}
140
Greg Kroah-Hartmanba9dc652005-11-16 13:41:28 -0800141static void usb_remove_newid_file(struct usb_driver *usb_drv)
142{
143 if (usb_drv->no_dynamic_id)
144 return;
145
146 if (usb_drv->probe != NULL)
Greg Kroah-Hartman15147ff2007-11-28 12:23:18 -0800147 driver_remove_file(&usb_drv->drvwrap.driver,
148 &driver_attr_new_id);
Greg Kroah-Hartmanba9dc652005-11-16 13:41:28 -0800149}
150
CHENG Renquan0c7a2b72009-11-22 01:28:52 +0800151static int
152usb_create_removeid_file(struct usb_driver *drv)
153{
154 int error = 0;
155 if (drv->probe != NULL)
156 error = driver_create_file(&drv->drvwrap.driver,
157 &driver_attr_remove_id);
158 return error;
159}
160
161static void usb_remove_removeid_file(struct usb_driver *drv)
162{
163 driver_remove_file(&drv->drvwrap.driver, &driver_attr_remove_id);
164}
165
Greg Kroah-Hartman733260f2005-11-16 13:41:28 -0800166static void usb_free_dynids(struct usb_driver *usb_drv)
167{
168 struct usb_dynid *dynid, *n;
169
170 spin_lock(&usb_drv->dynids.lock);
171 list_for_each_entry_safe(dynid, n, &usb_drv->dynids.list, node) {
172 list_del(&dynid->node);
173 kfree(dynid);
174 }
175 spin_unlock(&usb_drv->dynids.lock);
176}
177#else
178static inline int usb_create_newid_file(struct usb_driver *usb_drv)
179{
180 return 0;
181}
182
Greg Kroah-Hartmanba9dc652005-11-16 13:41:28 -0800183static void usb_remove_newid_file(struct usb_driver *usb_drv)
184{
185}
186
CHENG Renquan0c7a2b72009-11-22 01:28:52 +0800187static int
188usb_create_removeid_file(struct usb_driver *drv)
189{
190 return 0;
191}
192
193static void usb_remove_removeid_file(struct usb_driver *drv)
194{
195}
196
Greg Kroah-Hartman733260f2005-11-16 13:41:28 -0800197static inline void usb_free_dynids(struct usb_driver *usb_drv)
198{
199}
200#endif
201
202static const struct usb_device_id *usb_match_dynamic_id(struct usb_interface *intf,
203 struct usb_driver *drv)
204{
205 struct usb_dynid *dynid;
206
207 spin_lock(&drv->dynids.lock);
208 list_for_each_entry(dynid, &drv->dynids.list, node) {
209 if (usb_match_one_id(intf, &dynid->id)) {
210 spin_unlock(&drv->dynids.lock);
211 return &dynid->id;
212 }
213 }
214 spin_unlock(&drv->dynids.lock);
215 return NULL;
216}
217
218
Alan Stern8bb54ab2006-07-01 22:08:49 -0400219/* called from driver core with dev locked */
220static int usb_probe_device(struct device *dev)
221{
222 struct usb_device_driver *udriver = to_usb_device_driver(dev->driver);
Kay Sievers55129662009-05-04 19:48:32 +0200223 struct usb_device *udev = to_usb_device(dev);
Alan Stern8bb54ab2006-07-01 22:08:49 -0400224 int error = -ENODEV;
225
Harvey Harrison441b62c2008-03-03 16:08:34 -0800226 dev_dbg(dev, "%s\n", __func__);
Alan Stern8bb54ab2006-07-01 22:08:49 -0400227
Alan Stern8bb54ab2006-07-01 22:08:49 -0400228 /* TODO: Add real matching code */
229
Alan Stern645daaa2006-08-30 15:47:02 -0400230 /* The device should always appear to be in use
231 * unless the driver suports autosuspend.
232 */
233 udev->pm_usage_cnt = !(udriver->supports_autosuspend);
234
Alan Stern8bb54ab2006-07-01 22:08:49 -0400235 error = udriver->probe(udev);
236 return error;
237}
238
239/* called from driver core with dev locked */
240static int usb_unbind_device(struct device *dev)
241{
242 struct usb_device_driver *udriver = to_usb_device_driver(dev->driver);
243
244 udriver->disconnect(to_usb_device(dev));
245 return 0;
246}
247
Inaky Perez-Gonzalezdc023dc2008-11-13 10:31:35 -0800248/*
249 * Cancel any pending scheduled resets
250 *
251 * [see usb_queue_reset_device()]
252 *
253 * Called after unconfiguring / when releasing interfaces. See
254 * comments in __usb_queue_reset_device() regarding
255 * udev->reset_running.
256 */
257static void usb_cancel_queued_reset(struct usb_interface *iface)
258{
259 if (iface->reset_running == 0)
260 cancel_work_sync(&iface->reset_ws);
261}
Alan Stern8bb54ab2006-07-01 22:08:49 -0400262
263/* called from driver core with dev locked */
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800264static int usb_probe_interface(struct device *dev)
265{
Alan Stern8bb54ab2006-07-01 22:08:49 -0400266 struct usb_driver *driver = to_usb_driver(dev->driver);
Kay Sievers55129662009-05-04 19:48:32 +0200267 struct usb_interface *intf = to_usb_interface(dev);
268 struct usb_device *udev = interface_to_usbdev(intf);
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800269 const struct usb_device_id *id;
270 int error = -ENODEV;
271
Harvey Harrison441b62c2008-03-03 16:08:34 -0800272 dev_dbg(dev, "%s\n", __func__);
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800273
Alan Stern78d9a482008-06-23 16:00:40 -0400274 intf->needs_binding = 0;
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800275
Alan Stern7cbe5dc2009-06-29 10:56:54 -0400276 if (usb_device_is_owned(udev))
Alan Stern0f3dda92010-01-08 12:56:04 -0500277 return error;
Alan Stern7cbe5dc2009-06-29 10:56:54 -0400278
Greg Kroah-Hartman2c044a42008-01-30 15:21:33 -0800279 if (udev->authorized == 0) {
280 dev_err(&intf->dev, "Device is not authorized for usage\n");
Alan Stern0f3dda92010-01-08 12:56:04 -0500281 return error;
Greg Kroah-Hartman2c044a42008-01-30 15:21:33 -0800282 }
Inaky Perez-Gonzalez72230ab2007-07-31 20:34:03 -0700283
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800284 id = usb_match_id(intf, driver->id_table);
Greg Kroah-Hartman733260f2005-11-16 13:41:28 -0800285 if (!id)
286 id = usb_match_dynamic_id(intf, driver);
Alan Stern0f3dda92010-01-08 12:56:04 -0500287 if (!id)
288 return error;
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800289
Alan Stern0f3dda92010-01-08 12:56:04 -0500290 dev_dbg(dev, "%s - got id\n", __func__);
Alan Stern645daaa2006-08-30 15:47:02 -0400291
Alan Stern0f3dda92010-01-08 12:56:04 -0500292 error = usb_autoresume_device(udev);
293 if (error)
294 return error;
Alan Stern645daaa2006-08-30 15:47:02 -0400295
Alan Stern0f3dda92010-01-08 12:56:04 -0500296 /* Interface "power state" doesn't correspond to any hardware
297 * state whatsoever. We use it to record when it's bound to
298 * a driver that may start I/0: it's not frozen/quiesced.
299 */
300 mark_active(intf);
301 intf->condition = USB_INTERFACE_BINDING;
Alan Stern645daaa2006-08-30 15:47:02 -0400302
Alan Stern0f3dda92010-01-08 12:56:04 -0500303 /* The interface should always appear to be in use
304 * unless the driver suports autosuspend.
305 */
306 atomic_set(&intf->pm_usage_cnt, !driver->supports_autosuspend);
Oliver Neukum1e5ea5e2009-08-27 16:46:56 +0200307
Alan Stern0f3dda92010-01-08 12:56:04 -0500308 /* Carry out a deferred switch to altsetting 0 */
309 if (intf->needs_altsetting0) {
310 error = usb_set_interface(udev, intf->altsetting[0].
311 desc.bInterfaceNumber, 0);
312 if (error < 0)
Oliver Neukum1e5ea5e2009-08-27 16:46:56 +0200313 goto err;
Alan Stern0f3dda92010-01-08 12:56:04 -0500314 intf->needs_altsetting0 = 0;
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800315 }
316
Alan Stern0f3dda92010-01-08 12:56:04 -0500317 error = driver->probe(intf, id);
318 if (error)
319 goto err;
320
321 intf->condition = USB_INTERFACE_BOUND;
322 usb_autosuspend_device(udev);
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800323 return error;
Oliver Neukum1e5ea5e2009-08-27 16:46:56 +0200324
Alan Stern0f3dda92010-01-08 12:56:04 -0500325 err:
Oliver Neukum1e5ea5e2009-08-27 16:46:56 +0200326 mark_quiesced(intf);
327 intf->needs_remote_wakeup = 0;
328 intf->condition = USB_INTERFACE_UNBOUND;
329 usb_cancel_queued_reset(intf);
330 usb_autosuspend_device(udev);
331 return error;
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800332}
333
Alan Stern8bb54ab2006-07-01 22:08:49 -0400334/* called from driver core with dev locked */
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800335static int usb_unbind_interface(struct device *dev)
336{
Alan Stern8bb54ab2006-07-01 22:08:49 -0400337 struct usb_driver *driver = to_usb_driver(dev->driver);
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800338 struct usb_interface *intf = to_usb_interface(dev);
Alan Stern645daaa2006-08-30 15:47:02 -0400339 struct usb_device *udev;
Oliver Neukum1e5ea5e2009-08-27 16:46:56 +0200340 int error, r;
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800341
342 intf->condition = USB_INTERFACE_UNBINDING;
343
Alan Stern645daaa2006-08-30 15:47:02 -0400344 /* Autoresume for set_interface call below */
345 udev = interface_to_usbdev(intf);
Alan Stern94fcda12006-11-20 11:38:46 -0500346 error = usb_autoresume_device(udev);
Alan Stern645daaa2006-08-30 15:47:02 -0400347
Alan Stern9da82bd2008-05-08 11:54:37 -0400348 /* Terminate all URBs for this interface unless the driver
349 * supports "soft" unbinding.
350 */
351 if (!driver->soft_unbind)
Alan Sternddeac4e72009-01-15 17:03:33 -0500352 usb_disable_interface(udev, intf, false);
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800353
Alan Stern8bb54ab2006-07-01 22:08:49 -0400354 driver->disconnect(intf);
Inaky Perez-Gonzalezdc023dc2008-11-13 10:31:35 -0800355 usb_cancel_queued_reset(intf);
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800356
Alan Stern55151d72008-08-12 14:33:59 -0400357 /* Reset other interface state.
358 * We cannot do a Set-Interface if the device is suspended or
359 * if it is prepared for a system sleep (since installing a new
360 * altsetting means creating new endpoint device entries).
361 * When either of these happens, defer the Set-Interface.
362 */
Alan Stern2caf7fc2008-12-31 11:31:33 -0500363 if (intf->cur_altsetting->desc.bAlternateSetting == 0) {
364 /* Already in altsetting 0 so skip Set-Interface.
365 * Just re-enable it without affecting the endpoint toggles.
366 */
367 usb_enable_interface(udev, intf, false);
Oliver Neukum1e5ea5e2009-08-27 16:46:56 +0200368 } else if (!error && intf->dev.power.status == DPM_ON) {
369 r = usb_set_interface(udev, intf->altsetting[0].
Alan Stern55151d72008-08-12 14:33:59 -0400370 desc.bInterfaceNumber, 0);
Oliver Neukum1e5ea5e2009-08-27 16:46:56 +0200371 if (r < 0)
372 intf->needs_altsetting0 = 1;
373 } else {
Alan Stern55151d72008-08-12 14:33:59 -0400374 intf->needs_altsetting0 = 1;
Oliver Neukum1e5ea5e2009-08-27 16:46:56 +0200375 }
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800376 usb_set_intfdata(intf, NULL);
Alan Stern645daaa2006-08-30 15:47:02 -0400377
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800378 intf->condition = USB_INTERFACE_UNBOUND;
379 mark_quiesced(intf);
Alan Stern645daaa2006-08-30 15:47:02 -0400380 intf->needs_remote_wakeup = 0;
381
382 if (!error)
Alan Stern94fcda12006-11-20 11:38:46 -0500383 usb_autosuspend_device(udev);
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800384
385 return 0;
386}
387
Alan Stern36e56a32006-07-01 22:08:06 -0400388/**
389 * usb_driver_claim_interface - bind a driver to an interface
390 * @driver: the driver to be bound
391 * @iface: the interface to which it will be bound; must be in the
392 * usb device's active configuration
393 * @priv: driver data associated with that interface
394 *
395 * This is used by usb device drivers that need to claim more than one
396 * interface on a device when probing (audio and acm are current examples).
397 * No device driver should directly modify internal usb_interface or
398 * usb_device structure members.
399 *
400 * Few drivers should need to use this routine, since the most natural
401 * way to bind to an interface is to return the private data from
402 * the driver's probe() method.
403 *
Greg Kroah-Hartman341487a82007-04-09 11:52:31 -0400404 * Callers must own the device lock, so driver probe() entries don't need
405 * extra locking, but other call contexts may need to explicitly claim that
406 * lock.
Alan Stern36e56a32006-07-01 22:08:06 -0400407 */
408int usb_driver_claim_interface(struct usb_driver *driver,
Greg Kroah-Hartman2c044a42008-01-30 15:21:33 -0800409 struct usb_interface *iface, void *priv)
Alan Stern36e56a32006-07-01 22:08:06 -0400410{
411 struct device *dev = &iface->dev;
Alan Stern645daaa2006-08-30 15:47:02 -0400412 struct usb_device *udev = interface_to_usbdev(iface);
Greg Kroah-Hartman1b21d5e2006-08-28 11:43:25 -0700413 int retval = 0;
Alan Stern36e56a32006-07-01 22:08:06 -0400414
415 if (dev->driver)
416 return -EBUSY;
417
Alan Stern8bb54ab2006-07-01 22:08:49 -0400418 dev->driver = &driver->drvwrap.driver;
Alan Stern36e56a32006-07-01 22:08:06 -0400419 usb_set_intfdata(iface, priv);
Alan Stern78d9a482008-06-23 16:00:40 -0400420 iface->needs_binding = 0;
Alan Stern645daaa2006-08-30 15:47:02 -0400421
Alan Sterne0318eb2006-09-26 14:50:20 -0400422 usb_pm_lock(udev);
Alan Stern36e56a32006-07-01 22:08:06 -0400423 iface->condition = USB_INTERFACE_BOUND;
424 mark_active(iface);
Alan Sternccf5b802009-06-29 11:00:01 -0400425 atomic_set(&iface->pm_usage_cnt, !driver->supports_autosuspend);
Alan Sterne0318eb2006-09-26 14:50:20 -0400426 usb_pm_unlock(udev);
Alan Stern36e56a32006-07-01 22:08:06 -0400427
428 /* if interface was already added, bind now; else let
429 * the future device_add() bind it, bypassing probe()
430 */
431 if (device_is_registered(dev))
Greg Kroah-Hartman1b21d5e2006-08-28 11:43:25 -0700432 retval = device_bind_driver(dev);
Alan Stern36e56a32006-07-01 22:08:06 -0400433
Greg Kroah-Hartman1b21d5e2006-08-28 11:43:25 -0700434 return retval;
Alan Stern36e56a32006-07-01 22:08:06 -0400435}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -0600436EXPORT_SYMBOL_GPL(usb_driver_claim_interface);
Alan Stern36e56a32006-07-01 22:08:06 -0400437
438/**
439 * usb_driver_release_interface - unbind a driver from an interface
440 * @driver: the driver to be unbound
441 * @iface: the interface from which it will be unbound
442 *
443 * This can be used by drivers to release an interface without waiting
444 * for their disconnect() methods to be called. In typical cases this
445 * also causes the driver disconnect() method to be called.
446 *
447 * This call is synchronous, and may not be used in an interrupt context.
Greg Kroah-Hartman341487a82007-04-09 11:52:31 -0400448 * Callers must own the device lock, so driver disconnect() entries don't
449 * need extra locking, but other call contexts may need to explicitly claim
450 * that lock.
Alan Stern36e56a32006-07-01 22:08:06 -0400451 */
452void usb_driver_release_interface(struct usb_driver *driver,
453 struct usb_interface *iface)
454{
455 struct device *dev = &iface->dev;
456
457 /* this should never happen, don't release something that's not ours */
Alan Stern8bb54ab2006-07-01 22:08:49 -0400458 if (!dev->driver || dev->driver != &driver->drvwrap.driver)
Alan Stern36e56a32006-07-01 22:08:06 -0400459 return;
460
461 /* don't release from within disconnect() */
462 if (iface->condition != USB_INTERFACE_BOUND)
463 return;
Alan Stern91f8d062009-04-16 15:35:09 -0400464 iface->condition = USB_INTERFACE_UNBINDING;
Alan Stern36e56a32006-07-01 22:08:06 -0400465
Alan Stern91f8d062009-04-16 15:35:09 -0400466 /* Release via the driver core only if the interface
467 * has already been registered
468 */
Alan Stern36e56a32006-07-01 22:08:06 -0400469 if (device_is_registered(dev)) {
Alan Stern36e56a32006-07-01 22:08:06 -0400470 device_release_driver(dev);
Inaky Perez-Gonzalezdc023dc2008-11-13 10:31:35 -0800471 } else {
Alan Stern91f8d062009-04-16 15:35:09 -0400472 down(&dev->sem);
473 usb_unbind_interface(dev);
474 dev->driver = NULL;
475 up(&dev->sem);
Alan Stern36e56a32006-07-01 22:08:06 -0400476 }
Alan Stern36e56a32006-07-01 22:08:06 -0400477}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -0600478EXPORT_SYMBOL_GPL(usb_driver_release_interface);
Alan Stern36e56a32006-07-01 22:08:06 -0400479
Greg Kroah-Hartman733260f2005-11-16 13:41:28 -0800480/* returns 0 if no match, 1 if match */
Greg Kroah-Hartmanbb417022007-01-26 14:26:21 +0100481int usb_match_device(struct usb_device *dev, const struct usb_device_id *id)
Greg Kroah-Hartman733260f2005-11-16 13:41:28 -0800482{
Greg Kroah-Hartman733260f2005-11-16 13:41:28 -0800483 if ((id->match_flags & USB_DEVICE_ID_MATCH_VENDOR) &&
484 id->idVendor != le16_to_cpu(dev->descriptor.idVendor))
485 return 0;
486
487 if ((id->match_flags & USB_DEVICE_ID_MATCH_PRODUCT) &&
488 id->idProduct != le16_to_cpu(dev->descriptor.idProduct))
489 return 0;
490
491 /* No need to test id->bcdDevice_lo != 0, since 0 is never
492 greater than any unsigned number. */
493 if ((id->match_flags & USB_DEVICE_ID_MATCH_DEV_LO) &&
494 (id->bcdDevice_lo > le16_to_cpu(dev->descriptor.bcdDevice)))
495 return 0;
496
497 if ((id->match_flags & USB_DEVICE_ID_MATCH_DEV_HI) &&
498 (id->bcdDevice_hi < le16_to_cpu(dev->descriptor.bcdDevice)))
499 return 0;
500
501 if ((id->match_flags & USB_DEVICE_ID_MATCH_DEV_CLASS) &&
502 (id->bDeviceClass != dev->descriptor.bDeviceClass))
503 return 0;
504
505 if ((id->match_flags & USB_DEVICE_ID_MATCH_DEV_SUBCLASS) &&
Greg Kroah-Hartman2c044a42008-01-30 15:21:33 -0800506 (id->bDeviceSubClass != dev->descriptor.bDeviceSubClass))
Greg Kroah-Hartman733260f2005-11-16 13:41:28 -0800507 return 0;
508
509 if ((id->match_flags & USB_DEVICE_ID_MATCH_DEV_PROTOCOL) &&
510 (id->bDeviceProtocol != dev->descriptor.bDeviceProtocol))
511 return 0;
512
Greg Kroah-Hartmanbb417022007-01-26 14:26:21 +0100513 return 1;
514}
515
516/* returns 0 if no match, 1 if match */
517int usb_match_one_id(struct usb_interface *interface,
518 const struct usb_device_id *id)
519{
520 struct usb_host_interface *intf;
521 struct usb_device *dev;
522
523 /* proc_connectinfo in devio.c may call us with id == NULL. */
524 if (id == NULL)
525 return 0;
526
527 intf = interface->cur_altsetting;
528 dev = interface_to_usbdev(interface);
529
530 if (!usb_match_device(dev, id))
531 return 0;
532
Alan Stern93c8bf42006-10-18 16:41:51 -0400533 /* The interface class, subclass, and protocol should never be
534 * checked for a match if the device class is Vendor Specific,
535 * unless the match record specifies the Vendor ID. */
536 if (dev->descriptor.bDeviceClass == USB_CLASS_VENDOR_SPEC &&
537 !(id->match_flags & USB_DEVICE_ID_MATCH_VENDOR) &&
538 (id->match_flags & (USB_DEVICE_ID_MATCH_INT_CLASS |
539 USB_DEVICE_ID_MATCH_INT_SUBCLASS |
540 USB_DEVICE_ID_MATCH_INT_PROTOCOL)))
541 return 0;
542
Greg Kroah-Hartman733260f2005-11-16 13:41:28 -0800543 if ((id->match_flags & USB_DEVICE_ID_MATCH_INT_CLASS) &&
544 (id->bInterfaceClass != intf->desc.bInterfaceClass))
545 return 0;
546
547 if ((id->match_flags & USB_DEVICE_ID_MATCH_INT_SUBCLASS) &&
548 (id->bInterfaceSubClass != intf->desc.bInterfaceSubClass))
549 return 0;
550
551 if ((id->match_flags & USB_DEVICE_ID_MATCH_INT_PROTOCOL) &&
552 (id->bInterfaceProtocol != intf->desc.bInterfaceProtocol))
553 return 0;
554
555 return 1;
556}
Greg Kroah-Hartman93bacef2006-12-17 21:50:23 +0100557EXPORT_SYMBOL_GPL(usb_match_one_id);
558
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800559/**
560 * usb_match_id - find first usb_device_id matching device or interface
561 * @interface: the interface of interest
562 * @id: array of usb_device_id structures, terminated by zero entry
563 *
564 * usb_match_id searches an array of usb_device_id's and returns
565 * the first one matching the device or interface, or null.
566 * This is used when binding (or rebinding) a driver to an interface.
567 * Most USB device drivers will use this indirectly, through the usb core,
568 * but some layered driver frameworks use it directly.
569 * These device tables are exported with MODULE_DEVICE_TABLE, through
570 * modutils, to support the driver loading functionality of USB hotplugging.
571 *
572 * What Matches:
573 *
574 * The "match_flags" element in a usb_device_id controls which
575 * members are used. If the corresponding bit is set, the
576 * value in the device_id must match its corresponding member
577 * in the device or interface descriptor, or else the device_id
578 * does not match.
579 *
580 * "driver_info" is normally used only by device drivers,
581 * but you can create a wildcard "matches anything" usb_device_id
582 * as a driver's "modules.usbmap" entry if you provide an id with
583 * only a nonzero "driver_info" field. If you do this, the USB device
584 * driver's probe() routine should use additional intelligence to
585 * decide whether to bind to the specified interface.
586 *
587 * What Makes Good usb_device_id Tables:
588 *
589 * The match algorithm is very simple, so that intelligence in
590 * driver selection must come from smart driver id records.
591 * Unless you have good reasons to use another selection policy,
592 * provide match elements only in related groups, and order match
593 * specifiers from specific to general. Use the macros provided
594 * for that purpose if you can.
595 *
596 * The most specific match specifiers use device descriptor
597 * data. These are commonly used with product-specific matches;
598 * the USB_DEVICE macro lets you provide vendor and product IDs,
599 * and you can also match against ranges of product revisions.
600 * These are widely used for devices with application or vendor
601 * specific bDeviceClass values.
602 *
603 * Matches based on device class/subclass/protocol specifications
604 * are slightly more general; use the USB_DEVICE_INFO macro, or
605 * its siblings. These are used with single-function devices
606 * where bDeviceClass doesn't specify that each interface has
607 * its own class.
608 *
609 * Matches based on interface class/subclass/protocol are the
610 * most general; they let drivers bind to any interface on a
611 * multiple-function device. Use the USB_INTERFACE_INFO
612 * macro, or its siblings, to match class-per-interface style
Alan Stern93c8bf42006-10-18 16:41:51 -0400613 * devices (as recorded in bInterfaceClass).
614 *
615 * Note that an entry created by USB_INTERFACE_INFO won't match
616 * any interface if the device class is set to Vendor-Specific.
617 * This is deliberate; according to the USB spec the meanings of
618 * the interface class/subclass/protocol for these devices are also
619 * vendor-specific, and hence matching against a standard product
620 * class wouldn't work anyway. If you really want to use an
621 * interface-based match for such a device, create a match record
622 * that also specifies the vendor ID. (Unforunately there isn't a
623 * standard macro for creating records like this.)
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800624 *
625 * Within those groups, remember that not all combinations are
626 * meaningful. For example, don't give a product version range
627 * without vendor and product IDs; or specify a protocol without
628 * its associated class and subclass.
629 */
630const struct usb_device_id *usb_match_id(struct usb_interface *interface,
631 const struct usb_device_id *id)
632{
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800633 /* proc_connectinfo in devio.c may call us with id == NULL. */
634 if (id == NULL)
635 return NULL;
636
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800637 /* It is important to check that id->driver_info is nonzero,
638 since an entry that is all zeroes except for a nonzero
639 id->driver_info is the way to create an entry that
640 indicates that the driver want to examine every
641 device and interface. */
Greg Kroah-Hartmande6f92b2008-01-28 09:50:12 -0800642 for (; id->idVendor || id->idProduct || id->bDeviceClass ||
643 id->bInterfaceClass || id->driver_info; id++) {
Greg Kroah-Hartman733260f2005-11-16 13:41:28 -0800644 if (usb_match_one_id(interface, id))
645 return id;
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800646 }
647
648 return NULL;
649}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -0600650EXPORT_SYMBOL_GPL(usb_match_id);
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800651
Adrian Bunk8bb22d22006-11-21 22:02:54 +0100652static int usb_device_match(struct device *dev, struct device_driver *drv)
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800653{
Alan Stern8bb54ab2006-07-01 22:08:49 -0400654 /* devices and interfaces are handled separately */
655 if (is_usb_device(dev)) {
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800656
Alan Stern8bb54ab2006-07-01 22:08:49 -0400657 /* interface drivers never match devices */
658 if (!is_usb_device_driver(drv))
659 return 0;
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800660
Alan Stern8bb54ab2006-07-01 22:08:49 -0400661 /* TODO: Add real matching code */
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800662 return 1;
663
Kay Sievers55129662009-05-04 19:48:32 +0200664 } else if (is_usb_interface(dev)) {
Alan Stern8bb54ab2006-07-01 22:08:49 -0400665 struct usb_interface *intf;
666 struct usb_driver *usb_drv;
667 const struct usb_device_id *id;
668
669 /* device drivers never match interfaces */
670 if (is_usb_device_driver(drv))
671 return 0;
672
673 intf = to_usb_interface(dev);
674 usb_drv = to_usb_driver(drv);
675
676 id = usb_match_id(intf, usb_drv->id_table);
677 if (id)
678 return 1;
679
680 id = usb_match_dynamic_id(intf, usb_drv);
681 if (id)
682 return 1;
683 }
684
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800685 return 0;
686}
687
Alan Stern36e56a32006-07-01 22:08:06 -0400688#ifdef CONFIG_HOTPLUG
Kay Sievers7eff2e72007-08-14 15:15:12 +0200689static int usb_uevent(struct device *dev, struct kobj_uevent_env *env)
Alan Stern36e56a32006-07-01 22:08:06 -0400690{
Alan Stern36e56a32006-07-01 22:08:06 -0400691 struct usb_device *usb_dev;
Alan Stern36e56a32006-07-01 22:08:06 -0400692
Alan Stern36e56a32006-07-01 22:08:06 -0400693 /* driver is often null here; dev_dbg() would oops */
Kay Sievers7071a3c2008-05-02 06:02:41 +0200694 pr_debug("usb %s: uevent\n", dev_name(dev));
Alan Stern36e56a32006-07-01 22:08:06 -0400695
Kay Sievers55129662009-05-04 19:48:32 +0200696 if (is_usb_device(dev)) {
Alan Stern782da722006-07-01 22:09:35 -0400697 usb_dev = to_usb_device(dev);
Kay Sievers55129662009-05-04 19:48:32 +0200698 } else if (is_usb_interface(dev)) {
Kay Sievers9f8b17e2007-03-13 15:59:31 +0100699 struct usb_interface *intf = to_usb_interface(dev);
Kay Sievers55129662009-05-04 19:48:32 +0200700
Alan Stern8bb54ab2006-07-01 22:08:49 -0400701 usb_dev = interface_to_usbdev(intf);
Kay Sievers55129662009-05-04 19:48:32 +0200702 } else {
703 return 0;
Alan Stern8bb54ab2006-07-01 22:08:49 -0400704 }
Alan Stern36e56a32006-07-01 22:08:06 -0400705
706 if (usb_dev->devnum < 0) {
Kay Sievers7071a3c2008-05-02 06:02:41 +0200707 pr_debug("usb %s: already deleted?\n", dev_name(dev));
Alan Stern36e56a32006-07-01 22:08:06 -0400708 return -ENODEV;
709 }
710 if (!usb_dev->bus) {
Kay Sievers7071a3c2008-05-02 06:02:41 +0200711 pr_debug("usb %s: bus removed?\n", dev_name(dev));
Alan Stern36e56a32006-07-01 22:08:06 -0400712 return -ENODEV;
713 }
714
715#ifdef CONFIG_USB_DEVICEFS
716 /* If this is available, userspace programs can directly read
717 * all the device descriptors we don't tell them about. Or
Kay Sievers9f8b17e2007-03-13 15:59:31 +0100718 * act as usermode drivers.
Alan Stern36e56a32006-07-01 22:08:06 -0400719 */
Kay Sievers7eff2e72007-08-14 15:15:12 +0200720 if (add_uevent_var(env, "DEVICE=/proc/bus/usb/%03d/%03d",
Alan Stern36e56a32006-07-01 22:08:06 -0400721 usb_dev->bus->busnum, usb_dev->devnum))
722 return -ENOMEM;
723#endif
724
725 /* per-device configurations are common */
Kay Sievers7eff2e72007-08-14 15:15:12 +0200726 if (add_uevent_var(env, "PRODUCT=%x/%x/%x",
Alan Stern36e56a32006-07-01 22:08:06 -0400727 le16_to_cpu(usb_dev->descriptor.idVendor),
728 le16_to_cpu(usb_dev->descriptor.idProduct),
729 le16_to_cpu(usb_dev->descriptor.bcdDevice)))
730 return -ENOMEM;
731
732 /* class-based driver binding models */
Kay Sievers7eff2e72007-08-14 15:15:12 +0200733 if (add_uevent_var(env, "TYPE=%d/%d/%d",
Alan Stern36e56a32006-07-01 22:08:06 -0400734 usb_dev->descriptor.bDeviceClass,
735 usb_dev->descriptor.bDeviceSubClass,
736 usb_dev->descriptor.bDeviceProtocol))
737 return -ENOMEM;
738
Alan Stern36e56a32006-07-01 22:08:06 -0400739 return 0;
740}
741
742#else
743
Kay Sievers7eff2e72007-08-14 15:15:12 +0200744static int usb_uevent(struct device *dev, struct kobj_uevent_env *env)
Alan Stern36e56a32006-07-01 22:08:06 -0400745{
746 return -ENODEV;
747}
Alan Stern36e56a32006-07-01 22:08:06 -0400748#endif /* CONFIG_HOTPLUG */
749
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800750/**
Alan Stern8bb54ab2006-07-01 22:08:49 -0400751 * usb_register_device_driver - register a USB device (not interface) driver
752 * @new_udriver: USB operations for the device driver
Greg Kroah-Hartman2143acc2005-11-21 14:53:03 -0800753 * @owner: module owner of this driver.
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800754 *
Alan Stern8bb54ab2006-07-01 22:08:49 -0400755 * Registers a USB device driver with the USB core. The list of
756 * unattached devices will be rescanned whenever a new driver is
757 * added, allowing the new driver to attach to any recognized devices.
758 * Returns a negative error code on failure and 0 on success.
759 */
760int usb_register_device_driver(struct usb_device_driver *new_udriver,
761 struct module *owner)
762{
763 int retval = 0;
764
765 if (usb_disabled())
766 return -ENODEV;
767
768 new_udriver->drvwrap.for_devices = 1;
769 new_udriver->drvwrap.driver.name = (char *) new_udriver->name;
770 new_udriver->drvwrap.driver.bus = &usb_bus_type;
771 new_udriver->drvwrap.driver.probe = usb_probe_device;
772 new_udriver->drvwrap.driver.remove = usb_unbind_device;
773 new_udriver->drvwrap.driver.owner = owner;
774
775 retval = driver_register(&new_udriver->drvwrap.driver);
776
777 if (!retval) {
778 pr_info("%s: registered new device driver %s\n",
779 usbcore_name, new_udriver->name);
780 usbfs_update_special();
781 } else {
782 printk(KERN_ERR "%s: error %d registering device "
783 " driver %s\n",
784 usbcore_name, retval, new_udriver->name);
785 }
786
787 return retval;
788}
789EXPORT_SYMBOL_GPL(usb_register_device_driver);
790
791/**
792 * usb_deregister_device_driver - unregister a USB device (not interface) driver
793 * @udriver: USB operations of the device driver to unregister
794 * Context: must be able to sleep
795 *
796 * Unlinks the specified driver from the internal USB driver list.
797 */
798void usb_deregister_device_driver(struct usb_device_driver *udriver)
799{
800 pr_info("%s: deregistering device driver %s\n",
801 usbcore_name, udriver->name);
802
803 driver_unregister(&udriver->drvwrap.driver);
804 usbfs_update_special();
805}
806EXPORT_SYMBOL_GPL(usb_deregister_device_driver);
807
808/**
809 * usb_register_driver - register a USB interface driver
810 * @new_driver: USB operations for the interface driver
811 * @owner: module owner of this driver.
Randy Dunlap892705a2007-02-10 14:41:41 -0800812 * @mod_name: module name string
Alan Stern8bb54ab2006-07-01 22:08:49 -0400813 *
814 * Registers a USB interface driver with the USB core. The list of
815 * unattached interfaces will be rescanned whenever a new driver is
816 * added, allowing the new driver to attach to any recognized interfaces.
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800817 * Returns a negative error code on failure and 0 on success.
818 *
819 * NOTE: if you want your driver to use the USB major number, you must call
820 * usb_register_dev() to enable that functionality. This function no longer
821 * takes care of that.
822 */
Greg Kroah-Hartman80f745f2007-01-15 11:50:02 -0800823int usb_register_driver(struct usb_driver *new_driver, struct module *owner,
824 const char *mod_name)
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800825{
826 int retval = 0;
827
828 if (usb_disabled())
829 return -ENODEV;
830
Alan Stern8bb54ab2006-07-01 22:08:49 -0400831 new_driver->drvwrap.for_devices = 0;
832 new_driver->drvwrap.driver.name = (char *) new_driver->name;
833 new_driver->drvwrap.driver.bus = &usb_bus_type;
834 new_driver->drvwrap.driver.probe = usb_probe_interface;
835 new_driver->drvwrap.driver.remove = usb_unbind_interface;
836 new_driver->drvwrap.driver.owner = owner;
Greg Kroah-Hartman80f745f2007-01-15 11:50:02 -0800837 new_driver->drvwrap.driver.mod_name = mod_name;
Greg Kroah-Hartman733260f2005-11-16 13:41:28 -0800838 spin_lock_init(&new_driver->dynids.lock);
839 INIT_LIST_HEAD(&new_driver->dynids.list);
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800840
Alan Stern8bb54ab2006-07-01 22:08:49 -0400841 retval = driver_register(&new_driver->drvwrap.driver);
CHENG Renquan0c7a2b72009-11-22 01:28:52 +0800842 if (retval)
843 goto out;
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800844
CHENG Renquan0c7a2b72009-11-22 01:28:52 +0800845 usbfs_update_special();
846
847 retval = usb_create_newid_file(new_driver);
848 if (retval)
849 goto out_newid;
850
851 retval = usb_create_removeid_file(new_driver);
852 if (retval)
853 goto out_removeid;
854
855 pr_info("%s: registered new interface driver %s\n",
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800856 usbcore_name, new_driver->name);
CHENG Renquan0c7a2b72009-11-22 01:28:52 +0800857
858out:
859 return retval;
860
861out_removeid:
862 usb_remove_newid_file(new_driver);
863out_newid:
864 driver_unregister(&new_driver->drvwrap.driver);
865
866 printk(KERN_ERR "%s: error %d registering interface "
Alan Stern8bb54ab2006-07-01 22:08:49 -0400867 " driver %s\n",
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800868 usbcore_name, retval, new_driver->name);
CHENG Renquan0c7a2b72009-11-22 01:28:52 +0800869 goto out;
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800870}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -0600871EXPORT_SYMBOL_GPL(usb_register_driver);
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800872
873/**
Alan Stern8bb54ab2006-07-01 22:08:49 -0400874 * usb_deregister - unregister a USB interface driver
875 * @driver: USB operations of the interface driver to unregister
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800876 * Context: must be able to sleep
877 *
878 * Unlinks the specified driver from the internal USB driver list.
879 *
880 * NOTE: If you called usb_register_dev(), you still need to call
881 * usb_deregister_dev() to clean up your driver's allocated minor numbers,
882 * this * call will no longer do it for you.
883 */
884void usb_deregister(struct usb_driver *driver)
885{
Alan Stern8bb54ab2006-07-01 22:08:49 -0400886 pr_info("%s: deregistering interface driver %s\n",
887 usbcore_name, driver->name);
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800888
CHENG Renquan0c7a2b72009-11-22 01:28:52 +0800889 usb_remove_removeid_file(driver);
Greg Kroah-Hartmanba9dc652005-11-16 13:41:28 -0800890 usb_remove_newid_file(driver);
Greg Kroah-Hartman733260f2005-11-16 13:41:28 -0800891 usb_free_dynids(driver);
Alan Stern8bb54ab2006-07-01 22:08:49 -0400892 driver_unregister(&driver->drvwrap.driver);
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800893
894 usbfs_update_special();
895}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -0600896EXPORT_SYMBOL_GPL(usb_deregister);
Alan Stern36e56a32006-07-01 22:08:06 -0400897
Alan Stern78d9a482008-06-23 16:00:40 -0400898/* Forced unbinding of a USB interface driver, either because
899 * it doesn't support pre_reset/post_reset/reset_resume or
900 * because it doesn't support suspend/resume.
901 *
902 * The caller must hold @intf's device's lock, but not its pm_mutex
903 * and not @intf->dev.sem.
904 */
905void usb_forced_unbind_intf(struct usb_interface *intf)
906{
907 struct usb_driver *driver = to_usb_driver(intf->dev.driver);
908
909 dev_dbg(&intf->dev, "forced unbind\n");
910 usb_driver_release_interface(driver, intf);
911
912 /* Mark the interface for later rebinding */
913 intf->needs_binding = 1;
914}
915
916/* Delayed forced unbinding of a USB interface driver and scan
917 * for rebinding.
918 *
919 * The caller must hold @intf's device's lock, but not its pm_mutex
920 * and not @intf->dev.sem.
921 *
Alan Stern5096aed2008-08-12 14:34:14 -0400922 * Note: Rebinds will be skipped if a system sleep transition is in
923 * progress and the PM "complete" callback hasn't occurred yet.
Alan Stern78d9a482008-06-23 16:00:40 -0400924 */
925void usb_rebind_intf(struct usb_interface *intf)
926{
927 int rc;
928
929 /* Delayed unbind of an existing driver */
930 if (intf->dev.driver) {
931 struct usb_driver *driver =
932 to_usb_driver(intf->dev.driver);
933
934 dev_dbg(&intf->dev, "forced unbind\n");
935 usb_driver_release_interface(driver, intf);
936 }
937
938 /* Try to rebind the interface */
Alan Stern5096aed2008-08-12 14:34:14 -0400939 if (intf->dev.power.status == DPM_ON) {
940 intf->needs_binding = 0;
941 rc = device_attach(&intf->dev);
942 if (rc < 0)
943 dev_warn(&intf->dev, "rebind failed: %d\n", rc);
944 }
Alan Stern78d9a482008-06-23 16:00:40 -0400945}
946
Alan Stern9ff78432008-08-07 13:04:51 -0400947#ifdef CONFIG_PM
948
Alan Stern78d9a482008-06-23 16:00:40 -0400949#define DO_UNBIND 0
950#define DO_REBIND 1
951
952/* Unbind drivers for @udev's interfaces that don't support suspend/resume,
953 * or rebind interfaces that have been unbound, according to @action.
954 *
955 * The caller must hold @udev's device lock.
Alan Stern78d9a482008-06-23 16:00:40 -0400956 */
957static void do_unbind_rebind(struct usb_device *udev, int action)
958{
959 struct usb_host_config *config;
960 int i;
961 struct usb_interface *intf;
962 struct usb_driver *drv;
963
964 config = udev->actconfig;
965 if (config) {
966 for (i = 0; i < config->desc.bNumInterfaces; ++i) {
967 intf = config->interface[i];
968 switch (action) {
969 case DO_UNBIND:
970 if (intf->dev.driver) {
971 drv = to_usb_driver(intf->dev.driver);
972 if (!drv->suspend || !drv->resume)
973 usb_forced_unbind_intf(intf);
974 }
975 break;
976 case DO_REBIND:
Alan Stern5096aed2008-08-12 14:34:14 -0400977 if (intf->needs_binding)
Alan Stern78d9a482008-06-23 16:00:40 -0400978 usb_rebind_intf(intf);
Alan Stern78d9a482008-06-23 16:00:40 -0400979 break;
980 }
981 }
982 }
983}
984
Alan Sterne0318eb2006-09-26 14:50:20 -0400985/* Caller has locked udev's pm_mutex */
Stephen Hemmingerd5ec1682006-11-14 10:06:17 -0800986static int usb_suspend_device(struct usb_device *udev, pm_message_t msg)
Alan Stern36e56a32006-07-01 22:08:06 -0400987{
Alan Stern782da722006-07-01 22:09:35 -0400988 struct usb_device_driver *udriver;
Alan Stern2bf40862006-07-01 22:12:19 -0400989 int status = 0;
Alan Stern36e56a32006-07-01 22:08:06 -0400990
Alan Stern114b3682006-07-01 22:13:04 -0400991 if (udev->state == USB_STATE_NOTATTACHED ||
992 udev->state == USB_STATE_SUSPENDED)
993 goto done;
994
Alan Sternb6f64362007-05-04 11:51:54 -0400995 /* For devices that don't have a driver, we do a generic suspend. */
996 if (udev->dev.driver)
997 udriver = to_usb_device_driver(udev->dev.driver);
998 else {
Alan Stern645daaa2006-08-30 15:47:02 -0400999 udev->do_remote_wakeup = 0;
Alan Sternb6f64362007-05-04 11:51:54 -04001000 udriver = &usb_generic_driver;
Alan Stern1c5df7e2006-07-01 22:13:50 -04001001 }
Alan Stern2bf40862006-07-01 22:12:19 -04001002 status = udriver->suspend(udev, msg);
1003
Alan Stern20dfdad2007-05-22 11:50:17 -04001004 done:
Harvey Harrison441b62c2008-03-03 16:08:34 -08001005 dev_vdbg(&udev->dev, "%s: status %d\n", __func__, status);
Alan Stern2bf40862006-07-01 22:12:19 -04001006 return status;
Alan Stern1cc8a252006-07-01 22:10:15 -04001007}
Alan Stern36e56a32006-07-01 22:08:06 -04001008
Alan Sterne0318eb2006-09-26 14:50:20 -04001009/* Caller has locked udev's pm_mutex */
Alan Stern65bfd292008-11-25 16:39:18 -05001010static int usb_resume_device(struct usb_device *udev, pm_message_t msg)
Alan Stern1cc8a252006-07-01 22:10:15 -04001011{
1012 struct usb_device_driver *udriver;
Alan Stern2bf40862006-07-01 22:12:19 -04001013 int status = 0;
Alan Stern1cc8a252006-07-01 22:10:15 -04001014
Alan Stern0458d5b2007-05-04 11:52:20 -04001015 if (udev->state == USB_STATE_NOTATTACHED)
1016 goto done;
Alan Stern1cc8a252006-07-01 22:10:15 -04001017
Alan Stern1c5df7e2006-07-01 22:13:50 -04001018 /* Can't resume it if it doesn't have a driver. */
1019 if (udev->dev.driver == NULL) {
1020 status = -ENOTCONN;
Alan Stern2bf40862006-07-01 22:12:19 -04001021 goto done;
Alan Stern1c5df7e2006-07-01 22:13:50 -04001022 }
1023
Alan Stern6d19c002010-02-12 12:21:11 +01001024 /* Non-root devices on a full/low-speed bus must wait for their
1025 * companion high-speed root hub, in case a handoff is needed.
1026 */
1027 if (!(msg.event & PM_EVENT_AUTO) && udev->parent &&
1028 udev->bus->hs_companion)
1029 device_pm_wait_for_dev(&udev->dev,
1030 &udev->bus->hs_companion->root_hub->dev);
1031
Alan Stern6bc6cff2007-05-04 11:53:03 -04001032 if (udev->quirks & USB_QUIRK_RESET_RESUME)
1033 udev->reset_resume = 1;
1034
Alan Stern1cc8a252006-07-01 22:10:15 -04001035 udriver = to_usb_device_driver(udev->dev.driver);
Alan Stern65bfd292008-11-25 16:39:18 -05001036 status = udriver->resume(udev, msg);
Alan Stern2bf40862006-07-01 22:12:19 -04001037
Alan Stern20dfdad2007-05-22 11:50:17 -04001038 done:
Harvey Harrison441b62c2008-03-03 16:08:34 -08001039 dev_vdbg(&udev->dev, "%s: status %d\n", __func__, status);
Alan Stern2bf40862006-07-01 22:12:19 -04001040 return status;
Alan Stern1cc8a252006-07-01 22:10:15 -04001041}
1042
Alan Sterne0318eb2006-09-26 14:50:20 -04001043/* Caller has locked intf's usb_device's pm mutex */
Alan Stern65605ae2008-08-12 14:33:27 -04001044static int usb_suspend_interface(struct usb_device *udev,
1045 struct usb_interface *intf, pm_message_t msg)
Alan Stern1cc8a252006-07-01 22:10:15 -04001046{
1047 struct usb_driver *driver;
Alan Stern2bf40862006-07-01 22:12:19 -04001048 int status = 0;
Alan Stern1cc8a252006-07-01 22:10:15 -04001049
Alan Stern114b3682006-07-01 22:13:04 -04001050 /* with no hardware, USB interfaces only use FREEZE and ON states */
Alan Stern65605ae2008-08-12 14:33:27 -04001051 if (udev->state == USB_STATE_NOTATTACHED || !is_active(intf))
Alan Stern114b3682006-07-01 22:13:04 -04001052 goto done;
1053
Inaky Perez-Gonzalezdc023dc2008-11-13 10:31:35 -08001054 /* This can happen; see usb_driver_release_interface() */
1055 if (intf->condition == USB_INTERFACE_UNBOUND)
Alan Stern2bf40862006-07-01 22:12:19 -04001056 goto done;
Alan Stern1cc8a252006-07-01 22:10:15 -04001057 driver = to_usb_driver(intf->dev.driver);
Alan Stern36e56a32006-07-01 22:08:06 -04001058
Alan Stern78d9a482008-06-23 16:00:40 -04001059 if (driver->suspend) {
Alan Stern1cc8a252006-07-01 22:10:15 -04001060 status = driver->suspend(intf, msg);
Alan Stern645daaa2006-08-30 15:47:02 -04001061 if (status == 0)
1062 mark_quiesced(intf);
Alan Stern65bfd292008-11-25 16:39:18 -05001063 else if (!(msg.event & PM_EVENT_AUTO))
Alan Stern1cc8a252006-07-01 22:10:15 -04001064 dev_err(&intf->dev, "%s error %d\n",
1065 "suspend", status);
Alan Stern36e56a32006-07-01 22:08:06 -04001066 } else {
Alan Stern78d9a482008-06-23 16:00:40 -04001067 /* Later we will unbind the driver and reprobe */
1068 intf->needs_binding = 1;
1069 dev_warn(&intf->dev, "no %s for driver %s?\n",
1070 "suspend", driver->name);
Alan Stern36e56a32006-07-01 22:08:06 -04001071 mark_quiesced(intf);
Alan Stern36e56a32006-07-01 22:08:06 -04001072 }
Alan Stern2bf40862006-07-01 22:12:19 -04001073
Alan Stern20dfdad2007-05-22 11:50:17 -04001074 done:
Harvey Harrison441b62c2008-03-03 16:08:34 -08001075 dev_vdbg(&intf->dev, "%s: status %d\n", __func__, status);
Alan Stern36e56a32006-07-01 22:08:06 -04001076 return status;
1077}
1078
Alan Stern645daaa2006-08-30 15:47:02 -04001079/* Caller has locked intf's usb_device's pm_mutex */
Alan Stern65605ae2008-08-12 14:33:27 -04001080static int usb_resume_interface(struct usb_device *udev,
Alan Stern65bfd292008-11-25 16:39:18 -05001081 struct usb_interface *intf, pm_message_t msg, int reset_resume)
Alan Stern36e56a32006-07-01 22:08:06 -04001082{
Alan Stern1cc8a252006-07-01 22:10:15 -04001083 struct usb_driver *driver;
Alan Stern2bf40862006-07-01 22:12:19 -04001084 int status = 0;
Alan Stern36e56a32006-07-01 22:08:06 -04001085
Alan Stern65605ae2008-08-12 14:33:27 -04001086 if (udev->state == USB_STATE_NOTATTACHED || is_active(intf))
Alan Stern2bf40862006-07-01 22:12:19 -04001087 goto done;
Alan Stern36e56a32006-07-01 22:08:06 -04001088
Alan Stern645daaa2006-08-30 15:47:02 -04001089 /* Don't let autoresume interfere with unbinding */
1090 if (intf->condition == USB_INTERFACE_UNBINDING)
1091 goto done;
1092
Alan Stern1c5df7e2006-07-01 22:13:50 -04001093 /* Can't resume it if it doesn't have a driver. */
Alan Stern55151d72008-08-12 14:33:59 -04001094 if (intf->condition == USB_INTERFACE_UNBOUND) {
1095
1096 /* Carry out a deferred switch to altsetting 0 */
1097 if (intf->needs_altsetting0 &&
1098 intf->dev.power.status == DPM_ON) {
1099 usb_set_interface(udev, intf->altsetting[0].
1100 desc.bInterfaceNumber, 0);
1101 intf->needs_altsetting0 = 0;
1102 }
Alan Stern2bf40862006-07-01 22:12:19 -04001103 goto done;
Alan Stern55151d72008-08-12 14:33:59 -04001104 }
Alan Stern78d9a482008-06-23 16:00:40 -04001105
1106 /* Don't resume if the interface is marked for rebinding */
1107 if (intf->needs_binding)
1108 goto done;
Alan Stern1cc8a252006-07-01 22:10:15 -04001109 driver = to_usb_driver(intf->dev.driver);
Alan Stern36e56a32006-07-01 22:08:06 -04001110
Alan Sternf07600c2007-05-30 15:38:16 -04001111 if (reset_resume) {
1112 if (driver->reset_resume) {
1113 status = driver->reset_resume(intf);
1114 if (status)
1115 dev_err(&intf->dev, "%s error %d\n",
1116 "reset_resume", status);
1117 } else {
Alan Stern78d9a482008-06-23 16:00:40 -04001118 intf->needs_binding = 1;
Alan Sternf07600c2007-05-30 15:38:16 -04001119 dev_warn(&intf->dev, "no %s for driver %s?\n",
1120 "reset_resume", driver->name);
1121 }
1122 } else {
1123 if (driver->resume) {
1124 status = driver->resume(intf);
1125 if (status)
1126 dev_err(&intf->dev, "%s error %d\n",
1127 "resume", status);
1128 } else {
Alan Stern78d9a482008-06-23 16:00:40 -04001129 intf->needs_binding = 1;
Alan Sternf07600c2007-05-30 15:38:16 -04001130 dev_warn(&intf->dev, "no %s for driver %s?\n",
1131 "resume", driver->name);
1132 }
1133 }
Alan Stern2bf40862006-07-01 22:12:19 -04001134
1135done:
Harvey Harrison441b62c2008-03-03 16:08:34 -08001136 dev_vdbg(&intf->dev, "%s: status %d\n", __func__, status);
Alan Stern78d9a482008-06-23 16:00:40 -04001137 if (status == 0 && intf->condition == USB_INTERFACE_BOUND)
Alan Stern0458d5b2007-05-04 11:52:20 -04001138 mark_active(intf);
Alan Sternf07600c2007-05-30 15:38:16 -04001139
Alan Stern78d9a482008-06-23 16:00:40 -04001140 /* Later we will unbind the driver and/or reprobe, if necessary */
Alan Stern2bf40862006-07-01 22:12:19 -04001141 return status;
Alan Stern36e56a32006-07-01 22:08:06 -04001142}
1143
Alan Stern94fcda12006-11-20 11:38:46 -05001144#ifdef CONFIG_USB_SUSPEND
1145
Alan Sternaf4f7602006-10-30 17:06:45 -05001146/* Internal routine to check whether we may autosuspend a device. */
Alan Sternd1aa3e62007-10-11 16:47:36 -04001147static int autosuspend_check(struct usb_device *udev, int reschedule)
Alan Sternaf4f7602006-10-30 17:06:45 -05001148{
1149 int i;
1150 struct usb_interface *intf;
Alan Sternd1aa3e62007-10-11 16:47:36 -04001151 unsigned long suspend_time, j;
Alan Sternaf4f7602006-10-30 17:06:45 -05001152
Alan Sternb5e795f2007-02-20 15:00:53 -05001153 /* For autosuspend, fail fast if anything is in use or autosuspend
1154 * is disabled. Also fail if any interfaces require remote wakeup
1155 * but it isn't available.
1156 */
Alan Sternaf4f7602006-10-30 17:06:45 -05001157 if (udev->pm_usage_cnt > 0)
1158 return -EBUSY;
Alan Stern2add5222007-03-20 14:59:39 -04001159 if (udev->autosuspend_delay < 0 || udev->autosuspend_disabled)
Alan Sternb5e795f2007-02-20 15:00:53 -05001160 return -EPERM;
1161
Alan Stern19410442007-03-27 13:33:59 -04001162 suspend_time = udev->last_busy + udev->autosuspend_delay;
Alan Sternaf4f7602006-10-30 17:06:45 -05001163 if (udev->actconfig) {
1164 for (i = 0; i < udev->actconfig->desc.bNumInterfaces; i++) {
1165 intf = udev->actconfig->interface[i];
1166 if (!is_active(intf))
1167 continue;
Alan Sternccf5b802009-06-29 11:00:01 -04001168 if (atomic_read(&intf->pm_usage_cnt) > 0)
Alan Sternaf4f7602006-10-30 17:06:45 -05001169 return -EBUSY;
1170 if (intf->needs_remote_wakeup &&
1171 !udev->do_remote_wakeup) {
1172 dev_dbg(&udev->dev, "remote wakeup needed "
1173 "for autosuspend\n");
1174 return -EOPNOTSUPP;
1175 }
Alan Sternf07600c2007-05-30 15:38:16 -04001176
1177 /* Don't allow autosuspend if the device will need
1178 * a reset-resume and any of its interface drivers
1179 * doesn't include support.
1180 */
1181 if (udev->quirks & USB_QUIRK_RESET_RESUME) {
1182 struct usb_driver *driver;
1183
1184 driver = to_usb_driver(intf->dev.driver);
Oliver Neukum399d31d2008-09-15 17:29:28 +02001185 if (!driver->reset_resume ||
1186 intf->needs_remote_wakeup)
Alan Sternf07600c2007-05-30 15:38:16 -04001187 return -EOPNOTSUPP;
1188 }
Alan Sternaf4f7602006-10-30 17:06:45 -05001189 }
1190 }
Alan Stern19410442007-03-27 13:33:59 -04001191
1192 /* If everything is okay but the device hasn't been idle for long
Alan Sternd1aa3e62007-10-11 16:47:36 -04001193 * enough, queue a delayed autosuspend request. If the device
1194 * _has_ been idle for long enough and the reschedule flag is set,
1195 * likewise queue a delayed (1 second) autosuspend request.
Alan Stern19410442007-03-27 13:33:59 -04001196 */
Alan Sternd1aa3e62007-10-11 16:47:36 -04001197 j = jiffies;
1198 if (time_before(j, suspend_time))
1199 reschedule = 1;
1200 else
1201 suspend_time = j + HZ;
1202 if (reschedule) {
Alan Stern8c9862e2007-04-11 12:06:16 -04001203 if (!timer_pending(&udev->autosuspend.timer)) {
Alan Stern19410442007-03-27 13:33:59 -04001204 queue_delayed_work(ksuspend_usb_wq, &udev->autosuspend,
Alan Stern4ec06d62008-11-25 16:40:02 -05001205 round_jiffies_up_relative(suspend_time - j));
Alan Sternd1aa3e62007-10-11 16:47:36 -04001206 }
Alan Stern19410442007-03-27 13:33:59 -04001207 return -EAGAIN;
1208 }
Alan Sternaf4f7602006-10-30 17:06:45 -05001209 return 0;
1210}
1211
Alan Stern94fcda12006-11-20 11:38:46 -05001212#else
1213
Alan Sternd1aa3e62007-10-11 16:47:36 -04001214static inline int autosuspend_check(struct usb_device *udev, int reschedule)
Alan Sternef7f6c72007-04-05 16:03:49 -04001215{
1216 return 0;
1217}
Alan Stern94fcda12006-11-20 11:38:46 -05001218
Alan Sternb5e795f2007-02-20 15:00:53 -05001219#endif /* CONFIG_USB_SUSPEND */
Alan Stern94fcda12006-11-20 11:38:46 -05001220
Alan Stern645daaa2006-08-30 15:47:02 -04001221/**
1222 * usb_suspend_both - suspend a USB device and its interfaces
1223 * @udev: the usb_device to suspend
1224 * @msg: Power Management message describing this state transition
1225 *
1226 * This is the central routine for suspending USB devices. It calls the
1227 * suspend methods for all the interface drivers in @udev and then calls
1228 * the suspend method for @udev itself. If an error occurs at any stage,
1229 * all the interfaces which were suspended are resumed so that they remain
1230 * in the same state as the device.
1231 *
Alan Stern65bfd292008-11-25 16:39:18 -05001232 * If an autosuspend is in progress the routine checks first to make sure
1233 * that neither the device itself or any of its active interfaces is in use
1234 * (pm_usage_cnt is greater than 0). If they are, the autosuspend fails.
Alan Stern645daaa2006-08-30 15:47:02 -04001235 *
1236 * If the suspend succeeds, the routine recursively queues an autosuspend
1237 * request for @udev's parent device, thereby propagating the change up
1238 * the device tree. If all of the parent's children are now suspended,
1239 * the parent will autosuspend in turn.
1240 *
1241 * The suspend method calls are subject to mutual exclusion under control
1242 * of @udev's pm_mutex. Many of these calls are also under the protection
1243 * of @udev's device lock (including all requests originating outside the
1244 * USB subsystem), but autosuspend requests generated by a child device or
1245 * interface driver may not be. Usbcore will insure that the method calls
1246 * do not arrive during bind, unbind, or reset operations. However, drivers
1247 * must be prepared to handle suspend calls arriving at unpredictable times.
1248 * The only way to block such calls is to do an autoresume (preventing
1249 * autosuspends) while holding @udev's device lock (preventing outside
1250 * suspends).
1251 *
1252 * The caller must hold @udev->pm_mutex.
1253 *
1254 * This routine can run only in process context.
1255 */
Alan Stern718efa62007-03-09 15:41:13 -05001256static int usb_suspend_both(struct usb_device *udev, pm_message_t msg)
Alan Sterna8e7c562006-07-01 22:11:02 -04001257{
1258 int status = 0;
1259 int i = 0;
1260 struct usb_interface *intf;
Alan Stern645daaa2006-08-30 15:47:02 -04001261 struct usb_device *parent = udev->parent;
Alan Sterna8e7c562006-07-01 22:11:02 -04001262
Alan Stern19410442007-03-27 13:33:59 -04001263 if (udev->state == USB_STATE_NOTATTACHED ||
1264 udev->state == USB_STATE_SUSPENDED)
1265 goto done;
Alan Stern645daaa2006-08-30 15:47:02 -04001266
1267 udev->do_remote_wakeup = device_may_wakeup(&udev->dev);
1268
Alan Stern65bfd292008-11-25 16:39:18 -05001269 if (msg.event & PM_EVENT_AUTO) {
Alan Sternd1aa3e62007-10-11 16:47:36 -04001270 status = autosuspend_check(udev, 0);
Alan Sternaf4f7602006-10-30 17:06:45 -05001271 if (status < 0)
Alan Stern19410442007-03-27 13:33:59 -04001272 goto done;
Alan Stern645daaa2006-08-30 15:47:02 -04001273 }
1274
1275 /* Suspend all the interfaces and then udev itself */
Alan Sterna8e7c562006-07-01 22:11:02 -04001276 if (udev->actconfig) {
1277 for (; i < udev->actconfig->desc.bNumInterfaces; i++) {
1278 intf = udev->actconfig->interface[i];
Alan Stern65605ae2008-08-12 14:33:27 -04001279 status = usb_suspend_interface(udev, intf, msg);
Alan Sterna8e7c562006-07-01 22:11:02 -04001280 if (status != 0)
1281 break;
1282 }
1283 }
Alan Stern5ad4f712007-09-10 11:31:43 -04001284 if (status == 0)
Stephen Hemmingerd5ec1682006-11-14 10:06:17 -08001285 status = usb_suspend_device(udev, msg);
Alan Sterna8e7c562006-07-01 22:11:02 -04001286
1287 /* If the suspend failed, resume interfaces that did get suspended */
1288 if (status != 0) {
Alan Stern65bfd292008-11-25 16:39:18 -05001289 pm_message_t msg2;
1290
1291 msg2.event = msg.event ^ (PM_EVENT_SUSPEND | PM_EVENT_RESUME);
Alan Sterna8e7c562006-07-01 22:11:02 -04001292 while (--i >= 0) {
1293 intf = udev->actconfig->interface[i];
Alan Stern65bfd292008-11-25 16:39:18 -05001294 usb_resume_interface(udev, intf, msg2, 0);
Alan Sterna8e7c562006-07-01 22:11:02 -04001295 }
Alan Stern645daaa2006-08-30 15:47:02 -04001296
Alan Sternef7f6c72007-04-05 16:03:49 -04001297 /* Try another autosuspend when the interfaces aren't busy */
Alan Stern65bfd292008-11-25 16:39:18 -05001298 if (msg.event & PM_EVENT_AUTO)
Alan Sternd1aa3e62007-10-11 16:47:36 -04001299 autosuspend_check(udev, status == -EBUSY);
Alan Sternef7f6c72007-04-05 16:03:49 -04001300
Alan Stern6840d252007-09-10 11:34:26 -04001301 /* If the suspend succeeded then prevent any more URB submissions,
1302 * flush any outstanding URBs, and propagate the suspend up the tree.
1303 */
Alan Sternef7f6c72007-04-05 16:03:49 -04001304 } else {
1305 cancel_delayed_work(&udev->autosuspend);
Alan Stern6840d252007-09-10 11:34:26 -04001306 udev->can_submit = 0;
1307 for (i = 0; i < 16; ++i) {
1308 usb_hcd_flush_endpoint(udev, udev->ep_out[i]);
1309 usb_hcd_flush_endpoint(udev, udev->ep_in[i]);
1310 }
Alan Stern7108f282007-09-20 12:37:50 -04001311
1312 /* If this is just a FREEZE or a PRETHAW, udev might
1313 * not really be suspended. Only true suspends get
1314 * propagated up the device tree.
1315 */
1316 if (parent && udev->state == USB_STATE_SUSPENDED)
Alan Sternef7f6c72007-04-05 16:03:49 -04001317 usb_autosuspend_device(parent);
1318 }
Alan Stern645daaa2006-08-30 15:47:02 -04001319
Alan Stern19410442007-03-27 13:33:59 -04001320 done:
Harvey Harrison441b62c2008-03-03 16:08:34 -08001321 dev_vdbg(&udev->dev, "%s: status %d\n", __func__, status);
Alan Sterna8e7c562006-07-01 22:11:02 -04001322 return status;
1323}
1324
Alan Stern645daaa2006-08-30 15:47:02 -04001325/**
1326 * usb_resume_both - resume a USB device and its interfaces
1327 * @udev: the usb_device to resume
Alan Stern65bfd292008-11-25 16:39:18 -05001328 * @msg: Power Management message describing this state transition
Alan Stern645daaa2006-08-30 15:47:02 -04001329 *
1330 * This is the central routine for resuming USB devices. It calls the
1331 * the resume method for @udev and then calls the resume methods for all
1332 * the interface drivers in @udev.
1333 *
1334 * Before starting the resume, the routine calls itself recursively for
1335 * the parent device of @udev, thereby propagating the change up the device
1336 * tree and assuring that @udev will be able to resume. If the parent is
1337 * unable to resume successfully, the routine fails.
1338 *
1339 * The resume method calls are subject to mutual exclusion under control
1340 * of @udev's pm_mutex. Many of these calls are also under the protection
1341 * of @udev's device lock (including all requests originating outside the
1342 * USB subsystem), but autoresume requests generated by a child device or
1343 * interface driver may not be. Usbcore will insure that the method calls
1344 * do not arrive during bind, unbind, or reset operations. However, drivers
1345 * must be prepared to handle resume calls arriving at unpredictable times.
1346 * The only way to block such calls is to do an autoresume (preventing
1347 * other autoresumes) while holding @udev's device lock (preventing outside
1348 * resumes).
1349 *
1350 * The caller must hold @udev->pm_mutex.
1351 *
1352 * This routine can run only in process context.
1353 */
Alan Stern65bfd292008-11-25 16:39:18 -05001354static int usb_resume_both(struct usb_device *udev, pm_message_t msg)
Alan Sterna8e7c562006-07-01 22:11:02 -04001355{
Alan Stern645daaa2006-08-30 15:47:02 -04001356 int status = 0;
Alan Sterna8e7c562006-07-01 22:11:02 -04001357 int i;
1358 struct usb_interface *intf;
Alan Stern645daaa2006-08-30 15:47:02 -04001359 struct usb_device *parent = udev->parent;
Alan Sterna8e7c562006-07-01 22:11:02 -04001360
Alan Stern645daaa2006-08-30 15:47:02 -04001361 cancel_delayed_work(&udev->autosuspend);
Alan Stern19410442007-03-27 13:33:59 -04001362 if (udev->state == USB_STATE_NOTATTACHED) {
1363 status = -ENODEV;
1364 goto done;
1365 }
Alan Stern6840d252007-09-10 11:34:26 -04001366 udev->can_submit = 1;
Alan Stern645daaa2006-08-30 15:47:02 -04001367
1368 /* Propagate the resume up the tree, if necessary */
1369 if (udev->state == USB_STATE_SUSPENDED) {
1370 if (parent) {
Alan Stern94fcda12006-11-20 11:38:46 -05001371 status = usb_autoresume_device(parent);
Alan Sternee49fb52006-11-22 16:55:54 -05001372 if (status == 0) {
Alan Stern65bfd292008-11-25 16:39:18 -05001373 status = usb_resume_device(udev, msg);
Alan Sternf07600c2007-05-30 15:38:16 -04001374 if (status || udev->state ==
1375 USB_STATE_NOTATTACHED) {
Alan Stern94fcda12006-11-20 11:38:46 -05001376 usb_autosuspend_device(parent);
Alan Sternee49fb52006-11-22 16:55:54 -05001377
1378 /* It's possible usb_resume_device()
1379 * failed after the port was
1380 * unsuspended, causing udev to be
1381 * logically disconnected. We don't
1382 * want usb_disconnect() to autosuspend
1383 * the parent again, so tell it that
1384 * udev disconnected while still
1385 * suspended. */
1386 if (udev->state ==
1387 USB_STATE_NOTATTACHED)
1388 udev->discon_suspended = 1;
1389 }
1390 }
Alan Stern645daaa2006-08-30 15:47:02 -04001391 } else {
1392
1393 /* We can't progagate beyond the USB subsystem,
1394 * so if a root hub's controller is suspended
1395 * then we're stuck. */
Alan Stern65bfd292008-11-25 16:39:18 -05001396 status = usb_resume_device(udev, msg);
Greg Kroah-Hartman2c044a42008-01-30 15:21:33 -08001397 }
Alan Stern6ee0b272008-04-28 11:06:42 -04001398 } else if (udev->reset_resume)
Alan Stern65bfd292008-11-25 16:39:18 -05001399 status = usb_resume_device(udev, msg);
Alan Stern114b3682006-07-01 22:13:04 -04001400
Alan Sterna8e7c562006-07-01 22:11:02 -04001401 if (status == 0 && udev->actconfig) {
1402 for (i = 0; i < udev->actconfig->desc.bNumInterfaces; i++) {
1403 intf = udev->actconfig->interface[i];
Alan Stern65bfd292008-11-25 16:39:18 -05001404 usb_resume_interface(udev, intf, msg,
1405 udev->reset_resume);
Alan Sterna8e7c562006-07-01 22:11:02 -04001406 }
1407 }
Alan Stern645daaa2006-08-30 15:47:02 -04001408
Alan Stern19410442007-03-27 13:33:59 -04001409 done:
Harvey Harrison441b62c2008-03-03 16:08:34 -08001410 dev_vdbg(&udev->dev, "%s: status %d\n", __func__, status);
Alan Stern70a1c9e2008-03-06 17:00:58 -05001411 if (!status)
1412 udev->reset_resume = 0;
Alan Sterna8e7c562006-07-01 22:11:02 -04001413 return status;
1414}
1415
Alan Stern645daaa2006-08-30 15:47:02 -04001416#ifdef CONFIG_USB_SUSPEND
1417
Alan Stern94fcda12006-11-20 11:38:46 -05001418/* Internal routine to adjust a device's usage counter and change
1419 * its autosuspend state.
1420 */
1421static int usb_autopm_do_device(struct usb_device *udev, int inc_usage_cnt)
1422{
1423 int status = 0;
1424
1425 usb_pm_lock(udev);
1426 udev->pm_usage_cnt += inc_usage_cnt;
1427 WARN_ON(udev->pm_usage_cnt < 0);
Alan Stern013d27f2007-08-20 12:18:39 -04001428 if (inc_usage_cnt)
1429 udev->last_busy = jiffies;
Alan Stern94fcda12006-11-20 11:38:46 -05001430 if (inc_usage_cnt >= 0 && udev->pm_usage_cnt > 0) {
Alan Stern19410442007-03-27 13:33:59 -04001431 if (udev->state == USB_STATE_SUSPENDED)
Alan Stern65bfd292008-11-25 16:39:18 -05001432 status = usb_resume_both(udev, PMSG_AUTO_RESUME);
Alan Stern94fcda12006-11-20 11:38:46 -05001433 if (status != 0)
1434 udev->pm_usage_cnt -= inc_usage_cnt;
Alan Stern19410442007-03-27 13:33:59 -04001435 else if (inc_usage_cnt)
1436 udev->last_busy = jiffies;
1437 } else if (inc_usage_cnt <= 0 && udev->pm_usage_cnt <= 0) {
Alan Stern65bfd292008-11-25 16:39:18 -05001438 status = usb_suspend_both(udev, PMSG_AUTO_SUSPEND);
Alan Stern19410442007-03-27 13:33:59 -04001439 }
Alan Stern94fcda12006-11-20 11:38:46 -05001440 usb_pm_unlock(udev);
1441 return status;
1442}
1443
Alan Stern19410442007-03-27 13:33:59 -04001444/* usb_autosuspend_work - callback routine to autosuspend a USB device */
1445void usb_autosuspend_work(struct work_struct *work)
1446{
1447 struct usb_device *udev =
1448 container_of(work, struct usb_device, autosuspend.work);
1449
1450 usb_autopm_do_device(udev, 0);
1451}
1452
Alan Stern9ac39f22008-11-12 16:19:49 -05001453/* usb_autoresume_work - callback routine to autoresume a USB device */
1454void usb_autoresume_work(struct work_struct *work)
1455{
1456 struct usb_device *udev =
1457 container_of(work, struct usb_device, autoresume);
1458
1459 /* Wake it up, let the drivers do their thing, and then put it
1460 * back to sleep.
1461 */
1462 if (usb_autopm_do_device(udev, 1) == 0)
1463 usb_autopm_do_device(udev, -1);
1464}
1465
Alan Stern645daaa2006-08-30 15:47:02 -04001466/**
1467 * usb_autosuspend_device - delayed autosuspend of a USB device and its interfaces
Henrik Kretzschmar701f35a2006-09-25 17:00:56 -07001468 * @udev: the usb_device to autosuspend
Alan Stern645daaa2006-08-30 15:47:02 -04001469 *
1470 * This routine should be called when a core subsystem is finished using
1471 * @udev and wants to allow it to autosuspend. Examples would be when
1472 * @udev's device file in usbfs is closed or after a configuration change.
1473 *
Alan Stern94fcda12006-11-20 11:38:46 -05001474 * @udev's usage counter is decremented. If it or any of the usage counters
1475 * for an active interface is greater than 0, no autosuspend request will be
1476 * queued. (If an interface driver does not support autosuspend then its
1477 * usage counter is permanently positive.) Furthermore, if an interface
1478 * driver requires remote-wakeup capability during autosuspend but remote
1479 * wakeup is disabled, the autosuspend will fail.
Alan Stern645daaa2006-08-30 15:47:02 -04001480 *
1481 * Often the caller will hold @udev's device lock, but this is not
1482 * necessary.
1483 *
1484 * This routine can run only in process context.
1485 */
Alan Stern94fcda12006-11-20 11:38:46 -05001486void usb_autosuspend_device(struct usb_device *udev)
Alan Stern645daaa2006-08-30 15:47:02 -04001487{
Alan Stern94fcda12006-11-20 11:38:46 -05001488 int status;
1489
1490 status = usb_autopm_do_device(udev, -1);
Alan Stern20dfdad2007-05-22 11:50:17 -04001491 dev_vdbg(&udev->dev, "%s: cnt %d\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -08001492 __func__, udev->pm_usage_cnt);
Alan Stern645daaa2006-08-30 15:47:02 -04001493}
1494
1495/**
Alan Stern19c26232007-02-20 15:03:32 -05001496 * usb_try_autosuspend_device - attempt an autosuspend of a USB device and its interfaces
1497 * @udev: the usb_device to autosuspend
1498 *
1499 * This routine should be called when a core subsystem thinks @udev may
1500 * be ready to autosuspend.
1501 *
1502 * @udev's usage counter left unchanged. If it or any of the usage counters
1503 * for an active interface is greater than 0, or autosuspend is not allowed
1504 * for any other reason, no autosuspend request will be queued.
1505 *
1506 * This routine can run only in process context.
1507 */
1508void usb_try_autosuspend_device(struct usb_device *udev)
1509{
1510 usb_autopm_do_device(udev, 0);
Alan Stern20dfdad2007-05-22 11:50:17 -04001511 dev_vdbg(&udev->dev, "%s: cnt %d\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -08001512 __func__, udev->pm_usage_cnt);
Alan Stern19c26232007-02-20 15:03:32 -05001513}
1514
1515/**
Alan Stern645daaa2006-08-30 15:47:02 -04001516 * usb_autoresume_device - immediately autoresume a USB device and its interfaces
Henrik Kretzschmar701f35a2006-09-25 17:00:56 -07001517 * @udev: the usb_device to autoresume
Alan Stern645daaa2006-08-30 15:47:02 -04001518 *
1519 * This routine should be called when a core subsystem wants to use @udev
Alan Stern94fcda12006-11-20 11:38:46 -05001520 * and needs to guarantee that it is not suspended. No autosuspend will
1521 * occur until usb_autosuspend_device is called. (Note that this will not
1522 * prevent suspend events originating in the PM core.) Examples would be
1523 * when @udev's device file in usbfs is opened or when a remote-wakeup
1524 * request is received.
Alan Stern645daaa2006-08-30 15:47:02 -04001525 *
Alan Stern94fcda12006-11-20 11:38:46 -05001526 * @udev's usage counter is incremented to prevent subsequent autosuspends.
1527 * However if the autoresume fails then the usage counter is re-decremented.
Alan Stern645daaa2006-08-30 15:47:02 -04001528 *
1529 * Often the caller will hold @udev's device lock, but this is not
1530 * necessary (and attempting it might cause deadlock).
1531 *
1532 * This routine can run only in process context.
1533 */
Alan Stern94fcda12006-11-20 11:38:46 -05001534int usb_autoresume_device(struct usb_device *udev)
Alan Stern645daaa2006-08-30 15:47:02 -04001535{
1536 int status;
1537
Alan Stern94fcda12006-11-20 11:38:46 -05001538 status = usb_autopm_do_device(udev, 1);
Alan Stern20dfdad2007-05-22 11:50:17 -04001539 dev_vdbg(&udev->dev, "%s: status %d cnt %d\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -08001540 __func__, status, udev->pm_usage_cnt);
Alan Stern645daaa2006-08-30 15:47:02 -04001541 return status;
1542}
1543
Alan Sternaf4f7602006-10-30 17:06:45 -05001544/* Internal routine to adjust an interface's usage counter and change
1545 * its device's autosuspend state.
1546 */
1547static int usb_autopm_do_interface(struct usb_interface *intf,
1548 int inc_usage_cnt)
1549{
1550 struct usb_device *udev = interface_to_usbdev(intf);
1551 int status = 0;
1552
1553 usb_pm_lock(udev);
1554 if (intf->condition == USB_INTERFACE_UNBOUND)
1555 status = -ENODEV;
1556 else {
Alan Sternccf5b802009-06-29 11:00:01 -04001557 atomic_add(inc_usage_cnt, &intf->pm_usage_cnt);
Alan Stern013d27f2007-08-20 12:18:39 -04001558 udev->last_busy = jiffies;
Alan Sternccf5b802009-06-29 11:00:01 -04001559 if (inc_usage_cnt >= 0 &&
1560 atomic_read(&intf->pm_usage_cnt) > 0) {
Alan Stern19410442007-03-27 13:33:59 -04001561 if (udev->state == USB_STATE_SUSPENDED)
Alan Stern65bfd292008-11-25 16:39:18 -05001562 status = usb_resume_both(udev,
1563 PMSG_AUTO_RESUME);
Alan Sternaf4f7602006-10-30 17:06:45 -05001564 if (status != 0)
Alan Sternccf5b802009-06-29 11:00:01 -04001565 atomic_sub(inc_usage_cnt, &intf->pm_usage_cnt);
Alan Stern013d27f2007-08-20 12:18:39 -04001566 else
Alan Stern19410442007-03-27 13:33:59 -04001567 udev->last_busy = jiffies;
Alan Sternccf5b802009-06-29 11:00:01 -04001568 } else if (inc_usage_cnt <= 0 &&
1569 atomic_read(&intf->pm_usage_cnt) <= 0) {
Alan Stern65bfd292008-11-25 16:39:18 -05001570 status = usb_suspend_both(udev, PMSG_AUTO_SUSPEND);
Alan Stern19410442007-03-27 13:33:59 -04001571 }
Alan Sternaf4f7602006-10-30 17:06:45 -05001572 }
1573 usb_pm_unlock(udev);
1574 return status;
1575}
1576
Alan Stern645daaa2006-08-30 15:47:02 -04001577/**
1578 * usb_autopm_put_interface - decrement a USB interface's PM-usage counter
Henrik Kretzschmar701f35a2006-09-25 17:00:56 -07001579 * @intf: the usb_interface whose counter should be decremented
Alan Stern645daaa2006-08-30 15:47:02 -04001580 *
1581 * This routine should be called by an interface driver when it is
1582 * finished using @intf and wants to allow it to autosuspend. A typical
1583 * example would be a character-device driver when its device file is
1584 * closed.
1585 *
1586 * The routine decrements @intf's usage counter. When the counter reaches
1587 * 0, a delayed autosuspend request for @intf's device is queued. When
1588 * the delay expires, if @intf->pm_usage_cnt is still <= 0 along with all
1589 * the other usage counters for the sibling interfaces and @intf's
1590 * usb_device, the device and all its interfaces will be autosuspended.
1591 *
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 * If the driver has set @intf->needs_remote_wakeup then autosuspend will
1599 * take place only if the device's remote-wakeup facility is enabled.
1600 *
1601 * Suspend method calls queued by this routine can arrive at any time
1602 * while @intf is resumed and its usage counter is equal to 0. They are
1603 * not protected by the usb_device's lock but only by its pm_mutex.
1604 * Drivers must provide their own synchronization.
1605 *
1606 * This routine can run only in process context.
1607 */
1608void usb_autopm_put_interface(struct usb_interface *intf)
1609{
Alan Sternaf4f7602006-10-30 17:06:45 -05001610 int status;
Alan Stern645daaa2006-08-30 15:47:02 -04001611
Alan Sternaf4f7602006-10-30 17:06:45 -05001612 status = usb_autopm_do_interface(intf, -1);
Alan Stern20dfdad2007-05-22 11:50:17 -04001613 dev_vdbg(&intf->dev, "%s: status %d cnt %d\n",
Alan Sternccf5b802009-06-29 11:00:01 -04001614 __func__, status, atomic_read(&intf->pm_usage_cnt));
Alan Stern645daaa2006-08-30 15:47:02 -04001615}
1616EXPORT_SYMBOL_GPL(usb_autopm_put_interface);
1617
1618/**
Alan Stern9ac39f22008-11-12 16:19:49 -05001619 * usb_autopm_put_interface_async - decrement a USB interface's PM-usage counter
1620 * @intf: the usb_interface whose counter should be decremented
1621 *
1622 * This routine does essentially the same thing as
1623 * usb_autopm_put_interface(): it decrements @intf's usage counter and
1624 * queues a delayed autosuspend request if the counter is <= 0. The
1625 * difference is that it does not acquire the device's pm_mutex;
1626 * callers must handle all synchronization issues themselves.
1627 *
1628 * Typically a driver would call this routine during an URB's completion
1629 * handler, if no more URBs were pending.
1630 *
1631 * This routine can run in atomic context.
1632 */
1633void usb_autopm_put_interface_async(struct usb_interface *intf)
1634{
1635 struct usb_device *udev = interface_to_usbdev(intf);
1636 int status = 0;
1637
1638 if (intf->condition == USB_INTERFACE_UNBOUND) {
1639 status = -ENODEV;
1640 } else {
1641 udev->last_busy = jiffies;
Alan Sternccf5b802009-06-29 11:00:01 -04001642 atomic_dec(&intf->pm_usage_cnt);
Alan Stern9ac39f22008-11-12 16:19:49 -05001643 if (udev->autosuspend_disabled || udev->autosuspend_delay < 0)
1644 status = -EPERM;
Alan Sternccf5b802009-06-29 11:00:01 -04001645 else if (atomic_read(&intf->pm_usage_cnt) <= 0 &&
Alan Stern9ac39f22008-11-12 16:19:49 -05001646 !timer_pending(&udev->autosuspend.timer)) {
1647 queue_delayed_work(ksuspend_usb_wq, &udev->autosuspend,
Alan Stern4ec06d62008-11-25 16:40:02 -05001648 round_jiffies_up_relative(
Alan Stern9ac39f22008-11-12 16:19:49 -05001649 udev->autosuspend_delay));
1650 }
1651 }
1652 dev_vdbg(&intf->dev, "%s: status %d cnt %d\n",
Alan Sternccf5b802009-06-29 11:00:01 -04001653 __func__, status, atomic_read(&intf->pm_usage_cnt));
Alan Stern9ac39f22008-11-12 16:19:49 -05001654}
1655EXPORT_SYMBOL_GPL(usb_autopm_put_interface_async);
1656
1657/**
Alan Stern645daaa2006-08-30 15:47:02 -04001658 * usb_autopm_get_interface - increment a USB interface's PM-usage counter
Henrik Kretzschmar701f35a2006-09-25 17:00:56 -07001659 * @intf: the usb_interface whose counter should be incremented
Alan Stern645daaa2006-08-30 15:47:02 -04001660 *
1661 * This routine should be called by an interface driver when it wants to
1662 * use @intf and needs to guarantee that it is not suspended. In addition,
1663 * the routine prevents @intf from being autosuspended subsequently. (Note
1664 * that this will not prevent suspend events originating in the PM core.)
1665 * This prevention will persist until usb_autopm_put_interface() is called
1666 * or @intf is unbound. A typical example would be a character-device
1667 * driver when its device file is opened.
1668 *
Alan Stern19410442007-03-27 13:33:59 -04001669 *
1670 * The routine increments @intf's usage counter. (However if the
1671 * autoresume fails then the counter is re-decremented.) So long as the
1672 * counter is greater than 0, autosuspend will not be allowed for @intf
1673 * or its usb_device. When the driver is finished using @intf it should
1674 * call usb_autopm_put_interface() to decrement the usage counter and
1675 * queue a delayed autosuspend request (if the counter is <= 0).
1676 *
Alan Stern645daaa2006-08-30 15:47:02 -04001677 *
1678 * Note that @intf->pm_usage_cnt is owned by the interface driver. The
1679 * core will not change its value other than the increment and decrement
1680 * in usb_autopm_get_interface and usb_autopm_put_interface. The driver
1681 * may use this simple counter-oriented discipline or may set the value
1682 * any way it likes.
1683 *
1684 * Resume method calls generated by this routine can arrive at any time
1685 * while @intf is suspended. They are not protected by the usb_device's
1686 * lock but only by its pm_mutex. Drivers must provide their own
1687 * synchronization.
1688 *
1689 * This routine can run only in process context.
1690 */
1691int usb_autopm_get_interface(struct usb_interface *intf)
1692{
Alan Sternaf4f7602006-10-30 17:06:45 -05001693 int status;
Alan Stern645daaa2006-08-30 15:47:02 -04001694
Alan Sternaf4f7602006-10-30 17:06:45 -05001695 status = usb_autopm_do_interface(intf, 1);
Alan Stern20dfdad2007-05-22 11:50:17 -04001696 dev_vdbg(&intf->dev, "%s: status %d cnt %d\n",
Alan Sternccf5b802009-06-29 11:00:01 -04001697 __func__, status, atomic_read(&intf->pm_usage_cnt));
Alan Stern645daaa2006-08-30 15:47:02 -04001698 return status;
1699}
1700EXPORT_SYMBOL_GPL(usb_autopm_get_interface);
1701
Alan Stern692a1862006-10-30 17:07:51 -05001702/**
Alan Stern9ac39f22008-11-12 16:19:49 -05001703 * usb_autopm_get_interface_async - increment a USB interface's PM-usage counter
1704 * @intf: the usb_interface whose counter should be incremented
1705 *
1706 * This routine does much the same thing as
1707 * usb_autopm_get_interface(): it increments @intf's usage counter and
1708 * queues an autoresume request if the result is > 0. The differences
1709 * are that it does not acquire the device's pm_mutex (callers must
1710 * handle all synchronization issues themselves), and it does not
1711 * autoresume the device directly (it only queues a request). After a
1712 * successful call, the device will generally not yet be resumed.
1713 *
1714 * This routine can run in atomic context.
1715 */
1716int usb_autopm_get_interface_async(struct usb_interface *intf)
1717{
1718 struct usb_device *udev = interface_to_usbdev(intf);
1719 int status = 0;
1720
1721 if (intf->condition == USB_INTERFACE_UNBOUND)
1722 status = -ENODEV;
Alan Sternccf5b802009-06-29 11:00:01 -04001723 else {
1724 atomic_inc(&intf->pm_usage_cnt);
1725 if (atomic_read(&intf->pm_usage_cnt) > 0 &&
1726 udev->state == USB_STATE_SUSPENDED)
1727 queue_work(ksuspend_usb_wq, &udev->autoresume);
1728 }
Alan Stern9ac39f22008-11-12 16:19:49 -05001729 dev_vdbg(&intf->dev, "%s: status %d cnt %d\n",
Alan Sternccf5b802009-06-29 11:00:01 -04001730 __func__, status, atomic_read(&intf->pm_usage_cnt));
Alan Stern9ac39f22008-11-12 16:19:49 -05001731 return status;
1732}
1733EXPORT_SYMBOL_GPL(usb_autopm_get_interface_async);
1734
Alan Stern718efa62007-03-09 15:41:13 -05001735#else
1736
1737void usb_autosuspend_work(struct work_struct *work)
1738{}
1739
Alan Stern9ac39f22008-11-12 16:19:49 -05001740void usb_autoresume_work(struct work_struct *work)
1741{}
1742
Alan Stern645daaa2006-08-30 15:47:02 -04001743#endif /* CONFIG_USB_SUSPEND */
1744
Alan Stern6b157c92007-03-13 16:37:30 -04001745/**
1746 * usb_external_suspend_device - external suspend of a USB device and its interfaces
1747 * @udev: the usb_device to suspend
1748 * @msg: Power Management message describing this state transition
1749 *
1750 * This routine handles external suspend requests: ones not generated
1751 * internally by a USB driver (autosuspend) but rather coming from the user
1752 * (via sysfs) or the PM core (system sleep). The suspend will be carried
1753 * out regardless of @udev's usage counter or those of its interfaces,
1754 * and regardless of whether or not remote wakeup is enabled. Of course,
1755 * interface drivers still have the option of failing the suspend (if
1756 * there are unsuspended children, for example).
1757 *
1758 * The caller must hold @udev's device lock.
1759 */
1760int usb_external_suspend_device(struct usb_device *udev, pm_message_t msg)
Alan Stern1cc8a252006-07-01 22:10:15 -04001761{
1762 int status;
1763
Alan Stern78d9a482008-06-23 16:00:40 -04001764 do_unbind_rebind(udev, DO_UNBIND);
Alan Stern6b157c92007-03-13 16:37:30 -04001765 usb_pm_lock(udev);
Alan Stern6b157c92007-03-13 16:37:30 -04001766 status = usb_suspend_both(udev, msg);
1767 usb_pm_unlock(udev);
Alan Stern1cc8a252006-07-01 22:10:15 -04001768 return status;
1769}
1770
Alan Stern6b157c92007-03-13 16:37:30 -04001771/**
1772 * usb_external_resume_device - external resume of a USB device and its interfaces
1773 * @udev: the usb_device to resume
Alan Stern65bfd292008-11-25 16:39:18 -05001774 * @msg: Power Management message describing this state transition
Alan Stern6b157c92007-03-13 16:37:30 -04001775 *
1776 * This routine handles external resume requests: ones not generated
1777 * internally by a USB driver (autoresume) but rather coming from the user
1778 * (via sysfs), the PM core (system resume), or the device itself (remote
1779 * wakeup). @udev's usage counter is unaffected.
1780 *
1781 * The caller must hold @udev's device lock.
1782 */
Alan Stern65bfd292008-11-25 16:39:18 -05001783int usb_external_resume_device(struct usb_device *udev, pm_message_t msg)
Alan Stern6b157c92007-03-13 16:37:30 -04001784{
1785 int status;
1786
1787 usb_pm_lock(udev);
Alan Stern65bfd292008-11-25 16:39:18 -05001788 status = usb_resume_both(udev, msg);
Alan Sternef7f6c72007-04-05 16:03:49 -04001789 udev->last_busy = jiffies;
Alan Stern6b157c92007-03-13 16:37:30 -04001790 usb_pm_unlock(udev);
Alan Stern6c640942008-10-21 15:40:03 -04001791 if (status == 0)
1792 do_unbind_rebind(udev, DO_REBIND);
Alan Stern6b157c92007-03-13 16:37:30 -04001793
1794 /* Now that the device is awake, we can start trying to autosuspend
1795 * it again. */
1796 if (status == 0)
1797 usb_try_autosuspend_device(udev);
1798 return status;
1799}
1800
Alan Stern65bfd292008-11-25 16:39:18 -05001801int usb_suspend(struct device *dev, pm_message_t msg)
Alan Stern6b157c92007-03-13 16:37:30 -04001802{
Alan Stern271f9e62007-10-10 16:30:12 -04001803 struct usb_device *udev;
1804
Alan Stern271f9e62007-10-10 16:30:12 -04001805 udev = to_usb_device(dev);
1806
1807 /* If udev is already suspended, we can skip this suspend and
Alan Stern3bb1af52008-03-03 15:15:36 -05001808 * we should also skip the upcoming system resume. High-speed
1809 * root hubs are an exception; they need to resume whenever the
1810 * system wakes up in order for USB-PERSIST port handover to work
1811 * properly.
1812 */
Alan Stern271f9e62007-10-10 16:30:12 -04001813 if (udev->state == USB_STATE_SUSPENDED) {
Alan Stern3bb1af52008-03-03 15:15:36 -05001814 if (udev->parent || udev->speed != USB_SPEED_HIGH)
1815 udev->skip_sys_resume = 1;
Alan Stern271f9e62007-10-10 16:30:12 -04001816 return 0;
1817 }
1818
1819 udev->skip_sys_resume = 0;
Alan Stern65bfd292008-11-25 16:39:18 -05001820 return usb_external_suspend_device(udev, msg);
Alan Stern6b157c92007-03-13 16:37:30 -04001821}
1822
Alan Stern65bfd292008-11-25 16:39:18 -05001823int usb_resume(struct device *dev, pm_message_t msg)
Alan Stern1cc8a252006-07-01 22:10:15 -04001824{
Alan Stern2add5222007-03-20 14:59:39 -04001825 struct usb_device *udev;
Frans Pop23a54e52009-06-04 22:30:48 +02001826 int status;
Alan Stern2add5222007-03-20 14:59:39 -04001827
Alan Stern2add5222007-03-20 14:59:39 -04001828 udev = to_usb_device(dev);
Alan Stern0458d5b2007-05-04 11:52:20 -04001829
Alan Stern271f9e62007-10-10 16:30:12 -04001830 /* If udev->skip_sys_resume is set then udev was already suspended
Alan Stern8808f002008-04-28 11:06:55 -04001831 * when the system sleep started, so we don't want to resume it
1832 * during this system wakeup.
1833 */
1834 if (udev->skip_sys_resume)
1835 return 0;
Frans Pop23a54e52009-06-04 22:30:48 +02001836 status = usb_external_resume_device(udev, msg);
1837
1838 /* Avoid PM error messages for devices disconnected while suspended
1839 * as we'll display regular disconnect messages just a bit later.
1840 */
1841 if (status == -ENODEV)
1842 return 0;
1843 return status;
Alan Stern1cc8a252006-07-01 22:10:15 -04001844}
1845
Alan Stern36e56a32006-07-01 22:08:06 -04001846#endif /* CONFIG_PM */
1847
1848struct bus_type usb_bus_type = {
1849 .name = "usb",
1850 .match = usb_device_match,
1851 .uevent = usb_uevent,
Alan Stern36e56a32006-07-01 22:08:06 -04001852};