blob: 1b355344c804070a93ab788697306f3a1d869c49 [file] [log] [blame]
Pawel Osciak7f986392010-04-23 05:38:37 -03001/*
2 * Memory-to-memory device framework for Video for Linux 2.
3 *
4 * Helper functions for devices that use memory buffers for both source
5 * and destination.
6 *
7 * Copyright (c) 2009 Samsung Electronics Co., Ltd.
Pawel Osciak95072082011-03-13 15:23:32 -03008 * Pawel Osciak, <pawel@osciak.com>
Pawel Osciak7f986392010-04-23 05:38:37 -03009 * Marek Szyprowski, <m.szyprowski@samsung.com>
10 *
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 the
13 * Free Software Foundation; either version 2 of the
14 * License, or (at your option) any later version
15 */
16
17#ifndef _MEDIA_V4L2_MEM2MEM_H
18#define _MEDIA_V4L2_MEM2MEM_H
19
Junghak Sungc1399902015-09-22 10:30:29 -030020#include <media/videobuf2-v4l2.h>
Pawel Osciak7f986392010-04-23 05:38:37 -030021
22/**
23 * struct v4l2_m2m_ops - mem-to-mem device driver callbacks
24 * @device_run: required. Begin the actual job (transaction) inside this
25 * callback.
26 * The job does NOT have to end before this callback returns
27 * (and it will be the usual case). When the job finishes,
28 * v4l2_m2m_job_finish() has to be called.
29 * @job_ready: optional. Should return 0 if the driver does not have a job
30 * fully prepared to run yet (i.e. it will not be able to finish a
31 * transaction without sleeping). If not provided, it will be
32 * assumed that one source and one destination buffer are all
33 * that is required for the driver to perform one full transaction.
34 * This method may not sleep.
35 * @job_abort: required. Informs the driver that it has to abort the currently
36 * running transaction as soon as possible (i.e. as soon as it can
37 * stop the device safely; e.g. in the next interrupt handler),
38 * even if the transaction would not have been finished by then.
39 * After the driver performs the necessary steps, it has to call
40 * v4l2_m2m_job_finish() (as if the transaction ended normally).
41 * This function does not have to (and will usually not) wait
42 * until the device enters a state when it can be stopped.
Mauro Carvalho Chehab62c0d012015-08-22 05:34:40 -030043 * @lock: optional. Define a driver's own lock callback, instead of using
Mauro Carvalho Chehab5fa5edb2016-09-08 10:16:36 -030044 * &v4l2_m2m_ctx->q_lock.
Mauro Carvalho Chehab62c0d012015-08-22 05:34:40 -030045 * @unlock: optional. Define a driver's own unlock callback, instead of
Mauro Carvalho Chehab5fa5edb2016-09-08 10:16:36 -030046 * using &v4l2_m2m_ctx->q_lock.
Pawel Osciak7f986392010-04-23 05:38:37 -030047 */
48struct v4l2_m2m_ops {
49 void (*device_run)(void *priv);
50 int (*job_ready)(void *priv);
51 void (*job_abort)(void *priv);
Marek Szyprowski908a0d72011-01-12 06:50:24 -030052 void (*lock)(void *priv);
53 void (*unlock)(void *priv);
Pawel Osciak7f986392010-04-23 05:38:37 -030054};
55
56struct v4l2_m2m_dev;
57
Mauro Carvalho Chehab5fa5edb2016-09-08 10:16:36 -030058/**
59 * struct v4l2_m2m_queue_ctx - represents a queue for buffers ready to be
60 * processed
61 *
62 * @q: pointer to struct &vb2_queue
63 * @rdy_queue: List of V4L2 mem-to-mem queues
64 * @rdy_spinlock: spin lock to protect the struct usage
65 * @num_rdy: number of buffers ready to be processed
66 * @buffered: is the queue buffered?
67 *
68 * Queue for buffers ready to be processed as soon as this
69 * instance receives access to the device.
70 */
71
Pawel Osciak7f986392010-04-23 05:38:37 -030072struct v4l2_m2m_queue_ctx {
Marek Szyprowski908a0d72011-01-12 06:50:24 -030073 struct vb2_queue q;
Pawel Osciak7f986392010-04-23 05:38:37 -030074
Pawel Osciak7f986392010-04-23 05:38:37 -030075 struct list_head rdy_queue;
Marek Szyprowski908a0d72011-01-12 06:50:24 -030076 spinlock_t rdy_spinlock;
Pawel Osciak7f986392010-04-23 05:38:37 -030077 u8 num_rdy;
Philipp Zabel33bdd5a2013-06-03 04:23:48 -030078 bool buffered;
Pawel Osciak7f986392010-04-23 05:38:37 -030079};
80
Mauro Carvalho Chehab5fa5edb2016-09-08 10:16:36 -030081/**
82 * struct v4l2_m2m_ctx - Memory to memory context structure
83 *
84 * @q_lock: struct &mutex lock
Mauro Carvalho Chehab9f8d3a22016-09-08 17:20:44 -030085 * @m2m_dev: opaque pointer to the internal data to handle M2M context
Mauro Carvalho Chehab5fa5edb2016-09-08 10:16:36 -030086 * @cap_q_ctx: Capture (output to memory) queue context
87 * @out_q_ctx: Output (input from memory) queue context
88 * @queue: List of memory to memory contexts
89 * @job_flags: Job queue flags, used internally by v4l2-mem2mem.c:
90 * %TRANS_QUEUED, %TRANS_RUNNING and %TRANS_ABORT.
91 * @finished: Wait queue used to signalize when a job queue finished.
92 * @priv: Instance private data
93 */
Pawel Osciak7f986392010-04-23 05:38:37 -030094struct v4l2_m2m_ctx {
Sylwester Nawrocki8e6e8f92013-09-14 18:39:04 -030095 /* optional cap/out vb2 queues lock */
96 struct mutex *q_lock;
97
Mauro Carvalho Chehab5fa5edb2016-09-08 10:16:36 -030098 /* internal use only */
Pawel Osciak7f986392010-04-23 05:38:37 -030099 struct v4l2_m2m_dev *m2m_dev;
100
Pawel Osciak7f986392010-04-23 05:38:37 -0300101 struct v4l2_m2m_queue_ctx cap_q_ctx;
102
Pawel Osciak7f986392010-04-23 05:38:37 -0300103 struct v4l2_m2m_queue_ctx out_q_ctx;
104
105 /* For device job queue */
106 struct list_head queue;
107 unsigned long job_flags;
Marek Szyprowski908a0d72011-01-12 06:50:24 -0300108 wait_queue_head_t finished;
Pawel Osciak7f986392010-04-23 05:38:37 -0300109
Pawel Osciak7f986392010-04-23 05:38:37 -0300110 void *priv;
111};
112
Mauro Carvalho Chehab5fa5edb2016-09-08 10:16:36 -0300113/**
114 * struct v4l2_m2m_buffer - Memory to memory buffer
115 *
116 * @vb: pointer to struct &vb2_v4l2_buffer
117 * @list: list of m2m buffers
118 */
Marek Szyprowski908a0d72011-01-12 06:50:24 -0300119struct v4l2_m2m_buffer {
Junghak Sung2d700712015-09-22 10:30:30 -0300120 struct vb2_v4l2_buffer vb;
Marek Szyprowski908a0d72011-01-12 06:50:24 -0300121 struct list_head list;
122};
123
Mauro Carvalho Chehab47816462016-09-08 10:16:27 -0300124/**
125 * v4l2_m2m_get_curr_priv() - return driver private data for the currently
126 * running instance or NULL if no instance is running
Mauro Carvalho Chehabdcbd8732016-09-08 10:39:58 -0300127 *
Mauro Carvalho Chehab9f8d3a22016-09-08 17:20:44 -0300128 * @m2m_dev: opaque pointer to the internal data to handle M2M context
Mauro Carvalho Chehab47816462016-09-08 10:16:27 -0300129 */
Pawel Osciak7f986392010-04-23 05:38:37 -0300130void *v4l2_m2m_get_curr_priv(struct v4l2_m2m_dev *m2m_dev);
131
Mauro Carvalho Chehab47816462016-09-08 10:16:27 -0300132/**
133 * v4l2_m2m_get_vq() - return vb2_queue for the given type
Mauro Carvalho Chehabdcbd8732016-09-08 10:39:58 -0300134 *
135 * @m2m_ctx: m2m context assigned to the instance given by struct &v4l2_m2m_ctx
136 * @type: type of the V4L2 buffer, as defined by enum &v4l2_buf_type
Mauro Carvalho Chehab47816462016-09-08 10:16:27 -0300137 */
Marek Szyprowski908a0d72011-01-12 06:50:24 -0300138struct vb2_queue *v4l2_m2m_get_vq(struct v4l2_m2m_ctx *m2m_ctx,
Pawel Osciak7f986392010-04-23 05:38:37 -0300139 enum v4l2_buf_type type);
140
Mauro Carvalho Chehab47816462016-09-08 10:16:27 -0300141/**
142 * v4l2_m2m_try_schedule() - check whether an instance is ready to be added to
143 * the pending job queue and add it if so.
Mauro Carvalho Chehabdcbd8732016-09-08 10:39:58 -0300144 *
145 * @m2m_ctx: m2m context assigned to the instance given by struct &v4l2_m2m_ctx
Mauro Carvalho Chehab47816462016-09-08 10:16:27 -0300146 *
147 * There are three basic requirements an instance has to meet to be able to run:
148 * 1) at least one source buffer has to be queued,
149 * 2) at least one destination buffer has to be queued,
150 * 3) streaming has to be on.
151 *
152 * If a queue is buffered (for example a decoder hardware ringbuffer that has
153 * to be drained before doing streamoff), allow scheduling without v4l2 buffers
154 * on that queue.
155 *
156 * There may also be additional, custom requirements. In such case the driver
157 * should supply a custom callback (job_ready in v4l2_m2m_ops) that should
158 * return 1 if the instance is ready.
159 * An example of the above could be an instance that requires more than one
160 * src/dst buffer per transaction.
161 */
Michael Olbrich1190a412014-07-22 09:36:04 -0300162void v4l2_m2m_try_schedule(struct v4l2_m2m_ctx *m2m_ctx);
163
Mauro Carvalho Chehab47816462016-09-08 10:16:27 -0300164/**
165 * v4l2_m2m_job_finish() - inform the framework that a job has been finished
166 * and have it clean up
167 *
Mauro Carvalho Chehab9f8d3a22016-09-08 17:20:44 -0300168 * @m2m_dev: opaque pointer to the internal data to handle M2M context
Mauro Carvalho Chehabdcbd8732016-09-08 10:39:58 -0300169 * @m2m_ctx: m2m context assigned to the instance given by struct &v4l2_m2m_ctx
170 *
Mauro Carvalho Chehab47816462016-09-08 10:16:27 -0300171 * Called by a driver to yield back the device after it has finished with it.
172 * Should be called as soon as possible after reaching a state which allows
173 * other instances to take control of the device.
174 *
Mauro Carvalho Chehab5fa5edb2016-09-08 10:16:36 -0300175 * This function has to be called only after &v4l2_m2m_ops->device_run
176 * callback has been called on the driver. To prevent recursion, it should
177 * not be called directly from the &v4l2_m2m_ops->device_run callback though.
Mauro Carvalho Chehab47816462016-09-08 10:16:27 -0300178 */
Pawel Osciak7f986392010-04-23 05:38:37 -0300179void v4l2_m2m_job_finish(struct v4l2_m2m_dev *m2m_dev,
180 struct v4l2_m2m_ctx *m2m_ctx);
181
Marek Szyprowski908a0d72011-01-12 06:50:24 -0300182static inline void
Junghak Sung2d700712015-09-22 10:30:30 -0300183v4l2_m2m_buf_done(struct vb2_v4l2_buffer *buf, enum vb2_buffer_state state)
Marek Szyprowski908a0d72011-01-12 06:50:24 -0300184{
Junghak Sung2d700712015-09-22 10:30:30 -0300185 vb2_buffer_done(&buf->vb2_buf, state);
Marek Szyprowski908a0d72011-01-12 06:50:24 -0300186}
187
Mauro Carvalho Chehab47816462016-09-08 10:16:27 -0300188/**
189 * v4l2_m2m_reqbufs() - multi-queue-aware REQBUFS multiplexer
Mauro Carvalho Chehabdcbd8732016-09-08 10:39:58 -0300190 *
191 * @file: pointer to struct &file
192 * @m2m_ctx: m2m context assigned to the instance given by struct &v4l2_m2m_ctx
193 * @reqbufs: pointer to struct &v4l2_requestbuffers
Mauro Carvalho Chehab47816462016-09-08 10:16:27 -0300194 */
Pawel Osciak7f986392010-04-23 05:38:37 -0300195int v4l2_m2m_reqbufs(struct file *file, struct v4l2_m2m_ctx *m2m_ctx,
196 struct v4l2_requestbuffers *reqbufs);
197
Mauro Carvalho Chehab47816462016-09-08 10:16:27 -0300198/**
199 * v4l2_m2m_querybuf() - multi-queue-aware QUERYBUF multiplexer
200 *
Mauro Carvalho Chehabdcbd8732016-09-08 10:39:58 -0300201 * @file: pointer to struct &file
202 * @m2m_ctx: m2m context assigned to the instance given by struct &v4l2_m2m_ctx
203 * @buf: pointer to struct &v4l2_buffer
204 *
Mauro Carvalho Chehab47816462016-09-08 10:16:27 -0300205 * See v4l2_m2m_mmap() documentation for details.
206 */
Pawel Osciak7f986392010-04-23 05:38:37 -0300207int v4l2_m2m_querybuf(struct file *file, struct v4l2_m2m_ctx *m2m_ctx,
208 struct v4l2_buffer *buf);
209
Mauro Carvalho Chehab47816462016-09-08 10:16:27 -0300210/**
211 * v4l2_m2m_qbuf() - enqueue a source or destination buffer, depending on
212 * the type
Mauro Carvalho Chehabdcbd8732016-09-08 10:39:58 -0300213 *
214 * @file: pointer to struct &file
215 * @m2m_ctx: m2m context assigned to the instance given by struct &v4l2_m2m_ctx
216 * @buf: pointer to struct &v4l2_buffer
Mauro Carvalho Chehab47816462016-09-08 10:16:27 -0300217 */
Pawel Osciak7f986392010-04-23 05:38:37 -0300218int v4l2_m2m_qbuf(struct file *file, struct v4l2_m2m_ctx *m2m_ctx,
219 struct v4l2_buffer *buf);
Mauro Carvalho Chehab47816462016-09-08 10:16:27 -0300220
221/**
222 * v4l2_m2m_dqbuf() - dequeue a source or destination buffer, depending on
223 * the type
Mauro Carvalho Chehabdcbd8732016-09-08 10:39:58 -0300224 *
225 * @file: pointer to struct &file
226 * @m2m_ctx: m2m context assigned to the instance given by struct &v4l2_m2m_ctx
227 * @buf: pointer to struct &v4l2_buffer
Mauro Carvalho Chehab47816462016-09-08 10:16:27 -0300228 */
Pawel Osciak7f986392010-04-23 05:38:37 -0300229int v4l2_m2m_dqbuf(struct file *file, struct v4l2_m2m_ctx *m2m_ctx,
230 struct v4l2_buffer *buf);
Mauro Carvalho Chehab47816462016-09-08 10:16:27 -0300231
232/**
233 * v4l2_m2m_prepare_buf() - prepare a source or destination buffer, depending on
234 * the type
Mauro Carvalho Chehabdcbd8732016-09-08 10:39:58 -0300235 *
236 * @file: pointer to struct &file
237 * @m2m_ctx: m2m context assigned to the instance given by struct &v4l2_m2m_ctx
238 * @buf: pointer to struct &v4l2_buffer
Mauro Carvalho Chehab47816462016-09-08 10:16:27 -0300239 */
Hans Verkuile68cf472015-06-05 11:28:50 -0300240int v4l2_m2m_prepare_buf(struct file *file, struct v4l2_m2m_ctx *m2m_ctx,
241 struct v4l2_buffer *buf);
Mauro Carvalho Chehab47816462016-09-08 10:16:27 -0300242
243/**
244 * v4l2_m2m_create_bufs() - create a source or destination buffer, depending
245 * on the type
Mauro Carvalho Chehabdcbd8732016-09-08 10:39:58 -0300246 *
247 * @file: pointer to struct &file
248 * @m2m_ctx: m2m context assigned to the instance given by struct &v4l2_m2m_ctx
249 * @create: pointer to struct &v4l2_create_buffers
Mauro Carvalho Chehab47816462016-09-08 10:16:27 -0300250 */
Philipp Zabel8b94ca62013-05-21 04:16:28 -0300251int v4l2_m2m_create_bufs(struct file *file, struct v4l2_m2m_ctx *m2m_ctx,
252 struct v4l2_create_buffers *create);
Pawel Osciak7f986392010-04-23 05:38:37 -0300253
Mauro Carvalho Chehab47816462016-09-08 10:16:27 -0300254/**
255 * v4l2_m2m_expbuf() - export a source or destination buffer, depending on
256 * the type
Mauro Carvalho Chehabdcbd8732016-09-08 10:39:58 -0300257 *
258 * @file: pointer to struct &file
259 * @m2m_ctx: m2m context assigned to the instance given by struct &v4l2_m2m_ctx
260 * @eb: pointer to struct &v4l2_exportbuffer
Mauro Carvalho Chehab47816462016-09-08 10:16:27 -0300261 */
Tomasz Stanislawski83ae7c52012-06-14 11:32:24 -0300262int v4l2_m2m_expbuf(struct file *file, struct v4l2_m2m_ctx *m2m_ctx,
263 struct v4l2_exportbuffer *eb);
264
Mauro Carvalho Chehab47816462016-09-08 10:16:27 -0300265/**
266 * v4l2_m2m_streamon() - turn on streaming for a video queue
Mauro Carvalho Chehabdcbd8732016-09-08 10:39:58 -0300267 *
268 * @file: pointer to struct &file
269 * @m2m_ctx: m2m context assigned to the instance given by struct &v4l2_m2m_ctx
270 * @type: type of the V4L2 buffer, as defined by enum &v4l2_buf_type
Mauro Carvalho Chehab47816462016-09-08 10:16:27 -0300271 */
Pawel Osciak7f986392010-04-23 05:38:37 -0300272int v4l2_m2m_streamon(struct file *file, struct v4l2_m2m_ctx *m2m_ctx,
273 enum v4l2_buf_type type);
Mauro Carvalho Chehab47816462016-09-08 10:16:27 -0300274
275/**
276 * v4l2_m2m_streamoff() - turn off streaming for a video queue
Mauro Carvalho Chehabdcbd8732016-09-08 10:39:58 -0300277 *
278 * @file: pointer to struct &file
279 * @m2m_ctx: m2m context assigned to the instance given by struct &v4l2_m2m_ctx
280 * @type: type of the V4L2 buffer, as defined by enum &v4l2_buf_type
Mauro Carvalho Chehab47816462016-09-08 10:16:27 -0300281 */
Pawel Osciak7f986392010-04-23 05:38:37 -0300282int v4l2_m2m_streamoff(struct file *file, struct v4l2_m2m_ctx *m2m_ctx,
283 enum v4l2_buf_type type);
284
Mauro Carvalho Chehab47816462016-09-08 10:16:27 -0300285/**
286 * v4l2_m2m_poll() - poll replacement, for destination buffers only
287 *
Mauro Carvalho Chehabdcbd8732016-09-08 10:39:58 -0300288 * @file: pointer to struct &file
289 * @m2m_ctx: m2m context assigned to the instance given by struct &v4l2_m2m_ctx
290 * @wait: pointer to struct &poll_table_struct
291 *
Mauro Carvalho Chehab47816462016-09-08 10:16:27 -0300292 * Call from the driver's poll() function. Will poll both queues. If a buffer
293 * is available to dequeue (with dqbuf) from the source queue, this will
294 * indicate that a non-blocking write can be performed, while read will be
295 * returned in case of the destination queue.
296 */
Pawel Osciak7f986392010-04-23 05:38:37 -0300297unsigned int v4l2_m2m_poll(struct file *file, struct v4l2_m2m_ctx *m2m_ctx,
298 struct poll_table_struct *wait);
299
Mauro Carvalho Chehab47816462016-09-08 10:16:27 -0300300/**
301 * v4l2_m2m_mmap() - source and destination queues-aware mmap multiplexer
302 *
Mauro Carvalho Chehabdcbd8732016-09-08 10:39:58 -0300303 * @file: pointer to struct &file
304 * @m2m_ctx: m2m context assigned to the instance given by struct &v4l2_m2m_ctx
305 * @vma: pointer to struct &vm_area_struct
306 *
Mauro Carvalho Chehab47816462016-09-08 10:16:27 -0300307 * Call from driver's mmap() function. Will handle mmap() for both queues
308 * seamlessly for videobuffer, which will receive normal per-queue offsets and
309 * proper videobuf queue pointers. The differentiation is made outside videobuf
310 * by adding a predefined offset to buffers from one of the queues and
311 * subtracting it before passing it back to videobuf. Only drivers (and
312 * thus applications) receive modified offsets.
313 */
Pawel Osciak7f986392010-04-23 05:38:37 -0300314int v4l2_m2m_mmap(struct file *file, struct v4l2_m2m_ctx *m2m_ctx,
315 struct vm_area_struct *vma);
316
Mauro Carvalho Chehab47816462016-09-08 10:16:27 -0300317/**
318 * v4l2_m2m_init() - initialize per-driver m2m data
319 *
Mauro Carvalho Chehabdcbd8732016-09-08 10:39:58 -0300320 * @m2m_ops: pointer to struct v4l2_m2m_ops
321 *
Mauro Carvalho Chehab5fa5edb2016-09-08 10:16:36 -0300322 * Usually called from driver's ``probe()`` function.
323 *
324 * Return: returns an opaque pointer to the internal data to handle M2M context
Mauro Carvalho Chehab47816462016-09-08 10:16:27 -0300325 */
Guennadi Liakhovetskib1252eb2012-09-11 06:32:17 -0300326struct v4l2_m2m_dev *v4l2_m2m_init(const struct v4l2_m2m_ops *m2m_ops);
Mauro Carvalho Chehab47816462016-09-08 10:16:27 -0300327
328/**
329 * v4l2_m2m_release() - cleans up and frees a m2m_dev structure
330 *
Mauro Carvalho Chehab9f8d3a22016-09-08 17:20:44 -0300331 * @m2m_dev: opaque pointer to the internal data to handle M2M context
Mauro Carvalho Chehabdcbd8732016-09-08 10:39:58 -0300332 *
Mauro Carvalho Chehab5fa5edb2016-09-08 10:16:36 -0300333 * Usually called from driver's ``remove()`` function.
Mauro Carvalho Chehab47816462016-09-08 10:16:27 -0300334 */
Pawel Osciak7f986392010-04-23 05:38:37 -0300335void v4l2_m2m_release(struct v4l2_m2m_dev *m2m_dev);
336
Mauro Carvalho Chehab47816462016-09-08 10:16:27 -0300337/**
338 * v4l2_m2m_ctx_init() - allocate and initialize a m2m context
Mauro Carvalho Chehabdcbd8732016-09-08 10:39:58 -0300339 *
Mauro Carvalho Chehab9f8d3a22016-09-08 17:20:44 -0300340 * @m2m_dev: opaque pointer to the internal data to handle M2M context
Mauro Carvalho Chehabdcbd8732016-09-08 10:39:58 -0300341 * @drv_priv: driver's instance private data
342 * @queue_init: a callback for queue type-specific initialization function
343 * to be used for initializing videobuf_queues
Mauro Carvalho Chehab47816462016-09-08 10:16:27 -0300344 *
Mauro Carvalho Chehab5fa5edb2016-09-08 10:16:36 -0300345 * Usually called from driver's ``open()`` function.
Mauro Carvalho Chehab47816462016-09-08 10:16:27 -0300346 */
Marek Szyprowski908a0d72011-01-12 06:50:24 -0300347struct v4l2_m2m_ctx *v4l2_m2m_ctx_init(struct v4l2_m2m_dev *m2m_dev,
348 void *drv_priv,
349 int (*queue_init)(void *priv, struct vb2_queue *src_vq, struct vb2_queue *dst_vq));
350
Philipp Zabel33bdd5a2013-06-03 04:23:48 -0300351static inline void v4l2_m2m_set_src_buffered(struct v4l2_m2m_ctx *m2m_ctx,
352 bool buffered)
353{
354 m2m_ctx->out_q_ctx.buffered = buffered;
355}
356
357static inline void v4l2_m2m_set_dst_buffered(struct v4l2_m2m_ctx *m2m_ctx,
358 bool buffered)
359{
360 m2m_ctx->cap_q_ctx.buffered = buffered;
361}
362
Mauro Carvalho Chehab47816462016-09-08 10:16:27 -0300363/**
364 * v4l2_m2m_ctx_release() - release m2m context
365 *
Mauro Carvalho Chehabdcbd8732016-09-08 10:39:58 -0300366 * @m2m_ctx: m2m context assigned to the instance given by struct &v4l2_m2m_ctx
367 *
Mauro Carvalho Chehab47816462016-09-08 10:16:27 -0300368 * Usually called from driver's release() function.
369 */
Pawel Osciak7f986392010-04-23 05:38:37 -0300370void v4l2_m2m_ctx_release(struct v4l2_m2m_ctx *m2m_ctx);
371
Mauro Carvalho Chehab47816462016-09-08 10:16:27 -0300372/**
373 * v4l2_m2m_buf_queue() - add a buffer to the proper ready buffers list.
374 *
Mauro Carvalho Chehabdcbd8732016-09-08 10:39:58 -0300375 * @m2m_ctx: m2m context assigned to the instance given by struct &v4l2_m2m_ctx
376 * @vbuf: pointer to struct &vb2_v4l2_buffer
377 *
Mauro Carvalho Chehab5fa5edb2016-09-08 10:16:36 -0300378 * Call from videobuf_queue_ops->ops->buf_queue, videobuf_queue_ops callback.
Mauro Carvalho Chehab47816462016-09-08 10:16:27 -0300379 */
Junghak Sung2d700712015-09-22 10:30:30 -0300380void v4l2_m2m_buf_queue(struct v4l2_m2m_ctx *m2m_ctx,
381 struct vb2_v4l2_buffer *vbuf);
Pawel Osciak7f986392010-04-23 05:38:37 -0300382
383/**
384 * v4l2_m2m_num_src_bufs_ready() - return the number of source buffers ready for
385 * use
Mauro Carvalho Chehab62c0d012015-08-22 05:34:40 -0300386 *
Mauro Carvalho Chehabdcbd8732016-09-08 10:39:58 -0300387 * @m2m_ctx: m2m context assigned to the instance given by struct &v4l2_m2m_ctx
Pawel Osciak7f986392010-04-23 05:38:37 -0300388 */
389static inline
390unsigned int v4l2_m2m_num_src_bufs_ready(struct v4l2_m2m_ctx *m2m_ctx)
391{
Sascha Hauer961ae442012-08-31 09:18:04 -0300392 return m2m_ctx->out_q_ctx.num_rdy;
Pawel Osciak7f986392010-04-23 05:38:37 -0300393}
394
395/**
Mauro Carvalho Chehabe383ce02016-09-22 07:59:03 -0300396 * v4l2_m2m_num_dst_bufs_ready() - return the number of destination buffers
Pawel Osciak7f986392010-04-23 05:38:37 -0300397 * ready for use
Mauro Carvalho Chehab62c0d012015-08-22 05:34:40 -0300398 *
Mauro Carvalho Chehabdcbd8732016-09-08 10:39:58 -0300399 * @m2m_ctx: m2m context assigned to the instance given by struct &v4l2_m2m_ctx
Pawel Osciak7f986392010-04-23 05:38:37 -0300400 */
401static inline
402unsigned int v4l2_m2m_num_dst_bufs_ready(struct v4l2_m2m_ctx *m2m_ctx)
403{
Sascha Hauer961ae442012-08-31 09:18:04 -0300404 return m2m_ctx->cap_q_ctx.num_rdy;
Pawel Osciak7f986392010-04-23 05:38:37 -0300405}
406
Mauro Carvalho Chehab47816462016-09-08 10:16:27 -0300407/**
408 * v4l2_m2m_next_buf() - return next buffer from the list of ready buffers
Mauro Carvalho Chehabdcbd8732016-09-08 10:39:58 -0300409 *
410 * @q_ctx: pointer to struct @v4l2_m2m_queue_ctx
Mauro Carvalho Chehab47816462016-09-08 10:16:27 -0300411 */
Marek Szyprowski908a0d72011-01-12 06:50:24 -0300412void *v4l2_m2m_next_buf(struct v4l2_m2m_queue_ctx *q_ctx);
Pawel Osciak7f986392010-04-23 05:38:37 -0300413
414/**
415 * v4l2_m2m_next_src_buf() - return next source buffer from the list of ready
416 * buffers
Mauro Carvalho Chehab62c0d012015-08-22 05:34:40 -0300417 *
Mauro Carvalho Chehabdcbd8732016-09-08 10:39:58 -0300418 * @m2m_ctx: m2m context assigned to the instance given by struct &v4l2_m2m_ctx
Pawel Osciak7f986392010-04-23 05:38:37 -0300419 */
420static inline void *v4l2_m2m_next_src_buf(struct v4l2_m2m_ctx *m2m_ctx)
421{
Marek Szyprowski908a0d72011-01-12 06:50:24 -0300422 return v4l2_m2m_next_buf(&m2m_ctx->out_q_ctx);
Pawel Osciak7f986392010-04-23 05:38:37 -0300423}
424
425/**
426 * v4l2_m2m_next_dst_buf() - return next destination buffer from the list of
427 * ready buffers
Mauro Carvalho Chehab62c0d012015-08-22 05:34:40 -0300428 *
Mauro Carvalho Chehabdcbd8732016-09-08 10:39:58 -0300429 * @m2m_ctx: m2m context assigned to the instance given by struct &v4l2_m2m_ctx
Pawel Osciak7f986392010-04-23 05:38:37 -0300430 */
431static inline void *v4l2_m2m_next_dst_buf(struct v4l2_m2m_ctx *m2m_ctx)
432{
Marek Szyprowski908a0d72011-01-12 06:50:24 -0300433 return v4l2_m2m_next_buf(&m2m_ctx->cap_q_ctx);
Pawel Osciak7f986392010-04-23 05:38:37 -0300434}
435
436/**
Marek Szyprowski908a0d72011-01-12 06:50:24 -0300437 * v4l2_m2m_get_src_vq() - return vb2_queue for source buffers
Mauro Carvalho Chehab62c0d012015-08-22 05:34:40 -0300438 *
Mauro Carvalho Chehabdcbd8732016-09-08 10:39:58 -0300439 * @m2m_ctx: m2m context assigned to the instance given by struct &v4l2_m2m_ctx
Pawel Osciak7f986392010-04-23 05:38:37 -0300440 */
441static inline
Marek Szyprowski908a0d72011-01-12 06:50:24 -0300442struct vb2_queue *v4l2_m2m_get_src_vq(struct v4l2_m2m_ctx *m2m_ctx)
Pawel Osciak7f986392010-04-23 05:38:37 -0300443{
Marek Szyprowski908a0d72011-01-12 06:50:24 -0300444 return &m2m_ctx->out_q_ctx.q;
Pawel Osciak7f986392010-04-23 05:38:37 -0300445}
446
447/**
Marek Szyprowski908a0d72011-01-12 06:50:24 -0300448 * v4l2_m2m_get_dst_vq() - return vb2_queue for destination buffers
Mauro Carvalho Chehab62c0d012015-08-22 05:34:40 -0300449 *
Mauro Carvalho Chehabdcbd8732016-09-08 10:39:58 -0300450 * @m2m_ctx: m2m context assigned to the instance given by struct &v4l2_m2m_ctx
Pawel Osciak7f986392010-04-23 05:38:37 -0300451 */
452static inline
Marek Szyprowski908a0d72011-01-12 06:50:24 -0300453struct vb2_queue *v4l2_m2m_get_dst_vq(struct v4l2_m2m_ctx *m2m_ctx)
Pawel Osciak7f986392010-04-23 05:38:37 -0300454{
Marek Szyprowski908a0d72011-01-12 06:50:24 -0300455 return &m2m_ctx->cap_q_ctx.q;
Pawel Osciak7f986392010-04-23 05:38:37 -0300456}
457
Mauro Carvalho Chehab47816462016-09-08 10:16:27 -0300458/**
459 * v4l2_m2m_buf_remove() - take off a buffer from the list of ready buffers and
460 * return it
Mauro Carvalho Chehabdcbd8732016-09-08 10:39:58 -0300461 *
462 * @q_ctx: pointer to struct @v4l2_m2m_queue_ctx
Mauro Carvalho Chehab47816462016-09-08 10:16:27 -0300463 */
Marek Szyprowski908a0d72011-01-12 06:50:24 -0300464void *v4l2_m2m_buf_remove(struct v4l2_m2m_queue_ctx *q_ctx);
Pawel Osciak7f986392010-04-23 05:38:37 -0300465
466/**
467 * v4l2_m2m_src_buf_remove() - take off a source buffer from the list of ready
468 * buffers and return it
Mauro Carvalho Chehab62c0d012015-08-22 05:34:40 -0300469 *
Mauro Carvalho Chehabdcbd8732016-09-08 10:39:58 -0300470 * @m2m_ctx: m2m context assigned to the instance given by struct &v4l2_m2m_ctx
Pawel Osciak7f986392010-04-23 05:38:37 -0300471 */
472static inline void *v4l2_m2m_src_buf_remove(struct v4l2_m2m_ctx *m2m_ctx)
473{
Marek Szyprowski908a0d72011-01-12 06:50:24 -0300474 return v4l2_m2m_buf_remove(&m2m_ctx->out_q_ctx);
Pawel Osciak7f986392010-04-23 05:38:37 -0300475}
476
477/**
478 * v4l2_m2m_dst_buf_remove() - take off a destination buffer from the list of
479 * ready buffers and return it
Mauro Carvalho Chehab62c0d012015-08-22 05:34:40 -0300480 *
Mauro Carvalho Chehabdcbd8732016-09-08 10:39:58 -0300481 * @m2m_ctx: m2m context assigned to the instance given by struct &v4l2_m2m_ctx
Pawel Osciak7f986392010-04-23 05:38:37 -0300482 */
483static inline void *v4l2_m2m_dst_buf_remove(struct v4l2_m2m_ctx *m2m_ctx)
484{
Marek Szyprowski908a0d72011-01-12 06:50:24 -0300485 return v4l2_m2m_buf_remove(&m2m_ctx->cap_q_ctx);
Pawel Osciak7f986392010-04-23 05:38:37 -0300486}
487
Sylwester Nawrocki8e6e8f92013-09-14 18:39:04 -0300488/* v4l2 ioctl helpers */
489
490int v4l2_m2m_ioctl_reqbufs(struct file *file, void *priv,
491 struct v4l2_requestbuffers *rb);
492int v4l2_m2m_ioctl_create_bufs(struct file *file, void *fh,
493 struct v4l2_create_buffers *create);
494int v4l2_m2m_ioctl_querybuf(struct file *file, void *fh,
495 struct v4l2_buffer *buf);
496int v4l2_m2m_ioctl_expbuf(struct file *file, void *fh,
497 struct v4l2_exportbuffer *eb);
498int v4l2_m2m_ioctl_qbuf(struct file *file, void *fh,
499 struct v4l2_buffer *buf);
500int v4l2_m2m_ioctl_dqbuf(struct file *file, void *fh,
501 struct v4l2_buffer *buf);
Hans Verkuile68cf472015-06-05 11:28:50 -0300502int v4l2_m2m_ioctl_prepare_buf(struct file *file, void *fh,
503 struct v4l2_buffer *buf);
Sylwester Nawrocki8e6e8f92013-09-14 18:39:04 -0300504int v4l2_m2m_ioctl_streamon(struct file *file, void *fh,
505 enum v4l2_buf_type type);
506int v4l2_m2m_ioctl_streamoff(struct file *file, void *fh,
507 enum v4l2_buf_type type);
508int v4l2_m2m_fop_mmap(struct file *file, struct vm_area_struct *vma);
509unsigned int v4l2_m2m_fop_poll(struct file *file, poll_table *wait);
510
Pawel Osciak7f986392010-04-23 05:38:37 -0300511#endif /* _MEDIA_V4L2_MEM2MEM_H */
512