MOXA linux-2.6.x / linux-2.6.19-uc1 from UC-7110-LX-BOOTLOADER-1.9_VERSION-4.2.tgz
[linux-2.6.19-moxart.git] / drivers / usb / core / urb.c
blobcec41f4684485940544dae8868a6a768880bb6d4
1 #include <linux/module.h>
2 #include <linux/string.h>
3 #include <linux/bitops.h>
4 #include <linux/slab.h>
5 #include <linux/init.h>
6 #include <linux/usb.h>
7 #include "hcd.h"
9 #ifdef CONFIG_LEDMAN
10 #include <linux/ledman.h>
11 static int ledcnt = 0;
12 #endif
14 #define to_urb(d) container_of(d, struct urb, kref)
16 static void urb_destroy(struct kref *kref)
18 struct urb *urb = to_urb(kref);
19 kfree(urb);
22 /**
23 * usb_init_urb - initializes a urb so that it can be used by a USB driver
24 * @urb: pointer to the urb to initialize
26 * Initializes a urb so that the USB subsystem can use it properly.
28 * If a urb is created with a call to usb_alloc_urb() it is not
29 * necessary to call this function. Only use this if you allocate the
30 * space for a struct urb on your own. If you call this function, be
31 * careful when freeing the memory for your urb that it is no longer in
32 * use by the USB core.
34 * Only use this function if you _really_ understand what you are doing.
36 void usb_init_urb(struct urb *urb)
38 if (urb) {
39 memset(urb, 0, sizeof(*urb));
40 kref_init(&urb->kref);
41 spin_lock_init(&urb->lock);
45 /**
46 * usb_alloc_urb - creates a new urb for a USB driver to use
47 * @iso_packets: number of iso packets for this urb
48 * @mem_flags: the type of memory to allocate, see kmalloc() for a list of
49 * valid options for this.
51 * Creates an urb for the USB driver to use, initializes a few internal
52 * structures, incrementes the usage counter, and returns a pointer to it.
54 * If no memory is available, NULL is returned.
56 * If the driver want to use this urb for interrupt, control, or bulk
57 * endpoints, pass '0' as the number of iso packets.
59 * The driver must call usb_free_urb() when it is finished with the urb.
61 struct urb *usb_alloc_urb(int iso_packets, gfp_t mem_flags)
63 struct urb *urb;
65 urb = kmalloc(sizeof(struct urb) +
66 iso_packets * sizeof(struct usb_iso_packet_descriptor),
67 mem_flags);
68 if (!urb) {
69 err("alloc_urb: kmalloc failed");
70 return NULL;
72 usb_init_urb(urb);
73 return urb;
76 /**
77 * usb_free_urb - frees the memory used by a urb when all users of it are finished
78 * @urb: pointer to the urb to free, may be NULL
80 * Must be called when a user of a urb is finished with it. When the last user
81 * of the urb calls this function, the memory of the urb is freed.
83 * Note: The transfer buffer associated with the urb is not freed, that must be
84 * done elsewhere.
86 void usb_free_urb(struct urb *urb)
88 if (urb)
89 kref_put(&urb->kref, urb_destroy);
92 /**
93 * usb_get_urb - increments the reference count of the urb
94 * @urb: pointer to the urb to modify, may be NULL
96 * This must be called whenever a urb is transferred from a device driver to a
97 * host controller driver. This allows proper reference counting to happen
98 * for urbs.
100 * A pointer to the urb with the incremented reference counter is returned.
102 struct urb * usb_get_urb(struct urb *urb)
104 if (urb)
105 kref_get(&urb->kref);
106 return urb;
110 /*-------------------------------------------------------------------*/
113 * usb_submit_urb - issue an asynchronous transfer request for an endpoint
114 * @urb: pointer to the urb describing the request
115 * @mem_flags: the type of memory to allocate, see kmalloc() for a list
116 * of valid options for this.
118 * This submits a transfer request, and transfers control of the URB
119 * describing that request to the USB subsystem. Request completion will
120 * be indicated later, asynchronously, by calling the completion handler.
121 * The three types of completion are success, error, and unlink
122 * (a software-induced fault, also called "request cancellation").
124 * URBs may be submitted in interrupt context.
126 * The caller must have correctly initialized the URB before submitting
127 * it. Functions such as usb_fill_bulk_urb() and usb_fill_control_urb() are
128 * available to ensure that most fields are correctly initialized, for
129 * the particular kind of transfer, although they will not initialize
130 * any transfer flags.
132 * Successful submissions return 0; otherwise this routine returns a
133 * negative error number. If the submission is successful, the complete()
134 * callback from the URB will be called exactly once, when the USB core and
135 * Host Controller Driver (HCD) are finished with the URB. When the completion
136 * function is called, control of the URB is returned to the device
137 * driver which issued the request. The completion handler may then
138 * immediately free or reuse that URB.
140 * With few exceptions, USB device drivers should never access URB fields
141 * provided by usbcore or the HCD until its complete() is called.
142 * The exceptions relate to periodic transfer scheduling. For both
143 * interrupt and isochronous urbs, as part of successful URB submission
144 * urb->interval is modified to reflect the actual transfer period used
145 * (normally some power of two units). And for isochronous urbs,
146 * urb->start_frame is modified to reflect when the URB's transfers were
147 * scheduled to start. Not all isochronous transfer scheduling policies
148 * will work, but most host controller drivers should easily handle ISO
149 * queues going from now until 10-200 msec into the future.
151 * For control endpoints, the synchronous usb_control_msg() call is
152 * often used (in non-interrupt context) instead of this call.
153 * That is often used through convenience wrappers, for the requests
154 * that are standardized in the USB 2.0 specification. For bulk
155 * endpoints, a synchronous usb_bulk_msg() call is available.
157 * Request Queuing:
159 * URBs may be submitted to endpoints before previous ones complete, to
160 * minimize the impact of interrupt latencies and system overhead on data
161 * throughput. With that queuing policy, an endpoint's queue would never
162 * be empty. This is required for continuous isochronous data streams,
163 * and may also be required for some kinds of interrupt transfers. Such
164 * queuing also maximizes bandwidth utilization by letting USB controllers
165 * start work on later requests before driver software has finished the
166 * completion processing for earlier (successful) requests.
168 * As of Linux 2.6, all USB endpoint transfer queues support depths greater
169 * than one. This was previously a HCD-specific behavior, except for ISO
170 * transfers. Non-isochronous endpoint queues are inactive during cleanup
171 * after faults (transfer errors or cancellation).
173 * Reserved Bandwidth Transfers:
175 * Periodic transfers (interrupt or isochronous) are performed repeatedly,
176 * using the interval specified in the urb. Submitting the first urb to
177 * the endpoint reserves the bandwidth necessary to make those transfers.
178 * If the USB subsystem can't allocate sufficient bandwidth to perform
179 * the periodic request, submitting such a periodic request should fail.
181 * Device drivers must explicitly request that repetition, by ensuring that
182 * some URB is always on the endpoint's queue (except possibly for short
183 * periods during completion callacks). When there is no longer an urb
184 * queued, the endpoint's bandwidth reservation is canceled. This means
185 * drivers can use their completion handlers to ensure they keep bandwidth
186 * they need, by reinitializing and resubmitting the just-completed urb
187 * until the driver longer needs that periodic bandwidth.
189 * Memory Flags:
191 * The general rules for how to decide which mem_flags to use
192 * are the same as for kmalloc. There are four
193 * different possible values; GFP_KERNEL, GFP_NOFS, GFP_NOIO and
194 * GFP_ATOMIC.
196 * GFP_NOFS is not ever used, as it has not been implemented yet.
198 * GFP_ATOMIC is used when
199 * (a) you are inside a completion handler, an interrupt, bottom half,
200 * tasklet or timer, or
201 * (b) you are holding a spinlock or rwlock (does not apply to
202 * semaphores), or
203 * (c) current->state != TASK_RUNNING, this is the case only after
204 * you've changed it.
206 * GFP_NOIO is used in the block io path and error handling of storage
207 * devices.
209 * All other situations use GFP_KERNEL.
211 * Some more specific rules for mem_flags can be inferred, such as
212 * (1) start_xmit, timeout, and receive methods of network drivers must
213 * use GFP_ATOMIC (they are called with a spinlock held);
214 * (2) queuecommand methods of scsi drivers must use GFP_ATOMIC (also
215 * called with a spinlock held);
216 * (3) If you use a kernel thread with a network driver you must use
217 * GFP_NOIO, unless (b) or (c) apply;
218 * (4) after you have done a down() you can use GFP_KERNEL, unless (b) or (c)
219 * apply or your are in a storage driver's block io path;
220 * (5) USB probe and disconnect can use GFP_KERNEL unless (b) or (c) apply; and
221 * (6) changing firmware on a running storage or net device uses
222 * GFP_NOIO, unless b) or c) apply
225 int usb_submit_urb(struct urb *urb, gfp_t mem_flags)
227 int pipe, temp, max;
228 struct usb_device *dev;
229 int is_out;
231 if (!urb || urb->hcpriv || !urb->complete)
232 return -EINVAL;
233 if (!(dev = urb->dev) ||
234 (dev->state < USB_STATE_DEFAULT) ||
235 (!dev->bus) || (dev->devnum <= 0))
236 return -ENODEV;
237 if (dev->bus->controller->power.power_state.event != PM_EVENT_ON
238 || dev->state == USB_STATE_SUSPENDED)
239 return -EHOSTUNREACH;
241 urb->status = -EINPROGRESS;
242 urb->actual_length = 0;
243 urb->bandwidth = 0;
245 /* Lots of sanity checks, so HCDs can rely on clean data
246 * and don't need to duplicate tests
248 pipe = urb->pipe;
249 temp = usb_pipetype (pipe);
250 is_out = usb_pipeout (pipe);
252 if (!usb_pipecontrol (pipe) && dev->state < USB_STATE_CONFIGURED)
253 return -ENODEV;
255 /* FIXME there should be a sharable lock protecting us against
256 * config/altsetting changes and disconnects, kicking in here.
257 * (here == before maxpacket, and eventually endpoint type,
258 * checks get made.)
261 max = usb_maxpacket (dev, pipe, is_out);
262 if (max <= 0) {
263 dev_dbg(&dev->dev,
264 "bogus endpoint ep%d%s in %s (bad maxpacket %d)\n",
265 usb_pipeendpoint (pipe), is_out ? "out" : "in",
266 __FUNCTION__, max);
267 return -EMSGSIZE;
270 /* periodic transfers limit size per frame/uframe,
271 * but drivers only control those sizes for ISO.
272 * while we're checking, initialize return status.
274 if (temp == PIPE_ISOCHRONOUS) {
275 int n, len;
277 /* "high bandwidth" mode, 1-3 packets/uframe? */
278 if (dev->speed == USB_SPEED_HIGH) {
279 int mult = 1 + ((max >> 11) & 0x03);
280 max &= 0x07ff;
281 max *= mult;
284 if (urb->number_of_packets <= 0)
285 return -EINVAL;
286 for (n = 0; n < urb->number_of_packets; n++) {
287 len = urb->iso_frame_desc [n].length;
288 if (len < 0 || len > max)
289 return -EMSGSIZE;
290 urb->iso_frame_desc [n].status = -EXDEV;
291 urb->iso_frame_desc [n].actual_length = 0;
295 /* the I/O buffer must be mapped/unmapped, except when length=0 */
296 if (urb->transfer_buffer_length < 0)
297 return -EMSGSIZE;
299 #ifdef DEBUG
300 /* stuff that drivers shouldn't do, but which shouldn't
301 * cause problems in HCDs if they get it wrong.
304 unsigned int orig_flags = urb->transfer_flags;
305 unsigned int allowed;
307 /* enforce simple/standard policy */
308 allowed = (URB_NO_TRANSFER_DMA_MAP | URB_NO_SETUP_DMA_MAP |
309 URB_NO_INTERRUPT);
310 switch (temp) {
311 case PIPE_BULK:
312 if (is_out)
313 allowed |= URB_ZERO_PACKET;
314 /* FALLTHROUGH */
315 case PIPE_CONTROL:
316 allowed |= URB_NO_FSBR; /* only affects UHCI */
317 /* FALLTHROUGH */
318 default: /* all non-iso endpoints */
319 if (!is_out)
320 allowed |= URB_SHORT_NOT_OK;
321 break;
322 case PIPE_ISOCHRONOUS:
323 allowed |= URB_ISO_ASAP;
324 break;
326 urb->transfer_flags &= allowed;
328 /* fail if submitter gave bogus flags */
329 if (urb->transfer_flags != orig_flags) {
330 err ("BOGUS urb flags, %x --> %x",
331 orig_flags, urb->transfer_flags);
332 return -EINVAL;
335 #endif
337 * Force periodic transfer intervals to be legal values that are
338 * a power of two (so HCDs don't need to).
340 * FIXME want bus->{intr,iso}_sched_horizon values here. Each HC
341 * supports different values... this uses EHCI/UHCI defaults (and
342 * EHCI can use smaller non-default values).
344 switch (temp) {
345 case PIPE_ISOCHRONOUS:
346 case PIPE_INTERRUPT:
347 /* too small? */
348 if (urb->interval <= 0)
349 return -EINVAL;
350 /* too big? */
351 switch (dev->speed) {
352 case USB_SPEED_HIGH: /* units are microframes */
353 // NOTE usb handles 2^15
354 if (urb->interval > (1024 * 8))
355 urb->interval = 1024 * 8;
356 temp = 1024 * 8;
357 break;
358 case USB_SPEED_FULL: /* units are frames/msec */
359 case USB_SPEED_LOW:
360 if (temp == PIPE_INTERRUPT) {
361 if (urb->interval > 255)
362 return -EINVAL;
363 // NOTE ohci only handles up to 32
364 temp = 128;
365 } else {
366 if (urb->interval > 1024)
367 urb->interval = 1024;
368 // NOTE usb and ohci handle up to 2^15
369 temp = 1024;
371 break;
372 default:
373 return -EINVAL;
375 /* power of two? */
376 while (temp > urb->interval)
377 temp >>= 1;
378 urb->interval = temp;
381 #ifdef CONFIG_LEDMAN
382 if (ledcnt++ % 10 == 0)
383 ledman_cmd(LEDMAN_CMD_SET, LEDMAN_USB1_TX);
384 #endif
386 return usb_hcd_submit_urb (urb, mem_flags);
389 /*-------------------------------------------------------------------*/
392 * usb_unlink_urb - abort/cancel a transfer request for an endpoint
393 * @urb: pointer to urb describing a previously submitted request,
394 * may be NULL
396 * This routine cancels an in-progress request. URBs complete only
397 * once per submission, and may be canceled only once per submission.
398 * Successful cancellation means the requests's completion handler will
399 * be called with a status code indicating that the request has been
400 * canceled (rather than any other code) and will quickly be removed
401 * from host controller data structures.
403 * This request is always asynchronous.
404 * Success is indicated by returning -EINPROGRESS,
405 * at which time the URB will normally have been unlinked but not yet
406 * given back to the device driver. When it is called, the completion
407 * function will see urb->status == -ECONNRESET. Failure is indicated
408 * by any other return value. Unlinking will fail when the URB is not
409 * currently "linked" (i.e., it was never submitted, or it was unlinked
410 * before, or the hardware is already finished with it), even if the
411 * completion handler has not yet run.
413 * Unlinking and Endpoint Queues:
415 * Host Controller Drivers (HCDs) place all the URBs for a particular
416 * endpoint in a queue. Normally the queue advances as the controller
417 * hardware processes each request. But when an URB terminates with an
418 * error its queue stops, at least until that URB's completion routine
419 * returns. It is guaranteed that the queue will not restart until all
420 * its unlinked URBs have been fully retired, with their completion
421 * routines run, even if that's not until some time after the original
422 * completion handler returns. Normally the same behavior and guarantees
423 * apply when an URB terminates because it was unlinked; however if an
424 * URB is unlinked before the hardware has started to execute it, then
425 * its queue is not guaranteed to stop until all the preceding URBs have
426 * completed.
428 * This means that USB device drivers can safely build deep queues for
429 * large or complex transfers, and clean them up reliably after any sort
430 * of aborted transfer by unlinking all pending URBs at the first fault.
432 * Note that an URB terminating early because a short packet was received
433 * will count as an error if and only if the URB_SHORT_NOT_OK flag is set.
434 * Also, that all unlinks performed in any URB completion handler must
435 * be asynchronous.
437 * Queues for isochronous endpoints are treated differently, because they
438 * advance at fixed rates. Such queues do not stop when an URB is unlinked.
439 * An unlinked URB may leave a gap in the stream of packets. It is undefined
440 * whether such gaps can be filled in.
442 * When a control URB terminates with an error, it is likely that the
443 * status stage of the transfer will not take place, even if it is merely
444 * a soft error resulting from a short-packet with URB_SHORT_NOT_OK set.
446 int usb_unlink_urb(struct urb *urb)
448 if (!urb)
449 return -EINVAL;
450 if (!(urb->dev && urb->dev->bus))
451 return -ENODEV;
452 return usb_hcd_unlink_urb(urb, -ECONNRESET);
456 * usb_kill_urb - cancel a transfer request and wait for it to finish
457 * @urb: pointer to URB describing a previously submitted request,
458 * may be NULL
460 * This routine cancels an in-progress request. It is guaranteed that
461 * upon return all completion handlers will have finished and the URB
462 * will be totally idle and available for reuse. These features make
463 * this an ideal way to stop I/O in a disconnect() callback or close()
464 * function. If the request has not already finished or been unlinked
465 * the completion handler will see urb->status == -ENOENT.
467 * While the routine is running, attempts to resubmit the URB will fail
468 * with error -EPERM. Thus even if the URB's completion handler always
469 * tries to resubmit, it will not succeed and the URB will become idle.
471 * This routine may not be used in an interrupt context (such as a bottom
472 * half or a completion handler), or when holding a spinlock, or in other
473 * situations where the caller can't schedule().
475 void usb_kill_urb(struct urb *urb)
477 might_sleep();
478 if (!(urb && urb->dev && urb->dev->bus))
479 return;
480 spin_lock_irq(&urb->lock);
481 ++urb->reject;
482 spin_unlock_irq(&urb->lock);
484 usb_hcd_unlink_urb(urb, -ENOENT);
485 wait_event(usb_kill_urb_queue, atomic_read(&urb->use_count) == 0);
487 spin_lock_irq(&urb->lock);
488 --urb->reject;
489 spin_unlock_irq(&urb->lock);
492 EXPORT_SYMBOL(usb_init_urb);
493 EXPORT_SYMBOL(usb_alloc_urb);
494 EXPORT_SYMBOL(usb_free_urb);
495 EXPORT_SYMBOL(usb_get_urb);
496 EXPORT_SYMBOL(usb_submit_urb);
497 EXPORT_SYMBOL(usb_unlink_urb);
498 EXPORT_SYMBOL(usb_kill_urb);