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