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/slab.h>
21 #include <linux/interrupt.h>
23 #include <media/videobuf-core.h>
25 #define MAGIC_BUFFER 0x20070728
26 #define MAGIC_CHECK(is, should) do { \
27 if (unlikely((is) != (should))) { \
28 printk(KERN_ERR "magic mismatch: %x (expected %x)\n", is, should); \
32 module_param(debug
, int, 0644);
34 MODULE_DESCRIPTION("helper module to manage video4linux buffers");
35 MODULE_AUTHOR("Mauro Carvalho Chehab <mchehab@infradead.org>");
36 MODULE_LICENSE("GPL");
38 #define dprintk(level, fmt, arg...) do { \
40 printk(KERN_DEBUG "vbuf: " fmt , ## arg); } while (0)
42 /* --------------------------------------------------------------------- */
44 #define CALL(q, f, arg...) \
45 ((q->int_ops->f) ? q->int_ops->f(arg) : 0)
47 void *videobuf_alloc(struct videobuf_queue
*q
)
49 struct videobuf_buffer
*vb
;
51 BUG_ON(q
->msize
< sizeof(*vb
));
53 if (!q
->int_ops
|| !q
->int_ops
->alloc
) {
54 printk(KERN_ERR
"No specific ops defined!\n");
58 vb
= q
->int_ops
->alloc(q
->msize
);
61 init_waitqueue_head(&vb
->done
);
62 vb
->magic
= MAGIC_BUFFER
;
68 #define WAITON_CONDITION (vb->state != VIDEOBUF_ACTIVE &&\
69 vb->state != VIDEOBUF_QUEUED)
70 int videobuf_waiton(struct videobuf_buffer
*vb
, int non_blocking
, int intr
)
72 MAGIC_CHECK(vb
->magic
, MAGIC_BUFFER
);
82 return wait_event_interruptible(vb
->done
, WAITON_CONDITION
);
84 wait_event(vb
->done
, WAITON_CONDITION
);
89 int videobuf_iolock(struct videobuf_queue
*q
, struct videobuf_buffer
*vb
,
90 struct v4l2_framebuffer
*fbuf
)
92 MAGIC_CHECK(vb
->magic
, MAGIC_BUFFER
);
93 MAGIC_CHECK(q
->int_ops
->magic
, MAGIC_QTYPE_OPS
);
95 return CALL(q
, iolock
, q
, vb
, fbuf
);
98 void *videobuf_queue_to_vmalloc (struct videobuf_queue
*q
,
99 struct videobuf_buffer
*buf
)
101 if (q
->int_ops
->vmalloc
)
102 return q
->int_ops
->vmalloc(buf
);
106 EXPORT_SYMBOL_GPL(videobuf_queue_to_vmalloc
);
108 /* --------------------------------------------------------------------- */
111 void videobuf_queue_core_init(struct videobuf_queue
*q
,
112 struct videobuf_queue_ops
*ops
,
115 enum v4l2_buf_type type
,
116 enum v4l2_field field
,
119 struct videobuf_qtype_ops
*int_ops
)
121 memset(q
, 0, sizeof(*q
));
122 q
->irqlock
= irqlock
;
129 q
->int_ops
= int_ops
;
131 /* All buffer operations are mandatory */
132 BUG_ON(!q
->ops
->buf_setup
);
133 BUG_ON(!q
->ops
->buf_prepare
);
134 BUG_ON(!q
->ops
->buf_queue
);
135 BUG_ON(!q
->ops
->buf_release
);
137 /* Lock is mandatory for queue_cancel to work */
140 /* Having implementations for abstract methods are mandatory */
143 mutex_init(&q
->vb_lock
);
144 init_waitqueue_head(&q
->wait
);
145 INIT_LIST_HEAD(&q
->stream
);
148 /* Locking: Only usage in bttv unsafe find way to remove */
149 int videobuf_queue_is_busy(struct videobuf_queue
*q
)
153 MAGIC_CHECK(q
->int_ops
->magic
, MAGIC_QTYPE_OPS
);
156 dprintk(1, "busy: streaming active\n");
160 dprintk(1, "busy: pending read #1\n");
164 dprintk(1, "busy: pending read #2\n");
167 for (i
= 0; i
< VIDEO_MAX_FRAME
; i
++) {
168 if (NULL
== q
->bufs
[i
])
170 if (q
->bufs
[i
]->map
) {
171 dprintk(1, "busy: buffer #%d mapped\n", i
);
174 if (q
->bufs
[i
]->state
== VIDEOBUF_QUEUED
) {
175 dprintk(1, "busy: buffer #%d queued\n", i
);
178 if (q
->bufs
[i
]->state
== VIDEOBUF_ACTIVE
) {
179 dprintk(1, "busy: buffer #%d avtive\n", i
);
186 /* Locking: Caller holds q->vb_lock */
187 void videobuf_queue_cancel(struct videobuf_queue
*q
)
189 unsigned long flags
= 0;
194 wake_up_interruptible_sync(&q
->wait
);
196 /* remove queued buffers from list */
197 spin_lock_irqsave(q
->irqlock
, flags
);
198 for (i
= 0; i
< VIDEO_MAX_FRAME
; i
++) {
199 if (NULL
== q
->bufs
[i
])
201 if (q
->bufs
[i
]->state
== VIDEOBUF_QUEUED
) {
202 list_del(&q
->bufs
[i
]->queue
);
203 q
->bufs
[i
]->state
= VIDEOBUF_ERROR
;
204 wake_up_all(&q
->bufs
[i
]->done
);
207 spin_unlock_irqrestore(q
->irqlock
, flags
);
209 /* free all buffers + clear queue */
210 for (i
= 0; i
< VIDEO_MAX_FRAME
; i
++) {
211 if (NULL
== q
->bufs
[i
])
213 q
->ops
->buf_release(q
, q
->bufs
[i
]);
215 INIT_LIST_HEAD(&q
->stream
);
218 /* --------------------------------------------------------------------- */
220 /* Locking: Caller holds q->vb_lock */
221 enum v4l2_field
videobuf_next_field(struct videobuf_queue
*q
)
223 enum v4l2_field field
= q
->field
;
225 BUG_ON(V4L2_FIELD_ANY
== field
);
227 if (V4L2_FIELD_ALTERNATE
== field
) {
228 if (V4L2_FIELD_TOP
== q
->last
) {
229 field
= V4L2_FIELD_BOTTOM
;
230 q
->last
= V4L2_FIELD_BOTTOM
;
232 field
= V4L2_FIELD_TOP
;
233 q
->last
= V4L2_FIELD_TOP
;
239 /* Locking: Caller holds q->vb_lock */
240 static void videobuf_status(struct videobuf_queue
*q
, struct v4l2_buffer
*b
,
241 struct videobuf_buffer
*vb
, enum v4l2_buf_type type
)
243 MAGIC_CHECK(vb
->magic
, MAGIC_BUFFER
);
244 MAGIC_CHECK(q
->int_ops
->magic
, MAGIC_QTYPE_OPS
);
249 b
->memory
= vb
->memory
;
251 case V4L2_MEMORY_MMAP
:
252 b
->m
.offset
= vb
->boff
;
253 b
->length
= vb
->bsize
;
255 case V4L2_MEMORY_USERPTR
:
256 b
->m
.userptr
= vb
->baddr
;
257 b
->length
= vb
->bsize
;
259 case V4L2_MEMORY_OVERLAY
:
260 b
->m
.offset
= vb
->boff
;
266 b
->flags
|= V4L2_BUF_FLAG_MAPPED
;
269 case VIDEOBUF_PREPARED
:
270 case VIDEOBUF_QUEUED
:
271 case VIDEOBUF_ACTIVE
:
272 b
->flags
|= V4L2_BUF_FLAG_QUEUED
;
276 b
->flags
|= V4L2_BUF_FLAG_DONE
;
278 case VIDEOBUF_NEEDS_INIT
:
284 if (vb
->input
!= UNSET
) {
285 b
->flags
|= V4L2_BUF_FLAG_INPUT
;
286 b
->input
= vb
->input
;
289 b
->field
= vb
->field
;
290 b
->timestamp
= vb
->ts
;
291 b
->bytesused
= vb
->size
;
292 b
->sequence
= vb
->field_count
>> 1;
295 /* Locking: Caller holds q->vb_lock */
296 static int __videobuf_mmap_free(struct videobuf_queue
*q
)
304 MAGIC_CHECK(q
->int_ops
->magic
, MAGIC_QTYPE_OPS
);
307 rc
= CALL(q
, mmap_free
, q
);
314 for (i
= 0; i
< VIDEO_MAX_FRAME
; i
++) {
315 if (NULL
== q
->bufs
[i
])
317 q
->ops
->buf_release(q
, q
->bufs
[i
]);
325 int videobuf_mmap_free(struct videobuf_queue
*q
)
328 mutex_lock(&q
->vb_lock
);
329 ret
= __videobuf_mmap_free(q
);
330 mutex_unlock(&q
->vb_lock
);
334 /* Locking: Caller holds q->vb_lock */
335 int __videobuf_mmap_setup(struct videobuf_queue
*q
,
336 unsigned int bcount
, unsigned int bsize
,
337 enum v4l2_memory memory
)
342 MAGIC_CHECK(q
->int_ops
->magic
, MAGIC_QTYPE_OPS
);
344 err
= __videobuf_mmap_free(q
);
348 /* Allocate and initialize buffers */
349 for (i
= 0; i
< bcount
; i
++) {
350 q
->bufs
[i
] = videobuf_alloc(q
);
352 if (q
->bufs
[i
] == NULL
)
356 q
->bufs
[i
]->input
= UNSET
;
357 q
->bufs
[i
]->memory
= memory
;
358 q
->bufs
[i
]->bsize
= bsize
;
360 case V4L2_MEMORY_MMAP
:
361 q
->bufs
[i
]->boff
= bsize
* i
;
363 case V4L2_MEMORY_USERPTR
:
364 case V4L2_MEMORY_OVERLAY
:
373 dprintk(1, "mmap setup: %d buffers, %d bytes each\n",
379 int videobuf_mmap_setup(struct videobuf_queue
*q
,
380 unsigned int bcount
, unsigned int bsize
,
381 enum v4l2_memory memory
)
384 mutex_lock(&q
->vb_lock
);
385 ret
= __videobuf_mmap_setup(q
, bcount
, bsize
, memory
);
386 mutex_unlock(&q
->vb_lock
);
390 int videobuf_reqbufs(struct videobuf_queue
*q
,
391 struct v4l2_requestbuffers
*req
)
393 unsigned int size
, count
;
396 if (req
->count
< 1) {
397 dprintk(1, "reqbufs: count invalid (%d)\n", req
->count
);
401 if (req
->memory
!= V4L2_MEMORY_MMAP
&&
402 req
->memory
!= V4L2_MEMORY_USERPTR
&&
403 req
->memory
!= V4L2_MEMORY_OVERLAY
) {
404 dprintk(1, "reqbufs: memory type invalid\n");
408 mutex_lock(&q
->vb_lock
);
409 if (req
->type
!= q
->type
) {
410 dprintk(1, "reqbufs: queue type invalid\n");
416 dprintk(1, "reqbufs: streaming already exists\n");
420 if (!list_empty(&q
->stream
)) {
421 dprintk(1, "reqbufs: stream running\n");
427 if (count
> VIDEO_MAX_FRAME
)
428 count
= VIDEO_MAX_FRAME
;
430 q
->ops
->buf_setup(q
, &count
, &size
);
431 size
= PAGE_ALIGN(size
);
432 dprintk(1, "reqbufs: bufs=%d, size=0x%x [%d pages total]\n",
433 count
, size
, (count
*size
)>>PAGE_SHIFT
);
435 retval
= __videobuf_mmap_setup(q
, count
, size
, req
->memory
);
437 dprintk(1, "reqbufs: mmap setup returned %d\n", retval
);
444 mutex_unlock(&q
->vb_lock
);
448 int videobuf_querybuf(struct videobuf_queue
*q
, struct v4l2_buffer
*b
)
452 mutex_lock(&q
->vb_lock
);
453 if (unlikely(b
->type
!= q
->type
)) {
454 dprintk(1, "querybuf: Wrong type.\n");
457 if (unlikely(b
->index
< 0 || b
->index
>= VIDEO_MAX_FRAME
)) {
458 dprintk(1, "querybuf: index out of range.\n");
461 if (unlikely(NULL
== q
->bufs
[b
->index
])) {
462 dprintk(1, "querybuf: buffer is null.\n");
466 videobuf_status(q
, b
, q
->bufs
[b
->index
], q
->type
);
470 mutex_unlock(&q
->vb_lock
);
474 int videobuf_qbuf(struct videobuf_queue
*q
,
475 struct v4l2_buffer
*b
)
477 struct videobuf_buffer
*buf
;
478 enum v4l2_field field
;
479 unsigned long flags
= 0;
482 MAGIC_CHECK(q
->int_ops
->magic
, MAGIC_QTYPE_OPS
);
484 if (b
->memory
== V4L2_MEMORY_MMAP
)
485 down_read(¤t
->mm
->mmap_sem
);
487 mutex_lock(&q
->vb_lock
);
490 dprintk(1, "qbuf: Reading running...\n");
494 if (b
->type
!= q
->type
) {
495 dprintk(1, "qbuf: Wrong type.\n");
498 if (b
->index
< 0 || b
->index
>= VIDEO_MAX_FRAME
) {
499 dprintk(1, "qbuf: index out of range.\n");
502 buf
= q
->bufs
[b
->index
];
504 dprintk(1, "qbuf: buffer is null.\n");
507 MAGIC_CHECK(buf
->magic
, MAGIC_BUFFER
);
508 if (buf
->memory
!= b
->memory
) {
509 dprintk(1, "qbuf: memory type is wrong.\n");
512 if (buf
->state
!= VIDEOBUF_NEEDS_INIT
&& buf
->state
!= VIDEOBUF_IDLE
) {
513 dprintk(1, "qbuf: buffer is already queued or active.\n");
517 if (b
->flags
& V4L2_BUF_FLAG_INPUT
) {
518 if (b
->input
>= q
->inputs
) {
519 dprintk(1, "qbuf: wrong input.\n");
522 buf
->input
= b
->input
;
528 case V4L2_MEMORY_MMAP
:
529 if (0 == buf
->baddr
) {
530 dprintk(1, "qbuf: mmap requested "
531 "but buffer addr is zero!\n");
535 case V4L2_MEMORY_USERPTR
:
536 if (b
->length
< buf
->bsize
) {
537 dprintk(1, "qbuf: buffer length is not enough\n");
540 if (VIDEOBUF_NEEDS_INIT
!= buf
->state
&&
541 buf
->baddr
!= b
->m
.userptr
)
542 q
->ops
->buf_release(q
, buf
);
543 buf
->baddr
= b
->m
.userptr
;
545 case V4L2_MEMORY_OVERLAY
:
546 buf
->boff
= b
->m
.offset
;
549 dprintk(1, "qbuf: wrong memory type\n");
553 dprintk(1, "qbuf: requesting next field\n");
554 field
= videobuf_next_field(q
);
555 retval
= q
->ops
->buf_prepare(q
, buf
, field
);
557 dprintk(1, "qbuf: buffer_prepare returned %d\n", retval
);
561 list_add_tail(&buf
->stream
, &q
->stream
);
563 spin_lock_irqsave(q
->irqlock
, flags
);
564 q
->ops
->buf_queue(q
, buf
);
565 spin_unlock_irqrestore(q
->irqlock
, flags
);
567 dprintk(1, "qbuf: succeded\n");
569 wake_up_interruptible_sync(&q
->wait
);
572 mutex_unlock(&q
->vb_lock
);
574 if (b
->memory
== V4L2_MEMORY_MMAP
)
575 up_read(¤t
->mm
->mmap_sem
);
581 /* Locking: Caller holds q->vb_lock */
582 static int stream_next_buffer_check_queue(struct videobuf_queue
*q
, int noblock
)
588 dprintk(1, "next_buffer: Not streaming\n");
593 if (list_empty(&q
->stream
)) {
596 dprintk(2, "next_buffer: no buffers to dequeue\n");
599 dprintk(2, "next_buffer: waiting on buffer\n");
601 /* Drop lock to avoid deadlock with qbuf */
602 mutex_unlock(&q
->vb_lock
);
604 /* Checking list_empty and streaming is safe without
605 * locks because we goto checks to validate while
606 * holding locks before proceeding */
607 retval
= wait_event_interruptible(q
->wait
,
608 !list_empty(&q
->stream
) || !q
->streaming
);
609 mutex_lock(&q
->vb_lock
);
625 /* Locking: Caller holds q->vb_lock */
626 static int stream_next_buffer(struct videobuf_queue
*q
,
627 struct videobuf_buffer
**vb
, int nonblocking
)
630 struct videobuf_buffer
*buf
= NULL
;
632 retval
= stream_next_buffer_check_queue(q
, nonblocking
);
636 buf
= list_entry(q
->stream
.next
, struct videobuf_buffer
, stream
);
637 retval
= videobuf_waiton(buf
, nonblocking
, 1);
646 int videobuf_dqbuf(struct videobuf_queue
*q
,
647 struct v4l2_buffer
*b
, int nonblocking
)
649 struct videobuf_buffer
*buf
= NULL
;
652 MAGIC_CHECK(q
->int_ops
->magic
, MAGIC_QTYPE_OPS
);
654 mutex_lock(&q
->vb_lock
);
656 retval
= stream_next_buffer(q
, &buf
, nonblocking
);
658 dprintk(1, "dqbuf: next_buffer error: %i\n", retval
);
662 switch (buf
->state
) {
664 dprintk(1, "dqbuf: state is error\n");
666 CALL(q
, sync
, q
, buf
);
667 buf
->state
= VIDEOBUF_IDLE
;
670 dprintk(1, "dqbuf: state is done\n");
671 CALL(q
, sync
, q
, buf
);
672 buf
->state
= VIDEOBUF_IDLE
;
675 dprintk(1, "dqbuf: state invalid\n");
679 list_del(&buf
->stream
);
680 memset(b
, 0, sizeof(*b
));
681 videobuf_status(q
, b
, buf
, q
->type
);
684 mutex_unlock(&q
->vb_lock
);
688 int videobuf_streamon(struct videobuf_queue
*q
)
690 struct videobuf_buffer
*buf
;
691 unsigned long flags
= 0;
694 mutex_lock(&q
->vb_lock
);
702 spin_lock_irqsave(q
->irqlock
, flags
);
703 list_for_each_entry(buf
, &q
->stream
, stream
)
704 if (buf
->state
== VIDEOBUF_PREPARED
)
705 q
->ops
->buf_queue(q
, buf
);
706 spin_unlock_irqrestore(q
->irqlock
, flags
);
708 wake_up_interruptible_sync(&q
->wait
);
710 mutex_unlock(&q
->vb_lock
);
714 /* Locking: Caller holds q->vb_lock */
715 static int __videobuf_streamoff(struct videobuf_queue
*q
)
720 videobuf_queue_cancel(q
);
725 int videobuf_streamoff(struct videobuf_queue
*q
)
729 mutex_lock(&q
->vb_lock
);
730 retval
= __videobuf_streamoff(q
);
731 mutex_unlock(&q
->vb_lock
);
736 /* Locking: Caller holds q->vb_lock */
737 static ssize_t
videobuf_read_zerocopy(struct videobuf_queue
*q
,
739 size_t count
, loff_t
*ppos
)
741 enum v4l2_field field
;
742 unsigned long flags
= 0;
745 MAGIC_CHECK(q
->int_ops
->magic
, MAGIC_QTYPE_OPS
);
748 q
->read_buf
= videobuf_alloc(q
);
749 if (NULL
== q
->read_buf
)
752 q
->read_buf
->memory
= V4L2_MEMORY_USERPTR
;
753 q
->read_buf
->baddr
= (unsigned long)data
;
754 q
->read_buf
->bsize
= count
;
756 field
= videobuf_next_field(q
);
757 retval
= q
->ops
->buf_prepare(q
, q
->read_buf
, field
);
761 /* start capture & wait */
762 spin_lock_irqsave(q
->irqlock
, flags
);
763 q
->ops
->buf_queue(q
, q
->read_buf
);
764 spin_unlock_irqrestore(q
->irqlock
, flags
);
765 retval
= videobuf_waiton(q
->read_buf
, 0, 0);
767 CALL(q
, sync
, q
, q
->read_buf
);
768 if (VIDEOBUF_ERROR
== q
->read_buf
->state
)
771 retval
= q
->read_buf
->size
;
776 q
->ops
->buf_release(q
, q
->read_buf
);
782 ssize_t
videobuf_read_one(struct videobuf_queue
*q
,
783 char __user
*data
, size_t count
, loff_t
*ppos
,
786 enum v4l2_field field
;
787 unsigned long flags
= 0;
788 unsigned size
= 0, nbufs
= 1;
791 MAGIC_CHECK(q
->int_ops
->magic
, MAGIC_QTYPE_OPS
);
793 mutex_lock(&q
->vb_lock
);
795 q
->ops
->buf_setup(q
, &nbufs
, &size
);
797 if (NULL
== q
->read_buf
&&
800 retval
= videobuf_read_zerocopy(q
, data
, count
, ppos
);
801 if (retval
>= 0 || retval
== -EIO
)
804 /* fallback to kernel bounce buffer on failures */
807 if (NULL
== q
->read_buf
) {
808 /* need to capture a new frame */
810 q
->read_buf
= videobuf_alloc(q
);
812 dprintk(1, "video alloc=0x%p\n", q
->read_buf
);
813 if (NULL
== q
->read_buf
)
815 q
->read_buf
->memory
= V4L2_MEMORY_USERPTR
;
816 q
->read_buf
->bsize
= count
; /* preferred size */
817 field
= videobuf_next_field(q
);
818 retval
= q
->ops
->buf_prepare(q
, q
->read_buf
, field
);
826 spin_lock_irqsave(q
->irqlock
, flags
);
827 q
->ops
->buf_queue(q
, q
->read_buf
);
828 spin_unlock_irqrestore(q
->irqlock
, flags
);
833 /* wait until capture is done */
834 retval
= videobuf_waiton(q
->read_buf
, nonblocking
, 1);
838 CALL(q
, sync
, q
, q
->read_buf
);
840 if (VIDEOBUF_ERROR
== q
->read_buf
->state
) {
841 /* catch I/O errors */
842 q
->ops
->buf_release(q
, q
->read_buf
);
849 /* Copy to userspace */
850 retval
= CALL(q
, video_copy_to_user
, q
, data
, count
, nonblocking
);
854 q
->read_off
+= retval
;
855 if (q
->read_off
== q
->read_buf
->size
) {
856 /* all data copied, cleanup */
857 q
->ops
->buf_release(q
, q
->read_buf
);
863 mutex_unlock(&q
->vb_lock
);
867 /* Locking: Caller holds q->vb_lock */
868 static int __videobuf_read_start(struct videobuf_queue
*q
)
870 enum v4l2_field field
;
871 unsigned long flags
= 0;
872 unsigned int count
= 0, size
= 0;
875 q
->ops
->buf_setup(q
, &count
, &size
);
878 if (count
> VIDEO_MAX_FRAME
)
879 count
= VIDEO_MAX_FRAME
;
880 size
= PAGE_ALIGN(size
);
882 err
= __videobuf_mmap_setup(q
, count
, size
, V4L2_MEMORY_USERPTR
);
888 for (i
= 0; i
< count
; i
++) {
889 field
= videobuf_next_field(q
);
890 err
= q
->ops
->buf_prepare(q
, q
->bufs
[i
], field
);
893 list_add_tail(&q
->bufs
[i
]->stream
, &q
->stream
);
895 spin_lock_irqsave(q
->irqlock
, flags
);
896 for (i
= 0; i
< count
; i
++)
897 q
->ops
->buf_queue(q
, q
->bufs
[i
]);
898 spin_unlock_irqrestore(q
->irqlock
, flags
);
903 static void __videobuf_read_stop(struct videobuf_queue
*q
)
907 videobuf_queue_cancel(q
);
908 __videobuf_mmap_free(q
);
909 INIT_LIST_HEAD(&q
->stream
);
910 for (i
= 0; i
< VIDEO_MAX_FRAME
; i
++) {
911 if (NULL
== q
->bufs
[i
])
920 int videobuf_read_start(struct videobuf_queue
*q
)
924 mutex_lock(&q
->vb_lock
);
925 rc
= __videobuf_read_start(q
);
926 mutex_unlock(&q
->vb_lock
);
931 void videobuf_read_stop(struct videobuf_queue
*q
)
933 mutex_lock(&q
->vb_lock
);
934 __videobuf_read_stop(q
);
935 mutex_unlock(&q
->vb_lock
);
938 void videobuf_stop(struct videobuf_queue
*q
)
940 mutex_lock(&q
->vb_lock
);
943 __videobuf_streamoff(q
);
946 __videobuf_read_stop(q
);
948 mutex_unlock(&q
->vb_lock
);
952 ssize_t
videobuf_read_stream(struct videobuf_queue
*q
,
953 char __user
*data
, size_t count
, loff_t
*ppos
,
954 int vbihack
, int nonblocking
)
957 unsigned long flags
= 0;
959 MAGIC_CHECK(q
->int_ops
->magic
, MAGIC_QTYPE_OPS
);
961 dprintk(2, "%s\n", __func__
);
962 mutex_lock(&q
->vb_lock
);
967 retval
= __videobuf_read_start(q
);
974 /* get / wait for data */
975 if (NULL
== q
->read_buf
) {
976 q
->read_buf
= list_entry(q
->stream
.next
,
977 struct videobuf_buffer
,
979 list_del(&q
->read_buf
->stream
);
982 rc
= videobuf_waiton(q
->read_buf
, nonblocking
, 1);
989 if (q
->read_buf
->state
== VIDEOBUF_DONE
) {
990 rc
= CALL(q
, copy_stream
, q
, data
+ retval
, count
,
991 retval
, vbihack
, nonblocking
);
1001 q
->read_off
= q
->read_buf
->size
;
1006 /* requeue buffer when done with copying */
1007 if (q
->read_off
== q
->read_buf
->size
) {
1008 list_add_tail(&q
->read_buf
->stream
,
1010 spin_lock_irqsave(q
->irqlock
, flags
);
1011 q
->ops
->buf_queue(q
, q
->read_buf
);
1012 spin_unlock_irqrestore(q
->irqlock
, flags
);
1020 mutex_unlock(&q
->vb_lock
);
1024 unsigned int videobuf_poll_stream(struct file
*file
,
1025 struct videobuf_queue
*q
,
1028 struct videobuf_buffer
*buf
= NULL
;
1029 unsigned int rc
= 0;
1031 mutex_lock(&q
->vb_lock
);
1033 if (!list_empty(&q
->stream
))
1034 buf
= list_entry(q
->stream
.next
,
1035 struct videobuf_buffer
, stream
);
1038 __videobuf_read_start(q
);
1041 } else if (NULL
== q
->read_buf
) {
1042 q
->read_buf
= list_entry(q
->stream
.next
,
1043 struct videobuf_buffer
,
1045 list_del(&q
->read_buf
->stream
);
1054 poll_wait(file
, &buf
->done
, wait
);
1055 if (buf
->state
== VIDEOBUF_DONE
||
1056 buf
->state
== VIDEOBUF_ERROR
)
1057 rc
= POLLIN
|POLLRDNORM
;
1059 mutex_unlock(&q
->vb_lock
);
1063 int videobuf_mmap_mapper(struct videobuf_queue
*q
,
1064 struct vm_area_struct
*vma
)
1068 MAGIC_CHECK(q
->int_ops
->magic
, MAGIC_QTYPE_OPS
);
1070 mutex_lock(&q
->vb_lock
);
1071 retval
= CALL(q
, mmap_mapper
, q
, vma
);
1073 mutex_unlock(&q
->vb_lock
);
1078 #ifdef CONFIG_VIDEO_V4L1_COMPAT
1079 int videobuf_cgmbuf(struct videobuf_queue
*q
,
1080 struct video_mbuf
*mbuf
, int count
)
1082 struct v4l2_requestbuffers req
;
1085 MAGIC_CHECK(q
->int_ops
->magic
, MAGIC_QTYPE_OPS
);
1087 memset(&req
, 0, sizeof(req
));
1090 req
.memory
= V4L2_MEMORY_MMAP
;
1091 rc
= videobuf_reqbufs(q
, &req
);
1095 mbuf
->frames
= req
.count
;
1097 for (i
= 0; i
< mbuf
->frames
; i
++) {
1098 mbuf
->offsets
[i
] = q
->bufs
[i
]->boff
;
1099 mbuf
->size
+= q
->bufs
[i
]->bsize
;
1104 EXPORT_SYMBOL_GPL(videobuf_cgmbuf
);
1107 /* --------------------------------------------------------------------- */
1109 EXPORT_SYMBOL_GPL(videobuf_waiton
);
1110 EXPORT_SYMBOL_GPL(videobuf_iolock
);
1112 EXPORT_SYMBOL_GPL(videobuf_alloc
);
1114 EXPORT_SYMBOL_GPL(videobuf_queue_core_init
);
1115 EXPORT_SYMBOL_GPL(videobuf_queue_cancel
);
1116 EXPORT_SYMBOL_GPL(videobuf_queue_is_busy
);
1118 EXPORT_SYMBOL_GPL(videobuf_next_field
);
1119 EXPORT_SYMBOL_GPL(videobuf_reqbufs
);
1120 EXPORT_SYMBOL_GPL(videobuf_querybuf
);
1121 EXPORT_SYMBOL_GPL(videobuf_qbuf
);
1122 EXPORT_SYMBOL_GPL(videobuf_dqbuf
);
1123 EXPORT_SYMBOL_GPL(videobuf_streamon
);
1124 EXPORT_SYMBOL_GPL(videobuf_streamoff
);
1126 EXPORT_SYMBOL_GPL(videobuf_read_start
);
1127 EXPORT_SYMBOL_GPL(videobuf_read_stop
);
1128 EXPORT_SYMBOL_GPL(videobuf_stop
);
1129 EXPORT_SYMBOL_GPL(videobuf_read_stream
);
1130 EXPORT_SYMBOL_GPL(videobuf_read_one
);
1131 EXPORT_SYMBOL_GPL(videobuf_poll_stream
);
1133 EXPORT_SYMBOL_GPL(__videobuf_mmap_setup
);
1134 EXPORT_SYMBOL_GPL(videobuf_mmap_setup
);
1135 EXPORT_SYMBOL_GPL(videobuf_mmap_free
);
1136 EXPORT_SYMBOL_GPL(videobuf_mmap_mapper
);