videobuf-core.c 24.5 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/*
 * generic helper functions for handling video4linux capture buffers
 *
 * (c) 2007 Mauro Carvalho Chehab, <mchehab@infradead.org>
 *
 * Highly based on video-buf written originally by:
 * (c) 2001,02 Gerd Knorr <kraxel@bytesex.org>
 * (c) 2006 Mauro Carvalho Chehab, <mchehab@infradead.org>
 * (c) 2006 Ted Walther and John Sokol
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2
 */

#include <linux/init.h>
#include <linux/module.h>
#include <linux/moduleparam.h>
19
#include <linux/mm.h>
20
#include <linux/sched.h>
21 22 23 24 25 26
#include <linux/slab.h>
#include <linux/interrupt.h>

#include <media/videobuf-core.h>

#define MAGIC_BUFFER 0x20070728
27 28 29 30
#define MAGIC_CHECK(is, should) do {					   \
	if (unlikely((is) != (should))) {				   \
	printk(KERN_ERR "magic mismatch: %x (expected %x)\n", is, should); \
	BUG(); } } while (0)
31

32
static int debug;
33 34 35 36 37 38
module_param(debug, int, 0644);

MODULE_DESCRIPTION("helper module to manage video4linux buffers");
MODULE_AUTHOR("Mauro Carvalho Chehab <mchehab@infradead.org>");
MODULE_LICENSE("GPL");

39 40 41
#define dprintk(level, fmt, arg...) do {			\
	if (debug >= level) 					\
	printk(KERN_DEBUG "vbuf: " fmt , ## arg); } while (0)
42 43 44 45

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

#define CALL(q, f, arg...)						\
46
	((q->int_ops->f) ? q->int_ops->f(arg) : 0)
47

48
void *videobuf_alloc(struct videobuf_queue *q)
49 50 51
{
	struct videobuf_buffer *vb;

52
	BUG_ON(q->msize < sizeof(*vb));
53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68

	if (!q->int_ops || !q->int_ops->alloc) {
		printk(KERN_ERR "No specific ops defined!\n");
		BUG();
	}

	vb = q->int_ops->alloc(q->msize);

	if (NULL != vb) {
		init_waitqueue_head(&vb->done);
		vb->magic     = MAGIC_BUFFER;
	}

	return vb;
}

69 70
#define WAITON_CONDITION (vb->state != VIDEOBUF_ACTIVE &&\
				vb->state != VIDEOBUF_QUEUED)
71 72
int videobuf_waiton(struct videobuf_buffer *vb, int non_blocking, int intr)
{
73
	MAGIC_CHECK(vb->magic, MAGIC_BUFFER);
74 75 76 77 78 79

	if (non_blocking) {
		if (WAITON_CONDITION)
			return 0;
		else
			return -EAGAIN;
80
	}
81 82 83 84 85 86 87

	if (intr)
		return wait_event_interruptible(vb->done, WAITON_CONDITION);
	else
		wait_event(vb->done, WAITON_CONDITION);

	return 0;
88 89
}

90
int videobuf_iolock(struct videobuf_queue *q, struct videobuf_buffer *vb,
91 92
		    struct v4l2_framebuffer *fbuf)
{
93 94
	MAGIC_CHECK(vb->magic, MAGIC_BUFFER);
	MAGIC_CHECK(q->int_ops->magic, MAGIC_QTYPE_OPS);
95

96
	return CALL(q, iolock, q, vb, fbuf);
97 98
}

99 100 101
void *videobuf_queue_to_vmalloc (struct videobuf_queue *q,
			   struct videobuf_buffer *buf)
{
102 103 104 105
	if (q->int_ops->vmalloc)
		return q->int_ops->vmalloc(buf);
	else
		return NULL;
106 107 108
}
EXPORT_SYMBOL_GPL(videobuf_queue_to_vmalloc);

109 110 111
/* --------------------------------------------------------------------- */


112
void videobuf_queue_core_init(struct videobuf_queue *q,
113
			 const struct videobuf_queue_ops *ops,
114
			 struct device *dev,
115 116 117 118
			 spinlock_t *irqlock,
			 enum v4l2_buf_type type,
			 enum v4l2_field field,
			 unsigned int msize,
119 120
			 void *priv,
			 struct videobuf_qtype_ops *int_ops)
121
{
122
	BUG_ON(!q);
123
	memset(q, 0, sizeof(*q));
124 125 126 127 128 129
	q->irqlock   = irqlock;
	q->dev       = dev;
	q->type      = type;
	q->field     = field;
	q->msize     = msize;
	q->ops       = ops;
130
	q->priv_data = priv;
131
	q->int_ops   = int_ops;
132 133

	/* All buffer operations are mandatory */
134 135 136 137
	BUG_ON(!q->ops->buf_setup);
	BUG_ON(!q->ops->buf_prepare);
	BUG_ON(!q->ops->buf_queue);
	BUG_ON(!q->ops->buf_release);
138

139 140 141
	/* Lock is mandatory for queue_cancel to work */
	BUG_ON(!irqlock);

142
	/* Having implementations for abstract methods are mandatory */
143
	BUG_ON(!q->int_ops);
144

145
	mutex_init(&q->vb_lock);
146
	init_waitqueue_head(&q->wait);
147 148 149
	INIT_LIST_HEAD(&q->stream);
}

150
/* Locking: Only usage in bttv unsafe find way to remove */
151 152 153 154
int videobuf_queue_is_busy(struct videobuf_queue *q)
{
	int i;

155
	MAGIC_CHECK(q->int_ops->magic, MAGIC_QTYPE_OPS);
156 157

	if (q->streaming) {
158
		dprintk(1, "busy: streaming active\n");
159 160 161
		return 1;
	}
	if (q->reading) {
162
		dprintk(1, "busy: pending read #1\n");
163 164 165
		return 1;
	}
	if (q->read_buf) {
166
		dprintk(1, "busy: pending read #2\n");
167 168 169 170 171
		return 1;
	}
	for (i = 0; i < VIDEO_MAX_FRAME; i++) {
		if (NULL == q->bufs[i])
			continue;
172
		if (q->bufs[i]->map) {
173
			dprintk(1, "busy: buffer #%d mapped\n", i);
174 175
			return 1;
		}
176
		if (q->bufs[i]->state == VIDEOBUF_QUEUED) {
177
			dprintk(1, "busy: buffer #%d queued\n", i);
178 179
			return 1;
		}
180
		if (q->bufs[i]->state == VIDEOBUF_ACTIVE) {
181
			dprintk(1, "busy: buffer #%d avtive\n", i);
182 183 184 185 186 187
			return 1;
		}
	}
	return 0;
}

188
/* Locking: Caller holds q->vb_lock */
189 190
void videobuf_queue_cancel(struct videobuf_queue *q)
{
191
	unsigned long flags = 0;
192 193
	int i;

194 195 196 197
	q->streaming = 0;
	q->reading  = 0;
	wake_up_interruptible_sync(&q->wait);

198
	/* remove queued buffers from list */
199
	spin_lock_irqsave(q->irqlock, flags);
200 201 202
	for (i = 0; i < VIDEO_MAX_FRAME; i++) {
		if (NULL == q->bufs[i])
			continue;
203
		if (q->bufs[i]->state == VIDEOBUF_QUEUED) {
204
			list_del(&q->bufs[i]->queue);
205
			q->bufs[i]->state = VIDEOBUF_ERROR;
206
			wake_up_all(&q->bufs[i]->done);
207 208
		}
	}
209
	spin_unlock_irqrestore(q->irqlock, flags);
210 211 212 213 214

	/* free all buffers + clear queue */
	for (i = 0; i < VIDEO_MAX_FRAME; i++) {
		if (NULL == q->bufs[i])
			continue;
215
		q->ops->buf_release(q, q->bufs[i]);
216 217 218 219 220 221
	}
	INIT_LIST_HEAD(&q->stream);
}

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

222
/* Locking: Caller holds q->vb_lock */
223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240
enum v4l2_field videobuf_next_field(struct videobuf_queue *q)
{
	enum v4l2_field field = q->field;

	BUG_ON(V4L2_FIELD_ANY == field);

	if (V4L2_FIELD_ALTERNATE == field) {
		if (V4L2_FIELD_TOP == q->last) {
			field   = V4L2_FIELD_BOTTOM;
			q->last = V4L2_FIELD_BOTTOM;
		} else {
			field   = V4L2_FIELD_TOP;
			q->last = V4L2_FIELD_TOP;
		}
	}
	return field;
}

241
/* Locking: Caller holds q->vb_lock */
242 243 244
static void videobuf_status(struct videobuf_queue *q, struct v4l2_buffer *b,
			    struct videobuf_buffer *vb, enum v4l2_buf_type type)
{
245 246
	MAGIC_CHECK(vb->magic, MAGIC_BUFFER);
	MAGIC_CHECK(q->int_ops->magic, MAGIC_QTYPE_OPS);
247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266

	b->index    = vb->i;
	b->type     = type;

	b->memory   = vb->memory;
	switch (b->memory) {
	case V4L2_MEMORY_MMAP:
		b->m.offset  = vb->boff;
		b->length    = vb->bsize;
		break;
	case V4L2_MEMORY_USERPTR:
		b->m.userptr = vb->baddr;
		b->length    = vb->bsize;
		break;
	case V4L2_MEMORY_OVERLAY:
		b->m.offset  = vb->boff;
		break;
	}

	b->flags    = 0;
267
	if (vb->map)
268 269 270
		b->flags |= V4L2_BUF_FLAG_MAPPED;

	switch (vb->state) {
271 272 273
	case VIDEOBUF_PREPARED:
	case VIDEOBUF_QUEUED:
	case VIDEOBUF_ACTIVE:
274 275
		b->flags |= V4L2_BUF_FLAG_QUEUED;
		break;
276 277
	case VIDEOBUF_DONE:
	case VIDEOBUF_ERROR:
278 279
		b->flags |= V4L2_BUF_FLAG_DONE;
		break;
280 281
	case VIDEOBUF_NEEDS_INIT:
	case VIDEOBUF_IDLE:
282 283 284 285 286 287 288 289 290 291 292 293 294 295 296
		/* nothing */
		break;
	}

	if (vb->input != UNSET) {
		b->flags |= V4L2_BUF_FLAG_INPUT;
		b->input  = vb->input;
	}

	b->field     = vb->field;
	b->timestamp = vb->ts;
	b->bytesused = vb->size;
	b->sequence  = vb->field_count >> 1;
}

297
/* Locking: Caller holds q->vb_lock */
298 299 300 301 302 303 304 305
static int __videobuf_mmap_free(struct videobuf_queue *q)
{
	int i;
	int rc;

	if (!q)
		return 0;

306
	MAGIC_CHECK(q->int_ops->magic, MAGIC_QTYPE_OPS);
307

308

309
	rc  = CALL(q, mmap_free, q);
310 311 312

	q->is_mmapped = 0;

313
	if (rc < 0)
314 315 316 317 318
		return rc;

	for (i = 0; i < VIDEO_MAX_FRAME; i++) {
		if (NULL == q->bufs[i])
			continue;
319
		q->ops->buf_release(q, q->bufs[i]);
320 321 322 323 324 325 326 327 328 329
		kfree(q->bufs[i]);
		q->bufs[i] = NULL;
	}

	return rc;
}

int videobuf_mmap_free(struct videobuf_queue *q)
{
	int ret;
330
	mutex_lock(&q->vb_lock);
331
	ret = __videobuf_mmap_free(q);
332
	mutex_unlock(&q->vb_lock);
333 334 335
	return ret;
}

336
/* Locking: Caller holds q->vb_lock */
337
int __videobuf_mmap_setup(struct videobuf_queue *q,
338 339 340 341 342 343
			unsigned int bcount, unsigned int bsize,
			enum v4l2_memory memory)
{
	unsigned int i;
	int err;

344
	MAGIC_CHECK(q->int_ops->magic, MAGIC_QTYPE_OPS);
345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362

	err = __videobuf_mmap_free(q);
	if (0 != err)
		return err;

	/* Allocate and initialize buffers */
	for (i = 0; i < bcount; i++) {
		q->bufs[i] = videobuf_alloc(q);

		if (q->bufs[i] == NULL)
			break;

		q->bufs[i]->i      = i;
		q->bufs[i]->input  = UNSET;
		q->bufs[i]->memory = memory;
		q->bufs[i]->bsize  = bsize;
		switch (memory) {
		case V4L2_MEMORY_MMAP:
363
			q->bufs[i]->boff = PAGE_ALIGN(bsize) * i;
364 365 366 367 368 369 370 371 372 373 374
			break;
		case V4L2_MEMORY_USERPTR:
		case V4L2_MEMORY_OVERLAY:
			/* nothing */
			break;
		}
	}

	if (!i)
		return -ENOMEM;

375
	dprintk(1, "mmap setup: %d buffers, %d bytes each\n",
376 377 378 379 380 381 382 383 384 385
		i, bsize);

	return i;
}

int videobuf_mmap_setup(struct videobuf_queue *q,
			unsigned int bcount, unsigned int bsize,
			enum v4l2_memory memory)
{
	int ret;
386
	mutex_lock(&q->vb_lock);
387
	ret = __videobuf_mmap_setup(q, bcount, bsize, memory);
388
	mutex_unlock(&q->vb_lock);
389 390 391
	return ret;
}

392 393 394
int videobuf_reqbufs(struct videobuf_queue *q,
		 struct v4l2_requestbuffers *req)
{
395
	unsigned int size, count;
396 397 398
	int retval;

	if (req->count < 1) {
399
		dprintk(1, "reqbufs: count invalid (%d)\n", req->count);
400 401
		return -EINVAL;
	}
402

403 404 405
	if (req->memory != V4L2_MEMORY_MMAP     &&
	    req->memory != V4L2_MEMORY_USERPTR  &&
	    req->memory != V4L2_MEMORY_OVERLAY) {
406
		dprintk(1, "reqbufs: memory type invalid\n");
407 408 409
		return -EINVAL;
	}

410
	mutex_lock(&q->vb_lock);
411
	if (req->type != q->type) {
412
		dprintk(1, "reqbufs: queue type invalid\n");
413 414 415 416
		retval = -EINVAL;
		goto done;
	}

417
	if (q->streaming) {
418
		dprintk(1, "reqbufs: streaming already exists\n");
419 420
		retval = -EBUSY;
		goto done;
421 422
	}
	if (!list_empty(&q->stream)) {
423
		dprintk(1, "reqbufs: stream running\n");
424 425
		retval = -EBUSY;
		goto done;
426 427 428 429 430 431
	}

	count = req->count;
	if (count > VIDEO_MAX_FRAME)
		count = VIDEO_MAX_FRAME;
	size = 0;
432
	q->ops->buf_setup(q, &count, &size);
433 434 435
	dprintk(1, "reqbufs: bufs=%d, size=0x%x [%u pages total]\n",
		count, size,
		(unsigned int)((count*PAGE_ALIGN(size))>>PAGE_SHIFT) );
436

437
	retval = __videobuf_mmap_setup(q, count, size, req->memory);
438
	if (retval < 0) {
439
		dprintk(1, "reqbufs: mmap setup returned %d\n", retval);
440 441 442
		goto done;
	}

443
	req->count = retval;
444
	retval = 0;
445 446

 done:
447
	mutex_unlock(&q->vb_lock);
448 449 450 451 452
	return retval;
}

int videobuf_querybuf(struct videobuf_queue *q, struct v4l2_buffer *b)
{
453 454
	int ret = -EINVAL;

455
	mutex_lock(&q->vb_lock);
456
	if (unlikely(b->type != q->type)) {
457
		dprintk(1, "querybuf: Wrong type.\n");
458
		goto done;
459
	}
460
	if (unlikely(b->index >= VIDEO_MAX_FRAME)) {
461
		dprintk(1, "querybuf: index out of range.\n");
462
		goto done;
463 464
	}
	if (unlikely(NULL == q->bufs[b->index])) {
465
		dprintk(1, "querybuf: buffer is null.\n");
466
		goto done;
467
	}
468

469
	videobuf_status(q, b, q->bufs[b->index], q->type);
470 471 472

	ret = 0;
done:
473
	mutex_unlock(&q->vb_lock);
474
	return ret;
475 476 477 478 479 480 481
}

int videobuf_qbuf(struct videobuf_queue *q,
	      struct v4l2_buffer *b)
{
	struct videobuf_buffer *buf;
	enum v4l2_field field;
482
	unsigned long flags = 0;
483 484
	int retval;

485
	MAGIC_CHECK(q->int_ops->magic, MAGIC_QTYPE_OPS);
486

487 488 489
	if (b->memory == V4L2_MEMORY_MMAP)
		down_read(&current->mm->mmap_sem);

490
	mutex_lock(&q->vb_lock);
491 492
	retval = -EBUSY;
	if (q->reading) {
493
		dprintk(1, "qbuf: Reading running...\n");
494 495 496 497
		goto done;
	}
	retval = -EINVAL;
	if (b->type != q->type) {
498
		dprintk(1, "qbuf: Wrong type.\n");
499 500
		goto done;
	}
501
	if (b->index >= VIDEO_MAX_FRAME) {
502
		dprintk(1, "qbuf: index out of range.\n");
503 504 505 506
		goto done;
	}
	buf = q->bufs[b->index];
	if (NULL == buf) {
507
		dprintk(1, "qbuf: buffer is null.\n");
508 509
		goto done;
	}
510
	MAGIC_CHECK(buf->magic, MAGIC_BUFFER);
511
	if (buf->memory != b->memory) {
512
		dprintk(1, "qbuf: memory type is wrong.\n");
513 514
		goto done;
	}
515
	if (buf->state != VIDEOBUF_NEEDS_INIT && buf->state != VIDEOBUF_IDLE) {
516
		dprintk(1, "qbuf: buffer is already queued or active.\n");
517 518 519 520 521
		goto done;
	}

	if (b->flags & V4L2_BUF_FLAG_INPUT) {
		if (b->input >= q->inputs) {
522
			dprintk(1, "qbuf: wrong input.\n");
523 524 525 526 527 528 529 530 531 532
			goto done;
		}
		buf->input = b->input;
	} else {
		buf->input = UNSET;
	}

	switch (b->memory) {
	case V4L2_MEMORY_MMAP:
		if (0 == buf->baddr) {
533 534
			dprintk(1, "qbuf: mmap requested "
				   "but buffer addr is zero!\n");
535 536 537 538 539
			goto done;
		}
		break;
	case V4L2_MEMORY_USERPTR:
		if (b->length < buf->bsize) {
540
			dprintk(1, "qbuf: buffer length is not enough\n");
541 542
			goto done;
		}
543 544 545
		if (VIDEOBUF_NEEDS_INIT != buf->state &&
		    buf->baddr != b->m.userptr)
			q->ops->buf_release(q, buf);
546 547 548 549 550 551
		buf->baddr = b->m.userptr;
		break;
	case V4L2_MEMORY_OVERLAY:
		buf->boff = b->m.offset;
		break;
	default:
552
		dprintk(1, "qbuf: wrong memory type\n");
553 554 555
		goto done;
	}

556
	dprintk(1, "qbuf: requesting next field\n");
557
	field = videobuf_next_field(q);
558
	retval = q->ops->buf_prepare(q, buf, field);
559
	if (0 != retval) {
560
		dprintk(1, "qbuf: buffer_prepare returned %d\n", retval);
561 562 563
		goto done;
	}

564
	list_add_tail(&buf->stream, &q->stream);
565
	if (q->streaming) {
566
		spin_lock_irqsave(q->irqlock, flags);
567
		q->ops->buf_queue(q, buf);
568
		spin_unlock_irqrestore(q->irqlock, flags);
569
	}
570
	dprintk(1, "qbuf: succeeded\n");
571
	retval = 0;
572
	wake_up_interruptible_sync(&q->wait);
573 574

 done:
575
	mutex_unlock(&q->vb_lock);
576 577 578 579

	if (b->memory == V4L2_MEMORY_MMAP)
		up_read(&current->mm->mmap_sem);

580 581 582
	return retval;
}

583 584 585

/* Locking: Caller holds q->vb_lock */
static int stream_next_buffer_check_queue(struct videobuf_queue *q, int noblock)
586 587 588
{
	int retval;

589 590 591 592
checks:
	if (!q->streaming) {
		dprintk(1, "next_buffer: Not streaming\n");
		retval = -EINVAL;
593 594
		goto done;
	}
595

596
	if (list_empty(&q->stream)) {
597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618
		if (noblock) {
			retval = -EAGAIN;
			dprintk(2, "next_buffer: no buffers to dequeue\n");
			goto done;
		} else {
			dprintk(2, "next_buffer: waiting on buffer\n");

			/* Drop lock to avoid deadlock with qbuf */
			mutex_unlock(&q->vb_lock);

			/* Checking list_empty and streaming is safe without
			 * locks because we goto checks to validate while
			 * holding locks before proceeding */
			retval = wait_event_interruptible(q->wait,
				!list_empty(&q->stream) || !q->streaming);
			mutex_lock(&q->vb_lock);

			if (retval)
				goto done;

			goto checks;
		}
619
	}
620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638

	retval = 0;

done:
	return retval;
}


/* Locking: Caller holds q->vb_lock */
static int stream_next_buffer(struct videobuf_queue *q,
			struct videobuf_buffer **vb, int nonblocking)
{
	int retval;
	struct videobuf_buffer *buf = NULL;

	retval = stream_next_buffer_check_queue(q, nonblocking);
	if (retval)
		goto done;

639 640
	buf = list_entry(q->stream.next, struct videobuf_buffer, stream);
	retval = videobuf_waiton(buf, nonblocking, 1);
641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656
	if (retval < 0)
		goto done;

	*vb = buf;
done:
	return retval;
}

int videobuf_dqbuf(struct videobuf_queue *q,
	       struct v4l2_buffer *b, int nonblocking)
{
	struct videobuf_buffer *buf = NULL;
	int retval;

	MAGIC_CHECK(q->int_ops->magic, MAGIC_QTYPE_OPS);

657
	mutex_lock(&q->vb_lock);
658 659

	retval = stream_next_buffer(q, &buf, nonblocking);
660
	if (retval < 0) {
661
		dprintk(1, "dqbuf: next_buffer error: %i\n", retval);
662 663
		goto done;
	}
664

665
	switch (buf->state) {
666
	case VIDEOBUF_ERROR:
667
		dprintk(1, "dqbuf: state is error\n");
668
		retval = -EIO;
669
		CALL(q, sync, q, buf);
670
		buf->state = VIDEOBUF_IDLE;
671
		break;
672
	case VIDEOBUF_DONE:
673 674
		dprintk(1, "dqbuf: state is done\n");
		CALL(q, sync, q, buf);
675
		buf->state = VIDEOBUF_IDLE;
676 677
		break;
	default:
678
		dprintk(1, "dqbuf: state invalid\n");
679 680 681 682
		retval = -EINVAL;
		goto done;
	}
	list_del(&buf->stream);
683 684
	memset(b, 0, sizeof(*b));
	videobuf_status(q, b, buf, q->type);
685 686

 done:
687
	mutex_unlock(&q->vb_lock);
688 689 690 691 692 693
	return retval;
}

int videobuf_streamon(struct videobuf_queue *q)
{
	struct videobuf_buffer *buf;
694
	unsigned long flags = 0;
695 696
	int retval;

697
	mutex_lock(&q->vb_lock);
698 699 700 701 702 703 704
	retval = -EBUSY;
	if (q->reading)
		goto done;
	retval = 0;
	if (q->streaming)
		goto done;
	q->streaming = 1;
705
	spin_lock_irqsave(q->irqlock, flags);
706
	list_for_each_entry(buf, &q->stream, stream)
707
		if (buf->state == VIDEOBUF_PREPARED)
708
			q->ops->buf_queue(q, buf);
709
	spin_unlock_irqrestore(q->irqlock, flags);
710

711
	wake_up_interruptible_sync(&q->wait);
712
 done:
713
	mutex_unlock(&q->vb_lock);
714 715 716
	return retval;
}

717
/* Locking: Caller holds q->vb_lock */
718
static int __videobuf_streamoff(struct videobuf_queue *q)
719 720
{
	if (!q->streaming)
721 722
		return -EINVAL;

723 724
	videobuf_queue_cancel(q);

725 726 727 728 729 730 731
	return 0;
}

int videobuf_streamoff(struct videobuf_queue *q)
{
	int retval;

732
	mutex_lock(&q->vb_lock);
733
	retval = __videobuf_streamoff(q);
734
	mutex_unlock(&q->vb_lock);
735

736 737 738
	return retval;
}

739
/* Locking: Caller holds q->vb_lock */
740 741 742 743 744
static ssize_t videobuf_read_zerocopy(struct videobuf_queue *q,
				      char __user *data,
				      size_t count, loff_t *ppos)
{
	enum v4l2_field field;
745
	unsigned long flags = 0;
746 747
	int retval;

748
	MAGIC_CHECK(q->int_ops->magic, MAGIC_QTYPE_OPS);
749 750 751 752 753 754 755 756 757 758 759

	/* setup stuff */
	q->read_buf = videobuf_alloc(q);
	if (NULL == q->read_buf)
		return -ENOMEM;

	q->read_buf->memory = V4L2_MEMORY_USERPTR;
	q->read_buf->baddr  = (unsigned long)data;
	q->read_buf->bsize  = count;

	field = videobuf_next_field(q);
760
	retval = q->ops->buf_prepare(q, q->read_buf, field);
761 762 763 764
	if (0 != retval)
		goto done;

	/* start capture & wait */
765
	spin_lock_irqsave(q->irqlock, flags);
766
	q->ops->buf_queue(q, q->read_buf);
767
	spin_unlock_irqrestore(q->irqlock, flags);
768
	retval = videobuf_waiton(q->read_buf, 0, 0);
769
	if (0 == retval) {
770
		CALL(q, sync, q, q->read_buf);
771
		if (VIDEOBUF_ERROR == q->read_buf->state)
772 773 774 775 776 777 778
			retval = -EIO;
		else
			retval = q->read_buf->size;
	}

 done:
	/* cleanup */
779
	q->ops->buf_release(q, q->read_buf);
780 781 782 783 784 785 786 787 788 789
	kfree(q->read_buf);
	q->read_buf = NULL;
	return retval;
}

ssize_t videobuf_read_one(struct videobuf_queue *q,
			  char __user *data, size_t count, loff_t *ppos,
			  int nonblocking)
{
	enum v4l2_field field;
790
	unsigned long flags = 0;
791
	unsigned size = 0, nbufs = 1;
792 793
	int retval;

794
	MAGIC_CHECK(q->int_ops->magic, MAGIC_QTYPE_OPS);
795

796
	mutex_lock(&q->vb_lock);
797

798
	q->ops->buf_setup(q, &nbufs, &size);
799 800 801 802

	if (NULL == q->read_buf  &&
	    count >= size        &&
	    !nonblocking) {
803
		retval = videobuf_read_zerocopy(q, data, count, ppos);
804 805 806 807 808 809 810 811 812 813 814
		if (retval >= 0  ||  retval == -EIO)
			/* ok, all done */
			goto done;
		/* fallback to kernel bounce buffer on failures */
	}

	if (NULL == q->read_buf) {
		/* need to capture a new frame */
		retval = -ENOMEM;
		q->read_buf = videobuf_alloc(q);

815
		dprintk(1, "video alloc=0x%p\n", q->read_buf);
816 817 818 819 820
		if (NULL == q->read_buf)
			goto done;
		q->read_buf->memory = V4L2_MEMORY_USERPTR;
		q->read_buf->bsize = count; /* preferred size */
		field = videobuf_next_field(q);
821
		retval = q->ops->buf_prepare(q, q->read_buf, field);
822 823

		if (0 != retval) {
824
			kfree(q->read_buf);
825 826 827 828
			q->read_buf = NULL;
			goto done;
		}

829
		spin_lock_irqsave(q->irqlock, flags);
830
		q->ops->buf_queue(q, q->read_buf);
831 832
		spin_unlock_irqrestore(q->irqlock, flags);

833 834 835 836 837 838 839 840
		q->read_off = 0;
	}

	/* wait until capture is done */
	retval = videobuf_waiton(q->read_buf, nonblocking, 1);
	if (0 != retval)
		goto done;

841
	CALL(q, sync, q, q->read_buf);
842

843
	if (VIDEOBUF_ERROR == q->read_buf->state) {
844
		/* catch I/O errors */
845
		q->ops->buf_release(q, q->read_buf);
846 847 848 849 850 851 852
		kfree(q->read_buf);
		q->read_buf = NULL;
		retval = -EIO;
		goto done;
	}

	/* Copy to userspace */
853 854
	retval = CALL(q, video_copy_to_user, q, data, count, nonblocking);
	if (retval < 0)
855 856 857 858 859
		goto done;

	q->read_off += retval;
	if (q->read_off == q->read_buf->size) {
		/* all data copied, cleanup */
860
		q->ops->buf_release(q, q->read_buf);
861 862 863 864 865
		kfree(q->read_buf);
		q->read_buf = NULL;
	}

 done:
866
	mutex_unlock(&q->vb_lock);
867 868 869
	return retval;
}

870
/* Locking: Caller holds q->vb_lock */
871
static int __videobuf_read_start(struct videobuf_queue *q)
872 873
{
	enum v4l2_field field;
874
	unsigned long flags = 0;
875
	unsigned int count = 0, size = 0;
876 877
	int err, i;

878
	q->ops->buf_setup(q, &count, &size);
879 880 881 882 883 884
	if (count < 2)
		count = 2;
	if (count > VIDEO_MAX_FRAME)
		count = VIDEO_MAX_FRAME;
	size = PAGE_ALIGN(size);

885
	err = __videobuf_mmap_setup(q, count, size, V4L2_MEMORY_USERPTR);
886
	if (err < 0)
887 888
		return err;

889 890
	count = err;

891 892
	for (i = 0; i < count; i++) {
		field = videobuf_next_field(q);
893
		err = q->ops->buf_prepare(q, q->bufs[i], field);
894 895 896 897
		if (err)
			return err;
		list_add_tail(&q->bufs[i]->stream, &q->stream);
	}
898
	spin_lock_irqsave(q->irqlock, flags);
899
	for (i = 0; i < count; i++)
900
		q->ops->buf_queue(q, q->bufs[i]);
901
	spin_unlock_irqrestore(q->irqlock, flags);
902 903 904 905
	q->reading = 1;
	return 0;
}

906
static void __videobuf_read_stop(struct videobuf_queue *q)
907 908 909 910
{
	int i;

	videobuf_queue_cancel(q);
911
	__videobuf_mmap_free(q);
912 913 914 915 916 917 918 919
	INIT_LIST_HEAD(&q->stream);
	for (i = 0; i < VIDEO_MAX_FRAME; i++) {
		if (NULL == q->bufs[i])
			continue;
		kfree(q->bufs[i]);
		q->bufs[i] = NULL;
	}
	q->read_buf = NULL;
920

921 922
}

923 924 925 926
int videobuf_read_start(struct videobuf_queue *q)
{
	int rc;

927
	mutex_lock(&q->vb_lock);
928
	rc = __videobuf_read_start(q);
929
	mutex_unlock(&q->vb_lock);
930 931 932 933

	return rc;
}

934 935
void videobuf_read_stop(struct videobuf_queue *q)
{
936
	mutex_lock(&q->vb_lock);
937
	__videobuf_read_stop(q);
938
	mutex_unlock(&q->vb_lock);
939 940 941 942
}

void videobuf_stop(struct videobuf_queue *q)
{
943
	mutex_lock(&q->vb_lock);
944 945 946 947 948 949 950

	if (q->streaming)
		__videobuf_streamoff(q);

	if (q->reading)
		__videobuf_read_stop(q);

951
	mutex_unlock(&q->vb_lock);
952 953
}

954

955 956 957 958 959
ssize_t videobuf_read_stream(struct videobuf_queue *q,
			     char __user *data, size_t count, loff_t *ppos,
			     int vbihack, int nonblocking)
{
	int rc, retval;
960
	unsigned long flags = 0;
961

962
	MAGIC_CHECK(q->int_ops->magic, MAGIC_QTYPE_OPS);
963

964
	dprintk(2, "%s\n", __func__);
965
	mutex_lock(&q->vb_lock);
966 967 968 969
	retval = -EBUSY;
	if (q->streaming)
		goto done;
	if (!q->reading) {
970
		retval = __videobuf_read_start(q);
971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991
		if (retval < 0)
			goto done;
	}

	retval = 0;
	while (count > 0) {
		/* get / wait for data */
		if (NULL == q->read_buf) {
			q->read_buf = list_entry(q->stream.next,
						 struct videobuf_buffer,
						 stream);
			list_del(&q->read_buf->stream);
			q->read_off = 0;
		}
		rc = videobuf_waiton(q->read_buf, nonblocking, 1);
		if (rc < 0) {
			if (0 == retval)
				retval = rc;
			break;
		}

992
		if (q->read_buf->state == VIDEOBUF_DONE) {
993
			rc = CALL(q, copy_stream, q, data + retval, count,
994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012
					retval, vbihack, nonblocking);
			if (rc < 0) {
				retval = rc;
				break;
			}
			retval      += rc;
			count       -= rc;
			q->read_off += rc;
		} else {
			/* some error */
			q->read_off = q->read_buf->size;
			if (0 == retval)
				retval = -EIO;
		}

		/* requeue buffer when done with copying */
		if (q->read_off == q->read_buf->size) {
			list_add_tail(&q->read_buf->stream,
				      &q->stream);
1013
			spin_lock_irqsave(q->irqlock, flags);
1014
			q->ops->buf_queue(q, q->read_buf);
1015
			spin_unlock_irqrestore(q->irqlock, flags);
1016 1017 1018 1019 1020 1021 1022
			q->read_buf = NULL;
		}
		if (retval < 0)
			break;
	}

 done:
1023
	mutex_unlock(&q->vb_lock);
1024 1025 1026 1027 1028 1029 1030 1031 1032 1033
	return retval;
}

unsigned int videobuf_poll_stream(struct file *file,
				  struct videobuf_queue *q,
				  poll_table *wait)
{
	struct videobuf_buffer *buf = NULL;
	unsigned int rc = 0;

1034
	mutex_lock(&q->vb_lock);
1035 1036 1037 1038 1039 1040
	if (q->streaming) {
		if (!list_empty(&q->stream))
			buf = list_entry(q->stream.next,
					 struct videobuf_buffer, stream);
	} else {
		if (!q->reading)
1041
			__videobuf_read_start(q);
1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057
		if (!q->reading) {
			rc = POLLERR;
		} else if (NULL == q->read_buf) {
			q->read_buf = list_entry(q->stream.next,
						 struct videobuf_buffer,
						 stream);
			list_del(&q->read_buf->stream);
			q->read_off = 0;
		}
		buf = q->read_buf;
	}
	if (!buf)
		rc = POLLERR;

	if (0 == rc) {
		poll_wait(file, &buf->done, wait);
1058 1059
		if (buf->state == VIDEOBUF_DONE ||
		    buf->state == VIDEOBUF_ERROR)
1060 1061
			rc = POLLIN|POLLRDNORM;
	}
1062
	mutex_unlock(&q->vb_lock);
1063 1064 1065 1066 1067 1068 1069 1070
	return rc;
}

int videobuf_mmap_mapper(struct videobuf_queue *q,
			 struct vm_area_struct *vma)
{
	int retval;

1071
	MAGIC_CHECK(q->int_ops->magic, MAGIC_QTYPE_OPS);
1072

1073
	mutex_lock(&q->vb_lock);
1074
	retval = CALL(q, mmap_mapper, q, vma);
1075
	q->is_mmapped = 1;
1076
	mutex_unlock(&q->vb_lock);
1077 1078 1079 1080 1081 1082 1083 1084 1085

	return retval;
}

#ifdef CONFIG_VIDEO_V4L1_COMPAT
int videobuf_cgmbuf(struct videobuf_queue *q,
		    struct video_mbuf *mbuf, int count)
{
	struct v4l2_requestbuffers req;
1086
	int rc, i;
1087

1088
	MAGIC_CHECK(q->int_ops->magic, MAGIC_QTYPE_OPS);
1089

1090
	memset(&req, 0, sizeof(req));
1091 1092 1093
	req.type   = q->type;
	req.count  = count;
	req.memory = V4L2_MEMORY_MMAP;
1094
	rc = videobuf_reqbufs(q, &req);
1095 1096 1097 1098 1099 1100 1101
	if (rc < 0)
		return rc;

	mbuf->frames = req.count;
	mbuf->size   = 0;
	for (i = 0; i < mbuf->frames; i++) {
		mbuf->offsets[i]  = q->bufs[i]->boff;
1102
		mbuf->size       += PAGE_ALIGN(q->bufs[i]->bsize);
1103 1104 1105 1106
	}

	return 0;
}
1107
EXPORT_SYMBOL_GPL(videobuf_cgmbuf);
1108 1109 1110 1111 1112 1113 1114 1115 1116
#endif

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

EXPORT_SYMBOL_GPL(videobuf_waiton);
EXPORT_SYMBOL_GPL(videobuf_iolock);

EXPORT_SYMBOL_GPL(videobuf_alloc);

1117
EXPORT_SYMBOL_GPL(videobuf_queue_core_init);
1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128
EXPORT_SYMBOL_GPL(videobuf_queue_cancel);
EXPORT_SYMBOL_GPL(videobuf_queue_is_busy);

EXPORT_SYMBOL_GPL(videobuf_next_field);
EXPORT_SYMBOL_GPL(videobuf_reqbufs);
EXPORT_SYMBOL_GPL(videobuf_querybuf);
EXPORT_SYMBOL_GPL(videobuf_qbuf);
EXPORT_SYMBOL_GPL(videobuf_dqbuf);
EXPORT_SYMBOL_GPL(videobuf_streamon);
EXPORT_SYMBOL_GPL(videobuf_streamoff);

1129
EXPORT_SYMBOL_GPL(videobuf_read_start);
1130
EXPORT_SYMBOL_GPL(videobuf_read_stop);
1131
EXPORT_SYMBOL_GPL(videobuf_stop);
1132 1133 1134 1135
EXPORT_SYMBOL_GPL(videobuf_read_stream);
EXPORT_SYMBOL_GPL(videobuf_read_one);
EXPORT_SYMBOL_GPL(videobuf_poll_stream);

1136
EXPORT_SYMBOL_GPL(__videobuf_mmap_setup);
1137 1138 1139
EXPORT_SYMBOL_GPL(videobuf_mmap_setup);
EXPORT_SYMBOL_GPL(videobuf_mmap_free);
EXPORT_SYMBOL_GPL(videobuf_mmap_mapper);