Thomas Gleixner | 2874c5f | 2019-05-27 08:55:01 +0200 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0-or-later */ |
Pawel Osciak | 7f98639 | 2010-04-23 05:38:37 -0300 | [diff] [blame] | 2 | /* |
| 3 | * Memory-to-memory device framework for Video for Linux 2. |
| 4 | * |
| 5 | * Helper functions for devices that use memory buffers for both source |
| 6 | * and destination. |
| 7 | * |
| 8 | * Copyright (c) 2009 Samsung Electronics Co., Ltd. |
Pawel Osciak | 9507208 | 2011-03-13 15:23:32 -0300 | [diff] [blame] | 9 | * Pawel Osciak, <pawel@osciak.com> |
Pawel Osciak | 7f98639 | 2010-04-23 05:38:37 -0300 | [diff] [blame] | 10 | * Marek Szyprowski, <m.szyprowski@samsung.com> |
Pawel Osciak | 7f98639 | 2010-04-23 05:38:37 -0300 | [diff] [blame] | 11 | */ |
| 12 | |
| 13 | #ifndef _MEDIA_V4L2_MEM2MEM_H |
| 14 | #define _MEDIA_V4L2_MEM2MEM_H |
| 15 | |
Junghak Sung | c139990 | 2015-09-22 10:30:29 -0300 | [diff] [blame] | 16 | #include <media/videobuf2-v4l2.h> |
Pawel Osciak | 7f98639 | 2010-04-23 05:38:37 -0300 | [diff] [blame] | 17 | |
| 18 | /** |
| 19 | * struct v4l2_m2m_ops - mem-to-mem device driver callbacks |
| 20 | * @device_run: required. Begin the actual job (transaction) inside this |
| 21 | * callback. |
| 22 | * The job does NOT have to end before this callback returns |
| 23 | * (and it will be the usual case). When the job finishes, |
Hans Verkuil | f8cca8c | 2019-10-11 06:32:41 -0300 | [diff] [blame] | 24 | * v4l2_m2m_job_finish() or v4l2_m2m_buf_done_and_job_finish() |
| 25 | * has to be called. |
Pawel Osciak | 7f98639 | 2010-04-23 05:38:37 -0300 | [diff] [blame] | 26 | * @job_ready: optional. Should return 0 if the driver does not have a job |
| 27 | * fully prepared to run yet (i.e. it will not be able to finish a |
| 28 | * transaction without sleeping). If not provided, it will be |
| 29 | * assumed that one source and one destination buffer are all |
| 30 | * that is required for the driver to perform one full transaction. |
| 31 | * This method may not sleep. |
Ezequiel Garcia | 5525b83 | 2018-06-18 00:38:52 -0400 | [diff] [blame] | 32 | * @job_abort: optional. Informs the driver that it has to abort the currently |
Pawel Osciak | 7f98639 | 2010-04-23 05:38:37 -0300 | [diff] [blame] | 33 | * running transaction as soon as possible (i.e. as soon as it can |
| 34 | * stop the device safely; e.g. in the next interrupt handler), |
| 35 | * even if the transaction would not have been finished by then. |
| 36 | * After the driver performs the necessary steps, it has to call |
Hans Verkuil | f8cca8c | 2019-10-11 06:32:41 -0300 | [diff] [blame] | 37 | * v4l2_m2m_job_finish() or v4l2_m2m_buf_done_and_job_finish() as |
| 38 | * if the transaction ended normally. |
Pawel Osciak | 7f98639 | 2010-04-23 05:38:37 -0300 | [diff] [blame] | 39 | * This function does not have to (and will usually not) wait |
| 40 | * until the device enters a state when it can be stopped. |
| 41 | */ |
| 42 | struct v4l2_m2m_ops { |
| 43 | void (*device_run)(void *priv); |
| 44 | int (*job_ready)(void *priv); |
| 45 | void (*job_abort)(void *priv); |
| 46 | }; |
| 47 | |
Ezequiel Garcia | be2fff6 | 2018-07-02 11:36:05 -0400 | [diff] [blame] | 48 | struct video_device; |
Pawel Osciak | 7f98639 | 2010-04-23 05:38:37 -0300 | [diff] [blame] | 49 | struct v4l2_m2m_dev; |
| 50 | |
Mauro Carvalho Chehab | 5fa5edb | 2016-09-08 10:16:36 -0300 | [diff] [blame] | 51 | /** |
| 52 | * struct v4l2_m2m_queue_ctx - represents a queue for buffers ready to be |
| 53 | * processed |
| 54 | * |
| 55 | * @q: pointer to struct &vb2_queue |
| 56 | * @rdy_queue: List of V4L2 mem-to-mem queues |
| 57 | * @rdy_spinlock: spin lock to protect the struct usage |
| 58 | * @num_rdy: number of buffers ready to be processed |
| 59 | * @buffered: is the queue buffered? |
| 60 | * |
| 61 | * Queue for buffers ready to be processed as soon as this |
| 62 | * instance receives access to the device. |
| 63 | */ |
| 64 | |
Pawel Osciak | 7f98639 | 2010-04-23 05:38:37 -0300 | [diff] [blame] | 65 | struct v4l2_m2m_queue_ctx { |
Marek Szyprowski | 908a0d7 | 2011-01-12 06:50:24 -0300 | [diff] [blame] | 66 | struct vb2_queue q; |
Pawel Osciak | 7f98639 | 2010-04-23 05:38:37 -0300 | [diff] [blame] | 67 | |
Pawel Osciak | 7f98639 | 2010-04-23 05:38:37 -0300 | [diff] [blame] | 68 | struct list_head rdy_queue; |
Marek Szyprowski | 908a0d7 | 2011-01-12 06:50:24 -0300 | [diff] [blame] | 69 | spinlock_t rdy_spinlock; |
Pawel Osciak | 7f98639 | 2010-04-23 05:38:37 -0300 | [diff] [blame] | 70 | u8 num_rdy; |
Philipp Zabel | 33bdd5a | 2013-06-03 04:23:48 -0300 | [diff] [blame] | 71 | bool buffered; |
Pawel Osciak | 7f98639 | 2010-04-23 05:38:37 -0300 | [diff] [blame] | 72 | }; |
| 73 | |
Mauro Carvalho Chehab | 5fa5edb | 2016-09-08 10:16:36 -0300 | [diff] [blame] | 74 | /** |
| 75 | * struct v4l2_m2m_ctx - Memory to memory context structure |
| 76 | * |
| 77 | * @q_lock: struct &mutex lock |
Hans Verkuil | f07602a | 2019-10-11 06:32:44 -0300 | [diff] [blame] | 78 | * @new_frame: valid in the device_run callback: if true, then this |
| 79 | * starts a new frame; if false, then this is a new slice |
| 80 | * for an existing frame. This is always true unless |
| 81 | * V4L2_BUF_CAP_SUPPORTS_M2M_HOLD_CAPTURE_BUF is set, which |
| 82 | * indicates slicing support. |
Neil Armstrong | 2b48e11 | 2020-03-03 15:33:17 +0100 | [diff] [blame] | 83 | * @is_draining: indicates device is in draining phase |
| 84 | * @last_src_buf: indicate the last source buffer for draining |
| 85 | * @next_buf_last: next capture queud buffer will be tagged as last |
| 86 | * @has_stopped: indicate the device has been stopped |
Mauro Carvalho Chehab | 9f8d3a2 | 2016-09-08 17:20:44 -0300 | [diff] [blame] | 87 | * @m2m_dev: opaque pointer to the internal data to handle M2M context |
Mauro Carvalho Chehab | 5fa5edb | 2016-09-08 10:16:36 -0300 | [diff] [blame] | 88 | * @cap_q_ctx: Capture (output to memory) queue context |
| 89 | * @out_q_ctx: Output (input from memory) queue context |
| 90 | * @queue: List of memory to memory contexts |
| 91 | * @job_flags: Job queue flags, used internally by v4l2-mem2mem.c: |
| 92 | * %TRANS_QUEUED, %TRANS_RUNNING and %TRANS_ABORT. |
| 93 | * @finished: Wait queue used to signalize when a job queue finished. |
| 94 | * @priv: Instance private data |
Sakari Ailus | 708f48e | 2016-10-18 11:15:32 -0200 | [diff] [blame] | 95 | * |
| 96 | * The memory to memory context is specific to a file handle, NOT to e.g. |
| 97 | * a device. |
Mauro Carvalho Chehab | 5fa5edb | 2016-09-08 10:16:36 -0300 | [diff] [blame] | 98 | */ |
Pawel Osciak | 7f98639 | 2010-04-23 05:38:37 -0300 | [diff] [blame] | 99 | struct v4l2_m2m_ctx { |
Sylwester Nawrocki | 8e6e8f9 | 2013-09-14 18:39:04 -0300 | [diff] [blame] | 100 | /* optional cap/out vb2 queues lock */ |
| 101 | struct mutex *q_lock; |
| 102 | |
Hans Verkuil | f07602a | 2019-10-11 06:32:44 -0300 | [diff] [blame] | 103 | bool new_frame; |
| 104 | |
Neil Armstrong | 2b48e11 | 2020-03-03 15:33:17 +0100 | [diff] [blame] | 105 | bool is_draining; |
| 106 | struct vb2_v4l2_buffer *last_src_buf; |
| 107 | bool next_buf_last; |
| 108 | bool has_stopped; |
| 109 | |
Mauro Carvalho Chehab | 5fa5edb | 2016-09-08 10:16:36 -0300 | [diff] [blame] | 110 | /* internal use only */ |
Pawel Osciak | 7f98639 | 2010-04-23 05:38:37 -0300 | [diff] [blame] | 111 | struct v4l2_m2m_dev *m2m_dev; |
| 112 | |
Pawel Osciak | 7f98639 | 2010-04-23 05:38:37 -0300 | [diff] [blame] | 113 | struct v4l2_m2m_queue_ctx cap_q_ctx; |
| 114 | |
Pawel Osciak | 7f98639 | 2010-04-23 05:38:37 -0300 | [diff] [blame] | 115 | struct v4l2_m2m_queue_ctx out_q_ctx; |
| 116 | |
| 117 | /* For device job queue */ |
| 118 | struct list_head queue; |
| 119 | unsigned long job_flags; |
Marek Szyprowski | 908a0d7 | 2011-01-12 06:50:24 -0300 | [diff] [blame] | 120 | wait_queue_head_t finished; |
Pawel Osciak | 7f98639 | 2010-04-23 05:38:37 -0300 | [diff] [blame] | 121 | |
Pawel Osciak | 7f98639 | 2010-04-23 05:38:37 -0300 | [diff] [blame] | 122 | void *priv; |
| 123 | }; |
| 124 | |
Mauro Carvalho Chehab | 5fa5edb | 2016-09-08 10:16:36 -0300 | [diff] [blame] | 125 | /** |
| 126 | * struct v4l2_m2m_buffer - Memory to memory buffer |
| 127 | * |
| 128 | * @vb: pointer to struct &vb2_v4l2_buffer |
| 129 | * @list: list of m2m buffers |
| 130 | */ |
Marek Szyprowski | 908a0d7 | 2011-01-12 06:50:24 -0300 | [diff] [blame] | 131 | struct v4l2_m2m_buffer { |
Junghak Sung | 2d70071 | 2015-09-22 10:30:30 -0300 | [diff] [blame] | 132 | struct vb2_v4l2_buffer vb; |
Marek Szyprowski | 908a0d7 | 2011-01-12 06:50:24 -0300 | [diff] [blame] | 133 | struct list_head list; |
| 134 | }; |
| 135 | |
Mauro Carvalho Chehab | 4781646 | 2016-09-08 10:16:27 -0300 | [diff] [blame] | 136 | /** |
| 137 | * v4l2_m2m_get_curr_priv() - return driver private data for the currently |
| 138 | * running instance or NULL if no instance is running |
Mauro Carvalho Chehab | dcbd873 | 2016-09-08 10:39:58 -0300 | [diff] [blame] | 139 | * |
Mauro Carvalho Chehab | 9f8d3a2 | 2016-09-08 17:20:44 -0300 | [diff] [blame] | 140 | * @m2m_dev: opaque pointer to the internal data to handle M2M context |
Mauro Carvalho Chehab | 4781646 | 2016-09-08 10:16:27 -0300 | [diff] [blame] | 141 | */ |
Pawel Osciak | 7f98639 | 2010-04-23 05:38:37 -0300 | [diff] [blame] | 142 | void *v4l2_m2m_get_curr_priv(struct v4l2_m2m_dev *m2m_dev); |
| 143 | |
Mauro Carvalho Chehab | 4781646 | 2016-09-08 10:16:27 -0300 | [diff] [blame] | 144 | /** |
| 145 | * v4l2_m2m_get_vq() - return vb2_queue for the given type |
Mauro Carvalho Chehab | dcbd873 | 2016-09-08 10:39:58 -0300 | [diff] [blame] | 146 | * |
| 147 | * @m2m_ctx: m2m context assigned to the instance given by struct &v4l2_m2m_ctx |
| 148 | * @type: type of the V4L2 buffer, as defined by enum &v4l2_buf_type |
Mauro Carvalho Chehab | 4781646 | 2016-09-08 10:16:27 -0300 | [diff] [blame] | 149 | */ |
Marek Szyprowski | 908a0d7 | 2011-01-12 06:50:24 -0300 | [diff] [blame] | 150 | struct vb2_queue *v4l2_m2m_get_vq(struct v4l2_m2m_ctx *m2m_ctx, |
Pawel Osciak | 7f98639 | 2010-04-23 05:38:37 -0300 | [diff] [blame] | 151 | enum v4l2_buf_type type); |
| 152 | |
Mauro Carvalho Chehab | 4781646 | 2016-09-08 10:16:27 -0300 | [diff] [blame] | 153 | /** |
| 154 | * v4l2_m2m_try_schedule() - check whether an instance is ready to be added to |
| 155 | * the pending job queue and add it if so. |
Mauro Carvalho Chehab | dcbd873 | 2016-09-08 10:39:58 -0300 | [diff] [blame] | 156 | * |
| 157 | * @m2m_ctx: m2m context assigned to the instance given by struct &v4l2_m2m_ctx |
Mauro Carvalho Chehab | 4781646 | 2016-09-08 10:16:27 -0300 | [diff] [blame] | 158 | * |
| 159 | * There are three basic requirements an instance has to meet to be able to run: |
| 160 | * 1) at least one source buffer has to be queued, |
| 161 | * 2) at least one destination buffer has to be queued, |
| 162 | * 3) streaming has to be on. |
| 163 | * |
| 164 | * If a queue is buffered (for example a decoder hardware ringbuffer that has |
| 165 | * to be drained before doing streamoff), allow scheduling without v4l2 buffers |
| 166 | * on that queue. |
| 167 | * |
| 168 | * There may also be additional, custom requirements. In such case the driver |
| 169 | * should supply a custom callback (job_ready in v4l2_m2m_ops) that should |
| 170 | * return 1 if the instance is ready. |
| 171 | * An example of the above could be an instance that requires more than one |
| 172 | * src/dst buffer per transaction. |
| 173 | */ |
Michael Olbrich | 1190a41 | 2014-07-22 09:36:04 -0300 | [diff] [blame] | 174 | void v4l2_m2m_try_schedule(struct v4l2_m2m_ctx *m2m_ctx); |
| 175 | |
Mauro Carvalho Chehab | 4781646 | 2016-09-08 10:16:27 -0300 | [diff] [blame] | 176 | /** |
| 177 | * v4l2_m2m_job_finish() - inform the framework that a job has been finished |
| 178 | * and have it clean up |
| 179 | * |
Mauro Carvalho Chehab | 9f8d3a2 | 2016-09-08 17:20:44 -0300 | [diff] [blame] | 180 | * @m2m_dev: opaque pointer to the internal data to handle M2M context |
Mauro Carvalho Chehab | dcbd873 | 2016-09-08 10:39:58 -0300 | [diff] [blame] | 181 | * @m2m_ctx: m2m context assigned to the instance given by struct &v4l2_m2m_ctx |
| 182 | * |
Mauro Carvalho Chehab | 4781646 | 2016-09-08 10:16:27 -0300 | [diff] [blame] | 183 | * Called by a driver to yield back the device after it has finished with it. |
| 184 | * Should be called as soon as possible after reaching a state which allows |
| 185 | * other instances to take control of the device. |
| 186 | * |
Mauro Carvalho Chehab | 5fa5edb | 2016-09-08 10:16:36 -0300 | [diff] [blame] | 187 | * This function has to be called only after &v4l2_m2m_ops->device_run |
| 188 | * callback has been called on the driver. To prevent recursion, it should |
| 189 | * not be called directly from the &v4l2_m2m_ops->device_run callback though. |
Mauro Carvalho Chehab | 4781646 | 2016-09-08 10:16:27 -0300 | [diff] [blame] | 190 | */ |
Pawel Osciak | 7f98639 | 2010-04-23 05:38:37 -0300 | [diff] [blame] | 191 | void v4l2_m2m_job_finish(struct v4l2_m2m_dev *m2m_dev, |
| 192 | struct v4l2_m2m_ctx *m2m_ctx); |
| 193 | |
Hans Verkuil | f8cca8c | 2019-10-11 06:32:41 -0300 | [diff] [blame] | 194 | /** |
| 195 | * v4l2_m2m_buf_done_and_job_finish() - return source/destination buffers with |
| 196 | * state and inform the framework that a job has been finished and have it |
| 197 | * clean up |
| 198 | * |
| 199 | * @m2m_dev: opaque pointer to the internal data to handle M2M context |
| 200 | * @m2m_ctx: m2m context assigned to the instance given by struct &v4l2_m2m_ctx |
| 201 | * @state: vb2 buffer state passed to v4l2_m2m_buf_done(). |
| 202 | * |
| 203 | * Drivers that set V4L2_BUF_CAP_SUPPORTS_M2M_HOLD_CAPTURE_BUF must use this |
| 204 | * function instead of job_finish() to take held buffers into account. It is |
| 205 | * optional for other drivers. |
| 206 | * |
| 207 | * This function removes the source buffer from the ready list and returns |
| 208 | * it with the given state. The same is done for the destination buffer, unless |
| 209 | * it is marked 'held'. In that case the buffer is kept on the ready list. |
| 210 | * |
| 211 | * After that the job is finished (see job_finish()). |
| 212 | * |
| 213 | * This allows for multiple output buffers to be used to fill in a single |
| 214 | * capture buffer. This is typically used by stateless decoders where |
| 215 | * multiple e.g. H.264 slices contribute to a single decoded frame. |
| 216 | */ |
| 217 | void v4l2_m2m_buf_done_and_job_finish(struct v4l2_m2m_dev *m2m_dev, |
| 218 | struct v4l2_m2m_ctx *m2m_ctx, |
| 219 | enum vb2_buffer_state state); |
| 220 | |
Marek Szyprowski | 908a0d7 | 2011-01-12 06:50:24 -0300 | [diff] [blame] | 221 | static inline void |
Junghak Sung | 2d70071 | 2015-09-22 10:30:30 -0300 | [diff] [blame] | 222 | v4l2_m2m_buf_done(struct vb2_v4l2_buffer *buf, enum vb2_buffer_state state) |
Marek Szyprowski | 908a0d7 | 2011-01-12 06:50:24 -0300 | [diff] [blame] | 223 | { |
Junghak Sung | 2d70071 | 2015-09-22 10:30:30 -0300 | [diff] [blame] | 224 | vb2_buffer_done(&buf->vb2_buf, state); |
Marek Szyprowski | 908a0d7 | 2011-01-12 06:50:24 -0300 | [diff] [blame] | 225 | } |
| 226 | |
Mauro Carvalho Chehab | 4781646 | 2016-09-08 10:16:27 -0300 | [diff] [blame] | 227 | /** |
Neil Armstrong | 2b48e11 | 2020-03-03 15:33:17 +0100 | [diff] [blame] | 228 | * v4l2_m2m_clear_state() - clear encoding/decoding state |
| 229 | * |
| 230 | * @m2m_ctx: m2m context assigned to the instance given by struct &v4l2_m2m_ctx |
| 231 | */ |
| 232 | static inline void |
| 233 | v4l2_m2m_clear_state(struct v4l2_m2m_ctx *m2m_ctx) |
| 234 | { |
| 235 | m2m_ctx->next_buf_last = false; |
| 236 | m2m_ctx->is_draining = false; |
| 237 | m2m_ctx->has_stopped = false; |
| 238 | } |
| 239 | |
| 240 | /** |
| 241 | * v4l2_m2m_mark_stopped() - set current encoding/decoding state as stopped |
| 242 | * |
| 243 | * @m2m_ctx: m2m context assigned to the instance given by struct &v4l2_m2m_ctx |
| 244 | */ |
| 245 | static inline void |
| 246 | v4l2_m2m_mark_stopped(struct v4l2_m2m_ctx *m2m_ctx) |
| 247 | { |
| 248 | m2m_ctx->next_buf_last = false; |
| 249 | m2m_ctx->is_draining = false; |
| 250 | m2m_ctx->has_stopped = true; |
| 251 | } |
| 252 | |
| 253 | /** |
| 254 | * v4l2_m2m_dst_buf_is_last() - return the current encoding/decoding session |
| 255 | * draining management state of next queued capture buffer |
| 256 | * |
| 257 | * This last capture buffer should be tagged with V4L2_BUF_FLAG_LAST to notify |
| 258 | * the end of the capture session. |
| 259 | * |
| 260 | * @m2m_ctx: m2m context assigned to the instance given by struct &v4l2_m2m_ctx |
| 261 | */ |
| 262 | static inline bool |
| 263 | v4l2_m2m_dst_buf_is_last(struct v4l2_m2m_ctx *m2m_ctx) |
| 264 | { |
| 265 | return m2m_ctx->is_draining && m2m_ctx->next_buf_last; |
| 266 | } |
| 267 | |
| 268 | /** |
| 269 | * v4l2_m2m_has_stopped() - return the current encoding/decoding session |
| 270 | * stopped state |
| 271 | * |
| 272 | * @m2m_ctx: m2m context assigned to the instance given by struct &v4l2_m2m_ctx |
| 273 | */ |
| 274 | static inline bool |
| 275 | v4l2_m2m_has_stopped(struct v4l2_m2m_ctx *m2m_ctx) |
| 276 | { |
| 277 | return m2m_ctx->has_stopped; |
| 278 | } |
| 279 | |
| 280 | /** |
| 281 | * v4l2_m2m_is_last_draining_src_buf() - return the output buffer draining |
| 282 | * state in the current encoding/decoding session |
| 283 | * |
| 284 | * This will identify the last output buffer queued before a session stop |
| 285 | * was required, leading to an actual encoding/decoding session stop state |
| 286 | * in the encoding/decoding process after being processed. |
| 287 | * |
| 288 | * @m2m_ctx: m2m context assigned to the instance given by struct &v4l2_m2m_ctx |
| 289 | * @vbuf: pointer to struct &v4l2_buffer |
| 290 | */ |
| 291 | static inline bool |
| 292 | v4l2_m2m_is_last_draining_src_buf(struct v4l2_m2m_ctx *m2m_ctx, |
| 293 | struct vb2_v4l2_buffer *vbuf) |
| 294 | { |
| 295 | return m2m_ctx->is_draining && vbuf == m2m_ctx->last_src_buf; |
| 296 | } |
| 297 | |
| 298 | /** |
| 299 | * v4l2_m2m_last_buffer_done() - marks the buffer with LAST flag and DONE |
| 300 | * |
| 301 | * @m2m_ctx: m2m context assigned to the instance given by struct &v4l2_m2m_ctx |
| 302 | * @vbuf: pointer to struct &v4l2_buffer |
| 303 | */ |
| 304 | void v4l2_m2m_last_buffer_done(struct v4l2_m2m_ctx *m2m_ctx, |
| 305 | struct vb2_v4l2_buffer *vbuf); |
| 306 | |
| 307 | /** |
Pi-Hsun Shih | 911ea8ec | 2020-08-14 09:11:40 +0200 | [diff] [blame] | 308 | * v4l2_m2m_suspend() - stop new jobs from being run and wait for current job |
| 309 | * to finish |
| 310 | * |
| 311 | * @m2m_dev: opaque pointer to the internal data to handle M2M context |
| 312 | * |
| 313 | * Called by a driver in the suspend hook. Stop new jobs from being run, and |
| 314 | * wait for current running job to finish. |
| 315 | */ |
| 316 | void v4l2_m2m_suspend(struct v4l2_m2m_dev *m2m_dev); |
| 317 | |
| 318 | /** |
| 319 | * v4l2_m2m_resume() - resume job running and try to run a queued job |
| 320 | * |
| 321 | * @m2m_dev: opaque pointer to the internal data to handle M2M context |
| 322 | * |
| 323 | * Called by a driver in the resume hook. This reverts the operation of |
| 324 | * v4l2_m2m_suspend() and allows job to be run. Also try to run a queued job if |
| 325 | * there is any. |
| 326 | */ |
| 327 | void v4l2_m2m_resume(struct v4l2_m2m_dev *m2m_dev); |
| 328 | |
| 329 | /** |
Mauro Carvalho Chehab | 4781646 | 2016-09-08 10:16:27 -0300 | [diff] [blame] | 330 | * v4l2_m2m_reqbufs() - multi-queue-aware REQBUFS multiplexer |
Mauro Carvalho Chehab | dcbd873 | 2016-09-08 10:39:58 -0300 | [diff] [blame] | 331 | * |
| 332 | * @file: pointer to struct &file |
| 333 | * @m2m_ctx: m2m context assigned to the instance given by struct &v4l2_m2m_ctx |
| 334 | * @reqbufs: pointer to struct &v4l2_requestbuffers |
Mauro Carvalho Chehab | 4781646 | 2016-09-08 10:16:27 -0300 | [diff] [blame] | 335 | */ |
Pawel Osciak | 7f98639 | 2010-04-23 05:38:37 -0300 | [diff] [blame] | 336 | int v4l2_m2m_reqbufs(struct file *file, struct v4l2_m2m_ctx *m2m_ctx, |
| 337 | struct v4l2_requestbuffers *reqbufs); |
| 338 | |
Mauro Carvalho Chehab | 4781646 | 2016-09-08 10:16:27 -0300 | [diff] [blame] | 339 | /** |
| 340 | * v4l2_m2m_querybuf() - multi-queue-aware QUERYBUF multiplexer |
| 341 | * |
Mauro Carvalho Chehab | dcbd873 | 2016-09-08 10:39:58 -0300 | [diff] [blame] | 342 | * @file: pointer to struct &file |
| 343 | * @m2m_ctx: m2m context assigned to the instance given by struct &v4l2_m2m_ctx |
| 344 | * @buf: pointer to struct &v4l2_buffer |
| 345 | * |
Mauro Carvalho Chehab | 4781646 | 2016-09-08 10:16:27 -0300 | [diff] [blame] | 346 | * See v4l2_m2m_mmap() documentation for details. |
| 347 | */ |
Pawel Osciak | 7f98639 | 2010-04-23 05:38:37 -0300 | [diff] [blame] | 348 | int v4l2_m2m_querybuf(struct file *file, struct v4l2_m2m_ctx *m2m_ctx, |
| 349 | struct v4l2_buffer *buf); |
| 350 | |
Mauro Carvalho Chehab | 4781646 | 2016-09-08 10:16:27 -0300 | [diff] [blame] | 351 | /** |
| 352 | * v4l2_m2m_qbuf() - enqueue a source or destination buffer, depending on |
| 353 | * the type |
Mauro Carvalho Chehab | dcbd873 | 2016-09-08 10:39:58 -0300 | [diff] [blame] | 354 | * |
| 355 | * @file: pointer to struct &file |
| 356 | * @m2m_ctx: m2m context assigned to the instance given by struct &v4l2_m2m_ctx |
| 357 | * @buf: pointer to struct &v4l2_buffer |
Mauro Carvalho Chehab | 4781646 | 2016-09-08 10:16:27 -0300 | [diff] [blame] | 358 | */ |
Pawel Osciak | 7f98639 | 2010-04-23 05:38:37 -0300 | [diff] [blame] | 359 | int v4l2_m2m_qbuf(struct file *file, struct v4l2_m2m_ctx *m2m_ctx, |
| 360 | struct v4l2_buffer *buf); |
Mauro Carvalho Chehab | 4781646 | 2016-09-08 10:16:27 -0300 | [diff] [blame] | 361 | |
| 362 | /** |
| 363 | * v4l2_m2m_dqbuf() - dequeue a source or destination buffer, depending on |
| 364 | * the type |
Mauro Carvalho Chehab | dcbd873 | 2016-09-08 10:39:58 -0300 | [diff] [blame] | 365 | * |
| 366 | * @file: pointer to struct &file |
| 367 | * @m2m_ctx: m2m context assigned to the instance given by struct &v4l2_m2m_ctx |
| 368 | * @buf: pointer to struct &v4l2_buffer |
Mauro Carvalho Chehab | 4781646 | 2016-09-08 10:16:27 -0300 | [diff] [blame] | 369 | */ |
Pawel Osciak | 7f98639 | 2010-04-23 05:38:37 -0300 | [diff] [blame] | 370 | int v4l2_m2m_dqbuf(struct file *file, struct v4l2_m2m_ctx *m2m_ctx, |
| 371 | struct v4l2_buffer *buf); |
Mauro Carvalho Chehab | 4781646 | 2016-09-08 10:16:27 -0300 | [diff] [blame] | 372 | |
| 373 | /** |
| 374 | * v4l2_m2m_prepare_buf() - prepare a source or destination buffer, depending on |
| 375 | * the type |
Mauro Carvalho Chehab | dcbd873 | 2016-09-08 10:39:58 -0300 | [diff] [blame] | 376 | * |
| 377 | * @file: pointer to struct &file |
| 378 | * @m2m_ctx: m2m context assigned to the instance given by struct &v4l2_m2m_ctx |
| 379 | * @buf: pointer to struct &v4l2_buffer |
Mauro Carvalho Chehab | 4781646 | 2016-09-08 10:16:27 -0300 | [diff] [blame] | 380 | */ |
Hans Verkuil | e68cf47 | 2015-06-05 11:28:50 -0300 | [diff] [blame] | 381 | int v4l2_m2m_prepare_buf(struct file *file, struct v4l2_m2m_ctx *m2m_ctx, |
| 382 | struct v4l2_buffer *buf); |
Mauro Carvalho Chehab | 4781646 | 2016-09-08 10:16:27 -0300 | [diff] [blame] | 383 | |
| 384 | /** |
| 385 | * v4l2_m2m_create_bufs() - create a source or destination buffer, depending |
| 386 | * on the type |
Mauro Carvalho Chehab | dcbd873 | 2016-09-08 10:39:58 -0300 | [diff] [blame] | 387 | * |
| 388 | * @file: pointer to struct &file |
| 389 | * @m2m_ctx: m2m context assigned to the instance given by struct &v4l2_m2m_ctx |
| 390 | * @create: pointer to struct &v4l2_create_buffers |
Mauro Carvalho Chehab | 4781646 | 2016-09-08 10:16:27 -0300 | [diff] [blame] | 391 | */ |
Philipp Zabel | 8b94ca6 | 2013-05-21 04:16:28 -0300 | [diff] [blame] | 392 | int v4l2_m2m_create_bufs(struct file *file, struct v4l2_m2m_ctx *m2m_ctx, |
| 393 | struct v4l2_create_buffers *create); |
Pawel Osciak | 7f98639 | 2010-04-23 05:38:37 -0300 | [diff] [blame] | 394 | |
Mauro Carvalho Chehab | 4781646 | 2016-09-08 10:16:27 -0300 | [diff] [blame] | 395 | /** |
| 396 | * v4l2_m2m_expbuf() - export a source or destination buffer, depending on |
| 397 | * the type |
Mauro Carvalho Chehab | dcbd873 | 2016-09-08 10:39:58 -0300 | [diff] [blame] | 398 | * |
| 399 | * @file: pointer to struct &file |
| 400 | * @m2m_ctx: m2m context assigned to the instance given by struct &v4l2_m2m_ctx |
| 401 | * @eb: pointer to struct &v4l2_exportbuffer |
Mauro Carvalho Chehab | 4781646 | 2016-09-08 10:16:27 -0300 | [diff] [blame] | 402 | */ |
Tomasz Stanislawski | 83ae7c5 | 2012-06-14 11:32:24 -0300 | [diff] [blame] | 403 | int v4l2_m2m_expbuf(struct file *file, struct v4l2_m2m_ctx *m2m_ctx, |
| 404 | struct v4l2_exportbuffer *eb); |
| 405 | |
Mauro Carvalho Chehab | 4781646 | 2016-09-08 10:16:27 -0300 | [diff] [blame] | 406 | /** |
| 407 | * v4l2_m2m_streamon() - turn on streaming for a video queue |
Mauro Carvalho Chehab | dcbd873 | 2016-09-08 10:39:58 -0300 | [diff] [blame] | 408 | * |
| 409 | * @file: pointer to struct &file |
| 410 | * @m2m_ctx: m2m context assigned to the instance given by struct &v4l2_m2m_ctx |
| 411 | * @type: type of the V4L2 buffer, as defined by enum &v4l2_buf_type |
Mauro Carvalho Chehab | 4781646 | 2016-09-08 10:16:27 -0300 | [diff] [blame] | 412 | */ |
Pawel Osciak | 7f98639 | 2010-04-23 05:38:37 -0300 | [diff] [blame] | 413 | int v4l2_m2m_streamon(struct file *file, struct v4l2_m2m_ctx *m2m_ctx, |
| 414 | enum v4l2_buf_type type); |
Mauro Carvalho Chehab | 4781646 | 2016-09-08 10:16:27 -0300 | [diff] [blame] | 415 | |
| 416 | /** |
| 417 | * v4l2_m2m_streamoff() - turn off streaming for a video queue |
Mauro Carvalho Chehab | dcbd873 | 2016-09-08 10:39:58 -0300 | [diff] [blame] | 418 | * |
| 419 | * @file: pointer to struct &file |
| 420 | * @m2m_ctx: m2m context assigned to the instance given by struct &v4l2_m2m_ctx |
| 421 | * @type: type of the V4L2 buffer, as defined by enum &v4l2_buf_type |
Mauro Carvalho Chehab | 4781646 | 2016-09-08 10:16:27 -0300 | [diff] [blame] | 422 | */ |
Pawel Osciak | 7f98639 | 2010-04-23 05:38:37 -0300 | [diff] [blame] | 423 | int v4l2_m2m_streamoff(struct file *file, struct v4l2_m2m_ctx *m2m_ctx, |
| 424 | enum v4l2_buf_type type); |
| 425 | |
Mauro Carvalho Chehab | 4781646 | 2016-09-08 10:16:27 -0300 | [diff] [blame] | 426 | /** |
Neil Armstrong | 2b48e11 | 2020-03-03 15:33:17 +0100 | [diff] [blame] | 427 | * v4l2_m2m_update_start_streaming_state() - update the encoding/decoding |
| 428 | * session state when a start of streaming of a video queue is requested |
| 429 | * |
| 430 | * @m2m_ctx: m2m context assigned to the instance given by struct &v4l2_m2m_ctx |
| 431 | * @q: queue |
| 432 | */ |
| 433 | void v4l2_m2m_update_start_streaming_state(struct v4l2_m2m_ctx *m2m_ctx, |
| 434 | struct vb2_queue *q); |
| 435 | |
| 436 | /** |
| 437 | * v4l2_m2m_update_stop_streaming_state() - update the encoding/decoding |
| 438 | * session state when a stop of streaming of a video queue is requested |
| 439 | * |
| 440 | * @m2m_ctx: m2m context assigned to the instance given by struct &v4l2_m2m_ctx |
| 441 | * @q: queue |
| 442 | */ |
| 443 | void v4l2_m2m_update_stop_streaming_state(struct v4l2_m2m_ctx *m2m_ctx, |
| 444 | struct vb2_queue *q); |
| 445 | |
| 446 | /** |
| 447 | * v4l2_m2m_encoder_cmd() - execute an encoder command |
| 448 | * |
| 449 | * @file: pointer to struct &file |
| 450 | * @m2m_ctx: m2m context assigned to the instance given by struct &v4l2_m2m_ctx |
| 451 | * @ec: pointer to the encoder command |
| 452 | */ |
| 453 | int v4l2_m2m_encoder_cmd(struct file *file, struct v4l2_m2m_ctx *m2m_ctx, |
| 454 | struct v4l2_encoder_cmd *ec); |
| 455 | |
| 456 | /** |
| 457 | * v4l2_m2m_decoder_cmd() - execute a decoder command |
| 458 | * |
| 459 | * @file: pointer to struct &file |
| 460 | * @m2m_ctx: m2m context assigned to the instance given by struct &v4l2_m2m_ctx |
| 461 | * @dc: pointer to the decoder command |
| 462 | */ |
| 463 | int v4l2_m2m_decoder_cmd(struct file *file, struct v4l2_m2m_ctx *m2m_ctx, |
| 464 | struct v4l2_decoder_cmd *dc); |
| 465 | |
| 466 | /** |
Mauro Carvalho Chehab | 4781646 | 2016-09-08 10:16:27 -0300 | [diff] [blame] | 467 | * v4l2_m2m_poll() - poll replacement, for destination buffers only |
| 468 | * |
Mauro Carvalho Chehab | dcbd873 | 2016-09-08 10:39:58 -0300 | [diff] [blame] | 469 | * @file: pointer to struct &file |
| 470 | * @m2m_ctx: m2m context assigned to the instance given by struct &v4l2_m2m_ctx |
| 471 | * @wait: pointer to struct &poll_table_struct |
| 472 | * |
Mauro Carvalho Chehab | 4781646 | 2016-09-08 10:16:27 -0300 | [diff] [blame] | 473 | * Call from the driver's poll() function. Will poll both queues. If a buffer |
| 474 | * is available to dequeue (with dqbuf) from the source queue, this will |
| 475 | * indicate that a non-blocking write can be performed, while read will be |
| 476 | * returned in case of the destination queue. |
| 477 | */ |
Al Viro | c23e0cb | 2017-07-03 03:02:56 -0400 | [diff] [blame] | 478 | __poll_t v4l2_m2m_poll(struct file *file, struct v4l2_m2m_ctx *m2m_ctx, |
Pawel Osciak | 7f98639 | 2010-04-23 05:38:37 -0300 | [diff] [blame] | 479 | struct poll_table_struct *wait); |
| 480 | |
Mauro Carvalho Chehab | 4781646 | 2016-09-08 10:16:27 -0300 | [diff] [blame] | 481 | /** |
| 482 | * v4l2_m2m_mmap() - source and destination queues-aware mmap multiplexer |
| 483 | * |
Mauro Carvalho Chehab | dcbd873 | 2016-09-08 10:39:58 -0300 | [diff] [blame] | 484 | * @file: pointer to struct &file |
| 485 | * @m2m_ctx: m2m context assigned to the instance given by struct &v4l2_m2m_ctx |
| 486 | * @vma: pointer to struct &vm_area_struct |
| 487 | * |
Mauro Carvalho Chehab | 4781646 | 2016-09-08 10:16:27 -0300 | [diff] [blame] | 488 | * Call from driver's mmap() function. Will handle mmap() for both queues |
| 489 | * seamlessly for videobuffer, which will receive normal per-queue offsets and |
| 490 | * proper videobuf queue pointers. The differentiation is made outside videobuf |
| 491 | * by adding a predefined offset to buffers from one of the queues and |
| 492 | * subtracting it before passing it back to videobuf. Only drivers (and |
| 493 | * thus applications) receive modified offsets. |
| 494 | */ |
Pawel Osciak | 7f98639 | 2010-04-23 05:38:37 -0300 | [diff] [blame] | 495 | int v4l2_m2m_mmap(struct file *file, struct v4l2_m2m_ctx *m2m_ctx, |
| 496 | struct vm_area_struct *vma); |
| 497 | |
Dillon Min | 0a08088 | 2021-10-19 09:43:18 +0100 | [diff] [blame] | 498 | #ifndef CONFIG_MMU |
| 499 | unsigned long v4l2_m2m_get_unmapped_area(struct file *file, unsigned long addr, |
| 500 | unsigned long len, unsigned long pgoff, |
| 501 | unsigned long flags); |
| 502 | #endif |
Mauro Carvalho Chehab | 4781646 | 2016-09-08 10:16:27 -0300 | [diff] [blame] | 503 | /** |
| 504 | * v4l2_m2m_init() - initialize per-driver m2m data |
| 505 | * |
Mauro Carvalho Chehab | dcbd873 | 2016-09-08 10:39:58 -0300 | [diff] [blame] | 506 | * @m2m_ops: pointer to struct v4l2_m2m_ops |
| 507 | * |
Mauro Carvalho Chehab | 5fa5edb | 2016-09-08 10:16:36 -0300 | [diff] [blame] | 508 | * Usually called from driver's ``probe()`` function. |
| 509 | * |
| 510 | * Return: returns an opaque pointer to the internal data to handle M2M context |
Mauro Carvalho Chehab | 4781646 | 2016-09-08 10:16:27 -0300 | [diff] [blame] | 511 | */ |
Guennadi Liakhovetski | b1252eb | 2012-09-11 06:32:17 -0300 | [diff] [blame] | 512 | struct v4l2_m2m_dev *v4l2_m2m_init(const struct v4l2_m2m_ops *m2m_ops); |
Mauro Carvalho Chehab | 4781646 | 2016-09-08 10:16:27 -0300 | [diff] [blame] | 513 | |
Ezequiel Garcia | be2fff6 | 2018-07-02 11:36:05 -0400 | [diff] [blame] | 514 | #if defined(CONFIG_MEDIA_CONTROLLER) |
| 515 | void v4l2_m2m_unregister_media_controller(struct v4l2_m2m_dev *m2m_dev); |
| 516 | int v4l2_m2m_register_media_controller(struct v4l2_m2m_dev *m2m_dev, |
| 517 | struct video_device *vdev, int function); |
| 518 | #else |
| 519 | static inline void |
| 520 | v4l2_m2m_unregister_media_controller(struct v4l2_m2m_dev *m2m_dev) |
| 521 | { |
| 522 | } |
| 523 | |
| 524 | static inline int |
| 525 | v4l2_m2m_register_media_controller(struct v4l2_m2m_dev *m2m_dev, |
| 526 | struct video_device *vdev, int function) |
| 527 | { |
| 528 | return 0; |
| 529 | } |
| 530 | #endif |
| 531 | |
Mauro Carvalho Chehab | 4781646 | 2016-09-08 10:16:27 -0300 | [diff] [blame] | 532 | /** |
| 533 | * v4l2_m2m_release() - cleans up and frees a m2m_dev structure |
| 534 | * |
Mauro Carvalho Chehab | 9f8d3a2 | 2016-09-08 17:20:44 -0300 | [diff] [blame] | 535 | * @m2m_dev: opaque pointer to the internal data to handle M2M context |
Mauro Carvalho Chehab | dcbd873 | 2016-09-08 10:39:58 -0300 | [diff] [blame] | 536 | * |
Mauro Carvalho Chehab | 5fa5edb | 2016-09-08 10:16:36 -0300 | [diff] [blame] | 537 | * Usually called from driver's ``remove()`` function. |
Mauro Carvalho Chehab | 4781646 | 2016-09-08 10:16:27 -0300 | [diff] [blame] | 538 | */ |
Pawel Osciak | 7f98639 | 2010-04-23 05:38:37 -0300 | [diff] [blame] | 539 | void v4l2_m2m_release(struct v4l2_m2m_dev *m2m_dev); |
| 540 | |
Mauro Carvalho Chehab | 4781646 | 2016-09-08 10:16:27 -0300 | [diff] [blame] | 541 | /** |
| 542 | * v4l2_m2m_ctx_init() - allocate and initialize a m2m context |
Mauro Carvalho Chehab | dcbd873 | 2016-09-08 10:39:58 -0300 | [diff] [blame] | 543 | * |
Mauro Carvalho Chehab | 9f8d3a2 | 2016-09-08 17:20:44 -0300 | [diff] [blame] | 544 | * @m2m_dev: opaque pointer to the internal data to handle M2M context |
Mauro Carvalho Chehab | dcbd873 | 2016-09-08 10:39:58 -0300 | [diff] [blame] | 545 | * @drv_priv: driver's instance private data |
| 546 | * @queue_init: a callback for queue type-specific initialization function |
| 547 | * to be used for initializing videobuf_queues |
Mauro Carvalho Chehab | 4781646 | 2016-09-08 10:16:27 -0300 | [diff] [blame] | 548 | * |
Mauro Carvalho Chehab | 5fa5edb | 2016-09-08 10:16:36 -0300 | [diff] [blame] | 549 | * Usually called from driver's ``open()`` function. |
Mauro Carvalho Chehab | 4781646 | 2016-09-08 10:16:27 -0300 | [diff] [blame] | 550 | */ |
Marek Szyprowski | 908a0d7 | 2011-01-12 06:50:24 -0300 | [diff] [blame] | 551 | struct v4l2_m2m_ctx *v4l2_m2m_ctx_init(struct v4l2_m2m_dev *m2m_dev, |
| 552 | void *drv_priv, |
| 553 | int (*queue_init)(void *priv, struct vb2_queue *src_vq, struct vb2_queue *dst_vq)); |
| 554 | |
Philipp Zabel | 33bdd5a | 2013-06-03 04:23:48 -0300 | [diff] [blame] | 555 | static inline void v4l2_m2m_set_src_buffered(struct v4l2_m2m_ctx *m2m_ctx, |
| 556 | bool buffered) |
| 557 | { |
| 558 | m2m_ctx->out_q_ctx.buffered = buffered; |
| 559 | } |
| 560 | |
| 561 | static inline void v4l2_m2m_set_dst_buffered(struct v4l2_m2m_ctx *m2m_ctx, |
| 562 | bool buffered) |
| 563 | { |
| 564 | m2m_ctx->cap_q_ctx.buffered = buffered; |
| 565 | } |
| 566 | |
Mauro Carvalho Chehab | 4781646 | 2016-09-08 10:16:27 -0300 | [diff] [blame] | 567 | /** |
| 568 | * v4l2_m2m_ctx_release() - release m2m context |
| 569 | * |
Mauro Carvalho Chehab | dcbd873 | 2016-09-08 10:39:58 -0300 | [diff] [blame] | 570 | * @m2m_ctx: m2m context assigned to the instance given by struct &v4l2_m2m_ctx |
| 571 | * |
Mauro Carvalho Chehab | 4781646 | 2016-09-08 10:16:27 -0300 | [diff] [blame] | 572 | * Usually called from driver's release() function. |
| 573 | */ |
Pawel Osciak | 7f98639 | 2010-04-23 05:38:37 -0300 | [diff] [blame] | 574 | void v4l2_m2m_ctx_release(struct v4l2_m2m_ctx *m2m_ctx); |
| 575 | |
Mauro Carvalho Chehab | 4781646 | 2016-09-08 10:16:27 -0300 | [diff] [blame] | 576 | /** |
| 577 | * v4l2_m2m_buf_queue() - add a buffer to the proper ready buffers list. |
| 578 | * |
Mauro Carvalho Chehab | dcbd873 | 2016-09-08 10:39:58 -0300 | [diff] [blame] | 579 | * @m2m_ctx: m2m context assigned to the instance given by struct &v4l2_m2m_ctx |
| 580 | * @vbuf: pointer to struct &vb2_v4l2_buffer |
| 581 | * |
Mauro Carvalho Chehab | 5fa5edb | 2016-09-08 10:16:36 -0300 | [diff] [blame] | 582 | * Call from videobuf_queue_ops->ops->buf_queue, videobuf_queue_ops callback. |
Mauro Carvalho Chehab | 4781646 | 2016-09-08 10:16:27 -0300 | [diff] [blame] | 583 | */ |
Junghak Sung | 2d70071 | 2015-09-22 10:30:30 -0300 | [diff] [blame] | 584 | void v4l2_m2m_buf_queue(struct v4l2_m2m_ctx *m2m_ctx, |
| 585 | struct vb2_v4l2_buffer *vbuf); |
Pawel Osciak | 7f98639 | 2010-04-23 05:38:37 -0300 | [diff] [blame] | 586 | |
| 587 | /** |
| 588 | * v4l2_m2m_num_src_bufs_ready() - return the number of source buffers ready for |
| 589 | * use |
Mauro Carvalho Chehab | 62c0d01 | 2015-08-22 05:34:40 -0300 | [diff] [blame] | 590 | * |
Mauro Carvalho Chehab | dcbd873 | 2016-09-08 10:39:58 -0300 | [diff] [blame] | 591 | * @m2m_ctx: m2m context assigned to the instance given by struct &v4l2_m2m_ctx |
Pawel Osciak | 7f98639 | 2010-04-23 05:38:37 -0300 | [diff] [blame] | 592 | */ |
| 593 | static inline |
| 594 | unsigned int v4l2_m2m_num_src_bufs_ready(struct v4l2_m2m_ctx *m2m_ctx) |
| 595 | { |
Sascha Hauer | 961ae44 | 2012-08-31 09:18:04 -0300 | [diff] [blame] | 596 | return m2m_ctx->out_q_ctx.num_rdy; |
Pawel Osciak | 7f98639 | 2010-04-23 05:38:37 -0300 | [diff] [blame] | 597 | } |
| 598 | |
| 599 | /** |
Mauro Carvalho Chehab | e383ce0 | 2016-09-22 07:59:03 -0300 | [diff] [blame] | 600 | * v4l2_m2m_num_dst_bufs_ready() - return the number of destination buffers |
Pawel Osciak | 7f98639 | 2010-04-23 05:38:37 -0300 | [diff] [blame] | 601 | * ready for use |
Mauro Carvalho Chehab | 62c0d01 | 2015-08-22 05:34:40 -0300 | [diff] [blame] | 602 | * |
Mauro Carvalho Chehab | dcbd873 | 2016-09-08 10:39:58 -0300 | [diff] [blame] | 603 | * @m2m_ctx: m2m context assigned to the instance given by struct &v4l2_m2m_ctx |
Pawel Osciak | 7f98639 | 2010-04-23 05:38:37 -0300 | [diff] [blame] | 604 | */ |
| 605 | static inline |
| 606 | unsigned int v4l2_m2m_num_dst_bufs_ready(struct v4l2_m2m_ctx *m2m_ctx) |
| 607 | { |
Sascha Hauer | 961ae44 | 2012-08-31 09:18:04 -0300 | [diff] [blame] | 608 | return m2m_ctx->cap_q_ctx.num_rdy; |
Pawel Osciak | 7f98639 | 2010-04-23 05:38:37 -0300 | [diff] [blame] | 609 | } |
| 610 | |
Mauro Carvalho Chehab | 4781646 | 2016-09-08 10:16:27 -0300 | [diff] [blame] | 611 | /** |
| 612 | * v4l2_m2m_next_buf() - return next buffer from the list of ready buffers |
Mauro Carvalho Chehab | dcbd873 | 2016-09-08 10:39:58 -0300 | [diff] [blame] | 613 | * |
| 614 | * @q_ctx: pointer to struct @v4l2_m2m_queue_ctx |
Mauro Carvalho Chehab | 4781646 | 2016-09-08 10:16:27 -0300 | [diff] [blame] | 615 | */ |
Ezequiel Garcia | 8dd22b2 | 2019-02-08 11:17:48 -0500 | [diff] [blame] | 616 | struct vb2_v4l2_buffer *v4l2_m2m_next_buf(struct v4l2_m2m_queue_ctx *q_ctx); |
Pawel Osciak | 7f98639 | 2010-04-23 05:38:37 -0300 | [diff] [blame] | 617 | |
| 618 | /** |
| 619 | * v4l2_m2m_next_src_buf() - return next source buffer from the list of ready |
| 620 | * buffers |
Mauro Carvalho Chehab | 62c0d01 | 2015-08-22 05:34:40 -0300 | [diff] [blame] | 621 | * |
Mauro Carvalho Chehab | dcbd873 | 2016-09-08 10:39:58 -0300 | [diff] [blame] | 622 | * @m2m_ctx: m2m context assigned to the instance given by struct &v4l2_m2m_ctx |
Pawel Osciak | 7f98639 | 2010-04-23 05:38:37 -0300 | [diff] [blame] | 623 | */ |
Ezequiel Garcia | 8dd22b2 | 2019-02-08 11:17:48 -0500 | [diff] [blame] | 624 | static inline struct vb2_v4l2_buffer * |
| 625 | v4l2_m2m_next_src_buf(struct v4l2_m2m_ctx *m2m_ctx) |
Pawel Osciak | 7f98639 | 2010-04-23 05:38:37 -0300 | [diff] [blame] | 626 | { |
Marek Szyprowski | 908a0d7 | 2011-01-12 06:50:24 -0300 | [diff] [blame] | 627 | return v4l2_m2m_next_buf(&m2m_ctx->out_q_ctx); |
Pawel Osciak | 7f98639 | 2010-04-23 05:38:37 -0300 | [diff] [blame] | 628 | } |
| 629 | |
| 630 | /** |
| 631 | * v4l2_m2m_next_dst_buf() - return next destination buffer from the list of |
| 632 | * ready buffers |
Mauro Carvalho Chehab | 62c0d01 | 2015-08-22 05:34:40 -0300 | [diff] [blame] | 633 | * |
Mauro Carvalho Chehab | dcbd873 | 2016-09-08 10:39:58 -0300 | [diff] [blame] | 634 | * @m2m_ctx: m2m context assigned to the instance given by struct &v4l2_m2m_ctx |
Pawel Osciak | 7f98639 | 2010-04-23 05:38:37 -0300 | [diff] [blame] | 635 | */ |
Ezequiel Garcia | 8dd22b2 | 2019-02-08 11:17:48 -0500 | [diff] [blame] | 636 | static inline struct vb2_v4l2_buffer * |
| 637 | v4l2_m2m_next_dst_buf(struct v4l2_m2m_ctx *m2m_ctx) |
Pawel Osciak | 7f98639 | 2010-04-23 05:38:37 -0300 | [diff] [blame] | 638 | { |
Marek Szyprowski | 908a0d7 | 2011-01-12 06:50:24 -0300 | [diff] [blame] | 639 | return v4l2_m2m_next_buf(&m2m_ctx->cap_q_ctx); |
Pawel Osciak | 7f98639 | 2010-04-23 05:38:37 -0300 | [diff] [blame] | 640 | } |
| 641 | |
| 642 | /** |
Hans Verkuil | ee1228c | 2018-06-26 09:26:52 -0400 | [diff] [blame] | 643 | * v4l2_m2m_last_buf() - return last buffer from the list of ready buffers |
| 644 | * |
| 645 | * @q_ctx: pointer to struct @v4l2_m2m_queue_ctx |
| 646 | */ |
Ezequiel Garcia | 8dd22b2 | 2019-02-08 11:17:48 -0500 | [diff] [blame] | 647 | struct vb2_v4l2_buffer *v4l2_m2m_last_buf(struct v4l2_m2m_queue_ctx *q_ctx); |
Hans Verkuil | ee1228c | 2018-06-26 09:26:52 -0400 | [diff] [blame] | 648 | |
| 649 | /** |
| 650 | * v4l2_m2m_last_src_buf() - return last destination buffer from the list of |
| 651 | * ready buffers |
| 652 | * |
| 653 | * @m2m_ctx: m2m context assigned to the instance given by struct &v4l2_m2m_ctx |
| 654 | */ |
Ezequiel Garcia | 8dd22b2 | 2019-02-08 11:17:48 -0500 | [diff] [blame] | 655 | static inline struct vb2_v4l2_buffer * |
| 656 | v4l2_m2m_last_src_buf(struct v4l2_m2m_ctx *m2m_ctx) |
Hans Verkuil | ee1228c | 2018-06-26 09:26:52 -0400 | [diff] [blame] | 657 | { |
| 658 | return v4l2_m2m_last_buf(&m2m_ctx->out_q_ctx); |
| 659 | } |
| 660 | |
| 661 | /** |
| 662 | * v4l2_m2m_last_dst_buf() - return last destination buffer from the list of |
| 663 | * ready buffers |
| 664 | * |
| 665 | * @m2m_ctx: m2m context assigned to the instance given by struct &v4l2_m2m_ctx |
| 666 | */ |
Ezequiel Garcia | 8dd22b2 | 2019-02-08 11:17:48 -0500 | [diff] [blame] | 667 | static inline struct vb2_v4l2_buffer * |
| 668 | v4l2_m2m_last_dst_buf(struct v4l2_m2m_ctx *m2m_ctx) |
Hans Verkuil | ee1228c | 2018-06-26 09:26:52 -0400 | [diff] [blame] | 669 | { |
| 670 | return v4l2_m2m_last_buf(&m2m_ctx->cap_q_ctx); |
| 671 | } |
| 672 | |
| 673 | /** |
Stanimir Varbanov | d498756 | 2017-06-15 13:31:42 -0300 | [diff] [blame] | 674 | * v4l2_m2m_for_each_dst_buf() - iterate over a list of destination ready |
| 675 | * buffers |
| 676 | * |
| 677 | * @m2m_ctx: m2m context assigned to the instance given by struct &v4l2_m2m_ctx |
| 678 | * @b: current buffer of type struct v4l2_m2m_buffer |
| 679 | */ |
| 680 | #define v4l2_m2m_for_each_dst_buf(m2m_ctx, b) \ |
| 681 | list_for_each_entry(b, &m2m_ctx->cap_q_ctx.rdy_queue, list) |
| 682 | |
| 683 | /** |
| 684 | * v4l2_m2m_for_each_src_buf() - iterate over a list of source ready buffers |
| 685 | * |
| 686 | * @m2m_ctx: m2m context assigned to the instance given by struct &v4l2_m2m_ctx |
| 687 | * @b: current buffer of type struct v4l2_m2m_buffer |
| 688 | */ |
| 689 | #define v4l2_m2m_for_each_src_buf(m2m_ctx, b) \ |
| 690 | list_for_each_entry(b, &m2m_ctx->out_q_ctx.rdy_queue, list) |
| 691 | |
| 692 | /** |
| 693 | * v4l2_m2m_for_each_dst_buf_safe() - iterate over a list of destination ready |
| 694 | * buffers safely |
| 695 | * |
| 696 | * @m2m_ctx: m2m context assigned to the instance given by struct &v4l2_m2m_ctx |
| 697 | * @b: current buffer of type struct v4l2_m2m_buffer |
| 698 | * @n: used as temporary storage |
| 699 | */ |
| 700 | #define v4l2_m2m_for_each_dst_buf_safe(m2m_ctx, b, n) \ |
| 701 | list_for_each_entry_safe(b, n, &m2m_ctx->cap_q_ctx.rdy_queue, list) |
| 702 | |
| 703 | /** |
| 704 | * v4l2_m2m_for_each_src_buf_safe() - iterate over a list of source ready |
| 705 | * buffers safely |
| 706 | * |
| 707 | * @m2m_ctx: m2m context assigned to the instance given by struct &v4l2_m2m_ctx |
| 708 | * @b: current buffer of type struct v4l2_m2m_buffer |
| 709 | * @n: used as temporary storage |
| 710 | */ |
| 711 | #define v4l2_m2m_for_each_src_buf_safe(m2m_ctx, b, n) \ |
| 712 | list_for_each_entry_safe(b, n, &m2m_ctx->out_q_ctx.rdy_queue, list) |
| 713 | |
| 714 | /** |
Marek Szyprowski | 908a0d7 | 2011-01-12 06:50:24 -0300 | [diff] [blame] | 715 | * v4l2_m2m_get_src_vq() - return vb2_queue for source buffers |
Mauro Carvalho Chehab | 62c0d01 | 2015-08-22 05:34:40 -0300 | [diff] [blame] | 716 | * |
Mauro Carvalho Chehab | dcbd873 | 2016-09-08 10:39:58 -0300 | [diff] [blame] | 717 | * @m2m_ctx: m2m context assigned to the instance given by struct &v4l2_m2m_ctx |
Pawel Osciak | 7f98639 | 2010-04-23 05:38:37 -0300 | [diff] [blame] | 718 | */ |
| 719 | static inline |
Marek Szyprowski | 908a0d7 | 2011-01-12 06:50:24 -0300 | [diff] [blame] | 720 | struct vb2_queue *v4l2_m2m_get_src_vq(struct v4l2_m2m_ctx *m2m_ctx) |
Pawel Osciak | 7f98639 | 2010-04-23 05:38:37 -0300 | [diff] [blame] | 721 | { |
Marek Szyprowski | 908a0d7 | 2011-01-12 06:50:24 -0300 | [diff] [blame] | 722 | return &m2m_ctx->out_q_ctx.q; |
Pawel Osciak | 7f98639 | 2010-04-23 05:38:37 -0300 | [diff] [blame] | 723 | } |
| 724 | |
| 725 | /** |
Marek Szyprowski | 908a0d7 | 2011-01-12 06:50:24 -0300 | [diff] [blame] | 726 | * v4l2_m2m_get_dst_vq() - return vb2_queue for destination buffers |
Mauro Carvalho Chehab | 62c0d01 | 2015-08-22 05:34:40 -0300 | [diff] [blame] | 727 | * |
Mauro Carvalho Chehab | dcbd873 | 2016-09-08 10:39:58 -0300 | [diff] [blame] | 728 | * @m2m_ctx: m2m context assigned to the instance given by struct &v4l2_m2m_ctx |
Pawel Osciak | 7f98639 | 2010-04-23 05:38:37 -0300 | [diff] [blame] | 729 | */ |
| 730 | static inline |
Marek Szyprowski | 908a0d7 | 2011-01-12 06:50:24 -0300 | [diff] [blame] | 731 | struct vb2_queue *v4l2_m2m_get_dst_vq(struct v4l2_m2m_ctx *m2m_ctx) |
Pawel Osciak | 7f98639 | 2010-04-23 05:38:37 -0300 | [diff] [blame] | 732 | { |
Marek Szyprowski | 908a0d7 | 2011-01-12 06:50:24 -0300 | [diff] [blame] | 733 | return &m2m_ctx->cap_q_ctx.q; |
Pawel Osciak | 7f98639 | 2010-04-23 05:38:37 -0300 | [diff] [blame] | 734 | } |
| 735 | |
Mauro Carvalho Chehab | 4781646 | 2016-09-08 10:16:27 -0300 | [diff] [blame] | 736 | /** |
| 737 | * v4l2_m2m_buf_remove() - take off a buffer from the list of ready buffers and |
| 738 | * return it |
Mauro Carvalho Chehab | dcbd873 | 2016-09-08 10:39:58 -0300 | [diff] [blame] | 739 | * |
| 740 | * @q_ctx: pointer to struct @v4l2_m2m_queue_ctx |
Mauro Carvalho Chehab | 4781646 | 2016-09-08 10:16:27 -0300 | [diff] [blame] | 741 | */ |
Ezequiel Garcia | 8dd22b2 | 2019-02-08 11:17:48 -0500 | [diff] [blame] | 742 | struct vb2_v4l2_buffer *v4l2_m2m_buf_remove(struct v4l2_m2m_queue_ctx *q_ctx); |
Pawel Osciak | 7f98639 | 2010-04-23 05:38:37 -0300 | [diff] [blame] | 743 | |
| 744 | /** |
| 745 | * v4l2_m2m_src_buf_remove() - take off a source buffer from the list of ready |
| 746 | * buffers and return it |
Mauro Carvalho Chehab | 62c0d01 | 2015-08-22 05:34:40 -0300 | [diff] [blame] | 747 | * |
Mauro Carvalho Chehab | dcbd873 | 2016-09-08 10:39:58 -0300 | [diff] [blame] | 748 | * @m2m_ctx: m2m context assigned to the instance given by struct &v4l2_m2m_ctx |
Pawel Osciak | 7f98639 | 2010-04-23 05:38:37 -0300 | [diff] [blame] | 749 | */ |
Ezequiel Garcia | 8dd22b2 | 2019-02-08 11:17:48 -0500 | [diff] [blame] | 750 | static inline struct vb2_v4l2_buffer * |
| 751 | v4l2_m2m_src_buf_remove(struct v4l2_m2m_ctx *m2m_ctx) |
Pawel Osciak | 7f98639 | 2010-04-23 05:38:37 -0300 | [diff] [blame] | 752 | { |
Marek Szyprowski | 908a0d7 | 2011-01-12 06:50:24 -0300 | [diff] [blame] | 753 | return v4l2_m2m_buf_remove(&m2m_ctx->out_q_ctx); |
Pawel Osciak | 7f98639 | 2010-04-23 05:38:37 -0300 | [diff] [blame] | 754 | } |
| 755 | |
| 756 | /** |
| 757 | * v4l2_m2m_dst_buf_remove() - take off a destination buffer from the list of |
| 758 | * ready buffers and return it |
Mauro Carvalho Chehab | 62c0d01 | 2015-08-22 05:34:40 -0300 | [diff] [blame] | 759 | * |
Mauro Carvalho Chehab | dcbd873 | 2016-09-08 10:39:58 -0300 | [diff] [blame] | 760 | * @m2m_ctx: m2m context assigned to the instance given by struct &v4l2_m2m_ctx |
Pawel Osciak | 7f98639 | 2010-04-23 05:38:37 -0300 | [diff] [blame] | 761 | */ |
Ezequiel Garcia | 8dd22b2 | 2019-02-08 11:17:48 -0500 | [diff] [blame] | 762 | static inline struct vb2_v4l2_buffer * |
| 763 | v4l2_m2m_dst_buf_remove(struct v4l2_m2m_ctx *m2m_ctx) |
Pawel Osciak | 7f98639 | 2010-04-23 05:38:37 -0300 | [diff] [blame] | 764 | { |
Marek Szyprowski | 908a0d7 | 2011-01-12 06:50:24 -0300 | [diff] [blame] | 765 | return v4l2_m2m_buf_remove(&m2m_ctx->cap_q_ctx); |
Pawel Osciak | 7f98639 | 2010-04-23 05:38:37 -0300 | [diff] [blame] | 766 | } |
| 767 | |
Stanimir Varbanov | d498756 | 2017-06-15 13:31:42 -0300 | [diff] [blame] | 768 | /** |
| 769 | * v4l2_m2m_buf_remove_by_buf() - take off exact buffer from the list of ready |
| 770 | * buffers |
| 771 | * |
| 772 | * @q_ctx: pointer to struct @v4l2_m2m_queue_ctx |
| 773 | * @vbuf: the buffer to be removed |
| 774 | */ |
| 775 | void v4l2_m2m_buf_remove_by_buf(struct v4l2_m2m_queue_ctx *q_ctx, |
| 776 | struct vb2_v4l2_buffer *vbuf); |
| 777 | |
| 778 | /** |
| 779 | * v4l2_m2m_src_buf_remove_by_buf() - take off exact source buffer from the list |
| 780 | * of ready buffers |
| 781 | * |
| 782 | * @m2m_ctx: m2m context assigned to the instance given by struct &v4l2_m2m_ctx |
| 783 | * @vbuf: the buffer to be removed |
| 784 | */ |
| 785 | static inline void v4l2_m2m_src_buf_remove_by_buf(struct v4l2_m2m_ctx *m2m_ctx, |
| 786 | struct vb2_v4l2_buffer *vbuf) |
| 787 | { |
| 788 | v4l2_m2m_buf_remove_by_buf(&m2m_ctx->out_q_ctx, vbuf); |
| 789 | } |
| 790 | |
| 791 | /** |
| 792 | * v4l2_m2m_dst_buf_remove_by_buf() - take off exact destination buffer from the |
| 793 | * list of ready buffers |
| 794 | * |
| 795 | * @m2m_ctx: m2m context assigned to the instance given by struct &v4l2_m2m_ctx |
| 796 | * @vbuf: the buffer to be removed |
| 797 | */ |
| 798 | static inline void v4l2_m2m_dst_buf_remove_by_buf(struct v4l2_m2m_ctx *m2m_ctx, |
| 799 | struct vb2_v4l2_buffer *vbuf) |
| 800 | { |
| 801 | v4l2_m2m_buf_remove_by_buf(&m2m_ctx->cap_q_ctx, vbuf); |
| 802 | } |
| 803 | |
| 804 | struct vb2_v4l2_buffer * |
| 805 | v4l2_m2m_buf_remove_by_idx(struct v4l2_m2m_queue_ctx *q_ctx, unsigned int idx); |
| 806 | |
| 807 | static inline struct vb2_v4l2_buffer * |
| 808 | v4l2_m2m_src_buf_remove_by_idx(struct v4l2_m2m_ctx *m2m_ctx, unsigned int idx) |
| 809 | { |
| 810 | return v4l2_m2m_buf_remove_by_idx(&m2m_ctx->out_q_ctx, idx); |
| 811 | } |
| 812 | |
| 813 | static inline struct vb2_v4l2_buffer * |
| 814 | v4l2_m2m_dst_buf_remove_by_idx(struct v4l2_m2m_ctx *m2m_ctx, unsigned int idx) |
| 815 | { |
| 816 | return v4l2_m2m_buf_remove_by_idx(&m2m_ctx->cap_q_ctx, idx); |
| 817 | } |
| 818 | |
Hans Verkuil | e2d8ffe2 | 2018-11-13 03:52:18 -0500 | [diff] [blame] | 819 | /** |
Ezequiel Garcia | a4d3d61 | 2019-02-05 16:20:33 -0500 | [diff] [blame] | 820 | * v4l2_m2m_buf_copy_metadata() - copy buffer metadata from |
| 821 | * the output buffer to the capture buffer |
Hans Verkuil | e2d8ffe2 | 2018-11-13 03:52:18 -0500 | [diff] [blame] | 822 | * |
Ezequiel Garcia | a4d3d61 | 2019-02-05 16:20:33 -0500 | [diff] [blame] | 823 | * @out_vb: the output buffer that is the source of the metadata. |
| 824 | * @cap_vb: the capture buffer that will receive the metadata. |
Hans Verkuil | e2d8ffe2 | 2018-11-13 03:52:18 -0500 | [diff] [blame] | 825 | * @copy_frame_flags: copy the KEY/B/PFRAME flags as well. |
| 826 | * |
| 827 | * This helper function copies the timestamp, timecode (if the TIMECODE |
| 828 | * buffer flag was set), field and the TIMECODE, KEYFRAME, BFRAME, PFRAME |
| 829 | * and TSTAMP_SRC_MASK flags from @out_vb to @cap_vb. |
| 830 | * |
| 831 | * If @copy_frame_flags is false, then the KEYFRAME, BFRAME and PFRAME |
| 832 | * flags are not copied. This is typically needed for encoders that |
| 833 | * set this bits explicitly. |
| 834 | */ |
Ezequiel Garcia | a4d3d61 | 2019-02-05 16:20:33 -0500 | [diff] [blame] | 835 | void v4l2_m2m_buf_copy_metadata(const struct vb2_v4l2_buffer *out_vb, |
| 836 | struct vb2_v4l2_buffer *cap_vb, |
| 837 | bool copy_frame_flags); |
Hans Verkuil | e2d8ffe2 | 2018-11-13 03:52:18 -0500 | [diff] [blame] | 838 | |
Hans Verkuil | 803a7ab | 2018-05-21 04:54:53 -0400 | [diff] [blame] | 839 | /* v4l2 request helper */ |
| 840 | |
Ezequiel Garcia | ef86eaf | 2018-10-18 14:54:29 -0400 | [diff] [blame] | 841 | void v4l2_m2m_request_queue(struct media_request *req); |
Hans Verkuil | 803a7ab | 2018-05-21 04:54:53 -0400 | [diff] [blame] | 842 | |
Sylwester Nawrocki | 8e6e8f9 | 2013-09-14 18:39:04 -0300 | [diff] [blame] | 843 | /* v4l2 ioctl helpers */ |
| 844 | |
| 845 | int v4l2_m2m_ioctl_reqbufs(struct file *file, void *priv, |
| 846 | struct v4l2_requestbuffers *rb); |
| 847 | int v4l2_m2m_ioctl_create_bufs(struct file *file, void *fh, |
| 848 | struct v4l2_create_buffers *create); |
| 849 | int v4l2_m2m_ioctl_querybuf(struct file *file, void *fh, |
| 850 | struct v4l2_buffer *buf); |
| 851 | int v4l2_m2m_ioctl_expbuf(struct file *file, void *fh, |
| 852 | struct v4l2_exportbuffer *eb); |
| 853 | int v4l2_m2m_ioctl_qbuf(struct file *file, void *fh, |
| 854 | struct v4l2_buffer *buf); |
| 855 | int v4l2_m2m_ioctl_dqbuf(struct file *file, void *fh, |
| 856 | struct v4l2_buffer *buf); |
Hans Verkuil | e68cf47 | 2015-06-05 11:28:50 -0300 | [diff] [blame] | 857 | int v4l2_m2m_ioctl_prepare_buf(struct file *file, void *fh, |
| 858 | struct v4l2_buffer *buf); |
Sylwester Nawrocki | 8e6e8f9 | 2013-09-14 18:39:04 -0300 | [diff] [blame] | 859 | int v4l2_m2m_ioctl_streamon(struct file *file, void *fh, |
| 860 | enum v4l2_buf_type type); |
| 861 | int v4l2_m2m_ioctl_streamoff(struct file *file, void *fh, |
| 862 | enum v4l2_buf_type type); |
Neil Armstrong | 2b48e11 | 2020-03-03 15:33:17 +0100 | [diff] [blame] | 863 | int v4l2_m2m_ioctl_encoder_cmd(struct file *file, void *fh, |
| 864 | struct v4l2_encoder_cmd *ec); |
| 865 | int v4l2_m2m_ioctl_decoder_cmd(struct file *file, void *fh, |
| 866 | struct v4l2_decoder_cmd *dc); |
Hans Verkuil | ef732d5 | 2019-05-29 02:45:59 -0400 | [diff] [blame] | 867 | int v4l2_m2m_ioctl_try_encoder_cmd(struct file *file, void *fh, |
| 868 | struct v4l2_encoder_cmd *ec); |
| 869 | int v4l2_m2m_ioctl_try_decoder_cmd(struct file *file, void *fh, |
| 870 | struct v4l2_decoder_cmd *dc); |
Jernej Skrabec | bef41d9 | 2019-10-11 06:32:43 -0300 | [diff] [blame] | 871 | int v4l2_m2m_ioctl_stateless_try_decoder_cmd(struct file *file, void *fh, |
| 872 | struct v4l2_decoder_cmd *dc); |
| 873 | int v4l2_m2m_ioctl_stateless_decoder_cmd(struct file *file, void *priv, |
| 874 | struct v4l2_decoder_cmd *dc); |
Sylwester Nawrocki | 8e6e8f9 | 2013-09-14 18:39:04 -0300 | [diff] [blame] | 875 | int v4l2_m2m_fop_mmap(struct file *file, struct vm_area_struct *vma); |
Al Viro | c23e0cb | 2017-07-03 03:02:56 -0400 | [diff] [blame] | 876 | __poll_t v4l2_m2m_fop_poll(struct file *file, poll_table *wait); |
Sylwester Nawrocki | 8e6e8f9 | 2013-09-14 18:39:04 -0300 | [diff] [blame] | 877 | |
Pawel Osciak | 7f98639 | 2010-04-23 05:38:37 -0300 | [diff] [blame] | 878 | #endif /* _MEDIA_V4L2_MEM2MEM_H */ |
| 879 | |