blob: a5d11461f5a9cfff76ca8c9a37ac68762b14dd79 [file] [log] [blame]
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -08001/*
2 * drivers/usb/driver.c - most of the driver model stuff for usb
3 *
4 * (C) Copyright 2005 Greg Kroah-Hartman <gregkh@suse.de>
5 *
6 * based on drivers/usb/usb.c which had the following copyrights:
7 * (C) Copyright Linus Torvalds 1999
8 * (C) Copyright Johannes Erdfelt 1999-2001
9 * (C) Copyright Andreas Gal 1999
10 * (C) Copyright Gregory P. Smith 1999
11 * (C) Copyright Deti Fliegl 1999 (new USB architecture)
12 * (C) Copyright Randy Dunlap 2000
13 * (C) Copyright David Brownell 2000-2004
14 * (C) Copyright Yggdrasil Computing, Inc. 2000
15 * (usb_device_id matching changes by Adam J. Richter)
16 * (C) Copyright Greg Kroah-Hartman 2002-2003
17 *
18 * NOTE! This is not actually a driver at all, rather this is
19 * just a collection of helper routines that implement the
Alan Stern36e56a32006-07-01 22:08:06 -040020 * matching, probing, releasing, suspending and resuming for
21 * real drivers.
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -080022 *
23 */
24
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -080025#include <linux/device.h>
26#include <linux/usb.h>
27#include "hcd.h"
28#include "usb.h"
29
Greg Kroah-Hartman733260f2005-11-16 13:41:28 -080030static int usb_match_one_id(struct usb_interface *interface,
31 const struct usb_device_id *id);
32
33struct usb_dynid {
34 struct list_head node;
35 struct usb_device_id id;
36};
37
Greg Kroah-Hartman733260f2005-11-16 13:41:28 -080038#ifdef CONFIG_HOTPLUG
39
40/*
41 * Adds a new dynamic USBdevice ID to this driver,
42 * and cause the driver to probe for all devices again.
43 */
44static ssize_t store_new_id(struct device_driver *driver,
45 const char *buf, size_t count)
46{
47 struct usb_driver *usb_drv = to_usb_driver(driver);
48 struct usb_dynid *dynid;
49 u32 idVendor = 0;
50 u32 idProduct = 0;
51 int fields = 0;
52
53 fields = sscanf(buf, "%x %x", &idVendor, &idProduct);
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;
65
66 spin_lock(&usb_drv->dynids.lock);
67 list_add_tail(&usb_drv->dynids.list, &dynid->node);
68 spin_unlock(&usb_drv->dynids.lock);
69
70 if (get_driver(driver)) {
71 driver_attach(driver);
72 put_driver(driver);
73 }
74
75 return count;
76}
77static DRIVER_ATTR(new_id, S_IWUSR, NULL, store_new_id);
78
79static int usb_create_newid_file(struct usb_driver *usb_drv)
80{
81 int error = 0;
82
Greg Kroah-Hartmanba9dc652005-11-16 13:41:28 -080083 if (usb_drv->no_dynamic_id)
84 goto exit;
85
Greg Kroah-Hartman733260f2005-11-16 13:41:28 -080086 if (usb_drv->probe != NULL)
Alan Stern8bb54ab2006-07-01 22:08:49 -040087 error = sysfs_create_file(&usb_drv->drvwrap.driver.kobj,
Greg Kroah-Hartman733260f2005-11-16 13:41:28 -080088 &driver_attr_new_id.attr);
Greg Kroah-Hartmanba9dc652005-11-16 13:41:28 -080089exit:
Greg Kroah-Hartman733260f2005-11-16 13:41:28 -080090 return error;
91}
92
Greg Kroah-Hartmanba9dc652005-11-16 13:41:28 -080093static void usb_remove_newid_file(struct usb_driver *usb_drv)
94{
95 if (usb_drv->no_dynamic_id)
96 return;
97
98 if (usb_drv->probe != NULL)
Alan Stern8bb54ab2006-07-01 22:08:49 -040099 sysfs_remove_file(&usb_drv->drvwrap.driver.kobj,
Greg Kroah-Hartmanba9dc652005-11-16 13:41:28 -0800100 &driver_attr_new_id.attr);
101}
102
Greg Kroah-Hartman733260f2005-11-16 13:41:28 -0800103static void usb_free_dynids(struct usb_driver *usb_drv)
104{
105 struct usb_dynid *dynid, *n;
106
107 spin_lock(&usb_drv->dynids.lock);
108 list_for_each_entry_safe(dynid, n, &usb_drv->dynids.list, node) {
109 list_del(&dynid->node);
110 kfree(dynid);
111 }
112 spin_unlock(&usb_drv->dynids.lock);
113}
114#else
115static inline int usb_create_newid_file(struct usb_driver *usb_drv)
116{
117 return 0;
118}
119
Greg Kroah-Hartmanba9dc652005-11-16 13:41:28 -0800120static void usb_remove_newid_file(struct usb_driver *usb_drv)
121{
122}
123
Greg Kroah-Hartman733260f2005-11-16 13:41:28 -0800124static inline void usb_free_dynids(struct usb_driver *usb_drv)
125{
126}
127#endif
128
129static const struct usb_device_id *usb_match_dynamic_id(struct usb_interface *intf,
130 struct usb_driver *drv)
131{
132 struct usb_dynid *dynid;
133
134 spin_lock(&drv->dynids.lock);
135 list_for_each_entry(dynid, &drv->dynids.list, node) {
136 if (usb_match_one_id(intf, &dynid->id)) {
137 spin_unlock(&drv->dynids.lock);
138 return &dynid->id;
139 }
140 }
141 spin_unlock(&drv->dynids.lock);
142 return NULL;
143}
144
145
Alan Stern8bb54ab2006-07-01 22:08:49 -0400146/* called from driver core with dev locked */
147static int usb_probe_device(struct device *dev)
148{
149 struct usb_device_driver *udriver = to_usb_device_driver(dev->driver);
150 struct usb_device *udev;
151 int error = -ENODEV;
152
153 dev_dbg(dev, "%s\n", __FUNCTION__);
154
155 if (!is_usb_device(dev)) /* Sanity check */
156 return error;
157
158 udev = to_usb_device(dev);
159
160 /* FIXME: resume a suspended device */
161 if (udev->state == USB_STATE_SUSPENDED)
162 return -EHOSTUNREACH;
163
164 /* TODO: Add real matching code */
165
166 error = udriver->probe(udev);
167 return error;
168}
169
170/* called from driver core with dev locked */
171static int usb_unbind_device(struct device *dev)
172{
173 struct usb_device_driver *udriver = to_usb_device_driver(dev->driver);
174
175 udriver->disconnect(to_usb_device(dev));
176 return 0;
177}
178
179
180/* called from driver core with dev locked */
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800181static int usb_probe_interface(struct device *dev)
182{
Alan Stern8bb54ab2006-07-01 22:08:49 -0400183 struct usb_driver *driver = to_usb_driver(dev->driver);
184 struct usb_interface *intf;
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800185 const struct usb_device_id *id;
186 int error = -ENODEV;
187
188 dev_dbg(dev, "%s\n", __FUNCTION__);
189
Alan Stern8bb54ab2006-07-01 22:08:49 -0400190 if (is_usb_device(dev)) /* Sanity check */
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800191 return error;
Alan Stern8bb54ab2006-07-01 22:08:49 -0400192
193 intf = to_usb_interface(dev);
194
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800195 /* FIXME we'd much prefer to just resume it ... */
196 if (interface_to_usbdev(intf)->state == USB_STATE_SUSPENDED)
197 return -EHOSTUNREACH;
198
199 id = usb_match_id(intf, driver->id_table);
Greg Kroah-Hartman733260f2005-11-16 13:41:28 -0800200 if (!id)
201 id = usb_match_dynamic_id(intf, driver);
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800202 if (id) {
203 dev_dbg(dev, "%s - got id\n", __FUNCTION__);
204
205 /* Interface "power state" doesn't correspond to any hardware
206 * state whatsoever. We use it to record when it's bound to
207 * a driver that may start I/0: it's not frozen/quiesced.
208 */
209 mark_active(intf);
210 intf->condition = USB_INTERFACE_BINDING;
211 error = driver->probe(intf, id);
212 if (error) {
213 mark_quiesced(intf);
214 intf->condition = USB_INTERFACE_UNBOUND;
215 } else
216 intf->condition = USB_INTERFACE_BOUND;
217 }
218
219 return error;
220}
221
Alan Stern8bb54ab2006-07-01 22:08:49 -0400222/* called from driver core with dev locked */
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800223static int usb_unbind_interface(struct device *dev)
224{
Alan Stern8bb54ab2006-07-01 22:08:49 -0400225 struct usb_driver *driver = to_usb_driver(dev->driver);
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800226 struct usb_interface *intf = to_usb_interface(dev);
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800227
228 intf->condition = USB_INTERFACE_UNBINDING;
229
230 /* release all urbs for this interface */
231 usb_disable_interface(interface_to_usbdev(intf), intf);
232
Alan Stern8bb54ab2006-07-01 22:08:49 -0400233 driver->disconnect(intf);
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800234
235 /* reset other interface state */
236 usb_set_interface(interface_to_usbdev(intf),
237 intf->altsetting[0].desc.bInterfaceNumber,
238 0);
239 usb_set_intfdata(intf, NULL);
240 intf->condition = USB_INTERFACE_UNBOUND;
241 mark_quiesced(intf);
242
243 return 0;
244}
245
Alan Stern36e56a32006-07-01 22:08:06 -0400246/**
247 * usb_driver_claim_interface - bind a driver to an interface
248 * @driver: the driver to be bound
249 * @iface: the interface to which it will be bound; must be in the
250 * usb device's active configuration
251 * @priv: driver data associated with that interface
252 *
253 * This is used by usb device drivers that need to claim more than one
254 * interface on a device when probing (audio and acm are current examples).
255 * No device driver should directly modify internal usb_interface or
256 * usb_device structure members.
257 *
258 * Few drivers should need to use this routine, since the most natural
259 * way to bind to an interface is to return the private data from
260 * the driver's probe() method.
261 *
262 * Callers must own the device lock and the driver model's usb_bus_type.subsys
263 * writelock. So driver probe() entries don't need extra locking,
264 * but other call contexts may need to explicitly claim those locks.
265 */
266int usb_driver_claim_interface(struct usb_driver *driver,
267 struct usb_interface *iface, void* priv)
268{
269 struct device *dev = &iface->dev;
270
271 if (dev->driver)
272 return -EBUSY;
273
Alan Stern8bb54ab2006-07-01 22:08:49 -0400274 dev->driver = &driver->drvwrap.driver;
Alan Stern36e56a32006-07-01 22:08:06 -0400275 usb_set_intfdata(iface, priv);
276 iface->condition = USB_INTERFACE_BOUND;
277 mark_active(iface);
278
279 /* if interface was already added, bind now; else let
280 * the future device_add() bind it, bypassing probe()
281 */
282 if (device_is_registered(dev))
283 device_bind_driver(dev);
284
285 return 0;
286}
287EXPORT_SYMBOL(usb_driver_claim_interface);
288
289/**
290 * usb_driver_release_interface - unbind a driver from an interface
291 * @driver: the driver to be unbound
292 * @iface: the interface from which it will be unbound
293 *
294 * This can be used by drivers to release an interface without waiting
295 * for their disconnect() methods to be called. In typical cases this
296 * also causes the driver disconnect() method to be called.
297 *
298 * This call is synchronous, and may not be used in an interrupt context.
299 * Callers must own the device lock and the driver model's usb_bus_type.subsys
300 * writelock. So driver disconnect() entries don't need extra locking,
301 * but other call contexts may need to explicitly claim those locks.
302 */
303void usb_driver_release_interface(struct usb_driver *driver,
304 struct usb_interface *iface)
305{
306 struct device *dev = &iface->dev;
307
308 /* this should never happen, don't release something that's not ours */
Alan Stern8bb54ab2006-07-01 22:08:49 -0400309 if (!dev->driver || dev->driver != &driver->drvwrap.driver)
Alan Stern36e56a32006-07-01 22:08:06 -0400310 return;
311
312 /* don't release from within disconnect() */
313 if (iface->condition != USB_INTERFACE_BOUND)
314 return;
315
316 /* don't release if the interface hasn't been added yet */
317 if (device_is_registered(dev)) {
318 iface->condition = USB_INTERFACE_UNBINDING;
319 device_release_driver(dev);
320 }
321
322 dev->driver = NULL;
323 usb_set_intfdata(iface, NULL);
324 iface->condition = USB_INTERFACE_UNBOUND;
325 mark_quiesced(iface);
326}
327EXPORT_SYMBOL(usb_driver_release_interface);
328
Greg Kroah-Hartman733260f2005-11-16 13:41:28 -0800329/* returns 0 if no match, 1 if match */
330static int usb_match_one_id(struct usb_interface *interface,
331 const struct usb_device_id *id)
332{
333 struct usb_host_interface *intf;
334 struct usb_device *dev;
335
336 /* proc_connectinfo in devio.c may call us with id == NULL. */
337 if (id == NULL)
338 return 0;
339
340 intf = interface->cur_altsetting;
341 dev = interface_to_usbdev(interface);
342
343 if ((id->match_flags & USB_DEVICE_ID_MATCH_VENDOR) &&
344 id->idVendor != le16_to_cpu(dev->descriptor.idVendor))
345 return 0;
346
347 if ((id->match_flags & USB_DEVICE_ID_MATCH_PRODUCT) &&
348 id->idProduct != le16_to_cpu(dev->descriptor.idProduct))
349 return 0;
350
351 /* No need to test id->bcdDevice_lo != 0, since 0 is never
352 greater than any unsigned number. */
353 if ((id->match_flags & USB_DEVICE_ID_MATCH_DEV_LO) &&
354 (id->bcdDevice_lo > le16_to_cpu(dev->descriptor.bcdDevice)))
355 return 0;
356
357 if ((id->match_flags & USB_DEVICE_ID_MATCH_DEV_HI) &&
358 (id->bcdDevice_hi < le16_to_cpu(dev->descriptor.bcdDevice)))
359 return 0;
360
361 if ((id->match_flags & USB_DEVICE_ID_MATCH_DEV_CLASS) &&
362 (id->bDeviceClass != dev->descriptor.bDeviceClass))
363 return 0;
364
365 if ((id->match_flags & USB_DEVICE_ID_MATCH_DEV_SUBCLASS) &&
366 (id->bDeviceSubClass!= dev->descriptor.bDeviceSubClass))
367 return 0;
368
369 if ((id->match_flags & USB_DEVICE_ID_MATCH_DEV_PROTOCOL) &&
370 (id->bDeviceProtocol != dev->descriptor.bDeviceProtocol))
371 return 0;
372
373 if ((id->match_flags & USB_DEVICE_ID_MATCH_INT_CLASS) &&
374 (id->bInterfaceClass != intf->desc.bInterfaceClass))
375 return 0;
376
377 if ((id->match_flags & USB_DEVICE_ID_MATCH_INT_SUBCLASS) &&
378 (id->bInterfaceSubClass != intf->desc.bInterfaceSubClass))
379 return 0;
380
381 if ((id->match_flags & USB_DEVICE_ID_MATCH_INT_PROTOCOL) &&
382 (id->bInterfaceProtocol != intf->desc.bInterfaceProtocol))
383 return 0;
384
385 return 1;
386}
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800387/**
388 * usb_match_id - find first usb_device_id matching device or interface
389 * @interface: the interface of interest
390 * @id: array of usb_device_id structures, terminated by zero entry
391 *
392 * usb_match_id searches an array of usb_device_id's and returns
393 * the first one matching the device or interface, or null.
394 * This is used when binding (or rebinding) a driver to an interface.
395 * Most USB device drivers will use this indirectly, through the usb core,
396 * but some layered driver frameworks use it directly.
397 * These device tables are exported with MODULE_DEVICE_TABLE, through
398 * modutils, to support the driver loading functionality of USB hotplugging.
399 *
400 * What Matches:
401 *
402 * The "match_flags" element in a usb_device_id controls which
403 * members are used. If the corresponding bit is set, the
404 * value in the device_id must match its corresponding member
405 * in the device or interface descriptor, or else the device_id
406 * does not match.
407 *
408 * "driver_info" is normally used only by device drivers,
409 * but you can create a wildcard "matches anything" usb_device_id
410 * as a driver's "modules.usbmap" entry if you provide an id with
411 * only a nonzero "driver_info" field. If you do this, the USB device
412 * driver's probe() routine should use additional intelligence to
413 * decide whether to bind to the specified interface.
414 *
415 * What Makes Good usb_device_id Tables:
416 *
417 * The match algorithm is very simple, so that intelligence in
418 * driver selection must come from smart driver id records.
419 * Unless you have good reasons to use another selection policy,
420 * provide match elements only in related groups, and order match
421 * specifiers from specific to general. Use the macros provided
422 * for that purpose if you can.
423 *
424 * The most specific match specifiers use device descriptor
425 * data. These are commonly used with product-specific matches;
426 * the USB_DEVICE macro lets you provide vendor and product IDs,
427 * and you can also match against ranges of product revisions.
428 * These are widely used for devices with application or vendor
429 * specific bDeviceClass values.
430 *
431 * Matches based on device class/subclass/protocol specifications
432 * are slightly more general; use the USB_DEVICE_INFO macro, or
433 * its siblings. These are used with single-function devices
434 * where bDeviceClass doesn't specify that each interface has
435 * its own class.
436 *
437 * Matches based on interface class/subclass/protocol are the
438 * most general; they let drivers bind to any interface on a
439 * multiple-function device. Use the USB_INTERFACE_INFO
440 * macro, or its siblings, to match class-per-interface style
441 * devices (as recorded in bDeviceClass).
442 *
443 * Within those groups, remember that not all combinations are
444 * meaningful. For example, don't give a product version range
445 * without vendor and product IDs; or specify a protocol without
446 * its associated class and subclass.
447 */
448const struct usb_device_id *usb_match_id(struct usb_interface *interface,
449 const struct usb_device_id *id)
450{
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800451 /* proc_connectinfo in devio.c may call us with id == NULL. */
452 if (id == NULL)
453 return NULL;
454
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800455 /* It is important to check that id->driver_info is nonzero,
456 since an entry that is all zeroes except for a nonzero
457 id->driver_info is the way to create an entry that
458 indicates that the driver want to examine every
459 device and interface. */
460 for (; id->idVendor || id->bDeviceClass || id->bInterfaceClass ||
461 id->driver_info; id++) {
Greg Kroah-Hartman733260f2005-11-16 13:41:28 -0800462 if (usb_match_one_id(interface, id))
463 return id;
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800464 }
465
466 return NULL;
467}
Greg Kroah-Hartmanb87ba0a2006-03-20 13:17:13 -0800468EXPORT_SYMBOL_GPL_FUTURE(usb_match_id);
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800469
470int usb_device_match(struct device *dev, struct device_driver *drv)
471{
Alan Stern8bb54ab2006-07-01 22:08:49 -0400472 /* devices and interfaces are handled separately */
473 if (is_usb_device(dev)) {
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800474
Alan Stern8bb54ab2006-07-01 22:08:49 -0400475 /* interface drivers never match devices */
476 if (!is_usb_device_driver(drv))
477 return 0;
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800478
Alan Stern8bb54ab2006-07-01 22:08:49 -0400479 /* TODO: Add real matching code */
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800480 return 1;
481
Alan Stern8bb54ab2006-07-01 22:08:49 -0400482 } else {
483 struct usb_interface *intf;
484 struct usb_driver *usb_drv;
485 const struct usb_device_id *id;
486
487 /* device drivers never match interfaces */
488 if (is_usb_device_driver(drv))
489 return 0;
490
491 intf = to_usb_interface(dev);
492 usb_drv = to_usb_driver(drv);
493
494 id = usb_match_id(intf, usb_drv->id_table);
495 if (id)
496 return 1;
497
498 id = usb_match_dynamic_id(intf, usb_drv);
499 if (id)
500 return 1;
501 }
502
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800503 return 0;
504}
505
Alan Stern36e56a32006-07-01 22:08:06 -0400506#ifdef CONFIG_HOTPLUG
507
508/*
509 * This sends an uevent to userspace, typically helping to load driver
510 * or other modules, configure the device, and more. Drivers can provide
511 * a MODULE_DEVICE_TABLE to help with module loading subtasks.
512 *
513 * We're called either from khubd (the typical case) or from root hub
514 * (init, kapmd, modprobe, rmmod, etc), but the agents need to handle
515 * delays in event delivery. Use sysfs (and DEVPATH) to make sure the
516 * device (and this configuration!) are still present.
517 */
518static int usb_uevent(struct device *dev, char **envp, int num_envp,
519 char *buffer, int buffer_size)
520{
521 struct usb_interface *intf;
522 struct usb_device *usb_dev;
523 struct usb_host_interface *alt;
524 int i = 0;
525 int length = 0;
526
527 if (!dev)
528 return -ENODEV;
529
530 /* driver is often null here; dev_dbg() would oops */
531 pr_debug ("usb %s: uevent\n", dev->bus_id);
532
Alan Stern782da722006-07-01 22:09:35 -0400533 if (is_usb_device(dev)) {
534 usb_dev = to_usb_device(dev);
535 alt = NULL;
536 } else {
Alan Stern8bb54ab2006-07-01 22:08:49 -0400537 intf = to_usb_interface(dev);
538 usb_dev = interface_to_usbdev(intf);
539 alt = intf->cur_altsetting;
540 }
Alan Stern36e56a32006-07-01 22:08:06 -0400541
542 if (usb_dev->devnum < 0) {
543 pr_debug ("usb %s: already deleted?\n", dev->bus_id);
544 return -ENODEV;
545 }
546 if (!usb_dev->bus) {
547 pr_debug ("usb %s: bus removed?\n", dev->bus_id);
548 return -ENODEV;
549 }
550
551#ifdef CONFIG_USB_DEVICEFS
552 /* If this is available, userspace programs can directly read
553 * all the device descriptors we don't tell them about. Or
554 * even act as usermode drivers.
555 *
556 * FIXME reduce hardwired intelligence here
557 */
558 if (add_uevent_var(envp, num_envp, &i,
559 buffer, buffer_size, &length,
560 "DEVICE=/proc/bus/usb/%03d/%03d",
561 usb_dev->bus->busnum, usb_dev->devnum))
562 return -ENOMEM;
563#endif
564
565 /* per-device configurations are common */
566 if (add_uevent_var(envp, num_envp, &i,
567 buffer, buffer_size, &length,
568 "PRODUCT=%x/%x/%x",
569 le16_to_cpu(usb_dev->descriptor.idVendor),
570 le16_to_cpu(usb_dev->descriptor.idProduct),
571 le16_to_cpu(usb_dev->descriptor.bcdDevice)))
572 return -ENOMEM;
573
574 /* class-based driver binding models */
575 if (add_uevent_var(envp, num_envp, &i,
576 buffer, buffer_size, &length,
577 "TYPE=%d/%d/%d",
578 usb_dev->descriptor.bDeviceClass,
579 usb_dev->descriptor.bDeviceSubClass,
580 usb_dev->descriptor.bDeviceProtocol))
581 return -ENOMEM;
582
Alan Stern782da722006-07-01 22:09:35 -0400583 if (!is_usb_device(dev)) {
584
585 if (add_uevent_var(envp, num_envp, &i,
Alan Stern36e56a32006-07-01 22:08:06 -0400586 buffer, buffer_size, &length,
587 "INTERFACE=%d/%d/%d",
588 alt->desc.bInterfaceClass,
589 alt->desc.bInterfaceSubClass,
590 alt->desc.bInterfaceProtocol))
Alan Stern782da722006-07-01 22:09:35 -0400591 return -ENOMEM;
Alan Stern36e56a32006-07-01 22:08:06 -0400592
Alan Stern782da722006-07-01 22:09:35 -0400593 if (add_uevent_var(envp, num_envp, &i,
Alan Stern36e56a32006-07-01 22:08:06 -0400594 buffer, buffer_size, &length,
595 "MODALIAS=usb:v%04Xp%04Xd%04Xdc%02Xdsc%02Xdp%02Xic%02Xisc%02Xip%02X",
596 le16_to_cpu(usb_dev->descriptor.idVendor),
597 le16_to_cpu(usb_dev->descriptor.idProduct),
598 le16_to_cpu(usb_dev->descriptor.bcdDevice),
599 usb_dev->descriptor.bDeviceClass,
600 usb_dev->descriptor.bDeviceSubClass,
601 usb_dev->descriptor.bDeviceProtocol,
602 alt->desc.bInterfaceClass,
603 alt->desc.bInterfaceSubClass,
604 alt->desc.bInterfaceProtocol))
Alan Stern782da722006-07-01 22:09:35 -0400605 return -ENOMEM;
606 }
Alan Stern36e56a32006-07-01 22:08:06 -0400607
608 envp[i] = NULL;
609
610 return 0;
611}
612
613#else
614
615static int usb_uevent(struct device *dev, char **envp,
616 int num_envp, char *buffer, int buffer_size)
617{
618 return -ENODEV;
619}
620
621#endif /* CONFIG_HOTPLUG */
622
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800623/**
Alan Stern8bb54ab2006-07-01 22:08:49 -0400624 * usb_register_device_driver - register a USB device (not interface) driver
625 * @new_udriver: USB operations for the device driver
Greg Kroah-Hartman2143acc2005-11-21 14:53:03 -0800626 * @owner: module owner of this driver.
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800627 *
Alan Stern8bb54ab2006-07-01 22:08:49 -0400628 * Registers a USB device driver with the USB core. The list of
629 * unattached devices will be rescanned whenever a new driver is
630 * added, allowing the new driver to attach to any recognized devices.
631 * Returns a negative error code on failure and 0 on success.
632 */
633int usb_register_device_driver(struct usb_device_driver *new_udriver,
634 struct module *owner)
635{
636 int retval = 0;
637
638 if (usb_disabled())
639 return -ENODEV;
640
641 new_udriver->drvwrap.for_devices = 1;
642 new_udriver->drvwrap.driver.name = (char *) new_udriver->name;
643 new_udriver->drvwrap.driver.bus = &usb_bus_type;
644 new_udriver->drvwrap.driver.probe = usb_probe_device;
645 new_udriver->drvwrap.driver.remove = usb_unbind_device;
646 new_udriver->drvwrap.driver.owner = owner;
647
648 retval = driver_register(&new_udriver->drvwrap.driver);
649
650 if (!retval) {
651 pr_info("%s: registered new device driver %s\n",
652 usbcore_name, new_udriver->name);
653 usbfs_update_special();
654 } else {
655 printk(KERN_ERR "%s: error %d registering device "
656 " driver %s\n",
657 usbcore_name, retval, new_udriver->name);
658 }
659
660 return retval;
661}
662EXPORT_SYMBOL_GPL(usb_register_device_driver);
663
664/**
665 * usb_deregister_device_driver - unregister a USB device (not interface) driver
666 * @udriver: USB operations of the device driver to unregister
667 * Context: must be able to sleep
668 *
669 * Unlinks the specified driver from the internal USB driver list.
670 */
671void usb_deregister_device_driver(struct usb_device_driver *udriver)
672{
673 pr_info("%s: deregistering device driver %s\n",
674 usbcore_name, udriver->name);
675
676 driver_unregister(&udriver->drvwrap.driver);
677 usbfs_update_special();
678}
679EXPORT_SYMBOL_GPL(usb_deregister_device_driver);
680
681/**
682 * usb_register_driver - register a USB interface driver
683 * @new_driver: USB operations for the interface driver
684 * @owner: module owner of this driver.
685 *
686 * Registers a USB interface driver with the USB core. The list of
687 * unattached interfaces will be rescanned whenever a new driver is
688 * added, allowing the new driver to attach to any recognized interfaces.
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800689 * Returns a negative error code on failure and 0 on success.
690 *
691 * NOTE: if you want your driver to use the USB major number, you must call
692 * usb_register_dev() to enable that functionality. This function no longer
693 * takes care of that.
694 */
Greg Kroah-Hartman2143acc2005-11-21 14:53:03 -0800695int usb_register_driver(struct usb_driver *new_driver, struct module *owner)
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800696{
697 int retval = 0;
698
699 if (usb_disabled())
700 return -ENODEV;
701
Alan Stern8bb54ab2006-07-01 22:08:49 -0400702 new_driver->drvwrap.for_devices = 0;
703 new_driver->drvwrap.driver.name = (char *) new_driver->name;
704 new_driver->drvwrap.driver.bus = &usb_bus_type;
705 new_driver->drvwrap.driver.probe = usb_probe_interface;
706 new_driver->drvwrap.driver.remove = usb_unbind_interface;
707 new_driver->drvwrap.driver.owner = owner;
Greg Kroah-Hartman733260f2005-11-16 13:41:28 -0800708 spin_lock_init(&new_driver->dynids.lock);
709 INIT_LIST_HEAD(&new_driver->dynids.list);
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800710
Alan Stern8bb54ab2006-07-01 22:08:49 -0400711 retval = driver_register(&new_driver->drvwrap.driver);
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800712
713 if (!retval) {
Alan Stern8bb54ab2006-07-01 22:08:49 -0400714 pr_info("%s: registered new interface driver %s\n",
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800715 usbcore_name, new_driver->name);
716 usbfs_update_special();
Greg Kroah-Hartman733260f2005-11-16 13:41:28 -0800717 usb_create_newid_file(new_driver);
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800718 } else {
Alan Stern8bb54ab2006-07-01 22:08:49 -0400719 printk(KERN_ERR "%s: error %d registering interface "
720 " driver %s\n",
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800721 usbcore_name, retval, new_driver->name);
722 }
723
724 return retval;
725}
Greg Kroah-Hartmanb87ba0a2006-03-20 13:17:13 -0800726EXPORT_SYMBOL_GPL_FUTURE(usb_register_driver);
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800727
728/**
Alan Stern8bb54ab2006-07-01 22:08:49 -0400729 * usb_deregister - unregister a USB interface driver
730 * @driver: USB operations of the interface driver to unregister
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800731 * Context: must be able to sleep
732 *
733 * Unlinks the specified driver from the internal USB driver list.
734 *
735 * NOTE: If you called usb_register_dev(), you still need to call
736 * usb_deregister_dev() to clean up your driver's allocated minor numbers,
737 * this * call will no longer do it for you.
738 */
739void usb_deregister(struct usb_driver *driver)
740{
Alan Stern8bb54ab2006-07-01 22:08:49 -0400741 pr_info("%s: deregistering interface driver %s\n",
742 usbcore_name, driver->name);
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800743
Greg Kroah-Hartmanba9dc652005-11-16 13:41:28 -0800744 usb_remove_newid_file(driver);
Greg Kroah-Hartman733260f2005-11-16 13:41:28 -0800745 usb_free_dynids(driver);
Alan Stern8bb54ab2006-07-01 22:08:49 -0400746 driver_unregister(&driver->drvwrap.driver);
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -0800747
748 usbfs_update_special();
749}
Greg Kroah-Hartmanb87ba0a2006-03-20 13:17:13 -0800750EXPORT_SYMBOL_GPL_FUTURE(usb_deregister);
Alan Stern36e56a32006-07-01 22:08:06 -0400751
752#ifdef CONFIG_PM
753
Alan Stern1cc8a252006-07-01 22:10:15 -0400754/* Caller has locked udev */
755static int suspend_device(struct usb_device *udev, pm_message_t msg)
Alan Stern36e56a32006-07-01 22:08:06 -0400756{
Alan Stern782da722006-07-01 22:09:35 -0400757 struct usb_device_driver *udriver;
Alan Stern2bf40862006-07-01 22:12:19 -0400758 int status = 0;
Alan Stern36e56a32006-07-01 22:08:06 -0400759
Alan Stern114b3682006-07-01 22:13:04 -0400760 if (udev->state == USB_STATE_NOTATTACHED ||
761 udev->state == USB_STATE_SUSPENDED)
762 goto done;
763
Alan Stern1c5df7e2006-07-01 22:13:50 -0400764 /* For devices that don't have a driver, we do a standard suspend. */
765 if (udev->dev.driver == NULL) {
766 status = usb_port_suspend(udev);
Alan Stern2bf40862006-07-01 22:12:19 -0400767 goto done;
Alan Stern1c5df7e2006-07-01 22:13:50 -0400768 }
769
Alan Stern1cc8a252006-07-01 22:10:15 -0400770 udriver = to_usb_device_driver(udev->dev.driver);
Alan Stern2bf40862006-07-01 22:12:19 -0400771 status = udriver->suspend(udev, msg);
772
773done:
774 if (status == 0)
775 udev->dev.power.power_state.event = msg.event;
776 return status;
Alan Stern1cc8a252006-07-01 22:10:15 -0400777}
Alan Stern36e56a32006-07-01 22:08:06 -0400778
Alan Stern1cc8a252006-07-01 22:10:15 -0400779/* Caller has locked udev */
780static int resume_device(struct usb_device *udev)
781{
782 struct usb_device_driver *udriver;
Alan Stern2bf40862006-07-01 22:12:19 -0400783 int status = 0;
Alan Stern1cc8a252006-07-01 22:10:15 -0400784
Alan Stern114b3682006-07-01 22:13:04 -0400785 if (udev->state == USB_STATE_NOTATTACHED ||
786 udev->state != USB_STATE_SUSPENDED)
Alan Stern2bf40862006-07-01 22:12:19 -0400787 goto done;
Alan Stern1cc8a252006-07-01 22:10:15 -0400788
Alan Stern1c5df7e2006-07-01 22:13:50 -0400789 /* Can't resume it if it doesn't have a driver. */
790 if (udev->dev.driver == NULL) {
791 status = -ENOTCONN;
Alan Stern2bf40862006-07-01 22:12:19 -0400792 goto done;
Alan Stern1c5df7e2006-07-01 22:13:50 -0400793 }
794
Alan Stern1cc8a252006-07-01 22:10:15 -0400795 udriver = to_usb_device_driver(udev->dev.driver);
Alan Stern2bf40862006-07-01 22:12:19 -0400796 status = udriver->resume(udev);
797
798done:
799 if (status == 0)
800 udev->dev.power.power_state.event = PM_EVENT_ON;
801 return status;
Alan Stern1cc8a252006-07-01 22:10:15 -0400802}
803
Alan Sterna8e7c562006-07-01 22:11:02 -0400804/* Caller has locked intf's usb_device */
Alan Stern1cc8a252006-07-01 22:10:15 -0400805static int suspend_interface(struct usb_interface *intf, pm_message_t msg)
806{
807 struct usb_driver *driver;
Alan Stern2bf40862006-07-01 22:12:19 -0400808 int status = 0;
Alan Stern1cc8a252006-07-01 22:10:15 -0400809
Alan Stern114b3682006-07-01 22:13:04 -0400810 /* with no hardware, USB interfaces only use FREEZE and ON states */
811 if (interface_to_usbdev(intf)->state == USB_STATE_NOTATTACHED ||
812 !is_active(intf))
813 goto done;
814
Alan Stern1c5df7e2006-07-01 22:13:50 -0400815 if (intf->dev.driver == NULL) /* This can't happen */
Alan Stern2bf40862006-07-01 22:12:19 -0400816 goto done;
Alan Stern1cc8a252006-07-01 22:10:15 -0400817 driver = to_usb_driver(intf->dev.driver);
Alan Stern36e56a32006-07-01 22:08:06 -0400818
Alan Stern36e56a32006-07-01 22:08:06 -0400819 if (driver->suspend && driver->resume) {
Alan Stern1cc8a252006-07-01 22:10:15 -0400820 status = driver->suspend(intf, msg);
Alan Stern36e56a32006-07-01 22:08:06 -0400821 if (status)
Alan Stern1cc8a252006-07-01 22:10:15 -0400822 dev_err(&intf->dev, "%s error %d\n",
823 "suspend", status);
Alan Stern36e56a32006-07-01 22:08:06 -0400824 else
825 mark_quiesced(intf);
826 } else {
827 // FIXME else if there's no suspend method, disconnect...
Alan Stern1cc8a252006-07-01 22:10:15 -0400828 dev_warn(&intf->dev, "no suspend for driver %s?\n",
829 driver->name);
Alan Stern36e56a32006-07-01 22:08:06 -0400830 mark_quiesced(intf);
Alan Stern36e56a32006-07-01 22:08:06 -0400831 }
Alan Stern2bf40862006-07-01 22:12:19 -0400832
833done:
834 if (status == 0)
835 intf->dev.power.power_state.event = msg.event;
Alan Stern36e56a32006-07-01 22:08:06 -0400836 return status;
837}
838
Alan Sterna8e7c562006-07-01 22:11:02 -0400839/* Caller has locked intf's usb_device */
Alan Stern1cc8a252006-07-01 22:10:15 -0400840static int resume_interface(struct usb_interface *intf)
Alan Stern36e56a32006-07-01 22:08:06 -0400841{
Alan Stern1cc8a252006-07-01 22:10:15 -0400842 struct usb_driver *driver;
Alan Stern2bf40862006-07-01 22:12:19 -0400843 int status = 0;
Alan Stern36e56a32006-07-01 22:08:06 -0400844
Alan Stern114b3682006-07-01 22:13:04 -0400845 if (interface_to_usbdev(intf)->state == USB_STATE_NOTATTACHED ||
846 is_active(intf))
Alan Stern2bf40862006-07-01 22:12:19 -0400847 goto done;
Alan Stern36e56a32006-07-01 22:08:06 -0400848
Alan Stern1c5df7e2006-07-01 22:13:50 -0400849 /* Can't resume it if it doesn't have a driver. */
850 if (intf->dev.driver == NULL) {
851 status = -ENOTCONN;
Alan Stern2bf40862006-07-01 22:12:19 -0400852 goto done;
Alan Stern1c5df7e2006-07-01 22:13:50 -0400853 }
Alan Stern1cc8a252006-07-01 22:10:15 -0400854 driver = to_usb_driver(intf->dev.driver);
Alan Stern36e56a32006-07-01 22:08:06 -0400855
Alan Stern36e56a32006-07-01 22:08:06 -0400856 if (driver->resume) {
857 status = driver->resume(intf);
Alan Stern2bf40862006-07-01 22:12:19 -0400858 if (status)
Alan Stern1cc8a252006-07-01 22:10:15 -0400859 dev_err(&intf->dev, "%s error %d\n",
860 "resume", status);
Alan Stern2bf40862006-07-01 22:12:19 -0400861 else
862 mark_active(intf);
863 } else {
Alan Stern1cc8a252006-07-01 22:10:15 -0400864 dev_warn(&intf->dev, "no resume for driver %s?\n",
865 driver->name);
Alan Stern2bf40862006-07-01 22:12:19 -0400866 mark_active(intf);
867 }
868
869done:
870 if (status == 0)
871 intf->dev.power.power_state.event = PM_EVENT_ON;
872 return status;
Alan Stern36e56a32006-07-01 22:08:06 -0400873}
874
Alan Sterna8e7c562006-07-01 22:11:02 -0400875/* Caller has locked udev */
876int usb_suspend_both(struct usb_device *udev, pm_message_t msg)
877{
878 int status = 0;
879 int i = 0;
880 struct usb_interface *intf;
881
882 if (udev->actconfig) {
883 for (; i < udev->actconfig->desc.bNumInterfaces; i++) {
884 intf = udev->actconfig->interface[i];
885 status = suspend_interface(intf, msg);
886 if (status != 0)
887 break;
888 }
889 }
890 if (status == 0)
891 status = suspend_device(udev, msg);
892
893 /* If the suspend failed, resume interfaces that did get suspended */
894 if (status != 0) {
895 while (--i >= 0) {
896 intf = udev->actconfig->interface[i];
897 resume_interface(intf);
898 }
899 }
900 return status;
901}
902
903/* Caller has locked udev */
904int usb_resume_both(struct usb_device *udev)
905{
906 int status;
907 int i;
908 struct usb_interface *intf;
909
Alan Stern114b3682006-07-01 22:13:04 -0400910 /* Can't resume if the parent is suspended */
911 if (udev->parent && udev->parent->state == USB_STATE_SUSPENDED) {
912 dev_warn(&udev->dev, "can't resume; parent is suspended\n");
913 return -EHOSTUNREACH;
914 }
915
Alan Sterna8e7c562006-07-01 22:11:02 -0400916 status = resume_device(udev);
917 if (status == 0 && udev->actconfig) {
918 for (i = 0; i < udev->actconfig->desc.bNumInterfaces; i++) {
919 intf = udev->actconfig->interface[i];
920 resume_interface(intf);
921 }
922 }
923 return status;
924}
925
Alan Stern1cc8a252006-07-01 22:10:15 -0400926static int usb_suspend(struct device *dev, pm_message_t message)
927{
928 int status;
929
930 if (is_usb_device(dev))
Alan Sterna8e7c562006-07-01 22:11:02 -0400931 status = usb_suspend_both(to_usb_device(dev), message);
Alan Stern1cc8a252006-07-01 22:10:15 -0400932 else
Alan Sterna8e7c562006-07-01 22:11:02 -0400933 status = 0;
Alan Stern1cc8a252006-07-01 22:10:15 -0400934 return status;
935}
936
937static int usb_resume(struct device *dev)
938{
939 int status;
940
Alan Sterna8e7c562006-07-01 22:11:02 -0400941 if (is_usb_device(dev)) {
942 status = usb_resume_both(to_usb_device(dev));
943
944 /* Rebind drivers that had no suspend method? */
945 } else
946 status = 0;
Alan Stern1cc8a252006-07-01 22:10:15 -0400947 return status;
948}
949
Alan Stern36e56a32006-07-01 22:08:06 -0400950#endif /* CONFIG_PM */
951
952struct bus_type usb_bus_type = {
953 .name = "usb",
954 .match = usb_device_match,
955 .uevent = usb_uevent,
956#ifdef CONFIG_PM
Alan Stern782da722006-07-01 22:09:35 -0400957 .suspend = usb_suspend,
958 .resume = usb_resume,
Alan Stern36e56a32006-07-01 22:08:06 -0400959#endif
960};