Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Uwe Zeisberger | f30c226 | 2006-10-03 23:01:26 +0200 | [diff] [blame] | 2 | * drivers/usb/core/usb.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | * |
| 4 | * (C) Copyright Linus Torvalds 1999 |
| 5 | * (C) Copyright Johannes Erdfelt 1999-2001 |
| 6 | * (C) Copyright Andreas Gal 1999 |
| 7 | * (C) Copyright Gregory P. Smith 1999 |
| 8 | * (C) Copyright Deti Fliegl 1999 (new USB architecture) |
| 9 | * (C) Copyright Randy Dunlap 2000 |
| 10 | * (C) Copyright David Brownell 2000-2004 |
| 11 | * (C) Copyright Yggdrasil Computing, Inc. 2000 |
| 12 | * (usb_device_id matching changes by Adam J. Richter) |
| 13 | * (C) Copyright Greg Kroah-Hartman 2002-2003 |
| 14 | * |
| 15 | * NOTE! This is not actually a driver at all, rather this is |
| 16 | * just a collection of helper routines that implement the |
| 17 | * generic USB things that the real drivers can use.. |
| 18 | * |
| 19 | * Think of this as a "USB library" rather than anything else. |
| 20 | * It should be considered a slave, with no callbacks. Callbacks |
| 21 | * are evil. |
| 22 | */ |
| 23 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | #include <linux/module.h> |
Alan Stern | b5e795f | 2007-02-20 15:00:53 -0500 | [diff] [blame] | 25 | #include <linux/moduleparam.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | #include <linux/string.h> |
| 27 | #include <linux/bitops.h> |
| 28 | #include <linux/slab.h> |
| 29 | #include <linux/interrupt.h> /* for in_interrupt() */ |
| 30 | #include <linux/kmod.h> |
| 31 | #include <linux/init.h> |
| 32 | #include <linux/spinlock.h> |
| 33 | #include <linux/errno.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | #include <linux/usb.h> |
Arjan van de Ven | 4186ecf | 2006-01-11 15:55:29 +0100 | [diff] [blame] | 35 | #include <linux/mutex.h> |
Alan Stern | bd85928 | 2006-09-19 10:14:07 -0400 | [diff] [blame] | 36 | #include <linux/workqueue.h> |
Greg Kroah-Hartman | 00048b8 | 2009-04-24 14:56:26 -0700 | [diff] [blame] | 37 | #include <linux/debugfs.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | |
| 39 | #include <asm/io.h> |
Adrian Bunk | 87ae9af | 2007-10-30 10:35:04 +0100 | [diff] [blame] | 40 | #include <linux/scatterlist.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | #include <linux/mm.h> |
| 42 | #include <linux/dma-mapping.h> |
| 43 | |
| 44 | #include "hcd.h" |
| 45 | #include "usb.h" |
| 46 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | |
| 48 | const char *usbcore_name = "usbcore"; |
| 49 | |
| 50 | static int nousb; /* Disable USB when built into kernel image */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | |
Alan Stern | 6b157c9 | 2007-03-13 16:37:30 -0400 | [diff] [blame] | 52 | /* Workqueue for autosuspend and for remote wakeup of root hubs */ |
| 53 | struct workqueue_struct *ksuspend_usb_wq; |
Alan Stern | bd85928 | 2006-09-19 10:14:07 -0400 | [diff] [blame] | 54 | |
Alan Stern | b5e795f | 2007-02-20 15:00:53 -0500 | [diff] [blame] | 55 | #ifdef CONFIG_USB_SUSPEND |
| 56 | static int usb_autosuspend_delay = 2; /* Default delay value, |
| 57 | * in seconds */ |
Alan Stern | eaafbc3 | 2007-03-13 16:39:15 -0400 | [diff] [blame] | 58 | module_param_named(autosuspend, usb_autosuspend_delay, int, 0644); |
Alan Stern | b5e795f | 2007-02-20 15:00:53 -0500 | [diff] [blame] | 59 | MODULE_PARM_DESC(autosuspend, "default autosuspend delay"); |
| 60 | |
| 61 | #else |
| 62 | #define usb_autosuspend_delay 0 |
| 63 | #endif |
| 64 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | /** |
Sarah Sharp | 91017f9 | 2009-12-03 09:44:34 -0800 | [diff] [blame] | 67 | * usb_find_alt_setting() - Given a configuration, find the alternate setting |
| 68 | * for the given interface. |
| 69 | * @config - the configuration to search (not necessarily the current config). |
| 70 | * @iface_num - interface number to search in |
| 71 | * @alt_num - alternate interface setting number to search for. |
| 72 | * |
| 73 | * Search the configuration's interface cache for the given alt setting. |
| 74 | */ |
| 75 | struct usb_host_interface *usb_find_alt_setting( |
| 76 | struct usb_host_config *config, |
| 77 | unsigned int iface_num, |
| 78 | unsigned int alt_num) |
| 79 | { |
| 80 | struct usb_interface_cache *intf_cache = NULL; |
| 81 | int i; |
| 82 | |
| 83 | for (i = 0; i < config->desc.bNumInterfaces; i++) { |
| 84 | if (config->intf_cache[i]->altsetting[0].desc.bInterfaceNumber |
| 85 | == iface_num) { |
| 86 | intf_cache = config->intf_cache[i]; |
| 87 | break; |
| 88 | } |
| 89 | } |
| 90 | if (!intf_cache) |
| 91 | return NULL; |
| 92 | for (i = 0; i < intf_cache->num_altsetting; i++) |
| 93 | if (intf_cache->altsetting[i].desc.bAlternateSetting == alt_num) |
| 94 | return &intf_cache->altsetting[i]; |
| 95 | |
| 96 | printk(KERN_DEBUG "Did not find alt setting %u for intf %u, " |
| 97 | "config %u\n", alt_num, iface_num, |
| 98 | config->desc.bConfigurationValue); |
| 99 | return NULL; |
| 100 | } |
| 101 | EXPORT_SYMBOL_GPL(usb_find_alt_setting); |
| 102 | |
| 103 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | * usb_ifnum_to_if - get the interface object with a given interface number |
| 105 | * @dev: the device whose current configuration is considered |
| 106 | * @ifnum: the desired interface |
| 107 | * |
| 108 | * This walks the device descriptor for the currently active configuration |
| 109 | * and returns a pointer to the interface with that particular interface |
| 110 | * number, or null. |
| 111 | * |
| 112 | * Note that configuration descriptors are not required to assign interface |
| 113 | * numbers sequentially, so that it would be incorrect to assume that |
| 114 | * the first interface in that descriptor corresponds to interface zero. |
| 115 | * This routine helps device drivers avoid such mistakes. |
| 116 | * However, you should make sure that you do the right thing with any |
| 117 | * alternate settings available for this interfaces. |
| 118 | * |
| 119 | * Don't call this function unless you are bound to one of the interfaces |
| 120 | * on this device or you have locked the device! |
| 121 | */ |
Luiz Fernando N. Capitulino | 095bc33 | 2006-08-26 23:48:11 -0300 | [diff] [blame] | 122 | struct usb_interface *usb_ifnum_to_if(const struct usb_device *dev, |
| 123 | unsigned ifnum) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | { |
| 125 | struct usb_host_config *config = dev->actconfig; |
| 126 | int i; |
| 127 | |
| 128 | if (!config) |
| 129 | return NULL; |
| 130 | for (i = 0; i < config->desc.bNumInterfaces; i++) |
| 131 | if (config->interface[i]->altsetting[0] |
| 132 | .desc.bInterfaceNumber == ifnum) |
| 133 | return config->interface[i]; |
| 134 | |
| 135 | return NULL; |
| 136 | } |
Greg Kroah-Hartman | 782e70c | 2008-01-25 11:12:21 -0600 | [diff] [blame] | 137 | EXPORT_SYMBOL_GPL(usb_ifnum_to_if); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 | |
| 139 | /** |
Randy Dunlap | d0bcabc | 2008-02-29 22:03:07 -0800 | [diff] [blame] | 140 | * usb_altnum_to_altsetting - get the altsetting structure with a given alternate setting number. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 141 | * @intf: the interface containing the altsetting in question |
| 142 | * @altnum: the desired alternate setting number |
| 143 | * |
| 144 | * This searches the altsetting array of the specified interface for |
| 145 | * an entry with the correct bAlternateSetting value and returns a pointer |
| 146 | * to that entry, or null. |
| 147 | * |
| 148 | * Note that altsettings need not be stored sequentially by number, so |
| 149 | * it would be incorrect to assume that the first altsetting entry in |
| 150 | * the array corresponds to altsetting zero. This routine helps device |
| 151 | * drivers avoid such mistakes. |
| 152 | * |
| 153 | * Don't call this function unless you are bound to the intf interface |
| 154 | * or you have locked the device! |
| 155 | */ |
Greg Kroah-Hartman | 2c044a4 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 156 | struct usb_host_interface *usb_altnum_to_altsetting( |
| 157 | const struct usb_interface *intf, |
| 158 | unsigned int altnum) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | { |
| 160 | int i; |
| 161 | |
| 162 | for (i = 0; i < intf->num_altsetting; i++) { |
| 163 | if (intf->altsetting[i].desc.bAlternateSetting == altnum) |
| 164 | return &intf->altsetting[i]; |
| 165 | } |
| 166 | return NULL; |
| 167 | } |
Greg Kroah-Hartman | 782e70c | 2008-01-25 11:12:21 -0600 | [diff] [blame] | 168 | EXPORT_SYMBOL_GPL(usb_altnum_to_altsetting); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 | |
Greg Kroah-Hartman | ab7cd8c | 2009-12-15 07:47:28 -0800 | [diff] [blame^] | 170 | struct find_interface_arg { |
| 171 | int minor; |
| 172 | struct usb_interface *interface; |
| 173 | }; |
| 174 | |
Greg Kroah-Hartman | 2c044a4 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 175 | static int __find_interface(struct device *dev, void *data) |
mochel@digitalimplant.org | 6034a08 | 2005-03-21 11:09:40 -0800 | [diff] [blame] | 176 | { |
Greg Kroah-Hartman | ab7cd8c | 2009-12-15 07:47:28 -0800 | [diff] [blame^] | 177 | struct find_interface_arg *arg = data; |
Pete Zaitcev | f5691d7 | 2005-12-21 17:24:54 -0800 | [diff] [blame] | 178 | struct usb_interface *intf; |
mochel@digitalimplant.org | 6034a08 | 2005-03-21 11:09:40 -0800 | [diff] [blame] | 179 | |
Kay Sievers | 5512966 | 2009-05-04 19:48:32 +0200 | [diff] [blame] | 180 | if (!is_usb_interface(dev)) |
mochel@digitalimplant.org | 6034a08 | 2005-03-21 11:09:40 -0800 | [diff] [blame] | 181 | return 0; |
| 182 | |
| 183 | intf = to_usb_interface(dev); |
Greg Kroah-Hartman | ab7cd8c | 2009-12-15 07:47:28 -0800 | [diff] [blame^] | 184 | if (intf->minor != -1 && intf->minor == arg->minor) { |
| 185 | arg->interface = intf; |
mochel@digitalimplant.org | 6034a08 | 2005-03-21 11:09:40 -0800 | [diff] [blame] | 186 | return 1; |
Greg Kroah-Hartman | ab7cd8c | 2009-12-15 07:47:28 -0800 | [diff] [blame^] | 187 | } |
mochel@digitalimplant.org | 6034a08 | 2005-03-21 11:09:40 -0800 | [diff] [blame] | 188 | return 0; |
| 189 | } |
| 190 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 191 | /** |
| 192 | * usb_find_interface - find usb_interface pointer for driver and device |
| 193 | * @drv: the driver whose current configuration is considered |
| 194 | * @minor: the minor number of the desired device |
| 195 | * |
Greg Kroah-Hartman | ab7cd8c | 2009-12-15 07:47:28 -0800 | [diff] [blame^] | 196 | * This walks the driver device list and returns a pointer to the interface |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 | * with the matching minor. Note, this only works for devices that share the |
| 198 | * USB major number. |
| 199 | */ |
| 200 | struct usb_interface *usb_find_interface(struct usb_driver *drv, int minor) |
| 201 | { |
Greg Kroah-Hartman | ab7cd8c | 2009-12-15 07:47:28 -0800 | [diff] [blame^] | 202 | struct find_interface_arg argb; |
| 203 | int retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 204 | |
Greg Kroah-Hartman | ab7cd8c | 2009-12-15 07:47:28 -0800 | [diff] [blame^] | 205 | argb.minor = minor; |
| 206 | argb.interface = NULL; |
| 207 | /* eat the error, it will be in argb.interface */ |
| 208 | retval = driver_for_each_device(&drv->drvwrap.driver, NULL, &argb, |
| 209 | __find_interface); |
| 210 | return argb.interface; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 211 | } |
Greg Kroah-Hartman | 782e70c | 2008-01-25 11:12:21 -0600 | [diff] [blame] | 212 | EXPORT_SYMBOL_GPL(usb_find_interface); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 213 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 214 | /** |
| 215 | * usb_release_dev - free a usb device structure when all users of it are finished. |
| 216 | * @dev: device that's been disconnected |
| 217 | * |
| 218 | * Will be called only by the device core when all users of this usb device are |
| 219 | * done. |
| 220 | */ |
| 221 | static void usb_release_dev(struct device *dev) |
| 222 | { |
| 223 | struct usb_device *udev; |
Sarah Sharp | c651527 | 2009-04-27 19:57:26 -0700 | [diff] [blame] | 224 | struct usb_hcd *hcd; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 225 | |
| 226 | udev = to_usb_device(dev); |
Sarah Sharp | c651527 | 2009-04-27 19:57:26 -0700 | [diff] [blame] | 227 | hcd = bus_to_hcd(udev->bus); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 228 | |
| 229 | usb_destroy_configuration(udev); |
Sarah Sharp | c651527 | 2009-04-27 19:57:26 -0700 | [diff] [blame] | 230 | /* Root hubs aren't real devices, so don't free HCD resources */ |
| 231 | if (hcd->driver->free_dev && udev->parent) |
| 232 | hcd->driver->free_dev(hcd, udev); |
| 233 | usb_put_hcd(hcd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 234 | kfree(udev->product); |
| 235 | kfree(udev->manufacturer); |
| 236 | kfree(udev->serial); |
| 237 | kfree(udev); |
| 238 | } |
| 239 | |
Alan Stern | 4a9bee8 | 2007-11-06 15:01:52 -0500 | [diff] [blame] | 240 | #ifdef CONFIG_HOTPLUG |
| 241 | static int usb_dev_uevent(struct device *dev, struct kobj_uevent_env *env) |
| 242 | { |
| 243 | struct usb_device *usb_dev; |
| 244 | |
| 245 | usb_dev = to_usb_device(dev); |
| 246 | |
| 247 | if (add_uevent_var(env, "BUSNUM=%03d", usb_dev->bus->busnum)) |
| 248 | return -ENOMEM; |
| 249 | |
| 250 | if (add_uevent_var(env, "DEVNUM=%03d", usb_dev->devnum)) |
| 251 | return -ENOMEM; |
| 252 | |
| 253 | return 0; |
| 254 | } |
| 255 | |
| 256 | #else |
| 257 | |
| 258 | static int usb_dev_uevent(struct device *dev, struct kobj_uevent_env *env) |
| 259 | { |
| 260 | return -ENODEV; |
| 261 | } |
| 262 | #endif /* CONFIG_HOTPLUG */ |
| 263 | |
Alan Stern | 645daaa | 2006-08-30 15:47:02 -0400 | [diff] [blame] | 264 | #ifdef CONFIG_PM |
| 265 | |
Alan Stern | bd85928 | 2006-09-19 10:14:07 -0400 | [diff] [blame] | 266 | static int ksuspend_usb_init(void) |
| 267 | { |
Alan Stern | 7ed92f1 | 2007-05-22 09:38:39 -0400 | [diff] [blame] | 268 | /* This workqueue is supposed to be both freezable and |
| 269 | * singlethreaded. Its job doesn't justify running on more |
| 270 | * than one CPU. |
| 271 | */ |
Rafael J. Wysocki | 7a8d37a | 2008-02-25 00:35:04 +0100 | [diff] [blame] | 272 | ksuspend_usb_wq = create_freezeable_workqueue("ksuspend_usbd"); |
Alan Stern | bd85928 | 2006-09-19 10:14:07 -0400 | [diff] [blame] | 273 | if (!ksuspend_usb_wq) |
| 274 | return -ENOMEM; |
| 275 | return 0; |
| 276 | } |
| 277 | |
| 278 | static void ksuspend_usb_cleanup(void) |
| 279 | { |
| 280 | destroy_workqueue(ksuspend_usb_wq); |
| 281 | } |
| 282 | |
Alan Stern | f2189c4 | 2008-08-12 14:34:10 -0400 | [diff] [blame] | 283 | /* USB device Power-Management thunks. |
| 284 | * There's no need to distinguish here between quiescing a USB device |
| 285 | * and powering it down; the generic_suspend() routine takes care of |
| 286 | * it by skipping the usb_port_suspend() call for a quiesce. And for |
| 287 | * USB interfaces there's no difference at all. |
| 288 | */ |
| 289 | |
| 290 | static int usb_dev_prepare(struct device *dev) |
| 291 | { |
| 292 | return 0; /* Implement eventually? */ |
| 293 | } |
| 294 | |
| 295 | static void usb_dev_complete(struct device *dev) |
| 296 | { |
| 297 | /* Currently used only for rebinding interfaces */ |
Alan Stern | 65bfd29 | 2008-11-25 16:39:18 -0500 | [diff] [blame] | 298 | usb_resume(dev, PMSG_RESUME); /* Message event is meaningless */ |
Alan Stern | f2189c4 | 2008-08-12 14:34:10 -0400 | [diff] [blame] | 299 | } |
| 300 | |
| 301 | static int usb_dev_suspend(struct device *dev) |
| 302 | { |
| 303 | return usb_suspend(dev, PMSG_SUSPEND); |
| 304 | } |
| 305 | |
| 306 | static int usb_dev_resume(struct device *dev) |
| 307 | { |
Alan Stern | 65bfd29 | 2008-11-25 16:39:18 -0500 | [diff] [blame] | 308 | return usb_resume(dev, PMSG_RESUME); |
Alan Stern | f2189c4 | 2008-08-12 14:34:10 -0400 | [diff] [blame] | 309 | } |
| 310 | |
| 311 | static int usb_dev_freeze(struct device *dev) |
| 312 | { |
| 313 | return usb_suspend(dev, PMSG_FREEZE); |
| 314 | } |
| 315 | |
| 316 | static int usb_dev_thaw(struct device *dev) |
| 317 | { |
Alan Stern | 65bfd29 | 2008-11-25 16:39:18 -0500 | [diff] [blame] | 318 | return usb_resume(dev, PMSG_THAW); |
Alan Stern | f2189c4 | 2008-08-12 14:34:10 -0400 | [diff] [blame] | 319 | } |
| 320 | |
| 321 | static int usb_dev_poweroff(struct device *dev) |
| 322 | { |
| 323 | return usb_suspend(dev, PMSG_HIBERNATE); |
| 324 | } |
| 325 | |
| 326 | static int usb_dev_restore(struct device *dev) |
| 327 | { |
Alan Stern | 65bfd29 | 2008-11-25 16:39:18 -0500 | [diff] [blame] | 328 | return usb_resume(dev, PMSG_RESTORE); |
Alan Stern | f2189c4 | 2008-08-12 14:34:10 -0400 | [diff] [blame] | 329 | } |
| 330 | |
Rafael J. Wysocki | adf0949 | 2008-10-06 22:46:05 +0200 | [diff] [blame] | 331 | static struct dev_pm_ops usb_device_pm_ops = { |
Alan Stern | f2189c4 | 2008-08-12 14:34:10 -0400 | [diff] [blame] | 332 | .prepare = usb_dev_prepare, |
| 333 | .complete = usb_dev_complete, |
| 334 | .suspend = usb_dev_suspend, |
| 335 | .resume = usb_dev_resume, |
| 336 | .freeze = usb_dev_freeze, |
| 337 | .thaw = usb_dev_thaw, |
| 338 | .poweroff = usb_dev_poweroff, |
| 339 | .restore = usb_dev_restore, |
| 340 | }; |
| 341 | |
Alan Stern | db06350 | 2006-11-13 15:02:04 -0500 | [diff] [blame] | 342 | #else |
| 343 | |
| 344 | #define ksuspend_usb_init() 0 |
| 345 | #define ksuspend_usb_cleanup() do {} while (0) |
Rafael J. Wysocki | adf0949 | 2008-10-06 22:46:05 +0200 | [diff] [blame] | 346 | #define usb_device_pm_ops (*(struct dev_pm_ops *)0) |
Alan Stern | db06350 | 2006-11-13 15:02:04 -0500 | [diff] [blame] | 347 | |
| 348 | #endif /* CONFIG_PM */ |
Alan Stern | 645daaa | 2006-08-30 15:47:02 -0400 | [diff] [blame] | 349 | |
Kay Sievers | f7a386c | 2009-04-30 15:23:42 +0200 | [diff] [blame] | 350 | |
Kay Sievers | e454cea | 2009-09-18 23:01:12 +0200 | [diff] [blame] | 351 | static char *usb_devnode(struct device *dev, mode_t *mode) |
Kay Sievers | f7a386c | 2009-04-30 15:23:42 +0200 | [diff] [blame] | 352 | { |
| 353 | struct usb_device *usb_dev; |
| 354 | |
| 355 | usb_dev = to_usb_device(dev); |
| 356 | return kasprintf(GFP_KERNEL, "bus/usb/%03d/%03d", |
| 357 | usb_dev->bus->busnum, usb_dev->devnum); |
| 358 | } |
| 359 | |
Alan Stern | f2189c4 | 2008-08-12 14:34:10 -0400 | [diff] [blame] | 360 | struct device_type usb_device_type = { |
| 361 | .name = "usb_device", |
| 362 | .release = usb_release_dev, |
| 363 | .uevent = usb_dev_uevent, |
Kay Sievers | e454cea | 2009-09-18 23:01:12 +0200 | [diff] [blame] | 364 | .devnode = usb_devnode, |
Alan Stern | f2189c4 | 2008-08-12 14:34:10 -0400 | [diff] [blame] | 365 | .pm = &usb_device_pm_ops, |
| 366 | }; |
| 367 | |
Inaky Perez-Gonzalez | d7d0725 | 2007-07-31 20:34:00 -0700 | [diff] [blame] | 368 | |
| 369 | /* Returns 1 if @usb_bus is WUSB, 0 otherwise */ |
| 370 | static unsigned usb_bus_is_wusb(struct usb_bus *bus) |
| 371 | { |
| 372 | struct usb_hcd *hcd = container_of(bus, struct usb_hcd, self); |
| 373 | return hcd->wireless; |
| 374 | } |
| 375 | |
| 376 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 377 | /** |
| 378 | * usb_alloc_dev - usb device constructor (usbcore-internal) |
| 379 | * @parent: hub to which device is connected; null to allocate a root hub |
| 380 | * @bus: bus used to access the device |
| 381 | * @port1: one-based index of port; ignored for root hubs |
Oliver Neukum | 9251644 | 2007-01-23 15:55:28 -0500 | [diff] [blame] | 382 | * Context: !in_interrupt() |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 383 | * |
| 384 | * Only hub drivers (including virtual root hub drivers for host |
| 385 | * controllers) should ever call this. |
| 386 | * |
| 387 | * This call may not be used in a non-sleeping context. |
| 388 | */ |
Greg Kroah-Hartman | 2c044a4 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 389 | struct usb_device *usb_alloc_dev(struct usb_device *parent, |
| 390 | struct usb_bus *bus, unsigned port1) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 391 | { |
| 392 | struct usb_device *dev; |
Inaky Perez-Gonzalez | d7d0725 | 2007-07-31 20:34:00 -0700 | [diff] [blame] | 393 | struct usb_hcd *usb_hcd = container_of(bus, struct usb_hcd, self); |
| 394 | unsigned root_hub = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 395 | |
Alan Stern | 0a1ef3b | 2005-10-24 15:38:24 -0400 | [diff] [blame] | 396 | dev = kzalloc(sizeof(*dev), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 397 | if (!dev) |
| 398 | return NULL; |
| 399 | |
Alan Stern | 1720058 | 2006-08-30 11:32:52 -0400 | [diff] [blame] | 400 | if (!usb_get_hcd(bus_to_hcd(bus))) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 401 | kfree(dev); |
| 402 | return NULL; |
| 403 | } |
Sarah Sharp | c651527 | 2009-04-27 19:57:26 -0700 | [diff] [blame] | 404 | /* Root hubs aren't true devices, so don't allocate HCD resources */ |
| 405 | if (usb_hcd->driver->alloc_dev && parent && |
| 406 | !usb_hcd->driver->alloc_dev(usb_hcd, dev)) { |
| 407 | usb_put_hcd(bus_to_hcd(bus)); |
| 408 | kfree(dev); |
| 409 | return NULL; |
| 410 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 411 | |
| 412 | device_initialize(&dev->dev); |
| 413 | dev->dev.bus = &usb_bus_type; |
Kay Sievers | 9f8b17e | 2007-03-13 15:59:31 +0100 | [diff] [blame] | 414 | dev->dev.type = &usb_device_type; |
Alan Stern | 2e5f10e | 2008-04-30 15:37:19 -0400 | [diff] [blame] | 415 | dev->dev.groups = usb_device_groups; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 416 | dev->dev.dma_mask = bus->controller->dma_mask; |
Yinghai Lu | 70f458f | 2007-07-09 12:03:09 -0700 | [diff] [blame] | 417 | set_dev_node(&dev->dev, dev_to_node(bus->controller)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 418 | dev->state = USB_STATE_ATTACHED; |
Sarah Sharp | 4d59d8a | 2007-10-03 14:56:03 -0700 | [diff] [blame] | 419 | atomic_set(&dev->urbnum, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 420 | |
| 421 | INIT_LIST_HEAD(&dev->ep0.urb_list); |
| 422 | dev->ep0.desc.bLength = USB_DT_ENDPOINT_SIZE; |
| 423 | dev->ep0.desc.bDescriptorType = USB_DT_ENDPOINT; |
| 424 | /* ep0 maxpacket comes later, from device descriptor */ |
David Vrabel | 3444b26 | 2009-04-08 17:36:28 +0000 | [diff] [blame] | 425 | usb_enable_endpoint(dev, &dev->ep0, false); |
Alan Stern | 6840d25 | 2007-09-10 11:34:26 -0400 | [diff] [blame] | 426 | dev->can_submit = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 427 | |
| 428 | /* Save readable and stable topology id, distinguishing devices |
| 429 | * by location for diagnostics, tools, driver model, etc. The |
| 430 | * string is a path along hub ports, from the root. Each device's |
| 431 | * dev->devpath will be stable until USB is re-cabled, and hubs |
Kay Sievers | 7071a3c | 2008-05-02 06:02:41 +0200 | [diff] [blame] | 432 | * are often labeled with these port numbers. The name isn't |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 433 | * as stable: bus->busnum changes easily from modprobe order, |
| 434 | * cardbus or pci hotplugging, and so on. |
| 435 | */ |
Oliver Neukum | 9251644 | 2007-01-23 15:55:28 -0500 | [diff] [blame] | 436 | if (unlikely(!parent)) { |
| 437 | dev->devpath[0] = '0'; |
Sarah Sharp | 7206b00 | 2009-04-27 19:54:49 -0700 | [diff] [blame] | 438 | dev->route = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 439 | |
| 440 | dev->dev.parent = bus->controller; |
Kay Sievers | 0031a06 | 2008-05-02 06:02:41 +0200 | [diff] [blame] | 441 | dev_set_name(&dev->dev, "usb%d", bus->busnum); |
Inaky Perez-Gonzalez | d7d0725 | 2007-07-31 20:34:00 -0700 | [diff] [blame] | 442 | root_hub = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 443 | } else { |
| 444 | /* match any labeling on the hubs; it's one-based */ |
Sarah Sharp | 7206b00 | 2009-04-27 19:54:49 -0700 | [diff] [blame] | 445 | if (parent->devpath[0] == '0') { |
Oliver Neukum | 9251644 | 2007-01-23 15:55:28 -0500 | [diff] [blame] | 446 | snprintf(dev->devpath, sizeof dev->devpath, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 447 | "%d", port1); |
Sarah Sharp | 7206b00 | 2009-04-27 19:54:49 -0700 | [diff] [blame] | 448 | /* Root ports are not counted in route string */ |
| 449 | dev->route = 0; |
| 450 | } else { |
Oliver Neukum | 9251644 | 2007-01-23 15:55:28 -0500 | [diff] [blame] | 451 | snprintf(dev->devpath, sizeof dev->devpath, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 452 | "%s.%d", parent->devpath, port1); |
Sarah Sharp | 4a0cd96 | 2009-09-04 10:53:17 -0700 | [diff] [blame] | 453 | /* Route string assumes hubs have less than 16 ports */ |
| 454 | if (port1 < 15) |
| 455 | dev->route = parent->route + |
| 456 | (port1 << ((parent->level - 1)*4)); |
| 457 | else |
| 458 | dev->route = parent->route + |
| 459 | (15 << ((parent->level - 1)*4)); |
Sarah Sharp | 7206b00 | 2009-04-27 19:54:49 -0700 | [diff] [blame] | 460 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 461 | |
| 462 | dev->dev.parent = &parent->dev; |
Kay Sievers | 0031a06 | 2008-05-02 06:02:41 +0200 | [diff] [blame] | 463 | dev_set_name(&dev->dev, "%d-%s", bus->busnum, dev->devpath); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 464 | |
| 465 | /* hub driver sets up TT records */ |
| 466 | } |
| 467 | |
Alan Stern | 12c3da3 | 2005-11-23 12:09:52 -0500 | [diff] [blame] | 468 | dev->portnum = port1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 469 | dev->bus = bus; |
| 470 | dev->parent = parent; |
| 471 | INIT_LIST_HEAD(&dev->filelist); |
| 472 | |
Alan Stern | 645daaa | 2006-08-30 15:47:02 -0400 | [diff] [blame] | 473 | #ifdef CONFIG_PM |
| 474 | mutex_init(&dev->pm_mutex); |
David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 475 | INIT_DELAYED_WORK(&dev->autosuspend, usb_autosuspend_work); |
Alan Stern | 9ac39f2 | 2008-11-12 16:19:49 -0500 | [diff] [blame] | 476 | INIT_WORK(&dev->autoresume, usb_autoresume_work); |
Alan Stern | b5e795f | 2007-02-20 15:00:53 -0500 | [diff] [blame] | 477 | dev->autosuspend_delay = usb_autosuspend_delay * HZ; |
Sarah Sharp | 1512300 | 2007-12-21 16:54:15 -0800 | [diff] [blame] | 478 | dev->connect_time = jiffies; |
| 479 | dev->active_duration = -jiffies; |
Alan Stern | 645daaa | 2006-08-30 15:47:02 -0400 | [diff] [blame] | 480 | #endif |
Inaky Perez-Gonzalez | d7d0725 | 2007-07-31 20:34:00 -0700 | [diff] [blame] | 481 | if (root_hub) /* Root hub always ok [and always wired] */ |
| 482 | dev->authorized = 1; |
| 483 | else { |
| 484 | dev->authorized = usb_hcd->authorized_default; |
| 485 | dev->wusb = usb_bus_is_wusb(bus)? 1 : 0; |
| 486 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 487 | return dev; |
| 488 | } |
| 489 | |
| 490 | /** |
| 491 | * usb_get_dev - increments the reference count of the usb device structure |
| 492 | * @dev: the device being referenced |
| 493 | * |
| 494 | * Each live reference to a device should be refcounted. |
| 495 | * |
| 496 | * Drivers for USB interfaces should normally record such references in |
| 497 | * their probe() methods, when they bind to an interface, and release |
| 498 | * them by calling usb_put_dev(), in their disconnect() methods. |
| 499 | * |
| 500 | * A pointer to the device with the incremented reference counter is returned. |
| 501 | */ |
| 502 | struct usb_device *usb_get_dev(struct usb_device *dev) |
| 503 | { |
| 504 | if (dev) |
| 505 | get_device(&dev->dev); |
| 506 | return dev; |
| 507 | } |
Greg Kroah-Hartman | 782e70c | 2008-01-25 11:12:21 -0600 | [diff] [blame] | 508 | EXPORT_SYMBOL_GPL(usb_get_dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 509 | |
| 510 | /** |
| 511 | * usb_put_dev - release a use of the usb device structure |
| 512 | * @dev: device that's been disconnected |
| 513 | * |
| 514 | * Must be called when a user of a device is finished with it. When the last |
| 515 | * user of the device calls this function, the memory of the device is freed. |
| 516 | */ |
| 517 | void usb_put_dev(struct usb_device *dev) |
| 518 | { |
| 519 | if (dev) |
| 520 | put_device(&dev->dev); |
| 521 | } |
Greg Kroah-Hartman | 782e70c | 2008-01-25 11:12:21 -0600 | [diff] [blame] | 522 | EXPORT_SYMBOL_GPL(usb_put_dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 523 | |
| 524 | /** |
| 525 | * usb_get_intf - increments the reference count of the usb interface structure |
| 526 | * @intf: the interface being referenced |
| 527 | * |
| 528 | * Each live reference to a interface must be refcounted. |
| 529 | * |
| 530 | * Drivers for USB interfaces should normally record such references in |
| 531 | * their probe() methods, when they bind to an interface, and release |
| 532 | * them by calling usb_put_intf(), in their disconnect() methods. |
| 533 | * |
| 534 | * A pointer to the interface with the incremented reference counter is |
| 535 | * returned. |
| 536 | */ |
| 537 | struct usb_interface *usb_get_intf(struct usb_interface *intf) |
| 538 | { |
| 539 | if (intf) |
| 540 | get_device(&intf->dev); |
| 541 | return intf; |
| 542 | } |
Greg Kroah-Hartman | 782e70c | 2008-01-25 11:12:21 -0600 | [diff] [blame] | 543 | EXPORT_SYMBOL_GPL(usb_get_intf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 544 | |
| 545 | /** |
| 546 | * usb_put_intf - release a use of the usb interface structure |
| 547 | * @intf: interface that's been decremented |
| 548 | * |
| 549 | * Must be called when a user of an interface is finished with it. When the |
| 550 | * last user of the interface calls this function, the memory of the interface |
| 551 | * is freed. |
| 552 | */ |
| 553 | void usb_put_intf(struct usb_interface *intf) |
| 554 | { |
| 555 | if (intf) |
| 556 | put_device(&intf->dev); |
| 557 | } |
Greg Kroah-Hartman | 782e70c | 2008-01-25 11:12:21 -0600 | [diff] [blame] | 558 | EXPORT_SYMBOL_GPL(usb_put_intf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 559 | |
| 560 | /* USB device locking |
| 561 | * |
Alan Stern | 9ad3d6c | 2005-11-17 17:10:32 -0500 | [diff] [blame] | 562 | * USB devices and interfaces are locked using the semaphore in their |
| 563 | * embedded struct device. The hub driver guarantees that whenever a |
| 564 | * device is connected or disconnected, drivers are called with the |
| 565 | * USB device locked as well as their particular interface. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 566 | * |
| 567 | * Complications arise when several devices are to be locked at the same |
| 568 | * time. Only hub-aware drivers that are part of usbcore ever have to |
Alan Stern | 9ad3d6c | 2005-11-17 17:10:32 -0500 | [diff] [blame] | 569 | * do this; nobody else needs to worry about it. The rule for locking |
| 570 | * is simple: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 571 | * |
| 572 | * When locking both a device and its parent, always lock the |
| 573 | * the parent first. |
| 574 | */ |
| 575 | |
| 576 | /** |
Randy Dunlap | d0bcabc | 2008-02-29 22:03:07 -0800 | [diff] [blame] | 577 | * usb_lock_device_for_reset - cautiously acquire the lock for a usb device structure |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 578 | * @udev: device that's being locked |
| 579 | * @iface: interface bound to the driver making the request (optional) |
| 580 | * |
| 581 | * Attempts to acquire the device lock, but fails if the device is |
| 582 | * NOTATTACHED or SUSPENDED, or if iface is specified and the interface |
| 583 | * is neither BINDING nor BOUND. Rather than sleeping to wait for the |
| 584 | * lock, the routine polls repeatedly. This is to prevent deadlock with |
| 585 | * disconnect; in some drivers (such as usb-storage) the disconnect() |
Alan Stern | 3ea1596 | 2005-08-11 10:15:39 -0400 | [diff] [blame] | 586 | * or suspend() method will block waiting for a device reset to complete. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 587 | * |
Alan Stern | 011b15d | 2008-11-04 11:29:27 -0500 | [diff] [blame] | 588 | * Returns a negative error code for failure, otherwise 0. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 589 | */ |
| 590 | int usb_lock_device_for_reset(struct usb_device *udev, |
Luiz Fernando N. Capitulino | 095bc33 | 2006-08-26 23:48:11 -0300 | [diff] [blame] | 591 | const struct usb_interface *iface) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 592 | { |
Alan Stern | 3ea1596 | 2005-08-11 10:15:39 -0400 | [diff] [blame] | 593 | unsigned long jiffies_expire = jiffies + HZ; |
| 594 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 595 | if (udev->state == USB_STATE_NOTATTACHED) |
| 596 | return -ENODEV; |
| 597 | if (udev->state == USB_STATE_SUSPENDED) |
| 598 | return -EHOSTUNREACH; |
Alan Stern | 011b15d | 2008-11-04 11:29:27 -0500 | [diff] [blame] | 599 | if (iface && (iface->condition == USB_INTERFACE_UNBINDING || |
| 600 | iface->condition == USB_INTERFACE_UNBOUND)) |
| 601 | return -EINTR; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 602 | |
Alan Stern | 9ad3d6c | 2005-11-17 17:10:32 -0500 | [diff] [blame] | 603 | while (usb_trylock_device(udev) != 0) { |
Alan Stern | 3ea1596 | 2005-08-11 10:15:39 -0400 | [diff] [blame] | 604 | |
| 605 | /* If we can't acquire the lock after waiting one second, |
| 606 | * we're probably deadlocked */ |
| 607 | if (time_after(jiffies, jiffies_expire)) |
| 608 | return -EBUSY; |
| 609 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 610 | msleep(15); |
| 611 | if (udev->state == USB_STATE_NOTATTACHED) |
| 612 | return -ENODEV; |
| 613 | if (udev->state == USB_STATE_SUSPENDED) |
| 614 | return -EHOSTUNREACH; |
Alan Stern | 011b15d | 2008-11-04 11:29:27 -0500 | [diff] [blame] | 615 | if (iface && (iface->condition == USB_INTERFACE_UNBINDING || |
| 616 | iface->condition == USB_INTERFACE_UNBOUND)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 617 | return -EINTR; |
| 618 | } |
Alan Stern | 011b15d | 2008-11-04 11:29:27 -0500 | [diff] [blame] | 619 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 620 | } |
Greg Kroah-Hartman | 782e70c | 2008-01-25 11:12:21 -0600 | [diff] [blame] | 621 | EXPORT_SYMBOL_GPL(usb_lock_device_for_reset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 622 | |
| 623 | static struct usb_device *match_device(struct usb_device *dev, |
| 624 | u16 vendor_id, u16 product_id) |
| 625 | { |
| 626 | struct usb_device *ret_dev = NULL; |
| 627 | int child; |
| 628 | |
| 629 | dev_dbg(&dev->dev, "check for vendor %04x, product %04x ...\n", |
| 630 | le16_to_cpu(dev->descriptor.idVendor), |
| 631 | le16_to_cpu(dev->descriptor.idProduct)); |
| 632 | |
| 633 | /* see if this device matches */ |
| 634 | if ((vendor_id == le16_to_cpu(dev->descriptor.idVendor)) && |
| 635 | (product_id == le16_to_cpu(dev->descriptor.idProduct))) { |
Oliver Neukum | 9251644 | 2007-01-23 15:55:28 -0500 | [diff] [blame] | 636 | dev_dbg(&dev->dev, "matched this device!\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 637 | ret_dev = usb_get_dev(dev); |
| 638 | goto exit; |
| 639 | } |
| 640 | |
| 641 | /* look through all of the children of this device */ |
| 642 | for (child = 0; child < dev->maxchild; ++child) { |
| 643 | if (dev->children[child]) { |
Alan Stern | 9ad3d6c | 2005-11-17 17:10:32 -0500 | [diff] [blame] | 644 | usb_lock_device(dev->children[child]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 645 | ret_dev = match_device(dev->children[child], |
| 646 | vendor_id, product_id); |
Alan Stern | 9ad3d6c | 2005-11-17 17:10:32 -0500 | [diff] [blame] | 647 | usb_unlock_device(dev->children[child]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 648 | if (ret_dev) |
| 649 | goto exit; |
| 650 | } |
| 651 | } |
| 652 | exit: |
| 653 | return ret_dev; |
| 654 | } |
| 655 | |
| 656 | /** |
| 657 | * usb_find_device - find a specific usb device in the system |
| 658 | * @vendor_id: the vendor id of the device to find |
| 659 | * @product_id: the product id of the device to find |
| 660 | * |
| 661 | * Returns a pointer to a struct usb_device if such a specified usb |
| 662 | * device is present in the system currently. The usage count of the |
| 663 | * device will be incremented if a device is found. Make sure to call |
| 664 | * usb_put_dev() when the caller is finished with the device. |
| 665 | * |
| 666 | * If a device with the specified vendor and product id is not found, |
| 667 | * NULL is returned. |
| 668 | */ |
| 669 | struct usb_device *usb_find_device(u16 vendor_id, u16 product_id) |
| 670 | { |
| 671 | struct list_head *buslist; |
| 672 | struct usb_bus *bus; |
| 673 | struct usb_device *dev = NULL; |
Greg Kroah-Hartman | 2c044a4 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 674 | |
Arjan van de Ven | 4186ecf | 2006-01-11 15:55:29 +0100 | [diff] [blame] | 675 | mutex_lock(&usb_bus_list_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 676 | for (buslist = usb_bus_list.next; |
Greg Kroah-Hartman | 2c044a4 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 677 | buslist != &usb_bus_list; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 678 | buslist = buslist->next) { |
| 679 | bus = container_of(buslist, struct usb_bus, bus_list); |
| 680 | if (!bus->root_hub) |
| 681 | continue; |
| 682 | usb_lock_device(bus->root_hub); |
| 683 | dev = match_device(bus->root_hub, vendor_id, product_id); |
| 684 | usb_unlock_device(bus->root_hub); |
| 685 | if (dev) |
| 686 | goto exit; |
| 687 | } |
| 688 | exit: |
Arjan van de Ven | 4186ecf | 2006-01-11 15:55:29 +0100 | [diff] [blame] | 689 | mutex_unlock(&usb_bus_list_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 690 | return dev; |
| 691 | } |
| 692 | |
| 693 | /** |
| 694 | * usb_get_current_frame_number - return current bus frame number |
| 695 | * @dev: the device whose bus is being queried |
| 696 | * |
| 697 | * Returns the current frame number for the USB host controller |
| 698 | * used with the given USB device. This can be used when scheduling |
| 699 | * isochronous requests. |
| 700 | * |
| 701 | * Note that different kinds of host controller have different |
| 702 | * "scheduling horizons". While one type might support scheduling only |
| 703 | * 32 frames into the future, others could support scheduling up to |
| 704 | * 1024 frames into the future. |
| 705 | */ |
| 706 | int usb_get_current_frame_number(struct usb_device *dev) |
| 707 | { |
Oliver Neukum | 9251644 | 2007-01-23 15:55:28 -0500 | [diff] [blame] | 708 | return usb_hcd_get_frame_number(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 709 | } |
Greg Kroah-Hartman | 782e70c | 2008-01-25 11:12:21 -0600 | [diff] [blame] | 710 | EXPORT_SYMBOL_GPL(usb_get_current_frame_number); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 711 | |
| 712 | /*-------------------------------------------------------------------*/ |
| 713 | /* |
| 714 | * __usb_get_extra_descriptor() finds a descriptor of specific type in the |
| 715 | * extra field of the interface and endpoint descriptor structs. |
| 716 | */ |
| 717 | |
| 718 | int __usb_get_extra_descriptor(char *buffer, unsigned size, |
Greg Kroah-Hartman | 2c044a4 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 719 | unsigned char type, void **ptr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 720 | { |
| 721 | struct usb_descriptor_header *header; |
| 722 | |
| 723 | while (size >= sizeof(struct usb_descriptor_header)) { |
| 724 | header = (struct usb_descriptor_header *)buffer; |
| 725 | |
| 726 | if (header->bLength < 2) { |
| 727 | printk(KERN_ERR |
| 728 | "%s: bogus descriptor, type %d length %d\n", |
| 729 | usbcore_name, |
Greg Kroah-Hartman | 2c044a4 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 730 | header->bDescriptorType, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 731 | header->bLength); |
| 732 | return -1; |
| 733 | } |
| 734 | |
| 735 | if (header->bDescriptorType == type) { |
| 736 | *ptr = header; |
| 737 | return 0; |
| 738 | } |
| 739 | |
| 740 | buffer += header->bLength; |
| 741 | size -= header->bLength; |
| 742 | } |
| 743 | return -1; |
| 744 | } |
Greg Kroah-Hartman | 782e70c | 2008-01-25 11:12:21 -0600 | [diff] [blame] | 745 | EXPORT_SYMBOL_GPL(__usb_get_extra_descriptor); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 746 | |
| 747 | /** |
| 748 | * usb_buffer_alloc - allocate dma-consistent buffer for URB_NO_xxx_DMA_MAP |
| 749 | * @dev: device the buffer will be used with |
| 750 | * @size: requested buffer size |
| 751 | * @mem_flags: affect whether allocation may block |
| 752 | * @dma: used to return DMA address of buffer |
| 753 | * |
| 754 | * Return value is either null (indicating no buffer could be allocated), or |
| 755 | * the cpu-space pointer to a buffer that may be used to perform DMA to the |
| 756 | * specified device. Such cpu-space buffers are returned along with the DMA |
| 757 | * address (through the pointer provided). |
| 758 | * |
| 759 | * These buffers are used with URB_NO_xxx_DMA_MAP set in urb->transfer_flags |
David Brownell | fbf54dd | 2007-07-01 23:33:12 -0700 | [diff] [blame] | 760 | * to avoid behaviors like using "DMA bounce buffers", or thrashing IOMMU |
| 761 | * hardware during URB completion/resubmit. The implementation varies between |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 762 | * platforms, depending on details of how DMA will work to this device. |
David Brownell | fbf54dd | 2007-07-01 23:33:12 -0700 | [diff] [blame] | 763 | * Using these buffers also eliminates cacheline sharing problems on |
| 764 | * architectures where CPU caches are not DMA-coherent. On systems without |
| 765 | * bus-snooping caches, these buffers are uncached. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 766 | * |
| 767 | * When the buffer is no longer used, free it with usb_buffer_free(). |
| 768 | */ |
Greg Kroah-Hartman | 2c044a4 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 769 | void *usb_buffer_alloc(struct usb_device *dev, size_t size, gfp_t mem_flags, |
| 770 | dma_addr_t *dma) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 771 | { |
Alan Stern | a6d2bb9 | 2006-08-30 11:27:36 -0400 | [diff] [blame] | 772 | if (!dev || !dev->bus) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 773 | return NULL; |
Oliver Neukum | 9251644 | 2007-01-23 15:55:28 -0500 | [diff] [blame] | 774 | return hcd_buffer_alloc(dev->bus, size, mem_flags, dma); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 775 | } |
Greg Kroah-Hartman | 782e70c | 2008-01-25 11:12:21 -0600 | [diff] [blame] | 776 | EXPORT_SYMBOL_GPL(usb_buffer_alloc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 777 | |
| 778 | /** |
| 779 | * usb_buffer_free - free memory allocated with usb_buffer_alloc() |
| 780 | * @dev: device the buffer was used with |
| 781 | * @size: requested buffer size |
| 782 | * @addr: CPU address of buffer |
| 783 | * @dma: DMA address of buffer |
| 784 | * |
| 785 | * This reclaims an I/O buffer, letting it be reused. The memory must have |
| 786 | * been allocated using usb_buffer_alloc(), and the parameters must match |
David Brownell | fbf54dd | 2007-07-01 23:33:12 -0700 | [diff] [blame] | 787 | * those provided in that allocation request. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 788 | */ |
Greg Kroah-Hartman | 2c044a4 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 789 | void usb_buffer_free(struct usb_device *dev, size_t size, void *addr, |
| 790 | dma_addr_t dma) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 791 | { |
Alan Stern | a6d2bb9 | 2006-08-30 11:27:36 -0400 | [diff] [blame] | 792 | if (!dev || !dev->bus) |
Dmitry Torokhov | b94badb | 2006-08-01 22:33:34 -0400 | [diff] [blame] | 793 | return; |
| 794 | if (!addr) |
| 795 | return; |
Oliver Neukum | 9251644 | 2007-01-23 15:55:28 -0500 | [diff] [blame] | 796 | hcd_buffer_free(dev->bus, size, addr, dma); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 797 | } |
Greg Kroah-Hartman | 782e70c | 2008-01-25 11:12:21 -0600 | [diff] [blame] | 798 | EXPORT_SYMBOL_GPL(usb_buffer_free); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 799 | |
| 800 | /** |
| 801 | * usb_buffer_map - create DMA mapping(s) for an urb |
| 802 | * @urb: urb whose transfer_buffer/setup_packet will be mapped |
| 803 | * |
| 804 | * Return value is either null (indicating no buffer could be mapped), or |
| 805 | * the parameter. URB_NO_TRANSFER_DMA_MAP and URB_NO_SETUP_DMA_MAP are |
| 806 | * added to urb->transfer_flags if the operation succeeds. If the device |
| 807 | * is connected to this system through a non-DMA controller, this operation |
| 808 | * always succeeds. |
| 809 | * |
| 810 | * This call would normally be used for an urb which is reused, perhaps |
| 811 | * as the target of a large periodic transfer, with usb_buffer_dmasync() |
| 812 | * calls to synchronize memory and dma state. |
| 813 | * |
| 814 | * Reverse the effect of this call with usb_buffer_unmap(). |
| 815 | */ |
| 816 | #if 0 |
Oliver Neukum | 9251644 | 2007-01-23 15:55:28 -0500 | [diff] [blame] | 817 | struct urb *usb_buffer_map(struct urb *urb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 818 | { |
| 819 | struct usb_bus *bus; |
| 820 | struct device *controller; |
| 821 | |
| 822 | if (!urb |
| 823 | || !urb->dev |
| 824 | || !(bus = urb->dev->bus) |
| 825 | || !(controller = bus->controller)) |
| 826 | return NULL; |
| 827 | |
| 828 | if (controller->dma_mask) { |
Oliver Neukum | 9251644 | 2007-01-23 15:55:28 -0500 | [diff] [blame] | 829 | urb->transfer_dma = dma_map_single(controller, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 830 | urb->transfer_buffer, urb->transfer_buffer_length, |
Oliver Neukum | 9251644 | 2007-01-23 15:55:28 -0500 | [diff] [blame] | 831 | usb_pipein(urb->pipe) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 832 | ? DMA_FROM_DEVICE : DMA_TO_DEVICE); |
Oliver Neukum | 9251644 | 2007-01-23 15:55:28 -0500 | [diff] [blame] | 833 | if (usb_pipecontrol(urb->pipe)) |
| 834 | urb->setup_dma = dma_map_single(controller, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 835 | urb->setup_packet, |
Oliver Neukum | 9251644 | 2007-01-23 15:55:28 -0500 | [diff] [blame] | 836 | sizeof(struct usb_ctrlrequest), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 837 | DMA_TO_DEVICE); |
Greg Kroah-Hartman | 2c044a4 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 838 | /* FIXME generic api broken like pci, can't report errors */ |
| 839 | /* if (urb->transfer_dma == DMA_ADDR_INVALID) return 0; */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 840 | } else |
| 841 | urb->transfer_dma = ~0; |
| 842 | urb->transfer_flags |= (URB_NO_TRANSFER_DMA_MAP |
| 843 | | URB_NO_SETUP_DMA_MAP); |
| 844 | return urb; |
| 845 | } |
Greg Kroah-Hartman | 782e70c | 2008-01-25 11:12:21 -0600 | [diff] [blame] | 846 | EXPORT_SYMBOL_GPL(usb_buffer_map); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 847 | #endif /* 0 */ |
| 848 | |
| 849 | /* XXX DISABLED, no users currently. If you wish to re-enable this |
| 850 | * XXX please determine whether the sync is to transfer ownership of |
| 851 | * XXX the buffer from device to cpu or vice verse, and thusly use the |
| 852 | * XXX appropriate _for_{cpu,device}() method. -DaveM |
| 853 | */ |
| 854 | #if 0 |
| 855 | |
| 856 | /** |
| 857 | * usb_buffer_dmasync - synchronize DMA and CPU view of buffer(s) |
| 858 | * @urb: urb whose transfer_buffer/setup_packet will be synchronized |
| 859 | */ |
Oliver Neukum | 9251644 | 2007-01-23 15:55:28 -0500 | [diff] [blame] | 860 | void usb_buffer_dmasync(struct urb *urb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 861 | { |
| 862 | struct usb_bus *bus; |
| 863 | struct device *controller; |
| 864 | |
| 865 | if (!urb |
| 866 | || !(urb->transfer_flags & URB_NO_TRANSFER_DMA_MAP) |
| 867 | || !urb->dev |
| 868 | || !(bus = urb->dev->bus) |
| 869 | || !(controller = bus->controller)) |
| 870 | return; |
| 871 | |
| 872 | if (controller->dma_mask) { |
FUJITA Tomonori | 9b8e7ba | 2009-05-28 10:10:44 +0900 | [diff] [blame] | 873 | dma_sync_single_for_cpu(controller, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 874 | urb->transfer_dma, urb->transfer_buffer_length, |
Oliver Neukum | 9251644 | 2007-01-23 15:55:28 -0500 | [diff] [blame] | 875 | usb_pipein(urb->pipe) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 876 | ? DMA_FROM_DEVICE : DMA_TO_DEVICE); |
Oliver Neukum | 9251644 | 2007-01-23 15:55:28 -0500 | [diff] [blame] | 877 | if (usb_pipecontrol(urb->pipe)) |
FUJITA Tomonori | 9b8e7ba | 2009-05-28 10:10:44 +0900 | [diff] [blame] | 878 | dma_sync_single_for_cpu(controller, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 879 | urb->setup_dma, |
Oliver Neukum | 9251644 | 2007-01-23 15:55:28 -0500 | [diff] [blame] | 880 | sizeof(struct usb_ctrlrequest), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 881 | DMA_TO_DEVICE); |
| 882 | } |
| 883 | } |
Greg Kroah-Hartman | 782e70c | 2008-01-25 11:12:21 -0600 | [diff] [blame] | 884 | EXPORT_SYMBOL_GPL(usb_buffer_dmasync); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 885 | #endif |
| 886 | |
| 887 | /** |
| 888 | * usb_buffer_unmap - free DMA mapping(s) for an urb |
| 889 | * @urb: urb whose transfer_buffer will be unmapped |
| 890 | * |
| 891 | * Reverses the effect of usb_buffer_map(). |
| 892 | */ |
| 893 | #if 0 |
Oliver Neukum | 9251644 | 2007-01-23 15:55:28 -0500 | [diff] [blame] | 894 | void usb_buffer_unmap(struct urb *urb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 895 | { |
| 896 | struct usb_bus *bus; |
| 897 | struct device *controller; |
| 898 | |
| 899 | if (!urb |
| 900 | || !(urb->transfer_flags & URB_NO_TRANSFER_DMA_MAP) |
| 901 | || !urb->dev |
| 902 | || !(bus = urb->dev->bus) |
| 903 | || !(controller = bus->controller)) |
| 904 | return; |
| 905 | |
| 906 | if (controller->dma_mask) { |
Oliver Neukum | 9251644 | 2007-01-23 15:55:28 -0500 | [diff] [blame] | 907 | dma_unmap_single(controller, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 908 | urb->transfer_dma, urb->transfer_buffer_length, |
Oliver Neukum | 9251644 | 2007-01-23 15:55:28 -0500 | [diff] [blame] | 909 | usb_pipein(urb->pipe) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 910 | ? DMA_FROM_DEVICE : DMA_TO_DEVICE); |
Oliver Neukum | 9251644 | 2007-01-23 15:55:28 -0500 | [diff] [blame] | 911 | if (usb_pipecontrol(urb->pipe)) |
| 912 | dma_unmap_single(controller, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 913 | urb->setup_dma, |
Oliver Neukum | 9251644 | 2007-01-23 15:55:28 -0500 | [diff] [blame] | 914 | sizeof(struct usb_ctrlrequest), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 915 | DMA_TO_DEVICE); |
| 916 | } |
| 917 | urb->transfer_flags &= ~(URB_NO_TRANSFER_DMA_MAP |
| 918 | | URB_NO_SETUP_DMA_MAP); |
| 919 | } |
Greg Kroah-Hartman | 782e70c | 2008-01-25 11:12:21 -0600 | [diff] [blame] | 920 | EXPORT_SYMBOL_GPL(usb_buffer_unmap); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 921 | #endif /* 0 */ |
| 922 | |
| 923 | /** |
| 924 | * usb_buffer_map_sg - create scatterlist DMA mapping(s) for an endpoint |
| 925 | * @dev: device to which the scatterlist will be mapped |
Alan Stern | 5e60a16 | 2007-07-30 17:07:21 -0400 | [diff] [blame] | 926 | * @is_in: mapping transfer direction |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 927 | * @sg: the scatterlist to map |
| 928 | * @nents: the number of entries in the scatterlist |
| 929 | * |
| 930 | * Return value is either < 0 (indicating no buffers could be mapped), or |
| 931 | * the number of DMA mapping array entries in the scatterlist. |
| 932 | * |
| 933 | * The caller is responsible for placing the resulting DMA addresses from |
| 934 | * the scatterlist into URB transfer buffer pointers, and for setting the |
| 935 | * URB_NO_TRANSFER_DMA_MAP transfer flag in each of those URBs. |
| 936 | * |
| 937 | * Top I/O rates come from queuing URBs, instead of waiting for each one |
| 938 | * to complete before starting the next I/O. This is particularly easy |
| 939 | * to do with scatterlists. Just allocate and submit one URB for each DMA |
| 940 | * mapping entry returned, stopping on the first error or when all succeed. |
| 941 | * Better yet, use the usb_sg_*() calls, which do that (and more) for you. |
| 942 | * |
| 943 | * This call would normally be used when translating scatterlist requests, |
| 944 | * rather than usb_buffer_map(), since on some hardware (with IOMMUs) it |
| 945 | * may be able to coalesce mappings for improved I/O efficiency. |
| 946 | * |
| 947 | * Reverse the effect of this call with usb_buffer_unmap_sg(). |
| 948 | */ |
Alan Stern | 5e60a16 | 2007-07-30 17:07:21 -0400 | [diff] [blame] | 949 | int usb_buffer_map_sg(const struct usb_device *dev, int is_in, |
Luiz Fernando N. Capitulino | 095bc33 | 2006-08-26 23:48:11 -0300 | [diff] [blame] | 950 | struct scatterlist *sg, int nents) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 951 | { |
| 952 | struct usb_bus *bus; |
| 953 | struct device *controller; |
| 954 | |
| 955 | if (!dev |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 956 | || !(bus = dev->bus) |
| 957 | || !(controller = bus->controller) |
| 958 | || !controller->dma_mask) |
Jiri Slaby | 2912282 | 2009-08-22 20:24:49 +0200 | [diff] [blame] | 959 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 960 | |
Greg Kroah-Hartman | 2c044a4 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 961 | /* FIXME generic api broken like pci, can't report errors */ |
Oliver Neukum | 9251644 | 2007-01-23 15:55:28 -0500 | [diff] [blame] | 962 | return dma_map_sg(controller, sg, nents, |
Jiri Slaby | 2912282 | 2009-08-22 20:24:49 +0200 | [diff] [blame] | 963 | is_in ? DMA_FROM_DEVICE : DMA_TO_DEVICE) ? : -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 964 | } |
Greg Kroah-Hartman | 782e70c | 2008-01-25 11:12:21 -0600 | [diff] [blame] | 965 | EXPORT_SYMBOL_GPL(usb_buffer_map_sg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 966 | |
| 967 | /* XXX DISABLED, no users currently. If you wish to re-enable this |
| 968 | * XXX please determine whether the sync is to transfer ownership of |
| 969 | * XXX the buffer from device to cpu or vice verse, and thusly use the |
| 970 | * XXX appropriate _for_{cpu,device}() method. -DaveM |
| 971 | */ |
| 972 | #if 0 |
| 973 | |
| 974 | /** |
| 975 | * usb_buffer_dmasync_sg - synchronize DMA and CPU view of scatterlist buffer(s) |
| 976 | * @dev: device to which the scatterlist will be mapped |
Alan Stern | 5e60a16 | 2007-07-30 17:07:21 -0400 | [diff] [blame] | 977 | * @is_in: mapping transfer direction |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 978 | * @sg: the scatterlist to synchronize |
| 979 | * @n_hw_ents: the positive return value from usb_buffer_map_sg |
| 980 | * |
| 981 | * Use this when you are re-using a scatterlist's data buffers for |
| 982 | * another USB request. |
| 983 | */ |
Alan Stern | 5e60a16 | 2007-07-30 17:07:21 -0400 | [diff] [blame] | 984 | void usb_buffer_dmasync_sg(const struct usb_device *dev, int is_in, |
Luiz Fernando N. Capitulino | 095bc33 | 2006-08-26 23:48:11 -0300 | [diff] [blame] | 985 | struct scatterlist *sg, int n_hw_ents) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 986 | { |
| 987 | struct usb_bus *bus; |
| 988 | struct device *controller; |
| 989 | |
| 990 | if (!dev |
| 991 | || !(bus = dev->bus) |
| 992 | || !(controller = bus->controller) |
| 993 | || !controller->dma_mask) |
| 994 | return; |
| 995 | |
FUJITA Tomonori | 9b8e7ba | 2009-05-28 10:10:44 +0900 | [diff] [blame] | 996 | dma_sync_sg_for_cpu(controller, sg, n_hw_ents, |
| 997 | is_in ? DMA_FROM_DEVICE : DMA_TO_DEVICE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 998 | } |
Greg Kroah-Hartman | 782e70c | 2008-01-25 11:12:21 -0600 | [diff] [blame] | 999 | EXPORT_SYMBOL_GPL(usb_buffer_dmasync_sg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1000 | #endif |
| 1001 | |
| 1002 | /** |
| 1003 | * usb_buffer_unmap_sg - free DMA mapping(s) for a scatterlist |
| 1004 | * @dev: device to which the scatterlist will be mapped |
Alan Stern | 5e60a16 | 2007-07-30 17:07:21 -0400 | [diff] [blame] | 1005 | * @is_in: mapping transfer direction |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1006 | * @sg: the scatterlist to unmap |
| 1007 | * @n_hw_ents: the positive return value from usb_buffer_map_sg |
| 1008 | * |
| 1009 | * Reverses the effect of usb_buffer_map_sg(). |
| 1010 | */ |
Alan Stern | 5e60a16 | 2007-07-30 17:07:21 -0400 | [diff] [blame] | 1011 | void usb_buffer_unmap_sg(const struct usb_device *dev, int is_in, |
Luiz Fernando N. Capitulino | 095bc33 | 2006-08-26 23:48:11 -0300 | [diff] [blame] | 1012 | struct scatterlist *sg, int n_hw_ents) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1013 | { |
| 1014 | struct usb_bus *bus; |
| 1015 | struct device *controller; |
| 1016 | |
| 1017 | if (!dev |
| 1018 | || !(bus = dev->bus) |
| 1019 | || !(controller = bus->controller) |
| 1020 | || !controller->dma_mask) |
| 1021 | return; |
| 1022 | |
Oliver Neukum | 9251644 | 2007-01-23 15:55:28 -0500 | [diff] [blame] | 1023 | dma_unmap_sg(controller, sg, n_hw_ents, |
Alan Stern | 5e60a16 | 2007-07-30 17:07:21 -0400 | [diff] [blame] | 1024 | is_in ? DMA_FROM_DEVICE : DMA_TO_DEVICE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1025 | } |
Greg Kroah-Hartman | 782e70c | 2008-01-25 11:12:21 -0600 | [diff] [blame] | 1026 | EXPORT_SYMBOL_GPL(usb_buffer_unmap_sg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1027 | |
Rusty Russell | 785895f | 2008-11-22 13:01:06 +1030 | [diff] [blame] | 1028 | /* To disable USB, kernel command line is 'nousb' not 'usbcore.nousb' */ |
| 1029 | #ifdef MODULE |
| 1030 | module_param(nousb, bool, 0444); |
| 1031 | #else |
| 1032 | core_param(nousb, nousb, bool, 0444); |
| 1033 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1034 | |
| 1035 | /* |
| 1036 | * for external read access to <nousb> |
| 1037 | */ |
| 1038 | int usb_disabled(void) |
| 1039 | { |
| 1040 | return nousb; |
| 1041 | } |
Greg Kroah-Hartman | 782e70c | 2008-01-25 11:12:21 -0600 | [diff] [blame] | 1042 | EXPORT_SYMBOL_GPL(usb_disabled); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1043 | |
| 1044 | /* |
Alan Stern | 3b23dd6 | 2008-12-05 14:10:34 -0500 | [diff] [blame] | 1045 | * Notifications of device and interface registration |
| 1046 | */ |
| 1047 | static int usb_bus_notify(struct notifier_block *nb, unsigned long action, |
| 1048 | void *data) |
| 1049 | { |
| 1050 | struct device *dev = data; |
| 1051 | |
| 1052 | switch (action) { |
| 1053 | case BUS_NOTIFY_ADD_DEVICE: |
| 1054 | if (dev->type == &usb_device_type) |
| 1055 | (void) usb_create_sysfs_dev_files(to_usb_device(dev)); |
| 1056 | else if (dev->type == &usb_if_device_type) |
| 1057 | (void) usb_create_sysfs_intf_files( |
| 1058 | to_usb_interface(dev)); |
| 1059 | break; |
| 1060 | |
| 1061 | case BUS_NOTIFY_DEL_DEVICE: |
| 1062 | if (dev->type == &usb_device_type) |
| 1063 | usb_remove_sysfs_dev_files(to_usb_device(dev)); |
| 1064 | else if (dev->type == &usb_if_device_type) |
| 1065 | usb_remove_sysfs_intf_files(to_usb_interface(dev)); |
| 1066 | break; |
| 1067 | } |
| 1068 | return 0; |
| 1069 | } |
| 1070 | |
| 1071 | static struct notifier_block usb_bus_nb = { |
| 1072 | .notifier_call = usb_bus_notify, |
| 1073 | }; |
| 1074 | |
Greg Kroah-Hartman | 00048b8 | 2009-04-24 14:56:26 -0700 | [diff] [blame] | 1075 | struct dentry *usb_debug_root; |
| 1076 | EXPORT_SYMBOL_GPL(usb_debug_root); |
| 1077 | |
Felipe Balbi | 719a6e8 | 2009-12-04 15:47:42 +0200 | [diff] [blame] | 1078 | static struct dentry *usb_debug_devices; |
Greg Kroah-Hartman | 97d7b7a | 2009-04-24 15:16:04 -0700 | [diff] [blame] | 1079 | |
Greg Kroah-Hartman | 00048b8 | 2009-04-24 14:56:26 -0700 | [diff] [blame] | 1080 | static int usb_debugfs_init(void) |
| 1081 | { |
| 1082 | usb_debug_root = debugfs_create_dir("usb", NULL); |
| 1083 | if (!usb_debug_root) |
| 1084 | return -ENOENT; |
Greg Kroah-Hartman | 97d7b7a | 2009-04-24 15:16:04 -0700 | [diff] [blame] | 1085 | |
| 1086 | usb_debug_devices = debugfs_create_file("devices", 0444, |
| 1087 | usb_debug_root, NULL, |
| 1088 | &usbfs_devices_fops); |
| 1089 | if (!usb_debug_devices) { |
| 1090 | debugfs_remove(usb_debug_root); |
| 1091 | usb_debug_root = NULL; |
| 1092 | return -ENOENT; |
| 1093 | } |
| 1094 | |
Greg Kroah-Hartman | 00048b8 | 2009-04-24 14:56:26 -0700 | [diff] [blame] | 1095 | return 0; |
| 1096 | } |
| 1097 | |
| 1098 | static void usb_debugfs_cleanup(void) |
| 1099 | { |
Greg Kroah-Hartman | 97d7b7a | 2009-04-24 15:16:04 -0700 | [diff] [blame] | 1100 | debugfs_remove(usb_debug_devices); |
Greg Kroah-Hartman | 00048b8 | 2009-04-24 14:56:26 -0700 | [diff] [blame] | 1101 | debugfs_remove(usb_debug_root); |
| 1102 | } |
| 1103 | |
Alan Stern | 3b23dd6 | 2008-12-05 14:10:34 -0500 | [diff] [blame] | 1104 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1105 | * Init |
| 1106 | */ |
| 1107 | static int __init usb_init(void) |
| 1108 | { |
| 1109 | int retval; |
| 1110 | if (nousb) { |
Oliver Neukum | 9251644 | 2007-01-23 15:55:28 -0500 | [diff] [blame] | 1111 | pr_info("%s: USB support disabled\n", usbcore_name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1112 | return 0; |
| 1113 | } |
| 1114 | |
Greg Kroah-Hartman | 00048b8 | 2009-04-24 14:56:26 -0700 | [diff] [blame] | 1115 | retval = usb_debugfs_init(); |
| 1116 | if (retval) |
| 1117 | goto out; |
| 1118 | |
Alan Stern | bd85928 | 2006-09-19 10:14:07 -0400 | [diff] [blame] | 1119 | retval = ksuspend_usb_init(); |
| 1120 | if (retval) |
| 1121 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1122 | retval = bus_register(&usb_bus_type); |
Greg Kroah-Hartman | 2c044a4 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 1123 | if (retval) |
Alan Stern | bd85928 | 2006-09-19 10:14:07 -0400 | [diff] [blame] | 1124 | goto bus_register_failed; |
Alan Stern | 3b23dd6 | 2008-12-05 14:10:34 -0500 | [diff] [blame] | 1125 | retval = bus_register_notifier(&usb_bus_type, &usb_bus_nb); |
| 1126 | if (retval) |
| 1127 | goto bus_notifier_failed; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1128 | retval = usb_major_init(); |
| 1129 | if (retval) |
| 1130 | goto major_init_failed; |
Kay Sievers | fbf82fd | 2005-07-31 01:05:53 +0200 | [diff] [blame] | 1131 | retval = usb_register(&usbfs_driver); |
| 1132 | if (retval) |
| 1133 | goto driver_register_failed; |
Kay Sievers | 9f8b17e | 2007-03-13 15:59:31 +0100 | [diff] [blame] | 1134 | retval = usb_devio_init(); |
Kay Sievers | fbf82fd | 2005-07-31 01:05:53 +0200 | [diff] [blame] | 1135 | if (retval) |
Kay Sievers | 9f8b17e | 2007-03-13 15:59:31 +0100 | [diff] [blame] | 1136 | goto usb_devio_init_failed; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1137 | retval = usbfs_init(); |
| 1138 | if (retval) |
| 1139 | goto fs_init_failed; |
| 1140 | retval = usb_hub_init(); |
| 1141 | if (retval) |
| 1142 | goto hub_init_failed; |
Alan Stern | 8bb54ab | 2006-07-01 22:08:49 -0400 | [diff] [blame] | 1143 | retval = usb_register_device_driver(&usb_generic_driver, THIS_MODULE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1144 | if (!retval) |
| 1145 | goto out; |
| 1146 | |
| 1147 | usb_hub_cleanup(); |
| 1148 | hub_init_failed: |
| 1149 | usbfs_cleanup(); |
| 1150 | fs_init_failed: |
Kay Sievers | 9f8b17e | 2007-03-13 15:59:31 +0100 | [diff] [blame] | 1151 | usb_devio_cleanup(); |
| 1152 | usb_devio_init_failed: |
Kay Sievers | fbf82fd | 2005-07-31 01:05:53 +0200 | [diff] [blame] | 1153 | usb_deregister(&usbfs_driver); |
| 1154 | driver_register_failed: |
| 1155 | usb_major_cleanup(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1156 | major_init_failed: |
Alan Stern | 3b23dd6 | 2008-12-05 14:10:34 -0500 | [diff] [blame] | 1157 | bus_unregister_notifier(&usb_bus_type, &usb_bus_nb); |
| 1158 | bus_notifier_failed: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1159 | bus_unregister(&usb_bus_type); |
Alan Stern | bd85928 | 2006-09-19 10:14:07 -0400 | [diff] [blame] | 1160 | bus_register_failed: |
| 1161 | ksuspend_usb_cleanup(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1162 | out: |
| 1163 | return retval; |
| 1164 | } |
| 1165 | |
| 1166 | /* |
| 1167 | * Cleanup |
| 1168 | */ |
| 1169 | static void __exit usb_exit(void) |
| 1170 | { |
| 1171 | /* This will matter if shutdown/reboot does exitcalls. */ |
| 1172 | if (nousb) |
| 1173 | return; |
| 1174 | |
Alan Stern | 8bb54ab | 2006-07-01 22:08:49 -0400 | [diff] [blame] | 1175 | usb_deregister_device_driver(&usb_generic_driver); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1176 | usb_major_cleanup(); |
| 1177 | usbfs_cleanup(); |
Kay Sievers | fbf82fd | 2005-07-31 01:05:53 +0200 | [diff] [blame] | 1178 | usb_deregister(&usbfs_driver); |
Kay Sievers | 9f8b17e | 2007-03-13 15:59:31 +0100 | [diff] [blame] | 1179 | usb_devio_cleanup(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1180 | usb_hub_cleanup(); |
Alan Stern | 3b23dd6 | 2008-12-05 14:10:34 -0500 | [diff] [blame] | 1181 | bus_unregister_notifier(&usb_bus_type, &usb_bus_nb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1182 | bus_unregister(&usb_bus_type); |
Alan Stern | bd85928 | 2006-09-19 10:14:07 -0400 | [diff] [blame] | 1183 | ksuspend_usb_cleanup(); |
Greg Kroah-Hartman | 00048b8 | 2009-04-24 14:56:26 -0700 | [diff] [blame] | 1184 | usb_debugfs_cleanup(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1185 | } |
| 1186 | |
| 1187 | subsys_initcall(usb_init); |
| 1188 | module_exit(usb_exit); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1189 | MODULE_LICENSE("GPL"); |