blob: 82837d45b484ce2a616ac19667d6c27b2705ab39 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <linux/usb.h>
Arjan van de Ven4186ecf2006-01-11 15:55:29 +010035#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
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
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
46const char *usbcore_name = "usbcore";
47
48static int nousb; /* Disable USB when built into kernel image */
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
Linus Torvalds1da177e2005-04-16 15:20:36 -070051/**
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 */
70struct 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 */
103struct 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
Pete Zaitcevf5691d72005-12-21 17:24:54 -0800115struct find_interface_arg {
116 int minor;
117 struct usb_interface *interface;
118};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
mochel@digitalimplant.org6034a082005-03-21 11:09:40 -0800120static int __find_interface(struct device * dev, void * data)
121{
Pete Zaitcevf5691d72005-12-21 17:24:54 -0800122 struct find_interface_arg *arg = data;
123 struct usb_interface *intf;
mochel@digitalimplant.org6034a082005-03-21 11:09:40 -0800124
125 /* can't look at usb devices, only interfaces */
Alan Stern8bb54ab2006-07-01 22:08:49 -0400126 if (is_usb_device(dev))
mochel@digitalimplant.org6034a082005-03-21 11:09:40 -0800127 return 0;
128
129 intf = to_usb_interface(dev);
Pete Zaitcevf5691d72005-12-21 17:24:54 -0800130 if (intf->minor != -1 && intf->minor == arg->minor) {
131 arg->interface = intf;
mochel@digitalimplant.org6034a082005-03-21 11:09:40 -0800132 return 1;
133 }
134 return 0;
135}
136
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137/**
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 */
146struct usb_interface *usb_find_interface(struct usb_driver *drv, int minor)
147{
Pete Zaitcevf5691d72005-12-21 17:24:54 -0800148 struct find_interface_arg argb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
Pete Zaitcevf5691d72005-12-21 17:24:54 -0800150 argb.minor = minor;
151 argb.interface = NULL;
Alan Stern8bb54ab2006-07-01 22:08:49 -0400152 driver_for_each_device(&drv->drvwrap.driver, NULL, &argb,
153 __find_interface);
Pete Zaitcevf5691d72005-12-21 17:24:54 -0800154 return argb.interface;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155}
156
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157/**
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 */
164static 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 */
190struct usb_device *
191usb_alloc_dev(struct usb_device *parent, struct usb_bus *bus, unsigned port1)
192{
193 struct usb_device *dev;
194
Alan Stern0a1ef3b2005-10-24 15:38:24 -0400195 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 if (!dev)
197 return NULL;
198
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 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;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 dev->dev.release = usb_release_dev;
209 dev->state = USB_STATE_ATTACHED;
210
Alan Stern8bb54ab2006-07-01 22:08:49 -0400211 /* This magic assignment distinguishes devices from interfaces */
212 dev->dev.platform_data = &usb_generic_driver;
213
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 INIT_LIST_HEAD(&dev->ep0.urb_list);
215 dev->ep0.desc.bLength = USB_DT_ENDPOINT_SIZE;
216 dev->ep0.desc.bDescriptorType = USB_DT_ENDPOINT;
217 /* ep0 maxpacket comes later, from device descriptor */
218 dev->ep_in[0] = dev->ep_out[0] = &dev->ep0;
219
220 /* Save readable and stable topology id, distinguishing devices
221 * by location for diagnostics, tools, driver model, etc. The
222 * string is a path along hub ports, from the root. Each device's
223 * dev->devpath will be stable until USB is re-cabled, and hubs
224 * are often labeled with these port numbers. The bus_id isn't
225 * as stable: bus->busnum changes easily from modprobe order,
226 * cardbus or pci hotplugging, and so on.
227 */
228 if (unlikely (!parent)) {
229 dev->devpath [0] = '0';
230
231 dev->dev.parent = bus->controller;
232 sprintf (&dev->dev.bus_id[0], "usb%d", bus->busnum);
233 } else {
234 /* match any labeling on the hubs; it's one-based */
235 if (parent->devpath [0] == '0')
236 snprintf (dev->devpath, sizeof dev->devpath,
237 "%d", port1);
238 else
239 snprintf (dev->devpath, sizeof dev->devpath,
240 "%s.%d", parent->devpath, port1);
241
242 dev->dev.parent = &parent->dev;
243 sprintf (&dev->dev.bus_id[0], "%d-%s",
244 bus->busnum, dev->devpath);
245
246 /* hub driver sets up TT records */
247 }
248
Alan Stern12c3da32005-11-23 12:09:52 -0500249 dev->portnum = port1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 dev->bus = bus;
251 dev->parent = parent;
252 INIT_LIST_HEAD(&dev->filelist);
253
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 return dev;
255}
256
257/**
258 * usb_get_dev - increments the reference count of the usb device structure
259 * @dev: the device being referenced
260 *
261 * Each live reference to a device should be refcounted.
262 *
263 * Drivers for USB interfaces should normally record such references in
264 * their probe() methods, when they bind to an interface, and release
265 * them by calling usb_put_dev(), in their disconnect() methods.
266 *
267 * A pointer to the device with the incremented reference counter is returned.
268 */
269struct usb_device *usb_get_dev(struct usb_device *dev)
270{
271 if (dev)
272 get_device(&dev->dev);
273 return dev;
274}
275
276/**
277 * usb_put_dev - release a use of the usb device structure
278 * @dev: device that's been disconnected
279 *
280 * Must be called when a user of a device is finished with it. When the last
281 * user of the device calls this function, the memory of the device is freed.
282 */
283void usb_put_dev(struct usb_device *dev)
284{
285 if (dev)
286 put_device(&dev->dev);
287}
288
289/**
290 * usb_get_intf - increments the reference count of the usb interface structure
291 * @intf: the interface being referenced
292 *
293 * Each live reference to a interface must be refcounted.
294 *
295 * Drivers for USB interfaces should normally record such references in
296 * their probe() methods, when they bind to an interface, and release
297 * them by calling usb_put_intf(), in their disconnect() methods.
298 *
299 * A pointer to the interface with the incremented reference counter is
300 * returned.
301 */
302struct usb_interface *usb_get_intf(struct usb_interface *intf)
303{
304 if (intf)
305 get_device(&intf->dev);
306 return intf;
307}
308
309/**
310 * usb_put_intf - release a use of the usb interface structure
311 * @intf: interface that's been decremented
312 *
313 * Must be called when a user of an interface is finished with it. When the
314 * last user of the interface calls this function, the memory of the interface
315 * is freed.
316 */
317void usb_put_intf(struct usb_interface *intf)
318{
319 if (intf)
320 put_device(&intf->dev);
321}
322
323
324/* USB device locking
325 *
Alan Stern9ad3d6c2005-11-17 17:10:32 -0500326 * USB devices and interfaces are locked using the semaphore in their
327 * embedded struct device. The hub driver guarantees that whenever a
328 * device is connected or disconnected, drivers are called with the
329 * USB device locked as well as their particular interface.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 *
331 * Complications arise when several devices are to be locked at the same
332 * time. Only hub-aware drivers that are part of usbcore ever have to
Alan Stern9ad3d6c2005-11-17 17:10:32 -0500333 * do this; nobody else needs to worry about it. The rule for locking
334 * is simple:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 *
336 * When locking both a device and its parent, always lock the
337 * the parent first.
338 */
339
340/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 * usb_lock_device_for_reset - cautiously acquire the lock for a
342 * usb device structure
343 * @udev: device that's being locked
344 * @iface: interface bound to the driver making the request (optional)
345 *
346 * Attempts to acquire the device lock, but fails if the device is
347 * NOTATTACHED or SUSPENDED, or if iface is specified and the interface
348 * is neither BINDING nor BOUND. Rather than sleeping to wait for the
349 * lock, the routine polls repeatedly. This is to prevent deadlock with
350 * disconnect; in some drivers (such as usb-storage) the disconnect()
Alan Stern3ea15962005-08-11 10:15:39 -0400351 * or suspend() method will block waiting for a device reset to complete.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 *
353 * Returns a negative error code for failure, otherwise 1 or 0 to indicate
354 * that the device will or will not have to be unlocked. (0 can be
355 * returned when an interface is given and is BINDING, because in that
356 * case the driver already owns the device lock.)
357 */
358int usb_lock_device_for_reset(struct usb_device *udev,
359 struct usb_interface *iface)
360{
Alan Stern3ea15962005-08-11 10:15:39 -0400361 unsigned long jiffies_expire = jiffies + HZ;
362
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 if (udev->state == USB_STATE_NOTATTACHED)
364 return -ENODEV;
365 if (udev->state == USB_STATE_SUSPENDED)
366 return -EHOSTUNREACH;
367 if (iface) {
368 switch (iface->condition) {
369 case USB_INTERFACE_BINDING:
370 return 0;
371 case USB_INTERFACE_BOUND:
372 break;
373 default:
374 return -EINTR;
375 }
376 }
377
Alan Stern9ad3d6c2005-11-17 17:10:32 -0500378 while (usb_trylock_device(udev) != 0) {
Alan Stern3ea15962005-08-11 10:15:39 -0400379
380 /* If we can't acquire the lock after waiting one second,
381 * we're probably deadlocked */
382 if (time_after(jiffies, jiffies_expire))
383 return -EBUSY;
384
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 msleep(15);
386 if (udev->state == USB_STATE_NOTATTACHED)
387 return -ENODEV;
388 if (udev->state == USB_STATE_SUSPENDED)
389 return -EHOSTUNREACH;
390 if (iface && iface->condition != USB_INTERFACE_BOUND)
391 return -EINTR;
392 }
393 return 1;
394}
395
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396
397static struct usb_device *match_device(struct usb_device *dev,
398 u16 vendor_id, u16 product_id)
399{
400 struct usb_device *ret_dev = NULL;
401 int child;
402
403 dev_dbg(&dev->dev, "check for vendor %04x, product %04x ...\n",
404 le16_to_cpu(dev->descriptor.idVendor),
405 le16_to_cpu(dev->descriptor.idProduct));
406
407 /* see if this device matches */
408 if ((vendor_id == le16_to_cpu(dev->descriptor.idVendor)) &&
409 (product_id == le16_to_cpu(dev->descriptor.idProduct))) {
410 dev_dbg (&dev->dev, "matched this device!\n");
411 ret_dev = usb_get_dev(dev);
412 goto exit;
413 }
414
415 /* look through all of the children of this device */
416 for (child = 0; child < dev->maxchild; ++child) {
417 if (dev->children[child]) {
Alan Stern9ad3d6c2005-11-17 17:10:32 -0500418 usb_lock_device(dev->children[child]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 ret_dev = match_device(dev->children[child],
420 vendor_id, product_id);
Alan Stern9ad3d6c2005-11-17 17:10:32 -0500421 usb_unlock_device(dev->children[child]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 if (ret_dev)
423 goto exit;
424 }
425 }
426exit:
427 return ret_dev;
428}
429
430/**
431 * usb_find_device - find a specific usb device in the system
432 * @vendor_id: the vendor id of the device to find
433 * @product_id: the product id of the device to find
434 *
435 * Returns a pointer to a struct usb_device if such a specified usb
436 * device is present in the system currently. The usage count of the
437 * device will be incremented if a device is found. Make sure to call
438 * usb_put_dev() when the caller is finished with the device.
439 *
440 * If a device with the specified vendor and product id is not found,
441 * NULL is returned.
442 */
443struct usb_device *usb_find_device(u16 vendor_id, u16 product_id)
444{
445 struct list_head *buslist;
446 struct usb_bus *bus;
447 struct usb_device *dev = NULL;
448
Arjan van de Ven4186ecf2006-01-11 15:55:29 +0100449 mutex_lock(&usb_bus_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 for (buslist = usb_bus_list.next;
451 buslist != &usb_bus_list;
452 buslist = buslist->next) {
453 bus = container_of(buslist, struct usb_bus, bus_list);
454 if (!bus->root_hub)
455 continue;
456 usb_lock_device(bus->root_hub);
457 dev = match_device(bus->root_hub, vendor_id, product_id);
458 usb_unlock_device(bus->root_hub);
459 if (dev)
460 goto exit;
461 }
462exit:
Arjan van de Ven4186ecf2006-01-11 15:55:29 +0100463 mutex_unlock(&usb_bus_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 return dev;
465}
466
467/**
468 * usb_get_current_frame_number - return current bus frame number
469 * @dev: the device whose bus is being queried
470 *
471 * Returns the current frame number for the USB host controller
472 * used with the given USB device. This can be used when scheduling
473 * isochronous requests.
474 *
475 * Note that different kinds of host controller have different
476 * "scheduling horizons". While one type might support scheduling only
477 * 32 frames into the future, others could support scheduling up to
478 * 1024 frames into the future.
479 */
480int usb_get_current_frame_number(struct usb_device *dev)
481{
482 return dev->bus->op->get_frame_number (dev);
483}
484
Luiz Fernando N. Capitulinob7cfaaa2006-09-27 11:58:53 -0700485/**
486 * usb_endpoint_dir_in - check if the endpoint has IN direction
487 * @epd: endpoint to be checked
488 *
489 * Returns true if the endpoint is of type IN, otherwise it returns false.
490 */
491int usb_endpoint_dir_in(const struct usb_endpoint_descriptor *epd)
492{
493 return ((epd->bEndpointAddress & USB_ENDPOINT_DIR_MASK) == USB_DIR_IN);
494}
495
496/**
497 * usb_endpoint_dir_out - check if the endpoint has OUT direction
498 * @epd: endpoint to be checked
499 *
500 * Returns true if the endpoint is of type OUT, otherwise it returns false.
501 */
502int usb_endpoint_dir_out(const struct usb_endpoint_descriptor *epd)
503{
504 return ((epd->bEndpointAddress & USB_ENDPOINT_DIR_MASK) == USB_DIR_OUT);
505}
506
507/**
508 * usb_endpoint_xfer_bulk - check if the endpoint has bulk transfer type
509 * @epd: endpoint to be checked
510 *
511 * Returns true if the endpoint is of type bulk, otherwise it returns false.
512 */
513int usb_endpoint_xfer_bulk(const struct usb_endpoint_descriptor *epd)
514{
515 return ((epd->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) ==
516 USB_ENDPOINT_XFER_BULK);
517}
518
519/**
520 * usb_endpoint_xfer_int - check if the endpoint has interrupt transfer type
521 * @epd: endpoint to be checked
522 *
523 * Returns true if the endpoint is of type interrupt, otherwise it returns
524 * false.
525 */
526int usb_endpoint_xfer_int(const struct usb_endpoint_descriptor *epd)
527{
528 return ((epd->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) ==
529 USB_ENDPOINT_XFER_INT);
530}
531
532/**
533 * usb_endpoint_xfer_isoc - check if the endpoint has isochronous transfer type
534 * @epd: endpoint to be checked
535 *
536 * Returns true if the endpoint is of type isochronous, otherwise it returns
537 * false.
538 */
539int usb_endpoint_xfer_isoc(const struct usb_endpoint_descriptor *epd)
540{
541 return ((epd->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) ==
542 USB_ENDPOINT_XFER_ISOC);
543}
544
545/**
546 * usb_endpoint_is_bulk_in - check if the endpoint is bulk IN
547 * @epd: endpoint to be checked
548 *
549 * Returns true if the endpoint has bulk transfer type and IN direction,
550 * otherwise it returns false.
551 */
552int usb_endpoint_is_bulk_in(const struct usb_endpoint_descriptor *epd)
553{
554 return (usb_endpoint_xfer_bulk(epd) && usb_endpoint_dir_in(epd));
555}
556
557/**
558 * usb_endpoint_is_bulk_out - check if the endpoint is bulk OUT
559 * @epd: endpoint to be checked
560 *
561 * Returns true if the endpoint has bulk transfer type and OUT direction,
562 * otherwise it returns false.
563 */
564int usb_endpoint_is_bulk_out(const struct usb_endpoint_descriptor *epd)
565{
566 return (usb_endpoint_xfer_bulk(epd) && usb_endpoint_dir_out(epd));
567}
568
569/**
570 * usb_endpoint_is_int_in - check if the endpoint is interrupt IN
571 * @epd: endpoint to be checked
572 *
573 * Returns true if the endpoint has interrupt transfer type and IN direction,
574 * otherwise it returns false.
575 */
576int usb_endpoint_is_int_in(const struct usb_endpoint_descriptor *epd)
577{
578 return (usb_endpoint_xfer_int(epd) && usb_endpoint_dir_in(epd));
579}
580
581/**
582 * usb_endpoint_is_int_out - check if the endpoint is interrupt OUT
583 * @epd: endpoint to be checked
584 *
585 * Returns true if the endpoint has interrupt transfer type and OUT direction,
586 * otherwise it returns false.
587 */
588int usb_endpoint_is_int_out(const struct usb_endpoint_descriptor *epd)
589{
590 return (usb_endpoint_xfer_int(epd) && usb_endpoint_dir_out(epd));
591}
592
593/**
594 * usb_endpoint_is_isoc_in - check if the endpoint is isochronous IN
595 * @epd: endpoint to be checked
596 *
597 * Returns true if the endpoint has isochronous transfer type and IN direction,
598 * otherwise it returns false.
599 */
600int usb_endpoint_is_isoc_in(const struct usb_endpoint_descriptor *epd)
601{
602 return (usb_endpoint_xfer_isoc(epd) && usb_endpoint_dir_in(epd));
603}
604
605/**
606 * usb_endpoint_is_isoc_out - check if the endpoint is isochronous OUT
607 * @epd: endpoint to be checked
608 *
609 * Returns true if the endpoint has isochronous transfer type and OUT direction,
610 * otherwise it returns false.
611 */
612int usb_endpoint_is_isoc_out(const struct usb_endpoint_descriptor *epd)
613{
614 return (usb_endpoint_xfer_isoc(epd) && usb_endpoint_dir_out(epd));
615}
616
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617/*-------------------------------------------------------------------*/
618/*
619 * __usb_get_extra_descriptor() finds a descriptor of specific type in the
620 * extra field of the interface and endpoint descriptor structs.
621 */
622
623int __usb_get_extra_descriptor(char *buffer, unsigned size,
624 unsigned char type, void **ptr)
625{
626 struct usb_descriptor_header *header;
627
628 while (size >= sizeof(struct usb_descriptor_header)) {
629 header = (struct usb_descriptor_header *)buffer;
630
631 if (header->bLength < 2) {
632 printk(KERN_ERR
633 "%s: bogus descriptor, type %d length %d\n",
634 usbcore_name,
635 header->bDescriptorType,
636 header->bLength);
637 return -1;
638 }
639
640 if (header->bDescriptorType == type) {
641 *ptr = header;
642 return 0;
643 }
644
645 buffer += header->bLength;
646 size -= header->bLength;
647 }
648 return -1;
649}
650
651/**
652 * usb_buffer_alloc - allocate dma-consistent buffer for URB_NO_xxx_DMA_MAP
653 * @dev: device the buffer will be used with
654 * @size: requested buffer size
655 * @mem_flags: affect whether allocation may block
656 * @dma: used to return DMA address of buffer
657 *
658 * Return value is either null (indicating no buffer could be allocated), or
659 * the cpu-space pointer to a buffer that may be used to perform DMA to the
660 * specified device. Such cpu-space buffers are returned along with the DMA
661 * address (through the pointer provided).
662 *
663 * These buffers are used with URB_NO_xxx_DMA_MAP set in urb->transfer_flags
664 * to avoid behaviors like using "DMA bounce buffers", or tying down I/O
665 * mapping hardware for long idle periods. The implementation varies between
666 * platforms, depending on details of how DMA will work to this device.
667 * Using these buffers also helps prevent cacheline sharing problems on
668 * architectures where CPU caches are not DMA-coherent.
669 *
670 * When the buffer is no longer used, free it with usb_buffer_free().
671 */
672void *usb_buffer_alloc (
673 struct usb_device *dev,
674 size_t size,
Al Viro55016f12005-10-21 03:21:58 -0400675 gfp_t mem_flags,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 dma_addr_t *dma
677)
678{
679 if (!dev || !dev->bus || !dev->bus->op || !dev->bus->op->buffer_alloc)
680 return NULL;
681 return dev->bus->op->buffer_alloc (dev->bus, size, mem_flags, dma);
682}
683
684/**
685 * usb_buffer_free - free memory allocated with usb_buffer_alloc()
686 * @dev: device the buffer was used with
687 * @size: requested buffer size
688 * @addr: CPU address of buffer
689 * @dma: DMA address of buffer
690 *
691 * This reclaims an I/O buffer, letting it be reused. The memory must have
692 * been allocated using usb_buffer_alloc(), and the parameters must match
693 * those provided in that allocation request.
694 */
695void usb_buffer_free (
696 struct usb_device *dev,
697 size_t size,
698 void *addr,
699 dma_addr_t dma
700)
701{
702 if (!dev || !dev->bus || !dev->bus->op || !dev->bus->op->buffer_free)
Dmitry Torokhovb94badb2006-08-01 22:33:34 -0400703 return;
704 if (!addr)
705 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 dev->bus->op->buffer_free (dev->bus, size, addr, dma);
707}
708
709/**
710 * usb_buffer_map - create DMA mapping(s) for an urb
711 * @urb: urb whose transfer_buffer/setup_packet will be mapped
712 *
713 * Return value is either null (indicating no buffer could be mapped), or
714 * the parameter. URB_NO_TRANSFER_DMA_MAP and URB_NO_SETUP_DMA_MAP are
715 * added to urb->transfer_flags if the operation succeeds. If the device
716 * is connected to this system through a non-DMA controller, this operation
717 * always succeeds.
718 *
719 * This call would normally be used for an urb which is reused, perhaps
720 * as the target of a large periodic transfer, with usb_buffer_dmasync()
721 * calls to synchronize memory and dma state.
722 *
723 * Reverse the effect of this call with usb_buffer_unmap().
724 */
725#if 0
726struct urb *usb_buffer_map (struct urb *urb)
727{
728 struct usb_bus *bus;
729 struct device *controller;
730
731 if (!urb
732 || !urb->dev
733 || !(bus = urb->dev->bus)
734 || !(controller = bus->controller))
735 return NULL;
736
737 if (controller->dma_mask) {
738 urb->transfer_dma = dma_map_single (controller,
739 urb->transfer_buffer, urb->transfer_buffer_length,
740 usb_pipein (urb->pipe)
741 ? DMA_FROM_DEVICE : DMA_TO_DEVICE);
742 if (usb_pipecontrol (urb->pipe))
743 urb->setup_dma = dma_map_single (controller,
744 urb->setup_packet,
745 sizeof (struct usb_ctrlrequest),
746 DMA_TO_DEVICE);
747 // FIXME generic api broken like pci, can't report errors
748 // if (urb->transfer_dma == DMA_ADDR_INVALID) return 0;
749 } else
750 urb->transfer_dma = ~0;
751 urb->transfer_flags |= (URB_NO_TRANSFER_DMA_MAP
752 | URB_NO_SETUP_DMA_MAP);
753 return urb;
754}
755#endif /* 0 */
756
757/* XXX DISABLED, no users currently. If you wish to re-enable this
758 * XXX please determine whether the sync is to transfer ownership of
759 * XXX the buffer from device to cpu or vice verse, and thusly use the
760 * XXX appropriate _for_{cpu,device}() method. -DaveM
761 */
762#if 0
763
764/**
765 * usb_buffer_dmasync - synchronize DMA and CPU view of buffer(s)
766 * @urb: urb whose transfer_buffer/setup_packet will be synchronized
767 */
768void usb_buffer_dmasync (struct urb *urb)
769{
770 struct usb_bus *bus;
771 struct device *controller;
772
773 if (!urb
774 || !(urb->transfer_flags & URB_NO_TRANSFER_DMA_MAP)
775 || !urb->dev
776 || !(bus = urb->dev->bus)
777 || !(controller = bus->controller))
778 return;
779
780 if (controller->dma_mask) {
781 dma_sync_single (controller,
782 urb->transfer_dma, urb->transfer_buffer_length,
783 usb_pipein (urb->pipe)
784 ? DMA_FROM_DEVICE : DMA_TO_DEVICE);
785 if (usb_pipecontrol (urb->pipe))
786 dma_sync_single (controller,
787 urb->setup_dma,
788 sizeof (struct usb_ctrlrequest),
789 DMA_TO_DEVICE);
790 }
791}
792#endif
793
794/**
795 * usb_buffer_unmap - free DMA mapping(s) for an urb
796 * @urb: urb whose transfer_buffer will be unmapped
797 *
798 * Reverses the effect of usb_buffer_map().
799 */
800#if 0
801void usb_buffer_unmap (struct urb *urb)
802{
803 struct usb_bus *bus;
804 struct device *controller;
805
806 if (!urb
807 || !(urb->transfer_flags & URB_NO_TRANSFER_DMA_MAP)
808 || !urb->dev
809 || !(bus = urb->dev->bus)
810 || !(controller = bus->controller))
811 return;
812
813 if (controller->dma_mask) {
814 dma_unmap_single (controller,
815 urb->transfer_dma, urb->transfer_buffer_length,
816 usb_pipein (urb->pipe)
817 ? DMA_FROM_DEVICE : DMA_TO_DEVICE);
818 if (usb_pipecontrol (urb->pipe))
819 dma_unmap_single (controller,
820 urb->setup_dma,
821 sizeof (struct usb_ctrlrequest),
822 DMA_TO_DEVICE);
823 }
824 urb->transfer_flags &= ~(URB_NO_TRANSFER_DMA_MAP
825 | URB_NO_SETUP_DMA_MAP);
826}
827#endif /* 0 */
828
829/**
830 * usb_buffer_map_sg - create scatterlist DMA mapping(s) for an endpoint
831 * @dev: device to which the scatterlist will be mapped
832 * @pipe: endpoint defining the mapping direction
833 * @sg: the scatterlist to map
834 * @nents: the number of entries in the scatterlist
835 *
836 * Return value is either < 0 (indicating no buffers could be mapped), or
837 * the number of DMA mapping array entries in the scatterlist.
838 *
839 * The caller is responsible for placing the resulting DMA addresses from
840 * the scatterlist into URB transfer buffer pointers, and for setting the
841 * URB_NO_TRANSFER_DMA_MAP transfer flag in each of those URBs.
842 *
843 * Top I/O rates come from queuing URBs, instead of waiting for each one
844 * to complete before starting the next I/O. This is particularly easy
845 * to do with scatterlists. Just allocate and submit one URB for each DMA
846 * mapping entry returned, stopping on the first error or when all succeed.
847 * Better yet, use the usb_sg_*() calls, which do that (and more) for you.
848 *
849 * This call would normally be used when translating scatterlist requests,
850 * rather than usb_buffer_map(), since on some hardware (with IOMMUs) it
851 * may be able to coalesce mappings for improved I/O efficiency.
852 *
853 * Reverse the effect of this call with usb_buffer_unmap_sg().
854 */
855int usb_buffer_map_sg (struct usb_device *dev, unsigned pipe,
856 struct scatterlist *sg, int nents)
857{
858 struct usb_bus *bus;
859 struct device *controller;
860
861 if (!dev
862 || usb_pipecontrol (pipe)
863 || !(bus = dev->bus)
864 || !(controller = bus->controller)
865 || !controller->dma_mask)
866 return -1;
867
868 // FIXME generic api broken like pci, can't report errors
869 return dma_map_sg (controller, sg, nents,
870 usb_pipein (pipe) ? DMA_FROM_DEVICE : DMA_TO_DEVICE);
871}
872
873/* XXX DISABLED, no users currently. If you wish to re-enable this
874 * XXX please determine whether the sync is to transfer ownership of
875 * XXX the buffer from device to cpu or vice verse, and thusly use the
876 * XXX appropriate _for_{cpu,device}() method. -DaveM
877 */
878#if 0
879
880/**
881 * usb_buffer_dmasync_sg - synchronize DMA and CPU view of scatterlist buffer(s)
882 * @dev: device to which the scatterlist will be mapped
883 * @pipe: endpoint defining the mapping direction
884 * @sg: the scatterlist to synchronize
885 * @n_hw_ents: the positive return value from usb_buffer_map_sg
886 *
887 * Use this when you are re-using a scatterlist's data buffers for
888 * another USB request.
889 */
890void usb_buffer_dmasync_sg (struct usb_device *dev, unsigned pipe,
891 struct scatterlist *sg, int n_hw_ents)
892{
893 struct usb_bus *bus;
894 struct device *controller;
895
896 if (!dev
897 || !(bus = dev->bus)
898 || !(controller = bus->controller)
899 || !controller->dma_mask)
900 return;
901
902 dma_sync_sg (controller, sg, n_hw_ents,
903 usb_pipein (pipe) ? DMA_FROM_DEVICE : DMA_TO_DEVICE);
904}
905#endif
906
907/**
908 * usb_buffer_unmap_sg - free DMA mapping(s) for a scatterlist
909 * @dev: device to which the scatterlist will be mapped
910 * @pipe: endpoint defining the mapping direction
911 * @sg: the scatterlist to unmap
912 * @n_hw_ents: the positive return value from usb_buffer_map_sg
913 *
914 * Reverses the effect of usb_buffer_map_sg().
915 */
916void usb_buffer_unmap_sg (struct usb_device *dev, unsigned pipe,
917 struct scatterlist *sg, int n_hw_ents)
918{
919 struct usb_bus *bus;
920 struct device *controller;
921
922 if (!dev
923 || !(bus = dev->bus)
924 || !(controller = bus->controller)
925 || !controller->dma_mask)
926 return;
927
928 dma_unmap_sg (controller, sg, n_hw_ents,
929 usb_pipein (pipe) ? DMA_FROM_DEVICE : DMA_TO_DEVICE);
930}
931
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932/* format to disable USB on kernel command line is: nousb */
Pete Zaitcevaafbf242005-12-20 14:15:04 -0800933__module_param_call("", nousb, param_set_bool, param_get_bool, &nousb, 0444);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934
935/*
936 * for external read access to <nousb>
937 */
938int usb_disabled(void)
939{
940 return nousb;
941}
942
943/*
944 * Init
945 */
946static int __init usb_init(void)
947{
948 int retval;
949 if (nousb) {
950 pr_info ("%s: USB support disabled\n", usbcore_name);
951 return 0;
952 }
953
954 retval = bus_register(&usb_bus_type);
955 if (retval)
956 goto out;
957 retval = usb_host_init();
958 if (retval)
959 goto host_init_failed;
960 retval = usb_major_init();
961 if (retval)
962 goto major_init_failed;
Kay Sieversfbf82fd2005-07-31 01:05:53 +0200963 retval = usb_register(&usbfs_driver);
964 if (retval)
965 goto driver_register_failed;
966 retval = usbdev_init();
967 if (retval)
968 goto usbdevice_init_failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 retval = usbfs_init();
970 if (retval)
971 goto fs_init_failed;
972 retval = usb_hub_init();
973 if (retval)
974 goto hub_init_failed;
Alan Stern8bb54ab2006-07-01 22:08:49 -0400975 retval = usb_register_device_driver(&usb_generic_driver, THIS_MODULE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 if (!retval)
977 goto out;
978
979 usb_hub_cleanup();
980hub_init_failed:
981 usbfs_cleanup();
982fs_init_failed:
Kay Sieversfbf82fd2005-07-31 01:05:53 +0200983 usbdev_cleanup();
984usbdevice_init_failed:
985 usb_deregister(&usbfs_driver);
986driver_register_failed:
987 usb_major_cleanup();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988major_init_failed:
989 usb_host_cleanup();
990host_init_failed:
991 bus_unregister(&usb_bus_type);
992out:
993 return retval;
994}
995
996/*
997 * Cleanup
998 */
999static void __exit usb_exit(void)
1000{
1001 /* This will matter if shutdown/reboot does exitcalls. */
1002 if (nousb)
1003 return;
1004
Alan Stern8bb54ab2006-07-01 22:08:49 -04001005 usb_deregister_device_driver(&usb_generic_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 usb_major_cleanup();
1007 usbfs_cleanup();
Kay Sieversfbf82fd2005-07-31 01:05:53 +02001008 usb_deregister(&usbfs_driver);
1009 usbdev_cleanup();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 usb_hub_cleanup();
1011 usb_host_cleanup();
1012 bus_unregister(&usb_bus_type);
1013}
1014
1015subsys_initcall(usb_init);
1016module_exit(usb_exit);
1017
1018/*
1019 * USB may be built into the kernel or be built as modules.
1020 * These symbols are exported for device (or host controller)
1021 * driver modules to use.
1022 */
1023
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024EXPORT_SYMBOL(usb_disabled);
1025
brian@murphy.dka3fdf4e2005-06-29 16:53:29 -07001026EXPORT_SYMBOL_GPL(usb_get_intf);
1027EXPORT_SYMBOL_GPL(usb_put_intf);
1028
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029EXPORT_SYMBOL(usb_put_dev);
1030EXPORT_SYMBOL(usb_get_dev);
1031EXPORT_SYMBOL(usb_hub_tt_clear_buffer);
1032
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033EXPORT_SYMBOL(usb_lock_device_for_reset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035EXPORT_SYMBOL(usb_find_interface);
1036EXPORT_SYMBOL(usb_ifnum_to_if);
1037EXPORT_SYMBOL(usb_altnum_to_altsetting);
1038
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039EXPORT_SYMBOL(__usb_get_extra_descriptor);
1040
1041EXPORT_SYMBOL(usb_find_device);
1042EXPORT_SYMBOL(usb_get_current_frame_number);
1043
Luiz Fernando N. Capitulinob7cfaaa2006-09-27 11:58:53 -07001044EXPORT_SYMBOL_GPL(usb_endpoint_dir_in);
1045EXPORT_SYMBOL_GPL(usb_endpoint_dir_out);
1046EXPORT_SYMBOL_GPL(usb_endpoint_xfer_bulk);
1047EXPORT_SYMBOL_GPL(usb_endpoint_xfer_int);
1048EXPORT_SYMBOL_GPL(usb_endpoint_xfer_isoc);
1049EXPORT_SYMBOL_GPL(usb_endpoint_is_bulk_in);
1050EXPORT_SYMBOL_GPL(usb_endpoint_is_bulk_out);
1051EXPORT_SYMBOL_GPL(usb_endpoint_is_int_in);
1052EXPORT_SYMBOL_GPL(usb_endpoint_is_int_out);
1053EXPORT_SYMBOL_GPL(usb_endpoint_is_isoc_in);
1054EXPORT_SYMBOL_GPL(usb_endpoint_is_isoc_out);
1055
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056EXPORT_SYMBOL (usb_buffer_alloc);
1057EXPORT_SYMBOL (usb_buffer_free);
1058
1059#if 0
1060EXPORT_SYMBOL (usb_buffer_map);
1061EXPORT_SYMBOL (usb_buffer_dmasync);
1062EXPORT_SYMBOL (usb_buffer_unmap);
1063#endif
1064
1065EXPORT_SYMBOL (usb_buffer_map_sg);
1066#if 0
1067EXPORT_SYMBOL (usb_buffer_dmasync_sg);
1068#endif
1069EXPORT_SYMBOL (usb_buffer_unmap_sg);
1070
1071MODULE_LICENSE("GPL");