blob: 97defed7c1ac82b14ceb36adf2a9e72128bb16a5 [file] [log] [blame]
Pawel Osciak7f986392010-04-23 05:38:37 -03001/*
2 * Memory-to-memory device framework for Video for Linux 2 and videobuf.
3 *
4 * Helper functions for devices that use videobuf buffers for both their
5 * source and destination.
6 *
7 * Copyright (c) 2009-2010 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 License, or (at your
14 * option) any later version.
15 */
16#include <linux/module.h>
17#include <linux/sched.h>
18#include <linux/slab.h>
19
Marek Szyprowski908a0d72011-01-12 06:50:24 -030020#include <media/videobuf2-core.h>
Pawel Osciak7f986392010-04-23 05:38:37 -030021#include <media/v4l2-mem2mem.h>
Hans Verkuil08eb8512012-07-18 10:53:04 -030022#include <media/v4l2-dev.h>
23#include <media/v4l2-fh.h>
24#include <media/v4l2-event.h>
Pawel Osciak7f986392010-04-23 05:38:37 -030025
26MODULE_DESCRIPTION("Mem to mem device framework for videobuf");
Pawel Osciak95072082011-03-13 15:23:32 -030027MODULE_AUTHOR("Pawel Osciak, <pawel@osciak.com>");
Pawel Osciak7f986392010-04-23 05:38:37 -030028MODULE_LICENSE("GPL");
29
30static bool debug;
31module_param(debug, bool, 0644);
32
33#define dprintk(fmt, arg...) \
34 do { \
35 if (debug) \
36 printk(KERN_DEBUG "%s: " fmt, __func__, ## arg);\
37 } while (0)
38
39
40/* Instance is already queued on the job_queue */
41#define TRANS_QUEUED (1 << 0)
42/* Instance is currently running in hardware */
43#define TRANS_RUNNING (1 << 1)
Shaik Ameer Basha2ad53892013-09-20 03:26:18 -030044/* Instance is currently aborting */
45#define TRANS_ABORT (1 << 2)
Pawel Osciak7f986392010-04-23 05:38:37 -030046
47
48/* Offset base for buffers on the destination queue - used to distinguish
49 * between source and destination buffers when mmapping - they receive the same
50 * offsets but for different queues */
51#define DST_QUEUE_OFF_BASE (1 << 30)
52
53
54/**
55 * struct v4l2_m2m_dev - per-device context
56 * @curr_ctx: currently running instance
57 * @job_queue: instances queued to run
58 * @job_spinlock: protects job_queue
59 * @m2m_ops: driver callbacks
60 */
61struct v4l2_m2m_dev {
62 struct v4l2_m2m_ctx *curr_ctx;
63
64 struct list_head job_queue;
65 spinlock_t job_spinlock;
66
Guennadi Liakhovetskib1252eb2012-09-11 06:32:17 -030067 const struct v4l2_m2m_ops *m2m_ops;
Pawel Osciak7f986392010-04-23 05:38:37 -030068};
69
70static struct v4l2_m2m_queue_ctx *get_queue_ctx(struct v4l2_m2m_ctx *m2m_ctx,
71 enum v4l2_buf_type type)
72{
Marek Szyprowski908a0d72011-01-12 06:50:24 -030073 if (V4L2_TYPE_IS_OUTPUT(type))
Pawel Osciak7f986392010-04-23 05:38:37 -030074 return &m2m_ctx->out_q_ctx;
Marek Szyprowski908a0d72011-01-12 06:50:24 -030075 else
76 return &m2m_ctx->cap_q_ctx;
Pawel Osciak7f986392010-04-23 05:38:37 -030077}
78
79/**
Marek Szyprowski908a0d72011-01-12 06:50:24 -030080 * v4l2_m2m_get_vq() - return vb2_queue for the given type
Pawel Osciak7f986392010-04-23 05:38:37 -030081 */
Marek Szyprowski908a0d72011-01-12 06:50:24 -030082struct vb2_queue *v4l2_m2m_get_vq(struct v4l2_m2m_ctx *m2m_ctx,
Pawel Osciak7f986392010-04-23 05:38:37 -030083 enum v4l2_buf_type type)
84{
85 struct v4l2_m2m_queue_ctx *q_ctx;
86
87 q_ctx = get_queue_ctx(m2m_ctx, type);
88 if (!q_ctx)
89 return NULL;
90
91 return &q_ctx->q;
92}
93EXPORT_SYMBOL(v4l2_m2m_get_vq);
94
95/**
96 * v4l2_m2m_next_buf() - return next buffer from the list of ready buffers
97 */
Marek Szyprowski908a0d72011-01-12 06:50:24 -030098void *v4l2_m2m_next_buf(struct v4l2_m2m_queue_ctx *q_ctx)
Pawel Osciak7f986392010-04-23 05:38:37 -030099{
Marek Szyprowski908a0d72011-01-12 06:50:24 -0300100 struct v4l2_m2m_buffer *b = NULL;
Pawel Osciak7f986392010-04-23 05:38:37 -0300101 unsigned long flags;
102
Marek Szyprowski908a0d72011-01-12 06:50:24 -0300103 spin_lock_irqsave(&q_ctx->rdy_spinlock, flags);
Pawel Osciak7f986392010-04-23 05:38:37 -0300104
Andrzej Pietrasiewicza6bd62be2011-08-25 07:21:21 -0300105 if (list_empty(&q_ctx->rdy_queue)) {
106 spin_unlock_irqrestore(&q_ctx->rdy_spinlock, flags);
107 return NULL;
108 }
Pawel Osciak7f986392010-04-23 05:38:37 -0300109
Sascha Hauerc392e9e2012-08-31 09:18:03 -0300110 b = list_first_entry(&q_ctx->rdy_queue, struct v4l2_m2m_buffer, list);
Marek Szyprowski908a0d72011-01-12 06:50:24 -0300111 spin_unlock_irqrestore(&q_ctx->rdy_spinlock, flags);
112 return &b->vb;
Pawel Osciak7f986392010-04-23 05:38:37 -0300113}
114EXPORT_SYMBOL_GPL(v4l2_m2m_next_buf);
115
116/**
117 * v4l2_m2m_buf_remove() - take off a buffer from the list of ready buffers and
118 * return it
119 */
Marek Szyprowski908a0d72011-01-12 06:50:24 -0300120void *v4l2_m2m_buf_remove(struct v4l2_m2m_queue_ctx *q_ctx)
Pawel Osciak7f986392010-04-23 05:38:37 -0300121{
Marek Szyprowski908a0d72011-01-12 06:50:24 -0300122 struct v4l2_m2m_buffer *b = NULL;
Pawel Osciak7f986392010-04-23 05:38:37 -0300123 unsigned long flags;
124
Marek Szyprowski908a0d72011-01-12 06:50:24 -0300125 spin_lock_irqsave(&q_ctx->rdy_spinlock, flags);
Andrzej Pietrasiewicza6bd62be2011-08-25 07:21:21 -0300126 if (list_empty(&q_ctx->rdy_queue)) {
127 spin_unlock_irqrestore(&q_ctx->rdy_spinlock, flags);
128 return NULL;
Pawel Osciak7f986392010-04-23 05:38:37 -0300129 }
Sascha Hauerc392e9e2012-08-31 09:18:03 -0300130 b = list_first_entry(&q_ctx->rdy_queue, struct v4l2_m2m_buffer, list);
Andrzej Pietrasiewicza6bd62be2011-08-25 07:21:21 -0300131 list_del(&b->list);
132 q_ctx->num_rdy--;
Marek Szyprowski908a0d72011-01-12 06:50:24 -0300133 spin_unlock_irqrestore(&q_ctx->rdy_spinlock, flags);
Pawel Osciak7f986392010-04-23 05:38:37 -0300134
Marek Szyprowski908a0d72011-01-12 06:50:24 -0300135 return &b->vb;
Pawel Osciak7f986392010-04-23 05:38:37 -0300136}
137EXPORT_SYMBOL_GPL(v4l2_m2m_buf_remove);
138
139/*
140 * Scheduling handlers
141 */
142
143/**
144 * v4l2_m2m_get_curr_priv() - return driver private data for the currently
145 * running instance or NULL if no instance is running
146 */
147void *v4l2_m2m_get_curr_priv(struct v4l2_m2m_dev *m2m_dev)
148{
149 unsigned long flags;
150 void *ret = NULL;
151
152 spin_lock_irqsave(&m2m_dev->job_spinlock, flags);
153 if (m2m_dev->curr_ctx)
154 ret = m2m_dev->curr_ctx->priv;
155 spin_unlock_irqrestore(&m2m_dev->job_spinlock, flags);
156
157 return ret;
158}
159EXPORT_SYMBOL(v4l2_m2m_get_curr_priv);
160
161/**
162 * v4l2_m2m_try_run() - select next job to perform and run it if possible
163 *
164 * Get next transaction (if present) from the waiting jobs list and run it.
165 */
166static void v4l2_m2m_try_run(struct v4l2_m2m_dev *m2m_dev)
167{
168 unsigned long flags;
169
170 spin_lock_irqsave(&m2m_dev->job_spinlock, flags);
171 if (NULL != m2m_dev->curr_ctx) {
172 spin_unlock_irqrestore(&m2m_dev->job_spinlock, flags);
173 dprintk("Another instance is running, won't run now\n");
174 return;
175 }
176
177 if (list_empty(&m2m_dev->job_queue)) {
178 spin_unlock_irqrestore(&m2m_dev->job_spinlock, flags);
179 dprintk("No job pending\n");
180 return;
181 }
182
Sascha Hauerc392e9e2012-08-31 09:18:03 -0300183 m2m_dev->curr_ctx = list_first_entry(&m2m_dev->job_queue,
Pawel Osciak7f986392010-04-23 05:38:37 -0300184 struct v4l2_m2m_ctx, queue);
185 m2m_dev->curr_ctx->job_flags |= TRANS_RUNNING;
186 spin_unlock_irqrestore(&m2m_dev->job_spinlock, flags);
187
188 m2m_dev->m2m_ops->device_run(m2m_dev->curr_ctx->priv);
189}
190
191/**
192 * v4l2_m2m_try_schedule() - check whether an instance is ready to be added to
193 * the pending job queue and add it if so.
194 * @m2m_ctx: m2m context assigned to the instance to be checked
195 *
196 * There are three basic requirements an instance has to meet to be able to run:
197 * 1) at least one source buffer has to be queued,
198 * 2) at least one destination buffer has to be queued,
199 * 3) streaming has to be on.
200 *
Philipp Zabel33bdd5a2013-06-03 04:23:48 -0300201 * If a queue is buffered (for example a decoder hardware ringbuffer that has
202 * to be drained before doing streamoff), allow scheduling without v4l2 buffers
203 * on that queue.
204 *
Pawel Osciak7f986392010-04-23 05:38:37 -0300205 * There may also be additional, custom requirements. In such case the driver
206 * should supply a custom callback (job_ready in v4l2_m2m_ops) that should
207 * return 1 if the instance is ready.
208 * An example of the above could be an instance that requires more than one
209 * src/dst buffer per transaction.
210 */
211static void v4l2_m2m_try_schedule(struct v4l2_m2m_ctx *m2m_ctx)
212{
213 struct v4l2_m2m_dev *m2m_dev;
John Sheub7306272013-05-23 20:41:48 -0300214 unsigned long flags_job, flags_out, flags_cap;
Pawel Osciak7f986392010-04-23 05:38:37 -0300215
216 m2m_dev = m2m_ctx->m2m_dev;
217 dprintk("Trying to schedule a job for m2m_ctx: %p\n", m2m_ctx);
218
219 if (!m2m_ctx->out_q_ctx.q.streaming
220 || !m2m_ctx->cap_q_ctx.q.streaming) {
221 dprintk("Streaming needs to be on for both queues\n");
222 return;
223 }
224
225 spin_lock_irqsave(&m2m_dev->job_spinlock, flags_job);
Shaik Ameer Basha2ad53892013-09-20 03:26:18 -0300226
227 /* If the context is aborted then don't schedule it */
228 if (m2m_ctx->job_flags & TRANS_ABORT) {
229 spin_unlock_irqrestore(&m2m_dev->job_spinlock, flags_job);
230 dprintk("Aborted context\n");
231 return;
232 }
233
Pawel Osciak7f986392010-04-23 05:38:37 -0300234 if (m2m_ctx->job_flags & TRANS_QUEUED) {
235 spin_unlock_irqrestore(&m2m_dev->job_spinlock, flags_job);
236 dprintk("On job queue already\n");
237 return;
238 }
239
John Sheub7306272013-05-23 20:41:48 -0300240 spin_lock_irqsave(&m2m_ctx->out_q_ctx.rdy_spinlock, flags_out);
Philipp Zabel33bdd5a2013-06-03 04:23:48 -0300241 if (list_empty(&m2m_ctx->out_q_ctx.rdy_queue)
242 && !m2m_ctx->out_q_ctx.buffered) {
John Sheub7306272013-05-23 20:41:48 -0300243 spin_unlock_irqrestore(&m2m_ctx->out_q_ctx.rdy_spinlock,
244 flags_out);
Pawel Osciak7f986392010-04-23 05:38:37 -0300245 spin_unlock_irqrestore(&m2m_dev->job_spinlock, flags_job);
246 dprintk("No input buffers available\n");
247 return;
248 }
John Sheub7306272013-05-23 20:41:48 -0300249 spin_lock_irqsave(&m2m_ctx->cap_q_ctx.rdy_spinlock, flags_cap);
Philipp Zabel33bdd5a2013-06-03 04:23:48 -0300250 if (list_empty(&m2m_ctx->cap_q_ctx.rdy_queue)
251 && !m2m_ctx->cap_q_ctx.buffered) {
John Sheub7306272013-05-23 20:41:48 -0300252 spin_unlock_irqrestore(&m2m_ctx->cap_q_ctx.rdy_spinlock,
253 flags_cap);
254 spin_unlock_irqrestore(&m2m_ctx->out_q_ctx.rdy_spinlock,
255 flags_out);
Pawel Osciak7f986392010-04-23 05:38:37 -0300256 spin_unlock_irqrestore(&m2m_dev->job_spinlock, flags_job);
257 dprintk("No output buffers available\n");
258 return;
259 }
John Sheub7306272013-05-23 20:41:48 -0300260 spin_unlock_irqrestore(&m2m_ctx->cap_q_ctx.rdy_spinlock, flags_cap);
261 spin_unlock_irqrestore(&m2m_ctx->out_q_ctx.rdy_spinlock, flags_out);
Pawel Osciak7f986392010-04-23 05:38:37 -0300262
263 if (m2m_dev->m2m_ops->job_ready
264 && (!m2m_dev->m2m_ops->job_ready(m2m_ctx->priv))) {
265 spin_unlock_irqrestore(&m2m_dev->job_spinlock, flags_job);
266 dprintk("Driver not ready\n");
267 return;
268 }
269
270 list_add_tail(&m2m_ctx->queue, &m2m_dev->job_queue);
271 m2m_ctx->job_flags |= TRANS_QUEUED;
272
273 spin_unlock_irqrestore(&m2m_dev->job_spinlock, flags_job);
274
275 v4l2_m2m_try_run(m2m_dev);
276}
277
278/**
Shaik Ameer Bashafea564a2013-08-13 02:58:07 -0300279 * v4l2_m2m_cancel_job() - cancel pending jobs for the context
280 *
281 * In case of streamoff or release called on any context,
282 * 1] If the context is currently running, then abort job will be called
283 * 2] If the context is queued, then the context will be removed from
284 * the job_queue
285 */
286static void v4l2_m2m_cancel_job(struct v4l2_m2m_ctx *m2m_ctx)
287{
288 struct v4l2_m2m_dev *m2m_dev;
289 unsigned long flags;
290
291 m2m_dev = m2m_ctx->m2m_dev;
292 spin_lock_irqsave(&m2m_dev->job_spinlock, flags);
Shaik Ameer Basha2ad53892013-09-20 03:26:18 -0300293
294 m2m_ctx->job_flags |= TRANS_ABORT;
Shaik Ameer Bashafea564a2013-08-13 02:58:07 -0300295 if (m2m_ctx->job_flags & TRANS_RUNNING) {
296 spin_unlock_irqrestore(&m2m_dev->job_spinlock, flags);
297 m2m_dev->m2m_ops->job_abort(m2m_ctx->priv);
298 dprintk("m2m_ctx %p running, will wait to complete", m2m_ctx);
299 wait_event(m2m_ctx->finished,
300 !(m2m_ctx->job_flags & TRANS_RUNNING));
301 } else if (m2m_ctx->job_flags & TRANS_QUEUED) {
302 list_del(&m2m_ctx->queue);
303 m2m_ctx->job_flags &= ~(TRANS_QUEUED | TRANS_RUNNING);
304 spin_unlock_irqrestore(&m2m_dev->job_spinlock, flags);
305 dprintk("m2m_ctx: %p had been on queue and was removed\n",
306 m2m_ctx);
307 } else {
308 /* Do nothing, was not on queue/running */
309 spin_unlock_irqrestore(&m2m_dev->job_spinlock, flags);
310 }
311}
312
313/**
Pawel Osciak7f986392010-04-23 05:38:37 -0300314 * v4l2_m2m_job_finish() - inform the framework that a job has been finished
315 * and have it clean up
316 *
317 * Called by a driver to yield back the device after it has finished with it.
318 * Should be called as soon as possible after reaching a state which allows
319 * other instances to take control of the device.
320 *
321 * This function has to be called only after device_run() callback has been
322 * called on the driver. To prevent recursion, it should not be called directly
323 * from the device_run() callback though.
324 */
325void v4l2_m2m_job_finish(struct v4l2_m2m_dev *m2m_dev,
326 struct v4l2_m2m_ctx *m2m_ctx)
327{
328 unsigned long flags;
329
330 spin_lock_irqsave(&m2m_dev->job_spinlock, flags);
331 if (!m2m_dev->curr_ctx || m2m_dev->curr_ctx != m2m_ctx) {
332 spin_unlock_irqrestore(&m2m_dev->job_spinlock, flags);
333 dprintk("Called by an instance not currently running\n");
334 return;
335 }
336
337 list_del(&m2m_dev->curr_ctx->queue);
338 m2m_dev->curr_ctx->job_flags &= ~(TRANS_QUEUED | TRANS_RUNNING);
Marek Szyprowski908a0d72011-01-12 06:50:24 -0300339 wake_up(&m2m_dev->curr_ctx->finished);
Pawel Osciak7f986392010-04-23 05:38:37 -0300340 m2m_dev->curr_ctx = NULL;
341
342 spin_unlock_irqrestore(&m2m_dev->job_spinlock, flags);
343
344 /* This instance might have more buffers ready, but since we do not
345 * allow more than one job on the job_queue per instance, each has
346 * to be scheduled separately after the previous one finishes. */
347 v4l2_m2m_try_schedule(m2m_ctx);
348 v4l2_m2m_try_run(m2m_dev);
349}
350EXPORT_SYMBOL(v4l2_m2m_job_finish);
351
352/**
353 * v4l2_m2m_reqbufs() - multi-queue-aware REQBUFS multiplexer
354 */
355int v4l2_m2m_reqbufs(struct file *file, struct v4l2_m2m_ctx *m2m_ctx,
356 struct v4l2_requestbuffers *reqbufs)
357{
Marek Szyprowski908a0d72011-01-12 06:50:24 -0300358 struct vb2_queue *vq;
Pawel Osciak7f986392010-04-23 05:38:37 -0300359
360 vq = v4l2_m2m_get_vq(m2m_ctx, reqbufs->type);
Marek Szyprowski908a0d72011-01-12 06:50:24 -0300361 return vb2_reqbufs(vq, reqbufs);
Pawel Osciak7f986392010-04-23 05:38:37 -0300362}
363EXPORT_SYMBOL_GPL(v4l2_m2m_reqbufs);
364
365/**
366 * v4l2_m2m_querybuf() - multi-queue-aware QUERYBUF multiplexer
367 *
368 * See v4l2_m2m_mmap() documentation for details.
369 */
370int v4l2_m2m_querybuf(struct file *file, struct v4l2_m2m_ctx *m2m_ctx,
371 struct v4l2_buffer *buf)
372{
Marek Szyprowski908a0d72011-01-12 06:50:24 -0300373 struct vb2_queue *vq;
374 int ret = 0;
375 unsigned int i;
Pawel Osciak7f986392010-04-23 05:38:37 -0300376
377 vq = v4l2_m2m_get_vq(m2m_ctx, buf->type);
Marek Szyprowski908a0d72011-01-12 06:50:24 -0300378 ret = vb2_querybuf(vq, buf);
Pawel Osciak7f986392010-04-23 05:38:37 -0300379
Marek Szyprowski908a0d72011-01-12 06:50:24 -0300380 /* Adjust MMAP memory offsets for the CAPTURE queue */
381 if (buf->memory == V4L2_MEMORY_MMAP && !V4L2_TYPE_IS_OUTPUT(vq->type)) {
382 if (V4L2_TYPE_IS_MULTIPLANAR(vq->type)) {
383 for (i = 0; i < buf->length; ++i)
384 buf->m.planes[i].m.mem_offset
385 += DST_QUEUE_OFF_BASE;
386 } else {
387 buf->m.offset += DST_QUEUE_OFF_BASE;
388 }
Pawel Osciak7f986392010-04-23 05:38:37 -0300389 }
390
391 return ret;
392}
393EXPORT_SYMBOL_GPL(v4l2_m2m_querybuf);
394
395/**
396 * v4l2_m2m_qbuf() - enqueue a source or destination buffer, depending on
397 * the type
398 */
399int v4l2_m2m_qbuf(struct file *file, struct v4l2_m2m_ctx *m2m_ctx,
400 struct v4l2_buffer *buf)
401{
Marek Szyprowski908a0d72011-01-12 06:50:24 -0300402 struct vb2_queue *vq;
Pawel Osciak7f986392010-04-23 05:38:37 -0300403 int ret;
404
405 vq = v4l2_m2m_get_vq(m2m_ctx, buf->type);
Marek Szyprowski908a0d72011-01-12 06:50:24 -0300406 ret = vb2_qbuf(vq, buf);
Pawel Osciak7f986392010-04-23 05:38:37 -0300407 if (!ret)
408 v4l2_m2m_try_schedule(m2m_ctx);
409
410 return ret;
411}
412EXPORT_SYMBOL_GPL(v4l2_m2m_qbuf);
413
414/**
415 * v4l2_m2m_dqbuf() - dequeue a source or destination buffer, depending on
416 * the type
417 */
418int v4l2_m2m_dqbuf(struct file *file, struct v4l2_m2m_ctx *m2m_ctx,
419 struct v4l2_buffer *buf)
420{
Marek Szyprowski908a0d72011-01-12 06:50:24 -0300421 struct vb2_queue *vq;
Pawel Osciak7f986392010-04-23 05:38:37 -0300422
423 vq = v4l2_m2m_get_vq(m2m_ctx, buf->type);
Marek Szyprowski908a0d72011-01-12 06:50:24 -0300424 return vb2_dqbuf(vq, buf, file->f_flags & O_NONBLOCK);
Pawel Osciak7f986392010-04-23 05:38:37 -0300425}
426EXPORT_SYMBOL_GPL(v4l2_m2m_dqbuf);
427
428/**
Philipp Zabel8b94ca62013-05-21 04:16:28 -0300429 * v4l2_m2m_create_bufs() - create a source or destination buffer, depending
430 * on the type
431 */
432int v4l2_m2m_create_bufs(struct file *file, struct v4l2_m2m_ctx *m2m_ctx,
433 struct v4l2_create_buffers *create)
434{
435 struct vb2_queue *vq;
436
437 vq = v4l2_m2m_get_vq(m2m_ctx, create->format.type);
438 return vb2_create_bufs(vq, create);
439}
440EXPORT_SYMBOL_GPL(v4l2_m2m_create_bufs);
441
442/**
Tomasz Stanislawski83ae7c52012-06-14 11:32:24 -0300443 * v4l2_m2m_expbuf() - export a source or destination buffer, depending on
444 * the type
445 */
446int v4l2_m2m_expbuf(struct file *file, struct v4l2_m2m_ctx *m2m_ctx,
447 struct v4l2_exportbuffer *eb)
448{
449 struct vb2_queue *vq;
450
451 vq = v4l2_m2m_get_vq(m2m_ctx, eb->type);
452 return vb2_expbuf(vq, eb);
453}
454EXPORT_SYMBOL_GPL(v4l2_m2m_expbuf);
455/**
Pawel Osciak7f986392010-04-23 05:38:37 -0300456 * v4l2_m2m_streamon() - turn on streaming for a video queue
457 */
458int v4l2_m2m_streamon(struct file *file, struct v4l2_m2m_ctx *m2m_ctx,
459 enum v4l2_buf_type type)
460{
Marek Szyprowski908a0d72011-01-12 06:50:24 -0300461 struct vb2_queue *vq;
Pawel Osciak7f986392010-04-23 05:38:37 -0300462 int ret;
463
464 vq = v4l2_m2m_get_vq(m2m_ctx, type);
Marek Szyprowski908a0d72011-01-12 06:50:24 -0300465 ret = vb2_streamon(vq, type);
Pawel Osciak7f986392010-04-23 05:38:37 -0300466 if (!ret)
467 v4l2_m2m_try_schedule(m2m_ctx);
468
469 return ret;
470}
471EXPORT_SYMBOL_GPL(v4l2_m2m_streamon);
472
473/**
474 * v4l2_m2m_streamoff() - turn off streaming for a video queue
475 */
476int v4l2_m2m_streamoff(struct file *file, struct v4l2_m2m_ctx *m2m_ctx,
477 enum v4l2_buf_type type)
478{
John Sheu401f6a22013-02-06 20:03:01 -0300479 struct v4l2_m2m_dev *m2m_dev;
480 struct v4l2_m2m_queue_ctx *q_ctx;
481 unsigned long flags_job, flags;
482 int ret;
Pawel Osciak7f986392010-04-23 05:38:37 -0300483
Shaik Ameer Bashafea564a2013-08-13 02:58:07 -0300484 /* wait until the current context is dequeued from job_queue */
485 v4l2_m2m_cancel_job(m2m_ctx);
486
John Sheu401f6a22013-02-06 20:03:01 -0300487 q_ctx = get_queue_ctx(m2m_ctx, type);
488 ret = vb2_streamoff(&q_ctx->q, type);
489 if (ret)
490 return ret;
491
492 m2m_dev = m2m_ctx->m2m_dev;
493 spin_lock_irqsave(&m2m_dev->job_spinlock, flags_job);
494 /* We should not be scheduled anymore, since we're dropping a queue. */
Philipp Zabeld7bb0ce82013-09-19 04:40:32 -0300495 if (m2m_ctx->job_flags & TRANS_QUEUED)
496 list_del(&m2m_ctx->queue);
John Sheu401f6a22013-02-06 20:03:01 -0300497 m2m_ctx->job_flags = 0;
498
499 spin_lock_irqsave(&q_ctx->rdy_spinlock, flags);
500 /* Drop queue, since streamoff returns device to the same state as after
501 * calling reqbufs. */
502 INIT_LIST_HEAD(&q_ctx->rdy_queue);
Philipp Zabel84e68092013-09-19 04:53:21 -0300503 q_ctx->num_rdy = 0;
John Sheu401f6a22013-02-06 20:03:01 -0300504 spin_unlock_irqrestore(&q_ctx->rdy_spinlock, flags);
505
506 if (m2m_dev->curr_ctx == m2m_ctx) {
507 m2m_dev->curr_ctx = NULL;
508 wake_up(&m2m_ctx->finished);
509 }
510 spin_unlock_irqrestore(&m2m_dev->job_spinlock, flags_job);
511
512 return 0;
Pawel Osciak7f986392010-04-23 05:38:37 -0300513}
514EXPORT_SYMBOL_GPL(v4l2_m2m_streamoff);
515
516/**
517 * v4l2_m2m_poll() - poll replacement, for destination buffers only
518 *
519 * Call from the driver's poll() function. Will poll both queues. If a buffer
520 * is available to dequeue (with dqbuf) from the source queue, this will
521 * indicate that a non-blocking write can be performed, while read will be
522 * returned in case of the destination queue.
523 */
524unsigned int v4l2_m2m_poll(struct file *file, struct v4l2_m2m_ctx *m2m_ctx,
525 struct poll_table_struct *wait)
526{
Hans Verkuil08eb8512012-07-18 10:53:04 -0300527 struct video_device *vfd = video_devdata(file);
528 unsigned long req_events = poll_requested_events(wait);
Marek Szyprowski908a0d72011-01-12 06:50:24 -0300529 struct vb2_queue *src_q, *dst_q;
530 struct vb2_buffer *src_vb = NULL, *dst_vb = NULL;
Pawel Osciak7f986392010-04-23 05:38:37 -0300531 unsigned int rc = 0;
Marek Szyprowski908a0d72011-01-12 06:50:24 -0300532 unsigned long flags;
Pawel Osciak7f986392010-04-23 05:38:37 -0300533
Hans Verkuil08eb8512012-07-18 10:53:04 -0300534 if (test_bit(V4L2_FL_USES_V4L2_FH, &vfd->flags)) {
535 struct v4l2_fh *fh = file->private_data;
536
537 if (v4l2_event_pending(fh))
538 rc = POLLPRI;
539 else if (req_events & POLLPRI)
540 poll_wait(file, &fh->wait, wait);
541 if (!(req_events & (POLLOUT | POLLWRNORM | POLLIN | POLLRDNORM)))
542 return rc;
543 }
544
Pawel Osciak7f986392010-04-23 05:38:37 -0300545 src_q = v4l2_m2m_get_src_vq(m2m_ctx);
546 dst_q = v4l2_m2m_get_dst_vq(m2m_ctx);
547
Marek Szyprowski908a0d72011-01-12 06:50:24 -0300548 /*
549 * There has to be at least one buffer queued on each queued_list, which
550 * means either in driver already or waiting for driver to claim it
551 * and start processing.
552 */
553 if ((!src_q->streaming || list_empty(&src_q->queued_list))
554 && (!dst_q->streaming || list_empty(&dst_q->queued_list))) {
Hans Verkuil08eb8512012-07-18 10:53:04 -0300555 rc |= POLLERR;
Pawel Osciak7f986392010-04-23 05:38:37 -0300556 goto end;
557 }
558
Marek Szyprowski908a0d72011-01-12 06:50:24 -0300559 if (m2m_ctx->m2m_dev->m2m_ops->unlock)
560 m2m_ctx->m2m_dev->m2m_ops->unlock(m2m_ctx->priv);
Sylwester Nawrocki8e6e8f92013-09-14 18:39:04 -0300561 else if (m2m_ctx->q_lock)
562 mutex_unlock(m2m_ctx->q_lock);
Marek Szyprowski908a0d72011-01-12 06:50:24 -0300563
Seung-Woo Kim57183462013-05-20 23:47:30 -0300564 if (list_empty(&src_q->done_list))
565 poll_wait(file, &src_q->done_wq, wait);
566 if (list_empty(&dst_q->done_list))
567 poll_wait(file, &dst_q->done_wq, wait);
Marek Szyprowski908a0d72011-01-12 06:50:24 -0300568
569 if (m2m_ctx->m2m_dev->m2m_ops->lock)
570 m2m_ctx->m2m_dev->m2m_ops->lock(m2m_ctx->priv);
Philipp Zabela85fd202014-05-26 10:49:22 -0300571 else if (m2m_ctx->q_lock) {
572 if (mutex_lock_interruptible(m2m_ctx->q_lock)) {
573 rc |= POLLERR;
574 goto end;
575 }
576 }
Marek Szyprowski908a0d72011-01-12 06:50:24 -0300577
578 spin_lock_irqsave(&src_q->done_lock, flags);
579 if (!list_empty(&src_q->done_list))
580 src_vb = list_first_entry(&src_q->done_list, struct vb2_buffer,
581 done_entry);
582 if (src_vb && (src_vb->state == VB2_BUF_STATE_DONE
583 || src_vb->state == VB2_BUF_STATE_ERROR))
584 rc |= POLLOUT | POLLWRNORM;
585 spin_unlock_irqrestore(&src_q->done_lock, flags);
586
587 spin_lock_irqsave(&dst_q->done_lock, flags);
588 if (!list_empty(&dst_q->done_list))
589 dst_vb = list_first_entry(&dst_q->done_list, struct vb2_buffer,
590 done_entry);
591 if (dst_vb && (dst_vb->state == VB2_BUF_STATE_DONE
592 || dst_vb->state == VB2_BUF_STATE_ERROR))
593 rc |= POLLIN | POLLRDNORM;
594 spin_unlock_irqrestore(&dst_q->done_lock, flags);
Pawel Osciak7f986392010-04-23 05:38:37 -0300595
596end:
Pawel Osciak7f986392010-04-23 05:38:37 -0300597 return rc;
598}
599EXPORT_SYMBOL_GPL(v4l2_m2m_poll);
600
601/**
602 * v4l2_m2m_mmap() - source and destination queues-aware mmap multiplexer
603 *
604 * Call from driver's mmap() function. Will handle mmap() for both queues
605 * seamlessly for videobuffer, which will receive normal per-queue offsets and
606 * proper videobuf queue pointers. The differentiation is made outside videobuf
607 * by adding a predefined offset to buffers from one of the queues and
608 * subtracting it before passing it back to videobuf. Only drivers (and
609 * thus applications) receive modified offsets.
610 */
611int v4l2_m2m_mmap(struct file *file, struct v4l2_m2m_ctx *m2m_ctx,
612 struct vm_area_struct *vma)
613{
614 unsigned long offset = vma->vm_pgoff << PAGE_SHIFT;
Marek Szyprowski908a0d72011-01-12 06:50:24 -0300615 struct vb2_queue *vq;
Pawel Osciak7f986392010-04-23 05:38:37 -0300616
617 if (offset < DST_QUEUE_OFF_BASE) {
618 vq = v4l2_m2m_get_src_vq(m2m_ctx);
619 } else {
620 vq = v4l2_m2m_get_dst_vq(m2m_ctx);
621 vma->vm_pgoff -= (DST_QUEUE_OFF_BASE >> PAGE_SHIFT);
622 }
623
Marek Szyprowski908a0d72011-01-12 06:50:24 -0300624 return vb2_mmap(vq, vma);
Pawel Osciak7f986392010-04-23 05:38:37 -0300625}
626EXPORT_SYMBOL(v4l2_m2m_mmap);
627
628/**
629 * v4l2_m2m_init() - initialize per-driver m2m data
630 *
631 * Usually called from driver's probe() function.
632 */
Guennadi Liakhovetskib1252eb2012-09-11 06:32:17 -0300633struct v4l2_m2m_dev *v4l2_m2m_init(const struct v4l2_m2m_ops *m2m_ops)
Pawel Osciak7f986392010-04-23 05:38:37 -0300634{
635 struct v4l2_m2m_dev *m2m_dev;
636
Nicolas THERY3fac4eb2012-10-23 04:47:19 -0300637 if (!m2m_ops || WARN_ON(!m2m_ops->device_run) ||
638 WARN_ON(!m2m_ops->job_abort))
Pawel Osciak7f986392010-04-23 05:38:37 -0300639 return ERR_PTR(-EINVAL);
640
Pawel Osciak7f986392010-04-23 05:38:37 -0300641 m2m_dev = kzalloc(sizeof *m2m_dev, GFP_KERNEL);
642 if (!m2m_dev)
643 return ERR_PTR(-ENOMEM);
644
645 m2m_dev->curr_ctx = NULL;
646 m2m_dev->m2m_ops = m2m_ops;
647 INIT_LIST_HEAD(&m2m_dev->job_queue);
648 spin_lock_init(&m2m_dev->job_spinlock);
649
650 return m2m_dev;
651}
652EXPORT_SYMBOL_GPL(v4l2_m2m_init);
653
654/**
655 * v4l2_m2m_release() - cleans up and frees a m2m_dev structure
656 *
657 * Usually called from driver's remove() function.
658 */
659void v4l2_m2m_release(struct v4l2_m2m_dev *m2m_dev)
660{
661 kfree(m2m_dev);
662}
663EXPORT_SYMBOL_GPL(v4l2_m2m_release);
664
665/**
666 * v4l2_m2m_ctx_init() - allocate and initialize a m2m context
667 * @priv - driver's instance private data
668 * @m2m_dev - a previously initialized m2m_dev struct
669 * @vq_init - a callback for queue type-specific initialization function to be
670 * used for initializing videobuf_queues
671 *
672 * Usually called from driver's open() function.
673 */
Marek Szyprowski908a0d72011-01-12 06:50:24 -0300674struct v4l2_m2m_ctx *v4l2_m2m_ctx_init(struct v4l2_m2m_dev *m2m_dev,
675 void *drv_priv,
676 int (*queue_init)(void *priv, struct vb2_queue *src_vq, struct vb2_queue *dst_vq))
Pawel Osciak7f986392010-04-23 05:38:37 -0300677{
678 struct v4l2_m2m_ctx *m2m_ctx;
679 struct v4l2_m2m_queue_ctx *out_q_ctx, *cap_q_ctx;
Marek Szyprowski908a0d72011-01-12 06:50:24 -0300680 int ret;
Pawel Osciak7f986392010-04-23 05:38:37 -0300681
682 m2m_ctx = kzalloc(sizeof *m2m_ctx, GFP_KERNEL);
683 if (!m2m_ctx)
684 return ERR_PTR(-ENOMEM);
685
Marek Szyprowski908a0d72011-01-12 06:50:24 -0300686 m2m_ctx->priv = drv_priv;
Pawel Osciak7f986392010-04-23 05:38:37 -0300687 m2m_ctx->m2m_dev = m2m_dev;
Marek Szyprowski908a0d72011-01-12 06:50:24 -0300688 init_waitqueue_head(&m2m_ctx->finished);
Pawel Osciak7f986392010-04-23 05:38:37 -0300689
Marek Szyprowski908a0d72011-01-12 06:50:24 -0300690 out_q_ctx = &m2m_ctx->out_q_ctx;
691 cap_q_ctx = &m2m_ctx->cap_q_ctx;
Pawel Osciak7f986392010-04-23 05:38:37 -0300692
693 INIT_LIST_HEAD(&out_q_ctx->rdy_queue);
694 INIT_LIST_HEAD(&cap_q_ctx->rdy_queue);
Marek Szyprowski908a0d72011-01-12 06:50:24 -0300695 spin_lock_init(&out_q_ctx->rdy_spinlock);
696 spin_lock_init(&cap_q_ctx->rdy_spinlock);
Pawel Osciak7f986392010-04-23 05:38:37 -0300697
698 INIT_LIST_HEAD(&m2m_ctx->queue);
699
Marek Szyprowski908a0d72011-01-12 06:50:24 -0300700 ret = queue_init(drv_priv, &out_q_ctx->q, &cap_q_ctx->q);
701
702 if (ret)
703 goto err;
Sylwester Nawrocki8e6e8f92013-09-14 18:39:04 -0300704 /*
705 * If both queues use same mutex assign it as the common buffer
706 * queues lock to the m2m context. This lock is used in the
707 * v4l2_m2m_ioctl_* helpers.
708 */
709 if (out_q_ctx->q.lock == cap_q_ctx->q.lock)
710 m2m_ctx->q_lock = out_q_ctx->q.lock;
Pawel Osciak7f986392010-04-23 05:38:37 -0300711
712 return m2m_ctx;
Marek Szyprowski908a0d72011-01-12 06:50:24 -0300713err:
714 kfree(m2m_ctx);
715 return ERR_PTR(ret);
Pawel Osciak7f986392010-04-23 05:38:37 -0300716}
717EXPORT_SYMBOL_GPL(v4l2_m2m_ctx_init);
718
719/**
720 * v4l2_m2m_ctx_release() - release m2m context
721 *
722 * Usually called from driver's release() function.
723 */
724void v4l2_m2m_ctx_release(struct v4l2_m2m_ctx *m2m_ctx)
725{
Shaik Ameer Bashafea564a2013-08-13 02:58:07 -0300726 /* wait until the current context is dequeued from job_queue */
727 v4l2_m2m_cancel_job(m2m_ctx);
Pawel Osciak7f986392010-04-23 05:38:37 -0300728
Marek Szyprowski908a0d72011-01-12 06:50:24 -0300729 vb2_queue_release(&m2m_ctx->cap_q_ctx.q);
730 vb2_queue_release(&m2m_ctx->out_q_ctx.q);
Pawel Osciak7f986392010-04-23 05:38:37 -0300731
732 kfree(m2m_ctx);
733}
734EXPORT_SYMBOL_GPL(v4l2_m2m_ctx_release);
735
736/**
737 * v4l2_m2m_buf_queue() - add a buffer to the proper ready buffers list.
738 *
739 * Call from buf_queue(), videobuf_queue_ops callback.
Pawel Osciak7f986392010-04-23 05:38:37 -0300740 */
Marek Szyprowski908a0d72011-01-12 06:50:24 -0300741void v4l2_m2m_buf_queue(struct v4l2_m2m_ctx *m2m_ctx, struct vb2_buffer *vb)
Pawel Osciak7f986392010-04-23 05:38:37 -0300742{
Marek Szyprowski908a0d72011-01-12 06:50:24 -0300743 struct v4l2_m2m_buffer *b = container_of(vb, struct v4l2_m2m_buffer, vb);
Pawel Osciak7f986392010-04-23 05:38:37 -0300744 struct v4l2_m2m_queue_ctx *q_ctx;
Marek Szyprowski908a0d72011-01-12 06:50:24 -0300745 unsigned long flags;
Pawel Osciak7f986392010-04-23 05:38:37 -0300746
Marek Szyprowski908a0d72011-01-12 06:50:24 -0300747 q_ctx = get_queue_ctx(m2m_ctx, vb->vb2_queue->type);
Pawel Osciak7f986392010-04-23 05:38:37 -0300748 if (!q_ctx)
749 return;
750
Marek Szyprowski908a0d72011-01-12 06:50:24 -0300751 spin_lock_irqsave(&q_ctx->rdy_spinlock, flags);
752 list_add_tail(&b->list, &q_ctx->rdy_queue);
Pawel Osciak7f986392010-04-23 05:38:37 -0300753 q_ctx->num_rdy++;
Marek Szyprowski908a0d72011-01-12 06:50:24 -0300754 spin_unlock_irqrestore(&q_ctx->rdy_spinlock, flags);
Pawel Osciak7f986392010-04-23 05:38:37 -0300755}
756EXPORT_SYMBOL_GPL(v4l2_m2m_buf_queue);
757
Sylwester Nawrocki8e6e8f92013-09-14 18:39:04 -0300758/* Videobuf2 ioctl helpers */
759
760int v4l2_m2m_ioctl_reqbufs(struct file *file, void *priv,
761 struct v4l2_requestbuffers *rb)
762{
763 struct v4l2_fh *fh = file->private_data;
764
765 return v4l2_m2m_reqbufs(file, fh->m2m_ctx, rb);
766}
767EXPORT_SYMBOL_GPL(v4l2_m2m_ioctl_reqbufs);
768
769int v4l2_m2m_ioctl_create_bufs(struct file *file, void *priv,
770 struct v4l2_create_buffers *create)
771{
772 struct v4l2_fh *fh = file->private_data;
773
774 return v4l2_m2m_create_bufs(file, fh->m2m_ctx, create);
775}
776EXPORT_SYMBOL_GPL(v4l2_m2m_ioctl_create_bufs);
777
778int v4l2_m2m_ioctl_querybuf(struct file *file, void *priv,
779 struct v4l2_buffer *buf)
780{
781 struct v4l2_fh *fh = file->private_data;
782
783 return v4l2_m2m_querybuf(file, fh->m2m_ctx, buf);
784}
785EXPORT_SYMBOL_GPL(v4l2_m2m_ioctl_querybuf);
786
787int v4l2_m2m_ioctl_qbuf(struct file *file, void *priv,
788 struct v4l2_buffer *buf)
789{
790 struct v4l2_fh *fh = file->private_data;
791
792 return v4l2_m2m_qbuf(file, fh->m2m_ctx, buf);
793}
794EXPORT_SYMBOL_GPL(v4l2_m2m_ioctl_qbuf);
795
796int v4l2_m2m_ioctl_dqbuf(struct file *file, void *priv,
797 struct v4l2_buffer *buf)
798{
799 struct v4l2_fh *fh = file->private_data;
800
801 return v4l2_m2m_dqbuf(file, fh->m2m_ctx, buf);
802}
803EXPORT_SYMBOL_GPL(v4l2_m2m_ioctl_dqbuf);
804
805int v4l2_m2m_ioctl_expbuf(struct file *file, void *priv,
806 struct v4l2_exportbuffer *eb)
807{
808 struct v4l2_fh *fh = file->private_data;
809
810 return v4l2_m2m_expbuf(file, fh->m2m_ctx, eb);
811}
812EXPORT_SYMBOL_GPL(v4l2_m2m_ioctl_expbuf);
813
814int v4l2_m2m_ioctl_streamon(struct file *file, void *priv,
815 enum v4l2_buf_type type)
816{
817 struct v4l2_fh *fh = file->private_data;
818
819 return v4l2_m2m_streamon(file, fh->m2m_ctx, type);
820}
821EXPORT_SYMBOL_GPL(v4l2_m2m_ioctl_streamon);
822
823int v4l2_m2m_ioctl_streamoff(struct file *file, void *priv,
824 enum v4l2_buf_type type)
825{
826 struct v4l2_fh *fh = file->private_data;
827
828 return v4l2_m2m_streamoff(file, fh->m2m_ctx, type);
829}
830EXPORT_SYMBOL_GPL(v4l2_m2m_ioctl_streamoff);
831
832/*
833 * v4l2_file_operations helpers. It is assumed here same lock is used
834 * for the output and the capture buffer queue.
835 */
836
837int v4l2_m2m_fop_mmap(struct file *file, struct vm_area_struct *vma)
838{
839 struct v4l2_fh *fh = file->private_data;
840 struct v4l2_m2m_ctx *m2m_ctx = fh->m2m_ctx;
841 int ret;
842
843 if (m2m_ctx->q_lock && mutex_lock_interruptible(m2m_ctx->q_lock))
844 return -ERESTARTSYS;
845
846 ret = v4l2_m2m_mmap(file, m2m_ctx, vma);
847
848 if (m2m_ctx->q_lock)
849 mutex_unlock(m2m_ctx->q_lock);
850
851 return ret;
852}
853EXPORT_SYMBOL_GPL(v4l2_m2m_fop_mmap);
854
855unsigned int v4l2_m2m_fop_poll(struct file *file, poll_table *wait)
856{
857 struct v4l2_fh *fh = file->private_data;
858 struct v4l2_m2m_ctx *m2m_ctx = fh->m2m_ctx;
859 unsigned int ret;
860
861 if (m2m_ctx->q_lock)
862 mutex_lock(m2m_ctx->q_lock);
863
864 ret = v4l2_m2m_poll(file, m2m_ctx, wait);
865
866 if (m2m_ctx->q_lock)
867 mutex_unlock(m2m_ctx->q_lock);
868
869 return ret;
870}
871EXPORT_SYMBOL_GPL(v4l2_m2m_fop_poll);
872