urb.c 31.6 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4
#include <linux/module.h>
#include <linux/string.h>
#include <linux/bitops.h>
#include <linux/slab.h>
A
Alan Stern 已提交
5
#include <linux/log2.h>
L
Linus Torvalds 已提交
6
#include <linux/usb.h>
O
Oliver Neukum 已提交
7
#include <linux/wait.h>
8
#include <linux/usb/hcd.h>
9
#include <linux/scatterlist.h>
L
Linus Torvalds 已提交
10 11 12

#define to_urb(d) container_of(d, struct urb, kref)

O
Oliver Neukum 已提交
13

L
Linus Torvalds 已提交
14 15 16
static void urb_destroy(struct kref *kref)
{
	struct urb *urb = to_urb(kref);
O
Oliver Neukum 已提交
17

18 19 20
	if (urb->transfer_flags & URB_FREE_BUFFER)
		kfree(urb->transfer_buffer);

L
Linus Torvalds 已提交
21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
	kfree(urb);
}

/**
 * usb_init_urb - initializes a urb so that it can be used by a USB driver
 * @urb: pointer to the urb to initialize
 *
 * Initializes a urb so that the USB subsystem can use it properly.
 *
 * If a urb is created with a call to usb_alloc_urb() it is not
 * necessary to call this function.  Only use this if you allocate the
 * space for a struct urb on your own.  If you call this function, be
 * careful when freeing the memory for your urb that it is no longer in
 * use by the USB core.
 *
 * Only use this function if you _really_ understand what you are doing.
 */
void usb_init_urb(struct urb *urb)
{
	if (urb) {
		memset(urb, 0, sizeof(*urb));
		kref_init(&urb->kref);
O
Oliver Neukum 已提交
43
		INIT_LIST_HEAD(&urb->anchor_list);
L
Linus Torvalds 已提交
44 45
	}
}
46
EXPORT_SYMBOL_GPL(usb_init_urb);
L
Linus Torvalds 已提交
47 48 49 50 51 52 53 54

/**
 * usb_alloc_urb - creates a new urb for a USB driver to use
 * @iso_packets: number of iso packets for this urb
 * @mem_flags: the type of memory to allocate, see kmalloc() for a list of
 *	valid options for this.
 *
 * Creates an urb for the USB driver to use, initializes a few internal
55
 * structures, increments the usage counter, and returns a pointer to it.
L
Linus Torvalds 已提交
56 57 58 59 60
 *
 * If the driver want to use this urb for interrupt, control, or bulk
 * endpoints, pass '0' as the number of iso packets.
 *
 * The driver must call usb_free_urb() when it is finished with the urb.
61 62
 *
 * Return: A pointer to the new urb, or %NULL if no memory is available.
L
Linus Torvalds 已提交
63
 */
A
Al Viro 已提交
64
struct urb *usb_alloc_urb(int iso_packets, gfp_t mem_flags)
L
Linus Torvalds 已提交
65 66 67
{
	struct urb *urb;

68
	urb = kmalloc(sizeof(struct urb) +
L
Linus Torvalds 已提交
69 70 71
		iso_packets * sizeof(struct usb_iso_packet_descriptor),
		mem_flags);
	if (!urb) {
72
		printk(KERN_ERR "alloc_urb: kmalloc failed\n");
L
Linus Torvalds 已提交
73 74 75 76 77
		return NULL;
	}
	usb_init_urb(urb);
	return urb;
}
78
EXPORT_SYMBOL_GPL(usb_alloc_urb);
L
Linus Torvalds 已提交
79 80 81 82 83 84 85 86

/**
 * usb_free_urb - frees the memory used by a urb when all users of it are finished
 * @urb: pointer to the urb to free, may be NULL
 *
 * Must be called when a user of a urb is finished with it.  When the last user
 * of the urb calls this function, the memory of the urb is freed.
 *
87 88
 * Note: The transfer buffer associated with the urb is not freed unless the
 * URB_FREE_BUFFER transfer flag is set.
L
Linus Torvalds 已提交
89 90 91 92 93 94
 */
void usb_free_urb(struct urb *urb)
{
	if (urb)
		kref_put(&urb->kref, urb_destroy);
}
95
EXPORT_SYMBOL_GPL(usb_free_urb);
L
Linus Torvalds 已提交
96 97 98 99 100 101 102 103 104

/**
 * usb_get_urb - increments the reference count of the urb
 * @urb: pointer to the urb to modify, may be NULL
 *
 * This must be  called whenever a urb is transferred from a device driver to a
 * host controller driver.  This allows proper reference counting to happen
 * for urbs.
 *
105
 * Return: A pointer to the urb with the incremented reference counter.
L
Linus Torvalds 已提交
106
 */
107
struct urb *usb_get_urb(struct urb *urb)
L
Linus Torvalds 已提交
108 109 110 111 112
{
	if (urb)
		kref_get(&urb->kref);
	return urb;
}
113
EXPORT_SYMBOL_GPL(usb_get_urb);
O
Oliver Neukum 已提交
114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130

/**
 * usb_anchor_urb - anchors an URB while it is processed
 * @urb: pointer to the urb to anchor
 * @anchor: pointer to the anchor
 *
 * This can be called to have access to URBs which are to be executed
 * without bothering to track them
 */
void usb_anchor_urb(struct urb *urb, struct usb_anchor *anchor)
{
	unsigned long flags;

	spin_lock_irqsave(&anchor->lock, flags);
	usb_get_urb(urb);
	list_add_tail(&urb->anchor_list, &anchor->urb_list);
	urb->anchor = anchor;
O
Oliver Neukum 已提交
131 132

	if (unlikely(anchor->poisoned)) {
133
		atomic_inc(&urb->reject);
O
Oliver Neukum 已提交
134 135
	}

O
Oliver Neukum 已提交
136 137 138 139
	spin_unlock_irqrestore(&anchor->lock, flags);
}
EXPORT_SYMBOL_GPL(usb_anchor_urb);

140 141 142 143 144 145
static int usb_anchor_check_wakeup(struct usb_anchor *anchor)
{
	return atomic_read(&anchor->suspend_wakeups) == 0 &&
		list_empty(&anchor->urb_list);
}

146 147 148 149 150 151
/* Callers must hold anchor->lock */
static void __usb_unanchor_urb(struct urb *urb, struct usb_anchor *anchor)
{
	urb->anchor = NULL;
	list_del(&urb->anchor_list);
	usb_put_urb(urb);
152
	if (usb_anchor_check_wakeup(anchor))
153 154 155
		wake_up(&anchor->wait);
}

O
Oliver Neukum 已提交
156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174
/**
 * usb_unanchor_urb - unanchors an URB
 * @urb: pointer to the urb to anchor
 *
 * Call this to stop the system keeping track of this URB
 */
void usb_unanchor_urb(struct urb *urb)
{
	unsigned long flags;
	struct usb_anchor *anchor;

	if (!urb)
		return;

	anchor = urb->anchor;
	if (!anchor)
		return;

	spin_lock_irqsave(&anchor->lock, flags);
175 176 177 178 179 180 181
	/*
	 * At this point, we could be competing with another thread which
	 * has the same intention. To protect the urb from being unanchored
	 * twice, only the winner of the race gets the job.
	 */
	if (likely(anchor == urb->anchor))
		__usb_unanchor_urb(urb, anchor);
O
Oliver Neukum 已提交
182 183 184 185
	spin_unlock_irqrestore(&anchor->lock, flags);
}
EXPORT_SYMBOL_GPL(usb_unanchor_urb);

L
Linus Torvalds 已提交
186 187 188 189 190 191 192 193 194 195 196 197
/*-------------------------------------------------------------------*/

/**
 * usb_submit_urb - issue an asynchronous transfer request for an endpoint
 * @urb: pointer to the urb describing the request
 * @mem_flags: the type of memory to allocate, see kmalloc() for a list
 *	of valid options for this.
 *
 * This submits a transfer request, and transfers control of the URB
 * describing that request to the USB subsystem.  Request completion will
 * be indicated later, asynchronously, by calling the completion handler.
 * The three types of completion are success, error, and unlink
198
 * (a software-induced fault, also called "request cancellation").
L
Linus Torvalds 已提交
199 200 201 202 203 204 205 206 207
 *
 * URBs may be submitted in interrupt context.
 *
 * The caller must have correctly initialized the URB before submitting
 * it.  Functions such as usb_fill_bulk_urb() and usb_fill_control_urb() are
 * available to ensure that most fields are correctly initialized, for
 * the particular kind of transfer, although they will not initialize
 * any transfer flags.
 *
208 209 210 211 212 213
 * If the submission is successful, the complete() callback from the URB
 * will be called exactly once, when the USB core and Host Controller Driver
 * (HCD) are finished with the URB.  When the completion function is called,
 * control of the URB is returned to the device driver which issued the
 * request.  The completion handler may then immediately free or reuse that
 * URB.
L
Linus Torvalds 已提交
214 215 216 217 218 219 220 221
 *
 * With few exceptions, USB device drivers should never access URB fields
 * provided by usbcore or the HCD until its complete() is called.
 * The exceptions relate to periodic transfer scheduling.  For both
 * interrupt and isochronous urbs, as part of successful URB submission
 * urb->interval is modified to reflect the actual transfer period used
 * (normally some power of two units).  And for isochronous urbs,
 * urb->start_frame is modified to reflect when the URB's transfers were
222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240
 * scheduled to start.
 *
 * Not all isochronous transfer scheduling policies will work, but most
 * host controller drivers should easily handle ISO queues going from now
 * until 10-200 msec into the future.  Drivers should try to keep at
 * least one or two msec of data in the queue; many controllers require
 * that new transfers start at least 1 msec in the future when they are
 * added.  If the driver is unable to keep up and the queue empties out,
 * the behavior for new submissions is governed by the URB_ISO_ASAP flag.
 * If the flag is set, or if the queue is idle, then the URB is always
 * assigned to the first available (and not yet expired) slot in the
 * endpoint's schedule.  If the flag is not set and the queue is active
 * then the URB is always assigned to the next slot in the schedule
 * following the end of the endpoint's previous URB, even if that slot is
 * in the past.  When a packet is assigned in this way to a slot that has
 * already expired, the packet is not transmitted and the corresponding
 * usb_iso_packet_descriptor's status field will return -EXDEV.  If this
 * would happen to all the packets in the URB, submission fails with a
 * -EXDEV error code.
L
Linus Torvalds 已提交
241 242 243 244 245 246 247
 *
 * For control endpoints, the synchronous usb_control_msg() call is
 * often used (in non-interrupt context) instead of this call.
 * That is often used through convenience wrappers, for the requests
 * that are standardized in the USB 2.0 specification.  For bulk
 * endpoints, a synchronous usb_bulk_msg() call is available.
 *
248 249 250
 * Return:
 * 0 on successful submissions. A negative error number otherwise.
 *
L
Linus Torvalds 已提交
251 252 253 254 255 256 257 258 259 260 261 262 263 264
 * Request Queuing:
 *
 * URBs may be submitted to endpoints before previous ones complete, to
 * minimize the impact of interrupt latencies and system overhead on data
 * throughput.  With that queuing policy, an endpoint's queue would never
 * be empty.  This is required for continuous isochronous data streams,
 * and may also be required for some kinds of interrupt transfers. Such
 * queuing also maximizes bandwidth utilization by letting USB controllers
 * start work on later requests before driver software has finished the
 * completion processing for earlier (successful) requests.
 *
 * As of Linux 2.6, all USB endpoint transfer queues support depths greater
 * than one.  This was previously a HCD-specific behavior, except for ISO
 * transfers.  Non-isochronous endpoint queues are inactive during cleanup
265
 * after faults (transfer errors or cancellation).
L
Linus Torvalds 已提交
266 267 268 269 270 271 272 273 274
 *
 * Reserved Bandwidth Transfers:
 *
 * Periodic transfers (interrupt or isochronous) are performed repeatedly,
 * using the interval specified in the urb.  Submitting the first urb to
 * the endpoint reserves the bandwidth necessary to make those transfers.
 * If the USB subsystem can't allocate sufficient bandwidth to perform
 * the periodic request, submitting such a periodic request should fail.
 *
275 276 277 278 279 280
 * For devices under xHCI, the bandwidth is reserved at configuration time, or
 * when the alt setting is selected.  If there is not enough bus bandwidth, the
 * configuration/alt setting request will fail.  Therefore, submissions to
 * periodic endpoints on devices under xHCI should never fail due to bandwidth
 * constraints.
 *
L
Linus Torvalds 已提交
281 282
 * Device drivers must explicitly request that repetition, by ensuring that
 * some URB is always on the endpoint's queue (except possibly for short
283
 * periods during completion callbacks).  When there is no longer an urb
L
Linus Torvalds 已提交
284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304
 * queued, the endpoint's bandwidth reservation is canceled.  This means
 * drivers can use their completion handlers to ensure they keep bandwidth
 * they need, by reinitializing and resubmitting the just-completed urb
 * until the driver longer needs that periodic bandwidth.
 *
 * Memory Flags:
 *
 * The general rules for how to decide which mem_flags to use
 * are the same as for kmalloc.  There are four
 * different possible values; GFP_KERNEL, GFP_NOFS, GFP_NOIO and
 * GFP_ATOMIC.
 *
 * GFP_NOFS is not ever used, as it has not been implemented yet.
 *
 * GFP_ATOMIC is used when
 *   (a) you are inside a completion handler, an interrupt, bottom half,
 *       tasklet or timer, or
 *   (b) you are holding a spinlock or rwlock (does not apply to
 *       semaphores), or
 *   (c) current->state != TASK_RUNNING, this is the case only after
 *       you've changed it.
305
 *
L
Linus Torvalds 已提交
306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324
 * GFP_NOIO is used in the block io path and error handling of storage
 * devices.
 *
 * All other situations use GFP_KERNEL.
 *
 * Some more specific rules for mem_flags can be inferred, such as
 *  (1) start_xmit, timeout, and receive methods of network drivers must
 *      use GFP_ATOMIC (they are called with a spinlock held);
 *  (2) queuecommand methods of scsi drivers must use GFP_ATOMIC (also
 *      called with a spinlock held);
 *  (3) If you use a kernel thread with a network driver you must use
 *      GFP_NOIO, unless (b) or (c) apply;
 *  (4) after you have done a down() you can use GFP_KERNEL, unless (b) or (c)
 *      apply or your are in a storage driver's block io path;
 *  (5) USB probe and disconnect can use GFP_KERNEL unless (b) or (c) apply; and
 *  (6) changing firmware on a running storage or net device uses
 *      GFP_NOIO, unless b) or c) apply
 *
 */
A
Al Viro 已提交
325
int usb_submit_urb(struct urb *urb, gfp_t mem_flags)
L
Linus Torvalds 已提交
326
{
327 328 329
	static int			pipetypes[4] = {
		PIPE_CONTROL, PIPE_ISOCHRONOUS, PIPE_BULK, PIPE_INTERRUPT
	};
A
Alan Stern 已提交
330 331 332 333
	int				xfertype, max;
	struct usb_device		*dev;
	struct usb_host_endpoint	*ep;
	int				is_out;
334
	unsigned int			allowed;
L
Linus Torvalds 已提交
335

A
Alan Stern 已提交
336
	if (!urb || !urb->complete)
L
Linus Torvalds 已提交
337
		return -EINVAL;
A
Alan Stern 已提交
338 339 340 341 342
	if (urb->hcpriv) {
		WARN_ONCE(1, "URB %p submitted while active\n", urb);
		return -EBUSY;
	}

343
	dev = urb->dev;
344
	if ((!dev) || (dev->state < USB_STATE_UNAUTHENTICATED))
L
Linus Torvalds 已提交
345 346
		return -ENODEV;

A
Alan Stern 已提交
347 348 349 350
	/* For now, get the endpoint from the pipe.  Eventually drivers
	 * will be required to set urb->ep directly and we will eliminate
	 * urb->pipe.
	 */
351
	ep = usb_pipe_endpoint(dev, urb->pipe);
A
Alan Stern 已提交
352 353 354 355
	if (!ep)
		return -ENOENT;

	urb->ep = ep;
L
Linus Torvalds 已提交
356 357 358 359 360 361
	urb->status = -EINPROGRESS;
	urb->actual_length = 0;

	/* Lots of sanity checks, so HCDs can rely on clean data
	 * and don't need to duplicate tests
	 */
A
Alan Stern 已提交
362
	xfertype = usb_endpoint_type(&ep->desc);
363 364 365 366 367 368 369 370 371 372 373 374
	if (xfertype == USB_ENDPOINT_XFER_CONTROL) {
		struct usb_ctrlrequest *setup =
				(struct usb_ctrlrequest *) urb->setup_packet;

		if (!setup)
			return -ENOEXEC;
		is_out = !(setup->bRequestType & USB_DIR_IN) ||
				!setup->wLength;
	} else {
		is_out = usb_endpoint_dir_out(&ep->desc);
	}

375 376 377 378 379 380
	/* Clear the internal flags and cache the direction for later use */
	urb->transfer_flags &= ~(URB_DIR_MASK | URB_DMA_MAP_SINGLE |
			URB_DMA_MAP_PAGE | URB_DMA_MAP_SG | URB_MAP_LOCAL |
			URB_SETUP_MAP_SINGLE | URB_SETUP_MAP_LOCAL |
			URB_DMA_SG_COMBINED);
	urb->transfer_flags |= (is_out ? URB_DIR_OUT : URB_DIR_IN);
L
Linus Torvalds 已提交
381

A
Alan Stern 已提交
382 383
	if (xfertype != USB_ENDPOINT_XFER_CONTROL &&
			dev->state < USB_STATE_CONFIGURED)
L
Linus Torvalds 已提交
384 385
		return -ENODEV;

386
	max = usb_endpoint_maxp(&ep->desc);
L
Linus Torvalds 已提交
387 388 389
	if (max <= 0) {
		dev_dbg(&dev->dev,
			"bogus endpoint ep%d%s in %s (bad maxpacket %d)\n",
A
Alan Stern 已提交
390
			usb_endpoint_num(&ep->desc), is_out ? "out" : "in",
391
			__func__, max);
L
Linus Torvalds 已提交
392 393 394 395 396 397 398
		return -EMSGSIZE;
	}

	/* periodic transfers limit size per frame/uframe,
	 * but drivers only control those sizes for ISO.
	 * while we're checking, initialize return status.
	 */
A
Alan Stern 已提交
399
	if (xfertype == USB_ENDPOINT_XFER_ISOC) {
L
Linus Torvalds 已提交
400 401
		int	n, len;

402 403 404 405 406 407 408 409 410 411
		/* SuperSpeed isoc endpoints have up to 16 bursts of up to
		 * 3 packets each
		 */
		if (dev->speed == USB_SPEED_SUPER) {
			int     burst = 1 + ep->ss_ep_comp.bMaxBurst;
			int     mult = USB_SS_MULT(ep->ss_ep_comp.bmAttributes);
			max *= burst;
			max *= mult;
		}

L
Linus Torvalds 已提交
412 413 414 415 416 417 418
		/* "high bandwidth" mode, 1-3 packets/uframe? */
		if (dev->speed == USB_SPEED_HIGH) {
			int	mult = 1 + ((max >> 11) & 0x03);
			max &= 0x07ff;
			max *= mult;
		}

419
		if (urb->number_of_packets <= 0)
L
Linus Torvalds 已提交
420 421
			return -EINVAL;
		for (n = 0; n < urb->number_of_packets; n++) {
422
			len = urb->iso_frame_desc[n].length;
423
			if (len < 0 || len > max)
L
Linus Torvalds 已提交
424
				return -EMSGSIZE;
425 426
			urb->iso_frame_desc[n].status = -EXDEV;
			urb->iso_frame_desc[n].actual_length = 0;
L
Linus Torvalds 已提交
427
		}
428 429
	} else if (urb->num_sgs && !urb->dev->bus->no_sg_constraint &&
			dev->speed != USB_SPEED_WIRELESS) {
430 431 432 433 434 435
		struct scatterlist *sg;
		int i;

		for_each_sg(urb->sg, sg, urb->num_sgs - 1, i)
			if (sg->length % max)
				return -EINVAL;
L
Linus Torvalds 已提交
436 437 438
	}

	/* the I/O buffer must be mapped/unmapped, except when length=0 */
439
	if (urb->transfer_buffer_length > INT_MAX)
L
Linus Torvalds 已提交
440 441
		return -EMSGSIZE;

442 443
	/*
	 * stuff that drivers shouldn't do, but which shouldn't
L
Linus Torvalds 已提交
444 445
	 * cause problems in HCDs if they get it wrong.
	 */
446 447

	/* Check that the pipe's type matches the endpoint's type */
448 449
	if (usb_pipetype(urb->pipe) != pipetypes[xfertype])
		dev_WARN(&dev->dev, "BOGUS urb xfer, pipe %x != type %x\n",
450
			usb_pipetype(urb->pipe), pipetypes[xfertype]);
L
Linus Torvalds 已提交
451

452
	/* Check against a simple/standard policy */
453 454
	allowed = (URB_NO_TRANSFER_DMA_MAP | URB_NO_INTERRUPT | URB_DIR_MASK |
			URB_FREE_BUFFER);
A
Alan Stern 已提交
455 456
	switch (xfertype) {
	case USB_ENDPOINT_XFER_BULK:
457
	case USB_ENDPOINT_XFER_INT:
L
Linus Torvalds 已提交
458 459 460
		if (is_out)
			allowed |= URB_ZERO_PACKET;
		/* FALLTHROUGH */
A
Alan Stern 已提交
461
	case USB_ENDPOINT_XFER_CONTROL:
L
Linus Torvalds 已提交
462 463 464 465 466 467
		allowed |= URB_NO_FSBR;	/* only affects UHCI */
		/* FALLTHROUGH */
	default:			/* all non-iso endpoints */
		if (!is_out)
			allowed |= URB_SHORT_NOT_OK;
		break;
A
Alan Stern 已提交
468
	case USB_ENDPOINT_XFER_ISOC:
L
Linus Torvalds 已提交
469 470 471
		allowed |= URB_ISO_ASAP;
		break;
	}
472
	allowed &= urb->transfer_flags;
L
Linus Torvalds 已提交
473

474 475 476 477
	/* warn if submitter gave bogus flags */
	if (allowed != urb->transfer_flags)
		dev_WARN(&dev->dev, "BOGUS urb flags, %x --> %x\n",
			urb->transfer_flags, allowed);
478

L
Linus Torvalds 已提交
479 480 481 482 483 484 485 486
	/*
	 * Force periodic transfer intervals to be legal values that are
	 * a power of two (so HCDs don't need to).
	 *
	 * FIXME want bus->{intr,iso}_sched_horizon values here.  Each HC
	 * supports different values... this uses EHCI/UHCI defaults (and
	 * EHCI can use smaller non-default values).
	 */
A
Alan Stern 已提交
487 488 489
	switch (xfertype) {
	case USB_ENDPOINT_XFER_ISOC:
	case USB_ENDPOINT_XFER_INT:
L
Linus Torvalds 已提交
490
		/* too small? */
491
		switch (dev->speed) {
492
		case USB_SPEED_WIRELESS:
493 494
			if ((urb->interval < 6)
				&& (xfertype == USB_ENDPOINT_XFER_INT))
495 496 497 498 499 500
				return -EINVAL;
		default:
			if (urb->interval <= 0)
				return -EINVAL;
			break;
		}
L
Linus Torvalds 已提交
501 502
		/* too big? */
		switch (dev->speed) {
503 504 505 506 507
		case USB_SPEED_SUPER:	/* units are 125us */
			/* Handle up to 2^(16-1) microframes */
			if (urb->interval > (1 << 15))
				return -EINVAL;
			max = 1 << 15;
508
			break;
509
		case USB_SPEED_WIRELESS:
510 511 512
			if (urb->interval > 16)
				return -EINVAL;
			break;
L
Linus Torvalds 已提交
513
		case USB_SPEED_HIGH:	/* units are microframes */
514
			/* NOTE usb handles 2^15 */
L
Linus Torvalds 已提交
515 516
			if (urb->interval > (1024 * 8))
				urb->interval = 1024 * 8;
A
Alan Stern 已提交
517
			max = 1024 * 8;
L
Linus Torvalds 已提交
518 519 520
			break;
		case USB_SPEED_FULL:	/* units are frames/msec */
		case USB_SPEED_LOW:
A
Alan Stern 已提交
521
			if (xfertype == USB_ENDPOINT_XFER_INT) {
L
Linus Torvalds 已提交
522 523
				if (urb->interval > 255)
					return -EINVAL;
524
				/* NOTE ohci only handles up to 32 */
A
Alan Stern 已提交
525
				max = 128;
L
Linus Torvalds 已提交
526 527 528
			} else {
				if (urb->interval > 1024)
					urb->interval = 1024;
529
				/* NOTE usb and ohci handle up to 2^15 */
A
Alan Stern 已提交
530
				max = 1024;
L
Linus Torvalds 已提交
531 532 533 534 535
			}
			break;
		default:
			return -EINVAL;
		}
536
		if (dev->speed != USB_SPEED_WIRELESS) {
537 538 539
			/* Round down to a power of 2, no more than max */
			urb->interval = min(max, 1 << ilog2(urb->interval));
		}
L
Linus Torvalds 已提交
540 541
	}

542
	return usb_hcd_submit_urb(urb, mem_flags);
L
Linus Torvalds 已提交
543
}
544
EXPORT_SYMBOL_GPL(usb_submit_urb);
L
Linus Torvalds 已提交
545 546 547 548 549 550 551 552

/*-------------------------------------------------------------------*/

/**
 * usb_unlink_urb - abort/cancel a transfer request for an endpoint
 * @urb: pointer to urb describing a previously submitted request,
 *	may be NULL
 *
553 554 555 556 557 558 559
 * This routine cancels an in-progress request.  URBs complete only once
 * per submission, and may be canceled only once per submission.
 * Successful cancellation means termination of @urb will be expedited
 * and the completion handler will be called with a status code
 * indicating that the request has been canceled (rather than any other
 * code).
 *
560 561 562 563 564 565
 * Drivers should not call this routine or related routines, such as
 * usb_kill_urb() or usb_unlink_anchored_urbs(), after their disconnect
 * method has returned.  The disconnect function should synchronize with
 * a driver's I/O routines to insure that all URB-related activity has
 * completed before it returns.
 *
566 567 568 569 570 571 572
 * This request is asynchronous, however the HCD might call the ->complete()
 * callback during unlink. Therefore when drivers call usb_unlink_urb(), they
 * must not hold any locks that may be taken by the completion function.
 * Success is indicated by returning -EINPROGRESS, at which time the URB will
 * probably not yet have been given back to the device driver. When it is
 * eventually called, the completion function will see @urb->status ==
 * -ECONNRESET.
573 574 575 576
 * Failure is indicated by usb_unlink_urb() returning any other value.
 * Unlinking will fail when @urb is not currently "linked" (i.e., it was
 * never submitted, or it was unlinked before, or the hardware is already
 * finished with it), even if the completion handler has not yet run.
L
Linus Torvalds 已提交
577
 *
578 579 580 581
 * The URB must not be deallocated while this routine is running.  In
 * particular, when a driver calls this routine, it must insure that the
 * completion handler cannot deallocate the URB.
 *
582 583 584
 * Return: -EINPROGRESS on success. See description for other values on
 * failure.
 *
L
Linus Torvalds 已提交
585 586
 * Unlinking and Endpoint Queues:
 *
587 588 589
 * [The behaviors and guarantees described below do not apply to virtual
 * root hubs but only to endpoint queues for physical USB devices.]
 *
L
Linus Torvalds 已提交
590 591
 * Host Controller Drivers (HCDs) place all the URBs for a particular
 * endpoint in a queue.  Normally the queue advances as the controller
592
 * hardware processes each request.  But when an URB terminates with an
593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619
 * error its queue generally stops (see below), at least until that URB's
 * completion routine returns.  It is guaranteed that a stopped queue
 * will not restart until all its unlinked URBs have been fully retired,
 * with their completion routines run, even if that's not until some time
 * after the original completion handler returns.  The same behavior and
 * guarantee apply when an URB terminates because it was unlinked.
 *
 * Bulk and interrupt endpoint queues are guaranteed to stop whenever an
 * URB terminates with any sort of error, including -ECONNRESET, -ENOENT,
 * and -EREMOTEIO.  Control endpoint queues behave the same way except
 * that they are not guaranteed to stop for -EREMOTEIO errors.  Queues
 * for isochronous endpoints are treated differently, because they must
 * advance at fixed rates.  Such queues do not stop when an URB
 * encounters an error or is unlinked.  An unlinked isochronous URB may
 * leave a gap in the stream of packets; it is undefined whether such
 * gaps can be filled in.
 *
 * Note that early termination of an URB because a short packet was
 * received will generate a -EREMOTEIO error if and only if the
 * URB_SHORT_NOT_OK flag is set.  By setting this flag, USB device
 * drivers can build deep queues for large or complex bulk transfers
 * and clean them up reliably after any sort of aborted transfer by
 * unlinking all pending URBs at the first fault.
 *
 * When a control URB terminates with an error other than -EREMOTEIO, it
 * is quite likely that the status stage of the transfer will not take
 * place.
L
Linus Torvalds 已提交
620 621 622 623 624
 */
int usb_unlink_urb(struct urb *urb)
{
	if (!urb)
		return -EINVAL;
A
Alan Stern 已提交
625
	if (!urb->dev)
L
Linus Torvalds 已提交
626
		return -ENODEV;
A
Alan Stern 已提交
627 628
	if (!urb->ep)
		return -EIDRM;
A
Alan Stern 已提交
629
	return usb_hcd_unlink_urb(urb, -ECONNRESET);
L
Linus Torvalds 已提交
630
}
631
EXPORT_SYMBOL_GPL(usb_unlink_urb);
L
Linus Torvalds 已提交
632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648

/**
 * usb_kill_urb - cancel a transfer request and wait for it to finish
 * @urb: pointer to URB describing a previously submitted request,
 *	may be NULL
 *
 * This routine cancels an in-progress request.  It is guaranteed that
 * upon return all completion handlers will have finished and the URB
 * will be totally idle and available for reuse.  These features make
 * this an ideal way to stop I/O in a disconnect() callback or close()
 * function.  If the request has not already finished or been unlinked
 * the completion handler will see urb->status == -ENOENT.
 *
 * While the routine is running, attempts to resubmit the URB will fail
 * with error -EPERM.  Thus even if the URB's completion handler always
 * tries to resubmit, it will not succeed and the URB will become idle.
 *
649 650 651 652
 * The URB must not be deallocated while this routine is running.  In
 * particular, when a driver calls this routine, it must insure that the
 * completion handler cannot deallocate the URB.
 *
L
Linus Torvalds 已提交
653 654 655
 * This routine may not be used in an interrupt context (such as a bottom
 * half or a completion handler), or when holding a spinlock, or in other
 * situations where the caller can't schedule().
656 657 658
 *
 * This routine should not be called by a driver after its disconnect
 * method has returned.
L
Linus Torvalds 已提交
659 660 661
 */
void usb_kill_urb(struct urb *urb)
{
662
	might_sleep();
A
Alan Stern 已提交
663
	if (!(urb && urb->dev && urb->ep))
L
Linus Torvalds 已提交
664
		return;
665
	atomic_inc(&urb->reject);
L
Linus Torvalds 已提交
666

A
Alan Stern 已提交
667
	usb_hcd_unlink_urb(urb, -ENOENT);
L
Linus Torvalds 已提交
668 669
	wait_event(usb_kill_urb_queue, atomic_read(&urb->use_count) == 0);

670
	atomic_dec(&urb->reject);
L
Linus Torvalds 已提交
671
}
672
EXPORT_SYMBOL_GPL(usb_kill_urb);
L
Linus Torvalds 已提交
673

O
Oliver Neukum 已提交
674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689
/**
 * usb_poison_urb - reliably kill a transfer and prevent further use of an URB
 * @urb: pointer to URB describing a previously submitted request,
 *	may be NULL
 *
 * This routine cancels an in-progress request.  It is guaranteed that
 * upon return all completion handlers will have finished and the URB
 * will be totally idle and cannot be reused.  These features make
 * this an ideal way to stop I/O in a disconnect() callback.
 * If the request has not already finished or been unlinked
 * the completion handler will see urb->status == -ENOENT.
 *
 * After and while the routine runs, attempts to resubmit the URB will fail
 * with error -EPERM.  Thus even if the URB's completion handler always
 * tries to resubmit, it will not succeed and the URB will become idle.
 *
690 691 692 693
 * The URB must not be deallocated while this routine is running.  In
 * particular, when a driver calls this routine, it must insure that the
 * completion handler cannot deallocate the URB.
 *
O
Oliver Neukum 已提交
694 695 696
 * This routine may not be used in an interrupt context (such as a bottom
 * half or a completion handler), or when holding a spinlock, or in other
 * situations where the caller can't schedule().
697 698 699
 *
 * This routine should not be called by a driver after its disconnect
 * method has returned.
O
Oliver Neukum 已提交
700 701 702 703
 */
void usb_poison_urb(struct urb *urb)
{
	might_sleep();
J
Johan Hovold 已提交
704
	if (!urb)
O
Oliver Neukum 已提交
705
		return;
706
	atomic_inc(&urb->reject);
O
Oliver Neukum 已提交
707

J
Johan Hovold 已提交
708 709 710
	if (!urb->dev || !urb->ep)
		return;

O
Oliver Neukum 已提交
711 712 713 714 715 716 717 718 719 720
	usb_hcd_unlink_urb(urb, -ENOENT);
	wait_event(usb_kill_urb_queue, atomic_read(&urb->use_count) == 0);
}
EXPORT_SYMBOL_GPL(usb_poison_urb);

void usb_unpoison_urb(struct urb *urb)
{
	if (!urb)
		return;

721
	atomic_dec(&urb->reject);
O
Oliver Neukum 已提交
722 723 724
}
EXPORT_SYMBOL_GPL(usb_unpoison_urb);

725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745
/**
 * usb_block_urb - reliably prevent further use of an URB
 * @urb: pointer to URB to be blocked, may be NULL
 *
 * After the routine has run, attempts to resubmit the URB will fail
 * with error -EPERM.  Thus even if the URB's completion handler always
 * tries to resubmit, it will not succeed and the URB will become idle.
 *
 * The URB must not be deallocated while this routine is running.  In
 * particular, when a driver calls this routine, it must insure that the
 * completion handler cannot deallocate the URB.
 */
void usb_block_urb(struct urb *urb)
{
	if (!urb)
		return;

	atomic_inc(&urb->reject);
}
EXPORT_SYMBOL_GPL(usb_block_urb);

O
Oliver Neukum 已提交
746 747 748 749 750 751
/**
 * usb_kill_anchored_urbs - cancel transfer requests en masse
 * @anchor: anchor the requests are bound to
 *
 * this allows all outstanding URBs to be killed starting
 * from the back of the queue
752 753 754
 *
 * This routine should not be called by a driver after its disconnect
 * method has returned.
O
Oliver Neukum 已提交
755 756 757 758 759 760 761
 */
void usb_kill_anchored_urbs(struct usb_anchor *anchor)
{
	struct urb *victim;

	spin_lock_irq(&anchor->lock);
	while (!list_empty(&anchor->urb_list)) {
762 763
		victim = list_entry(anchor->urb_list.prev, struct urb,
				    anchor_list);
O
Oliver Neukum 已提交
764 765 766 767 768 769 770 771 772 773 774 775
		/* we must make sure the URB isn't freed before we kill it*/
		usb_get_urb(victim);
		spin_unlock_irq(&anchor->lock);
		/* this will unanchor the URB */
		usb_kill_urb(victim);
		usb_put_urb(victim);
		spin_lock_irq(&anchor->lock);
	}
	spin_unlock_irq(&anchor->lock);
}
EXPORT_SYMBOL_GPL(usb_kill_anchored_urbs);

O
Oliver Neukum 已提交
776 777 778 779 780 781 782 783

/**
 * usb_poison_anchored_urbs - cease all traffic from an anchor
 * @anchor: anchor the requests are bound to
 *
 * this allows all outstanding URBs to be poisoned starting
 * from the back of the queue. Newly added URBs will also be
 * poisoned
784 785 786
 *
 * This routine should not be called by a driver after its disconnect
 * method has returned.
O
Oliver Neukum 已提交
787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807
 */
void usb_poison_anchored_urbs(struct usb_anchor *anchor)
{
	struct urb *victim;

	spin_lock_irq(&anchor->lock);
	anchor->poisoned = 1;
	while (!list_empty(&anchor->urb_list)) {
		victim = list_entry(anchor->urb_list.prev, struct urb,
				    anchor_list);
		/* we must make sure the URB isn't freed before we kill it*/
		usb_get_urb(victim);
		spin_unlock_irq(&anchor->lock);
		/* this will unanchor the URB */
		usb_poison_urb(victim);
		usb_put_urb(victim);
		spin_lock_irq(&anchor->lock);
	}
	spin_unlock_irq(&anchor->lock);
}
EXPORT_SYMBOL_GPL(usb_poison_anchored_urbs);
808

809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828
/**
 * usb_unpoison_anchored_urbs - let an anchor be used successfully again
 * @anchor: anchor the requests are bound to
 *
 * Reverses the effect of usb_poison_anchored_urbs
 * the anchor can be used normally after it returns
 */
void usb_unpoison_anchored_urbs(struct usb_anchor *anchor)
{
	unsigned long flags;
	struct urb *lazarus;

	spin_lock_irqsave(&anchor->lock, flags);
	list_for_each_entry(lazarus, &anchor->urb_list, anchor_list) {
		usb_unpoison_urb(lazarus);
	}
	anchor->poisoned = 0;
	spin_unlock_irqrestore(&anchor->lock, flags);
}
EXPORT_SYMBOL_GPL(usb_unpoison_anchored_urbs);
829 830 831 832 833 834
/**
 * usb_unlink_anchored_urbs - asynchronously cancel transfer requests en masse
 * @anchor: anchor the requests are bound to
 *
 * this allows all outstanding URBs to be unlinked starting
 * from the back of the queue. This function is asynchronous.
835
 * The unlinking is just triggered. It may happen after this
836
 * function has returned.
837 838 839
 *
 * This routine should not be called by a driver after its disconnect
 * method has returned.
840 841 842 843 844
 */
void usb_unlink_anchored_urbs(struct usb_anchor *anchor)
{
	struct urb *victim;

845
	while ((victim = usb_get_from_anchor(anchor)) != NULL) {
846
		usb_unlink_urb(victim);
847
		usb_put_urb(victim);
848 849 850 851
	}
}
EXPORT_SYMBOL_GPL(usb_unlink_anchored_urbs);

852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884
/**
 * usb_anchor_suspend_wakeups
 * @anchor: the anchor you want to suspend wakeups on
 *
 * Call this to stop the last urb being unanchored from waking up any
 * usb_wait_anchor_empty_timeout waiters. This is used in the hcd urb give-
 * back path to delay waking up until after the completion handler has run.
 */
void usb_anchor_suspend_wakeups(struct usb_anchor *anchor)
{
	if (anchor)
		atomic_inc(&anchor->suspend_wakeups);
}
EXPORT_SYMBOL_GPL(usb_anchor_suspend_wakeups);

/**
 * usb_anchor_resume_wakeups
 * @anchor: the anchor you want to resume wakeups on
 *
 * Allow usb_wait_anchor_empty_timeout waiters to be woken up again, and
 * wake up any current waiters if the anchor is empty.
 */
void usb_anchor_resume_wakeups(struct usb_anchor *anchor)
{
	if (!anchor)
		return;

	atomic_dec(&anchor->suspend_wakeups);
	if (usb_anchor_check_wakeup(anchor))
		wake_up(&anchor->wait);
}
EXPORT_SYMBOL_GPL(usb_anchor_resume_wakeups);

O
Oliver Neukum 已提交
885 886 887 888 889 890 891
/**
 * usb_wait_anchor_empty_timeout - wait for an anchor to be unused
 * @anchor: the anchor you want to become unused
 * @timeout: how long you are willing to wait in milliseconds
 *
 * Call this is you want to be sure all an anchor's
 * URBs have finished
892 893
 *
 * Return: Non-zero if the anchor became unused. Zero on timeout.
O
Oliver Neukum 已提交
894 895 896 897
 */
int usb_wait_anchor_empty_timeout(struct usb_anchor *anchor,
				  unsigned int timeout)
{
898 899
	return wait_event_timeout(anchor->wait,
				  usb_anchor_check_wakeup(anchor),
O
Oliver Neukum 已提交
900 901 902
				  msecs_to_jiffies(timeout));
}
EXPORT_SYMBOL_GPL(usb_wait_anchor_empty_timeout);
903 904 905 906 907

/**
 * usb_get_from_anchor - get an anchor's oldest urb
 * @anchor: the anchor whose urb you want
 *
908
 * This will take the oldest urb from an anchor,
909
 * unanchor and return it
910 911 912
 *
 * Return: The oldest urb from @anchor, or %NULL if @anchor has no
 * urbs associated with it.
913 914 915 916 917 918 919 920 921 922 923
 */
struct urb *usb_get_from_anchor(struct usb_anchor *anchor)
{
	struct urb *victim;
	unsigned long flags;

	spin_lock_irqsave(&anchor->lock, flags);
	if (!list_empty(&anchor->urb_list)) {
		victim = list_entry(anchor->urb_list.next, struct urb,
				    anchor_list);
		usb_get_urb(victim);
924
		__usb_unanchor_urb(victim, anchor);
925 926 927
	} else {
		victim = NULL;
	}
928
	spin_unlock_irqrestore(&anchor->lock, flags);
929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949

	return victim;
}

EXPORT_SYMBOL_GPL(usb_get_from_anchor);

/**
 * usb_scuttle_anchored_urbs - unanchor all an anchor's urbs
 * @anchor: the anchor whose urbs you want to unanchor
 *
 * use this to get rid of all an anchor's urbs
 */
void usb_scuttle_anchored_urbs(struct usb_anchor *anchor)
{
	struct urb *victim;
	unsigned long flags;

	spin_lock_irqsave(&anchor->lock, flags);
	while (!list_empty(&anchor->urb_list)) {
		victim = list_entry(anchor->urb_list.prev, struct urb,
				    anchor_list);
950
		__usb_unanchor_urb(victim, anchor);
951 952 953 954 955 956 957 958 959 960
	}
	spin_unlock_irqrestore(&anchor->lock, flags);
}

EXPORT_SYMBOL_GPL(usb_scuttle_anchored_urbs);

/**
 * usb_anchor_empty - is an anchor empty
 * @anchor: the anchor you want to query
 *
961
 * Return: 1 if the anchor has no urbs associated with it.
962 963 964 965 966 967 968 969
 */
int usb_anchor_empty(struct usb_anchor *anchor)
{
	return list_empty(&anchor->urb_list);
}

EXPORT_SYMBOL_GPL(usb_anchor_empty);