blob: 104d86318107d379c1d714473395af4dac9553d1 [file] [log] [blame]
Pawel Osciak96d8eab2010-04-23 05:38:38 -03001/*
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.
Pawel Osciak95072082011-03-13 15:23:32 -030011 * Pawel Osciak, <pawel@osciak.com>
Pawel Osciak96d8eab2010-04-23 05:38:38 -030012 * 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>
Pawel Osciak96d8eab2010-04-23 05:38:38 -030022#include <linux/timer.h>
23#include <linux/sched.h>
Randy Dunlap6b46c392010-05-07 15:22:26 -030024#include <linux/slab.h>
Pawel Osciak96d8eab2010-04-23 05:38:38 -030025
26#include <linux/platform_device.h>
27#include <media/v4l2-mem2mem.h>
28#include <media/v4l2-device.h>
29#include <media/v4l2-ioctl.h>
Hans Verkuild3dd59c2012-07-18 10:35:37 -030030#include <media/v4l2-ctrls.h>
Hans Verkuil97a3c902012-07-18 10:54:59 -030031#include <media/v4l2-event.h>
Marek Szyprowskid80ee382011-01-12 06:50:55 -030032#include <media/videobuf2-vmalloc.h>
Pawel Osciak96d8eab2010-04-23 05:38:38 -030033
34#define MEM2MEM_TEST_MODULE_NAME "mem2mem-testdev"
35
36MODULE_DESCRIPTION("Virtual device for mem2mem framework testing");
Pawel Osciak95072082011-03-13 15:23:32 -030037MODULE_AUTHOR("Pawel Osciak, <pawel@osciak.com>");
Pawel Osciak96d8eab2010-04-23 05:38:38 -030038MODULE_LICENSE("GPL");
Mauro Carvalho Chehab1990d502011-06-24 14:45:49 -030039MODULE_VERSION("0.1.1");
Pawel Osciak96d8eab2010-04-23 05:38:38 -030040
Hans Verkuild95d7c62013-04-17 03:04:10 -030041static unsigned debug;
42module_param(debug, uint, 0644);
43MODULE_PARM_DESC(debug, "activates debug info");
44
Pawel Osciak96d8eab2010-04-23 05:38:38 -030045#define MIN_W 32
46#define MIN_H 32
47#define MAX_W 640
48#define MAX_H 480
Guennadi Liakhovetski9ce3ce4d42012-04-27 04:16:46 -030049#define DIM_ALIGN_MASK 7 /* 8-byte alignment for line length */
Pawel Osciak96d8eab2010-04-23 05:38:38 -030050
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 */
Hans Verkuil43405832014-03-10 10:58:23 -030063#define MEM2MEM_DEF_TRANSTIME 40
Pawel Osciak96d8eab2010-04-23 05:38:38 -030064#define MEM2MEM_COLOR_STEP (0xff >> 4)
65#define MEM2MEM_NUM_TILES 8
66
Tomasz Moń80072872012-06-12 06:43:49 -030067/* Flags that indicate processing mode */
68#define MEM2MEM_HFLIP (1 << 0)
69#define MEM2MEM_VFLIP (1 << 1)
70
Pawel Osciak96d8eab2010-04-23 05:38:38 -030071#define dprintk(dev, fmt, arg...) \
Hans Verkuild95d7c62013-04-17 03:04:10 -030072 v4l2_dbg(1, debug, &dev->v4l2_dev, "%s: " fmt, __func__, ## arg)
Pawel Osciak96d8eab2010-04-23 05:38:38 -030073
74
Sachin Kamat32872832012-08-24 08:06:15 -030075static void m2mtest_dev_release(struct device *dev)
Pawel Osciak96d8eab2010-04-23 05:38:38 -030076{}
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
Hans Verkuild3dd59c2012-07-18 10:35:37 -0300108#define NUM_FORMATS ARRAY_SIZE(formats)
109
Pawel Osciak96d8eab2010-04-23 05:38:38 -0300110/* 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
Hans Verkuild3dd59c2012-07-18 10:35:37 -0300123#define V4L2_CID_TRANS_TIME_MSEC (V4L2_CID_USER_BASE + 0x1000)
124#define V4L2_CID_TRANS_NUM_BUFS (V4L2_CID_USER_BASE + 0x1001)
Pawel Osciak96d8eab2010-04-23 05:38:38 -0300125
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 {
Hans Verkuild3dd59c2012-07-18 10:35:37 -0300157 struct v4l2_fh fh;
Pawel Osciak96d8eab2010-04-23 05:38:38 -0300158 struct m2mtest_dev *dev;
159
Hans Verkuild3dd59c2012-07-18 10:35:37 -0300160 struct v4l2_ctrl_handler hdl;
161
Pawel Osciak96d8eab2010-04-23 05:38:38 -0300162 /* 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
Tomasz Moń80072872012-06-12 06:43:49 -0300173 /* Processing mode */
174 int mode;
175
Hans Verkuil47556ff2012-07-18 11:33:22 -0300176 enum v4l2_colorspace colorspace;
177
Tomasz Moń9f4161a2012-06-08 04:47:34 -0300178 /* Source and destination queue data */
179 struct m2mtest_q_data q_data[2];
Pawel Osciak96d8eab2010-04-23 05:38:38 -0300180};
181
Hans Verkuild3dd59c2012-07-18 10:35:37 -0300182static inline struct m2mtest_ctx *file2ctx(struct file *file)
183{
184 return container_of(file->private_data, struct m2mtest_ctx, fh);
185}
186
Tomasz Moń9f4161a2012-06-08 04:47:34 -0300187static 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
Pawel Osciak96d8eab2010-04-23 05:38:38 -0300202static int device_process(struct m2mtest_ctx *ctx,
Marek Szyprowskid80ee382011-01-12 06:50:55 -0300203 struct vb2_buffer *in_vb,
204 struct vb2_buffer *out_vb)
Pawel Osciak96d8eab2010-04-23 05:38:38 -0300205{
206 struct m2mtest_dev *dev = ctx->dev;
Marek Szyprowskid80ee382011-01-12 06:50:55 -0300207 struct m2mtest_q_data *q_data;
Pawel Osciak96d8eab2010-04-23 05:38:38 -0300208 u8 *p_in, *p_out;
209 int x, y, t, w;
210 int tile_w, bytes_left;
Marek Szyprowskid80ee382011-01-12 06:50:55 -0300211 int width, height, bytesperline;
Pawel Osciak96d8eab2010-04-23 05:38:38 -0300212
Tomasz Moń9f4161a2012-06-08 04:47:34 -0300213 q_data = get_q_data(ctx, V4L2_BUF_TYPE_VIDEO_OUTPUT);
Marek Szyprowskid80ee382011-01-12 06:50:55 -0300214
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);
Pawel Osciak96d8eab2010-04-23 05:38:38 -0300221 if (!p_in || !p_out) {
222 v4l2_err(&dev->v4l2_dev,
223 "Acquiring kernel pointers to buffers failed\n");
224 return -EFAULT;
225 }
226
Marek Szyprowskid80ee382011-01-12 06:50:55 -0300227 if (vb2_plane_size(in_vb, 0) > vb2_plane_size(out_vb, 0)) {
Pawel Osciak96d8eab2010-04-23 05:38:38 -0300228 v4l2_err(&dev->v4l2_dev, "Output buffer is too small\n");
229 return -EINVAL;
230 }
231
Marek Szyprowskid80ee382011-01-12 06:50:55 -0300232 tile_w = (width * (q_data[V4L2_M2M_DST].fmt->depth >> 3))
Pawel Osciak96d8eab2010-04-23 05:38:38 -0300233 / MEM2MEM_NUM_TILES;
Marek Szyprowskid80ee382011-01-12 06:50:55 -0300234 bytes_left = bytesperline - tile_w * MEM2MEM_NUM_TILES;
Pawel Osciak96d8eab2010-04-23 05:38:38 -0300235 w = 0;
236
Hans Verkuild95d7c62013-04-17 03:04:10 -0300237 memcpy(&out_vb->v4l2_buf.timestamp,
238 &in_vb->v4l2_buf.timestamp,
239 sizeof(struct timeval));
Sakari Ailus309f4d62014-02-08 14:21:35 -0300240 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;
Hans Verkuild95d7c62013-04-17 03:04:10 -0300243
Tomasz Moń80072872012-06-12 06:43:49 -0300244 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;
Pawel Osciak96d8eab2010-04-23 05:38:38 -0300259 }
Tomasz Moń80072872012-06-12 06:43:49 -0300260 p_in += bytes_left;
261 p_out -= bytes_left;
Pawel Osciak96d8eab2010-04-23 05:38:38 -0300262 }
Tomasz Moń80072872012-06-12 06:43:49 -0300263 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;
321 }
Pawel Osciak96d8eab2010-04-23 05:38:38 -0300322 }
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
Sylwester Nawrocki20702eb2013-08-25 17:27:45 -0300344 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) {
Pawel Osciak96d8eab2010-04-23 05:38:38 -0300346 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;
Marek Szyprowskid80ee382011-01-12 06:50:55 -0300371 struct vb2_buffer *src_buf, *dst_buf;
Pawel Osciak96d8eab2010-04-23 05:38:38 -0300372
Sylwester Nawrocki20702eb2013-08-25 17:27:45 -0300373 src_buf = v4l2_m2m_next_src_buf(ctx->fh.m2m_ctx);
374 dst_buf = v4l2_m2m_next_dst_buf(ctx->fh.m2m_ctx);
Pawel Osciak96d8eab2010-04-23 05:38:38 -0300375
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
Pawel Osciak96d8eab2010-04-23 05:38:38 -0300382static void device_isr(unsigned long priv)
383{
384 struct m2mtest_dev *m2mtest_dev = (struct m2mtest_dev *)priv;
385 struct m2mtest_ctx *curr_ctx;
Marek Szyprowskid80ee382011-01-12 06:50:55 -0300386 struct vb2_buffer *src_vb, *dst_vb;
Pawel Osciak96d8eab2010-04-23 05:38:38 -0300387 unsigned long flags;
388
389 curr_ctx = v4l2_m2m_get_curr_priv(m2mtest_dev->m2m_dev);
390
391 if (NULL == curr_ctx) {
Sachin Kamat26fdcf02012-09-24 02:17:47 -0300392 pr_err("Instance released before the end of transaction\n");
Pawel Osciak96d8eab2010-04-23 05:38:38 -0300393 return;
394 }
395
Sylwester Nawrocki20702eb2013-08-25 17:27:45 -0300396 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);
Marek Szyprowskid80ee382011-01-12 06:50:55 -0300398
Pawel Osciak96d8eab2010-04-23 05:38:38 -0300399 curr_ctx->num_processed++;
400
Marek Szyprowskid80ee382011-01-12 06:50:55 -0300401 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
Pawel Osciak96d8eab2010-04-23 05:38:38 -0300406 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;
Sylwester Nawrocki20702eb2013-08-25 17:27:45 -0300410 v4l2_m2m_job_finish(m2mtest_dev->m2m_dev, curr_ctx->fh.m2m_ctx);
Pawel Osciak96d8eab2010-04-23 05:38:38 -0300411 } else {
Pawel Osciak96d8eab2010-04-23 05:38:38 -0300412 device_run(curr_ctx);
413 }
414}
415
Pawel Osciak96d8eab2010-04-23 05:38:38 -0300416/*
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);
Hans Verkuil72c2af62012-09-14 06:23:12 -0300424 snprintf(cap->bus_info, sizeof(cap->bus_info),
425 "platform:%s", MEM2MEM_NAME);
Mauro Carvalho Chehab79e8c7b2012-08-24 11:25:10 -0300426 cap->device_caps = V4L2_CAP_VIDEO_M2M | V4L2_CAP_STREAMING;
Hans Verkuilb0d14992012-07-18 10:46:01 -0300427 cap->capabilities = cap->device_caps | V4L2_CAP_DEVICE_CAPS;
Pawel Osciak96d8eab2010-04-23 05:38:38 -0300428 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{
Marek Szyprowskid80ee382011-01-12 06:50:55 -0300475 struct vb2_queue *vq;
Pawel Osciak96d8eab2010-04-23 05:38:38 -0300476 struct m2mtest_q_data *q_data;
477
Sylwester Nawrocki20702eb2013-08-25 17:27:45 -0300478 vq = v4l2_m2m_get_vq(ctx->fh.m2m_ctx, f->type);
Pawel Osciak96d8eab2010-04-23 05:38:38 -0300479 if (!vq)
480 return -EINVAL;
481
Tomasz Moń9f4161a2012-06-08 04:47:34 -0300482 q_data = get_q_data(ctx, f->type);
Pawel Osciak96d8eab2010-04-23 05:38:38 -0300483
484 f->fmt.pix.width = q_data->width;
485 f->fmt.pix.height = q_data->height;
Marek Szyprowskid80ee382011-01-12 06:50:55 -0300486 f->fmt.pix.field = V4L2_FIELD_NONE;
Pawel Osciak96d8eab2010-04-23 05:38:38 -0300487 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;
Hans Verkuil47556ff2012-07-18 11:33:22 -0300490 f->fmt.pix.colorspace = ctx->colorspace;
Pawel Osciak96d8eab2010-04-23 05:38:38 -0300491
492 return 0;
493}
494
495static int vidioc_g_fmt_vid_out(struct file *file, void *priv,
496 struct v4l2_format *f)
497{
Hans Verkuild3dd59c2012-07-18 10:35:37 -0300498 return vidioc_g_fmt(file2ctx(file), f);
Pawel Osciak96d8eab2010-04-23 05:38:38 -0300499}
500
501static int vidioc_g_fmt_vid_cap(struct file *file, void *priv,
502 struct v4l2_format *f)
503{
Hans Verkuild3dd59c2012-07-18 10:35:37 -0300504 return vidioc_g_fmt(file2ctx(file), f);
Pawel Osciak96d8eab2010-04-23 05:38:38 -0300505}
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;
535
536 return 0;
537}
538
539static int vidioc_try_fmt_vid_cap(struct file *file, void *priv,
540 struct v4l2_format *f)
541{
542 struct m2mtest_fmt *fmt;
Hans Verkuild3dd59c2012-07-18 10:35:37 -0300543 struct m2mtest_ctx *ctx = file2ctx(file);
Pawel Osciak96d8eab2010-04-23 05:38:38 -0300544
545 fmt = find_format(f);
Hans Verkuil4e8ec0a2014-03-10 10:58:24 -0300546 if (!fmt) {
547 f->fmt.pix.pixelformat = formats[0].fourcc;
548 fmt = find_format(f);
549 }
550 if (!(fmt->types & MEM2MEM_CAPTURE)) {
Pawel Osciak96d8eab2010-04-23 05:38:38 -0300551 v4l2_err(&ctx->dev->v4l2_dev,
552 "Fourcc format (0x%08x) invalid.\n",
553 f->fmt.pix.pixelformat);
554 return -EINVAL;
555 }
Hans Verkuil47556ff2012-07-18 11:33:22 -0300556 f->fmt.pix.colorspace = ctx->colorspace;
Pawel Osciak96d8eab2010-04-23 05:38:38 -0300557
558 return vidioc_try_fmt(f, fmt);
559}
560
561static int vidioc_try_fmt_vid_out(struct file *file, void *priv,
562 struct v4l2_format *f)
563{
564 struct m2mtest_fmt *fmt;
Hans Verkuild3dd59c2012-07-18 10:35:37 -0300565 struct m2mtest_ctx *ctx = file2ctx(file);
Pawel Osciak96d8eab2010-04-23 05:38:38 -0300566
567 fmt = find_format(f);
Hans Verkuil4e8ec0a2014-03-10 10:58:24 -0300568 if (!fmt) {
569 f->fmt.pix.pixelformat = formats[0].fourcc;
570 fmt = find_format(f);
571 }
572 if (!(fmt->types & MEM2MEM_OUTPUT)) {
Pawel Osciak96d8eab2010-04-23 05:38:38 -0300573 v4l2_err(&ctx->dev->v4l2_dev,
574 "Fourcc format (0x%08x) invalid.\n",
575 f->fmt.pix.pixelformat);
576 return -EINVAL;
577 }
Hans Verkuil47556ff2012-07-18 11:33:22 -0300578 if (!f->fmt.pix.colorspace)
579 f->fmt.pix.colorspace = V4L2_COLORSPACE_REC709;
Pawel Osciak96d8eab2010-04-23 05:38:38 -0300580
581 return vidioc_try_fmt(f, fmt);
582}
583
584static int vidioc_s_fmt(struct m2mtest_ctx *ctx, struct v4l2_format *f)
585{
586 struct m2mtest_q_data *q_data;
Marek Szyprowskid80ee382011-01-12 06:50:55 -0300587 struct vb2_queue *vq;
Pawel Osciak96d8eab2010-04-23 05:38:38 -0300588
Sylwester Nawrocki20702eb2013-08-25 17:27:45 -0300589 vq = v4l2_m2m_get_vq(ctx->fh.m2m_ctx, f->type);
Pawel Osciak96d8eab2010-04-23 05:38:38 -0300590 if (!vq)
591 return -EINVAL;
592
Tomasz Moń9f4161a2012-06-08 04:47:34 -0300593 q_data = get_q_data(ctx, f->type);
Pawel Osciak96d8eab2010-04-23 05:38:38 -0300594 if (!q_data)
595 return -EINVAL;
596
Marek Szyprowskid80ee382011-01-12 06:50:55 -0300597 if (vb2_is_busy(vq)) {
Pawel Osciak96d8eab2010-04-23 05:38:38 -0300598 v4l2_err(&ctx->dev->v4l2_dev, "%s queue busy\n", __func__);
Marek Szyprowski07e80302010-12-20 14:39:25 -0300599 return -EBUSY;
Pawel Osciak96d8eab2010-04-23 05:38:38 -0300600 }
601
602 q_data->fmt = find_format(f);
603 q_data->width = f->fmt.pix.width;
604 q_data->height = f->fmt.pix.height;
605 q_data->sizeimage = q_data->width * q_data->height
606 * q_data->fmt->depth >> 3;
Pawel Osciak96d8eab2010-04-23 05:38:38 -0300607
608 dprintk(ctx->dev,
609 "Setting format for type %d, wxh: %dx%d, fmt: %d\n",
610 f->type, q_data->width, q_data->height, q_data->fmt->fourcc);
611
Marek Szyprowski07e80302010-12-20 14:39:25 -0300612 return 0;
Pawel Osciak96d8eab2010-04-23 05:38:38 -0300613}
614
615static int vidioc_s_fmt_vid_cap(struct file *file, void *priv,
616 struct v4l2_format *f)
617{
618 int ret;
619
620 ret = vidioc_try_fmt_vid_cap(file, priv, f);
621 if (ret)
622 return ret;
623
Hans Verkuild3dd59c2012-07-18 10:35:37 -0300624 return vidioc_s_fmt(file2ctx(file), f);
Pawel Osciak96d8eab2010-04-23 05:38:38 -0300625}
626
627static int vidioc_s_fmt_vid_out(struct file *file, void *priv,
628 struct v4l2_format *f)
629{
Hans Verkuil47556ff2012-07-18 11:33:22 -0300630 struct m2mtest_ctx *ctx = file2ctx(file);
Pawel Osciak96d8eab2010-04-23 05:38:38 -0300631 int ret;
632
633 ret = vidioc_try_fmt_vid_out(file, priv, f);
634 if (ret)
635 return ret;
636
Hans Verkuil47556ff2012-07-18 11:33:22 -0300637 ret = vidioc_s_fmt(file2ctx(file), f);
638 if (!ret)
639 ctx->colorspace = f->fmt.pix.colorspace;
640 return ret;
Pawel Osciak96d8eab2010-04-23 05:38:38 -0300641}
642
Hans Verkuild3dd59c2012-07-18 10:35:37 -0300643static int m2mtest_s_ctrl(struct v4l2_ctrl *ctrl)
Pawel Osciak96d8eab2010-04-23 05:38:38 -0300644{
Hans Verkuild3dd59c2012-07-18 10:35:37 -0300645 struct m2mtest_ctx *ctx =
646 container_of(ctrl->handler, struct m2mtest_ctx, hdl);
Pawel Osciak96d8eab2010-04-23 05:38:38 -0300647
648 switch (ctrl->id) {
Tomasz Moń80072872012-06-12 06:43:49 -0300649 case V4L2_CID_HFLIP:
Hans Verkuild3dd59c2012-07-18 10:35:37 -0300650 if (ctrl->val)
Tomasz Moń80072872012-06-12 06:43:49 -0300651 ctx->mode |= MEM2MEM_HFLIP;
652 else
653 ctx->mode &= ~MEM2MEM_HFLIP;
654 break;
655
656 case V4L2_CID_VFLIP:
Hans Verkuild3dd59c2012-07-18 10:35:37 -0300657 if (ctrl->val)
Tomasz Moń80072872012-06-12 06:43:49 -0300658 ctx->mode |= MEM2MEM_VFLIP;
659 else
660 ctx->mode &= ~MEM2MEM_VFLIP;
661 break;
662
Pawel Osciak96d8eab2010-04-23 05:38:38 -0300663 case V4L2_CID_TRANS_TIME_MSEC:
Hans Verkuild3dd59c2012-07-18 10:35:37 -0300664 ctx->transtime = ctrl->val;
Pawel Osciak96d8eab2010-04-23 05:38:38 -0300665 break;
666
667 case V4L2_CID_TRANS_NUM_BUFS:
Hans Verkuild3dd59c2012-07-18 10:35:37 -0300668 ctx->translen = ctrl->val;
Pawel Osciak96d8eab2010-04-23 05:38:38 -0300669 break;
670
671 default:
672 v4l2_err(&ctx->dev->v4l2_dev, "Invalid control\n");
673 return -EINVAL;
674 }
675
676 return 0;
677}
678
Hans Verkuild3dd59c2012-07-18 10:35:37 -0300679static const struct v4l2_ctrl_ops m2mtest_ctrl_ops = {
680 .s_ctrl = m2mtest_s_ctrl,
681};
682
Pawel Osciak96d8eab2010-04-23 05:38:38 -0300683
684static const struct v4l2_ioctl_ops m2mtest_ioctl_ops = {
685 .vidioc_querycap = vidioc_querycap,
686
687 .vidioc_enum_fmt_vid_cap = vidioc_enum_fmt_vid_cap,
688 .vidioc_g_fmt_vid_cap = vidioc_g_fmt_vid_cap,
689 .vidioc_try_fmt_vid_cap = vidioc_try_fmt_vid_cap,
690 .vidioc_s_fmt_vid_cap = vidioc_s_fmt_vid_cap,
691
692 .vidioc_enum_fmt_vid_out = vidioc_enum_fmt_vid_out,
693 .vidioc_g_fmt_vid_out = vidioc_g_fmt_vid_out,
694 .vidioc_try_fmt_vid_out = vidioc_try_fmt_vid_out,
695 .vidioc_s_fmt_vid_out = vidioc_s_fmt_vid_out,
696
Sylwester Nawrocki20702eb2013-08-25 17:27:45 -0300697 .vidioc_reqbufs = v4l2_m2m_ioctl_reqbufs,
698 .vidioc_querybuf = v4l2_m2m_ioctl_querybuf,
699 .vidioc_qbuf = v4l2_m2m_ioctl_qbuf,
700 .vidioc_dqbuf = v4l2_m2m_ioctl_dqbuf,
Pawel Osciak96d8eab2010-04-23 05:38:38 -0300701
Sylwester Nawrocki20702eb2013-08-25 17:27:45 -0300702 .vidioc_streamon = v4l2_m2m_ioctl_streamon,
703 .vidioc_streamoff = v4l2_m2m_ioctl_streamoff,
Pawel Osciak96d8eab2010-04-23 05:38:38 -0300704
Hans Verkuil97a3c902012-07-18 10:54:59 -0300705 .vidioc_subscribe_event = v4l2_ctrl_subscribe_event,
706 .vidioc_unsubscribe_event = v4l2_event_unsubscribe,
Pawel Osciak96d8eab2010-04-23 05:38:38 -0300707};
708
709
710/*
711 * Queue operations
712 */
713
Guennadi Liakhovetskifc714e702011-08-24 10:30:21 -0300714static int m2mtest_queue_setup(struct vb2_queue *vq,
715 const struct v4l2_format *fmt,
716 unsigned int *nbuffers, unsigned int *nplanes,
717 unsigned int sizes[], void *alloc_ctxs[])
Pawel Osciak96d8eab2010-04-23 05:38:38 -0300718{
Marek Szyprowskid80ee382011-01-12 06:50:55 -0300719 struct m2mtest_ctx *ctx = vb2_get_drv_priv(vq);
Pawel Osciak96d8eab2010-04-23 05:38:38 -0300720 struct m2mtest_q_data *q_data;
Marek Szyprowskid80ee382011-01-12 06:50:55 -0300721 unsigned int size, count = *nbuffers;
Pawel Osciak96d8eab2010-04-23 05:38:38 -0300722
Tomasz Moń9f4161a2012-06-08 04:47:34 -0300723 q_data = get_q_data(ctx, vq->type);
Pawel Osciak96d8eab2010-04-23 05:38:38 -0300724
Marek Szyprowskid80ee382011-01-12 06:50:55 -0300725 size = q_data->width * q_data->height * q_data->fmt->depth >> 3;
Pawel Osciak96d8eab2010-04-23 05:38:38 -0300726
Marek Szyprowskid80ee382011-01-12 06:50:55 -0300727 while (size * count > MEM2MEM_VID_MEM_LIMIT)
728 (count)--;
Pawel Osciak96d8eab2010-04-23 05:38:38 -0300729
Marek Szyprowskid80ee382011-01-12 06:50:55 -0300730 *nplanes = 1;
731 *nbuffers = count;
732 sizes[0] = size;
Pawel Osciak96d8eab2010-04-23 05:38:38 -0300733
Marek Szyprowskid80ee382011-01-12 06:50:55 -0300734 /*
735 * videobuf2-vmalloc allocator is context-less so no need to set
736 * alloc_ctxs array.
737 */
738
739 dprintk(ctx->dev, "get %d buffer(s) of size %d each.\n", count, size);
Pawel Osciak96d8eab2010-04-23 05:38:38 -0300740
741 return 0;
742}
743
Marek Szyprowskid80ee382011-01-12 06:50:55 -0300744static int m2mtest_buf_prepare(struct vb2_buffer *vb)
Pawel Osciak96d8eab2010-04-23 05:38:38 -0300745{
Marek Szyprowskid80ee382011-01-12 06:50:55 -0300746 struct m2mtest_ctx *ctx = vb2_get_drv_priv(vb->vb2_queue);
Pawel Osciak96d8eab2010-04-23 05:38:38 -0300747 struct m2mtest_q_data *q_data;
Pawel Osciak96d8eab2010-04-23 05:38:38 -0300748
Marek Szyprowskid80ee382011-01-12 06:50:55 -0300749 dprintk(ctx->dev, "type: %d\n", vb->vb2_queue->type);
Pawel Osciak96d8eab2010-04-23 05:38:38 -0300750
Tomasz Moń9f4161a2012-06-08 04:47:34 -0300751 q_data = get_q_data(ctx, vb->vb2_queue->type);
Pawel Osciak96d8eab2010-04-23 05:38:38 -0300752
Marek Szyprowskid80ee382011-01-12 06:50:55 -0300753 if (vb2_plane_size(vb, 0) < q_data->sizeimage) {
754 dprintk(ctx->dev, "%s data will not fit into plane (%lu < %lu)\n",
755 __func__, vb2_plane_size(vb, 0), (long)q_data->sizeimage);
Pawel Osciak96d8eab2010-04-23 05:38:38 -0300756 return -EINVAL;
757 }
758
Marek Szyprowskid80ee382011-01-12 06:50:55 -0300759 vb2_set_plane_payload(vb, 0, q_data->sizeimage);
Pawel Osciak96d8eab2010-04-23 05:38:38 -0300760
761 return 0;
Pawel Osciak96d8eab2010-04-23 05:38:38 -0300762}
763
Marek Szyprowskid80ee382011-01-12 06:50:55 -0300764static void m2mtest_buf_queue(struct vb2_buffer *vb)
Pawel Osciak96d8eab2010-04-23 05:38:38 -0300765{
Marek Szyprowskid80ee382011-01-12 06:50:55 -0300766 struct m2mtest_ctx *ctx = vb2_get_drv_priv(vb->vb2_queue);
Sylwester Nawrocki20702eb2013-08-25 17:27:45 -0300767 v4l2_m2m_buf_queue(ctx->fh.m2m_ctx, vb);
Michael Olbrich0f910bf2011-07-12 09:46:44 -0300768}
769
Marek Szyprowskid80ee382011-01-12 06:50:55 -0300770static struct vb2_ops m2mtest_qops = {
771 .queue_setup = m2mtest_queue_setup,
772 .buf_prepare = m2mtest_buf_prepare,
773 .buf_queue = m2mtest_buf_queue,
Sylwester Nawrocki20702eb2013-08-25 17:27:45 -0300774 .wait_prepare = vb2_ops_wait_prepare,
775 .wait_finish = vb2_ops_wait_finish,
Pawel Osciak96d8eab2010-04-23 05:38:38 -0300776};
777
Marek Szyprowskid80ee382011-01-12 06:50:55 -0300778static int queue_init(void *priv, struct vb2_queue *src_vq, struct vb2_queue *dst_vq)
Pawel Osciak96d8eab2010-04-23 05:38:38 -0300779{
780 struct m2mtest_ctx *ctx = priv;
Marek Szyprowskid80ee382011-01-12 06:50:55 -0300781 int ret;
Pawel Osciak96d8eab2010-04-23 05:38:38 -0300782
Marek Szyprowskid80ee382011-01-12 06:50:55 -0300783 src_vq->type = V4L2_BUF_TYPE_VIDEO_OUTPUT;
Tomasz Stanislawskib0a550332012-06-14 10:37:49 -0300784 src_vq->io_modes = VB2_MMAP | VB2_DMABUF;
Marek Szyprowskid80ee382011-01-12 06:50:55 -0300785 src_vq->drv_priv = ctx;
786 src_vq->buf_struct_size = sizeof(struct v4l2_m2m_buffer);
787 src_vq->ops = &m2mtest_qops;
788 src_vq->mem_ops = &vb2_vmalloc_memops;
Sakari Ailusade48682014-02-25 19:12:19 -0300789 src_vq->timestamp_flags = V4L2_BUF_FLAG_TIMESTAMP_COPY;
Sylwester Nawrocki20702eb2013-08-25 17:27:45 -0300790 src_vq->lock = &ctx->dev->dev_mutex;
Marek Szyprowskid80ee382011-01-12 06:50:55 -0300791
792 ret = vb2_queue_init(src_vq);
793 if (ret)
794 return ret;
795
Marek Szyprowskid80ee382011-01-12 06:50:55 -0300796 dst_vq->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
Tomasz Stanislawskib0a550332012-06-14 10:37:49 -0300797 dst_vq->io_modes = VB2_MMAP | VB2_DMABUF;
Marek Szyprowskid80ee382011-01-12 06:50:55 -0300798 dst_vq->drv_priv = ctx;
799 dst_vq->buf_struct_size = sizeof(struct v4l2_m2m_buffer);
800 dst_vq->ops = &m2mtest_qops;
801 dst_vq->mem_ops = &vb2_vmalloc_memops;
Sakari Ailusade48682014-02-25 19:12:19 -0300802 dst_vq->timestamp_flags = V4L2_BUF_FLAG_TIMESTAMP_COPY;
Sylwester Nawrocki20702eb2013-08-25 17:27:45 -0300803 dst_vq->lock = &ctx->dev->dev_mutex;
Marek Szyprowskid80ee382011-01-12 06:50:55 -0300804
805 return vb2_queue_init(dst_vq);
Pawel Osciak96d8eab2010-04-23 05:38:38 -0300806}
807
Hans Verkuild3dd59c2012-07-18 10:35:37 -0300808static const struct v4l2_ctrl_config m2mtest_ctrl_trans_time_msec = {
809 .ops = &m2mtest_ctrl_ops,
810 .id = V4L2_CID_TRANS_TIME_MSEC,
811 .name = "Transaction Time (msec)",
812 .type = V4L2_CTRL_TYPE_INTEGER,
Hans Verkuil43405832014-03-10 10:58:23 -0300813 .def = MEM2MEM_DEF_TRANSTIME,
Hans Verkuild3dd59c2012-07-18 10:35:37 -0300814 .min = 1,
815 .max = 10001,
Hans Verkuil43405832014-03-10 10:58:23 -0300816 .step = 1,
Hans Verkuild3dd59c2012-07-18 10:35:37 -0300817};
818
819static const struct v4l2_ctrl_config m2mtest_ctrl_trans_num_bufs = {
820 .ops = &m2mtest_ctrl_ops,
821 .id = V4L2_CID_TRANS_NUM_BUFS,
822 .name = "Buffers Per Transaction",
823 .type = V4L2_CTRL_TYPE_INTEGER,
824 .def = 1,
825 .min = 1,
826 .max = MEM2MEM_DEF_NUM_BUFS,
827 .step = 1,
828};
829
Pawel Osciak96d8eab2010-04-23 05:38:38 -0300830/*
831 * File operations
832 */
833static int m2mtest_open(struct file *file)
834{
835 struct m2mtest_dev *dev = video_drvdata(file);
836 struct m2mtest_ctx *ctx = NULL;
Hans Verkuild3dd59c2012-07-18 10:35:37 -0300837 struct v4l2_ctrl_handler *hdl;
Hans Verkuilf4694032012-07-31 03:51:25 -0300838 int rc = 0;
Pawel Osciak96d8eab2010-04-23 05:38:38 -0300839
Hans Verkuilf4694032012-07-31 03:51:25 -0300840 if (mutex_lock_interruptible(&dev->dev_mutex))
841 return -ERESTARTSYS;
Sachin Kamat56ed2212012-09-24 02:17:46 -0300842 ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
Hans Verkuilf4694032012-07-31 03:51:25 -0300843 if (!ctx) {
844 rc = -ENOMEM;
845 goto open_unlock;
846 }
Pawel Osciak96d8eab2010-04-23 05:38:38 -0300847
Hans Verkuild3dd59c2012-07-18 10:35:37 -0300848 v4l2_fh_init(&ctx->fh, video_devdata(file));
849 file->private_data = &ctx->fh;
Pawel Osciak96d8eab2010-04-23 05:38:38 -0300850 ctx->dev = dev;
Hans Verkuild3dd59c2012-07-18 10:35:37 -0300851 hdl = &ctx->hdl;
852 v4l2_ctrl_handler_init(hdl, 4);
853 v4l2_ctrl_new_std(hdl, &m2mtest_ctrl_ops, V4L2_CID_HFLIP, 0, 1, 1, 0);
854 v4l2_ctrl_new_std(hdl, &m2mtest_ctrl_ops, V4L2_CID_VFLIP, 0, 1, 1, 0);
855 v4l2_ctrl_new_custom(hdl, &m2mtest_ctrl_trans_time_msec, NULL);
856 v4l2_ctrl_new_custom(hdl, &m2mtest_ctrl_trans_num_bufs, NULL);
857 if (hdl->error) {
Dan Carpentera7bd7752012-08-14 02:58:56 -0300858 rc = hdl->error;
Hans Verkuild3dd59c2012-07-18 10:35:37 -0300859 v4l2_ctrl_handler_free(hdl);
Dan Carpentera7bd7752012-08-14 02:58:56 -0300860 goto open_unlock;
Hans Verkuild3dd59c2012-07-18 10:35:37 -0300861 }
862 ctx->fh.ctrl_handler = hdl;
863 v4l2_ctrl_handler_setup(hdl);
Pawel Osciak96d8eab2010-04-23 05:38:38 -0300864
Tomasz Moń9f4161a2012-06-08 04:47:34 -0300865 ctx->q_data[V4L2_M2M_SRC].fmt = &formats[0];
Hans Verkuil47556ff2012-07-18 11:33:22 -0300866 ctx->q_data[V4L2_M2M_SRC].width = 640;
867 ctx->q_data[V4L2_M2M_SRC].height = 480;
868 ctx->q_data[V4L2_M2M_SRC].sizeimage =
869 ctx->q_data[V4L2_M2M_SRC].width *
870 ctx->q_data[V4L2_M2M_SRC].height *
871 (ctx->q_data[V4L2_M2M_SRC].fmt->depth >> 3);
872 ctx->q_data[V4L2_M2M_DST] = ctx->q_data[V4L2_M2M_SRC];
873 ctx->colorspace = V4L2_COLORSPACE_REC709;
Tomasz Moń9f4161a2012-06-08 04:47:34 -0300874
Sylwester Nawrocki20702eb2013-08-25 17:27:45 -0300875 ctx->fh.m2m_ctx = v4l2_m2m_ctx_init(dev->m2m_dev, ctx, &queue_init);
Marek Szyprowskid80ee382011-01-12 06:50:55 -0300876
Sylwester Nawrocki20702eb2013-08-25 17:27:45 -0300877 if (IS_ERR(ctx->fh.m2m_ctx)) {
878 rc = PTR_ERR(ctx->fh.m2m_ctx);
Dan Carpenter16ee9bb12010-05-05 02:58:57 -0300879
Hans Verkuild3dd59c2012-07-18 10:35:37 -0300880 v4l2_ctrl_handler_free(hdl);
Pawel Osciak96d8eab2010-04-23 05:38:38 -0300881 kfree(ctx);
Hans Verkuilf4694032012-07-31 03:51:25 -0300882 goto open_unlock;
Pawel Osciak96d8eab2010-04-23 05:38:38 -0300883 }
884
Hans Verkuild3dd59c2012-07-18 10:35:37 -0300885 v4l2_fh_add(&ctx->fh);
Pawel Osciak96d8eab2010-04-23 05:38:38 -0300886 atomic_inc(&dev->num_inst);
887
Sylwester Nawrocki20702eb2013-08-25 17:27:45 -0300888 dprintk(dev, "Created instance: %p, m2m_ctx: %p\n",
889 ctx, ctx->fh.m2m_ctx);
Pawel Osciak96d8eab2010-04-23 05:38:38 -0300890
Hans Verkuilf4694032012-07-31 03:51:25 -0300891open_unlock:
892 mutex_unlock(&dev->dev_mutex);
Dan Carpentera7bd7752012-08-14 02:58:56 -0300893 return rc;
Pawel Osciak96d8eab2010-04-23 05:38:38 -0300894}
895
896static int m2mtest_release(struct file *file)
897{
898 struct m2mtest_dev *dev = video_drvdata(file);
Hans Verkuild3dd59c2012-07-18 10:35:37 -0300899 struct m2mtest_ctx *ctx = file2ctx(file);
Pawel Osciak96d8eab2010-04-23 05:38:38 -0300900
901 dprintk(dev, "Releasing instance %p\n", ctx);
902
Hans Verkuild3dd59c2012-07-18 10:35:37 -0300903 v4l2_fh_del(&ctx->fh);
904 v4l2_fh_exit(&ctx->fh);
905 v4l2_ctrl_handler_free(&ctx->hdl);
Hans Verkuilf4694032012-07-31 03:51:25 -0300906 mutex_lock(&dev->dev_mutex);
Sylwester Nawrocki20702eb2013-08-25 17:27:45 -0300907 v4l2_m2m_ctx_release(ctx->fh.m2m_ctx);
Hans Verkuilf4694032012-07-31 03:51:25 -0300908 mutex_unlock(&dev->dev_mutex);
Pawel Osciak96d8eab2010-04-23 05:38:38 -0300909 kfree(ctx);
910
911 atomic_dec(&dev->num_inst);
912
913 return 0;
914}
915
Pawel Osciak96d8eab2010-04-23 05:38:38 -0300916static const struct v4l2_file_operations m2mtest_fops = {
917 .owner = THIS_MODULE,
918 .open = m2mtest_open,
919 .release = m2mtest_release,
Sylwester Nawrocki20702eb2013-08-25 17:27:45 -0300920 .poll = v4l2_m2m_fop_poll,
Marek Szyprowski07e80302010-12-20 14:39:25 -0300921 .unlocked_ioctl = video_ioctl2,
Sylwester Nawrocki20702eb2013-08-25 17:27:45 -0300922 .mmap = v4l2_m2m_fop_mmap,
Pawel Osciak96d8eab2010-04-23 05:38:38 -0300923};
924
925static struct video_device m2mtest_videodev = {
926 .name = MEM2MEM_NAME,
Hans Verkuil954f3402012-09-05 06:05:50 -0300927 .vfl_dir = VFL_DIR_M2M,
Pawel Osciak96d8eab2010-04-23 05:38:38 -0300928 .fops = &m2mtest_fops,
929 .ioctl_ops = &m2mtest_ioctl_ops,
930 .minor = -1,
931 .release = video_device_release,
932};
933
934static struct v4l2_m2m_ops m2m_ops = {
935 .device_run = device_run,
936 .job_ready = job_ready,
937 .job_abort = job_abort,
938};
939
940static int m2mtest_probe(struct platform_device *pdev)
941{
942 struct m2mtest_dev *dev;
943 struct video_device *vfd;
944 int ret;
945
Sachin Kamat38a79962012-09-24 02:17:48 -0300946 dev = devm_kzalloc(&pdev->dev, sizeof(*dev), GFP_KERNEL);
Pawel Osciak96d8eab2010-04-23 05:38:38 -0300947 if (!dev)
948 return -ENOMEM;
949
950 spin_lock_init(&dev->irqlock);
951
952 ret = v4l2_device_register(&pdev->dev, &dev->v4l2_dev);
953 if (ret)
Sachin Kamat38a79962012-09-24 02:17:48 -0300954 return ret;
Pawel Osciak96d8eab2010-04-23 05:38:38 -0300955
956 atomic_set(&dev->num_inst, 0);
957 mutex_init(&dev->dev_mutex);
958
959 vfd = video_device_alloc();
960 if (!vfd) {
961 v4l2_err(&dev->v4l2_dev, "Failed to allocate video device\n");
962 ret = -ENOMEM;
963 goto unreg_dev;
964 }
965
966 *vfd = m2mtest_videodev;
Marek Szyprowski07e80302010-12-20 14:39:25 -0300967 vfd->lock = &dev->dev_mutex;
Hans Verkuil8f484d82013-06-27 02:44:04 -0300968 vfd->v4l2_dev = &dev->v4l2_dev;
Pawel Osciak96d8eab2010-04-23 05:38:38 -0300969
970 ret = video_register_device(vfd, VFL_TYPE_GRABBER, 0);
971 if (ret) {
972 v4l2_err(&dev->v4l2_dev, "Failed to register video device\n");
973 goto rel_vdev;
974 }
975
976 video_set_drvdata(vfd, dev);
977 snprintf(vfd->name, sizeof(vfd->name), "%s", m2mtest_videodev.name);
978 dev->vfd = vfd;
Hans Verkuil8f484d82013-06-27 02:44:04 -0300979 v4l2_info(&dev->v4l2_dev,
Pawel Osciak96d8eab2010-04-23 05:38:38 -0300980 "Device registered as /dev/video%d\n", vfd->num);
981
982 setup_timer(&dev->timer, device_isr, (long)dev);
983 platform_set_drvdata(pdev, dev);
984
985 dev->m2m_dev = v4l2_m2m_init(&m2m_ops);
986 if (IS_ERR(dev->m2m_dev)) {
987 v4l2_err(&dev->v4l2_dev, "Failed to init mem2mem device\n");
988 ret = PTR_ERR(dev->m2m_dev);
989 goto err_m2m;
990 }
991
Pawel Osciak96d8eab2010-04-23 05:38:38 -0300992 return 0;
993
994err_m2m:
Sachin Kamatb7e13ef2012-09-24 02:17:45 -0300995 v4l2_m2m_release(dev->m2m_dev);
Pawel Osciak96d8eab2010-04-23 05:38:38 -0300996 video_unregister_device(dev->vfd);
997rel_vdev:
998 video_device_release(vfd);
999unreg_dev:
1000 v4l2_device_unregister(&dev->v4l2_dev);
Pawel Osciak96d8eab2010-04-23 05:38:38 -03001001
1002 return ret;
1003}
1004
1005static int m2mtest_remove(struct platform_device *pdev)
1006{
Jingoo Hanede79412013-09-09 02:54:27 -03001007 struct m2mtest_dev *dev = platform_get_drvdata(pdev);
Pawel Osciak96d8eab2010-04-23 05:38:38 -03001008
1009 v4l2_info(&dev->v4l2_dev, "Removing " MEM2MEM_TEST_MODULE_NAME);
1010 v4l2_m2m_release(dev->m2m_dev);
1011 del_timer_sync(&dev->timer);
1012 video_unregister_device(dev->vfd);
Pawel Osciak96d8eab2010-04-23 05:38:38 -03001013 v4l2_device_unregister(&dev->v4l2_dev);
Pawel Osciak96d8eab2010-04-23 05:38:38 -03001014
1015 return 0;
1016}
1017
1018static struct platform_driver m2mtest_pdrv = {
1019 .probe = m2mtest_probe,
1020 .remove = m2mtest_remove,
1021 .driver = {
1022 .name = MEM2MEM_NAME,
1023 .owner = THIS_MODULE,
1024 },
1025};
1026
1027static void __exit m2mtest_exit(void)
1028{
1029 platform_driver_unregister(&m2mtest_pdrv);
1030 platform_device_unregister(&m2mtest_pdev);
1031}
1032
1033static int __init m2mtest_init(void)
1034{
1035 int ret;
1036
1037 ret = platform_device_register(&m2mtest_pdev);
1038 if (ret)
1039 return ret;
1040
1041 ret = platform_driver_register(&m2mtest_pdrv);
1042 if (ret)
1043 platform_device_unregister(&m2mtest_pdev);
1044
1045 return 0;
1046}
1047
1048module_init(m2mtest_init);
1049module_exit(m2mtest_exit);