blob: 727855463838c9e1773897ae66427a0226e09ede [file] [log] [blame]
Junghak Sungc1399902015-09-22 10:30:29 -03001/*
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
Junghak Sung2d700712015-09-22 10:30:30 -030015#include <linux/videodev2.h>
Junghak Sungc1399902015-09-22 10:30:29 -030016#include <media/videobuf2-core.h>
17
Junghak Sungbed04f92015-10-06 06:37:47 -030018#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
Junghak Sung2d700712015-09-22 10:30:30 -030026/**
Mauro Carvalho Chehab9fbe71b2017-10-09 05:36:52 -040027 * struct vb2_v4l2_buffer - video buffer information for v4l2.
Mauro Carvalho Chehabbf4404b2016-09-08 18:01:44 -030028 *
Mauro Carvalho Chehab9fbe71b2017-10-09 05:36:52 -040029 * @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.
Hans Verkuil394dc582018-05-30 02:46:22 -040035 * @request_fd: the request_fd associated with this buffer
Hans Verkuildb6e8d52018-05-21 04:54:45 -040036 * @planes: plane information (userptr/fd, length, bytesused, data_offset).
Mauro Carvalho Chehabbf4404b2016-09-08 18:01:44 -030037 *
Junghak Sung2d700712015-09-22 10:30:30 -030038 * Should contain enough information to be able to cover all the fields
Mauro Carvalho Chehab9fbe71b2017-10-09 05:36:52 -040039 * of &struct v4l2_buffer at ``videodev2.h``.
Junghak Sung2d700712015-09-22 10:30:30 -030040 */
41struct vb2_v4l2_buffer {
42 struct vb2_buffer vb2_buf;
43
44 __u32 flags;
45 __u32 field;
Junghak Sung2d700712015-09-22 10:30:30 -030046 struct v4l2_timecode timecode;
47 __u32 sequence;
Hans Verkuil394dc582018-05-30 02:46:22 -040048 __s32 request_fd;
Hans Verkuildb6e8d52018-05-21 04:54:45 -040049 struct vb2_plane planes[VB2_MAX_PLANES];
Junghak Sung2d700712015-09-22 10:30:30 -030050};
51
Mauro Carvalho Chehabd383b572015-10-01 14:23:35 -030052/*
Junghak Sung2d700712015-09-22 10:30:30 -030053 * to_vb2_v4l2_buffer() - cast struct vb2_buffer * to struct vb2_v4l2_buffer *
54 */
55#define to_vb2_v4l2_buffer(vb) \
Mauro Carvalho Chehabd383b572015-10-01 14:23:35 -030056 container_of(vb, struct vb2_v4l2_buffer, vb2_buf)
Junghak Sung2d700712015-09-22 10:30:30 -030057
Junghak Sung3c5be982015-10-06 06:37:49 -030058int vb2_querybuf(struct vb2_queue *q, struct v4l2_buffer *b);
Mauro Carvalho Chehab24ade5b2016-09-08 14:22:00 -030059
60/**
61 * vb2_reqbufs() - Wrapper for vb2_core_reqbufs() that also verifies
62 * the memory and type values.
Mauro Carvalho Chehabbf4404b2016-09-08 18:01:44 -030063 *
Mauro Carvalho Chehab9fbe71b2017-10-09 05:36:52 -040064 * @q: pointer to &struct vb2_queue with videobuf2 queue.
65 * @req: &struct v4l2_requestbuffers passed from userspace to
66 * &v4l2_ioctl_ops->vidioc_reqbufs handler in driver.
Mauro Carvalho Chehab24ade5b2016-09-08 14:22:00 -030067 */
Junghak Sung3c5be982015-10-06 06:37:49 -030068int vb2_reqbufs(struct vb2_queue *q, struct v4l2_requestbuffers *req);
69
Mauro Carvalho Chehab24ade5b2016-09-08 14:22:00 -030070/**
71 * vb2_create_bufs() - Wrapper for vb2_core_create_bufs() that also verifies
72 * the memory and type values.
Mauro Carvalho Chehabbf4404b2016-09-08 18:01:44 -030073 *
Mauro Carvalho Chehab9fbe71b2017-10-09 05:36:52 -040074 * @q: pointer to &struct vb2_queue with videobuf2 queue.
75 * @create: creation parameters, passed from userspace to
76 * &v4l2_ioctl_ops->vidioc_create_bufs handler in driver
Mauro Carvalho Chehab24ade5b2016-09-08 14:22:00 -030077 */
Junghak Sung3c5be982015-10-06 06:37:49 -030078int vb2_create_bufs(struct vb2_queue *q, struct v4l2_create_buffers *create);
Mauro Carvalho Chehab24ade5b2016-09-08 14:22:00 -030079
80/**
81 * vb2_prepare_buf() - Pass ownership of a buffer from userspace to the kernel
Mauro Carvalho Chehabbf4404b2016-09-08 18:01:44 -030082 *
Mauro Carvalho Chehab9fbe71b2017-10-09 05:36:52 -040083 * @q: pointer to &struct vb2_queue with videobuf2 queue.
Hans Verkuil394dc582018-05-30 02:46:22 -040084 * @mdev: pointer to &struct media_device, may be NULL.
Mauro Carvalho Chehab9fbe71b2017-10-09 05:36:52 -040085 * @b: buffer structure passed from userspace to
86 * &v4l2_ioctl_ops->vidioc_prepare_buf handler in driver
Mauro Carvalho Chehab24ade5b2016-09-08 14:22:00 -030087 *
Mauro Carvalho Chehab9fbe71b2017-10-09 05:36:52 -040088 * Should be called from &v4l2_ioctl_ops->vidioc_prepare_buf ioctl handler
89 * of a driver.
90 *
Mauro Carvalho Chehab24ade5b2016-09-08 14:22:00 -030091 * This function:
Mauro Carvalho Chehabbf4404b2016-09-08 18:01:44 -030092 *
93 * #) verifies the passed buffer,
Mauro Carvalho Chehab9fbe71b2017-10-09 05:36:52 -040094 * #) calls &vb2_ops->buf_prepare callback in the driver (if provided),
95 * in which driver-specific buffer initialization can be performed.
Hans Verkuil394dc582018-05-30 02:46:22 -040096 * #) if @b->request_fd is non-zero and @mdev->ops->req_queue is set,
97 * then bind the prepared buffer to the request.
Mauro Carvalho Chehab24ade5b2016-09-08 14:22:00 -030098 *
99 * The return values from this function are intended to be directly returned
Mauro Carvalho Chehab9fbe71b2017-10-09 05:36:52 -0400100 * from &v4l2_ioctl_ops->vidioc_prepare_buf handler in driver.
Mauro Carvalho Chehab24ade5b2016-09-08 14:22:00 -0300101 */
Hans Verkuil394dc582018-05-30 02:46:22 -0400102int vb2_prepare_buf(struct vb2_queue *q, struct media_device *mdev,
103 struct v4l2_buffer *b);
Junghak Sung3c5be982015-10-06 06:37:49 -0300104
Mauro Carvalho Chehab24ade5b2016-09-08 14:22:00 -0300105/**
106 * vb2_qbuf() - Queue a buffer from userspace
Mauro Carvalho Chehab9fbe71b2017-10-09 05:36:52 -0400107 * @q: pointer to &struct vb2_queue with videobuf2 queue.
Hans Verkuil394dc582018-05-30 02:46:22 -0400108 * @mdev: pointer to &struct media_device, may be NULL.
Mauro Carvalho Chehab9fbe71b2017-10-09 05:36:52 -0400109 * @b: buffer structure passed from userspace to
110 * &v4l2_ioctl_ops->vidioc_qbuf handler in driver
Mauro Carvalho Chehab24ade5b2016-09-08 14:22:00 -0300111 *
Mauro Carvalho Chehab9fbe71b2017-10-09 05:36:52 -0400112 * Should be called from &v4l2_ioctl_ops->vidioc_qbuf handler of a driver.
Mauro Carvalho Chehabbf4404b2016-09-08 18:01:44 -0300113 *
Mauro Carvalho Chehab24ade5b2016-09-08 14:22:00 -0300114 * This function:
Mauro Carvalho Chehabbf4404b2016-09-08 18:01:44 -0300115 *
Mauro Carvalho Chehab9fbe71b2017-10-09 05:36:52 -0400116 * #) verifies the passed buffer;
Hans Verkuil394dc582018-05-30 02:46:22 -0400117 * #) if @b->request_fd is non-zero and @mdev->ops->req_queue is set,
118 * then bind the buffer to the request.
Mauro Carvalho Chehab9fbe71b2017-10-09 05:36:52 -0400119 * #) if necessary, calls &vb2_ops->buf_prepare callback in the driver
120 * (if provided), in which driver-specific buffer initialization can
121 * be performed;
122 * #) if streaming is on, queues the buffer in driver by the means of
123 * &vb2_ops->buf_queue callback for processing.
Mauro Carvalho Chehab24ade5b2016-09-08 14:22:00 -0300124 *
125 * The return values from this function are intended to be directly returned
Mauro Carvalho Chehab9fbe71b2017-10-09 05:36:52 -0400126 * from &v4l2_ioctl_ops->vidioc_qbuf handler in driver.
Mauro Carvalho Chehab24ade5b2016-09-08 14:22:00 -0300127 */
Hans Verkuil394dc582018-05-30 02:46:22 -0400128int vb2_qbuf(struct vb2_queue *q, struct media_device *mdev,
129 struct v4l2_buffer *b);
Mauro Carvalho Chehab24ade5b2016-09-08 14:22:00 -0300130
131/**
132 * vb2_expbuf() - Export a buffer as a file descriptor
Mauro Carvalho Chehab9fbe71b2017-10-09 05:36:52 -0400133 * @q: pointer to &struct vb2_queue with videobuf2 queue.
134 * @eb: export buffer structure passed from userspace to
135 * &v4l2_ioctl_ops->vidioc_expbuf handler in driver
Mauro Carvalho Chehab24ade5b2016-09-08 14:22:00 -0300136 *
137 * The return values from this function are intended to be directly returned
Mauro Carvalho Chehab9fbe71b2017-10-09 05:36:52 -0400138 * from &v4l2_ioctl_ops->vidioc_expbuf handler in driver.
Mauro Carvalho Chehab24ade5b2016-09-08 14:22:00 -0300139 */
Junghak Sung3c5be982015-10-06 06:37:49 -0300140int vb2_expbuf(struct vb2_queue *q, struct v4l2_exportbuffer *eb);
Mauro Carvalho Chehab24ade5b2016-09-08 14:22:00 -0300141
142/**
143 * vb2_dqbuf() - Dequeue a buffer to the userspace
Mauro Carvalho Chehab9fbe71b2017-10-09 05:36:52 -0400144 * @q: pointer to &struct vb2_queue with videobuf2 queue.
145 * @b: buffer structure passed from userspace to
146 * &v4l2_ioctl_ops->vidioc_dqbuf handler in driver
Mauro Carvalho Chehab24ade5b2016-09-08 14:22:00 -0300147 * @nonblocking: if true, this call will not sleep waiting for a buffer if no
148 * buffers ready for dequeuing are present. Normally the driver
Mauro Carvalho Chehab9fbe71b2017-10-09 05:36:52 -0400149 * would be passing (&file->f_flags & %O_NONBLOCK) here
Mauro Carvalho Chehab24ade5b2016-09-08 14:22:00 -0300150 *
Mauro Carvalho Chehab9fbe71b2017-10-09 05:36:52 -0400151 * Should be called from &v4l2_ioctl_ops->vidioc_dqbuf ioctl handler
152 * of a driver.
Mauro Carvalho Chehabbf4404b2016-09-08 18:01:44 -0300153 *
Mauro Carvalho Chehab24ade5b2016-09-08 14:22:00 -0300154 * This function:
Mauro Carvalho Chehabbf4404b2016-09-08 18:01:44 -0300155 *
Mauro Carvalho Chehab9fbe71b2017-10-09 05:36:52 -0400156 * #) verifies the passed buffer;
157 * #) calls &vb2_ops->buf_finish callback in the driver (if provided), in which
Mauro Carvalho Chehab24ade5b2016-09-08 14:22:00 -0300158 * driver can perform any additional operations that may be required before
Mauro Carvalho Chehab9fbe71b2017-10-09 05:36:52 -0400159 * returning the buffer to userspace, such as cache sync;
Mauro Carvalho Chehabbf4404b2016-09-08 18:01:44 -0300160 * #) the buffer struct members are filled with relevant information for
Mauro Carvalho Chehab24ade5b2016-09-08 14:22:00 -0300161 * the userspace.
162 *
163 * The return values from this function are intended to be directly returned
Mauro Carvalho Chehab9fbe71b2017-10-09 05:36:52 -0400164 * from &v4l2_ioctl_ops->vidioc_dqbuf handler in driver.
Mauro Carvalho Chehab24ade5b2016-09-08 14:22:00 -0300165 */
Junghak Sung3c5be982015-10-06 06:37:49 -0300166int vb2_dqbuf(struct vb2_queue *q, struct v4l2_buffer *b, bool nonblocking);
167
Mauro Carvalho Chehab24ade5b2016-09-08 14:22:00 -0300168/**
169 * vb2_streamon - start streaming
Mauro Carvalho Chehab9fbe71b2017-10-09 05:36:52 -0400170 * @q: pointer to &struct vb2_queue with videobuf2 queue.
171 * @type: type argument passed from userspace to vidioc_streamon handler,
172 * as defined by &enum v4l2_buf_type.
Mauro Carvalho Chehab24ade5b2016-09-08 14:22:00 -0300173 *
Mauro Carvalho Chehab9fbe71b2017-10-09 05:36:52 -0400174 * Should be called from &v4l2_ioctl_ops->vidioc_streamon handler of a driver.
Mauro Carvalho Chehabbf4404b2016-09-08 18:01:44 -0300175 *
Mauro Carvalho Chehab24ade5b2016-09-08 14:22:00 -0300176 * This function:
Mauro Carvalho Chehabbf4404b2016-09-08 18:01:44 -0300177 *
Mauro Carvalho Chehab24ade5b2016-09-08 14:22:00 -0300178 * 1) verifies current state
179 * 2) passes any previously queued buffers to the driver and starts streaming
180 *
181 * The return values from this function are intended to be directly returned
Mauro Carvalho Chehab9fbe71b2017-10-09 05:36:52 -0400182 * from &v4l2_ioctl_ops->vidioc_streamon handler in the driver.
Mauro Carvalho Chehab24ade5b2016-09-08 14:22:00 -0300183 */
Junghak Sung3c5be982015-10-06 06:37:49 -0300184int vb2_streamon(struct vb2_queue *q, enum v4l2_buf_type type);
Mauro Carvalho Chehab24ade5b2016-09-08 14:22:00 -0300185
186/**
187 * vb2_streamoff - stop streaming
Mauro Carvalho Chehab9fbe71b2017-10-09 05:36:52 -0400188 * @q: pointer to &struct vb2_queue with videobuf2 queue.
Mauro Carvalho Chehab24ade5b2016-09-08 14:22:00 -0300189 * @type: type argument passed from userspace to vidioc_streamoff handler
190 *
191 * Should be called from vidioc_streamoff handler of a driver.
Mauro Carvalho Chehabbf4404b2016-09-08 18:01:44 -0300192 *
Mauro Carvalho Chehab24ade5b2016-09-08 14:22:00 -0300193 * This function:
Mauro Carvalho Chehabbf4404b2016-09-08 18:01:44 -0300194 *
195 * #) verifies current state,
196 * #) stop streaming and dequeues any queued buffers, including those previously
Mauro Carvalho Chehab24ade5b2016-09-08 14:22:00 -0300197 * passed to the driver (after waiting for the driver to finish).
198 *
199 * This call can be used for pausing playback.
200 * The return values from this function are intended to be directly returned
201 * from vidioc_streamoff handler in the driver
202 */
Junghak Sung3c5be982015-10-06 06:37:49 -0300203int vb2_streamoff(struct vb2_queue *q, enum v4l2_buf_type type);
204
Mauro Carvalho Chehab24ade5b2016-09-08 14:22:00 -0300205/**
206 * vb2_queue_init() - initialize a videobuf2 queue
Mauro Carvalho Chehab9fbe71b2017-10-09 05:36:52 -0400207 * @q: pointer to &struct vb2_queue with videobuf2 queue.
Mauro Carvalho Chehab24ade5b2016-09-08 14:22:00 -0300208 *
209 * The vb2_queue structure should be allocated by the driver. The driver is
210 * responsible of clearing it's content and setting initial values for some
211 * required entries before calling this function.
212 * q->ops, q->mem_ops, q->type and q->io_modes are mandatory. Please refer
213 * to the struct vb2_queue description in include/media/videobuf2-core.h
214 * for more information.
215 */
Junghak Sung3c5be982015-10-06 06:37:49 -0300216int __must_check vb2_queue_init(struct vb2_queue *q);
Mauro Carvalho Chehab24ade5b2016-09-08 14:22:00 -0300217
218/**
219 * vb2_queue_release() - stop streaming, release the queue and free memory
Mauro Carvalho Chehab9fbe71b2017-10-09 05:36:52 -0400220 * @q: pointer to &struct vb2_queue with videobuf2 queue.
Mauro Carvalho Chehab24ade5b2016-09-08 14:22:00 -0300221 *
222 * This function stops streaming and performs necessary clean ups, including
223 * freeing video buffer memory. The driver is responsible for freeing
224 * the vb2_queue structure itself.
225 */
Junghak Sung3c5be982015-10-06 06:37:49 -0300226void vb2_queue_release(struct vb2_queue *q);
Mauro Carvalho Chehab24ade5b2016-09-08 14:22:00 -0300227
228/**
229 * vb2_poll() - implements poll userspace operation
Mauro Carvalho Chehab9fbe71b2017-10-09 05:36:52 -0400230 * @q: pointer to &struct vb2_queue with videobuf2 queue.
Mauro Carvalho Chehab24ade5b2016-09-08 14:22:00 -0300231 * @file: file argument passed to the poll file operation handler
232 * @wait: wait argument passed to the poll file operation handler
233 *
234 * This function implements poll file operation handler for a driver.
235 * For CAPTURE queues, if a buffer is ready to be dequeued, the userspace will
236 * be informed that the file descriptor of a video device is available for
237 * reading.
238 * For OUTPUT queues, if a buffer is ready to be dequeued, the file descriptor
239 * will be reported as available for writing.
240 *
241 * If the driver uses struct v4l2_fh, then vb2_poll() will also check for any
242 * pending events.
243 *
244 * The return values from this function are intended to be directly returned
245 * from poll handler in driver.
246 */
Al Viroc23e0cb2017-07-03 03:02:56 -0400247__poll_t vb2_poll(struct vb2_queue *q, struct file *file, poll_table *wait);
Junghak Sung3c5be982015-10-06 06:37:49 -0300248
249/*
250 * The following functions are not part of the vb2 core API, but are simple
251 * helper functions that you can use in your struct v4l2_file_operations,
252 * struct v4l2_ioctl_ops and struct vb2_ops. They will serialize if vb2_queue->lock
253 * or video_device->lock is set, and they will set and test vb2_queue->owner
254 * to check if the calling filehandle is permitted to do the queuing operation.
255 */
256
257/* struct v4l2_ioctl_ops helpers */
258
259int vb2_ioctl_reqbufs(struct file *file, void *priv,
260 struct v4l2_requestbuffers *p);
261int vb2_ioctl_create_bufs(struct file *file, void *priv,
262 struct v4l2_create_buffers *p);
263int vb2_ioctl_prepare_buf(struct file *file, void *priv,
264 struct v4l2_buffer *p);
265int vb2_ioctl_querybuf(struct file *file, void *priv, struct v4l2_buffer *p);
266int vb2_ioctl_qbuf(struct file *file, void *priv, struct v4l2_buffer *p);
267int vb2_ioctl_dqbuf(struct file *file, void *priv, struct v4l2_buffer *p);
268int vb2_ioctl_streamon(struct file *file, void *priv, enum v4l2_buf_type i);
269int vb2_ioctl_streamoff(struct file *file, void *priv, enum v4l2_buf_type i);
270int vb2_ioctl_expbuf(struct file *file, void *priv,
271 struct v4l2_exportbuffer *p);
272
273/* struct v4l2_file_operations helpers */
274
275int vb2_fop_mmap(struct file *file, struct vm_area_struct *vma);
276int vb2_fop_release(struct file *file);
277int _vb2_fop_release(struct file *file, struct mutex *lock);
278ssize_t vb2_fop_write(struct file *file, const char __user *buf,
279 size_t count, loff_t *ppos);
280ssize_t vb2_fop_read(struct file *file, char __user *buf,
281 size_t count, loff_t *ppos);
Al Viroc23e0cb2017-07-03 03:02:56 -0400282__poll_t vb2_fop_poll(struct file *file, poll_table *wait);
Junghak Sung3c5be982015-10-06 06:37:49 -0300283#ifndef CONFIG_MMU
284unsigned long vb2_fop_get_unmapped_area(struct file *file, unsigned long addr,
285 unsigned long len, unsigned long pgoff, unsigned long flags);
286#endif
287
Mauro Carvalho Chehabdba2d122016-09-08 18:12:18 -0300288/**
289 * vb2_ops_wait_prepare - helper function to lock a struct &vb2_queue
290 *
Mauro Carvalho Chehab9fbe71b2017-10-09 05:36:52 -0400291 * @vq: pointer to &struct vb2_queue
Mauro Carvalho Chehabdba2d122016-09-08 18:12:18 -0300292 *
293 * ..note:: only use if vq->lock is non-NULL.
294 */
Junghak Sung3c5be982015-10-06 06:37:49 -0300295void vb2_ops_wait_prepare(struct vb2_queue *vq);
Mauro Carvalho Chehabdba2d122016-09-08 18:12:18 -0300296
297/**
298 * vb2_ops_wait_finish - helper function to unlock a struct &vb2_queue
299 *
Mauro Carvalho Chehab9fbe71b2017-10-09 05:36:52 -0400300 * @vq: pointer to &struct vb2_queue
Mauro Carvalho Chehabdba2d122016-09-08 18:12:18 -0300301 *
302 * ..note:: only use if vq->lock is non-NULL.
303 */
Junghak Sung3c5be982015-10-06 06:37:49 -0300304void vb2_ops_wait_finish(struct vb2_queue *vq);
305
Hans Verkuil86f6bd32018-05-21 04:54:52 -0400306struct media_request;
307int vb2_request_validate(struct media_request *req);
308void vb2_request_queue(struct media_request *req);
309
Junghak Sungc1399902015-09-22 10:30:29 -0300310#endif /* _MEDIA_VIDEOBUF2_V4L2_H */