blob: 1d3f1196519669cca0509c1972bdb320d2d35ad1 [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
Kirill Smelkovfe0e9902012-10-23 09:56:59 -030039/* Maximum allowed frame rate
40 *
41 * Vivi will allow setting timeperframe in [1/FPS_MAX - FPS_MAX/1] range.
42 *
43 * Ideally FPS_MAX should be infinity, i.e. practically UINT_MAX, but that
44 * might hit application errors when they manipulate these values.
45 *
46 * Besides, for tpf < 1ms image-generation logic should be changed, to avoid
47 * producing frames with equal content.
48 */
49#define FPS_MAX 1000
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -030050
Hans Verkuil730947b2010-04-10 04:13:53 -030051#define MAX_WIDTH 1920
52#define MAX_HEIGHT 1200
53
Mauro Carvalho Chehab1990d502011-06-24 14:45:49 -030054#define VIVI_VERSION "0.8.1"
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -030055
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -030056MODULE_DESCRIPTION("Video Technology Magazine Virtual Video Capture Board");
57MODULE_AUTHOR("Mauro Carvalho Chehab, Ted Walther and John Sokol");
58MODULE_LICENSE("Dual BSD/GPL");
Mauro Carvalho Chehab1990d502011-06-24 14:45:49 -030059MODULE_VERSION(VIVI_VERSION);
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -030060
61static unsigned video_nr = -1;
62module_param(video_nr, uint, 0644);
63MODULE_PARM_DESC(video_nr, "videoX start number, -1 is autodetect");
64
65static unsigned n_devs = 1;
66module_param(n_devs, uint, 0644);
67MODULE_PARM_DESC(n_devs, "number of video devices to create");
68
69static unsigned debug;
70module_param(debug, uint, 0644);
71MODULE_PARM_DESC(debug, "activates debug info");
72
73static unsigned int vid_limit = 16;
74module_param(vid_limit, uint, 0644);
75MODULE_PARM_DESC(vid_limit, "capture memory limit in megabytes");
76
Hans Verkuil730947b2010-04-10 04:13:53 -030077/* Global font descriptor */
78static const u8 *font8x16;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -030079
Kirill Smelkovfe0e9902012-10-23 09:56:59 -030080/* timeperframe: min/max and default */
81static const struct v4l2_fract
82 tpf_min = {.numerator = 1, .denominator = FPS_MAX},
83 tpf_max = {.numerator = FPS_MAX, .denominator = 1},
84 tpf_default = {.numerator = 1001, .denominator = 30000}; /* NTSC */
85
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -030086#define dprintk(dev, level, fmt, arg...) \
87 v4l2_dbg(level, debug, &dev->v4l2_dev, fmt, ## arg)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -030088
89/* ------------------------------------------------------------------
90 Basic structures
91 ------------------------------------------------------------------*/
92
93struct vivi_fmt {
Kirill Smelkovc19bec52012-12-26 12:23:26 -030094 const char *name;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -030095 u32 fourcc; /* v4l2 format id */
Hans Verkuil0a3a8a32012-08-06 10:36:18 -030096 u8 depth;
97 bool is_yuv;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -030098};
99
Kirill Smelkovc19bec52012-12-26 12:23:26 -0300100static const struct vivi_fmt formats[] = {
Magnus Dammd891f472008-10-14 12:47:09 -0300101 {
102 .name = "4:2:2, packed, YUYV",
103 .fourcc = V4L2_PIX_FMT_YUYV,
104 .depth = 16,
Hans Verkuil0a3a8a32012-08-06 10:36:18 -0300105 .is_yuv = true,
Magnus Dammd891f472008-10-14 12:47:09 -0300106 },
Magnus Dammfca36ba2008-10-14 12:47:25 -0300107 {
108 .name = "4:2:2, packed, UYVY",
109 .fourcc = V4L2_PIX_FMT_UYVY,
110 .depth = 16,
Hans Verkuil0a3a8a32012-08-06 10:36:18 -0300111 .is_yuv = true,
Magnus Dammfca36ba2008-10-14 12:47:25 -0300112 },
Magnus Dammaeadb5d2008-10-14 12:47:35 -0300113 {
Hans Verkuil3d51dca2012-05-02 03:15:11 -0300114 .name = "4:2:2, packed, YVYU",
115 .fourcc = V4L2_PIX_FMT_YVYU,
116 .depth = 16,
Hans Verkuil0a3a8a32012-08-06 10:36:18 -0300117 .is_yuv = true,
Hans Verkuil3d51dca2012-05-02 03:15:11 -0300118 },
119 {
120 .name = "4:2:2, packed, VYUY",
121 .fourcc = V4L2_PIX_FMT_VYUY,
122 .depth = 16,
Hans Verkuil0a3a8a32012-08-06 10:36:18 -0300123 .is_yuv = true,
Hans Verkuil3d51dca2012-05-02 03:15:11 -0300124 },
125 {
Magnus Dammaeadb5d2008-10-14 12:47:35 -0300126 .name = "RGB565 (LE)",
127 .fourcc = V4L2_PIX_FMT_RGB565, /* gggbbbbb rrrrrggg */
128 .depth = 16,
129 },
130 {
131 .name = "RGB565 (BE)",
132 .fourcc = V4L2_PIX_FMT_RGB565X, /* rrrrrggg gggbbbbb */
133 .depth = 16,
134 },
Magnus Dammdef52392008-10-14 12:47:43 -0300135 {
136 .name = "RGB555 (LE)",
137 .fourcc = V4L2_PIX_FMT_RGB555, /* gggbbbbb arrrrrgg */
138 .depth = 16,
139 },
140 {
141 .name = "RGB555 (BE)",
142 .fourcc = V4L2_PIX_FMT_RGB555X, /* arrrrrgg gggbbbbb */
143 .depth = 16,
144 },
Hans Verkuil3d51dca2012-05-02 03:15:11 -0300145 {
146 .name = "RGB24 (LE)",
147 .fourcc = V4L2_PIX_FMT_RGB24, /* rgb */
148 .depth = 24,
149 },
150 {
151 .name = "RGB24 (BE)",
152 .fourcc = V4L2_PIX_FMT_BGR24, /* bgr */
153 .depth = 24,
154 },
155 {
156 .name = "RGB32 (LE)",
157 .fourcc = V4L2_PIX_FMT_RGB32, /* argb */
158 .depth = 32,
159 },
160 {
161 .name = "RGB32 (BE)",
162 .fourcc = V4L2_PIX_FMT_BGR32, /* bgra */
163 .depth = 32,
164 },
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300165};
166
Kirill Smelkovc19bec52012-12-26 12:23:26 -0300167static const struct vivi_fmt *__get_format(u32 pixelformat)
Magnus Dammd891f472008-10-14 12:47:09 -0300168{
Kirill Smelkovc19bec52012-12-26 12:23:26 -0300169 const struct vivi_fmt *fmt;
Magnus Dammd891f472008-10-14 12:47:09 -0300170 unsigned int k;
171
172 for (k = 0; k < ARRAY_SIZE(formats); k++) {
173 fmt = &formats[k];
Kirill Smelkovfe0e9902012-10-23 09:56:59 -0300174 if (fmt->fourcc == pixelformat)
Magnus Dammd891f472008-10-14 12:47:09 -0300175 break;
176 }
177
178 if (k == ARRAY_SIZE(formats))
179 return NULL;
180
181 return &formats[k];
182}
183
Kirill Smelkovc19bec52012-12-26 12:23:26 -0300184static const struct vivi_fmt *get_format(struct v4l2_format *f)
Kirill Smelkovfe0e9902012-10-23 09:56:59 -0300185{
186 return __get_format(f->fmt.pix.pixelformat);
187}
188
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300189/* buffer for one video frame */
190struct vivi_buffer {
191 /* common v4l buffer stuff -- must be first */
Pawel Osciake007a322011-01-19 13:02:29 -0200192 struct vb2_buffer vb;
193 struct list_head list;
Kirill Smelkovc19bec52012-12-26 12:23:26 -0300194 const struct vivi_fmt *fmt;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300195};
196
197struct vivi_dmaqueue {
198 struct list_head active;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300199
200 /* thread for generating video stream*/
201 struct task_struct *kthread;
202 wait_queue_head_t wq;
203 /* Counters to control fps rate */
204 int frame;
205 int ini_jiffies;
206};
207
208static LIST_HEAD(vivi_devlist);
209
210struct vivi_dev {
211 struct list_head vivi_devlist;
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -0300212 struct v4l2_device v4l2_dev;
Hans Verkuil7e996af2011-01-23 12:33:16 -0200213 struct v4l2_ctrl_handler ctrl_handler;
Hans Verkuil70bd97a2012-06-09 11:27:43 -0300214 struct video_device vdev;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300215
Hans Verkuil730947b2010-04-10 04:13:53 -0300216 /* controls */
Hans Verkuil7e996af2011-01-23 12:33:16 -0200217 struct v4l2_ctrl *brightness;
218 struct v4l2_ctrl *contrast;
219 struct v4l2_ctrl *saturation;
220 struct v4l2_ctrl *hue;
Hans Verkuila1c894f2011-06-07 06:34:41 -0300221 struct {
222 /* autogain/gain cluster */
223 struct v4l2_ctrl *autogain;
224 struct v4l2_ctrl *gain;
225 };
Hans Verkuil7e996af2011-01-23 12:33:16 -0200226 struct v4l2_ctrl *volume;
Hans Verkuil7088f4d2012-05-02 03:33:52 -0300227 struct v4l2_ctrl *alpha;
Hans Verkuil7e996af2011-01-23 12:33:16 -0200228 struct v4l2_ctrl *button;
229 struct v4l2_ctrl *boolean;
230 struct v4l2_ctrl *int32;
231 struct v4l2_ctrl *int64;
232 struct v4l2_ctrl *menu;
233 struct v4l2_ctrl *string;
Hans Verkuilb6d17a52011-03-29 16:33:11 -0300234 struct v4l2_ctrl *bitmask;
Sakari Ailusc5203312011-08-05 06:38:05 -0300235 struct v4l2_ctrl *int_menu;
Hans Verkuil730947b2010-04-10 04:13:53 -0300236
Mauro Carvalho Chehab55862ac2007-12-13 16:13:37 -0300237 spinlock_t slock;
Brandon Philipsaa9dbac2008-04-02 18:10:59 -0300238 struct mutex mutex;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300239
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300240 struct vivi_dmaqueue vidq;
241
242 /* Several counters */
Hans Verkuil730947b2010-04-10 04:13:53 -0300243 unsigned ms;
Mauro Carvalho Chehabdfd8c042008-01-13 19:36:11 -0300244 unsigned long jiffies;
Hans Verkuil7e996af2011-01-23 12:33:16 -0200245 unsigned button_pressed;
Mauro Carvalho Chehab025341d2007-12-10 04:43:38 -0300246
247 int mv_count; /* Controls bars movement */
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -0300248
249 /* Input Number */
250 int input;
Hans Verkuilc41ee242009-02-14 13:43:44 -0300251
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300252 /* video capture */
Kirill Smelkovc19bec52012-12-26 12:23:26 -0300253 const struct vivi_fmt *fmt;
Kirill Smelkovfe0e9902012-10-23 09:56:59 -0300254 struct v4l2_fract timeperframe;
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300255 unsigned int width, height;
Pawel Osciake007a322011-01-19 13:02:29 -0200256 struct vb2_queue vb_vidq;
Pawel Osciake007a322011-01-19 13:02:29 -0200257 unsigned int field_count;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300258
Hans Verkuil3d51dca2012-05-02 03:15:11 -0300259 u8 bars[9][3];
Kirill Smelkov10ce8442012-11-02 09:10:31 -0300260 u8 line[MAX_WIDTH * 8] __attribute__((__aligned__(4)));
Hans Verkuil3d51dca2012-05-02 03:15:11 -0300261 unsigned int pixelsize;
Hans Verkuil7088f4d2012-05-02 03:33:52 -0300262 u8 alpha_component;
Kirill Smelkove3a8b4d2012-11-02 09:10:30 -0300263 u32 textfg, textbg;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300264};
265
266/* ------------------------------------------------------------------
267 DMA and thread functions
268 ------------------------------------------------------------------*/
269
270/* Bars and Colors should match positions */
271
272enum colors {
273 WHITE,
Hans Verkuil730947b2010-04-10 04:13:53 -0300274 AMBER,
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300275 CYAN,
276 GREEN,
277 MAGENTA,
278 RED,
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300279 BLUE,
280 BLACK,
Hans Verkuil730947b2010-04-10 04:13:53 -0300281 TEXT_BLACK,
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300282};
283
Hans Verkuil730947b2010-04-10 04:13:53 -0300284/* R G B */
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -0300285#define COLOR_WHITE {204, 204, 204}
Hans Verkuil730947b2010-04-10 04:13:53 -0300286#define COLOR_AMBER {208, 208, 0}
287#define COLOR_CYAN { 0, 206, 206}
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -0300288#define COLOR_GREEN { 0, 239, 0}
289#define COLOR_MAGENTA {239, 0, 239}
290#define COLOR_RED {205, 0, 0}
291#define COLOR_BLUE { 0, 0, 255}
292#define COLOR_BLACK { 0, 0, 0}
293
294struct bar_std {
Hans Verkuil730947b2010-04-10 04:13:53 -0300295 u8 bar[9][3];
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300296};
297
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -0300298/* Maximum number of bars are 10 - otherwise, the input print code
299 should be modified */
Kirill Smelkovc19bec52012-12-26 12:23:26 -0300300static const struct bar_std bars[] = {
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -0300301 { /* Standard ITU-R color bar sequence */
Hans Verkuil730947b2010-04-10 04:13:53 -0300302 { COLOR_WHITE, COLOR_AMBER, COLOR_CYAN, COLOR_GREEN,
303 COLOR_MAGENTA, COLOR_RED, COLOR_BLUE, COLOR_BLACK, COLOR_BLACK }
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -0300304 }, {
Hans Verkuil730947b2010-04-10 04:13:53 -0300305 { COLOR_WHITE, COLOR_AMBER, COLOR_BLACK, COLOR_WHITE,
306 COLOR_AMBER, COLOR_BLACK, COLOR_WHITE, COLOR_AMBER, COLOR_BLACK }
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -0300307 }, {
Hans Verkuil730947b2010-04-10 04:13:53 -0300308 { COLOR_WHITE, COLOR_CYAN, COLOR_BLACK, COLOR_WHITE,
309 COLOR_CYAN, COLOR_BLACK, COLOR_WHITE, COLOR_CYAN, COLOR_BLACK }
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -0300310 }, {
Hans Verkuil730947b2010-04-10 04:13:53 -0300311 { COLOR_WHITE, COLOR_GREEN, COLOR_BLACK, COLOR_WHITE,
312 COLOR_GREEN, COLOR_BLACK, COLOR_WHITE, COLOR_GREEN, COLOR_BLACK }
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -0300313 },
314};
315
316#define NUM_INPUTS ARRAY_SIZE(bars)
317
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300318#define TO_Y(r, g, b) \
319 (((16829 * r + 33039 * g + 6416 * b + 32768) >> 16) + 16)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300320/* RGB to V(Cr) Color transform */
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300321#define TO_V(r, g, b) \
322 (((28784 * r - 24103 * g - 4681 * b + 32768) >> 16) + 128)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300323/* RGB to U(Cb) Color transform */
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300324#define TO_U(r, g, b) \
325 (((-9714 * r - 19070 * g + 28784 * b + 32768) >> 16) + 128)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300326
Mauro Carvalho Chehabc285add2009-06-25 16:28:23 -0300327/* precalculate color bar values to speed up rendering */
Hans Verkuil730947b2010-04-10 04:13:53 -0300328static void precalculate_bars(struct vivi_dev *dev)
Mauro Carvalho Chehabc285add2009-06-25 16:28:23 -0300329{
Hans Verkuil730947b2010-04-10 04:13:53 -0300330 u8 r, g, b;
Mauro Carvalho Chehabc285add2009-06-25 16:28:23 -0300331 int k, is_yuv;
332
Hans Verkuil730947b2010-04-10 04:13:53 -0300333 for (k = 0; k < 9; k++) {
334 r = bars[dev->input].bar[k][0];
335 g = bars[dev->input].bar[k][1];
336 b = bars[dev->input].bar[k][2];
Hans Verkuil0a3a8a32012-08-06 10:36:18 -0300337 is_yuv = dev->fmt->is_yuv;
Mauro Carvalho Chehabc285add2009-06-25 16:28:23 -0300338
Hans Verkuil730947b2010-04-10 04:13:53 -0300339 switch (dev->fmt->fourcc) {
Mauro Carvalho Chehabc285add2009-06-25 16:28:23 -0300340 case V4L2_PIX_FMT_RGB565:
341 case V4L2_PIX_FMT_RGB565X:
342 r >>= 3;
343 g >>= 2;
344 b >>= 3;
345 break;
346 case V4L2_PIX_FMT_RGB555:
347 case V4L2_PIX_FMT_RGB555X:
348 r >>= 3;
349 g >>= 3;
350 b >>= 3;
351 break;
Hans Verkuil0a3a8a32012-08-06 10:36:18 -0300352 case V4L2_PIX_FMT_YUYV:
353 case V4L2_PIX_FMT_UYVY:
354 case V4L2_PIX_FMT_YVYU:
355 case V4L2_PIX_FMT_VYUY:
Hans Verkuil3d51dca2012-05-02 03:15:11 -0300356 case V4L2_PIX_FMT_RGB24:
357 case V4L2_PIX_FMT_BGR24:
358 case V4L2_PIX_FMT_RGB32:
359 case V4L2_PIX_FMT_BGR32:
360 break;
Mauro Carvalho Chehabc285add2009-06-25 16:28:23 -0300361 }
362
363 if (is_yuv) {
Hans Verkuil730947b2010-04-10 04:13:53 -0300364 dev->bars[k][0] = TO_Y(r, g, b); /* Luma */
365 dev->bars[k][1] = TO_U(r, g, b); /* Cb */
366 dev->bars[k][2] = TO_V(r, g, b); /* Cr */
Mauro Carvalho Chehabc285add2009-06-25 16:28:23 -0300367 } else {
Hans Verkuil730947b2010-04-10 04:13:53 -0300368 dev->bars[k][0] = r;
369 dev->bars[k][1] = g;
370 dev->bars[k][2] = b;
Mauro Carvalho Chehabc285add2009-06-25 16:28:23 -0300371 }
372 }
Mauro Carvalho Chehabc285add2009-06-25 16:28:23 -0300373}
374
Hans Verkuil3d51dca2012-05-02 03:15:11 -0300375/* 'odd' is true for pixels 1, 3, 5, etc. and false for pixels 0, 2, 4, etc. */
376static void gen_twopix(struct vivi_dev *dev, u8 *buf, int colorpos, bool odd)
Magnus Damm74d7c5a2008-10-14 12:46:59 -0300377{
Hans Verkuil730947b2010-04-10 04:13:53 -0300378 u8 r_y, g_u, b_v;
Hans Verkuil7088f4d2012-05-02 03:33:52 -0300379 u8 alpha = dev->alpha_component;
Magnus Damm74d7c5a2008-10-14 12:46:59 -0300380 int color;
Hans Verkuil730947b2010-04-10 04:13:53 -0300381 u8 *p;
Magnus Damm74d7c5a2008-10-14 12:46:59 -0300382
Hans Verkuil730947b2010-04-10 04:13:53 -0300383 r_y = dev->bars[colorpos][0]; /* R or precalculated Y */
384 g_u = dev->bars[colorpos][1]; /* G or precalculated U */
385 b_v = dev->bars[colorpos][2]; /* B or precalculated V */
Magnus Damm74d7c5a2008-10-14 12:46:59 -0300386
Hans Verkuil3d51dca2012-05-02 03:15:11 -0300387 for (color = 0; color < dev->pixelsize; color++) {
Magnus Damm74d7c5a2008-10-14 12:46:59 -0300388 p = buf + color;
389
Hans Verkuil730947b2010-04-10 04:13:53 -0300390 switch (dev->fmt->fourcc) {
Magnus Dammd891f472008-10-14 12:47:09 -0300391 case V4L2_PIX_FMT_YUYV:
392 switch (color) {
393 case 0:
Magnus Dammd891f472008-10-14 12:47:09 -0300394 *p = r_y;
395 break;
396 case 1:
Hans Verkuil3d51dca2012-05-02 03:15:11 -0300397 *p = odd ? b_v : g_u;
Magnus Dammd891f472008-10-14 12:47:09 -0300398 break;
399 }
Magnus Damm74d7c5a2008-10-14 12:46:59 -0300400 break;
Magnus Dammfca36ba2008-10-14 12:47:25 -0300401 case V4L2_PIX_FMT_UYVY:
402 switch (color) {
Hans Verkuil3d51dca2012-05-02 03:15:11 -0300403 case 0:
404 *p = odd ? b_v : g_u;
405 break;
Magnus Dammfca36ba2008-10-14 12:47:25 -0300406 case 1:
Magnus Dammfca36ba2008-10-14 12:47:25 -0300407 *p = r_y;
408 break;
Hans Verkuil3d51dca2012-05-02 03:15:11 -0300409 }
410 break;
411 case V4L2_PIX_FMT_YVYU:
412 switch (color) {
Magnus Dammfca36ba2008-10-14 12:47:25 -0300413 case 0:
Hans Verkuil3d51dca2012-05-02 03:15:11 -0300414 *p = r_y;
Magnus Dammfca36ba2008-10-14 12:47:25 -0300415 break;
Hans Verkuil3d51dca2012-05-02 03:15:11 -0300416 case 1:
417 *p = odd ? g_u : b_v;
418 break;
419 }
420 break;
421 case V4L2_PIX_FMT_VYUY:
422 switch (color) {
423 case 0:
424 *p = odd ? g_u : b_v;
425 break;
426 case 1:
427 *p = r_y;
Magnus Dammfca36ba2008-10-14 12:47:25 -0300428 break;
429 }
430 break;
Magnus Dammaeadb5d2008-10-14 12:47:35 -0300431 case V4L2_PIX_FMT_RGB565:
432 switch (color) {
433 case 0:
Magnus Dammaeadb5d2008-10-14 12:47:35 -0300434 *p = (g_u << 5) | b_v;
435 break;
436 case 1:
Magnus Dammaeadb5d2008-10-14 12:47:35 -0300437 *p = (r_y << 3) | (g_u >> 3);
438 break;
439 }
440 break;
441 case V4L2_PIX_FMT_RGB565X:
442 switch (color) {
443 case 0:
Magnus Dammaeadb5d2008-10-14 12:47:35 -0300444 *p = (r_y << 3) | (g_u >> 3);
445 break;
446 case 1:
Magnus Dammaeadb5d2008-10-14 12:47:35 -0300447 *p = (g_u << 5) | b_v;
448 break;
449 }
450 break;
Magnus Dammdef52392008-10-14 12:47:43 -0300451 case V4L2_PIX_FMT_RGB555:
452 switch (color) {
453 case 0:
Magnus Dammdef52392008-10-14 12:47:43 -0300454 *p = (g_u << 5) | b_v;
455 break;
456 case 1:
Hans Verkuil7088f4d2012-05-02 03:33:52 -0300457 *p = (alpha & 0x80) | (r_y << 2) | (g_u >> 3);
Magnus Dammdef52392008-10-14 12:47:43 -0300458 break;
459 }
460 break;
461 case V4L2_PIX_FMT_RGB555X:
462 switch (color) {
463 case 0:
Hans Verkuil7088f4d2012-05-02 03:33:52 -0300464 *p = (alpha & 0x80) | (r_y << 2) | (g_u >> 3);
Magnus Dammdef52392008-10-14 12:47:43 -0300465 break;
466 case 1:
Magnus Dammdef52392008-10-14 12:47:43 -0300467 *p = (g_u << 5) | b_v;
468 break;
469 }
470 break;
Hans Verkuil3d51dca2012-05-02 03:15:11 -0300471 case V4L2_PIX_FMT_RGB24:
472 switch (color) {
473 case 0:
474 *p = r_y;
475 break;
476 case 1:
477 *p = g_u;
478 break;
479 case 2:
480 *p = b_v;
481 break;
482 }
483 break;
484 case V4L2_PIX_FMT_BGR24:
485 switch (color) {
486 case 0:
487 *p = b_v;
488 break;
489 case 1:
490 *p = g_u;
491 break;
492 case 2:
493 *p = r_y;
494 break;
495 }
496 break;
497 case V4L2_PIX_FMT_RGB32:
498 switch (color) {
499 case 0:
Hans Verkuil7088f4d2012-05-02 03:33:52 -0300500 *p = alpha;
Hans Verkuil3d51dca2012-05-02 03:15:11 -0300501 break;
502 case 1:
503 *p = r_y;
504 break;
505 case 2:
506 *p = g_u;
507 break;
508 case 3:
509 *p = b_v;
510 break;
511 }
512 break;
513 case V4L2_PIX_FMT_BGR32:
514 switch (color) {
515 case 0:
516 *p = b_v;
517 break;
518 case 1:
519 *p = g_u;
520 break;
521 case 2:
522 *p = r_y;
523 break;
524 case 3:
Hans Verkuil7088f4d2012-05-02 03:33:52 -0300525 *p = alpha;
Hans Verkuil3d51dca2012-05-02 03:15:11 -0300526 break;
527 }
528 break;
Magnus Damm74d7c5a2008-10-14 12:46:59 -0300529 }
530 }
531}
532
Hans Verkuil730947b2010-04-10 04:13:53 -0300533static void precalculate_line(struct vivi_dev *dev)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300534{
Kirill Smelkovd40fbf82012-11-02 09:10:33 -0300535 unsigned pixsize = dev->pixelsize;
536 unsigned pixsize2 = 2*pixsize;
537 int colorpos;
538 u8 *pos;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300539
Kirill Smelkovd40fbf82012-11-02 09:10:33 -0300540 for (colorpos = 0; colorpos < 16; ++colorpos) {
541 u8 pix[8];
542 int wstart = colorpos * dev->width / 8;
543 int wend = (colorpos+1) * dev->width / 8;
544 int w;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300545
Kirill Smelkovd40fbf82012-11-02 09:10:33 -0300546 gen_twopix(dev, &pix[0], colorpos % 8, 0);
547 gen_twopix(dev, &pix[pixsize], colorpos % 8, 1);
548
549 for (w = wstart/2*2, pos = dev->line + w*pixsize; w < wend; w += 2, pos += pixsize2)
550 memcpy(pos, pix, pixsize2);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300551 }
Hans Verkuil730947b2010-04-10 04:13:53 -0300552}
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300553
Kirill Smelkove3a8b4d2012-11-02 09:10:30 -0300554/* need this to do rgb24 rendering */
555typedef struct { u16 __; u8 _; } __attribute__((packed)) x24;
556
Hans Verkuil730947b2010-04-10 04:13:53 -0300557static void gen_text(struct vivi_dev *dev, char *basep,
558 int y, int x, char *text)
559{
560 int line;
Kirill Smelkove3a8b4d2012-11-02 09:10:30 -0300561 unsigned int width = dev->width;
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -0300562
Hans Verkuil730947b2010-04-10 04:13:53 -0300563 /* Checks if it is possible to show string */
Kirill Smelkove3a8b4d2012-11-02 09:10:30 -0300564 if (y + 16 >= dev->height || x + strlen(text) * 8 >= width)
Hans Verkuil730947b2010-04-10 04:13:53 -0300565 return;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300566
567 /* Print stream time */
Kirill Smelkove3a8b4d2012-11-02 09:10:30 -0300568#define PRINTSTR(PIXTYPE) do { \
569 PIXTYPE fg; \
570 PIXTYPE bg; \
571 memcpy(&fg, &dev->textfg, sizeof(PIXTYPE)); \
572 memcpy(&bg, &dev->textbg, sizeof(PIXTYPE)); \
573 \
574 for (line = 0; line < 16; line++) { \
575 PIXTYPE *pos = (PIXTYPE *)( basep + ((y + line) * width + x) * sizeof(PIXTYPE) ); \
576 u8 *s; \
577 \
578 for (s = text; *s; s++) { \
579 u8 chr = font8x16[*s * 16 + line]; \
580 \
581 pos[0] = (chr & (0x01 << 7) ? fg : bg); \
582 pos[1] = (chr & (0x01 << 6) ? fg : bg); \
583 pos[2] = (chr & (0x01 << 5) ? fg : bg); \
584 pos[3] = (chr & (0x01 << 4) ? fg : bg); \
585 pos[4] = (chr & (0x01 << 3) ? fg : bg); \
586 pos[5] = (chr & (0x01 << 2) ? fg : bg); \
587 pos[6] = (chr & (0x01 << 1) ? fg : bg); \
588 pos[7] = (chr & (0x01 << 0) ? fg : bg); \
589 \
590 pos += 8; \
591 } \
592 } \
593} while (0)
Hans Verkuil730947b2010-04-10 04:13:53 -0300594
Kirill Smelkove3a8b4d2012-11-02 09:10:30 -0300595 switch (dev->pixelsize) {
596 case 2:
597 PRINTSTR(u16); break;
598 case 4:
599 PRINTSTR(u32); break;
600 case 3:
601 PRINTSTR(x24); break;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300602 }
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300603}
Brandon Philips78718e52008-04-02 18:10:59 -0300604
Hans Verkuil730947b2010-04-10 04:13:53 -0300605static void vivi_fillbuff(struct vivi_dev *dev, struct vivi_buffer *buf)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300606{
Kirill Smelkov13908f32012-11-02 09:10:32 -0300607 int stride = dev->width * dev->pixelsize;
Pawel Osciake007a322011-01-19 13:02:29 -0200608 int hmax = dev->height;
Pawel Osciake007a322011-01-19 13:02:29 -0200609 void *vbuf = vb2_plane_vaddr(&buf->vb, 0);
Hans Verkuil730947b2010-04-10 04:13:53 -0300610 unsigned ms;
611 char str[100];
612 int h, line = 1;
Kirill Smelkov13908f32012-11-02 09:10:32 -0300613 u8 *linestart;
Hans Verkuila1c894f2011-06-07 06:34:41 -0300614 s32 gain;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300615
Marcin Slusarz5c554e62008-06-22 09:11:40 -0300616 if (!vbuf)
Mauro Carvalho Chehab5a037702007-08-02 23:31:54 -0300617 return;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300618
Kirill Smelkov13908f32012-11-02 09:10:32 -0300619 linestart = dev->line + (dev->mv_count % dev->width) * dev->pixelsize;
620
Hans Verkuil730947b2010-04-10 04:13:53 -0300621 for (h = 0; h < hmax; h++)
Kirill Smelkov13908f32012-11-02 09:10:32 -0300622 memcpy(vbuf + h * stride, linestart, stride);
Mauro Carvalho Chehab5a037702007-08-02 23:31:54 -0300623
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300624 /* Updates stream time */
625
Kirill Smelkove3a8b4d2012-11-02 09:10:30 -0300626 gen_twopix(dev, (u8 *)&dev->textbg, TEXT_BLACK, /*odd=*/ 0);
627 gen_twopix(dev, (u8 *)&dev->textfg, WHITE, /*odd=*/ 0);
628
Hans Verkuil730947b2010-04-10 04:13:53 -0300629 dev->ms += jiffies_to_msecs(jiffies - dev->jiffies);
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300630 dev->jiffies = jiffies;
Hans Verkuil730947b2010-04-10 04:13:53 -0300631 ms = dev->ms;
632 snprintf(str, sizeof(str), " %02d:%02d:%02d:%03d ",
633 (ms / (60 * 60 * 1000)) % 24,
634 (ms / (60 * 1000)) % 60,
635 (ms / 1000) % 60,
636 ms % 1000);
637 gen_text(dev, vbuf, line++ * 16, 16, str);
638 snprintf(str, sizeof(str), " %dx%d, input %d ",
639 dev->width, dev->height, dev->input);
640 gen_text(dev, vbuf, line++ * 16, 16, str);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300641
Hans Verkuila1c894f2011-06-07 06:34:41 -0300642 gain = v4l2_ctrl_g_ctrl(dev->gain);
Sakari Ailus77e7c4e2012-01-24 21:05:34 -0300643 mutex_lock(dev->ctrl_handler.lock);
Hans Verkuil730947b2010-04-10 04:13:53 -0300644 snprintf(str, sizeof(str), " brightness %3d, contrast %3d, saturation %3d, hue %d ",
Hans Verkuil7e996af2011-01-23 12:33:16 -0200645 dev->brightness->cur.val,
646 dev->contrast->cur.val,
647 dev->saturation->cur.val,
648 dev->hue->cur.val);
Hans Verkuil730947b2010-04-10 04:13:53 -0300649 gen_text(dev, vbuf, line++ * 16, 16, str);
Hans Verkuil7088f4d2012-05-02 03:33:52 -0300650 snprintf(str, sizeof(str), " autogain %d, gain %3d, volume %3d, alpha 0x%02x ",
651 dev->autogain->cur.val, gain, dev->volume->cur.val,
652 dev->alpha->cur.val);
Hans Verkuil730947b2010-04-10 04:13:53 -0300653 gen_text(dev, vbuf, line++ * 16, 16, str);
Hans Verkuilb6d17a52011-03-29 16:33:11 -0300654 snprintf(str, sizeof(str), " int32 %d, int64 %lld, bitmask %08x ",
Hans Verkuil7e996af2011-01-23 12:33:16 -0200655 dev->int32->cur.val,
Hans Verkuilb6d17a52011-03-29 16:33:11 -0300656 dev->int64->cur.val64,
657 dev->bitmask->cur.val);
Hans Verkuil7e996af2011-01-23 12:33:16 -0200658 gen_text(dev, vbuf, line++ * 16, 16, str);
659 snprintf(str, sizeof(str), " boolean %d, menu %s, string \"%s\" ",
660 dev->boolean->cur.val,
661 dev->menu->qmenu[dev->menu->cur.val],
662 dev->string->cur.string);
Hans Verkuilf70cfc72012-04-19 11:44:18 -0300663 gen_text(dev, vbuf, line++ * 16, 16, str);
Sakari Ailusc5203312011-08-05 06:38:05 -0300664 snprintf(str, sizeof(str), " integer_menu %lld, value %d ",
665 dev->int_menu->qmenu_int[dev->int_menu->cur.val],
666 dev->int_menu->cur.val);
667 gen_text(dev, vbuf, line++ * 16, 16, str);
Sakari Ailus77e7c4e2012-01-24 21:05:34 -0300668 mutex_unlock(dev->ctrl_handler.lock);
Hans Verkuil7e996af2011-01-23 12:33:16 -0200669 if (dev->button_pressed) {
670 dev->button_pressed--;
671 snprintf(str, sizeof(str), " button pressed!");
672 gen_text(dev, vbuf, line++ * 16, 16, str);
673 }
Hans Verkuil730947b2010-04-10 04:13:53 -0300674
675 dev->mv_count += 2;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300676
Hans Verkuilcd779252012-07-25 11:48:53 -0300677 buf->vb.v4l2_buf.field = V4L2_FIELD_INTERLACED;
Pawel Osciake007a322011-01-19 13:02:29 -0200678 dev->field_count++;
679 buf->vb.v4l2_buf.sequence = dev->field_count >> 1;
Sakari Ailus8e6057b2012-09-15 15:14:42 -0300680 v4l2_get_timestamp(&buf->vb.v4l2_buf.timestamp);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300681}
682
Hans Verkuil730947b2010-04-10 04:13:53 -0300683static void vivi_thread_tick(struct vivi_dev *dev)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300684{
Brandon Philips78718e52008-04-02 18:10:59 -0300685 struct vivi_dmaqueue *dma_q = &dev->vidq;
Hans Verkuil730947b2010-04-10 04:13:53 -0300686 struct vivi_buffer *buf;
Brandon Philips78718e52008-04-02 18:10:59 -0300687 unsigned long flags = 0;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300688
Brandon Philips78718e52008-04-02 18:10:59 -0300689 dprintk(dev, 1, "Thread tick\n");
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300690
Brandon Philips78718e52008-04-02 18:10:59 -0300691 spin_lock_irqsave(&dev->slock, flags);
692 if (list_empty(&dma_q->active)) {
693 dprintk(dev, 1, "No active queue to serve\n");
Hans Verkuil1de5be52011-07-05 07:19:23 -0300694 spin_unlock_irqrestore(&dev->slock, flags);
695 return;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300696 }
Brandon Philips78718e52008-04-02 18:10:59 -0300697
Pawel Osciake007a322011-01-19 13:02:29 -0200698 buf = list_entry(dma_q->active.next, struct vivi_buffer, list);
699 list_del(&buf->list);
Hans Verkuil1de5be52011-07-05 07:19:23 -0300700 spin_unlock_irqrestore(&dev->slock, flags);
Brandon Philips78718e52008-04-02 18:10:59 -0300701
Sakari Ailus8e6057b2012-09-15 15:14:42 -0300702 v4l2_get_timestamp(&buf->vb.v4l2_buf.timestamp);
Brandon Philips78718e52008-04-02 18:10:59 -0300703
704 /* Fill buffer */
Hans Verkuil730947b2010-04-10 04:13:53 -0300705 vivi_fillbuff(dev, buf);
Brandon Philips78718e52008-04-02 18:10:59 -0300706 dprintk(dev, 1, "filled buffer %p\n", buf);
707
Pawel Osciake007a322011-01-19 13:02:29 -0200708 vb2_buffer_done(&buf->vb, VB2_BUF_STATE_DONE);
709 dprintk(dev, 2, "[%p/%d] done\n", buf, buf->vb.v4l2_buf.index);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300710}
711
Kirill Smelkovfe0e9902012-10-23 09:56:59 -0300712#define frames_to_ms(dev, frames) \
713 ((frames * dev->timeperframe.numerator * 1000) / dev->timeperframe.denominator)
Mauro Carvalho Chehab6594ad82007-12-13 16:15:41 -0300714
Hans Verkuil730947b2010-04-10 04:13:53 -0300715static void vivi_sleep(struct vivi_dev *dev)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300716{
Brandon Philips78718e52008-04-02 18:10:59 -0300717 struct vivi_dmaqueue *dma_q = &dev->vidq;
718 int timeout;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300719 DECLARE_WAITQUEUE(wait, current);
720
Harvey Harrison7e28adb2008-04-08 23:20:00 -0300721 dprintk(dev, 1, "%s dma_q=0x%08lx\n", __func__,
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300722 (unsigned long)dma_q);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300723
724 add_wait_queue(&dma_q->wq, &wait);
Mauro Carvalho Chehab6594ad82007-12-13 16:15:41 -0300725 if (kthread_should_stop())
726 goto stop_task;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300727
Mauro Carvalho Chehab6594ad82007-12-13 16:15:41 -0300728 /* Calculate time to wake up */
Kirill Smelkovfe0e9902012-10-23 09:56:59 -0300729 timeout = msecs_to_jiffies(frames_to_ms(dev, 1));
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300730
Hans Verkuil730947b2010-04-10 04:13:53 -0300731 vivi_thread_tick(dev);
Mauro Carvalho Chehab6594ad82007-12-13 16:15:41 -0300732
733 schedule_timeout_interruptible(timeout);
734
735stop_task:
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300736 remove_wait_queue(&dma_q->wq, &wait);
737 try_to_freeze();
738}
739
Adrian Bunk972c3512006-04-27 21:06:50 -0300740static int vivi_thread(void *data)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300741{
Hans Verkuil730947b2010-04-10 04:13:53 -0300742 struct vivi_dev *dev = data;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300743
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300744 dprintk(dev, 1, "thread started\n");
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300745
Rafael J. Wysocki83144182007-07-17 04:03:35 -0700746 set_freezable();
Mauro Carvalho Chehab0b600512007-01-14 08:33:24 -0300747
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300748 for (;;) {
Hans Verkuil730947b2010-04-10 04:13:53 -0300749 vivi_sleep(dev);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300750
751 if (kthread_should_stop())
752 break;
753 }
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300754 dprintk(dev, 1, "thread: exit\n");
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300755 return 0;
756}
757
Pawel Osciake007a322011-01-19 13:02:29 -0200758static int vivi_start_generating(struct vivi_dev *dev)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300759{
Brandon Philips78718e52008-04-02 18:10:59 -0300760 struct vivi_dmaqueue *dma_q = &dev->vidq;
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300761
Harvey Harrison7e28adb2008-04-08 23:20:00 -0300762 dprintk(dev, 1, "%s\n", __func__);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300763
Hans Verkuil730947b2010-04-10 04:13:53 -0300764 /* Resets frame counters */
765 dev->ms = 0;
766 dev->mv_count = 0;
767 dev->jiffies = jiffies;
768
769 dma_q->frame = 0;
770 dma_q->ini_jiffies = jiffies;
Kees Cookf1701682013-07-03 15:04:58 -0700771 dma_q->kthread = kthread_run(vivi_thread, dev, "%s",
772 dev->v4l2_dev.name);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300773
Akinobu Mita054afee2006-12-20 10:04:00 -0300774 if (IS_ERR(dma_q->kthread)) {
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -0300775 v4l2_err(&dev->v4l2_dev, "kernel_thread() failed\n");
Pawel Osciake007a322011-01-19 13:02:29 -0200776 return PTR_ERR(dma_q->kthread);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300777 }
Mauro Carvalho Chehab0b600512007-01-14 08:33:24 -0300778 /* Wakes thread */
779 wake_up_interruptible(&dma_q->wq);
780
Harvey Harrison7e28adb2008-04-08 23:20:00 -0300781 dprintk(dev, 1, "returning from %s\n", __func__);
Pawel Osciake007a322011-01-19 13:02:29 -0200782 return 0;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300783}
784
Pawel Osciake007a322011-01-19 13:02:29 -0200785static void vivi_stop_generating(struct vivi_dev *dev)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300786{
Hans Verkuil730947b2010-04-10 04:13:53 -0300787 struct vivi_dmaqueue *dma_q = &dev->vidq;
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300788
Harvey Harrison7e28adb2008-04-08 23:20:00 -0300789 dprintk(dev, 1, "%s\n", __func__);
Hans Verkuil730947b2010-04-10 04:13:53 -0300790
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300791 /* shutdown control thread */
792 if (dma_q->kthread) {
793 kthread_stop(dma_q->kthread);
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300794 dma_q->kthread = NULL;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300795 }
Hans Verkuil730947b2010-04-10 04:13:53 -0300796
Pawel Osciake007a322011-01-19 13:02:29 -0200797 /*
798 * Typical driver might need to wait here until dma engine stops.
799 * In this case we can abort imiedetly, so it's just a noop.
800 */
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300801
Pawel Osciake007a322011-01-19 13:02:29 -0200802 /* Release all active buffers */
803 while (!list_empty(&dma_q->active)) {
804 struct vivi_buffer *buf;
805 buf = list_entry(dma_q->active.next, struct vivi_buffer, list);
806 list_del(&buf->list);
807 vb2_buffer_done(&buf->vb, VB2_BUF_STATE_ERROR);
808 dprintk(dev, 2, "[%p/%d] done\n", buf, buf->vb.v4l2_buf.index);
809 }
810}
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300811/* ------------------------------------------------------------------
812 Videobuf operations
813 ------------------------------------------------------------------*/
Guennadi Liakhovetskifc714e72011-08-24 10:30:21 -0300814static int queue_setup(struct vb2_queue *vq, const struct v4l2_format *fmt,
815 unsigned int *nbuffers, unsigned int *nplanes,
816 unsigned int sizes[], void *alloc_ctxs[])
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300817{
Pawel Osciake007a322011-01-19 13:02:29 -0200818 struct vivi_dev *dev = vb2_get_drv_priv(vq);
819 unsigned long size;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300820
Hans Verkuil2e90c6c2012-06-22 05:53:31 -0300821 if (fmt)
822 size = fmt->fmt.pix.sizeimage;
823 else
824 size = dev->width * dev->height * dev->pixelsize;
825
826 if (size == 0)
827 return -EINVAL;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300828
Pawel Osciake007a322011-01-19 13:02:29 -0200829 if (0 == *nbuffers)
830 *nbuffers = 32;
Mauro Carvalho Chehab6bb27902007-08-23 16:41:14 -0300831
Pawel Osciake007a322011-01-19 13:02:29 -0200832 while (size * *nbuffers > vid_limit * 1024 * 1024)
833 (*nbuffers)--;
Mauro Carvalho Chehab6bb27902007-08-23 16:41:14 -0300834
Pawel Osciake007a322011-01-19 13:02:29 -0200835 *nplanes = 1;
836
837 sizes[0] = size;
838
839 /*
840 * videobuf2-vmalloc allocator is context-less so no need to set
841 * alloc_ctxs array.
842 */
843
844 dprintk(dev, 1, "%s, count=%d, size=%ld\n", __func__,
845 *nbuffers, size);
Mauro Carvalho Chehab6bb27902007-08-23 16:41:14 -0300846
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300847 return 0;
848}
849
Pawel Osciake007a322011-01-19 13:02:29 -0200850static int buffer_prepare(struct vb2_buffer *vb)
851{
852 struct vivi_dev *dev = vb2_get_drv_priv(vb->vb2_queue);
853 struct vivi_buffer *buf = container_of(vb, struct vivi_buffer, vb);
854 unsigned long size;
855
856 dprintk(dev, 1, "%s, field=%d\n", __func__, vb->v4l2_buf.field);
857
858 BUG_ON(NULL == dev->fmt);
859
860 /*
861 * Theses properties only change when queue is idle, see s_fmt.
862 * The below checks should not be performed here, on each
863 * buffer_prepare (i.e. on each qbuf). Most of the code in this function
864 * should thus be moved to buffer_init and s_fmt.
865 */
Hans Verkuil730947b2010-04-10 04:13:53 -0300866 if (dev->width < 48 || dev->width > MAX_WIDTH ||
867 dev->height < 32 || dev->height > MAX_HEIGHT)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300868 return -EINVAL;
Brandon Philips78718e52008-04-02 18:10:59 -0300869
Hans Verkuil3d51dca2012-05-02 03:15:11 -0300870 size = dev->width * dev->height * dev->pixelsize;
Pawel Osciake007a322011-01-19 13:02:29 -0200871 if (vb2_plane_size(vb, 0) < size) {
872 dprintk(dev, 1, "%s data will not fit into plane (%lu < %lu)\n",
873 __func__, vb2_plane_size(vb, 0), size);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300874 return -EINVAL;
Pawel Osciake007a322011-01-19 13:02:29 -0200875 }
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300876
Pawel Osciake007a322011-01-19 13:02:29 -0200877 vb2_set_plane_payload(&buf->vb, 0, size);
878
879 buf->fmt = dev->fmt;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300880
Hans Verkuil730947b2010-04-10 04:13:53 -0300881 precalculate_bars(dev);
882 precalculate_line(dev);
Mauro Carvalho Chehabc285add2009-06-25 16:28:23 -0300883
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300884 return 0;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300885}
886
Pawel Osciake007a322011-01-19 13:02:29 -0200887static void buffer_queue(struct vb2_buffer *vb)
888{
889 struct vivi_dev *dev = vb2_get_drv_priv(vb->vb2_queue);
Hans Verkuil730947b2010-04-10 04:13:53 -0300890 struct vivi_buffer *buf = container_of(vb, struct vivi_buffer, vb);
Brandon Philips78718e52008-04-02 18:10:59 -0300891 struct vivi_dmaqueue *vidq = &dev->vidq;
Pawel Osciake007a322011-01-19 13:02:29 -0200892 unsigned long flags = 0;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300893
Harvey Harrison7e28adb2008-04-08 23:20:00 -0300894 dprintk(dev, 1, "%s\n", __func__);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300895
Pawel Osciake007a322011-01-19 13:02:29 -0200896 spin_lock_irqsave(&dev->slock, flags);
897 list_add_tail(&buf->list, &vidq->active);
898 spin_unlock_irqrestore(&dev->slock, flags);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300899}
900
Marek Szyprowskibd323e22011-08-29 08:51:49 -0300901static int start_streaming(struct vb2_queue *vq, unsigned int count)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300902{
Pawel Osciake007a322011-01-19 13:02:29 -0200903 struct vivi_dev *dev = vb2_get_drv_priv(vq);
Harvey Harrison7e28adb2008-04-08 23:20:00 -0300904 dprintk(dev, 1, "%s\n", __func__);
Pawel Osciake007a322011-01-19 13:02:29 -0200905 return vivi_start_generating(dev);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300906}
907
Pawel Osciake007a322011-01-19 13:02:29 -0200908/* abort streaming and wait for last buffer */
909static int stop_streaming(struct vb2_queue *vq)
910{
911 struct vivi_dev *dev = vb2_get_drv_priv(vq);
912 dprintk(dev, 1, "%s\n", __func__);
913 vivi_stop_generating(dev);
914 return 0;
915}
916
917static void vivi_lock(struct vb2_queue *vq)
918{
919 struct vivi_dev *dev = vb2_get_drv_priv(vq);
920 mutex_lock(&dev->mutex);
921}
922
923static void vivi_unlock(struct vb2_queue *vq)
924{
925 struct vivi_dev *dev = vb2_get_drv_priv(vq);
926 mutex_unlock(&dev->mutex);
927}
928
929
Kirill Smelkovc19bec52012-12-26 12:23:26 -0300930static const struct vb2_ops vivi_video_qops = {
Pawel Osciake007a322011-01-19 13:02:29 -0200931 .queue_setup = queue_setup,
Pawel Osciake007a322011-01-19 13:02:29 -0200932 .buf_prepare = buffer_prepare,
Pawel Osciake007a322011-01-19 13:02:29 -0200933 .buf_queue = buffer_queue,
934 .start_streaming = start_streaming,
935 .stop_streaming = stop_streaming,
936 .wait_prepare = vivi_unlock,
937 .wait_finish = vivi_lock,
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300938};
939
940/* ------------------------------------------------------------------
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300941 IOCTL vidioc handling
942 ------------------------------------------------------------------*/
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300943static int vidioc_querycap(struct file *file, void *priv,
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300944 struct v4l2_capability *cap)
945{
Hans Verkuil730947b2010-04-10 04:13:53 -0300946 struct vivi_dev *dev = video_drvdata(file);
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -0300947
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300948 strcpy(cap->driver, "vivi");
949 strcpy(cap->card, "vivi");
Hans Verkuil72c2af62012-09-14 06:23:12 -0300950 snprintf(cap->bus_info, sizeof(cap->bus_info),
951 "platform:%s", dev->v4l2_dev.name);
Hans Verkuil23268ae2012-01-24 05:24:36 -0300952 cap->device_caps = V4L2_CAP_VIDEO_CAPTURE | V4L2_CAP_STREAMING |
953 V4L2_CAP_READWRITE;
954 cap->capabilities = cap->device_caps | V4L2_CAP_DEVICE_CAPS;
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300955 return 0;
956}
957
Hans Verkuil78b526a2008-05-28 12:16:41 -0300958static int vidioc_enum_fmt_vid_cap(struct file *file, void *priv,
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300959 struct v4l2_fmtdesc *f)
960{
Kirill Smelkovc19bec52012-12-26 12:23:26 -0300961 const struct vivi_fmt *fmt;
Magnus Dammd891f472008-10-14 12:47:09 -0300962
963 if (f->index >= ARRAY_SIZE(formats))
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300964 return -EINVAL;
965
Magnus Dammd891f472008-10-14 12:47:09 -0300966 fmt = &formats[f->index];
967
968 strlcpy(f->description, fmt->name, sizeof(f->description));
969 f->pixelformat = fmt->fourcc;
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300970 return 0;
971}
972
Hans Verkuil78b526a2008-05-28 12:16:41 -0300973static int vidioc_g_fmt_vid_cap(struct file *file, void *priv,
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300974 struct v4l2_format *f)
975{
Hans Verkuil730947b2010-04-10 04:13:53 -0300976 struct vivi_dev *dev = video_drvdata(file);
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300977
Hans Verkuil730947b2010-04-10 04:13:53 -0300978 f->fmt.pix.width = dev->width;
979 f->fmt.pix.height = dev->height;
Hans Verkuilcd779252012-07-25 11:48:53 -0300980 f->fmt.pix.field = V4L2_FIELD_INTERLACED;
Hans Verkuil730947b2010-04-10 04:13:53 -0300981 f->fmt.pix.pixelformat = dev->fmt->fourcc;
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300982 f->fmt.pix.bytesperline =
Hans Verkuil730947b2010-04-10 04:13:53 -0300983 (f->fmt.pix.width * dev->fmt->depth) >> 3;
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300984 f->fmt.pix.sizeimage =
985 f->fmt.pix.height * f->fmt.pix.bytesperline;
Hans Verkuil0a3a8a32012-08-06 10:36:18 -0300986 if (dev->fmt->is_yuv)
Hans Verkuil8c79eec2011-07-29 07:19:46 -0300987 f->fmt.pix.colorspace = V4L2_COLORSPACE_SMPTE170M;
988 else
989 f->fmt.pix.colorspace = V4L2_COLORSPACE_SRGB;
Hans Verkuil730947b2010-04-10 04:13:53 -0300990 return 0;
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300991}
992
Hans Verkuil78b526a2008-05-28 12:16:41 -0300993static int vidioc_try_fmt_vid_cap(struct file *file, void *priv,
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300994 struct v4l2_format *f)
995{
Hans Verkuil730947b2010-04-10 04:13:53 -0300996 struct vivi_dev *dev = video_drvdata(file);
Kirill Smelkovc19bec52012-12-26 12:23:26 -0300997 const struct vivi_fmt *fmt;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300998
Magnus Dammd891f472008-10-14 12:47:09 -0300999 fmt = get_format(f);
1000 if (!fmt) {
Hans Verkuilcd779252012-07-25 11:48:53 -03001001 dprintk(dev, 1, "Fourcc format (0x%08x) unknown.\n",
Magnus Dammd891f472008-10-14 12:47:09 -03001002 f->fmt.pix.pixelformat);
Hans Verkuilcd779252012-07-25 11:48:53 -03001003 f->fmt.pix.pixelformat = V4L2_PIX_FMT_YUYV;
1004 fmt = get_format(f);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001005 }
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001006
Hans Verkuilcd779252012-07-25 11:48:53 -03001007 f->fmt.pix.field = V4L2_FIELD_INTERLACED;
Hans Verkuil730947b2010-04-10 04:13:53 -03001008 v4l_bound_align_image(&f->fmt.pix.width, 48, MAX_WIDTH, 2,
1009 &f->fmt.pix.height, 32, MAX_HEIGHT, 0, 0);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001010 f->fmt.pix.bytesperline =
1011 (f->fmt.pix.width * fmt->depth) >> 3;
1012 f->fmt.pix.sizeimage =
1013 f->fmt.pix.height * f->fmt.pix.bytesperline;
Hans Verkuil0a3a8a32012-08-06 10:36:18 -03001014 if (fmt->is_yuv)
Hans Verkuil8c79eec2011-07-29 07:19:46 -03001015 f->fmt.pix.colorspace = V4L2_COLORSPACE_SMPTE170M;
1016 else
1017 f->fmt.pix.colorspace = V4L2_COLORSPACE_SRGB;
Hans Verkuil2f65f462012-08-06 10:43:13 -03001018 f->fmt.pix.priv = 0;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001019 return 0;
1020}
1021
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -03001022static int vidioc_s_fmt_vid_cap(struct file *file, void *priv,
1023 struct v4l2_format *f)
1024{
Hans Verkuil730947b2010-04-10 04:13:53 -03001025 struct vivi_dev *dev = video_drvdata(file);
Pawel Osciake007a322011-01-19 13:02:29 -02001026 struct vb2_queue *q = &dev->vb_vidq;
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -03001027
Hans Verkuil730947b2010-04-10 04:13:53 -03001028 int ret = vidioc_try_fmt_vid_cap(file, priv, f);
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -03001029 if (ret < 0)
1030 return ret;
1031
Hans Verkuilf2ba5a02012-06-22 05:53:02 -03001032 if (vb2_is_busy(q)) {
Hans Verkuil730947b2010-04-10 04:13:53 -03001033 dprintk(dev, 1, "%s device busy\n", __func__);
Pawel Osciake007a322011-01-19 13:02:29 -02001034 return -EBUSY;
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -03001035 }
1036
Hans Verkuil730947b2010-04-10 04:13:53 -03001037 dev->fmt = get_format(f);
Hans Verkuil3d51dca2012-05-02 03:15:11 -03001038 dev->pixelsize = dev->fmt->depth / 8;
Hans Verkuil730947b2010-04-10 04:13:53 -03001039 dev->width = f->fmt.pix.width;
1040 dev->height = f->fmt.pix.height;
Pawel Osciake007a322011-01-19 13:02:29 -02001041
1042 return 0;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001043}
1044
Hans Verkuil77747f72012-08-06 10:37:18 -03001045static int vidioc_enum_framesizes(struct file *file, void *fh,
1046 struct v4l2_frmsizeenum *fsize)
1047{
1048 static const struct v4l2_frmsize_stepwise sizes = {
1049 48, MAX_WIDTH, 4,
1050 32, MAX_HEIGHT, 1
1051 };
1052 int i;
1053
1054 if (fsize->index)
1055 return -EINVAL;
1056 for (i = 0; i < ARRAY_SIZE(formats); i++)
1057 if (formats[i].fourcc == fsize->pixel_format)
1058 break;
1059 if (i == ARRAY_SIZE(formats))
1060 return -EINVAL;
1061 fsize->type = V4L2_FRMSIZE_TYPE_STEPWISE;
1062 fsize->stepwise = sizes;
1063 return 0;
1064}
1065
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001066/* only one input in this sample driver */
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -03001067static int vidioc_enum_input(struct file *file, void *priv,
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001068 struct v4l2_input *inp)
1069{
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -03001070 if (inp->index >= NUM_INPUTS)
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001071 return -EINVAL;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001072
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001073 inp->type = V4L2_INPUT_TYPE_CAMERA;
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -03001074 sprintf(inp->name, "Camera %u", inp->index);
Hans Verkuil730947b2010-04-10 04:13:53 -03001075 return 0;
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001076}
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001077
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -03001078static int vidioc_g_input(struct file *file, void *priv, unsigned int *i)
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001079{
Hans Verkuil730947b2010-04-10 04:13:53 -03001080 struct vivi_dev *dev = video_drvdata(file);
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -03001081
1082 *i = dev->input;
Hans Verkuil730947b2010-04-10 04:13:53 -03001083 return 0;
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001084}
Hans Verkuil730947b2010-04-10 04:13:53 -03001085
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -03001086static int vidioc_s_input(struct file *file, void *priv, unsigned int i)
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001087{
Hans Verkuil730947b2010-04-10 04:13:53 -03001088 struct vivi_dev *dev = video_drvdata(file);
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -03001089
1090 if (i >= NUM_INPUTS)
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001091 return -EINVAL;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001092
Hans Verkuilc7a52f82011-06-07 10:20:23 -03001093 if (i == dev->input)
1094 return 0;
1095
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -03001096 dev->input = i;
Hans Verkuilaf2d68d2013-03-12 03:56:55 -03001097 /*
1098 * Modify the brightness range depending on the input.
1099 * This makes it easy to use vivi to test if applications can
1100 * handle control range modifications and is also how this is
1101 * typically used in practice as different inputs may be hooked
1102 * up to different receivers with different control ranges.
1103 */
1104 v4l2_ctrl_modify_range(dev->brightness,
1105 128 * i, 255 + 128 * i, 1, 127 + 128 * i);
Hans Verkuil730947b2010-04-10 04:13:53 -03001106 precalculate_bars(dev);
1107 precalculate_line(dev);
1108 return 0;
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001109}
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001110
Kirill Smelkovfe0e9902012-10-23 09:56:59 -03001111/* timeperframe is arbitrary and continous */
1112static int vidioc_enum_frameintervals(struct file *file, void *priv,
1113 struct v4l2_frmivalenum *fival)
1114{
Kirill Smelkovc19bec52012-12-26 12:23:26 -03001115 const struct vivi_fmt *fmt;
Kirill Smelkovfe0e9902012-10-23 09:56:59 -03001116
1117 if (fival->index)
1118 return -EINVAL;
1119
1120 fmt = __get_format(fival->pixel_format);
1121 if (!fmt)
1122 return -EINVAL;
1123
1124 /* regarding width & height - we support any */
1125
1126 fival->type = V4L2_FRMIVAL_TYPE_CONTINUOUS;
1127
1128 /* fill in stepwise (step=1.0 is requred by V4L2 spec) */
1129 fival->stepwise.min = tpf_min;
1130 fival->stepwise.max = tpf_max;
1131 fival->stepwise.step = (struct v4l2_fract) {1, 1};
1132
1133 return 0;
1134}
1135
1136static int vidioc_g_parm(struct file *file, void *priv,
1137 struct v4l2_streamparm *parm)
1138{
1139 struct vivi_dev *dev = video_drvdata(file);
1140
1141 if (parm->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
1142 return -EINVAL;
1143
1144 parm->parm.capture.capability = V4L2_CAP_TIMEPERFRAME;
1145 parm->parm.capture.timeperframe = dev->timeperframe;
1146 parm->parm.capture.readbuffers = 1;
1147 return 0;
1148}
1149
1150#define FRACT_CMP(a, OP, b) \
1151 ((u64)(a).numerator * (b).denominator OP (u64)(b).numerator * (a).denominator)
1152
1153static int vidioc_s_parm(struct file *file, void *priv,
1154 struct v4l2_streamparm *parm)
1155{
1156 struct vivi_dev *dev = video_drvdata(file);
1157 struct v4l2_fract tpf;
1158
1159 if (parm->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
1160 return -EINVAL;
1161
1162 tpf = parm->parm.capture.timeperframe;
1163
1164 /* tpf: {*, 0} resets timing; clip to [min, max]*/
1165 tpf = tpf.denominator ? tpf : tpf_default;
1166 tpf = FRACT_CMP(tpf, <, tpf_min) ? tpf_min : tpf;
1167 tpf = FRACT_CMP(tpf, >, tpf_max) ? tpf_max : tpf;
1168
1169 dev->timeperframe = tpf;
1170 parm->parm.capture.timeperframe = tpf;
1171 parm->parm.capture.readbuffers = 1;
1172 return 0;
1173}
1174
Hans Verkuil730947b2010-04-10 04:13:53 -03001175/* --- controls ---------------------------------------------- */
Hans Verkuil7e996af2011-01-23 12:33:16 -02001176
Hans Verkuila1c894f2011-06-07 06:34:41 -03001177static int vivi_g_volatile_ctrl(struct v4l2_ctrl *ctrl)
1178{
1179 struct vivi_dev *dev = container_of(ctrl->handler, struct vivi_dev, ctrl_handler);
1180
1181 if (ctrl == dev->autogain)
1182 dev->gain->val = jiffies & 0xff;
1183 return 0;
1184}
1185
Hans Verkuil7e996af2011-01-23 12:33:16 -02001186static int vivi_s_ctrl(struct v4l2_ctrl *ctrl)
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001187{
Hans Verkuil7e996af2011-01-23 12:33:16 -02001188 struct vivi_dev *dev = container_of(ctrl->handler, struct vivi_dev, ctrl_handler);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001189
Hans Verkuil7088f4d2012-05-02 03:33:52 -03001190 switch (ctrl->id) {
1191 case V4L2_CID_ALPHA_COMPONENT:
1192 dev->alpha_component = ctrl->val;
1193 break;
1194 default:
1195 if (ctrl == dev->button)
1196 dev->button_pressed = 30;
1197 break;
1198 }
Hans Verkuil7e996af2011-01-23 12:33:16 -02001199 return 0;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001200}
1201
1202/* ------------------------------------------------------------------
1203 File operations for the device
1204 ------------------------------------------------------------------*/
1205
Hans Verkuil7e996af2011-01-23 12:33:16 -02001206static const struct v4l2_ctrl_ops vivi_ctrl_ops = {
Hans Verkuila1c894f2011-06-07 06:34:41 -03001207 .g_volatile_ctrl = vivi_g_volatile_ctrl,
Hans Verkuil7e996af2011-01-23 12:33:16 -02001208 .s_ctrl = vivi_s_ctrl,
1209};
1210
1211#define VIVI_CID_CUSTOM_BASE (V4L2_CID_USER_BASE | 0xf000)
1212
1213static const struct v4l2_ctrl_config vivi_ctrl_button = {
1214 .ops = &vivi_ctrl_ops,
1215 .id = VIVI_CID_CUSTOM_BASE + 0,
1216 .name = "Button",
1217 .type = V4L2_CTRL_TYPE_BUTTON,
1218};
1219
1220static const struct v4l2_ctrl_config vivi_ctrl_boolean = {
1221 .ops = &vivi_ctrl_ops,
1222 .id = VIVI_CID_CUSTOM_BASE + 1,
1223 .name = "Boolean",
1224 .type = V4L2_CTRL_TYPE_BOOLEAN,
1225 .min = 0,
1226 .max = 1,
1227 .step = 1,
1228 .def = 1,
1229};
1230
1231static const struct v4l2_ctrl_config vivi_ctrl_int32 = {
1232 .ops = &vivi_ctrl_ops,
1233 .id = VIVI_CID_CUSTOM_BASE + 2,
1234 .name = "Integer 32 Bits",
1235 .type = V4L2_CTRL_TYPE_INTEGER,
Hans Verkuil5b283022011-01-11 17:32:28 -03001236 .min = 0x80000000,
1237 .max = 0x7fffffff,
Hans Verkuil7e996af2011-01-23 12:33:16 -02001238 .step = 1,
1239};
1240
1241static const struct v4l2_ctrl_config vivi_ctrl_int64 = {
1242 .ops = &vivi_ctrl_ops,
1243 .id = VIVI_CID_CUSTOM_BASE + 3,
1244 .name = "Integer 64 Bits",
1245 .type = V4L2_CTRL_TYPE_INTEGER64,
1246};
1247
1248static const char * const vivi_ctrl_menu_strings[] = {
1249 "Menu Item 0 (Skipped)",
1250 "Menu Item 1",
1251 "Menu Item 2 (Skipped)",
1252 "Menu Item 3",
1253 "Menu Item 4",
1254 "Menu Item 5 (Skipped)",
1255 NULL,
1256};
1257
1258static const struct v4l2_ctrl_config vivi_ctrl_menu = {
1259 .ops = &vivi_ctrl_ops,
1260 .id = VIVI_CID_CUSTOM_BASE + 4,
1261 .name = "Menu",
1262 .type = V4L2_CTRL_TYPE_MENU,
1263 .min = 1,
1264 .max = 4,
1265 .def = 3,
1266 .menu_skip_mask = 0x04,
1267 .qmenu = vivi_ctrl_menu_strings,
1268};
1269
1270static const struct v4l2_ctrl_config vivi_ctrl_string = {
1271 .ops = &vivi_ctrl_ops,
1272 .id = VIVI_CID_CUSTOM_BASE + 5,
1273 .name = "String",
1274 .type = V4L2_CTRL_TYPE_STRING,
1275 .min = 2,
1276 .max = 4,
1277 .step = 1,
1278};
1279
Hans Verkuilb6d17a52011-03-29 16:33:11 -03001280static const struct v4l2_ctrl_config vivi_ctrl_bitmask = {
1281 .ops = &vivi_ctrl_ops,
1282 .id = VIVI_CID_CUSTOM_BASE + 6,
1283 .name = "Bitmask",
1284 .type = V4L2_CTRL_TYPE_BITMASK,
1285 .def = 0x80002000,
1286 .min = 0,
1287 .max = 0x80402010,
1288 .step = 0,
1289};
1290
Sakari Ailusc5203312011-08-05 06:38:05 -03001291static const s64 vivi_ctrl_int_menu_values[] = {
1292 1, 1, 2, 3, 5, 8, 13, 21, 42,
1293};
1294
1295static const struct v4l2_ctrl_config vivi_ctrl_int_menu = {
1296 .ops = &vivi_ctrl_ops,
1297 .id = VIVI_CID_CUSTOM_BASE + 7,
1298 .name = "Integer menu",
1299 .type = V4L2_CTRL_TYPE_INTEGER_MENU,
1300 .min = 1,
1301 .max = 8,
1302 .def = 4,
1303 .menu_skip_mask = 0x02,
1304 .qmenu_int = vivi_ctrl_int_menu_values,
1305};
1306
Hans Verkuilbec43662008-12-30 06:58:20 -03001307static const struct v4l2_file_operations vivi_fops = {
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001308 .owner = THIS_MODULE,
Hans Verkuilc7a52f82011-06-07 10:20:23 -03001309 .open = v4l2_fh_open,
Hans Verkuilf2ba5a02012-06-22 05:53:02 -03001310 .release = vb2_fop_release,
1311 .read = vb2_fop_read,
1312 .poll = vb2_fop_poll,
Hans Verkuilfedc6c82010-09-20 18:25:55 -03001313 .unlocked_ioctl = video_ioctl2, /* V4L2 ioctl handler */
Hans Verkuilf2ba5a02012-06-22 05:53:02 -03001314 .mmap = vb2_fop_mmap,
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001315};
1316
Hans Verkuila3998102008-07-21 02:57:38 -03001317static const struct v4l2_ioctl_ops vivi_ioctl_ops = {
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001318 .vidioc_querycap = vidioc_querycap,
Hans Verkuil78b526a2008-05-28 12:16:41 -03001319 .vidioc_enum_fmt_vid_cap = vidioc_enum_fmt_vid_cap,
1320 .vidioc_g_fmt_vid_cap = vidioc_g_fmt_vid_cap,
1321 .vidioc_try_fmt_vid_cap = vidioc_try_fmt_vid_cap,
1322 .vidioc_s_fmt_vid_cap = vidioc_s_fmt_vid_cap,
Hans Verkuil77747f72012-08-06 10:37:18 -03001323 .vidioc_enum_framesizes = vidioc_enum_framesizes,
Hans Verkuilf2ba5a02012-06-22 05:53:02 -03001324 .vidioc_reqbufs = vb2_ioctl_reqbufs,
Hans Verkuil2e90c6c2012-06-22 05:53:31 -03001325 .vidioc_create_bufs = vb2_ioctl_create_bufs,
1326 .vidioc_prepare_buf = vb2_ioctl_prepare_buf,
Hans Verkuilf2ba5a02012-06-22 05:53:02 -03001327 .vidioc_querybuf = vb2_ioctl_querybuf,
1328 .vidioc_qbuf = vb2_ioctl_qbuf,
1329 .vidioc_dqbuf = vb2_ioctl_dqbuf,
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001330 .vidioc_enum_input = vidioc_enum_input,
1331 .vidioc_g_input = vidioc_g_input,
1332 .vidioc_s_input = vidioc_s_input,
Kirill Smelkovfe0e9902012-10-23 09:56:59 -03001333 .vidioc_enum_frameintervals = vidioc_enum_frameintervals,
1334 .vidioc_g_parm = vidioc_g_parm,
1335 .vidioc_s_parm = vidioc_s_parm,
Hans Verkuilf2ba5a02012-06-22 05:53:02 -03001336 .vidioc_streamon = vb2_ioctl_streamon,
1337 .vidioc_streamoff = vb2_ioctl_streamoff,
Hans Verkuile2ecb252012-02-02 08:20:53 -03001338 .vidioc_log_status = v4l2_ctrl_log_status,
Hans Verkuil6d6604f2012-01-27 16:21:10 -03001339 .vidioc_subscribe_event = v4l2_ctrl_subscribe_event,
Hans Verkuilc7a52f82011-06-07 10:20:23 -03001340 .vidioc_unsubscribe_event = v4l2_event_unsubscribe,
Hans Verkuila3998102008-07-21 02:57:38 -03001341};
1342
Kirill Smelkovc19bec52012-12-26 12:23:26 -03001343static const struct video_device vivi_template = {
Hans Verkuila3998102008-07-21 02:57:38 -03001344 .name = "vivi",
Hans Verkuila3998102008-07-21 02:57:38 -03001345 .fops = &vivi_fops,
1346 .ioctl_ops = &vivi_ioctl_ops,
Hans Verkuil70bd97a2012-06-09 11:27:43 -03001347 .release = video_device_release_empty,
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001348};
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001349
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001350/* -----------------------------------------------------------------
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001351 Initialization and module stuff
1352 ------------------------------------------------------------------*/
1353
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001354static int vivi_release(void)
1355{
1356 struct vivi_dev *dev;
1357 struct list_head *list;
1358
1359 while (!list_empty(&vivi_devlist)) {
1360 list = vivi_devlist.next;
1361 list_del(list);
1362 dev = list_entry(list, struct vivi_dev, vivi_devlist);
1363
Laurent Pinchart38c7c032009-11-27 13:57:15 -03001364 v4l2_info(&dev->v4l2_dev, "unregistering %s\n",
Hans Verkuil70bd97a2012-06-09 11:27:43 -03001365 video_device_node_name(&dev->vdev));
1366 video_unregister_device(&dev->vdev);
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001367 v4l2_device_unregister(&dev->v4l2_dev);
Hans Verkuil7e996af2011-01-23 12:33:16 -02001368 v4l2_ctrl_handler_free(&dev->ctrl_handler);
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001369 kfree(dev);
1370 }
1371
1372 return 0;
1373}
1374
Hans Verkuilc41ee242009-02-14 13:43:44 -03001375static int __init vivi_create_instance(int inst)
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001376{
1377 struct vivi_dev *dev;
1378 struct video_device *vfd;
Hans Verkuil7e996af2011-01-23 12:33:16 -02001379 struct v4l2_ctrl_handler *hdl;
Pawel Osciake007a322011-01-19 13:02:29 -02001380 struct vb2_queue *q;
Hans Verkuil730947b2010-04-10 04:13:53 -03001381 int ret;
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001382
1383 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
1384 if (!dev)
1385 return -ENOMEM;
1386
1387 snprintf(dev->v4l2_dev.name, sizeof(dev->v4l2_dev.name),
Hans Verkuilc41ee242009-02-14 13:43:44 -03001388 "%s-%03d", VIVI_MODULE_NAME, inst);
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001389 ret = v4l2_device_register(NULL, &dev->v4l2_dev);
1390 if (ret)
1391 goto free_dev;
1392
Hans Verkuil730947b2010-04-10 04:13:53 -03001393 dev->fmt = &formats[0];
Kirill Smelkovfe0e9902012-10-23 09:56:59 -03001394 dev->timeperframe = tpf_default;
Hans Verkuil730947b2010-04-10 04:13:53 -03001395 dev->width = 640;
1396 dev->height = 480;
Hans Verkuil3d51dca2012-05-02 03:15:11 -03001397 dev->pixelsize = dev->fmt->depth / 8;
Hans Verkuil7e996af2011-01-23 12:33:16 -02001398 hdl = &dev->ctrl_handler;
1399 v4l2_ctrl_handler_init(hdl, 11);
1400 dev->volume = v4l2_ctrl_new_std(hdl, &vivi_ctrl_ops,
1401 V4L2_CID_AUDIO_VOLUME, 0, 255, 1, 200);
1402 dev->brightness = v4l2_ctrl_new_std(hdl, &vivi_ctrl_ops,
1403 V4L2_CID_BRIGHTNESS, 0, 255, 1, 127);
1404 dev->contrast = v4l2_ctrl_new_std(hdl, &vivi_ctrl_ops,
1405 V4L2_CID_CONTRAST, 0, 255, 1, 16);
1406 dev->saturation = v4l2_ctrl_new_std(hdl, &vivi_ctrl_ops,
1407 V4L2_CID_SATURATION, 0, 255, 1, 127);
1408 dev->hue = v4l2_ctrl_new_std(hdl, &vivi_ctrl_ops,
1409 V4L2_CID_HUE, -128, 127, 1, 0);
Hans Verkuila1c894f2011-06-07 06:34:41 -03001410 dev->autogain = v4l2_ctrl_new_std(hdl, &vivi_ctrl_ops,
1411 V4L2_CID_AUTOGAIN, 0, 1, 1, 1);
1412 dev->gain = v4l2_ctrl_new_std(hdl, &vivi_ctrl_ops,
1413 V4L2_CID_GAIN, 0, 255, 1, 100);
Hans Verkuil7088f4d2012-05-02 03:33:52 -03001414 dev->alpha = v4l2_ctrl_new_std(hdl, &vivi_ctrl_ops,
1415 V4L2_CID_ALPHA_COMPONENT, 0, 255, 1, 0);
Hans Verkuil7e996af2011-01-23 12:33:16 -02001416 dev->button = v4l2_ctrl_new_custom(hdl, &vivi_ctrl_button, NULL);
1417 dev->int32 = v4l2_ctrl_new_custom(hdl, &vivi_ctrl_int32, NULL);
1418 dev->int64 = v4l2_ctrl_new_custom(hdl, &vivi_ctrl_int64, NULL);
1419 dev->boolean = v4l2_ctrl_new_custom(hdl, &vivi_ctrl_boolean, NULL);
1420 dev->menu = v4l2_ctrl_new_custom(hdl, &vivi_ctrl_menu, NULL);
1421 dev->string = v4l2_ctrl_new_custom(hdl, &vivi_ctrl_string, NULL);
Hans Verkuilb6d17a52011-03-29 16:33:11 -03001422 dev->bitmask = v4l2_ctrl_new_custom(hdl, &vivi_ctrl_bitmask, NULL);
Sakari Ailusc5203312011-08-05 06:38:05 -03001423 dev->int_menu = v4l2_ctrl_new_custom(hdl, &vivi_ctrl_int_menu, NULL);
Hans Verkuil7e996af2011-01-23 12:33:16 -02001424 if (hdl->error) {
1425 ret = hdl->error;
1426 goto unreg_dev;
1427 }
Hans Verkuila1c894f2011-06-07 06:34:41 -03001428 v4l2_ctrl_auto_cluster(2, &dev->autogain, 0, true);
Hans Verkuil7e996af2011-01-23 12:33:16 -02001429 dev->v4l2_dev.ctrl_handler = hdl;
Hans Verkuil730947b2010-04-10 04:13:53 -03001430
Hans Verkuilfedc6c82010-09-20 18:25:55 -03001431 /* initialize locks */
1432 spin_lock_init(&dev->slock);
Hans Verkuilfedc6c82010-09-20 18:25:55 -03001433
Pawel Osciake007a322011-01-19 13:02:29 -02001434 /* initialize queue */
1435 q = &dev->vb_vidq;
Pawel Osciake007a322011-01-19 13:02:29 -02001436 q->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
Tomasz Stanislawskia626f0a2012-06-14 10:37:47 -03001437 q->io_modes = VB2_MMAP | VB2_USERPTR | VB2_DMABUF | VB2_READ;
Pawel Osciake007a322011-01-19 13:02:29 -02001438 q->drv_priv = dev;
1439 q->buf_struct_size = sizeof(struct vivi_buffer);
1440 q->ops = &vivi_video_qops;
1441 q->mem_ops = &vb2_vmalloc_memops;
Kamil Debski6aa69f92013-01-25 06:29:57 -03001442 q->timestamp_type = V4L2_BUF_FLAG_TIMESTAMP_MONOTONIC;
Pawel Osciake007a322011-01-19 13:02:29 -02001443
Ezequiel Garcia4195ec72012-09-17 09:49:38 -03001444 ret = vb2_queue_init(q);
1445 if (ret)
1446 goto unreg_dev;
Pawel Osciake007a322011-01-19 13:02:29 -02001447
1448 mutex_init(&dev->mutex);
Hans Verkuil730947b2010-04-10 04:13:53 -03001449
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001450 /* init video dma queues */
1451 INIT_LIST_HEAD(&dev->vidq.active);
1452 init_waitqueue_head(&dev->vidq.wq);
1453
Hans Verkuil70bd97a2012-06-09 11:27:43 -03001454 vfd = &dev->vdev;
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001455 *vfd = vivi_template;
Mauro Carvalho Chehabc285add2009-06-25 16:28:23 -03001456 vfd->debug = debug;
Hans Verkuil730947b2010-04-10 04:13:53 -03001457 vfd->v4l2_dev = &dev->v4l2_dev;
Hans Verkuilf2ba5a02012-06-22 05:53:02 -03001458 vfd->queue = q;
Hans Verkuilb1a873a2011-03-22 10:14:07 -03001459 set_bit(V4L2_FL_USE_FH_PRIO, &vfd->flags);
Pawel Osciake007a322011-01-19 13:02:29 -02001460
1461 /*
1462 * Provide a mutex to v4l2 core. It will be used to protect
1463 * all fops and v4l2 ioctls.
1464 */
Hans Verkuilfedc6c82010-09-20 18:25:55 -03001465 vfd->lock = &dev->mutex;
Hans Verkuil70bd97a2012-06-09 11:27:43 -03001466 video_set_drvdata(vfd, dev);
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001467
1468 ret = video_register_device(vfd, VFL_TYPE_GRABBER, video_nr);
1469 if (ret < 0)
Hans Verkuil70bd97a2012-06-09 11:27:43 -03001470 goto unreg_dev;
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001471
1472 /* Now that everything is fine, let's add it to device list */
1473 list_add_tail(&dev->vivi_devlist, &vivi_devlist);
1474
Laurent Pinchart38c7c032009-11-27 13:57:15 -03001475 v4l2_info(&dev->v4l2_dev, "V4L2 device registered as %s\n",
1476 video_device_node_name(vfd));
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001477 return 0;
1478
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001479unreg_dev:
Hans Verkuil7e996af2011-01-23 12:33:16 -02001480 v4l2_ctrl_handler_free(hdl);
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001481 v4l2_device_unregister(&dev->v4l2_dev);
1482free_dev:
1483 kfree(dev);
1484 return ret;
1485}
1486
Mauro Carvalho Chehab980d4f12008-09-03 17:11:53 -03001487/* This routine allocates from 1 to n_devs virtual drivers.
1488
1489 The real maximum number of virtual drivers will depend on how many drivers
1490 will succeed. This is limited to the maximum number of devices that
Hans Verkuil62cfdac2009-02-14 11:37:17 -03001491 videodev supports, which is equal to VIDEO_NUM_DEVICES.
Mauro Carvalho Chehab980d4f12008-09-03 17:11:53 -03001492 */
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001493static int __init vivi_init(void)
1494{
Hans Verkuil730947b2010-04-10 04:13:53 -03001495 const struct font_desc *font = find_font("VGA8x16");
Hans Verkuil9185cbf2009-03-06 09:58:12 -03001496 int ret = 0, i;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001497
Hans Verkuil730947b2010-04-10 04:13:53 -03001498 if (font == NULL) {
1499 printk(KERN_ERR "vivi: could not find font\n");
1500 return -ENODEV;
1501 }
1502 font8x16 = font->data;
1503
Mauro Carvalho Chehab980d4f12008-09-03 17:11:53 -03001504 if (n_devs <= 0)
1505 n_devs = 1;
1506
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001507 for (i = 0; i < n_devs; i++) {
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001508 ret = vivi_create_instance(i);
1509 if (ret) {
1510 /* If some instantiations succeeded, keep driver */
Mauro Carvalho Chehab980d4f12008-09-03 17:11:53 -03001511 if (i)
1512 ret = 0;
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001513 break;
Mauro Carvalho Chehab980d4f12008-09-03 17:11:53 -03001514 }
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001515 }
1516
1517 if (ret < 0) {
Hans Verkuil730947b2010-04-10 04:13:53 -03001518 printk(KERN_ERR "vivi: error %d while loading driver\n", ret);
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001519 return ret;
1520 }
1521
1522 printk(KERN_INFO "Video Technology Magazine Virtual Video "
Mauro Carvalho Chehab1990d502011-06-24 14:45:49 -03001523 "Capture Board ver %s successfully loaded.\n",
1524 VIVI_VERSION);
Mauro Carvalho Chehab980d4f12008-09-03 17:11:53 -03001525
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001526 /* n_devs will reflect the actual number of allocated devices */
1527 n_devs = i;
Mauro Carvalho Chehab980d4f12008-09-03 17:11:53 -03001528
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001529 return ret;
1530}
1531
1532static void __exit vivi_exit(void)
1533{
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001534 vivi_release();
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001535}
1536
1537module_init(vivi_init);
1538module_exit(vivi_exit);