blob: 5e457452a6e128e4311beba9d32a6506ab331940 [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
42#define BUFFER_TIMEOUT msecs_to_jiffies(500) /* 0.5 seconds */
43
Hans Verkuil730947b2010-04-10 04:13:53 -030044#define MAX_WIDTH 1920
45#define MAX_HEIGHT 1200
46
Mauro Carvalho Chehab1990d502011-06-24 14:45:49 -030047#define VIVI_VERSION "0.8.1"
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -030048
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -030049MODULE_DESCRIPTION("Video Technology Magazine Virtual Video Capture Board");
50MODULE_AUTHOR("Mauro Carvalho Chehab, Ted Walther and John Sokol");
51MODULE_LICENSE("Dual BSD/GPL");
Mauro Carvalho Chehab1990d502011-06-24 14:45:49 -030052MODULE_VERSION(VIVI_VERSION);
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -030053
54static unsigned video_nr = -1;
55module_param(video_nr, uint, 0644);
56MODULE_PARM_DESC(video_nr, "videoX start number, -1 is autodetect");
57
58static unsigned n_devs = 1;
59module_param(n_devs, uint, 0644);
60MODULE_PARM_DESC(n_devs, "number of video devices to create");
61
62static unsigned debug;
63module_param(debug, uint, 0644);
64MODULE_PARM_DESC(debug, "activates debug info");
65
66static unsigned int vid_limit = 16;
67module_param(vid_limit, uint, 0644);
68MODULE_PARM_DESC(vid_limit, "capture memory limit in megabytes");
69
Hans Verkuil730947b2010-04-10 04:13:53 -030070/* Global font descriptor */
71static const u8 *font8x16;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -030072
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -030073#define dprintk(dev, level, fmt, arg...) \
74 v4l2_dbg(level, debug, &dev->v4l2_dev, fmt, ## arg)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -030075
76/* ------------------------------------------------------------------
77 Basic structures
78 ------------------------------------------------------------------*/
79
80struct vivi_fmt {
81 char *name;
82 u32 fourcc; /* v4l2 format id */
83 int depth;
84};
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,
91 },
Magnus Dammfca36ba2008-10-14 12:47:25 -030092 {
93 .name = "4:2:2, packed, UYVY",
94 .fourcc = V4L2_PIX_FMT_UYVY,
95 .depth = 16,
96 },
Magnus Dammaeadb5d2008-10-14 12:47:35 -030097 {
Hans Verkuil3d51dca2012-05-02 03:15:11 -030098 .name = "4:2:2, packed, YVYU",
99 .fourcc = V4L2_PIX_FMT_YVYU,
100 .depth = 16,
101 },
102 {
103 .name = "4:2:2, packed, VYUY",
104 .fourcc = V4L2_PIX_FMT_VYUY,
105 .depth = 16,
106 },
107 {
Magnus Dammaeadb5d2008-10-14 12:47:35 -0300108 .name = "RGB565 (LE)",
109 .fourcc = V4L2_PIX_FMT_RGB565, /* gggbbbbb rrrrrggg */
110 .depth = 16,
111 },
112 {
113 .name = "RGB565 (BE)",
114 .fourcc = V4L2_PIX_FMT_RGB565X, /* rrrrrggg gggbbbbb */
115 .depth = 16,
116 },
Magnus Dammdef52392008-10-14 12:47:43 -0300117 {
118 .name = "RGB555 (LE)",
119 .fourcc = V4L2_PIX_FMT_RGB555, /* gggbbbbb arrrrrgg */
120 .depth = 16,
121 },
122 {
123 .name = "RGB555 (BE)",
124 .fourcc = V4L2_PIX_FMT_RGB555X, /* arrrrrgg gggbbbbb */
125 .depth = 16,
126 },
Hans Verkuil3d51dca2012-05-02 03:15:11 -0300127 {
128 .name = "RGB24 (LE)",
129 .fourcc = V4L2_PIX_FMT_RGB24, /* rgb */
130 .depth = 24,
131 },
132 {
133 .name = "RGB24 (BE)",
134 .fourcc = V4L2_PIX_FMT_BGR24, /* bgr */
135 .depth = 24,
136 },
137 {
138 .name = "RGB32 (LE)",
139 .fourcc = V4L2_PIX_FMT_RGB32, /* argb */
140 .depth = 32,
141 },
142 {
143 .name = "RGB32 (BE)",
144 .fourcc = V4L2_PIX_FMT_BGR32, /* bgra */
145 .depth = 32,
146 },
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300147};
148
Magnus Dammd891f472008-10-14 12:47:09 -0300149static struct vivi_fmt *get_format(struct v4l2_format *f)
150{
151 struct vivi_fmt *fmt;
152 unsigned int k;
153
154 for (k = 0; k < ARRAY_SIZE(formats); k++) {
155 fmt = &formats[k];
156 if (fmt->fourcc == f->fmt.pix.pixelformat)
157 break;
158 }
159
160 if (k == ARRAY_SIZE(formats))
161 return NULL;
162
163 return &formats[k];
164}
165
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300166/* buffer for one video frame */
167struct vivi_buffer {
168 /* common v4l buffer stuff -- must be first */
Pawel Osciake007a322011-01-19 13:02:29 -0200169 struct vb2_buffer vb;
170 struct list_head list;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300171 struct vivi_fmt *fmt;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300172};
173
174struct vivi_dmaqueue {
175 struct list_head active;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300176
177 /* thread for generating video stream*/
178 struct task_struct *kthread;
179 wait_queue_head_t wq;
180 /* Counters to control fps rate */
181 int frame;
182 int ini_jiffies;
183};
184
185static LIST_HEAD(vivi_devlist);
186
187struct vivi_dev {
188 struct list_head vivi_devlist;
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -0300189 struct v4l2_device v4l2_dev;
Hans Verkuil7e996af2011-01-23 12:33:16 -0200190 struct v4l2_ctrl_handler ctrl_handler;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300191
Hans Verkuil730947b2010-04-10 04:13:53 -0300192 /* controls */
Hans Verkuil7e996af2011-01-23 12:33:16 -0200193 struct v4l2_ctrl *brightness;
194 struct v4l2_ctrl *contrast;
195 struct v4l2_ctrl *saturation;
196 struct v4l2_ctrl *hue;
Hans Verkuila1c894f2011-06-07 06:34:41 -0300197 struct {
198 /* autogain/gain cluster */
199 struct v4l2_ctrl *autogain;
200 struct v4l2_ctrl *gain;
201 };
Hans Verkuil7e996af2011-01-23 12:33:16 -0200202 struct v4l2_ctrl *volume;
203 struct v4l2_ctrl *button;
204 struct v4l2_ctrl *boolean;
205 struct v4l2_ctrl *int32;
206 struct v4l2_ctrl *int64;
207 struct v4l2_ctrl *menu;
208 struct v4l2_ctrl *string;
Hans Verkuilb6d17a52011-03-29 16:33:11 -0300209 struct v4l2_ctrl *bitmask;
Sakari Ailusc5203312011-08-05 06:38:05 -0300210 struct v4l2_ctrl *int_menu;
Hans Verkuil730947b2010-04-10 04:13:53 -0300211
Mauro Carvalho Chehab55862ac2007-12-13 16:13:37 -0300212 spinlock_t slock;
Brandon Philipsaa9dbac2008-04-02 18:10:59 -0300213 struct mutex mutex;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300214
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300215 /* various device info */
Mauro Carvalho Chehabf905c442007-12-10 04:07:03 -0300216 struct video_device *vfd;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300217
218 struct vivi_dmaqueue vidq;
219
220 /* Several counters */
Hans Verkuil730947b2010-04-10 04:13:53 -0300221 unsigned ms;
Mauro Carvalho Chehabdfd8c042008-01-13 19:36:11 -0300222 unsigned long jiffies;
Hans Verkuil7e996af2011-01-23 12:33:16 -0200223 unsigned button_pressed;
Mauro Carvalho Chehab025341d2007-12-10 04:43:38 -0300224
225 int mv_count; /* Controls bars movement */
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -0300226
227 /* Input Number */
228 int input;
Hans Verkuilc41ee242009-02-14 13:43:44 -0300229
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300230 /* video capture */
231 struct vivi_fmt *fmt;
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300232 unsigned int width, height;
Pawel Osciake007a322011-01-19 13:02:29 -0200233 struct vb2_queue vb_vidq;
234 enum v4l2_field field;
235 unsigned int field_count;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300236
Hans Verkuil3d51dca2012-05-02 03:15:11 -0300237 u8 bars[9][3];
238 u8 line[MAX_WIDTH * 8];
239 unsigned int pixelsize;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300240};
241
242/* ------------------------------------------------------------------
243 DMA and thread functions
244 ------------------------------------------------------------------*/
245
246/* Bars and Colors should match positions */
247
248enum colors {
249 WHITE,
Hans Verkuil730947b2010-04-10 04:13:53 -0300250 AMBER,
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300251 CYAN,
252 GREEN,
253 MAGENTA,
254 RED,
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300255 BLUE,
256 BLACK,
Hans Verkuil730947b2010-04-10 04:13:53 -0300257 TEXT_BLACK,
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300258};
259
Hans Verkuil730947b2010-04-10 04:13:53 -0300260/* R G B */
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -0300261#define COLOR_WHITE {204, 204, 204}
Hans Verkuil730947b2010-04-10 04:13:53 -0300262#define COLOR_AMBER {208, 208, 0}
263#define COLOR_CYAN { 0, 206, 206}
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -0300264#define COLOR_GREEN { 0, 239, 0}
265#define COLOR_MAGENTA {239, 0, 239}
266#define COLOR_RED {205, 0, 0}
267#define COLOR_BLUE { 0, 0, 255}
268#define COLOR_BLACK { 0, 0, 0}
269
270struct bar_std {
Hans Verkuil730947b2010-04-10 04:13:53 -0300271 u8 bar[9][3];
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300272};
273
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -0300274/* Maximum number of bars are 10 - otherwise, the input print code
275 should be modified */
276static struct bar_std bars[] = {
277 { /* Standard ITU-R color bar sequence */
Hans Verkuil730947b2010-04-10 04:13:53 -0300278 { COLOR_WHITE, COLOR_AMBER, COLOR_CYAN, COLOR_GREEN,
279 COLOR_MAGENTA, COLOR_RED, COLOR_BLUE, COLOR_BLACK, COLOR_BLACK }
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -0300280 }, {
Hans Verkuil730947b2010-04-10 04:13:53 -0300281 { COLOR_WHITE, COLOR_AMBER, COLOR_BLACK, COLOR_WHITE,
282 COLOR_AMBER, COLOR_BLACK, COLOR_WHITE, COLOR_AMBER, COLOR_BLACK }
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -0300283 }, {
Hans Verkuil730947b2010-04-10 04:13:53 -0300284 { COLOR_WHITE, COLOR_CYAN, COLOR_BLACK, COLOR_WHITE,
285 COLOR_CYAN, COLOR_BLACK, COLOR_WHITE, COLOR_CYAN, COLOR_BLACK }
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -0300286 }, {
Hans Verkuil730947b2010-04-10 04:13:53 -0300287 { COLOR_WHITE, COLOR_GREEN, COLOR_BLACK, COLOR_WHITE,
288 COLOR_GREEN, COLOR_BLACK, COLOR_WHITE, COLOR_GREEN, COLOR_BLACK }
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -0300289 },
290};
291
292#define NUM_INPUTS ARRAY_SIZE(bars)
293
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300294#define TO_Y(r, g, b) \
295 (((16829 * r + 33039 * g + 6416 * b + 32768) >> 16) + 16)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300296/* RGB to V(Cr) Color transform */
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300297#define TO_V(r, g, b) \
298 (((28784 * r - 24103 * g - 4681 * b + 32768) >> 16) + 128)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300299/* RGB to U(Cb) Color transform */
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300300#define TO_U(r, g, b) \
301 (((-9714 * r - 19070 * g + 28784 * b + 32768) >> 16) + 128)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300302
Mauro Carvalho Chehabc285add2009-06-25 16:28:23 -0300303/* precalculate color bar values to speed up rendering */
Hans Verkuil730947b2010-04-10 04:13:53 -0300304static void precalculate_bars(struct vivi_dev *dev)
Mauro Carvalho Chehabc285add2009-06-25 16:28:23 -0300305{
Hans Verkuil730947b2010-04-10 04:13:53 -0300306 u8 r, g, b;
Mauro Carvalho Chehabc285add2009-06-25 16:28:23 -0300307 int k, is_yuv;
308
Hans Verkuil730947b2010-04-10 04:13:53 -0300309 for (k = 0; k < 9; k++) {
310 r = bars[dev->input].bar[k][0];
311 g = bars[dev->input].bar[k][1];
312 b = bars[dev->input].bar[k][2];
Mauro Carvalho Chehabc285add2009-06-25 16:28:23 -0300313 is_yuv = 0;
314
Hans Verkuil730947b2010-04-10 04:13:53 -0300315 switch (dev->fmt->fourcc) {
Mauro Carvalho Chehabc285add2009-06-25 16:28:23 -0300316 case V4L2_PIX_FMT_YUYV:
317 case V4L2_PIX_FMT_UYVY:
Hans Verkuil3d51dca2012-05-02 03:15:11 -0300318 case V4L2_PIX_FMT_YVYU:
319 case V4L2_PIX_FMT_VYUY:
Mauro Carvalho Chehabc285add2009-06-25 16:28:23 -0300320 is_yuv = 1;
321 break;
322 case V4L2_PIX_FMT_RGB565:
323 case V4L2_PIX_FMT_RGB565X:
324 r >>= 3;
325 g >>= 2;
326 b >>= 3;
327 break;
328 case V4L2_PIX_FMT_RGB555:
329 case V4L2_PIX_FMT_RGB555X:
330 r >>= 3;
331 g >>= 3;
332 b >>= 3;
333 break;
Hans Verkuil3d51dca2012-05-02 03:15:11 -0300334 case V4L2_PIX_FMT_RGB24:
335 case V4L2_PIX_FMT_BGR24:
336 case V4L2_PIX_FMT_RGB32:
337 case V4L2_PIX_FMT_BGR32:
338 break;
Mauro Carvalho Chehabc285add2009-06-25 16:28:23 -0300339 }
340
341 if (is_yuv) {
Hans Verkuil730947b2010-04-10 04:13:53 -0300342 dev->bars[k][0] = TO_Y(r, g, b); /* Luma */
343 dev->bars[k][1] = TO_U(r, g, b); /* Cb */
344 dev->bars[k][2] = TO_V(r, g, b); /* Cr */
Mauro Carvalho Chehabc285add2009-06-25 16:28:23 -0300345 } else {
Hans Verkuil730947b2010-04-10 04:13:53 -0300346 dev->bars[k][0] = r;
347 dev->bars[k][1] = g;
348 dev->bars[k][2] = b;
Mauro Carvalho Chehabc285add2009-06-25 16:28:23 -0300349 }
350 }
Mauro Carvalho Chehabc285add2009-06-25 16:28:23 -0300351}
352
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -0300353#define TSTAMP_MIN_Y 24
354#define TSTAMP_MAX_Y (TSTAMP_MIN_Y + 15)
355#define TSTAMP_INPUT_X 10
356#define TSTAMP_MIN_X (54 + TSTAMP_INPUT_X)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300357
Hans Verkuil3d51dca2012-05-02 03:15:11 -0300358/* 'odd' is true for pixels 1, 3, 5, etc. and false for pixels 0, 2, 4, etc. */
359static void gen_twopix(struct vivi_dev *dev, u8 *buf, int colorpos, bool odd)
Magnus Damm74d7c5a2008-10-14 12:46:59 -0300360{
Hans Verkuil730947b2010-04-10 04:13:53 -0300361 u8 r_y, g_u, b_v;
Magnus Damm74d7c5a2008-10-14 12:46:59 -0300362 int color;
Hans Verkuil730947b2010-04-10 04:13:53 -0300363 u8 *p;
Magnus Damm74d7c5a2008-10-14 12:46:59 -0300364
Hans Verkuil730947b2010-04-10 04:13:53 -0300365 r_y = dev->bars[colorpos][0]; /* R or precalculated Y */
366 g_u = dev->bars[colorpos][1]; /* G or precalculated U */
367 b_v = dev->bars[colorpos][2]; /* B or precalculated V */
Magnus Damm74d7c5a2008-10-14 12:46:59 -0300368
Hans Verkuil3d51dca2012-05-02 03:15:11 -0300369 for (color = 0; color < dev->pixelsize; color++) {
Magnus Damm74d7c5a2008-10-14 12:46:59 -0300370 p = buf + color;
371
Hans Verkuil730947b2010-04-10 04:13:53 -0300372 switch (dev->fmt->fourcc) {
Magnus Dammd891f472008-10-14 12:47:09 -0300373 case V4L2_PIX_FMT_YUYV:
374 switch (color) {
375 case 0:
Magnus Dammd891f472008-10-14 12:47:09 -0300376 *p = r_y;
377 break;
378 case 1:
Hans Verkuil3d51dca2012-05-02 03:15:11 -0300379 *p = odd ? b_v : g_u;
Magnus Dammd891f472008-10-14 12:47:09 -0300380 break;
381 }
Magnus Damm74d7c5a2008-10-14 12:46:59 -0300382 break;
Magnus Dammfca36ba2008-10-14 12:47:25 -0300383 case V4L2_PIX_FMT_UYVY:
384 switch (color) {
Hans Verkuil3d51dca2012-05-02 03:15:11 -0300385 case 0:
386 *p = odd ? b_v : g_u;
387 break;
Magnus Dammfca36ba2008-10-14 12:47:25 -0300388 case 1:
Magnus Dammfca36ba2008-10-14 12:47:25 -0300389 *p = r_y;
390 break;
Hans Verkuil3d51dca2012-05-02 03:15:11 -0300391 }
392 break;
393 case V4L2_PIX_FMT_YVYU:
394 switch (color) {
Magnus Dammfca36ba2008-10-14 12:47:25 -0300395 case 0:
Hans Verkuil3d51dca2012-05-02 03:15:11 -0300396 *p = r_y;
Magnus Dammfca36ba2008-10-14 12:47:25 -0300397 break;
Hans Verkuil3d51dca2012-05-02 03:15:11 -0300398 case 1:
399 *p = odd ? g_u : b_v;
400 break;
401 }
402 break;
403 case V4L2_PIX_FMT_VYUY:
404 switch (color) {
405 case 0:
406 *p = odd ? g_u : b_v;
407 break;
408 case 1:
409 *p = r_y;
Magnus Dammfca36ba2008-10-14 12:47:25 -0300410 break;
411 }
412 break;
Magnus Dammaeadb5d2008-10-14 12:47:35 -0300413 case V4L2_PIX_FMT_RGB565:
414 switch (color) {
415 case 0:
Magnus Dammaeadb5d2008-10-14 12:47:35 -0300416 *p = (g_u << 5) | b_v;
417 break;
418 case 1:
Magnus Dammaeadb5d2008-10-14 12:47:35 -0300419 *p = (r_y << 3) | (g_u >> 3);
420 break;
421 }
422 break;
423 case V4L2_PIX_FMT_RGB565X:
424 switch (color) {
425 case 0:
Magnus Dammaeadb5d2008-10-14 12:47:35 -0300426 *p = (r_y << 3) | (g_u >> 3);
427 break;
428 case 1:
Magnus Dammaeadb5d2008-10-14 12:47:35 -0300429 *p = (g_u << 5) | b_v;
430 break;
431 }
432 break;
Magnus Dammdef52392008-10-14 12:47:43 -0300433 case V4L2_PIX_FMT_RGB555:
434 switch (color) {
435 case 0:
Magnus Dammdef52392008-10-14 12:47:43 -0300436 *p = (g_u << 5) | b_v;
437 break;
438 case 1:
Magnus Dammdef52392008-10-14 12:47:43 -0300439 *p = (r_y << 2) | (g_u >> 3);
440 break;
441 }
442 break;
443 case V4L2_PIX_FMT_RGB555X:
444 switch (color) {
445 case 0:
Magnus Dammdef52392008-10-14 12:47:43 -0300446 *p = (r_y << 2) | (g_u >> 3);
447 break;
448 case 1:
Magnus Dammdef52392008-10-14 12:47:43 -0300449 *p = (g_u << 5) | b_v;
450 break;
451 }
452 break;
Hans Verkuil3d51dca2012-05-02 03:15:11 -0300453 case V4L2_PIX_FMT_RGB24:
454 switch (color) {
455 case 0:
456 *p = r_y;
457 break;
458 case 1:
459 *p = g_u;
460 break;
461 case 2:
462 *p = b_v;
463 break;
464 }
465 break;
466 case V4L2_PIX_FMT_BGR24:
467 switch (color) {
468 case 0:
469 *p = b_v;
470 break;
471 case 1:
472 *p = g_u;
473 break;
474 case 2:
475 *p = r_y;
476 break;
477 }
478 break;
479 case V4L2_PIX_FMT_RGB32:
480 switch (color) {
481 case 0:
482 *p = 0;
483 break;
484 case 1:
485 *p = r_y;
486 break;
487 case 2:
488 *p = g_u;
489 break;
490 case 3:
491 *p = b_v;
492 break;
493 }
494 break;
495 case V4L2_PIX_FMT_BGR32:
496 switch (color) {
497 case 0:
498 *p = b_v;
499 break;
500 case 1:
501 *p = g_u;
502 break;
503 case 2:
504 *p = r_y;
505 break;
506 case 3:
507 *p = 0;
508 break;
509 }
510 break;
Magnus Damm74d7c5a2008-10-14 12:46:59 -0300511 }
512 }
513}
514
Hans Verkuil730947b2010-04-10 04:13:53 -0300515static void precalculate_line(struct vivi_dev *dev)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300516{
Hans Verkuil730947b2010-04-10 04:13:53 -0300517 int w;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300518
Hans Verkuil3d51dca2012-05-02 03:15:11 -0300519 for (w = 0; w < dev->width * 2; w++) {
520 int colorpos = w / (dev->width / 8) % 8;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300521
Hans Verkuil3d51dca2012-05-02 03:15:11 -0300522 gen_twopix(dev, dev->line + w * dev->pixelsize, colorpos, w & 1);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300523 }
Hans Verkuil730947b2010-04-10 04:13:53 -0300524}
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300525
Hans Verkuil730947b2010-04-10 04:13:53 -0300526static void gen_text(struct vivi_dev *dev, char *basep,
527 int y, int x, char *text)
528{
529 int line;
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -0300530
Hans Verkuil730947b2010-04-10 04:13:53 -0300531 /* Checks if it is possible to show string */
532 if (y + 16 >= dev->height || x + strlen(text) * 8 >= dev->width)
533 return;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300534
535 /* Print stream time */
Hans Verkuil730947b2010-04-10 04:13:53 -0300536 for (line = y; line < y + 16; line++) {
537 int j = 0;
Hans Verkuil3d51dca2012-05-02 03:15:11 -0300538 char *pos = basep + line * dev->width * dev->pixelsize + x * dev->pixelsize;
Hans Verkuil730947b2010-04-10 04:13:53 -0300539 char *s;
540
541 for (s = text; *s; s++) {
542 u8 chr = font8x16[*s * 16 + line - y];
543 int i;
544
545 for (i = 0; i < 7; i++, j++) {
Magnus Damm74d7c5a2008-10-14 12:46:59 -0300546 /* Draw white font on black background */
Hans Verkuil730947b2010-04-10 04:13:53 -0300547 if (chr & (1 << (7 - i)))
Hans Verkuil3d51dca2012-05-02 03:15:11 -0300548 gen_twopix(dev, pos + j * dev->pixelsize, WHITE, (x+y) & 1);
Magnus Damm74d7c5a2008-10-14 12:46:59 -0300549 else
Hans Verkuil3d51dca2012-05-02 03:15:11 -0300550 gen_twopix(dev, pos + j * dev->pixelsize, TEXT_BLACK, (x+y) & 1);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300551 }
552 }
553 }
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300554}
Brandon Philips78718e52008-04-02 18:10:59 -0300555
Hans Verkuil730947b2010-04-10 04:13:53 -0300556static void vivi_fillbuff(struct vivi_dev *dev, struct vivi_buffer *buf)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300557{
Pawel Osciake007a322011-01-19 13:02:29 -0200558 int wmax = dev->width;
559 int hmax = dev->height;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300560 struct timeval ts;
Pawel Osciake007a322011-01-19 13:02:29 -0200561 void *vbuf = vb2_plane_vaddr(&buf->vb, 0);
Hans Verkuil730947b2010-04-10 04:13:53 -0300562 unsigned ms;
563 char str[100];
564 int h, line = 1;
Hans Verkuila1c894f2011-06-07 06:34:41 -0300565 s32 gain;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300566
Marcin Slusarz5c554e62008-06-22 09:11:40 -0300567 if (!vbuf)
Mauro Carvalho Chehab5a037702007-08-02 23:31:54 -0300568 return;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300569
Hans Verkuil730947b2010-04-10 04:13:53 -0300570 for (h = 0; h < hmax; h++)
Hans Verkuil3d51dca2012-05-02 03:15:11 -0300571 memcpy(vbuf + h * wmax * dev->pixelsize,
572 dev->line + (dev->mv_count % wmax) * dev->pixelsize,
573 wmax * dev->pixelsize);
Mauro Carvalho Chehab5a037702007-08-02 23:31:54 -0300574
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300575 /* Updates stream time */
576
Hans Verkuil730947b2010-04-10 04:13:53 -0300577 dev->ms += jiffies_to_msecs(jiffies - dev->jiffies);
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300578 dev->jiffies = jiffies;
Hans Verkuil730947b2010-04-10 04:13:53 -0300579 ms = dev->ms;
580 snprintf(str, sizeof(str), " %02d:%02d:%02d:%03d ",
581 (ms / (60 * 60 * 1000)) % 24,
582 (ms / (60 * 1000)) % 60,
583 (ms / 1000) % 60,
584 ms % 1000);
585 gen_text(dev, vbuf, line++ * 16, 16, str);
586 snprintf(str, sizeof(str), " %dx%d, input %d ",
587 dev->width, dev->height, dev->input);
588 gen_text(dev, vbuf, line++ * 16, 16, str);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300589
Hans Verkuila1c894f2011-06-07 06:34:41 -0300590 gain = v4l2_ctrl_g_ctrl(dev->gain);
Sakari Ailus77e7c4e2012-01-24 21:05:34 -0300591 mutex_lock(dev->ctrl_handler.lock);
Hans Verkuil730947b2010-04-10 04:13:53 -0300592 snprintf(str, sizeof(str), " brightness %3d, contrast %3d, saturation %3d, hue %d ",
Hans Verkuil7e996af2011-01-23 12:33:16 -0200593 dev->brightness->cur.val,
594 dev->contrast->cur.val,
595 dev->saturation->cur.val,
596 dev->hue->cur.val);
Hans Verkuil730947b2010-04-10 04:13:53 -0300597 gen_text(dev, vbuf, line++ * 16, 16, str);
Hans Verkuila1c894f2011-06-07 06:34:41 -0300598 snprintf(str, sizeof(str), " autogain %d, gain %3d, volume %3d ",
599 dev->autogain->cur.val, gain, dev->volume->cur.val);
Hans Verkuil730947b2010-04-10 04:13:53 -0300600 gen_text(dev, vbuf, line++ * 16, 16, str);
Hans Verkuilb6d17a52011-03-29 16:33:11 -0300601 snprintf(str, sizeof(str), " int32 %d, int64 %lld, bitmask %08x ",
Hans Verkuil7e996af2011-01-23 12:33:16 -0200602 dev->int32->cur.val,
Hans Verkuilb6d17a52011-03-29 16:33:11 -0300603 dev->int64->cur.val64,
604 dev->bitmask->cur.val);
Hans Verkuil7e996af2011-01-23 12:33:16 -0200605 gen_text(dev, vbuf, line++ * 16, 16, str);
606 snprintf(str, sizeof(str), " boolean %d, menu %s, string \"%s\" ",
607 dev->boolean->cur.val,
608 dev->menu->qmenu[dev->menu->cur.val],
609 dev->string->cur.string);
Hans Verkuilf70cfc72012-04-19 11:44:18 -0300610 gen_text(dev, vbuf, line++ * 16, 16, str);
Sakari Ailusc5203312011-08-05 06:38:05 -0300611 snprintf(str, sizeof(str), " integer_menu %lld, value %d ",
612 dev->int_menu->qmenu_int[dev->int_menu->cur.val],
613 dev->int_menu->cur.val);
614 gen_text(dev, vbuf, line++ * 16, 16, str);
Sakari Ailus77e7c4e2012-01-24 21:05:34 -0300615 mutex_unlock(dev->ctrl_handler.lock);
Hans Verkuil7e996af2011-01-23 12:33:16 -0200616 if (dev->button_pressed) {
617 dev->button_pressed--;
618 snprintf(str, sizeof(str), " button pressed!");
619 gen_text(dev, vbuf, line++ * 16, 16, str);
620 }
Hans Verkuil730947b2010-04-10 04:13:53 -0300621
622 dev->mv_count += 2;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300623
Pawel Osciake007a322011-01-19 13:02:29 -0200624 buf->vb.v4l2_buf.field = dev->field;
625 dev->field_count++;
626 buf->vb.v4l2_buf.sequence = dev->field_count >> 1;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300627 do_gettimeofday(&ts);
Pawel Osciake007a322011-01-19 13:02:29 -0200628 buf->vb.v4l2_buf.timestamp = ts;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300629}
630
Hans Verkuil730947b2010-04-10 04:13:53 -0300631static void vivi_thread_tick(struct vivi_dev *dev)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300632{
Brandon Philips78718e52008-04-02 18:10:59 -0300633 struct vivi_dmaqueue *dma_q = &dev->vidq;
Hans Verkuil730947b2010-04-10 04:13:53 -0300634 struct vivi_buffer *buf;
Brandon Philips78718e52008-04-02 18:10:59 -0300635 unsigned long flags = 0;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300636
Brandon Philips78718e52008-04-02 18:10:59 -0300637 dprintk(dev, 1, "Thread tick\n");
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300638
Brandon Philips78718e52008-04-02 18:10:59 -0300639 spin_lock_irqsave(&dev->slock, flags);
640 if (list_empty(&dma_q->active)) {
641 dprintk(dev, 1, "No active queue to serve\n");
Hans Verkuil1de5be52011-07-05 07:19:23 -0300642 spin_unlock_irqrestore(&dev->slock, flags);
643 return;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300644 }
Brandon Philips78718e52008-04-02 18:10:59 -0300645
Pawel Osciake007a322011-01-19 13:02:29 -0200646 buf = list_entry(dma_q->active.next, struct vivi_buffer, list);
647 list_del(&buf->list);
Hans Verkuil1de5be52011-07-05 07:19:23 -0300648 spin_unlock_irqrestore(&dev->slock, flags);
Brandon Philips78718e52008-04-02 18:10:59 -0300649
Pawel Osciake007a322011-01-19 13:02:29 -0200650 do_gettimeofday(&buf->vb.v4l2_buf.timestamp);
Brandon Philips78718e52008-04-02 18:10:59 -0300651
652 /* Fill buffer */
Hans Verkuil730947b2010-04-10 04:13:53 -0300653 vivi_fillbuff(dev, buf);
Brandon Philips78718e52008-04-02 18:10:59 -0300654 dprintk(dev, 1, "filled buffer %p\n", buf);
655
Pawel Osciake007a322011-01-19 13:02:29 -0200656 vb2_buffer_done(&buf->vb, VB2_BUF_STATE_DONE);
657 dprintk(dev, 2, "[%p/%d] done\n", buf, buf->vb.v4l2_buf.index);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300658}
659
Mauro Carvalho Chehab6594ad82007-12-13 16:15:41 -0300660#define frames_to_ms(frames) \
661 ((frames * WAKE_NUMERATOR * 1000) / WAKE_DENOMINATOR)
662
Hans Verkuil730947b2010-04-10 04:13:53 -0300663static void vivi_sleep(struct vivi_dev *dev)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300664{
Brandon Philips78718e52008-04-02 18:10:59 -0300665 struct vivi_dmaqueue *dma_q = &dev->vidq;
666 int timeout;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300667 DECLARE_WAITQUEUE(wait, current);
668
Harvey Harrison7e28adb2008-04-08 23:20:00 -0300669 dprintk(dev, 1, "%s dma_q=0x%08lx\n", __func__,
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300670 (unsigned long)dma_q);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300671
672 add_wait_queue(&dma_q->wq, &wait);
Mauro Carvalho Chehab6594ad82007-12-13 16:15:41 -0300673 if (kthread_should_stop())
674 goto stop_task;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300675
Mauro Carvalho Chehab6594ad82007-12-13 16:15:41 -0300676 /* Calculate time to wake up */
Brandon Philips78718e52008-04-02 18:10:59 -0300677 timeout = msecs_to_jiffies(frames_to_ms(1));
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300678
Hans Verkuil730947b2010-04-10 04:13:53 -0300679 vivi_thread_tick(dev);
Mauro Carvalho Chehab6594ad82007-12-13 16:15:41 -0300680
681 schedule_timeout_interruptible(timeout);
682
683stop_task:
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300684 remove_wait_queue(&dma_q->wq, &wait);
685 try_to_freeze();
686}
687
Adrian Bunk972c3512006-04-27 21:06:50 -0300688static int vivi_thread(void *data)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300689{
Hans Verkuil730947b2010-04-10 04:13:53 -0300690 struct vivi_dev *dev = data;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300691
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300692 dprintk(dev, 1, "thread started\n");
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300693
Rafael J. Wysocki83144182007-07-17 04:03:35 -0700694 set_freezable();
Mauro Carvalho Chehab0b600512007-01-14 08:33:24 -0300695
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300696 for (;;) {
Hans Verkuil730947b2010-04-10 04:13:53 -0300697 vivi_sleep(dev);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300698
699 if (kthread_should_stop())
700 break;
701 }
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300702 dprintk(dev, 1, "thread: exit\n");
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300703 return 0;
704}
705
Pawel Osciake007a322011-01-19 13:02:29 -0200706static int vivi_start_generating(struct vivi_dev *dev)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300707{
Brandon Philips78718e52008-04-02 18:10:59 -0300708 struct vivi_dmaqueue *dma_q = &dev->vidq;
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300709
Harvey Harrison7e28adb2008-04-08 23:20:00 -0300710 dprintk(dev, 1, "%s\n", __func__);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300711
Hans Verkuil730947b2010-04-10 04:13:53 -0300712 /* Resets frame counters */
713 dev->ms = 0;
714 dev->mv_count = 0;
715 dev->jiffies = jiffies;
716
717 dma_q->frame = 0;
718 dma_q->ini_jiffies = jiffies;
719 dma_q->kthread = kthread_run(vivi_thread, dev, dev->v4l2_dev.name);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300720
Akinobu Mita054afee2006-12-20 10:04:00 -0300721 if (IS_ERR(dma_q->kthread)) {
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -0300722 v4l2_err(&dev->v4l2_dev, "kernel_thread() failed\n");
Pawel Osciake007a322011-01-19 13:02:29 -0200723 return PTR_ERR(dma_q->kthread);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300724 }
Mauro Carvalho Chehab0b600512007-01-14 08:33:24 -0300725 /* Wakes thread */
726 wake_up_interruptible(&dma_q->wq);
727
Harvey Harrison7e28adb2008-04-08 23:20:00 -0300728 dprintk(dev, 1, "returning from %s\n", __func__);
Pawel Osciake007a322011-01-19 13:02:29 -0200729 return 0;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300730}
731
Pawel Osciake007a322011-01-19 13:02:29 -0200732static void vivi_stop_generating(struct vivi_dev *dev)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300733{
Hans Verkuil730947b2010-04-10 04:13:53 -0300734 struct vivi_dmaqueue *dma_q = &dev->vidq;
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300735
Harvey Harrison7e28adb2008-04-08 23:20:00 -0300736 dprintk(dev, 1, "%s\n", __func__);
Hans Verkuil730947b2010-04-10 04:13:53 -0300737
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300738 /* shutdown control thread */
739 if (dma_q->kthread) {
740 kthread_stop(dma_q->kthread);
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300741 dma_q->kthread = NULL;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300742 }
Hans Verkuil730947b2010-04-10 04:13:53 -0300743
Pawel Osciake007a322011-01-19 13:02:29 -0200744 /*
745 * Typical driver might need to wait here until dma engine stops.
746 * In this case we can abort imiedetly, so it's just a noop.
747 */
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300748
Pawel Osciake007a322011-01-19 13:02:29 -0200749 /* Release all active buffers */
750 while (!list_empty(&dma_q->active)) {
751 struct vivi_buffer *buf;
752 buf = list_entry(dma_q->active.next, struct vivi_buffer, list);
753 list_del(&buf->list);
754 vb2_buffer_done(&buf->vb, VB2_BUF_STATE_ERROR);
755 dprintk(dev, 2, "[%p/%d] done\n", buf, buf->vb.v4l2_buf.index);
756 }
757}
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300758/* ------------------------------------------------------------------
759 Videobuf operations
760 ------------------------------------------------------------------*/
Guennadi Liakhovetskifc714e72011-08-24 10:30:21 -0300761static int queue_setup(struct vb2_queue *vq, const struct v4l2_format *fmt,
762 unsigned int *nbuffers, unsigned int *nplanes,
763 unsigned int sizes[], void *alloc_ctxs[])
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300764{
Pawel Osciake007a322011-01-19 13:02:29 -0200765 struct vivi_dev *dev = vb2_get_drv_priv(vq);
766 unsigned long size;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300767
Hans Verkuil3d51dca2012-05-02 03:15:11 -0300768 size = dev->width * dev->height * dev->pixelsize;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300769
Pawel Osciake007a322011-01-19 13:02:29 -0200770 if (0 == *nbuffers)
771 *nbuffers = 32;
Mauro Carvalho Chehab6bb27902007-08-23 16:41:14 -0300772
Pawel Osciake007a322011-01-19 13:02:29 -0200773 while (size * *nbuffers > vid_limit * 1024 * 1024)
774 (*nbuffers)--;
Mauro Carvalho Chehab6bb27902007-08-23 16:41:14 -0300775
Pawel Osciake007a322011-01-19 13:02:29 -0200776 *nplanes = 1;
777
778 sizes[0] = size;
779
780 /*
781 * videobuf2-vmalloc allocator is context-less so no need to set
782 * alloc_ctxs array.
783 */
784
785 dprintk(dev, 1, "%s, count=%d, size=%ld\n", __func__,
786 *nbuffers, size);
Mauro Carvalho Chehab6bb27902007-08-23 16:41:14 -0300787
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300788 return 0;
789}
790
Pawel Osciake007a322011-01-19 13:02:29 -0200791static int buffer_init(struct vb2_buffer *vb)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300792{
Pawel Osciake007a322011-01-19 13:02:29 -0200793 struct vivi_dev *dev = vb2_get_drv_priv(vb->vb2_queue);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300794
Hans Verkuil730947b2010-04-10 04:13:53 -0300795 BUG_ON(NULL == dev->fmt);
Brandon Philips78718e52008-04-02 18:10:59 -0300796
Pawel Osciake007a322011-01-19 13:02:29 -0200797 /*
798 * This callback is called once per buffer, after its allocation.
799 *
800 * Vivi does not allow changing format during streaming, but it is
801 * possible to do so when streaming is paused (i.e. in streamoff state).
802 * Buffers however are not freed when going into streamoff and so
803 * buffer size verification has to be done in buffer_prepare, on each
804 * qbuf.
805 * It would be best to move verification code here to buf_init and
806 * s_fmt though.
807 */
808
809 return 0;
810}
811
812static int buffer_prepare(struct vb2_buffer *vb)
813{
814 struct vivi_dev *dev = vb2_get_drv_priv(vb->vb2_queue);
815 struct vivi_buffer *buf = container_of(vb, struct vivi_buffer, vb);
816 unsigned long size;
817
818 dprintk(dev, 1, "%s, field=%d\n", __func__, vb->v4l2_buf.field);
819
820 BUG_ON(NULL == dev->fmt);
821
822 /*
823 * Theses properties only change when queue is idle, see s_fmt.
824 * The below checks should not be performed here, on each
825 * buffer_prepare (i.e. on each qbuf). Most of the code in this function
826 * should thus be moved to buffer_init and s_fmt.
827 */
Hans Verkuil730947b2010-04-10 04:13:53 -0300828 if (dev->width < 48 || dev->width > MAX_WIDTH ||
829 dev->height < 32 || dev->height > MAX_HEIGHT)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300830 return -EINVAL;
Brandon Philips78718e52008-04-02 18:10:59 -0300831
Hans Verkuil3d51dca2012-05-02 03:15:11 -0300832 size = dev->width * dev->height * dev->pixelsize;
Pawel Osciake007a322011-01-19 13:02:29 -0200833 if (vb2_plane_size(vb, 0) < size) {
834 dprintk(dev, 1, "%s data will not fit into plane (%lu < %lu)\n",
835 __func__, vb2_plane_size(vb, 0), size);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300836 return -EINVAL;
Pawel Osciake007a322011-01-19 13:02:29 -0200837 }
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300838
Pawel Osciake007a322011-01-19 13:02:29 -0200839 vb2_set_plane_payload(&buf->vb, 0, size);
840
841 buf->fmt = dev->fmt;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300842
Hans Verkuil730947b2010-04-10 04:13:53 -0300843 precalculate_bars(dev);
844 precalculate_line(dev);
Mauro Carvalho Chehabc285add2009-06-25 16:28:23 -0300845
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300846 return 0;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300847}
848
Pawel Osciake007a322011-01-19 13:02:29 -0200849static int buffer_finish(struct vb2_buffer *vb)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300850{
Pawel Osciake007a322011-01-19 13:02:29 -0200851 struct vivi_dev *dev = vb2_get_drv_priv(vb->vb2_queue);
852 dprintk(dev, 1, "%s\n", __func__);
853 return 0;
854}
855
856static void buffer_cleanup(struct vb2_buffer *vb)
857{
858 struct vivi_dev *dev = vb2_get_drv_priv(vb->vb2_queue);
859 dprintk(dev, 1, "%s\n", __func__);
860
861}
862
863static void buffer_queue(struct vb2_buffer *vb)
864{
865 struct vivi_dev *dev = vb2_get_drv_priv(vb->vb2_queue);
Hans Verkuil730947b2010-04-10 04:13:53 -0300866 struct vivi_buffer *buf = container_of(vb, struct vivi_buffer, vb);
Brandon Philips78718e52008-04-02 18:10:59 -0300867 struct vivi_dmaqueue *vidq = &dev->vidq;
Pawel Osciake007a322011-01-19 13:02:29 -0200868 unsigned long flags = 0;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300869
Harvey Harrison7e28adb2008-04-08 23:20:00 -0300870 dprintk(dev, 1, "%s\n", __func__);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300871
Pawel Osciake007a322011-01-19 13:02:29 -0200872 spin_lock_irqsave(&dev->slock, flags);
873 list_add_tail(&buf->list, &vidq->active);
874 spin_unlock_irqrestore(&dev->slock, flags);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300875}
876
Marek Szyprowskibd323e22011-08-29 08:51:49 -0300877static int start_streaming(struct vb2_queue *vq, unsigned int count)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300878{
Pawel Osciake007a322011-01-19 13:02:29 -0200879 struct vivi_dev *dev = vb2_get_drv_priv(vq);
Harvey Harrison7e28adb2008-04-08 23:20:00 -0300880 dprintk(dev, 1, "%s\n", __func__);
Pawel Osciake007a322011-01-19 13:02:29 -0200881 return vivi_start_generating(dev);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300882}
883
Pawel Osciake007a322011-01-19 13:02:29 -0200884/* abort streaming and wait for last buffer */
885static int stop_streaming(struct vb2_queue *vq)
886{
887 struct vivi_dev *dev = vb2_get_drv_priv(vq);
888 dprintk(dev, 1, "%s\n", __func__);
889 vivi_stop_generating(dev);
890 return 0;
891}
892
893static void vivi_lock(struct vb2_queue *vq)
894{
895 struct vivi_dev *dev = vb2_get_drv_priv(vq);
896 mutex_lock(&dev->mutex);
897}
898
899static void vivi_unlock(struct vb2_queue *vq)
900{
901 struct vivi_dev *dev = vb2_get_drv_priv(vq);
902 mutex_unlock(&dev->mutex);
903}
904
905
906static struct vb2_ops vivi_video_qops = {
907 .queue_setup = queue_setup,
908 .buf_init = buffer_init,
909 .buf_prepare = buffer_prepare,
910 .buf_finish = buffer_finish,
911 .buf_cleanup = buffer_cleanup,
912 .buf_queue = buffer_queue,
913 .start_streaming = start_streaming,
914 .stop_streaming = stop_streaming,
915 .wait_prepare = vivi_unlock,
916 .wait_finish = vivi_lock,
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300917};
918
919/* ------------------------------------------------------------------
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300920 IOCTL vidioc handling
921 ------------------------------------------------------------------*/
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300922static int vidioc_querycap(struct file *file, void *priv,
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300923 struct v4l2_capability *cap)
924{
Hans Verkuil730947b2010-04-10 04:13:53 -0300925 struct vivi_dev *dev = video_drvdata(file);
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -0300926
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300927 strcpy(cap->driver, "vivi");
928 strcpy(cap->card, "vivi");
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -0300929 strlcpy(cap->bus_info, dev->v4l2_dev.name, sizeof(cap->bus_info));
Hans Verkuil23268ae2012-01-24 05:24:36 -0300930 cap->device_caps = V4L2_CAP_VIDEO_CAPTURE | V4L2_CAP_STREAMING |
931 V4L2_CAP_READWRITE;
932 cap->capabilities = cap->device_caps | V4L2_CAP_DEVICE_CAPS;
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300933 return 0;
934}
935
Hans Verkuil78b526a2008-05-28 12:16:41 -0300936static int vidioc_enum_fmt_vid_cap(struct file *file, void *priv,
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300937 struct v4l2_fmtdesc *f)
938{
Magnus Dammd891f472008-10-14 12:47:09 -0300939 struct vivi_fmt *fmt;
940
941 if (f->index >= ARRAY_SIZE(formats))
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300942 return -EINVAL;
943
Magnus Dammd891f472008-10-14 12:47:09 -0300944 fmt = &formats[f->index];
945
946 strlcpy(f->description, fmt->name, sizeof(f->description));
947 f->pixelformat = fmt->fourcc;
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300948 return 0;
949}
950
Hans Verkuil78b526a2008-05-28 12:16:41 -0300951static int vidioc_g_fmt_vid_cap(struct file *file, void *priv,
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300952 struct v4l2_format *f)
953{
Hans Verkuil730947b2010-04-10 04:13:53 -0300954 struct vivi_dev *dev = video_drvdata(file);
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300955
Hans Verkuil730947b2010-04-10 04:13:53 -0300956 f->fmt.pix.width = dev->width;
957 f->fmt.pix.height = dev->height;
Pawel Osciake007a322011-01-19 13:02:29 -0200958 f->fmt.pix.field = dev->field;
Hans Verkuil730947b2010-04-10 04:13:53 -0300959 f->fmt.pix.pixelformat = dev->fmt->fourcc;
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300960 f->fmt.pix.bytesperline =
Hans Verkuil730947b2010-04-10 04:13:53 -0300961 (f->fmt.pix.width * dev->fmt->depth) >> 3;
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300962 f->fmt.pix.sizeimage =
963 f->fmt.pix.height * f->fmt.pix.bytesperline;
Hans Verkuil8c79eec2011-07-29 07:19:46 -0300964 if (dev->fmt->fourcc == V4L2_PIX_FMT_YUYV ||
965 dev->fmt->fourcc == V4L2_PIX_FMT_UYVY)
966 f->fmt.pix.colorspace = V4L2_COLORSPACE_SMPTE170M;
967 else
968 f->fmt.pix.colorspace = V4L2_COLORSPACE_SRGB;
Hans Verkuil730947b2010-04-10 04:13:53 -0300969 return 0;
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300970}
971
Hans Verkuil78b526a2008-05-28 12:16:41 -0300972static int vidioc_try_fmt_vid_cap(struct file *file, void *priv,
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300973 struct v4l2_format *f)
974{
Hans Verkuil730947b2010-04-10 04:13:53 -0300975 struct vivi_dev *dev = video_drvdata(file);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300976 struct vivi_fmt *fmt;
977 enum v4l2_field field;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300978
Magnus Dammd891f472008-10-14 12:47:09 -0300979 fmt = get_format(f);
980 if (!fmt) {
981 dprintk(dev, 1, "Fourcc format (0x%08x) invalid.\n",
982 f->fmt.pix.pixelformat);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300983 return -EINVAL;
984 }
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300985
986 field = f->fmt.pix.field;
987
988 if (field == V4L2_FIELD_ANY) {
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300989 field = V4L2_FIELD_INTERLACED;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300990 } else if (V4L2_FIELD_INTERLACED != field) {
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300991 dprintk(dev, 1, "Field type invalid.\n");
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300992 return -EINVAL;
993 }
994
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300995 f->fmt.pix.field = field;
Hans Verkuil730947b2010-04-10 04:13:53 -0300996 v4l_bound_align_image(&f->fmt.pix.width, 48, MAX_WIDTH, 2,
997 &f->fmt.pix.height, 32, MAX_HEIGHT, 0, 0);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300998 f->fmt.pix.bytesperline =
999 (f->fmt.pix.width * fmt->depth) >> 3;
1000 f->fmt.pix.sizeimage =
1001 f->fmt.pix.height * f->fmt.pix.bytesperline;
Hans Verkuil8c79eec2011-07-29 07:19:46 -03001002 if (fmt->fourcc == V4L2_PIX_FMT_YUYV ||
1003 fmt->fourcc == V4L2_PIX_FMT_UYVY)
1004 f->fmt.pix.colorspace = V4L2_COLORSPACE_SMPTE170M;
1005 else
1006 f->fmt.pix.colorspace = V4L2_COLORSPACE_SRGB;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001007 return 0;
1008}
1009
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -03001010static int vidioc_s_fmt_vid_cap(struct file *file, void *priv,
1011 struct v4l2_format *f)
1012{
Hans Verkuil730947b2010-04-10 04:13:53 -03001013 struct vivi_dev *dev = video_drvdata(file);
Pawel Osciake007a322011-01-19 13:02:29 -02001014 struct vb2_queue *q = &dev->vb_vidq;
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -03001015
Hans Verkuil730947b2010-04-10 04:13:53 -03001016 int ret = vidioc_try_fmt_vid_cap(file, priv, f);
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -03001017 if (ret < 0)
1018 return ret;
1019
Pawel Osciake007a322011-01-19 13:02:29 -02001020 if (vb2_is_streaming(q)) {
Hans Verkuil730947b2010-04-10 04:13:53 -03001021 dprintk(dev, 1, "%s device busy\n", __func__);
Pawel Osciake007a322011-01-19 13:02:29 -02001022 return -EBUSY;
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -03001023 }
1024
Hans Verkuil730947b2010-04-10 04:13:53 -03001025 dev->fmt = get_format(f);
Hans Verkuil3d51dca2012-05-02 03:15:11 -03001026 dev->pixelsize = dev->fmt->depth / 8;
Hans Verkuil730947b2010-04-10 04:13:53 -03001027 dev->width = f->fmt.pix.width;
1028 dev->height = f->fmt.pix.height;
Pawel Osciake007a322011-01-19 13:02:29 -02001029 dev->field = f->fmt.pix.field;
1030
1031 return 0;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001032}
1033
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -03001034static int vidioc_reqbufs(struct file *file, void *priv,
1035 struct v4l2_requestbuffers *p)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001036{
Hans Verkuil730947b2010-04-10 04:13:53 -03001037 struct vivi_dev *dev = video_drvdata(file);
Pawel Osciake007a322011-01-19 13:02:29 -02001038 return vb2_reqbufs(&dev->vb_vidq, p);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001039}
1040
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -03001041static int vidioc_querybuf(struct file *file, void *priv, struct v4l2_buffer *p)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001042{
Hans Verkuil730947b2010-04-10 04:13:53 -03001043 struct vivi_dev *dev = video_drvdata(file);
Pawel Osciake007a322011-01-19 13:02:29 -02001044 return vb2_querybuf(&dev->vb_vidq, p);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001045}
1046
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -03001047static int vidioc_qbuf(struct file *file, void *priv, struct v4l2_buffer *p)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001048{
Hans Verkuil730947b2010-04-10 04:13:53 -03001049 struct vivi_dev *dev = video_drvdata(file);
Pawel Osciake007a322011-01-19 13:02:29 -02001050 return vb2_qbuf(&dev->vb_vidq, p);
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001051}
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001052
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -03001053static int vidioc_dqbuf(struct file *file, void *priv, struct v4l2_buffer *p)
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001054{
Hans Verkuil730947b2010-04-10 04:13:53 -03001055 struct vivi_dev *dev = video_drvdata(file);
Pawel Osciake007a322011-01-19 13:02:29 -02001056 return vb2_dqbuf(&dev->vb_vidq, p, file->f_flags & O_NONBLOCK);
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001057}
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001058
Adrian Bunkdc46ace2006-06-23 06:42:44 -03001059static int vidioc_streamon(struct file *file, void *priv, enum v4l2_buf_type i)
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001060{
Hans Verkuil730947b2010-04-10 04:13:53 -03001061 struct vivi_dev *dev = video_drvdata(file);
Pawel Osciake007a322011-01-19 13:02:29 -02001062 return vb2_streamon(&dev->vb_vidq, i);
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001063}
1064
Adrian Bunkdc46ace2006-06-23 06:42:44 -03001065static int vidioc_streamoff(struct file *file, void *priv, enum v4l2_buf_type i)
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001066{
Hans Verkuil730947b2010-04-10 04:13:53 -03001067 struct vivi_dev *dev = video_drvdata(file);
Pawel Osciake007a322011-01-19 13:02:29 -02001068 return vb2_streamoff(&dev->vb_vidq, i);
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001069}
1070
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -03001071static int vidioc_s_std(struct file *file, void *priv, v4l2_std_id *i)
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001072{
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001073 return 0;
1074}
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001075
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001076/* only one input in this sample driver */
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -03001077static int vidioc_enum_input(struct file *file, void *priv,
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001078 struct v4l2_input *inp)
1079{
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -03001080 if (inp->index >= NUM_INPUTS)
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001081 return -EINVAL;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001082
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001083 inp->type = V4L2_INPUT_TYPE_CAMERA;
Mauro Carvalho Chehab784c6682007-12-13 06:35:26 -03001084 inp->std = V4L2_STD_525_60;
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -03001085 sprintf(inp->name, "Camera %u", inp->index);
Hans Verkuil730947b2010-04-10 04:13:53 -03001086 return 0;
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001087}
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001088
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -03001089static int vidioc_g_input(struct file *file, void *priv, unsigned int *i)
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001090{
Hans Verkuil730947b2010-04-10 04:13:53 -03001091 struct vivi_dev *dev = video_drvdata(file);
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -03001092
1093 *i = dev->input;
Hans Verkuil730947b2010-04-10 04:13:53 -03001094 return 0;
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001095}
Hans Verkuil730947b2010-04-10 04:13:53 -03001096
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -03001097static int vidioc_s_input(struct file *file, void *priv, unsigned int i)
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001098{
Hans Verkuil730947b2010-04-10 04:13:53 -03001099 struct vivi_dev *dev = video_drvdata(file);
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -03001100
1101 if (i >= NUM_INPUTS)
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001102 return -EINVAL;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001103
Hans Verkuilc7a52f82011-06-07 10:20:23 -03001104 if (i == dev->input)
1105 return 0;
1106
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -03001107 dev->input = i;
Hans Verkuil730947b2010-04-10 04:13:53 -03001108 precalculate_bars(dev);
1109 precalculate_line(dev);
1110 return 0;
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001111}
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001112
Hans Verkuil730947b2010-04-10 04:13:53 -03001113/* --- controls ---------------------------------------------- */
Hans Verkuil7e996af2011-01-23 12:33:16 -02001114
Hans Verkuila1c894f2011-06-07 06:34:41 -03001115static int vivi_g_volatile_ctrl(struct v4l2_ctrl *ctrl)
1116{
1117 struct vivi_dev *dev = container_of(ctrl->handler, struct vivi_dev, ctrl_handler);
1118
1119 if (ctrl == dev->autogain)
1120 dev->gain->val = jiffies & 0xff;
1121 return 0;
1122}
1123
Hans Verkuil7e996af2011-01-23 12:33:16 -02001124static int vivi_s_ctrl(struct v4l2_ctrl *ctrl)
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001125{
Hans Verkuil7e996af2011-01-23 12:33:16 -02001126 struct vivi_dev *dev = container_of(ctrl->handler, struct vivi_dev, ctrl_handler);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001127
Hans Verkuil7e996af2011-01-23 12:33:16 -02001128 if (ctrl == dev->button)
1129 dev->button_pressed = 30;
1130 return 0;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001131}
1132
1133/* ------------------------------------------------------------------
1134 File operations for the device
1135 ------------------------------------------------------------------*/
1136
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001137static ssize_t
1138vivi_read(struct file *file, char __user *data, size_t count, loff_t *ppos)
1139{
Hans Verkuil730947b2010-04-10 04:13:53 -03001140 struct vivi_dev *dev = video_drvdata(file);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001141
Pawel Osciake007a322011-01-19 13:02:29 -02001142 dprintk(dev, 1, "read called\n");
1143 return vb2_read(&dev->vb_vidq, data, count, ppos,
1144 file->f_flags & O_NONBLOCK);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001145}
1146
1147static unsigned int
1148vivi_poll(struct file *file, struct poll_table_struct *wait)
1149{
Hans Verkuil730947b2010-04-10 04:13:53 -03001150 struct vivi_dev *dev = video_drvdata(file);
Pawel Osciake007a322011-01-19 13:02:29 -02001151 struct vb2_queue *q = &dev->vb_vidq;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001152
Harvey Harrison7e28adb2008-04-08 23:20:00 -03001153 dprintk(dev, 1, "%s\n", __func__);
Hans Verkuil0bf0f712011-07-13 04:28:27 -03001154 return vb2_poll(q, file, wait);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001155}
1156
Hans Verkuilbec43662008-12-30 06:58:20 -03001157static int vivi_close(struct file *file)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001158{
Laurent Pinchart50462eb2009-12-10 11:47:13 -02001159 struct video_device *vdev = video_devdata(file);
Hans Verkuil730947b2010-04-10 04:13:53 -03001160 struct vivi_dev *dev = video_drvdata(file);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001161
Pawel Osciake007a322011-01-19 13:02:29 -02001162 dprintk(dev, 1, "close called (dev=%s), file %p\n",
1163 video_device_node_name(vdev), file);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001164
Hans Verkuil2e4784d2011-03-11 20:01:54 -03001165 if (v4l2_fh_is_singular_file(file))
Pawel Osciake007a322011-01-19 13:02:29 -02001166 vb2_queue_release(&dev->vb_vidq);
Hans Verkuil2e4784d2011-03-11 20:01:54 -03001167 return v4l2_fh_release(file);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001168}
1169
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -03001170static int vivi_mmap(struct file *file, struct vm_area_struct *vma)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001171{
Hans Verkuil730947b2010-04-10 04:13:53 -03001172 struct vivi_dev *dev = video_drvdata(file);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001173 int ret;
1174
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -03001175 dprintk(dev, 1, "mmap called, vma=0x%08lx\n", (unsigned long)vma);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001176
Pawel Osciake007a322011-01-19 13:02:29 -02001177 ret = vb2_mmap(&dev->vb_vidq, vma);
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -03001178 dprintk(dev, 1, "vma start=0x%08lx, size=%ld, ret=%d\n",
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001179 (unsigned long)vma->vm_start,
Hans Verkuil730947b2010-04-10 04:13:53 -03001180 (unsigned long)vma->vm_end - (unsigned long)vma->vm_start,
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001181 ret);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001182 return ret;
1183}
1184
Hans Verkuil7e996af2011-01-23 12:33:16 -02001185static const struct v4l2_ctrl_ops vivi_ctrl_ops = {
Hans Verkuila1c894f2011-06-07 06:34:41 -03001186 .g_volatile_ctrl = vivi_g_volatile_ctrl,
Hans Verkuil7e996af2011-01-23 12:33:16 -02001187 .s_ctrl = vivi_s_ctrl,
1188};
1189
1190#define VIVI_CID_CUSTOM_BASE (V4L2_CID_USER_BASE | 0xf000)
1191
1192static const struct v4l2_ctrl_config vivi_ctrl_button = {
1193 .ops = &vivi_ctrl_ops,
1194 .id = VIVI_CID_CUSTOM_BASE + 0,
1195 .name = "Button",
1196 .type = V4L2_CTRL_TYPE_BUTTON,
1197};
1198
1199static const struct v4l2_ctrl_config vivi_ctrl_boolean = {
1200 .ops = &vivi_ctrl_ops,
1201 .id = VIVI_CID_CUSTOM_BASE + 1,
1202 .name = "Boolean",
1203 .type = V4L2_CTRL_TYPE_BOOLEAN,
1204 .min = 0,
1205 .max = 1,
1206 .step = 1,
1207 .def = 1,
1208};
1209
1210static const struct v4l2_ctrl_config vivi_ctrl_int32 = {
1211 .ops = &vivi_ctrl_ops,
1212 .id = VIVI_CID_CUSTOM_BASE + 2,
1213 .name = "Integer 32 Bits",
1214 .type = V4L2_CTRL_TYPE_INTEGER,
Hans Verkuil5b283022011-01-11 17:32:28 -03001215 .min = 0x80000000,
1216 .max = 0x7fffffff,
Hans Verkuil7e996af2011-01-23 12:33:16 -02001217 .step = 1,
1218};
1219
1220static const struct v4l2_ctrl_config vivi_ctrl_int64 = {
1221 .ops = &vivi_ctrl_ops,
1222 .id = VIVI_CID_CUSTOM_BASE + 3,
1223 .name = "Integer 64 Bits",
1224 .type = V4L2_CTRL_TYPE_INTEGER64,
1225};
1226
1227static const char * const vivi_ctrl_menu_strings[] = {
1228 "Menu Item 0 (Skipped)",
1229 "Menu Item 1",
1230 "Menu Item 2 (Skipped)",
1231 "Menu Item 3",
1232 "Menu Item 4",
1233 "Menu Item 5 (Skipped)",
1234 NULL,
1235};
1236
1237static const struct v4l2_ctrl_config vivi_ctrl_menu = {
1238 .ops = &vivi_ctrl_ops,
1239 .id = VIVI_CID_CUSTOM_BASE + 4,
1240 .name = "Menu",
1241 .type = V4L2_CTRL_TYPE_MENU,
1242 .min = 1,
1243 .max = 4,
1244 .def = 3,
1245 .menu_skip_mask = 0x04,
1246 .qmenu = vivi_ctrl_menu_strings,
1247};
1248
1249static const struct v4l2_ctrl_config vivi_ctrl_string = {
1250 .ops = &vivi_ctrl_ops,
1251 .id = VIVI_CID_CUSTOM_BASE + 5,
1252 .name = "String",
1253 .type = V4L2_CTRL_TYPE_STRING,
1254 .min = 2,
1255 .max = 4,
1256 .step = 1,
1257};
1258
Hans Verkuilb6d17a52011-03-29 16:33:11 -03001259static const struct v4l2_ctrl_config vivi_ctrl_bitmask = {
1260 .ops = &vivi_ctrl_ops,
1261 .id = VIVI_CID_CUSTOM_BASE + 6,
1262 .name = "Bitmask",
1263 .type = V4L2_CTRL_TYPE_BITMASK,
1264 .def = 0x80002000,
1265 .min = 0,
1266 .max = 0x80402010,
1267 .step = 0,
1268};
1269
Sakari Ailusc5203312011-08-05 06:38:05 -03001270static const s64 vivi_ctrl_int_menu_values[] = {
1271 1, 1, 2, 3, 5, 8, 13, 21, 42,
1272};
1273
1274static const struct v4l2_ctrl_config vivi_ctrl_int_menu = {
1275 .ops = &vivi_ctrl_ops,
1276 .id = VIVI_CID_CUSTOM_BASE + 7,
1277 .name = "Integer menu",
1278 .type = V4L2_CTRL_TYPE_INTEGER_MENU,
1279 .min = 1,
1280 .max = 8,
1281 .def = 4,
1282 .menu_skip_mask = 0x02,
1283 .qmenu_int = vivi_ctrl_int_menu_values,
1284};
1285
Hans Verkuilbec43662008-12-30 06:58:20 -03001286static const struct v4l2_file_operations vivi_fops = {
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001287 .owner = THIS_MODULE,
Hans Verkuilc7a52f82011-06-07 10:20:23 -03001288 .open = v4l2_fh_open,
Mauro Carvalho Chehabf905c442007-12-10 04:07:03 -03001289 .release = vivi_close,
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001290 .read = vivi_read,
1291 .poll = vivi_poll,
Hans Verkuilfedc6c82010-09-20 18:25:55 -03001292 .unlocked_ioctl = video_ioctl2, /* V4L2 ioctl handler */
Mauro Carvalho Chehab5a037702007-08-02 23:31:54 -03001293 .mmap = vivi_mmap,
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001294};
1295
Hans Verkuila3998102008-07-21 02:57:38 -03001296static const struct v4l2_ioctl_ops vivi_ioctl_ops = {
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001297 .vidioc_querycap = vidioc_querycap,
Hans Verkuil78b526a2008-05-28 12:16:41 -03001298 .vidioc_enum_fmt_vid_cap = vidioc_enum_fmt_vid_cap,
1299 .vidioc_g_fmt_vid_cap = vidioc_g_fmt_vid_cap,
1300 .vidioc_try_fmt_vid_cap = vidioc_try_fmt_vid_cap,
1301 .vidioc_s_fmt_vid_cap = vidioc_s_fmt_vid_cap,
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001302 .vidioc_reqbufs = vidioc_reqbufs,
1303 .vidioc_querybuf = vidioc_querybuf,
1304 .vidioc_qbuf = vidioc_qbuf,
1305 .vidioc_dqbuf = vidioc_dqbuf,
1306 .vidioc_s_std = vidioc_s_std,
1307 .vidioc_enum_input = vidioc_enum_input,
1308 .vidioc_g_input = vidioc_g_input,
1309 .vidioc_s_input = vidioc_s_input,
Hans Verkuil730947b2010-04-10 04:13:53 -03001310 .vidioc_streamon = vidioc_streamon,
1311 .vidioc_streamoff = vidioc_streamoff,
Hans Verkuile2ecb252012-02-02 08:20:53 -03001312 .vidioc_log_status = v4l2_ctrl_log_status,
Hans Verkuil6d6604f2012-01-27 16:21:10 -03001313 .vidioc_subscribe_event = v4l2_ctrl_subscribe_event,
Hans Verkuilc7a52f82011-06-07 10:20:23 -03001314 .vidioc_unsubscribe_event = v4l2_event_unsubscribe,
Hans Verkuila3998102008-07-21 02:57:38 -03001315};
1316
1317static struct video_device vivi_template = {
1318 .name = "vivi",
Hans Verkuila3998102008-07-21 02:57:38 -03001319 .fops = &vivi_fops,
1320 .ioctl_ops = &vivi_ioctl_ops,
Hans Verkuila3998102008-07-21 02:57:38 -03001321 .release = video_device_release,
1322
Mauro Carvalho Chehab784c6682007-12-13 06:35:26 -03001323 .tvnorms = V4L2_STD_525_60,
Mauro Carvalho Chehabe75f9ce2006-11-20 13:19:20 -03001324 .current_norm = V4L2_STD_NTSC_M,
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001325};
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001326
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001327/* -----------------------------------------------------------------
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001328 Initialization and module stuff
1329 ------------------------------------------------------------------*/
1330
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001331static int vivi_release(void)
1332{
1333 struct vivi_dev *dev;
1334 struct list_head *list;
1335
1336 while (!list_empty(&vivi_devlist)) {
1337 list = vivi_devlist.next;
1338 list_del(list);
1339 dev = list_entry(list, struct vivi_dev, vivi_devlist);
1340
Laurent Pinchart38c7c032009-11-27 13:57:15 -03001341 v4l2_info(&dev->v4l2_dev, "unregistering %s\n",
1342 video_device_node_name(dev->vfd));
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001343 video_unregister_device(dev->vfd);
1344 v4l2_device_unregister(&dev->v4l2_dev);
Hans Verkuil7e996af2011-01-23 12:33:16 -02001345 v4l2_ctrl_handler_free(&dev->ctrl_handler);
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001346 kfree(dev);
1347 }
1348
1349 return 0;
1350}
1351
Hans Verkuilc41ee242009-02-14 13:43:44 -03001352static int __init vivi_create_instance(int inst)
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001353{
1354 struct vivi_dev *dev;
1355 struct video_device *vfd;
Hans Verkuil7e996af2011-01-23 12:33:16 -02001356 struct v4l2_ctrl_handler *hdl;
Pawel Osciake007a322011-01-19 13:02:29 -02001357 struct vb2_queue *q;
Hans Verkuil730947b2010-04-10 04:13:53 -03001358 int ret;
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001359
1360 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
1361 if (!dev)
1362 return -ENOMEM;
1363
1364 snprintf(dev->v4l2_dev.name, sizeof(dev->v4l2_dev.name),
Hans Verkuilc41ee242009-02-14 13:43:44 -03001365 "%s-%03d", VIVI_MODULE_NAME, inst);
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001366 ret = v4l2_device_register(NULL, &dev->v4l2_dev);
1367 if (ret)
1368 goto free_dev;
1369
Hans Verkuil730947b2010-04-10 04:13:53 -03001370 dev->fmt = &formats[0];
1371 dev->width = 640;
1372 dev->height = 480;
Hans Verkuil3d51dca2012-05-02 03:15:11 -03001373 dev->pixelsize = dev->fmt->depth / 8;
Hans Verkuil7e996af2011-01-23 12:33:16 -02001374 hdl = &dev->ctrl_handler;
1375 v4l2_ctrl_handler_init(hdl, 11);
1376 dev->volume = v4l2_ctrl_new_std(hdl, &vivi_ctrl_ops,
1377 V4L2_CID_AUDIO_VOLUME, 0, 255, 1, 200);
1378 dev->brightness = v4l2_ctrl_new_std(hdl, &vivi_ctrl_ops,
1379 V4L2_CID_BRIGHTNESS, 0, 255, 1, 127);
1380 dev->contrast = v4l2_ctrl_new_std(hdl, &vivi_ctrl_ops,
1381 V4L2_CID_CONTRAST, 0, 255, 1, 16);
1382 dev->saturation = v4l2_ctrl_new_std(hdl, &vivi_ctrl_ops,
1383 V4L2_CID_SATURATION, 0, 255, 1, 127);
1384 dev->hue = v4l2_ctrl_new_std(hdl, &vivi_ctrl_ops,
1385 V4L2_CID_HUE, -128, 127, 1, 0);
Hans Verkuila1c894f2011-06-07 06:34:41 -03001386 dev->autogain = v4l2_ctrl_new_std(hdl, &vivi_ctrl_ops,
1387 V4L2_CID_AUTOGAIN, 0, 1, 1, 1);
1388 dev->gain = v4l2_ctrl_new_std(hdl, &vivi_ctrl_ops,
1389 V4L2_CID_GAIN, 0, 255, 1, 100);
Hans Verkuil7e996af2011-01-23 12:33:16 -02001390 dev->button = v4l2_ctrl_new_custom(hdl, &vivi_ctrl_button, NULL);
1391 dev->int32 = v4l2_ctrl_new_custom(hdl, &vivi_ctrl_int32, NULL);
1392 dev->int64 = v4l2_ctrl_new_custom(hdl, &vivi_ctrl_int64, NULL);
1393 dev->boolean = v4l2_ctrl_new_custom(hdl, &vivi_ctrl_boolean, NULL);
1394 dev->menu = v4l2_ctrl_new_custom(hdl, &vivi_ctrl_menu, NULL);
1395 dev->string = v4l2_ctrl_new_custom(hdl, &vivi_ctrl_string, NULL);
Hans Verkuilb6d17a52011-03-29 16:33:11 -03001396 dev->bitmask = v4l2_ctrl_new_custom(hdl, &vivi_ctrl_bitmask, NULL);
Sakari Ailusc5203312011-08-05 06:38:05 -03001397 dev->int_menu = v4l2_ctrl_new_custom(hdl, &vivi_ctrl_int_menu, NULL);
Hans Verkuil7e996af2011-01-23 12:33:16 -02001398 if (hdl->error) {
1399 ret = hdl->error;
1400 goto unreg_dev;
1401 }
Hans Verkuila1c894f2011-06-07 06:34:41 -03001402 v4l2_ctrl_auto_cluster(2, &dev->autogain, 0, true);
Hans Verkuil7e996af2011-01-23 12:33:16 -02001403 dev->v4l2_dev.ctrl_handler = hdl;
Hans Verkuil730947b2010-04-10 04:13:53 -03001404
Hans Verkuilfedc6c82010-09-20 18:25:55 -03001405 /* initialize locks */
1406 spin_lock_init(&dev->slock);
Hans Verkuilfedc6c82010-09-20 18:25:55 -03001407
Pawel Osciake007a322011-01-19 13:02:29 -02001408 /* initialize queue */
1409 q = &dev->vb_vidq;
1410 memset(q, 0, sizeof(dev->vb_vidq));
1411 q->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
1412 q->io_modes = VB2_MMAP | VB2_USERPTR | VB2_READ;
1413 q->drv_priv = dev;
1414 q->buf_struct_size = sizeof(struct vivi_buffer);
1415 q->ops = &vivi_video_qops;
1416 q->mem_ops = &vb2_vmalloc_memops;
1417
1418 vb2_queue_init(q);
1419
1420 mutex_init(&dev->mutex);
Hans Verkuil730947b2010-04-10 04:13:53 -03001421
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001422 /* init video dma queues */
1423 INIT_LIST_HEAD(&dev->vidq.active);
1424 init_waitqueue_head(&dev->vidq.wq);
1425
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001426 ret = -ENOMEM;
1427 vfd = video_device_alloc();
1428 if (!vfd)
1429 goto unreg_dev;
1430
1431 *vfd = vivi_template;
Mauro Carvalho Chehabc285add2009-06-25 16:28:23 -03001432 vfd->debug = debug;
Hans Verkuil730947b2010-04-10 04:13:53 -03001433 vfd->v4l2_dev = &dev->v4l2_dev;
Hans Verkuilb1a873a2011-03-22 10:14:07 -03001434 set_bit(V4L2_FL_USE_FH_PRIO, &vfd->flags);
Pawel Osciake007a322011-01-19 13:02:29 -02001435
1436 /*
1437 * Provide a mutex to v4l2 core. It will be used to protect
1438 * all fops and v4l2 ioctls.
1439 */
Hans Verkuilfedc6c82010-09-20 18:25:55 -03001440 vfd->lock = &dev->mutex;
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001441
1442 ret = video_register_device(vfd, VFL_TYPE_GRABBER, video_nr);
1443 if (ret < 0)
1444 goto rel_vdev;
1445
1446 video_set_drvdata(vfd, dev);
1447
1448 /* Now that everything is fine, let's add it to device list */
1449 list_add_tail(&dev->vivi_devlist, &vivi_devlist);
1450
Roel Kluin7de0b872009-12-16 13:06:33 -03001451 if (video_nr != -1)
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001452 video_nr++;
1453
1454 dev->vfd = vfd;
Laurent Pinchart38c7c032009-11-27 13:57:15 -03001455 v4l2_info(&dev->v4l2_dev, "V4L2 device registered as %s\n",
1456 video_device_node_name(vfd));
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001457 return 0;
1458
1459rel_vdev:
1460 video_device_release(vfd);
1461unreg_dev:
Hans Verkuil7e996af2011-01-23 12:33:16 -02001462 v4l2_ctrl_handler_free(hdl);
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001463 v4l2_device_unregister(&dev->v4l2_dev);
1464free_dev:
1465 kfree(dev);
1466 return ret;
1467}
1468
Mauro Carvalho Chehab980d4f12008-09-03 17:11:53 -03001469/* This routine allocates from 1 to n_devs virtual drivers.
1470
1471 The real maximum number of virtual drivers will depend on how many drivers
1472 will succeed. This is limited to the maximum number of devices that
Hans Verkuil62cfdac2009-02-14 11:37:17 -03001473 videodev supports, which is equal to VIDEO_NUM_DEVICES.
Mauro Carvalho Chehab980d4f12008-09-03 17:11:53 -03001474 */
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001475static int __init vivi_init(void)
1476{
Hans Verkuil730947b2010-04-10 04:13:53 -03001477 const struct font_desc *font = find_font("VGA8x16");
Hans Verkuil9185cbf2009-03-06 09:58:12 -03001478 int ret = 0, i;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001479
Hans Verkuil730947b2010-04-10 04:13:53 -03001480 if (font == NULL) {
1481 printk(KERN_ERR "vivi: could not find font\n");
1482 return -ENODEV;
1483 }
1484 font8x16 = font->data;
1485
Mauro Carvalho Chehab980d4f12008-09-03 17:11:53 -03001486 if (n_devs <= 0)
1487 n_devs = 1;
1488
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001489 for (i = 0; i < n_devs; i++) {
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001490 ret = vivi_create_instance(i);
1491 if (ret) {
1492 /* If some instantiations succeeded, keep driver */
Mauro Carvalho Chehab980d4f12008-09-03 17:11:53 -03001493 if (i)
1494 ret = 0;
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001495 break;
Mauro Carvalho Chehab980d4f12008-09-03 17:11:53 -03001496 }
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001497 }
1498
1499 if (ret < 0) {
Hans Verkuil730947b2010-04-10 04:13:53 -03001500 printk(KERN_ERR "vivi: error %d while loading driver\n", ret);
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001501 return ret;
1502 }
1503
1504 printk(KERN_INFO "Video Technology Magazine Virtual Video "
Mauro Carvalho Chehab1990d502011-06-24 14:45:49 -03001505 "Capture Board ver %s successfully loaded.\n",
1506 VIVI_VERSION);
Mauro Carvalho Chehab980d4f12008-09-03 17:11:53 -03001507
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001508 /* n_devs will reflect the actual number of allocated devices */
1509 n_devs = i;
Mauro Carvalho Chehab980d4f12008-09-03 17:11:53 -03001510
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001511 return ret;
1512}
1513
1514static void __exit vivi_exit(void)
1515{
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001516 vivi_release();
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001517}
1518
1519module_init(vivi_init);
1520module_exit(vivi_exit);