blob: 3801a8d00946899384d0363f9f88ed89b5b03e3b [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];
240 u8 line[MAX_WIDTH * 8];
241 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{
Hans Verkuil730947b2010-04-10 04:13:53 -0300515 int w;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300516
Hans Verkuil3d51dca2012-05-02 03:15:11 -0300517 for (w = 0; w < dev->width * 2; w++) {
518 int colorpos = w / (dev->width / 8) % 8;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300519
Hans Verkuil3d51dca2012-05-02 03:15:11 -0300520 gen_twopix(dev, dev->line + w * dev->pixelsize, colorpos, w & 1);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300521 }
Hans Verkuil730947b2010-04-10 04:13:53 -0300522}
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300523
Kirill Smelkove3a8b4d2012-11-02 09:10:30 -0300524/* need this to do rgb24 rendering */
525typedef struct { u16 __; u8 _; } __attribute__((packed)) x24;
526
Hans Verkuil730947b2010-04-10 04:13:53 -0300527static void gen_text(struct vivi_dev *dev, char *basep,
528 int y, int x, char *text)
529{
530 int line;
Kirill Smelkove3a8b4d2012-11-02 09:10:30 -0300531 unsigned int width = dev->width;
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -0300532
Hans Verkuil730947b2010-04-10 04:13:53 -0300533 /* Checks if it is possible to show string */
Kirill Smelkove3a8b4d2012-11-02 09:10:30 -0300534 if (y + 16 >= dev->height || x + strlen(text) * 8 >= width)
Hans Verkuil730947b2010-04-10 04:13:53 -0300535 return;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300536
537 /* Print stream time */
Kirill Smelkove3a8b4d2012-11-02 09:10:30 -0300538#define PRINTSTR(PIXTYPE) do { \
539 PIXTYPE fg; \
540 PIXTYPE bg; \
541 memcpy(&fg, &dev->textfg, sizeof(PIXTYPE)); \
542 memcpy(&bg, &dev->textbg, sizeof(PIXTYPE)); \
543 \
544 for (line = 0; line < 16; line++) { \
545 PIXTYPE *pos = (PIXTYPE *)( basep + ((y + line) * width + x) * sizeof(PIXTYPE) ); \
546 u8 *s; \
547 \
548 for (s = text; *s; s++) { \
549 u8 chr = font8x16[*s * 16 + line]; \
550 \
551 pos[0] = (chr & (0x01 << 7) ? fg : bg); \
552 pos[1] = (chr & (0x01 << 6) ? fg : bg); \
553 pos[2] = (chr & (0x01 << 5) ? fg : bg); \
554 pos[3] = (chr & (0x01 << 4) ? fg : bg); \
555 pos[4] = (chr & (0x01 << 3) ? fg : bg); \
556 pos[5] = (chr & (0x01 << 2) ? fg : bg); \
557 pos[6] = (chr & (0x01 << 1) ? fg : bg); \
558 pos[7] = (chr & (0x01 << 0) ? fg : bg); \
559 \
560 pos += 8; \
561 } \
562 } \
563} while (0)
Hans Verkuil730947b2010-04-10 04:13:53 -0300564
Kirill Smelkove3a8b4d2012-11-02 09:10:30 -0300565 switch (dev->pixelsize) {
566 case 2:
567 PRINTSTR(u16); break;
568 case 4:
569 PRINTSTR(u32); break;
570 case 3:
571 PRINTSTR(x24); break;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300572 }
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300573}
Brandon Philips78718e52008-04-02 18:10:59 -0300574
Hans Verkuil730947b2010-04-10 04:13:53 -0300575static void vivi_fillbuff(struct vivi_dev *dev, struct vivi_buffer *buf)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300576{
Pawel Osciake007a322011-01-19 13:02:29 -0200577 int wmax = dev->width;
578 int hmax = dev->height;
Pawel Osciake007a322011-01-19 13:02:29 -0200579 void *vbuf = vb2_plane_vaddr(&buf->vb, 0);
Hans Verkuil730947b2010-04-10 04:13:53 -0300580 unsigned ms;
581 char str[100];
582 int h, line = 1;
Hans Verkuila1c894f2011-06-07 06:34:41 -0300583 s32 gain;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300584
Marcin Slusarz5c554e62008-06-22 09:11:40 -0300585 if (!vbuf)
Mauro Carvalho Chehab5a037702007-08-02 23:31:54 -0300586 return;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300587
Hans Verkuil730947b2010-04-10 04:13:53 -0300588 for (h = 0; h < hmax; h++)
Hans Verkuil3d51dca2012-05-02 03:15:11 -0300589 memcpy(vbuf + h * wmax * dev->pixelsize,
590 dev->line + (dev->mv_count % wmax) * dev->pixelsize,
591 wmax * dev->pixelsize);
Mauro Carvalho Chehab5a037702007-08-02 23:31:54 -0300592
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300593 /* Updates stream time */
594
Kirill Smelkove3a8b4d2012-11-02 09:10:30 -0300595 gen_twopix(dev, (u8 *)&dev->textbg, TEXT_BLACK, /*odd=*/ 0);
596 gen_twopix(dev, (u8 *)&dev->textfg, WHITE, /*odd=*/ 0);
597
Hans Verkuil730947b2010-04-10 04:13:53 -0300598 dev->ms += jiffies_to_msecs(jiffies - dev->jiffies);
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300599 dev->jiffies = jiffies;
Hans Verkuil730947b2010-04-10 04:13:53 -0300600 ms = dev->ms;
601 snprintf(str, sizeof(str), " %02d:%02d:%02d:%03d ",
602 (ms / (60 * 60 * 1000)) % 24,
603 (ms / (60 * 1000)) % 60,
604 (ms / 1000) % 60,
605 ms % 1000);
606 gen_text(dev, vbuf, line++ * 16, 16, str);
607 snprintf(str, sizeof(str), " %dx%d, input %d ",
608 dev->width, dev->height, dev->input);
609 gen_text(dev, vbuf, line++ * 16, 16, str);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300610
Hans Verkuila1c894f2011-06-07 06:34:41 -0300611 gain = v4l2_ctrl_g_ctrl(dev->gain);
Sakari Ailus77e7c4e2012-01-24 21:05:34 -0300612 mutex_lock(dev->ctrl_handler.lock);
Hans Verkuil730947b2010-04-10 04:13:53 -0300613 snprintf(str, sizeof(str), " brightness %3d, contrast %3d, saturation %3d, hue %d ",
Hans Verkuil7e996af2011-01-23 12:33:16 -0200614 dev->brightness->cur.val,
615 dev->contrast->cur.val,
616 dev->saturation->cur.val,
617 dev->hue->cur.val);
Hans Verkuil730947b2010-04-10 04:13:53 -0300618 gen_text(dev, vbuf, line++ * 16, 16, str);
Hans Verkuil7088f4d2012-05-02 03:33:52 -0300619 snprintf(str, sizeof(str), " autogain %d, gain %3d, volume %3d, alpha 0x%02x ",
620 dev->autogain->cur.val, gain, dev->volume->cur.val,
621 dev->alpha->cur.val);
Hans Verkuil730947b2010-04-10 04:13:53 -0300622 gen_text(dev, vbuf, line++ * 16, 16, str);
Hans Verkuilb6d17a52011-03-29 16:33:11 -0300623 snprintf(str, sizeof(str), " int32 %d, int64 %lld, bitmask %08x ",
Hans Verkuil7e996af2011-01-23 12:33:16 -0200624 dev->int32->cur.val,
Hans Verkuilb6d17a52011-03-29 16:33:11 -0300625 dev->int64->cur.val64,
626 dev->bitmask->cur.val);
Hans Verkuil7e996af2011-01-23 12:33:16 -0200627 gen_text(dev, vbuf, line++ * 16, 16, str);
628 snprintf(str, sizeof(str), " boolean %d, menu %s, string \"%s\" ",
629 dev->boolean->cur.val,
630 dev->menu->qmenu[dev->menu->cur.val],
631 dev->string->cur.string);
Hans Verkuilf70cfc72012-04-19 11:44:18 -0300632 gen_text(dev, vbuf, line++ * 16, 16, str);
Sakari Ailusc5203312011-08-05 06:38:05 -0300633 snprintf(str, sizeof(str), " integer_menu %lld, value %d ",
634 dev->int_menu->qmenu_int[dev->int_menu->cur.val],
635 dev->int_menu->cur.val);
636 gen_text(dev, vbuf, line++ * 16, 16, str);
Sakari Ailus77e7c4e2012-01-24 21:05:34 -0300637 mutex_unlock(dev->ctrl_handler.lock);
Hans Verkuil7e996af2011-01-23 12:33:16 -0200638 if (dev->button_pressed) {
639 dev->button_pressed--;
640 snprintf(str, sizeof(str), " button pressed!");
641 gen_text(dev, vbuf, line++ * 16, 16, str);
642 }
Hans Verkuil730947b2010-04-10 04:13:53 -0300643
644 dev->mv_count += 2;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300645
Hans Verkuilcd779252012-07-25 11:48:53 -0300646 buf->vb.v4l2_buf.field = V4L2_FIELD_INTERLACED;
Pawel Osciake007a322011-01-19 13:02:29 -0200647 dev->field_count++;
648 buf->vb.v4l2_buf.sequence = dev->field_count >> 1;
Sakari Ailus8e6057b2012-09-15 15:14:42 -0300649 v4l2_get_timestamp(&buf->vb.v4l2_buf.timestamp);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300650}
651
Hans Verkuil730947b2010-04-10 04:13:53 -0300652static void vivi_thread_tick(struct vivi_dev *dev)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300653{
Brandon Philips78718e52008-04-02 18:10:59 -0300654 struct vivi_dmaqueue *dma_q = &dev->vidq;
Hans Verkuil730947b2010-04-10 04:13:53 -0300655 struct vivi_buffer *buf;
Brandon Philips78718e52008-04-02 18:10:59 -0300656 unsigned long flags = 0;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300657
Brandon Philips78718e52008-04-02 18:10:59 -0300658 dprintk(dev, 1, "Thread tick\n");
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300659
Brandon Philips78718e52008-04-02 18:10:59 -0300660 spin_lock_irqsave(&dev->slock, flags);
661 if (list_empty(&dma_q->active)) {
662 dprintk(dev, 1, "No active queue to serve\n");
Hans Verkuil1de5be52011-07-05 07:19:23 -0300663 spin_unlock_irqrestore(&dev->slock, flags);
664 return;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300665 }
Brandon Philips78718e52008-04-02 18:10:59 -0300666
Pawel Osciake007a322011-01-19 13:02:29 -0200667 buf = list_entry(dma_q->active.next, struct vivi_buffer, list);
668 list_del(&buf->list);
Hans Verkuil1de5be52011-07-05 07:19:23 -0300669 spin_unlock_irqrestore(&dev->slock, flags);
Brandon Philips78718e52008-04-02 18:10:59 -0300670
Sakari Ailus8e6057b2012-09-15 15:14:42 -0300671 v4l2_get_timestamp(&buf->vb.v4l2_buf.timestamp);
Brandon Philips78718e52008-04-02 18:10:59 -0300672
673 /* Fill buffer */
Hans Verkuil730947b2010-04-10 04:13:53 -0300674 vivi_fillbuff(dev, buf);
Brandon Philips78718e52008-04-02 18:10:59 -0300675 dprintk(dev, 1, "filled buffer %p\n", buf);
676
Pawel Osciake007a322011-01-19 13:02:29 -0200677 vb2_buffer_done(&buf->vb, VB2_BUF_STATE_DONE);
678 dprintk(dev, 2, "[%p/%d] done\n", buf, buf->vb.v4l2_buf.index);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300679}
680
Mauro Carvalho Chehab6594ad82007-12-13 16:15:41 -0300681#define frames_to_ms(frames) \
682 ((frames * WAKE_NUMERATOR * 1000) / WAKE_DENOMINATOR)
683
Hans Verkuil730947b2010-04-10 04:13:53 -0300684static void vivi_sleep(struct vivi_dev *dev)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300685{
Brandon Philips78718e52008-04-02 18:10:59 -0300686 struct vivi_dmaqueue *dma_q = &dev->vidq;
687 int timeout;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300688 DECLARE_WAITQUEUE(wait, current);
689
Harvey Harrison7e28adb2008-04-08 23:20:00 -0300690 dprintk(dev, 1, "%s dma_q=0x%08lx\n", __func__,
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300691 (unsigned long)dma_q);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300692
693 add_wait_queue(&dma_q->wq, &wait);
Mauro Carvalho Chehab6594ad82007-12-13 16:15:41 -0300694 if (kthread_should_stop())
695 goto stop_task;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300696
Mauro Carvalho Chehab6594ad82007-12-13 16:15:41 -0300697 /* Calculate time to wake up */
Brandon Philips78718e52008-04-02 18:10:59 -0300698 timeout = msecs_to_jiffies(frames_to_ms(1));
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300699
Hans Verkuil730947b2010-04-10 04:13:53 -0300700 vivi_thread_tick(dev);
Mauro Carvalho Chehab6594ad82007-12-13 16:15:41 -0300701
702 schedule_timeout_interruptible(timeout);
703
704stop_task:
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300705 remove_wait_queue(&dma_q->wq, &wait);
706 try_to_freeze();
707}
708
Adrian Bunk972c3512006-04-27 21:06:50 -0300709static int vivi_thread(void *data)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300710{
Hans Verkuil730947b2010-04-10 04:13:53 -0300711 struct vivi_dev *dev = data;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300712
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300713 dprintk(dev, 1, "thread started\n");
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300714
Rafael J. Wysocki83144182007-07-17 04:03:35 -0700715 set_freezable();
Mauro Carvalho Chehab0b600512007-01-14 08:33:24 -0300716
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300717 for (;;) {
Hans Verkuil730947b2010-04-10 04:13:53 -0300718 vivi_sleep(dev);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300719
720 if (kthread_should_stop())
721 break;
722 }
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300723 dprintk(dev, 1, "thread: exit\n");
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300724 return 0;
725}
726
Pawel Osciake007a322011-01-19 13:02:29 -0200727static int vivi_start_generating(struct vivi_dev *dev)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300728{
Brandon Philips78718e52008-04-02 18:10:59 -0300729 struct vivi_dmaqueue *dma_q = &dev->vidq;
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300730
Harvey Harrison7e28adb2008-04-08 23:20:00 -0300731 dprintk(dev, 1, "%s\n", __func__);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300732
Hans Verkuil730947b2010-04-10 04:13:53 -0300733 /* Resets frame counters */
734 dev->ms = 0;
735 dev->mv_count = 0;
736 dev->jiffies = jiffies;
737
738 dma_q->frame = 0;
739 dma_q->ini_jiffies = jiffies;
740 dma_q->kthread = kthread_run(vivi_thread, dev, dev->v4l2_dev.name);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300741
Akinobu Mita054afee2006-12-20 10:04:00 -0300742 if (IS_ERR(dma_q->kthread)) {
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -0300743 v4l2_err(&dev->v4l2_dev, "kernel_thread() failed\n");
Pawel Osciake007a322011-01-19 13:02:29 -0200744 return PTR_ERR(dma_q->kthread);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300745 }
Mauro Carvalho Chehab0b600512007-01-14 08:33:24 -0300746 /* Wakes thread */
747 wake_up_interruptible(&dma_q->wq);
748
Harvey Harrison7e28adb2008-04-08 23:20:00 -0300749 dprintk(dev, 1, "returning from %s\n", __func__);
Pawel Osciake007a322011-01-19 13:02:29 -0200750 return 0;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300751}
752
Pawel Osciake007a322011-01-19 13:02:29 -0200753static void vivi_stop_generating(struct vivi_dev *dev)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300754{
Hans Verkuil730947b2010-04-10 04:13:53 -0300755 struct vivi_dmaqueue *dma_q = &dev->vidq;
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300756
Harvey Harrison7e28adb2008-04-08 23:20:00 -0300757 dprintk(dev, 1, "%s\n", __func__);
Hans Verkuil730947b2010-04-10 04:13:53 -0300758
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300759 /* shutdown control thread */
760 if (dma_q->kthread) {
761 kthread_stop(dma_q->kthread);
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300762 dma_q->kthread = NULL;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300763 }
Hans Verkuil730947b2010-04-10 04:13:53 -0300764
Pawel Osciake007a322011-01-19 13:02:29 -0200765 /*
766 * Typical driver might need to wait here until dma engine stops.
767 * In this case we can abort imiedetly, so it's just a noop.
768 */
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300769
Pawel Osciake007a322011-01-19 13:02:29 -0200770 /* Release all active buffers */
771 while (!list_empty(&dma_q->active)) {
772 struct vivi_buffer *buf;
773 buf = list_entry(dma_q->active.next, struct vivi_buffer, list);
774 list_del(&buf->list);
775 vb2_buffer_done(&buf->vb, VB2_BUF_STATE_ERROR);
776 dprintk(dev, 2, "[%p/%d] done\n", buf, buf->vb.v4l2_buf.index);
777 }
778}
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300779/* ------------------------------------------------------------------
780 Videobuf operations
781 ------------------------------------------------------------------*/
Guennadi Liakhovetskifc714e72011-08-24 10:30:21 -0300782static int queue_setup(struct vb2_queue *vq, const struct v4l2_format *fmt,
783 unsigned int *nbuffers, unsigned int *nplanes,
784 unsigned int sizes[], void *alloc_ctxs[])
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300785{
Pawel Osciake007a322011-01-19 13:02:29 -0200786 struct vivi_dev *dev = vb2_get_drv_priv(vq);
787 unsigned long size;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300788
Hans Verkuil2e90c6c2012-06-22 05:53:31 -0300789 if (fmt)
790 size = fmt->fmt.pix.sizeimage;
791 else
792 size = dev->width * dev->height * dev->pixelsize;
793
794 if (size == 0)
795 return -EINVAL;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300796
Pawel Osciake007a322011-01-19 13:02:29 -0200797 if (0 == *nbuffers)
798 *nbuffers = 32;
Mauro Carvalho Chehab6bb27902007-08-23 16:41:14 -0300799
Pawel Osciake007a322011-01-19 13:02:29 -0200800 while (size * *nbuffers > vid_limit * 1024 * 1024)
801 (*nbuffers)--;
Mauro Carvalho Chehab6bb27902007-08-23 16:41:14 -0300802
Pawel Osciake007a322011-01-19 13:02:29 -0200803 *nplanes = 1;
804
805 sizes[0] = size;
806
807 /*
808 * videobuf2-vmalloc allocator is context-less so no need to set
809 * alloc_ctxs array.
810 */
811
812 dprintk(dev, 1, "%s, count=%d, size=%ld\n", __func__,
813 *nbuffers, size);
Mauro Carvalho Chehab6bb27902007-08-23 16:41:14 -0300814
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300815 return 0;
816}
817
Pawel Osciake007a322011-01-19 13:02:29 -0200818static int buffer_prepare(struct vb2_buffer *vb)
819{
820 struct vivi_dev *dev = vb2_get_drv_priv(vb->vb2_queue);
821 struct vivi_buffer *buf = container_of(vb, struct vivi_buffer, vb);
822 unsigned long size;
823
824 dprintk(dev, 1, "%s, field=%d\n", __func__, vb->v4l2_buf.field);
825
826 BUG_ON(NULL == dev->fmt);
827
828 /*
829 * Theses properties only change when queue is idle, see s_fmt.
830 * The below checks should not be performed here, on each
831 * buffer_prepare (i.e. on each qbuf). Most of the code in this function
832 * should thus be moved to buffer_init and s_fmt.
833 */
Hans Verkuil730947b2010-04-10 04:13:53 -0300834 if (dev->width < 48 || dev->width > MAX_WIDTH ||
835 dev->height < 32 || dev->height > MAX_HEIGHT)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300836 return -EINVAL;
Brandon Philips78718e52008-04-02 18:10:59 -0300837
Hans Verkuil3d51dca2012-05-02 03:15:11 -0300838 size = dev->width * dev->height * dev->pixelsize;
Pawel Osciake007a322011-01-19 13:02:29 -0200839 if (vb2_plane_size(vb, 0) < size) {
840 dprintk(dev, 1, "%s data will not fit into plane (%lu < %lu)\n",
841 __func__, vb2_plane_size(vb, 0), size);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300842 return -EINVAL;
Pawel Osciake007a322011-01-19 13:02:29 -0200843 }
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300844
Pawel Osciake007a322011-01-19 13:02:29 -0200845 vb2_set_plane_payload(&buf->vb, 0, size);
846
847 buf->fmt = dev->fmt;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300848
Hans Verkuil730947b2010-04-10 04:13:53 -0300849 precalculate_bars(dev);
850 precalculate_line(dev);
Mauro Carvalho Chehabc285add2009-06-25 16:28:23 -0300851
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300852 return 0;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300853}
854
Pawel Osciake007a322011-01-19 13:02:29 -0200855static void buffer_queue(struct vb2_buffer *vb)
856{
857 struct vivi_dev *dev = vb2_get_drv_priv(vb->vb2_queue);
Hans Verkuil730947b2010-04-10 04:13:53 -0300858 struct vivi_buffer *buf = container_of(vb, struct vivi_buffer, vb);
Brandon Philips78718e52008-04-02 18:10:59 -0300859 struct vivi_dmaqueue *vidq = &dev->vidq;
Pawel Osciake007a322011-01-19 13:02:29 -0200860 unsigned long flags = 0;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300861
Harvey Harrison7e28adb2008-04-08 23:20:00 -0300862 dprintk(dev, 1, "%s\n", __func__);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300863
Pawel Osciake007a322011-01-19 13:02:29 -0200864 spin_lock_irqsave(&dev->slock, flags);
865 list_add_tail(&buf->list, &vidq->active);
866 spin_unlock_irqrestore(&dev->slock, flags);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300867}
868
Marek Szyprowskibd323e22011-08-29 08:51:49 -0300869static int start_streaming(struct vb2_queue *vq, unsigned int count)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300870{
Pawel Osciake007a322011-01-19 13:02:29 -0200871 struct vivi_dev *dev = vb2_get_drv_priv(vq);
Harvey Harrison7e28adb2008-04-08 23:20:00 -0300872 dprintk(dev, 1, "%s\n", __func__);
Pawel Osciake007a322011-01-19 13:02:29 -0200873 return vivi_start_generating(dev);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300874}
875
Pawel Osciake007a322011-01-19 13:02:29 -0200876/* abort streaming and wait for last buffer */
877static int stop_streaming(struct vb2_queue *vq)
878{
879 struct vivi_dev *dev = vb2_get_drv_priv(vq);
880 dprintk(dev, 1, "%s\n", __func__);
881 vivi_stop_generating(dev);
882 return 0;
883}
884
885static void vivi_lock(struct vb2_queue *vq)
886{
887 struct vivi_dev *dev = vb2_get_drv_priv(vq);
888 mutex_lock(&dev->mutex);
889}
890
891static void vivi_unlock(struct vb2_queue *vq)
892{
893 struct vivi_dev *dev = vb2_get_drv_priv(vq);
894 mutex_unlock(&dev->mutex);
895}
896
897
898static struct vb2_ops vivi_video_qops = {
899 .queue_setup = queue_setup,
Pawel Osciake007a322011-01-19 13:02:29 -0200900 .buf_prepare = buffer_prepare,
Pawel Osciake007a322011-01-19 13:02:29 -0200901 .buf_queue = buffer_queue,
902 .start_streaming = start_streaming,
903 .stop_streaming = stop_streaming,
904 .wait_prepare = vivi_unlock,
905 .wait_finish = vivi_lock,
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300906};
907
908/* ------------------------------------------------------------------
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300909 IOCTL vidioc handling
910 ------------------------------------------------------------------*/
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300911static int vidioc_querycap(struct file *file, void *priv,
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300912 struct v4l2_capability *cap)
913{
Hans Verkuil730947b2010-04-10 04:13:53 -0300914 struct vivi_dev *dev = video_drvdata(file);
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -0300915
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300916 strcpy(cap->driver, "vivi");
917 strcpy(cap->card, "vivi");
Hans Verkuil72c2af62012-09-14 06:23:12 -0300918 snprintf(cap->bus_info, sizeof(cap->bus_info),
919 "platform:%s", dev->v4l2_dev.name);
Hans Verkuil23268ae2012-01-24 05:24:36 -0300920 cap->device_caps = V4L2_CAP_VIDEO_CAPTURE | V4L2_CAP_STREAMING |
921 V4L2_CAP_READWRITE;
922 cap->capabilities = cap->device_caps | V4L2_CAP_DEVICE_CAPS;
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300923 return 0;
924}
925
Hans Verkuil78b526a2008-05-28 12:16:41 -0300926static int vidioc_enum_fmt_vid_cap(struct file *file, void *priv,
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300927 struct v4l2_fmtdesc *f)
928{
Magnus Dammd891f472008-10-14 12:47:09 -0300929 struct vivi_fmt *fmt;
930
931 if (f->index >= ARRAY_SIZE(formats))
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300932 return -EINVAL;
933
Magnus Dammd891f472008-10-14 12:47:09 -0300934 fmt = &formats[f->index];
935
936 strlcpy(f->description, fmt->name, sizeof(f->description));
937 f->pixelformat = fmt->fourcc;
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300938 return 0;
939}
940
Hans Verkuil78b526a2008-05-28 12:16:41 -0300941static int vidioc_g_fmt_vid_cap(struct file *file, void *priv,
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300942 struct v4l2_format *f)
943{
Hans Verkuil730947b2010-04-10 04:13:53 -0300944 struct vivi_dev *dev = video_drvdata(file);
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300945
Hans Verkuil730947b2010-04-10 04:13:53 -0300946 f->fmt.pix.width = dev->width;
947 f->fmt.pix.height = dev->height;
Hans Verkuilcd779252012-07-25 11:48:53 -0300948 f->fmt.pix.field = V4L2_FIELD_INTERLACED;
Hans Verkuil730947b2010-04-10 04:13:53 -0300949 f->fmt.pix.pixelformat = dev->fmt->fourcc;
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300950 f->fmt.pix.bytesperline =
Hans Verkuil730947b2010-04-10 04:13:53 -0300951 (f->fmt.pix.width * dev->fmt->depth) >> 3;
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300952 f->fmt.pix.sizeimage =
953 f->fmt.pix.height * f->fmt.pix.bytesperline;
Hans Verkuil0a3a8a32012-08-06 10:36:18 -0300954 if (dev->fmt->is_yuv)
Hans Verkuil8c79eec2011-07-29 07:19:46 -0300955 f->fmt.pix.colorspace = V4L2_COLORSPACE_SMPTE170M;
956 else
957 f->fmt.pix.colorspace = V4L2_COLORSPACE_SRGB;
Hans Verkuil730947b2010-04-10 04:13:53 -0300958 return 0;
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300959}
960
Hans Verkuil78b526a2008-05-28 12:16:41 -0300961static int vidioc_try_fmt_vid_cap(struct file *file, void *priv,
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300962 struct v4l2_format *f)
963{
Hans Verkuil730947b2010-04-10 04:13:53 -0300964 struct vivi_dev *dev = video_drvdata(file);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300965 struct vivi_fmt *fmt;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300966
Magnus Dammd891f472008-10-14 12:47:09 -0300967 fmt = get_format(f);
968 if (!fmt) {
Hans Verkuilcd779252012-07-25 11:48:53 -0300969 dprintk(dev, 1, "Fourcc format (0x%08x) unknown.\n",
Magnus Dammd891f472008-10-14 12:47:09 -0300970 f->fmt.pix.pixelformat);
Hans Verkuilcd779252012-07-25 11:48:53 -0300971 f->fmt.pix.pixelformat = V4L2_PIX_FMT_YUYV;
972 fmt = get_format(f);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300973 }
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300974
Hans Verkuilcd779252012-07-25 11:48:53 -0300975 f->fmt.pix.field = V4L2_FIELD_INTERLACED;
Hans Verkuil730947b2010-04-10 04:13:53 -0300976 v4l_bound_align_image(&f->fmt.pix.width, 48, MAX_WIDTH, 2,
977 &f->fmt.pix.height, 32, MAX_HEIGHT, 0, 0);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300978 f->fmt.pix.bytesperline =
979 (f->fmt.pix.width * fmt->depth) >> 3;
980 f->fmt.pix.sizeimage =
981 f->fmt.pix.height * f->fmt.pix.bytesperline;
Hans Verkuil0a3a8a32012-08-06 10:36:18 -0300982 if (fmt->is_yuv)
Hans Verkuil8c79eec2011-07-29 07:19:46 -0300983 f->fmt.pix.colorspace = V4L2_COLORSPACE_SMPTE170M;
984 else
985 f->fmt.pix.colorspace = V4L2_COLORSPACE_SRGB;
Hans Verkuil2f65f462012-08-06 10:43:13 -0300986 f->fmt.pix.priv = 0;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300987 return 0;
988}
989
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -0300990static int vidioc_s_fmt_vid_cap(struct file *file, void *priv,
991 struct v4l2_format *f)
992{
Hans Verkuil730947b2010-04-10 04:13:53 -0300993 struct vivi_dev *dev = video_drvdata(file);
Pawel Osciake007a322011-01-19 13:02:29 -0200994 struct vb2_queue *q = &dev->vb_vidq;
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -0300995
Hans Verkuil730947b2010-04-10 04:13:53 -0300996 int ret = vidioc_try_fmt_vid_cap(file, priv, f);
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -0300997 if (ret < 0)
998 return ret;
999
Hans Verkuilf2ba5a02012-06-22 05:53:02 -03001000 if (vb2_is_busy(q)) {
Hans Verkuil730947b2010-04-10 04:13:53 -03001001 dprintk(dev, 1, "%s device busy\n", __func__);
Pawel Osciake007a322011-01-19 13:02:29 -02001002 return -EBUSY;
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -03001003 }
1004
Hans Verkuil730947b2010-04-10 04:13:53 -03001005 dev->fmt = get_format(f);
Hans Verkuil3d51dca2012-05-02 03:15:11 -03001006 dev->pixelsize = dev->fmt->depth / 8;
Hans Verkuil730947b2010-04-10 04:13:53 -03001007 dev->width = f->fmt.pix.width;
1008 dev->height = f->fmt.pix.height;
Pawel Osciake007a322011-01-19 13:02:29 -02001009
1010 return 0;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001011}
1012
Hans Verkuil77747f72012-08-06 10:37:18 -03001013static int vidioc_enum_framesizes(struct file *file, void *fh,
1014 struct v4l2_frmsizeenum *fsize)
1015{
1016 static const struct v4l2_frmsize_stepwise sizes = {
1017 48, MAX_WIDTH, 4,
1018 32, MAX_HEIGHT, 1
1019 };
1020 int i;
1021
1022 if (fsize->index)
1023 return -EINVAL;
1024 for (i = 0; i < ARRAY_SIZE(formats); i++)
1025 if (formats[i].fourcc == fsize->pixel_format)
1026 break;
1027 if (i == ARRAY_SIZE(formats))
1028 return -EINVAL;
1029 fsize->type = V4L2_FRMSIZE_TYPE_STEPWISE;
1030 fsize->stepwise = sizes;
1031 return 0;
1032}
1033
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001034/* only one input in this sample driver */
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -03001035static int vidioc_enum_input(struct file *file, void *priv,
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001036 struct v4l2_input *inp)
1037{
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -03001038 if (inp->index >= NUM_INPUTS)
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001039 return -EINVAL;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001040
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001041 inp->type = V4L2_INPUT_TYPE_CAMERA;
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -03001042 sprintf(inp->name, "Camera %u", inp->index);
Hans Verkuil730947b2010-04-10 04:13:53 -03001043 return 0;
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001044}
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001045
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -03001046static int vidioc_g_input(struct file *file, void *priv, unsigned int *i)
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001047{
Hans Verkuil730947b2010-04-10 04:13:53 -03001048 struct vivi_dev *dev = video_drvdata(file);
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -03001049
1050 *i = dev->input;
Hans Verkuil730947b2010-04-10 04:13:53 -03001051 return 0;
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001052}
Hans Verkuil730947b2010-04-10 04:13:53 -03001053
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -03001054static int vidioc_s_input(struct file *file, void *priv, unsigned int i)
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001055{
Hans Verkuil730947b2010-04-10 04:13:53 -03001056 struct vivi_dev *dev = video_drvdata(file);
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -03001057
1058 if (i >= NUM_INPUTS)
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001059 return -EINVAL;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001060
Hans Verkuilc7a52f82011-06-07 10:20:23 -03001061 if (i == dev->input)
1062 return 0;
1063
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -03001064 dev->input = i;
Hans Verkuil730947b2010-04-10 04:13:53 -03001065 precalculate_bars(dev);
1066 precalculate_line(dev);
1067 return 0;
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001068}
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001069
Hans Verkuil730947b2010-04-10 04:13:53 -03001070/* --- controls ---------------------------------------------- */
Hans Verkuil7e996af2011-01-23 12:33:16 -02001071
Hans Verkuila1c894f2011-06-07 06:34:41 -03001072static int vivi_g_volatile_ctrl(struct v4l2_ctrl *ctrl)
1073{
1074 struct vivi_dev *dev = container_of(ctrl->handler, struct vivi_dev, ctrl_handler);
1075
1076 if (ctrl == dev->autogain)
1077 dev->gain->val = jiffies & 0xff;
1078 return 0;
1079}
1080
Hans Verkuil7e996af2011-01-23 12:33:16 -02001081static int vivi_s_ctrl(struct v4l2_ctrl *ctrl)
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001082{
Hans Verkuil7e996af2011-01-23 12:33:16 -02001083 struct vivi_dev *dev = container_of(ctrl->handler, struct vivi_dev, ctrl_handler);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001084
Hans Verkuil7088f4d2012-05-02 03:33:52 -03001085 switch (ctrl->id) {
1086 case V4L2_CID_ALPHA_COMPONENT:
1087 dev->alpha_component = ctrl->val;
1088 break;
1089 default:
1090 if (ctrl == dev->button)
1091 dev->button_pressed = 30;
1092 break;
1093 }
Hans Verkuil7e996af2011-01-23 12:33:16 -02001094 return 0;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001095}
1096
1097/* ------------------------------------------------------------------
1098 File operations for the device
1099 ------------------------------------------------------------------*/
1100
Hans Verkuil7e996af2011-01-23 12:33:16 -02001101static const struct v4l2_ctrl_ops vivi_ctrl_ops = {
Hans Verkuila1c894f2011-06-07 06:34:41 -03001102 .g_volatile_ctrl = vivi_g_volatile_ctrl,
Hans Verkuil7e996af2011-01-23 12:33:16 -02001103 .s_ctrl = vivi_s_ctrl,
1104};
1105
1106#define VIVI_CID_CUSTOM_BASE (V4L2_CID_USER_BASE | 0xf000)
1107
1108static const struct v4l2_ctrl_config vivi_ctrl_button = {
1109 .ops = &vivi_ctrl_ops,
1110 .id = VIVI_CID_CUSTOM_BASE + 0,
1111 .name = "Button",
1112 .type = V4L2_CTRL_TYPE_BUTTON,
1113};
1114
1115static const struct v4l2_ctrl_config vivi_ctrl_boolean = {
1116 .ops = &vivi_ctrl_ops,
1117 .id = VIVI_CID_CUSTOM_BASE + 1,
1118 .name = "Boolean",
1119 .type = V4L2_CTRL_TYPE_BOOLEAN,
1120 .min = 0,
1121 .max = 1,
1122 .step = 1,
1123 .def = 1,
1124};
1125
1126static const struct v4l2_ctrl_config vivi_ctrl_int32 = {
1127 .ops = &vivi_ctrl_ops,
1128 .id = VIVI_CID_CUSTOM_BASE + 2,
1129 .name = "Integer 32 Bits",
1130 .type = V4L2_CTRL_TYPE_INTEGER,
Hans Verkuil5b283022011-01-11 17:32:28 -03001131 .min = 0x80000000,
1132 .max = 0x7fffffff,
Hans Verkuil7e996af2011-01-23 12:33:16 -02001133 .step = 1,
1134};
1135
1136static const struct v4l2_ctrl_config vivi_ctrl_int64 = {
1137 .ops = &vivi_ctrl_ops,
1138 .id = VIVI_CID_CUSTOM_BASE + 3,
1139 .name = "Integer 64 Bits",
1140 .type = V4L2_CTRL_TYPE_INTEGER64,
1141};
1142
1143static const char * const vivi_ctrl_menu_strings[] = {
1144 "Menu Item 0 (Skipped)",
1145 "Menu Item 1",
1146 "Menu Item 2 (Skipped)",
1147 "Menu Item 3",
1148 "Menu Item 4",
1149 "Menu Item 5 (Skipped)",
1150 NULL,
1151};
1152
1153static const struct v4l2_ctrl_config vivi_ctrl_menu = {
1154 .ops = &vivi_ctrl_ops,
1155 .id = VIVI_CID_CUSTOM_BASE + 4,
1156 .name = "Menu",
1157 .type = V4L2_CTRL_TYPE_MENU,
1158 .min = 1,
1159 .max = 4,
1160 .def = 3,
1161 .menu_skip_mask = 0x04,
1162 .qmenu = vivi_ctrl_menu_strings,
1163};
1164
1165static const struct v4l2_ctrl_config vivi_ctrl_string = {
1166 .ops = &vivi_ctrl_ops,
1167 .id = VIVI_CID_CUSTOM_BASE + 5,
1168 .name = "String",
1169 .type = V4L2_CTRL_TYPE_STRING,
1170 .min = 2,
1171 .max = 4,
1172 .step = 1,
1173};
1174
Hans Verkuilb6d17a52011-03-29 16:33:11 -03001175static const struct v4l2_ctrl_config vivi_ctrl_bitmask = {
1176 .ops = &vivi_ctrl_ops,
1177 .id = VIVI_CID_CUSTOM_BASE + 6,
1178 .name = "Bitmask",
1179 .type = V4L2_CTRL_TYPE_BITMASK,
1180 .def = 0x80002000,
1181 .min = 0,
1182 .max = 0x80402010,
1183 .step = 0,
1184};
1185
Sakari Ailusc5203312011-08-05 06:38:05 -03001186static const s64 vivi_ctrl_int_menu_values[] = {
1187 1, 1, 2, 3, 5, 8, 13, 21, 42,
1188};
1189
1190static const struct v4l2_ctrl_config vivi_ctrl_int_menu = {
1191 .ops = &vivi_ctrl_ops,
1192 .id = VIVI_CID_CUSTOM_BASE + 7,
1193 .name = "Integer menu",
1194 .type = V4L2_CTRL_TYPE_INTEGER_MENU,
1195 .min = 1,
1196 .max = 8,
1197 .def = 4,
1198 .menu_skip_mask = 0x02,
1199 .qmenu_int = vivi_ctrl_int_menu_values,
1200};
1201
Hans Verkuilbec43662008-12-30 06:58:20 -03001202static const struct v4l2_file_operations vivi_fops = {
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001203 .owner = THIS_MODULE,
Hans Verkuilc7a52f82011-06-07 10:20:23 -03001204 .open = v4l2_fh_open,
Hans Verkuilf2ba5a02012-06-22 05:53:02 -03001205 .release = vb2_fop_release,
1206 .read = vb2_fop_read,
1207 .poll = vb2_fop_poll,
Hans Verkuilfedc6c82010-09-20 18:25:55 -03001208 .unlocked_ioctl = video_ioctl2, /* V4L2 ioctl handler */
Hans Verkuilf2ba5a02012-06-22 05:53:02 -03001209 .mmap = vb2_fop_mmap,
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001210};
1211
Hans Verkuila3998102008-07-21 02:57:38 -03001212static const struct v4l2_ioctl_ops vivi_ioctl_ops = {
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001213 .vidioc_querycap = vidioc_querycap,
Hans Verkuil78b526a2008-05-28 12:16:41 -03001214 .vidioc_enum_fmt_vid_cap = vidioc_enum_fmt_vid_cap,
1215 .vidioc_g_fmt_vid_cap = vidioc_g_fmt_vid_cap,
1216 .vidioc_try_fmt_vid_cap = vidioc_try_fmt_vid_cap,
1217 .vidioc_s_fmt_vid_cap = vidioc_s_fmt_vid_cap,
Hans Verkuil77747f72012-08-06 10:37:18 -03001218 .vidioc_enum_framesizes = vidioc_enum_framesizes,
Hans Verkuilf2ba5a02012-06-22 05:53:02 -03001219 .vidioc_reqbufs = vb2_ioctl_reqbufs,
Hans Verkuil2e90c6c2012-06-22 05:53:31 -03001220 .vidioc_create_bufs = vb2_ioctl_create_bufs,
1221 .vidioc_prepare_buf = vb2_ioctl_prepare_buf,
Hans Verkuilf2ba5a02012-06-22 05:53:02 -03001222 .vidioc_querybuf = vb2_ioctl_querybuf,
1223 .vidioc_qbuf = vb2_ioctl_qbuf,
1224 .vidioc_dqbuf = vb2_ioctl_dqbuf,
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001225 .vidioc_enum_input = vidioc_enum_input,
1226 .vidioc_g_input = vidioc_g_input,
1227 .vidioc_s_input = vidioc_s_input,
Hans Verkuilf2ba5a02012-06-22 05:53:02 -03001228 .vidioc_streamon = vb2_ioctl_streamon,
1229 .vidioc_streamoff = vb2_ioctl_streamoff,
Hans Verkuile2ecb252012-02-02 08:20:53 -03001230 .vidioc_log_status = v4l2_ctrl_log_status,
Hans Verkuil6d6604f2012-01-27 16:21:10 -03001231 .vidioc_subscribe_event = v4l2_ctrl_subscribe_event,
Hans Verkuilc7a52f82011-06-07 10:20:23 -03001232 .vidioc_unsubscribe_event = v4l2_event_unsubscribe,
Hans Verkuila3998102008-07-21 02:57:38 -03001233};
1234
1235static struct video_device vivi_template = {
1236 .name = "vivi",
Hans Verkuila3998102008-07-21 02:57:38 -03001237 .fops = &vivi_fops,
1238 .ioctl_ops = &vivi_ioctl_ops,
Hans Verkuil70bd97a2012-06-09 11:27:43 -03001239 .release = video_device_release_empty,
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001240};
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001241
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001242/* -----------------------------------------------------------------
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001243 Initialization and module stuff
1244 ------------------------------------------------------------------*/
1245
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001246static int vivi_release(void)
1247{
1248 struct vivi_dev *dev;
1249 struct list_head *list;
1250
1251 while (!list_empty(&vivi_devlist)) {
1252 list = vivi_devlist.next;
1253 list_del(list);
1254 dev = list_entry(list, struct vivi_dev, vivi_devlist);
1255
Laurent Pinchart38c7c032009-11-27 13:57:15 -03001256 v4l2_info(&dev->v4l2_dev, "unregistering %s\n",
Hans Verkuil70bd97a2012-06-09 11:27:43 -03001257 video_device_node_name(&dev->vdev));
1258 video_unregister_device(&dev->vdev);
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001259 v4l2_device_unregister(&dev->v4l2_dev);
Hans Verkuil7e996af2011-01-23 12:33:16 -02001260 v4l2_ctrl_handler_free(&dev->ctrl_handler);
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001261 kfree(dev);
1262 }
1263
1264 return 0;
1265}
1266
Hans Verkuilc41ee242009-02-14 13:43:44 -03001267static int __init vivi_create_instance(int inst)
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001268{
1269 struct vivi_dev *dev;
1270 struct video_device *vfd;
Hans Verkuil7e996af2011-01-23 12:33:16 -02001271 struct v4l2_ctrl_handler *hdl;
Pawel Osciake007a322011-01-19 13:02:29 -02001272 struct vb2_queue *q;
Hans Verkuil730947b2010-04-10 04:13:53 -03001273 int ret;
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001274
1275 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
1276 if (!dev)
1277 return -ENOMEM;
1278
1279 snprintf(dev->v4l2_dev.name, sizeof(dev->v4l2_dev.name),
Hans Verkuilc41ee242009-02-14 13:43:44 -03001280 "%s-%03d", VIVI_MODULE_NAME, inst);
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001281 ret = v4l2_device_register(NULL, &dev->v4l2_dev);
1282 if (ret)
1283 goto free_dev;
1284
Hans Verkuil730947b2010-04-10 04:13:53 -03001285 dev->fmt = &formats[0];
1286 dev->width = 640;
1287 dev->height = 480;
Hans Verkuil3d51dca2012-05-02 03:15:11 -03001288 dev->pixelsize = dev->fmt->depth / 8;
Hans Verkuil7e996af2011-01-23 12:33:16 -02001289 hdl = &dev->ctrl_handler;
1290 v4l2_ctrl_handler_init(hdl, 11);
1291 dev->volume = v4l2_ctrl_new_std(hdl, &vivi_ctrl_ops,
1292 V4L2_CID_AUDIO_VOLUME, 0, 255, 1, 200);
1293 dev->brightness = v4l2_ctrl_new_std(hdl, &vivi_ctrl_ops,
1294 V4L2_CID_BRIGHTNESS, 0, 255, 1, 127);
1295 dev->contrast = v4l2_ctrl_new_std(hdl, &vivi_ctrl_ops,
1296 V4L2_CID_CONTRAST, 0, 255, 1, 16);
1297 dev->saturation = v4l2_ctrl_new_std(hdl, &vivi_ctrl_ops,
1298 V4L2_CID_SATURATION, 0, 255, 1, 127);
1299 dev->hue = v4l2_ctrl_new_std(hdl, &vivi_ctrl_ops,
1300 V4L2_CID_HUE, -128, 127, 1, 0);
Hans Verkuila1c894f2011-06-07 06:34:41 -03001301 dev->autogain = v4l2_ctrl_new_std(hdl, &vivi_ctrl_ops,
1302 V4L2_CID_AUTOGAIN, 0, 1, 1, 1);
1303 dev->gain = v4l2_ctrl_new_std(hdl, &vivi_ctrl_ops,
1304 V4L2_CID_GAIN, 0, 255, 1, 100);
Hans Verkuil7088f4d2012-05-02 03:33:52 -03001305 dev->alpha = v4l2_ctrl_new_std(hdl, &vivi_ctrl_ops,
1306 V4L2_CID_ALPHA_COMPONENT, 0, 255, 1, 0);
Hans Verkuil7e996af2011-01-23 12:33:16 -02001307 dev->button = v4l2_ctrl_new_custom(hdl, &vivi_ctrl_button, NULL);
1308 dev->int32 = v4l2_ctrl_new_custom(hdl, &vivi_ctrl_int32, NULL);
1309 dev->int64 = v4l2_ctrl_new_custom(hdl, &vivi_ctrl_int64, NULL);
1310 dev->boolean = v4l2_ctrl_new_custom(hdl, &vivi_ctrl_boolean, NULL);
1311 dev->menu = v4l2_ctrl_new_custom(hdl, &vivi_ctrl_menu, NULL);
1312 dev->string = v4l2_ctrl_new_custom(hdl, &vivi_ctrl_string, NULL);
Hans Verkuilb6d17a52011-03-29 16:33:11 -03001313 dev->bitmask = v4l2_ctrl_new_custom(hdl, &vivi_ctrl_bitmask, NULL);
Sakari Ailusc5203312011-08-05 06:38:05 -03001314 dev->int_menu = v4l2_ctrl_new_custom(hdl, &vivi_ctrl_int_menu, NULL);
Hans Verkuil7e996af2011-01-23 12:33:16 -02001315 if (hdl->error) {
1316 ret = hdl->error;
1317 goto unreg_dev;
1318 }
Hans Verkuila1c894f2011-06-07 06:34:41 -03001319 v4l2_ctrl_auto_cluster(2, &dev->autogain, 0, true);
Hans Verkuil7e996af2011-01-23 12:33:16 -02001320 dev->v4l2_dev.ctrl_handler = hdl;
Hans Verkuil730947b2010-04-10 04:13:53 -03001321
Hans Verkuilfedc6c82010-09-20 18:25:55 -03001322 /* initialize locks */
1323 spin_lock_init(&dev->slock);
Hans Verkuilfedc6c82010-09-20 18:25:55 -03001324
Pawel Osciake007a322011-01-19 13:02:29 -02001325 /* initialize queue */
1326 q = &dev->vb_vidq;
Pawel Osciake007a322011-01-19 13:02:29 -02001327 q->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
Tomasz Stanislawskia626f0a2012-06-14 10:37:47 -03001328 q->io_modes = VB2_MMAP | VB2_USERPTR | VB2_DMABUF | VB2_READ;
Pawel Osciake007a322011-01-19 13:02:29 -02001329 q->drv_priv = dev;
1330 q->buf_struct_size = sizeof(struct vivi_buffer);
1331 q->ops = &vivi_video_qops;
1332 q->mem_ops = &vb2_vmalloc_memops;
1333
Ezequiel Garcia4195ec72012-09-17 09:49:38 -03001334 ret = vb2_queue_init(q);
1335 if (ret)
1336 goto unreg_dev;
Pawel Osciake007a322011-01-19 13:02:29 -02001337
1338 mutex_init(&dev->mutex);
Hans Verkuil730947b2010-04-10 04:13:53 -03001339
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001340 /* init video dma queues */
1341 INIT_LIST_HEAD(&dev->vidq.active);
1342 init_waitqueue_head(&dev->vidq.wq);
1343
Hans Verkuil70bd97a2012-06-09 11:27:43 -03001344 vfd = &dev->vdev;
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001345 *vfd = vivi_template;
Mauro Carvalho Chehabc285add2009-06-25 16:28:23 -03001346 vfd->debug = debug;
Hans Verkuil730947b2010-04-10 04:13:53 -03001347 vfd->v4l2_dev = &dev->v4l2_dev;
Hans Verkuilf2ba5a02012-06-22 05:53:02 -03001348 vfd->queue = q;
Hans Verkuilb1a873a2011-03-22 10:14:07 -03001349 set_bit(V4L2_FL_USE_FH_PRIO, &vfd->flags);
Pawel Osciake007a322011-01-19 13:02:29 -02001350
1351 /*
1352 * Provide a mutex to v4l2 core. It will be used to protect
1353 * all fops and v4l2 ioctls.
1354 */
Hans Verkuilfedc6c82010-09-20 18:25:55 -03001355 vfd->lock = &dev->mutex;
Hans Verkuil70bd97a2012-06-09 11:27:43 -03001356 video_set_drvdata(vfd, dev);
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001357
1358 ret = video_register_device(vfd, VFL_TYPE_GRABBER, video_nr);
1359 if (ret < 0)
Hans Verkuil70bd97a2012-06-09 11:27:43 -03001360 goto unreg_dev;
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001361
1362 /* Now that everything is fine, let's add it to device list */
1363 list_add_tail(&dev->vivi_devlist, &vivi_devlist);
1364
Laurent Pinchart38c7c032009-11-27 13:57:15 -03001365 v4l2_info(&dev->v4l2_dev, "V4L2 device registered as %s\n",
1366 video_device_node_name(vfd));
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001367 return 0;
1368
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001369unreg_dev:
Hans Verkuil7e996af2011-01-23 12:33:16 -02001370 v4l2_ctrl_handler_free(hdl);
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001371 v4l2_device_unregister(&dev->v4l2_dev);
1372free_dev:
1373 kfree(dev);
1374 return ret;
1375}
1376
Mauro Carvalho Chehab980d4f12008-09-03 17:11:53 -03001377/* This routine allocates from 1 to n_devs virtual drivers.
1378
1379 The real maximum number of virtual drivers will depend on how many drivers
1380 will succeed. This is limited to the maximum number of devices that
Hans Verkuil62cfdac2009-02-14 11:37:17 -03001381 videodev supports, which is equal to VIDEO_NUM_DEVICES.
Mauro Carvalho Chehab980d4f12008-09-03 17:11:53 -03001382 */
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001383static int __init vivi_init(void)
1384{
Hans Verkuil730947b2010-04-10 04:13:53 -03001385 const struct font_desc *font = find_font("VGA8x16");
Hans Verkuil9185cbf2009-03-06 09:58:12 -03001386 int ret = 0, i;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001387
Hans Verkuil730947b2010-04-10 04:13:53 -03001388 if (font == NULL) {
1389 printk(KERN_ERR "vivi: could not find font\n");
1390 return -ENODEV;
1391 }
1392 font8x16 = font->data;
1393
Mauro Carvalho Chehab980d4f12008-09-03 17:11:53 -03001394 if (n_devs <= 0)
1395 n_devs = 1;
1396
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001397 for (i = 0; i < n_devs; i++) {
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001398 ret = vivi_create_instance(i);
1399 if (ret) {
1400 /* If some instantiations succeeded, keep driver */
Mauro Carvalho Chehab980d4f12008-09-03 17:11:53 -03001401 if (i)
1402 ret = 0;
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001403 break;
Mauro Carvalho Chehab980d4f12008-09-03 17:11:53 -03001404 }
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001405 }
1406
1407 if (ret < 0) {
Hans Verkuil730947b2010-04-10 04:13:53 -03001408 printk(KERN_ERR "vivi: error %d while loading driver\n", ret);
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001409 return ret;
1410 }
1411
1412 printk(KERN_INFO "Video Technology Magazine Virtual Video "
Mauro Carvalho Chehab1990d502011-06-24 14:45:49 -03001413 "Capture Board ver %s successfully loaded.\n",
1414 VIVI_VERSION);
Mauro Carvalho Chehab980d4f12008-09-03 17:11:53 -03001415
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001416 /* n_devs will reflect the actual number of allocated devices */
1417 n_devs = i;
Mauro Carvalho Chehab980d4f12008-09-03 17:11:53 -03001418
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001419 return ret;
1420}
1421
1422static void __exit vivi_exit(void)
1423{
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001424 vivi_release();
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001425}
1426
1427module_init(vivi_init);
1428module_exit(vivi_exit);