Pawel Osciak | 7f98639 | 2010-04-23 05:38:37 -0300 | [diff] [blame] | 1 | /* |
| 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 Osciak | 9507208 | 2011-03-13 15:23:32 -0300 | [diff] [blame] | 8 | * Pawel Osciak, <pawel@osciak.com> |
Pawel Osciak | 7f98639 | 2010-04-23 05:38:37 -0300 | [diff] [blame] | 9 | * 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 Sung | c139990 | 2015-09-22 10:30:29 -0300 | [diff] [blame] | 20 | #include <media/videobuf2-v4l2.h> |
Pawel Osciak | 7f98639 | 2010-04-23 05:38:37 -0300 | [diff] [blame] | 21 | |
| 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 Chehab | 62c0d01 | 2015-08-22 05:34:40 -0300 | [diff] [blame] | 43 | * @lock: optional. Define a driver's own lock callback, instead of using |
Mauro Carvalho Chehab | 5fa5edb | 2016-09-08 10:16:36 -0300 | [diff] [blame] | 44 | * &v4l2_m2m_ctx->q_lock. |
Mauro Carvalho Chehab | 62c0d01 | 2015-08-22 05:34:40 -0300 | [diff] [blame] | 45 | * @unlock: optional. Define a driver's own unlock callback, instead of |
Mauro Carvalho Chehab | 5fa5edb | 2016-09-08 10:16:36 -0300 | [diff] [blame] | 46 | * using &v4l2_m2m_ctx->q_lock. |
Pawel Osciak | 7f98639 | 2010-04-23 05:38:37 -0300 | [diff] [blame] | 47 | */ |
| 48 | struct v4l2_m2m_ops { |
| 49 | void (*device_run)(void *priv); |
| 50 | int (*job_ready)(void *priv); |
| 51 | void (*job_abort)(void *priv); |
Marek Szyprowski | 908a0d7 | 2011-01-12 06:50:24 -0300 | [diff] [blame] | 52 | void (*lock)(void *priv); |
| 53 | void (*unlock)(void *priv); |
Pawel Osciak | 7f98639 | 2010-04-23 05:38:37 -0300 | [diff] [blame] | 54 | }; |
| 55 | |
| 56 | struct v4l2_m2m_dev; |
| 57 | |
Mauro Carvalho Chehab | 5fa5edb | 2016-09-08 10:16:36 -0300 | [diff] [blame] | 58 | /** |
| 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 Osciak | 7f98639 | 2010-04-23 05:38:37 -0300 | [diff] [blame] | 72 | struct v4l2_m2m_queue_ctx { |
Marek Szyprowski | 908a0d7 | 2011-01-12 06:50:24 -0300 | [diff] [blame] | 73 | struct vb2_queue q; |
Pawel Osciak | 7f98639 | 2010-04-23 05:38:37 -0300 | [diff] [blame] | 74 | |
Pawel Osciak | 7f98639 | 2010-04-23 05:38:37 -0300 | [diff] [blame] | 75 | struct list_head rdy_queue; |
Marek Szyprowski | 908a0d7 | 2011-01-12 06:50:24 -0300 | [diff] [blame] | 76 | spinlock_t rdy_spinlock; |
Pawel Osciak | 7f98639 | 2010-04-23 05:38:37 -0300 | [diff] [blame] | 77 | u8 num_rdy; |
Philipp Zabel | 33bdd5a | 2013-06-03 04:23:48 -0300 | [diff] [blame] | 78 | bool buffered; |
Pawel Osciak | 7f98639 | 2010-04-23 05:38:37 -0300 | [diff] [blame] | 79 | }; |
| 80 | |
Mauro Carvalho Chehab | 5fa5edb | 2016-09-08 10:16:36 -0300 | [diff] [blame] | 81 | /** |
| 82 | * struct v4l2_m2m_ctx - Memory to memory context structure |
| 83 | * |
| 84 | * @q_lock: struct &mutex lock |
Mauro Carvalho Chehab | 9f8d3a2 | 2016-09-08 17:20:44 -0300 | [diff] [blame] | 85 | * @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] | 86 | * @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 Osciak | 7f98639 | 2010-04-23 05:38:37 -0300 | [diff] [blame] | 94 | struct v4l2_m2m_ctx { |
Sylwester Nawrocki | 8e6e8f9 | 2013-09-14 18:39:04 -0300 | [diff] [blame] | 95 | /* optional cap/out vb2 queues lock */ |
| 96 | struct mutex *q_lock; |
| 97 | |
Mauro Carvalho Chehab | 5fa5edb | 2016-09-08 10:16:36 -0300 | [diff] [blame] | 98 | /* internal use only */ |
Pawel Osciak | 7f98639 | 2010-04-23 05:38:37 -0300 | [diff] [blame] | 99 | struct v4l2_m2m_dev *m2m_dev; |
| 100 | |
Pawel Osciak | 7f98639 | 2010-04-23 05:38:37 -0300 | [diff] [blame] | 101 | struct v4l2_m2m_queue_ctx cap_q_ctx; |
| 102 | |
Pawel Osciak | 7f98639 | 2010-04-23 05:38:37 -0300 | [diff] [blame] | 103 | 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 Szyprowski | 908a0d7 | 2011-01-12 06:50:24 -0300 | [diff] [blame] | 108 | wait_queue_head_t finished; |
Pawel Osciak | 7f98639 | 2010-04-23 05:38:37 -0300 | [diff] [blame] | 109 | |
Pawel Osciak | 7f98639 | 2010-04-23 05:38:37 -0300 | [diff] [blame] | 110 | void *priv; |
| 111 | }; |
| 112 | |
Mauro Carvalho Chehab | 5fa5edb | 2016-09-08 10:16:36 -0300 | [diff] [blame] | 113 | /** |
| 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 Szyprowski | 908a0d7 | 2011-01-12 06:50:24 -0300 | [diff] [blame] | 119 | struct v4l2_m2m_buffer { |
Junghak Sung | 2d70071 | 2015-09-22 10:30:30 -0300 | [diff] [blame] | 120 | struct vb2_v4l2_buffer vb; |
Marek Szyprowski | 908a0d7 | 2011-01-12 06:50:24 -0300 | [diff] [blame] | 121 | struct list_head list; |
| 122 | }; |
| 123 | |
Mauro Carvalho Chehab | 4781646 | 2016-09-08 10:16:27 -0300 | [diff] [blame] | 124 | /** |
| 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 Chehab | dcbd873 | 2016-09-08 10:39:58 -0300 | [diff] [blame] | 127 | * |
Mauro Carvalho Chehab | 9f8d3a2 | 2016-09-08 17:20:44 -0300 | [diff] [blame] | 128 | * @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] | 129 | */ |
Pawel Osciak | 7f98639 | 2010-04-23 05:38:37 -0300 | [diff] [blame] | 130 | void *v4l2_m2m_get_curr_priv(struct v4l2_m2m_dev *m2m_dev); |
| 131 | |
Mauro Carvalho Chehab | 4781646 | 2016-09-08 10:16:27 -0300 | [diff] [blame] | 132 | /** |
| 133 | * v4l2_m2m_get_vq() - return vb2_queue for the given type |
Mauro Carvalho Chehab | dcbd873 | 2016-09-08 10:39:58 -0300 | [diff] [blame] | 134 | * |
| 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 Chehab | 4781646 | 2016-09-08 10:16:27 -0300 | [diff] [blame] | 137 | */ |
Marek Szyprowski | 908a0d7 | 2011-01-12 06:50:24 -0300 | [diff] [blame] | 138 | 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] | 139 | enum v4l2_buf_type type); |
| 140 | |
Mauro Carvalho Chehab | 4781646 | 2016-09-08 10:16:27 -0300 | [diff] [blame] | 141 | /** |
| 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 Chehab | dcbd873 | 2016-09-08 10:39:58 -0300 | [diff] [blame] | 144 | * |
| 145 | * @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] | 146 | * |
| 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 Olbrich | 1190a41 | 2014-07-22 09:36:04 -0300 | [diff] [blame] | 162 | void v4l2_m2m_try_schedule(struct v4l2_m2m_ctx *m2m_ctx); |
| 163 | |
Mauro Carvalho Chehab | 4781646 | 2016-09-08 10:16:27 -0300 | [diff] [blame] | 164 | /** |
| 165 | * v4l2_m2m_job_finish() - inform the framework that a job has been finished |
| 166 | * and have it clean up |
| 167 | * |
Mauro Carvalho Chehab | 9f8d3a2 | 2016-09-08 17:20:44 -0300 | [diff] [blame] | 168 | * @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] | 169 | * @m2m_ctx: m2m context assigned to the instance given by struct &v4l2_m2m_ctx |
| 170 | * |
Mauro Carvalho Chehab | 4781646 | 2016-09-08 10:16:27 -0300 | [diff] [blame] | 171 | * 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 Chehab | 5fa5edb | 2016-09-08 10:16:36 -0300 | [diff] [blame] | 175 | * 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 Chehab | 4781646 | 2016-09-08 10:16:27 -0300 | [diff] [blame] | 178 | */ |
Pawel Osciak | 7f98639 | 2010-04-23 05:38:37 -0300 | [diff] [blame] | 179 | void v4l2_m2m_job_finish(struct v4l2_m2m_dev *m2m_dev, |
| 180 | struct v4l2_m2m_ctx *m2m_ctx); |
| 181 | |
Marek Szyprowski | 908a0d7 | 2011-01-12 06:50:24 -0300 | [diff] [blame] | 182 | static inline void |
Junghak Sung | 2d70071 | 2015-09-22 10:30:30 -0300 | [diff] [blame] | 183 | 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] | 184 | { |
Junghak Sung | 2d70071 | 2015-09-22 10:30:30 -0300 | [diff] [blame] | 185 | vb2_buffer_done(&buf->vb2_buf, state); |
Marek Szyprowski | 908a0d7 | 2011-01-12 06:50:24 -0300 | [diff] [blame] | 186 | } |
| 187 | |
Mauro Carvalho Chehab | 4781646 | 2016-09-08 10:16:27 -0300 | [diff] [blame] | 188 | /** |
| 189 | * v4l2_m2m_reqbufs() - multi-queue-aware REQBUFS multiplexer |
Mauro Carvalho Chehab | dcbd873 | 2016-09-08 10:39:58 -0300 | [diff] [blame] | 190 | * |
| 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 Chehab | 4781646 | 2016-09-08 10:16:27 -0300 | [diff] [blame] | 194 | */ |
Pawel Osciak | 7f98639 | 2010-04-23 05:38:37 -0300 | [diff] [blame] | 195 | int v4l2_m2m_reqbufs(struct file *file, struct v4l2_m2m_ctx *m2m_ctx, |
| 196 | struct v4l2_requestbuffers *reqbufs); |
| 197 | |
Mauro Carvalho Chehab | 4781646 | 2016-09-08 10:16:27 -0300 | [diff] [blame] | 198 | /** |
| 199 | * v4l2_m2m_querybuf() - multi-queue-aware QUERYBUF multiplexer |
| 200 | * |
Mauro Carvalho Chehab | dcbd873 | 2016-09-08 10:39:58 -0300 | [diff] [blame] | 201 | * @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 Chehab | 4781646 | 2016-09-08 10:16:27 -0300 | [diff] [blame] | 205 | * See v4l2_m2m_mmap() documentation for details. |
| 206 | */ |
Pawel Osciak | 7f98639 | 2010-04-23 05:38:37 -0300 | [diff] [blame] | 207 | int v4l2_m2m_querybuf(struct file *file, struct v4l2_m2m_ctx *m2m_ctx, |
| 208 | struct v4l2_buffer *buf); |
| 209 | |
Mauro Carvalho Chehab | 4781646 | 2016-09-08 10:16:27 -0300 | [diff] [blame] | 210 | /** |
| 211 | * v4l2_m2m_qbuf() - enqueue a source or destination buffer, depending on |
| 212 | * the type |
Mauro Carvalho Chehab | dcbd873 | 2016-09-08 10:39:58 -0300 | [diff] [blame] | 213 | * |
| 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 Chehab | 4781646 | 2016-09-08 10:16:27 -0300 | [diff] [blame] | 217 | */ |
Pawel Osciak | 7f98639 | 2010-04-23 05:38:37 -0300 | [diff] [blame] | 218 | int v4l2_m2m_qbuf(struct file *file, struct v4l2_m2m_ctx *m2m_ctx, |
| 219 | struct v4l2_buffer *buf); |
Mauro Carvalho Chehab | 4781646 | 2016-09-08 10:16:27 -0300 | [diff] [blame] | 220 | |
| 221 | /** |
| 222 | * v4l2_m2m_dqbuf() - dequeue a source or destination buffer, depending on |
| 223 | * the type |
Mauro Carvalho Chehab | dcbd873 | 2016-09-08 10:39:58 -0300 | [diff] [blame] | 224 | * |
| 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 Chehab | 4781646 | 2016-09-08 10:16:27 -0300 | [diff] [blame] | 228 | */ |
Pawel Osciak | 7f98639 | 2010-04-23 05:38:37 -0300 | [diff] [blame] | 229 | int v4l2_m2m_dqbuf(struct file *file, struct v4l2_m2m_ctx *m2m_ctx, |
| 230 | struct v4l2_buffer *buf); |
Mauro Carvalho Chehab | 4781646 | 2016-09-08 10:16:27 -0300 | [diff] [blame] | 231 | |
| 232 | /** |
| 233 | * v4l2_m2m_prepare_buf() - prepare a source or destination buffer, depending on |
| 234 | * the type |
Mauro Carvalho Chehab | dcbd873 | 2016-09-08 10:39:58 -0300 | [diff] [blame] | 235 | * |
| 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 Chehab | 4781646 | 2016-09-08 10:16:27 -0300 | [diff] [blame] | 239 | */ |
Hans Verkuil | e68cf47 | 2015-06-05 11:28:50 -0300 | [diff] [blame] | 240 | int v4l2_m2m_prepare_buf(struct file *file, struct v4l2_m2m_ctx *m2m_ctx, |
| 241 | struct v4l2_buffer *buf); |
Mauro Carvalho Chehab | 4781646 | 2016-09-08 10:16:27 -0300 | [diff] [blame] | 242 | |
| 243 | /** |
| 244 | * v4l2_m2m_create_bufs() - create a source or destination buffer, depending |
| 245 | * on the type |
Mauro Carvalho Chehab | dcbd873 | 2016-09-08 10:39:58 -0300 | [diff] [blame] | 246 | * |
| 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 Chehab | 4781646 | 2016-09-08 10:16:27 -0300 | [diff] [blame] | 250 | */ |
Philipp Zabel | 8b94ca6 | 2013-05-21 04:16:28 -0300 | [diff] [blame] | 251 | int v4l2_m2m_create_bufs(struct file *file, struct v4l2_m2m_ctx *m2m_ctx, |
| 252 | struct v4l2_create_buffers *create); |
Pawel Osciak | 7f98639 | 2010-04-23 05:38:37 -0300 | [diff] [blame] | 253 | |
Mauro Carvalho Chehab | 4781646 | 2016-09-08 10:16:27 -0300 | [diff] [blame] | 254 | /** |
| 255 | * v4l2_m2m_expbuf() - export a source or destination buffer, depending on |
| 256 | * the type |
Mauro Carvalho Chehab | dcbd873 | 2016-09-08 10:39:58 -0300 | [diff] [blame] | 257 | * |
| 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 Chehab | 4781646 | 2016-09-08 10:16:27 -0300 | [diff] [blame] | 261 | */ |
Tomasz Stanislawski | 83ae7c5 | 2012-06-14 11:32:24 -0300 | [diff] [blame] | 262 | int v4l2_m2m_expbuf(struct file *file, struct v4l2_m2m_ctx *m2m_ctx, |
| 263 | struct v4l2_exportbuffer *eb); |
| 264 | |
Mauro Carvalho Chehab | 4781646 | 2016-09-08 10:16:27 -0300 | [diff] [blame] | 265 | /** |
| 266 | * v4l2_m2m_streamon() - turn on streaming for a video queue |
Mauro Carvalho Chehab | dcbd873 | 2016-09-08 10:39:58 -0300 | [diff] [blame] | 267 | * |
| 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 Chehab | 4781646 | 2016-09-08 10:16:27 -0300 | [diff] [blame] | 271 | */ |
Pawel Osciak | 7f98639 | 2010-04-23 05:38:37 -0300 | [diff] [blame] | 272 | int v4l2_m2m_streamon(struct file *file, struct v4l2_m2m_ctx *m2m_ctx, |
| 273 | enum v4l2_buf_type type); |
Mauro Carvalho Chehab | 4781646 | 2016-09-08 10:16:27 -0300 | [diff] [blame] | 274 | |
| 275 | /** |
| 276 | * v4l2_m2m_streamoff() - turn off streaming for a video queue |
Mauro Carvalho Chehab | dcbd873 | 2016-09-08 10:39:58 -0300 | [diff] [blame] | 277 | * |
| 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 Chehab | 4781646 | 2016-09-08 10:16:27 -0300 | [diff] [blame] | 281 | */ |
Pawel Osciak | 7f98639 | 2010-04-23 05:38:37 -0300 | [diff] [blame] | 282 | int v4l2_m2m_streamoff(struct file *file, struct v4l2_m2m_ctx *m2m_ctx, |
| 283 | enum v4l2_buf_type type); |
| 284 | |
Mauro Carvalho Chehab | 4781646 | 2016-09-08 10:16:27 -0300 | [diff] [blame] | 285 | /** |
| 286 | * v4l2_m2m_poll() - poll replacement, for destination buffers only |
| 287 | * |
Mauro Carvalho Chehab | dcbd873 | 2016-09-08 10:39:58 -0300 | [diff] [blame] | 288 | * @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 Chehab | 4781646 | 2016-09-08 10:16:27 -0300 | [diff] [blame] | 292 | * 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 Osciak | 7f98639 | 2010-04-23 05:38:37 -0300 | [diff] [blame] | 297 | unsigned int v4l2_m2m_poll(struct file *file, struct v4l2_m2m_ctx *m2m_ctx, |
| 298 | struct poll_table_struct *wait); |
| 299 | |
Mauro Carvalho Chehab | 4781646 | 2016-09-08 10:16:27 -0300 | [diff] [blame] | 300 | /** |
| 301 | * v4l2_m2m_mmap() - source and destination queues-aware mmap multiplexer |
| 302 | * |
Mauro Carvalho Chehab | dcbd873 | 2016-09-08 10:39:58 -0300 | [diff] [blame] | 303 | * @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 Chehab | 4781646 | 2016-09-08 10:16:27 -0300 | [diff] [blame] | 307 | * 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 Osciak | 7f98639 | 2010-04-23 05:38:37 -0300 | [diff] [blame] | 314 | int v4l2_m2m_mmap(struct file *file, struct v4l2_m2m_ctx *m2m_ctx, |
| 315 | struct vm_area_struct *vma); |
| 316 | |
Mauro Carvalho Chehab | 4781646 | 2016-09-08 10:16:27 -0300 | [diff] [blame] | 317 | /** |
| 318 | * v4l2_m2m_init() - initialize per-driver m2m data |
| 319 | * |
Mauro Carvalho Chehab | dcbd873 | 2016-09-08 10:39:58 -0300 | [diff] [blame] | 320 | * @m2m_ops: pointer to struct v4l2_m2m_ops |
| 321 | * |
Mauro Carvalho Chehab | 5fa5edb | 2016-09-08 10:16:36 -0300 | [diff] [blame] | 322 | * Usually called from driver's ``probe()`` function. |
| 323 | * |
| 324 | * 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] | 325 | */ |
Guennadi Liakhovetski | b1252eb | 2012-09-11 06:32:17 -0300 | [diff] [blame] | 326 | 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] | 327 | |
| 328 | /** |
| 329 | * v4l2_m2m_release() - cleans up and frees a m2m_dev structure |
| 330 | * |
Mauro Carvalho Chehab | 9f8d3a2 | 2016-09-08 17:20:44 -0300 | [diff] [blame] | 331 | * @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] | 332 | * |
Mauro Carvalho Chehab | 5fa5edb | 2016-09-08 10:16:36 -0300 | [diff] [blame] | 333 | * Usually called from driver's ``remove()`` function. |
Mauro Carvalho Chehab | 4781646 | 2016-09-08 10:16:27 -0300 | [diff] [blame] | 334 | */ |
Pawel Osciak | 7f98639 | 2010-04-23 05:38:37 -0300 | [diff] [blame] | 335 | void v4l2_m2m_release(struct v4l2_m2m_dev *m2m_dev); |
| 336 | |
Mauro Carvalho Chehab | 4781646 | 2016-09-08 10:16:27 -0300 | [diff] [blame] | 337 | /** |
| 338 | * v4l2_m2m_ctx_init() - allocate and initialize a m2m context |
Mauro Carvalho Chehab | dcbd873 | 2016-09-08 10:39:58 -0300 | [diff] [blame] | 339 | * |
Mauro Carvalho Chehab | 9f8d3a2 | 2016-09-08 17:20:44 -0300 | [diff] [blame] | 340 | * @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] | 341 | * @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 Chehab | 4781646 | 2016-09-08 10:16:27 -0300 | [diff] [blame] | 344 | * |
Mauro Carvalho Chehab | 5fa5edb | 2016-09-08 10:16:36 -0300 | [diff] [blame] | 345 | * Usually called from driver's ``open()`` function. |
Mauro Carvalho Chehab | 4781646 | 2016-09-08 10:16:27 -0300 | [diff] [blame] | 346 | */ |
Marek Szyprowski | 908a0d7 | 2011-01-12 06:50:24 -0300 | [diff] [blame] | 347 | struct 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 Zabel | 33bdd5a | 2013-06-03 04:23:48 -0300 | [diff] [blame] | 351 | static 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 | |
| 357 | static 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 Chehab | 4781646 | 2016-09-08 10:16:27 -0300 | [diff] [blame] | 363 | /** |
| 364 | * v4l2_m2m_ctx_release() - release m2m context |
| 365 | * |
Mauro Carvalho Chehab | dcbd873 | 2016-09-08 10:39:58 -0300 | [diff] [blame] | 366 | * @m2m_ctx: m2m context assigned to the instance given by struct &v4l2_m2m_ctx |
| 367 | * |
Mauro Carvalho Chehab | 4781646 | 2016-09-08 10:16:27 -0300 | [diff] [blame] | 368 | * Usually called from driver's release() function. |
| 369 | */ |
Pawel Osciak | 7f98639 | 2010-04-23 05:38:37 -0300 | [diff] [blame] | 370 | void v4l2_m2m_ctx_release(struct v4l2_m2m_ctx *m2m_ctx); |
| 371 | |
Mauro Carvalho Chehab | 4781646 | 2016-09-08 10:16:27 -0300 | [diff] [blame] | 372 | /** |
| 373 | * v4l2_m2m_buf_queue() - add a buffer to the proper ready buffers list. |
| 374 | * |
Mauro Carvalho Chehab | dcbd873 | 2016-09-08 10:39:58 -0300 | [diff] [blame] | 375 | * @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 Chehab | 5fa5edb | 2016-09-08 10:16:36 -0300 | [diff] [blame] | 378 | * 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] | 379 | */ |
Junghak Sung | 2d70071 | 2015-09-22 10:30:30 -0300 | [diff] [blame] | 380 | void v4l2_m2m_buf_queue(struct v4l2_m2m_ctx *m2m_ctx, |
| 381 | struct vb2_v4l2_buffer *vbuf); |
Pawel Osciak | 7f98639 | 2010-04-23 05:38:37 -0300 | [diff] [blame] | 382 | |
| 383 | /** |
| 384 | * v4l2_m2m_num_src_bufs_ready() - return the number of source buffers ready for |
| 385 | * use |
Mauro Carvalho Chehab | 62c0d01 | 2015-08-22 05:34:40 -0300 | [diff] [blame] | 386 | * |
Mauro Carvalho Chehab | dcbd873 | 2016-09-08 10:39:58 -0300 | [diff] [blame] | 387 | * @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] | 388 | */ |
| 389 | static inline |
| 390 | unsigned int v4l2_m2m_num_src_bufs_ready(struct v4l2_m2m_ctx *m2m_ctx) |
| 391 | { |
Sascha Hauer | 961ae44 | 2012-08-31 09:18:04 -0300 | [diff] [blame] | 392 | return m2m_ctx->out_q_ctx.num_rdy; |
Pawel Osciak | 7f98639 | 2010-04-23 05:38:37 -0300 | [diff] [blame] | 393 | } |
| 394 | |
| 395 | /** |
Mauro Carvalho Chehab | e383ce0 | 2016-09-22 07:59:03 -0300 | [diff] [blame] | 396 | * v4l2_m2m_num_dst_bufs_ready() - return the number of destination buffers |
Pawel Osciak | 7f98639 | 2010-04-23 05:38:37 -0300 | [diff] [blame] | 397 | * ready for use |
Mauro Carvalho Chehab | 62c0d01 | 2015-08-22 05:34:40 -0300 | [diff] [blame] | 398 | * |
Mauro Carvalho Chehab | dcbd873 | 2016-09-08 10:39:58 -0300 | [diff] [blame] | 399 | * @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] | 400 | */ |
| 401 | static inline |
| 402 | unsigned int v4l2_m2m_num_dst_bufs_ready(struct v4l2_m2m_ctx *m2m_ctx) |
| 403 | { |
Sascha Hauer | 961ae44 | 2012-08-31 09:18:04 -0300 | [diff] [blame] | 404 | return m2m_ctx->cap_q_ctx.num_rdy; |
Pawel Osciak | 7f98639 | 2010-04-23 05:38:37 -0300 | [diff] [blame] | 405 | } |
| 406 | |
Mauro Carvalho Chehab | 4781646 | 2016-09-08 10:16:27 -0300 | [diff] [blame] | 407 | /** |
| 408 | * 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] | 409 | * |
| 410 | * @q_ctx: pointer to struct @v4l2_m2m_queue_ctx |
Mauro Carvalho Chehab | 4781646 | 2016-09-08 10:16:27 -0300 | [diff] [blame] | 411 | */ |
Marek Szyprowski | 908a0d7 | 2011-01-12 06:50:24 -0300 | [diff] [blame] | 412 | void *v4l2_m2m_next_buf(struct v4l2_m2m_queue_ctx *q_ctx); |
Pawel Osciak | 7f98639 | 2010-04-23 05:38:37 -0300 | [diff] [blame] | 413 | |
| 414 | /** |
| 415 | * v4l2_m2m_next_src_buf() - return next source buffer from the list of ready |
| 416 | * buffers |
Mauro Carvalho Chehab | 62c0d01 | 2015-08-22 05:34:40 -0300 | [diff] [blame] | 417 | * |
Mauro Carvalho Chehab | dcbd873 | 2016-09-08 10:39:58 -0300 | [diff] [blame] | 418 | * @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] | 419 | */ |
| 420 | static inline void *v4l2_m2m_next_src_buf(struct v4l2_m2m_ctx *m2m_ctx) |
| 421 | { |
Marek Szyprowski | 908a0d7 | 2011-01-12 06:50:24 -0300 | [diff] [blame] | 422 | return v4l2_m2m_next_buf(&m2m_ctx->out_q_ctx); |
Pawel Osciak | 7f98639 | 2010-04-23 05:38:37 -0300 | [diff] [blame] | 423 | } |
| 424 | |
| 425 | /** |
| 426 | * v4l2_m2m_next_dst_buf() - return next destination buffer from the list of |
| 427 | * ready buffers |
Mauro Carvalho Chehab | 62c0d01 | 2015-08-22 05:34:40 -0300 | [diff] [blame] | 428 | * |
Mauro Carvalho Chehab | dcbd873 | 2016-09-08 10:39:58 -0300 | [diff] [blame] | 429 | * @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] | 430 | */ |
| 431 | static inline void *v4l2_m2m_next_dst_buf(struct v4l2_m2m_ctx *m2m_ctx) |
| 432 | { |
Marek Szyprowski | 908a0d7 | 2011-01-12 06:50:24 -0300 | [diff] [blame] | 433 | return v4l2_m2m_next_buf(&m2m_ctx->cap_q_ctx); |
Pawel Osciak | 7f98639 | 2010-04-23 05:38:37 -0300 | [diff] [blame] | 434 | } |
| 435 | |
| 436 | /** |
Marek Szyprowski | 908a0d7 | 2011-01-12 06:50:24 -0300 | [diff] [blame] | 437 | * v4l2_m2m_get_src_vq() - return vb2_queue for source buffers |
Mauro Carvalho Chehab | 62c0d01 | 2015-08-22 05:34:40 -0300 | [diff] [blame] | 438 | * |
Mauro Carvalho Chehab | dcbd873 | 2016-09-08 10:39:58 -0300 | [diff] [blame] | 439 | * @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] | 440 | */ |
| 441 | static inline |
Marek Szyprowski | 908a0d7 | 2011-01-12 06:50:24 -0300 | [diff] [blame] | 442 | 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] | 443 | { |
Marek Szyprowski | 908a0d7 | 2011-01-12 06:50:24 -0300 | [diff] [blame] | 444 | return &m2m_ctx->out_q_ctx.q; |
Pawel Osciak | 7f98639 | 2010-04-23 05:38:37 -0300 | [diff] [blame] | 445 | } |
| 446 | |
| 447 | /** |
Marek Szyprowski | 908a0d7 | 2011-01-12 06:50:24 -0300 | [diff] [blame] | 448 | * v4l2_m2m_get_dst_vq() - return vb2_queue for destination buffers |
Mauro Carvalho Chehab | 62c0d01 | 2015-08-22 05:34:40 -0300 | [diff] [blame] | 449 | * |
Mauro Carvalho Chehab | dcbd873 | 2016-09-08 10:39:58 -0300 | [diff] [blame] | 450 | * @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] | 451 | */ |
| 452 | static inline |
Marek Szyprowski | 908a0d7 | 2011-01-12 06:50:24 -0300 | [diff] [blame] | 453 | 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] | 454 | { |
Marek Szyprowski | 908a0d7 | 2011-01-12 06:50:24 -0300 | [diff] [blame] | 455 | return &m2m_ctx->cap_q_ctx.q; |
Pawel Osciak | 7f98639 | 2010-04-23 05:38:37 -0300 | [diff] [blame] | 456 | } |
| 457 | |
Mauro Carvalho Chehab | 4781646 | 2016-09-08 10:16:27 -0300 | [diff] [blame] | 458 | /** |
| 459 | * v4l2_m2m_buf_remove() - take off a buffer from the list of ready buffers and |
| 460 | * return it |
Mauro Carvalho Chehab | dcbd873 | 2016-09-08 10:39:58 -0300 | [diff] [blame] | 461 | * |
| 462 | * @q_ctx: pointer to struct @v4l2_m2m_queue_ctx |
Mauro Carvalho Chehab | 4781646 | 2016-09-08 10:16:27 -0300 | [diff] [blame] | 463 | */ |
Marek Szyprowski | 908a0d7 | 2011-01-12 06:50:24 -0300 | [diff] [blame] | 464 | void *v4l2_m2m_buf_remove(struct v4l2_m2m_queue_ctx *q_ctx); |
Pawel Osciak | 7f98639 | 2010-04-23 05:38:37 -0300 | [diff] [blame] | 465 | |
| 466 | /** |
| 467 | * v4l2_m2m_src_buf_remove() - take off a source buffer from the list of ready |
| 468 | * buffers and return it |
Mauro Carvalho Chehab | 62c0d01 | 2015-08-22 05:34:40 -0300 | [diff] [blame] | 469 | * |
Mauro Carvalho Chehab | dcbd873 | 2016-09-08 10:39:58 -0300 | [diff] [blame] | 470 | * @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] | 471 | */ |
| 472 | static inline void *v4l2_m2m_src_buf_remove(struct v4l2_m2m_ctx *m2m_ctx) |
| 473 | { |
Marek Szyprowski | 908a0d7 | 2011-01-12 06:50:24 -0300 | [diff] [blame] | 474 | return v4l2_m2m_buf_remove(&m2m_ctx->out_q_ctx); |
Pawel Osciak | 7f98639 | 2010-04-23 05:38:37 -0300 | [diff] [blame] | 475 | } |
| 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 Chehab | 62c0d01 | 2015-08-22 05:34:40 -0300 | [diff] [blame] | 480 | * |
Mauro Carvalho Chehab | dcbd873 | 2016-09-08 10:39:58 -0300 | [diff] [blame] | 481 | * @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] | 482 | */ |
| 483 | static inline void *v4l2_m2m_dst_buf_remove(struct v4l2_m2m_ctx *m2m_ctx) |
| 484 | { |
Marek Szyprowski | 908a0d7 | 2011-01-12 06:50:24 -0300 | [diff] [blame] | 485 | return v4l2_m2m_buf_remove(&m2m_ctx->cap_q_ctx); |
Pawel Osciak | 7f98639 | 2010-04-23 05:38:37 -0300 | [diff] [blame] | 486 | } |
| 487 | |
Sylwester Nawrocki | 8e6e8f9 | 2013-09-14 18:39:04 -0300 | [diff] [blame] | 488 | /* v4l2 ioctl helpers */ |
| 489 | |
| 490 | int v4l2_m2m_ioctl_reqbufs(struct file *file, void *priv, |
| 491 | struct v4l2_requestbuffers *rb); |
| 492 | int v4l2_m2m_ioctl_create_bufs(struct file *file, void *fh, |
| 493 | struct v4l2_create_buffers *create); |
| 494 | int v4l2_m2m_ioctl_querybuf(struct file *file, void *fh, |
| 495 | struct v4l2_buffer *buf); |
| 496 | int v4l2_m2m_ioctl_expbuf(struct file *file, void *fh, |
| 497 | struct v4l2_exportbuffer *eb); |
| 498 | int v4l2_m2m_ioctl_qbuf(struct file *file, void *fh, |
| 499 | struct v4l2_buffer *buf); |
| 500 | int v4l2_m2m_ioctl_dqbuf(struct file *file, void *fh, |
| 501 | struct v4l2_buffer *buf); |
Hans Verkuil | e68cf47 | 2015-06-05 11:28:50 -0300 | [diff] [blame] | 502 | int v4l2_m2m_ioctl_prepare_buf(struct file *file, void *fh, |
| 503 | struct v4l2_buffer *buf); |
Sylwester Nawrocki | 8e6e8f9 | 2013-09-14 18:39:04 -0300 | [diff] [blame] | 504 | int v4l2_m2m_ioctl_streamon(struct file *file, void *fh, |
| 505 | enum v4l2_buf_type type); |
| 506 | int v4l2_m2m_ioctl_streamoff(struct file *file, void *fh, |
| 507 | enum v4l2_buf_type type); |
| 508 | int v4l2_m2m_fop_mmap(struct file *file, struct vm_area_struct *vma); |
| 509 | unsigned int v4l2_m2m_fop_poll(struct file *file, poll_table *wait); |
| 510 | |
Pawel Osciak | 7f98639 | 2010-04-23 05:38:37 -0300 | [diff] [blame] | 511 | #endif /* _MEDIA_V4L2_MEM2MEM_H */ |
| 512 | |