usbcore: add usb_device_driver definition
[linux-2.6] / drivers / usb / core / usb.c
1 /*
2  * drivers/usb/usb.c
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
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>
36
37 #include <asm/io.h>
38 #include <asm/scatterlist.h>
39 #include <linux/mm.h>
40 #include <linux/dma-mapping.h>
41
42 #include "hcd.h"
43 #include "usb.h"
44
45
46 const char *usbcore_name = "usbcore";
47
48 static int nousb;       /* Disable USB when built into kernel image */
49
50
51 /**
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
55  *
56  * This walks the device descriptor for the currently active configuration
57  * and returns a pointer to the interface with that particular interface
58  * number, or null.
59  *
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.
66  *
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!
69  */
70 struct usb_interface *usb_ifnum_to_if(struct usb_device *dev, unsigned ifnum)
71 {
72         struct usb_host_config *config = dev->actconfig;
73         int i;
74
75         if (!config)
76                 return NULL;
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];
81
82         return NULL;
83 }
84
85 /**
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
90  *
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.
94  *
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.
99  *
100  * Don't call this function unless you are bound to the intf interface
101  * or you have locked the device!
102  */
103 struct usb_host_interface *usb_altnum_to_altsetting(struct usb_interface *intf,
104                 unsigned int altnum)
105 {
106         int i;
107
108         for (i = 0; i < intf->num_altsetting; i++) {
109                 if (intf->altsetting[i].desc.bAlternateSetting == altnum)
110                         return &intf->altsetting[i];
111         }
112         return NULL;
113 }
114
115 struct find_interface_arg {
116         int minor;
117         struct usb_interface *interface;
118 };
119
120 static int __find_interface(struct device * dev, void * data)
121 {
122         struct find_interface_arg *arg = data;
123         struct usb_interface *intf;
124
125         /* can't look at usb devices, only interfaces */
126         if (is_usb_device(dev))
127                 return 0;
128
129         intf = to_usb_interface(dev);
130         if (intf->minor != -1 && intf->minor == arg->minor) {
131                 arg->interface = intf;
132                 return 1;
133         }
134         return 0;
135 }
136
137 /**
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
141  *
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
144  * USB major number.
145  */
146 struct usb_interface *usb_find_interface(struct usb_driver *drv, int minor)
147 {
148         struct find_interface_arg argb;
149
150         argb.minor = minor;
151         argb.interface = NULL;
152         driver_for_each_device(&drv->drvwrap.driver, NULL, &argb,
153                         __find_interface);
154         return argb.interface;
155 }
156
157 /**
158  * usb_release_dev - free a usb device structure when all users of it are finished.
159  * @dev: device that's been disconnected
160  *
161  * Will be called only by the device core when all users of this usb device are
162  * done.
163  */
164 static void usb_release_dev(struct device *dev)
165 {
166         struct usb_device *udev;
167
168         udev = to_usb_device(dev);
169
170         usb_destroy_configuration(udev);
171         usb_bus_put(udev->bus);
172         kfree(udev->product);
173         kfree(udev->manufacturer);
174         kfree(udev->serial);
175         kfree(udev);
176 }
177
178 /**
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 ()
184  *
185  * Only hub drivers (including virtual root hub drivers for host
186  * controllers) should ever call this.
187  *
188  * This call may not be used in a non-sleeping context.
189  */
190 struct usb_device *
191 usb_alloc_dev(struct usb_device *parent, struct usb_bus *bus, unsigned port1)
192 {
193         struct usb_device *dev;
194
195         dev = kzalloc(sizeof(*dev), GFP_KERNEL);
196         if (!dev)
197                 return NULL;
198
199         bus = usb_bus_get(bus);
200         if (!bus) {
201                 kfree(dev);
202                 return NULL;
203         }
204
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;
211
212         /* This magic assignment distinguishes devices from interfaces */
213         dev->dev.platform_data = &usb_generic_driver;
214
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;
220
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.
228          */
229         if (unlikely (!parent)) {
230                 dev->devpath [0] = '0';
231
232                 dev->dev.parent = bus->controller;
233                 sprintf (&dev->dev.bus_id[0], "usb%d", bus->busnum);
234         } else {
235                 /* match any labeling on the hubs; it's one-based */
236                 if (parent->devpath [0] == '0')
237                         snprintf (dev->devpath, sizeof dev->devpath,
238                                 "%d", port1);
239                 else
240                         snprintf (dev->devpath, sizeof dev->devpath,
241                                 "%s.%d", parent->devpath, port1);
242
243                 dev->dev.parent = &parent->dev;
244                 sprintf (&dev->dev.bus_id[0], "%d-%s",
245                         bus->busnum, dev->devpath);
246
247                 /* hub driver sets up TT records */
248         }
249
250         dev->portnum = port1;
251         dev->bus = bus;
252         dev->parent = parent;
253         INIT_LIST_HEAD(&dev->filelist);
254
255         return dev;
256 }
257
258 /**
259  * usb_get_dev - increments the reference count of the usb device structure
260  * @dev: the device being referenced
261  *
262  * Each live reference to a device should be refcounted.
263  *
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.
267  *
268  * A pointer to the device with the incremented reference counter is returned.
269  */
270 struct usb_device *usb_get_dev(struct usb_device *dev)
271 {
272         if (dev)
273                 get_device(&dev->dev);
274         return dev;
275 }
276
277 /**
278  * usb_put_dev - release a use of the usb device structure
279  * @dev: device that's been disconnected
280  *
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.
283  */
284 void usb_put_dev(struct usb_device *dev)
285 {
286         if (dev)
287                 put_device(&dev->dev);
288 }
289
290 /**
291  * usb_get_intf - increments the reference count of the usb interface structure
292  * @intf: the interface being referenced
293  *
294  * Each live reference to a interface must be refcounted.
295  *
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.
299  *
300  * A pointer to the interface with the incremented reference counter is
301  * returned.
302  */
303 struct usb_interface *usb_get_intf(struct usb_interface *intf)
304 {
305         if (intf)
306                 get_device(&intf->dev);
307         return intf;
308 }
309
310 /**
311  * usb_put_intf - release a use of the usb interface structure
312  * @intf: interface that's been decremented
313  *
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
316  * is freed.
317  */
318 void usb_put_intf(struct usb_interface *intf)
319 {
320         if (intf)
321                 put_device(&intf->dev);
322 }
323
324
325 /*                      USB device locking
326  *
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.
331  *
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
335  * is simple:
336  *
337  *      When locking both a device and its parent, always lock the
338  *      the parent first.
339  */
340
341 /**
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)
346  *
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.
353  *
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.)
358  */
359 int usb_lock_device_for_reset(struct usb_device *udev,
360                 struct usb_interface *iface)
361 {
362         unsigned long jiffies_expire = jiffies + HZ;
363
364         if (udev->state == USB_STATE_NOTATTACHED)
365                 return -ENODEV;
366         if (udev->state == USB_STATE_SUSPENDED)
367                 return -EHOSTUNREACH;
368         if (iface) {
369                 switch (iface->condition) {
370                   case USB_INTERFACE_BINDING:
371                         return 0;
372                   case USB_INTERFACE_BOUND:
373                         break;
374                   default:
375                         return -EINTR;
376                 }
377         }
378
379         while (usb_trylock_device(udev) != 0) {
380
381                 /* If we can't acquire the lock after waiting one second,
382                  * we're probably deadlocked */
383                 if (time_after(jiffies, jiffies_expire))
384                         return -EBUSY;
385
386                 msleep(15);
387                 if (udev->state == USB_STATE_NOTATTACHED)
388                         return -ENODEV;
389                 if (udev->state == USB_STATE_SUSPENDED)
390                         return -EHOSTUNREACH;
391                 if (iface && iface->condition != USB_INTERFACE_BOUND)
392                         return -EINTR;
393         }
394         return 1;
395 }
396
397
398 static struct usb_device *match_device(struct usb_device *dev,
399                                        u16 vendor_id, u16 product_id)
400 {
401         struct usb_device *ret_dev = NULL;
402         int child;
403
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));
407
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);
413                 goto exit;
414         }
415
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]);
423                         if (ret_dev)
424                                 goto exit;
425                 }
426         }
427 exit:
428         return ret_dev;
429 }
430
431 /**
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
435  *
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.
440  *
441  * If a device with the specified vendor and product id is not found,
442  * NULL is returned.
443  */
444 struct usb_device *usb_find_device(u16 vendor_id, u16 product_id)
445 {
446         struct list_head *buslist;
447         struct usb_bus *bus;
448         struct usb_device *dev = NULL;
449         
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);
455                 if (!bus->root_hub)
456                         continue;
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);
460                 if (dev)
461                         goto exit;
462         }
463 exit:
464         mutex_unlock(&usb_bus_list_lock);
465         return dev;
466 }
467
468 /**
469  * usb_get_current_frame_number - return current bus frame number
470  * @dev: the device whose bus is being queried
471  *
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.
475  *
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.
480  */
481 int usb_get_current_frame_number(struct usb_device *dev)
482 {
483         return dev->bus->op->get_frame_number (dev);
484 }
485
486 /*-------------------------------------------------------------------*/
487 /*
488  * __usb_get_extra_descriptor() finds a descriptor of specific type in the
489  * extra field of the interface and endpoint descriptor structs.
490  */
491
492 int __usb_get_extra_descriptor(char *buffer, unsigned size,
493         unsigned char type, void **ptr)
494 {
495         struct usb_descriptor_header *header;
496
497         while (size >= sizeof(struct usb_descriptor_header)) {
498                 header = (struct usb_descriptor_header *)buffer;
499
500                 if (header->bLength < 2) {
501                         printk(KERN_ERR
502                                 "%s: bogus descriptor, type %d length %d\n",
503                                 usbcore_name,
504                                 header->bDescriptorType, 
505                                 header->bLength);
506                         return -1;
507                 }
508
509                 if (header->bDescriptorType == type) {
510                         *ptr = header;
511                         return 0;
512                 }
513
514                 buffer += header->bLength;
515                 size -= header->bLength;
516         }
517         return -1;
518 }
519
520 /**
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
526  *
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).
531  *
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.
538  *
539  * When the buffer is no longer used, free it with usb_buffer_free().
540  */
541 void *usb_buffer_alloc (
542         struct usb_device *dev,
543         size_t size,
544         gfp_t mem_flags,
545         dma_addr_t *dma
546 )
547 {
548         if (!dev || !dev->bus || !dev->bus->op || !dev->bus->op->buffer_alloc)
549                 return NULL;
550         return dev->bus->op->buffer_alloc (dev->bus, size, mem_flags, dma);
551 }
552
553 /**
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
559  *
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. 
563  */
564 void usb_buffer_free (
565         struct usb_device *dev,
566         size_t size,
567         void *addr,
568         dma_addr_t dma
569 )
570 {
571         if (!dev || !dev->bus || !dev->bus->op || !dev->bus->op->buffer_free)
572                 return;
573         if (!addr)
574                 return;
575         dev->bus->op->buffer_free (dev->bus, size, addr, dma);
576 }
577
578 /**
579  * usb_buffer_map - create DMA mapping(s) for an urb
580  * @urb: urb whose transfer_buffer/setup_packet will be mapped
581  *
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
586  * always succeeds.
587  *
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.
591  *
592  * Reverse the effect of this call with usb_buffer_unmap().
593  */
594 #if 0
595 struct urb *usb_buffer_map (struct urb *urb)
596 {
597         struct usb_bus          *bus;
598         struct device           *controller;
599
600         if (!urb
601                         || !urb->dev
602                         || !(bus = urb->dev->bus)
603                         || !(controller = bus->controller))
604                 return NULL;
605
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,
613                                         urb->setup_packet,
614                                         sizeof (struct usb_ctrlrequest),
615                                         DMA_TO_DEVICE);
616         // FIXME generic api broken like pci, can't report errors
617         // if (urb->transfer_dma == DMA_ADDR_INVALID) return 0;
618         } else
619                 urb->transfer_dma = ~0;
620         urb->transfer_flags |= (URB_NO_TRANSFER_DMA_MAP
621                                 | URB_NO_SETUP_DMA_MAP);
622         return urb;
623 }
624 #endif  /*  0  */
625
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
630  */
631 #if 0
632
633 /**
634  * usb_buffer_dmasync - synchronize DMA and CPU view of buffer(s)
635  * @urb: urb whose transfer_buffer/setup_packet will be synchronized
636  */
637 void usb_buffer_dmasync (struct urb *urb)
638 {
639         struct usb_bus          *bus;
640         struct device           *controller;
641
642         if (!urb
643                         || !(urb->transfer_flags & URB_NO_TRANSFER_DMA_MAP)
644                         || !urb->dev
645                         || !(bus = urb->dev->bus)
646                         || !(controller = bus->controller))
647                 return;
648
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,
656                                         urb->setup_dma,
657                                         sizeof (struct usb_ctrlrequest),
658                                         DMA_TO_DEVICE);
659         }
660 }
661 #endif
662
663 /**
664  * usb_buffer_unmap - free DMA mapping(s) for an urb
665  * @urb: urb whose transfer_buffer will be unmapped
666  *
667  * Reverses the effect of usb_buffer_map().
668  */
669 #if 0
670 void usb_buffer_unmap (struct urb *urb)
671 {
672         struct usb_bus          *bus;
673         struct device           *controller;
674
675         if (!urb
676                         || !(urb->transfer_flags & URB_NO_TRANSFER_DMA_MAP)
677                         || !urb->dev
678                         || !(bus = urb->dev->bus)
679                         || !(controller = bus->controller))
680                 return;
681
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,
689                                         urb->setup_dma,
690                                         sizeof (struct usb_ctrlrequest),
691                                         DMA_TO_DEVICE);
692         }
693         urb->transfer_flags &= ~(URB_NO_TRANSFER_DMA_MAP
694                                 | URB_NO_SETUP_DMA_MAP);
695 }
696 #endif  /*  0  */
697
698 /**
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
704  *
705  * Return value is either < 0 (indicating no buffers could be mapped), or
706  * the number of DMA mapping array entries in the scatterlist.
707  *
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.
711  *
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.
717  *
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.
721  *
722  * Reverse the effect of this call with usb_buffer_unmap_sg().
723  */
724 int usb_buffer_map_sg (struct usb_device *dev, unsigned pipe,
725                 struct scatterlist *sg, int nents)
726 {
727         struct usb_bus          *bus;
728         struct device           *controller;
729
730         if (!dev
731                         || usb_pipecontrol (pipe)
732                         || !(bus = dev->bus)
733                         || !(controller = bus->controller)
734                         || !controller->dma_mask)
735                 return -1;
736
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);
740 }
741
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
746  */
747 #if 0
748
749 /**
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
755  *
756  * Use this when you are re-using a scatterlist's data buffers for
757  * another USB request.
758  */
759 void usb_buffer_dmasync_sg (struct usb_device *dev, unsigned pipe,
760                 struct scatterlist *sg, int n_hw_ents)
761 {
762         struct usb_bus          *bus;
763         struct device           *controller;
764
765         if (!dev
766                         || !(bus = dev->bus)
767                         || !(controller = bus->controller)
768                         || !controller->dma_mask)
769                 return;
770
771         dma_sync_sg (controller, sg, n_hw_ents,
772                         usb_pipein (pipe) ? DMA_FROM_DEVICE : DMA_TO_DEVICE);
773 }
774 #endif
775
776 /**
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
782  *
783  * Reverses the effect of usb_buffer_map_sg().
784  */
785 void usb_buffer_unmap_sg (struct usb_device *dev, unsigned pipe,
786                 struct scatterlist *sg, int n_hw_ents)
787 {
788         struct usb_bus          *bus;
789         struct device           *controller;
790
791         if (!dev
792                         || !(bus = dev->bus)
793                         || !(controller = bus->controller)
794                         || !controller->dma_mask)
795                 return;
796
797         dma_unmap_sg (controller, sg, n_hw_ents,
798                         usb_pipein (pipe) ? DMA_FROM_DEVICE : DMA_TO_DEVICE);
799 }
800
801 /* format to disable USB on kernel command line is: nousb */
802 __module_param_call("", nousb, param_set_bool, param_get_bool, &nousb, 0444);
803
804 /*
805  * for external read access to <nousb>
806  */
807 int usb_disabled(void)
808 {
809         return nousb;
810 }
811
812 /*
813  * Init
814  */
815 static int __init usb_init(void)
816 {
817         int retval;
818         if (nousb) {
819                 pr_info ("%s: USB support disabled\n", usbcore_name);
820                 return 0;
821         }
822
823         retval = bus_register(&usb_bus_type);
824         if (retval) 
825                 goto out;
826         retval = usb_host_init();
827         if (retval)
828                 goto host_init_failed;
829         retval = usb_major_init();
830         if (retval)
831                 goto major_init_failed;
832         retval = usb_register(&usbfs_driver);
833         if (retval)
834                 goto driver_register_failed;
835         retval = usbdev_init();
836         if (retval)
837                 goto usbdevice_init_failed;
838         retval = usbfs_init();
839         if (retval)
840                 goto fs_init_failed;
841         retval = usb_hub_init();
842         if (retval)
843                 goto hub_init_failed;
844         retval = usb_register_device_driver(&usb_generic_driver, THIS_MODULE);
845         if (!retval)
846                 goto out;
847
848         usb_hub_cleanup();
849 hub_init_failed:
850         usbfs_cleanup();
851 fs_init_failed:
852         usbdev_cleanup();
853 usbdevice_init_failed:
854         usb_deregister(&usbfs_driver);
855 driver_register_failed:
856         usb_major_cleanup();
857 major_init_failed:
858         usb_host_cleanup();
859 host_init_failed:
860         bus_unregister(&usb_bus_type);
861 out:
862         return retval;
863 }
864
865 /*
866  * Cleanup
867  */
868 static void __exit usb_exit(void)
869 {
870         /* This will matter if shutdown/reboot does exitcalls. */
871         if (nousb)
872                 return;
873
874         usb_deregister_device_driver(&usb_generic_driver);
875         usb_major_cleanup();
876         usbfs_cleanup();
877         usb_deregister(&usbfs_driver);
878         usbdev_cleanup();
879         usb_hub_cleanup();
880         usb_host_cleanup();
881         bus_unregister(&usb_bus_type);
882 }
883
884 subsys_initcall(usb_init);
885 module_exit(usb_exit);
886
887 /*
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.
891  */
892
893 EXPORT_SYMBOL(usb_disabled);
894
895 EXPORT_SYMBOL_GPL(usb_get_intf);
896 EXPORT_SYMBOL_GPL(usb_put_intf);
897
898 EXPORT_SYMBOL(usb_put_dev);
899 EXPORT_SYMBOL(usb_get_dev);
900 EXPORT_SYMBOL(usb_hub_tt_clear_buffer);
901
902 EXPORT_SYMBOL(usb_lock_device_for_reset);
903
904 EXPORT_SYMBOL(usb_find_interface);
905 EXPORT_SYMBOL(usb_ifnum_to_if);
906 EXPORT_SYMBOL(usb_altnum_to_altsetting);
907
908 EXPORT_SYMBOL(__usb_get_extra_descriptor);
909
910 EXPORT_SYMBOL(usb_find_device);
911 EXPORT_SYMBOL(usb_get_current_frame_number);
912
913 EXPORT_SYMBOL (usb_buffer_alloc);
914 EXPORT_SYMBOL (usb_buffer_free);
915
916 #if 0
917 EXPORT_SYMBOL (usb_buffer_map);
918 EXPORT_SYMBOL (usb_buffer_dmasync);
919 EXPORT_SYMBOL (usb_buffer_unmap);
920 #endif
921
922 EXPORT_SYMBOL (usb_buffer_map_sg);
923 #if 0
924 EXPORT_SYMBOL (usb_buffer_dmasync_sg);
925 #endif
926 EXPORT_SYMBOL (usb_buffer_unmap_sg);
927
928 MODULE_LICENSE("GPL");