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