[media] mem2mem_testdev: return pending buffers in stop_streaming()
[deliverable/linux.git] / drivers / media / platform / mem2mem_testdev.c
CommitLineData
96d8eab5
PO
1/*
2 * A virtual v4l2-mem2mem example device.
3 *
4 * This is a virtual device driver for testing mem-to-mem videobuf framework.
5 * It simulates a device that uses memory buffers for both source and
6 * destination, processes the data and issues an "irq" (simulated by a timer).
7 * The device is capable of multi-instance, multi-buffer-per-transaction
8 * operation (via the mem2mem framework).
9 *
10 * Copyright (c) 2009-2010 Samsung Electronics Co., Ltd.
95072084 11 * Pawel Osciak, <pawel@osciak.com>
96d8eab5
PO
12 * Marek Szyprowski, <m.szyprowski@samsung.com>
13 *
14 * This program is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License as published by the
16 * Free Software Foundation; either version 2 of the
17 * License, or (at your option) any later version
18 */
19#include <linux/module.h>
20#include <linux/delay.h>
21#include <linux/fs.h>
96d8eab5
PO
22#include <linux/timer.h>
23#include <linux/sched.h>
6b46c397 24#include <linux/slab.h>
96d8eab5
PO
25
26#include <linux/platform_device.h>
27#include <media/v4l2-mem2mem.h>
28#include <media/v4l2-device.h>
29#include <media/v4l2-ioctl.h>
d3dd59c2 30#include <media/v4l2-ctrls.h>
97a3c902 31#include <media/v4l2-event.h>
d80ee38c 32#include <media/videobuf2-vmalloc.h>
96d8eab5
PO
33
34#define MEM2MEM_TEST_MODULE_NAME "mem2mem-testdev"
35
36MODULE_DESCRIPTION("Virtual device for mem2mem framework testing");
95072084 37MODULE_AUTHOR("Pawel Osciak, <pawel@osciak.com>");
96d8eab5 38MODULE_LICENSE("GPL");
1990d50b 39MODULE_VERSION("0.1.1");
96d8eab5 40
d95d7c64
HV
41static unsigned debug;
42module_param(debug, uint, 0644);
43MODULE_PARM_DESC(debug, "activates debug info");
44
96d8eab5
PO
45#define MIN_W 32
46#define MIN_H 32
47#define MAX_W 640
48#define MAX_H 480
9ce3ce4d 49#define DIM_ALIGN_MASK 7 /* 8-byte alignment for line length */
96d8eab5
PO
50
51/* Flags that indicate a format can be used for capture/output */
52#define MEM2MEM_CAPTURE (1 << 0)
53#define MEM2MEM_OUTPUT (1 << 1)
54
55#define MEM2MEM_NAME "m2m-testdev"
56
57/* Per queue */
58#define MEM2MEM_DEF_NUM_BUFS VIDEO_MAX_FRAME
59/* In bytes, per queue */
60#define MEM2MEM_VID_MEM_LIMIT (16 * 1024 * 1024)
61
62/* Default transaction time in msec */
43405831 63#define MEM2MEM_DEF_TRANSTIME 40
96d8eab5
PO
64#define MEM2MEM_COLOR_STEP (0xff >> 4)
65#define MEM2MEM_NUM_TILES 8
66
80072871
TM
67/* Flags that indicate processing mode */
68#define MEM2MEM_HFLIP (1 << 0)
69#define MEM2MEM_VFLIP (1 << 1)
70
96d8eab5 71#define dprintk(dev, fmt, arg...) \
d95d7c64 72 v4l2_dbg(1, debug, &dev->v4l2_dev, "%s: " fmt, __func__, ## arg)
96d8eab5
PO
73
74
32872831 75static void m2mtest_dev_release(struct device *dev)
96d8eab5
PO
76{}
77
78static struct platform_device m2mtest_pdev = {
79 .name = MEM2MEM_NAME,
80 .dev.release = m2mtest_dev_release,
81};
82
83struct m2mtest_fmt {
84 char *name;
85 u32 fourcc;
86 int depth;
87 /* Types the format can be used for */
88 u32 types;
89};
90
91static struct m2mtest_fmt formats[] = {
92 {
93 .name = "RGB565 (BE)",
94 .fourcc = V4L2_PIX_FMT_RGB565X, /* rrrrrggg gggbbbbb */
95 .depth = 16,
96 /* Both capture and output format */
97 .types = MEM2MEM_CAPTURE | MEM2MEM_OUTPUT,
98 },
99 {
100 .name = "4:2:2, packed, YUYV",
101 .fourcc = V4L2_PIX_FMT_YUYV,
102 .depth = 16,
103 /* Output-only format */
104 .types = MEM2MEM_OUTPUT,
105 },
106};
107
d3dd59c2
HV
108#define NUM_FORMATS ARRAY_SIZE(formats)
109
96d8eab5
PO
110/* Per-queue, driver-specific private data */
111struct m2mtest_q_data {
112 unsigned int width;
113 unsigned int height;
114 unsigned int sizeimage;
115 struct m2mtest_fmt *fmt;
116};
117
118enum {
119 V4L2_M2M_SRC = 0,
120 V4L2_M2M_DST = 1,
121};
122
d3dd59c2
HV
123#define V4L2_CID_TRANS_TIME_MSEC (V4L2_CID_USER_BASE + 0x1000)
124#define V4L2_CID_TRANS_NUM_BUFS (V4L2_CID_USER_BASE + 0x1001)
96d8eab5
PO
125
126static struct m2mtest_fmt *find_format(struct v4l2_format *f)
127{
128 struct m2mtest_fmt *fmt;
129 unsigned int k;
130
131 for (k = 0; k < NUM_FORMATS; k++) {
132 fmt = &formats[k];
133 if (fmt->fourcc == f->fmt.pix.pixelformat)
134 break;
135 }
136
137 if (k == NUM_FORMATS)
138 return NULL;
139
140 return &formats[k];
141}
142
143struct m2mtest_dev {
144 struct v4l2_device v4l2_dev;
145 struct video_device *vfd;
146
147 atomic_t num_inst;
148 struct mutex dev_mutex;
149 spinlock_t irqlock;
150
151 struct timer_list timer;
152
153 struct v4l2_m2m_dev *m2m_dev;
154};
155
156struct m2mtest_ctx {
d3dd59c2 157 struct v4l2_fh fh;
96d8eab5
PO
158 struct m2mtest_dev *dev;
159
d3dd59c2
HV
160 struct v4l2_ctrl_handler hdl;
161
96d8eab5
PO
162 /* Processed buffers in this transaction */
163 u8 num_processed;
164
165 /* Transaction length (i.e. how many buffers per transaction) */
166 u32 translen;
167 /* Transaction time (i.e. simulated processing time) in milliseconds */
168 u32 transtime;
169
170 /* Abort requested by m2m */
171 int aborting;
172
80072871
TM
173 /* Processing mode */
174 int mode;
175
47556ffa
HV
176 enum v4l2_colorspace colorspace;
177
9f4161a6
TM
178 /* Source and destination queue data */
179 struct m2mtest_q_data q_data[2];
96d8eab5
PO
180};
181
d3dd59c2
HV
182static inline struct m2mtest_ctx *file2ctx(struct file *file)
183{
184 return container_of(file->private_data, struct m2mtest_ctx, fh);
185}
186
9f4161a6
TM
187static struct m2mtest_q_data *get_q_data(struct m2mtest_ctx *ctx,
188 enum v4l2_buf_type type)
189{
190 switch (type) {
191 case V4L2_BUF_TYPE_VIDEO_OUTPUT:
192 return &ctx->q_data[V4L2_M2M_SRC];
193 case V4L2_BUF_TYPE_VIDEO_CAPTURE:
194 return &ctx->q_data[V4L2_M2M_DST];
195 default:
196 BUG();
197 }
198 return NULL;
199}
200
201
96d8eab5 202static int device_process(struct m2mtest_ctx *ctx,
d80ee38c
MS
203 struct vb2_buffer *in_vb,
204 struct vb2_buffer *out_vb)
96d8eab5
PO
205{
206 struct m2mtest_dev *dev = ctx->dev;
d80ee38c 207 struct m2mtest_q_data *q_data;
96d8eab5
PO
208 u8 *p_in, *p_out;
209 int x, y, t, w;
210 int tile_w, bytes_left;
d80ee38c 211 int width, height, bytesperline;
96d8eab5 212
9f4161a6 213 q_data = get_q_data(ctx, V4L2_BUF_TYPE_VIDEO_OUTPUT);
d80ee38c
MS
214
215 width = q_data->width;
216 height = q_data->height;
217 bytesperline = (q_data->width * q_data->fmt->depth) >> 3;
218
219 p_in = vb2_plane_vaddr(in_vb, 0);
220 p_out = vb2_plane_vaddr(out_vb, 0);
96d8eab5
PO
221 if (!p_in || !p_out) {
222 v4l2_err(&dev->v4l2_dev,
223 "Acquiring kernel pointers to buffers failed\n");
224 return -EFAULT;
225 }
226
d80ee38c 227 if (vb2_plane_size(in_vb, 0) > vb2_plane_size(out_vb, 0)) {
96d8eab5
PO
228 v4l2_err(&dev->v4l2_dev, "Output buffer is too small\n");
229 return -EINVAL;
230 }
231
d80ee38c 232 tile_w = (width * (q_data[V4L2_M2M_DST].fmt->depth >> 3))
96d8eab5 233 / MEM2MEM_NUM_TILES;
d80ee38c 234 bytes_left = bytesperline - tile_w * MEM2MEM_NUM_TILES;
96d8eab5
PO
235 w = 0;
236
d95d7c64
HV
237 memcpy(&out_vb->v4l2_buf.timestamp,
238 &in_vb->v4l2_buf.timestamp,
239 sizeof(struct timeval));
309f4d62
SA
240 out_vb->v4l2_buf.flags &= ~V4L2_BUF_FLAG_TSTAMP_SRC_MASK;
241 out_vb->v4l2_buf.flags |=
242 in_vb->v4l2_buf.flags & V4L2_BUF_FLAG_TSTAMP_SRC_MASK;
d95d7c64 243
80072871
TM
244 switch (ctx->mode) {
245 case MEM2MEM_HFLIP | MEM2MEM_VFLIP:
246 p_out += bytesperline * height - bytes_left;
247 for (y = 0; y < height; ++y) {
248 for (t = 0; t < MEM2MEM_NUM_TILES; ++t) {
249 if (w & 0x1) {
250 for (x = 0; x < tile_w; ++x)
251 *--p_out = *p_in++ +
252 MEM2MEM_COLOR_STEP;
253 } else {
254 for (x = 0; x < tile_w; ++x)
255 *--p_out = *p_in++ -
256 MEM2MEM_COLOR_STEP;
257 }
258 ++w;
96d8eab5 259 }
80072871
TM
260 p_in += bytes_left;
261 p_out -= bytes_left;
262 }
263 break;
264
265 case MEM2MEM_HFLIP:
266 for (y = 0; y < height; ++y) {
267 p_out += MEM2MEM_NUM_TILES * tile_w;
268 for (t = 0; t < MEM2MEM_NUM_TILES; ++t) {
269 if (w & 0x01) {
270 for (x = 0; x < tile_w; ++x)
271 *--p_out = *p_in++ +
272 MEM2MEM_COLOR_STEP;
273 } else {
274 for (x = 0; x < tile_w; ++x)
275 *--p_out = *p_in++ -
276 MEM2MEM_COLOR_STEP;
277 }
278 ++w;
279 }
280 p_in += bytes_left;
281 p_out += bytesperline;
282 }
283 break;
284
285 case MEM2MEM_VFLIP:
286 p_out += bytesperline * (height - 1);
287 for (y = 0; y < height; ++y) {
288 for (t = 0; t < MEM2MEM_NUM_TILES; ++t) {
289 if (w & 0x1) {
290 for (x = 0; x < tile_w; ++x)
291 *p_out++ = *p_in++ +
292 MEM2MEM_COLOR_STEP;
293 } else {
294 for (x = 0; x < tile_w; ++x)
295 *p_out++ = *p_in++ -
296 MEM2MEM_COLOR_STEP;
297 }
298 ++w;
299 }
300 p_in += bytes_left;
301 p_out += bytes_left - 2 * bytesperline;
302 }
303 break;
304
305 default:
306 for (y = 0; y < height; ++y) {
307 for (t = 0; t < MEM2MEM_NUM_TILES; ++t) {
308 if (w & 0x1) {
309 for (x = 0; x < tile_w; ++x)
310 *p_out++ = *p_in++ +
311 MEM2MEM_COLOR_STEP;
312 } else {
313 for (x = 0; x < tile_w; ++x)
314 *p_out++ = *p_in++ -
315 MEM2MEM_COLOR_STEP;
316 }
317 ++w;
318 }
319 p_in += bytes_left;
320 p_out += bytes_left;
96d8eab5 321 }
96d8eab5
PO
322 }
323
324 return 0;
325}
326
327static void schedule_irq(struct m2mtest_dev *dev, int msec_timeout)
328{
329 dprintk(dev, "Scheduling a simulated irq\n");
330 mod_timer(&dev->timer, jiffies + msecs_to_jiffies(msec_timeout));
331}
332
333/*
334 * mem2mem callbacks
335 */
336
337/**
338 * job_ready() - check whether an instance is ready to be scheduled to run
339 */
340static int job_ready(void *priv)
341{
342 struct m2mtest_ctx *ctx = priv;
343
20702ebc
SN
344 if (v4l2_m2m_num_src_bufs_ready(ctx->fh.m2m_ctx) < ctx->translen
345 || v4l2_m2m_num_dst_bufs_ready(ctx->fh.m2m_ctx) < ctx->translen) {
96d8eab5
PO
346 dprintk(ctx->dev, "Not enough buffers available\n");
347 return 0;
348 }
349
350 return 1;
351}
352
353static void job_abort(void *priv)
354{
355 struct m2mtest_ctx *ctx = priv;
356
357 /* Will cancel the transaction in the next interrupt handler */
358 ctx->aborting = 1;
359}
360
361/* device_run() - prepares and starts the device
362 *
363 * This simulates all the immediate preparations required before starting
364 * a device. This will be called by the framework when it decides to schedule
365 * a particular instance.
366 */
367static void device_run(void *priv)
368{
369 struct m2mtest_ctx *ctx = priv;
370 struct m2mtest_dev *dev = ctx->dev;
d80ee38c 371 struct vb2_buffer *src_buf, *dst_buf;
96d8eab5 372
20702ebc
SN
373 src_buf = v4l2_m2m_next_src_buf(ctx->fh.m2m_ctx);
374 dst_buf = v4l2_m2m_next_dst_buf(ctx->fh.m2m_ctx);
96d8eab5
PO
375
376 device_process(ctx, src_buf, dst_buf);
377
378 /* Run a timer, which simulates a hardware irq */
379 schedule_irq(dev, ctx->transtime);
380}
381
96d8eab5
PO
382static void device_isr(unsigned long priv)
383{
384 struct m2mtest_dev *m2mtest_dev = (struct m2mtest_dev *)priv;
385 struct m2mtest_ctx *curr_ctx;
d80ee38c 386 struct vb2_buffer *src_vb, *dst_vb;
96d8eab5
PO
387 unsigned long flags;
388
389 curr_ctx = v4l2_m2m_get_curr_priv(m2mtest_dev->m2m_dev);
390
391 if (NULL == curr_ctx) {
26fdcf09 392 pr_err("Instance released before the end of transaction\n");
96d8eab5
PO
393 return;
394 }
395
20702ebc
SN
396 src_vb = v4l2_m2m_src_buf_remove(curr_ctx->fh.m2m_ctx);
397 dst_vb = v4l2_m2m_dst_buf_remove(curr_ctx->fh.m2m_ctx);
d80ee38c 398
96d8eab5
PO
399 curr_ctx->num_processed++;
400
d80ee38c
MS
401 spin_lock_irqsave(&m2mtest_dev->irqlock, flags);
402 v4l2_m2m_buf_done(src_vb, VB2_BUF_STATE_DONE);
403 v4l2_m2m_buf_done(dst_vb, VB2_BUF_STATE_DONE);
404 spin_unlock_irqrestore(&m2mtest_dev->irqlock, flags);
405
96d8eab5
PO
406 if (curr_ctx->num_processed == curr_ctx->translen
407 || curr_ctx->aborting) {
408 dprintk(curr_ctx->dev, "Finishing transaction\n");
409 curr_ctx->num_processed = 0;
20702ebc 410 v4l2_m2m_job_finish(m2mtest_dev->m2m_dev, curr_ctx->fh.m2m_ctx);
96d8eab5 411 } else {
96d8eab5
PO
412 device_run(curr_ctx);
413 }
414}
415
96d8eab5
PO
416/*
417 * video ioctls
418 */
419static int vidioc_querycap(struct file *file, void *priv,
420 struct v4l2_capability *cap)
421{
422 strncpy(cap->driver, MEM2MEM_NAME, sizeof(cap->driver) - 1);
423 strncpy(cap->card, MEM2MEM_NAME, sizeof(cap->card) - 1);
72c2af6e
HV
424 snprintf(cap->bus_info, sizeof(cap->bus_info),
425 "platform:%s", MEM2MEM_NAME);
00424c7e 426 cap->device_caps = V4L2_CAP_VIDEO_M2M | V4L2_CAP_STREAMING;
b0d14996 427 cap->capabilities = cap->device_caps | V4L2_CAP_DEVICE_CAPS;
96d8eab5
PO
428 return 0;
429}
430
431static int enum_fmt(struct v4l2_fmtdesc *f, u32 type)
432{
433 int i, num;
434 struct m2mtest_fmt *fmt;
435
436 num = 0;
437
438 for (i = 0; i < NUM_FORMATS; ++i) {
439 if (formats[i].types & type) {
440 /* index-th format of type type found ? */
441 if (num == f->index)
442 break;
443 /* Correct type but haven't reached our index yet,
444 * just increment per-type index */
445 ++num;
446 }
447 }
448
449 if (i < NUM_FORMATS) {
450 /* Format found */
451 fmt = &formats[i];
452 strncpy(f->description, fmt->name, sizeof(f->description) - 1);
453 f->pixelformat = fmt->fourcc;
454 return 0;
455 }
456
457 /* Format not found */
458 return -EINVAL;
459}
460
461static int vidioc_enum_fmt_vid_cap(struct file *file, void *priv,
462 struct v4l2_fmtdesc *f)
463{
464 return enum_fmt(f, MEM2MEM_CAPTURE);
465}
466
467static int vidioc_enum_fmt_vid_out(struct file *file, void *priv,
468 struct v4l2_fmtdesc *f)
469{
470 return enum_fmt(f, MEM2MEM_OUTPUT);
471}
472
473static int vidioc_g_fmt(struct m2mtest_ctx *ctx, struct v4l2_format *f)
474{
d80ee38c 475 struct vb2_queue *vq;
96d8eab5
PO
476 struct m2mtest_q_data *q_data;
477
20702ebc 478 vq = v4l2_m2m_get_vq(ctx->fh.m2m_ctx, f->type);
96d8eab5
PO
479 if (!vq)
480 return -EINVAL;
481
9f4161a6 482 q_data = get_q_data(ctx, f->type);
96d8eab5
PO
483
484 f->fmt.pix.width = q_data->width;
485 f->fmt.pix.height = q_data->height;
d80ee38c 486 f->fmt.pix.field = V4L2_FIELD_NONE;
96d8eab5
PO
487 f->fmt.pix.pixelformat = q_data->fmt->fourcc;
488 f->fmt.pix.bytesperline = (q_data->width * q_data->fmt->depth) >> 3;
489 f->fmt.pix.sizeimage = q_data->sizeimage;
47556ffa 490 f->fmt.pix.colorspace = ctx->colorspace;
96d8eab5
PO
491
492 return 0;
493}
494
495static int vidioc_g_fmt_vid_out(struct file *file, void *priv,
496 struct v4l2_format *f)
497{
d3dd59c2 498 return vidioc_g_fmt(file2ctx(file), f);
96d8eab5
PO
499}
500
501static int vidioc_g_fmt_vid_cap(struct file *file, void *priv,
502 struct v4l2_format *f)
503{
d3dd59c2 504 return vidioc_g_fmt(file2ctx(file), f);
96d8eab5
PO
505}
506
507static int vidioc_try_fmt(struct v4l2_format *f, struct m2mtest_fmt *fmt)
508{
509 enum v4l2_field field;
510
511 field = f->fmt.pix.field;
512
513 if (field == V4L2_FIELD_ANY)
514 field = V4L2_FIELD_NONE;
515 else if (V4L2_FIELD_NONE != field)
516 return -EINVAL;
517
518 /* V4L2 specification suggests the driver corrects the format struct
519 * if any of the dimensions is unsupported */
520 f->fmt.pix.field = field;
521
522 if (f->fmt.pix.height < MIN_H)
523 f->fmt.pix.height = MIN_H;
524 else if (f->fmt.pix.height > MAX_H)
525 f->fmt.pix.height = MAX_H;
526
527 if (f->fmt.pix.width < MIN_W)
528 f->fmt.pix.width = MIN_W;
529 else if (f->fmt.pix.width > MAX_W)
530 f->fmt.pix.width = MAX_W;
531
532 f->fmt.pix.width &= ~DIM_ALIGN_MASK;
533 f->fmt.pix.bytesperline = (f->fmt.pix.width * fmt->depth) >> 3;
534 f->fmt.pix.sizeimage = f->fmt.pix.height * f->fmt.pix.bytesperline;
f063bb66 535 f->fmt.pix.priv = 0;
96d8eab5
PO
536
537 return 0;
538}
539
540static int vidioc_try_fmt_vid_cap(struct file *file, void *priv,
541 struct v4l2_format *f)
542{
543 struct m2mtest_fmt *fmt;
d3dd59c2 544 struct m2mtest_ctx *ctx = file2ctx(file);
96d8eab5
PO
545
546 fmt = find_format(f);
4e8ec0a4
HV
547 if (!fmt) {
548 f->fmt.pix.pixelformat = formats[0].fourcc;
549 fmt = find_format(f);
550 }
551 if (!(fmt->types & MEM2MEM_CAPTURE)) {
96d8eab5
PO
552 v4l2_err(&ctx->dev->v4l2_dev,
553 "Fourcc format (0x%08x) invalid.\n",
554 f->fmt.pix.pixelformat);
555 return -EINVAL;
556 }
47556ffa 557 f->fmt.pix.colorspace = ctx->colorspace;
96d8eab5
PO
558
559 return vidioc_try_fmt(f, fmt);
560}
561
562static int vidioc_try_fmt_vid_out(struct file *file, void *priv,
563 struct v4l2_format *f)
564{
565 struct m2mtest_fmt *fmt;
d3dd59c2 566 struct m2mtest_ctx *ctx = file2ctx(file);
96d8eab5
PO
567
568 fmt = find_format(f);
4e8ec0a4
HV
569 if (!fmt) {
570 f->fmt.pix.pixelformat = formats[0].fourcc;
571 fmt = find_format(f);
572 }
573 if (!(fmt->types & MEM2MEM_OUTPUT)) {
96d8eab5
PO
574 v4l2_err(&ctx->dev->v4l2_dev,
575 "Fourcc format (0x%08x) invalid.\n",
576 f->fmt.pix.pixelformat);
577 return -EINVAL;
578 }
47556ffa
HV
579 if (!f->fmt.pix.colorspace)
580 f->fmt.pix.colorspace = V4L2_COLORSPACE_REC709;
96d8eab5
PO
581
582 return vidioc_try_fmt(f, fmt);
583}
584
585static int vidioc_s_fmt(struct m2mtest_ctx *ctx, struct v4l2_format *f)
586{
587 struct m2mtest_q_data *q_data;
d80ee38c 588 struct vb2_queue *vq;
96d8eab5 589
20702ebc 590 vq = v4l2_m2m_get_vq(ctx->fh.m2m_ctx, f->type);
96d8eab5
PO
591 if (!vq)
592 return -EINVAL;
593
9f4161a6 594 q_data = get_q_data(ctx, f->type);
96d8eab5
PO
595 if (!q_data)
596 return -EINVAL;
597
d80ee38c 598 if (vb2_is_busy(vq)) {
96d8eab5 599 v4l2_err(&ctx->dev->v4l2_dev, "%s queue busy\n", __func__);
07e80305 600 return -EBUSY;
96d8eab5
PO
601 }
602
603 q_data->fmt = find_format(f);
604 q_data->width = f->fmt.pix.width;
605 q_data->height = f->fmt.pix.height;
606 q_data->sizeimage = q_data->width * q_data->height
607 * q_data->fmt->depth >> 3;
96d8eab5
PO
608
609 dprintk(ctx->dev,
610 "Setting format for type %d, wxh: %dx%d, fmt: %d\n",
611 f->type, q_data->width, q_data->height, q_data->fmt->fourcc);
612
07e80305 613 return 0;
96d8eab5
PO
614}
615
616static int vidioc_s_fmt_vid_cap(struct file *file, void *priv,
617 struct v4l2_format *f)
618{
619 int ret;
620
621 ret = vidioc_try_fmt_vid_cap(file, priv, f);
622 if (ret)
623 return ret;
624
d3dd59c2 625 return vidioc_s_fmt(file2ctx(file), f);
96d8eab5
PO
626}
627
628static int vidioc_s_fmt_vid_out(struct file *file, void *priv,
629 struct v4l2_format *f)
630{
47556ffa 631 struct m2mtest_ctx *ctx = file2ctx(file);
96d8eab5
PO
632 int ret;
633
634 ret = vidioc_try_fmt_vid_out(file, priv, f);
635 if (ret)
636 return ret;
637
47556ffa
HV
638 ret = vidioc_s_fmt(file2ctx(file), f);
639 if (!ret)
640 ctx->colorspace = f->fmt.pix.colorspace;
641 return ret;
96d8eab5
PO
642}
643
d3dd59c2 644static int m2mtest_s_ctrl(struct v4l2_ctrl *ctrl)
96d8eab5 645{
d3dd59c2
HV
646 struct m2mtest_ctx *ctx =
647 container_of(ctrl->handler, struct m2mtest_ctx, hdl);
96d8eab5
PO
648
649 switch (ctrl->id) {
80072871 650 case V4L2_CID_HFLIP:
d3dd59c2 651 if (ctrl->val)
80072871
TM
652 ctx->mode |= MEM2MEM_HFLIP;
653 else
654 ctx->mode &= ~MEM2MEM_HFLIP;
655 break;
656
657 case V4L2_CID_VFLIP:
d3dd59c2 658 if (ctrl->val)
80072871
TM
659 ctx->mode |= MEM2MEM_VFLIP;
660 else
661 ctx->mode &= ~MEM2MEM_VFLIP;
662 break;
663
96d8eab5 664 case V4L2_CID_TRANS_TIME_MSEC:
d3dd59c2 665 ctx->transtime = ctrl->val;
96d8eab5
PO
666 break;
667
668 case V4L2_CID_TRANS_NUM_BUFS:
d3dd59c2 669 ctx->translen = ctrl->val;
96d8eab5
PO
670 break;
671
672 default:
673 v4l2_err(&ctx->dev->v4l2_dev, "Invalid control\n");
674 return -EINVAL;
675 }
676
677 return 0;
678}
679
d3dd59c2
HV
680static const struct v4l2_ctrl_ops m2mtest_ctrl_ops = {
681 .s_ctrl = m2mtest_s_ctrl,
682};
683
96d8eab5
PO
684
685static const struct v4l2_ioctl_ops m2mtest_ioctl_ops = {
686 .vidioc_querycap = vidioc_querycap,
687
688 .vidioc_enum_fmt_vid_cap = vidioc_enum_fmt_vid_cap,
689 .vidioc_g_fmt_vid_cap = vidioc_g_fmt_vid_cap,
690 .vidioc_try_fmt_vid_cap = vidioc_try_fmt_vid_cap,
691 .vidioc_s_fmt_vid_cap = vidioc_s_fmt_vid_cap,
692
693 .vidioc_enum_fmt_vid_out = vidioc_enum_fmt_vid_out,
694 .vidioc_g_fmt_vid_out = vidioc_g_fmt_vid_out,
695 .vidioc_try_fmt_vid_out = vidioc_try_fmt_vid_out,
696 .vidioc_s_fmt_vid_out = vidioc_s_fmt_vid_out,
697
20702ebc
SN
698 .vidioc_reqbufs = v4l2_m2m_ioctl_reqbufs,
699 .vidioc_querybuf = v4l2_m2m_ioctl_querybuf,
700 .vidioc_qbuf = v4l2_m2m_ioctl_qbuf,
701 .vidioc_dqbuf = v4l2_m2m_ioctl_dqbuf,
96d8eab5 702
20702ebc
SN
703 .vidioc_streamon = v4l2_m2m_ioctl_streamon,
704 .vidioc_streamoff = v4l2_m2m_ioctl_streamoff,
96d8eab5 705
97a3c902
HV
706 .vidioc_subscribe_event = v4l2_ctrl_subscribe_event,
707 .vidioc_unsubscribe_event = v4l2_event_unsubscribe,
96d8eab5
PO
708};
709
710
711/*
712 * Queue operations
713 */
714
fc714e70
GL
715static int m2mtest_queue_setup(struct vb2_queue *vq,
716 const struct v4l2_format *fmt,
717 unsigned int *nbuffers, unsigned int *nplanes,
718 unsigned int sizes[], void *alloc_ctxs[])
96d8eab5 719{
d80ee38c 720 struct m2mtest_ctx *ctx = vb2_get_drv_priv(vq);
96d8eab5 721 struct m2mtest_q_data *q_data;
d80ee38c 722 unsigned int size, count = *nbuffers;
96d8eab5 723
9f4161a6 724 q_data = get_q_data(ctx, vq->type);
96d8eab5 725
d80ee38c
MS
726 size = q_data->width * q_data->height * q_data->fmt->depth >> 3;
727
728 while (size * count > MEM2MEM_VID_MEM_LIMIT)
729 (count)--;
96d8eab5 730
d80ee38c
MS
731 *nplanes = 1;
732 *nbuffers = count;
733 sizes[0] = size;
96d8eab5 734
d80ee38c
MS
735 /*
736 * videobuf2-vmalloc allocator is context-less so no need to set
737 * alloc_ctxs array.
738 */
96d8eab5 739
d80ee38c 740 dprintk(ctx->dev, "get %d buffer(s) of size %d each.\n", count, size);
96d8eab5
PO
741
742 return 0;
743}
744
d80ee38c 745static int m2mtest_buf_prepare(struct vb2_buffer *vb)
96d8eab5 746{
d80ee38c 747 struct m2mtest_ctx *ctx = vb2_get_drv_priv(vb->vb2_queue);
96d8eab5 748 struct m2mtest_q_data *q_data;
96d8eab5 749
d80ee38c 750 dprintk(ctx->dev, "type: %d\n", vb->vb2_queue->type);
96d8eab5 751
9f4161a6 752 q_data = get_q_data(ctx, vb->vb2_queue->type);
96d8eab5 753
d80ee38c
MS
754 if (vb2_plane_size(vb, 0) < q_data->sizeimage) {
755 dprintk(ctx->dev, "%s data will not fit into plane (%lu < %lu)\n",
756 __func__, vb2_plane_size(vb, 0), (long)q_data->sizeimage);
96d8eab5
PO
757 return -EINVAL;
758 }
759
d80ee38c 760 vb2_set_plane_payload(vb, 0, q_data->sizeimage);
96d8eab5
PO
761
762 return 0;
96d8eab5
PO
763}
764
d80ee38c 765static void m2mtest_buf_queue(struct vb2_buffer *vb)
96d8eab5 766{
d80ee38c 767 struct m2mtest_ctx *ctx = vb2_get_drv_priv(vb->vb2_queue);
20702ebc 768 v4l2_m2m_buf_queue(ctx->fh.m2m_ctx, vb);
0f910bf0
MO
769}
770
a773632c
HV
771static int m2mtest_stop_streaming(struct vb2_queue *q)
772{
773 struct m2mtest_ctx *ctx = vb2_get_drv_priv(q);
774 struct vb2_buffer *vb;
775 unsigned long flags;
776
777 for (;;) {
778 if (V4L2_TYPE_IS_OUTPUT(q->type))
779 vb = v4l2_m2m_src_buf_remove(ctx->fh.m2m_ctx);
780 else
781 vb = v4l2_m2m_dst_buf_remove(ctx->fh.m2m_ctx);
782 if (vb == NULL)
783 return 0;
784 spin_lock_irqsave(&ctx->dev->irqlock, flags);
785 v4l2_m2m_buf_done(vb, VB2_BUF_STATE_ERROR);
786 spin_unlock_irqrestore(&ctx->dev->irqlock, flags);
787 }
788 return 0;
789}
790
d80ee38c
MS
791static struct vb2_ops m2mtest_qops = {
792 .queue_setup = m2mtest_queue_setup,
793 .buf_prepare = m2mtest_buf_prepare,
794 .buf_queue = m2mtest_buf_queue,
a773632c 795 .stop_streaming = m2mtest_stop_streaming,
20702ebc
SN
796 .wait_prepare = vb2_ops_wait_prepare,
797 .wait_finish = vb2_ops_wait_finish,
96d8eab5
PO
798};
799
d80ee38c 800static int queue_init(void *priv, struct vb2_queue *src_vq, struct vb2_queue *dst_vq)
96d8eab5
PO
801{
802 struct m2mtest_ctx *ctx = priv;
d80ee38c 803 int ret;
96d8eab5 804
d80ee38c 805 src_vq->type = V4L2_BUF_TYPE_VIDEO_OUTPUT;
782f36ca 806 src_vq->io_modes = VB2_MMAP | VB2_USERPTR | VB2_DMABUF;
d80ee38c
MS
807 src_vq->drv_priv = ctx;
808 src_vq->buf_struct_size = sizeof(struct v4l2_m2m_buffer);
809 src_vq->ops = &m2mtest_qops;
810 src_vq->mem_ops = &vb2_vmalloc_memops;
ade48681 811 src_vq->timestamp_flags = V4L2_BUF_FLAG_TIMESTAMP_COPY;
20702ebc 812 src_vq->lock = &ctx->dev->dev_mutex;
d80ee38c
MS
813
814 ret = vb2_queue_init(src_vq);
815 if (ret)
816 return ret;
96d8eab5 817
d80ee38c 818 dst_vq->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
782f36ca 819 dst_vq->io_modes = VB2_MMAP | VB2_USERPTR | VB2_DMABUF;
d80ee38c
MS
820 dst_vq->drv_priv = ctx;
821 dst_vq->buf_struct_size = sizeof(struct v4l2_m2m_buffer);
822 dst_vq->ops = &m2mtest_qops;
823 dst_vq->mem_ops = &vb2_vmalloc_memops;
ade48681 824 dst_vq->timestamp_flags = V4L2_BUF_FLAG_TIMESTAMP_COPY;
20702ebc 825 dst_vq->lock = &ctx->dev->dev_mutex;
d80ee38c
MS
826
827 return vb2_queue_init(dst_vq);
828}
96d8eab5 829
d3dd59c2
HV
830static const struct v4l2_ctrl_config m2mtest_ctrl_trans_time_msec = {
831 .ops = &m2mtest_ctrl_ops,
832 .id = V4L2_CID_TRANS_TIME_MSEC,
833 .name = "Transaction Time (msec)",
834 .type = V4L2_CTRL_TYPE_INTEGER,
43405831 835 .def = MEM2MEM_DEF_TRANSTIME,
d3dd59c2
HV
836 .min = 1,
837 .max = 10001,
43405831 838 .step = 1,
d3dd59c2
HV
839};
840
841static const struct v4l2_ctrl_config m2mtest_ctrl_trans_num_bufs = {
842 .ops = &m2mtest_ctrl_ops,
843 .id = V4L2_CID_TRANS_NUM_BUFS,
844 .name = "Buffers Per Transaction",
845 .type = V4L2_CTRL_TYPE_INTEGER,
846 .def = 1,
847 .min = 1,
848 .max = MEM2MEM_DEF_NUM_BUFS,
849 .step = 1,
850};
851
96d8eab5
PO
852/*
853 * File operations
854 */
855static int m2mtest_open(struct file *file)
856{
857 struct m2mtest_dev *dev = video_drvdata(file);
858 struct m2mtest_ctx *ctx = NULL;
d3dd59c2 859 struct v4l2_ctrl_handler *hdl;
f4694039 860 int rc = 0;
96d8eab5 861
f4694039
HV
862 if (mutex_lock_interruptible(&dev->dev_mutex))
863 return -ERESTARTSYS;
56ed221f 864 ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
f4694039
HV
865 if (!ctx) {
866 rc = -ENOMEM;
867 goto open_unlock;
868 }
96d8eab5 869
d3dd59c2
HV
870 v4l2_fh_init(&ctx->fh, video_devdata(file));
871 file->private_data = &ctx->fh;
96d8eab5 872 ctx->dev = dev;
d3dd59c2
HV
873 hdl = &ctx->hdl;
874 v4l2_ctrl_handler_init(hdl, 4);
875 v4l2_ctrl_new_std(hdl, &m2mtest_ctrl_ops, V4L2_CID_HFLIP, 0, 1, 1, 0);
876 v4l2_ctrl_new_std(hdl, &m2mtest_ctrl_ops, V4L2_CID_VFLIP, 0, 1, 1, 0);
877 v4l2_ctrl_new_custom(hdl, &m2mtest_ctrl_trans_time_msec, NULL);
878 v4l2_ctrl_new_custom(hdl, &m2mtest_ctrl_trans_num_bufs, NULL);
879 if (hdl->error) {
a7bd7756 880 rc = hdl->error;
d3dd59c2 881 v4l2_ctrl_handler_free(hdl);
a7bd7756 882 goto open_unlock;
d3dd59c2
HV
883 }
884 ctx->fh.ctrl_handler = hdl;
885 v4l2_ctrl_handler_setup(hdl);
96d8eab5 886
9f4161a6 887 ctx->q_data[V4L2_M2M_SRC].fmt = &formats[0];
47556ffa
HV
888 ctx->q_data[V4L2_M2M_SRC].width = 640;
889 ctx->q_data[V4L2_M2M_SRC].height = 480;
890 ctx->q_data[V4L2_M2M_SRC].sizeimage =
891 ctx->q_data[V4L2_M2M_SRC].width *
892 ctx->q_data[V4L2_M2M_SRC].height *
893 (ctx->q_data[V4L2_M2M_SRC].fmt->depth >> 3);
894 ctx->q_data[V4L2_M2M_DST] = ctx->q_data[V4L2_M2M_SRC];
895 ctx->colorspace = V4L2_COLORSPACE_REC709;
9f4161a6 896
20702ebc 897 ctx->fh.m2m_ctx = v4l2_m2m_ctx_init(dev->m2m_dev, ctx, &queue_init);
d80ee38c 898
20702ebc
SN
899 if (IS_ERR(ctx->fh.m2m_ctx)) {
900 rc = PTR_ERR(ctx->fh.m2m_ctx);
16ee9bb1 901
d3dd59c2 902 v4l2_ctrl_handler_free(hdl);
96d8eab5 903 kfree(ctx);
f4694039 904 goto open_unlock;
96d8eab5
PO
905 }
906
d3dd59c2 907 v4l2_fh_add(&ctx->fh);
96d8eab5
PO
908 atomic_inc(&dev->num_inst);
909
20702ebc
SN
910 dprintk(dev, "Created instance: %p, m2m_ctx: %p\n",
911 ctx, ctx->fh.m2m_ctx);
96d8eab5 912
f4694039
HV
913open_unlock:
914 mutex_unlock(&dev->dev_mutex);
a7bd7756 915 return rc;
96d8eab5
PO
916}
917
918static int m2mtest_release(struct file *file)
919{
920 struct m2mtest_dev *dev = video_drvdata(file);
d3dd59c2 921 struct m2mtest_ctx *ctx = file2ctx(file);
96d8eab5
PO
922
923 dprintk(dev, "Releasing instance %p\n", ctx);
924
d3dd59c2
HV
925 v4l2_fh_del(&ctx->fh);
926 v4l2_fh_exit(&ctx->fh);
927 v4l2_ctrl_handler_free(&ctx->hdl);
f4694039 928 mutex_lock(&dev->dev_mutex);
20702ebc 929 v4l2_m2m_ctx_release(ctx->fh.m2m_ctx);
f4694039 930 mutex_unlock(&dev->dev_mutex);
96d8eab5
PO
931 kfree(ctx);
932
933 atomic_dec(&dev->num_inst);
934
935 return 0;
936}
937
96d8eab5
PO
938static const struct v4l2_file_operations m2mtest_fops = {
939 .owner = THIS_MODULE,
940 .open = m2mtest_open,
941 .release = m2mtest_release,
20702ebc 942 .poll = v4l2_m2m_fop_poll,
07e80305 943 .unlocked_ioctl = video_ioctl2,
20702ebc 944 .mmap = v4l2_m2m_fop_mmap,
96d8eab5
PO
945};
946
947static struct video_device m2mtest_videodev = {
948 .name = MEM2MEM_NAME,
954f340f 949 .vfl_dir = VFL_DIR_M2M,
96d8eab5
PO
950 .fops = &m2mtest_fops,
951 .ioctl_ops = &m2mtest_ioctl_ops,
952 .minor = -1,
953 .release = video_device_release,
954};
955
956static struct v4l2_m2m_ops m2m_ops = {
957 .device_run = device_run,
958 .job_ready = job_ready,
959 .job_abort = job_abort,
960};
961
962static int m2mtest_probe(struct platform_device *pdev)
963{
964 struct m2mtest_dev *dev;
965 struct video_device *vfd;
966 int ret;
967
38a7996c 968 dev = devm_kzalloc(&pdev->dev, sizeof(*dev), GFP_KERNEL);
96d8eab5
PO
969 if (!dev)
970 return -ENOMEM;
971
972 spin_lock_init(&dev->irqlock);
973
974 ret = v4l2_device_register(&pdev->dev, &dev->v4l2_dev);
975 if (ret)
38a7996c 976 return ret;
96d8eab5
PO
977
978 atomic_set(&dev->num_inst, 0);
979 mutex_init(&dev->dev_mutex);
980
981 vfd = video_device_alloc();
982 if (!vfd) {
983 v4l2_err(&dev->v4l2_dev, "Failed to allocate video device\n");
984 ret = -ENOMEM;
985 goto unreg_dev;
986 }
987
988 *vfd = m2mtest_videodev;
07e80305 989 vfd->lock = &dev->dev_mutex;
8f484d87 990 vfd->v4l2_dev = &dev->v4l2_dev;
96d8eab5
PO
991
992 ret = video_register_device(vfd, VFL_TYPE_GRABBER, 0);
993 if (ret) {
994 v4l2_err(&dev->v4l2_dev, "Failed to register video device\n");
995 goto rel_vdev;
996 }
997
998 video_set_drvdata(vfd, dev);
999 snprintf(vfd->name, sizeof(vfd->name), "%s", m2mtest_videodev.name);
1000 dev->vfd = vfd;
8f484d87 1001 v4l2_info(&dev->v4l2_dev,
96d8eab5
PO
1002 "Device registered as /dev/video%d\n", vfd->num);
1003
1004 setup_timer(&dev->timer, device_isr, (long)dev);
1005 platform_set_drvdata(pdev, dev);
1006
1007 dev->m2m_dev = v4l2_m2m_init(&m2m_ops);
1008 if (IS_ERR(dev->m2m_dev)) {
1009 v4l2_err(&dev->v4l2_dev, "Failed to init mem2mem device\n");
1010 ret = PTR_ERR(dev->m2m_dev);
1011 goto err_m2m;
1012 }
1013
1014 return 0;
1015
1016err_m2m:
b7e13ef7 1017 v4l2_m2m_release(dev->m2m_dev);
96d8eab5
PO
1018 video_unregister_device(dev->vfd);
1019rel_vdev:
1020 video_device_release(vfd);
1021unreg_dev:
1022 v4l2_device_unregister(&dev->v4l2_dev);
96d8eab5
PO
1023
1024 return ret;
1025}
1026
1027static int m2mtest_remove(struct platform_device *pdev)
1028{
ede79413 1029 struct m2mtest_dev *dev = platform_get_drvdata(pdev);
96d8eab5
PO
1030
1031 v4l2_info(&dev->v4l2_dev, "Removing " MEM2MEM_TEST_MODULE_NAME);
1032 v4l2_m2m_release(dev->m2m_dev);
1033 del_timer_sync(&dev->timer);
1034 video_unregister_device(dev->vfd);
1035 v4l2_device_unregister(&dev->v4l2_dev);
96d8eab5
PO
1036
1037 return 0;
1038}
1039
1040static struct platform_driver m2mtest_pdrv = {
1041 .probe = m2mtest_probe,
1042 .remove = m2mtest_remove,
1043 .driver = {
1044 .name = MEM2MEM_NAME,
1045 .owner = THIS_MODULE,
1046 },
1047};
1048
1049static void __exit m2mtest_exit(void)
1050{
1051 platform_driver_unregister(&m2mtest_pdrv);
1052 platform_device_unregister(&m2mtest_pdev);
1053}
1054
1055static int __init m2mtest_init(void)
1056{
1057 int ret;
1058
1059 ret = platform_device_register(&m2mtest_pdev);
1060 if (ret)
1061 return ret;
1062
1063 ret = platform_driver_register(&m2mtest_pdrv);
1064 if (ret)
1065 platform_device_unregister(&m2mtest_pdev);
1066
1067 return 0;
1068}
1069
1070module_init(m2mtest_init);
1071module_exit(m2mtest_exit);
This page took 0.543171 seconds and 5 git commands to generate.