2 * generic helper functions for handling video4linux capture buffers
4 * (c) 2007 Mauro Carvalho Chehab, <mchehab@infradead.org>
6 * Highly based on video-buf written originally by:
7 * (c) 2001,02 Gerd Knorr <kraxel@bytesex.org>
8 * (c) 2006 Mauro Carvalho Chehab, <mchehab@infradead.org>
9 * (c) 2006 Ted Walther and John Sokol
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2
16 #include <linux/init.h>
17 #include <linux/module.h>
18 #include <linux/moduleparam.h>
20 #include <linux/sched.h>
21 #include <linux/slab.h>
22 #include <linux/interrupt.h>
24 #include <media/videobuf-core.h>
26 #define MAGIC_BUFFER 0x20070728
27 #define MAGIC_CHECK(is, should) do { \
28 if (unlikely((is) != (should))) { \
29 printk(KERN_ERR "magic mismatch: %x (expected %x)\n", is, should); \
33 module_param(debug
, int, 0644);
35 MODULE_DESCRIPTION("helper module to manage video4linux buffers");
36 MODULE_AUTHOR("Mauro Carvalho Chehab <mchehab@infradead.org>");
37 MODULE_LICENSE("GPL");
39 #define dprintk(level, fmt, arg...) do { \
41 printk(KERN_DEBUG "vbuf: " fmt , ## arg); } while (0)
43 /* --------------------------------------------------------------------- */
45 #define CALL(q, f, arg...) \
46 ((q->int_ops->f) ? q->int_ops->f(arg) : 0)
48 void *videobuf_alloc(struct videobuf_queue
*q
)
50 struct videobuf_buffer
*vb
;
52 BUG_ON(q
->msize
< sizeof(*vb
));
54 if (!q
->int_ops
|| !q
->int_ops
->alloc
) {
55 printk(KERN_ERR
"No specific ops defined!\n");
59 vb
= q
->int_ops
->alloc(q
->msize
);
62 init_waitqueue_head(&vb
->done
);
63 vb
->magic
= MAGIC_BUFFER
;
69 #define WAITON_CONDITION (vb->state != VIDEOBUF_ACTIVE &&\
70 vb->state != VIDEOBUF_QUEUED)
71 int videobuf_waiton(struct videobuf_buffer
*vb
, int non_blocking
, int intr
)
73 MAGIC_CHECK(vb
->magic
, MAGIC_BUFFER
);
83 return wait_event_interruptible(vb
->done
, WAITON_CONDITION
);
85 wait_event(vb
->done
, WAITON_CONDITION
);
90 int videobuf_iolock(struct videobuf_queue
*q
, struct videobuf_buffer
*vb
,
91 struct v4l2_framebuffer
*fbuf
)
93 MAGIC_CHECK(vb
->magic
, MAGIC_BUFFER
);
94 MAGIC_CHECK(q
->int_ops
->magic
, MAGIC_QTYPE_OPS
);
96 return CALL(q
, iolock
, q
, vb
, fbuf
);
99 void *videobuf_queue_to_vmalloc (struct videobuf_queue
*q
,
100 struct videobuf_buffer
*buf
)
102 if (q
->int_ops
->vmalloc
)
103 return q
->int_ops
->vmalloc(buf
);
107 EXPORT_SYMBOL_GPL(videobuf_queue_to_vmalloc
);
109 /* --------------------------------------------------------------------- */
112 void videobuf_queue_core_init(struct videobuf_queue
*q
,
113 struct videobuf_queue_ops
*ops
,
116 enum v4l2_buf_type type
,
117 enum v4l2_field field
,
120 struct videobuf_qtype_ops
*int_ops
)
123 memset(q
, 0, sizeof(*q
));
124 q
->irqlock
= irqlock
;
131 q
->int_ops
= int_ops
;
133 /* All buffer operations are mandatory */
134 BUG_ON(!q
->ops
->buf_setup
);
135 BUG_ON(!q
->ops
->buf_prepare
);
136 BUG_ON(!q
->ops
->buf_queue
);
137 BUG_ON(!q
->ops
->buf_release
);
139 /* Lock is mandatory for queue_cancel to work */
142 /* Having implementations for abstract methods are mandatory */
145 mutex_init(&q
->vb_lock
);
146 init_waitqueue_head(&q
->wait
);
147 INIT_LIST_HEAD(&q
->stream
);
150 /* Locking: Only usage in bttv unsafe find way to remove */
151 int videobuf_queue_is_busy(struct videobuf_queue
*q
)
155 MAGIC_CHECK(q
->int_ops
->magic
, MAGIC_QTYPE_OPS
);
158 dprintk(1, "busy: streaming active\n");
162 dprintk(1, "busy: pending read #1\n");
166 dprintk(1, "busy: pending read #2\n");
169 for (i
= 0; i
< VIDEO_MAX_FRAME
; i
++) {
170 if (NULL
== q
->bufs
[i
])
172 if (q
->bufs
[i
]->map
) {
173 dprintk(1, "busy: buffer #%d mapped\n", i
);
176 if (q
->bufs
[i
]->state
== VIDEOBUF_QUEUED
) {
177 dprintk(1, "busy: buffer #%d queued\n", i
);
180 if (q
->bufs
[i
]->state
== VIDEOBUF_ACTIVE
) {
181 dprintk(1, "busy: buffer #%d avtive\n", i
);
188 /* Locking: Caller holds q->vb_lock */
189 void videobuf_queue_cancel(struct videobuf_queue
*q
)
191 unsigned long flags
= 0;
196 wake_up_interruptible_sync(&q
->wait
);
198 /* remove queued buffers from list */
199 spin_lock_irqsave(q
->irqlock
, flags
);
200 for (i
= 0; i
< VIDEO_MAX_FRAME
; i
++) {
201 if (NULL
== q
->bufs
[i
])
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
);
209 spin_unlock_irqrestore(q
->irqlock
, flags
);
211 /* free all buffers + clear queue */
212 for (i
= 0; i
< VIDEO_MAX_FRAME
; i
++) {
213 if (NULL
== q
->bufs
[i
])
215 q
->ops
->buf_release(q
, q
->bufs
[i
]);
217 INIT_LIST_HEAD(&q
->stream
);
220 /* --------------------------------------------------------------------- */
222 /* Locking: Caller holds q->vb_lock */
223 enum v4l2_field
videobuf_next_field(struct videobuf_queue
*q
)
225 enum v4l2_field field
= q
->field
;
227 BUG_ON(V4L2_FIELD_ANY
== field
);
229 if (V4L2_FIELD_ALTERNATE
== field
) {
230 if (V4L2_FIELD_TOP
== q
->last
) {
231 field
= V4L2_FIELD_BOTTOM
;
232 q
->last
= V4L2_FIELD_BOTTOM
;
234 field
= V4L2_FIELD_TOP
;
235 q
->last
= V4L2_FIELD_TOP
;
241 /* Locking: Caller holds q->vb_lock */
242 static void videobuf_status(struct videobuf_queue
*q
, struct v4l2_buffer
*b
,
243 struct videobuf_buffer
*vb
, enum v4l2_buf_type type
)
245 MAGIC_CHECK(vb
->magic
, MAGIC_BUFFER
);
246 MAGIC_CHECK(q
->int_ops
->magic
, MAGIC_QTYPE_OPS
);
251 b
->memory
= vb
->memory
;
253 case V4L2_MEMORY_MMAP
:
254 b
->m
.offset
= vb
->boff
;
255 b
->length
= vb
->bsize
;
257 case V4L2_MEMORY_USERPTR
:
258 b
->m
.userptr
= vb
->baddr
;
259 b
->length
= vb
->bsize
;
261 case V4L2_MEMORY_OVERLAY
:
262 b
->m
.offset
= vb
->boff
;
268 b
->flags
|= V4L2_BUF_FLAG_MAPPED
;
271 case VIDEOBUF_PREPARED
:
272 case VIDEOBUF_QUEUED
:
273 case VIDEOBUF_ACTIVE
:
274 b
->flags
|= V4L2_BUF_FLAG_QUEUED
;
278 b
->flags
|= V4L2_BUF_FLAG_DONE
;
280 case VIDEOBUF_NEEDS_INIT
:
286 if (vb
->input
!= UNSET
) {
287 b
->flags
|= V4L2_BUF_FLAG_INPUT
;
288 b
->input
= vb
->input
;
291 b
->field
= vb
->field
;
292 b
->timestamp
= vb
->ts
;
293 b
->bytesused
= vb
->size
;
294 b
->sequence
= vb
->field_count
>> 1;
297 /* Locking: Caller holds q->vb_lock */
298 static int __videobuf_mmap_free(struct videobuf_queue
*q
)
306 MAGIC_CHECK(q
->int_ops
->magic
, MAGIC_QTYPE_OPS
);
309 rc
= CALL(q
, mmap_free
, q
);
316 for (i
= 0; i
< VIDEO_MAX_FRAME
; i
++) {
317 if (NULL
== q
->bufs
[i
])
319 q
->ops
->buf_release(q
, q
->bufs
[i
]);
327 int videobuf_mmap_free(struct videobuf_queue
*q
)
330 mutex_lock(&q
->vb_lock
);
331 ret
= __videobuf_mmap_free(q
);
332 mutex_unlock(&q
->vb_lock
);
336 /* Locking: Caller holds q->vb_lock */
337 int __videobuf_mmap_setup(struct videobuf_queue
*q
,
338 unsigned int bcount
, unsigned int bsize
,
339 enum v4l2_memory memory
)
344 MAGIC_CHECK(q
->int_ops
->magic
, MAGIC_QTYPE_OPS
);
346 err
= __videobuf_mmap_free(q
);
350 /* Allocate and initialize buffers */
351 for (i
= 0; i
< bcount
; i
++) {
352 q
->bufs
[i
] = videobuf_alloc(q
);
354 if (q
->bufs
[i
] == NULL
)
358 q
->bufs
[i
]->input
= UNSET
;
359 q
->bufs
[i
]->memory
= memory
;
360 q
->bufs
[i
]->bsize
= bsize
;
362 case V4L2_MEMORY_MMAP
:
363 q
->bufs
[i
]->boff
= bsize
* i
;
365 case V4L2_MEMORY_USERPTR
:
366 case V4L2_MEMORY_OVERLAY
:
375 dprintk(1, "mmap setup: %d buffers, %d bytes each\n",
381 int videobuf_mmap_setup(struct videobuf_queue
*q
,
382 unsigned int bcount
, unsigned int bsize
,
383 enum v4l2_memory memory
)
386 mutex_lock(&q
->vb_lock
);
387 ret
= __videobuf_mmap_setup(q
, bcount
, bsize
, memory
);
388 mutex_unlock(&q
->vb_lock
);
392 int videobuf_reqbufs(struct videobuf_queue
*q
,
393 struct v4l2_requestbuffers
*req
)
395 unsigned int size
, count
;
398 if (req
->count
< 1) {
399 dprintk(1, "reqbufs: count invalid (%d)\n", req
->count
);
403 if (req
->memory
!= V4L2_MEMORY_MMAP
&&
404 req
->memory
!= V4L2_MEMORY_USERPTR
&&
405 req
->memory
!= V4L2_MEMORY_OVERLAY
) {
406 dprintk(1, "reqbufs: memory type invalid\n");
410 mutex_lock(&q
->vb_lock
);
411 if (req
->type
!= q
->type
) {
412 dprintk(1, "reqbufs: queue type invalid\n");
418 dprintk(1, "reqbufs: streaming already exists\n");
422 if (!list_empty(&q
->stream
)) {
423 dprintk(1, "reqbufs: stream running\n");
429 if (count
> VIDEO_MAX_FRAME
)
430 count
= VIDEO_MAX_FRAME
;
432 q
->ops
->buf_setup(q
, &count
, &size
);
433 size
= PAGE_ALIGN(size
);
434 dprintk(1, "reqbufs: bufs=%d, size=0x%x [%d pages total]\n",
435 count
, size
, (count
*size
)>>PAGE_SHIFT
);
437 retval
= __videobuf_mmap_setup(q
, count
, size
, req
->memory
);
439 dprintk(1, "reqbufs: mmap setup returned %d\n", retval
);
447 mutex_unlock(&q
->vb_lock
);
451 int videobuf_querybuf(struct videobuf_queue
*q
, struct v4l2_buffer
*b
)
455 mutex_lock(&q
->vb_lock
);
456 if (unlikely(b
->type
!= q
->type
)) {
457 dprintk(1, "querybuf: Wrong type.\n");
460 if (unlikely(b
->index
>= VIDEO_MAX_FRAME
)) {
461 dprintk(1, "querybuf: index out of range.\n");
464 if (unlikely(NULL
== q
->bufs
[b
->index
])) {
465 dprintk(1, "querybuf: buffer is null.\n");
469 videobuf_status(q
, b
, q
->bufs
[b
->index
], q
->type
);
473 mutex_unlock(&q
->vb_lock
);
477 int videobuf_qbuf(struct videobuf_queue
*q
,
478 struct v4l2_buffer
*b
)
480 struct videobuf_buffer
*buf
;
481 enum v4l2_field field
;
482 unsigned long flags
= 0;
485 MAGIC_CHECK(q
->int_ops
->magic
, MAGIC_QTYPE_OPS
);
487 if (b
->memory
== V4L2_MEMORY_MMAP
)
488 down_read(¤t
->mm
->mmap_sem
);
490 mutex_lock(&q
->vb_lock
);
493 dprintk(1, "qbuf: Reading running...\n");
497 if (b
->type
!= q
->type
) {
498 dprintk(1, "qbuf: Wrong type.\n");
501 if (b
->index
>= VIDEO_MAX_FRAME
) {
502 dprintk(1, "qbuf: index out of range.\n");
505 buf
= q
->bufs
[b
->index
];
507 dprintk(1, "qbuf: buffer is null.\n");
510 MAGIC_CHECK(buf
->magic
, MAGIC_BUFFER
);
511 if (buf
->memory
!= b
->memory
) {
512 dprintk(1, "qbuf: memory type is wrong.\n");
515 if (buf
->state
!= VIDEOBUF_NEEDS_INIT
&& buf
->state
!= VIDEOBUF_IDLE
) {
516 dprintk(1, "qbuf: buffer is already queued or active.\n");
520 if (b
->flags
& V4L2_BUF_FLAG_INPUT
) {
521 if (b
->input
>= q
->inputs
) {
522 dprintk(1, "qbuf: wrong input.\n");
525 buf
->input
= b
->input
;
531 case V4L2_MEMORY_MMAP
:
532 if (0 == buf
->baddr
) {
533 dprintk(1, "qbuf: mmap requested "
534 "but buffer addr is zero!\n");
538 case V4L2_MEMORY_USERPTR
:
539 if (b
->length
< buf
->bsize
) {
540 dprintk(1, "qbuf: buffer length is not enough\n");
543 if (VIDEOBUF_NEEDS_INIT
!= buf
->state
&&
544 buf
->baddr
!= b
->m
.userptr
)
545 q
->ops
->buf_release(q
, buf
);
546 buf
->baddr
= b
->m
.userptr
;
548 case V4L2_MEMORY_OVERLAY
:
549 buf
->boff
= b
->m
.offset
;
552 dprintk(1, "qbuf: wrong memory type\n");
556 dprintk(1, "qbuf: requesting next field\n");
557 field
= videobuf_next_field(q
);
558 retval
= q
->ops
->buf_prepare(q
, buf
, field
);
560 dprintk(1, "qbuf: buffer_prepare returned %d\n", retval
);
564 list_add_tail(&buf
->stream
, &q
->stream
);
566 spin_lock_irqsave(q
->irqlock
, flags
);
567 q
->ops
->buf_queue(q
, buf
);
568 spin_unlock_irqrestore(q
->irqlock
, flags
);
570 dprintk(1, "qbuf: succeded\n");
572 wake_up_interruptible_sync(&q
->wait
);
575 mutex_unlock(&q
->vb_lock
);
577 if (b
->memory
== V4L2_MEMORY_MMAP
)
578 up_read(¤t
->mm
->mmap_sem
);
584 /* Locking: Caller holds q->vb_lock */
585 static int stream_next_buffer_check_queue(struct videobuf_queue
*q
, int noblock
)
591 dprintk(1, "next_buffer: Not streaming\n");
596 if (list_empty(&q
->stream
)) {
599 dprintk(2, "next_buffer: no buffers to dequeue\n");
602 dprintk(2, "next_buffer: waiting on buffer\n");
604 /* Drop lock to avoid deadlock with qbuf */
605 mutex_unlock(&q
->vb_lock
);
607 /* Checking list_empty and streaming is safe without
608 * locks because we goto checks to validate while
609 * holding locks before proceeding */
610 retval
= wait_event_interruptible(q
->wait
,
611 !list_empty(&q
->stream
) || !q
->streaming
);
612 mutex_lock(&q
->vb_lock
);
628 /* Locking: Caller holds q->vb_lock */
629 static int stream_next_buffer(struct videobuf_queue
*q
,
630 struct videobuf_buffer
**vb
, int nonblocking
)
633 struct videobuf_buffer
*buf
= NULL
;
635 retval
= stream_next_buffer_check_queue(q
, nonblocking
);
639 buf
= list_entry(q
->stream
.next
, struct videobuf_buffer
, stream
);
640 retval
= videobuf_waiton(buf
, nonblocking
, 1);
649 int videobuf_dqbuf(struct videobuf_queue
*q
,
650 struct v4l2_buffer
*b
, int nonblocking
)
652 struct videobuf_buffer
*buf
= NULL
;
655 MAGIC_CHECK(q
->int_ops
->magic
, MAGIC_QTYPE_OPS
);
657 mutex_lock(&q
->vb_lock
);
659 retval
= stream_next_buffer(q
, &buf
, nonblocking
);
661 dprintk(1, "dqbuf: next_buffer error: %i\n", retval
);
665 switch (buf
->state
) {
667 dprintk(1, "dqbuf: state is error\n");
669 CALL(q
, sync
, q
, buf
);
670 buf
->state
= VIDEOBUF_IDLE
;
673 dprintk(1, "dqbuf: state is done\n");
674 CALL(q
, sync
, q
, buf
);
675 buf
->state
= VIDEOBUF_IDLE
;
678 dprintk(1, "dqbuf: state invalid\n");
682 list_del(&buf
->stream
);
683 memset(b
, 0, sizeof(*b
));
684 videobuf_status(q
, b
, buf
, q
->type
);
687 mutex_unlock(&q
->vb_lock
);
691 int videobuf_streamon(struct videobuf_queue
*q
)
693 struct videobuf_buffer
*buf
;
694 unsigned long flags
= 0;
697 mutex_lock(&q
->vb_lock
);
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
);
711 wake_up_interruptible_sync(&q
->wait
);
713 mutex_unlock(&q
->vb_lock
);
717 /* Locking: Caller holds q->vb_lock */
718 static int __videobuf_streamoff(struct videobuf_queue
*q
)
723 videobuf_queue_cancel(q
);
728 int videobuf_streamoff(struct videobuf_queue
*q
)
732 mutex_lock(&q
->vb_lock
);
733 retval
= __videobuf_streamoff(q
);
734 mutex_unlock(&q
->vb_lock
);
739 /* Locking: Caller holds q->vb_lock */
740 static ssize_t
videobuf_read_zerocopy(struct videobuf_queue
*q
,
742 size_t count
, loff_t
*ppos
)
744 enum v4l2_field field
;
745 unsigned long flags
= 0;
748 MAGIC_CHECK(q
->int_ops
->magic
, MAGIC_QTYPE_OPS
);
751 q
->read_buf
= videobuf_alloc(q
);
752 if (NULL
== q
->read_buf
)
755 q
->read_buf
->memory
= V4L2_MEMORY_USERPTR
;
756 q
->read_buf
->baddr
= (unsigned long)data
;
757 q
->read_buf
->bsize
= count
;
759 field
= videobuf_next_field(q
);
760 retval
= q
->ops
->buf_prepare(q
, q
->read_buf
, field
);
764 /* 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);
770 CALL(q
, sync
, q
, q
->read_buf
);
771 if (VIDEOBUF_ERROR
== q
->read_buf
->state
)
774 retval
= q
->read_buf
->size
;
779 q
->ops
->buf_release(q
, q
->read_buf
);
785 ssize_t
videobuf_read_one(struct videobuf_queue
*q
,
786 char __user
*data
, size_t count
, loff_t
*ppos
,
789 enum v4l2_field field
;
790 unsigned long flags
= 0;
791 unsigned size
= 0, nbufs
= 1;
794 MAGIC_CHECK(q
->int_ops
->magic
, MAGIC_QTYPE_OPS
);
796 mutex_lock(&q
->vb_lock
);
798 q
->ops
->buf_setup(q
, &nbufs
, &size
);
800 if (NULL
== q
->read_buf
&&
803 retval
= videobuf_read_zerocopy(q
, data
, count
, ppos
);
804 if (retval
>= 0 || retval
== -EIO
)
807 /* fallback to kernel bounce buffer on failures */
810 if (NULL
== q
->read_buf
) {
811 /* need to capture a new frame */
813 q
->read_buf
= videobuf_alloc(q
);
815 dprintk(1, "video alloc=0x%p\n", q
->read_buf
);
816 if (NULL
== q
->read_buf
)
818 q
->read_buf
->memory
= V4L2_MEMORY_USERPTR
;
819 q
->read_buf
->bsize
= count
; /* preferred size */
820 field
= videobuf_next_field(q
);
821 retval
= q
->ops
->buf_prepare(q
, q
->read_buf
, field
);
829 spin_lock_irqsave(q
->irqlock
, flags
);
830 q
->ops
->buf_queue(q
, q
->read_buf
);
831 spin_unlock_irqrestore(q
->irqlock
, flags
);
836 /* wait until capture is done */
837 retval
= videobuf_waiton(q
->read_buf
, nonblocking
, 1);
841 CALL(q
, sync
, q
, q
->read_buf
);
843 if (VIDEOBUF_ERROR
== q
->read_buf
->state
) {
844 /* catch I/O errors */
845 q
->ops
->buf_release(q
, q
->read_buf
);
852 /* Copy to userspace */
853 retval
= CALL(q
, video_copy_to_user
, q
, data
, count
, nonblocking
);
857 q
->read_off
+= retval
;
858 if (q
->read_off
== q
->read_buf
->size
) {
859 /* all data copied, cleanup */
860 q
->ops
->buf_release(q
, q
->read_buf
);
866 mutex_unlock(&q
->vb_lock
);
870 /* Locking: Caller holds q->vb_lock */
871 static int __videobuf_read_start(struct videobuf_queue
*q
)
873 enum v4l2_field field
;
874 unsigned long flags
= 0;
875 unsigned int count
= 0, size
= 0;
878 q
->ops
->buf_setup(q
, &count
, &size
);
881 if (count
> VIDEO_MAX_FRAME
)
882 count
= VIDEO_MAX_FRAME
;
883 size
= PAGE_ALIGN(size
);
885 err
= __videobuf_mmap_setup(q
, count
, size
, V4L2_MEMORY_USERPTR
);
891 for (i
= 0; i
< count
; i
++) {
892 field
= videobuf_next_field(q
);
893 err
= q
->ops
->buf_prepare(q
, q
->bufs
[i
], field
);
896 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
);
906 static void __videobuf_read_stop(struct videobuf_queue
*q
)
910 videobuf_queue_cancel(q
);
911 __videobuf_mmap_free(q
);
912 INIT_LIST_HEAD(&q
->stream
);
913 for (i
= 0; i
< VIDEO_MAX_FRAME
; i
++) {
914 if (NULL
== q
->bufs
[i
])
923 int videobuf_read_start(struct videobuf_queue
*q
)
927 mutex_lock(&q
->vb_lock
);
928 rc
= __videobuf_read_start(q
);
929 mutex_unlock(&q
->vb_lock
);
934 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
);
941 void videobuf_stop(struct videobuf_queue
*q
)
943 mutex_lock(&q
->vb_lock
);
946 __videobuf_streamoff(q
);
949 __videobuf_read_stop(q
);
951 mutex_unlock(&q
->vb_lock
);
955 ssize_t
videobuf_read_stream(struct videobuf_queue
*q
,
956 char __user
*data
, size_t count
, loff_t
*ppos
,
957 int vbihack
, int nonblocking
)
960 unsigned long flags
= 0;
962 MAGIC_CHECK(q
->int_ops
->magic
, MAGIC_QTYPE_OPS
);
964 dprintk(2, "%s\n", __func__
);
965 mutex_lock(&q
->vb_lock
);
970 retval
= __videobuf_read_start(q
);
977 /* get / wait for data */
978 if (NULL
== q
->read_buf
) {
979 q
->read_buf
= list_entry(q
->stream
.next
,
980 struct videobuf_buffer
,
982 list_del(&q
->read_buf
->stream
);
985 rc
= videobuf_waiton(q
->read_buf
, nonblocking
, 1);
992 if (q
->read_buf
->state
== VIDEOBUF_DONE
) {
993 rc
= CALL(q
, copy_stream
, q
, data
+ retval
, count
,
994 retval
, vbihack
, nonblocking
);
1004 q
->read_off
= q
->read_buf
->size
;
1009 /* requeue buffer when done with copying */
1010 if (q
->read_off
== q
->read_buf
->size
) {
1011 list_add_tail(&q
->read_buf
->stream
,
1013 spin_lock_irqsave(q
->irqlock
, flags
);
1014 q
->ops
->buf_queue(q
, q
->read_buf
);
1015 spin_unlock_irqrestore(q
->irqlock
, flags
);
1023 mutex_unlock(&q
->vb_lock
);
1027 unsigned int videobuf_poll_stream(struct file
*file
,
1028 struct videobuf_queue
*q
,
1031 struct videobuf_buffer
*buf
= NULL
;
1032 unsigned int rc
= 0;
1034 mutex_lock(&q
->vb_lock
);
1036 if (!list_empty(&q
->stream
))
1037 buf
= list_entry(q
->stream
.next
,
1038 struct videobuf_buffer
, stream
);
1041 __videobuf_read_start(q
);
1044 } else if (NULL
== q
->read_buf
) {
1045 q
->read_buf
= list_entry(q
->stream
.next
,
1046 struct videobuf_buffer
,
1048 list_del(&q
->read_buf
->stream
);
1057 poll_wait(file
, &buf
->done
, wait
);
1058 if (buf
->state
== VIDEOBUF_DONE
||
1059 buf
->state
== VIDEOBUF_ERROR
)
1060 rc
= POLLIN
|POLLRDNORM
;
1062 mutex_unlock(&q
->vb_lock
);
1066 int videobuf_mmap_mapper(struct videobuf_queue
*q
,
1067 struct vm_area_struct
*vma
)
1071 MAGIC_CHECK(q
->int_ops
->magic
, MAGIC_QTYPE_OPS
);
1073 mutex_lock(&q
->vb_lock
);
1074 retval
= CALL(q
, mmap_mapper
, q
, vma
);
1076 mutex_unlock(&q
->vb_lock
);
1081 #ifdef CONFIG_VIDEO_V4L1_COMPAT
1082 int videobuf_cgmbuf(struct videobuf_queue
*q
,
1083 struct video_mbuf
*mbuf
, int count
)
1085 struct v4l2_requestbuffers req
;
1088 MAGIC_CHECK(q
->int_ops
->magic
, MAGIC_QTYPE_OPS
);
1090 memset(&req
, 0, sizeof(req
));
1093 req
.memory
= V4L2_MEMORY_MMAP
;
1094 rc
= videobuf_reqbufs(q
, &req
);
1098 mbuf
->frames
= req
.count
;
1100 for (i
= 0; i
< mbuf
->frames
; i
++) {
1101 mbuf
->offsets
[i
] = q
->bufs
[i
]->boff
;
1102 mbuf
->size
+= q
->bufs
[i
]->bsize
;
1107 EXPORT_SYMBOL_GPL(videobuf_cgmbuf
);
1110 /* --------------------------------------------------------------------- */
1112 EXPORT_SYMBOL_GPL(videobuf_waiton
);
1113 EXPORT_SYMBOL_GPL(videobuf_iolock
);
1115 EXPORT_SYMBOL_GPL(videobuf_alloc
);
1117 EXPORT_SYMBOL_GPL(videobuf_queue_core_init
);
1118 EXPORT_SYMBOL_GPL(videobuf_queue_cancel
);
1119 EXPORT_SYMBOL_GPL(videobuf_queue_is_busy
);
1121 EXPORT_SYMBOL_GPL(videobuf_next_field
);
1122 EXPORT_SYMBOL_GPL(videobuf_reqbufs
);
1123 EXPORT_SYMBOL_GPL(videobuf_querybuf
);
1124 EXPORT_SYMBOL_GPL(videobuf_qbuf
);
1125 EXPORT_SYMBOL_GPL(videobuf_dqbuf
);
1126 EXPORT_SYMBOL_GPL(videobuf_streamon
);
1127 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 EXPORT_SYMBOL_GPL(videobuf_read_stream
);
1133 EXPORT_SYMBOL_GPL(videobuf_read_one
);
1134 EXPORT_SYMBOL_GPL(videobuf_poll_stream
);
1136 EXPORT_SYMBOL_GPL(__videobuf_mmap_setup
);
1137 EXPORT_SYMBOL_GPL(videobuf_mmap_setup
);
1138 EXPORT_SYMBOL_GPL(videobuf_mmap_free
);
1139 EXPORT_SYMBOL_GPL(videobuf_mmap_mapper
);