videobuf-core.c 23.5 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
/*
 * 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>
#include <linux/slab.h>
#include <linux/interrupt.h>

#include <media/videobuf-core.h>

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

30
static int debug;
31 32 33 34 35 36
module_param(debug, int, 0644);

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

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

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

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

46
void *videobuf_alloc(struct videobuf_queue *q)
47 48 49
{
	struct videobuf_buffer *vb;

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

	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;
}

int videobuf_waiton(struct videobuf_buffer *vb, int non_blocking, int intr)
{
	int retval = 0;
	DECLARE_WAITQUEUE(wait, current);

72
	MAGIC_CHECK(vb->magic, MAGIC_BUFFER);
73
	add_wait_queue(&vb->done, &wait);
74
	while (vb->state == VIDEOBUF_ACTIVE || vb->state == VIDEOBUF_QUEUED) {
75 76 77 78 79 80
		if (non_blocking) {
			retval = -EAGAIN;
			break;
		}
		set_current_state(intr  ? TASK_INTERRUPTIBLE
					: TASK_UNINTERRUPTIBLE);
81 82
		if (vb->state == VIDEOBUF_ACTIVE ||
		    vb->state == VIDEOBUF_QUEUED)
83 84 85
			schedule();
		set_current_state(TASK_RUNNING);
		if (intr && signal_pending(current)) {
86
			dprintk(1, "buffer waiton: -EINTR\n");
87 88 89 90 91 92 93 94
			retval = -EINTR;
			break;
		}
	}
	remove_wait_queue(&vb->done, &wait);
	return retval;
}

95
int videobuf_iolock(struct videobuf_queue *q, struct videobuf_buffer *vb,
96 97
		    struct v4l2_framebuffer *fbuf)
{
98 99
	MAGIC_CHECK(vb->magic, MAGIC_BUFFER);
	MAGIC_CHECK(q->int_ops->magic, MAGIC_QTYPE_OPS);
100

101 102
	/* FIXME: This is required to avoid OOPS on some cases,
	   since mmap_mapper() method should be called before _iolock.
103 104 105 106 107 108
	   On some cases, the mmap_mapper() is called only after scheduling.

	   However, this way is just too dirty! Better to wait for some event.
	 */
	schedule_timeout(HZ);

109
	return CALL(q, iolock, q, vb, fbuf);
110 111 112 113 114
}

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


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

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

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

144 145 146 147
	mutex_init(&q->lock);
	INIT_LIST_HEAD(&q->stream);
}

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

153
	MAGIC_CHECK(q->int_ops->magic, MAGIC_QTYPE_OPS);
154 155

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

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

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

	/* free all buffers + clear queue */
	for (i = 0; i < VIDEO_MAX_FRAME; i++) {
		if (NULL == q->bufs[i])
			continue;
210
		q->ops->buf_release(q, q->bufs[i]);
211 212 213 214 215 216
	}
	INIT_LIST_HEAD(&q->stream);
}

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

217
/* Locking: Caller holds q->lock */
218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235
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;
}

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

	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;
262
	if (vb->map)
263 264 265
		b->flags |= V4L2_BUF_FLAG_MAPPED;

	switch (vb->state) {
266 267 268
	case VIDEOBUF_PREPARED:
	case VIDEOBUF_QUEUED:
	case VIDEOBUF_ACTIVE:
269 270
		b->flags |= V4L2_BUF_FLAG_QUEUED;
		break;
271 272
	case VIDEOBUF_DONE:
	case VIDEOBUF_ERROR:
273 274
		b->flags |= V4L2_BUF_FLAG_DONE;
		break;
275 276
	case VIDEOBUF_NEEDS_INIT:
	case VIDEOBUF_IDLE:
277 278 279 280 281 282 283 284 285 286 287 288 289 290 291
		/* 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;
}

292 293 294 295 296 297 298 299 300
/* Locking: Caller holds q->lock */
static int __videobuf_mmap_free(struct videobuf_queue *q)
{
	int i;
	int rc;

	if (!q)
		return 0;

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

303 304
	rc  = CALL(q, mmap_free, q);
	if (rc < 0)
305 306 307 308 309
		return rc;

	for (i = 0; i < VIDEO_MAX_FRAME; i++) {
		if (NULL == q->bufs[i])
			continue;
310
		q->ops->buf_release(q, q->bufs[i]);
311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334
		kfree(q->bufs[i]);
		q->bufs[i] = NULL;
	}

	return rc;
}

int videobuf_mmap_free(struct videobuf_queue *q)
{
	int ret;
	mutex_lock(&q->lock);
	ret = __videobuf_mmap_free(q);
	mutex_unlock(&q->lock);
	return ret;
}

/* Locking: Caller holds q->lock */
static int __videobuf_mmap_setup(struct videobuf_queue *q,
			unsigned int bcount, unsigned int bsize,
			enum v4l2_memory memory)
{
	unsigned int i;
	int err;

335
	MAGIC_CHECK(q->int_ops->magic, MAGIC_QTYPE_OPS);
336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365

	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:
			q->bufs[i]->boff  = bsize * i;
			break;
		case V4L2_MEMORY_USERPTR:
		case V4L2_MEMORY_OVERLAY:
			/* nothing */
			break;
		}
	}

	if (!i)
		return -ENOMEM;

366
	dprintk(1, "mmap setup: %d buffers, %d bytes each\n",
367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382
		i, bsize);

	return i;
}

int videobuf_mmap_setup(struct videobuf_queue *q,
			unsigned int bcount, unsigned int bsize,
			enum v4l2_memory memory)
{
	int ret;
	mutex_lock(&q->lock);
	ret = __videobuf_mmap_setup(q, bcount, bsize, memory);
	mutex_unlock(&q->lock);
	return ret;
}

383 384 385
int videobuf_reqbufs(struct videobuf_queue *q,
		 struct v4l2_requestbuffers *req)
{
386
	unsigned int size, count;
387 388 389
	int retval;

	if (req->count < 1) {
390
		dprintk(1, "reqbufs: count invalid (%d)\n", req->count);
391 392
		return -EINVAL;
	}
393

394 395 396
	if (req->memory != V4L2_MEMORY_MMAP     &&
	    req->memory != V4L2_MEMORY_USERPTR  &&
	    req->memory != V4L2_MEMORY_OVERLAY) {
397
		dprintk(1, "reqbufs: memory type invalid\n");
398 399 400
		return -EINVAL;
	}

401
	mutex_lock(&q->lock);
402
	if (req->type != q->type) {
403
		dprintk(1, "reqbufs: queue type invalid\n");
404 405 406 407
		retval = -EINVAL;
		goto done;
	}

408
	if (q->streaming) {
409
		dprintk(1, "reqbufs: streaming already exists\n");
410 411
		retval = -EBUSY;
		goto done;
412 413
	}
	if (!list_empty(&q->stream)) {
414
		dprintk(1, "reqbufs: stream running\n");
415 416
		retval = -EBUSY;
		goto done;
417 418 419 420 421 422
	}

	count = req->count;
	if (count > VIDEO_MAX_FRAME)
		count = VIDEO_MAX_FRAME;
	size = 0;
423
	q->ops->buf_setup(q, &count, &size);
424
	size = PAGE_ALIGN(size);
425
	dprintk(1, "reqbufs: bufs=%d, size=0x%x [%d pages total]\n",
426 427
		count, size, (count*size)>>PAGE_SHIFT);

428
	retval = __videobuf_mmap_setup(q, count, size, req->memory);
429
	if (retval < 0) {
430
		dprintk(1, "reqbufs: mmap setup returned %d\n", retval);
431 432 433
		goto done;
	}

434
	req->count = retval;
435 436 437 438 439 440 441 442

 done:
	mutex_unlock(&q->lock);
	return retval;
}

int videobuf_querybuf(struct videobuf_queue *q, struct v4l2_buffer *b)
{
443 444 445
	int ret = -EINVAL;

	mutex_lock(&q->lock);
446
	if (unlikely(b->type != q->type)) {
447
		dprintk(1, "querybuf: Wrong type.\n");
448
		goto done;
449 450
	}
	if (unlikely(b->index < 0 || b->index >= VIDEO_MAX_FRAME)) {
451
		dprintk(1, "querybuf: index out of range.\n");
452
		goto done;
453 454
	}
	if (unlikely(NULL == q->bufs[b->index])) {
455
		dprintk(1, "querybuf: buffer is null.\n");
456
		goto done;
457
	}
458

459
	videobuf_status(q, b, q->bufs[b->index], q->type);
460 461 462 463 464

	ret = 0;
done:
	mutex_unlock(&q->lock);
	return ret;
465 466 467 468 469 470 471
}

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

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

477 478 479
	if (b->memory == V4L2_MEMORY_MMAP)
		down_read(&current->mm->mmap_sem);

480 481 482
	mutex_lock(&q->lock);
	retval = -EBUSY;
	if (q->reading) {
483
		dprintk(1, "qbuf: Reading running...\n");
484 485 486 487
		goto done;
	}
	retval = -EINVAL;
	if (b->type != q->type) {
488
		dprintk(1, "qbuf: Wrong type.\n");
489 490 491
		goto done;
	}
	if (b->index < 0 || b->index >= VIDEO_MAX_FRAME) {
492
		dprintk(1, "qbuf: index out of range.\n");
493 494 495 496
		goto done;
	}
	buf = q->bufs[b->index];
	if (NULL == buf) {
497
		dprintk(1, "qbuf: buffer is null.\n");
498 499
		goto done;
	}
500
	MAGIC_CHECK(buf->magic, MAGIC_BUFFER);
501
	if (buf->memory != b->memory) {
502
		dprintk(1, "qbuf: memory type is wrong.\n");
503 504
		goto done;
	}
505
	if (buf->state != VIDEOBUF_NEEDS_INIT && buf->state != VIDEOBUF_IDLE) {
506
		dprintk(1, "qbuf: buffer is already queued or active.\n");
507 508 509 510 511
		goto done;
	}

	if (b->flags & V4L2_BUF_FLAG_INPUT) {
		if (b->input >= q->inputs) {
512
			dprintk(1, "qbuf: wrong input.\n");
513 514 515 516 517 518 519 520 521 522
			goto done;
		}
		buf->input = b->input;
	} else {
		buf->input = UNSET;
	}

	switch (b->memory) {
	case V4L2_MEMORY_MMAP:
		if (0 == buf->baddr) {
523 524
			dprintk(1, "qbuf: mmap requested "
				   "but buffer addr is zero!\n");
525 526 527 528 529
			goto done;
		}
		break;
	case V4L2_MEMORY_USERPTR:
		if (b->length < buf->bsize) {
530
			dprintk(1, "qbuf: buffer length is not enough\n");
531 532
			goto done;
		}
533 534 535
		if (VIDEOBUF_NEEDS_INIT != buf->state &&
		    buf->baddr != b->m.userptr)
			q->ops->buf_release(q, buf);
536 537 538 539 540 541
		buf->baddr = b->m.userptr;
		break;
	case V4L2_MEMORY_OVERLAY:
		buf->boff = b->m.offset;
		break;
	default:
542
		dprintk(1, "qbuf: wrong memory type\n");
543 544 545
		goto done;
	}

546
	dprintk(1, "qbuf: requesting next field\n");
547
	field = videobuf_next_field(q);
548
	retval = q->ops->buf_prepare(q, buf, field);
549
	if (0 != retval) {
550
		dprintk(1, "qbuf: buffer_prepare returned %d\n", retval);
551 552 553
		goto done;
	}

554
	list_add_tail(&buf->stream, &q->stream);
555 556
	if (q->streaming) {
		if (q->irqlock)
557 558
			spin_lock_irqsave(q->irqlock, flags);
		q->ops->buf_queue(q, buf);
559
		if (q->irqlock)
560
			spin_unlock_irqrestore(q->irqlock, flags);
561
	}
562
	dprintk(1, "qbuf: succeded\n");
563 564 565 566
	retval = 0;

 done:
	mutex_unlock(&q->lock);
567 568 569 570

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

571 572 573 574 575 576 577 578 579
	return retval;
}

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

580
	MAGIC_CHECK(q->int_ops->magic, MAGIC_QTYPE_OPS);
581 582 583 584

	mutex_lock(&q->lock);
	retval = -EBUSY;
	if (q->reading) {
585
		dprintk(1, "dqbuf: Reading running...\n");
586 587 588 589
		goto done;
	}
	retval = -EINVAL;
	if (b->type != q->type) {
590
		dprintk(1, "dqbuf: Wrong type.\n");
591 592 593
		goto done;
	}
	if (list_empty(&q->stream)) {
594
		dprintk(1, "dqbuf: stream running\n");
595 596 597 598 599
		goto done;
	}
	buf = list_entry(q->stream.next, struct videobuf_buffer, stream);
	retval = videobuf_waiton(buf, nonblocking, 1);
	if (retval < 0) {
600
		dprintk(1, "dqbuf: waiton returned %d\n", retval);
601 602 603
		goto done;
	}
	switch (buf->state) {
604
	case VIDEOBUF_ERROR:
605
		dprintk(1, "dqbuf: state is error\n");
606
		retval = -EIO;
607
		CALL(q, sync, q, buf);
608
		buf->state = VIDEOBUF_IDLE;
609
		break;
610
	case VIDEOBUF_DONE:
611 612
		dprintk(1, "dqbuf: state is done\n");
		CALL(q, sync, q, buf);
613
		buf->state = VIDEOBUF_IDLE;
614 615
		break;
	default:
616
		dprintk(1, "dqbuf: state invalid\n");
617 618 619 620
		retval = -EINVAL;
		goto done;
	}
	list_del(&buf->stream);
621 622
	memset(b, 0, sizeof(*b));
	videobuf_status(q, b, buf, q->type);
623 624 625 626 627 628 629 630 631

 done:
	mutex_unlock(&q->lock);
	return retval;
}

int videobuf_streamon(struct videobuf_queue *q)
{
	struct videobuf_buffer *buf;
632
	unsigned long flags = 0;
633 634 635 636 637 638 639 640 641 642 643
	int retval;

	mutex_lock(&q->lock);
	retval = -EBUSY;
	if (q->reading)
		goto done;
	retval = 0;
	if (q->streaming)
		goto done;
	q->streaming = 1;
	if (q->irqlock)
644
		spin_lock_irqsave(q->irqlock, flags);
645
	list_for_each_entry(buf, &q->stream, stream)
646
		if (buf->state == VIDEOBUF_PREPARED)
647
			q->ops->buf_queue(q, buf);
648
	if (q->irqlock)
649
		spin_unlock_irqrestore(q->irqlock, flags);
650 651 652 653 654 655

 done:
	mutex_unlock(&q->lock);
	return retval;
}

656 657
/* Locking: Caller holds q->lock */
static int __videobuf_streamoff(struct videobuf_queue *q)
658 659
{
	if (!q->streaming)
660 661
		return -EINVAL;

662 663 664
	videobuf_queue_cancel(q);
	q->streaming = 0;

665 666 667 668 669 670 671 672 673
	return 0;
}

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

	mutex_lock(&q->lock);
	retval = __videobuf_streamoff(q);
674
	mutex_unlock(&q->lock);
675

676 677 678
	return retval;
}

679
/* Locking: Caller holds q->lock */
680 681 682 683 684
static ssize_t videobuf_read_zerocopy(struct videobuf_queue *q,
				      char __user *data,
				      size_t count, loff_t *ppos)
{
	enum v4l2_field field;
685
	unsigned long flags = 0;
686 687
	int retval;

688
	MAGIC_CHECK(q->int_ops->magic, MAGIC_QTYPE_OPS);
689 690 691 692 693 694 695 696 697 698 699

	/* 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);
700
	retval = q->ops->buf_prepare(q, q->read_buf, field);
701 702 703 704 705
	if (0 != retval)
		goto done;

	/* start capture & wait */
	if (q->irqlock)
706 707
		spin_lock_irqsave(q->irqlock, flags);
	q->ops->buf_queue(q, q->read_buf);
708
	if (q->irqlock)
709 710
		spin_unlock_irqrestore(q->irqlock, flags);
	retval = videobuf_waiton(q->read_buf, 0, 0);
711
	if (0 == retval) {
712
		CALL(q, sync, q, q->read_buf);
713
		if (VIDEOBUF_ERROR == q->read_buf->state)
714 715 716 717 718 719 720
			retval = -EIO;
		else
			retval = q->read_buf->size;
	}

 done:
	/* cleanup */
721
	q->ops->buf_release(q, q->read_buf);
722 723 724 725 726 727 728 729 730 731
	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;
732
	unsigned long flags = 0;
733 734 735
	unsigned size, nbufs;
	int retval;

736
	MAGIC_CHECK(q->int_ops->magic, MAGIC_QTYPE_OPS);
737 738 739 740

	mutex_lock(&q->lock);

	nbufs = 1; size = 0;
741
	q->ops->buf_setup(q, &nbufs, &size);
742 743 744 745

	if (NULL == q->read_buf  &&
	    count >= size        &&
	    !nonblocking) {
746
		retval = videobuf_read_zerocopy(q, data, count, ppos);
747 748 749 750 751 752 753 754 755 756 757
		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);

758
		dprintk(1, "video alloc=0x%p\n", q->read_buf);
759 760 761 762 763
		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);
764
		retval = q->ops->buf_prepare(q, q->read_buf, field);
765 766

		if (0 != retval) {
767
			kfree(q->read_buf);
768 769 770 771
			q->read_buf = NULL;
			goto done;
		}
		if (q->irqlock)
772
			spin_lock_irqsave(q->irqlock, flags);
773

774
		q->ops->buf_queue(q, q->read_buf);
775
		if (q->irqlock)
776
			spin_unlock_irqrestore(q->irqlock, flags);
777 778 779 780 781 782 783 784
		q->read_off = 0;
	}

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

785
	CALL(q, sync, q, q->read_buf);
786

787
	if (VIDEOBUF_ERROR == q->read_buf->state) {
788
		/* catch I/O errors */
789
		q->ops->buf_release(q, q->read_buf);
790 791 792 793 794 795 796
		kfree(q->read_buf);
		q->read_buf = NULL;
		retval = -EIO;
		goto done;
	}

	/* Copy to userspace */
797 798
	retval = CALL(q, video_copy_to_user, q, data, count, nonblocking);
	if (retval < 0)
799 800 801 802 803
		goto done;

	q->read_off += retval;
	if (q->read_off == q->read_buf->size) {
		/* all data copied, cleanup */
804
		q->ops->buf_release(q, q->read_buf);
805 806 807 808 809 810 811 812 813
		kfree(q->read_buf);
		q->read_buf = NULL;
	}

 done:
	mutex_unlock(&q->lock);
	return retval;
}

814
/* Locking: Caller holds q->lock */
815
int __videobuf_read_start(struct videobuf_queue *q)
816 817
{
	enum v4l2_field field;
818
	unsigned long flags = 0;
819
	unsigned int count = 0, size = 0;
820 821
	int err, i;

822
	q->ops->buf_setup(q, &count, &size);
823 824 825 826 827 828
	if (count < 2)
		count = 2;
	if (count > VIDEO_MAX_FRAME)
		count = VIDEO_MAX_FRAME;
	size = PAGE_ALIGN(size);

829
	err = __videobuf_mmap_setup(q, count, size, V4L2_MEMORY_USERPTR);
830
	if (err < 0)
831 832
		return err;

833 834
	count = err;

835 836
	for (i = 0; i < count; i++) {
		field = videobuf_next_field(q);
837
		err = q->ops->buf_prepare(q, q->bufs[i], field);
838 839 840 841 842
		if (err)
			return err;
		list_add_tail(&q->bufs[i]->stream, &q->stream);
	}
	if (q->irqlock)
843
		spin_lock_irqsave(q->irqlock, flags);
844
	for (i = 0; i < count; i++)
845
		q->ops->buf_queue(q, q->bufs[i]);
846
	if (q->irqlock)
847
		spin_unlock_irqrestore(q->irqlock, flags);
848 849 850 851
	q->reading = 1;
	return 0;
}

852
static void __videobuf_read_stop(struct videobuf_queue *q)
853 854 855
{
	int i;

856

857
	videobuf_queue_cancel(q);
858
	__videobuf_mmap_free(q);
859 860 861 862 863 864 865 866 867
	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;
	q->reading  = 0;
868

869 870
}

871 872 873 874 875 876 877 878 879 880 881
int videobuf_read_start(struct videobuf_queue *q)
{
	int rc;

	mutex_lock(&q->lock);
	rc = __videobuf_read_start(q);
	mutex_unlock(&q->lock);

	return rc;
}

882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899
void videobuf_read_stop(struct videobuf_queue *q)
{
	mutex_lock(&q->lock);
	__videobuf_read_stop(q);
	mutex_unlock(&q->lock);
}

void videobuf_stop(struct videobuf_queue *q)
{
	mutex_lock(&q->lock);

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

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

	mutex_unlock(&q->lock);
900 901
}

902

903 904 905 906 907
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;
908
	unsigned long flags = 0;
909

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

912
	dprintk(2, "%s\n", __FUNCTION__);
913 914 915 916 917
	mutex_lock(&q->lock);
	retval = -EBUSY;
	if (q->streaming)
		goto done;
	if (!q->reading) {
918
		retval = __videobuf_read_start(q);
919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939
		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;
		}

940
		if (q->read_buf->state == VIDEOBUF_DONE) {
941
			rc = CALL(q, copy_stream, q, data + retval, count,
942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961
					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);
			if (q->irqlock)
962 963
				spin_lock_irqsave(q->irqlock, flags);
			q->ops->buf_queue(q, q->read_buf);
964
			if (q->irqlock)
965
				spin_unlock_irqrestore(q->irqlock, flags);
966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990
			q->read_buf = NULL;
		}
		if (retval < 0)
			break;
	}

 done:
	mutex_unlock(&q->lock);
	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;

	mutex_lock(&q->lock);
	if (q->streaming) {
		if (!list_empty(&q->stream))
			buf = list_entry(q->stream.next,
					 struct videobuf_buffer, stream);
	} else {
		if (!q->reading)
991
			__videobuf_read_start(q);
992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007
		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);
1008 1009
		if (buf->state == VIDEOBUF_DONE ||
		    buf->state == VIDEOBUF_ERROR)
1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020
			rc = POLLIN|POLLRDNORM;
	}
	mutex_unlock(&q->lock);
	return rc;
}

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

1021
	MAGIC_CHECK(q->int_ops->magic, MAGIC_QTYPE_OPS);
1022 1023

	mutex_lock(&q->lock);
1024
	retval = CALL(q, mmap_mapper, q, vma);
1025 1026 1027 1028 1029 1030 1031 1032 1033 1034
	mutex_unlock(&q->lock);

	return retval;
}

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

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

1039
	memset(&req, 0, sizeof(req));
1040 1041 1042
	req.type   = q->type;
	req.count  = count;
	req.memory = V4L2_MEMORY_MMAP;
1043
	rc = videobuf_reqbufs(q, &req);
1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055
	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;
		mbuf->size       += q->bufs[i]->bsize;
	}

	return 0;
}
1056
EXPORT_SYMBOL_GPL(videobuf_cgmbuf);
1057 1058 1059 1060 1061 1062 1063 1064 1065
#endif

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

EXPORT_SYMBOL_GPL(videobuf_waiton);
EXPORT_SYMBOL_GPL(videobuf_iolock);

EXPORT_SYMBOL_GPL(videobuf_alloc);

1066
EXPORT_SYMBOL_GPL(videobuf_queue_core_init);
1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077
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);

1078
EXPORT_SYMBOL_GPL(videobuf_read_start);
1079
EXPORT_SYMBOL_GPL(videobuf_read_stop);
1080
EXPORT_SYMBOL_GPL(videobuf_stop);
1081 1082 1083 1084 1085 1086 1087
EXPORT_SYMBOL_GPL(videobuf_read_stream);
EXPORT_SYMBOL_GPL(videobuf_read_one);
EXPORT_SYMBOL_GPL(videobuf_poll_stream);

EXPORT_SYMBOL_GPL(videobuf_mmap_setup);
EXPORT_SYMBOL_GPL(videobuf_mmap_free);
EXPORT_SYMBOL_GPL(videobuf_mmap_mapper);