“01c031945f2755c7afaaf456088543312f2b72ea”上不存在“git@gitcode.net:openeuler/kernel.git”
videobuf-core.c 24.4 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 31 32 33 34 35
#define MAGIC_CHECK(is, should)						\
	do {								\
		if (unlikely((is) != (should))) {			\
			printk(KERN_ERR					\
				"magic mismatch: %x (expected %x)\n",	\
					is, should);			\
			BUG();						\
		}							\
	} while (0)
36

37
static int debug;
38 39 40 41 42 43
module_param(debug, int, 0644);

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

44 45 46 47 48
#define dprintk(level, fmt, arg...)					\
	do {								\
		if (debug >= level)					\
			printk(KERN_DEBUG "vbuf: " fmt, ## arg);	\
	} while (0)
49 50 51 52

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

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

55
void *videobuf_alloc(struct videobuf_queue *q)
56 57 58
{
	struct videobuf_buffer *vb;

59
	BUG_ON(q->msize < sizeof(*vb));
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);
69
		vb->magic = MAGIC_BUFFER;
70 71 72 73
	}

	return vb;
}
74
EXPORT_SYMBOL_GPL(videobuf_alloc);
75

76 77
#define WAITON_CONDITION (vb->state != VIDEOBUF_ACTIVE &&\
				vb->state != VIDEOBUF_QUEUED)
78 79
int videobuf_waiton(struct videobuf_buffer *vb, int non_blocking, int intr)
{
80
	MAGIC_CHECK(vb->magic, MAGIC_BUFFER);
81 82 83 84 85 86

	if (non_blocking) {
		if (WAITON_CONDITION)
			return 0;
		else
			return -EAGAIN;
87
	}
88 89 90 91 92 93 94

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

	return 0;
95
}
96
EXPORT_SYMBOL_GPL(videobuf_waiton);
97

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

104
	return CALL(q, iolock, q, vb, fbuf);
105
}
106
EXPORT_SYMBOL_GPL(videobuf_iolock);
107

108 109
void *videobuf_queue_to_vmalloc(struct videobuf_queue *q,
				struct videobuf_buffer *buf)
110
{
111 112 113 114
	if (q->int_ops->vmalloc)
		return q->int_ops->vmalloc(buf);
	else
		return NULL;
115 116 117
}
EXPORT_SYMBOL_GPL(videobuf_queue_to_vmalloc);

118 119 120
/* --------------------------------------------------------------------- */


121
void videobuf_queue_core_init(struct videobuf_queue *q,
122
			 const struct videobuf_queue_ops *ops,
123
			 struct device *dev,
124 125 126 127
			 spinlock_t *irqlock,
			 enum v4l2_buf_type type,
			 enum v4l2_field field,
			 unsigned int msize,
128 129
			 void *priv,
			 struct videobuf_qtype_ops *int_ops)
130
{
131
	BUG_ON(!q);
132
	memset(q, 0, sizeof(*q));
133 134 135 136 137 138
	q->irqlock   = irqlock;
	q->dev       = dev;
	q->type      = type;
	q->field     = field;
	q->msize     = msize;
	q->ops       = ops;
139
	q->priv_data = priv;
140
	q->int_ops   = int_ops;
141 142

	/* All buffer operations are mandatory */
143 144 145 146
	BUG_ON(!q->ops->buf_setup);
	BUG_ON(!q->ops->buf_prepare);
	BUG_ON(!q->ops->buf_queue);
	BUG_ON(!q->ops->buf_release);
147

148 149 150
	/* Lock is mandatory for queue_cancel to work */
	BUG_ON(!irqlock);

151
	/* Having implementations for abstract methods are mandatory */
152
	BUG_ON(!q->int_ops);
153

154
	mutex_init(&q->vb_lock);
155
	init_waitqueue_head(&q->wait);
156 157
	INIT_LIST_HEAD(&q->stream);
}
158
EXPORT_SYMBOL_GPL(videobuf_queue_core_init);
159

160
/* Locking: Only usage in bttv unsafe find way to remove */
161 162 163 164
int videobuf_queue_is_busy(struct videobuf_queue *q)
{
	int i;

165
	MAGIC_CHECK(q->int_ops->magic, MAGIC_QTYPE_OPS);
166 167

	if (q->streaming) {
168
		dprintk(1, "busy: streaming active\n");
169 170 171
		return 1;
	}
	if (q->reading) {
172
		dprintk(1, "busy: pending read #1\n");
173 174 175
		return 1;
	}
	if (q->read_buf) {
176
		dprintk(1, "busy: pending read #2\n");
177 178 179 180 181
		return 1;
	}
	for (i = 0; i < VIDEO_MAX_FRAME; i++) {
		if (NULL == q->bufs[i])
			continue;
182
		if (q->bufs[i]->map) {
183
			dprintk(1, "busy: buffer #%d mapped\n", i);
184 185
			return 1;
		}
186
		if (q->bufs[i]->state == VIDEOBUF_QUEUED) {
187
			dprintk(1, "busy: buffer #%d queued\n", i);
188 189
			return 1;
		}
190
		if (q->bufs[i]->state == VIDEOBUF_ACTIVE) {
191
			dprintk(1, "busy: buffer #%d avtive\n", i);
192 193 194 195 196
			return 1;
		}
	}
	return 0;
}
197
EXPORT_SYMBOL_GPL(videobuf_queue_is_busy);
198

199
/* Locking: Caller holds q->vb_lock */
200 201
void videobuf_queue_cancel(struct videobuf_queue *q)
{
202
	unsigned long flags = 0;
203 204
	int i;

205 206 207 208
	q->streaming = 0;
	q->reading  = 0;
	wake_up_interruptible_sync(&q->wait);

209
	/* remove queued buffers from list */
210
	spin_lock_irqsave(q->irqlock, flags);
211 212 213
	for (i = 0; i < VIDEO_MAX_FRAME; i++) {
		if (NULL == q->bufs[i])
			continue;
214
		if (q->bufs[i]->state == VIDEOBUF_QUEUED) {
215
			list_del(&q->bufs[i]->queue);
216
			q->bufs[i]->state = VIDEOBUF_ERROR;
217
			wake_up_all(&q->bufs[i]->done);
218 219
		}
	}
220
	spin_unlock_irqrestore(q->irqlock, flags);
221 222 223 224 225

	/* free all buffers + clear queue */
	for (i = 0; i < VIDEO_MAX_FRAME; i++) {
		if (NULL == q->bufs[i])
			continue;
226
		q->ops->buf_release(q, q->bufs[i]);
227 228 229
	}
	INIT_LIST_HEAD(&q->stream);
}
230
EXPORT_SYMBOL_GPL(videobuf_queue_cancel);
231 232 233

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

234
/* Locking: Caller holds q->vb_lock */
235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251
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;
}
252
EXPORT_SYMBOL_GPL(videobuf_next_field);
253

254
/* Locking: Caller holds q->vb_lock */
255 256 257
static void videobuf_status(struct videobuf_queue *q, struct v4l2_buffer *b,
			    struct videobuf_buffer *vb, enum v4l2_buf_type type)
{
258 259
	MAGIC_CHECK(vb->magic, MAGIC_BUFFER);
	MAGIC_CHECK(q->int_ops->magic, MAGIC_QTYPE_OPS);
260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279

	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;
280
	if (vb->map)
281 282 283
		b->flags |= V4L2_BUF_FLAG_MAPPED;

	switch (vb->state) {
284 285 286
	case VIDEOBUF_PREPARED:
	case VIDEOBUF_QUEUED:
	case VIDEOBUF_ACTIVE:
287 288
		b->flags |= V4L2_BUF_FLAG_QUEUED;
		break;
289 290
	case VIDEOBUF_DONE:
	case VIDEOBUF_ERROR:
291 292
		b->flags |= V4L2_BUF_FLAG_DONE;
		break;
293 294
	case VIDEOBUF_NEEDS_INIT:
	case VIDEOBUF_IDLE:
295 296 297 298 299 300 301 302 303 304 305 306 307 308 309
		/* 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;
}

310
/* Locking: Caller holds q->vb_lock */
311 312 313 314 315 316 317 318
static int __videobuf_mmap_free(struct videobuf_queue *q)
{
	int i;
	int rc;

	if (!q)
		return 0;

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

321
	rc = CALL(q, mmap_free, q);
322 323 324

	q->is_mmapped = 0;

325
	if (rc < 0)
326 327 328 329 330
		return rc;

	for (i = 0; i < VIDEO_MAX_FRAME; i++) {
		if (NULL == q->bufs[i])
			continue;
331
		q->ops->buf_release(q, q->bufs[i]);
332 333 334 335 336 337 338 339 340 341
		kfree(q->bufs[i]);
		q->bufs[i] = NULL;
	}

	return rc;
}

int videobuf_mmap_free(struct videobuf_queue *q)
{
	int ret;
342
	mutex_lock(&q->vb_lock);
343
	ret = __videobuf_mmap_free(q);
344
	mutex_unlock(&q->vb_lock);
345 346
	return ret;
}
347
EXPORT_SYMBOL_GPL(videobuf_mmap_free);
348

349
/* Locking: Caller holds q->vb_lock */
350
int __videobuf_mmap_setup(struct videobuf_queue *q,
351 352 353 354 355 356
			unsigned int bcount, unsigned int bsize,
			enum v4l2_memory memory)
{
	unsigned int i;
	int err;

357
	MAGIC_CHECK(q->int_ops->magic, MAGIC_QTYPE_OPS);
358 359 360 361 362 363 364 365 366

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

367
		if (NULL == q->bufs[i])
368 369 370 371 372 373 374 375
			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:
376
			q->bufs[i]->boff = PAGE_ALIGN(bsize) * i;
377 378 379 380 381 382 383 384 385 386 387
			break;
		case V4L2_MEMORY_USERPTR:
		case V4L2_MEMORY_OVERLAY:
			/* nothing */
			break;
		}
	}

	if (!i)
		return -ENOMEM;

388
	dprintk(1, "mmap setup: %d buffers, %d bytes each\n", i, bsize);
389 390 391

	return i;
}
392
EXPORT_SYMBOL_GPL(__videobuf_mmap_setup);
393 394 395 396 397 398

int videobuf_mmap_setup(struct videobuf_queue *q,
			unsigned int bcount, unsigned int bsize,
			enum v4l2_memory memory)
{
	int ret;
399
	mutex_lock(&q->vb_lock);
400
	ret = __videobuf_mmap_setup(q, bcount, bsize, memory);
401
	mutex_unlock(&q->vb_lock);
402 403
	return ret;
}
404
EXPORT_SYMBOL_GPL(videobuf_mmap_setup);
405

406 407 408
int videobuf_reqbufs(struct videobuf_queue *q,
		 struct v4l2_requestbuffers *req)
{
409
	unsigned int size, count;
410 411 412
	int retval;

	if (req->count < 1) {
413
		dprintk(1, "reqbufs: count invalid (%d)\n", req->count);
414 415
		return -EINVAL;
	}
416

417 418 419
	if (req->memory != V4L2_MEMORY_MMAP     &&
	    req->memory != V4L2_MEMORY_USERPTR  &&
	    req->memory != V4L2_MEMORY_OVERLAY) {
420
		dprintk(1, "reqbufs: memory type invalid\n");
421 422 423
		return -EINVAL;
	}

424
	mutex_lock(&q->vb_lock);
425
	if (req->type != q->type) {
426
		dprintk(1, "reqbufs: queue type invalid\n");
427 428 429 430
		retval = -EINVAL;
		goto done;
	}

431
	if (q->streaming) {
432
		dprintk(1, "reqbufs: streaming already exists\n");
433 434
		retval = -EBUSY;
		goto done;
435 436
	}
	if (!list_empty(&q->stream)) {
437
		dprintk(1, "reqbufs: stream running\n");
438 439
		retval = -EBUSY;
		goto done;
440 441 442 443 444 445
	}

	count = req->count;
	if (count > VIDEO_MAX_FRAME)
		count = VIDEO_MAX_FRAME;
	size = 0;
446
	q->ops->buf_setup(q, &count, &size);
447 448
	dprintk(1, "reqbufs: bufs=%d, size=0x%x [%u pages total]\n",
		count, size,
449
		(unsigned int)((count * PAGE_ALIGN(size)) >> PAGE_SHIFT));
450

451
	retval = __videobuf_mmap_setup(q, count, size, req->memory);
452
	if (retval < 0) {
453
		dprintk(1, "reqbufs: mmap setup returned %d\n", retval);
454 455 456
		goto done;
	}

457
	req->count = retval;
458
	retval = 0;
459 460

 done:
461
	mutex_unlock(&q->vb_lock);
462 463
	return retval;
}
464
EXPORT_SYMBOL_GPL(videobuf_reqbufs);
465 466 467

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

470
	mutex_lock(&q->vb_lock);
471
	if (unlikely(b->type != q->type)) {
472
		dprintk(1, "querybuf: Wrong type.\n");
473
		goto done;
474
	}
475
	if (unlikely(b->index >= VIDEO_MAX_FRAME)) {
476
		dprintk(1, "querybuf: index out of range.\n");
477
		goto done;
478 479
	}
	if (unlikely(NULL == q->bufs[b->index])) {
480
		dprintk(1, "querybuf: buffer is null.\n");
481
		goto done;
482
	}
483

484
	videobuf_status(q, b, q->bufs[b->index], q->type);
485 486 487

	ret = 0;
done:
488
	mutex_unlock(&q->vb_lock);
489
	return ret;
490
}
491
EXPORT_SYMBOL_GPL(videobuf_querybuf);
492

493
int videobuf_qbuf(struct videobuf_queue *q, struct v4l2_buffer *b)
494 495 496
{
	struct videobuf_buffer *buf;
	enum v4l2_field field;
497
	unsigned long flags = 0;
498 499
	int retval;

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

502 503 504
	if (b->memory == V4L2_MEMORY_MMAP)
		down_read(&current->mm->mmap_sem);

505
	mutex_lock(&q->vb_lock);
506 507
	retval = -EBUSY;
	if (q->reading) {
508
		dprintk(1, "qbuf: Reading running...\n");
509 510 511 512
		goto done;
	}
	retval = -EINVAL;
	if (b->type != q->type) {
513
		dprintk(1, "qbuf: Wrong type.\n");
514 515
		goto done;
	}
516
	if (b->index >= VIDEO_MAX_FRAME) {
517
		dprintk(1, "qbuf: index out of range.\n");
518 519 520 521
		goto done;
	}
	buf = q->bufs[b->index];
	if (NULL == buf) {
522
		dprintk(1, "qbuf: buffer is null.\n");
523 524
		goto done;
	}
525
	MAGIC_CHECK(buf->magic, MAGIC_BUFFER);
526
	if (buf->memory != b->memory) {
527
		dprintk(1, "qbuf: memory type is wrong.\n");
528 529
		goto done;
	}
530
	if (buf->state != VIDEOBUF_NEEDS_INIT && buf->state != VIDEOBUF_IDLE) {
531
		dprintk(1, "qbuf: buffer is already queued or active.\n");
532 533 534 535 536
		goto done;
	}

	if (b->flags & V4L2_BUF_FLAG_INPUT) {
		if (b->input >= q->inputs) {
537
			dprintk(1, "qbuf: wrong input.\n");
538 539 540 541 542 543 544 545 546 547
			goto done;
		}
		buf->input = b->input;
	} else {
		buf->input = UNSET;
	}

	switch (b->memory) {
	case V4L2_MEMORY_MMAP:
		if (0 == buf->baddr) {
548 549
			dprintk(1, "qbuf: mmap requested "
				   "but buffer addr is zero!\n");
550 551 552 553 554
			goto done;
		}
		break;
	case V4L2_MEMORY_USERPTR:
		if (b->length < buf->bsize) {
555
			dprintk(1, "qbuf: buffer length is not enough\n");
556 557
			goto done;
		}
558 559 560
		if (VIDEOBUF_NEEDS_INIT != buf->state &&
		    buf->baddr != b->m.userptr)
			q->ops->buf_release(q, buf);
561 562 563 564 565 566
		buf->baddr = b->m.userptr;
		break;
	case V4L2_MEMORY_OVERLAY:
		buf->boff = b->m.offset;
		break;
	default:
567
		dprintk(1, "qbuf: wrong memory type\n");
568 569 570
		goto done;
	}

571
	dprintk(1, "qbuf: requesting next field\n");
572
	field = videobuf_next_field(q);
573
	retval = q->ops->buf_prepare(q, buf, field);
574
	if (0 != retval) {
575
		dprintk(1, "qbuf: buffer_prepare returned %d\n", retval);
576 577 578
		goto done;
	}

579
	list_add_tail(&buf->stream, &q->stream);
580
	if (q->streaming) {
581
		spin_lock_irqsave(q->irqlock, flags);
582
		q->ops->buf_queue(q, buf);
583
		spin_unlock_irqrestore(q->irqlock, flags);
584
	}
585
	dprintk(1, "qbuf: succeeded\n");
586
	retval = 0;
587
	wake_up_interruptible_sync(&q->wait);
588

589
done:
590
	mutex_unlock(&q->vb_lock);
591 592 593 594

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

595 596
	return retval;
}
597
EXPORT_SYMBOL_GPL(videobuf_qbuf);
598 599 600

/* Locking: Caller holds q->vb_lock */
static int stream_next_buffer_check_queue(struct videobuf_queue *q, int noblock)
601 602 603
{
	int retval;

604 605 606 607
checks:
	if (!q->streaming) {
		dprintk(1, "next_buffer: Not streaming\n");
		retval = -EINVAL;
608 609
		goto done;
	}
610

611
	if (list_empty(&q->stream)) {
612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633
		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;
		}
634
	}
635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652

	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;

653 654
	buf = list_entry(q->stream.next, struct videobuf_buffer, stream);
	retval = videobuf_waiton(buf, nonblocking, 1);
655 656 657 658 659 660 661 662 663
	if (retval < 0)
		goto done;

	*vb = buf;
done:
	return retval;
}

int videobuf_dqbuf(struct videobuf_queue *q,
664
		   struct v4l2_buffer *b, int nonblocking)
665 666 667 668 669 670
{
	struct videobuf_buffer *buf = NULL;
	int retval;

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

671
	mutex_lock(&q->vb_lock);
672 673

	retval = stream_next_buffer(q, &buf, nonblocking);
674
	if (retval < 0) {
675
		dprintk(1, "dqbuf: next_buffer error: %i\n", retval);
676 677
		goto done;
	}
678

679
	switch (buf->state) {
680
	case VIDEOBUF_ERROR:
681
		dprintk(1, "dqbuf: state is error\n");
682
		retval = -EIO;
683
		CALL(q, sync, q, buf);
684
		buf->state = VIDEOBUF_IDLE;
685
		break;
686
	case VIDEOBUF_DONE:
687 688
		dprintk(1, "dqbuf: state is done\n");
		CALL(q, sync, q, buf);
689
		buf->state = VIDEOBUF_IDLE;
690 691
		break;
	default:
692
		dprintk(1, "dqbuf: state invalid\n");
693 694 695 696
		retval = -EINVAL;
		goto done;
	}
	list_del(&buf->stream);
697 698
	memset(b, 0, sizeof(*b));
	videobuf_status(q, b, buf, q->type);
699
done:
700
	mutex_unlock(&q->vb_lock);
701 702
	return retval;
}
703
EXPORT_SYMBOL_GPL(videobuf_dqbuf);
704 705 706 707

int videobuf_streamon(struct videobuf_queue *q)
{
	struct videobuf_buffer *buf;
708
	unsigned long flags = 0;
709 710
	int retval;

711
	mutex_lock(&q->vb_lock);
712 713 714 715 716 717 718
	retval = -EBUSY;
	if (q->reading)
		goto done;
	retval = 0;
	if (q->streaming)
		goto done;
	q->streaming = 1;
719
	spin_lock_irqsave(q->irqlock, flags);
720
	list_for_each_entry(buf, &q->stream, stream)
721
		if (buf->state == VIDEOBUF_PREPARED)
722
			q->ops->buf_queue(q, buf);
723
	spin_unlock_irqrestore(q->irqlock, flags);
724

725
	wake_up_interruptible_sync(&q->wait);
726
done:
727
	mutex_unlock(&q->vb_lock);
728 729
	return retval;
}
730
EXPORT_SYMBOL_GPL(videobuf_streamon);
731

732
/* Locking: Caller holds q->vb_lock */
733
static int __videobuf_streamoff(struct videobuf_queue *q)
734 735
{
	if (!q->streaming)
736 737
		return -EINVAL;

738 739
	videobuf_queue_cancel(q);

740 741 742 743 744 745 746
	return 0;
}

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

747
	mutex_lock(&q->vb_lock);
748
	retval = __videobuf_streamoff(q);
749
	mutex_unlock(&q->vb_lock);
750

751 752
	return retval;
}
753
EXPORT_SYMBOL_GPL(videobuf_streamoff);
754

755
/* Locking: Caller holds q->vb_lock */
756 757 758 759 760
static ssize_t videobuf_read_zerocopy(struct videobuf_queue *q,
				      char __user *data,
				      size_t count, loff_t *ppos)
{
	enum v4l2_field field;
761
	unsigned long flags = 0;
762 763
	int retval;

764
	MAGIC_CHECK(q->int_ops->magic, MAGIC_QTYPE_OPS);
765 766 767 768 769 770 771 772 773 774 775

	/* 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);
776
	retval = q->ops->buf_prepare(q, q->read_buf, field);
777 778 779 780
	if (0 != retval)
		goto done;

	/* start capture & wait */
781
	spin_lock_irqsave(q->irqlock, flags);
782
	q->ops->buf_queue(q, q->read_buf);
783
	spin_unlock_irqrestore(q->irqlock, flags);
784
	retval = videobuf_waiton(q->read_buf, 0, 0);
785
	if (0 == retval) {
786
		CALL(q, sync, q, q->read_buf);
787
		if (VIDEOBUF_ERROR == q->read_buf->state)
788 789 790 791 792
			retval = -EIO;
		else
			retval = q->read_buf->size;
	}

793
done:
794
	/* cleanup */
795
	q->ops->buf_release(q, q->read_buf);
796 797 798 799 800 801 802 803 804 805
	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;
806
	unsigned long flags = 0;
807
	unsigned size = 0, nbufs = 1;
808 809
	int retval;

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

812
	mutex_lock(&q->vb_lock);
813

814
	q->ops->buf_setup(q, &nbufs, &size);
815 816 817 818

	if (NULL == q->read_buf  &&
	    count >= size        &&
	    !nonblocking) {
819
		retval = videobuf_read_zerocopy(q, data, count, ppos);
820 821 822 823 824 825 826 827 828 829 830
		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);

831
		dprintk(1, "video alloc=0x%p\n", q->read_buf);
832 833 834 835 836
		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);
837
		retval = q->ops->buf_prepare(q, q->read_buf, field);
838 839

		if (0 != retval) {
840
			kfree(q->read_buf);
841 842 843 844
			q->read_buf = NULL;
			goto done;
		}

845
		spin_lock_irqsave(q->irqlock, flags);
846
		q->ops->buf_queue(q, q->read_buf);
847 848
		spin_unlock_irqrestore(q->irqlock, flags);

849 850 851 852 853 854 855 856
		q->read_off = 0;
	}

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

857
	CALL(q, sync, q, q->read_buf);
858

859
	if (VIDEOBUF_ERROR == q->read_buf->state) {
860
		/* catch I/O errors */
861
		q->ops->buf_release(q, q->read_buf);
862 863 864 865 866 867 868
		kfree(q->read_buf);
		q->read_buf = NULL;
		retval = -EIO;
		goto done;
	}

	/* Copy to userspace */
869 870
	retval = CALL(q, video_copy_to_user, q, data, count, nonblocking);
	if (retval < 0)
871 872 873 874 875
		goto done;

	q->read_off += retval;
	if (q->read_off == q->read_buf->size) {
		/* all data copied, cleanup */
876
		q->ops->buf_release(q, q->read_buf);
877 878 879 880
		kfree(q->read_buf);
		q->read_buf = NULL;
	}

881
done:
882
	mutex_unlock(&q->vb_lock);
883 884
	return retval;
}
885
EXPORT_SYMBOL_GPL(videobuf_read_one);
886

887
/* Locking: Caller holds q->vb_lock */
888
static int __videobuf_read_start(struct videobuf_queue *q)
889 890
{
	enum v4l2_field field;
891
	unsigned long flags = 0;
892
	unsigned int count = 0, size = 0;
893 894
	int err, i;

895
	q->ops->buf_setup(q, &count, &size);
896 897 898 899 900 901
	if (count < 2)
		count = 2;
	if (count > VIDEO_MAX_FRAME)
		count = VIDEO_MAX_FRAME;
	size = PAGE_ALIGN(size);

902
	err = __videobuf_mmap_setup(q, count, size, V4L2_MEMORY_USERPTR);
903
	if (err < 0)
904 905
		return err;

906 907
	count = err;

908 909
	for (i = 0; i < count; i++) {
		field = videobuf_next_field(q);
910
		err = q->ops->buf_prepare(q, q->bufs[i], field);
911 912 913 914
		if (err)
			return err;
		list_add_tail(&q->bufs[i]->stream, &q->stream);
	}
915
	spin_lock_irqsave(q->irqlock, flags);
916
	for (i = 0; i < count; i++)
917
		q->ops->buf_queue(q, q->bufs[i]);
918
	spin_unlock_irqrestore(q->irqlock, flags);
919 920 921 922
	q->reading = 1;
	return 0;
}

923
static void __videobuf_read_stop(struct videobuf_queue *q)
924 925 926 927
{
	int i;

	videobuf_queue_cancel(q);
928
	__videobuf_mmap_free(q);
929 930 931 932 933 934 935 936
	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;
937 938
}

939 940 941 942
int videobuf_read_start(struct videobuf_queue *q)
{
	int rc;

943
	mutex_lock(&q->vb_lock);
944
	rc = __videobuf_read_start(q);
945
	mutex_unlock(&q->vb_lock);
946 947 948

	return rc;
}
949
EXPORT_SYMBOL_GPL(videobuf_read_start);
950

951 952
void videobuf_read_stop(struct videobuf_queue *q)
{
953
	mutex_lock(&q->vb_lock);
954
	__videobuf_read_stop(q);
955
	mutex_unlock(&q->vb_lock);
956
}
957
EXPORT_SYMBOL_GPL(videobuf_read_stop);
958 959 960

void videobuf_stop(struct videobuf_queue *q)
{
961
	mutex_lock(&q->vb_lock);
962 963 964 965 966 967 968

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

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

969
	mutex_unlock(&q->vb_lock);
970
}
971
EXPORT_SYMBOL_GPL(videobuf_stop);
972

973 974 975 976 977
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;
978
	unsigned long flags = 0;
979

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

982
	dprintk(2, "%s\n", __func__);
983
	mutex_lock(&q->vb_lock);
984 985 986 987
	retval = -EBUSY;
	if (q->streaming)
		goto done;
	if (!q->reading) {
988
		retval = __videobuf_read_start(q);
989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009
		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;
		}

1010
		if (q->read_buf->state == VIDEOBUF_DONE) {
1011
			rc = CALL(q, copy_stream, q, data + retval, count,
1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030
					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);
1031
			spin_lock_irqsave(q->irqlock, flags);
1032
			q->ops->buf_queue(q, q->read_buf);
1033
			spin_unlock_irqrestore(q->irqlock, flags);
1034 1035 1036 1037 1038 1039
			q->read_buf = NULL;
		}
		if (retval < 0)
			break;
	}

1040
done:
1041
	mutex_unlock(&q->vb_lock);
1042 1043
	return retval;
}
1044
EXPORT_SYMBOL_GPL(videobuf_read_stream);
1045 1046 1047 1048 1049 1050 1051 1052

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

1053
	mutex_lock(&q->vb_lock);
1054 1055 1056 1057 1058 1059
	if (q->streaming) {
		if (!list_empty(&q->stream))
			buf = list_entry(q->stream.next,
					 struct videobuf_buffer, stream);
	} else {
		if (!q->reading)
1060
			__videobuf_read_start(q);
1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076
		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);
1077 1078
		if (buf->state == VIDEOBUF_DONE ||
		    buf->state == VIDEOBUF_ERROR)
1079 1080
			rc = POLLIN|POLLRDNORM;
	}
1081
	mutex_unlock(&q->vb_lock);
1082 1083
	return rc;
}
1084
EXPORT_SYMBOL_GPL(videobuf_poll_stream);
1085

1086
int videobuf_mmap_mapper(struct videobuf_queue *q, struct vm_area_struct *vma)
1087 1088 1089
{
	int retval;

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

1092
	mutex_lock(&q->vb_lock);
1093
	retval = CALL(q, mmap_mapper, q, vma);
1094
	q->is_mmapped = 1;
1095
	mutex_unlock(&q->vb_lock);
1096 1097 1098

	return retval;
}
1099
EXPORT_SYMBOL_GPL(videobuf_mmap_mapper);
1100 1101 1102 1103 1104 1105

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

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

1110
	memset(&req, 0, sizeof(req));
1111 1112 1113
	req.type   = q->type;
	req.count  = count;
	req.memory = V4L2_MEMORY_MMAP;
1114
	rc = videobuf_reqbufs(q, &req);
1115 1116 1117 1118 1119 1120 1121
	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;
1122
		mbuf->size       += PAGE_ALIGN(q->bufs[i]->bsize);
1123 1124 1125 1126
	}

	return 0;
}
1127
EXPORT_SYMBOL_GPL(videobuf_cgmbuf);
1128 1129
#endif