blob: a3a9bf908d84745716f9cd6ab4248a1f22d5e3fc [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 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation.
12 */
13
14#include <linux/err.h>
15#include <linux/kernel.h>
16#include <linux/module.h>
17#include <linux/mm.h>
18#include <linux/poll.h>
19#include <linux/slab.h>
20#include <linux/sched.h>
21
22#include <media/videobuf2-core.h>
23
24static int debug;
25module_param(debug, int, 0644);
26
27#define dprintk(level, fmt, arg...) \
28 do { \
29 if (debug >= level) \
30 printk(KERN_DEBUG "vb2: " fmt, ## arg); \
31 } while (0)
32
33#define call_memop(q, plane, op, args...) \
34 (((q)->mem_ops->op) ? \
35 ((q)->mem_ops->op(args)) : 0)
36
37#define call_qop(q, op, args...) \
38 (((q)->ops->op) ? ((q)->ops->op(args)) : 0)
39
Marek Szyprowskiea42c8e2011-04-12 10:14:13 -030040#define V4L2_BUFFER_STATE_FLAGS (V4L2_BUF_FLAG_MAPPED | V4L2_BUF_FLAG_QUEUED | \
Guennadi Liakhovetski2d864012011-09-28 09:23:02 -030041 V4L2_BUF_FLAG_DONE | V4L2_BUF_FLAG_ERROR | \
42 V4L2_BUF_FLAG_PREPARED)
Marek Szyprowskiea42c8e2011-04-12 10:14:13 -030043
Pawel Osciake23ccc02010-10-11 10:56:41 -030044/**
45 * __vb2_buf_mem_alloc() - allocate video memory for the given buffer
46 */
Marek Szyprowskic1426bc2011-08-24 06:36:26 -030047static int __vb2_buf_mem_alloc(struct vb2_buffer *vb)
Pawel Osciake23ccc02010-10-11 10:56:41 -030048{
49 struct vb2_queue *q = vb->vb2_queue;
50 void *mem_priv;
51 int plane;
52
53 /* Allocate memory for all planes in this buffer */
54 for (plane = 0; plane < vb->num_planes; ++plane) {
55 mem_priv = call_memop(q, plane, alloc, q->alloc_ctx[plane],
Marek Szyprowskic1426bc2011-08-24 06:36:26 -030056 q->plane_sizes[plane]);
Guennadi Liakhovetski62a79432011-03-22 09:24:58 -030057 if (IS_ERR_OR_NULL(mem_priv))
Pawel Osciake23ccc02010-10-11 10:56:41 -030058 goto free;
59
60 /* Associate allocator private data with this plane */
61 vb->planes[plane].mem_priv = mem_priv;
Marek Szyprowskic1426bc2011-08-24 06:36:26 -030062 vb->v4l2_planes[plane].length = q->plane_sizes[plane];
Pawel Osciake23ccc02010-10-11 10:56:41 -030063 }
64
65 return 0;
66free:
67 /* Free already allocated memory if one of the allocations failed */
68 for (; plane > 0; --plane)
69 call_memop(q, plane, put, vb->planes[plane - 1].mem_priv);
70
71 return -ENOMEM;
72}
73
74/**
75 * __vb2_buf_mem_free() - free memory of the given buffer
76 */
77static void __vb2_buf_mem_free(struct vb2_buffer *vb)
78{
79 struct vb2_queue *q = vb->vb2_queue;
80 unsigned int plane;
81
82 for (plane = 0; plane < vb->num_planes; ++plane) {
83 call_memop(q, plane, put, vb->planes[plane].mem_priv);
84 vb->planes[plane].mem_priv = NULL;
85 dprintk(3, "Freed plane %d of buffer %d\n",
86 plane, vb->v4l2_buf.index);
87 }
88}
89
90/**
91 * __vb2_buf_userptr_put() - release userspace memory associated with
92 * a USERPTR buffer
93 */
94static void __vb2_buf_userptr_put(struct vb2_buffer *vb)
95{
96 struct vb2_queue *q = vb->vb2_queue;
97 unsigned int plane;
98
99 for (plane = 0; plane < vb->num_planes; ++plane) {
100 void *mem_priv = vb->planes[plane].mem_priv;
101
102 if (mem_priv) {
103 call_memop(q, plane, put_userptr, mem_priv);
104 vb->planes[plane].mem_priv = NULL;
105 }
106 }
107}
108
109/**
110 * __setup_offsets() - setup unique offsets ("cookies") for every plane in
111 * every buffer on the queue
112 */
Guennadi Liakhovetski2d864012011-09-28 09:23:02 -0300113static void __setup_offsets(struct vb2_queue *q, unsigned int n)
Pawel Osciake23ccc02010-10-11 10:56:41 -0300114{
115 unsigned int buffer, plane;
116 struct vb2_buffer *vb;
Guennadi Liakhovetski2d864012011-09-28 09:23:02 -0300117 unsigned long off;
Pawel Osciake23ccc02010-10-11 10:56:41 -0300118
Guennadi Liakhovetski2d864012011-09-28 09:23:02 -0300119 if (q->num_buffers) {
120 struct v4l2_plane *p;
121 vb = q->bufs[q->num_buffers - 1];
122 p = &vb->v4l2_planes[vb->num_planes - 1];
123 off = PAGE_ALIGN(p->m.mem_offset + p->length);
124 } else {
125 off = 0;
126 }
127
128 for (buffer = q->num_buffers; buffer < q->num_buffers + n; ++buffer) {
Pawel Osciake23ccc02010-10-11 10:56:41 -0300129 vb = q->bufs[buffer];
130 if (!vb)
131 continue;
132
133 for (plane = 0; plane < vb->num_planes; ++plane) {
Marek Szyprowski49076022011-10-13 07:07:24 -0300134 vb->v4l2_planes[plane].length = q->plane_sizes[plane];
Pawel Osciake23ccc02010-10-11 10:56:41 -0300135 vb->v4l2_planes[plane].m.mem_offset = off;
136
137 dprintk(3, "Buffer %d, plane %d offset 0x%08lx\n",
138 buffer, plane, off);
139
140 off += vb->v4l2_planes[plane].length;
141 off = PAGE_ALIGN(off);
142 }
143 }
144}
145
146/**
147 * __vb2_queue_alloc() - allocate videobuf buffer structures and (for MMAP type)
148 * video buffer memory for all buffers/planes on the queue and initializes the
149 * queue
150 *
151 * Returns the number of buffers successfully allocated.
152 */
153static int __vb2_queue_alloc(struct vb2_queue *q, enum v4l2_memory memory,
Marek Szyprowskic1426bc2011-08-24 06:36:26 -0300154 unsigned int num_buffers, unsigned int num_planes)
Pawel Osciake23ccc02010-10-11 10:56:41 -0300155{
156 unsigned int buffer;
157 struct vb2_buffer *vb;
158 int ret;
159
160 for (buffer = 0; buffer < num_buffers; ++buffer) {
161 /* Allocate videobuf buffer structures */
162 vb = kzalloc(q->buf_struct_size, GFP_KERNEL);
163 if (!vb) {
164 dprintk(1, "Memory alloc for buffer struct failed\n");
165 break;
166 }
167
168 /* Length stores number of planes for multiplanar buffers */
169 if (V4L2_TYPE_IS_MULTIPLANAR(q->type))
170 vb->v4l2_buf.length = num_planes;
171
172 vb->state = VB2_BUF_STATE_DEQUEUED;
173 vb->vb2_queue = q;
174 vb->num_planes = num_planes;
Guennadi Liakhovetski2d864012011-09-28 09:23:02 -0300175 vb->v4l2_buf.index = q->num_buffers + buffer;
Pawel Osciake23ccc02010-10-11 10:56:41 -0300176 vb->v4l2_buf.type = q->type;
177 vb->v4l2_buf.memory = memory;
178
179 /* Allocate video buffer memory for the MMAP type */
180 if (memory == V4L2_MEMORY_MMAP) {
Marek Szyprowskic1426bc2011-08-24 06:36:26 -0300181 ret = __vb2_buf_mem_alloc(vb);
Pawel Osciake23ccc02010-10-11 10:56:41 -0300182 if (ret) {
183 dprintk(1, "Failed allocating memory for "
184 "buffer %d\n", buffer);
185 kfree(vb);
186 break;
187 }
188 /*
189 * Call the driver-provided buffer initialization
190 * callback, if given. An error in initialization
191 * results in queue setup failure.
192 */
193 ret = call_qop(q, buf_init, vb);
194 if (ret) {
195 dprintk(1, "Buffer %d %p initialization"
196 " failed\n", buffer, vb);
197 __vb2_buf_mem_free(vb);
198 kfree(vb);
199 break;
200 }
201 }
202
Guennadi Liakhovetski2d864012011-09-28 09:23:02 -0300203 q->bufs[q->num_buffers + buffer] = vb;
Pawel Osciake23ccc02010-10-11 10:56:41 -0300204 }
205
Guennadi Liakhovetski2d864012011-09-28 09:23:02 -0300206 __setup_offsets(q, buffer);
Pawel Osciake23ccc02010-10-11 10:56:41 -0300207
208 dprintk(1, "Allocated %d buffers, %d plane(s) each\n",
Guennadi Liakhovetski2d864012011-09-28 09:23:02 -0300209 buffer, num_planes);
Pawel Osciake23ccc02010-10-11 10:56:41 -0300210
211 return buffer;
212}
213
214/**
215 * __vb2_free_mem() - release all video buffer memory for a given queue
216 */
Guennadi Liakhovetski2d864012011-09-28 09:23:02 -0300217static void __vb2_free_mem(struct vb2_queue *q, unsigned int buffers)
Pawel Osciake23ccc02010-10-11 10:56:41 -0300218{
219 unsigned int buffer;
220 struct vb2_buffer *vb;
221
Guennadi Liakhovetski2d864012011-09-28 09:23:02 -0300222 for (buffer = q->num_buffers - buffers; buffer < q->num_buffers;
223 ++buffer) {
Pawel Osciake23ccc02010-10-11 10:56:41 -0300224 vb = q->bufs[buffer];
225 if (!vb)
226 continue;
227
228 /* Free MMAP buffers or release USERPTR buffers */
229 if (q->memory == V4L2_MEMORY_MMAP)
230 __vb2_buf_mem_free(vb);
231 else
232 __vb2_buf_userptr_put(vb);
233 }
234}
235
236/**
Guennadi Liakhovetski2d864012011-09-28 09:23:02 -0300237 * __vb2_queue_free() - free buffers at the end of the queue - video memory and
238 * related information, if no buffers are left return the queue to an
239 * uninitialized state. Might be called even if the queue has already been freed.
Pawel Osciake23ccc02010-10-11 10:56:41 -0300240 */
Guennadi Liakhovetski2d864012011-09-28 09:23:02 -0300241static void __vb2_queue_free(struct vb2_queue *q, unsigned int buffers)
Pawel Osciake23ccc02010-10-11 10:56:41 -0300242{
243 unsigned int buffer;
244
245 /* Call driver-provided cleanup function for each buffer, if provided */
246 if (q->ops->buf_cleanup) {
Guennadi Liakhovetski2d864012011-09-28 09:23:02 -0300247 for (buffer = q->num_buffers - buffers; buffer < q->num_buffers;
248 ++buffer) {
Pawel Osciake23ccc02010-10-11 10:56:41 -0300249 if (NULL == q->bufs[buffer])
250 continue;
251 q->ops->buf_cleanup(q->bufs[buffer]);
252 }
253 }
254
255 /* Release video buffer memory */
Guennadi Liakhovetski2d864012011-09-28 09:23:02 -0300256 __vb2_free_mem(q, buffers);
Pawel Osciake23ccc02010-10-11 10:56:41 -0300257
258 /* Free videobuf buffers */
Guennadi Liakhovetski2d864012011-09-28 09:23:02 -0300259 for (buffer = q->num_buffers - buffers; buffer < q->num_buffers;
260 ++buffer) {
Pawel Osciake23ccc02010-10-11 10:56:41 -0300261 kfree(q->bufs[buffer]);
262 q->bufs[buffer] = NULL;
263 }
264
Guennadi Liakhovetski2d864012011-09-28 09:23:02 -0300265 q->num_buffers -= buffers;
266 if (!q->num_buffers)
267 q->memory = 0;
Marek Szyprowskibd50d992011-10-25 03:07:59 -0300268 INIT_LIST_HEAD(&q->queued_list);
Pawel Osciake23ccc02010-10-11 10:56:41 -0300269}
270
271/**
272 * __verify_planes_array() - verify that the planes array passed in struct
273 * v4l2_buffer from userspace can be safely used
274 */
Guennadi Liakhovetski2d864012011-09-28 09:23:02 -0300275static int __verify_planes_array(struct vb2_buffer *vb, const struct v4l2_buffer *b)
Pawel Osciake23ccc02010-10-11 10:56:41 -0300276{
277 /* Is memory for copying plane information present? */
278 if (NULL == b->m.planes) {
279 dprintk(1, "Multi-planar buffer passed but "
280 "planes array not provided\n");
281 return -EINVAL;
282 }
283
284 if (b->length < vb->num_planes || b->length > VIDEO_MAX_PLANES) {
285 dprintk(1, "Incorrect planes array length, "
286 "expected %d, got %d\n", vb->num_planes, b->length);
287 return -EINVAL;
288 }
289
290 return 0;
291}
292
293/**
Marek Szyprowski25a27d92011-08-24 06:49:35 -0300294 * __buffer_in_use() - return true if the buffer is in use and
295 * the queue cannot be freed (by the means of REQBUFS(0)) call
296 */
297static bool __buffer_in_use(struct vb2_queue *q, struct vb2_buffer *vb)
298{
299 unsigned int plane;
300 for (plane = 0; plane < vb->num_planes; ++plane) {
Marek Szyprowski2c2dd6ac2011-10-12 13:09:53 -0300301 void *mem_priv = vb->planes[plane].mem_priv;
Marek Szyprowski25a27d92011-08-24 06:49:35 -0300302 /*
303 * If num_users() has not been provided, call_memop
304 * will return 0, apparently nobody cares about this
305 * case anyway. If num_users() returns more than 1,
306 * we are not the only user of the plane's memory.
307 */
Marek Szyprowski2c2dd6ac2011-10-12 13:09:53 -0300308 if (mem_priv && call_memop(q, plane, num_users, mem_priv) > 1)
Marek Szyprowski25a27d92011-08-24 06:49:35 -0300309 return true;
310 }
311 return false;
312}
313
314/**
315 * __buffers_in_use() - return true if any buffers on the queue are in use and
316 * the queue cannot be freed (by the means of REQBUFS(0)) call
317 */
318static bool __buffers_in_use(struct vb2_queue *q)
319{
320 unsigned int buffer;
321 for (buffer = 0; buffer < q->num_buffers; ++buffer) {
322 if (__buffer_in_use(q, q->bufs[buffer]))
323 return true;
324 }
325 return false;
326}
327
328/**
Pawel Osciake23ccc02010-10-11 10:56:41 -0300329 * __fill_v4l2_buffer() - fill in a struct v4l2_buffer with information to be
330 * returned to userspace
331 */
332static int __fill_v4l2_buffer(struct vb2_buffer *vb, struct v4l2_buffer *b)
333{
334 struct vb2_queue *q = vb->vb2_queue;
Guennadi Liakhovetski2d864012011-09-28 09:23:02 -0300335 int ret;
Pawel Osciake23ccc02010-10-11 10:56:41 -0300336
Marek Szyprowskiea42c8e2011-04-12 10:14:13 -0300337 /* Copy back data such as timestamp, flags, input, etc. */
Pawel Osciake23ccc02010-10-11 10:56:41 -0300338 memcpy(b, &vb->v4l2_buf, offsetof(struct v4l2_buffer, m));
339 b->input = vb->v4l2_buf.input;
340 b->reserved = vb->v4l2_buf.reserved;
341
342 if (V4L2_TYPE_IS_MULTIPLANAR(q->type)) {
343 ret = __verify_planes_array(vb, b);
344 if (ret)
345 return ret;
346
347 /*
348 * Fill in plane-related data if userspace provided an array
349 * for it. The memory and size is verified above.
350 */
351 memcpy(b->m.planes, vb->v4l2_planes,
352 b->length * sizeof(struct v4l2_plane));
353 } else {
354 /*
355 * We use length and offset in v4l2_planes array even for
356 * single-planar buffers, but userspace does not.
357 */
358 b->length = vb->v4l2_planes[0].length;
359 b->bytesused = vb->v4l2_planes[0].bytesused;
360 if (q->memory == V4L2_MEMORY_MMAP)
361 b->m.offset = vb->v4l2_planes[0].m.mem_offset;
362 else if (q->memory == V4L2_MEMORY_USERPTR)
363 b->m.userptr = vb->v4l2_planes[0].m.userptr;
364 }
365
Marek Szyprowskiea42c8e2011-04-12 10:14:13 -0300366 /*
367 * Clear any buffer state related flags.
368 */
369 b->flags &= ~V4L2_BUFFER_STATE_FLAGS;
Pawel Osciake23ccc02010-10-11 10:56:41 -0300370
371 switch (vb->state) {
372 case VB2_BUF_STATE_QUEUED:
373 case VB2_BUF_STATE_ACTIVE:
374 b->flags |= V4L2_BUF_FLAG_QUEUED;
375 break;
376 case VB2_BUF_STATE_ERROR:
377 b->flags |= V4L2_BUF_FLAG_ERROR;
378 /* fall through */
379 case VB2_BUF_STATE_DONE:
380 b->flags |= V4L2_BUF_FLAG_DONE;
381 break;
Guennadi Liakhovetskiebc087d2011-08-31 06:51:10 -0300382 case VB2_BUF_STATE_PREPARED:
Guennadi Liakhovetski2d864012011-09-28 09:23:02 -0300383 b->flags |= V4L2_BUF_FLAG_PREPARED;
384 break;
385 case VB2_BUF_STATE_DEQUEUED:
Pawel Osciake23ccc02010-10-11 10:56:41 -0300386 /* nothing */
387 break;
388 }
389
Marek Szyprowski25a27d92011-08-24 06:49:35 -0300390 if (__buffer_in_use(q, vb))
Pawel Osciake23ccc02010-10-11 10:56:41 -0300391 b->flags |= V4L2_BUF_FLAG_MAPPED;
392
Guennadi Liakhovetski2d864012011-09-28 09:23:02 -0300393 return 0;
Pawel Osciake23ccc02010-10-11 10:56:41 -0300394}
395
396/**
397 * vb2_querybuf() - query video buffer information
398 * @q: videobuf queue
399 * @b: buffer struct passed from userspace to vidioc_querybuf handler
400 * in driver
401 *
402 * Should be called from vidioc_querybuf ioctl handler in driver.
403 * This function will verify the passed v4l2_buffer structure and fill the
404 * relevant information for the userspace.
405 *
406 * The return values from this function are intended to be directly returned
407 * from vidioc_querybuf handler in driver.
408 */
409int vb2_querybuf(struct vb2_queue *q, struct v4l2_buffer *b)
410{
411 struct vb2_buffer *vb;
412
413 if (b->type != q->type) {
414 dprintk(1, "querybuf: wrong buffer type\n");
415 return -EINVAL;
416 }
417
418 if (b->index >= q->num_buffers) {
419 dprintk(1, "querybuf: buffer index out of range\n");
420 return -EINVAL;
421 }
422 vb = q->bufs[b->index];
423
424 return __fill_v4l2_buffer(vb, b);
425}
426EXPORT_SYMBOL(vb2_querybuf);
427
428/**
429 * __verify_userptr_ops() - verify that all memory operations required for
430 * USERPTR queue type have been provided
431 */
432static int __verify_userptr_ops(struct vb2_queue *q)
433{
434 if (!(q->io_modes & VB2_USERPTR) || !q->mem_ops->get_userptr ||
435 !q->mem_ops->put_userptr)
436 return -EINVAL;
437
438 return 0;
439}
440
441/**
442 * __verify_mmap_ops() - verify that all memory operations required for
443 * MMAP queue type have been provided
444 */
445static int __verify_mmap_ops(struct vb2_queue *q)
446{
447 if (!(q->io_modes & VB2_MMAP) || !q->mem_ops->alloc ||
448 !q->mem_ops->put || !q->mem_ops->mmap)
449 return -EINVAL;
450
451 return 0;
452}
453
454/**
Pawel Osciake23ccc02010-10-11 10:56:41 -0300455 * vb2_reqbufs() - Initiate streaming
456 * @q: videobuf2 queue
457 * @req: struct passed from userspace to vidioc_reqbufs handler in driver
458 *
459 * Should be called from vidioc_reqbufs ioctl handler of a driver.
460 * This function:
461 * 1) verifies streaming parameters passed from the userspace,
462 * 2) sets up the queue,
463 * 3) negotiates number of buffers and planes per buffer with the driver
464 * to be used during streaming,
465 * 4) allocates internal buffer structures (struct vb2_buffer), according to
466 * the agreed parameters,
467 * 5) for MMAP memory type, allocates actual video memory, using the
468 * memory handling/allocation routines provided during queue initialization
469 *
470 * If req->count is 0, all the memory will be freed instead.
471 * If the queue has been allocated previously (by a previous vb2_reqbufs) call
472 * and the queue is not busy, memory will be reallocated.
473 *
474 * The return values from this function are intended to be directly returned
475 * from vidioc_reqbufs handler in driver.
476 */
477int vb2_reqbufs(struct vb2_queue *q, struct v4l2_requestbuffers *req)
478{
Guennadi Liakhovetski2d864012011-09-28 09:23:02 -0300479 unsigned int num_buffers, allocated_buffers, num_planes = 0;
Pawel Osciake23ccc02010-10-11 10:56:41 -0300480 int ret = 0;
481
Marek Szyprowskib25748f2010-12-06 05:56:55 -0300482 if (q->fileio) {
483 dprintk(1, "reqbufs: file io in progress\n");
484 return -EBUSY;
485 }
486
Pawel Osciake23ccc02010-10-11 10:56:41 -0300487 if (req->memory != V4L2_MEMORY_MMAP
488 && req->memory != V4L2_MEMORY_USERPTR) {
489 dprintk(1, "reqbufs: unsupported memory type\n");
490 return -EINVAL;
491 }
492
493 if (req->type != q->type) {
494 dprintk(1, "reqbufs: requested type is incorrect\n");
495 return -EINVAL;
496 }
497
498 if (q->streaming) {
499 dprintk(1, "reqbufs: streaming active\n");
500 return -EBUSY;
501 }
502
503 /*
504 * Make sure all the required memory ops for given memory type
505 * are available.
506 */
507 if (req->memory == V4L2_MEMORY_MMAP && __verify_mmap_ops(q)) {
508 dprintk(1, "reqbufs: MMAP for current setup unsupported\n");
509 return -EINVAL;
510 }
511
512 if (req->memory == V4L2_MEMORY_USERPTR && __verify_userptr_ops(q)) {
513 dprintk(1, "reqbufs: USERPTR for current setup unsupported\n");
514 return -EINVAL;
515 }
516
Marek Szyprowski29e3fbd2011-03-09 14:03:24 -0300517 if (req->count == 0 || q->num_buffers != 0 || q->memory != req->memory) {
Pawel Osciake23ccc02010-10-11 10:56:41 -0300518 /*
519 * We already have buffers allocated, so first check if they
520 * are not in use and can be freed.
521 */
522 if (q->memory == V4L2_MEMORY_MMAP && __buffers_in_use(q)) {
523 dprintk(1, "reqbufs: memory in use, cannot free\n");
524 return -EBUSY;
525 }
526
Guennadi Liakhovetski2d864012011-09-28 09:23:02 -0300527 __vb2_queue_free(q, q->num_buffers);
Marek Szyprowski29e3fbd2011-03-09 14:03:24 -0300528
529 /*
530 * In case of REQBUFS(0) return immediately without calling
531 * driver's queue_setup() callback and allocating resources.
532 */
533 if (req->count == 0)
534 return 0;
Pawel Osciake23ccc02010-10-11 10:56:41 -0300535 }
536
537 /*
538 * Make sure the requested values and current defaults are sane.
539 */
540 num_buffers = min_t(unsigned int, req->count, VIDEO_MAX_FRAME);
Marek Szyprowskic1426bc2011-08-24 06:36:26 -0300541 memset(q->plane_sizes, 0, sizeof(q->plane_sizes));
Pawel Osciake23ccc02010-10-11 10:56:41 -0300542 memset(q->alloc_ctx, 0, sizeof(q->alloc_ctx));
Marek Szyprowski13b14092011-04-14 07:17:44 -0300543 q->memory = req->memory;
Pawel Osciake23ccc02010-10-11 10:56:41 -0300544
545 /*
546 * Ask the driver how many buffers and planes per buffer it requires.
547 * Driver also sets the size and allocator context for each plane.
548 */
Guennadi Liakhovetskifc714e72011-08-24 10:30:21 -0300549 ret = call_qop(q, queue_setup, q, NULL, &num_buffers, &num_planes,
Marek Szyprowskic1426bc2011-08-24 06:36:26 -0300550 q->plane_sizes, q->alloc_ctx);
Pawel Osciake23ccc02010-10-11 10:56:41 -0300551 if (ret)
552 return ret;
553
554 /* Finally, allocate buffers and video memory */
Marek Szyprowskic1426bc2011-08-24 06:36:26 -0300555 ret = __vb2_queue_alloc(q, req->memory, num_buffers, num_planes);
Marek Szyprowski66072d42011-06-28 08:29:02 -0300556 if (ret == 0) {
557 dprintk(1, "Memory allocation failed\n");
558 return -ENOMEM;
Pawel Osciake23ccc02010-10-11 10:56:41 -0300559 }
560
Guennadi Liakhovetski2d864012011-09-28 09:23:02 -0300561 allocated_buffers = ret;
562
Pawel Osciake23ccc02010-10-11 10:56:41 -0300563 /*
564 * Check if driver can handle the allocated number of buffers.
565 */
Guennadi Liakhovetski2d864012011-09-28 09:23:02 -0300566 if (allocated_buffers < num_buffers) {
567 num_buffers = allocated_buffers;
Pawel Osciake23ccc02010-10-11 10:56:41 -0300568
Guennadi Liakhovetskifc714e72011-08-24 10:30:21 -0300569 ret = call_qop(q, queue_setup, q, NULL, &num_buffers,
570 &num_planes, q->plane_sizes, q->alloc_ctx);
Pawel Osciake23ccc02010-10-11 10:56:41 -0300571
Guennadi Liakhovetski2d864012011-09-28 09:23:02 -0300572 if (!ret && allocated_buffers < num_buffers)
Pawel Osciake23ccc02010-10-11 10:56:41 -0300573 ret = -ENOMEM;
Pawel Osciake23ccc02010-10-11 10:56:41 -0300574
575 /*
Guennadi Liakhovetski2d864012011-09-28 09:23:02 -0300576 * Either the driver has accepted a smaller number of buffers,
577 * or .queue_setup() returned an error
Pawel Osciake23ccc02010-10-11 10:56:41 -0300578 */
Guennadi Liakhovetski2d864012011-09-28 09:23:02 -0300579 }
580
581 q->num_buffers = allocated_buffers;
582
583 if (ret < 0) {
584 __vb2_queue_free(q, allocated_buffers);
585 return ret;
Pawel Osciake23ccc02010-10-11 10:56:41 -0300586 }
587
Pawel Osciake23ccc02010-10-11 10:56:41 -0300588 /*
589 * Return the number of successfully allocated buffers
590 * to the userspace.
591 */
Guennadi Liakhovetski2d864012011-09-28 09:23:02 -0300592 req->count = allocated_buffers;
Pawel Osciake23ccc02010-10-11 10:56:41 -0300593
594 return 0;
Pawel Osciake23ccc02010-10-11 10:56:41 -0300595}
596EXPORT_SYMBOL_GPL(vb2_reqbufs);
597
598/**
Guennadi Liakhovetski2d864012011-09-28 09:23:02 -0300599 * vb2_create_bufs() - Allocate buffers and any required auxiliary structs
600 * @q: videobuf2 queue
601 * @create: creation parameters, passed from userspace to vidioc_create_bufs
602 * handler in driver
603 *
604 * Should be called from vidioc_create_bufs ioctl handler of a driver.
605 * This function:
606 * 1) verifies parameter sanity
607 * 2) calls the .queue_setup() queue operation
608 * 3) performs any necessary memory allocations
609 *
610 * The return values from this function are intended to be directly returned
611 * from vidioc_create_bufs handler in driver.
612 */
613int vb2_create_bufs(struct vb2_queue *q, struct v4l2_create_buffers *create)
614{
615 unsigned int num_planes = 0, num_buffers, allocated_buffers;
616 int ret = 0;
617
618 if (q->fileio) {
619 dprintk(1, "%s(): file io in progress\n", __func__);
620 return -EBUSY;
621 }
622
623 if (create->memory != V4L2_MEMORY_MMAP
624 && create->memory != V4L2_MEMORY_USERPTR) {
625 dprintk(1, "%s(): unsupported memory type\n", __func__);
626 return -EINVAL;
627 }
628
629 if (create->format.type != q->type) {
630 dprintk(1, "%s(): requested type is incorrect\n", __func__);
631 return -EINVAL;
632 }
633
634 /*
635 * Make sure all the required memory ops for given memory type
636 * are available.
637 */
638 if (create->memory == V4L2_MEMORY_MMAP && __verify_mmap_ops(q)) {
639 dprintk(1, "%s(): MMAP for current setup unsupported\n", __func__);
640 return -EINVAL;
641 }
642
643 if (create->memory == V4L2_MEMORY_USERPTR && __verify_userptr_ops(q)) {
644 dprintk(1, "%s(): USERPTR for current setup unsupported\n", __func__);
645 return -EINVAL;
646 }
647
648 if (q->num_buffers == VIDEO_MAX_FRAME) {
649 dprintk(1, "%s(): maximum number of buffers already allocated\n",
650 __func__);
651 return -ENOBUFS;
652 }
653
654 create->index = q->num_buffers;
655
656 if (!q->num_buffers) {
657 memset(q->plane_sizes, 0, sizeof(q->plane_sizes));
658 memset(q->alloc_ctx, 0, sizeof(q->alloc_ctx));
659 q->memory = create->memory;
660 }
661
662 num_buffers = min(create->count, VIDEO_MAX_FRAME - q->num_buffers);
663
664 /*
665 * Ask the driver, whether the requested number of buffers, planes per
666 * buffer and their sizes are acceptable
667 */
668 ret = call_qop(q, queue_setup, q, &create->format, &num_buffers,
669 &num_planes, q->plane_sizes, q->alloc_ctx);
670 if (ret)
671 return ret;
672
673 /* Finally, allocate buffers and video memory */
674 ret = __vb2_queue_alloc(q, create->memory, num_buffers,
675 num_planes);
676 if (ret < 0) {
677 dprintk(1, "Memory allocation failed with error: %d\n", ret);
678 return ret;
679 }
680
681 allocated_buffers = ret;
682
683 /*
684 * Check if driver can handle the so far allocated number of buffers.
685 */
686 if (ret < num_buffers) {
687 num_buffers = ret;
688
689 /*
690 * q->num_buffers contains the total number of buffers, that the
691 * queue driver has set up
692 */
693 ret = call_qop(q, queue_setup, q, &create->format, &num_buffers,
694 &num_planes, q->plane_sizes, q->alloc_ctx);
695
696 if (!ret && allocated_buffers < num_buffers)
697 ret = -ENOMEM;
698
699 /*
700 * Either the driver has accepted a smaller number of buffers,
701 * or .queue_setup() returned an error
702 */
703 }
704
705 q->num_buffers += allocated_buffers;
706
707 if (ret < 0) {
708 __vb2_queue_free(q, allocated_buffers);
709 return ret;
710 }
711
712 /*
713 * Return the number of successfully allocated buffers
714 * to the userspace.
715 */
716 create->count = allocated_buffers;
717
718 return 0;
719}
720EXPORT_SYMBOL_GPL(vb2_create_bufs);
721
722/**
Pawel Osciake23ccc02010-10-11 10:56:41 -0300723 * vb2_plane_vaddr() - Return a kernel virtual address of a given plane
724 * @vb: vb2_buffer to which the plane in question belongs to
725 * @plane_no: plane number for which the address is to be returned
726 *
727 * This function returns a kernel virtual address of a given plane if
728 * such a mapping exist, NULL otherwise.
729 */
730void *vb2_plane_vaddr(struct vb2_buffer *vb, unsigned int plane_no)
731{
732 struct vb2_queue *q = vb->vb2_queue;
733
734 if (plane_no > vb->num_planes)
735 return NULL;
736
737 return call_memop(q, plane_no, vaddr, vb->planes[plane_no].mem_priv);
738
739}
740EXPORT_SYMBOL_GPL(vb2_plane_vaddr);
741
742/**
743 * vb2_plane_cookie() - Return allocator specific cookie for the given plane
744 * @vb: vb2_buffer to which the plane in question belongs to
745 * @plane_no: plane number for which the cookie is to be returned
746 *
747 * This function returns an allocator specific cookie for a given plane if
748 * available, NULL otherwise. The allocator should provide some simple static
749 * inline function, which would convert this cookie to the allocator specific
750 * type that can be used directly by the driver to access the buffer. This can
751 * be for example physical address, pointer to scatter list or IOMMU mapping.
752 */
753void *vb2_plane_cookie(struct vb2_buffer *vb, unsigned int plane_no)
754{
755 struct vb2_queue *q = vb->vb2_queue;
756
757 if (plane_no > vb->num_planes)
758 return NULL;
759
760 return call_memop(q, plane_no, cookie, vb->planes[plane_no].mem_priv);
761}
762EXPORT_SYMBOL_GPL(vb2_plane_cookie);
763
764/**
765 * vb2_buffer_done() - inform videobuf that an operation on a buffer is finished
766 * @vb: vb2_buffer returned from the driver
767 * @state: either VB2_BUF_STATE_DONE if the operation finished successfully
768 * or VB2_BUF_STATE_ERROR if the operation finished with an error
769 *
770 * This function should be called by the driver after a hardware operation on
771 * a buffer is finished and the buffer may be returned to userspace. The driver
772 * cannot use this buffer anymore until it is queued back to it by videobuf
773 * by the means of buf_queue callback. Only buffers previously queued to the
774 * driver by buf_queue can be passed to this function.
775 */
776void vb2_buffer_done(struct vb2_buffer *vb, enum vb2_buffer_state state)
777{
778 struct vb2_queue *q = vb->vb2_queue;
779 unsigned long flags;
780
781 if (vb->state != VB2_BUF_STATE_ACTIVE)
782 return;
783
784 if (state != VB2_BUF_STATE_DONE && state != VB2_BUF_STATE_ERROR)
785 return;
786
787 dprintk(4, "Done processing on buffer %d, state: %d\n",
788 vb->v4l2_buf.index, vb->state);
789
790 /* Add the buffer to the done buffers list */
791 spin_lock_irqsave(&q->done_lock, flags);
792 vb->state = state;
793 list_add_tail(&vb->done_entry, &q->done_list);
794 atomic_dec(&q->queued_count);
795 spin_unlock_irqrestore(&q->done_lock, flags);
796
797 /* Inform any processes that may be waiting for buffers */
798 wake_up(&q->done_wq);
799}
800EXPORT_SYMBOL_GPL(vb2_buffer_done);
801
802/**
803 * __fill_vb2_buffer() - fill a vb2_buffer with information provided in
804 * a v4l2_buffer by the userspace
805 */
Guennadi Liakhovetski2d864012011-09-28 09:23:02 -0300806static int __fill_vb2_buffer(struct vb2_buffer *vb, const struct v4l2_buffer *b,
Pawel Osciake23ccc02010-10-11 10:56:41 -0300807 struct v4l2_plane *v4l2_planes)
808{
809 unsigned int plane;
810 int ret;
811
812 if (V4L2_TYPE_IS_MULTIPLANAR(b->type)) {
813 /*
814 * Verify that the userspace gave us a valid array for
815 * plane information.
816 */
817 ret = __verify_planes_array(vb, b);
818 if (ret)
819 return ret;
820
821 /* Fill in driver-provided information for OUTPUT types */
822 if (V4L2_TYPE_IS_OUTPUT(b->type)) {
823 /*
824 * Will have to go up to b->length when API starts
825 * accepting variable number of planes.
826 */
827 for (plane = 0; plane < vb->num_planes; ++plane) {
828 v4l2_planes[plane].bytesused =
829 b->m.planes[plane].bytesused;
830 v4l2_planes[plane].data_offset =
831 b->m.planes[plane].data_offset;
832 }
833 }
834
835 if (b->memory == V4L2_MEMORY_USERPTR) {
836 for (plane = 0; plane < vb->num_planes; ++plane) {
837 v4l2_planes[plane].m.userptr =
838 b->m.planes[plane].m.userptr;
839 v4l2_planes[plane].length =
840 b->m.planes[plane].length;
841 }
842 }
843 } else {
844 /*
845 * Single-planar buffers do not use planes array,
846 * so fill in relevant v4l2_buffer struct fields instead.
847 * In videobuf we use our internal V4l2_planes struct for
848 * single-planar buffers as well, for simplicity.
849 */
850 if (V4L2_TYPE_IS_OUTPUT(b->type))
851 v4l2_planes[0].bytesused = b->bytesused;
852
853 if (b->memory == V4L2_MEMORY_USERPTR) {
854 v4l2_planes[0].m.userptr = b->m.userptr;
855 v4l2_planes[0].length = b->length;
856 }
857 }
858
859 vb->v4l2_buf.field = b->field;
860 vb->v4l2_buf.timestamp = b->timestamp;
Marek Szyprowskiea42c8e2011-04-12 10:14:13 -0300861 vb->v4l2_buf.input = b->input;
862 vb->v4l2_buf.flags = b->flags & ~V4L2_BUFFER_STATE_FLAGS;
Pawel Osciake23ccc02010-10-11 10:56:41 -0300863
864 return 0;
865}
866
867/**
868 * __qbuf_userptr() - handle qbuf of a USERPTR buffer
869 */
Guennadi Liakhovetski2d864012011-09-28 09:23:02 -0300870static int __qbuf_userptr(struct vb2_buffer *vb, const struct v4l2_buffer *b)
Pawel Osciake23ccc02010-10-11 10:56:41 -0300871{
872 struct v4l2_plane planes[VIDEO_MAX_PLANES];
873 struct vb2_queue *q = vb->vb2_queue;
874 void *mem_priv;
875 unsigned int plane;
876 int ret;
877 int write = !V4L2_TYPE_IS_OUTPUT(q->type);
878
879 /* Verify and copy relevant information provided by the userspace */
880 ret = __fill_vb2_buffer(vb, b, planes);
881 if (ret)
882 return ret;
883
884 for (plane = 0; plane < vb->num_planes; ++plane) {
885 /* Skip the plane if already verified */
Marek Szyprowskif0b7c7f2011-11-16 15:09:40 -0300886 if (vb->v4l2_planes[plane].m.userptr &&
887 vb->v4l2_planes[plane].m.userptr == planes[plane].m.userptr
Pawel Osciake23ccc02010-10-11 10:56:41 -0300888 && vb->v4l2_planes[plane].length == planes[plane].length)
889 continue;
890
891 dprintk(3, "qbuf: userspace address for plane %d changed, "
892 "reacquiring memory\n", plane);
893
Marek Szyprowskic1426bc2011-08-24 06:36:26 -0300894 /* Check if the provided plane buffer is large enough */
895 if (planes[plane].length < q->plane_sizes[plane]) {
Marek Szyprowski4c2625d2011-10-03 03:21:45 -0300896 ret = -EINVAL;
Marek Szyprowskic1426bc2011-08-24 06:36:26 -0300897 goto err;
898 }
899
Pawel Osciake23ccc02010-10-11 10:56:41 -0300900 /* Release previously acquired memory if present */
901 if (vb->planes[plane].mem_priv)
902 call_memop(q, plane, put_userptr,
903 vb->planes[plane].mem_priv);
904
905 vb->planes[plane].mem_priv = NULL;
Marek Szyprowskic1426bc2011-08-24 06:36:26 -0300906 vb->v4l2_planes[plane].m.userptr = 0;
907 vb->v4l2_planes[plane].length = 0;
Pawel Osciake23ccc02010-10-11 10:56:41 -0300908
909 /* Acquire each plane's memory */
910 if (q->mem_ops->get_userptr) {
911 mem_priv = q->mem_ops->get_userptr(q->alloc_ctx[plane],
912 planes[plane].m.userptr,
913 planes[plane].length,
914 write);
915 if (IS_ERR(mem_priv)) {
916 dprintk(1, "qbuf: failed acquiring userspace "
917 "memory for plane %d\n", plane);
918 ret = PTR_ERR(mem_priv);
919 goto err;
920 }
921 vb->planes[plane].mem_priv = mem_priv;
922 }
923 }
924
925 /*
926 * Call driver-specific initialization on the newly acquired buffer,
927 * if provided.
928 */
929 ret = call_qop(q, buf_init, vb);
930 if (ret) {
931 dprintk(1, "qbuf: buffer initialization failed\n");
932 goto err;
933 }
934
935 /*
936 * Now that everything is in order, copy relevant information
937 * provided by userspace.
938 */
939 for (plane = 0; plane < vb->num_planes; ++plane)
940 vb->v4l2_planes[plane] = planes[plane];
941
942 return 0;
943err:
944 /* In case of errors, release planes that were already acquired */
Marek Szyprowskic1426bc2011-08-24 06:36:26 -0300945 for (plane = 0; plane < vb->num_planes; ++plane) {
946 if (vb->planes[plane].mem_priv)
947 call_memop(q, plane, put_userptr,
948 vb->planes[plane].mem_priv);
949 vb->planes[plane].mem_priv = NULL;
950 vb->v4l2_planes[plane].m.userptr = 0;
951 vb->v4l2_planes[plane].length = 0;
Pawel Osciake23ccc02010-10-11 10:56:41 -0300952 }
953
954 return ret;
955}
956
957/**
958 * __qbuf_mmap() - handle qbuf of an MMAP buffer
959 */
Guennadi Liakhovetski2d864012011-09-28 09:23:02 -0300960static int __qbuf_mmap(struct vb2_buffer *vb, const struct v4l2_buffer *b)
Pawel Osciake23ccc02010-10-11 10:56:41 -0300961{
962 return __fill_vb2_buffer(vb, b, vb->v4l2_planes);
963}
964
965/**
966 * __enqueue_in_driver() - enqueue a vb2_buffer in driver for processing
967 */
968static void __enqueue_in_driver(struct vb2_buffer *vb)
969{
970 struct vb2_queue *q = vb->vb2_queue;
971
972 vb->state = VB2_BUF_STATE_ACTIVE;
973 atomic_inc(&q->queued_count);
974 q->ops->buf_queue(vb);
975}
976
Guennadi Liakhovetski2d864012011-09-28 09:23:02 -0300977static int __buf_prepare(struct vb2_buffer *vb, const struct v4l2_buffer *b)
Guennadi Liakhovetskiebc087d2011-08-31 06:51:10 -0300978{
979 struct vb2_queue *q = vb->vb2_queue;
980 int ret;
981
982 switch (q->memory) {
983 case V4L2_MEMORY_MMAP:
984 ret = __qbuf_mmap(vb, b);
985 break;
986 case V4L2_MEMORY_USERPTR:
987 ret = __qbuf_userptr(vb, b);
988 break;
989 default:
990 WARN(1, "Invalid queue type\n");
991 ret = -EINVAL;
992 }
993
994 if (!ret)
995 ret = call_qop(q, buf_prepare, vb);
996 if (ret)
997 dprintk(1, "qbuf: buffer preparation failed: %d\n", ret);
998 else
999 vb->state = VB2_BUF_STATE_PREPARED;
1000
1001 return ret;
1002}
1003
Pawel Osciake23ccc02010-10-11 10:56:41 -03001004/**
Guennadi Liakhovetski2d864012011-09-28 09:23:02 -03001005 * vb2_prepare_buf() - Pass ownership of a buffer from userspace to the kernel
1006 * @q: videobuf2 queue
1007 * @b: buffer structure passed from userspace to vidioc_prepare_buf
1008 * handler in driver
1009 *
1010 * Should be called from vidioc_prepare_buf ioctl handler of a driver.
1011 * This function:
1012 * 1) verifies the passed buffer,
1013 * 2) calls buf_prepare callback in the driver (if provided), in which
1014 * driver-specific buffer initialization can be performed,
1015 *
1016 * The return values from this function are intended to be directly returned
1017 * from vidioc_prepare_buf handler in driver.
1018 */
1019int vb2_prepare_buf(struct vb2_queue *q, struct v4l2_buffer *b)
1020{
1021 struct vb2_buffer *vb;
1022 int ret;
1023
1024 if (q->fileio) {
1025 dprintk(1, "%s(): file io in progress\n", __func__);
1026 return -EBUSY;
1027 }
1028
1029 if (b->type != q->type) {
1030 dprintk(1, "%s(): invalid buffer type\n", __func__);
1031 return -EINVAL;
1032 }
1033
1034 if (b->index >= q->num_buffers) {
1035 dprintk(1, "%s(): buffer index out of range\n", __func__);
1036 return -EINVAL;
1037 }
1038
1039 vb = q->bufs[b->index];
1040 if (NULL == vb) {
1041 /* Should never happen */
1042 dprintk(1, "%s(): buffer is NULL\n", __func__);
1043 return -EINVAL;
1044 }
1045
1046 if (b->memory != q->memory) {
1047 dprintk(1, "%s(): invalid memory type\n", __func__);
1048 return -EINVAL;
1049 }
1050
1051 if (vb->state != VB2_BUF_STATE_DEQUEUED) {
1052 dprintk(1, "%s(): invalid buffer state %d\n", __func__, vb->state);
1053 return -EINVAL;
1054 }
1055
1056 ret = __buf_prepare(vb, b);
1057 if (ret < 0)
1058 return ret;
1059
1060 __fill_v4l2_buffer(vb, b);
1061
1062 return 0;
1063}
1064EXPORT_SYMBOL_GPL(vb2_prepare_buf);
1065
1066/**
Pawel Osciake23ccc02010-10-11 10:56:41 -03001067 * vb2_qbuf() - Queue a buffer from userspace
1068 * @q: videobuf2 queue
1069 * @b: buffer structure passed from userspace to vidioc_qbuf handler
1070 * in driver
1071 *
1072 * Should be called from vidioc_qbuf ioctl handler of a driver.
1073 * This function:
1074 * 1) verifies the passed buffer,
Guennadi Liakhovetskiebc087d2011-08-31 06:51:10 -03001075 * 2) if necessary, calls buf_prepare callback in the driver (if provided), in
1076 * which driver-specific buffer initialization can be performed,
Pawel Osciake23ccc02010-10-11 10:56:41 -03001077 * 3) if streaming is on, queues the buffer in driver by the means of buf_queue
1078 * callback for processing.
1079 *
1080 * The return values from this function are intended to be directly returned
1081 * from vidioc_qbuf handler in driver.
1082 */
1083int vb2_qbuf(struct vb2_queue *q, struct v4l2_buffer *b)
1084{
Marek Szyprowskib037c0f2011-11-17 05:32:17 -03001085 struct rw_semaphore *mmap_sem = NULL;
Pawel Osciake23ccc02010-10-11 10:56:41 -03001086 struct vb2_buffer *vb;
Marek Szyprowskib037c0f2011-11-17 05:32:17 -03001087 int ret = 0;
1088
1089 /*
1090 * In case of user pointer buffers vb2 allocator needs to get direct
1091 * access to userspace pages. This requires getting read access on
1092 * mmap semaphore in the current process structure. The same
1093 * semaphore is taken before calling mmap operation, while both mmap
1094 * and qbuf are called by the driver or v4l2 core with driver's lock
1095 * held. To avoid a AB-BA deadlock (mmap_sem then driver's lock in
1096 * mmap and driver's lock then mmap_sem in qbuf) the videobuf2 core
1097 * release driver's lock, takes mmap_sem and then takes again driver's
1098 * lock.
1099 *
1100 * To avoid race with other vb2 calls, which might be called after
1101 * releasing driver's lock, this operation is performed at the
1102 * beggining of qbuf processing. This way the queue status is
1103 * consistent after getting driver's lock back.
1104 */
1105 if (b->type == V4L2_MEMORY_USERPTR) {
1106 mmap_sem = &current->mm->mmap_sem;
1107 call_qop(q, wait_prepare, q);
1108 down_read(mmap_sem);
1109 call_qop(q, wait_finish, q);
1110 }
Pawel Osciake23ccc02010-10-11 10:56:41 -03001111
Marek Szyprowskib25748f2010-12-06 05:56:55 -03001112 if (q->fileio) {
1113 dprintk(1, "qbuf: file io in progress\n");
Marek Szyprowskib037c0f2011-11-17 05:32:17 -03001114 ret = -EBUSY;
1115 goto unlock;
Marek Szyprowskib25748f2010-12-06 05:56:55 -03001116 }
1117
Pawel Osciake23ccc02010-10-11 10:56:41 -03001118 if (b->type != q->type) {
1119 dprintk(1, "qbuf: invalid buffer type\n");
Marek Szyprowskib037c0f2011-11-17 05:32:17 -03001120 ret = -EINVAL;
1121 goto unlock;
Pawel Osciake23ccc02010-10-11 10:56:41 -03001122 }
1123
1124 if (b->index >= q->num_buffers) {
1125 dprintk(1, "qbuf: buffer index out of range\n");
Marek Szyprowskib037c0f2011-11-17 05:32:17 -03001126 ret = -EINVAL;
1127 goto unlock;
Pawel Osciake23ccc02010-10-11 10:56:41 -03001128 }
1129
1130 vb = q->bufs[b->index];
1131 if (NULL == vb) {
1132 /* Should never happen */
1133 dprintk(1, "qbuf: buffer is NULL\n");
Marek Szyprowskib037c0f2011-11-17 05:32:17 -03001134 ret = -EINVAL;
1135 goto unlock;
Pawel Osciake23ccc02010-10-11 10:56:41 -03001136 }
1137
1138 if (b->memory != q->memory) {
1139 dprintk(1, "qbuf: invalid memory type\n");
Marek Szyprowskib037c0f2011-11-17 05:32:17 -03001140 ret = -EINVAL;
1141 goto unlock;
Pawel Osciake23ccc02010-10-11 10:56:41 -03001142 }
1143
Guennadi Liakhovetskiebc087d2011-08-31 06:51:10 -03001144 switch (vb->state) {
1145 case VB2_BUF_STATE_DEQUEUED:
1146 ret = __buf_prepare(vb, b);
1147 if (ret)
Marek Szyprowskib037c0f2011-11-17 05:32:17 -03001148 goto unlock;
Guennadi Liakhovetskiebc087d2011-08-31 06:51:10 -03001149 case VB2_BUF_STATE_PREPARED:
1150 break;
1151 default:
Pawel Osciake23ccc02010-10-11 10:56:41 -03001152 dprintk(1, "qbuf: buffer already in use\n");
Marek Szyprowskib037c0f2011-11-17 05:32:17 -03001153 ret = -EINVAL;
1154 goto unlock;
Pawel Osciake23ccc02010-10-11 10:56:41 -03001155 }
1156
Pawel Osciake23ccc02010-10-11 10:56:41 -03001157 /*
1158 * Add to the queued buffers list, a buffer will stay on it until
1159 * dequeued in dqbuf.
1160 */
1161 list_add_tail(&vb->queued_entry, &q->queued_list);
1162 vb->state = VB2_BUF_STATE_QUEUED;
1163
1164 /*
1165 * If already streaming, give the buffer to driver for processing.
1166 * If not, the buffer will be given to driver on next streamon.
1167 */
1168 if (q->streaming)
1169 __enqueue_in_driver(vb);
1170
Guennadi Liakhovetski21db3e02011-09-28 07:23:27 -03001171 /* Fill buffer information for the userspace */
1172 __fill_v4l2_buffer(vb, b);
1173
Pawel Osciake23ccc02010-10-11 10:56:41 -03001174 dprintk(1, "qbuf of buffer %d succeeded\n", vb->v4l2_buf.index);
Marek Szyprowskib037c0f2011-11-17 05:32:17 -03001175unlock:
1176 if (mmap_sem)
1177 up_read(mmap_sem);
1178 return ret;
Pawel Osciake23ccc02010-10-11 10:56:41 -03001179}
1180EXPORT_SYMBOL_GPL(vb2_qbuf);
1181
1182/**
1183 * __vb2_wait_for_done_vb() - wait for a buffer to become available
1184 * for dequeuing
1185 *
1186 * Will sleep if required for nonblocking == false.
1187 */
1188static int __vb2_wait_for_done_vb(struct vb2_queue *q, int nonblocking)
1189{
1190 /*
1191 * All operations on vb_done_list are performed under done_lock
1192 * spinlock protection. However, buffers may be removed from
1193 * it and returned to userspace only while holding both driver's
1194 * lock and the done_lock spinlock. Thus we can be sure that as
1195 * long as we hold the driver's lock, the list will remain not
1196 * empty if list_empty() check succeeds.
1197 */
1198
1199 for (;;) {
1200 int ret;
1201
1202 if (!q->streaming) {
1203 dprintk(1, "Streaming off, will not wait for buffers\n");
1204 return -EINVAL;
1205 }
1206
1207 if (!list_empty(&q->done_list)) {
1208 /*
1209 * Found a buffer that we were waiting for.
1210 */
1211 break;
1212 }
1213
1214 if (nonblocking) {
1215 dprintk(1, "Nonblocking and no buffers to dequeue, "
1216 "will not wait\n");
1217 return -EAGAIN;
1218 }
1219
1220 /*
1221 * We are streaming and blocking, wait for another buffer to
1222 * become ready or for streamoff. Driver's lock is released to
1223 * allow streamoff or qbuf to be called while waiting.
1224 */
1225 call_qop(q, wait_prepare, q);
1226
1227 /*
1228 * All locks have been released, it is safe to sleep now.
1229 */
1230 dprintk(3, "Will sleep waiting for buffers\n");
1231 ret = wait_event_interruptible(q->done_wq,
1232 !list_empty(&q->done_list) || !q->streaming);
1233
1234 /*
1235 * We need to reevaluate both conditions again after reacquiring
1236 * the locks or return an error if one occurred.
1237 */
1238 call_qop(q, wait_finish, q);
1239 if (ret)
1240 return ret;
1241 }
1242 return 0;
1243}
1244
1245/**
1246 * __vb2_get_done_vb() - get a buffer ready for dequeuing
1247 *
1248 * Will sleep if required for nonblocking == false.
1249 */
1250static int __vb2_get_done_vb(struct vb2_queue *q, struct vb2_buffer **vb,
1251 int nonblocking)
1252{
1253 unsigned long flags;
1254 int ret;
1255
1256 /*
1257 * Wait for at least one buffer to become available on the done_list.
1258 */
1259 ret = __vb2_wait_for_done_vb(q, nonblocking);
1260 if (ret)
1261 return ret;
1262
1263 /*
1264 * Driver's lock has been held since we last verified that done_list
1265 * is not empty, so no need for another list_empty(done_list) check.
1266 */
1267 spin_lock_irqsave(&q->done_lock, flags);
1268 *vb = list_first_entry(&q->done_list, struct vb2_buffer, done_entry);
1269 list_del(&(*vb)->done_entry);
1270 spin_unlock_irqrestore(&q->done_lock, flags);
1271
1272 return 0;
1273}
1274
1275/**
1276 * vb2_wait_for_all_buffers() - wait until all buffers are given back to vb2
1277 * @q: videobuf2 queue
1278 *
1279 * This function will wait until all buffers that have been given to the driver
1280 * by buf_queue() are given back to vb2 with vb2_buffer_done(). It doesn't call
1281 * wait_prepare, wait_finish pair. It is intended to be called with all locks
1282 * taken, for example from stop_streaming() callback.
1283 */
1284int vb2_wait_for_all_buffers(struct vb2_queue *q)
1285{
1286 if (!q->streaming) {
1287 dprintk(1, "Streaming off, will not wait for buffers\n");
1288 return -EINVAL;
1289 }
1290
1291 wait_event(q->done_wq, !atomic_read(&q->queued_count));
1292 return 0;
1293}
1294EXPORT_SYMBOL_GPL(vb2_wait_for_all_buffers);
1295
1296/**
1297 * vb2_dqbuf() - Dequeue a buffer to the userspace
1298 * @q: videobuf2 queue
1299 * @b: buffer structure passed from userspace to vidioc_dqbuf handler
1300 * in driver
1301 * @nonblocking: if true, this call will not sleep waiting for a buffer if no
1302 * buffers ready for dequeuing are present. Normally the driver
1303 * would be passing (file->f_flags & O_NONBLOCK) here
1304 *
1305 * Should be called from vidioc_dqbuf ioctl handler of a driver.
1306 * This function:
1307 * 1) verifies the passed buffer,
1308 * 2) calls buf_finish callback in the driver (if provided), in which
1309 * driver can perform any additional operations that may be required before
1310 * returning the buffer to userspace, such as cache sync,
1311 * 3) the buffer struct members are filled with relevant information for
1312 * the userspace.
1313 *
1314 * The return values from this function are intended to be directly returned
1315 * from vidioc_dqbuf handler in driver.
1316 */
1317int vb2_dqbuf(struct vb2_queue *q, struct v4l2_buffer *b, bool nonblocking)
1318{
1319 struct vb2_buffer *vb = NULL;
1320 int ret;
1321
Marek Szyprowskib25748f2010-12-06 05:56:55 -03001322 if (q->fileio) {
1323 dprintk(1, "dqbuf: file io in progress\n");
1324 return -EBUSY;
1325 }
1326
Pawel Osciake23ccc02010-10-11 10:56:41 -03001327 if (b->type != q->type) {
1328 dprintk(1, "dqbuf: invalid buffer type\n");
1329 return -EINVAL;
1330 }
1331
1332 ret = __vb2_get_done_vb(q, &vb, nonblocking);
1333 if (ret < 0) {
1334 dprintk(1, "dqbuf: error getting next done buffer\n");
1335 return ret;
1336 }
1337
1338 ret = call_qop(q, buf_finish, vb);
1339 if (ret) {
1340 dprintk(1, "dqbuf: buffer finish failed\n");
1341 return ret;
1342 }
1343
1344 switch (vb->state) {
1345 case VB2_BUF_STATE_DONE:
1346 dprintk(3, "dqbuf: Returning done buffer\n");
1347 break;
1348 case VB2_BUF_STATE_ERROR:
1349 dprintk(3, "dqbuf: Returning done buffer with errors\n");
1350 break;
1351 default:
1352 dprintk(1, "dqbuf: Invalid buffer state\n");
1353 return -EINVAL;
1354 }
1355
1356 /* Fill buffer information for the userspace */
1357 __fill_v4l2_buffer(vb, b);
1358 /* Remove from videobuf queue */
1359 list_del(&vb->queued_entry);
1360
1361 dprintk(1, "dqbuf of buffer %d, with state %d\n",
1362 vb->v4l2_buf.index, vb->state);
1363
1364 vb->state = VB2_BUF_STATE_DEQUEUED;
1365 return 0;
1366}
1367EXPORT_SYMBOL_GPL(vb2_dqbuf);
1368
1369/**
Pawel Osciake23ccc02010-10-11 10:56:41 -03001370 * __vb2_queue_cancel() - cancel and stop (pause) streaming
1371 *
1372 * Removes all queued buffers from driver's queue and all buffers queued by
1373 * userspace from videobuf's queue. Returns to state after reqbufs.
1374 */
1375static void __vb2_queue_cancel(struct vb2_queue *q)
1376{
1377 unsigned int i;
1378
1379 /*
1380 * Tell driver to stop all transactions and release all queued
1381 * buffers.
1382 */
1383 if (q->streaming)
1384 call_qop(q, stop_streaming, q);
1385 q->streaming = 0;
1386
1387 /*
1388 * Remove all buffers from videobuf's list...
1389 */
1390 INIT_LIST_HEAD(&q->queued_list);
1391 /*
1392 * ...and done list; userspace will not receive any buffers it
1393 * has not already dequeued before initiating cancel.
1394 */
1395 INIT_LIST_HEAD(&q->done_list);
Marek Szyprowskiafdea8b2011-06-10 08:58:42 -03001396 atomic_set(&q->queued_count, 0);
Pawel Osciake23ccc02010-10-11 10:56:41 -03001397 wake_up_all(&q->done_wq);
1398
1399 /*
1400 * Reinitialize all buffers for next use.
1401 */
1402 for (i = 0; i < q->num_buffers; ++i)
1403 q->bufs[i]->state = VB2_BUF_STATE_DEQUEUED;
1404}
1405
1406/**
Marek Szyprowskibd323e22011-08-29 08:51:49 -03001407 * vb2_streamon - start streaming
1408 * @q: videobuf2 queue
1409 * @type: type argument passed from userspace to vidioc_streamon handler
1410 *
1411 * Should be called from vidioc_streamon handler of a driver.
1412 * This function:
1413 * 1) verifies current state
1414 * 2) passes any previously queued buffers to the driver and starts streaming
1415 *
1416 * The return values from this function are intended to be directly returned
1417 * from vidioc_streamon handler in the driver.
1418 */
1419int vb2_streamon(struct vb2_queue *q, enum v4l2_buf_type type)
1420{
1421 struct vb2_buffer *vb;
1422 int ret;
1423
1424 if (q->fileio) {
1425 dprintk(1, "streamon: file io in progress\n");
1426 return -EBUSY;
1427 }
1428
1429 if (type != q->type) {
1430 dprintk(1, "streamon: invalid stream type\n");
1431 return -EINVAL;
1432 }
1433
1434 if (q->streaming) {
1435 dprintk(1, "streamon: already streaming\n");
1436 return -EBUSY;
1437 }
1438
1439 /*
1440 * If any buffers were queued before streamon,
1441 * we can now pass them to driver for processing.
1442 */
1443 list_for_each_entry(vb, &q->queued_list, queued_entry)
1444 __enqueue_in_driver(vb);
1445
1446 /*
1447 * Let driver notice that streaming state has been enabled.
1448 */
1449 ret = call_qop(q, start_streaming, q, atomic_read(&q->queued_count));
1450 if (ret) {
1451 dprintk(1, "streamon: driver refused to start streaming\n");
1452 __vb2_queue_cancel(q);
1453 return ret;
1454 }
1455
1456 q->streaming = 1;
1457
1458 dprintk(3, "Streamon successful\n");
1459 return 0;
1460}
1461EXPORT_SYMBOL_GPL(vb2_streamon);
1462
1463
1464/**
Pawel Osciake23ccc02010-10-11 10:56:41 -03001465 * vb2_streamoff - stop streaming
1466 * @q: videobuf2 queue
1467 * @type: type argument passed from userspace to vidioc_streamoff handler
1468 *
1469 * Should be called from vidioc_streamoff handler of a driver.
1470 * This function:
1471 * 1) verifies current state,
1472 * 2) stop streaming and dequeues any queued buffers, including those previously
1473 * passed to the driver (after waiting for the driver to finish).
1474 *
1475 * This call can be used for pausing playback.
1476 * The return values from this function are intended to be directly returned
1477 * from vidioc_streamoff handler in the driver
1478 */
1479int vb2_streamoff(struct vb2_queue *q, enum v4l2_buf_type type)
1480{
Marek Szyprowskib25748f2010-12-06 05:56:55 -03001481 if (q->fileio) {
1482 dprintk(1, "streamoff: file io in progress\n");
1483 return -EBUSY;
1484 }
1485
Pawel Osciake23ccc02010-10-11 10:56:41 -03001486 if (type != q->type) {
1487 dprintk(1, "streamoff: invalid stream type\n");
1488 return -EINVAL;
1489 }
1490
1491 if (!q->streaming) {
1492 dprintk(1, "streamoff: not streaming\n");
1493 return -EINVAL;
1494 }
1495
1496 /*
1497 * Cancel will pause streaming and remove all buffers from the driver
1498 * and videobuf, effectively returning control over them to userspace.
1499 */
1500 __vb2_queue_cancel(q);
1501
1502 dprintk(3, "Streamoff successful\n");
1503 return 0;
1504}
1505EXPORT_SYMBOL_GPL(vb2_streamoff);
1506
1507/**
1508 * __find_plane_by_offset() - find plane associated with the given offset off
1509 */
1510static int __find_plane_by_offset(struct vb2_queue *q, unsigned long off,
1511 unsigned int *_buffer, unsigned int *_plane)
1512{
1513 struct vb2_buffer *vb;
1514 unsigned int buffer, plane;
1515
1516 /*
1517 * Go over all buffers and their planes, comparing the given offset
1518 * with an offset assigned to each plane. If a match is found,
1519 * return its buffer and plane numbers.
1520 */
1521 for (buffer = 0; buffer < q->num_buffers; ++buffer) {
1522 vb = q->bufs[buffer];
1523
1524 for (plane = 0; plane < vb->num_planes; ++plane) {
1525 if (vb->v4l2_planes[plane].m.mem_offset == off) {
1526 *_buffer = buffer;
1527 *_plane = plane;
1528 return 0;
1529 }
1530 }
1531 }
1532
1533 return -EINVAL;
1534}
1535
1536/**
1537 * vb2_mmap() - map video buffers into application address space
1538 * @q: videobuf2 queue
1539 * @vma: vma passed to the mmap file operation handler in the driver
1540 *
1541 * Should be called from mmap file operation handler of a driver.
1542 * This function maps one plane of one of the available video buffers to
1543 * userspace. To map whole video memory allocated on reqbufs, this function
1544 * has to be called once per each plane per each buffer previously allocated.
1545 *
1546 * When the userspace application calls mmap, it passes to it an offset returned
1547 * to it earlier by the means of vidioc_querybuf handler. That offset acts as
1548 * a "cookie", which is then used to identify the plane to be mapped.
1549 * This function finds a plane with a matching offset and a mapping is performed
1550 * by the means of a provided memory operation.
1551 *
1552 * The return values from this function are intended to be directly returned
1553 * from the mmap handler in driver.
1554 */
1555int vb2_mmap(struct vb2_queue *q, struct vm_area_struct *vma)
1556{
1557 unsigned long off = vma->vm_pgoff << PAGE_SHIFT;
1558 struct vb2_plane *vb_plane;
1559 struct vb2_buffer *vb;
1560 unsigned int buffer, plane;
1561 int ret;
1562
1563 if (q->memory != V4L2_MEMORY_MMAP) {
1564 dprintk(1, "Queue is not currently set up for mmap\n");
1565 return -EINVAL;
1566 }
1567
1568 /*
1569 * Check memory area access mode.
1570 */
1571 if (!(vma->vm_flags & VM_SHARED)) {
1572 dprintk(1, "Invalid vma flags, VM_SHARED needed\n");
1573 return -EINVAL;
1574 }
1575 if (V4L2_TYPE_IS_OUTPUT(q->type)) {
1576 if (!(vma->vm_flags & VM_WRITE)) {
1577 dprintk(1, "Invalid vma flags, VM_WRITE needed\n");
1578 return -EINVAL;
1579 }
1580 } else {
1581 if (!(vma->vm_flags & VM_READ)) {
1582 dprintk(1, "Invalid vma flags, VM_READ needed\n");
1583 return -EINVAL;
1584 }
1585 }
1586
1587 /*
1588 * Find the plane corresponding to the offset passed by userspace.
1589 */
1590 ret = __find_plane_by_offset(q, off, &buffer, &plane);
1591 if (ret)
1592 return ret;
1593
1594 vb = q->bufs[buffer];
1595 vb_plane = &vb->planes[plane];
1596
1597 ret = q->mem_ops->mmap(vb_plane->mem_priv, vma);
1598 if (ret)
1599 return ret;
1600
Pawel Osciake23ccc02010-10-11 10:56:41 -03001601 dprintk(3, "Buffer %d, plane %d successfully mapped\n", buffer, plane);
1602 return 0;
1603}
1604EXPORT_SYMBOL_GPL(vb2_mmap);
1605
Scott Jiang6f524ec2011-09-21 09:25:23 -03001606#ifndef CONFIG_MMU
1607unsigned long vb2_get_unmapped_area(struct vb2_queue *q,
1608 unsigned long addr,
1609 unsigned long len,
1610 unsigned long pgoff,
1611 unsigned long flags)
1612{
1613 unsigned long off = pgoff << PAGE_SHIFT;
1614 struct vb2_buffer *vb;
1615 unsigned int buffer, plane;
1616 int ret;
1617
1618 if (q->memory != V4L2_MEMORY_MMAP) {
1619 dprintk(1, "Queue is not currently set up for mmap\n");
1620 return -EINVAL;
1621 }
1622
1623 /*
1624 * Find the plane corresponding to the offset passed by userspace.
1625 */
1626 ret = __find_plane_by_offset(q, off, &buffer, &plane);
1627 if (ret)
1628 return ret;
1629
1630 vb = q->bufs[buffer];
1631
1632 return (unsigned long)vb2_plane_vaddr(vb, plane);
1633}
1634EXPORT_SYMBOL_GPL(vb2_get_unmapped_area);
1635#endif
1636
Marek Szyprowskib25748f2010-12-06 05:56:55 -03001637static int __vb2_init_fileio(struct vb2_queue *q, int read);
1638static int __vb2_cleanup_fileio(struct vb2_queue *q);
Pawel Osciake23ccc02010-10-11 10:56:41 -03001639
1640/**
1641 * vb2_poll() - implements poll userspace operation
1642 * @q: videobuf2 queue
1643 * @file: file argument passed to the poll file operation handler
1644 * @wait: wait argument passed to the poll file operation handler
1645 *
1646 * This function implements poll file operation handler for a driver.
1647 * For CAPTURE queues, if a buffer is ready to be dequeued, the userspace will
1648 * be informed that the file descriptor of a video device is available for
1649 * reading.
1650 * For OUTPUT queues, if a buffer is ready to be dequeued, the file descriptor
1651 * will be reported as available for writing.
1652 *
1653 * The return values from this function are intended to be directly returned
1654 * from poll handler in driver.
1655 */
1656unsigned int vb2_poll(struct vb2_queue *q, struct file *file, poll_table *wait)
1657{
1658 unsigned long flags;
Marek Szyprowskib25748f2010-12-06 05:56:55 -03001659 unsigned int ret;
Pawel Osciake23ccc02010-10-11 10:56:41 -03001660 struct vb2_buffer *vb = NULL;
1661
1662 /*
Pawel Osciak4ffabdb2011-03-20 18:17:34 -03001663 * Start file I/O emulator only if streaming API has not been used yet.
Marek Szyprowskib25748f2010-12-06 05:56:55 -03001664 */
1665 if (q->num_buffers == 0 && q->fileio == NULL) {
1666 if (!V4L2_TYPE_IS_OUTPUT(q->type) && (q->io_modes & VB2_READ)) {
1667 ret = __vb2_init_fileio(q, 1);
1668 if (ret)
Pawel Osciak4ffabdb2011-03-20 18:17:34 -03001669 return POLLERR;
Marek Szyprowskib25748f2010-12-06 05:56:55 -03001670 }
1671 if (V4L2_TYPE_IS_OUTPUT(q->type) && (q->io_modes & VB2_WRITE)) {
1672 ret = __vb2_init_fileio(q, 0);
1673 if (ret)
Pawel Osciak4ffabdb2011-03-20 18:17:34 -03001674 return POLLERR;
Marek Szyprowskib25748f2010-12-06 05:56:55 -03001675 /*
1676 * Write to OUTPUT queue can be done immediately.
1677 */
1678 return POLLOUT | POLLWRNORM;
1679 }
1680 }
1681
1682 /*
Pawel Osciake23ccc02010-10-11 10:56:41 -03001683 * There is nothing to wait for if no buffers have already been queued.
1684 */
1685 if (list_empty(&q->queued_list))
1686 return POLLERR;
1687
1688 poll_wait(file, &q->done_wq, wait);
1689
1690 /*
1691 * Take first buffer available for dequeuing.
1692 */
1693 spin_lock_irqsave(&q->done_lock, flags);
1694 if (!list_empty(&q->done_list))
1695 vb = list_first_entry(&q->done_list, struct vb2_buffer,
1696 done_entry);
1697 spin_unlock_irqrestore(&q->done_lock, flags);
1698
1699 if (vb && (vb->state == VB2_BUF_STATE_DONE
1700 || vb->state == VB2_BUF_STATE_ERROR)) {
1701 return (V4L2_TYPE_IS_OUTPUT(q->type)) ? POLLOUT | POLLWRNORM :
1702 POLLIN | POLLRDNORM;
1703 }
1704 return 0;
1705}
1706EXPORT_SYMBOL_GPL(vb2_poll);
1707
1708/**
1709 * vb2_queue_init() - initialize a videobuf2 queue
1710 * @q: videobuf2 queue; this structure should be allocated in driver
1711 *
1712 * The vb2_queue structure should be allocated by the driver. The driver is
1713 * responsible of clearing it's content and setting initial values for some
1714 * required entries before calling this function.
1715 * q->ops, q->mem_ops, q->type and q->io_modes are mandatory. Please refer
1716 * to the struct vb2_queue description in include/media/videobuf2-core.h
1717 * for more information.
1718 */
1719int vb2_queue_init(struct vb2_queue *q)
1720{
1721 BUG_ON(!q);
1722 BUG_ON(!q->ops);
1723 BUG_ON(!q->mem_ops);
1724 BUG_ON(!q->type);
1725 BUG_ON(!q->io_modes);
1726
1727 BUG_ON(!q->ops->queue_setup);
1728 BUG_ON(!q->ops->buf_queue);
1729
1730 INIT_LIST_HEAD(&q->queued_list);
1731 INIT_LIST_HEAD(&q->done_list);
1732 spin_lock_init(&q->done_lock);
1733 init_waitqueue_head(&q->done_wq);
1734
1735 if (q->buf_struct_size == 0)
1736 q->buf_struct_size = sizeof(struct vb2_buffer);
1737
1738 return 0;
1739}
1740EXPORT_SYMBOL_GPL(vb2_queue_init);
1741
1742/**
1743 * vb2_queue_release() - stop streaming, release the queue and free memory
1744 * @q: videobuf2 queue
1745 *
1746 * This function stops streaming and performs necessary clean ups, including
1747 * freeing video buffer memory. The driver is responsible for freeing
1748 * the vb2_queue structure itself.
1749 */
1750void vb2_queue_release(struct vb2_queue *q)
1751{
Marek Szyprowskib25748f2010-12-06 05:56:55 -03001752 __vb2_cleanup_fileio(q);
Pawel Osciake23ccc02010-10-11 10:56:41 -03001753 __vb2_queue_cancel(q);
Guennadi Liakhovetski2d864012011-09-28 09:23:02 -03001754 __vb2_queue_free(q, q->num_buffers);
Pawel Osciake23ccc02010-10-11 10:56:41 -03001755}
1756EXPORT_SYMBOL_GPL(vb2_queue_release);
1757
Marek Szyprowskib25748f2010-12-06 05:56:55 -03001758/**
1759 * struct vb2_fileio_buf - buffer context used by file io emulator
1760 *
1761 * vb2 provides a compatibility layer and emulator of file io (read and
1762 * write) calls on top of streaming API. This structure is used for
1763 * tracking context related to the buffers.
1764 */
1765struct vb2_fileio_buf {
1766 void *vaddr;
1767 unsigned int size;
1768 unsigned int pos;
1769 unsigned int queued:1;
1770};
1771
1772/**
1773 * struct vb2_fileio_data - queue context used by file io emulator
1774 *
1775 * vb2 provides a compatibility layer and emulator of file io (read and
1776 * write) calls on top of streaming API. For proper operation it required
1777 * this structure to save the driver state between each call of the read
1778 * or write function.
1779 */
1780struct vb2_fileio_data {
1781 struct v4l2_requestbuffers req;
1782 struct v4l2_buffer b;
1783 struct vb2_fileio_buf bufs[VIDEO_MAX_FRAME];
1784 unsigned int index;
1785 unsigned int q_count;
1786 unsigned int dq_count;
1787 unsigned int flags;
1788};
1789
1790/**
1791 * __vb2_init_fileio() - initialize file io emulator
1792 * @q: videobuf2 queue
1793 * @read: mode selector (1 means read, 0 means write)
1794 */
1795static int __vb2_init_fileio(struct vb2_queue *q, int read)
1796{
1797 struct vb2_fileio_data *fileio;
1798 int i, ret;
1799 unsigned int count = 0;
1800
1801 /*
1802 * Sanity check
1803 */
1804 if ((read && !(q->io_modes & VB2_READ)) ||
1805 (!read && !(q->io_modes & VB2_WRITE)))
1806 BUG();
1807
1808 /*
1809 * Check if device supports mapping buffers to kernel virtual space.
1810 */
1811 if (!q->mem_ops->vaddr)
1812 return -EBUSY;
1813
1814 /*
1815 * Check if streaming api has not been already activated.
1816 */
1817 if (q->streaming || q->num_buffers > 0)
1818 return -EBUSY;
1819
1820 /*
1821 * Start with count 1, driver can increase it in queue_setup()
1822 */
1823 count = 1;
1824
1825 dprintk(3, "setting up file io: mode %s, count %d, flags %08x\n",
1826 (read) ? "read" : "write", count, q->io_flags);
1827
1828 fileio = kzalloc(sizeof(struct vb2_fileio_data), GFP_KERNEL);
1829 if (fileio == NULL)
1830 return -ENOMEM;
1831
1832 fileio->flags = q->io_flags;
1833
1834 /*
1835 * Request buffers and use MMAP type to force driver
1836 * to allocate buffers by itself.
1837 */
1838 fileio->req.count = count;
1839 fileio->req.memory = V4L2_MEMORY_MMAP;
1840 fileio->req.type = q->type;
1841 ret = vb2_reqbufs(q, &fileio->req);
1842 if (ret)
1843 goto err_kfree;
1844
1845 /*
1846 * Check if plane_count is correct
1847 * (multiplane buffers are not supported).
1848 */
1849 if (q->bufs[0]->num_planes != 1) {
1850 fileio->req.count = 0;
1851 ret = -EBUSY;
1852 goto err_reqbufs;
1853 }
1854
1855 /*
1856 * Get kernel address of each buffer.
1857 */
1858 for (i = 0; i < q->num_buffers; i++) {
1859 fileio->bufs[i].vaddr = vb2_plane_vaddr(q->bufs[i], 0);
1860 if (fileio->bufs[i].vaddr == NULL)
1861 goto err_reqbufs;
1862 fileio->bufs[i].size = vb2_plane_size(q->bufs[i], 0);
1863 }
1864
1865 /*
1866 * Read mode requires pre queuing of all buffers.
1867 */
1868 if (read) {
1869 /*
1870 * Queue all buffers.
1871 */
1872 for (i = 0; i < q->num_buffers; i++) {
1873 struct v4l2_buffer *b = &fileio->b;
1874 memset(b, 0, sizeof(*b));
1875 b->type = q->type;
1876 b->memory = q->memory;
1877 b->index = i;
1878 ret = vb2_qbuf(q, b);
1879 if (ret)
1880 goto err_reqbufs;
1881 fileio->bufs[i].queued = 1;
1882 }
1883
1884 /*
1885 * Start streaming.
1886 */
1887 ret = vb2_streamon(q, q->type);
1888 if (ret)
1889 goto err_reqbufs;
1890 }
1891
1892 q->fileio = fileio;
1893
1894 return ret;
1895
1896err_reqbufs:
1897 vb2_reqbufs(q, &fileio->req);
1898
1899err_kfree:
1900 kfree(fileio);
1901 return ret;
1902}
1903
1904/**
1905 * __vb2_cleanup_fileio() - free resourced used by file io emulator
1906 * @q: videobuf2 queue
1907 */
1908static int __vb2_cleanup_fileio(struct vb2_queue *q)
1909{
1910 struct vb2_fileio_data *fileio = q->fileio;
1911
1912 if (fileio) {
1913 /*
1914 * Hack fileio context to enable direct calls to vb2 ioctl
1915 * interface.
1916 */
1917 q->fileio = NULL;
1918
1919 vb2_streamoff(q, q->type);
1920 fileio->req.count = 0;
1921 vb2_reqbufs(q, &fileio->req);
1922 kfree(fileio);
1923 dprintk(3, "file io emulator closed\n");
1924 }
1925 return 0;
1926}
1927
1928/**
1929 * __vb2_perform_fileio() - perform a single file io (read or write) operation
1930 * @q: videobuf2 queue
1931 * @data: pointed to target userspace buffer
1932 * @count: number of bytes to read or write
1933 * @ppos: file handle position tracking pointer
1934 * @nonblock: mode selector (1 means blocking calls, 0 means nonblocking)
1935 * @read: access mode selector (1 means read, 0 means write)
1936 */
1937static size_t __vb2_perform_fileio(struct vb2_queue *q, char __user *data, size_t count,
1938 loff_t *ppos, int nonblock, int read)
1939{
1940 struct vb2_fileio_data *fileio;
1941 struct vb2_fileio_buf *buf;
1942 int ret, index;
1943
Mauro Carvalho Chehab08b99e22011-01-11 17:12:34 -03001944 dprintk(3, "file io: mode %s, offset %ld, count %zd, %sblocking\n",
Marek Szyprowskib25748f2010-12-06 05:56:55 -03001945 read ? "read" : "write", (long)*ppos, count,
1946 nonblock ? "non" : "");
1947
1948 if (!data)
1949 return -EINVAL;
1950
1951 /*
1952 * Initialize emulator on first call.
1953 */
1954 if (!q->fileio) {
1955 ret = __vb2_init_fileio(q, read);
1956 dprintk(3, "file io: vb2_init_fileio result: %d\n", ret);
1957 if (ret)
1958 return ret;
1959 }
1960 fileio = q->fileio;
1961
1962 /*
1963 * Hack fileio context to enable direct calls to vb2 ioctl interface.
1964 * The pointer will be restored before returning from this function.
1965 */
1966 q->fileio = NULL;
1967
1968 index = fileio->index;
1969 buf = &fileio->bufs[index];
1970
1971 /*
1972 * Check if we need to dequeue the buffer.
1973 */
1974 if (buf->queued) {
1975 struct vb2_buffer *vb;
1976
1977 /*
1978 * Call vb2_dqbuf to get buffer back.
1979 */
1980 memset(&fileio->b, 0, sizeof(fileio->b));
1981 fileio->b.type = q->type;
1982 fileio->b.memory = q->memory;
1983 fileio->b.index = index;
1984 ret = vb2_dqbuf(q, &fileio->b, nonblock);
1985 dprintk(5, "file io: vb2_dqbuf result: %d\n", ret);
1986 if (ret)
1987 goto end;
1988 fileio->dq_count += 1;
1989
1990 /*
1991 * Get number of bytes filled by the driver
1992 */
1993 vb = q->bufs[index];
1994 buf->size = vb2_get_plane_payload(vb, 0);
1995 buf->queued = 0;
1996 }
1997
1998 /*
1999 * Limit count on last few bytes of the buffer.
2000 */
2001 if (buf->pos + count > buf->size) {
2002 count = buf->size - buf->pos;
Mauro Carvalho Chehab08b99e22011-01-11 17:12:34 -03002003 dprintk(5, "reducing read count: %zd\n", count);
Marek Szyprowskib25748f2010-12-06 05:56:55 -03002004 }
2005
2006 /*
2007 * Transfer data to userspace.
2008 */
Mauro Carvalho Chehab08b99e22011-01-11 17:12:34 -03002009 dprintk(3, "file io: copying %zd bytes - buffer %d, offset %u\n",
Marek Szyprowskib25748f2010-12-06 05:56:55 -03002010 count, index, buf->pos);
2011 if (read)
2012 ret = copy_to_user(data, buf->vaddr + buf->pos, count);
2013 else
2014 ret = copy_from_user(buf->vaddr + buf->pos, data, count);
2015 if (ret) {
2016 dprintk(3, "file io: error copying data\n");
2017 ret = -EFAULT;
2018 goto end;
2019 }
2020
2021 /*
2022 * Update counters.
2023 */
2024 buf->pos += count;
2025 *ppos += count;
2026
2027 /*
2028 * Queue next buffer if required.
2029 */
2030 if (buf->pos == buf->size ||
2031 (!read && (fileio->flags & VB2_FILEIO_WRITE_IMMEDIATELY))) {
2032 /*
2033 * Check if this is the last buffer to read.
2034 */
2035 if (read && (fileio->flags & VB2_FILEIO_READ_ONCE) &&
2036 fileio->dq_count == 1) {
2037 dprintk(3, "file io: read limit reached\n");
2038 /*
2039 * Restore fileio pointer and release the context.
2040 */
2041 q->fileio = fileio;
2042 return __vb2_cleanup_fileio(q);
2043 }
2044
2045 /*
2046 * Call vb2_qbuf and give buffer to the driver.
2047 */
2048 memset(&fileio->b, 0, sizeof(fileio->b));
2049 fileio->b.type = q->type;
2050 fileio->b.memory = q->memory;
2051 fileio->b.index = index;
2052 fileio->b.bytesused = buf->pos;
2053 ret = vb2_qbuf(q, &fileio->b);
2054 dprintk(5, "file io: vb2_dbuf result: %d\n", ret);
2055 if (ret)
2056 goto end;
2057
2058 /*
2059 * Buffer has been queued, update the status
2060 */
2061 buf->pos = 0;
2062 buf->queued = 1;
2063 buf->size = q->bufs[0]->v4l2_planes[0].length;
2064 fileio->q_count += 1;
2065
2066 /*
2067 * Switch to the next buffer
2068 */
2069 fileio->index = (index + 1) % q->num_buffers;
2070
2071 /*
2072 * Start streaming if required.
2073 */
2074 if (!read && !q->streaming) {
2075 ret = vb2_streamon(q, q->type);
2076 if (ret)
2077 goto end;
2078 }
2079 }
2080
2081 /*
2082 * Return proper number of bytes processed.
2083 */
2084 if (ret == 0)
2085 ret = count;
2086end:
2087 /*
2088 * Restore the fileio context and block vb2 ioctl interface.
2089 */
2090 q->fileio = fileio;
2091 return ret;
2092}
2093
2094size_t vb2_read(struct vb2_queue *q, char __user *data, size_t count,
2095 loff_t *ppos, int nonblocking)
2096{
2097 return __vb2_perform_fileio(q, data, count, ppos, nonblocking, 1);
2098}
2099EXPORT_SYMBOL_GPL(vb2_read);
2100
2101size_t vb2_write(struct vb2_queue *q, char __user *data, size_t count,
2102 loff_t *ppos, int nonblocking)
2103{
2104 return __vb2_perform_fileio(q, data, count, ppos, nonblocking, 0);
2105}
2106EXPORT_SYMBOL_GPL(vb2_write);
2107
Pawel Osciake23ccc02010-10-11 10:56:41 -03002108MODULE_DESCRIPTION("Driver helper framework for Video for Linux 2");
Pawel Osciak95072082011-03-13 15:23:32 -03002109MODULE_AUTHOR("Pawel Osciak <pawel@osciak.com>, Marek Szyprowski");
Pawel Osciake23ccc02010-10-11 10:56:41 -03002110MODULE_LICENSE("GPL");