blob: 7abb046e0fa517780adbbbbcc0f9562cc8dae27d [file] [log] [blame]
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001/*
2 * Virtual Video driver - This code emulates a real video device with v4l2 api
3 *
4 * Copyright (c) 2006 by:
5 * Mauro Carvalho Chehab <mchehab--a.t--infradead.org>
6 * Ted Walther <ted--a.t--enumera.com>
7 * John Sokol <sokol--a.t--videotechnology.com>
8 * http://v4l.videotechnology.com/
9 *
Pawel Osciake007a322011-01-19 13:02:29 -020010 * Conversion to videobuf2 by Pawel Osciak & Marek Szyprowski
11 * Copyright (c) 2010 Samsung Electronics
12 *
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -030013 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the BSD Licence, GNU General Public License
15 * as published by the Free Software Foundation; either version 2 of the
16 * License, or (at your option) any later version
17 */
18#include <linux/module.h>
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -030019#include <linux/errno.h>
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -030020#include <linux/kernel.h>
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -030021#include <linux/init.h>
22#include <linux/sched.h>
Randy Dunlap6b46c392010-05-07 15:22:26 -030023#include <linux/slab.h>
Hans Verkuil730947b2010-04-10 04:13:53 -030024#include <linux/font.h>
Matthias Kaehlcke51b54022007-07-02 10:19:38 -030025#include <linux/mutex.h>
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -030026#include <linux/videodev2.h>
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -030027#include <linux/kthread.h>
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080028#include <linux/freezer.h>
Pawel Osciake007a322011-01-19 13:02:29 -020029#include <media/videobuf2-vmalloc.h>
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -030030#include <media/v4l2-device.h>
31#include <media/v4l2-ioctl.h>
Hans Verkuil7e996af2011-01-23 12:33:16 -020032#include <media/v4l2-ctrls.h>
Hans Verkuil2e4784d2011-03-11 20:01:54 -030033#include <media/v4l2-fh.h>
Hans Verkuilc7a52f82011-06-07 10:20:23 -030034#include <media/v4l2-event.h>
Hans Verkuil730947b2010-04-10 04:13:53 -030035#include <media/v4l2-common.h>
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -030036
Mauro Carvalho Chehab584ce482008-06-10 15:21:49 -030037#define VIVI_MODULE_NAME "vivi"
Carl Karsten745271a2008-06-10 00:02:32 -030038
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -030039/* Wake up at about 30 fps */
40#define WAKE_NUMERATOR 30
41#define WAKE_DENOMINATOR 1001
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -030042
Hans Verkuil730947b2010-04-10 04:13:53 -030043#define MAX_WIDTH 1920
44#define MAX_HEIGHT 1200
45
Mauro Carvalho Chehab1990d502011-06-24 14:45:49 -030046#define VIVI_VERSION "0.8.1"
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -030047
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -030048MODULE_DESCRIPTION("Video Technology Magazine Virtual Video Capture Board");
49MODULE_AUTHOR("Mauro Carvalho Chehab, Ted Walther and John Sokol");
50MODULE_LICENSE("Dual BSD/GPL");
Mauro Carvalho Chehab1990d502011-06-24 14:45:49 -030051MODULE_VERSION(VIVI_VERSION);
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -030052
53static unsigned video_nr = -1;
54module_param(video_nr, uint, 0644);
55MODULE_PARM_DESC(video_nr, "videoX start number, -1 is autodetect");
56
57static unsigned n_devs = 1;
58module_param(n_devs, uint, 0644);
59MODULE_PARM_DESC(n_devs, "number of video devices to create");
60
61static unsigned debug;
62module_param(debug, uint, 0644);
63MODULE_PARM_DESC(debug, "activates debug info");
64
65static unsigned int vid_limit = 16;
66module_param(vid_limit, uint, 0644);
67MODULE_PARM_DESC(vid_limit, "capture memory limit in megabytes");
68
Hans Verkuil730947b2010-04-10 04:13:53 -030069/* Global font descriptor */
70static const u8 *font8x16;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -030071
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -030072#define dprintk(dev, level, fmt, arg...) \
73 v4l2_dbg(level, debug, &dev->v4l2_dev, fmt, ## arg)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -030074
75/* ------------------------------------------------------------------
76 Basic structures
77 ------------------------------------------------------------------*/
78
79struct vivi_fmt {
80 char *name;
81 u32 fourcc; /* v4l2 format id */
Hans Verkuil0a3a8a32012-08-06 10:36:18 -030082 u8 depth;
83 bool is_yuv;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -030084};
85
Magnus Dammd891f472008-10-14 12:47:09 -030086static struct vivi_fmt formats[] = {
87 {
88 .name = "4:2:2, packed, YUYV",
89 .fourcc = V4L2_PIX_FMT_YUYV,
90 .depth = 16,
Hans Verkuil0a3a8a32012-08-06 10:36:18 -030091 .is_yuv = true,
Magnus Dammd891f472008-10-14 12:47:09 -030092 },
Magnus Dammfca36ba2008-10-14 12:47:25 -030093 {
94 .name = "4:2:2, packed, UYVY",
95 .fourcc = V4L2_PIX_FMT_UYVY,
96 .depth = 16,
Hans Verkuil0a3a8a32012-08-06 10:36:18 -030097 .is_yuv = true,
Magnus Dammfca36ba2008-10-14 12:47:25 -030098 },
Magnus Dammaeadb5d2008-10-14 12:47:35 -030099 {
Hans Verkuil3d51dca2012-05-02 03:15:11 -0300100 .name = "4:2:2, packed, YVYU",
101 .fourcc = V4L2_PIX_FMT_YVYU,
102 .depth = 16,
Hans Verkuil0a3a8a32012-08-06 10:36:18 -0300103 .is_yuv = true,
Hans Verkuil3d51dca2012-05-02 03:15:11 -0300104 },
105 {
106 .name = "4:2:2, packed, VYUY",
107 .fourcc = V4L2_PIX_FMT_VYUY,
108 .depth = 16,
Hans Verkuil0a3a8a32012-08-06 10:36:18 -0300109 .is_yuv = true,
Hans Verkuil3d51dca2012-05-02 03:15:11 -0300110 },
111 {
Magnus Dammaeadb5d2008-10-14 12:47:35 -0300112 .name = "RGB565 (LE)",
113 .fourcc = V4L2_PIX_FMT_RGB565, /* gggbbbbb rrrrrggg */
114 .depth = 16,
115 },
116 {
117 .name = "RGB565 (BE)",
118 .fourcc = V4L2_PIX_FMT_RGB565X, /* rrrrrggg gggbbbbb */
119 .depth = 16,
120 },
Magnus Dammdef52392008-10-14 12:47:43 -0300121 {
122 .name = "RGB555 (LE)",
123 .fourcc = V4L2_PIX_FMT_RGB555, /* gggbbbbb arrrrrgg */
124 .depth = 16,
125 },
126 {
127 .name = "RGB555 (BE)",
128 .fourcc = V4L2_PIX_FMT_RGB555X, /* arrrrrgg gggbbbbb */
129 .depth = 16,
130 },
Hans Verkuil3d51dca2012-05-02 03:15:11 -0300131 {
132 .name = "RGB24 (LE)",
133 .fourcc = V4L2_PIX_FMT_RGB24, /* rgb */
134 .depth = 24,
135 },
136 {
137 .name = "RGB24 (BE)",
138 .fourcc = V4L2_PIX_FMT_BGR24, /* bgr */
139 .depth = 24,
140 },
141 {
142 .name = "RGB32 (LE)",
143 .fourcc = V4L2_PIX_FMT_RGB32, /* argb */
144 .depth = 32,
145 },
146 {
147 .name = "RGB32 (BE)",
148 .fourcc = V4L2_PIX_FMT_BGR32, /* bgra */
149 .depth = 32,
150 },
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300151};
152
Magnus Dammd891f472008-10-14 12:47:09 -0300153static struct vivi_fmt *get_format(struct v4l2_format *f)
154{
155 struct vivi_fmt *fmt;
156 unsigned int k;
157
158 for (k = 0; k < ARRAY_SIZE(formats); k++) {
159 fmt = &formats[k];
160 if (fmt->fourcc == f->fmt.pix.pixelformat)
161 break;
162 }
163
164 if (k == ARRAY_SIZE(formats))
165 return NULL;
166
167 return &formats[k];
168}
169
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300170/* buffer for one video frame */
171struct vivi_buffer {
172 /* common v4l buffer stuff -- must be first */
Pawel Osciake007a322011-01-19 13:02:29 -0200173 struct vb2_buffer vb;
174 struct list_head list;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300175 struct vivi_fmt *fmt;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300176};
177
178struct vivi_dmaqueue {
179 struct list_head active;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300180
181 /* thread for generating video stream*/
182 struct task_struct *kthread;
183 wait_queue_head_t wq;
184 /* Counters to control fps rate */
185 int frame;
186 int ini_jiffies;
187};
188
189static LIST_HEAD(vivi_devlist);
190
191struct vivi_dev {
192 struct list_head vivi_devlist;
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -0300193 struct v4l2_device v4l2_dev;
Hans Verkuil7e996af2011-01-23 12:33:16 -0200194 struct v4l2_ctrl_handler ctrl_handler;
Hans Verkuil70bd97a2012-06-09 11:27:43 -0300195 struct video_device vdev;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300196
Hans Verkuil730947b2010-04-10 04:13:53 -0300197 /* controls */
Hans Verkuil7e996af2011-01-23 12:33:16 -0200198 struct v4l2_ctrl *brightness;
199 struct v4l2_ctrl *contrast;
200 struct v4l2_ctrl *saturation;
201 struct v4l2_ctrl *hue;
Hans Verkuila1c894f2011-06-07 06:34:41 -0300202 struct {
203 /* autogain/gain cluster */
204 struct v4l2_ctrl *autogain;
205 struct v4l2_ctrl *gain;
206 };
Hans Verkuil7e996af2011-01-23 12:33:16 -0200207 struct v4l2_ctrl *volume;
Hans Verkuil7088f4d2012-05-02 03:33:52 -0300208 struct v4l2_ctrl *alpha;
Hans Verkuil7e996af2011-01-23 12:33:16 -0200209 struct v4l2_ctrl *button;
210 struct v4l2_ctrl *boolean;
211 struct v4l2_ctrl *int32;
212 struct v4l2_ctrl *int64;
213 struct v4l2_ctrl *menu;
214 struct v4l2_ctrl *string;
Hans Verkuilb6d17a52011-03-29 16:33:11 -0300215 struct v4l2_ctrl *bitmask;
Sakari Ailusc5203312011-08-05 06:38:05 -0300216 struct v4l2_ctrl *int_menu;
Hans Verkuil730947b2010-04-10 04:13:53 -0300217
Mauro Carvalho Chehab55862ac2007-12-13 16:13:37 -0300218 spinlock_t slock;
Brandon Philipsaa9dbac2008-04-02 18:10:59 -0300219 struct mutex mutex;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300220
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300221 struct vivi_dmaqueue vidq;
222
223 /* Several counters */
Hans Verkuil730947b2010-04-10 04:13:53 -0300224 unsigned ms;
Mauro Carvalho Chehabdfd8c042008-01-13 19:36:11 -0300225 unsigned long jiffies;
Hans Verkuil7e996af2011-01-23 12:33:16 -0200226 unsigned button_pressed;
Mauro Carvalho Chehab025341d2007-12-10 04:43:38 -0300227
228 int mv_count; /* Controls bars movement */
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -0300229
230 /* Input Number */
231 int input;
Hans Verkuilc41ee242009-02-14 13:43:44 -0300232
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300233 /* video capture */
234 struct vivi_fmt *fmt;
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300235 unsigned int width, height;
Pawel Osciake007a322011-01-19 13:02:29 -0200236 struct vb2_queue vb_vidq;
Pawel Osciake007a322011-01-19 13:02:29 -0200237 unsigned int field_count;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300238
Hans Verkuil3d51dca2012-05-02 03:15:11 -0300239 u8 bars[9][3];
Kirill Smelkov10ce8442012-11-02 09:10:31 -0300240 u8 line[MAX_WIDTH * 8] __attribute__((__aligned__(4)));
Hans Verkuil3d51dca2012-05-02 03:15:11 -0300241 unsigned int pixelsize;
Hans Verkuil7088f4d2012-05-02 03:33:52 -0300242 u8 alpha_component;
Kirill Smelkove3a8b4d2012-11-02 09:10:30 -0300243 u32 textfg, textbg;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300244};
245
246/* ------------------------------------------------------------------
247 DMA and thread functions
248 ------------------------------------------------------------------*/
249
250/* Bars and Colors should match positions */
251
252enum colors {
253 WHITE,
Hans Verkuil730947b2010-04-10 04:13:53 -0300254 AMBER,
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300255 CYAN,
256 GREEN,
257 MAGENTA,
258 RED,
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300259 BLUE,
260 BLACK,
Hans Verkuil730947b2010-04-10 04:13:53 -0300261 TEXT_BLACK,
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300262};
263
Hans Verkuil730947b2010-04-10 04:13:53 -0300264/* R G B */
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -0300265#define COLOR_WHITE {204, 204, 204}
Hans Verkuil730947b2010-04-10 04:13:53 -0300266#define COLOR_AMBER {208, 208, 0}
267#define COLOR_CYAN { 0, 206, 206}
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -0300268#define COLOR_GREEN { 0, 239, 0}
269#define COLOR_MAGENTA {239, 0, 239}
270#define COLOR_RED {205, 0, 0}
271#define COLOR_BLUE { 0, 0, 255}
272#define COLOR_BLACK { 0, 0, 0}
273
274struct bar_std {
Hans Verkuil730947b2010-04-10 04:13:53 -0300275 u8 bar[9][3];
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300276};
277
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -0300278/* Maximum number of bars are 10 - otherwise, the input print code
279 should be modified */
280static struct bar_std bars[] = {
281 { /* Standard ITU-R color bar sequence */
Hans Verkuil730947b2010-04-10 04:13:53 -0300282 { COLOR_WHITE, COLOR_AMBER, COLOR_CYAN, COLOR_GREEN,
283 COLOR_MAGENTA, COLOR_RED, COLOR_BLUE, COLOR_BLACK, COLOR_BLACK }
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -0300284 }, {
Hans Verkuil730947b2010-04-10 04:13:53 -0300285 { COLOR_WHITE, COLOR_AMBER, COLOR_BLACK, COLOR_WHITE,
286 COLOR_AMBER, COLOR_BLACK, COLOR_WHITE, COLOR_AMBER, COLOR_BLACK }
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -0300287 }, {
Hans Verkuil730947b2010-04-10 04:13:53 -0300288 { COLOR_WHITE, COLOR_CYAN, COLOR_BLACK, COLOR_WHITE,
289 COLOR_CYAN, COLOR_BLACK, COLOR_WHITE, COLOR_CYAN, COLOR_BLACK }
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -0300290 }, {
Hans Verkuil730947b2010-04-10 04:13:53 -0300291 { COLOR_WHITE, COLOR_GREEN, COLOR_BLACK, COLOR_WHITE,
292 COLOR_GREEN, COLOR_BLACK, COLOR_WHITE, COLOR_GREEN, COLOR_BLACK }
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -0300293 },
294};
295
296#define NUM_INPUTS ARRAY_SIZE(bars)
297
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300298#define TO_Y(r, g, b) \
299 (((16829 * r + 33039 * g + 6416 * b + 32768) >> 16) + 16)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300300/* RGB to V(Cr) Color transform */
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300301#define TO_V(r, g, b) \
302 (((28784 * r - 24103 * g - 4681 * b + 32768) >> 16) + 128)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300303/* RGB to U(Cb) Color transform */
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300304#define TO_U(r, g, b) \
305 (((-9714 * r - 19070 * g + 28784 * b + 32768) >> 16) + 128)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300306
Mauro Carvalho Chehabc285add2009-06-25 16:28:23 -0300307/* precalculate color bar values to speed up rendering */
Hans Verkuil730947b2010-04-10 04:13:53 -0300308static void precalculate_bars(struct vivi_dev *dev)
Mauro Carvalho Chehabc285add2009-06-25 16:28:23 -0300309{
Hans Verkuil730947b2010-04-10 04:13:53 -0300310 u8 r, g, b;
Mauro Carvalho Chehabc285add2009-06-25 16:28:23 -0300311 int k, is_yuv;
312
Hans Verkuil730947b2010-04-10 04:13:53 -0300313 for (k = 0; k < 9; k++) {
314 r = bars[dev->input].bar[k][0];
315 g = bars[dev->input].bar[k][1];
316 b = bars[dev->input].bar[k][2];
Hans Verkuil0a3a8a32012-08-06 10:36:18 -0300317 is_yuv = dev->fmt->is_yuv;
Mauro Carvalho Chehabc285add2009-06-25 16:28:23 -0300318
Hans Verkuil730947b2010-04-10 04:13:53 -0300319 switch (dev->fmt->fourcc) {
Mauro Carvalho Chehabc285add2009-06-25 16:28:23 -0300320 case V4L2_PIX_FMT_RGB565:
321 case V4L2_PIX_FMT_RGB565X:
322 r >>= 3;
323 g >>= 2;
324 b >>= 3;
325 break;
326 case V4L2_PIX_FMT_RGB555:
327 case V4L2_PIX_FMT_RGB555X:
328 r >>= 3;
329 g >>= 3;
330 b >>= 3;
331 break;
Hans Verkuil0a3a8a32012-08-06 10:36:18 -0300332 case V4L2_PIX_FMT_YUYV:
333 case V4L2_PIX_FMT_UYVY:
334 case V4L2_PIX_FMT_YVYU:
335 case V4L2_PIX_FMT_VYUY:
Hans Verkuil3d51dca2012-05-02 03:15:11 -0300336 case V4L2_PIX_FMT_RGB24:
337 case V4L2_PIX_FMT_BGR24:
338 case V4L2_PIX_FMT_RGB32:
339 case V4L2_PIX_FMT_BGR32:
340 break;
Mauro Carvalho Chehabc285add2009-06-25 16:28:23 -0300341 }
342
343 if (is_yuv) {
Hans Verkuil730947b2010-04-10 04:13:53 -0300344 dev->bars[k][0] = TO_Y(r, g, b); /* Luma */
345 dev->bars[k][1] = TO_U(r, g, b); /* Cb */
346 dev->bars[k][2] = TO_V(r, g, b); /* Cr */
Mauro Carvalho Chehabc285add2009-06-25 16:28:23 -0300347 } else {
Hans Verkuil730947b2010-04-10 04:13:53 -0300348 dev->bars[k][0] = r;
349 dev->bars[k][1] = g;
350 dev->bars[k][2] = b;
Mauro Carvalho Chehabc285add2009-06-25 16:28:23 -0300351 }
352 }
Mauro Carvalho Chehabc285add2009-06-25 16:28:23 -0300353}
354
Hans Verkuil3d51dca2012-05-02 03:15:11 -0300355/* 'odd' is true for pixels 1, 3, 5, etc. and false for pixels 0, 2, 4, etc. */
356static void gen_twopix(struct vivi_dev *dev, u8 *buf, int colorpos, bool odd)
Magnus Damm74d7c5a2008-10-14 12:46:59 -0300357{
Hans Verkuil730947b2010-04-10 04:13:53 -0300358 u8 r_y, g_u, b_v;
Hans Verkuil7088f4d2012-05-02 03:33:52 -0300359 u8 alpha = dev->alpha_component;
Magnus Damm74d7c5a2008-10-14 12:46:59 -0300360 int color;
Hans Verkuil730947b2010-04-10 04:13:53 -0300361 u8 *p;
Magnus Damm74d7c5a2008-10-14 12:46:59 -0300362
Hans Verkuil730947b2010-04-10 04:13:53 -0300363 r_y = dev->bars[colorpos][0]; /* R or precalculated Y */
364 g_u = dev->bars[colorpos][1]; /* G or precalculated U */
365 b_v = dev->bars[colorpos][2]; /* B or precalculated V */
Magnus Damm74d7c5a2008-10-14 12:46:59 -0300366
Hans Verkuil3d51dca2012-05-02 03:15:11 -0300367 for (color = 0; color < dev->pixelsize; color++) {
Magnus Damm74d7c5a2008-10-14 12:46:59 -0300368 p = buf + color;
369
Hans Verkuil730947b2010-04-10 04:13:53 -0300370 switch (dev->fmt->fourcc) {
Magnus Dammd891f472008-10-14 12:47:09 -0300371 case V4L2_PIX_FMT_YUYV:
372 switch (color) {
373 case 0:
Magnus Dammd891f472008-10-14 12:47:09 -0300374 *p = r_y;
375 break;
376 case 1:
Hans Verkuil3d51dca2012-05-02 03:15:11 -0300377 *p = odd ? b_v : g_u;
Magnus Dammd891f472008-10-14 12:47:09 -0300378 break;
379 }
Magnus Damm74d7c5a2008-10-14 12:46:59 -0300380 break;
Magnus Dammfca36ba2008-10-14 12:47:25 -0300381 case V4L2_PIX_FMT_UYVY:
382 switch (color) {
Hans Verkuil3d51dca2012-05-02 03:15:11 -0300383 case 0:
384 *p = odd ? b_v : g_u;
385 break;
Magnus Dammfca36ba2008-10-14 12:47:25 -0300386 case 1:
Magnus Dammfca36ba2008-10-14 12:47:25 -0300387 *p = r_y;
388 break;
Hans Verkuil3d51dca2012-05-02 03:15:11 -0300389 }
390 break;
391 case V4L2_PIX_FMT_YVYU:
392 switch (color) {
Magnus Dammfca36ba2008-10-14 12:47:25 -0300393 case 0:
Hans Verkuil3d51dca2012-05-02 03:15:11 -0300394 *p = r_y;
Magnus Dammfca36ba2008-10-14 12:47:25 -0300395 break;
Hans Verkuil3d51dca2012-05-02 03:15:11 -0300396 case 1:
397 *p = odd ? g_u : b_v;
398 break;
399 }
400 break;
401 case V4L2_PIX_FMT_VYUY:
402 switch (color) {
403 case 0:
404 *p = odd ? g_u : b_v;
405 break;
406 case 1:
407 *p = r_y;
Magnus Dammfca36ba2008-10-14 12:47:25 -0300408 break;
409 }
410 break;
Magnus Dammaeadb5d2008-10-14 12:47:35 -0300411 case V4L2_PIX_FMT_RGB565:
412 switch (color) {
413 case 0:
Magnus Dammaeadb5d2008-10-14 12:47:35 -0300414 *p = (g_u << 5) | b_v;
415 break;
416 case 1:
Magnus Dammaeadb5d2008-10-14 12:47:35 -0300417 *p = (r_y << 3) | (g_u >> 3);
418 break;
419 }
420 break;
421 case V4L2_PIX_FMT_RGB565X:
422 switch (color) {
423 case 0:
Magnus Dammaeadb5d2008-10-14 12:47:35 -0300424 *p = (r_y << 3) | (g_u >> 3);
425 break;
426 case 1:
Magnus Dammaeadb5d2008-10-14 12:47:35 -0300427 *p = (g_u << 5) | b_v;
428 break;
429 }
430 break;
Magnus Dammdef52392008-10-14 12:47:43 -0300431 case V4L2_PIX_FMT_RGB555:
432 switch (color) {
433 case 0:
Magnus Dammdef52392008-10-14 12:47:43 -0300434 *p = (g_u << 5) | b_v;
435 break;
436 case 1:
Hans Verkuil7088f4d2012-05-02 03:33:52 -0300437 *p = (alpha & 0x80) | (r_y << 2) | (g_u >> 3);
Magnus Dammdef52392008-10-14 12:47:43 -0300438 break;
439 }
440 break;
441 case V4L2_PIX_FMT_RGB555X:
442 switch (color) {
443 case 0:
Hans Verkuil7088f4d2012-05-02 03:33:52 -0300444 *p = (alpha & 0x80) | (r_y << 2) | (g_u >> 3);
Magnus Dammdef52392008-10-14 12:47:43 -0300445 break;
446 case 1:
Magnus Dammdef52392008-10-14 12:47:43 -0300447 *p = (g_u << 5) | b_v;
448 break;
449 }
450 break;
Hans Verkuil3d51dca2012-05-02 03:15:11 -0300451 case V4L2_PIX_FMT_RGB24:
452 switch (color) {
453 case 0:
454 *p = r_y;
455 break;
456 case 1:
457 *p = g_u;
458 break;
459 case 2:
460 *p = b_v;
461 break;
462 }
463 break;
464 case V4L2_PIX_FMT_BGR24:
465 switch (color) {
466 case 0:
467 *p = b_v;
468 break;
469 case 1:
470 *p = g_u;
471 break;
472 case 2:
473 *p = r_y;
474 break;
475 }
476 break;
477 case V4L2_PIX_FMT_RGB32:
478 switch (color) {
479 case 0:
Hans Verkuil7088f4d2012-05-02 03:33:52 -0300480 *p = alpha;
Hans Verkuil3d51dca2012-05-02 03:15:11 -0300481 break;
482 case 1:
483 *p = r_y;
484 break;
485 case 2:
486 *p = g_u;
487 break;
488 case 3:
489 *p = b_v;
490 break;
491 }
492 break;
493 case V4L2_PIX_FMT_BGR32:
494 switch (color) {
495 case 0:
496 *p = b_v;
497 break;
498 case 1:
499 *p = g_u;
500 break;
501 case 2:
502 *p = r_y;
503 break;
504 case 3:
Hans Verkuil7088f4d2012-05-02 03:33:52 -0300505 *p = alpha;
Hans Verkuil3d51dca2012-05-02 03:15:11 -0300506 break;
507 }
508 break;
Magnus Damm74d7c5a2008-10-14 12:46:59 -0300509 }
510 }
511}
512
Hans Verkuil730947b2010-04-10 04:13:53 -0300513static void precalculate_line(struct vivi_dev *dev)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300514{
Kirill Smelkovd40fbf82012-11-02 09:10:33 -0300515 unsigned pixsize = dev->pixelsize;
516 unsigned pixsize2 = 2*pixsize;
517 int colorpos;
518 u8 *pos;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300519
Kirill Smelkovd40fbf82012-11-02 09:10:33 -0300520 for (colorpos = 0; colorpos < 16; ++colorpos) {
521 u8 pix[8];
522 int wstart = colorpos * dev->width / 8;
523 int wend = (colorpos+1) * dev->width / 8;
524 int w;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300525
Kirill Smelkovd40fbf82012-11-02 09:10:33 -0300526 gen_twopix(dev, &pix[0], colorpos % 8, 0);
527 gen_twopix(dev, &pix[pixsize], colorpos % 8, 1);
528
529 for (w = wstart/2*2, pos = dev->line + w*pixsize; w < wend; w += 2, pos += pixsize2)
530 memcpy(pos, pix, pixsize2);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300531 }
Hans Verkuil730947b2010-04-10 04:13:53 -0300532}
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300533
Kirill Smelkove3a8b4d2012-11-02 09:10:30 -0300534/* need this to do rgb24 rendering */
535typedef struct { u16 __; u8 _; } __attribute__((packed)) x24;
536
Hans Verkuil730947b2010-04-10 04:13:53 -0300537static void gen_text(struct vivi_dev *dev, char *basep,
538 int y, int x, char *text)
539{
540 int line;
Kirill Smelkove3a8b4d2012-11-02 09:10:30 -0300541 unsigned int width = dev->width;
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -0300542
Hans Verkuil730947b2010-04-10 04:13:53 -0300543 /* Checks if it is possible to show string */
Kirill Smelkove3a8b4d2012-11-02 09:10:30 -0300544 if (y + 16 >= dev->height || x + strlen(text) * 8 >= width)
Hans Verkuil730947b2010-04-10 04:13:53 -0300545 return;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300546
547 /* Print stream time */
Kirill Smelkove3a8b4d2012-11-02 09:10:30 -0300548#define PRINTSTR(PIXTYPE) do { \
549 PIXTYPE fg; \
550 PIXTYPE bg; \
551 memcpy(&fg, &dev->textfg, sizeof(PIXTYPE)); \
552 memcpy(&bg, &dev->textbg, sizeof(PIXTYPE)); \
553 \
554 for (line = 0; line < 16; line++) { \
555 PIXTYPE *pos = (PIXTYPE *)( basep + ((y + line) * width + x) * sizeof(PIXTYPE) ); \
556 u8 *s; \
557 \
558 for (s = text; *s; s++) { \
559 u8 chr = font8x16[*s * 16 + line]; \
560 \
561 pos[0] = (chr & (0x01 << 7) ? fg : bg); \
562 pos[1] = (chr & (0x01 << 6) ? fg : bg); \
563 pos[2] = (chr & (0x01 << 5) ? fg : bg); \
564 pos[3] = (chr & (0x01 << 4) ? fg : bg); \
565 pos[4] = (chr & (0x01 << 3) ? fg : bg); \
566 pos[5] = (chr & (0x01 << 2) ? fg : bg); \
567 pos[6] = (chr & (0x01 << 1) ? fg : bg); \
568 pos[7] = (chr & (0x01 << 0) ? fg : bg); \
569 \
570 pos += 8; \
571 } \
572 } \
573} while (0)
Hans Verkuil730947b2010-04-10 04:13:53 -0300574
Kirill Smelkove3a8b4d2012-11-02 09:10:30 -0300575 switch (dev->pixelsize) {
576 case 2:
577 PRINTSTR(u16); break;
578 case 4:
579 PRINTSTR(u32); break;
580 case 3:
581 PRINTSTR(x24); break;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300582 }
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300583}
Brandon Philips78718e52008-04-02 18:10:59 -0300584
Hans Verkuil730947b2010-04-10 04:13:53 -0300585static void vivi_fillbuff(struct vivi_dev *dev, struct vivi_buffer *buf)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300586{
Kirill Smelkov13908f32012-11-02 09:10:32 -0300587 int stride = dev->width * dev->pixelsize;
Pawel Osciake007a322011-01-19 13:02:29 -0200588 int hmax = dev->height;
Pawel Osciake007a322011-01-19 13:02:29 -0200589 void *vbuf = vb2_plane_vaddr(&buf->vb, 0);
Hans Verkuil730947b2010-04-10 04:13:53 -0300590 unsigned ms;
591 char str[100];
592 int h, line = 1;
Kirill Smelkov13908f32012-11-02 09:10:32 -0300593 u8 *linestart;
Hans Verkuila1c894f2011-06-07 06:34:41 -0300594 s32 gain;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300595
Marcin Slusarz5c554e62008-06-22 09:11:40 -0300596 if (!vbuf)
Mauro Carvalho Chehab5a037702007-08-02 23:31:54 -0300597 return;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300598
Kirill Smelkov13908f32012-11-02 09:10:32 -0300599 linestart = dev->line + (dev->mv_count % dev->width) * dev->pixelsize;
600
Hans Verkuil730947b2010-04-10 04:13:53 -0300601 for (h = 0; h < hmax; h++)
Kirill Smelkov13908f32012-11-02 09:10:32 -0300602 memcpy(vbuf + h * stride, linestart, stride);
Mauro Carvalho Chehab5a037702007-08-02 23:31:54 -0300603
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300604 /* Updates stream time */
605
Kirill Smelkove3a8b4d2012-11-02 09:10:30 -0300606 gen_twopix(dev, (u8 *)&dev->textbg, TEXT_BLACK, /*odd=*/ 0);
607 gen_twopix(dev, (u8 *)&dev->textfg, WHITE, /*odd=*/ 0);
608
Hans Verkuil730947b2010-04-10 04:13:53 -0300609 dev->ms += jiffies_to_msecs(jiffies - dev->jiffies);
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300610 dev->jiffies = jiffies;
Hans Verkuil730947b2010-04-10 04:13:53 -0300611 ms = dev->ms;
612 snprintf(str, sizeof(str), " %02d:%02d:%02d:%03d ",
613 (ms / (60 * 60 * 1000)) % 24,
614 (ms / (60 * 1000)) % 60,
615 (ms / 1000) % 60,
616 ms % 1000);
617 gen_text(dev, vbuf, line++ * 16, 16, str);
618 snprintf(str, sizeof(str), " %dx%d, input %d ",
619 dev->width, dev->height, dev->input);
620 gen_text(dev, vbuf, line++ * 16, 16, str);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300621
Hans Verkuila1c894f2011-06-07 06:34:41 -0300622 gain = v4l2_ctrl_g_ctrl(dev->gain);
Sakari Ailus77e7c4e2012-01-24 21:05:34 -0300623 mutex_lock(dev->ctrl_handler.lock);
Hans Verkuil730947b2010-04-10 04:13:53 -0300624 snprintf(str, sizeof(str), " brightness %3d, contrast %3d, saturation %3d, hue %d ",
Hans Verkuil7e996af2011-01-23 12:33:16 -0200625 dev->brightness->cur.val,
626 dev->contrast->cur.val,
627 dev->saturation->cur.val,
628 dev->hue->cur.val);
Hans Verkuil730947b2010-04-10 04:13:53 -0300629 gen_text(dev, vbuf, line++ * 16, 16, str);
Hans Verkuil7088f4d2012-05-02 03:33:52 -0300630 snprintf(str, sizeof(str), " autogain %d, gain %3d, volume %3d, alpha 0x%02x ",
631 dev->autogain->cur.val, gain, dev->volume->cur.val,
632 dev->alpha->cur.val);
Hans Verkuil730947b2010-04-10 04:13:53 -0300633 gen_text(dev, vbuf, line++ * 16, 16, str);
Hans Verkuilb6d17a52011-03-29 16:33:11 -0300634 snprintf(str, sizeof(str), " int32 %d, int64 %lld, bitmask %08x ",
Hans Verkuil7e996af2011-01-23 12:33:16 -0200635 dev->int32->cur.val,
Hans Verkuilb6d17a52011-03-29 16:33:11 -0300636 dev->int64->cur.val64,
637 dev->bitmask->cur.val);
Hans Verkuil7e996af2011-01-23 12:33:16 -0200638 gen_text(dev, vbuf, line++ * 16, 16, str);
639 snprintf(str, sizeof(str), " boolean %d, menu %s, string \"%s\" ",
640 dev->boolean->cur.val,
641 dev->menu->qmenu[dev->menu->cur.val],
642 dev->string->cur.string);
Hans Verkuilf70cfc72012-04-19 11:44:18 -0300643 gen_text(dev, vbuf, line++ * 16, 16, str);
Sakari Ailusc5203312011-08-05 06:38:05 -0300644 snprintf(str, sizeof(str), " integer_menu %lld, value %d ",
645 dev->int_menu->qmenu_int[dev->int_menu->cur.val],
646 dev->int_menu->cur.val);
647 gen_text(dev, vbuf, line++ * 16, 16, str);
Sakari Ailus77e7c4e2012-01-24 21:05:34 -0300648 mutex_unlock(dev->ctrl_handler.lock);
Hans Verkuil7e996af2011-01-23 12:33:16 -0200649 if (dev->button_pressed) {
650 dev->button_pressed--;
651 snprintf(str, sizeof(str), " button pressed!");
652 gen_text(dev, vbuf, line++ * 16, 16, str);
653 }
Hans Verkuil730947b2010-04-10 04:13:53 -0300654
655 dev->mv_count += 2;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300656
Hans Verkuilcd779252012-07-25 11:48:53 -0300657 buf->vb.v4l2_buf.field = V4L2_FIELD_INTERLACED;
Pawel Osciake007a322011-01-19 13:02:29 -0200658 dev->field_count++;
659 buf->vb.v4l2_buf.sequence = dev->field_count >> 1;
Sakari Ailus8e6057b2012-09-15 15:14:42 -0300660 v4l2_get_timestamp(&buf->vb.v4l2_buf.timestamp);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300661}
662
Hans Verkuil730947b2010-04-10 04:13:53 -0300663static void vivi_thread_tick(struct vivi_dev *dev)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300664{
Brandon Philips78718e52008-04-02 18:10:59 -0300665 struct vivi_dmaqueue *dma_q = &dev->vidq;
Hans Verkuil730947b2010-04-10 04:13:53 -0300666 struct vivi_buffer *buf;
Brandon Philips78718e52008-04-02 18:10:59 -0300667 unsigned long flags = 0;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300668
Brandon Philips78718e52008-04-02 18:10:59 -0300669 dprintk(dev, 1, "Thread tick\n");
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300670
Brandon Philips78718e52008-04-02 18:10:59 -0300671 spin_lock_irqsave(&dev->slock, flags);
672 if (list_empty(&dma_q->active)) {
673 dprintk(dev, 1, "No active queue to serve\n");
Hans Verkuil1de5be52011-07-05 07:19:23 -0300674 spin_unlock_irqrestore(&dev->slock, flags);
675 return;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300676 }
Brandon Philips78718e52008-04-02 18:10:59 -0300677
Pawel Osciake007a322011-01-19 13:02:29 -0200678 buf = list_entry(dma_q->active.next, struct vivi_buffer, list);
679 list_del(&buf->list);
Hans Verkuil1de5be52011-07-05 07:19:23 -0300680 spin_unlock_irqrestore(&dev->slock, flags);
Brandon Philips78718e52008-04-02 18:10:59 -0300681
Sakari Ailus8e6057b2012-09-15 15:14:42 -0300682 v4l2_get_timestamp(&buf->vb.v4l2_buf.timestamp);
Brandon Philips78718e52008-04-02 18:10:59 -0300683
684 /* Fill buffer */
Hans Verkuil730947b2010-04-10 04:13:53 -0300685 vivi_fillbuff(dev, buf);
Brandon Philips78718e52008-04-02 18:10:59 -0300686 dprintk(dev, 1, "filled buffer %p\n", buf);
687
Pawel Osciake007a322011-01-19 13:02:29 -0200688 vb2_buffer_done(&buf->vb, VB2_BUF_STATE_DONE);
689 dprintk(dev, 2, "[%p/%d] done\n", buf, buf->vb.v4l2_buf.index);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300690}
691
Mauro Carvalho Chehab6594ad82007-12-13 16:15:41 -0300692#define frames_to_ms(frames) \
693 ((frames * WAKE_NUMERATOR * 1000) / WAKE_DENOMINATOR)
694
Hans Verkuil730947b2010-04-10 04:13:53 -0300695static void vivi_sleep(struct vivi_dev *dev)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300696{
Brandon Philips78718e52008-04-02 18:10:59 -0300697 struct vivi_dmaqueue *dma_q = &dev->vidq;
698 int timeout;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300699 DECLARE_WAITQUEUE(wait, current);
700
Harvey Harrison7e28adb2008-04-08 23:20:00 -0300701 dprintk(dev, 1, "%s dma_q=0x%08lx\n", __func__,
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300702 (unsigned long)dma_q);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300703
704 add_wait_queue(&dma_q->wq, &wait);
Mauro Carvalho Chehab6594ad82007-12-13 16:15:41 -0300705 if (kthread_should_stop())
706 goto stop_task;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300707
Mauro Carvalho Chehab6594ad82007-12-13 16:15:41 -0300708 /* Calculate time to wake up */
Brandon Philips78718e52008-04-02 18:10:59 -0300709 timeout = msecs_to_jiffies(frames_to_ms(1));
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300710
Hans Verkuil730947b2010-04-10 04:13:53 -0300711 vivi_thread_tick(dev);
Mauro Carvalho Chehab6594ad82007-12-13 16:15:41 -0300712
713 schedule_timeout_interruptible(timeout);
714
715stop_task:
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300716 remove_wait_queue(&dma_q->wq, &wait);
717 try_to_freeze();
718}
719
Adrian Bunk972c3512006-04-27 21:06:50 -0300720static int vivi_thread(void *data)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300721{
Hans Verkuil730947b2010-04-10 04:13:53 -0300722 struct vivi_dev *dev = data;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300723
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300724 dprintk(dev, 1, "thread started\n");
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300725
Rafael J. Wysocki83144182007-07-17 04:03:35 -0700726 set_freezable();
Mauro Carvalho Chehab0b600512007-01-14 08:33:24 -0300727
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300728 for (;;) {
Hans Verkuil730947b2010-04-10 04:13:53 -0300729 vivi_sleep(dev);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300730
731 if (kthread_should_stop())
732 break;
733 }
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300734 dprintk(dev, 1, "thread: exit\n");
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300735 return 0;
736}
737
Pawel Osciake007a322011-01-19 13:02:29 -0200738static int vivi_start_generating(struct vivi_dev *dev)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300739{
Brandon Philips78718e52008-04-02 18:10:59 -0300740 struct vivi_dmaqueue *dma_q = &dev->vidq;
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300741
Harvey Harrison7e28adb2008-04-08 23:20:00 -0300742 dprintk(dev, 1, "%s\n", __func__);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300743
Hans Verkuil730947b2010-04-10 04:13:53 -0300744 /* Resets frame counters */
745 dev->ms = 0;
746 dev->mv_count = 0;
747 dev->jiffies = jiffies;
748
749 dma_q->frame = 0;
750 dma_q->ini_jiffies = jiffies;
751 dma_q->kthread = kthread_run(vivi_thread, dev, dev->v4l2_dev.name);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300752
Akinobu Mita054afee2006-12-20 10:04:00 -0300753 if (IS_ERR(dma_q->kthread)) {
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -0300754 v4l2_err(&dev->v4l2_dev, "kernel_thread() failed\n");
Pawel Osciake007a322011-01-19 13:02:29 -0200755 return PTR_ERR(dma_q->kthread);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300756 }
Mauro Carvalho Chehab0b600512007-01-14 08:33:24 -0300757 /* Wakes thread */
758 wake_up_interruptible(&dma_q->wq);
759
Harvey Harrison7e28adb2008-04-08 23:20:00 -0300760 dprintk(dev, 1, "returning from %s\n", __func__);
Pawel Osciake007a322011-01-19 13:02:29 -0200761 return 0;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300762}
763
Pawel Osciake007a322011-01-19 13:02:29 -0200764static void vivi_stop_generating(struct vivi_dev *dev)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300765{
Hans Verkuil730947b2010-04-10 04:13:53 -0300766 struct vivi_dmaqueue *dma_q = &dev->vidq;
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300767
Harvey Harrison7e28adb2008-04-08 23:20:00 -0300768 dprintk(dev, 1, "%s\n", __func__);
Hans Verkuil730947b2010-04-10 04:13:53 -0300769
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300770 /* shutdown control thread */
771 if (dma_q->kthread) {
772 kthread_stop(dma_q->kthread);
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300773 dma_q->kthread = NULL;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300774 }
Hans Verkuil730947b2010-04-10 04:13:53 -0300775
Pawel Osciake007a322011-01-19 13:02:29 -0200776 /*
777 * Typical driver might need to wait here until dma engine stops.
778 * In this case we can abort imiedetly, so it's just a noop.
779 */
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300780
Pawel Osciake007a322011-01-19 13:02:29 -0200781 /* Release all active buffers */
782 while (!list_empty(&dma_q->active)) {
783 struct vivi_buffer *buf;
784 buf = list_entry(dma_q->active.next, struct vivi_buffer, list);
785 list_del(&buf->list);
786 vb2_buffer_done(&buf->vb, VB2_BUF_STATE_ERROR);
787 dprintk(dev, 2, "[%p/%d] done\n", buf, buf->vb.v4l2_buf.index);
788 }
789}
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300790/* ------------------------------------------------------------------
791 Videobuf operations
792 ------------------------------------------------------------------*/
Guennadi Liakhovetskifc714e702011-08-24 10:30:21 -0300793static int queue_setup(struct vb2_queue *vq, const struct v4l2_format *fmt,
794 unsigned int *nbuffers, unsigned int *nplanes,
795 unsigned int sizes[], void *alloc_ctxs[])
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300796{
Pawel Osciake007a322011-01-19 13:02:29 -0200797 struct vivi_dev *dev = vb2_get_drv_priv(vq);
798 unsigned long size;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300799
Hans Verkuil2e90c6c2012-06-22 05:53:31 -0300800 if (fmt)
801 size = fmt->fmt.pix.sizeimage;
802 else
803 size = dev->width * dev->height * dev->pixelsize;
804
805 if (size == 0)
806 return -EINVAL;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300807
Pawel Osciake007a322011-01-19 13:02:29 -0200808 if (0 == *nbuffers)
809 *nbuffers = 32;
Mauro Carvalho Chehab6bb27902007-08-23 16:41:14 -0300810
Pawel Osciake007a322011-01-19 13:02:29 -0200811 while (size * *nbuffers > vid_limit * 1024 * 1024)
812 (*nbuffers)--;
Mauro Carvalho Chehab6bb27902007-08-23 16:41:14 -0300813
Pawel Osciake007a322011-01-19 13:02:29 -0200814 *nplanes = 1;
815
816 sizes[0] = size;
817
818 /*
819 * videobuf2-vmalloc allocator is context-less so no need to set
820 * alloc_ctxs array.
821 */
822
823 dprintk(dev, 1, "%s, count=%d, size=%ld\n", __func__,
824 *nbuffers, size);
Mauro Carvalho Chehab6bb27902007-08-23 16:41:14 -0300825
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300826 return 0;
827}
828
Pawel Osciake007a322011-01-19 13:02:29 -0200829static int buffer_prepare(struct vb2_buffer *vb)
830{
831 struct vivi_dev *dev = vb2_get_drv_priv(vb->vb2_queue);
832 struct vivi_buffer *buf = container_of(vb, struct vivi_buffer, vb);
833 unsigned long size;
834
835 dprintk(dev, 1, "%s, field=%d\n", __func__, vb->v4l2_buf.field);
836
837 BUG_ON(NULL == dev->fmt);
838
839 /*
840 * Theses properties only change when queue is idle, see s_fmt.
841 * The below checks should not be performed here, on each
842 * buffer_prepare (i.e. on each qbuf). Most of the code in this function
843 * should thus be moved to buffer_init and s_fmt.
844 */
Hans Verkuil730947b2010-04-10 04:13:53 -0300845 if (dev->width < 48 || dev->width > MAX_WIDTH ||
846 dev->height < 32 || dev->height > MAX_HEIGHT)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300847 return -EINVAL;
Brandon Philips78718e52008-04-02 18:10:59 -0300848
Hans Verkuil3d51dca2012-05-02 03:15:11 -0300849 size = dev->width * dev->height * dev->pixelsize;
Pawel Osciake007a322011-01-19 13:02:29 -0200850 if (vb2_plane_size(vb, 0) < size) {
851 dprintk(dev, 1, "%s data will not fit into plane (%lu < %lu)\n",
852 __func__, vb2_plane_size(vb, 0), size);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300853 return -EINVAL;
Pawel Osciake007a322011-01-19 13:02:29 -0200854 }
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300855
Pawel Osciake007a322011-01-19 13:02:29 -0200856 vb2_set_plane_payload(&buf->vb, 0, size);
857
858 buf->fmt = dev->fmt;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300859
Hans Verkuil730947b2010-04-10 04:13:53 -0300860 precalculate_bars(dev);
861 precalculate_line(dev);
Mauro Carvalho Chehabc285add2009-06-25 16:28:23 -0300862
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300863 return 0;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300864}
865
Pawel Osciake007a322011-01-19 13:02:29 -0200866static void buffer_queue(struct vb2_buffer *vb)
867{
868 struct vivi_dev *dev = vb2_get_drv_priv(vb->vb2_queue);
Hans Verkuil730947b2010-04-10 04:13:53 -0300869 struct vivi_buffer *buf = container_of(vb, struct vivi_buffer, vb);
Brandon Philips78718e52008-04-02 18:10:59 -0300870 struct vivi_dmaqueue *vidq = &dev->vidq;
Pawel Osciake007a322011-01-19 13:02:29 -0200871 unsigned long flags = 0;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300872
Harvey Harrison7e28adb2008-04-08 23:20:00 -0300873 dprintk(dev, 1, "%s\n", __func__);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300874
Pawel Osciake007a322011-01-19 13:02:29 -0200875 spin_lock_irqsave(&dev->slock, flags);
876 list_add_tail(&buf->list, &vidq->active);
877 spin_unlock_irqrestore(&dev->slock, flags);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300878}
879
Marek Szyprowskibd323e22011-08-29 08:51:49 -0300880static int start_streaming(struct vb2_queue *vq, unsigned int count)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300881{
Pawel Osciake007a322011-01-19 13:02:29 -0200882 struct vivi_dev *dev = vb2_get_drv_priv(vq);
Harvey Harrison7e28adb2008-04-08 23:20:00 -0300883 dprintk(dev, 1, "%s\n", __func__);
Pawel Osciake007a322011-01-19 13:02:29 -0200884 return vivi_start_generating(dev);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300885}
886
Pawel Osciake007a322011-01-19 13:02:29 -0200887/* abort streaming and wait for last buffer */
888static int stop_streaming(struct vb2_queue *vq)
889{
890 struct vivi_dev *dev = vb2_get_drv_priv(vq);
891 dprintk(dev, 1, "%s\n", __func__);
892 vivi_stop_generating(dev);
893 return 0;
894}
895
896static void vivi_lock(struct vb2_queue *vq)
897{
898 struct vivi_dev *dev = vb2_get_drv_priv(vq);
899 mutex_lock(&dev->mutex);
900}
901
902static void vivi_unlock(struct vb2_queue *vq)
903{
904 struct vivi_dev *dev = vb2_get_drv_priv(vq);
905 mutex_unlock(&dev->mutex);
906}
907
908
909static struct vb2_ops vivi_video_qops = {
910 .queue_setup = queue_setup,
Pawel Osciake007a322011-01-19 13:02:29 -0200911 .buf_prepare = buffer_prepare,
Pawel Osciake007a322011-01-19 13:02:29 -0200912 .buf_queue = buffer_queue,
913 .start_streaming = start_streaming,
914 .stop_streaming = stop_streaming,
915 .wait_prepare = vivi_unlock,
916 .wait_finish = vivi_lock,
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300917};
918
919/* ------------------------------------------------------------------
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300920 IOCTL vidioc handling
921 ------------------------------------------------------------------*/
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300922static int vidioc_querycap(struct file *file, void *priv,
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300923 struct v4l2_capability *cap)
924{
Hans Verkuil730947b2010-04-10 04:13:53 -0300925 struct vivi_dev *dev = video_drvdata(file);
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -0300926
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300927 strcpy(cap->driver, "vivi");
928 strcpy(cap->card, "vivi");
Hans Verkuil72c2af62012-09-14 06:23:12 -0300929 snprintf(cap->bus_info, sizeof(cap->bus_info),
930 "platform:%s", dev->v4l2_dev.name);
Hans Verkuil23268ae2012-01-24 05:24:36 -0300931 cap->device_caps = V4L2_CAP_VIDEO_CAPTURE | V4L2_CAP_STREAMING |
932 V4L2_CAP_READWRITE;
933 cap->capabilities = cap->device_caps | V4L2_CAP_DEVICE_CAPS;
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300934 return 0;
935}
936
Hans Verkuil78b526a2008-05-28 12:16:41 -0300937static int vidioc_enum_fmt_vid_cap(struct file *file, void *priv,
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300938 struct v4l2_fmtdesc *f)
939{
Magnus Dammd891f472008-10-14 12:47:09 -0300940 struct vivi_fmt *fmt;
941
942 if (f->index >= ARRAY_SIZE(formats))
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300943 return -EINVAL;
944
Magnus Dammd891f472008-10-14 12:47:09 -0300945 fmt = &formats[f->index];
946
947 strlcpy(f->description, fmt->name, sizeof(f->description));
948 f->pixelformat = fmt->fourcc;
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300949 return 0;
950}
951
Hans Verkuil78b526a2008-05-28 12:16:41 -0300952static int vidioc_g_fmt_vid_cap(struct file *file, void *priv,
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300953 struct v4l2_format *f)
954{
Hans Verkuil730947b2010-04-10 04:13:53 -0300955 struct vivi_dev *dev = video_drvdata(file);
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300956
Hans Verkuil730947b2010-04-10 04:13:53 -0300957 f->fmt.pix.width = dev->width;
958 f->fmt.pix.height = dev->height;
Hans Verkuilcd779252012-07-25 11:48:53 -0300959 f->fmt.pix.field = V4L2_FIELD_INTERLACED;
Hans Verkuil730947b2010-04-10 04:13:53 -0300960 f->fmt.pix.pixelformat = dev->fmt->fourcc;
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300961 f->fmt.pix.bytesperline =
Hans Verkuil730947b2010-04-10 04:13:53 -0300962 (f->fmt.pix.width * dev->fmt->depth) >> 3;
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300963 f->fmt.pix.sizeimage =
964 f->fmt.pix.height * f->fmt.pix.bytesperline;
Hans Verkuil0a3a8a32012-08-06 10:36:18 -0300965 if (dev->fmt->is_yuv)
Hans Verkuil8c79eec2011-07-29 07:19:46 -0300966 f->fmt.pix.colorspace = V4L2_COLORSPACE_SMPTE170M;
967 else
968 f->fmt.pix.colorspace = V4L2_COLORSPACE_SRGB;
Hans Verkuil730947b2010-04-10 04:13:53 -0300969 return 0;
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300970}
971
Hans Verkuil78b526a2008-05-28 12:16:41 -0300972static int vidioc_try_fmt_vid_cap(struct file *file, void *priv,
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300973 struct v4l2_format *f)
974{
Hans Verkuil730947b2010-04-10 04:13:53 -0300975 struct vivi_dev *dev = video_drvdata(file);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300976 struct vivi_fmt *fmt;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300977
Magnus Dammd891f472008-10-14 12:47:09 -0300978 fmt = get_format(f);
979 if (!fmt) {
Hans Verkuilcd779252012-07-25 11:48:53 -0300980 dprintk(dev, 1, "Fourcc format (0x%08x) unknown.\n",
Magnus Dammd891f472008-10-14 12:47:09 -0300981 f->fmt.pix.pixelformat);
Hans Verkuilcd779252012-07-25 11:48:53 -0300982 f->fmt.pix.pixelformat = V4L2_PIX_FMT_YUYV;
983 fmt = get_format(f);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300984 }
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300985
Hans Verkuilcd779252012-07-25 11:48:53 -0300986 f->fmt.pix.field = V4L2_FIELD_INTERLACED;
Hans Verkuil730947b2010-04-10 04:13:53 -0300987 v4l_bound_align_image(&f->fmt.pix.width, 48, MAX_WIDTH, 2,
988 &f->fmt.pix.height, 32, MAX_HEIGHT, 0, 0);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300989 f->fmt.pix.bytesperline =
990 (f->fmt.pix.width * fmt->depth) >> 3;
991 f->fmt.pix.sizeimage =
992 f->fmt.pix.height * f->fmt.pix.bytesperline;
Hans Verkuil0a3a8a32012-08-06 10:36:18 -0300993 if (fmt->is_yuv)
Hans Verkuil8c79eec2011-07-29 07:19:46 -0300994 f->fmt.pix.colorspace = V4L2_COLORSPACE_SMPTE170M;
995 else
996 f->fmt.pix.colorspace = V4L2_COLORSPACE_SRGB;
Hans Verkuil2f65f462012-08-06 10:43:13 -0300997 f->fmt.pix.priv = 0;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300998 return 0;
999}
1000
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -03001001static int vidioc_s_fmt_vid_cap(struct file *file, void *priv,
1002 struct v4l2_format *f)
1003{
Hans Verkuil730947b2010-04-10 04:13:53 -03001004 struct vivi_dev *dev = video_drvdata(file);
Pawel Osciake007a322011-01-19 13:02:29 -02001005 struct vb2_queue *q = &dev->vb_vidq;
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -03001006
Hans Verkuil730947b2010-04-10 04:13:53 -03001007 int ret = vidioc_try_fmt_vid_cap(file, priv, f);
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -03001008 if (ret < 0)
1009 return ret;
1010
Hans Verkuilf2ba5a02012-06-22 05:53:02 -03001011 if (vb2_is_busy(q)) {
Hans Verkuil730947b2010-04-10 04:13:53 -03001012 dprintk(dev, 1, "%s device busy\n", __func__);
Pawel Osciake007a322011-01-19 13:02:29 -02001013 return -EBUSY;
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -03001014 }
1015
Hans Verkuil730947b2010-04-10 04:13:53 -03001016 dev->fmt = get_format(f);
Hans Verkuil3d51dca2012-05-02 03:15:11 -03001017 dev->pixelsize = dev->fmt->depth / 8;
Hans Verkuil730947b2010-04-10 04:13:53 -03001018 dev->width = f->fmt.pix.width;
1019 dev->height = f->fmt.pix.height;
Pawel Osciake007a322011-01-19 13:02:29 -02001020
1021 return 0;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001022}
1023
Hans Verkuil77747f72012-08-06 10:37:18 -03001024static int vidioc_enum_framesizes(struct file *file, void *fh,
1025 struct v4l2_frmsizeenum *fsize)
1026{
1027 static const struct v4l2_frmsize_stepwise sizes = {
1028 48, MAX_WIDTH, 4,
1029 32, MAX_HEIGHT, 1
1030 };
1031 int i;
1032
1033 if (fsize->index)
1034 return -EINVAL;
1035 for (i = 0; i < ARRAY_SIZE(formats); i++)
1036 if (formats[i].fourcc == fsize->pixel_format)
1037 break;
1038 if (i == ARRAY_SIZE(formats))
1039 return -EINVAL;
1040 fsize->type = V4L2_FRMSIZE_TYPE_STEPWISE;
1041 fsize->stepwise = sizes;
1042 return 0;
1043}
1044
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001045/* only one input in this sample driver */
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -03001046static int vidioc_enum_input(struct file *file, void *priv,
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001047 struct v4l2_input *inp)
1048{
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -03001049 if (inp->index >= NUM_INPUTS)
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001050 return -EINVAL;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001051
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001052 inp->type = V4L2_INPUT_TYPE_CAMERA;
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -03001053 sprintf(inp->name, "Camera %u", inp->index);
Hans Verkuil730947b2010-04-10 04:13:53 -03001054 return 0;
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001055}
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001056
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -03001057static int vidioc_g_input(struct file *file, void *priv, unsigned int *i)
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001058{
Hans Verkuil730947b2010-04-10 04:13:53 -03001059 struct vivi_dev *dev = video_drvdata(file);
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -03001060
1061 *i = dev->input;
Hans Verkuil730947b2010-04-10 04:13:53 -03001062 return 0;
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001063}
Hans Verkuil730947b2010-04-10 04:13:53 -03001064
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -03001065static int vidioc_s_input(struct file *file, void *priv, unsigned int i)
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001066{
Hans Verkuil730947b2010-04-10 04:13:53 -03001067 struct vivi_dev *dev = video_drvdata(file);
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -03001068
1069 if (i >= NUM_INPUTS)
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001070 return -EINVAL;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001071
Hans Verkuilc7a52f82011-06-07 10:20:23 -03001072 if (i == dev->input)
1073 return 0;
1074
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -03001075 dev->input = i;
Hans Verkuil730947b2010-04-10 04:13:53 -03001076 precalculate_bars(dev);
1077 precalculate_line(dev);
1078 return 0;
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001079}
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001080
Hans Verkuil730947b2010-04-10 04:13:53 -03001081/* --- controls ---------------------------------------------- */
Hans Verkuil7e996af2011-01-23 12:33:16 -02001082
Hans Verkuila1c894f2011-06-07 06:34:41 -03001083static int vivi_g_volatile_ctrl(struct v4l2_ctrl *ctrl)
1084{
1085 struct vivi_dev *dev = container_of(ctrl->handler, struct vivi_dev, ctrl_handler);
1086
1087 if (ctrl == dev->autogain)
1088 dev->gain->val = jiffies & 0xff;
1089 return 0;
1090}
1091
Hans Verkuil7e996af2011-01-23 12:33:16 -02001092static int vivi_s_ctrl(struct v4l2_ctrl *ctrl)
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001093{
Hans Verkuil7e996af2011-01-23 12:33:16 -02001094 struct vivi_dev *dev = container_of(ctrl->handler, struct vivi_dev, ctrl_handler);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001095
Hans Verkuil7088f4d2012-05-02 03:33:52 -03001096 switch (ctrl->id) {
1097 case V4L2_CID_ALPHA_COMPONENT:
1098 dev->alpha_component = ctrl->val;
1099 break;
1100 default:
1101 if (ctrl == dev->button)
1102 dev->button_pressed = 30;
1103 break;
1104 }
Hans Verkuil7e996af2011-01-23 12:33:16 -02001105 return 0;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001106}
1107
1108/* ------------------------------------------------------------------
1109 File operations for the device
1110 ------------------------------------------------------------------*/
1111
Hans Verkuil7e996af2011-01-23 12:33:16 -02001112static const struct v4l2_ctrl_ops vivi_ctrl_ops = {
Hans Verkuila1c894f2011-06-07 06:34:41 -03001113 .g_volatile_ctrl = vivi_g_volatile_ctrl,
Hans Verkuil7e996af2011-01-23 12:33:16 -02001114 .s_ctrl = vivi_s_ctrl,
1115};
1116
1117#define VIVI_CID_CUSTOM_BASE (V4L2_CID_USER_BASE | 0xf000)
1118
1119static const struct v4l2_ctrl_config vivi_ctrl_button = {
1120 .ops = &vivi_ctrl_ops,
1121 .id = VIVI_CID_CUSTOM_BASE + 0,
1122 .name = "Button",
1123 .type = V4L2_CTRL_TYPE_BUTTON,
1124};
1125
1126static const struct v4l2_ctrl_config vivi_ctrl_boolean = {
1127 .ops = &vivi_ctrl_ops,
1128 .id = VIVI_CID_CUSTOM_BASE + 1,
1129 .name = "Boolean",
1130 .type = V4L2_CTRL_TYPE_BOOLEAN,
1131 .min = 0,
1132 .max = 1,
1133 .step = 1,
1134 .def = 1,
1135};
1136
1137static const struct v4l2_ctrl_config vivi_ctrl_int32 = {
1138 .ops = &vivi_ctrl_ops,
1139 .id = VIVI_CID_CUSTOM_BASE + 2,
1140 .name = "Integer 32 Bits",
1141 .type = V4L2_CTRL_TYPE_INTEGER,
Hans Verkuil5b283022011-01-11 17:32:28 -03001142 .min = 0x80000000,
1143 .max = 0x7fffffff,
Hans Verkuil7e996af2011-01-23 12:33:16 -02001144 .step = 1,
1145};
1146
1147static const struct v4l2_ctrl_config vivi_ctrl_int64 = {
1148 .ops = &vivi_ctrl_ops,
1149 .id = VIVI_CID_CUSTOM_BASE + 3,
1150 .name = "Integer 64 Bits",
1151 .type = V4L2_CTRL_TYPE_INTEGER64,
1152};
1153
1154static const char * const vivi_ctrl_menu_strings[] = {
1155 "Menu Item 0 (Skipped)",
1156 "Menu Item 1",
1157 "Menu Item 2 (Skipped)",
1158 "Menu Item 3",
1159 "Menu Item 4",
1160 "Menu Item 5 (Skipped)",
1161 NULL,
1162};
1163
1164static const struct v4l2_ctrl_config vivi_ctrl_menu = {
1165 .ops = &vivi_ctrl_ops,
1166 .id = VIVI_CID_CUSTOM_BASE + 4,
1167 .name = "Menu",
1168 .type = V4L2_CTRL_TYPE_MENU,
1169 .min = 1,
1170 .max = 4,
1171 .def = 3,
1172 .menu_skip_mask = 0x04,
1173 .qmenu = vivi_ctrl_menu_strings,
1174};
1175
1176static const struct v4l2_ctrl_config vivi_ctrl_string = {
1177 .ops = &vivi_ctrl_ops,
1178 .id = VIVI_CID_CUSTOM_BASE + 5,
1179 .name = "String",
1180 .type = V4L2_CTRL_TYPE_STRING,
1181 .min = 2,
1182 .max = 4,
1183 .step = 1,
1184};
1185
Hans Verkuilb6d17a52011-03-29 16:33:11 -03001186static const struct v4l2_ctrl_config vivi_ctrl_bitmask = {
1187 .ops = &vivi_ctrl_ops,
1188 .id = VIVI_CID_CUSTOM_BASE + 6,
1189 .name = "Bitmask",
1190 .type = V4L2_CTRL_TYPE_BITMASK,
1191 .def = 0x80002000,
1192 .min = 0,
1193 .max = 0x80402010,
1194 .step = 0,
1195};
1196
Sakari Ailusc5203312011-08-05 06:38:05 -03001197static const s64 vivi_ctrl_int_menu_values[] = {
1198 1, 1, 2, 3, 5, 8, 13, 21, 42,
1199};
1200
1201static const struct v4l2_ctrl_config vivi_ctrl_int_menu = {
1202 .ops = &vivi_ctrl_ops,
1203 .id = VIVI_CID_CUSTOM_BASE + 7,
1204 .name = "Integer menu",
1205 .type = V4L2_CTRL_TYPE_INTEGER_MENU,
1206 .min = 1,
1207 .max = 8,
1208 .def = 4,
1209 .menu_skip_mask = 0x02,
1210 .qmenu_int = vivi_ctrl_int_menu_values,
1211};
1212
Hans Verkuilbec43662008-12-30 06:58:20 -03001213static const struct v4l2_file_operations vivi_fops = {
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001214 .owner = THIS_MODULE,
Hans Verkuilc7a52f82011-06-07 10:20:23 -03001215 .open = v4l2_fh_open,
Hans Verkuilf2ba5a02012-06-22 05:53:02 -03001216 .release = vb2_fop_release,
1217 .read = vb2_fop_read,
1218 .poll = vb2_fop_poll,
Hans Verkuilfedc6c82010-09-20 18:25:55 -03001219 .unlocked_ioctl = video_ioctl2, /* V4L2 ioctl handler */
Hans Verkuilf2ba5a02012-06-22 05:53:02 -03001220 .mmap = vb2_fop_mmap,
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001221};
1222
Hans Verkuila3998102008-07-21 02:57:38 -03001223static const struct v4l2_ioctl_ops vivi_ioctl_ops = {
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001224 .vidioc_querycap = vidioc_querycap,
Hans Verkuil78b526a2008-05-28 12:16:41 -03001225 .vidioc_enum_fmt_vid_cap = vidioc_enum_fmt_vid_cap,
1226 .vidioc_g_fmt_vid_cap = vidioc_g_fmt_vid_cap,
1227 .vidioc_try_fmt_vid_cap = vidioc_try_fmt_vid_cap,
1228 .vidioc_s_fmt_vid_cap = vidioc_s_fmt_vid_cap,
Hans Verkuil77747f72012-08-06 10:37:18 -03001229 .vidioc_enum_framesizes = vidioc_enum_framesizes,
Hans Verkuilf2ba5a02012-06-22 05:53:02 -03001230 .vidioc_reqbufs = vb2_ioctl_reqbufs,
Hans Verkuil2e90c6c2012-06-22 05:53:31 -03001231 .vidioc_create_bufs = vb2_ioctl_create_bufs,
1232 .vidioc_prepare_buf = vb2_ioctl_prepare_buf,
Hans Verkuilf2ba5a02012-06-22 05:53:02 -03001233 .vidioc_querybuf = vb2_ioctl_querybuf,
1234 .vidioc_qbuf = vb2_ioctl_qbuf,
1235 .vidioc_dqbuf = vb2_ioctl_dqbuf,
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001236 .vidioc_enum_input = vidioc_enum_input,
1237 .vidioc_g_input = vidioc_g_input,
1238 .vidioc_s_input = vidioc_s_input,
Hans Verkuilf2ba5a02012-06-22 05:53:02 -03001239 .vidioc_streamon = vb2_ioctl_streamon,
1240 .vidioc_streamoff = vb2_ioctl_streamoff,
Hans Verkuile2ecb252012-02-02 08:20:53 -03001241 .vidioc_log_status = v4l2_ctrl_log_status,
Hans Verkuil6d6604f2012-01-27 16:21:10 -03001242 .vidioc_subscribe_event = v4l2_ctrl_subscribe_event,
Hans Verkuilc7a52f82011-06-07 10:20:23 -03001243 .vidioc_unsubscribe_event = v4l2_event_unsubscribe,
Hans Verkuila3998102008-07-21 02:57:38 -03001244};
1245
1246static struct video_device vivi_template = {
1247 .name = "vivi",
Hans Verkuila3998102008-07-21 02:57:38 -03001248 .fops = &vivi_fops,
1249 .ioctl_ops = &vivi_ioctl_ops,
Hans Verkuil70bd97a2012-06-09 11:27:43 -03001250 .release = video_device_release_empty,
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001251};
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001252
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001253/* -----------------------------------------------------------------
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001254 Initialization and module stuff
1255 ------------------------------------------------------------------*/
1256
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001257static int vivi_release(void)
1258{
1259 struct vivi_dev *dev;
1260 struct list_head *list;
1261
1262 while (!list_empty(&vivi_devlist)) {
1263 list = vivi_devlist.next;
1264 list_del(list);
1265 dev = list_entry(list, struct vivi_dev, vivi_devlist);
1266
Laurent Pinchart38c7c032009-11-27 13:57:15 -03001267 v4l2_info(&dev->v4l2_dev, "unregistering %s\n",
Hans Verkuil70bd97a2012-06-09 11:27:43 -03001268 video_device_node_name(&dev->vdev));
1269 video_unregister_device(&dev->vdev);
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001270 v4l2_device_unregister(&dev->v4l2_dev);
Hans Verkuil7e996af2011-01-23 12:33:16 -02001271 v4l2_ctrl_handler_free(&dev->ctrl_handler);
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001272 kfree(dev);
1273 }
1274
1275 return 0;
1276}
1277
Hans Verkuilc41ee242009-02-14 13:43:44 -03001278static int __init vivi_create_instance(int inst)
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001279{
1280 struct vivi_dev *dev;
1281 struct video_device *vfd;
Hans Verkuil7e996af2011-01-23 12:33:16 -02001282 struct v4l2_ctrl_handler *hdl;
Pawel Osciake007a322011-01-19 13:02:29 -02001283 struct vb2_queue *q;
Hans Verkuil730947b2010-04-10 04:13:53 -03001284 int ret;
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001285
1286 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
1287 if (!dev)
1288 return -ENOMEM;
1289
1290 snprintf(dev->v4l2_dev.name, sizeof(dev->v4l2_dev.name),
Hans Verkuilc41ee242009-02-14 13:43:44 -03001291 "%s-%03d", VIVI_MODULE_NAME, inst);
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001292 ret = v4l2_device_register(NULL, &dev->v4l2_dev);
1293 if (ret)
1294 goto free_dev;
1295
Hans Verkuil730947b2010-04-10 04:13:53 -03001296 dev->fmt = &formats[0];
1297 dev->width = 640;
1298 dev->height = 480;
Hans Verkuil3d51dca2012-05-02 03:15:11 -03001299 dev->pixelsize = dev->fmt->depth / 8;
Hans Verkuil7e996af2011-01-23 12:33:16 -02001300 hdl = &dev->ctrl_handler;
1301 v4l2_ctrl_handler_init(hdl, 11);
1302 dev->volume = v4l2_ctrl_new_std(hdl, &vivi_ctrl_ops,
1303 V4L2_CID_AUDIO_VOLUME, 0, 255, 1, 200);
1304 dev->brightness = v4l2_ctrl_new_std(hdl, &vivi_ctrl_ops,
1305 V4L2_CID_BRIGHTNESS, 0, 255, 1, 127);
1306 dev->contrast = v4l2_ctrl_new_std(hdl, &vivi_ctrl_ops,
1307 V4L2_CID_CONTRAST, 0, 255, 1, 16);
1308 dev->saturation = v4l2_ctrl_new_std(hdl, &vivi_ctrl_ops,
1309 V4L2_CID_SATURATION, 0, 255, 1, 127);
1310 dev->hue = v4l2_ctrl_new_std(hdl, &vivi_ctrl_ops,
1311 V4L2_CID_HUE, -128, 127, 1, 0);
Hans Verkuila1c894f2011-06-07 06:34:41 -03001312 dev->autogain = v4l2_ctrl_new_std(hdl, &vivi_ctrl_ops,
1313 V4L2_CID_AUTOGAIN, 0, 1, 1, 1);
1314 dev->gain = v4l2_ctrl_new_std(hdl, &vivi_ctrl_ops,
1315 V4L2_CID_GAIN, 0, 255, 1, 100);
Hans Verkuil7088f4d2012-05-02 03:33:52 -03001316 dev->alpha = v4l2_ctrl_new_std(hdl, &vivi_ctrl_ops,
1317 V4L2_CID_ALPHA_COMPONENT, 0, 255, 1, 0);
Hans Verkuil7e996af2011-01-23 12:33:16 -02001318 dev->button = v4l2_ctrl_new_custom(hdl, &vivi_ctrl_button, NULL);
1319 dev->int32 = v4l2_ctrl_new_custom(hdl, &vivi_ctrl_int32, NULL);
1320 dev->int64 = v4l2_ctrl_new_custom(hdl, &vivi_ctrl_int64, NULL);
1321 dev->boolean = v4l2_ctrl_new_custom(hdl, &vivi_ctrl_boolean, NULL);
1322 dev->menu = v4l2_ctrl_new_custom(hdl, &vivi_ctrl_menu, NULL);
1323 dev->string = v4l2_ctrl_new_custom(hdl, &vivi_ctrl_string, NULL);
Hans Verkuilb6d17a52011-03-29 16:33:11 -03001324 dev->bitmask = v4l2_ctrl_new_custom(hdl, &vivi_ctrl_bitmask, NULL);
Sakari Ailusc5203312011-08-05 06:38:05 -03001325 dev->int_menu = v4l2_ctrl_new_custom(hdl, &vivi_ctrl_int_menu, NULL);
Hans Verkuil7e996af2011-01-23 12:33:16 -02001326 if (hdl->error) {
1327 ret = hdl->error;
1328 goto unreg_dev;
1329 }
Hans Verkuila1c894f2011-06-07 06:34:41 -03001330 v4l2_ctrl_auto_cluster(2, &dev->autogain, 0, true);
Hans Verkuil7e996af2011-01-23 12:33:16 -02001331 dev->v4l2_dev.ctrl_handler = hdl;
Hans Verkuil730947b2010-04-10 04:13:53 -03001332
Hans Verkuilfedc6c82010-09-20 18:25:55 -03001333 /* initialize locks */
1334 spin_lock_init(&dev->slock);
Hans Verkuilfedc6c82010-09-20 18:25:55 -03001335
Pawel Osciake007a322011-01-19 13:02:29 -02001336 /* initialize queue */
1337 q = &dev->vb_vidq;
Pawel Osciake007a322011-01-19 13:02:29 -02001338 q->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
Tomasz Stanislawskia626f0a2012-06-14 10:37:47 -03001339 q->io_modes = VB2_MMAP | VB2_USERPTR | VB2_DMABUF | VB2_READ;
Pawel Osciake007a322011-01-19 13:02:29 -02001340 q->drv_priv = dev;
1341 q->buf_struct_size = sizeof(struct vivi_buffer);
1342 q->ops = &vivi_video_qops;
1343 q->mem_ops = &vb2_vmalloc_memops;
1344
Ezequiel Garcia4195ec72012-09-17 09:49:38 -03001345 ret = vb2_queue_init(q);
1346 if (ret)
1347 goto unreg_dev;
Pawel Osciake007a322011-01-19 13:02:29 -02001348
1349 mutex_init(&dev->mutex);
Hans Verkuil730947b2010-04-10 04:13:53 -03001350
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001351 /* init video dma queues */
1352 INIT_LIST_HEAD(&dev->vidq.active);
1353 init_waitqueue_head(&dev->vidq.wq);
1354
Hans Verkuil70bd97a2012-06-09 11:27:43 -03001355 vfd = &dev->vdev;
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001356 *vfd = vivi_template;
Mauro Carvalho Chehabc285add2009-06-25 16:28:23 -03001357 vfd->debug = debug;
Hans Verkuil730947b2010-04-10 04:13:53 -03001358 vfd->v4l2_dev = &dev->v4l2_dev;
Hans Verkuilf2ba5a02012-06-22 05:53:02 -03001359 vfd->queue = q;
Hans Verkuilb1a873a2011-03-22 10:14:07 -03001360 set_bit(V4L2_FL_USE_FH_PRIO, &vfd->flags);
Pawel Osciake007a322011-01-19 13:02:29 -02001361
1362 /*
1363 * Provide a mutex to v4l2 core. It will be used to protect
1364 * all fops and v4l2 ioctls.
1365 */
Hans Verkuilfedc6c82010-09-20 18:25:55 -03001366 vfd->lock = &dev->mutex;
Hans Verkuil70bd97a2012-06-09 11:27:43 -03001367 video_set_drvdata(vfd, dev);
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001368
1369 ret = video_register_device(vfd, VFL_TYPE_GRABBER, video_nr);
1370 if (ret < 0)
Hans Verkuil70bd97a2012-06-09 11:27:43 -03001371 goto unreg_dev;
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001372
1373 /* Now that everything is fine, let's add it to device list */
1374 list_add_tail(&dev->vivi_devlist, &vivi_devlist);
1375
Laurent Pinchart38c7c032009-11-27 13:57:15 -03001376 v4l2_info(&dev->v4l2_dev, "V4L2 device registered as %s\n",
1377 video_device_node_name(vfd));
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001378 return 0;
1379
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001380unreg_dev:
Hans Verkuil7e996af2011-01-23 12:33:16 -02001381 v4l2_ctrl_handler_free(hdl);
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001382 v4l2_device_unregister(&dev->v4l2_dev);
1383free_dev:
1384 kfree(dev);
1385 return ret;
1386}
1387
Mauro Carvalho Chehab980d4f12008-09-03 17:11:53 -03001388/* This routine allocates from 1 to n_devs virtual drivers.
1389
1390 The real maximum number of virtual drivers will depend on how many drivers
1391 will succeed. This is limited to the maximum number of devices that
Hans Verkuil62cfdac2009-02-14 11:37:17 -03001392 videodev supports, which is equal to VIDEO_NUM_DEVICES.
Mauro Carvalho Chehab980d4f12008-09-03 17:11:53 -03001393 */
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001394static int __init vivi_init(void)
1395{
Hans Verkuil730947b2010-04-10 04:13:53 -03001396 const struct font_desc *font = find_font("VGA8x16");
Hans Verkuil9185cbf2009-03-06 09:58:12 -03001397 int ret = 0, i;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001398
Hans Verkuil730947b2010-04-10 04:13:53 -03001399 if (font == NULL) {
1400 printk(KERN_ERR "vivi: could not find font\n");
1401 return -ENODEV;
1402 }
1403 font8x16 = font->data;
1404
Mauro Carvalho Chehab980d4f12008-09-03 17:11:53 -03001405 if (n_devs <= 0)
1406 n_devs = 1;
1407
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001408 for (i = 0; i < n_devs; i++) {
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001409 ret = vivi_create_instance(i);
1410 if (ret) {
1411 /* If some instantiations succeeded, keep driver */
Mauro Carvalho Chehab980d4f12008-09-03 17:11:53 -03001412 if (i)
1413 ret = 0;
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001414 break;
Mauro Carvalho Chehab980d4f12008-09-03 17:11:53 -03001415 }
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001416 }
1417
1418 if (ret < 0) {
Hans Verkuil730947b2010-04-10 04:13:53 -03001419 printk(KERN_ERR "vivi: error %d while loading driver\n", ret);
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001420 return ret;
1421 }
1422
1423 printk(KERN_INFO "Video Technology Magazine Virtual Video "
Mauro Carvalho Chehab1990d502011-06-24 14:45:49 -03001424 "Capture Board ver %s successfully loaded.\n",
1425 VIVI_VERSION);
Mauro Carvalho Chehab980d4f12008-09-03 17:11:53 -03001426
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001427 /* n_devs will reflect the actual number of allocated devices */
1428 n_devs = i;
Mauro Carvalho Chehab980d4f12008-09-03 17:11:53 -03001429
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001430 return ret;
1431}
1432
1433static void __exit vivi_exit(void)
1434{
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001435 vivi_release();
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001436}
1437
1438module_init(vivi_init);
1439module_exit(vivi_exit);