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