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