blob: ec832e9461a8c2075569e5dccd69a14cccf663e6 [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{
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{
Kirill Smelkov13908f32012-11-02 09:10:32 -0300577 int stride = dev->width * dev->pixelsize;
Pawel Osciake007a322011-01-19 13:02:29 -0200578 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;
Kirill Smelkov13908f32012-11-02 09:10:32 -0300583 u8 *linestart;
Hans Verkuila1c894f2011-06-07 06:34:41 -0300584 s32 gain;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300585
Marcin Slusarz5c554e62008-06-22 09:11:40 -0300586 if (!vbuf)
Mauro Carvalho Chehab5a037702007-08-02 23:31:54 -0300587 return;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300588
Kirill Smelkov13908f32012-11-02 09:10:32 -0300589 linestart = dev->line + (dev->mv_count % dev->width) * dev->pixelsize;
590
Hans Verkuil730947b2010-04-10 04:13:53 -0300591 for (h = 0; h < hmax; h++)
Kirill Smelkov13908f32012-11-02 09:10:32 -0300592 memcpy(vbuf + h * stride, linestart, stride);
Mauro Carvalho Chehab5a037702007-08-02 23:31:54 -0300593
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300594 /* Updates stream time */
595
Kirill Smelkove3a8b4d2012-11-02 09:10:30 -0300596 gen_twopix(dev, (u8 *)&dev->textbg, TEXT_BLACK, /*odd=*/ 0);
597 gen_twopix(dev, (u8 *)&dev->textfg, WHITE, /*odd=*/ 0);
598
Hans Verkuil730947b2010-04-10 04:13:53 -0300599 dev->ms += jiffies_to_msecs(jiffies - dev->jiffies);
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300600 dev->jiffies = jiffies;
Hans Verkuil730947b2010-04-10 04:13:53 -0300601 ms = dev->ms;
602 snprintf(str, sizeof(str), " %02d:%02d:%02d:%03d ",
603 (ms / (60 * 60 * 1000)) % 24,
604 (ms / (60 * 1000)) % 60,
605 (ms / 1000) % 60,
606 ms % 1000);
607 gen_text(dev, vbuf, line++ * 16, 16, str);
608 snprintf(str, sizeof(str), " %dx%d, input %d ",
609 dev->width, dev->height, dev->input);
610 gen_text(dev, vbuf, line++ * 16, 16, str);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300611
Hans Verkuila1c894f2011-06-07 06:34:41 -0300612 gain = v4l2_ctrl_g_ctrl(dev->gain);
Sakari Ailus77e7c4e2012-01-24 21:05:34 -0300613 mutex_lock(dev->ctrl_handler.lock);
Hans Verkuil730947b2010-04-10 04:13:53 -0300614 snprintf(str, sizeof(str), " brightness %3d, contrast %3d, saturation %3d, hue %d ",
Hans Verkuil7e996af2011-01-23 12:33:16 -0200615 dev->brightness->cur.val,
616 dev->contrast->cur.val,
617 dev->saturation->cur.val,
618 dev->hue->cur.val);
Hans Verkuil730947b2010-04-10 04:13:53 -0300619 gen_text(dev, vbuf, line++ * 16, 16, str);
Hans Verkuil7088f4d2012-05-02 03:33:52 -0300620 snprintf(str, sizeof(str), " autogain %d, gain %3d, volume %3d, alpha 0x%02x ",
621 dev->autogain->cur.val, gain, dev->volume->cur.val,
622 dev->alpha->cur.val);
Hans Verkuil730947b2010-04-10 04:13:53 -0300623 gen_text(dev, vbuf, line++ * 16, 16, str);
Hans Verkuilb6d17a52011-03-29 16:33:11 -0300624 snprintf(str, sizeof(str), " int32 %d, int64 %lld, bitmask %08x ",
Hans Verkuil7e996af2011-01-23 12:33:16 -0200625 dev->int32->cur.val,
Hans Verkuilb6d17a52011-03-29 16:33:11 -0300626 dev->int64->cur.val64,
627 dev->bitmask->cur.val);
Hans Verkuil7e996af2011-01-23 12:33:16 -0200628 gen_text(dev, vbuf, line++ * 16, 16, str);
629 snprintf(str, sizeof(str), " boolean %d, menu %s, string \"%s\" ",
630 dev->boolean->cur.val,
631 dev->menu->qmenu[dev->menu->cur.val],
632 dev->string->cur.string);
Hans Verkuilf70cfc72012-04-19 11:44:18 -0300633 gen_text(dev, vbuf, line++ * 16, 16, str);
Sakari Ailusc5203312011-08-05 06:38:05 -0300634 snprintf(str, sizeof(str), " integer_menu %lld, value %d ",
635 dev->int_menu->qmenu_int[dev->int_menu->cur.val],
636 dev->int_menu->cur.val);
637 gen_text(dev, vbuf, line++ * 16, 16, str);
Sakari Ailus77e7c4e2012-01-24 21:05:34 -0300638 mutex_unlock(dev->ctrl_handler.lock);
Hans Verkuil7e996af2011-01-23 12:33:16 -0200639 if (dev->button_pressed) {
640 dev->button_pressed--;
641 snprintf(str, sizeof(str), " button pressed!");
642 gen_text(dev, vbuf, line++ * 16, 16, str);
643 }
Hans Verkuil730947b2010-04-10 04:13:53 -0300644
645 dev->mv_count += 2;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300646
Hans Verkuilcd779252012-07-25 11:48:53 -0300647 buf->vb.v4l2_buf.field = V4L2_FIELD_INTERLACED;
Pawel Osciake007a322011-01-19 13:02:29 -0200648 dev->field_count++;
649 buf->vb.v4l2_buf.sequence = dev->field_count >> 1;
Sakari Ailus8e6057b2012-09-15 15:14:42 -0300650 v4l2_get_timestamp(&buf->vb.v4l2_buf.timestamp);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300651}
652
Hans Verkuil730947b2010-04-10 04:13:53 -0300653static void vivi_thread_tick(struct vivi_dev *dev)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300654{
Brandon Philips78718e52008-04-02 18:10:59 -0300655 struct vivi_dmaqueue *dma_q = &dev->vidq;
Hans Verkuil730947b2010-04-10 04:13:53 -0300656 struct vivi_buffer *buf;
Brandon Philips78718e52008-04-02 18:10:59 -0300657 unsigned long flags = 0;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300658
Brandon Philips78718e52008-04-02 18:10:59 -0300659 dprintk(dev, 1, "Thread tick\n");
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300660
Brandon Philips78718e52008-04-02 18:10:59 -0300661 spin_lock_irqsave(&dev->slock, flags);
662 if (list_empty(&dma_q->active)) {
663 dprintk(dev, 1, "No active queue to serve\n");
Hans Verkuil1de5be52011-07-05 07:19:23 -0300664 spin_unlock_irqrestore(&dev->slock, flags);
665 return;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300666 }
Brandon Philips78718e52008-04-02 18:10:59 -0300667
Pawel Osciake007a322011-01-19 13:02:29 -0200668 buf = list_entry(dma_q->active.next, struct vivi_buffer, list);
669 list_del(&buf->list);
Hans Verkuil1de5be52011-07-05 07:19:23 -0300670 spin_unlock_irqrestore(&dev->slock, flags);
Brandon Philips78718e52008-04-02 18:10:59 -0300671
Sakari Ailus8e6057b2012-09-15 15:14:42 -0300672 v4l2_get_timestamp(&buf->vb.v4l2_buf.timestamp);
Brandon Philips78718e52008-04-02 18:10:59 -0300673
674 /* Fill buffer */
Hans Verkuil730947b2010-04-10 04:13:53 -0300675 vivi_fillbuff(dev, buf);
Brandon Philips78718e52008-04-02 18:10:59 -0300676 dprintk(dev, 1, "filled buffer %p\n", buf);
677
Pawel Osciake007a322011-01-19 13:02:29 -0200678 vb2_buffer_done(&buf->vb, VB2_BUF_STATE_DONE);
679 dprintk(dev, 2, "[%p/%d] done\n", buf, buf->vb.v4l2_buf.index);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300680}
681
Mauro Carvalho Chehab6594ad82007-12-13 16:15:41 -0300682#define frames_to_ms(frames) \
683 ((frames * WAKE_NUMERATOR * 1000) / WAKE_DENOMINATOR)
684
Hans Verkuil730947b2010-04-10 04:13:53 -0300685static void vivi_sleep(struct vivi_dev *dev)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300686{
Brandon Philips78718e52008-04-02 18:10:59 -0300687 struct vivi_dmaqueue *dma_q = &dev->vidq;
688 int timeout;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300689 DECLARE_WAITQUEUE(wait, current);
690
Harvey Harrison7e28adb2008-04-08 23:20:00 -0300691 dprintk(dev, 1, "%s dma_q=0x%08lx\n", __func__,
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300692 (unsigned long)dma_q);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300693
694 add_wait_queue(&dma_q->wq, &wait);
Mauro Carvalho Chehab6594ad82007-12-13 16:15:41 -0300695 if (kthread_should_stop())
696 goto stop_task;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300697
Mauro Carvalho Chehab6594ad82007-12-13 16:15:41 -0300698 /* Calculate time to wake up */
Brandon Philips78718e52008-04-02 18:10:59 -0300699 timeout = msecs_to_jiffies(frames_to_ms(1));
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300700
Hans Verkuil730947b2010-04-10 04:13:53 -0300701 vivi_thread_tick(dev);
Mauro Carvalho Chehab6594ad82007-12-13 16:15:41 -0300702
703 schedule_timeout_interruptible(timeout);
704
705stop_task:
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300706 remove_wait_queue(&dma_q->wq, &wait);
707 try_to_freeze();
708}
709
Adrian Bunk972c3512006-04-27 21:06:50 -0300710static int vivi_thread(void *data)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300711{
Hans Verkuil730947b2010-04-10 04:13:53 -0300712 struct vivi_dev *dev = data;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300713
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300714 dprintk(dev, 1, "thread started\n");
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300715
Rafael J. Wysocki83144182007-07-17 04:03:35 -0700716 set_freezable();
Mauro Carvalho Chehab0b600512007-01-14 08:33:24 -0300717
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300718 for (;;) {
Hans Verkuil730947b2010-04-10 04:13:53 -0300719 vivi_sleep(dev);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300720
721 if (kthread_should_stop())
722 break;
723 }
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300724 dprintk(dev, 1, "thread: exit\n");
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300725 return 0;
726}
727
Pawel Osciake007a322011-01-19 13:02:29 -0200728static int vivi_start_generating(struct vivi_dev *dev)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300729{
Brandon Philips78718e52008-04-02 18:10:59 -0300730 struct vivi_dmaqueue *dma_q = &dev->vidq;
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300731
Harvey Harrison7e28adb2008-04-08 23:20:00 -0300732 dprintk(dev, 1, "%s\n", __func__);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300733
Hans Verkuil730947b2010-04-10 04:13:53 -0300734 /* Resets frame counters */
735 dev->ms = 0;
736 dev->mv_count = 0;
737 dev->jiffies = jiffies;
738
739 dma_q->frame = 0;
740 dma_q->ini_jiffies = jiffies;
741 dma_q->kthread = kthread_run(vivi_thread, dev, dev->v4l2_dev.name);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300742
Akinobu Mita054afee2006-12-20 10:04:00 -0300743 if (IS_ERR(dma_q->kthread)) {
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -0300744 v4l2_err(&dev->v4l2_dev, "kernel_thread() failed\n");
Pawel Osciake007a322011-01-19 13:02:29 -0200745 return PTR_ERR(dma_q->kthread);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300746 }
Mauro Carvalho Chehab0b600512007-01-14 08:33:24 -0300747 /* Wakes thread */
748 wake_up_interruptible(&dma_q->wq);
749
Harvey Harrison7e28adb2008-04-08 23:20:00 -0300750 dprintk(dev, 1, "returning from %s\n", __func__);
Pawel Osciake007a322011-01-19 13:02:29 -0200751 return 0;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300752}
753
Pawel Osciake007a322011-01-19 13:02:29 -0200754static void vivi_stop_generating(struct vivi_dev *dev)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300755{
Hans Verkuil730947b2010-04-10 04:13:53 -0300756 struct vivi_dmaqueue *dma_q = &dev->vidq;
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300757
Harvey Harrison7e28adb2008-04-08 23:20:00 -0300758 dprintk(dev, 1, "%s\n", __func__);
Hans Verkuil730947b2010-04-10 04:13:53 -0300759
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300760 /* shutdown control thread */
761 if (dma_q->kthread) {
762 kthread_stop(dma_q->kthread);
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300763 dma_q->kthread = NULL;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300764 }
Hans Verkuil730947b2010-04-10 04:13:53 -0300765
Pawel Osciake007a322011-01-19 13:02:29 -0200766 /*
767 * Typical driver might need to wait here until dma engine stops.
768 * In this case we can abort imiedetly, so it's just a noop.
769 */
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300770
Pawel Osciake007a322011-01-19 13:02:29 -0200771 /* Release all active buffers */
772 while (!list_empty(&dma_q->active)) {
773 struct vivi_buffer *buf;
774 buf = list_entry(dma_q->active.next, struct vivi_buffer, list);
775 list_del(&buf->list);
776 vb2_buffer_done(&buf->vb, VB2_BUF_STATE_ERROR);
777 dprintk(dev, 2, "[%p/%d] done\n", buf, buf->vb.v4l2_buf.index);
778 }
779}
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300780/* ------------------------------------------------------------------
781 Videobuf operations
782 ------------------------------------------------------------------*/
Guennadi Liakhovetskifc714e72011-08-24 10:30:21 -0300783static int queue_setup(struct vb2_queue *vq, const struct v4l2_format *fmt,
784 unsigned int *nbuffers, unsigned int *nplanes,
785 unsigned int sizes[], void *alloc_ctxs[])
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300786{
Pawel Osciake007a322011-01-19 13:02:29 -0200787 struct vivi_dev *dev = vb2_get_drv_priv(vq);
788 unsigned long size;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300789
Hans Verkuil2e90c6c2012-06-22 05:53:31 -0300790 if (fmt)
791 size = fmt->fmt.pix.sizeimage;
792 else
793 size = dev->width * dev->height * dev->pixelsize;
794
795 if (size == 0)
796 return -EINVAL;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300797
Pawel Osciake007a322011-01-19 13:02:29 -0200798 if (0 == *nbuffers)
799 *nbuffers = 32;
Mauro Carvalho Chehab6bb27902007-08-23 16:41:14 -0300800
Pawel Osciake007a322011-01-19 13:02:29 -0200801 while (size * *nbuffers > vid_limit * 1024 * 1024)
802 (*nbuffers)--;
Mauro Carvalho Chehab6bb27902007-08-23 16:41:14 -0300803
Pawel Osciake007a322011-01-19 13:02:29 -0200804 *nplanes = 1;
805
806 sizes[0] = size;
807
808 /*
809 * videobuf2-vmalloc allocator is context-less so no need to set
810 * alloc_ctxs array.
811 */
812
813 dprintk(dev, 1, "%s, count=%d, size=%ld\n", __func__,
814 *nbuffers, size);
Mauro Carvalho Chehab6bb27902007-08-23 16:41:14 -0300815
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300816 return 0;
817}
818
Pawel Osciake007a322011-01-19 13:02:29 -0200819static int buffer_prepare(struct vb2_buffer *vb)
820{
821 struct vivi_dev *dev = vb2_get_drv_priv(vb->vb2_queue);
822 struct vivi_buffer *buf = container_of(vb, struct vivi_buffer, vb);
823 unsigned long size;
824
825 dprintk(dev, 1, "%s, field=%d\n", __func__, vb->v4l2_buf.field);
826
827 BUG_ON(NULL == dev->fmt);
828
829 /*
830 * Theses properties only change when queue is idle, see s_fmt.
831 * The below checks should not be performed here, on each
832 * buffer_prepare (i.e. on each qbuf). Most of the code in this function
833 * should thus be moved to buffer_init and s_fmt.
834 */
Hans Verkuil730947b2010-04-10 04:13:53 -0300835 if (dev->width < 48 || dev->width > MAX_WIDTH ||
836 dev->height < 32 || dev->height > MAX_HEIGHT)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300837 return -EINVAL;
Brandon Philips78718e52008-04-02 18:10:59 -0300838
Hans Verkuil3d51dca2012-05-02 03:15:11 -0300839 size = dev->width * dev->height * dev->pixelsize;
Pawel Osciake007a322011-01-19 13:02:29 -0200840 if (vb2_plane_size(vb, 0) < size) {
841 dprintk(dev, 1, "%s data will not fit into plane (%lu < %lu)\n",
842 __func__, vb2_plane_size(vb, 0), size);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300843 return -EINVAL;
Pawel Osciake007a322011-01-19 13:02:29 -0200844 }
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300845
Pawel Osciake007a322011-01-19 13:02:29 -0200846 vb2_set_plane_payload(&buf->vb, 0, size);
847
848 buf->fmt = dev->fmt;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300849
Hans Verkuil730947b2010-04-10 04:13:53 -0300850 precalculate_bars(dev);
851 precalculate_line(dev);
Mauro Carvalho Chehabc285add2009-06-25 16:28:23 -0300852
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300853 return 0;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300854}
855
Pawel Osciake007a322011-01-19 13:02:29 -0200856static void buffer_queue(struct vb2_buffer *vb)
857{
858 struct vivi_dev *dev = vb2_get_drv_priv(vb->vb2_queue);
Hans Verkuil730947b2010-04-10 04:13:53 -0300859 struct vivi_buffer *buf = container_of(vb, struct vivi_buffer, vb);
Brandon Philips78718e52008-04-02 18:10:59 -0300860 struct vivi_dmaqueue *vidq = &dev->vidq;
Pawel Osciake007a322011-01-19 13:02:29 -0200861 unsigned long flags = 0;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300862
Harvey Harrison7e28adb2008-04-08 23:20:00 -0300863 dprintk(dev, 1, "%s\n", __func__);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300864
Pawel Osciake007a322011-01-19 13:02:29 -0200865 spin_lock_irqsave(&dev->slock, flags);
866 list_add_tail(&buf->list, &vidq->active);
867 spin_unlock_irqrestore(&dev->slock, flags);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300868}
869
Marek Szyprowskibd323e22011-08-29 08:51:49 -0300870static int start_streaming(struct vb2_queue *vq, unsigned int count)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300871{
Pawel Osciake007a322011-01-19 13:02:29 -0200872 struct vivi_dev *dev = vb2_get_drv_priv(vq);
Harvey Harrison7e28adb2008-04-08 23:20:00 -0300873 dprintk(dev, 1, "%s\n", __func__);
Pawel Osciake007a322011-01-19 13:02:29 -0200874 return vivi_start_generating(dev);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300875}
876
Pawel Osciake007a322011-01-19 13:02:29 -0200877/* abort streaming and wait for last buffer */
878static int stop_streaming(struct vb2_queue *vq)
879{
880 struct vivi_dev *dev = vb2_get_drv_priv(vq);
881 dprintk(dev, 1, "%s\n", __func__);
882 vivi_stop_generating(dev);
883 return 0;
884}
885
886static void vivi_lock(struct vb2_queue *vq)
887{
888 struct vivi_dev *dev = vb2_get_drv_priv(vq);
889 mutex_lock(&dev->mutex);
890}
891
892static void vivi_unlock(struct vb2_queue *vq)
893{
894 struct vivi_dev *dev = vb2_get_drv_priv(vq);
895 mutex_unlock(&dev->mutex);
896}
897
898
899static struct vb2_ops vivi_video_qops = {
900 .queue_setup = queue_setup,
Pawel Osciake007a322011-01-19 13:02:29 -0200901 .buf_prepare = buffer_prepare,
Pawel Osciake007a322011-01-19 13:02:29 -0200902 .buf_queue = buffer_queue,
903 .start_streaming = start_streaming,
904 .stop_streaming = stop_streaming,
905 .wait_prepare = vivi_unlock,
906 .wait_finish = vivi_lock,
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300907};
908
909/* ------------------------------------------------------------------
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300910 IOCTL vidioc handling
911 ------------------------------------------------------------------*/
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300912static int vidioc_querycap(struct file *file, void *priv,
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300913 struct v4l2_capability *cap)
914{
Hans Verkuil730947b2010-04-10 04:13:53 -0300915 struct vivi_dev *dev = video_drvdata(file);
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -0300916
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300917 strcpy(cap->driver, "vivi");
918 strcpy(cap->card, "vivi");
Hans Verkuil72c2af62012-09-14 06:23:12 -0300919 snprintf(cap->bus_info, sizeof(cap->bus_info),
920 "platform:%s", dev->v4l2_dev.name);
Hans Verkuil23268ae2012-01-24 05:24:36 -0300921 cap->device_caps = V4L2_CAP_VIDEO_CAPTURE | V4L2_CAP_STREAMING |
922 V4L2_CAP_READWRITE;
923 cap->capabilities = cap->device_caps | V4L2_CAP_DEVICE_CAPS;
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300924 return 0;
925}
926
Hans Verkuil78b526a2008-05-28 12:16:41 -0300927static int vidioc_enum_fmt_vid_cap(struct file *file, void *priv,
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300928 struct v4l2_fmtdesc *f)
929{
Magnus Dammd891f472008-10-14 12:47:09 -0300930 struct vivi_fmt *fmt;
931
932 if (f->index >= ARRAY_SIZE(formats))
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300933 return -EINVAL;
934
Magnus Dammd891f472008-10-14 12:47:09 -0300935 fmt = &formats[f->index];
936
937 strlcpy(f->description, fmt->name, sizeof(f->description));
938 f->pixelformat = fmt->fourcc;
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300939 return 0;
940}
941
Hans Verkuil78b526a2008-05-28 12:16:41 -0300942static int vidioc_g_fmt_vid_cap(struct file *file, void *priv,
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300943 struct v4l2_format *f)
944{
Hans Verkuil730947b2010-04-10 04:13:53 -0300945 struct vivi_dev *dev = video_drvdata(file);
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300946
Hans Verkuil730947b2010-04-10 04:13:53 -0300947 f->fmt.pix.width = dev->width;
948 f->fmt.pix.height = dev->height;
Hans Verkuilcd779252012-07-25 11:48:53 -0300949 f->fmt.pix.field = V4L2_FIELD_INTERLACED;
Hans Verkuil730947b2010-04-10 04:13:53 -0300950 f->fmt.pix.pixelformat = dev->fmt->fourcc;
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300951 f->fmt.pix.bytesperline =
Hans Verkuil730947b2010-04-10 04:13:53 -0300952 (f->fmt.pix.width * dev->fmt->depth) >> 3;
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300953 f->fmt.pix.sizeimage =
954 f->fmt.pix.height * f->fmt.pix.bytesperline;
Hans Verkuil0a3a8a32012-08-06 10:36:18 -0300955 if (dev->fmt->is_yuv)
Hans Verkuil8c79eec2011-07-29 07:19:46 -0300956 f->fmt.pix.colorspace = V4L2_COLORSPACE_SMPTE170M;
957 else
958 f->fmt.pix.colorspace = V4L2_COLORSPACE_SRGB;
Hans Verkuil730947b2010-04-10 04:13:53 -0300959 return 0;
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300960}
961
Hans Verkuil78b526a2008-05-28 12:16:41 -0300962static int vidioc_try_fmt_vid_cap(struct file *file, void *priv,
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300963 struct v4l2_format *f)
964{
Hans Verkuil730947b2010-04-10 04:13:53 -0300965 struct vivi_dev *dev = video_drvdata(file);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300966 struct vivi_fmt *fmt;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300967
Magnus Dammd891f472008-10-14 12:47:09 -0300968 fmt = get_format(f);
969 if (!fmt) {
Hans Verkuilcd779252012-07-25 11:48:53 -0300970 dprintk(dev, 1, "Fourcc format (0x%08x) unknown.\n",
Magnus Dammd891f472008-10-14 12:47:09 -0300971 f->fmt.pix.pixelformat);
Hans Verkuilcd779252012-07-25 11:48:53 -0300972 f->fmt.pix.pixelformat = V4L2_PIX_FMT_YUYV;
973 fmt = get_format(f);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300974 }
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300975
Hans Verkuilcd779252012-07-25 11:48:53 -0300976 f->fmt.pix.field = V4L2_FIELD_INTERLACED;
Hans Verkuil730947b2010-04-10 04:13:53 -0300977 v4l_bound_align_image(&f->fmt.pix.width, 48, MAX_WIDTH, 2,
978 &f->fmt.pix.height, 32, MAX_HEIGHT, 0, 0);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300979 f->fmt.pix.bytesperline =
980 (f->fmt.pix.width * fmt->depth) >> 3;
981 f->fmt.pix.sizeimage =
982 f->fmt.pix.height * f->fmt.pix.bytesperline;
Hans Verkuil0a3a8a32012-08-06 10:36:18 -0300983 if (fmt->is_yuv)
Hans Verkuil8c79eec2011-07-29 07:19:46 -0300984 f->fmt.pix.colorspace = V4L2_COLORSPACE_SMPTE170M;
985 else
986 f->fmt.pix.colorspace = V4L2_COLORSPACE_SRGB;
Hans Verkuil2f65f462012-08-06 10:43:13 -0300987 f->fmt.pix.priv = 0;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300988 return 0;
989}
990
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -0300991static int vidioc_s_fmt_vid_cap(struct file *file, void *priv,
992 struct v4l2_format *f)
993{
Hans Verkuil730947b2010-04-10 04:13:53 -0300994 struct vivi_dev *dev = video_drvdata(file);
Pawel Osciake007a322011-01-19 13:02:29 -0200995 struct vb2_queue *q = &dev->vb_vidq;
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -0300996
Hans Verkuil730947b2010-04-10 04:13:53 -0300997 int ret = vidioc_try_fmt_vid_cap(file, priv, f);
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -0300998 if (ret < 0)
999 return ret;
1000
Hans Verkuilf2ba5a02012-06-22 05:53:02 -03001001 if (vb2_is_busy(q)) {
Hans Verkuil730947b2010-04-10 04:13:53 -03001002 dprintk(dev, 1, "%s device busy\n", __func__);
Pawel Osciake007a322011-01-19 13:02:29 -02001003 return -EBUSY;
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -03001004 }
1005
Hans Verkuil730947b2010-04-10 04:13:53 -03001006 dev->fmt = get_format(f);
Hans Verkuil3d51dca2012-05-02 03:15:11 -03001007 dev->pixelsize = dev->fmt->depth / 8;
Hans Verkuil730947b2010-04-10 04:13:53 -03001008 dev->width = f->fmt.pix.width;
1009 dev->height = f->fmt.pix.height;
Pawel Osciake007a322011-01-19 13:02:29 -02001010
1011 return 0;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001012}
1013
Hans Verkuil77747f72012-08-06 10:37:18 -03001014static int vidioc_enum_framesizes(struct file *file, void *fh,
1015 struct v4l2_frmsizeenum *fsize)
1016{
1017 static const struct v4l2_frmsize_stepwise sizes = {
1018 48, MAX_WIDTH, 4,
1019 32, MAX_HEIGHT, 1
1020 };
1021 int i;
1022
1023 if (fsize->index)
1024 return -EINVAL;
1025 for (i = 0; i < ARRAY_SIZE(formats); i++)
1026 if (formats[i].fourcc == fsize->pixel_format)
1027 break;
1028 if (i == ARRAY_SIZE(formats))
1029 return -EINVAL;
1030 fsize->type = V4L2_FRMSIZE_TYPE_STEPWISE;
1031 fsize->stepwise = sizes;
1032 return 0;
1033}
1034
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001035/* only one input in this sample driver */
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -03001036static int vidioc_enum_input(struct file *file, void *priv,
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001037 struct v4l2_input *inp)
1038{
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -03001039 if (inp->index >= NUM_INPUTS)
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001040 return -EINVAL;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001041
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001042 inp->type = V4L2_INPUT_TYPE_CAMERA;
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -03001043 sprintf(inp->name, "Camera %u", inp->index);
Hans Verkuil730947b2010-04-10 04:13:53 -03001044 return 0;
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001045}
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001046
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -03001047static int vidioc_g_input(struct file *file, void *priv, unsigned int *i)
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001048{
Hans Verkuil730947b2010-04-10 04:13:53 -03001049 struct vivi_dev *dev = video_drvdata(file);
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -03001050
1051 *i = dev->input;
Hans Verkuil730947b2010-04-10 04:13:53 -03001052 return 0;
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001053}
Hans Verkuil730947b2010-04-10 04:13:53 -03001054
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -03001055static int vidioc_s_input(struct file *file, void *priv, unsigned int i)
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001056{
Hans Verkuil730947b2010-04-10 04:13:53 -03001057 struct vivi_dev *dev = video_drvdata(file);
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -03001058
1059 if (i >= NUM_INPUTS)
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001060 return -EINVAL;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001061
Hans Verkuilc7a52f82011-06-07 10:20:23 -03001062 if (i == dev->input)
1063 return 0;
1064
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -03001065 dev->input = i;
Hans Verkuil730947b2010-04-10 04:13:53 -03001066 precalculate_bars(dev);
1067 precalculate_line(dev);
1068 return 0;
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001069}
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001070
Hans Verkuil730947b2010-04-10 04:13:53 -03001071/* --- controls ---------------------------------------------- */
Hans Verkuil7e996af2011-01-23 12:33:16 -02001072
Hans Verkuila1c894f2011-06-07 06:34:41 -03001073static int vivi_g_volatile_ctrl(struct v4l2_ctrl *ctrl)
1074{
1075 struct vivi_dev *dev = container_of(ctrl->handler, struct vivi_dev, ctrl_handler);
1076
1077 if (ctrl == dev->autogain)
1078 dev->gain->val = jiffies & 0xff;
1079 return 0;
1080}
1081
Hans Verkuil7e996af2011-01-23 12:33:16 -02001082static int vivi_s_ctrl(struct v4l2_ctrl *ctrl)
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001083{
Hans Verkuil7e996af2011-01-23 12:33:16 -02001084 struct vivi_dev *dev = container_of(ctrl->handler, struct vivi_dev, ctrl_handler);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001085
Hans Verkuil7088f4d2012-05-02 03:33:52 -03001086 switch (ctrl->id) {
1087 case V4L2_CID_ALPHA_COMPONENT:
1088 dev->alpha_component = ctrl->val;
1089 break;
1090 default:
1091 if (ctrl == dev->button)
1092 dev->button_pressed = 30;
1093 break;
1094 }
Hans Verkuil7e996af2011-01-23 12:33:16 -02001095 return 0;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001096}
1097
1098/* ------------------------------------------------------------------
1099 File operations for the device
1100 ------------------------------------------------------------------*/
1101
Hans Verkuil7e996af2011-01-23 12:33:16 -02001102static const struct v4l2_ctrl_ops vivi_ctrl_ops = {
Hans Verkuila1c894f2011-06-07 06:34:41 -03001103 .g_volatile_ctrl = vivi_g_volatile_ctrl,
Hans Verkuil7e996af2011-01-23 12:33:16 -02001104 .s_ctrl = vivi_s_ctrl,
1105};
1106
1107#define VIVI_CID_CUSTOM_BASE (V4L2_CID_USER_BASE | 0xf000)
1108
1109static const struct v4l2_ctrl_config vivi_ctrl_button = {
1110 .ops = &vivi_ctrl_ops,
1111 .id = VIVI_CID_CUSTOM_BASE + 0,
1112 .name = "Button",
1113 .type = V4L2_CTRL_TYPE_BUTTON,
1114};
1115
1116static const struct v4l2_ctrl_config vivi_ctrl_boolean = {
1117 .ops = &vivi_ctrl_ops,
1118 .id = VIVI_CID_CUSTOM_BASE + 1,
1119 .name = "Boolean",
1120 .type = V4L2_CTRL_TYPE_BOOLEAN,
1121 .min = 0,
1122 .max = 1,
1123 .step = 1,
1124 .def = 1,
1125};
1126
1127static const struct v4l2_ctrl_config vivi_ctrl_int32 = {
1128 .ops = &vivi_ctrl_ops,
1129 .id = VIVI_CID_CUSTOM_BASE + 2,
1130 .name = "Integer 32 Bits",
1131 .type = V4L2_CTRL_TYPE_INTEGER,
Hans Verkuil5b283022011-01-11 17:32:28 -03001132 .min = 0x80000000,
1133 .max = 0x7fffffff,
Hans Verkuil7e996af2011-01-23 12:33:16 -02001134 .step = 1,
1135};
1136
1137static const struct v4l2_ctrl_config vivi_ctrl_int64 = {
1138 .ops = &vivi_ctrl_ops,
1139 .id = VIVI_CID_CUSTOM_BASE + 3,
1140 .name = "Integer 64 Bits",
1141 .type = V4L2_CTRL_TYPE_INTEGER64,
1142};
1143
1144static const char * const vivi_ctrl_menu_strings[] = {
1145 "Menu Item 0 (Skipped)",
1146 "Menu Item 1",
1147 "Menu Item 2 (Skipped)",
1148 "Menu Item 3",
1149 "Menu Item 4",
1150 "Menu Item 5 (Skipped)",
1151 NULL,
1152};
1153
1154static const struct v4l2_ctrl_config vivi_ctrl_menu = {
1155 .ops = &vivi_ctrl_ops,
1156 .id = VIVI_CID_CUSTOM_BASE + 4,
1157 .name = "Menu",
1158 .type = V4L2_CTRL_TYPE_MENU,
1159 .min = 1,
1160 .max = 4,
1161 .def = 3,
1162 .menu_skip_mask = 0x04,
1163 .qmenu = vivi_ctrl_menu_strings,
1164};
1165
1166static const struct v4l2_ctrl_config vivi_ctrl_string = {
1167 .ops = &vivi_ctrl_ops,
1168 .id = VIVI_CID_CUSTOM_BASE + 5,
1169 .name = "String",
1170 .type = V4L2_CTRL_TYPE_STRING,
1171 .min = 2,
1172 .max = 4,
1173 .step = 1,
1174};
1175
Hans Verkuilb6d17a52011-03-29 16:33:11 -03001176static const struct v4l2_ctrl_config vivi_ctrl_bitmask = {
1177 .ops = &vivi_ctrl_ops,
1178 .id = VIVI_CID_CUSTOM_BASE + 6,
1179 .name = "Bitmask",
1180 .type = V4L2_CTRL_TYPE_BITMASK,
1181 .def = 0x80002000,
1182 .min = 0,
1183 .max = 0x80402010,
1184 .step = 0,
1185};
1186
Sakari Ailusc5203312011-08-05 06:38:05 -03001187static const s64 vivi_ctrl_int_menu_values[] = {
1188 1, 1, 2, 3, 5, 8, 13, 21, 42,
1189};
1190
1191static const struct v4l2_ctrl_config vivi_ctrl_int_menu = {
1192 .ops = &vivi_ctrl_ops,
1193 .id = VIVI_CID_CUSTOM_BASE + 7,
1194 .name = "Integer menu",
1195 .type = V4L2_CTRL_TYPE_INTEGER_MENU,
1196 .min = 1,
1197 .max = 8,
1198 .def = 4,
1199 .menu_skip_mask = 0x02,
1200 .qmenu_int = vivi_ctrl_int_menu_values,
1201};
1202
Hans Verkuilbec43662008-12-30 06:58:20 -03001203static const struct v4l2_file_operations vivi_fops = {
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001204 .owner = THIS_MODULE,
Hans Verkuilc7a52f82011-06-07 10:20:23 -03001205 .open = v4l2_fh_open,
Hans Verkuilf2ba5a02012-06-22 05:53:02 -03001206 .release = vb2_fop_release,
1207 .read = vb2_fop_read,
1208 .poll = vb2_fop_poll,
Hans Verkuilfedc6c82010-09-20 18:25:55 -03001209 .unlocked_ioctl = video_ioctl2, /* V4L2 ioctl handler */
Hans Verkuilf2ba5a02012-06-22 05:53:02 -03001210 .mmap = vb2_fop_mmap,
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001211};
1212
Hans Verkuila3998102008-07-21 02:57:38 -03001213static const struct v4l2_ioctl_ops vivi_ioctl_ops = {
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001214 .vidioc_querycap = vidioc_querycap,
Hans Verkuil78b526a2008-05-28 12:16:41 -03001215 .vidioc_enum_fmt_vid_cap = vidioc_enum_fmt_vid_cap,
1216 .vidioc_g_fmt_vid_cap = vidioc_g_fmt_vid_cap,
1217 .vidioc_try_fmt_vid_cap = vidioc_try_fmt_vid_cap,
1218 .vidioc_s_fmt_vid_cap = vidioc_s_fmt_vid_cap,
Hans Verkuil77747f72012-08-06 10:37:18 -03001219 .vidioc_enum_framesizes = vidioc_enum_framesizes,
Hans Verkuilf2ba5a02012-06-22 05:53:02 -03001220 .vidioc_reqbufs = vb2_ioctl_reqbufs,
Hans Verkuil2e90c6c2012-06-22 05:53:31 -03001221 .vidioc_create_bufs = vb2_ioctl_create_bufs,
1222 .vidioc_prepare_buf = vb2_ioctl_prepare_buf,
Hans Verkuilf2ba5a02012-06-22 05:53:02 -03001223 .vidioc_querybuf = vb2_ioctl_querybuf,
1224 .vidioc_qbuf = vb2_ioctl_qbuf,
1225 .vidioc_dqbuf = vb2_ioctl_dqbuf,
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001226 .vidioc_enum_input = vidioc_enum_input,
1227 .vidioc_g_input = vidioc_g_input,
1228 .vidioc_s_input = vidioc_s_input,
Hans Verkuilf2ba5a02012-06-22 05:53:02 -03001229 .vidioc_streamon = vb2_ioctl_streamon,
1230 .vidioc_streamoff = vb2_ioctl_streamoff,
Hans Verkuile2ecb252012-02-02 08:20:53 -03001231 .vidioc_log_status = v4l2_ctrl_log_status,
Hans Verkuil6d6604f2012-01-27 16:21:10 -03001232 .vidioc_subscribe_event = v4l2_ctrl_subscribe_event,
Hans Verkuilc7a52f82011-06-07 10:20:23 -03001233 .vidioc_unsubscribe_event = v4l2_event_unsubscribe,
Hans Verkuila3998102008-07-21 02:57:38 -03001234};
1235
1236static struct video_device vivi_template = {
1237 .name = "vivi",
Hans Verkuila3998102008-07-21 02:57:38 -03001238 .fops = &vivi_fops,
1239 .ioctl_ops = &vivi_ioctl_ops,
Hans Verkuil70bd97a2012-06-09 11:27:43 -03001240 .release = video_device_release_empty,
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001241};
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001242
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001243/* -----------------------------------------------------------------
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001244 Initialization and module stuff
1245 ------------------------------------------------------------------*/
1246
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001247static int vivi_release(void)
1248{
1249 struct vivi_dev *dev;
1250 struct list_head *list;
1251
1252 while (!list_empty(&vivi_devlist)) {
1253 list = vivi_devlist.next;
1254 list_del(list);
1255 dev = list_entry(list, struct vivi_dev, vivi_devlist);
1256
Laurent Pinchart38c7c032009-11-27 13:57:15 -03001257 v4l2_info(&dev->v4l2_dev, "unregistering %s\n",
Hans Verkuil70bd97a2012-06-09 11:27:43 -03001258 video_device_node_name(&dev->vdev));
1259 video_unregister_device(&dev->vdev);
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001260 v4l2_device_unregister(&dev->v4l2_dev);
Hans Verkuil7e996af2011-01-23 12:33:16 -02001261 v4l2_ctrl_handler_free(&dev->ctrl_handler);
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001262 kfree(dev);
1263 }
1264
1265 return 0;
1266}
1267
Hans Verkuilc41ee242009-02-14 13:43:44 -03001268static int __init vivi_create_instance(int inst)
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001269{
1270 struct vivi_dev *dev;
1271 struct video_device *vfd;
Hans Verkuil7e996af2011-01-23 12:33:16 -02001272 struct v4l2_ctrl_handler *hdl;
Pawel Osciake007a322011-01-19 13:02:29 -02001273 struct vb2_queue *q;
Hans Verkuil730947b2010-04-10 04:13:53 -03001274 int ret;
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001275
1276 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
1277 if (!dev)
1278 return -ENOMEM;
1279
1280 snprintf(dev->v4l2_dev.name, sizeof(dev->v4l2_dev.name),
Hans Verkuilc41ee242009-02-14 13:43:44 -03001281 "%s-%03d", VIVI_MODULE_NAME, inst);
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001282 ret = v4l2_device_register(NULL, &dev->v4l2_dev);
1283 if (ret)
1284 goto free_dev;
1285
Hans Verkuil730947b2010-04-10 04:13:53 -03001286 dev->fmt = &formats[0];
1287 dev->width = 640;
1288 dev->height = 480;
Hans Verkuil3d51dca2012-05-02 03:15:11 -03001289 dev->pixelsize = dev->fmt->depth / 8;
Hans Verkuil7e996af2011-01-23 12:33:16 -02001290 hdl = &dev->ctrl_handler;
1291 v4l2_ctrl_handler_init(hdl, 11);
1292 dev->volume = v4l2_ctrl_new_std(hdl, &vivi_ctrl_ops,
1293 V4L2_CID_AUDIO_VOLUME, 0, 255, 1, 200);
1294 dev->brightness = v4l2_ctrl_new_std(hdl, &vivi_ctrl_ops,
1295 V4L2_CID_BRIGHTNESS, 0, 255, 1, 127);
1296 dev->contrast = v4l2_ctrl_new_std(hdl, &vivi_ctrl_ops,
1297 V4L2_CID_CONTRAST, 0, 255, 1, 16);
1298 dev->saturation = v4l2_ctrl_new_std(hdl, &vivi_ctrl_ops,
1299 V4L2_CID_SATURATION, 0, 255, 1, 127);
1300 dev->hue = v4l2_ctrl_new_std(hdl, &vivi_ctrl_ops,
1301 V4L2_CID_HUE, -128, 127, 1, 0);
Hans Verkuila1c894f2011-06-07 06:34:41 -03001302 dev->autogain = v4l2_ctrl_new_std(hdl, &vivi_ctrl_ops,
1303 V4L2_CID_AUTOGAIN, 0, 1, 1, 1);
1304 dev->gain = v4l2_ctrl_new_std(hdl, &vivi_ctrl_ops,
1305 V4L2_CID_GAIN, 0, 255, 1, 100);
Hans Verkuil7088f4d2012-05-02 03:33:52 -03001306 dev->alpha = v4l2_ctrl_new_std(hdl, &vivi_ctrl_ops,
1307 V4L2_CID_ALPHA_COMPONENT, 0, 255, 1, 0);
Hans Verkuil7e996af2011-01-23 12:33:16 -02001308 dev->button = v4l2_ctrl_new_custom(hdl, &vivi_ctrl_button, NULL);
1309 dev->int32 = v4l2_ctrl_new_custom(hdl, &vivi_ctrl_int32, NULL);
1310 dev->int64 = v4l2_ctrl_new_custom(hdl, &vivi_ctrl_int64, NULL);
1311 dev->boolean = v4l2_ctrl_new_custom(hdl, &vivi_ctrl_boolean, NULL);
1312 dev->menu = v4l2_ctrl_new_custom(hdl, &vivi_ctrl_menu, NULL);
1313 dev->string = v4l2_ctrl_new_custom(hdl, &vivi_ctrl_string, NULL);
Hans Verkuilb6d17a52011-03-29 16:33:11 -03001314 dev->bitmask = v4l2_ctrl_new_custom(hdl, &vivi_ctrl_bitmask, NULL);
Sakari Ailusc5203312011-08-05 06:38:05 -03001315 dev->int_menu = v4l2_ctrl_new_custom(hdl, &vivi_ctrl_int_menu, NULL);
Hans Verkuil7e996af2011-01-23 12:33:16 -02001316 if (hdl->error) {
1317 ret = hdl->error;
1318 goto unreg_dev;
1319 }
Hans Verkuila1c894f2011-06-07 06:34:41 -03001320 v4l2_ctrl_auto_cluster(2, &dev->autogain, 0, true);
Hans Verkuil7e996af2011-01-23 12:33:16 -02001321 dev->v4l2_dev.ctrl_handler = hdl;
Hans Verkuil730947b2010-04-10 04:13:53 -03001322
Hans Verkuilfedc6c82010-09-20 18:25:55 -03001323 /* initialize locks */
1324 spin_lock_init(&dev->slock);
Hans Verkuilfedc6c82010-09-20 18:25:55 -03001325
Pawel Osciake007a322011-01-19 13:02:29 -02001326 /* initialize queue */
1327 q = &dev->vb_vidq;
Pawel Osciake007a322011-01-19 13:02:29 -02001328 q->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
Tomasz Stanislawskia626f0a2012-06-14 10:37:47 -03001329 q->io_modes = VB2_MMAP | VB2_USERPTR | VB2_DMABUF | VB2_READ;
Pawel Osciake007a322011-01-19 13:02:29 -02001330 q->drv_priv = dev;
1331 q->buf_struct_size = sizeof(struct vivi_buffer);
1332 q->ops = &vivi_video_qops;
1333 q->mem_ops = &vb2_vmalloc_memops;
1334
Ezequiel Garcia4195ec72012-09-17 09:49:38 -03001335 ret = vb2_queue_init(q);
1336 if (ret)
1337 goto unreg_dev;
Pawel Osciake007a322011-01-19 13:02:29 -02001338
1339 mutex_init(&dev->mutex);
Hans Verkuil730947b2010-04-10 04:13:53 -03001340
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001341 /* init video dma queues */
1342 INIT_LIST_HEAD(&dev->vidq.active);
1343 init_waitqueue_head(&dev->vidq.wq);
1344
Hans Verkuil70bd97a2012-06-09 11:27:43 -03001345 vfd = &dev->vdev;
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001346 *vfd = vivi_template;
Mauro Carvalho Chehabc285add2009-06-25 16:28:23 -03001347 vfd->debug = debug;
Hans Verkuil730947b2010-04-10 04:13:53 -03001348 vfd->v4l2_dev = &dev->v4l2_dev;
Hans Verkuilf2ba5a02012-06-22 05:53:02 -03001349 vfd->queue = q;
Hans Verkuilb1a873a2011-03-22 10:14:07 -03001350 set_bit(V4L2_FL_USE_FH_PRIO, &vfd->flags);
Pawel Osciake007a322011-01-19 13:02:29 -02001351
1352 /*
1353 * Provide a mutex to v4l2 core. It will be used to protect
1354 * all fops and v4l2 ioctls.
1355 */
Hans Verkuilfedc6c82010-09-20 18:25:55 -03001356 vfd->lock = &dev->mutex;
Hans Verkuil70bd97a2012-06-09 11:27:43 -03001357 video_set_drvdata(vfd, dev);
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001358
1359 ret = video_register_device(vfd, VFL_TYPE_GRABBER, video_nr);
1360 if (ret < 0)
Hans Verkuil70bd97a2012-06-09 11:27:43 -03001361 goto unreg_dev;
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001362
1363 /* Now that everything is fine, let's add it to device list */
1364 list_add_tail(&dev->vivi_devlist, &vivi_devlist);
1365
Laurent Pinchart38c7c032009-11-27 13:57:15 -03001366 v4l2_info(&dev->v4l2_dev, "V4L2 device registered as %s\n",
1367 video_device_node_name(vfd));
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001368 return 0;
1369
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001370unreg_dev:
Hans Verkuil7e996af2011-01-23 12:33:16 -02001371 v4l2_ctrl_handler_free(hdl);
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001372 v4l2_device_unregister(&dev->v4l2_dev);
1373free_dev:
1374 kfree(dev);
1375 return ret;
1376}
1377
Mauro Carvalho Chehab980d4f12008-09-03 17:11:53 -03001378/* This routine allocates from 1 to n_devs virtual drivers.
1379
1380 The real maximum number of virtual drivers will depend on how many drivers
1381 will succeed. This is limited to the maximum number of devices that
Hans Verkuil62cfdac2009-02-14 11:37:17 -03001382 videodev supports, which is equal to VIDEO_NUM_DEVICES.
Mauro Carvalho Chehab980d4f12008-09-03 17:11:53 -03001383 */
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001384static int __init vivi_init(void)
1385{
Hans Verkuil730947b2010-04-10 04:13:53 -03001386 const struct font_desc *font = find_font("VGA8x16");
Hans Verkuil9185cbf2009-03-06 09:58:12 -03001387 int ret = 0, i;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001388
Hans Verkuil730947b2010-04-10 04:13:53 -03001389 if (font == NULL) {
1390 printk(KERN_ERR "vivi: could not find font\n");
1391 return -ENODEV;
1392 }
1393 font8x16 = font->data;
1394
Mauro Carvalho Chehab980d4f12008-09-03 17:11:53 -03001395 if (n_devs <= 0)
1396 n_devs = 1;
1397
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001398 for (i = 0; i < n_devs; i++) {
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001399 ret = vivi_create_instance(i);
1400 if (ret) {
1401 /* If some instantiations succeeded, keep driver */
Mauro Carvalho Chehab980d4f12008-09-03 17:11:53 -03001402 if (i)
1403 ret = 0;
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001404 break;
Mauro Carvalho Chehab980d4f12008-09-03 17:11:53 -03001405 }
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001406 }
1407
1408 if (ret < 0) {
Hans Verkuil730947b2010-04-10 04:13:53 -03001409 printk(KERN_ERR "vivi: error %d while loading driver\n", ret);
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001410 return ret;
1411 }
1412
1413 printk(KERN_INFO "Video Technology Magazine Virtual Video "
Mauro Carvalho Chehab1990d502011-06-24 14:45:49 -03001414 "Capture Board ver %s successfully loaded.\n",
1415 VIVI_VERSION);
Mauro Carvalho Chehab980d4f12008-09-03 17:11:53 -03001416
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001417 /* n_devs will reflect the actual number of allocated devices */
1418 n_devs = i;
Mauro Carvalho Chehab980d4f12008-09-03 17:11:53 -03001419
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001420 return ret;
1421}
1422
1423static void __exit vivi_exit(void)
1424{
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001425 vivi_release();
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001426}
1427
1428module_init(vivi_init);
1429module_exit(vivi_exit);