blob: bea81c9e37581c3318baabbbef5238974df7dae7 [file] [log] [blame]
Pawel Osciake23ccc02010-10-11 10:56:41 -03001/*
Junghak Sungc1399902015-09-22 10:30:29 -03002 * videobuf2-core.h - Video Buffer 2 Core Framework
Pawel Osciake23ccc02010-10-11 10:56:41 -03003 *
4 * Copyright (C) 2010 Samsung Electronics
5 *
Pawel Osciak95072082011-03-13 15:23:32 -03006 * Author: Pawel Osciak <pawel@osciak.com>
Pawel Osciake23ccc02010-10-11 10:56:41 -03007 *
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_CORE_H
13#define _MEDIA_VIDEOBUF2_CORE_H
14
15#include <linux/mm_types.h>
16#include <linux/mutex.h>
17#include <linux/poll.h>
Sumit Semwalc5384042012-06-14 10:37:37 -030018#include <linux/dma-buf.h>
Pawel Osciake23ccc02010-10-11 10:56:41 -030019
Junghak Sungbed04f92015-10-06 06:37:47 -030020#define VB2_MAX_FRAME (32)
21#define VB2_MAX_PLANES (8)
22
23enum vb2_memory {
24 VB2_MEMORY_UNKNOWN = 0,
25 VB2_MEMORY_MMAP = 1,
26 VB2_MEMORY_USERPTR = 2,
27 VB2_MEMORY_DMABUF = 4,
28};
29
Marek Szyprowskib25748f2010-12-06 05:56:55 -030030struct vb2_fileio_data;
Hans Verkuil3415a892014-04-14 07:33:00 -030031struct vb2_threadio_data;
Pawel Osciake23ccc02010-10-11 10:56:41 -030032
33/**
34 * struct vb2_mem_ops - memory handling/memory allocator operations
35 * @alloc: allocate video memory and, optionally, allocator private data,
36 * return NULL on failure or a pointer to allocator private,
37 * per-buffer data on success; the returned private structure
38 * will then be passed as buf_priv argument to other ops in this
Hans Verkuilb6ba2052013-03-01 15:44:20 -030039 * structure. Additional gfp_flags to use when allocating the
40 * are also passed to this operation. These flags are from the
41 * gfp_flags field of vb2_queue.
Pawel Osciake23ccc02010-10-11 10:56:41 -030042 * @put: inform the allocator that the buffer will no longer be used;
43 * usually will result in the allocator freeing the buffer (if
44 * no other users of this buffer are present); the buf_priv
45 * argument is the allocator private per-buffer structure
Hans Verkuil3f12e6b2014-02-28 12:25:28 -030046 * previously returned from the alloc callback.
Mauro Carvalho Chehab32d81b42015-10-01 13:59:29 -030047 * @get_dmabuf: acquire userspace memory for a hardware operation; used for
48 * DMABUF memory types.
Pawel Osciake23ccc02010-10-11 10:56:41 -030049 * @get_userptr: acquire userspace memory for a hardware operation; used for
50 * USERPTR memory types; vaddr is the address passed to the
51 * videobuf layer when queuing a video buffer of USERPTR type;
52 * should return an allocator private per-buffer structure
53 * associated with the buffer on success, NULL on failure;
54 * the returned private structure will then be passed as buf_priv
Hans Verkuil3f12e6b2014-02-28 12:25:28 -030055 * argument to other ops in this structure.
Pawel Osciake23ccc02010-10-11 10:56:41 -030056 * @put_userptr: inform the allocator that a USERPTR buffer will no longer
Hans Verkuil3f12e6b2014-02-28 12:25:28 -030057 * be used.
Sumit Semwalc5384042012-06-14 10:37:37 -030058 * @attach_dmabuf: attach a shared struct dma_buf for a hardware operation;
Hans Verkuil36c0f8b2016-04-15 09:15:05 -030059 * used for DMABUF memory types; dev is the alloc device
Sumit Semwalc5384042012-06-14 10:37:37 -030060 * dbuf is the shared dma_buf; returns NULL on failure;
61 * allocator private per-buffer structure on success;
Hans Verkuil3f12e6b2014-02-28 12:25:28 -030062 * this needs to be used for further accesses to the buffer.
Sumit Semwalc5384042012-06-14 10:37:37 -030063 * @detach_dmabuf: inform the exporter of the buffer that the current DMABUF
64 * buffer is no longer used; the buf_priv argument is the
65 * allocator private per-buffer structure previously returned
Hans Verkuil3f12e6b2014-02-28 12:25:28 -030066 * from the attach_dmabuf callback.
Sumit Semwalc5384042012-06-14 10:37:37 -030067 * @map_dmabuf: request for access to the dmabuf from allocator; the allocator
68 * of dmabuf is informed that this driver is going to use the
Hans Verkuil3f12e6b2014-02-28 12:25:28 -030069 * dmabuf.
Sumit Semwalc5384042012-06-14 10:37:37 -030070 * @unmap_dmabuf: releases access control to the dmabuf - allocator is notified
Hans Verkuil3f12e6b2014-02-28 12:25:28 -030071 * that this driver is done using the dmabuf for now.
Marek Szyprowski3e0c2f22012-06-14 10:37:43 -030072 * @prepare: called every time the buffer is passed from userspace to the
Hans Verkuil3f12e6b2014-02-28 12:25:28 -030073 * driver, useful for cache synchronisation, optional.
Marek Szyprowski3e0c2f22012-06-14 10:37:43 -030074 * @finish: called every time the buffer is passed back from the driver
Hans Verkuil3f12e6b2014-02-28 12:25:28 -030075 * to the userspace, also optional.
Pawel Osciake23ccc02010-10-11 10:56:41 -030076 * @vaddr: return a kernel virtual address to a given memory buffer
77 * associated with the passed private structure or NULL if no
Hans Verkuil3f12e6b2014-02-28 12:25:28 -030078 * such mapping exists.
Pawel Osciake23ccc02010-10-11 10:56:41 -030079 * @cookie: return allocator specific cookie for a given memory buffer
80 * associated with the passed private structure or NULL if not
Hans Verkuil3f12e6b2014-02-28 12:25:28 -030081 * available.
Pawel Osciake23ccc02010-10-11 10:56:41 -030082 * @num_users: return the current number of users of a memory buffer;
83 * return 1 if the videobuf layer (or actually the driver using
Hans Verkuil3f12e6b2014-02-28 12:25:28 -030084 * it) is the only user.
Pawel Osciake23ccc02010-10-11 10:56:41 -030085 * @mmap: setup a userspace mapping for a given memory buffer under
Hans Verkuil3f12e6b2014-02-28 12:25:28 -030086 * the provided virtual memory region.
Pawel Osciake23ccc02010-10-11 10:56:41 -030087 *
88 * Required ops for USERPTR types: get_userptr, put_userptr.
89 * Required ops for MMAP types: alloc, put, num_users, mmap.
Hans Verkuil3f12e6b2014-02-28 12:25:28 -030090 * Required ops for read/write access types: alloc, put, num_users, vaddr.
Sumit Semwalc5384042012-06-14 10:37:37 -030091 * Required ops for DMABUF types: attach_dmabuf, detach_dmabuf, map_dmabuf,
92 * unmap_dmabuf.
Pawel Osciake23ccc02010-10-11 10:56:41 -030093 */
94struct vb2_mem_ops {
Hans Verkuil36c0f8b2016-04-15 09:15:05 -030095 void *(*alloc)(struct device *dev, const struct dma_attrs *attrs,
Hans Verkuild16e8322016-04-15 09:15:05 -030096 unsigned long size, enum dma_data_direction dma_dir,
Hans Verkuild935c572014-11-18 09:50:59 -030097 gfp_t gfp_flags);
Pawel Osciake23ccc02010-10-11 10:56:41 -030098 void (*put)(void *buf_priv);
Philipp Zabelea3aba82013-05-21 05:11:35 -030099 struct dma_buf *(*get_dmabuf)(void *buf_priv, unsigned long flags);
Pawel Osciake23ccc02010-10-11 10:56:41 -0300100
Hans Verkuil36c0f8b2016-04-15 09:15:05 -0300101 void *(*get_userptr)(struct device *dev, unsigned long vaddr,
Hans Verkuilcd474032014-11-18 09:50:58 -0300102 unsigned long size,
103 enum dma_data_direction dma_dir);
Pawel Osciake23ccc02010-10-11 10:56:41 -0300104 void (*put_userptr)(void *buf_priv);
105
Marek Szyprowski3e0c2f22012-06-14 10:37:43 -0300106 void (*prepare)(void *buf_priv);
107 void (*finish)(void *buf_priv);
108
Hans Verkuil36c0f8b2016-04-15 09:15:05 -0300109 void *(*attach_dmabuf)(struct device *dev, struct dma_buf *dbuf,
Hans Verkuilcd474032014-11-18 09:50:58 -0300110 unsigned long size,
111 enum dma_data_direction dma_dir);
Sumit Semwalc5384042012-06-14 10:37:37 -0300112 void (*detach_dmabuf)(void *buf_priv);
113 int (*map_dmabuf)(void *buf_priv);
114 void (*unmap_dmabuf)(void *buf_priv);
115
Pawel Osciake23ccc02010-10-11 10:56:41 -0300116 void *(*vaddr)(void *buf_priv);
117 void *(*cookie)(void *buf_priv);
118
119 unsigned int (*num_users)(void *buf_priv);
120
121 int (*mmap)(void *buf_priv, struct vm_area_struct *vma);
122};
123
Junghak Sung2d700712015-09-22 10:30:30 -0300124/**
125 * struct vb2_plane - plane information
126 * @mem_priv: private data with this plane
127 * @dbuf: dma_buf - shared buffer object
128 * @dbuf_mapped: flag to show whether dbuf is mapped or not
129 * @bytesused: number of bytes occupied by data in the plane (payload)
130 * @length: size of this plane (NOT the payload) in bytes
Hans Verkuil58e1ba32015-11-20 09:40:14 -0200131 * @min_length: minimum required size of this plane (NOT the payload) in bytes.
132 * @length is always greater or equal to @min_length.
Mauro Carvalho Chehab32d81b42015-10-01 13:59:29 -0300133 * @offset: when memory in the associated struct vb2_buffer is
Junghak Sung2d700712015-09-22 10:30:30 -0300134 * VB2_MEMORY_MMAP, equals the offset from the start of
135 * the device memory for this plane (or is a "cookie" that
136 * should be passed to mmap() called on the video node)
137 * @userptr: when memory is VB2_MEMORY_USERPTR, a userspace pointer
138 * pointing to this plane
139 * @fd: when memory is VB2_MEMORY_DMABUF, a userspace file
140 * descriptor associated with this plane
Mauro Carvalho Chehab32d81b42015-10-01 13:59:29 -0300141 * @m: Union with memtype-specific data (@offset, @userptr or
142 * @fd).
Junghak Sung2d700712015-09-22 10:30:30 -0300143 * @data_offset: offset in the plane to the start of data; usually 0,
144 * unless there is a header in front of the data
145 * Should contain enough information to be able to cover all the fields
146 * of struct v4l2_plane at videodev2.h
147 */
Pawel Osciake23ccc02010-10-11 10:56:41 -0300148struct vb2_plane {
149 void *mem_priv;
Sumit Semwalc5384042012-06-14 10:37:37 -0300150 struct dma_buf *dbuf;
151 unsigned int dbuf_mapped;
Junghak Sung2d700712015-09-22 10:30:30 -0300152 unsigned int bytesused;
153 unsigned int length;
Hans Verkuil58e1ba32015-11-20 09:40:14 -0200154 unsigned int min_length;
Junghak Sung2d700712015-09-22 10:30:30 -0300155 union {
156 unsigned int offset;
157 unsigned long userptr;
158 int fd;
159 } m;
160 unsigned int data_offset;
Pawel Osciake23ccc02010-10-11 10:56:41 -0300161};
162
163/**
164 * enum vb2_io_modes - queue access methods
165 * @VB2_MMAP: driver supports MMAP with streaming API
166 * @VB2_USERPTR: driver supports USERPTR with streaming API
167 * @VB2_READ: driver supports read() style access
168 * @VB2_WRITE: driver supports write() style access
Sumit Semwalc5384042012-06-14 10:37:37 -0300169 * @VB2_DMABUF: driver supports DMABUF with streaming API
Pawel Osciake23ccc02010-10-11 10:56:41 -0300170 */
171enum vb2_io_modes {
172 VB2_MMAP = (1 << 0),
173 VB2_USERPTR = (1 << 1),
174 VB2_READ = (1 << 2),
175 VB2_WRITE = (1 << 3),
Sumit Semwalc5384042012-06-14 10:37:37 -0300176 VB2_DMABUF = (1 << 4),
Pawel Osciake23ccc02010-10-11 10:56:41 -0300177};
178
179/**
Pawel Osciake23ccc02010-10-11 10:56:41 -0300180 * enum vb2_buffer_state - current video buffer state
181 * @VB2_BUF_STATE_DEQUEUED: buffer under userspace control
Hans Verkuilb18a8ff2013-12-13 13:13:38 -0300182 * @VB2_BUF_STATE_PREPARING: buffer is being prepared in videobuf
Guennadi Liakhovetskiebc087d2011-08-31 06:51:10 -0300183 * @VB2_BUF_STATE_PREPARED: buffer prepared in videobuf and by the driver
Pawel Osciake23ccc02010-10-11 10:56:41 -0300184 * @VB2_BUF_STATE_QUEUED: buffer queued in videobuf, but not in driver
Sakari Ailus6d058c52015-07-03 04:37:07 -0300185 * @VB2_BUF_STATE_REQUEUEING: re-queue a buffer to the driver
Pawel Osciake23ccc02010-10-11 10:56:41 -0300186 * @VB2_BUF_STATE_ACTIVE: buffer queued in driver and possibly used
187 * in a hardware operation
188 * @VB2_BUF_STATE_DONE: buffer returned from driver to videobuf, but
189 * not yet dequeued to userspace
190 * @VB2_BUF_STATE_ERROR: same as above, but the operation on the buffer
191 * has ended with an error, which will be reported
192 * to the userspace when it is dequeued
193 */
194enum vb2_buffer_state {
195 VB2_BUF_STATE_DEQUEUED,
Hans Verkuilb18a8ff2013-12-13 13:13:38 -0300196 VB2_BUF_STATE_PREPARING,
Guennadi Liakhovetskiebc087d2011-08-31 06:51:10 -0300197 VB2_BUF_STATE_PREPARED,
Pawel Osciake23ccc02010-10-11 10:56:41 -0300198 VB2_BUF_STATE_QUEUED,
Sakari Ailus6d058c52015-07-03 04:37:07 -0300199 VB2_BUF_STATE_REQUEUEING,
Pawel Osciake23ccc02010-10-11 10:56:41 -0300200 VB2_BUF_STATE_ACTIVE,
201 VB2_BUF_STATE_DONE,
202 VB2_BUF_STATE_ERROR,
203};
204
205struct vb2_queue;
206
207/**
208 * struct vb2_buffer - represents a video buffer
Pawel Osciake23ccc02010-10-11 10:56:41 -0300209 * @vb2_queue: the queue to which this driver belongs
Junghak Sung2d700712015-09-22 10:30:30 -0300210 * @index: id number of the buffer
211 * @type: buffer type
212 * @memory: the method, in which the actual data is passed
Pawel Osciake23ccc02010-10-11 10:56:41 -0300213 * @num_planes: number of planes in the buffer
214 * on an internal driver queue
Junghak Sung2d700712015-09-22 10:30:30 -0300215 * @planes: private per-plane information; do not change
Junghak Sungd6dd6452015-11-03 08:16:37 -0200216 * @timestamp: frame timestamp in ns
Pawel Osciake23ccc02010-10-11 10:56:41 -0300217 */
218struct vb2_buffer {
Pawel Osciake23ccc02010-10-11 10:56:41 -0300219 struct vb2_queue *vb2_queue;
Junghak Sung2d700712015-09-22 10:30:30 -0300220 unsigned int index;
221 unsigned int type;
222 unsigned int memory;
Pawel Osciake23ccc02010-10-11 10:56:41 -0300223 unsigned int num_planes;
Junghak Sungbed04f92015-10-06 06:37:47 -0300224 struct vb2_plane planes[VB2_MAX_PLANES];
Junghak Sungd6dd6452015-11-03 08:16:37 -0200225 u64 timestamp;
Pawel Osciake23ccc02010-10-11 10:56:41 -0300226
Mauro Carvalho Chehabefe98012015-10-05 09:12:56 -0300227 /* private: internal use only
228 *
229 * state: current buffer state; do not change
230 * queued_entry: entry on the queued buffers list, which holds
231 * all buffers queued from userspace
232 * done_entry: entry on the list that stores all buffers ready
233 * to be dequeued to userspace
234 */
Pawel Osciake23ccc02010-10-11 10:56:41 -0300235 enum vb2_buffer_state state;
236
237 struct list_head queued_entry;
238 struct list_head done_entry;
Hans Verkuilb5b45412014-01-29 11:53:25 -0300239#ifdef CONFIG_VIDEO_ADV_DEBUG
240 /*
241 * Counters for how often these buffer-related ops are
242 * called. Used to check for unbalanced ops.
243 */
244 u32 cnt_mem_alloc;
245 u32 cnt_mem_put;
246 u32 cnt_mem_get_dmabuf;
247 u32 cnt_mem_get_userptr;
248 u32 cnt_mem_put_userptr;
249 u32 cnt_mem_prepare;
250 u32 cnt_mem_finish;
251 u32 cnt_mem_attach_dmabuf;
252 u32 cnt_mem_detach_dmabuf;
253 u32 cnt_mem_map_dmabuf;
254 u32 cnt_mem_unmap_dmabuf;
255 u32 cnt_mem_vaddr;
256 u32 cnt_mem_cookie;
257 u32 cnt_mem_num_users;
258 u32 cnt_mem_mmap;
259
260 u32 cnt_buf_init;
261 u32 cnt_buf_prepare;
262 u32 cnt_buf_finish;
263 u32 cnt_buf_cleanup;
264 u32 cnt_buf_queue;
265
266 /* This counts the number of calls to vb2_buffer_done() */
267 u32 cnt_buf_done;
268#endif
Pawel Osciake23ccc02010-10-11 10:56:41 -0300269};
270
271/**
272 * struct vb2_ops - driver-specific callbacks
273 *
Guennadi Liakhovetski2d864012011-09-28 09:23:02 -0300274 * @queue_setup: called from VIDIOC_REQBUFS and VIDIOC_CREATE_BUFS
Hans Verkuildf9ecb02015-10-28 00:50:37 -0200275 * handlers before memory allocation. It can be called
276 * twice: if the original number of requested buffers
277 * could not be allocated, then it will be called a
278 * second time with the actually allocated number of
279 * buffers to verify if that is OK.
280 * The driver should return the required number of buffers
281 * in *num_buffers, the required number of planes per
282 * buffer in *num_planes, the size of each plane should be
283 * set in the sizes[] array and optional per-plane
Hans Verkuil36c0f8b2016-04-15 09:15:05 -0300284 * allocator specific device in the alloc_devs[] array.
Hans Verkuildf9ecb02015-10-28 00:50:37 -0200285 * When called from VIDIOC_REQBUFS, *num_planes == 0, the
286 * driver has to use the currently configured format to
287 * determine the plane sizes and *num_buffers is the total
288 * number of buffers that are being allocated. When called
289 * from VIDIOC_CREATE_BUFS, *num_planes != 0 and it
290 * describes the requested number of planes and sizes[]
291 * contains the requested plane sizes. If either
292 * *num_planes or the requested sizes are invalid callback
293 * must return -EINVAL. In this case *num_buffers are
294 * being allocated additionally to q->num_buffers.
Pawel Osciake23ccc02010-10-11 10:56:41 -0300295 * @wait_prepare: release any locks taken while calling vb2 functions;
296 * it is called before an ioctl needs to wait for a new
297 * buffer to arrive; required to avoid a deadlock in
Hans Verkuil3f12e6b2014-02-28 12:25:28 -0300298 * blocking access type.
Pawel Osciake23ccc02010-10-11 10:56:41 -0300299 * @wait_finish: reacquire all locks released in the previous callback;
300 * required to continue operation after sleeping while
Hans Verkuil3f12e6b2014-02-28 12:25:28 -0300301 * waiting for a new buffer to arrive.
Pawel Osciake23ccc02010-10-11 10:56:41 -0300302 * @buf_init: called once after allocating a buffer (in MMAP case)
303 * or after acquiring a new USERPTR buffer; drivers may
304 * perform additional buffer-related initialization;
305 * initialization failure (return != 0) will prevent
Hans Verkuil3f12e6b2014-02-28 12:25:28 -0300306 * queue setup from completing successfully; optional.
Guennadi Liakhovetski2d864012011-09-28 09:23:02 -0300307 * @buf_prepare: called every time the buffer is queued from userspace
308 * and from the VIDIOC_PREPARE_BUF ioctl; drivers may
Hans Verkuilcf227422014-11-18 09:50:57 -0300309 * perform any initialization required before each
310 * hardware operation in this callback; drivers can
311 * access/modify the buffer here as it is still synced for
312 * the CPU; drivers that support VIDIOC_CREATE_BUFS must
313 * also validate the buffer size; if an error is returned,
314 * the buffer will not be queued in driver; optional.
Pawel Osciake23ccc02010-10-11 10:56:41 -0300315 * @buf_finish: called before every dequeue of the buffer back to
Hans Verkuilcf227422014-11-18 09:50:57 -0300316 * userspace; the buffer is synced for the CPU, so drivers
317 * can access/modify the buffer contents; drivers may
318 * perform any operations required before userspace
319 * accesses the buffer; optional. The buffer state can be
320 * one of the following: DONE and ERROR occur while
321 * streaming is in progress, and the PREPARED state occurs
322 * when the queue has been canceled and all pending
323 * buffers are being returned to their default DEQUEUED
324 * state. Typically you only have to do something if the
325 * state is VB2_BUF_STATE_DONE, since in all other cases
326 * the buffer contents will be ignored anyway.
Pawel Osciake23ccc02010-10-11 10:56:41 -0300327 * @buf_cleanup: called once before the buffer is freed; drivers may
Hans Verkuil3f12e6b2014-02-28 12:25:28 -0300328 * perform any additional cleanup; optional.
Marek Szyprowskibd323e22011-08-29 08:51:49 -0300329 * @start_streaming: called once to enter 'streaming' state; the driver may
330 * receive buffers with @buf_queue callback before
331 * @start_streaming is called; the driver gets the number
332 * of already queued buffers in count parameter; driver
Hans Verkuil02f142e2013-12-13 13:13:42 -0300333 * can return an error if hardware fails, in that case all
334 * buffers that have been already given by the @buf_queue
Hans Verkuilccf58cb2014-07-23 03:17:06 -0300335 * callback are to be returned by the driver by calling
Hans Verkuil44e8e692014-08-04 07:12:32 -0300336 * @vb2_buffer_done(VB2_BUF_STATE_QUEUED).
Hans Verkuilccf58cb2014-07-23 03:17:06 -0300337 * If you need a minimum number of buffers before you can
338 * start streaming, then set @min_buffers_needed in the
339 * vb2_queue structure. If that is non-zero then
340 * start_streaming won't be called until at least that
341 * many buffers have been queued up by userspace.
Pawel Osciake23ccc02010-10-11 10:56:41 -0300342 * @stop_streaming: called when 'streaming' state must be disabled; driver
343 * should stop any DMA transactions or wait until they
344 * finish and give back all buffers it got from buf_queue()
Hans Verkuilccf58cb2014-07-23 03:17:06 -0300345 * callback by calling @vb2_buffer_done() with either
346 * VB2_BUF_STATE_DONE or VB2_BUF_STATE_ERROR; may use
347 * vb2_wait_for_all_buffers() function
Pawel Osciake23ccc02010-10-11 10:56:41 -0300348 * @buf_queue: passes buffer vb to the driver; driver may start
349 * hardware operation on this buffer; driver should give
Marek Szyprowskibd323e22011-08-29 08:51:49 -0300350 * the buffer back by calling vb2_buffer_done() function;
351 * it is allways called after calling STREAMON ioctl;
352 * might be called before start_streaming callback if user
Hans Verkuil3f12e6b2014-02-28 12:25:28 -0300353 * pre-queued buffers before calling STREAMON.
Pawel Osciake23ccc02010-10-11 10:56:41 -0300354 */
355struct vb2_ops {
Hans Verkuildf9ecb02015-10-28 00:50:37 -0200356 int (*queue_setup)(struct vb2_queue *q,
Guennadi Liakhovetskifc714e72011-08-24 10:30:21 -0300357 unsigned int *num_buffers, unsigned int *num_planes,
Hans Verkuil36c0f8b2016-04-15 09:15:05 -0300358 unsigned int sizes[], struct device *alloc_devs[]);
Pawel Osciake23ccc02010-10-11 10:56:41 -0300359
360 void (*wait_prepare)(struct vb2_queue *q);
361 void (*wait_finish)(struct vb2_queue *q);
362
363 int (*buf_init)(struct vb2_buffer *vb);
364 int (*buf_prepare)(struct vb2_buffer *vb);
Hans Verkuil06470642014-03-04 07:27:13 -0300365 void (*buf_finish)(struct vb2_buffer *vb);
Pawel Osciake23ccc02010-10-11 10:56:41 -0300366 void (*buf_cleanup)(struct vb2_buffer *vb);
367
Marek Szyprowskibd323e22011-08-29 08:51:49 -0300368 int (*start_streaming)(struct vb2_queue *q, unsigned int count);
Hans Verkuile37559b2014-04-17 02:47:21 -0300369 void (*stop_streaming)(struct vb2_queue *q);
Pawel Osciake23ccc02010-10-11 10:56:41 -0300370
371 void (*buf_queue)(struct vb2_buffer *vb);
372};
373
Hans Verkuil10cc3b12015-11-20 08:32:00 -0200374/**
375 * struct vb2_ops - driver-specific callbacks
376 *
Sakari Ailuse7e0c3e2016-04-03 16:15:00 -0300377 * @verify_planes_array: Verify that a given user space structure contains
378 * enough planes for the buffer. This is called
379 * for each dequeued buffer.
Hans Verkuil10cc3b12015-11-20 08:32:00 -0200380 * @fill_user_buffer: given a vb2_buffer fill in the userspace structure.
381 * For V4L2 this is a struct v4l2_buffer.
382 * @fill_vb2_buffer: given a userspace structure, fill in the vb2_buffer.
383 * If the userspace structure is invalid, then this op
384 * will return an error.
385 * @copy_timestamp: copy the timestamp from a userspace structure to
386 * the vb2_buffer struct.
387 */
Junghak Sungb0e0e1f2015-10-06 06:37:48 -0300388struct vb2_buf_ops {
Sakari Ailuse7e0c3e2016-04-03 16:15:00 -0300389 int (*verify_planes_array)(struct vb2_buffer *vb, const void *pb);
Hans Verkuil10cc3b12015-11-20 08:32:00 -0200390 void (*fill_user_buffer)(struct vb2_buffer *vb, void *pb);
Junghak Sungb0e0e1f2015-10-06 06:37:48 -0300391 int (*fill_vb2_buffer)(struct vb2_buffer *vb, const void *pb,
392 struct vb2_plane *planes);
Hans Verkuil10cc3b12015-11-20 08:32:00 -0200393 void (*copy_timestamp)(struct vb2_buffer *vb, const void *pb);
Junghak Sungb0e0e1f2015-10-06 06:37:48 -0300394};
Hans Verkuil5a5adf62012-06-22 07:29:35 -0300395
Pawel Osciake23ccc02010-10-11 10:56:41 -0300396/**
397 * struct vb2_queue - a videobuf queue
398 *
Junghak Sungbed04f92015-10-06 06:37:47 -0300399 * @type: private buffer type whose content is defined by the vb2-core
400 * caller. For example, for V4L2, it should match
401 * the V4L2_BUF_TYPE_* in include/uapi/linux/videodev2.h
Pawel Osciake23ccc02010-10-11 10:56:41 -0300402 * @io_modes: supported io methods (see vb2_io_modes enum)
Hans Verkuil20be7ab2015-12-16 08:30:43 -0200403 * @dev: device to use for the default allocation context if the driver
Hans Verkuil36c0f8b2016-04-15 09:15:05 -0300404 * doesn't fill in the @alloc_devs array.
Hans Verkuild16e8322016-04-15 09:15:05 -0300405 * @dma_attrs: DMA attributes to use for the DMA. May be NULL.
Kamil Debski06e7a9b62015-02-23 09:26:16 -0300406 * @fileio_read_once: report EOF after reading the first buffer
407 * @fileio_write_immediately: queue buffer after each write() call
Kamil Debskif61bf132015-02-23 09:26:17 -0300408 * @allow_zero_bytesused: allow bytesused == 0 to be passed to the driver
Ricardo Ribaldab9387682016-04-25 06:04:45 -0300409 * @quirk_poll_must_check_waiting_for_buffers: Return POLLERR at poll when QBUF
410 * has not been called. This is a vb1 idiom that has been adopted
411 * also by vb2.
Hans Verkuil5a5adf62012-06-22 07:29:35 -0300412 * @lock: pointer to a mutex that protects the vb2_queue struct. The
413 * driver can set this to a mutex to let the v4l2 core serialize
414 * the queuing ioctls. If the driver wants to handle locking
415 * itself, then this should be set to NULL. This lock is not used
416 * by the videobuf2 core API.
417 * @owner: The filehandle that 'owns' the buffers, i.e. the filehandle
418 * that called reqbufs, create_buffers or started fileio.
419 * This field is not used by the videobuf2 core API, but it allows
420 * drivers to easily associate an owner filehandle with the queue.
Pawel Osciake23ccc02010-10-11 10:56:41 -0300421 * @ops: driver-specific callbacks
422 * @mem_ops: memory allocator specific callbacks
Junghak Sungb0e0e1f2015-10-06 06:37:48 -0300423 * @buf_ops: callbacks to deliver buffer information
424 * between user-space and kernel-space
Pawel Osciake23ccc02010-10-11 10:56:41 -0300425 * @drv_priv: driver private data
426 * @buf_struct_size: size of the driver-specific buffer structure;
427 * "0" indicates the driver doesn't want to use a custom buffer
Junghak Sung2d700712015-09-22 10:30:30 -0300428 * structure type. for example, sizeof(struct vb2_v4l2_buffer)
429 * will be used for v4l2.
Laurent Pinchart072f1a42014-09-11 19:43:46 -0300430 * @timestamp_flags: Timestamp flags; V4L2_BUF_FLAG_TIMESTAMP_* and
431 * V4L2_BUF_FLAG_TSTAMP_SRC_*
Hans Verkuilb6ba2052013-03-01 15:44:20 -0300432 * @gfp_flags: additional gfp flags used when allocating the buffers.
433 * Typically this is 0, but it may be e.g. GFP_DMA or __GFP_DMA32
434 * to force the buffer allocation to a specific memory zone.
Hans Verkuilb3379c62014-02-24 13:51:03 -0300435 * @min_buffers_needed: the minimum number of buffers needed before
436 * start_streaming() can be called. Used when a DMA engine
437 * cannot be started unless at least this number of buffers
438 * have been queued into the driver.
Mauro Carvalho Chehabd78757e2015-08-22 08:57:02 -0300439 */
440/*
441 * Private elements (won't appear at the DocBook):
Hans Verkuilf035eb42014-08-07 03:47:14 -0300442 * @mmap_lock: private mutex used when buffers are allocated/freed/mmapped
Pawel Osciake23ccc02010-10-11 10:56:41 -0300443 * @memory: current memory type used
444 * @bufs: videobuf buffer structures
445 * @num_buffers: number of allocated/used buffers
446 * @queued_list: list of buffers currently queued from userspace
Hans Verkuilb3379c62014-02-24 13:51:03 -0300447 * @queued_count: number of buffers queued and ready for streaming.
Hans Verkuil6ea3b982014-02-06 05:46:11 -0300448 * @owned_by_drv_count: number of buffers owned by the driver
Pawel Osciake23ccc02010-10-11 10:56:41 -0300449 * @done_list: list of buffers ready to be dequeued to userspace
450 * @done_lock: lock to protect done_list list
451 * @done_wq: waitqueue for processes waiting for buffers ready to be dequeued
Hans Verkuil36c0f8b2016-04-15 09:15:05 -0300452 * @alloc_devs: memory type/allocator-specific per-plane device
Pawel Osciake23ccc02010-10-11 10:56:41 -0300453 * @streaming: current streaming state
Hans Verkuilb3379c62014-02-24 13:51:03 -0300454 * @start_streaming_called: start_streaming() was called successfully and we
455 * started streaming.
Laurent Pinchart4bb72672014-06-03 18:53:25 -0300456 * @error: a fatal error occurred on the queue
Hans Verkuil58d75f42014-09-20 16:16:35 -0300457 * @waiting_for_buffers: used in poll() to check if vb2 is still waiting for
458 * buffers. Only set for capture queues if qbuf has not yet been
459 * called since poll() needs to return POLLERR in that situation.
Junghak Sungbed04f92015-10-06 06:37:47 -0300460 * @is_multiplanar: set if buffer type is multiplanar
461 * @is_output: set if buffer type is output
Junghak Sung959c3ef2015-11-03 08:16:38 -0200462 * @copy_timestamp: set if vb2-core should set timestamps
Philipp Zabelc1621842015-05-04 07:51:06 -0300463 * @last_buffer_dequeued: used in poll() and DQBUF to immediately return if the
464 * last decoded buffer was already dequeued. Set for capture queues
465 * when a buffer with the V4L2_BUF_FLAG_LAST is dequeued.
Marek Szyprowskib25748f2010-12-06 05:56:55 -0300466 * @fileio: file io emulator internal data, used only if emulator is active
Hans Verkuil3415a892014-04-14 07:33:00 -0300467 * @threadio: thread io internal data, used only if thread is active
Pawel Osciake23ccc02010-10-11 10:56:41 -0300468 */
469struct vb2_queue {
Junghak Sungbed04f92015-10-06 06:37:47 -0300470 unsigned int type;
Pawel Osciake23ccc02010-10-11 10:56:41 -0300471 unsigned int io_modes;
Hans Verkuil20be7ab2015-12-16 08:30:43 -0200472 struct device *dev;
Hans Verkuild16e8322016-04-15 09:15:05 -0300473 const struct dma_attrs *dma_attrs;
Kamil Debski06e7a9b62015-02-23 09:26:16 -0300474 unsigned fileio_read_once:1;
475 unsigned fileio_write_immediately:1;
Kamil Debskif61bf132015-02-23 09:26:17 -0300476 unsigned allow_zero_bytesused:1;
Ricardo Ribaldab9387682016-04-25 06:04:45 -0300477 unsigned quirk_poll_must_check_waiting_for_buffers:1;
Kamil Debski06e7a9b62015-02-23 09:26:16 -0300478
Hans Verkuil5a5adf62012-06-22 07:29:35 -0300479 struct mutex *lock;
Junghak Sungbed04f92015-10-06 06:37:47 -0300480 void *owner;
Pawel Osciake23ccc02010-10-11 10:56:41 -0300481
482 const struct vb2_ops *ops;
483 const struct vb2_mem_ops *mem_ops;
Junghak Sungb0e0e1f2015-10-06 06:37:48 -0300484 const struct vb2_buf_ops *buf_ops;
485
Pawel Osciake23ccc02010-10-11 10:56:41 -0300486 void *drv_priv;
487 unsigned int buf_struct_size;
Sakari Ailusade48682014-02-25 19:12:19 -0300488 u32 timestamp_flags;
Hans Verkuilb6ba2052013-03-01 15:44:20 -0300489 gfp_t gfp_flags;
Hans Verkuilb3379c62014-02-24 13:51:03 -0300490 u32 min_buffers_needed;
Pawel Osciake23ccc02010-10-11 10:56:41 -0300491
Mauro Carvalho Chehabd78757e2015-08-22 08:57:02 -0300492 /* private: internal use only */
Hans Verkuilf035eb42014-08-07 03:47:14 -0300493 struct mutex mmap_lock;
Junghak Sungbed04f92015-10-06 06:37:47 -0300494 unsigned int memory;
495 struct vb2_buffer *bufs[VB2_MAX_FRAME];
Pawel Osciake23ccc02010-10-11 10:56:41 -0300496 unsigned int num_buffers;
497
498 struct list_head queued_list;
Hans Verkuilb3379c62014-02-24 13:51:03 -0300499 unsigned int queued_count;
Pawel Osciake23ccc02010-10-11 10:56:41 -0300500
Hans Verkuil6ea3b982014-02-06 05:46:11 -0300501 atomic_t owned_by_drv_count;
Pawel Osciake23ccc02010-10-11 10:56:41 -0300502 struct list_head done_list;
503 spinlock_t done_lock;
504 wait_queue_head_t done_wq;
505
Hans Verkuil36c0f8b2016-04-15 09:15:05 -0300506 struct device *alloc_devs[VB2_MAX_PLANES];
Pawel Osciake23ccc02010-10-11 10:56:41 -0300507
508 unsigned int streaming:1;
Hans Verkuilb3379c62014-02-24 13:51:03 -0300509 unsigned int start_streaming_called:1;
Laurent Pinchart4bb72672014-06-03 18:53:25 -0300510 unsigned int error:1;
Hans Verkuil58d75f42014-09-20 16:16:35 -0300511 unsigned int waiting_for_buffers:1;
Junghak Sungbed04f92015-10-06 06:37:47 -0300512 unsigned int is_multiplanar:1;
513 unsigned int is_output:1;
Junghak Sung959c3ef2015-11-03 08:16:38 -0200514 unsigned int copy_timestamp:1;
Philipp Zabelc1621842015-05-04 07:51:06 -0300515 unsigned int last_buffer_dequeued:1;
Marek Szyprowskib25748f2010-12-06 05:56:55 -0300516
517 struct vb2_fileio_data *fileio;
Hans Verkuil3415a892014-04-14 07:33:00 -0300518 struct vb2_threadio_data *threadio;
Hans Verkuilb5b45412014-01-29 11:53:25 -0300519
520#ifdef CONFIG_VIDEO_ADV_DEBUG
521 /*
522 * Counters for how often these queue-related ops are
523 * called. Used to check for unbalanced ops.
524 */
525 u32 cnt_queue_setup;
526 u32 cnt_wait_prepare;
527 u32 cnt_wait_finish;
528 u32 cnt_start_streaming;
529 u32 cnt_stop_streaming;
530#endif
Pawel Osciake23ccc02010-10-11 10:56:41 -0300531};
532
533void *vb2_plane_vaddr(struct vb2_buffer *vb, unsigned int plane_no);
534void *vb2_plane_cookie(struct vb2_buffer *vb, unsigned int plane_no);
535
536void vb2_buffer_done(struct vb2_buffer *vb, enum vb2_buffer_state state);
Laurent Pinchart34ea4d42014-03-09 21:42:52 -0300537void vb2_discard_done(struct vb2_queue *q);
Pawel Osciake23ccc02010-10-11 10:56:41 -0300538int vb2_wait_for_all_buffers(struct vb2_queue *q);
539
Hans Verkuil10cc3b12015-11-20 08:32:00 -0200540void vb2_core_querybuf(struct vb2_queue *q, unsigned int index, void *pb);
Junghak Sung3c5be982015-10-06 06:37:49 -0300541int vb2_core_reqbufs(struct vb2_queue *q, enum vb2_memory memory,
542 unsigned int *count);
543int vb2_core_create_bufs(struct vb2_queue *q, enum vb2_memory memory,
Hans Verkuildf9ecb02015-10-28 00:50:37 -0200544 unsigned int *count, unsigned requested_planes,
545 const unsigned int requested_sizes[]);
Junghak Sung3c5be982015-10-06 06:37:49 -0300546int vb2_core_prepare_buf(struct vb2_queue *q, unsigned int index, void *pb);
547int vb2_core_qbuf(struct vb2_queue *q, unsigned int index, void *pb);
Hans Verkuilfac710e2016-01-27 10:08:42 -0200548int vb2_core_dqbuf(struct vb2_queue *q, unsigned int *pindex, void *pb,
549 bool nonblocking);
Pawel Osciake23ccc02010-10-11 10:56:41 -0300550
Junghak Sung3c5be982015-10-06 06:37:49 -0300551int vb2_core_streamon(struct vb2_queue *q, unsigned int type);
552int vb2_core_streamoff(struct vb2_queue *q, unsigned int type);
Guennadi Liakhovetski2d864012011-09-28 09:23:02 -0300553
Junghak Sung3c5be982015-10-06 06:37:49 -0300554int vb2_core_expbuf(struct vb2_queue *q, int *fd, unsigned int type,
555 unsigned int index, unsigned int plane, unsigned int flags);
Pawel Osciake23ccc02010-10-11 10:56:41 -0300556
Junghak Sung3c5be982015-10-06 06:37:49 -0300557int vb2_core_queue_init(struct vb2_queue *q);
558void vb2_core_queue_release(struct vb2_queue *q);
559
Laurent Pinchart4bb72672014-06-03 18:53:25 -0300560void vb2_queue_error(struct vb2_queue *q);
Pawel Osciake23ccc02010-10-11 10:56:41 -0300561
Pawel Osciake23ccc02010-10-11 10:56:41 -0300562int vb2_mmap(struct vb2_queue *q, struct vm_area_struct *vma);
Scott Jiang6f524ec2011-09-21 09:25:23 -0300563#ifndef CONFIG_MMU
564unsigned long vb2_get_unmapped_area(struct vb2_queue *q,
565 unsigned long addr,
566 unsigned long len,
567 unsigned long pgoff,
568 unsigned long flags);
569#endif
Junghak Sungaf3bac12015-11-03 08:16:42 -0200570unsigned int vb2_core_poll(struct vb2_queue *q, struct file *file,
571 poll_table *wait);
572size_t vb2_read(struct vb2_queue *q, char __user *data, size_t count,
573 loff_t *ppos, int nonblock);
574size_t vb2_write(struct vb2_queue *q, const char __user *data, size_t count,
575 loff_t *ppos, int nonblock);
576
577/*
578 * vb2_thread_fnc - callback function for use with vb2_thread
579 *
580 * This is called whenever a buffer is dequeued in the thread.
581 */
582typedef int (*vb2_thread_fnc)(struct vb2_buffer *vb, void *priv);
583
584/**
585 * vb2_thread_start() - start a thread for the given queue.
586 * @q: videobuf queue
587 * @fnc: callback function
588 * @priv: priv pointer passed to the callback function
589 * @thread_name:the name of the thread. This will be prefixed with "vb2-".
590 *
591 * This starts a thread that will queue and dequeue until an error occurs
592 * or @vb2_thread_stop is called.
593 *
594 * This function should not be used for anything else but the videobuf2-dvb
595 * support. If you think you have another good use-case for this, then please
596 * contact the linux-media mailinglist first.
597 */
598int vb2_thread_start(struct vb2_queue *q, vb2_thread_fnc fnc, void *priv,
599 const char *thread_name);
600
601/**
602 * vb2_thread_stop() - stop the thread for the given queue.
603 * @q: videobuf queue
604 */
605int vb2_thread_stop(struct vb2_queue *q);
Pawel Osciake23ccc02010-10-11 10:56:41 -0300606
607/**
608 * vb2_is_streaming() - return streaming status of the queue
609 * @q: videobuf queue
610 */
611static inline bool vb2_is_streaming(struct vb2_queue *q)
612{
613 return q->streaming;
614}
615
616/**
Hans Verkuil74753cffa2014-04-07 09:23:50 -0300617 * vb2_fileio_is_active() - return true if fileio is active.
618 * @q: videobuf queue
619 *
620 * This returns true if read() or write() is used to stream the data
621 * as opposed to stream I/O. This is almost never an important distinction,
622 * except in rare cases. One such case is that using read() or write() to
623 * stream a format using V4L2_FIELD_ALTERNATE is not allowed since there
624 * is no way you can pass the field information of each buffer to/from
625 * userspace. A driver that supports this field format should check for
626 * this in the queue_setup op and reject it if this function returns true.
627 */
628static inline bool vb2_fileio_is_active(struct vb2_queue *q)
629{
630 return q->fileio;
631}
632
633/**
Pawel Osciake23ccc02010-10-11 10:56:41 -0300634 * vb2_is_busy() - return busy status of the queue
635 * @q: videobuf queue
636 *
637 * This function checks if queue has any buffers allocated.
638 */
639static inline bool vb2_is_busy(struct vb2_queue *q)
640{
641 return (q->num_buffers > 0);
642}
643
644/**
645 * vb2_get_drv_priv() - return driver private data associated with the queue
646 * @q: videobuf queue
647 */
648static inline void *vb2_get_drv_priv(struct vb2_queue *q)
649{
650 return q->drv_priv;
651}
652
653/**
654 * vb2_set_plane_payload() - set bytesused for the plane plane_no
655 * @vb: buffer for which plane payload should be set
656 * @plane_no: plane number for which payload should be set
657 * @size: payload in bytes
658 */
659static inline void vb2_set_plane_payload(struct vb2_buffer *vb,
660 unsigned int plane_no, unsigned long size)
661{
662 if (plane_no < vb->num_planes)
Junghak Sung2d700712015-09-22 10:30:30 -0300663 vb->planes[plane_no].bytesused = size;
Pawel Osciake23ccc02010-10-11 10:56:41 -0300664}
665
666/**
Laurent Pinchart9f00eda2011-02-27 14:38:19 -0300667 * vb2_get_plane_payload() - get bytesused for the plane plane_no
Pawel Osciake23ccc02010-10-11 10:56:41 -0300668 * @vb: buffer for which plane payload should be set
669 * @plane_no: plane number for which payload should be set
Pawel Osciake23ccc02010-10-11 10:56:41 -0300670 */
671static inline unsigned long vb2_get_plane_payload(struct vb2_buffer *vb,
672 unsigned int plane_no)
673{
674 if (plane_no < vb->num_planes)
Junghak Sung2d700712015-09-22 10:30:30 -0300675 return vb->planes[plane_no].bytesused;
Pawel Osciake23ccc02010-10-11 10:56:41 -0300676 return 0;
677}
678
679/**
680 * vb2_plane_size() - return plane size in bytes
681 * @vb: buffer for which plane size should be returned
682 * @plane_no: plane number for which size should be returned
683 */
684static inline unsigned long
685vb2_plane_size(struct vb2_buffer *vb, unsigned int plane_no)
686{
687 if (plane_no < vb->num_planes)
Junghak Sung2d700712015-09-22 10:30:30 -0300688 return vb->planes[plane_no].length;
Pawel Osciake23ccc02010-10-11 10:56:41 -0300689 return 0;
690}
691
Prabhakar Ladead13032014-09-06 12:26:49 -0300692/**
693 * vb2_start_streaming_called() - return streaming status of driver
694 * @q: videobuf queue
695 */
696static inline bool vb2_start_streaming_called(struct vb2_queue *q)
697{
698 return q->start_streaming_called;
699}
700
Philipp Zabelc1621842015-05-04 07:51:06 -0300701/**
702 * vb2_clear_last_buffer_dequeued() - clear last buffer dequeued flag of queue
703 * @q: videobuf queue
704 */
705static inline void vb2_clear_last_buffer_dequeued(struct vb2_queue *q)
706{
707 q->last_buffer_dequeued = false;
708}
709
Junghak Sungaf3bac12015-11-03 08:16:42 -0200710/*
711 * The following functions are not part of the vb2 core API, but are useful
712 * functions for videobuf2-*.
713 */
714bool vb2_buffer_in_use(struct vb2_queue *q, struct vb2_buffer *vb);
715int vb2_verify_memory_type(struct vb2_queue *q,
716 enum vb2_memory memory, unsigned int type);
Pawel Osciake23ccc02010-10-11 10:56:41 -0300717#endif /* _MEDIA_VIDEOBUF2_CORE_H */