blob: 7aed8f22e07544a484cf40e7f1a3cfa07d353bfa [file] [log] [blame]
Pawel Osciake23ccc02010-10-11 10:56:41 -03001/*
2 * videobuf2-core.c - V4L2 driver helper framework
3 *
4 * Copyright (C) 2010 Samsung Electronics
5 *
Pawel Osciak95072082011-03-13 15:23:32 -03006 * Author: Pawel Osciak <pawel@osciak.com>
Pawel Osciake23ccc02010-10-11 10:56:41 -03007 * Marek Szyprowski <m.szyprowski@samsung.com>
8 *
Hans Verkuil3415a892014-04-14 07:33:00 -03009 * The vb2_thread implementation was based on code from videobuf-dvb.c:
10 * (c) 2004 Gerd Knorr <kraxel@bytesex.org> [SUSE Labs]
11 *
Pawel Osciake23ccc02010-10-11 10:56:41 -030012 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation.
15 */
16
17#include <linux/err.h>
18#include <linux/kernel.h>
19#include <linux/module.h>
20#include <linux/mm.h>
21#include <linux/poll.h>
22#include <linux/slab.h>
23#include <linux/sched.h>
Hans Verkuil3415a892014-04-14 07:33:00 -030024#include <linux/freezer.h>
25#include <linux/kthread.h>
Pawel Osciake23ccc02010-10-11 10:56:41 -030026
Hans Verkuil95213ce2011-07-13 04:26:52 -030027#include <media/v4l2-dev.h>
28#include <media/v4l2-fh.h>
29#include <media/v4l2-event.h>
Hans Verkuilebd7c502014-04-11 04:36:57 -030030#include <media/v4l2-common.h>
Pawel Osciake23ccc02010-10-11 10:56:41 -030031#include <media/videobuf2-core.h>
32
33static int debug;
34module_param(debug, int, 0644);
35
Hans Verkuilfd4354c2014-04-07 09:08:47 -030036#define dprintk(level, fmt, arg...) \
37 do { \
38 if (debug >= level) \
Hans Verkuil08213442014-08-08 09:59:02 -030039 pr_info("vb2: %s: " fmt, __func__, ## arg); \
Pawel Osciake23ccc02010-10-11 10:56:41 -030040 } while (0)
41
Hans Verkuilb5b45412014-01-29 11:53:25 -030042#ifdef CONFIG_VIDEO_ADV_DEBUG
43
44/*
Hans Verkuila1d36d82014-03-17 09:54:21 -030045 * If advanced debugging is on, then count how often each op is called
46 * successfully, which can either be per-buffer or per-queue.
Hans Verkuilb5b45412014-01-29 11:53:25 -030047 *
Hans Verkuila1d36d82014-03-17 09:54:21 -030048 * This makes it easy to check that the 'init' and 'cleanup'
Hans Verkuilb5b45412014-01-29 11:53:25 -030049 * (and variations thereof) stay balanced.
50 */
51
Hans Verkuila1d36d82014-03-17 09:54:21 -030052#define log_memop(vb, op) \
53 dprintk(2, "call_memop(%p, %d, %s)%s\n", \
54 (vb)->vb2_queue, (vb)->v4l2_buf.index, #op, \
55 (vb)->vb2_queue->mem_ops->op ? "" : " (nop)")
56
Hans Verkuilb5b45412014-01-29 11:53:25 -030057#define call_memop(vb, op, args...) \
58({ \
59 struct vb2_queue *_q = (vb)->vb2_queue; \
Hans Verkuila1d36d82014-03-17 09:54:21 -030060 int err; \
61 \
62 log_memop(vb, op); \
63 err = _q->mem_ops->op ? _q->mem_ops->op(args) : 0; \
64 if (!err) \
65 (vb)->cnt_mem_ ## op++; \
66 err; \
Hans Verkuilb5b45412014-01-29 11:53:25 -030067})
Hans Verkuila1d36d82014-03-17 09:54:21 -030068
69#define call_ptr_memop(vb, op, args...) \
70({ \
71 struct vb2_queue *_q = (vb)->vb2_queue; \
72 void *ptr; \
73 \
74 log_memop(vb, op); \
75 ptr = _q->mem_ops->op ? _q->mem_ops->op(args) : NULL; \
76 if (!IS_ERR_OR_NULL(ptr)) \
77 (vb)->cnt_mem_ ## op++; \
78 ptr; \
79})
80
81#define call_void_memop(vb, op, args...) \
82({ \
83 struct vb2_queue *_q = (vb)->vb2_queue; \
84 \
85 log_memop(vb, op); \
86 if (_q->mem_ops->op) \
87 _q->mem_ops->op(args); \
88 (vb)->cnt_mem_ ## op++; \
89})
90
91#define log_qop(q, op) \
92 dprintk(2, "call_qop(%p, %s)%s\n", q, #op, \
93 (q)->ops->op ? "" : " (nop)")
Pawel Osciake23ccc02010-10-11 10:56:41 -030094
95#define call_qop(q, op, args...) \
Hans Verkuilb5b45412014-01-29 11:53:25 -030096({ \
Hans Verkuila1d36d82014-03-17 09:54:21 -030097 int err; \
98 \
99 log_qop(q, op); \
100 err = (q)->ops->op ? (q)->ops->op(args) : 0; \
101 if (!err) \
102 (q)->cnt_ ## op++; \
103 err; \
Hans Verkuilb5b45412014-01-29 11:53:25 -0300104})
Hans Verkuila1d36d82014-03-17 09:54:21 -0300105
106#define call_void_qop(q, op, args...) \
107({ \
108 log_qop(q, op); \
109 if ((q)->ops->op) \
110 (q)->ops->op(args); \
111 (q)->cnt_ ## op++; \
112})
113
114#define log_vb_qop(vb, op, args...) \
115 dprintk(2, "call_vb_qop(%p, %d, %s)%s\n", \
116 (vb)->vb2_queue, (vb)->v4l2_buf.index, #op, \
117 (vb)->vb2_queue->ops->op ? "" : " (nop)")
Hans Verkuilb5b45412014-01-29 11:53:25 -0300118
119#define call_vb_qop(vb, op, args...) \
120({ \
Hans Verkuila1d36d82014-03-17 09:54:21 -0300121 int err; \
122 \
123 log_vb_qop(vb, op); \
124 err = (vb)->vb2_queue->ops->op ? \
125 (vb)->vb2_queue->ops->op(args) : 0; \
126 if (!err) \
127 (vb)->cnt_ ## op++; \
128 err; \
Hans Verkuilb5b45412014-01-29 11:53:25 -0300129})
Hans Verkuila1d36d82014-03-17 09:54:21 -0300130
131#define call_void_vb_qop(vb, op, args...) \
132({ \
133 log_vb_qop(vb, op); \
134 if ((vb)->vb2_queue->ops->op) \
135 (vb)->vb2_queue->ops->op(args); \
136 (vb)->cnt_ ## op++; \
137})
Hans Verkuilb5b45412014-01-29 11:53:25 -0300138
139#else
140
141#define call_memop(vb, op, args...) \
Hans Verkuila1d36d82014-03-17 09:54:21 -0300142 ((vb)->vb2_queue->mem_ops->op ? \
143 (vb)->vb2_queue->mem_ops->op(args) : 0)
144
145#define call_ptr_memop(vb, op, args...) \
146 ((vb)->vb2_queue->mem_ops->op ? \
147 (vb)->vb2_queue->mem_ops->op(args) : NULL)
148
149#define call_void_memop(vb, op, args...) \
150 do { \
151 if ((vb)->vb2_queue->mem_ops->op) \
152 (vb)->vb2_queue->mem_ops->op(args); \
153 } while (0)
Hans Verkuilb5b45412014-01-29 11:53:25 -0300154
155#define call_qop(q, op, args...) \
156 ((q)->ops->op ? (q)->ops->op(args) : 0)
Hans Verkuila1d36d82014-03-17 09:54:21 -0300157
158#define call_void_qop(q, op, args...) \
159 do { \
160 if ((q)->ops->op) \
161 (q)->ops->op(args); \
162 } while (0)
Hans Verkuilb5b45412014-01-29 11:53:25 -0300163
164#define call_vb_qop(vb, op, args...) \
165 ((vb)->vb2_queue->ops->op ? (vb)->vb2_queue->ops->op(args) : 0)
Hans Verkuila1d36d82014-03-17 09:54:21 -0300166
167#define call_void_vb_qop(vb, op, args...) \
168 do { \
169 if ((vb)->vb2_queue->ops->op) \
170 (vb)->vb2_queue->ops->op(args); \
171 } while (0)
Hans Verkuilb5b45412014-01-29 11:53:25 -0300172
173#endif
Pawel Osciake23ccc02010-10-11 10:56:41 -0300174
Hans Verkuilf1343282014-02-24 14:44:50 -0300175/* Flags that are set by the vb2 core */
Sakari Ailus1b18e7a2012-10-22 17:10:16 -0300176#define V4L2_BUFFER_MASK_FLAGS (V4L2_BUF_FLAG_MAPPED | V4L2_BUF_FLAG_QUEUED | \
Guennadi Liakhovetski2d864012011-09-28 09:23:02 -0300177 V4L2_BUF_FLAG_DONE | V4L2_BUF_FLAG_ERROR | \
Sakari Ailus1b18e7a2012-10-22 17:10:16 -0300178 V4L2_BUF_FLAG_PREPARED | \
179 V4L2_BUF_FLAG_TIMESTAMP_MASK)
Hans Verkuilf1343282014-02-24 14:44:50 -0300180/* Output buffer flags that should be passed on to the driver */
181#define V4L2_BUFFER_OUT_FLAGS (V4L2_BUF_FLAG_PFRAME | V4L2_BUF_FLAG_BFRAME | \
182 V4L2_BUF_FLAG_KEYFRAME | V4L2_BUF_FLAG_TIMECODE)
Marek Szyprowskiea42c8e2011-04-12 10:14:13 -0300183
Hans Verkuilfb64dca2014-02-28 12:49:18 -0300184static void __vb2_queue_cancel(struct vb2_queue *q);
185
Pawel Osciake23ccc02010-10-11 10:56:41 -0300186/**
187 * __vb2_buf_mem_alloc() - allocate video memory for the given buffer
188 */
Marek Szyprowskic1426bc2011-08-24 06:36:26 -0300189static int __vb2_buf_mem_alloc(struct vb2_buffer *vb)
Pawel Osciake23ccc02010-10-11 10:56:41 -0300190{
191 struct vb2_queue *q = vb->vb2_queue;
Hans Verkuild935c572014-11-18 09:50:59 -0300192 enum dma_data_direction dma_dir =
193 V4L2_TYPE_IS_OUTPUT(q->type) ? DMA_TO_DEVICE : DMA_FROM_DEVICE;
Pawel Osciake23ccc02010-10-11 10:56:41 -0300194 void *mem_priv;
195 int plane;
196
Mauro Carvalho Chehab7f841452013-04-19 07:18:01 -0300197 /*
198 * Allocate memory for all planes in this buffer
199 * NOTE: mmapped areas should be page aligned
200 */
Pawel Osciake23ccc02010-10-11 10:56:41 -0300201 for (plane = 0; plane < vb->num_planes; ++plane) {
Mauro Carvalho Chehab7f841452013-04-19 07:18:01 -0300202 unsigned long size = PAGE_ALIGN(q->plane_sizes[plane]);
203
Hans Verkuila1d36d82014-03-17 09:54:21 -0300204 mem_priv = call_ptr_memop(vb, alloc, q->alloc_ctx[plane],
Hans Verkuild935c572014-11-18 09:50:59 -0300205 size, dma_dir, q->gfp_flags);
Guennadi Liakhovetski62a79432011-03-22 09:24:58 -0300206 if (IS_ERR_OR_NULL(mem_priv))
Pawel Osciake23ccc02010-10-11 10:56:41 -0300207 goto free;
208
209 /* Associate allocator private data with this plane */
210 vb->planes[plane].mem_priv = mem_priv;
Marek Szyprowskic1426bc2011-08-24 06:36:26 -0300211 vb->v4l2_planes[plane].length = q->plane_sizes[plane];
Pawel Osciake23ccc02010-10-11 10:56:41 -0300212 }
213
214 return 0;
215free:
216 /* Free already allocated memory if one of the allocations failed */
Marek Szyprowskia00d0262011-12-15 05:53:06 -0300217 for (; plane > 0; --plane) {
Hans Verkuila1d36d82014-03-17 09:54:21 -0300218 call_void_memop(vb, put, vb->planes[plane - 1].mem_priv);
Marek Szyprowskia00d0262011-12-15 05:53:06 -0300219 vb->planes[plane - 1].mem_priv = NULL;
220 }
Pawel Osciake23ccc02010-10-11 10:56:41 -0300221
222 return -ENOMEM;
223}
224
225/**
226 * __vb2_buf_mem_free() - free memory of the given buffer
227 */
228static void __vb2_buf_mem_free(struct vb2_buffer *vb)
229{
Pawel Osciake23ccc02010-10-11 10:56:41 -0300230 unsigned int plane;
231
232 for (plane = 0; plane < vb->num_planes; ++plane) {
Hans Verkuila1d36d82014-03-17 09:54:21 -0300233 call_void_memop(vb, put, vb->planes[plane].mem_priv);
Pawel Osciake23ccc02010-10-11 10:56:41 -0300234 vb->planes[plane].mem_priv = NULL;
Hans Verkuil30500402014-04-07 09:13:22 -0300235 dprintk(3, "freed plane %d of buffer %d\n", plane,
Marek Szyprowskia00d0262011-12-15 05:53:06 -0300236 vb->v4l2_buf.index);
Pawel Osciake23ccc02010-10-11 10:56:41 -0300237 }
238}
239
240/**
241 * __vb2_buf_userptr_put() - release userspace memory associated with
242 * a USERPTR buffer
243 */
244static void __vb2_buf_userptr_put(struct vb2_buffer *vb)
245{
Pawel Osciake23ccc02010-10-11 10:56:41 -0300246 unsigned int plane;
247
248 for (plane = 0; plane < vb->num_planes; ++plane) {
Marek Szyprowskia00d0262011-12-15 05:53:06 -0300249 if (vb->planes[plane].mem_priv)
Hans Verkuila1d36d82014-03-17 09:54:21 -0300250 call_void_memop(vb, put_userptr, vb->planes[plane].mem_priv);
Marek Szyprowskia00d0262011-12-15 05:53:06 -0300251 vb->planes[plane].mem_priv = NULL;
Pawel Osciake23ccc02010-10-11 10:56:41 -0300252 }
253}
254
255/**
Sumit Semwalc5384042012-06-14 10:37:37 -0300256 * __vb2_plane_dmabuf_put() - release memory associated with
257 * a DMABUF shared plane
258 */
Hans Verkuilb5b45412014-01-29 11:53:25 -0300259static void __vb2_plane_dmabuf_put(struct vb2_buffer *vb, struct vb2_plane *p)
Sumit Semwalc5384042012-06-14 10:37:37 -0300260{
261 if (!p->mem_priv)
262 return;
263
264 if (p->dbuf_mapped)
Hans Verkuila1d36d82014-03-17 09:54:21 -0300265 call_void_memop(vb, unmap_dmabuf, p->mem_priv);
Sumit Semwalc5384042012-06-14 10:37:37 -0300266
Hans Verkuila1d36d82014-03-17 09:54:21 -0300267 call_void_memop(vb, detach_dmabuf, p->mem_priv);
Sumit Semwalc5384042012-06-14 10:37:37 -0300268 dma_buf_put(p->dbuf);
269 memset(p, 0, sizeof(*p));
270}
271
272/**
273 * __vb2_buf_dmabuf_put() - release memory associated with
274 * a DMABUF shared buffer
275 */
276static void __vb2_buf_dmabuf_put(struct vb2_buffer *vb)
277{
Sumit Semwalc5384042012-06-14 10:37:37 -0300278 unsigned int plane;
279
280 for (plane = 0; plane < vb->num_planes; ++plane)
Hans Verkuilb5b45412014-01-29 11:53:25 -0300281 __vb2_plane_dmabuf_put(vb, &vb->planes[plane]);
Sumit Semwalc5384042012-06-14 10:37:37 -0300282}
283
284/**
Hans Verkuila5e3d742013-12-04 15:14:05 +0100285 * __setup_lengths() - setup initial lengths for every plane in
286 * every buffer on the queue
287 */
288static void __setup_lengths(struct vb2_queue *q, unsigned int n)
289{
290 unsigned int buffer, plane;
291 struct vb2_buffer *vb;
292
293 for (buffer = q->num_buffers; buffer < q->num_buffers + n; ++buffer) {
294 vb = q->bufs[buffer];
295 if (!vb)
296 continue;
297
298 for (plane = 0; plane < vb->num_planes; ++plane)
299 vb->v4l2_planes[plane].length = q->plane_sizes[plane];
300 }
301}
302
303/**
Pawel Osciake23ccc02010-10-11 10:56:41 -0300304 * __setup_offsets() - setup unique offsets ("cookies") for every plane in
305 * every buffer on the queue
306 */
Guennadi Liakhovetski2d864012011-09-28 09:23:02 -0300307static void __setup_offsets(struct vb2_queue *q, unsigned int n)
Pawel Osciake23ccc02010-10-11 10:56:41 -0300308{
309 unsigned int buffer, plane;
310 struct vb2_buffer *vb;
Guennadi Liakhovetski2d864012011-09-28 09:23:02 -0300311 unsigned long off;
Pawel Osciake23ccc02010-10-11 10:56:41 -0300312
Guennadi Liakhovetski2d864012011-09-28 09:23:02 -0300313 if (q->num_buffers) {
314 struct v4l2_plane *p;
315 vb = q->bufs[q->num_buffers - 1];
316 p = &vb->v4l2_planes[vb->num_planes - 1];
317 off = PAGE_ALIGN(p->m.mem_offset + p->length);
318 } else {
319 off = 0;
320 }
321
322 for (buffer = q->num_buffers; buffer < q->num_buffers + n; ++buffer) {
Pawel Osciake23ccc02010-10-11 10:56:41 -0300323 vb = q->bufs[buffer];
324 if (!vb)
325 continue;
326
327 for (plane = 0; plane < vb->num_planes; ++plane) {
328 vb->v4l2_planes[plane].m.mem_offset = off;
329
Hans Verkuil30500402014-04-07 09:13:22 -0300330 dprintk(3, "buffer %d, plane %d offset 0x%08lx\n",
Pawel Osciake23ccc02010-10-11 10:56:41 -0300331 buffer, plane, off);
332
333 off += vb->v4l2_planes[plane].length;
334 off = PAGE_ALIGN(off);
335 }
336 }
337}
338
339/**
340 * __vb2_queue_alloc() - allocate videobuf buffer structures and (for MMAP type)
341 * video buffer memory for all buffers/planes on the queue and initializes the
342 * queue
343 *
344 * Returns the number of buffers successfully allocated.
345 */
346static int __vb2_queue_alloc(struct vb2_queue *q, enum v4l2_memory memory,
Marek Szyprowskic1426bc2011-08-24 06:36:26 -0300347 unsigned int num_buffers, unsigned int num_planes)
Pawel Osciake23ccc02010-10-11 10:56:41 -0300348{
349 unsigned int buffer;
350 struct vb2_buffer *vb;
351 int ret;
352
353 for (buffer = 0; buffer < num_buffers; ++buffer) {
354 /* Allocate videobuf buffer structures */
355 vb = kzalloc(q->buf_struct_size, GFP_KERNEL);
356 if (!vb) {
Hans Verkuil30500402014-04-07 09:13:22 -0300357 dprintk(1, "memory alloc for buffer struct failed\n");
Pawel Osciake23ccc02010-10-11 10:56:41 -0300358 break;
359 }
360
361 /* Length stores number of planes for multiplanar buffers */
362 if (V4L2_TYPE_IS_MULTIPLANAR(q->type))
363 vb->v4l2_buf.length = num_planes;
364
365 vb->state = VB2_BUF_STATE_DEQUEUED;
366 vb->vb2_queue = q;
367 vb->num_planes = num_planes;
Guennadi Liakhovetski2d864012011-09-28 09:23:02 -0300368 vb->v4l2_buf.index = q->num_buffers + buffer;
Pawel Osciake23ccc02010-10-11 10:56:41 -0300369 vb->v4l2_buf.type = q->type;
370 vb->v4l2_buf.memory = memory;
371
372 /* Allocate video buffer memory for the MMAP type */
373 if (memory == V4L2_MEMORY_MMAP) {
Marek Szyprowskic1426bc2011-08-24 06:36:26 -0300374 ret = __vb2_buf_mem_alloc(vb);
Pawel Osciake23ccc02010-10-11 10:56:41 -0300375 if (ret) {
Hans Verkuil30500402014-04-07 09:13:22 -0300376 dprintk(1, "failed allocating memory for "
Pawel Osciake23ccc02010-10-11 10:56:41 -0300377 "buffer %d\n", buffer);
378 kfree(vb);
379 break;
380 }
381 /*
382 * Call the driver-provided buffer initialization
383 * callback, if given. An error in initialization
384 * results in queue setup failure.
385 */
Hans Verkuilb5b45412014-01-29 11:53:25 -0300386 ret = call_vb_qop(vb, buf_init, vb);
Pawel Osciake23ccc02010-10-11 10:56:41 -0300387 if (ret) {
Hans Verkuil30500402014-04-07 09:13:22 -0300388 dprintk(1, "buffer %d %p initialization"
Pawel Osciake23ccc02010-10-11 10:56:41 -0300389 " failed\n", buffer, vb);
390 __vb2_buf_mem_free(vb);
391 kfree(vb);
392 break;
393 }
394 }
395
Guennadi Liakhovetski2d864012011-09-28 09:23:02 -0300396 q->bufs[q->num_buffers + buffer] = vb;
Pawel Osciake23ccc02010-10-11 10:56:41 -0300397 }
398
Hans Verkuila5e3d742013-12-04 15:14:05 +0100399 __setup_lengths(q, buffer);
Philipp Zabeldc775232013-09-19 04:37:29 -0300400 if (memory == V4L2_MEMORY_MMAP)
401 __setup_offsets(q, buffer);
Pawel Osciake23ccc02010-10-11 10:56:41 -0300402
Hans Verkuil30500402014-04-07 09:13:22 -0300403 dprintk(1, "allocated %d buffers, %d plane(s) each\n",
Guennadi Liakhovetski2d864012011-09-28 09:23:02 -0300404 buffer, num_planes);
Pawel Osciake23ccc02010-10-11 10:56:41 -0300405
406 return buffer;
407}
408
409/**
410 * __vb2_free_mem() - release all video buffer memory for a given queue
411 */
Guennadi Liakhovetski2d864012011-09-28 09:23:02 -0300412static void __vb2_free_mem(struct vb2_queue *q, unsigned int buffers)
Pawel Osciake23ccc02010-10-11 10:56:41 -0300413{
414 unsigned int buffer;
415 struct vb2_buffer *vb;
416
Guennadi Liakhovetski2d864012011-09-28 09:23:02 -0300417 for (buffer = q->num_buffers - buffers; buffer < q->num_buffers;
418 ++buffer) {
Pawel Osciake23ccc02010-10-11 10:56:41 -0300419 vb = q->bufs[buffer];
420 if (!vb)
421 continue;
422
423 /* Free MMAP buffers or release USERPTR buffers */
424 if (q->memory == V4L2_MEMORY_MMAP)
425 __vb2_buf_mem_free(vb);
Sumit Semwalc5384042012-06-14 10:37:37 -0300426 else if (q->memory == V4L2_MEMORY_DMABUF)
427 __vb2_buf_dmabuf_put(vb);
Pawel Osciake23ccc02010-10-11 10:56:41 -0300428 else
429 __vb2_buf_userptr_put(vb);
430 }
431}
432
433/**
Guennadi Liakhovetski2d864012011-09-28 09:23:02 -0300434 * __vb2_queue_free() - free buffers at the end of the queue - video memory and
435 * related information, if no buffers are left return the queue to an
436 * uninitialized state. Might be called even if the queue has already been freed.
Pawel Osciake23ccc02010-10-11 10:56:41 -0300437 */
Hans Verkuil63faabf2013-12-13 13:13:40 -0300438static int __vb2_queue_free(struct vb2_queue *q, unsigned int buffers)
Pawel Osciake23ccc02010-10-11 10:56:41 -0300439{
440 unsigned int buffer;
441
Hans Verkuil63faabf2013-12-13 13:13:40 -0300442 /*
443 * Sanity check: when preparing a buffer the queue lock is released for
444 * a short while (see __buf_prepare for the details), which would allow
445 * a race with a reqbufs which can call this function. Removing the
446 * buffers from underneath __buf_prepare is obviously a bad idea, so we
447 * check if any of the buffers is in the state PREPARING, and if so we
448 * just return -EAGAIN.
449 */
450 for (buffer = q->num_buffers - buffers; buffer < q->num_buffers;
451 ++buffer) {
452 if (q->bufs[buffer] == NULL)
453 continue;
454 if (q->bufs[buffer]->state == VB2_BUF_STATE_PREPARING) {
Hans Verkuilfd4354c2014-04-07 09:08:47 -0300455 dprintk(1, "preparing buffers, cannot free\n");
Hans Verkuil63faabf2013-12-13 13:13:40 -0300456 return -EAGAIN;
457 }
458 }
459
Pawel Osciake23ccc02010-10-11 10:56:41 -0300460 /* Call driver-provided cleanup function for each buffer, if provided */
Hans Verkuilb5b45412014-01-29 11:53:25 -0300461 for (buffer = q->num_buffers - buffers; buffer < q->num_buffers;
462 ++buffer) {
Hans Verkuil256f3162014-01-29 13:36:53 -0300463 struct vb2_buffer *vb = q->bufs[buffer];
464
465 if (vb && vb->planes[0].mem_priv)
Hans Verkuila1d36d82014-03-17 09:54:21 -0300466 call_void_vb_qop(vb, buf_cleanup, vb);
Pawel Osciake23ccc02010-10-11 10:56:41 -0300467 }
468
469 /* Release video buffer memory */
Guennadi Liakhovetski2d864012011-09-28 09:23:02 -0300470 __vb2_free_mem(q, buffers);
Pawel Osciake23ccc02010-10-11 10:56:41 -0300471
Hans Verkuilb5b45412014-01-29 11:53:25 -0300472#ifdef CONFIG_VIDEO_ADV_DEBUG
473 /*
474 * Check that all the calls were balances during the life-time of this
475 * queue. If not (or if the debug level is 1 or up), then dump the
476 * counters to the kernel log.
477 */
478 if (q->num_buffers) {
479 bool unbalanced = q->cnt_start_streaming != q->cnt_stop_streaming ||
480 q->cnt_wait_prepare != q->cnt_wait_finish;
481
482 if (unbalanced || debug) {
483 pr_info("vb2: counters for queue %p:%s\n", q,
484 unbalanced ? " UNBALANCED!" : "");
485 pr_info("vb2: setup: %u start_streaming: %u stop_streaming: %u\n",
486 q->cnt_queue_setup, q->cnt_start_streaming,
487 q->cnt_stop_streaming);
488 pr_info("vb2: wait_prepare: %u wait_finish: %u\n",
489 q->cnt_wait_prepare, q->cnt_wait_finish);
490 }
491 q->cnt_queue_setup = 0;
492 q->cnt_wait_prepare = 0;
493 q->cnt_wait_finish = 0;
494 q->cnt_start_streaming = 0;
495 q->cnt_stop_streaming = 0;
496 }
497 for (buffer = 0; buffer < q->num_buffers; ++buffer) {
498 struct vb2_buffer *vb = q->bufs[buffer];
499 bool unbalanced = vb->cnt_mem_alloc != vb->cnt_mem_put ||
500 vb->cnt_mem_prepare != vb->cnt_mem_finish ||
501 vb->cnt_mem_get_userptr != vb->cnt_mem_put_userptr ||
502 vb->cnt_mem_attach_dmabuf != vb->cnt_mem_detach_dmabuf ||
503 vb->cnt_mem_map_dmabuf != vb->cnt_mem_unmap_dmabuf ||
504 vb->cnt_buf_queue != vb->cnt_buf_done ||
505 vb->cnt_buf_prepare != vb->cnt_buf_finish ||
506 vb->cnt_buf_init != vb->cnt_buf_cleanup;
507
508 if (unbalanced || debug) {
509 pr_info("vb2: counters for queue %p, buffer %d:%s\n",
510 q, buffer, unbalanced ? " UNBALANCED!" : "");
511 pr_info("vb2: buf_init: %u buf_cleanup: %u buf_prepare: %u buf_finish: %u\n",
512 vb->cnt_buf_init, vb->cnt_buf_cleanup,
513 vb->cnt_buf_prepare, vb->cnt_buf_finish);
514 pr_info("vb2: buf_queue: %u buf_done: %u\n",
515 vb->cnt_buf_queue, vb->cnt_buf_done);
516 pr_info("vb2: alloc: %u put: %u prepare: %u finish: %u mmap: %u\n",
517 vb->cnt_mem_alloc, vb->cnt_mem_put,
518 vb->cnt_mem_prepare, vb->cnt_mem_finish,
519 vb->cnt_mem_mmap);
520 pr_info("vb2: get_userptr: %u put_userptr: %u\n",
521 vb->cnt_mem_get_userptr, vb->cnt_mem_put_userptr);
522 pr_info("vb2: attach_dmabuf: %u detach_dmabuf: %u map_dmabuf: %u unmap_dmabuf: %u\n",
523 vb->cnt_mem_attach_dmabuf, vb->cnt_mem_detach_dmabuf,
524 vb->cnt_mem_map_dmabuf, vb->cnt_mem_unmap_dmabuf);
525 pr_info("vb2: get_dmabuf: %u num_users: %u vaddr: %u cookie: %u\n",
526 vb->cnt_mem_get_dmabuf,
527 vb->cnt_mem_num_users,
528 vb->cnt_mem_vaddr,
529 vb->cnt_mem_cookie);
530 }
531 }
532#endif
533
Pawel Osciake23ccc02010-10-11 10:56:41 -0300534 /* Free videobuf buffers */
Guennadi Liakhovetski2d864012011-09-28 09:23:02 -0300535 for (buffer = q->num_buffers - buffers; buffer < q->num_buffers;
536 ++buffer) {
Pawel Osciake23ccc02010-10-11 10:56:41 -0300537 kfree(q->bufs[buffer]);
538 q->bufs[buffer] = NULL;
539 }
540
Guennadi Liakhovetski2d864012011-09-28 09:23:02 -0300541 q->num_buffers -= buffers;
Hans Verkuila7afcac2014-02-24 13:41:20 -0300542 if (!q->num_buffers) {
Guennadi Liakhovetski2d864012011-09-28 09:23:02 -0300543 q->memory = 0;
Hans Verkuila7afcac2014-02-24 13:41:20 -0300544 INIT_LIST_HEAD(&q->queued_list);
545 }
Hans Verkuil63faabf2013-12-13 13:13:40 -0300546 return 0;
Pawel Osciake23ccc02010-10-11 10:56:41 -0300547}
548
549/**
550 * __verify_planes_array() - verify that the planes array passed in struct
551 * v4l2_buffer from userspace can be safely used
552 */
Guennadi Liakhovetski2d864012011-09-28 09:23:02 -0300553static int __verify_planes_array(struct vb2_buffer *vb, const struct v4l2_buffer *b)
Pawel Osciake23ccc02010-10-11 10:56:41 -0300554{
Hans Verkuil32a77262012-09-28 06:12:53 -0300555 if (!V4L2_TYPE_IS_MULTIPLANAR(b->type))
556 return 0;
557
Pawel Osciake23ccc02010-10-11 10:56:41 -0300558 /* Is memory for copying plane information present? */
559 if (NULL == b->m.planes) {
Hans Verkuil30500402014-04-07 09:13:22 -0300560 dprintk(1, "multi-planar buffer passed but "
Pawel Osciake23ccc02010-10-11 10:56:41 -0300561 "planes array not provided\n");
562 return -EINVAL;
563 }
564
565 if (b->length < vb->num_planes || b->length > VIDEO_MAX_PLANES) {
Hans Verkuil30500402014-04-07 09:13:22 -0300566 dprintk(1, "incorrect planes array length, "
Pawel Osciake23ccc02010-10-11 10:56:41 -0300567 "expected %d, got %d\n", vb->num_planes, b->length);
568 return -EINVAL;
569 }
570
571 return 0;
572}
573
574/**
Laurent Pinchart8023ed02012-07-10 10:41:40 -0300575 * __verify_length() - Verify that the bytesused value for each plane fits in
576 * the plane length and that the data offset doesn't exceed the bytesused value.
577 */
578static int __verify_length(struct vb2_buffer *vb, const struct v4l2_buffer *b)
579{
580 unsigned int length;
Hans Verkuil8a75ffb2014-07-17 06:53:08 -0300581 unsigned int bytesused;
Laurent Pinchart8023ed02012-07-10 10:41:40 -0300582 unsigned int plane;
583
584 if (!V4L2_TYPE_IS_OUTPUT(b->type))
585 return 0;
586
587 if (V4L2_TYPE_IS_MULTIPLANAR(b->type)) {
588 for (plane = 0; plane < vb->num_planes; ++plane) {
Hans Verkuil8a75ffb2014-07-17 06:53:08 -0300589 length = (b->memory == V4L2_MEMORY_USERPTR ||
590 b->memory == V4L2_MEMORY_DMABUF)
Laurent Pinchart8023ed02012-07-10 10:41:40 -0300591 ? b->m.planes[plane].length
592 : vb->v4l2_planes[plane].length;
Hans Verkuil8a75ffb2014-07-17 06:53:08 -0300593 bytesused = b->m.planes[plane].bytesused
594 ? b->m.planes[plane].bytesused : length;
Laurent Pinchart8023ed02012-07-10 10:41:40 -0300595
596 if (b->m.planes[plane].bytesused > length)
597 return -EINVAL;
Sylwester Nawrocki3c5c23c2013-08-26 11:47:09 -0300598
599 if (b->m.planes[plane].data_offset > 0 &&
Hans Verkuil8a75ffb2014-07-17 06:53:08 -0300600 b->m.planes[plane].data_offset >= bytesused)
Laurent Pinchart8023ed02012-07-10 10:41:40 -0300601 return -EINVAL;
602 }
603 } else {
604 length = (b->memory == V4L2_MEMORY_USERPTR)
605 ? b->length : vb->v4l2_planes[0].length;
Hans Verkuil8a75ffb2014-07-17 06:53:08 -0300606 bytesused = b->bytesused ? b->bytesused : length;
Laurent Pinchart8023ed02012-07-10 10:41:40 -0300607
608 if (b->bytesused > length)
609 return -EINVAL;
610 }
611
612 return 0;
613}
614
615/**
Marek Szyprowski25a27d92011-08-24 06:49:35 -0300616 * __buffer_in_use() - return true if the buffer is in use and
617 * the queue cannot be freed (by the means of REQBUFS(0)) call
618 */
619static bool __buffer_in_use(struct vb2_queue *q, struct vb2_buffer *vb)
620{
621 unsigned int plane;
622 for (plane = 0; plane < vb->num_planes; ++plane) {
Marek Szyprowski2c2dd6ac2011-10-12 13:09:53 -0300623 void *mem_priv = vb->planes[plane].mem_priv;
Marek Szyprowski25a27d92011-08-24 06:49:35 -0300624 /*
625 * If num_users() has not been provided, call_memop
626 * will return 0, apparently nobody cares about this
627 * case anyway. If num_users() returns more than 1,
628 * we are not the only user of the plane's memory.
629 */
Hans Verkuilb5b45412014-01-29 11:53:25 -0300630 if (mem_priv && call_memop(vb, num_users, mem_priv) > 1)
Marek Szyprowski25a27d92011-08-24 06:49:35 -0300631 return true;
632 }
633 return false;
634}
635
636/**
637 * __buffers_in_use() - return true if any buffers on the queue are in use and
638 * the queue cannot be freed (by the means of REQBUFS(0)) call
639 */
640static bool __buffers_in_use(struct vb2_queue *q)
641{
642 unsigned int buffer;
643 for (buffer = 0; buffer < q->num_buffers; ++buffer) {
644 if (__buffer_in_use(q, q->bufs[buffer]))
645 return true;
646 }
647 return false;
648}
649
650/**
Pawel Osciake23ccc02010-10-11 10:56:41 -0300651 * __fill_v4l2_buffer() - fill in a struct v4l2_buffer with information to be
652 * returned to userspace
653 */
Hans Verkuil32a77262012-09-28 06:12:53 -0300654static void __fill_v4l2_buffer(struct vb2_buffer *vb, struct v4l2_buffer *b)
Pawel Osciake23ccc02010-10-11 10:56:41 -0300655{
656 struct vb2_queue *q = vb->vb2_queue;
Pawel Osciake23ccc02010-10-11 10:56:41 -0300657
Sakari Ailus2b719d72012-05-02 09:40:03 -0300658 /* Copy back data such as timestamp, flags, etc. */
Pawel Osciake23ccc02010-10-11 10:56:41 -0300659 memcpy(b, &vb->v4l2_buf, offsetof(struct v4l2_buffer, m));
Sakari Ailus2b719d72012-05-02 09:40:03 -0300660 b->reserved2 = vb->v4l2_buf.reserved2;
Pawel Osciake23ccc02010-10-11 10:56:41 -0300661 b->reserved = vb->v4l2_buf.reserved;
662
663 if (V4L2_TYPE_IS_MULTIPLANAR(q->type)) {
Pawel Osciake23ccc02010-10-11 10:56:41 -0300664 /*
665 * Fill in plane-related data if userspace provided an array
Hans Verkuil32a77262012-09-28 06:12:53 -0300666 * for it. The caller has already verified memory and size.
Pawel Osciake23ccc02010-10-11 10:56:41 -0300667 */
Hans Verkuil3c0b6062012-09-28 06:24:18 -0300668 b->length = vb->num_planes;
Pawel Osciake23ccc02010-10-11 10:56:41 -0300669 memcpy(b->m.planes, vb->v4l2_planes,
670 b->length * sizeof(struct v4l2_plane));
671 } else {
672 /*
673 * We use length and offset in v4l2_planes array even for
674 * single-planar buffers, but userspace does not.
675 */
676 b->length = vb->v4l2_planes[0].length;
677 b->bytesused = vb->v4l2_planes[0].bytesused;
678 if (q->memory == V4L2_MEMORY_MMAP)
679 b->m.offset = vb->v4l2_planes[0].m.mem_offset;
680 else if (q->memory == V4L2_MEMORY_USERPTR)
681 b->m.userptr = vb->v4l2_planes[0].m.userptr;
Sumit Semwalc5384042012-06-14 10:37:37 -0300682 else if (q->memory == V4L2_MEMORY_DMABUF)
683 b->m.fd = vb->v4l2_planes[0].m.fd;
Pawel Osciake23ccc02010-10-11 10:56:41 -0300684 }
685
Marek Szyprowskiea42c8e2011-04-12 10:14:13 -0300686 /*
687 * Clear any buffer state related flags.
688 */
Sakari Ailus1b18e7a2012-10-22 17:10:16 -0300689 b->flags &= ~V4L2_BUFFER_MASK_FLAGS;
Sakari Ailus7ce6fd82014-02-25 19:08:52 -0300690 b->flags |= q->timestamp_flags & V4L2_BUF_FLAG_TIMESTAMP_MASK;
691 if ((q->timestamp_flags & V4L2_BUF_FLAG_TIMESTAMP_MASK) !=
692 V4L2_BUF_FLAG_TIMESTAMP_COPY) {
693 /*
694 * For non-COPY timestamps, drop timestamp source bits
695 * and obtain the timestamp source from the queue.
696 */
697 b->flags &= ~V4L2_BUF_FLAG_TSTAMP_SRC_MASK;
698 b->flags |= q->timestamp_flags & V4L2_BUF_FLAG_TSTAMP_SRC_MASK;
699 }
Pawel Osciake23ccc02010-10-11 10:56:41 -0300700
701 switch (vb->state) {
702 case VB2_BUF_STATE_QUEUED:
703 case VB2_BUF_STATE_ACTIVE:
704 b->flags |= V4L2_BUF_FLAG_QUEUED;
705 break;
706 case VB2_BUF_STATE_ERROR:
707 b->flags |= V4L2_BUF_FLAG_ERROR;
708 /* fall through */
709 case VB2_BUF_STATE_DONE:
710 b->flags |= V4L2_BUF_FLAG_DONE;
711 break;
Guennadi Liakhovetskiebc087d2011-08-31 06:51:10 -0300712 case VB2_BUF_STATE_PREPARED:
Guennadi Liakhovetski2d864012011-09-28 09:23:02 -0300713 b->flags |= V4L2_BUF_FLAG_PREPARED;
714 break;
Hans Verkuilb18a8ff2013-12-13 13:13:38 -0300715 case VB2_BUF_STATE_PREPARING:
Guennadi Liakhovetski2d864012011-09-28 09:23:02 -0300716 case VB2_BUF_STATE_DEQUEUED:
Pawel Osciake23ccc02010-10-11 10:56:41 -0300717 /* nothing */
718 break;
719 }
720
Marek Szyprowski25a27d92011-08-24 06:49:35 -0300721 if (__buffer_in_use(q, vb))
Pawel Osciake23ccc02010-10-11 10:56:41 -0300722 b->flags |= V4L2_BUF_FLAG_MAPPED;
Pawel Osciake23ccc02010-10-11 10:56:41 -0300723}
724
725/**
726 * vb2_querybuf() - query video buffer information
727 * @q: videobuf queue
728 * @b: buffer struct passed from userspace to vidioc_querybuf handler
729 * in driver
730 *
731 * Should be called from vidioc_querybuf ioctl handler in driver.
732 * This function will verify the passed v4l2_buffer structure and fill the
733 * relevant information for the userspace.
734 *
735 * The return values from this function are intended to be directly returned
736 * from vidioc_querybuf handler in driver.
737 */
738int vb2_querybuf(struct vb2_queue *q, struct v4l2_buffer *b)
739{
740 struct vb2_buffer *vb;
Hans Verkuil32a77262012-09-28 06:12:53 -0300741 int ret;
Pawel Osciake23ccc02010-10-11 10:56:41 -0300742
743 if (b->type != q->type) {
Hans Verkuilfd4354c2014-04-07 09:08:47 -0300744 dprintk(1, "wrong buffer type\n");
Pawel Osciake23ccc02010-10-11 10:56:41 -0300745 return -EINVAL;
746 }
747
748 if (b->index >= q->num_buffers) {
Hans Verkuilfd4354c2014-04-07 09:08:47 -0300749 dprintk(1, "buffer index out of range\n");
Pawel Osciake23ccc02010-10-11 10:56:41 -0300750 return -EINVAL;
751 }
752 vb = q->bufs[b->index];
Hans Verkuil32a77262012-09-28 06:12:53 -0300753 ret = __verify_planes_array(vb, b);
754 if (!ret)
755 __fill_v4l2_buffer(vb, b);
756 return ret;
Pawel Osciake23ccc02010-10-11 10:56:41 -0300757}
758EXPORT_SYMBOL(vb2_querybuf);
759
760/**
761 * __verify_userptr_ops() - verify that all memory operations required for
762 * USERPTR queue type have been provided
763 */
764static int __verify_userptr_ops(struct vb2_queue *q)
765{
766 if (!(q->io_modes & VB2_USERPTR) || !q->mem_ops->get_userptr ||
767 !q->mem_ops->put_userptr)
768 return -EINVAL;
769
770 return 0;
771}
772
773/**
774 * __verify_mmap_ops() - verify that all memory operations required for
775 * MMAP queue type have been provided
776 */
777static int __verify_mmap_ops(struct vb2_queue *q)
778{
779 if (!(q->io_modes & VB2_MMAP) || !q->mem_ops->alloc ||
780 !q->mem_ops->put || !q->mem_ops->mmap)
781 return -EINVAL;
782
783 return 0;
784}
785
786/**
Sumit Semwalc5384042012-06-14 10:37:37 -0300787 * __verify_dmabuf_ops() - verify that all memory operations required for
788 * DMABUF queue type have been provided
789 */
790static int __verify_dmabuf_ops(struct vb2_queue *q)
791{
792 if (!(q->io_modes & VB2_DMABUF) || !q->mem_ops->attach_dmabuf ||
793 !q->mem_ops->detach_dmabuf || !q->mem_ops->map_dmabuf ||
794 !q->mem_ops->unmap_dmabuf)
795 return -EINVAL;
796
797 return 0;
798}
799
800/**
Hans Verkuil37d9ed92012-06-27 17:10:30 -0300801 * __verify_memory_type() - Check whether the memory type and buffer type
802 * passed to a buffer operation are compatible with the queue.
803 */
804static int __verify_memory_type(struct vb2_queue *q,
805 enum v4l2_memory memory, enum v4l2_buf_type type)
806{
Sumit Semwalc5384042012-06-14 10:37:37 -0300807 if (memory != V4L2_MEMORY_MMAP && memory != V4L2_MEMORY_USERPTR &&
808 memory != V4L2_MEMORY_DMABUF) {
Hans Verkuilfd4354c2014-04-07 09:08:47 -0300809 dprintk(1, "unsupported memory type\n");
Hans Verkuil37d9ed92012-06-27 17:10:30 -0300810 return -EINVAL;
811 }
812
813 if (type != q->type) {
Hans Verkuilfd4354c2014-04-07 09:08:47 -0300814 dprintk(1, "requested type is incorrect\n");
Hans Verkuil37d9ed92012-06-27 17:10:30 -0300815 return -EINVAL;
816 }
817
818 /*
819 * Make sure all the required memory ops for given memory type
820 * are available.
821 */
822 if (memory == V4L2_MEMORY_MMAP && __verify_mmap_ops(q)) {
Hans Verkuilfd4354c2014-04-07 09:08:47 -0300823 dprintk(1, "MMAP for current setup unsupported\n");
Hans Verkuil37d9ed92012-06-27 17:10:30 -0300824 return -EINVAL;
825 }
826
827 if (memory == V4L2_MEMORY_USERPTR && __verify_userptr_ops(q)) {
Hans Verkuilfd4354c2014-04-07 09:08:47 -0300828 dprintk(1, "USERPTR for current setup unsupported\n");
Hans Verkuil37d9ed92012-06-27 17:10:30 -0300829 return -EINVAL;
830 }
831
Sumit Semwalc5384042012-06-14 10:37:37 -0300832 if (memory == V4L2_MEMORY_DMABUF && __verify_dmabuf_ops(q)) {
Hans Verkuilfd4354c2014-04-07 09:08:47 -0300833 dprintk(1, "DMABUF for current setup unsupported\n");
Sumit Semwalc5384042012-06-14 10:37:37 -0300834 return -EINVAL;
835 }
836
Hans Verkuil37d9ed92012-06-27 17:10:30 -0300837 /*
838 * Place the busy tests at the end: -EBUSY can be ignored when
839 * create_bufs is called with count == 0, but count == 0 should still
840 * do the memory and type validation.
841 */
Hans Verkuil74753cffa2014-04-07 09:23:50 -0300842 if (vb2_fileio_is_active(q)) {
Hans Verkuilfd4354c2014-04-07 09:08:47 -0300843 dprintk(1, "file io in progress\n");
Hans Verkuil37d9ed92012-06-27 17:10:30 -0300844 return -EBUSY;
845 }
846 return 0;
847}
848
849/**
850 * __reqbufs() - Initiate streaming
Pawel Osciake23ccc02010-10-11 10:56:41 -0300851 * @q: videobuf2 queue
852 * @req: struct passed from userspace to vidioc_reqbufs handler in driver
853 *
854 * Should be called from vidioc_reqbufs ioctl handler of a driver.
855 * This function:
856 * 1) verifies streaming parameters passed from the userspace,
857 * 2) sets up the queue,
858 * 3) negotiates number of buffers and planes per buffer with the driver
859 * to be used during streaming,
860 * 4) allocates internal buffer structures (struct vb2_buffer), according to
861 * the agreed parameters,
862 * 5) for MMAP memory type, allocates actual video memory, using the
863 * memory handling/allocation routines provided during queue initialization
864 *
865 * If req->count is 0, all the memory will be freed instead.
866 * If the queue has been allocated previously (by a previous vb2_reqbufs) call
867 * and the queue is not busy, memory will be reallocated.
868 *
869 * The return values from this function are intended to be directly returned
870 * from vidioc_reqbufs handler in driver.
871 */
Hans Verkuil37d9ed92012-06-27 17:10:30 -0300872static int __reqbufs(struct vb2_queue *q, struct v4l2_requestbuffers *req)
Pawel Osciake23ccc02010-10-11 10:56:41 -0300873{
Guennadi Liakhovetski2d864012011-09-28 09:23:02 -0300874 unsigned int num_buffers, allocated_buffers, num_planes = 0;
Hans Verkuil37d9ed92012-06-27 17:10:30 -0300875 int ret;
Pawel Osciake23ccc02010-10-11 10:56:41 -0300876
877 if (q->streaming) {
Hans Verkuilfd4354c2014-04-07 09:08:47 -0300878 dprintk(1, "streaming active\n");
Pawel Osciake23ccc02010-10-11 10:56:41 -0300879 return -EBUSY;
880 }
881
Marek Szyprowski29e3fbd2011-03-09 14:03:24 -0300882 if (req->count == 0 || q->num_buffers != 0 || q->memory != req->memory) {
Pawel Osciake23ccc02010-10-11 10:56:41 -0300883 /*
884 * We already have buffers allocated, so first check if they
885 * are not in use and can be freed.
886 */
Hans Verkuilf035eb42014-08-07 03:47:14 -0300887 mutex_lock(&q->mmap_lock);
Pawel Osciake23ccc02010-10-11 10:56:41 -0300888 if (q->memory == V4L2_MEMORY_MMAP && __buffers_in_use(q)) {
Hans Verkuilf035eb42014-08-07 03:47:14 -0300889 mutex_unlock(&q->mmap_lock);
Hans Verkuilfd4354c2014-04-07 09:08:47 -0300890 dprintk(1, "memory in use, cannot free\n");
Pawel Osciake23ccc02010-10-11 10:56:41 -0300891 return -EBUSY;
892 }
893
Hans Verkuilfb64dca2014-02-28 12:49:18 -0300894 /*
895 * Call queue_cancel to clean up any buffers in the PREPARED or
896 * QUEUED state which is possible if buffers were prepared or
897 * queued without ever calling STREAMON.
898 */
899 __vb2_queue_cancel(q);
Hans Verkuil63faabf2013-12-13 13:13:40 -0300900 ret = __vb2_queue_free(q, q->num_buffers);
Hans Verkuilf035eb42014-08-07 03:47:14 -0300901 mutex_unlock(&q->mmap_lock);
Hans Verkuil63faabf2013-12-13 13:13:40 -0300902 if (ret)
903 return ret;
Marek Szyprowski29e3fbd2011-03-09 14:03:24 -0300904
905 /*
906 * In case of REQBUFS(0) return immediately without calling
907 * driver's queue_setup() callback and allocating resources.
908 */
909 if (req->count == 0)
910 return 0;
Pawel Osciake23ccc02010-10-11 10:56:41 -0300911 }
912
913 /*
914 * Make sure the requested values and current defaults are sane.
915 */
916 num_buffers = min_t(unsigned int, req->count, VIDEO_MAX_FRAME);
Philipp Zabel4cf743d2014-05-09 12:32:10 -0300917 num_buffers = max_t(unsigned int, num_buffers, q->min_buffers_needed);
Marek Szyprowskic1426bc2011-08-24 06:36:26 -0300918 memset(q->plane_sizes, 0, sizeof(q->plane_sizes));
Pawel Osciake23ccc02010-10-11 10:56:41 -0300919 memset(q->alloc_ctx, 0, sizeof(q->alloc_ctx));
Marek Szyprowski13b14092011-04-14 07:17:44 -0300920 q->memory = req->memory;
Pawel Osciake23ccc02010-10-11 10:56:41 -0300921
922 /*
923 * Ask the driver how many buffers and planes per buffer it requires.
924 * Driver also sets the size and allocator context for each plane.
925 */
Guennadi Liakhovetskifc714e72011-08-24 10:30:21 -0300926 ret = call_qop(q, queue_setup, q, NULL, &num_buffers, &num_planes,
Marek Szyprowskic1426bc2011-08-24 06:36:26 -0300927 q->plane_sizes, q->alloc_ctx);
Hans Verkuila1d36d82014-03-17 09:54:21 -0300928 if (ret)
Pawel Osciake23ccc02010-10-11 10:56:41 -0300929 return ret;
930
931 /* Finally, allocate buffers and video memory */
Hans Verkuila7afcac2014-02-24 13:41:20 -0300932 allocated_buffers = __vb2_queue_alloc(q, req->memory, num_buffers, num_planes);
933 if (allocated_buffers == 0) {
Hans Verkuil30500402014-04-07 09:13:22 -0300934 dprintk(1, "memory allocation failed\n");
Marek Szyprowski66072d42011-06-28 08:29:02 -0300935 return -ENOMEM;
Pawel Osciake23ccc02010-10-11 10:56:41 -0300936 }
937
938 /*
Hans Verkuilb3379c62014-02-24 13:51:03 -0300939 * There is no point in continuing if we can't allocate the minimum
940 * number of buffers needed by this vb2_queue.
941 */
942 if (allocated_buffers < q->min_buffers_needed)
943 ret = -ENOMEM;
944
945 /*
Pawel Osciake23ccc02010-10-11 10:56:41 -0300946 * Check if driver can handle the allocated number of buffers.
947 */
Hans Verkuilb3379c62014-02-24 13:51:03 -0300948 if (!ret && allocated_buffers < num_buffers) {
Guennadi Liakhovetski2d864012011-09-28 09:23:02 -0300949 num_buffers = allocated_buffers;
Pawel Osciake23ccc02010-10-11 10:56:41 -0300950
Guennadi Liakhovetskifc714e72011-08-24 10:30:21 -0300951 ret = call_qop(q, queue_setup, q, NULL, &num_buffers,
952 &num_planes, q->plane_sizes, q->alloc_ctx);
Pawel Osciake23ccc02010-10-11 10:56:41 -0300953
Guennadi Liakhovetski2d864012011-09-28 09:23:02 -0300954 if (!ret && allocated_buffers < num_buffers)
Pawel Osciake23ccc02010-10-11 10:56:41 -0300955 ret = -ENOMEM;
Pawel Osciake23ccc02010-10-11 10:56:41 -0300956
957 /*
Guennadi Liakhovetski2d864012011-09-28 09:23:02 -0300958 * Either the driver has accepted a smaller number of buffers,
959 * or .queue_setup() returned an error
Pawel Osciake23ccc02010-10-11 10:56:41 -0300960 */
Guennadi Liakhovetski2d864012011-09-28 09:23:02 -0300961 }
962
Hans Verkuilf035eb42014-08-07 03:47:14 -0300963 mutex_lock(&q->mmap_lock);
Guennadi Liakhovetski2d864012011-09-28 09:23:02 -0300964 q->num_buffers = allocated_buffers;
965
966 if (ret < 0) {
Hans Verkuila7afcac2014-02-24 13:41:20 -0300967 /*
968 * Note: __vb2_queue_free() will subtract 'allocated_buffers'
969 * from q->num_buffers.
970 */
Guennadi Liakhovetski2d864012011-09-28 09:23:02 -0300971 __vb2_queue_free(q, allocated_buffers);
Hans Verkuilf035eb42014-08-07 03:47:14 -0300972 mutex_unlock(&q->mmap_lock);
Guennadi Liakhovetski2d864012011-09-28 09:23:02 -0300973 return ret;
Pawel Osciake23ccc02010-10-11 10:56:41 -0300974 }
Hans Verkuilf035eb42014-08-07 03:47:14 -0300975 mutex_unlock(&q->mmap_lock);
Pawel Osciake23ccc02010-10-11 10:56:41 -0300976
Pawel Osciake23ccc02010-10-11 10:56:41 -0300977 /*
978 * Return the number of successfully allocated buffers
979 * to the userspace.
980 */
Guennadi Liakhovetski2d864012011-09-28 09:23:02 -0300981 req->count = allocated_buffers;
Hans Verkuil58d75f42014-09-20 16:16:35 -0300982 q->waiting_for_buffers = !V4L2_TYPE_IS_OUTPUT(q->type);
Pawel Osciake23ccc02010-10-11 10:56:41 -0300983
984 return 0;
Pawel Osciake23ccc02010-10-11 10:56:41 -0300985}
Hans Verkuil37d9ed92012-06-27 17:10:30 -0300986
987/**
988 * vb2_reqbufs() - Wrapper for __reqbufs() that also verifies the memory and
989 * type values.
990 * @q: videobuf2 queue
991 * @req: struct passed from userspace to vidioc_reqbufs handler in driver
992 */
993int vb2_reqbufs(struct vb2_queue *q, struct v4l2_requestbuffers *req)
994{
995 int ret = __verify_memory_type(q, req->memory, req->type);
996
997 return ret ? ret : __reqbufs(q, req);
998}
Pawel Osciake23ccc02010-10-11 10:56:41 -0300999EXPORT_SYMBOL_GPL(vb2_reqbufs);
1000
1001/**
Hans Verkuil37d9ed92012-06-27 17:10:30 -03001002 * __create_bufs() - Allocate buffers and any required auxiliary structs
Guennadi Liakhovetski2d864012011-09-28 09:23:02 -03001003 * @q: videobuf2 queue
1004 * @create: creation parameters, passed from userspace to vidioc_create_bufs
1005 * handler in driver
1006 *
1007 * Should be called from vidioc_create_bufs ioctl handler of a driver.
1008 * This function:
1009 * 1) verifies parameter sanity
1010 * 2) calls the .queue_setup() queue operation
1011 * 3) performs any necessary memory allocations
1012 *
1013 * The return values from this function are intended to be directly returned
1014 * from vidioc_create_bufs handler in driver.
1015 */
Hans Verkuil37d9ed92012-06-27 17:10:30 -03001016static int __create_bufs(struct vb2_queue *q, struct v4l2_create_buffers *create)
Guennadi Liakhovetski2d864012011-09-28 09:23:02 -03001017{
1018 unsigned int num_planes = 0, num_buffers, allocated_buffers;
Hans Verkuil37d9ed92012-06-27 17:10:30 -03001019 int ret;
Guennadi Liakhovetski2d864012011-09-28 09:23:02 -03001020
1021 if (q->num_buffers == VIDEO_MAX_FRAME) {
Hans Verkuilfd4354c2014-04-07 09:08:47 -03001022 dprintk(1, "maximum number of buffers already allocated\n");
Guennadi Liakhovetski2d864012011-09-28 09:23:02 -03001023 return -ENOBUFS;
1024 }
1025
Guennadi Liakhovetski2d864012011-09-28 09:23:02 -03001026 if (!q->num_buffers) {
1027 memset(q->plane_sizes, 0, sizeof(q->plane_sizes));
1028 memset(q->alloc_ctx, 0, sizeof(q->alloc_ctx));
1029 q->memory = create->memory;
Hans Verkuil58d75f42014-09-20 16:16:35 -03001030 q->waiting_for_buffers = !V4L2_TYPE_IS_OUTPUT(q->type);
Guennadi Liakhovetski2d864012011-09-28 09:23:02 -03001031 }
1032
1033 num_buffers = min(create->count, VIDEO_MAX_FRAME - q->num_buffers);
1034
1035 /*
1036 * Ask the driver, whether the requested number of buffers, planes per
1037 * buffer and their sizes are acceptable
1038 */
1039 ret = call_qop(q, queue_setup, q, &create->format, &num_buffers,
1040 &num_planes, q->plane_sizes, q->alloc_ctx);
Hans Verkuila1d36d82014-03-17 09:54:21 -03001041 if (ret)
Guennadi Liakhovetski2d864012011-09-28 09:23:02 -03001042 return ret;
1043
1044 /* Finally, allocate buffers and video memory */
Hans Verkuila7afcac2014-02-24 13:41:20 -03001045 allocated_buffers = __vb2_queue_alloc(q, create->memory, num_buffers,
Guennadi Liakhovetski2d864012011-09-28 09:23:02 -03001046 num_planes);
Hans Verkuila7afcac2014-02-24 13:41:20 -03001047 if (allocated_buffers == 0) {
Hans Verkuil30500402014-04-07 09:13:22 -03001048 dprintk(1, "memory allocation failed\n");
Hans Verkuilf05393d22012-06-22 05:44:14 -03001049 return -ENOMEM;
Guennadi Liakhovetski2d864012011-09-28 09:23:02 -03001050 }
1051
Guennadi Liakhovetski2d864012011-09-28 09:23:02 -03001052 /*
1053 * Check if driver can handle the so far allocated number of buffers.
1054 */
Hans Verkuila7afcac2014-02-24 13:41:20 -03001055 if (allocated_buffers < num_buffers) {
1056 num_buffers = allocated_buffers;
Guennadi Liakhovetski2d864012011-09-28 09:23:02 -03001057
1058 /*
1059 * q->num_buffers contains the total number of buffers, that the
1060 * queue driver has set up
1061 */
1062 ret = call_qop(q, queue_setup, q, &create->format, &num_buffers,
1063 &num_planes, q->plane_sizes, q->alloc_ctx);
1064
1065 if (!ret && allocated_buffers < num_buffers)
1066 ret = -ENOMEM;
1067
1068 /*
1069 * Either the driver has accepted a smaller number of buffers,
1070 * or .queue_setup() returned an error
1071 */
1072 }
1073
Hans Verkuilf035eb42014-08-07 03:47:14 -03001074 mutex_lock(&q->mmap_lock);
Guennadi Liakhovetski2d864012011-09-28 09:23:02 -03001075 q->num_buffers += allocated_buffers;
1076
1077 if (ret < 0) {
Hans Verkuila7afcac2014-02-24 13:41:20 -03001078 /*
1079 * Note: __vb2_queue_free() will subtract 'allocated_buffers'
1080 * from q->num_buffers.
1081 */
Guennadi Liakhovetski2d864012011-09-28 09:23:02 -03001082 __vb2_queue_free(q, allocated_buffers);
Hans Verkuilf035eb42014-08-07 03:47:14 -03001083 mutex_unlock(&q->mmap_lock);
Hans Verkuilf05393d22012-06-22 05:44:14 -03001084 return -ENOMEM;
Guennadi Liakhovetski2d864012011-09-28 09:23:02 -03001085 }
Hans Verkuilf035eb42014-08-07 03:47:14 -03001086 mutex_unlock(&q->mmap_lock);
Guennadi Liakhovetski2d864012011-09-28 09:23:02 -03001087
1088 /*
1089 * Return the number of successfully allocated buffers
1090 * to the userspace.
1091 */
1092 create->count = allocated_buffers;
1093
1094 return 0;
1095}
Hans Verkuil37d9ed92012-06-27 17:10:30 -03001096
1097/**
Nicolas THERY53aa3b12012-07-20 09:25:37 -03001098 * vb2_create_bufs() - Wrapper for __create_bufs() that also verifies the
1099 * memory and type values.
Hans Verkuil37d9ed92012-06-27 17:10:30 -03001100 * @q: videobuf2 queue
1101 * @create: creation parameters, passed from userspace to vidioc_create_bufs
1102 * handler in driver
1103 */
1104int vb2_create_bufs(struct vb2_queue *q, struct v4l2_create_buffers *create)
1105{
1106 int ret = __verify_memory_type(q, create->memory, create->format.type);
1107
1108 create->index = q->num_buffers;
Hans Verkuilf05393d22012-06-22 05:44:14 -03001109 if (create->count == 0)
1110 return ret != -EBUSY ? ret : 0;
Hans Verkuil37d9ed92012-06-27 17:10:30 -03001111 return ret ? ret : __create_bufs(q, create);
1112}
Guennadi Liakhovetski2d864012011-09-28 09:23:02 -03001113EXPORT_SYMBOL_GPL(vb2_create_bufs);
1114
1115/**
Pawel Osciake23ccc02010-10-11 10:56:41 -03001116 * vb2_plane_vaddr() - Return a kernel virtual address of a given plane
1117 * @vb: vb2_buffer to which the plane in question belongs to
1118 * @plane_no: plane number for which the address is to be returned
1119 *
1120 * This function returns a kernel virtual address of a given plane if
1121 * such a mapping exist, NULL otherwise.
1122 */
1123void *vb2_plane_vaddr(struct vb2_buffer *vb, unsigned int plane_no)
1124{
Marek Szyprowskia00d0262011-12-15 05:53:06 -03001125 if (plane_no > vb->num_planes || !vb->planes[plane_no].mem_priv)
Pawel Osciake23ccc02010-10-11 10:56:41 -03001126 return NULL;
1127
Hans Verkuila1d36d82014-03-17 09:54:21 -03001128 return call_ptr_memop(vb, vaddr, vb->planes[plane_no].mem_priv);
Pawel Osciake23ccc02010-10-11 10:56:41 -03001129
1130}
1131EXPORT_SYMBOL_GPL(vb2_plane_vaddr);
1132
1133/**
1134 * vb2_plane_cookie() - Return allocator specific cookie for the given plane
1135 * @vb: vb2_buffer to which the plane in question belongs to
1136 * @plane_no: plane number for which the cookie is to be returned
1137 *
1138 * This function returns an allocator specific cookie for a given plane if
1139 * available, NULL otherwise. The allocator should provide some simple static
1140 * inline function, which would convert this cookie to the allocator specific
1141 * type that can be used directly by the driver to access the buffer. This can
1142 * be for example physical address, pointer to scatter list or IOMMU mapping.
1143 */
1144void *vb2_plane_cookie(struct vb2_buffer *vb, unsigned int plane_no)
1145{
Zhaowei Yuana9ae4692014-08-21 23:28:21 -03001146 if (plane_no >= vb->num_planes || !vb->planes[plane_no].mem_priv)
Pawel Osciake23ccc02010-10-11 10:56:41 -03001147 return NULL;
1148
Hans Verkuila1d36d82014-03-17 09:54:21 -03001149 return call_ptr_memop(vb, cookie, vb->planes[plane_no].mem_priv);
Pawel Osciake23ccc02010-10-11 10:56:41 -03001150}
1151EXPORT_SYMBOL_GPL(vb2_plane_cookie);
1152
1153/**
1154 * vb2_buffer_done() - inform videobuf that an operation on a buffer is finished
1155 * @vb: vb2_buffer returned from the driver
1156 * @state: either VB2_BUF_STATE_DONE if the operation finished successfully
Hans Verkuilb3379c62014-02-24 13:51:03 -03001157 * or VB2_BUF_STATE_ERROR if the operation finished with an error.
1158 * If start_streaming fails then it should return buffers with state
1159 * VB2_BUF_STATE_QUEUED to put them back into the queue.
Pawel Osciake23ccc02010-10-11 10:56:41 -03001160 *
1161 * This function should be called by the driver after a hardware operation on
1162 * a buffer is finished and the buffer may be returned to userspace. The driver
1163 * cannot use this buffer anymore until it is queued back to it by videobuf
1164 * by the means of buf_queue callback. Only buffers previously queued to the
1165 * driver by buf_queue can be passed to this function.
Hans Verkuilb3379c62014-02-24 13:51:03 -03001166 *
1167 * While streaming a buffer can only be returned in state DONE or ERROR.
1168 * The start_streaming op can also return them in case the DMA engine cannot
1169 * be started for some reason. In that case the buffers should be returned with
1170 * state QUEUED.
Pawel Osciake23ccc02010-10-11 10:56:41 -03001171 */
1172void vb2_buffer_done(struct vb2_buffer *vb, enum vb2_buffer_state state)
1173{
1174 struct vb2_queue *q = vb->vb2_queue;
1175 unsigned long flags;
Marek Szyprowski3e0c2f22012-06-14 10:37:43 -03001176 unsigned int plane;
Pawel Osciake23ccc02010-10-11 10:56:41 -03001177
Hans Verkuilb3379c62014-02-24 13:51:03 -03001178 if (WARN_ON(vb->state != VB2_BUF_STATE_ACTIVE))
Pawel Osciake23ccc02010-10-11 10:56:41 -03001179 return;
1180
Hans Verkuilbf3593d2014-08-04 07:14:14 -03001181 if (WARN_ON(state != VB2_BUF_STATE_DONE &&
1182 state != VB2_BUF_STATE_ERROR &&
1183 state != VB2_BUF_STATE_QUEUED))
1184 state = VB2_BUF_STATE_ERROR;
Pawel Osciake23ccc02010-10-11 10:56:41 -03001185
Hans Verkuilb5b45412014-01-29 11:53:25 -03001186#ifdef CONFIG_VIDEO_ADV_DEBUG
1187 /*
1188 * Although this is not a callback, it still does have to balance
1189 * with the buf_queue op. So update this counter manually.
1190 */
1191 vb->cnt_buf_done++;
1192#endif
Hans Verkuil30500402014-04-07 09:13:22 -03001193 dprintk(4, "done processing on buffer %d, state: %d\n",
Tushar Behera9b6f5dc2012-11-12 04:01:29 -03001194 vb->v4l2_buf.index, state);
Pawel Osciake23ccc02010-10-11 10:56:41 -03001195
Marek Szyprowski3e0c2f22012-06-14 10:37:43 -03001196 /* sync buffers */
1197 for (plane = 0; plane < vb->num_planes; ++plane)
Hans Verkuila1d36d82014-03-17 09:54:21 -03001198 call_void_memop(vb, finish, vb->planes[plane].mem_priv);
Marek Szyprowski3e0c2f22012-06-14 10:37:43 -03001199
Pawel Osciake23ccc02010-10-11 10:56:41 -03001200 /* Add the buffer to the done buffers list */
1201 spin_lock_irqsave(&q->done_lock, flags);
1202 vb->state = state;
Hans Verkuilb3379c62014-02-24 13:51:03 -03001203 if (state != VB2_BUF_STATE_QUEUED)
1204 list_add_tail(&vb->done_entry, &q->done_list);
Hans Verkuil6ea3b982014-02-06 05:46:11 -03001205 atomic_dec(&q->owned_by_drv_count);
Pawel Osciake23ccc02010-10-11 10:56:41 -03001206 spin_unlock_irqrestore(&q->done_lock, flags);
1207
Hans Verkuilb3379c62014-02-24 13:51:03 -03001208 if (state == VB2_BUF_STATE_QUEUED)
1209 return;
1210
Pawel Osciake23ccc02010-10-11 10:56:41 -03001211 /* Inform any processes that may be waiting for buffers */
1212 wake_up(&q->done_wq);
1213}
1214EXPORT_SYMBOL_GPL(vb2_buffer_done);
1215
1216/**
Laurent Pinchart34ea4d42014-03-09 21:42:52 -03001217 * vb2_discard_done() - discard all buffers marked as DONE
1218 * @q: videobuf2 queue
1219 *
1220 * This function is intended to be used with suspend/resume operations. It
1221 * discards all 'done' buffers as they would be too old to be requested after
1222 * resume.
1223 *
1224 * Drivers must stop the hardware and synchronize with interrupt handlers and/or
1225 * delayed works before calling this function to make sure no buffer will be
1226 * touched by the driver and/or hardware.
1227 */
1228void vb2_discard_done(struct vb2_queue *q)
1229{
1230 struct vb2_buffer *vb;
1231 unsigned long flags;
1232
1233 spin_lock_irqsave(&q->done_lock, flags);
1234 list_for_each_entry(vb, &q->done_list, done_entry)
1235 vb->state = VB2_BUF_STATE_ERROR;
1236 spin_unlock_irqrestore(&q->done_lock, flags);
1237}
1238EXPORT_SYMBOL_GPL(vb2_discard_done);
1239
1240/**
Hans Verkuil32a77262012-09-28 06:12:53 -03001241 * __fill_vb2_buffer() - fill a vb2_buffer with information provided in a
1242 * v4l2_buffer by the userspace. The caller has already verified that struct
1243 * v4l2_buffer has a valid number of planes.
Pawel Osciake23ccc02010-10-11 10:56:41 -03001244 */
Hans Verkuil32a77262012-09-28 06:12:53 -03001245static void __fill_vb2_buffer(struct vb2_buffer *vb, const struct v4l2_buffer *b,
Pawel Osciake23ccc02010-10-11 10:56:41 -03001246 struct v4l2_plane *v4l2_planes)
1247{
1248 unsigned int plane;
Pawel Osciake23ccc02010-10-11 10:56:41 -03001249
1250 if (V4L2_TYPE_IS_MULTIPLANAR(b->type)) {
Pawel Osciake23ccc02010-10-11 10:56:41 -03001251 if (b->memory == V4L2_MEMORY_USERPTR) {
1252 for (plane = 0; plane < vb->num_planes; ++plane) {
1253 v4l2_planes[plane].m.userptr =
1254 b->m.planes[plane].m.userptr;
1255 v4l2_planes[plane].length =
1256 b->m.planes[plane].length;
1257 }
1258 }
Sumit Semwalc5384042012-06-14 10:37:37 -03001259 if (b->memory == V4L2_MEMORY_DMABUF) {
1260 for (plane = 0; plane < vb->num_planes; ++plane) {
1261 v4l2_planes[plane].m.fd =
1262 b->m.planes[plane].m.fd;
1263 v4l2_planes[plane].length =
1264 b->m.planes[plane].length;
Sumit Semwalc5384042012-06-14 10:37:37 -03001265 }
1266 }
Hans Verkuil8a75ffb2014-07-17 06:53:08 -03001267
1268 /* Fill in driver-provided information for OUTPUT types */
1269 if (V4L2_TYPE_IS_OUTPUT(b->type)) {
1270 /*
1271 * Will have to go up to b->length when API starts
1272 * accepting variable number of planes.
1273 *
1274 * If bytesused == 0 for the output buffer, then fall
1275 * back to the full buffer size. In that case
1276 * userspace clearly never bothered to set it and
1277 * it's a safe assumption that they really meant to
1278 * use the full plane sizes.
1279 */
1280 for (plane = 0; plane < vb->num_planes; ++plane) {
1281 struct v4l2_plane *pdst = &v4l2_planes[plane];
1282 struct v4l2_plane *psrc = &b->m.planes[plane];
1283
1284 pdst->bytesused = psrc->bytesused ?
1285 psrc->bytesused : pdst->length;
1286 pdst->data_offset = psrc->data_offset;
1287 }
1288 }
Pawel Osciake23ccc02010-10-11 10:56:41 -03001289 } else {
1290 /*
1291 * Single-planar buffers do not use planes array,
1292 * so fill in relevant v4l2_buffer struct fields instead.
1293 * In videobuf we use our internal V4l2_planes struct for
1294 * single-planar buffers as well, for simplicity.
Hans Verkuil61bd8fb2014-04-07 08:57:48 -03001295 *
Hans Verkuil8a75ffb2014-07-17 06:53:08 -03001296 * If bytesused == 0 for the output buffer, then fall back
1297 * to the full buffer size as that's a sensible default.
Pawel Osciake23ccc02010-10-11 10:56:41 -03001298 */
Pawel Osciake23ccc02010-10-11 10:56:41 -03001299 if (b->memory == V4L2_MEMORY_USERPTR) {
1300 v4l2_planes[0].m.userptr = b->m.userptr;
1301 v4l2_planes[0].length = b->length;
1302 }
Sumit Semwalc5384042012-06-14 10:37:37 -03001303
1304 if (b->memory == V4L2_MEMORY_DMABUF) {
1305 v4l2_planes[0].m.fd = b->m.fd;
1306 v4l2_planes[0].length = b->length;
Sumit Semwalc5384042012-06-14 10:37:37 -03001307 }
Hans Verkuil8a75ffb2014-07-17 06:53:08 -03001308
1309 if (V4L2_TYPE_IS_OUTPUT(b->type))
1310 v4l2_planes[0].bytesused = b->bytesused ?
1311 b->bytesused : v4l2_planes[0].length;
1312 else
1313 v4l2_planes[0].bytesused = 0;
1314
Pawel Osciake23ccc02010-10-11 10:56:41 -03001315 }
1316
Hans Verkuilf1343282014-02-24 14:44:50 -03001317 /* Zero flags that the vb2 core handles */
Sakari Ailus1b18e7a2012-10-22 17:10:16 -03001318 vb->v4l2_buf.flags = b->flags & ~V4L2_BUFFER_MASK_FLAGS;
Sakari Ailus7ce6fd82014-02-25 19:08:52 -03001319 if ((vb->vb2_queue->timestamp_flags & V4L2_BUF_FLAG_TIMESTAMP_MASK) !=
1320 V4L2_BUF_FLAG_TIMESTAMP_COPY || !V4L2_TYPE_IS_OUTPUT(b->type)) {
1321 /*
1322 * Non-COPY timestamps and non-OUTPUT queues will get
1323 * their timestamp and timestamp source flags from the
1324 * queue.
1325 */
1326 vb->v4l2_buf.flags &= ~V4L2_BUF_FLAG_TSTAMP_SRC_MASK;
1327 }
1328
Hans Verkuilf1343282014-02-24 14:44:50 -03001329 if (V4L2_TYPE_IS_OUTPUT(b->type)) {
1330 /*
1331 * For output buffers mask out the timecode flag:
1332 * this will be handled later in vb2_internal_qbuf().
1333 * The 'field' is valid metadata for this output buffer
1334 * and so that needs to be copied here.
1335 */
1336 vb->v4l2_buf.flags &= ~V4L2_BUF_FLAG_TIMECODE;
1337 vb->v4l2_buf.field = b->field;
1338 } else {
1339 /* Zero any output buffer flags as this is a capture buffer */
1340 vb->v4l2_buf.flags &= ~V4L2_BUFFER_OUT_FLAGS;
1341 }
Pawel Osciake23ccc02010-10-11 10:56:41 -03001342}
1343
1344/**
Hans Verkuildcc24282014-03-10 12:23:13 -03001345 * __qbuf_mmap() - handle qbuf of an MMAP buffer
1346 */
1347static int __qbuf_mmap(struct vb2_buffer *vb, const struct v4l2_buffer *b)
1348{
1349 __fill_vb2_buffer(vb, b, vb->v4l2_planes);
1350 return call_vb_qop(vb, buf_prepare, vb);
1351}
1352
1353/**
Pawel Osciake23ccc02010-10-11 10:56:41 -03001354 * __qbuf_userptr() - handle qbuf of a USERPTR buffer
1355 */
Guennadi Liakhovetski2d864012011-09-28 09:23:02 -03001356static int __qbuf_userptr(struct vb2_buffer *vb, const struct v4l2_buffer *b)
Pawel Osciake23ccc02010-10-11 10:56:41 -03001357{
1358 struct v4l2_plane planes[VIDEO_MAX_PLANES];
1359 struct vb2_queue *q = vb->vb2_queue;
1360 void *mem_priv;
1361 unsigned int plane;
1362 int ret;
Hans Verkuilcd474032014-11-18 09:50:58 -03001363 enum dma_data_direction dma_dir =
1364 V4L2_TYPE_IS_OUTPUT(q->type) ? DMA_TO_DEVICE : DMA_FROM_DEVICE;
Hans Verkuil256f3162014-01-29 13:36:53 -03001365 bool reacquired = vb->planes[0].mem_priv == NULL;
Pawel Osciake23ccc02010-10-11 10:56:41 -03001366
Hans Verkuil412376a2014-04-07 08:44:56 -03001367 memset(planes, 0, sizeof(planes[0]) * vb->num_planes);
Hans Verkuil32a77262012-09-28 06:12:53 -03001368 /* Copy relevant information provided by the userspace */
1369 __fill_vb2_buffer(vb, b, planes);
Pawel Osciake23ccc02010-10-11 10:56:41 -03001370
1371 for (plane = 0; plane < vb->num_planes; ++plane) {
1372 /* Skip the plane if already verified */
Marek Szyprowskif0b7c7f2011-11-16 15:09:40 -03001373 if (vb->v4l2_planes[plane].m.userptr &&
1374 vb->v4l2_planes[plane].m.userptr == planes[plane].m.userptr
Pawel Osciake23ccc02010-10-11 10:56:41 -03001375 && vb->v4l2_planes[plane].length == planes[plane].length)
1376 continue;
1377
Hans Verkuilfd4354c2014-04-07 09:08:47 -03001378 dprintk(3, "userspace address for plane %d changed, "
Pawel Osciake23ccc02010-10-11 10:56:41 -03001379 "reacquiring memory\n", plane);
1380
Marek Szyprowskic1426bc2011-08-24 06:36:26 -03001381 /* Check if the provided plane buffer is large enough */
1382 if (planes[plane].length < q->plane_sizes[plane]) {
Hans Verkuilfd4354c2014-04-07 09:08:47 -03001383 dprintk(1, "provided buffer size %u is less than "
Seung-Woo Kim2484a7e2013-08-20 04:48:06 -03001384 "setup size %u for plane %d\n",
1385 planes[plane].length,
1386 q->plane_sizes[plane], plane);
Marek Szyprowski4c2625d2011-10-03 03:21:45 -03001387 ret = -EINVAL;
Marek Szyprowskic1426bc2011-08-24 06:36:26 -03001388 goto err;
1389 }
1390
Pawel Osciake23ccc02010-10-11 10:56:41 -03001391 /* Release previously acquired memory if present */
Hans Verkuil256f3162014-01-29 13:36:53 -03001392 if (vb->planes[plane].mem_priv) {
1393 if (!reacquired) {
1394 reacquired = true;
Hans Verkuila1d36d82014-03-17 09:54:21 -03001395 call_void_vb_qop(vb, buf_cleanup, vb);
Hans Verkuil256f3162014-01-29 13:36:53 -03001396 }
Hans Verkuila1d36d82014-03-17 09:54:21 -03001397 call_void_memop(vb, put_userptr, vb->planes[plane].mem_priv);
Hans Verkuil256f3162014-01-29 13:36:53 -03001398 }
Pawel Osciake23ccc02010-10-11 10:56:41 -03001399
1400 vb->planes[plane].mem_priv = NULL;
Hans Verkuil256f3162014-01-29 13:36:53 -03001401 memset(&vb->v4l2_planes[plane], 0, sizeof(struct v4l2_plane));
Pawel Osciake23ccc02010-10-11 10:56:41 -03001402
1403 /* Acquire each plane's memory */
Hans Verkuila1d36d82014-03-17 09:54:21 -03001404 mem_priv = call_ptr_memop(vb, get_userptr, q->alloc_ctx[plane],
Marek Szyprowskia00d0262011-12-15 05:53:06 -03001405 planes[plane].m.userptr,
Hans Verkuilcd474032014-11-18 09:50:58 -03001406 planes[plane].length, dma_dir);
Marek Szyprowskia00d0262011-12-15 05:53:06 -03001407 if (IS_ERR_OR_NULL(mem_priv)) {
Hans Verkuilfd4354c2014-04-07 09:08:47 -03001408 dprintk(1, "failed acquiring userspace "
Pawel Osciake23ccc02010-10-11 10:56:41 -03001409 "memory for plane %d\n", plane);
Marek Szyprowskia00d0262011-12-15 05:53:06 -03001410 ret = mem_priv ? PTR_ERR(mem_priv) : -EINVAL;
1411 goto err;
Pawel Osciake23ccc02010-10-11 10:56:41 -03001412 }
Marek Szyprowskia00d0262011-12-15 05:53:06 -03001413 vb->planes[plane].mem_priv = mem_priv;
Pawel Osciake23ccc02010-10-11 10:56:41 -03001414 }
1415
1416 /*
Pawel Osciake23ccc02010-10-11 10:56:41 -03001417 * Now that everything is in order, copy relevant information
1418 * provided by userspace.
1419 */
1420 for (plane = 0; plane < vb->num_planes; ++plane)
1421 vb->v4l2_planes[plane] = planes[plane];
1422
Hans Verkuil256f3162014-01-29 13:36:53 -03001423 if (reacquired) {
1424 /*
1425 * One or more planes changed, so we must call buf_init to do
1426 * the driver-specific initialization on the newly acquired
1427 * buffer, if provided.
1428 */
1429 ret = call_vb_qop(vb, buf_init, vb);
1430 if (ret) {
Hans Verkuilfd4354c2014-04-07 09:08:47 -03001431 dprintk(1, "buffer initialization failed\n");
Hans Verkuil256f3162014-01-29 13:36:53 -03001432 goto err;
1433 }
1434 }
1435
1436 ret = call_vb_qop(vb, buf_prepare, vb);
1437 if (ret) {
Hans Verkuilfd4354c2014-04-07 09:08:47 -03001438 dprintk(1, "buffer preparation failed\n");
Hans Verkuila1d36d82014-03-17 09:54:21 -03001439 call_void_vb_qop(vb, buf_cleanup, vb);
Hans Verkuil256f3162014-01-29 13:36:53 -03001440 goto err;
1441 }
1442
Pawel Osciake23ccc02010-10-11 10:56:41 -03001443 return 0;
1444err:
1445 /* In case of errors, release planes that were already acquired */
Marek Szyprowskic1426bc2011-08-24 06:36:26 -03001446 for (plane = 0; plane < vb->num_planes; ++plane) {
1447 if (vb->planes[plane].mem_priv)
Hans Verkuila1d36d82014-03-17 09:54:21 -03001448 call_void_memop(vb, put_userptr, vb->planes[plane].mem_priv);
Marek Szyprowskic1426bc2011-08-24 06:36:26 -03001449 vb->planes[plane].mem_priv = NULL;
1450 vb->v4l2_planes[plane].m.userptr = 0;
1451 vb->v4l2_planes[plane].length = 0;
Pawel Osciake23ccc02010-10-11 10:56:41 -03001452 }
1453
1454 return ret;
1455}
1456
1457/**
Sumit Semwalc5384042012-06-14 10:37:37 -03001458 * __qbuf_dmabuf() - handle qbuf of a DMABUF buffer
1459 */
1460static int __qbuf_dmabuf(struct vb2_buffer *vb, const struct v4l2_buffer *b)
1461{
1462 struct v4l2_plane planes[VIDEO_MAX_PLANES];
1463 struct vb2_queue *q = vb->vb2_queue;
1464 void *mem_priv;
1465 unsigned int plane;
1466 int ret;
Hans Verkuilcd474032014-11-18 09:50:58 -03001467 enum dma_data_direction dma_dir =
1468 V4L2_TYPE_IS_OUTPUT(q->type) ? DMA_TO_DEVICE : DMA_FROM_DEVICE;
Hans Verkuil256f3162014-01-29 13:36:53 -03001469 bool reacquired = vb->planes[0].mem_priv == NULL;
Sumit Semwalc5384042012-06-14 10:37:37 -03001470
Hans Verkuil412376a2014-04-07 08:44:56 -03001471 memset(planes, 0, sizeof(planes[0]) * vb->num_planes);
Laurent Pinchart6f546c52014-01-01 09:10:48 -03001472 /* Copy relevant information provided by the userspace */
Sumit Semwalc5384042012-06-14 10:37:37 -03001473 __fill_vb2_buffer(vb, b, planes);
1474
1475 for (plane = 0; plane < vb->num_planes; ++plane) {
1476 struct dma_buf *dbuf = dma_buf_get(planes[plane].m.fd);
1477
1478 if (IS_ERR_OR_NULL(dbuf)) {
Hans Verkuilfd4354c2014-04-07 09:08:47 -03001479 dprintk(1, "invalid dmabuf fd for plane %d\n",
Sumit Semwalc5384042012-06-14 10:37:37 -03001480 plane);
1481 ret = -EINVAL;
1482 goto err;
1483 }
1484
1485 /* use DMABUF size if length is not provided */
1486 if (planes[plane].length == 0)
1487 planes[plane].length = dbuf->size;
1488
Hans Verkuil412376a2014-04-07 08:44:56 -03001489 if (planes[plane].length < q->plane_sizes[plane]) {
Hans Verkuilfd4354c2014-04-07 09:08:47 -03001490 dprintk(1, "invalid dmabuf length for plane %d\n",
Seung-Woo Kim77c07822013-11-29 04:50:29 -03001491 plane);
Sumit Semwalc5384042012-06-14 10:37:37 -03001492 ret = -EINVAL;
1493 goto err;
1494 }
1495
1496 /* Skip the plane if already verified */
1497 if (dbuf == vb->planes[plane].dbuf &&
1498 vb->v4l2_planes[plane].length == planes[plane].length) {
1499 dma_buf_put(dbuf);
1500 continue;
1501 }
1502
Hans Verkuilfd4354c2014-04-07 09:08:47 -03001503 dprintk(1, "buffer for plane %d changed\n", plane);
Sumit Semwalc5384042012-06-14 10:37:37 -03001504
Hans Verkuil256f3162014-01-29 13:36:53 -03001505 if (!reacquired) {
1506 reacquired = true;
Hans Verkuila1d36d82014-03-17 09:54:21 -03001507 call_void_vb_qop(vb, buf_cleanup, vb);
Hans Verkuil256f3162014-01-29 13:36:53 -03001508 }
1509
Sumit Semwalc5384042012-06-14 10:37:37 -03001510 /* Release previously acquired memory if present */
Hans Verkuilb5b45412014-01-29 11:53:25 -03001511 __vb2_plane_dmabuf_put(vb, &vb->planes[plane]);
Sumit Semwalc5384042012-06-14 10:37:37 -03001512 memset(&vb->v4l2_planes[plane], 0, sizeof(struct v4l2_plane));
1513
1514 /* Acquire each plane's memory */
Hans Verkuila1d36d82014-03-17 09:54:21 -03001515 mem_priv = call_ptr_memop(vb, attach_dmabuf, q->alloc_ctx[plane],
Hans Verkuilcd474032014-11-18 09:50:58 -03001516 dbuf, planes[plane].length, dma_dir);
Sumit Semwalc5384042012-06-14 10:37:37 -03001517 if (IS_ERR(mem_priv)) {
Hans Verkuilfd4354c2014-04-07 09:08:47 -03001518 dprintk(1, "failed to attach dmabuf\n");
Sumit Semwalc5384042012-06-14 10:37:37 -03001519 ret = PTR_ERR(mem_priv);
1520 dma_buf_put(dbuf);
1521 goto err;
1522 }
1523
1524 vb->planes[plane].dbuf = dbuf;
1525 vb->planes[plane].mem_priv = mem_priv;
1526 }
1527
1528 /* TODO: This pins the buffer(s) with dma_buf_map_attachment()).. but
1529 * really we want to do this just before the DMA, not while queueing
1530 * the buffer(s)..
1531 */
1532 for (plane = 0; plane < vb->num_planes; ++plane) {
Hans Verkuilb5b45412014-01-29 11:53:25 -03001533 ret = call_memop(vb, map_dmabuf, vb->planes[plane].mem_priv);
Sumit Semwalc5384042012-06-14 10:37:37 -03001534 if (ret) {
Hans Verkuilfd4354c2014-04-07 09:08:47 -03001535 dprintk(1, "failed to map dmabuf for plane %d\n",
Sumit Semwalc5384042012-06-14 10:37:37 -03001536 plane);
1537 goto err;
1538 }
1539 vb->planes[plane].dbuf_mapped = 1;
1540 }
1541
1542 /*
Sumit Semwalc5384042012-06-14 10:37:37 -03001543 * Now that everything is in order, copy relevant information
1544 * provided by userspace.
1545 */
1546 for (plane = 0; plane < vb->num_planes; ++plane)
1547 vb->v4l2_planes[plane] = planes[plane];
1548
Hans Verkuil256f3162014-01-29 13:36:53 -03001549 if (reacquired) {
1550 /*
1551 * Call driver-specific initialization on the newly acquired buffer,
1552 * if provided.
1553 */
1554 ret = call_vb_qop(vb, buf_init, vb);
1555 if (ret) {
Hans Verkuilfd4354c2014-04-07 09:08:47 -03001556 dprintk(1, "buffer initialization failed\n");
Hans Verkuil256f3162014-01-29 13:36:53 -03001557 goto err;
1558 }
1559 }
1560
1561 ret = call_vb_qop(vb, buf_prepare, vb);
1562 if (ret) {
Hans Verkuilfd4354c2014-04-07 09:08:47 -03001563 dprintk(1, "buffer preparation failed\n");
Hans Verkuila1d36d82014-03-17 09:54:21 -03001564 call_void_vb_qop(vb, buf_cleanup, vb);
Hans Verkuil256f3162014-01-29 13:36:53 -03001565 goto err;
1566 }
1567
Sumit Semwalc5384042012-06-14 10:37:37 -03001568 return 0;
1569err:
1570 /* In case of errors, release planes that were already acquired */
1571 __vb2_buf_dmabuf_put(vb);
1572
1573 return ret;
1574}
1575
1576/**
Pawel Osciake23ccc02010-10-11 10:56:41 -03001577 * __enqueue_in_driver() - enqueue a vb2_buffer in driver for processing
1578 */
1579static void __enqueue_in_driver(struct vb2_buffer *vb)
1580{
1581 struct vb2_queue *q = vb->vb2_queue;
Marek Szyprowski3e0c2f22012-06-14 10:37:43 -03001582 unsigned int plane;
Pawel Osciake23ccc02010-10-11 10:56:41 -03001583
1584 vb->state = VB2_BUF_STATE_ACTIVE;
Hans Verkuil6ea3b982014-02-06 05:46:11 -03001585 atomic_inc(&q->owned_by_drv_count);
Marek Szyprowski3e0c2f22012-06-14 10:37:43 -03001586
1587 /* sync buffers */
1588 for (plane = 0; plane < vb->num_planes; ++plane)
Hans Verkuila1d36d82014-03-17 09:54:21 -03001589 call_void_memop(vb, prepare, vb->planes[plane].mem_priv);
Marek Szyprowski3e0c2f22012-06-14 10:37:43 -03001590
Hans Verkuila1d36d82014-03-17 09:54:21 -03001591 call_void_vb_qop(vb, buf_queue, vb);
Pawel Osciake23ccc02010-10-11 10:56:41 -03001592}
1593
Guennadi Liakhovetski2d864012011-09-28 09:23:02 -03001594static int __buf_prepare(struct vb2_buffer *vb, const struct v4l2_buffer *b)
Guennadi Liakhovetskiebc087d2011-08-31 06:51:10 -03001595{
1596 struct vb2_queue *q = vb->vb2_queue;
1597 int ret;
1598
Laurent Pinchart8023ed02012-07-10 10:41:40 -03001599 ret = __verify_length(vb, b);
Sylwester Nawrocki3a9621b2013-08-26 11:47:53 -03001600 if (ret < 0) {
Hans Verkuilfd4354c2014-04-07 09:08:47 -03001601 dprintk(1, "plane parameters verification failed: %d\n", ret);
Laurent Pinchart8023ed02012-07-10 10:41:40 -03001602 return ret;
Sylwester Nawrocki3a9621b2013-08-26 11:47:53 -03001603 }
Hans Verkuile35e41b2014-04-07 09:20:39 -03001604 if (b->field == V4L2_FIELD_ALTERNATE && V4L2_TYPE_IS_OUTPUT(q->type)) {
1605 /*
1606 * If the format's field is ALTERNATE, then the buffer's field
1607 * should be either TOP or BOTTOM, not ALTERNATE since that
1608 * makes no sense. The driver has to know whether the
1609 * buffer represents a top or a bottom field in order to
1610 * program any DMA correctly. Using ALTERNATE is wrong, since
1611 * that just says that it is either a top or a bottom field,
1612 * but not which of the two it is.
1613 */
1614 dprintk(1, "the field is incorrectly set to ALTERNATE for an output buffer\n");
1615 return -EINVAL;
1616 }
Laurent Pinchart8023ed02012-07-10 10:41:40 -03001617
Laurent Pinchart4bb72672014-06-03 18:53:25 -03001618 if (q->error) {
1619 dprintk(1, "fatal error occurred on queue\n");
1620 return -EIO;
1621 }
1622
Hans Verkuilb18a8ff2013-12-13 13:13:38 -03001623 vb->state = VB2_BUF_STATE_PREPARING;
Hans Verkuilf1343282014-02-24 14:44:50 -03001624 vb->v4l2_buf.timestamp.tv_sec = 0;
1625 vb->v4l2_buf.timestamp.tv_usec = 0;
1626 vb->v4l2_buf.sequence = 0;
1627
Guennadi Liakhovetskiebc087d2011-08-31 06:51:10 -03001628 switch (q->memory) {
1629 case V4L2_MEMORY_MMAP:
1630 ret = __qbuf_mmap(vb, b);
1631 break;
1632 case V4L2_MEMORY_USERPTR:
Hans Verkuil12561ad2014-08-25 08:57:59 -03001633 down_read(&current->mm->mmap_sem);
Guennadi Liakhovetskiebc087d2011-08-31 06:51:10 -03001634 ret = __qbuf_userptr(vb, b);
Hans Verkuil12561ad2014-08-25 08:57:59 -03001635 up_read(&current->mm->mmap_sem);
Guennadi Liakhovetskiebc087d2011-08-31 06:51:10 -03001636 break;
Sumit Semwalc5384042012-06-14 10:37:37 -03001637 case V4L2_MEMORY_DMABUF:
1638 ret = __qbuf_dmabuf(vb, b);
1639 break;
Guennadi Liakhovetskiebc087d2011-08-31 06:51:10 -03001640 default:
1641 WARN(1, "Invalid queue type\n");
1642 ret = -EINVAL;
1643 }
1644
Guennadi Liakhovetskiebc087d2011-08-31 06:51:10 -03001645 if (ret)
Hans Verkuilfd4354c2014-04-07 09:08:47 -03001646 dprintk(1, "buffer preparation failed: %d\n", ret);
Hans Verkuilb18a8ff2013-12-13 13:13:38 -03001647 vb->state = ret ? VB2_BUF_STATE_DEQUEUED : VB2_BUF_STATE_PREPARED;
Guennadi Liakhovetskiebc087d2011-08-31 06:51:10 -03001648
1649 return ret;
1650}
1651
Laurent Pinchart012043b2013-08-09 08:11:26 -03001652static int vb2_queue_or_prepare_buf(struct vb2_queue *q, struct v4l2_buffer *b,
Hans Verkuil41381112013-12-13 13:13:39 -03001653 const char *opname)
Laurent Pinchart012043b2013-08-09 08:11:26 -03001654{
Laurent Pinchart012043b2013-08-09 08:11:26 -03001655 if (b->type != q->type) {
Hans Verkuilfd4354c2014-04-07 09:08:47 -03001656 dprintk(1, "%s: invalid buffer type\n", opname);
Hans Verkuilb18a8ff2013-12-13 13:13:38 -03001657 return -EINVAL;
Laurent Pinchart012043b2013-08-09 08:11:26 -03001658 }
1659
1660 if (b->index >= q->num_buffers) {
Hans Verkuilfd4354c2014-04-07 09:08:47 -03001661 dprintk(1, "%s: buffer index out of range\n", opname);
Hans Verkuilb18a8ff2013-12-13 13:13:38 -03001662 return -EINVAL;
Laurent Pinchart012043b2013-08-09 08:11:26 -03001663 }
1664
Hans Verkuil41381112013-12-13 13:13:39 -03001665 if (q->bufs[b->index] == NULL) {
Laurent Pinchart012043b2013-08-09 08:11:26 -03001666 /* Should never happen */
Hans Verkuilfd4354c2014-04-07 09:08:47 -03001667 dprintk(1, "%s: buffer is NULL\n", opname);
Hans Verkuilb18a8ff2013-12-13 13:13:38 -03001668 return -EINVAL;
Laurent Pinchart012043b2013-08-09 08:11:26 -03001669 }
1670
1671 if (b->memory != q->memory) {
Hans Verkuilfd4354c2014-04-07 09:08:47 -03001672 dprintk(1, "%s: invalid memory type\n", opname);
Hans Verkuilb18a8ff2013-12-13 13:13:38 -03001673 return -EINVAL;
Laurent Pinchart012043b2013-08-09 08:11:26 -03001674 }
1675
Hans Verkuil41381112013-12-13 13:13:39 -03001676 return __verify_planes_array(q->bufs[b->index], b);
Laurent Pinchart012043b2013-08-09 08:11:26 -03001677}
1678
Pawel Osciake23ccc02010-10-11 10:56:41 -03001679/**
Guennadi Liakhovetski2d864012011-09-28 09:23:02 -03001680 * vb2_prepare_buf() - Pass ownership of a buffer from userspace to the kernel
1681 * @q: videobuf2 queue
1682 * @b: buffer structure passed from userspace to vidioc_prepare_buf
1683 * handler in driver
1684 *
1685 * Should be called from vidioc_prepare_buf ioctl handler of a driver.
1686 * This function:
1687 * 1) verifies the passed buffer,
1688 * 2) calls buf_prepare callback in the driver (if provided), in which
1689 * driver-specific buffer initialization can be performed,
1690 *
1691 * The return values from this function are intended to be directly returned
1692 * from vidioc_prepare_buf handler in driver.
1693 */
1694int vb2_prepare_buf(struct vb2_queue *q, struct v4l2_buffer *b)
1695{
Hans Verkuil41381112013-12-13 13:13:39 -03001696 struct vb2_buffer *vb;
Hans Verkuilb2f2f042013-12-13 13:13:41 -03001697 int ret;
Hans Verkuil41381112013-12-13 13:13:39 -03001698
Hans Verkuil74753cffa2014-04-07 09:23:50 -03001699 if (vb2_fileio_is_active(q)) {
Hans Verkuilfd4354c2014-04-07 09:08:47 -03001700 dprintk(1, "file io in progress\n");
Hans Verkuilb2f2f042013-12-13 13:13:41 -03001701 return -EBUSY;
1702 }
1703
1704 ret = vb2_queue_or_prepare_buf(q, b, "prepare_buf");
Hans Verkuil41381112013-12-13 13:13:39 -03001705 if (ret)
1706 return ret;
1707
1708 vb = q->bufs[b->index];
1709 if (vb->state != VB2_BUF_STATE_DEQUEUED) {
Hans Verkuilfd4354c2014-04-07 09:08:47 -03001710 dprintk(1, "invalid buffer state %d\n",
Hans Verkuil41381112013-12-13 13:13:39 -03001711 vb->state);
1712 return -EINVAL;
1713 }
1714
1715 ret = __buf_prepare(vb, b);
1716 if (!ret) {
1717 /* Fill buffer information for the userspace */
1718 __fill_v4l2_buffer(vb, b);
1719
Hans Verkuilfd4354c2014-04-07 09:08:47 -03001720 dprintk(1, "prepare of buffer %d succeeded\n", vb->v4l2_buf.index);
Hans Verkuil41381112013-12-13 13:13:39 -03001721 }
1722 return ret;
Guennadi Liakhovetski2d864012011-09-28 09:23:02 -03001723}
1724EXPORT_SYMBOL_GPL(vb2_prepare_buf);
1725
Hans Verkuil02f142e2013-12-13 13:13:42 -03001726/**
1727 * vb2_start_streaming() - Attempt to start streaming.
1728 * @q: videobuf2 queue
1729 *
Hans Verkuilb3379c62014-02-24 13:51:03 -03001730 * Attempt to start streaming. When this function is called there must be
1731 * at least q->min_buffers_needed buffers queued up (i.e. the minimum
1732 * number of buffers required for the DMA engine to function). If the
1733 * @start_streaming op fails it is supposed to return all the driver-owned
1734 * buffers back to vb2 in state QUEUED. Check if that happened and if
1735 * not warn and reclaim them forcefully.
Hans Verkuil02f142e2013-12-13 13:13:42 -03001736 */
1737static int vb2_start_streaming(struct vb2_queue *q)
1738{
Hans Verkuilb3379c62014-02-24 13:51:03 -03001739 struct vb2_buffer *vb;
Hans Verkuil02f142e2013-12-13 13:13:42 -03001740 int ret;
1741
Hans Verkuil02f142e2013-12-13 13:13:42 -03001742 /*
Hans Verkuilb3379c62014-02-24 13:51:03 -03001743 * If any buffers were queued before streamon,
1744 * we can now pass them to driver for processing.
Hans Verkuil02f142e2013-12-13 13:13:42 -03001745 */
Hans Verkuilb3379c62014-02-24 13:51:03 -03001746 list_for_each_entry(vb, &q->queued_list, queued_entry)
1747 __enqueue_in_driver(vb);
1748
1749 /* Tell the driver to start streaming */
Laurent Pinchartbd994dd2014-06-23 18:00:22 -03001750 q->start_streaming_called = 1;
Hans Verkuilb3379c62014-02-24 13:51:03 -03001751 ret = call_qop(q, start_streaming, q,
1752 atomic_read(&q->owned_by_drv_count));
Hans Verkuilb3379c62014-02-24 13:51:03 -03001753 if (!ret)
Hans Verkuil02f142e2013-12-13 13:13:42 -03001754 return 0;
Hans Verkuilb3379c62014-02-24 13:51:03 -03001755
Laurent Pinchartbd994dd2014-06-23 18:00:22 -03001756 q->start_streaming_called = 0;
1757
Hans Verkuilfd4354c2014-04-07 09:08:47 -03001758 dprintk(1, "driver refused to start streaming\n");
Hans Verkuil23cd08c2014-08-04 02:33:53 -03001759 /*
1760 * If you see this warning, then the driver isn't cleaning up properly
1761 * after a failed start_streaming(). See the start_streaming()
1762 * documentation in videobuf2-core.h for more information how buffers
1763 * should be returned to vb2 in start_streaming().
1764 */
Hans Verkuilb3379c62014-02-24 13:51:03 -03001765 if (WARN_ON(atomic_read(&q->owned_by_drv_count))) {
1766 unsigned i;
1767
1768 /*
1769 * Forcefully reclaim buffers if the driver did not
1770 * correctly return them to vb2.
1771 */
1772 for (i = 0; i < q->num_buffers; ++i) {
1773 vb = q->bufs[i];
1774 if (vb->state == VB2_BUF_STATE_ACTIVE)
1775 vb2_buffer_done(vb, VB2_BUF_STATE_QUEUED);
1776 }
1777 /* Must be zero now */
1778 WARN_ON(atomic_read(&q->owned_by_drv_count));
Hans Verkuil02f142e2013-12-13 13:13:42 -03001779 }
Hans Verkuilbf3593d2014-08-04 07:14:14 -03001780 /*
1781 * If done_list is not empty, then start_streaming() didn't call
1782 * vb2_buffer_done(vb, VB2_BUF_STATE_QUEUED) but STATE_ERROR or
1783 * STATE_DONE.
1784 */
1785 WARN_ON(!list_empty(&q->done_list));
Hans Verkuil02f142e2013-12-13 13:13:42 -03001786 return ret;
1787}
1788
Hans Verkuilb2f2f042013-12-13 13:13:41 -03001789static int vb2_internal_qbuf(struct vb2_queue *q, struct v4l2_buffer *b)
Laurent Pinchart012043b2013-08-09 08:11:26 -03001790{
Hans Verkuil41381112013-12-13 13:13:39 -03001791 int ret = vb2_queue_or_prepare_buf(q, b, "qbuf");
1792 struct vb2_buffer *vb;
1793
1794 if (ret)
1795 return ret;
1796
1797 vb = q->bufs[b->index];
Laurent Pinchart012043b2013-08-09 08:11:26 -03001798
1799 switch (vb->state) {
1800 case VB2_BUF_STATE_DEQUEUED:
1801 ret = __buf_prepare(vb, b);
1802 if (ret)
1803 return ret;
Hans Verkuil41381112013-12-13 13:13:39 -03001804 break;
Laurent Pinchart012043b2013-08-09 08:11:26 -03001805 case VB2_BUF_STATE_PREPARED:
1806 break;
Hans Verkuilb18a8ff2013-12-13 13:13:38 -03001807 case VB2_BUF_STATE_PREPARING:
Hans Verkuilfd4354c2014-04-07 09:08:47 -03001808 dprintk(1, "buffer still being prepared\n");
Hans Verkuilb18a8ff2013-12-13 13:13:38 -03001809 return -EINVAL;
Laurent Pinchart012043b2013-08-09 08:11:26 -03001810 default:
Hans Verkuilfd4354c2014-04-07 09:08:47 -03001811 dprintk(1, "invalid buffer state %d\n", vb->state);
Laurent Pinchart012043b2013-08-09 08:11:26 -03001812 return -EINVAL;
1813 }
1814
1815 /*
1816 * Add to the queued buffers list, a buffer will stay on it until
1817 * dequeued in dqbuf.
1818 */
1819 list_add_tail(&vb->queued_entry, &q->queued_list);
Hans Verkuilb3379c62014-02-24 13:51:03 -03001820 q->queued_count++;
Hans Verkuil58d75f42014-09-20 16:16:35 -03001821 q->waiting_for_buffers = false;
Laurent Pinchart012043b2013-08-09 08:11:26 -03001822 vb->state = VB2_BUF_STATE_QUEUED;
Hans Verkuilf1343282014-02-24 14:44:50 -03001823 if (V4L2_TYPE_IS_OUTPUT(q->type)) {
1824 /*
1825 * For output buffers copy the timestamp if needed,
1826 * and the timecode field and flag if needed.
1827 */
Sakari Ailusc57ff792014-03-01 10:28:02 -03001828 if ((q->timestamp_flags & V4L2_BUF_FLAG_TIMESTAMP_MASK) ==
1829 V4L2_BUF_FLAG_TIMESTAMP_COPY)
Hans Verkuilf1343282014-02-24 14:44:50 -03001830 vb->v4l2_buf.timestamp = b->timestamp;
1831 vb->v4l2_buf.flags |= b->flags & V4L2_BUF_FLAG_TIMECODE;
1832 if (b->flags & V4L2_BUF_FLAG_TIMECODE)
1833 vb->v4l2_buf.timecode = b->timecode;
1834 }
Laurent Pinchart012043b2013-08-09 08:11:26 -03001835
1836 /*
1837 * If already streaming, give the buffer to driver for processing.
1838 * If not, the buffer will be given to driver on next streamon.
1839 */
Hans Verkuilb3379c62014-02-24 13:51:03 -03001840 if (q->start_streaming_called)
Laurent Pinchart012043b2013-08-09 08:11:26 -03001841 __enqueue_in_driver(vb);
1842
Hans Verkuil41381112013-12-13 13:13:39 -03001843 /* Fill buffer information for the userspace */
1844 __fill_v4l2_buffer(vb, b);
Laurent Pinchart012043b2013-08-09 08:11:26 -03001845
Hans Verkuilb3379c62014-02-24 13:51:03 -03001846 /*
1847 * If streamon has been called, and we haven't yet called
1848 * start_streaming() since not enough buffers were queued, and
1849 * we now have reached the minimum number of queued buffers,
1850 * then we can finally call start_streaming().
1851 */
1852 if (q->streaming && !q->start_streaming_called &&
1853 q->queued_count >= q->min_buffers_needed) {
Hans Verkuil02f142e2013-12-13 13:13:42 -03001854 ret = vb2_start_streaming(q);
1855 if (ret)
1856 return ret;
1857 }
1858
Hans Verkuilfd4354c2014-04-07 09:08:47 -03001859 dprintk(1, "qbuf of buffer %d succeeded\n", vb->v4l2_buf.index);
Hans Verkuil41381112013-12-13 13:13:39 -03001860 return 0;
Pawel Osciake23ccc02010-10-11 10:56:41 -03001861}
Hans Verkuilb2f2f042013-12-13 13:13:41 -03001862
1863/**
1864 * vb2_qbuf() - Queue a buffer from userspace
1865 * @q: videobuf2 queue
1866 * @b: buffer structure passed from userspace to vidioc_qbuf handler
1867 * in driver
1868 *
1869 * Should be called from vidioc_qbuf ioctl handler of a driver.
1870 * This function:
1871 * 1) verifies the passed buffer,
1872 * 2) if necessary, calls buf_prepare callback in the driver (if provided), in
1873 * which driver-specific buffer initialization can be performed,
1874 * 3) if streaming is on, queues the buffer in driver by the means of buf_queue
1875 * callback for processing.
1876 *
1877 * The return values from this function are intended to be directly returned
1878 * from vidioc_qbuf handler in driver.
1879 */
1880int vb2_qbuf(struct vb2_queue *q, struct v4l2_buffer *b)
1881{
Hans Verkuil74753cffa2014-04-07 09:23:50 -03001882 if (vb2_fileio_is_active(q)) {
Hans Verkuilfd4354c2014-04-07 09:08:47 -03001883 dprintk(1, "file io in progress\n");
Hans Verkuilb2f2f042013-12-13 13:13:41 -03001884 return -EBUSY;
1885 }
1886
1887 return vb2_internal_qbuf(q, b);
1888}
Pawel Osciake23ccc02010-10-11 10:56:41 -03001889EXPORT_SYMBOL_GPL(vb2_qbuf);
1890
1891/**
1892 * __vb2_wait_for_done_vb() - wait for a buffer to become available
1893 * for dequeuing
1894 *
1895 * Will sleep if required for nonblocking == false.
1896 */
1897static int __vb2_wait_for_done_vb(struct vb2_queue *q, int nonblocking)
1898{
1899 /*
1900 * All operations on vb_done_list are performed under done_lock
1901 * spinlock protection. However, buffers may be removed from
1902 * it and returned to userspace only while holding both driver's
1903 * lock and the done_lock spinlock. Thus we can be sure that as
1904 * long as we hold the driver's lock, the list will remain not
1905 * empty if list_empty() check succeeds.
1906 */
1907
1908 for (;;) {
1909 int ret;
1910
1911 if (!q->streaming) {
Hans Verkuil30500402014-04-07 09:13:22 -03001912 dprintk(1, "streaming off, will not wait for buffers\n");
Pawel Osciake23ccc02010-10-11 10:56:41 -03001913 return -EINVAL;
1914 }
1915
Laurent Pinchart4bb72672014-06-03 18:53:25 -03001916 if (q->error) {
1917 dprintk(1, "Queue in error state, will not wait for buffers\n");
1918 return -EIO;
1919 }
1920
Pawel Osciake23ccc02010-10-11 10:56:41 -03001921 if (!list_empty(&q->done_list)) {
1922 /*
1923 * Found a buffer that we were waiting for.
1924 */
1925 break;
1926 }
1927
1928 if (nonblocking) {
Hans Verkuil30500402014-04-07 09:13:22 -03001929 dprintk(1, "nonblocking and no buffers to dequeue, "
Pawel Osciake23ccc02010-10-11 10:56:41 -03001930 "will not wait\n");
1931 return -EAGAIN;
1932 }
1933
1934 /*
1935 * We are streaming and blocking, wait for another buffer to
1936 * become ready or for streamoff. Driver's lock is released to
1937 * allow streamoff or qbuf to be called while waiting.
1938 */
Hans Verkuila1d36d82014-03-17 09:54:21 -03001939 call_void_qop(q, wait_prepare, q);
Pawel Osciake23ccc02010-10-11 10:56:41 -03001940
1941 /*
1942 * All locks have been released, it is safe to sleep now.
1943 */
Hans Verkuil30500402014-04-07 09:13:22 -03001944 dprintk(3, "will sleep waiting for buffers\n");
Pawel Osciake23ccc02010-10-11 10:56:41 -03001945 ret = wait_event_interruptible(q->done_wq,
Laurent Pinchart4bb72672014-06-03 18:53:25 -03001946 !list_empty(&q->done_list) || !q->streaming ||
1947 q->error);
Pawel Osciake23ccc02010-10-11 10:56:41 -03001948
1949 /*
1950 * We need to reevaluate both conditions again after reacquiring
1951 * the locks or return an error if one occurred.
1952 */
Hans Verkuila1d36d82014-03-17 09:54:21 -03001953 call_void_qop(q, wait_finish, q);
Hans Verkuil32a77262012-09-28 06:12:53 -03001954 if (ret) {
Hans Verkuil30500402014-04-07 09:13:22 -03001955 dprintk(1, "sleep was interrupted\n");
Pawel Osciake23ccc02010-10-11 10:56:41 -03001956 return ret;
Hans Verkuil32a77262012-09-28 06:12:53 -03001957 }
Pawel Osciake23ccc02010-10-11 10:56:41 -03001958 }
1959 return 0;
1960}
1961
1962/**
1963 * __vb2_get_done_vb() - get a buffer ready for dequeuing
1964 *
1965 * Will sleep if required for nonblocking == false.
1966 */
1967static int __vb2_get_done_vb(struct vb2_queue *q, struct vb2_buffer **vb,
Hans Verkuil32a77262012-09-28 06:12:53 -03001968 struct v4l2_buffer *b, int nonblocking)
Pawel Osciake23ccc02010-10-11 10:56:41 -03001969{
1970 unsigned long flags;
1971 int ret;
1972
1973 /*
1974 * Wait for at least one buffer to become available on the done_list.
1975 */
1976 ret = __vb2_wait_for_done_vb(q, nonblocking);
1977 if (ret)
1978 return ret;
1979
1980 /*
1981 * Driver's lock has been held since we last verified that done_list
1982 * is not empty, so no need for another list_empty(done_list) check.
1983 */
1984 spin_lock_irqsave(&q->done_lock, flags);
1985 *vb = list_first_entry(&q->done_list, struct vb2_buffer, done_entry);
Hans Verkuil32a77262012-09-28 06:12:53 -03001986 /*
1987 * Only remove the buffer from done_list if v4l2_buffer can handle all
1988 * the planes.
1989 */
1990 ret = __verify_planes_array(*vb, b);
1991 if (!ret)
1992 list_del(&(*vb)->done_entry);
Pawel Osciake23ccc02010-10-11 10:56:41 -03001993 spin_unlock_irqrestore(&q->done_lock, flags);
1994
Hans Verkuil32a77262012-09-28 06:12:53 -03001995 return ret;
Pawel Osciake23ccc02010-10-11 10:56:41 -03001996}
1997
1998/**
1999 * vb2_wait_for_all_buffers() - wait until all buffers are given back to vb2
2000 * @q: videobuf2 queue
2001 *
2002 * This function will wait until all buffers that have been given to the driver
2003 * by buf_queue() are given back to vb2 with vb2_buffer_done(). It doesn't call
2004 * wait_prepare, wait_finish pair. It is intended to be called with all locks
2005 * taken, for example from stop_streaming() callback.
2006 */
2007int vb2_wait_for_all_buffers(struct vb2_queue *q)
2008{
2009 if (!q->streaming) {
Hans Verkuil30500402014-04-07 09:13:22 -03002010 dprintk(1, "streaming off, will not wait for buffers\n");
Pawel Osciake23ccc02010-10-11 10:56:41 -03002011 return -EINVAL;
2012 }
2013
Hans Verkuilb3379c62014-02-24 13:51:03 -03002014 if (q->start_streaming_called)
Hans Verkuil6ea3b982014-02-06 05:46:11 -03002015 wait_event(q->done_wq, !atomic_read(&q->owned_by_drv_count));
Pawel Osciake23ccc02010-10-11 10:56:41 -03002016 return 0;
2017}
2018EXPORT_SYMBOL_GPL(vb2_wait_for_all_buffers);
2019
2020/**
Sumit Semwalc5384042012-06-14 10:37:37 -03002021 * __vb2_dqbuf() - bring back the buffer to the DEQUEUED state
2022 */
2023static void __vb2_dqbuf(struct vb2_buffer *vb)
2024{
2025 struct vb2_queue *q = vb->vb2_queue;
2026 unsigned int i;
2027
2028 /* nothing to do if the buffer is already dequeued */
2029 if (vb->state == VB2_BUF_STATE_DEQUEUED)
2030 return;
2031
2032 vb->state = VB2_BUF_STATE_DEQUEUED;
2033
2034 /* unmap DMABUF buffer */
2035 if (q->memory == V4L2_MEMORY_DMABUF)
2036 for (i = 0; i < vb->num_planes; ++i) {
2037 if (!vb->planes[i].dbuf_mapped)
2038 continue;
Hans Verkuila1d36d82014-03-17 09:54:21 -03002039 call_void_memop(vb, unmap_dmabuf, vb->planes[i].mem_priv);
Sumit Semwalc5384042012-06-14 10:37:37 -03002040 vb->planes[i].dbuf_mapped = 0;
2041 }
2042}
2043
Hans Verkuilb2f2f042013-12-13 13:13:41 -03002044static int vb2_internal_dqbuf(struct vb2_queue *q, struct v4l2_buffer *b, bool nonblocking)
Pawel Osciake23ccc02010-10-11 10:56:41 -03002045{
2046 struct vb2_buffer *vb = NULL;
2047 int ret;
2048
2049 if (b->type != q->type) {
Hans Verkuilfd4354c2014-04-07 09:08:47 -03002050 dprintk(1, "invalid buffer type\n");
Pawel Osciake23ccc02010-10-11 10:56:41 -03002051 return -EINVAL;
2052 }
Hans Verkuil32a77262012-09-28 06:12:53 -03002053 ret = __vb2_get_done_vb(q, &vb, b, nonblocking);
2054 if (ret < 0)
Pawel Osciake23ccc02010-10-11 10:56:41 -03002055 return ret;
Pawel Osciake23ccc02010-10-11 10:56:41 -03002056
Pawel Osciake23ccc02010-10-11 10:56:41 -03002057 switch (vb->state) {
2058 case VB2_BUF_STATE_DONE:
Hans Verkuil30500402014-04-07 09:13:22 -03002059 dprintk(3, "returning done buffer\n");
Pawel Osciake23ccc02010-10-11 10:56:41 -03002060 break;
2061 case VB2_BUF_STATE_ERROR:
Hans Verkuil30500402014-04-07 09:13:22 -03002062 dprintk(3, "returning done buffer with errors\n");
Pawel Osciake23ccc02010-10-11 10:56:41 -03002063 break;
2064 default:
Hans Verkuil30500402014-04-07 09:13:22 -03002065 dprintk(1, "invalid buffer state\n");
Pawel Osciake23ccc02010-10-11 10:56:41 -03002066 return -EINVAL;
2067 }
2068
Hans Verkuila1d36d82014-03-17 09:54:21 -03002069 call_void_vb_qop(vb, buf_finish, vb);
Hans Verkuil9cf3c312014-02-28 13:30:48 -03002070
Pawel Osciake23ccc02010-10-11 10:56:41 -03002071 /* Fill buffer information for the userspace */
2072 __fill_v4l2_buffer(vb, b);
2073 /* Remove from videobuf queue */
2074 list_del(&vb->queued_entry);
Hans Verkuilb3379c62014-02-24 13:51:03 -03002075 q->queued_count--;
Sumit Semwalc5384042012-06-14 10:37:37 -03002076 /* go back to dequeued state */
2077 __vb2_dqbuf(vb);
Pawel Osciake23ccc02010-10-11 10:56:41 -03002078
2079 dprintk(1, "dqbuf of buffer %d, with state %d\n",
2080 vb->v4l2_buf.index, vb->state);
2081
Pawel Osciake23ccc02010-10-11 10:56:41 -03002082 return 0;
2083}
Hans Verkuilb2f2f042013-12-13 13:13:41 -03002084
2085/**
2086 * vb2_dqbuf() - Dequeue a buffer to the userspace
2087 * @q: videobuf2 queue
2088 * @b: buffer structure passed from userspace to vidioc_dqbuf handler
2089 * in driver
2090 * @nonblocking: if true, this call will not sleep waiting for a buffer if no
2091 * buffers ready for dequeuing are present. Normally the driver
2092 * would be passing (file->f_flags & O_NONBLOCK) here
2093 *
2094 * Should be called from vidioc_dqbuf ioctl handler of a driver.
2095 * This function:
2096 * 1) verifies the passed buffer,
2097 * 2) calls buf_finish callback in the driver (if provided), in which
2098 * driver can perform any additional operations that may be required before
2099 * returning the buffer to userspace, such as cache sync,
2100 * 3) the buffer struct members are filled with relevant information for
2101 * the userspace.
2102 *
2103 * The return values from this function are intended to be directly returned
2104 * from vidioc_dqbuf handler in driver.
2105 */
2106int vb2_dqbuf(struct vb2_queue *q, struct v4l2_buffer *b, bool nonblocking)
2107{
Hans Verkuil74753cffa2014-04-07 09:23:50 -03002108 if (vb2_fileio_is_active(q)) {
Hans Verkuilfd4354c2014-04-07 09:08:47 -03002109 dprintk(1, "file io in progress\n");
Hans Verkuilb2f2f042013-12-13 13:13:41 -03002110 return -EBUSY;
2111 }
2112 return vb2_internal_dqbuf(q, b, nonblocking);
2113}
Pawel Osciake23ccc02010-10-11 10:56:41 -03002114EXPORT_SYMBOL_GPL(vb2_dqbuf);
2115
2116/**
Pawel Osciake23ccc02010-10-11 10:56:41 -03002117 * __vb2_queue_cancel() - cancel and stop (pause) streaming
2118 *
2119 * Removes all queued buffers from driver's queue and all buffers queued by
2120 * userspace from videobuf's queue. Returns to state after reqbufs.
2121 */
2122static void __vb2_queue_cancel(struct vb2_queue *q)
2123{
2124 unsigned int i;
2125
2126 /*
2127 * Tell driver to stop all transactions and release all queued
2128 * buffers.
2129 */
Hans Verkuilb3379c62014-02-24 13:51:03 -03002130 if (q->start_streaming_called)
Hans Verkuile37559b2014-04-17 02:47:21 -03002131 call_void_qop(q, stop_streaming, q);
Hans Verkuilb3379c62014-02-24 13:51:03 -03002132
Hans Verkuil23cd08c2014-08-04 02:33:53 -03002133 /*
2134 * If you see this warning, then the driver isn't cleaning up properly
2135 * in stop_streaming(). See the stop_streaming() documentation in
2136 * videobuf2-core.h for more information how buffers should be returned
2137 * to vb2 in stop_streaming().
2138 */
Hans Verkuilb3379c62014-02-24 13:51:03 -03002139 if (WARN_ON(atomic_read(&q->owned_by_drv_count))) {
2140 for (i = 0; i < q->num_buffers; ++i)
2141 if (q->bufs[i]->state == VB2_BUF_STATE_ACTIVE)
2142 vb2_buffer_done(q->bufs[i], VB2_BUF_STATE_ERROR);
2143 /* Must be zero now */
2144 WARN_ON(atomic_read(&q->owned_by_drv_count));
2145 }
Pawel Osciake23ccc02010-10-11 10:56:41 -03002146
Laurent Pinchartb646f0b2014-04-20 20:55:41 -03002147 q->streaming = 0;
2148 q->start_streaming_called = 0;
2149 q->queued_count = 0;
Laurent Pinchart4bb72672014-06-03 18:53:25 -03002150 q->error = 0;
Laurent Pinchartb646f0b2014-04-20 20:55:41 -03002151
Pawel Osciake23ccc02010-10-11 10:56:41 -03002152 /*
2153 * Remove all buffers from videobuf's list...
2154 */
2155 INIT_LIST_HEAD(&q->queued_list);
2156 /*
2157 * ...and done list; userspace will not receive any buffers it
2158 * has not already dequeued before initiating cancel.
2159 */
2160 INIT_LIST_HEAD(&q->done_list);
Hans Verkuil6ea3b982014-02-06 05:46:11 -03002161 atomic_set(&q->owned_by_drv_count, 0);
Pawel Osciake23ccc02010-10-11 10:56:41 -03002162 wake_up_all(&q->done_wq);
2163
2164 /*
2165 * Reinitialize all buffers for next use.
Hans Verkuil9c0863b2014-03-04 07:34:49 -03002166 * Make sure to call buf_finish for any queued buffers. Normally
2167 * that's done in dqbuf, but that's not going to happen when we
2168 * cancel the whole queue. Note: this code belongs here, not in
2169 * __vb2_dqbuf() since in vb2_internal_dqbuf() there is a critical
2170 * call to __fill_v4l2_buffer() after buf_finish(). That order can't
2171 * be changed, so we can't move the buf_finish() to __vb2_dqbuf().
Pawel Osciake23ccc02010-10-11 10:56:41 -03002172 */
Hans Verkuil9c0863b2014-03-04 07:34:49 -03002173 for (i = 0; i < q->num_buffers; ++i) {
2174 struct vb2_buffer *vb = q->bufs[i];
2175
2176 if (vb->state != VB2_BUF_STATE_DEQUEUED) {
2177 vb->state = VB2_BUF_STATE_PREPARED;
Hans Verkuila1d36d82014-03-17 09:54:21 -03002178 call_void_vb_qop(vb, buf_finish, vb);
Hans Verkuil9c0863b2014-03-04 07:34:49 -03002179 }
2180 __vb2_dqbuf(vb);
2181 }
Pawel Osciake23ccc02010-10-11 10:56:41 -03002182}
2183
Hans Verkuilb2f2f042013-12-13 13:13:41 -03002184static int vb2_internal_streamon(struct vb2_queue *q, enum v4l2_buf_type type)
Marek Szyprowskibd323e22011-08-29 08:51:49 -03002185{
Marek Szyprowskibd323e22011-08-29 08:51:49 -03002186 int ret;
2187
Marek Szyprowskibd323e22011-08-29 08:51:49 -03002188 if (type != q->type) {
Hans Verkuilfd4354c2014-04-07 09:08:47 -03002189 dprintk(1, "invalid stream type\n");
Marek Szyprowskibd323e22011-08-29 08:51:49 -03002190 return -EINVAL;
2191 }
2192
2193 if (q->streaming) {
Hans Verkuilfd4354c2014-04-07 09:08:47 -03002194 dprintk(3, "already streaming\n");
Ricardo Ribaldaf9560352013-11-08 07:08:45 -03002195 return 0;
Marek Szyprowskibd323e22011-08-29 08:51:49 -03002196 }
2197
Ricardo Ribalda548df782014-01-08 05:01:33 -03002198 if (!q->num_buffers) {
Hans Verkuilfd4354c2014-04-07 09:08:47 -03002199 dprintk(1, "no buffers have been allocated\n");
Ricardo Ribalda548df782014-01-08 05:01:33 -03002200 return -EINVAL;
2201 }
2202
Hans Verkuilb3379c62014-02-24 13:51:03 -03002203 if (q->num_buffers < q->min_buffers_needed) {
Hans Verkuilfd4354c2014-04-07 09:08:47 -03002204 dprintk(1, "need at least %u allocated buffers\n",
Hans Verkuilb3379c62014-02-24 13:51:03 -03002205 q->min_buffers_needed);
2206 return -EINVAL;
2207 }
Ricardo Ribalda Delgado249f5a52014-01-08 05:01:33 -03002208
Marek Szyprowskibd323e22011-08-29 08:51:49 -03002209 /*
Hans Verkuilb3379c62014-02-24 13:51:03 -03002210 * Tell driver to start streaming provided sufficient buffers
2211 * are available.
Marek Szyprowskibd323e22011-08-29 08:51:49 -03002212 */
Hans Verkuilb3379c62014-02-24 13:51:03 -03002213 if (q->queued_count >= q->min_buffers_needed) {
2214 ret = vb2_start_streaming(q);
2215 if (ret) {
2216 __vb2_queue_cancel(q);
2217 return ret;
2218 }
Marek Szyprowskibd323e22011-08-29 08:51:49 -03002219 }
2220
2221 q->streaming = 1;
2222
Hans Verkuilfd4354c2014-04-07 09:08:47 -03002223 dprintk(3, "successful\n");
Marek Szyprowskibd323e22011-08-29 08:51:49 -03002224 return 0;
2225}
Hans Verkuilb2f2f042013-12-13 13:13:41 -03002226
2227/**
Laurent Pinchart4bb72672014-06-03 18:53:25 -03002228 * vb2_queue_error() - signal a fatal error on the queue
2229 * @q: videobuf2 queue
2230 *
2231 * Flag that a fatal unrecoverable error has occurred and wake up all processes
2232 * waiting on the queue. Polling will now set POLLERR and queuing and dequeuing
2233 * buffers will return -EIO.
2234 *
2235 * The error flag will be cleared when cancelling the queue, either from
2236 * vb2_streamoff or vb2_queue_release. Drivers should thus not call this
2237 * function before starting the stream, otherwise the error flag will remain set
2238 * until the queue is released when closing the device node.
2239 */
2240void vb2_queue_error(struct vb2_queue *q)
2241{
2242 q->error = 1;
2243
2244 wake_up_all(&q->done_wq);
2245}
2246EXPORT_SYMBOL_GPL(vb2_queue_error);
2247
2248/**
Hans Verkuilb2f2f042013-12-13 13:13:41 -03002249 * vb2_streamon - start streaming
2250 * @q: videobuf2 queue
2251 * @type: type argument passed from userspace to vidioc_streamon handler
2252 *
2253 * Should be called from vidioc_streamon handler of a driver.
2254 * This function:
2255 * 1) verifies current state
2256 * 2) passes any previously queued buffers to the driver and starts streaming
2257 *
2258 * The return values from this function are intended to be directly returned
2259 * from vidioc_streamon handler in the driver.
2260 */
2261int vb2_streamon(struct vb2_queue *q, enum v4l2_buf_type type)
2262{
Hans Verkuil74753cffa2014-04-07 09:23:50 -03002263 if (vb2_fileio_is_active(q)) {
Hans Verkuilfd4354c2014-04-07 09:08:47 -03002264 dprintk(1, "file io in progress\n");
Hans Verkuilb2f2f042013-12-13 13:13:41 -03002265 return -EBUSY;
2266 }
2267 return vb2_internal_streamon(q, type);
2268}
Marek Szyprowskibd323e22011-08-29 08:51:49 -03002269EXPORT_SYMBOL_GPL(vb2_streamon);
2270
Hans Verkuilb2f2f042013-12-13 13:13:41 -03002271static int vb2_internal_streamoff(struct vb2_queue *q, enum v4l2_buf_type type)
2272{
2273 if (type != q->type) {
Hans Verkuilfd4354c2014-04-07 09:08:47 -03002274 dprintk(1, "invalid stream type\n");
Hans Verkuilb2f2f042013-12-13 13:13:41 -03002275 return -EINVAL;
2276 }
2277
Hans Verkuilb2f2f042013-12-13 13:13:41 -03002278 /*
2279 * Cancel will pause streaming and remove all buffers from the driver
2280 * and videobuf, effectively returning control over them to userspace.
Hans Verkuil3f1a9a32014-02-25 09:42:45 -03002281 *
2282 * Note that we do this even if q->streaming == 0: if you prepare or
2283 * queue buffers, and then call streamoff without ever having called
2284 * streamon, you would still expect those buffers to be returned to
2285 * their normal dequeued state.
Hans Verkuilb2f2f042013-12-13 13:13:41 -03002286 */
2287 __vb2_queue_cancel(q);
Hans Verkuil58d75f42014-09-20 16:16:35 -03002288 q->waiting_for_buffers = !V4L2_TYPE_IS_OUTPUT(q->type);
Hans Verkuilb2f2f042013-12-13 13:13:41 -03002289
Hans Verkuilfd4354c2014-04-07 09:08:47 -03002290 dprintk(3, "successful\n");
Hans Verkuilb2f2f042013-12-13 13:13:41 -03002291 return 0;
2292}
Marek Szyprowskibd323e22011-08-29 08:51:49 -03002293
2294/**
Pawel Osciake23ccc02010-10-11 10:56:41 -03002295 * vb2_streamoff - stop streaming
2296 * @q: videobuf2 queue
2297 * @type: type argument passed from userspace to vidioc_streamoff handler
2298 *
2299 * Should be called from vidioc_streamoff handler of a driver.
2300 * This function:
2301 * 1) verifies current state,
2302 * 2) stop streaming and dequeues any queued buffers, including those previously
2303 * passed to the driver (after waiting for the driver to finish).
2304 *
2305 * This call can be used for pausing playback.
2306 * The return values from this function are intended to be directly returned
2307 * from vidioc_streamoff handler in the driver
2308 */
2309int vb2_streamoff(struct vb2_queue *q, enum v4l2_buf_type type)
2310{
Hans Verkuil74753cffa2014-04-07 09:23:50 -03002311 if (vb2_fileio_is_active(q)) {
Hans Verkuilfd4354c2014-04-07 09:08:47 -03002312 dprintk(1, "file io in progress\n");
Marek Szyprowskib25748f2010-12-06 05:56:55 -03002313 return -EBUSY;
2314 }
Hans Verkuilb2f2f042013-12-13 13:13:41 -03002315 return vb2_internal_streamoff(q, type);
Pawel Osciake23ccc02010-10-11 10:56:41 -03002316}
2317EXPORT_SYMBOL_GPL(vb2_streamoff);
2318
2319/**
2320 * __find_plane_by_offset() - find plane associated with the given offset off
2321 */
2322static int __find_plane_by_offset(struct vb2_queue *q, unsigned long off,
2323 unsigned int *_buffer, unsigned int *_plane)
2324{
2325 struct vb2_buffer *vb;
2326 unsigned int buffer, plane;
2327
2328 /*
2329 * Go over all buffers and their planes, comparing the given offset
2330 * with an offset assigned to each plane. If a match is found,
2331 * return its buffer and plane numbers.
2332 */
2333 for (buffer = 0; buffer < q->num_buffers; ++buffer) {
2334 vb = q->bufs[buffer];
2335
2336 for (plane = 0; plane < vb->num_planes; ++plane) {
2337 if (vb->v4l2_planes[plane].m.mem_offset == off) {
2338 *_buffer = buffer;
2339 *_plane = plane;
2340 return 0;
2341 }
2342 }
2343 }
2344
2345 return -EINVAL;
2346}
2347
2348/**
Tomasz Stanislawski83ae7c52012-06-14 11:32:24 -03002349 * vb2_expbuf() - Export a buffer as a file descriptor
2350 * @q: videobuf2 queue
2351 * @eb: export buffer structure passed from userspace to vidioc_expbuf
2352 * handler in driver
2353 *
2354 * The return values from this function are intended to be directly returned
2355 * from vidioc_expbuf handler in driver.
2356 */
2357int vb2_expbuf(struct vb2_queue *q, struct v4l2_exportbuffer *eb)
2358{
2359 struct vb2_buffer *vb = NULL;
2360 struct vb2_plane *vb_plane;
2361 int ret;
2362 struct dma_buf *dbuf;
2363
2364 if (q->memory != V4L2_MEMORY_MMAP) {
Hans Verkuil30500402014-04-07 09:13:22 -03002365 dprintk(1, "queue is not currently set up for mmap\n");
Tomasz Stanislawski83ae7c52012-06-14 11:32:24 -03002366 return -EINVAL;
2367 }
2368
2369 if (!q->mem_ops->get_dmabuf) {
Hans Verkuil30500402014-04-07 09:13:22 -03002370 dprintk(1, "queue does not support DMA buffer exporting\n");
Tomasz Stanislawski83ae7c52012-06-14 11:32:24 -03002371 return -EINVAL;
2372 }
2373
Philipp Zabelea3aba82013-05-21 05:11:35 -03002374 if (eb->flags & ~(O_CLOEXEC | O_ACCMODE)) {
Hans Verkuil30500402014-04-07 09:13:22 -03002375 dprintk(1, "queue does support only O_CLOEXEC and access mode flags\n");
Tomasz Stanislawski83ae7c52012-06-14 11:32:24 -03002376 return -EINVAL;
2377 }
2378
2379 if (eb->type != q->type) {
Hans Verkuilfd4354c2014-04-07 09:08:47 -03002380 dprintk(1, "invalid buffer type\n");
Tomasz Stanislawski83ae7c52012-06-14 11:32:24 -03002381 return -EINVAL;
2382 }
2383
2384 if (eb->index >= q->num_buffers) {
2385 dprintk(1, "buffer index out of range\n");
2386 return -EINVAL;
2387 }
2388
2389 vb = q->bufs[eb->index];
2390
2391 if (eb->plane >= vb->num_planes) {
2392 dprintk(1, "buffer plane out of range\n");
2393 return -EINVAL;
2394 }
2395
Hans Verkuil74753cffa2014-04-07 09:23:50 -03002396 if (vb2_fileio_is_active(q)) {
2397 dprintk(1, "expbuf: file io in progress\n");
2398 return -EBUSY;
2399 }
2400
Tomasz Stanislawski83ae7c52012-06-14 11:32:24 -03002401 vb_plane = &vb->planes[eb->plane];
2402
Hans Verkuila1d36d82014-03-17 09:54:21 -03002403 dbuf = call_ptr_memop(vb, get_dmabuf, vb_plane->mem_priv, eb->flags & O_ACCMODE);
Tomasz Stanislawski83ae7c52012-06-14 11:32:24 -03002404 if (IS_ERR_OR_NULL(dbuf)) {
Hans Verkuil30500402014-04-07 09:13:22 -03002405 dprintk(1, "failed to export buffer %d, plane %d\n",
Tomasz Stanislawski83ae7c52012-06-14 11:32:24 -03002406 eb->index, eb->plane);
2407 return -EINVAL;
2408 }
2409
Philipp Zabelea3aba82013-05-21 05:11:35 -03002410 ret = dma_buf_fd(dbuf, eb->flags & ~O_ACCMODE);
Tomasz Stanislawski83ae7c52012-06-14 11:32:24 -03002411 if (ret < 0) {
2412 dprintk(3, "buffer %d, plane %d failed to export (%d)\n",
2413 eb->index, eb->plane, ret);
2414 dma_buf_put(dbuf);
2415 return ret;
2416 }
2417
2418 dprintk(3, "buffer %d, plane %d exported as %d descriptor\n",
2419 eb->index, eb->plane, ret);
2420 eb->fd = ret;
2421
2422 return 0;
2423}
2424EXPORT_SYMBOL_GPL(vb2_expbuf);
2425
2426/**
Pawel Osciake23ccc02010-10-11 10:56:41 -03002427 * vb2_mmap() - map video buffers into application address space
2428 * @q: videobuf2 queue
2429 * @vma: vma passed to the mmap file operation handler in the driver
2430 *
2431 * Should be called from mmap file operation handler of a driver.
2432 * This function maps one plane of one of the available video buffers to
2433 * userspace. To map whole video memory allocated on reqbufs, this function
2434 * has to be called once per each plane per each buffer previously allocated.
2435 *
2436 * When the userspace application calls mmap, it passes to it an offset returned
2437 * to it earlier by the means of vidioc_querybuf handler. That offset acts as
2438 * a "cookie", which is then used to identify the plane to be mapped.
2439 * This function finds a plane with a matching offset and a mapping is performed
2440 * by the means of a provided memory operation.
2441 *
2442 * The return values from this function are intended to be directly returned
2443 * from the mmap handler in driver.
2444 */
2445int vb2_mmap(struct vb2_queue *q, struct vm_area_struct *vma)
2446{
2447 unsigned long off = vma->vm_pgoff << PAGE_SHIFT;
Pawel Osciake23ccc02010-10-11 10:56:41 -03002448 struct vb2_buffer *vb;
Hans Verkuilce9c2242014-04-17 03:17:08 -03002449 unsigned int buffer = 0, plane = 0;
Pawel Osciake23ccc02010-10-11 10:56:41 -03002450 int ret;
Mauro Carvalho Chehab7f841452013-04-19 07:18:01 -03002451 unsigned long length;
Pawel Osciake23ccc02010-10-11 10:56:41 -03002452
2453 if (q->memory != V4L2_MEMORY_MMAP) {
Hans Verkuil30500402014-04-07 09:13:22 -03002454 dprintk(1, "queue is not currently set up for mmap\n");
Pawel Osciake23ccc02010-10-11 10:56:41 -03002455 return -EINVAL;
2456 }
2457
2458 /*
2459 * Check memory area access mode.
2460 */
2461 if (!(vma->vm_flags & VM_SHARED)) {
Hans Verkuil30500402014-04-07 09:13:22 -03002462 dprintk(1, "invalid vma flags, VM_SHARED needed\n");
Pawel Osciake23ccc02010-10-11 10:56:41 -03002463 return -EINVAL;
2464 }
2465 if (V4L2_TYPE_IS_OUTPUT(q->type)) {
2466 if (!(vma->vm_flags & VM_WRITE)) {
Hans Verkuil30500402014-04-07 09:13:22 -03002467 dprintk(1, "invalid vma flags, VM_WRITE needed\n");
Pawel Osciake23ccc02010-10-11 10:56:41 -03002468 return -EINVAL;
2469 }
2470 } else {
2471 if (!(vma->vm_flags & VM_READ)) {
Hans Verkuil30500402014-04-07 09:13:22 -03002472 dprintk(1, "invalid vma flags, VM_READ needed\n");
Pawel Osciake23ccc02010-10-11 10:56:41 -03002473 return -EINVAL;
2474 }
2475 }
Hans Verkuil74753cffa2014-04-07 09:23:50 -03002476 if (vb2_fileio_is_active(q)) {
2477 dprintk(1, "mmap: file io in progress\n");
2478 return -EBUSY;
2479 }
Pawel Osciake23ccc02010-10-11 10:56:41 -03002480
2481 /*
2482 * Find the plane corresponding to the offset passed by userspace.
2483 */
2484 ret = __find_plane_by_offset(q, off, &buffer, &plane);
2485 if (ret)
2486 return ret;
2487
2488 vb = q->bufs[buffer];
Pawel Osciake23ccc02010-10-11 10:56:41 -03002489
Mauro Carvalho Chehab7f841452013-04-19 07:18:01 -03002490 /*
2491 * MMAP requires page_aligned buffers.
2492 * The buffer length was page_aligned at __vb2_buf_mem_alloc(),
2493 * so, we need to do the same here.
2494 */
2495 length = PAGE_ALIGN(vb->v4l2_planes[plane].length);
2496 if (length < (vma->vm_end - vma->vm_start)) {
2497 dprintk(1,
2498 "MMAP invalid, as it would overflow buffer length\n");
Seung-Woo Kim068a0df2013-04-11 23:57:57 -03002499 return -EINVAL;
2500 }
2501
Hans Verkuilf035eb42014-08-07 03:47:14 -03002502 mutex_lock(&q->mmap_lock);
Hans Verkuilb5b45412014-01-29 11:53:25 -03002503 ret = call_memop(vb, mmap, vb->planes[plane].mem_priv, vma);
Hans Verkuilf035eb42014-08-07 03:47:14 -03002504 mutex_unlock(&q->mmap_lock);
Hans Verkuila1d36d82014-03-17 09:54:21 -03002505 if (ret)
Pawel Osciake23ccc02010-10-11 10:56:41 -03002506 return ret;
2507
Hans Verkuil30500402014-04-07 09:13:22 -03002508 dprintk(3, "buffer %d, plane %d successfully mapped\n", buffer, plane);
Pawel Osciake23ccc02010-10-11 10:56:41 -03002509 return 0;
2510}
2511EXPORT_SYMBOL_GPL(vb2_mmap);
2512
Scott Jiang6f524ec2011-09-21 09:25:23 -03002513#ifndef CONFIG_MMU
2514unsigned long vb2_get_unmapped_area(struct vb2_queue *q,
2515 unsigned long addr,
2516 unsigned long len,
2517 unsigned long pgoff,
2518 unsigned long flags)
2519{
2520 unsigned long off = pgoff << PAGE_SHIFT;
2521 struct vb2_buffer *vb;
2522 unsigned int buffer, plane;
Hans Verkuilf035eb42014-08-07 03:47:14 -03002523 void *vaddr;
Scott Jiang6f524ec2011-09-21 09:25:23 -03002524 int ret;
2525
2526 if (q->memory != V4L2_MEMORY_MMAP) {
Hans Verkuil30500402014-04-07 09:13:22 -03002527 dprintk(1, "queue is not currently set up for mmap\n");
Scott Jiang6f524ec2011-09-21 09:25:23 -03002528 return -EINVAL;
2529 }
2530
2531 /*
2532 * Find the plane corresponding to the offset passed by userspace.
2533 */
2534 ret = __find_plane_by_offset(q, off, &buffer, &plane);
2535 if (ret)
2536 return ret;
2537
2538 vb = q->bufs[buffer];
2539
Hans Verkuilf035eb42014-08-07 03:47:14 -03002540 vaddr = vb2_plane_vaddr(vb, plane);
2541 return vaddr ? (unsigned long)vaddr : -EINVAL;
Scott Jiang6f524ec2011-09-21 09:25:23 -03002542}
2543EXPORT_SYMBOL_GPL(vb2_get_unmapped_area);
2544#endif
2545
Marek Szyprowskib25748f2010-12-06 05:56:55 -03002546static int __vb2_init_fileio(struct vb2_queue *q, int read);
2547static int __vb2_cleanup_fileio(struct vb2_queue *q);
Pawel Osciake23ccc02010-10-11 10:56:41 -03002548
2549/**
2550 * vb2_poll() - implements poll userspace operation
2551 * @q: videobuf2 queue
2552 * @file: file argument passed to the poll file operation handler
2553 * @wait: wait argument passed to the poll file operation handler
2554 *
2555 * This function implements poll file operation handler for a driver.
2556 * For CAPTURE queues, if a buffer is ready to be dequeued, the userspace will
2557 * be informed that the file descriptor of a video device is available for
2558 * reading.
2559 * For OUTPUT queues, if a buffer is ready to be dequeued, the file descriptor
2560 * will be reported as available for writing.
2561 *
Hans Verkuil95213ce2011-07-13 04:26:52 -03002562 * If the driver uses struct v4l2_fh, then vb2_poll() will also check for any
2563 * pending events.
2564 *
Pawel Osciake23ccc02010-10-11 10:56:41 -03002565 * The return values from this function are intended to be directly returned
2566 * from poll handler in driver.
2567 */
2568unsigned int vb2_poll(struct vb2_queue *q, struct file *file, poll_table *wait)
2569{
Hans Verkuil95213ce2011-07-13 04:26:52 -03002570 struct video_device *vfd = video_devdata(file);
Hans Verkuilbf5c7cb2011-07-13 04:01:30 -03002571 unsigned long req_events = poll_requested_events(wait);
Pawel Osciake23ccc02010-10-11 10:56:41 -03002572 struct vb2_buffer *vb = NULL;
Hans Verkuil95213ce2011-07-13 04:26:52 -03002573 unsigned int res = 0;
2574 unsigned long flags;
2575
2576 if (test_bit(V4L2_FL_USES_V4L2_FH, &vfd->flags)) {
2577 struct v4l2_fh *fh = file->private_data;
2578
2579 if (v4l2_event_pending(fh))
2580 res = POLLPRI;
2581 else if (req_events & POLLPRI)
2582 poll_wait(file, &fh->wait, wait);
2583 }
Pawel Osciake23ccc02010-10-11 10:56:41 -03002584
Hans Verkuilcd138232013-01-30 13:29:02 -03002585 if (!V4L2_TYPE_IS_OUTPUT(q->type) && !(req_events & (POLLIN | POLLRDNORM)))
2586 return res;
2587 if (V4L2_TYPE_IS_OUTPUT(q->type) && !(req_events & (POLLOUT | POLLWRNORM)))
2588 return res;
2589
Pawel Osciake23ccc02010-10-11 10:56:41 -03002590 /*
Pawel Osciak4ffabdb2011-03-20 18:17:34 -03002591 * Start file I/O emulator only if streaming API has not been used yet.
Marek Szyprowskib25748f2010-12-06 05:56:55 -03002592 */
Hans Verkuil74753cffa2014-04-07 09:23:50 -03002593 if (q->num_buffers == 0 && !vb2_fileio_is_active(q)) {
Hans Verkuilbf5c7cb2011-07-13 04:01:30 -03002594 if (!V4L2_TYPE_IS_OUTPUT(q->type) && (q->io_modes & VB2_READ) &&
2595 (req_events & (POLLIN | POLLRDNORM))) {
Hans Verkuil95213ce2011-07-13 04:26:52 -03002596 if (__vb2_init_fileio(q, 1))
2597 return res | POLLERR;
Marek Szyprowskib25748f2010-12-06 05:56:55 -03002598 }
Hans Verkuilbf5c7cb2011-07-13 04:01:30 -03002599 if (V4L2_TYPE_IS_OUTPUT(q->type) && (q->io_modes & VB2_WRITE) &&
2600 (req_events & (POLLOUT | POLLWRNORM))) {
Hans Verkuil95213ce2011-07-13 04:26:52 -03002601 if (__vb2_init_fileio(q, 0))
2602 return res | POLLERR;
Marek Szyprowskib25748f2010-12-06 05:56:55 -03002603 /*
2604 * Write to OUTPUT queue can be done immediately.
2605 */
Hans Verkuil95213ce2011-07-13 04:26:52 -03002606 return res | POLLOUT | POLLWRNORM;
Marek Szyprowskib25748f2010-12-06 05:56:55 -03002607 }
2608 }
2609
2610 /*
Hans Verkuil58d75f42014-09-20 16:16:35 -03002611 * There is nothing to wait for if the queue isn't streaming, or if the
2612 * error flag is set.
Pawel Osciake23ccc02010-10-11 10:56:41 -03002613 */
Hans Verkuil58d75f42014-09-20 16:16:35 -03002614 if (!vb2_is_streaming(q) || q->error)
2615 return res | POLLERR;
2616 /*
2617 * For compatibility with vb1: if QBUF hasn't been called yet, then
2618 * return POLLERR as well. This only affects capture queues, output
2619 * queues will always initialize waiting_for_buffers to false.
2620 */
2621 if (q->waiting_for_buffers)
Hans Verkuil95213ce2011-07-13 04:26:52 -03002622 return res | POLLERR;
Pawel Osciake23ccc02010-10-11 10:56:41 -03002623
Hans Verkuil1612f202014-07-24 09:19:37 -03002624 /*
2625 * For output streams you can write as long as there are fewer buffers
2626 * queued than there are buffers available.
2627 */
2628 if (V4L2_TYPE_IS_OUTPUT(q->type) && q->queued_count < q->num_buffers)
2629 return res | POLLOUT | POLLWRNORM;
2630
Seung-Woo Kim412cb872013-05-20 23:47:29 -03002631 if (list_empty(&q->done_list))
2632 poll_wait(file, &q->done_wq, wait);
Pawel Osciake23ccc02010-10-11 10:56:41 -03002633
2634 /*
2635 * Take first buffer available for dequeuing.
2636 */
2637 spin_lock_irqsave(&q->done_lock, flags);
2638 if (!list_empty(&q->done_list))
2639 vb = list_first_entry(&q->done_list, struct vb2_buffer,
2640 done_entry);
2641 spin_unlock_irqrestore(&q->done_lock, flags);
2642
2643 if (vb && (vb->state == VB2_BUF_STATE_DONE
2644 || vb->state == VB2_BUF_STATE_ERROR)) {
Hans Verkuil95213ce2011-07-13 04:26:52 -03002645 return (V4L2_TYPE_IS_OUTPUT(q->type)) ?
2646 res | POLLOUT | POLLWRNORM :
2647 res | POLLIN | POLLRDNORM;
Pawel Osciake23ccc02010-10-11 10:56:41 -03002648 }
Hans Verkuil95213ce2011-07-13 04:26:52 -03002649 return res;
Pawel Osciake23ccc02010-10-11 10:56:41 -03002650}
2651EXPORT_SYMBOL_GPL(vb2_poll);
2652
2653/**
2654 * vb2_queue_init() - initialize a videobuf2 queue
2655 * @q: videobuf2 queue; this structure should be allocated in driver
2656 *
2657 * The vb2_queue structure should be allocated by the driver. The driver is
2658 * responsible of clearing it's content and setting initial values for some
2659 * required entries before calling this function.
2660 * q->ops, q->mem_ops, q->type and q->io_modes are mandatory. Please refer
2661 * to the struct vb2_queue description in include/media/videobuf2-core.h
2662 * for more information.
2663 */
2664int vb2_queue_init(struct vb2_queue *q)
2665{
Ezequiel Garcia896f38f2012-09-17 14:59:30 -03002666 /*
2667 * Sanity check
2668 */
2669 if (WARN_ON(!q) ||
2670 WARN_ON(!q->ops) ||
2671 WARN_ON(!q->mem_ops) ||
2672 WARN_ON(!q->type) ||
2673 WARN_ON(!q->io_modes) ||
2674 WARN_ON(!q->ops->queue_setup) ||
Kamil Debski6aa69f92013-01-25 06:29:57 -03002675 WARN_ON(!q->ops->buf_queue) ||
Sakari Ailus872484c2013-08-25 17:57:03 -03002676 WARN_ON(q->timestamp_flags &
2677 ~(V4L2_BUF_FLAG_TIMESTAMP_MASK |
2678 V4L2_BUF_FLAG_TSTAMP_SRC_MASK)))
Ezequiel Garcia896f38f2012-09-17 14:59:30 -03002679 return -EINVAL;
Pawel Osciake23ccc02010-10-11 10:56:41 -03002680
Kamil Debski6aa69f92013-01-25 06:29:57 -03002681 /* Warn that the driver should choose an appropriate timestamp type */
Sakari Ailusc57ff792014-03-01 10:28:02 -03002682 WARN_ON((q->timestamp_flags & V4L2_BUF_FLAG_TIMESTAMP_MASK) ==
2683 V4L2_BUF_FLAG_TIMESTAMP_UNKNOWN);
Kamil Debski6aa69f92013-01-25 06:29:57 -03002684
Pawel Osciake23ccc02010-10-11 10:56:41 -03002685 INIT_LIST_HEAD(&q->queued_list);
2686 INIT_LIST_HEAD(&q->done_list);
2687 spin_lock_init(&q->done_lock);
Hans Verkuilf035eb42014-08-07 03:47:14 -03002688 mutex_init(&q->mmap_lock);
Pawel Osciake23ccc02010-10-11 10:56:41 -03002689 init_waitqueue_head(&q->done_wq);
2690
2691 if (q->buf_struct_size == 0)
2692 q->buf_struct_size = sizeof(struct vb2_buffer);
2693
2694 return 0;
2695}
2696EXPORT_SYMBOL_GPL(vb2_queue_init);
2697
2698/**
2699 * vb2_queue_release() - stop streaming, release the queue and free memory
2700 * @q: videobuf2 queue
2701 *
2702 * This function stops streaming and performs necessary clean ups, including
2703 * freeing video buffer memory. The driver is responsible for freeing
2704 * the vb2_queue structure itself.
2705 */
2706void vb2_queue_release(struct vb2_queue *q)
2707{
Marek Szyprowskib25748f2010-12-06 05:56:55 -03002708 __vb2_cleanup_fileio(q);
Pawel Osciake23ccc02010-10-11 10:56:41 -03002709 __vb2_queue_cancel(q);
Hans Verkuilf035eb42014-08-07 03:47:14 -03002710 mutex_lock(&q->mmap_lock);
Guennadi Liakhovetski2d864012011-09-28 09:23:02 -03002711 __vb2_queue_free(q, q->num_buffers);
Hans Verkuilf035eb42014-08-07 03:47:14 -03002712 mutex_unlock(&q->mmap_lock);
Pawel Osciake23ccc02010-10-11 10:56:41 -03002713}
2714EXPORT_SYMBOL_GPL(vb2_queue_release);
2715
Marek Szyprowskib25748f2010-12-06 05:56:55 -03002716/**
2717 * struct vb2_fileio_buf - buffer context used by file io emulator
2718 *
2719 * vb2 provides a compatibility layer and emulator of file io (read and
2720 * write) calls on top of streaming API. This structure is used for
2721 * tracking context related to the buffers.
2722 */
2723struct vb2_fileio_buf {
2724 void *vaddr;
2725 unsigned int size;
2726 unsigned int pos;
2727 unsigned int queued:1;
2728};
2729
2730/**
2731 * struct vb2_fileio_data - queue context used by file io emulator
2732 *
Hans Verkuil4e5a4d82014-02-14 06:46:50 -03002733 * @cur_index: the index of the buffer currently being read from or
2734 * written to. If equal to q->num_buffers then a new buffer
2735 * must be dequeued.
2736 * @initial_index: in the read() case all buffers are queued up immediately
2737 * in __vb2_init_fileio() and __vb2_perform_fileio() just cycles
2738 * buffers. However, in the write() case no buffers are initially
2739 * queued, instead whenever a buffer is full it is queued up by
2740 * __vb2_perform_fileio(). Only once all available buffers have
2741 * been queued up will __vb2_perform_fileio() start to dequeue
2742 * buffers. This means that initially __vb2_perform_fileio()
2743 * needs to know what buffer index to use when it is queuing up
2744 * the buffers for the first time. That initial index is stored
2745 * in this field. Once it is equal to q->num_buffers all
2746 * available buffers have been queued and __vb2_perform_fileio()
2747 * should start the normal dequeue/queue cycle.
2748 *
Marek Szyprowskib25748f2010-12-06 05:56:55 -03002749 * vb2 provides a compatibility layer and emulator of file io (read and
2750 * write) calls on top of streaming API. For proper operation it required
2751 * this structure to save the driver state between each call of the read
2752 * or write function.
2753 */
2754struct vb2_fileio_data {
2755 struct v4l2_requestbuffers req;
Hans Verkuil7bb6edd2014-04-11 04:40:03 -03002756 struct v4l2_plane p;
Marek Szyprowskib25748f2010-12-06 05:56:55 -03002757 struct v4l2_buffer b;
2758 struct vb2_fileio_buf bufs[VIDEO_MAX_FRAME];
Hans Verkuil4e5a4d82014-02-14 06:46:50 -03002759 unsigned int cur_index;
2760 unsigned int initial_index;
Marek Szyprowskib25748f2010-12-06 05:56:55 -03002761 unsigned int q_count;
2762 unsigned int dq_count;
2763 unsigned int flags;
2764};
2765
2766/**
2767 * __vb2_init_fileio() - initialize file io emulator
2768 * @q: videobuf2 queue
2769 * @read: mode selector (1 means read, 0 means write)
2770 */
2771static int __vb2_init_fileio(struct vb2_queue *q, int read)
2772{
2773 struct vb2_fileio_data *fileio;
2774 int i, ret;
2775 unsigned int count = 0;
2776
2777 /*
2778 * Sanity check
2779 */
Hans Verkuile4d25812014-02-03 11:22:45 -03002780 if (WARN_ON((read && !(q->io_modes & VB2_READ)) ||
2781 (!read && !(q->io_modes & VB2_WRITE))))
2782 return -EINVAL;
Marek Szyprowskib25748f2010-12-06 05:56:55 -03002783
2784 /*
2785 * Check if device supports mapping buffers to kernel virtual space.
2786 */
2787 if (!q->mem_ops->vaddr)
2788 return -EBUSY;
2789
2790 /*
2791 * Check if streaming api has not been already activated.
2792 */
2793 if (q->streaming || q->num_buffers > 0)
2794 return -EBUSY;
2795
2796 /*
2797 * Start with count 1, driver can increase it in queue_setup()
2798 */
2799 count = 1;
2800
2801 dprintk(3, "setting up file io: mode %s, count %d, flags %08x\n",
2802 (read) ? "read" : "write", count, q->io_flags);
2803
2804 fileio = kzalloc(sizeof(struct vb2_fileio_data), GFP_KERNEL);
2805 if (fileio == NULL)
2806 return -ENOMEM;
2807
2808 fileio->flags = q->io_flags;
2809
2810 /*
2811 * Request buffers and use MMAP type to force driver
2812 * to allocate buffers by itself.
2813 */
2814 fileio->req.count = count;
2815 fileio->req.memory = V4L2_MEMORY_MMAP;
2816 fileio->req.type = q->type;
Hans Verkuil74753cffa2014-04-07 09:23:50 -03002817 q->fileio = fileio;
2818 ret = __reqbufs(q, &fileio->req);
Marek Szyprowskib25748f2010-12-06 05:56:55 -03002819 if (ret)
2820 goto err_kfree;
2821
2822 /*
2823 * Check if plane_count is correct
2824 * (multiplane buffers are not supported).
2825 */
2826 if (q->bufs[0]->num_planes != 1) {
Marek Szyprowskib25748f2010-12-06 05:56:55 -03002827 ret = -EBUSY;
2828 goto err_reqbufs;
2829 }
2830
2831 /*
2832 * Get kernel address of each buffer.
2833 */
2834 for (i = 0; i < q->num_buffers; i++) {
2835 fileio->bufs[i].vaddr = vb2_plane_vaddr(q->bufs[i], 0);
Wei Yongjun5dd69462013-05-13 01:48:45 -03002836 if (fileio->bufs[i].vaddr == NULL) {
2837 ret = -EINVAL;
Marek Szyprowskib25748f2010-12-06 05:56:55 -03002838 goto err_reqbufs;
Wei Yongjun5dd69462013-05-13 01:48:45 -03002839 }
Marek Szyprowskib25748f2010-12-06 05:56:55 -03002840 fileio->bufs[i].size = vb2_plane_size(q->bufs[i], 0);
2841 }
2842
2843 /*
2844 * Read mode requires pre queuing of all buffers.
2845 */
2846 if (read) {
Hans Verkuil7bb6edd2014-04-11 04:40:03 -03002847 bool is_multiplanar = V4L2_TYPE_IS_MULTIPLANAR(q->type);
2848
Marek Szyprowskib25748f2010-12-06 05:56:55 -03002849 /*
2850 * Queue all buffers.
2851 */
2852 for (i = 0; i < q->num_buffers; i++) {
2853 struct v4l2_buffer *b = &fileio->b;
Hans Verkuil7bb6edd2014-04-11 04:40:03 -03002854
Marek Szyprowskib25748f2010-12-06 05:56:55 -03002855 memset(b, 0, sizeof(*b));
2856 b->type = q->type;
Hans Verkuil7bb6edd2014-04-11 04:40:03 -03002857 if (is_multiplanar) {
2858 memset(&fileio->p, 0, sizeof(fileio->p));
2859 b->m.planes = &fileio->p;
2860 b->length = 1;
2861 }
Marek Szyprowskib25748f2010-12-06 05:56:55 -03002862 b->memory = q->memory;
2863 b->index = i;
Hans Verkuil74753cffa2014-04-07 09:23:50 -03002864 ret = vb2_internal_qbuf(q, b);
Marek Szyprowskib25748f2010-12-06 05:56:55 -03002865 if (ret)
2866 goto err_reqbufs;
2867 fileio->bufs[i].queued = 1;
2868 }
Hans Verkuil4e5a4d82014-02-14 06:46:50 -03002869 /*
2870 * All buffers have been queued, so mark that by setting
2871 * initial_index to q->num_buffers
2872 */
2873 fileio->initial_index = q->num_buffers;
2874 fileio->cur_index = q->num_buffers;
Marek Szyprowskib25748f2010-12-06 05:56:55 -03002875 }
2876
Hans Verkuil02f142e2013-12-13 13:13:42 -03002877 /*
2878 * Start streaming.
2879 */
Hans Verkuil74753cffa2014-04-07 09:23:50 -03002880 ret = vb2_internal_streamon(q, q->type);
Hans Verkuil02f142e2013-12-13 13:13:42 -03002881 if (ret)
2882 goto err_reqbufs;
2883
Marek Szyprowskib25748f2010-12-06 05:56:55 -03002884 return ret;
2885
2886err_reqbufs:
Hans de Goedea67e1722012-05-08 14:47:39 -03002887 fileio->req.count = 0;
Hans Verkuil74753cffa2014-04-07 09:23:50 -03002888 __reqbufs(q, &fileio->req);
Marek Szyprowskib25748f2010-12-06 05:56:55 -03002889
2890err_kfree:
Hans Verkuil74753cffa2014-04-07 09:23:50 -03002891 q->fileio = NULL;
Marek Szyprowskib25748f2010-12-06 05:56:55 -03002892 kfree(fileio);
2893 return ret;
2894}
2895
2896/**
2897 * __vb2_cleanup_fileio() - free resourced used by file io emulator
2898 * @q: videobuf2 queue
2899 */
2900static int __vb2_cleanup_fileio(struct vb2_queue *q)
2901{
2902 struct vb2_fileio_data *fileio = q->fileio;
2903
2904 if (fileio) {
Hans Verkuilb2f2f042013-12-13 13:13:41 -03002905 vb2_internal_streamoff(q, q->type);
Marek Szyprowskib25748f2010-12-06 05:56:55 -03002906 q->fileio = NULL;
Marek Szyprowskib25748f2010-12-06 05:56:55 -03002907 fileio->req.count = 0;
2908 vb2_reqbufs(q, &fileio->req);
2909 kfree(fileio);
2910 dprintk(3, "file io emulator closed\n");
2911 }
2912 return 0;
2913}
2914
2915/**
2916 * __vb2_perform_fileio() - perform a single file io (read or write) operation
2917 * @q: videobuf2 queue
2918 * @data: pointed to target userspace buffer
2919 * @count: number of bytes to read or write
2920 * @ppos: file handle position tracking pointer
2921 * @nonblock: mode selector (1 means blocking calls, 0 means nonblocking)
2922 * @read: access mode selector (1 means read, 0 means write)
2923 */
2924static size_t __vb2_perform_fileio(struct vb2_queue *q, char __user *data, size_t count,
2925 loff_t *ppos, int nonblock, int read)
2926{
2927 struct vb2_fileio_data *fileio;
2928 struct vb2_fileio_buf *buf;
Hans Verkuil7bb6edd2014-04-11 04:40:03 -03002929 bool is_multiplanar = V4L2_TYPE_IS_MULTIPLANAR(q->type);
Hans Verkuilebd7c502014-04-11 04:36:57 -03002930 /*
2931 * When using write() to write data to an output video node the vb2 core
2932 * should set timestamps if V4L2_BUF_FLAG_TIMESTAMP_COPY is set. Nobody
2933 * else is able to provide this information with the write() operation.
2934 */
2935 bool set_timestamp = !read &&
2936 (q->timestamp_flags & V4L2_BUF_FLAG_TIMESTAMP_MASK) ==
2937 V4L2_BUF_FLAG_TIMESTAMP_COPY;
Marek Szyprowskib25748f2010-12-06 05:56:55 -03002938 int ret, index;
2939
Hans Verkuilfd4354c2014-04-07 09:08:47 -03002940 dprintk(3, "mode %s, offset %ld, count %zd, %sblocking\n",
Marek Szyprowskib25748f2010-12-06 05:56:55 -03002941 read ? "read" : "write", (long)*ppos, count,
2942 nonblock ? "non" : "");
2943
2944 if (!data)
2945 return -EINVAL;
2946
2947 /*
2948 * Initialize emulator on first call.
2949 */
Hans Verkuil74753cffa2014-04-07 09:23:50 -03002950 if (!vb2_fileio_is_active(q)) {
Marek Szyprowskib25748f2010-12-06 05:56:55 -03002951 ret = __vb2_init_fileio(q, read);
Hans Verkuilfd4354c2014-04-07 09:08:47 -03002952 dprintk(3, "vb2_init_fileio result: %d\n", ret);
Marek Szyprowskib25748f2010-12-06 05:56:55 -03002953 if (ret)
2954 return ret;
2955 }
2956 fileio = q->fileio;
2957
Marek Szyprowskib25748f2010-12-06 05:56:55 -03002958 /*
2959 * Check if we need to dequeue the buffer.
2960 */
Hans Verkuil4e5a4d82014-02-14 06:46:50 -03002961 index = fileio->cur_index;
Hans Verkuil88e26872013-12-13 13:13:45 -03002962 if (index >= q->num_buffers) {
Marek Szyprowskib25748f2010-12-06 05:56:55 -03002963 /*
2964 * Call vb2_dqbuf to get buffer back.
2965 */
2966 memset(&fileio->b, 0, sizeof(fileio->b));
2967 fileio->b.type = q->type;
2968 fileio->b.memory = q->memory;
Hans Verkuil7bb6edd2014-04-11 04:40:03 -03002969 if (is_multiplanar) {
2970 memset(&fileio->p, 0, sizeof(fileio->p));
2971 fileio->b.m.planes = &fileio->p;
2972 fileio->b.length = 1;
2973 }
Hans Verkuilb2f2f042013-12-13 13:13:41 -03002974 ret = vb2_internal_dqbuf(q, &fileio->b, nonblock);
Hans Verkuilfd4354c2014-04-07 09:08:47 -03002975 dprintk(5, "vb2_dqbuf result: %d\n", ret);
Marek Szyprowskib25748f2010-12-06 05:56:55 -03002976 if (ret)
Hans Verkuilb2f2f042013-12-13 13:13:41 -03002977 return ret;
Marek Szyprowskib25748f2010-12-06 05:56:55 -03002978 fileio->dq_count += 1;
2979
Hans Verkuil4e5a4d82014-02-14 06:46:50 -03002980 fileio->cur_index = index = fileio->b.index;
Hans Verkuil88e26872013-12-13 13:13:45 -03002981 buf = &fileio->bufs[index];
2982
Marek Szyprowskib25748f2010-12-06 05:56:55 -03002983 /*
2984 * Get number of bytes filled by the driver
2985 */
Hans Verkuil88e26872013-12-13 13:13:45 -03002986 buf->pos = 0;
Marek Szyprowskib25748f2010-12-06 05:56:55 -03002987 buf->queued = 0;
Hans Verkuil88e26872013-12-13 13:13:45 -03002988 buf->size = read ? vb2_get_plane_payload(q->bufs[index], 0)
2989 : vb2_plane_size(q->bufs[index], 0);
Hans Verkuil529a53c2014-07-25 06:08:36 -03002990 /* Compensate for data_offset on read in the multiplanar case. */
2991 if (is_multiplanar && read &&
2992 fileio->b.m.planes[0].data_offset < buf->size) {
2993 buf->pos = fileio->b.m.planes[0].data_offset;
2994 buf->size -= buf->pos;
2995 }
Hans Verkuil88e26872013-12-13 13:13:45 -03002996 } else {
2997 buf = &fileio->bufs[index];
Marek Szyprowskib25748f2010-12-06 05:56:55 -03002998 }
2999
3000 /*
3001 * Limit count on last few bytes of the buffer.
3002 */
3003 if (buf->pos + count > buf->size) {
3004 count = buf->size - buf->pos;
Mauro Carvalho Chehab08b99e22011-01-11 17:12:34 -03003005 dprintk(5, "reducing read count: %zd\n", count);
Marek Szyprowskib25748f2010-12-06 05:56:55 -03003006 }
3007
3008 /*
3009 * Transfer data to userspace.
3010 */
Hans Verkuilfd4354c2014-04-07 09:08:47 -03003011 dprintk(3, "copying %zd bytes - buffer %d, offset %u\n",
Marek Szyprowskib25748f2010-12-06 05:56:55 -03003012 count, index, buf->pos);
3013 if (read)
3014 ret = copy_to_user(data, buf->vaddr + buf->pos, count);
3015 else
3016 ret = copy_from_user(buf->vaddr + buf->pos, data, count);
3017 if (ret) {
Hans Verkuilfd4354c2014-04-07 09:08:47 -03003018 dprintk(3, "error copying data\n");
Hans Verkuilb2f2f042013-12-13 13:13:41 -03003019 return -EFAULT;
Marek Szyprowskib25748f2010-12-06 05:56:55 -03003020 }
3021
3022 /*
3023 * Update counters.
3024 */
3025 buf->pos += count;
3026 *ppos += count;
3027
3028 /*
3029 * Queue next buffer if required.
3030 */
3031 if (buf->pos == buf->size ||
3032 (!read && (fileio->flags & VB2_FILEIO_WRITE_IMMEDIATELY))) {
3033 /*
3034 * Check if this is the last buffer to read.
3035 */
3036 if (read && (fileio->flags & VB2_FILEIO_READ_ONCE) &&
3037 fileio->dq_count == 1) {
Hans Verkuilfd4354c2014-04-07 09:08:47 -03003038 dprintk(3, "read limit reached\n");
Marek Szyprowskib25748f2010-12-06 05:56:55 -03003039 return __vb2_cleanup_fileio(q);
3040 }
3041
3042 /*
3043 * Call vb2_qbuf and give buffer to the driver.
3044 */
3045 memset(&fileio->b, 0, sizeof(fileio->b));
3046 fileio->b.type = q->type;
3047 fileio->b.memory = q->memory;
3048 fileio->b.index = index;
3049 fileio->b.bytesused = buf->pos;
Hans Verkuil7bb6edd2014-04-11 04:40:03 -03003050 if (is_multiplanar) {
3051 memset(&fileio->p, 0, sizeof(fileio->p));
3052 fileio->p.bytesused = buf->pos;
3053 fileio->b.m.planes = &fileio->p;
3054 fileio->b.length = 1;
3055 }
Hans Verkuilebd7c502014-04-11 04:36:57 -03003056 if (set_timestamp)
3057 v4l2_get_timestamp(&fileio->b.timestamp);
Hans Verkuilb2f2f042013-12-13 13:13:41 -03003058 ret = vb2_internal_qbuf(q, &fileio->b);
Hans Verkuilfd4354c2014-04-07 09:08:47 -03003059 dprintk(5, "vb2_dbuf result: %d\n", ret);
Marek Szyprowskib25748f2010-12-06 05:56:55 -03003060 if (ret)
Hans Verkuilb2f2f042013-12-13 13:13:41 -03003061 return ret;
Marek Szyprowskib25748f2010-12-06 05:56:55 -03003062
3063 /*
3064 * Buffer has been queued, update the status
3065 */
3066 buf->pos = 0;
3067 buf->queued = 1;
Hans Verkuil88e26872013-12-13 13:13:45 -03003068 buf->size = vb2_plane_size(q->bufs[index], 0);
Marek Szyprowskib25748f2010-12-06 05:56:55 -03003069 fileio->q_count += 1;
Hans Verkuil4e5a4d82014-02-14 06:46:50 -03003070 /*
3071 * If we are queuing up buffers for the first time, then
3072 * increase initial_index by one.
3073 */
3074 if (fileio->initial_index < q->num_buffers)
3075 fileio->initial_index++;
3076 /*
3077 * The next buffer to use is either a buffer that's going to be
3078 * queued for the first time (initial_index < q->num_buffers)
3079 * or it is equal to q->num_buffers, meaning that the next
3080 * time we need to dequeue a buffer since we've now queued up
3081 * all the 'first time' buffers.
3082 */
3083 fileio->cur_index = fileio->initial_index;
Marek Szyprowskib25748f2010-12-06 05:56:55 -03003084 }
3085
3086 /*
3087 * Return proper number of bytes processed.
3088 */
3089 if (ret == 0)
3090 ret = count;
Marek Szyprowskib25748f2010-12-06 05:56:55 -03003091 return ret;
3092}
3093
3094size_t vb2_read(struct vb2_queue *q, char __user *data, size_t count,
3095 loff_t *ppos, int nonblocking)
3096{
3097 return __vb2_perform_fileio(q, data, count, ppos, nonblocking, 1);
3098}
3099EXPORT_SYMBOL_GPL(vb2_read);
3100
Ricardo Ribalda819585b2013-08-28 04:39:29 -03003101size_t vb2_write(struct vb2_queue *q, const char __user *data, size_t count,
Marek Szyprowskib25748f2010-12-06 05:56:55 -03003102 loff_t *ppos, int nonblocking)
3103{
Ricardo Ribalda819585b2013-08-28 04:39:29 -03003104 return __vb2_perform_fileio(q, (char __user *) data, count,
3105 ppos, nonblocking, 0);
Marek Szyprowskib25748f2010-12-06 05:56:55 -03003106}
3107EXPORT_SYMBOL_GPL(vb2_write);
3108
Hans Verkuil3415a892014-04-14 07:33:00 -03003109struct vb2_threadio_data {
3110 struct task_struct *thread;
3111 vb2_thread_fnc fnc;
3112 void *priv;
3113 bool stop;
3114};
3115
3116static int vb2_thread(void *data)
3117{
3118 struct vb2_queue *q = data;
3119 struct vb2_threadio_data *threadio = q->threadio;
3120 struct vb2_fileio_data *fileio = q->fileio;
3121 bool set_timestamp = false;
3122 int prequeue = 0;
3123 int index = 0;
3124 int ret = 0;
3125
3126 if (V4L2_TYPE_IS_OUTPUT(q->type)) {
3127 prequeue = q->num_buffers;
3128 set_timestamp =
3129 (q->timestamp_flags & V4L2_BUF_FLAG_TIMESTAMP_MASK) ==
3130 V4L2_BUF_FLAG_TIMESTAMP_COPY;
3131 }
3132
3133 set_freezable();
3134
3135 for (;;) {
3136 struct vb2_buffer *vb;
3137
3138 /*
3139 * Call vb2_dqbuf to get buffer back.
3140 */
3141 memset(&fileio->b, 0, sizeof(fileio->b));
3142 fileio->b.type = q->type;
3143 fileio->b.memory = q->memory;
3144 if (prequeue) {
3145 fileio->b.index = index++;
3146 prequeue--;
3147 } else {
3148 call_void_qop(q, wait_finish, q);
3149 ret = vb2_internal_dqbuf(q, &fileio->b, 0);
3150 call_void_qop(q, wait_prepare, q);
3151 dprintk(5, "file io: vb2_dqbuf result: %d\n", ret);
3152 }
3153 if (threadio->stop)
3154 break;
3155 if (ret)
3156 break;
3157 try_to_freeze();
3158
3159 vb = q->bufs[fileio->b.index];
3160 if (!(fileio->b.flags & V4L2_BUF_FLAG_ERROR))
3161 ret = threadio->fnc(vb, threadio->priv);
3162 if (ret)
3163 break;
3164 call_void_qop(q, wait_finish, q);
3165 if (set_timestamp)
3166 v4l2_get_timestamp(&fileio->b.timestamp);
3167 ret = vb2_internal_qbuf(q, &fileio->b);
3168 call_void_qop(q, wait_prepare, q);
3169 if (ret)
3170 break;
3171 }
3172
3173 /* Hmm, linux becomes *very* unhappy without this ... */
3174 while (!kthread_should_stop()) {
3175 set_current_state(TASK_INTERRUPTIBLE);
3176 schedule();
3177 }
3178 return 0;
3179}
3180
3181/*
3182 * This function should not be used for anything else but the videobuf2-dvb
3183 * support. If you think you have another good use-case for this, then please
3184 * contact the linux-media mailinglist first.
3185 */
3186int vb2_thread_start(struct vb2_queue *q, vb2_thread_fnc fnc, void *priv,
3187 const char *thread_name)
3188{
3189 struct vb2_threadio_data *threadio;
3190 int ret = 0;
3191
3192 if (q->threadio)
3193 return -EBUSY;
3194 if (vb2_is_busy(q))
3195 return -EBUSY;
3196 if (WARN_ON(q->fileio))
3197 return -EBUSY;
3198
3199 threadio = kzalloc(sizeof(*threadio), GFP_KERNEL);
3200 if (threadio == NULL)
3201 return -ENOMEM;
3202 threadio->fnc = fnc;
3203 threadio->priv = priv;
3204
3205 ret = __vb2_init_fileio(q, !V4L2_TYPE_IS_OUTPUT(q->type));
3206 dprintk(3, "file io: vb2_init_fileio result: %d\n", ret);
3207 if (ret)
3208 goto nomem;
3209 q->threadio = threadio;
3210 threadio->thread = kthread_run(vb2_thread, q, "vb2-%s", thread_name);
3211 if (IS_ERR(threadio->thread)) {
3212 ret = PTR_ERR(threadio->thread);
3213 threadio->thread = NULL;
3214 goto nothread;
3215 }
3216 return 0;
3217
3218nothread:
3219 __vb2_cleanup_fileio(q);
3220nomem:
3221 kfree(threadio);
3222 return ret;
3223}
3224EXPORT_SYMBOL_GPL(vb2_thread_start);
3225
3226int vb2_thread_stop(struct vb2_queue *q)
3227{
3228 struct vb2_threadio_data *threadio = q->threadio;
3229 struct vb2_fileio_data *fileio = q->fileio;
3230 int err;
3231
3232 if (threadio == NULL)
3233 return 0;
3234 call_void_qop(q, wait_finish, q);
3235 threadio->stop = true;
3236 vb2_internal_streamoff(q, q->type);
3237 call_void_qop(q, wait_prepare, q);
3238 q->fileio = NULL;
3239 fileio->req.count = 0;
3240 vb2_reqbufs(q, &fileio->req);
3241 kfree(fileio);
3242 err = kthread_stop(threadio->thread);
3243 threadio->thread = NULL;
3244 kfree(threadio);
3245 q->fileio = NULL;
3246 q->threadio = NULL;
3247 return err;
3248}
3249EXPORT_SYMBOL_GPL(vb2_thread_stop);
Hans Verkuil4c1ffca2012-07-02 05:59:18 -03003250
3251/*
3252 * The following functions are not part of the vb2 core API, but are helper
3253 * functions that plug into struct v4l2_ioctl_ops, struct v4l2_file_operations
3254 * and struct vb2_ops.
3255 * They contain boilerplate code that most if not all drivers have to do
3256 * and so they simplify the driver code.
3257 */
3258
3259/* The queue is busy if there is a owner and you are not that owner. */
3260static inline bool vb2_queue_is_busy(struct video_device *vdev, struct file *file)
3261{
3262 return vdev->queue->owner && vdev->queue->owner != file->private_data;
3263}
3264
3265/* vb2 ioctl helpers */
3266
3267int vb2_ioctl_reqbufs(struct file *file, void *priv,
3268 struct v4l2_requestbuffers *p)
3269{
3270 struct video_device *vdev = video_devdata(file);
3271 int res = __verify_memory_type(vdev->queue, p->memory, p->type);
3272
3273 if (res)
3274 return res;
3275 if (vb2_queue_is_busy(vdev, file))
3276 return -EBUSY;
3277 res = __reqbufs(vdev->queue, p);
3278 /* If count == 0, then the owner has released all buffers and he
3279 is no longer owner of the queue. Otherwise we have a new owner. */
3280 if (res == 0)
3281 vdev->queue->owner = p->count ? file->private_data : NULL;
3282 return res;
3283}
3284EXPORT_SYMBOL_GPL(vb2_ioctl_reqbufs);
3285
3286int vb2_ioctl_create_bufs(struct file *file, void *priv,
3287 struct v4l2_create_buffers *p)
3288{
3289 struct video_device *vdev = video_devdata(file);
3290 int res = __verify_memory_type(vdev->queue, p->memory, p->format.type);
3291
3292 p->index = vdev->queue->num_buffers;
3293 /* If count == 0, then just check if memory and type are valid.
3294 Any -EBUSY result from __verify_memory_type can be mapped to 0. */
3295 if (p->count == 0)
3296 return res != -EBUSY ? res : 0;
3297 if (res)
3298 return res;
3299 if (vb2_queue_is_busy(vdev, file))
3300 return -EBUSY;
3301 res = __create_bufs(vdev->queue, p);
3302 if (res == 0)
3303 vdev->queue->owner = file->private_data;
3304 return res;
3305}
3306EXPORT_SYMBOL_GPL(vb2_ioctl_create_bufs);
3307
3308int vb2_ioctl_prepare_buf(struct file *file, void *priv,
3309 struct v4l2_buffer *p)
3310{
3311 struct video_device *vdev = video_devdata(file);
3312
3313 if (vb2_queue_is_busy(vdev, file))
3314 return -EBUSY;
3315 return vb2_prepare_buf(vdev->queue, p);
3316}
3317EXPORT_SYMBOL_GPL(vb2_ioctl_prepare_buf);
3318
3319int vb2_ioctl_querybuf(struct file *file, void *priv, struct v4l2_buffer *p)
3320{
3321 struct video_device *vdev = video_devdata(file);
3322
3323 /* No need to call vb2_queue_is_busy(), anyone can query buffers. */
3324 return vb2_querybuf(vdev->queue, p);
3325}
3326EXPORT_SYMBOL_GPL(vb2_ioctl_querybuf);
3327
3328int vb2_ioctl_qbuf(struct file *file, void *priv, struct v4l2_buffer *p)
3329{
3330 struct video_device *vdev = video_devdata(file);
3331
3332 if (vb2_queue_is_busy(vdev, file))
3333 return -EBUSY;
3334 return vb2_qbuf(vdev->queue, p);
3335}
3336EXPORT_SYMBOL_GPL(vb2_ioctl_qbuf);
3337
3338int vb2_ioctl_dqbuf(struct file *file, void *priv, struct v4l2_buffer *p)
3339{
3340 struct video_device *vdev = video_devdata(file);
3341
3342 if (vb2_queue_is_busy(vdev, file))
3343 return -EBUSY;
3344 return vb2_dqbuf(vdev->queue, p, file->f_flags & O_NONBLOCK);
3345}
3346EXPORT_SYMBOL_GPL(vb2_ioctl_dqbuf);
3347
3348int vb2_ioctl_streamon(struct file *file, void *priv, enum v4l2_buf_type i)
3349{
3350 struct video_device *vdev = video_devdata(file);
3351
3352 if (vb2_queue_is_busy(vdev, file))
3353 return -EBUSY;
3354 return vb2_streamon(vdev->queue, i);
3355}
3356EXPORT_SYMBOL_GPL(vb2_ioctl_streamon);
3357
3358int vb2_ioctl_streamoff(struct file *file, void *priv, enum v4l2_buf_type i)
3359{
3360 struct video_device *vdev = video_devdata(file);
3361
3362 if (vb2_queue_is_busy(vdev, file))
3363 return -EBUSY;
3364 return vb2_streamoff(vdev->queue, i);
3365}
3366EXPORT_SYMBOL_GPL(vb2_ioctl_streamoff);
3367
Tomasz Stanislawski83ae7c52012-06-14 11:32:24 -03003368int vb2_ioctl_expbuf(struct file *file, void *priv, struct v4l2_exportbuffer *p)
3369{
3370 struct video_device *vdev = video_devdata(file);
3371
3372 if (vb2_queue_is_busy(vdev, file))
3373 return -EBUSY;
3374 return vb2_expbuf(vdev->queue, p);
3375}
3376EXPORT_SYMBOL_GPL(vb2_ioctl_expbuf);
3377
Hans Verkuil4c1ffca2012-07-02 05:59:18 -03003378/* v4l2_file_operations helpers */
3379
3380int vb2_fop_mmap(struct file *file, struct vm_area_struct *vma)
3381{
3382 struct video_device *vdev = video_devdata(file);
3383
Hans Verkuilf035eb42014-08-07 03:47:14 -03003384 return vb2_mmap(vdev->queue, vma);
Hans Verkuil4c1ffca2012-07-02 05:59:18 -03003385}
3386EXPORT_SYMBOL_GPL(vb2_fop_mmap);
3387
Ricardo Ribalda1380f572013-11-25 05:49:02 -03003388int _vb2_fop_release(struct file *file, struct mutex *lock)
Hans Verkuil4c1ffca2012-07-02 05:59:18 -03003389{
3390 struct video_device *vdev = video_devdata(file);
3391
3392 if (file->private_data == vdev->queue->owner) {
Ricardo Ribalda1380f572013-11-25 05:49:02 -03003393 if (lock)
3394 mutex_lock(lock);
Hans Verkuil4c1ffca2012-07-02 05:59:18 -03003395 vb2_queue_release(vdev->queue);
3396 vdev->queue->owner = NULL;
Ricardo Ribalda1380f572013-11-25 05:49:02 -03003397 if (lock)
3398 mutex_unlock(lock);
Hans Verkuil4c1ffca2012-07-02 05:59:18 -03003399 }
3400 return v4l2_fh_release(file);
3401}
Ricardo Ribalda1380f572013-11-25 05:49:02 -03003402EXPORT_SYMBOL_GPL(_vb2_fop_release);
3403
3404int vb2_fop_release(struct file *file)
3405{
3406 struct video_device *vdev = video_devdata(file);
3407 struct mutex *lock = vdev->queue->lock ? vdev->queue->lock : vdev->lock;
3408
3409 return _vb2_fop_release(file, lock);
3410}
Hans Verkuil4c1ffca2012-07-02 05:59:18 -03003411EXPORT_SYMBOL_GPL(vb2_fop_release);
3412
Ricardo Ribalda819585b2013-08-28 04:39:29 -03003413ssize_t vb2_fop_write(struct file *file, const char __user *buf,
Hans Verkuil4c1ffca2012-07-02 05:59:18 -03003414 size_t count, loff_t *ppos)
3415{
3416 struct video_device *vdev = video_devdata(file);
3417 struct mutex *lock = vdev->queue->lock ? vdev->queue->lock : vdev->lock;
Hans Verkuil4c1ffca2012-07-02 05:59:18 -03003418 int err = -EBUSY;
3419
Hans Verkuilcf533732012-07-31 04:02:25 -03003420 if (lock && mutex_lock_interruptible(lock))
Hans Verkuil4c1ffca2012-07-02 05:59:18 -03003421 return -ERESTARTSYS;
3422 if (vb2_queue_is_busy(vdev, file))
3423 goto exit;
3424 err = vb2_write(vdev->queue, buf, count, ppos,
3425 file->f_flags & O_NONBLOCK);
Hans Verkuil8c82c752012-09-07 12:50:02 -03003426 if (vdev->queue->fileio)
Hans Verkuil4c1ffca2012-07-02 05:59:18 -03003427 vdev->queue->owner = file->private_data;
3428exit:
Hans Verkuilcf533732012-07-31 04:02:25 -03003429 if (lock)
Hans Verkuil4c1ffca2012-07-02 05:59:18 -03003430 mutex_unlock(lock);
3431 return err;
3432}
3433EXPORT_SYMBOL_GPL(vb2_fop_write);
3434
3435ssize_t vb2_fop_read(struct file *file, char __user *buf,
3436 size_t count, loff_t *ppos)
3437{
3438 struct video_device *vdev = video_devdata(file);
3439 struct mutex *lock = vdev->queue->lock ? vdev->queue->lock : vdev->lock;
Hans Verkuil4c1ffca2012-07-02 05:59:18 -03003440 int err = -EBUSY;
3441
Hans Verkuilcf533732012-07-31 04:02:25 -03003442 if (lock && mutex_lock_interruptible(lock))
Hans Verkuil4c1ffca2012-07-02 05:59:18 -03003443 return -ERESTARTSYS;
3444 if (vb2_queue_is_busy(vdev, file))
3445 goto exit;
3446 err = vb2_read(vdev->queue, buf, count, ppos,
3447 file->f_flags & O_NONBLOCK);
Hans Verkuil8c82c752012-09-07 12:50:02 -03003448 if (vdev->queue->fileio)
Hans Verkuil4c1ffca2012-07-02 05:59:18 -03003449 vdev->queue->owner = file->private_data;
3450exit:
Hans Verkuilcf533732012-07-31 04:02:25 -03003451 if (lock)
Hans Verkuil4c1ffca2012-07-02 05:59:18 -03003452 mutex_unlock(lock);
3453 return err;
3454}
3455EXPORT_SYMBOL_GPL(vb2_fop_read);
3456
3457unsigned int vb2_fop_poll(struct file *file, poll_table *wait)
3458{
3459 struct video_device *vdev = video_devdata(file);
3460 struct vb2_queue *q = vdev->queue;
3461 struct mutex *lock = q->lock ? q->lock : vdev->lock;
3462 unsigned long req_events = poll_requested_events(wait);
3463 unsigned res;
3464 void *fileio;
Hans Verkuil4c1ffca2012-07-02 05:59:18 -03003465 bool must_lock = false;
3466
3467 /* Try to be smart: only lock if polling might start fileio,
3468 otherwise locking will only introduce unwanted delays. */
Hans Verkuil74753cffa2014-04-07 09:23:50 -03003469 if (q->num_buffers == 0 && !vb2_fileio_is_active(q)) {
Hans Verkuil4c1ffca2012-07-02 05:59:18 -03003470 if (!V4L2_TYPE_IS_OUTPUT(q->type) && (q->io_modes & VB2_READ) &&
3471 (req_events & (POLLIN | POLLRDNORM)))
3472 must_lock = true;
3473 else if (V4L2_TYPE_IS_OUTPUT(q->type) && (q->io_modes & VB2_WRITE) &&
3474 (req_events & (POLLOUT | POLLWRNORM)))
3475 must_lock = true;
3476 }
3477
3478 /* If locking is needed, but this helper doesn't know how, then you
3479 shouldn't be using this helper but you should write your own. */
Hans Verkuilcf533732012-07-31 04:02:25 -03003480 WARN_ON(must_lock && !lock);
Hans Verkuil4c1ffca2012-07-02 05:59:18 -03003481
Hans Verkuilcf533732012-07-31 04:02:25 -03003482 if (must_lock && lock && mutex_lock_interruptible(lock))
Hans Verkuil4c1ffca2012-07-02 05:59:18 -03003483 return POLLERR;
3484
3485 fileio = q->fileio;
3486
3487 res = vb2_poll(vdev->queue, file, wait);
3488
3489 /* If fileio was started, then we have a new queue owner. */
3490 if (must_lock && !fileio && q->fileio)
3491 q->owner = file->private_data;
Hans Verkuilcf533732012-07-31 04:02:25 -03003492 if (must_lock && lock)
Hans Verkuil4c1ffca2012-07-02 05:59:18 -03003493 mutex_unlock(lock);
3494 return res;
3495}
3496EXPORT_SYMBOL_GPL(vb2_fop_poll);
3497
3498#ifndef CONFIG_MMU
3499unsigned long vb2_fop_get_unmapped_area(struct file *file, unsigned long addr,
3500 unsigned long len, unsigned long pgoff, unsigned long flags)
3501{
3502 struct video_device *vdev = video_devdata(file);
3503
Hans Verkuilf035eb42014-08-07 03:47:14 -03003504 return vb2_get_unmapped_area(vdev->queue, addr, len, pgoff, flags);
Hans Verkuil4c1ffca2012-07-02 05:59:18 -03003505}
3506EXPORT_SYMBOL_GPL(vb2_fop_get_unmapped_area);
3507#endif
3508
3509/* vb2_ops helpers. Only use if vq->lock is non-NULL. */
3510
3511void vb2_ops_wait_prepare(struct vb2_queue *vq)
3512{
3513 mutex_unlock(vq->lock);
3514}
3515EXPORT_SYMBOL_GPL(vb2_ops_wait_prepare);
3516
3517void vb2_ops_wait_finish(struct vb2_queue *vq)
3518{
3519 mutex_lock(vq->lock);
3520}
3521EXPORT_SYMBOL_GPL(vb2_ops_wait_finish);
3522
Pawel Osciake23ccc02010-10-11 10:56:41 -03003523MODULE_DESCRIPTION("Driver helper framework for Video for Linux 2");
Pawel Osciak95072082011-03-13 15:23:32 -03003524MODULE_AUTHOR("Pawel Osciak <pawel@osciak.com>, Marek Szyprowski");
Pawel Osciake23ccc02010-10-11 10:56:41 -03003525MODULE_LICENSE("GPL");