fq_codel: do not include <linux/jhash.h>
[linux-2.6-block.git] / include / media / videobuf2-v4l2.h
CommitLineData
c139990e
JS
1/*
2 * videobuf2-v4l2.h - V4L2 driver helper framework
3 *
4 * Copyright (C) 2010 Samsung Electronics
5 *
6 * Author: Pawel Osciak <pawel@osciak.com>
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation.
11 */
12#ifndef _MEDIA_VIDEOBUF2_V4L2_H
13#define _MEDIA_VIDEOBUF2_V4L2_H
14
2d700715 15#include <linux/videodev2.h>
c139990e
JS
16#include <media/videobuf2-core.h>
17
bed04f93
JS
18#if VB2_MAX_FRAME != VIDEO_MAX_FRAME
19#error VB2_MAX_FRAME != VIDEO_MAX_FRAME
20#endif
21
22#if VB2_MAX_PLANES != VIDEO_MAX_PLANES
23#error VB2_MAX_PLANES != VIDEO_MAX_PLANES
24#endif
25
2d700715 26/**
9fbe71b4 27 * struct vb2_v4l2_buffer - video buffer information for v4l2.
bf4404b4 28 *
9fbe71b4
MCC
29 * @vb2_buf: embedded struct &vb2_buffer.
30 * @flags: buffer informational flags.
31 * @field: field order of the image in the buffer, as defined by
32 * &enum v4l2_field.
33 * @timecode: frame timecode.
34 * @sequence: sequence count of this frame.
394dc588 35 * @request_fd: the request_fd associated with this buffer
db6e8d57 36 * @planes: plane information (userptr/fd, length, bytesused, data_offset).
bf4404b4 37 *
2d700715 38 * Should contain enough information to be able to cover all the fields
9fbe71b4 39 * of &struct v4l2_buffer at ``videodev2.h``.
2d700715
JS
40 */
41struct vb2_v4l2_buffer {
42 struct vb2_buffer vb2_buf;
43
44 __u32 flags;
45 __u32 field;
2d700715
JS
46 struct v4l2_timecode timecode;
47 __u32 sequence;
394dc588 48 __s32 request_fd;
db6e8d57 49 struct vb2_plane planes[VB2_MAX_PLANES];
2d700715
JS
50};
51
d383b579 52/*
2d700715
JS
53 * to_vb2_v4l2_buffer() - cast struct vb2_buffer * to struct vb2_v4l2_buffer *
54 */
55#define to_vb2_v4l2_buffer(vb) \
d383b579 56 container_of(vb, struct vb2_v4l2_buffer, vb2_buf)
2d700715 57
245ede42
HV
58/**
59 * vb2_find_timestamp() - Find buffer with given timestamp in the queue
60 *
61 * @q: pointer to &struct vb2_queue with videobuf2 queue.
03535e7a 62 * @timestamp: the timestamp to find.
245ede42
HV
63 * @start_idx: the start index (usually 0) in the buffer array to start
64 * searching from. Note that there may be multiple buffers
65 * with the same timestamp value, so you can restart the search
66 * by setting @start_idx to the previously found index + 1.
67 *
68 * Returns the buffer index of the buffer with the given @timestamp, or
69 * -1 if no buffer with @timestamp was found.
70 */
71int vb2_find_timestamp(const struct vb2_queue *q, u64 timestamp,
72 unsigned int start_idx);
73
3c5be988 74int vb2_querybuf(struct vb2_queue *q, struct v4l2_buffer *b);
24ade5b6
MCC
75
76/**
77 * vb2_reqbufs() - Wrapper for vb2_core_reqbufs() that also verifies
78 * the memory and type values.
bf4404b4 79 *
9fbe71b4
MCC
80 * @q: pointer to &struct vb2_queue with videobuf2 queue.
81 * @req: &struct v4l2_requestbuffers passed from userspace to
82 * &v4l2_ioctl_ops->vidioc_reqbufs handler in driver.
24ade5b6 83 */
3c5be988
JS
84int vb2_reqbufs(struct vb2_queue *q, struct v4l2_requestbuffers *req);
85
24ade5b6
MCC
86/**
87 * vb2_create_bufs() - Wrapper for vb2_core_create_bufs() that also verifies
88 * the memory and type values.
bf4404b4 89 *
9fbe71b4
MCC
90 * @q: pointer to &struct vb2_queue with videobuf2 queue.
91 * @create: creation parameters, passed from userspace to
92 * &v4l2_ioctl_ops->vidioc_create_bufs handler in driver
24ade5b6 93 */
3c5be988 94int vb2_create_bufs(struct vb2_queue *q, struct v4l2_create_buffers *create);
24ade5b6
MCC
95
96/**
97 * vb2_prepare_buf() - Pass ownership of a buffer from userspace to the kernel
bf4404b4 98 *
9fbe71b4 99 * @q: pointer to &struct vb2_queue with videobuf2 queue.
394dc588 100 * @mdev: pointer to &struct media_device, may be NULL.
9fbe71b4
MCC
101 * @b: buffer structure passed from userspace to
102 * &v4l2_ioctl_ops->vidioc_prepare_buf handler in driver
103 *
104 * Should be called from &v4l2_ioctl_ops->vidioc_prepare_buf ioctl handler
105 * of a driver.
24ade5b6 106 *
24ade5b6 107 * This function:
bf4404b4
MCC
108 *
109 * #) verifies the passed buffer,
9fbe71b4
MCC
110 * #) calls &vb2_ops->buf_prepare callback in the driver (if provided),
111 * in which driver-specific buffer initialization can be performed.
394dc588
HV
112 * #) if @b->request_fd is non-zero and @mdev->ops->req_queue is set,
113 * then bind the prepared buffer to the request.
24ade5b6
MCC
114 *
115 * The return values from this function are intended to be directly returned
9fbe71b4 116 * from &v4l2_ioctl_ops->vidioc_prepare_buf handler in driver.
24ade5b6 117 */
394dc588
HV
118int vb2_prepare_buf(struct vb2_queue *q, struct media_device *mdev,
119 struct v4l2_buffer *b);
3c5be988 120
24ade5b6
MCC
121/**
122 * vb2_qbuf() - Queue a buffer from userspace
9fbe71b4 123 * @q: pointer to &struct vb2_queue with videobuf2 queue.
394dc588 124 * @mdev: pointer to &struct media_device, may be NULL.
9fbe71b4
MCC
125 * @b: buffer structure passed from userspace to
126 * &v4l2_ioctl_ops->vidioc_qbuf handler in driver
24ade5b6 127 *
9fbe71b4 128 * Should be called from &v4l2_ioctl_ops->vidioc_qbuf handler of a driver.
bf4404b4 129 *
24ade5b6 130 * This function:
bf4404b4 131 *
9fbe71b4 132 * #) verifies the passed buffer;
394dc588
HV
133 * #) if @b->request_fd is non-zero and @mdev->ops->req_queue is set,
134 * then bind the buffer to the request.
9fbe71b4
MCC
135 * #) if necessary, calls &vb2_ops->buf_prepare callback in the driver
136 * (if provided), in which driver-specific buffer initialization can
137 * be performed;
138 * #) if streaming is on, queues the buffer in driver by the means of
139 * &vb2_ops->buf_queue callback for processing.
24ade5b6
MCC
140 *
141 * The return values from this function are intended to be directly returned
9fbe71b4 142 * from &v4l2_ioctl_ops->vidioc_qbuf handler in driver.
24ade5b6 143 */
394dc588
HV
144int vb2_qbuf(struct vb2_queue *q, struct media_device *mdev,
145 struct v4l2_buffer *b);
24ade5b6
MCC
146
147/**
148 * vb2_expbuf() - Export a buffer as a file descriptor
9fbe71b4
MCC
149 * @q: pointer to &struct vb2_queue with videobuf2 queue.
150 * @eb: export buffer structure passed from userspace to
151 * &v4l2_ioctl_ops->vidioc_expbuf handler in driver
24ade5b6
MCC
152 *
153 * The return values from this function are intended to be directly returned
9fbe71b4 154 * from &v4l2_ioctl_ops->vidioc_expbuf handler in driver.
24ade5b6 155 */
3c5be988 156int vb2_expbuf(struct vb2_queue *q, struct v4l2_exportbuffer *eb);
24ade5b6
MCC
157
158/**
159 * vb2_dqbuf() - Dequeue a buffer to the userspace
9fbe71b4
MCC
160 * @q: pointer to &struct vb2_queue with videobuf2 queue.
161 * @b: buffer structure passed from userspace to
162 * &v4l2_ioctl_ops->vidioc_dqbuf handler in driver
24ade5b6
MCC
163 * @nonblocking: if true, this call will not sleep waiting for a buffer if no
164 * buffers ready for dequeuing are present. Normally the driver
9fbe71b4 165 * would be passing (&file->f_flags & %O_NONBLOCK) here
24ade5b6 166 *
9fbe71b4
MCC
167 * Should be called from &v4l2_ioctl_ops->vidioc_dqbuf ioctl handler
168 * of a driver.
bf4404b4 169 *
24ade5b6 170 * This function:
bf4404b4 171 *
9fbe71b4
MCC
172 * #) verifies the passed buffer;
173 * #) calls &vb2_ops->buf_finish callback in the driver (if provided), in which
24ade5b6 174 * driver can perform any additional operations that may be required before
9fbe71b4 175 * returning the buffer to userspace, such as cache sync;
bf4404b4 176 * #) the buffer struct members are filled with relevant information for
24ade5b6
MCC
177 * the userspace.
178 *
179 * The return values from this function are intended to be directly returned
9fbe71b4 180 * from &v4l2_ioctl_ops->vidioc_dqbuf handler in driver.
24ade5b6 181 */
3c5be988
JS
182int vb2_dqbuf(struct vb2_queue *q, struct v4l2_buffer *b, bool nonblocking);
183
24ade5b6
MCC
184/**
185 * vb2_streamon - start streaming
9fbe71b4
MCC
186 * @q: pointer to &struct vb2_queue with videobuf2 queue.
187 * @type: type argument passed from userspace to vidioc_streamon handler,
188 * as defined by &enum v4l2_buf_type.
24ade5b6 189 *
9fbe71b4 190 * Should be called from &v4l2_ioctl_ops->vidioc_streamon handler of a driver.
bf4404b4 191 *
24ade5b6 192 * This function:
bf4404b4 193 *
24ade5b6
MCC
194 * 1) verifies current state
195 * 2) passes any previously queued buffers to the driver and starts streaming
196 *
197 * The return values from this function are intended to be directly returned
9fbe71b4 198 * from &v4l2_ioctl_ops->vidioc_streamon handler in the driver.
24ade5b6 199 */
3c5be988 200int vb2_streamon(struct vb2_queue *q, enum v4l2_buf_type type);
24ade5b6
MCC
201
202/**
203 * vb2_streamoff - stop streaming
9fbe71b4 204 * @q: pointer to &struct vb2_queue with videobuf2 queue.
24ade5b6
MCC
205 * @type: type argument passed from userspace to vidioc_streamoff handler
206 *
207 * Should be called from vidioc_streamoff handler of a driver.
bf4404b4 208 *
24ade5b6 209 * This function:
bf4404b4
MCC
210 *
211 * #) verifies current state,
212 * #) stop streaming and dequeues any queued buffers, including those previously
24ade5b6
MCC
213 * passed to the driver (after waiting for the driver to finish).
214 *
215 * This call can be used for pausing playback.
216 * The return values from this function are intended to be directly returned
217 * from vidioc_streamoff handler in the driver
218 */
3c5be988
JS
219int vb2_streamoff(struct vb2_queue *q, enum v4l2_buf_type type);
220
24ade5b6
MCC
221/**
222 * vb2_queue_init() - initialize a videobuf2 queue
9fbe71b4 223 * @q: pointer to &struct vb2_queue with videobuf2 queue.
24ade5b6
MCC
224 *
225 * The vb2_queue structure should be allocated by the driver. The driver is
226 * responsible of clearing it's content and setting initial values for some
227 * required entries before calling this function.
228 * q->ops, q->mem_ops, q->type and q->io_modes are mandatory. Please refer
229 * to the struct vb2_queue description in include/media/videobuf2-core.h
230 * for more information.
231 */
3c5be988 232int __must_check vb2_queue_init(struct vb2_queue *q);
24ade5b6
MCC
233
234/**
235 * vb2_queue_release() - stop streaming, release the queue and free memory
9fbe71b4 236 * @q: pointer to &struct vb2_queue with videobuf2 queue.
24ade5b6
MCC
237 *
238 * This function stops streaming and performs necessary clean ups, including
239 * freeing video buffer memory. The driver is responsible for freeing
240 * the vb2_queue structure itself.
241 */
3c5be988 242void vb2_queue_release(struct vb2_queue *q);
24ade5b6
MCC
243
244/**
245 * vb2_poll() - implements poll userspace operation
9fbe71b4 246 * @q: pointer to &struct vb2_queue with videobuf2 queue.
24ade5b6
MCC
247 * @file: file argument passed to the poll file operation handler
248 * @wait: wait argument passed to the poll file operation handler
249 *
250 * This function implements poll file operation handler for a driver.
251 * For CAPTURE queues, if a buffer is ready to be dequeued, the userspace will
252 * be informed that the file descriptor of a video device is available for
253 * reading.
254 * For OUTPUT queues, if a buffer is ready to be dequeued, the file descriptor
255 * will be reported as available for writing.
256 *
257 * If the driver uses struct v4l2_fh, then vb2_poll() will also check for any
258 * pending events.
259 *
260 * The return values from this function are intended to be directly returned
261 * from poll handler in driver.
262 */
c23e0cb8 263__poll_t vb2_poll(struct vb2_queue *q, struct file *file, poll_table *wait);
3c5be988
JS
264
265/*
266 * The following functions are not part of the vb2 core API, but are simple
267 * helper functions that you can use in your struct v4l2_file_operations,
268 * struct v4l2_ioctl_ops and struct vb2_ops. They will serialize if vb2_queue->lock
269 * or video_device->lock is set, and they will set and test vb2_queue->owner
270 * to check if the calling filehandle is permitted to do the queuing operation.
271 */
272
273/* struct v4l2_ioctl_ops helpers */
274
275int vb2_ioctl_reqbufs(struct file *file, void *priv,
276 struct v4l2_requestbuffers *p);
277int vb2_ioctl_create_bufs(struct file *file, void *priv,
278 struct v4l2_create_buffers *p);
279int vb2_ioctl_prepare_buf(struct file *file, void *priv,
280 struct v4l2_buffer *p);
281int vb2_ioctl_querybuf(struct file *file, void *priv, struct v4l2_buffer *p);
282int vb2_ioctl_qbuf(struct file *file, void *priv, struct v4l2_buffer *p);
283int vb2_ioctl_dqbuf(struct file *file, void *priv, struct v4l2_buffer *p);
284int vb2_ioctl_streamon(struct file *file, void *priv, enum v4l2_buf_type i);
285int vb2_ioctl_streamoff(struct file *file, void *priv, enum v4l2_buf_type i);
286int vb2_ioctl_expbuf(struct file *file, void *priv,
287 struct v4l2_exportbuffer *p);
288
289/* struct v4l2_file_operations helpers */
290
291int vb2_fop_mmap(struct file *file, struct vm_area_struct *vma);
292int vb2_fop_release(struct file *file);
293int _vb2_fop_release(struct file *file, struct mutex *lock);
294ssize_t vb2_fop_write(struct file *file, const char __user *buf,
295 size_t count, loff_t *ppos);
296ssize_t vb2_fop_read(struct file *file, char __user *buf,
297 size_t count, loff_t *ppos);
c23e0cb8 298__poll_t vb2_fop_poll(struct file *file, poll_table *wait);
3c5be988
JS
299#ifndef CONFIG_MMU
300unsigned long vb2_fop_get_unmapped_area(struct file *file, unsigned long addr,
301 unsigned long len, unsigned long pgoff, unsigned long flags);
302#endif
303
dba2d12a
MCC
304/**
305 * vb2_ops_wait_prepare - helper function to lock a struct &vb2_queue
306 *
9fbe71b4 307 * @vq: pointer to &struct vb2_queue
dba2d12a
MCC
308 *
309 * ..note:: only use if vq->lock is non-NULL.
310 */
3c5be988 311void vb2_ops_wait_prepare(struct vb2_queue *vq);
dba2d12a
MCC
312
313/**
314 * vb2_ops_wait_finish - helper function to unlock a struct &vb2_queue
315 *
9fbe71b4 316 * @vq: pointer to &struct vb2_queue
dba2d12a
MCC
317 *
318 * ..note:: only use if vq->lock is non-NULL.
319 */
3c5be988
JS
320void vb2_ops_wait_finish(struct vb2_queue *vq);
321
86f6bd3c
HV
322struct media_request;
323int vb2_request_validate(struct media_request *req);
324void vb2_request_queue(struct media_request *req);
325
c139990e 326#endif /* _MEDIA_VIDEOBUF2_V4L2_H */