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
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..
19 * Think of this as a "USB library" rather than anything else.
20 * It should be considered a slave, with no callbacks. Callbacks
24 #include <linux/module.h>
25 #include <linux/string.h>
26 #include <linux/bitops.h>
27 #include <linux/slab.h>
28 #include <linux/interrupt.h> /* for in_interrupt() */
29 #include <linux/kmod.h>
30 #include <linux/init.h>
31 #include <linux/spinlock.h>
32 #include <linux/errno.h>
33 #include <linux/smp_lock.h>
34 #include <linux/usb.h>
35 #include <linux/mutex.h>
38 #include <asm/scatterlist.h>
40 #include <linux/dma-mapping.h>
46 const char *usbcore_name = "usbcore";
48 static int nousb; /* Disable USB when built into kernel image */
52 * usb_ifnum_to_if - get the interface object with a given interface number
53 * @dev: the device whose current configuration is considered
54 * @ifnum: the desired interface
56 * This walks the device descriptor for the currently active configuration
57 * and returns a pointer to the interface with that particular interface
60 * Note that configuration descriptors are not required to assign interface
61 * numbers sequentially, so that it would be incorrect to assume that
62 * the first interface in that descriptor corresponds to interface zero.
63 * This routine helps device drivers avoid such mistakes.
64 * However, you should make sure that you do the right thing with any
65 * alternate settings available for this interfaces.
67 * Don't call this function unless you are bound to one of the interfaces
68 * on this device or you have locked the device!
70 struct usb_interface *usb_ifnum_to_if(struct usb_device *dev, unsigned ifnum)
72 struct usb_host_config *config = dev->actconfig;
77 for (i = 0; i < config->desc.bNumInterfaces; i++)
78 if (config->interface[i]->altsetting[0]
79 .desc.bInterfaceNumber == ifnum)
80 return config->interface[i];
86 * usb_altnum_to_altsetting - get the altsetting structure with a given
87 * alternate setting number.
88 * @intf: the interface containing the altsetting in question
89 * @altnum: the desired alternate setting number
91 * This searches the altsetting array of the specified interface for
92 * an entry with the correct bAlternateSetting value and returns a pointer
93 * to that entry, or null.
95 * Note that altsettings need not be stored sequentially by number, so
96 * it would be incorrect to assume that the first altsetting entry in
97 * the array corresponds to altsetting zero. This routine helps device
98 * drivers avoid such mistakes.
100 * Don't call this function unless you are bound to the intf interface
101 * or you have locked the device!
103 struct usb_host_interface *usb_altnum_to_altsetting(struct usb_interface *intf,
108 for (i = 0; i < intf->num_altsetting; i++) {
109 if (intf->altsetting[i].desc.bAlternateSetting == altnum)
110 return &intf->altsetting[i];
115 struct find_interface_arg {
117 struct usb_interface *interface;
120 static int __find_interface(struct device * dev, void * data)
122 struct find_interface_arg *arg = data;
123 struct usb_interface *intf;
125 /* can't look at usb devices, only interfaces */
126 if (is_usb_device(dev))
129 intf = to_usb_interface(dev);
130 if (intf->minor != -1 && intf->minor == arg->minor) {
131 arg->interface = intf;
138 * usb_find_interface - find usb_interface pointer for driver and device
139 * @drv: the driver whose current configuration is considered
140 * @minor: the minor number of the desired device
142 * This walks the driver device list and returns a pointer to the interface
143 * with the matching minor. Note, this only works for devices that share the
146 struct usb_interface *usb_find_interface(struct usb_driver *drv, int minor)
148 struct find_interface_arg argb;
151 argb.interface = NULL;
152 driver_for_each_device(&drv->drvwrap.driver, NULL, &argb,
154 return argb.interface;
158 * usb_release_dev - free a usb device structure when all users of it are finished.
159 * @dev: device that's been disconnected
161 * Will be called only by the device core when all users of this usb device are
164 static void usb_release_dev(struct device *dev)
166 struct usb_device *udev;
168 udev = to_usb_device(dev);
170 usb_destroy_configuration(udev);
171 usb_bus_put(udev->bus);
172 kfree(udev->product);
173 kfree(udev->manufacturer);
179 * usb_alloc_dev - usb device constructor (usbcore-internal)
180 * @parent: hub to which device is connected; null to allocate a root hub
181 * @bus: bus used to access the device
182 * @port1: one-based index of port; ignored for root hubs
183 * Context: !in_interrupt ()
185 * Only hub drivers (including virtual root hub drivers for host
186 * controllers) should ever call this.
188 * This call may not be used in a non-sleeping context.
191 usb_alloc_dev(struct usb_device *parent, struct usb_bus *bus, unsigned port1)
193 struct usb_device *dev;
195 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
199 bus = usb_bus_get(bus);
205 device_initialize(&dev->dev);
206 dev->dev.bus = &usb_bus_type;
207 dev->dev.dma_mask = bus->controller->dma_mask;
208 dev->dev.driver = &usb_generic_driver.drvwrap.driver;
209 dev->dev.release = usb_release_dev;
210 dev->state = USB_STATE_ATTACHED;
212 /* This magic assignment distinguishes devices from interfaces */
213 dev->dev.platform_data = &usb_generic_driver;
215 INIT_LIST_HEAD(&dev->ep0.urb_list);
216 dev->ep0.desc.bLength = USB_DT_ENDPOINT_SIZE;
217 dev->ep0.desc.bDescriptorType = USB_DT_ENDPOINT;
218 /* ep0 maxpacket comes later, from device descriptor */
219 dev->ep_in[0] = dev->ep_out[0] = &dev->ep0;
221 /* Save readable and stable topology id, distinguishing devices
222 * by location for diagnostics, tools, driver model, etc. The
223 * string is a path along hub ports, from the root. Each device's
224 * dev->devpath will be stable until USB is re-cabled, and hubs
225 * are often labeled with these port numbers. The bus_id isn't
226 * as stable: bus->busnum changes easily from modprobe order,
227 * cardbus or pci hotplugging, and so on.
229 if (unlikely (!parent)) {
230 dev->devpath [0] = '0';
232 dev->dev.parent = bus->controller;
233 sprintf (&dev->dev.bus_id[0], "usb%d", bus->busnum);
235 /* match any labeling on the hubs; it's one-based */
236 if (parent->devpath [0] == '0')
237 snprintf (dev->devpath, sizeof dev->devpath,
240 snprintf (dev->devpath, sizeof dev->devpath,
241 "%s.%d", parent->devpath, port1);
243 dev->dev.parent = &parent->dev;
244 sprintf (&dev->dev.bus_id[0], "%d-%s",
245 bus->busnum, dev->devpath);
247 /* hub driver sets up TT records */
250 dev->portnum = port1;
252 dev->parent = parent;
253 INIT_LIST_HEAD(&dev->filelist);
259 * usb_get_dev - increments the reference count of the usb device structure
260 * @dev: the device being referenced
262 * Each live reference to a device should be refcounted.
264 * Drivers for USB interfaces should normally record such references in
265 * their probe() methods, when they bind to an interface, and release
266 * them by calling usb_put_dev(), in their disconnect() methods.
268 * A pointer to the device with the incremented reference counter is returned.
270 struct usb_device *usb_get_dev(struct usb_device *dev)
273 get_device(&dev->dev);
278 * usb_put_dev - release a use of the usb device structure
279 * @dev: device that's been disconnected
281 * Must be called when a user of a device is finished with it. When the last
282 * user of the device calls this function, the memory of the device is freed.
284 void usb_put_dev(struct usb_device *dev)
287 put_device(&dev->dev);
291 * usb_get_intf - increments the reference count of the usb interface structure
292 * @intf: the interface being referenced
294 * Each live reference to a interface must be refcounted.
296 * Drivers for USB interfaces should normally record such references in
297 * their probe() methods, when they bind to an interface, and release
298 * them by calling usb_put_intf(), in their disconnect() methods.
300 * A pointer to the interface with the incremented reference counter is
303 struct usb_interface *usb_get_intf(struct usb_interface *intf)
306 get_device(&intf->dev);
311 * usb_put_intf - release a use of the usb interface structure
312 * @intf: interface that's been decremented
314 * Must be called when a user of an interface is finished with it. When the
315 * last user of the interface calls this function, the memory of the interface
318 void usb_put_intf(struct usb_interface *intf)
321 put_device(&intf->dev);
325 /* USB device locking
327 * USB devices and interfaces are locked using the semaphore in their
328 * embedded struct device. The hub driver guarantees that whenever a
329 * device is connected or disconnected, drivers are called with the
330 * USB device locked as well as their particular interface.
332 * Complications arise when several devices are to be locked at the same
333 * time. Only hub-aware drivers that are part of usbcore ever have to
334 * do this; nobody else needs to worry about it. The rule for locking
337 * When locking both a device and its parent, always lock the
342 * usb_lock_device_for_reset - cautiously acquire the lock for a
343 * usb device structure
344 * @udev: device that's being locked
345 * @iface: interface bound to the driver making the request (optional)
347 * Attempts to acquire the device lock, but fails if the device is
348 * NOTATTACHED or SUSPENDED, or if iface is specified and the interface
349 * is neither BINDING nor BOUND. Rather than sleeping to wait for the
350 * lock, the routine polls repeatedly. This is to prevent deadlock with
351 * disconnect; in some drivers (such as usb-storage) the disconnect()
352 * or suspend() method will block waiting for a device reset to complete.
354 * Returns a negative error code for failure, otherwise 1 or 0 to indicate
355 * that the device will or will not have to be unlocked. (0 can be
356 * returned when an interface is given and is BINDING, because in that
357 * case the driver already owns the device lock.)
359 int usb_lock_device_for_reset(struct usb_device *udev,
360 struct usb_interface *iface)
362 unsigned long jiffies_expire = jiffies + HZ;
364 if (udev->state == USB_STATE_NOTATTACHED)
366 if (udev->state == USB_STATE_SUSPENDED)
367 return -EHOSTUNREACH;
369 switch (iface->condition) {
370 case USB_INTERFACE_BINDING:
372 case USB_INTERFACE_BOUND:
379 while (usb_trylock_device(udev) != 0) {
381 /* If we can't acquire the lock after waiting one second,
382 * we're probably deadlocked */
383 if (time_after(jiffies, jiffies_expire))
387 if (udev->state == USB_STATE_NOTATTACHED)
389 if (udev->state == USB_STATE_SUSPENDED)
390 return -EHOSTUNREACH;
391 if (iface && iface->condition != USB_INTERFACE_BOUND)
398 static struct usb_device *match_device(struct usb_device *dev,
399 u16 vendor_id, u16 product_id)
401 struct usb_device *ret_dev = NULL;
404 dev_dbg(&dev->dev, "check for vendor %04x, product %04x ...\n",
405 le16_to_cpu(dev->descriptor.idVendor),
406 le16_to_cpu(dev->descriptor.idProduct));
408 /* see if this device matches */
409 if ((vendor_id == le16_to_cpu(dev->descriptor.idVendor)) &&
410 (product_id == le16_to_cpu(dev->descriptor.idProduct))) {
411 dev_dbg (&dev->dev, "matched this device!\n");
412 ret_dev = usb_get_dev(dev);
416 /* look through all of the children of this device */
417 for (child = 0; child < dev->maxchild; ++child) {
418 if (dev->children[child]) {
419 usb_lock_device(dev->children[child]);
420 ret_dev = match_device(dev->children[child],
421 vendor_id, product_id);
422 usb_unlock_device(dev->children[child]);
432 * usb_find_device - find a specific usb device in the system
433 * @vendor_id: the vendor id of the device to find
434 * @product_id: the product id of the device to find
436 * Returns a pointer to a struct usb_device if such a specified usb
437 * device is present in the system currently. The usage count of the
438 * device will be incremented if a device is found. Make sure to call
439 * usb_put_dev() when the caller is finished with the device.
441 * If a device with the specified vendor and product id is not found,
444 struct usb_device *usb_find_device(u16 vendor_id, u16 product_id)
446 struct list_head *buslist;
448 struct usb_device *dev = NULL;
450 mutex_lock(&usb_bus_list_lock);
451 for (buslist = usb_bus_list.next;
452 buslist != &usb_bus_list;
453 buslist = buslist->next) {
454 bus = container_of(buslist, struct usb_bus, bus_list);
457 usb_lock_device(bus->root_hub);
458 dev = match_device(bus->root_hub, vendor_id, product_id);
459 usb_unlock_device(bus->root_hub);
464 mutex_unlock(&usb_bus_list_lock);
469 * usb_get_current_frame_number - return current bus frame number
470 * @dev: the device whose bus is being queried
472 * Returns the current frame number for the USB host controller
473 * used with the given USB device. This can be used when scheduling
474 * isochronous requests.
476 * Note that different kinds of host controller have different
477 * "scheduling horizons". While one type might support scheduling only
478 * 32 frames into the future, others could support scheduling up to
479 * 1024 frames into the future.
481 int usb_get_current_frame_number(struct usb_device *dev)
483 return dev->bus->op->get_frame_number (dev);
486 /*-------------------------------------------------------------------*/
488 * __usb_get_extra_descriptor() finds a descriptor of specific type in the
489 * extra field of the interface and endpoint descriptor structs.
492 int __usb_get_extra_descriptor(char *buffer, unsigned size,
493 unsigned char type, void **ptr)
495 struct usb_descriptor_header *header;
497 while (size >= sizeof(struct usb_descriptor_header)) {
498 header = (struct usb_descriptor_header *)buffer;
500 if (header->bLength < 2) {
502 "%s: bogus descriptor, type %d length %d\n",
504 header->bDescriptorType,
509 if (header->bDescriptorType == type) {
514 buffer += header->bLength;
515 size -= header->bLength;
521 * usb_buffer_alloc - allocate dma-consistent buffer for URB_NO_xxx_DMA_MAP
522 * @dev: device the buffer will be used with
523 * @size: requested buffer size
524 * @mem_flags: affect whether allocation may block
525 * @dma: used to return DMA address of buffer
527 * Return value is either null (indicating no buffer could be allocated), or
528 * the cpu-space pointer to a buffer that may be used to perform DMA to the
529 * specified device. Such cpu-space buffers are returned along with the DMA
530 * address (through the pointer provided).
532 * These buffers are used with URB_NO_xxx_DMA_MAP set in urb->transfer_flags
533 * to avoid behaviors like using "DMA bounce buffers", or tying down I/O
534 * mapping hardware for long idle periods. The implementation varies between
535 * platforms, depending on details of how DMA will work to this device.
536 * Using these buffers also helps prevent cacheline sharing problems on
537 * architectures where CPU caches are not DMA-coherent.
539 * When the buffer is no longer used, free it with usb_buffer_free().
541 void *usb_buffer_alloc (
542 struct usb_device *dev,
548 if (!dev || !dev->bus || !dev->bus->op || !dev->bus->op->buffer_alloc)
550 return dev->bus->op->buffer_alloc (dev->bus, size, mem_flags, dma);
554 * usb_buffer_free - free memory allocated with usb_buffer_alloc()
555 * @dev: device the buffer was used with
556 * @size: requested buffer size
557 * @addr: CPU address of buffer
558 * @dma: DMA address of buffer
560 * This reclaims an I/O buffer, letting it be reused. The memory must have
561 * been allocated using usb_buffer_alloc(), and the parameters must match
562 * those provided in that allocation request.
564 void usb_buffer_free (
565 struct usb_device *dev,
571 if (!dev || !dev->bus || !dev->bus->op || !dev->bus->op->buffer_free)
575 dev->bus->op->buffer_free (dev->bus, size, addr, dma);
579 * usb_buffer_map - create DMA mapping(s) for an urb
580 * @urb: urb whose transfer_buffer/setup_packet will be mapped
582 * Return value is either null (indicating no buffer could be mapped), or
583 * the parameter. URB_NO_TRANSFER_DMA_MAP and URB_NO_SETUP_DMA_MAP are
584 * added to urb->transfer_flags if the operation succeeds. If the device
585 * is connected to this system through a non-DMA controller, this operation
588 * This call would normally be used for an urb which is reused, perhaps
589 * as the target of a large periodic transfer, with usb_buffer_dmasync()
590 * calls to synchronize memory and dma state.
592 * Reverse the effect of this call with usb_buffer_unmap().
595 struct urb *usb_buffer_map (struct urb *urb)
598 struct device *controller;
602 || !(bus = urb->dev->bus)
603 || !(controller = bus->controller))
606 if (controller->dma_mask) {
607 urb->transfer_dma = dma_map_single (controller,
608 urb->transfer_buffer, urb->transfer_buffer_length,
609 usb_pipein (urb->pipe)
610 ? DMA_FROM_DEVICE : DMA_TO_DEVICE);
611 if (usb_pipecontrol (urb->pipe))
612 urb->setup_dma = dma_map_single (controller,
614 sizeof (struct usb_ctrlrequest),
616 // FIXME generic api broken like pci, can't report errors
617 // if (urb->transfer_dma == DMA_ADDR_INVALID) return 0;
619 urb->transfer_dma = ~0;
620 urb->transfer_flags |= (URB_NO_TRANSFER_DMA_MAP
621 | URB_NO_SETUP_DMA_MAP);
626 /* XXX DISABLED, no users currently. If you wish to re-enable this
627 * XXX please determine whether the sync is to transfer ownership of
628 * XXX the buffer from device to cpu or vice verse, and thusly use the
629 * XXX appropriate _for_{cpu,device}() method. -DaveM
634 * usb_buffer_dmasync - synchronize DMA and CPU view of buffer(s)
635 * @urb: urb whose transfer_buffer/setup_packet will be synchronized
637 void usb_buffer_dmasync (struct urb *urb)
640 struct device *controller;
643 || !(urb->transfer_flags & URB_NO_TRANSFER_DMA_MAP)
645 || !(bus = urb->dev->bus)
646 || !(controller = bus->controller))
649 if (controller->dma_mask) {
650 dma_sync_single (controller,
651 urb->transfer_dma, urb->transfer_buffer_length,
652 usb_pipein (urb->pipe)
653 ? DMA_FROM_DEVICE : DMA_TO_DEVICE);
654 if (usb_pipecontrol (urb->pipe))
655 dma_sync_single (controller,
657 sizeof (struct usb_ctrlrequest),
664 * usb_buffer_unmap - free DMA mapping(s) for an urb
665 * @urb: urb whose transfer_buffer will be unmapped
667 * Reverses the effect of usb_buffer_map().
670 void usb_buffer_unmap (struct urb *urb)
673 struct device *controller;
676 || !(urb->transfer_flags & URB_NO_TRANSFER_DMA_MAP)
678 || !(bus = urb->dev->bus)
679 || !(controller = bus->controller))
682 if (controller->dma_mask) {
683 dma_unmap_single (controller,
684 urb->transfer_dma, urb->transfer_buffer_length,
685 usb_pipein (urb->pipe)
686 ? DMA_FROM_DEVICE : DMA_TO_DEVICE);
687 if (usb_pipecontrol (urb->pipe))
688 dma_unmap_single (controller,
690 sizeof (struct usb_ctrlrequest),
693 urb->transfer_flags &= ~(URB_NO_TRANSFER_DMA_MAP
694 | URB_NO_SETUP_DMA_MAP);
699 * usb_buffer_map_sg - create scatterlist DMA mapping(s) for an endpoint
700 * @dev: device to which the scatterlist will be mapped
701 * @pipe: endpoint defining the mapping direction
702 * @sg: the scatterlist to map
703 * @nents: the number of entries in the scatterlist
705 * Return value is either < 0 (indicating no buffers could be mapped), or
706 * the number of DMA mapping array entries in the scatterlist.
708 * The caller is responsible for placing the resulting DMA addresses from
709 * the scatterlist into URB transfer buffer pointers, and for setting the
710 * URB_NO_TRANSFER_DMA_MAP transfer flag in each of those URBs.
712 * Top I/O rates come from queuing URBs, instead of waiting for each one
713 * to complete before starting the next I/O. This is particularly easy
714 * to do with scatterlists. Just allocate and submit one URB for each DMA
715 * mapping entry returned, stopping on the first error or when all succeed.
716 * Better yet, use the usb_sg_*() calls, which do that (and more) for you.
718 * This call would normally be used when translating scatterlist requests,
719 * rather than usb_buffer_map(), since on some hardware (with IOMMUs) it
720 * may be able to coalesce mappings for improved I/O efficiency.
722 * Reverse the effect of this call with usb_buffer_unmap_sg().
724 int usb_buffer_map_sg (struct usb_device *dev, unsigned pipe,
725 struct scatterlist *sg, int nents)
728 struct device *controller;
731 || usb_pipecontrol (pipe)
733 || !(controller = bus->controller)
734 || !controller->dma_mask)
737 // FIXME generic api broken like pci, can't report errors
738 return dma_map_sg (controller, sg, nents,
739 usb_pipein (pipe) ? DMA_FROM_DEVICE : DMA_TO_DEVICE);
742 /* XXX DISABLED, no users currently. If you wish to re-enable this
743 * XXX please determine whether the sync is to transfer ownership of
744 * XXX the buffer from device to cpu or vice verse, and thusly use the
745 * XXX appropriate _for_{cpu,device}() method. -DaveM
750 * usb_buffer_dmasync_sg - synchronize DMA and CPU view of scatterlist buffer(s)
751 * @dev: device to which the scatterlist will be mapped
752 * @pipe: endpoint defining the mapping direction
753 * @sg: the scatterlist to synchronize
754 * @n_hw_ents: the positive return value from usb_buffer_map_sg
756 * Use this when you are re-using a scatterlist's data buffers for
757 * another USB request.
759 void usb_buffer_dmasync_sg (struct usb_device *dev, unsigned pipe,
760 struct scatterlist *sg, int n_hw_ents)
763 struct device *controller;
767 || !(controller = bus->controller)
768 || !controller->dma_mask)
771 dma_sync_sg (controller, sg, n_hw_ents,
772 usb_pipein (pipe) ? DMA_FROM_DEVICE : DMA_TO_DEVICE);
777 * usb_buffer_unmap_sg - free DMA mapping(s) for a scatterlist
778 * @dev: device to which the scatterlist will be mapped
779 * @pipe: endpoint defining the mapping direction
780 * @sg: the scatterlist to unmap
781 * @n_hw_ents: the positive return value from usb_buffer_map_sg
783 * Reverses the effect of usb_buffer_map_sg().
785 void usb_buffer_unmap_sg (struct usb_device *dev, unsigned pipe,
786 struct scatterlist *sg, int n_hw_ents)
789 struct device *controller;
793 || !(controller = bus->controller)
794 || !controller->dma_mask)
797 dma_unmap_sg (controller, sg, n_hw_ents,
798 usb_pipein (pipe) ? DMA_FROM_DEVICE : DMA_TO_DEVICE);
801 /* format to disable USB on kernel command line is: nousb */
802 __module_param_call("", nousb, param_set_bool, param_get_bool, &nousb, 0444);
805 * for external read access to <nousb>
807 int usb_disabled(void)
815 static int __init usb_init(void)
819 pr_info ("%s: USB support disabled\n", usbcore_name);
823 retval = bus_register(&usb_bus_type);
826 retval = usb_host_init();
828 goto host_init_failed;
829 retval = usb_major_init();
831 goto major_init_failed;
832 retval = usb_register(&usbfs_driver);
834 goto driver_register_failed;
835 retval = usbdev_init();
837 goto usbdevice_init_failed;
838 retval = usbfs_init();
841 retval = usb_hub_init();
843 goto hub_init_failed;
844 retval = usb_register_device_driver(&usb_generic_driver, THIS_MODULE);
853 usbdevice_init_failed:
854 usb_deregister(&usbfs_driver);
855 driver_register_failed:
860 bus_unregister(&usb_bus_type);
868 static void __exit usb_exit(void)
870 /* This will matter if shutdown/reboot does exitcalls. */
874 usb_deregister_device_driver(&usb_generic_driver);
877 usb_deregister(&usbfs_driver);
881 bus_unregister(&usb_bus_type);
884 subsys_initcall(usb_init);
885 module_exit(usb_exit);
888 * USB may be built into the kernel or be built as modules.
889 * These symbols are exported for device (or host controller)
890 * driver modules to use.
893 EXPORT_SYMBOL(usb_disabled);
895 EXPORT_SYMBOL_GPL(usb_get_intf);
896 EXPORT_SYMBOL_GPL(usb_put_intf);
898 EXPORT_SYMBOL(usb_put_dev);
899 EXPORT_SYMBOL(usb_get_dev);
900 EXPORT_SYMBOL(usb_hub_tt_clear_buffer);
902 EXPORT_SYMBOL(usb_lock_device_for_reset);
904 EXPORT_SYMBOL(usb_find_interface);
905 EXPORT_SYMBOL(usb_ifnum_to_if);
906 EXPORT_SYMBOL(usb_altnum_to_altsetting);
908 EXPORT_SYMBOL(__usb_get_extra_descriptor);
910 EXPORT_SYMBOL(usb_find_device);
911 EXPORT_SYMBOL(usb_get_current_frame_number);
913 EXPORT_SYMBOL (usb_buffer_alloc);
914 EXPORT_SYMBOL (usb_buffer_free);
917 EXPORT_SYMBOL (usb_buffer_map);
918 EXPORT_SYMBOL (usb_buffer_dmasync);
919 EXPORT_SYMBOL (usb_buffer_unmap);
922 EXPORT_SYMBOL (usb_buffer_map_sg);
924 EXPORT_SYMBOL (usb_buffer_dmasync_sg);
926 EXPORT_SYMBOL (usb_buffer_unmap_sg);
928 MODULE_LICENSE("GPL");