blob: e81c10607bb2283f28a18c27a4c1f93f175dfc3c [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 {
98 .name = "RGB565 (LE)",
99 .fourcc = V4L2_PIX_FMT_RGB565, /* gggbbbbb rrrrrggg */
100 .depth = 16,
101 },
102 {
103 .name = "RGB565 (BE)",
104 .fourcc = V4L2_PIX_FMT_RGB565X, /* rrrrrggg gggbbbbb */
105 .depth = 16,
106 },
Magnus Dammdef52392008-10-14 12:47:43 -0300107 {
108 .name = "RGB555 (LE)",
109 .fourcc = V4L2_PIX_FMT_RGB555, /* gggbbbbb arrrrrgg */
110 .depth = 16,
111 },
112 {
113 .name = "RGB555 (BE)",
114 .fourcc = V4L2_PIX_FMT_RGB555X, /* arrrrrgg gggbbbbb */
115 .depth = 16,
116 },
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300117};
118
Magnus Dammd891f472008-10-14 12:47:09 -0300119static struct vivi_fmt *get_format(struct v4l2_format *f)
120{
121 struct vivi_fmt *fmt;
122 unsigned int k;
123
124 for (k = 0; k < ARRAY_SIZE(formats); k++) {
125 fmt = &formats[k];
126 if (fmt->fourcc == f->fmt.pix.pixelformat)
127 break;
128 }
129
130 if (k == ARRAY_SIZE(formats))
131 return NULL;
132
133 return &formats[k];
134}
135
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300136/* buffer for one video frame */
137struct vivi_buffer {
138 /* common v4l buffer stuff -- must be first */
Pawel Osciake007a322011-01-19 13:02:29 -0200139 struct vb2_buffer vb;
140 struct list_head list;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300141 struct vivi_fmt *fmt;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300142};
143
144struct vivi_dmaqueue {
145 struct list_head active;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300146
147 /* thread for generating video stream*/
148 struct task_struct *kthread;
149 wait_queue_head_t wq;
150 /* Counters to control fps rate */
151 int frame;
152 int ini_jiffies;
153};
154
155static LIST_HEAD(vivi_devlist);
156
157struct vivi_dev {
158 struct list_head vivi_devlist;
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -0300159 struct v4l2_device v4l2_dev;
Hans Verkuil7e996af2011-01-23 12:33:16 -0200160 struct v4l2_ctrl_handler ctrl_handler;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300161
Hans Verkuil730947b2010-04-10 04:13:53 -0300162 /* controls */
Hans Verkuil7e996af2011-01-23 12:33:16 -0200163 struct v4l2_ctrl *brightness;
164 struct v4l2_ctrl *contrast;
165 struct v4l2_ctrl *saturation;
166 struct v4l2_ctrl *hue;
Hans Verkuila1c894f2011-06-07 06:34:41 -0300167 struct {
168 /* autogain/gain cluster */
169 struct v4l2_ctrl *autogain;
170 struct v4l2_ctrl *gain;
171 };
Hans Verkuil7e996af2011-01-23 12:33:16 -0200172 struct v4l2_ctrl *volume;
173 struct v4l2_ctrl *button;
174 struct v4l2_ctrl *boolean;
175 struct v4l2_ctrl *int32;
176 struct v4l2_ctrl *int64;
177 struct v4l2_ctrl *menu;
178 struct v4l2_ctrl *string;
Hans Verkuil730947b2010-04-10 04:13:53 -0300179
Mauro Carvalho Chehab55862ac2007-12-13 16:13:37 -0300180 spinlock_t slock;
Brandon Philipsaa9dbac2008-04-02 18:10:59 -0300181 struct mutex mutex;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300182
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300183 /* various device info */
Mauro Carvalho Chehabf905c442007-12-10 04:07:03 -0300184 struct video_device *vfd;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300185
186 struct vivi_dmaqueue vidq;
187
188 /* Several counters */
Hans Verkuil730947b2010-04-10 04:13:53 -0300189 unsigned ms;
Mauro Carvalho Chehabdfd8c042008-01-13 19:36:11 -0300190 unsigned long jiffies;
Hans Verkuil7e996af2011-01-23 12:33:16 -0200191 unsigned button_pressed;
Mauro Carvalho Chehab025341d2007-12-10 04:43:38 -0300192
193 int mv_count; /* Controls bars movement */
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -0300194
195 /* Input Number */
196 int input;
Hans Verkuilc41ee242009-02-14 13:43:44 -0300197
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300198 /* video capture */
199 struct vivi_fmt *fmt;
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300200 unsigned int width, height;
Pawel Osciake007a322011-01-19 13:02:29 -0200201 struct vb2_queue vb_vidq;
202 enum v4l2_field field;
203 unsigned int field_count;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300204
Hans Verkuil730947b2010-04-10 04:13:53 -0300205 u8 bars[9][3];
206 u8 line[MAX_WIDTH * 4];
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300207};
208
209/* ------------------------------------------------------------------
210 DMA and thread functions
211 ------------------------------------------------------------------*/
212
213/* Bars and Colors should match positions */
214
215enum colors {
216 WHITE,
Hans Verkuil730947b2010-04-10 04:13:53 -0300217 AMBER,
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300218 CYAN,
219 GREEN,
220 MAGENTA,
221 RED,
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300222 BLUE,
223 BLACK,
Hans Verkuil730947b2010-04-10 04:13:53 -0300224 TEXT_BLACK,
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300225};
226
Hans Verkuil730947b2010-04-10 04:13:53 -0300227/* R G B */
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -0300228#define COLOR_WHITE {204, 204, 204}
Hans Verkuil730947b2010-04-10 04:13:53 -0300229#define COLOR_AMBER {208, 208, 0}
230#define COLOR_CYAN { 0, 206, 206}
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -0300231#define COLOR_GREEN { 0, 239, 0}
232#define COLOR_MAGENTA {239, 0, 239}
233#define COLOR_RED {205, 0, 0}
234#define COLOR_BLUE { 0, 0, 255}
235#define COLOR_BLACK { 0, 0, 0}
236
237struct bar_std {
Hans Verkuil730947b2010-04-10 04:13:53 -0300238 u8 bar[9][3];
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300239};
240
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -0300241/* Maximum number of bars are 10 - otherwise, the input print code
242 should be modified */
243static struct bar_std bars[] = {
244 { /* Standard ITU-R color bar sequence */
Hans Verkuil730947b2010-04-10 04:13:53 -0300245 { COLOR_WHITE, COLOR_AMBER, COLOR_CYAN, COLOR_GREEN,
246 COLOR_MAGENTA, COLOR_RED, COLOR_BLUE, COLOR_BLACK, COLOR_BLACK }
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -0300247 }, {
Hans Verkuil730947b2010-04-10 04:13:53 -0300248 { COLOR_WHITE, COLOR_AMBER, COLOR_BLACK, COLOR_WHITE,
249 COLOR_AMBER, COLOR_BLACK, COLOR_WHITE, COLOR_AMBER, COLOR_BLACK }
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -0300250 }, {
Hans Verkuil730947b2010-04-10 04:13:53 -0300251 { COLOR_WHITE, COLOR_CYAN, COLOR_BLACK, COLOR_WHITE,
252 COLOR_CYAN, COLOR_BLACK, COLOR_WHITE, COLOR_CYAN, COLOR_BLACK }
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -0300253 }, {
Hans Verkuil730947b2010-04-10 04:13:53 -0300254 { COLOR_WHITE, COLOR_GREEN, COLOR_BLACK, COLOR_WHITE,
255 COLOR_GREEN, COLOR_BLACK, COLOR_WHITE, COLOR_GREEN, COLOR_BLACK }
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -0300256 },
257};
258
259#define NUM_INPUTS ARRAY_SIZE(bars)
260
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300261#define TO_Y(r, g, b) \
262 (((16829 * r + 33039 * g + 6416 * b + 32768) >> 16) + 16)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300263/* RGB to V(Cr) Color transform */
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300264#define TO_V(r, g, b) \
265 (((28784 * r - 24103 * g - 4681 * b + 32768) >> 16) + 128)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300266/* RGB to U(Cb) Color transform */
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300267#define TO_U(r, g, b) \
268 (((-9714 * r - 19070 * g + 28784 * b + 32768) >> 16) + 128)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300269
Mauro Carvalho Chehabc285add2009-06-25 16:28:23 -0300270/* precalculate color bar values to speed up rendering */
Hans Verkuil730947b2010-04-10 04:13:53 -0300271static void precalculate_bars(struct vivi_dev *dev)
Mauro Carvalho Chehabc285add2009-06-25 16:28:23 -0300272{
Hans Verkuil730947b2010-04-10 04:13:53 -0300273 u8 r, g, b;
Mauro Carvalho Chehabc285add2009-06-25 16:28:23 -0300274 int k, is_yuv;
275
Hans Verkuil730947b2010-04-10 04:13:53 -0300276 for (k = 0; k < 9; k++) {
277 r = bars[dev->input].bar[k][0];
278 g = bars[dev->input].bar[k][1];
279 b = bars[dev->input].bar[k][2];
Mauro Carvalho Chehabc285add2009-06-25 16:28:23 -0300280 is_yuv = 0;
281
Hans Verkuil730947b2010-04-10 04:13:53 -0300282 switch (dev->fmt->fourcc) {
Mauro Carvalho Chehabc285add2009-06-25 16:28:23 -0300283 case V4L2_PIX_FMT_YUYV:
284 case V4L2_PIX_FMT_UYVY:
285 is_yuv = 1;
286 break;
287 case V4L2_PIX_FMT_RGB565:
288 case V4L2_PIX_FMT_RGB565X:
289 r >>= 3;
290 g >>= 2;
291 b >>= 3;
292 break;
293 case V4L2_PIX_FMT_RGB555:
294 case V4L2_PIX_FMT_RGB555X:
295 r >>= 3;
296 g >>= 3;
297 b >>= 3;
298 break;
299 }
300
301 if (is_yuv) {
Hans Verkuil730947b2010-04-10 04:13:53 -0300302 dev->bars[k][0] = TO_Y(r, g, b); /* Luma */
303 dev->bars[k][1] = TO_U(r, g, b); /* Cb */
304 dev->bars[k][2] = TO_V(r, g, b); /* Cr */
Mauro Carvalho Chehabc285add2009-06-25 16:28:23 -0300305 } else {
Hans Verkuil730947b2010-04-10 04:13:53 -0300306 dev->bars[k][0] = r;
307 dev->bars[k][1] = g;
308 dev->bars[k][2] = b;
Mauro Carvalho Chehabc285add2009-06-25 16:28:23 -0300309 }
310 }
Mauro Carvalho Chehabc285add2009-06-25 16:28:23 -0300311}
312
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -0300313#define TSTAMP_MIN_Y 24
314#define TSTAMP_MAX_Y (TSTAMP_MIN_Y + 15)
315#define TSTAMP_INPUT_X 10
316#define TSTAMP_MIN_X (54 + TSTAMP_INPUT_X)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300317
Hans Verkuil730947b2010-04-10 04:13:53 -0300318static void gen_twopix(struct vivi_dev *dev, u8 *buf, int colorpos)
Magnus Damm74d7c5a2008-10-14 12:46:59 -0300319{
Hans Verkuil730947b2010-04-10 04:13:53 -0300320 u8 r_y, g_u, b_v;
Magnus Damm74d7c5a2008-10-14 12:46:59 -0300321 int color;
Hans Verkuil730947b2010-04-10 04:13:53 -0300322 u8 *p;
Magnus Damm74d7c5a2008-10-14 12:46:59 -0300323
Hans Verkuil730947b2010-04-10 04:13:53 -0300324 r_y = dev->bars[colorpos][0]; /* R or precalculated Y */
325 g_u = dev->bars[colorpos][1]; /* G or precalculated U */
326 b_v = dev->bars[colorpos][2]; /* B or precalculated V */
Magnus Damm74d7c5a2008-10-14 12:46:59 -0300327
328 for (color = 0; color < 4; color++) {
329 p = buf + color;
330
Hans Verkuil730947b2010-04-10 04:13:53 -0300331 switch (dev->fmt->fourcc) {
Magnus Dammd891f472008-10-14 12:47:09 -0300332 case V4L2_PIX_FMT_YUYV:
333 switch (color) {
334 case 0:
335 case 2:
336 *p = r_y;
337 break;
338 case 1:
339 *p = g_u;
340 break;
341 case 3:
342 *p = b_v;
343 break;
344 }
Magnus Damm74d7c5a2008-10-14 12:46:59 -0300345 break;
Magnus Dammfca36ba2008-10-14 12:47:25 -0300346 case V4L2_PIX_FMT_UYVY:
347 switch (color) {
348 case 1:
349 case 3:
350 *p = r_y;
351 break;
352 case 0:
353 *p = g_u;
354 break;
355 case 2:
356 *p = b_v;
357 break;
358 }
359 break;
Magnus Dammaeadb5d2008-10-14 12:47:35 -0300360 case V4L2_PIX_FMT_RGB565:
361 switch (color) {
362 case 0:
363 case 2:
364 *p = (g_u << 5) | b_v;
365 break;
366 case 1:
367 case 3:
368 *p = (r_y << 3) | (g_u >> 3);
369 break;
370 }
371 break;
372 case V4L2_PIX_FMT_RGB565X:
373 switch (color) {
374 case 0:
375 case 2:
376 *p = (r_y << 3) | (g_u >> 3);
377 break;
378 case 1:
379 case 3:
380 *p = (g_u << 5) | b_v;
381 break;
382 }
383 break;
Magnus Dammdef52392008-10-14 12:47:43 -0300384 case V4L2_PIX_FMT_RGB555:
385 switch (color) {
386 case 0:
387 case 2:
388 *p = (g_u << 5) | b_v;
389 break;
390 case 1:
391 case 3:
392 *p = (r_y << 2) | (g_u >> 3);
393 break;
394 }
395 break;
396 case V4L2_PIX_FMT_RGB555X:
397 switch (color) {
398 case 0:
399 case 2:
400 *p = (r_y << 2) | (g_u >> 3);
401 break;
402 case 1:
403 case 3:
404 *p = (g_u << 5) | b_v;
405 break;
406 }
407 break;
Magnus Damm74d7c5a2008-10-14 12:46:59 -0300408 }
409 }
410}
411
Hans Verkuil730947b2010-04-10 04:13:53 -0300412static void precalculate_line(struct vivi_dev *dev)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300413{
Hans Verkuil730947b2010-04-10 04:13:53 -0300414 int w;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300415
Hans Verkuil730947b2010-04-10 04:13:53 -0300416 for (w = 0; w < dev->width * 2; w += 2) {
417 int colorpos = (w / (dev->width / 8) % 8);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300418
Hans Verkuil730947b2010-04-10 04:13:53 -0300419 gen_twopix(dev, dev->line + w * 2, colorpos);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300420 }
Hans Verkuil730947b2010-04-10 04:13:53 -0300421}
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300422
Hans Verkuil730947b2010-04-10 04:13:53 -0300423static void gen_text(struct vivi_dev *dev, char *basep,
424 int y, int x, char *text)
425{
426 int line;
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -0300427
Hans Verkuil730947b2010-04-10 04:13:53 -0300428 /* Checks if it is possible to show string */
429 if (y + 16 >= dev->height || x + strlen(text) * 8 >= dev->width)
430 return;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300431
432 /* Print stream time */
Hans Verkuil730947b2010-04-10 04:13:53 -0300433 for (line = y; line < y + 16; line++) {
434 int j = 0;
435 char *pos = basep + line * dev->width * 2 + x * 2;
436 char *s;
437
438 for (s = text; *s; s++) {
439 u8 chr = font8x16[*s * 16 + line - y];
440 int i;
441
442 for (i = 0; i < 7; i++, j++) {
Magnus Damm74d7c5a2008-10-14 12:46:59 -0300443 /* Draw white font on black background */
Hans Verkuil730947b2010-04-10 04:13:53 -0300444 if (chr & (1 << (7 - i)))
445 gen_twopix(dev, pos + j * 2, WHITE);
Magnus Damm74d7c5a2008-10-14 12:46:59 -0300446 else
Hans Verkuil730947b2010-04-10 04:13:53 -0300447 gen_twopix(dev, pos + j * 2, TEXT_BLACK);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300448 }
449 }
450 }
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300451}
Brandon Philips78718e52008-04-02 18:10:59 -0300452
Hans Verkuil730947b2010-04-10 04:13:53 -0300453static void vivi_fillbuff(struct vivi_dev *dev, struct vivi_buffer *buf)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300454{
Pawel Osciake007a322011-01-19 13:02:29 -0200455 int wmax = dev->width;
456 int hmax = dev->height;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300457 struct timeval ts;
Pawel Osciake007a322011-01-19 13:02:29 -0200458 void *vbuf = vb2_plane_vaddr(&buf->vb, 0);
Hans Verkuil730947b2010-04-10 04:13:53 -0300459 unsigned ms;
460 char str[100];
461 int h, line = 1;
Hans Verkuila1c894f2011-06-07 06:34:41 -0300462 s32 gain;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300463
Marcin Slusarz5c554e62008-06-22 09:11:40 -0300464 if (!vbuf)
Mauro Carvalho Chehab5a037702007-08-02 23:31:54 -0300465 return;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300466
Hans Verkuil730947b2010-04-10 04:13:53 -0300467 for (h = 0; h < hmax; h++)
468 memcpy(vbuf + h * wmax * 2, dev->line + (dev->mv_count % wmax) * 2, wmax * 2);
Mauro Carvalho Chehab5a037702007-08-02 23:31:54 -0300469
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300470 /* Updates stream time */
471
Hans Verkuil730947b2010-04-10 04:13:53 -0300472 dev->ms += jiffies_to_msecs(jiffies - dev->jiffies);
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300473 dev->jiffies = jiffies;
Hans Verkuil730947b2010-04-10 04:13:53 -0300474 ms = dev->ms;
475 snprintf(str, sizeof(str), " %02d:%02d:%02d:%03d ",
476 (ms / (60 * 60 * 1000)) % 24,
477 (ms / (60 * 1000)) % 60,
478 (ms / 1000) % 60,
479 ms % 1000);
480 gen_text(dev, vbuf, line++ * 16, 16, str);
481 snprintf(str, sizeof(str), " %dx%d, input %d ",
482 dev->width, dev->height, dev->input);
483 gen_text(dev, vbuf, line++ * 16, 16, str);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300484
Hans Verkuila1c894f2011-06-07 06:34:41 -0300485 gain = v4l2_ctrl_g_ctrl(dev->gain);
Hans Verkuil7e996af2011-01-23 12:33:16 -0200486 mutex_lock(&dev->ctrl_handler.lock);
Hans Verkuil730947b2010-04-10 04:13:53 -0300487 snprintf(str, sizeof(str), " brightness %3d, contrast %3d, saturation %3d, hue %d ",
Hans Verkuil7e996af2011-01-23 12:33:16 -0200488 dev->brightness->cur.val,
489 dev->contrast->cur.val,
490 dev->saturation->cur.val,
491 dev->hue->cur.val);
Hans Verkuil730947b2010-04-10 04:13:53 -0300492 gen_text(dev, vbuf, line++ * 16, 16, str);
Hans Verkuila1c894f2011-06-07 06:34:41 -0300493 snprintf(str, sizeof(str), " autogain %d, gain %3d, volume %3d ",
494 dev->autogain->cur.val, gain, dev->volume->cur.val);
Hans Verkuil730947b2010-04-10 04:13:53 -0300495 gen_text(dev, vbuf, line++ * 16, 16, str);
Hans Verkuil7e996af2011-01-23 12:33:16 -0200496 snprintf(str, sizeof(str), " int32 %d, int64 %lld ",
497 dev->int32->cur.val,
498 dev->int64->cur.val64);
499 gen_text(dev, vbuf, line++ * 16, 16, str);
500 snprintf(str, sizeof(str), " boolean %d, menu %s, string \"%s\" ",
501 dev->boolean->cur.val,
502 dev->menu->qmenu[dev->menu->cur.val],
503 dev->string->cur.string);
504 mutex_unlock(&dev->ctrl_handler.lock);
505 gen_text(dev, vbuf, line++ * 16, 16, str);
506 if (dev->button_pressed) {
507 dev->button_pressed--;
508 snprintf(str, sizeof(str), " button pressed!");
509 gen_text(dev, vbuf, line++ * 16, 16, str);
510 }
Hans Verkuil730947b2010-04-10 04:13:53 -0300511
512 dev->mv_count += 2;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300513
Pawel Osciake007a322011-01-19 13:02:29 -0200514 buf->vb.v4l2_buf.field = dev->field;
515 dev->field_count++;
516 buf->vb.v4l2_buf.sequence = dev->field_count >> 1;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300517 do_gettimeofday(&ts);
Pawel Osciake007a322011-01-19 13:02:29 -0200518 buf->vb.v4l2_buf.timestamp = ts;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300519}
520
Hans Verkuil730947b2010-04-10 04:13:53 -0300521static void vivi_thread_tick(struct vivi_dev *dev)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300522{
Brandon Philips78718e52008-04-02 18:10:59 -0300523 struct vivi_dmaqueue *dma_q = &dev->vidq;
Hans Verkuil730947b2010-04-10 04:13:53 -0300524 struct vivi_buffer *buf;
Brandon Philips78718e52008-04-02 18:10:59 -0300525 unsigned long flags = 0;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300526
Brandon Philips78718e52008-04-02 18:10:59 -0300527 dprintk(dev, 1, "Thread tick\n");
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300528
Brandon Philips78718e52008-04-02 18:10:59 -0300529 spin_lock_irqsave(&dev->slock, flags);
530 if (list_empty(&dma_q->active)) {
531 dprintk(dev, 1, "No active queue to serve\n");
532 goto unlock;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300533 }
Brandon Philips78718e52008-04-02 18:10:59 -0300534
Pawel Osciake007a322011-01-19 13:02:29 -0200535 buf = list_entry(dma_q->active.next, struct vivi_buffer, list);
536 list_del(&buf->list);
Brandon Philips78718e52008-04-02 18:10:59 -0300537
Pawel Osciake007a322011-01-19 13:02:29 -0200538 do_gettimeofday(&buf->vb.v4l2_buf.timestamp);
Brandon Philips78718e52008-04-02 18:10:59 -0300539
540 /* Fill buffer */
Hans Verkuil730947b2010-04-10 04:13:53 -0300541 vivi_fillbuff(dev, buf);
Brandon Philips78718e52008-04-02 18:10:59 -0300542 dprintk(dev, 1, "filled buffer %p\n", buf);
543
Pawel Osciake007a322011-01-19 13:02:29 -0200544 vb2_buffer_done(&buf->vb, VB2_BUF_STATE_DONE);
545 dprintk(dev, 2, "[%p/%d] done\n", buf, buf->vb.v4l2_buf.index);
Brandon Philips78718e52008-04-02 18:10:59 -0300546unlock:
547 spin_unlock_irqrestore(&dev->slock, flags);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300548}
549
Mauro Carvalho Chehab6594ad82007-12-13 16:15:41 -0300550#define frames_to_ms(frames) \
551 ((frames * WAKE_NUMERATOR * 1000) / WAKE_DENOMINATOR)
552
Hans Verkuil730947b2010-04-10 04:13:53 -0300553static void vivi_sleep(struct vivi_dev *dev)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300554{
Brandon Philips78718e52008-04-02 18:10:59 -0300555 struct vivi_dmaqueue *dma_q = &dev->vidq;
556 int timeout;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300557 DECLARE_WAITQUEUE(wait, current);
558
Harvey Harrison7e28adb2008-04-08 23:20:00 -0300559 dprintk(dev, 1, "%s dma_q=0x%08lx\n", __func__,
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300560 (unsigned long)dma_q);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300561
562 add_wait_queue(&dma_q->wq, &wait);
Mauro Carvalho Chehab6594ad82007-12-13 16:15:41 -0300563 if (kthread_should_stop())
564 goto stop_task;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300565
Mauro Carvalho Chehab6594ad82007-12-13 16:15:41 -0300566 /* Calculate time to wake up */
Brandon Philips78718e52008-04-02 18:10:59 -0300567 timeout = msecs_to_jiffies(frames_to_ms(1));
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300568
Hans Verkuil730947b2010-04-10 04:13:53 -0300569 vivi_thread_tick(dev);
Mauro Carvalho Chehab6594ad82007-12-13 16:15:41 -0300570
571 schedule_timeout_interruptible(timeout);
572
573stop_task:
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300574 remove_wait_queue(&dma_q->wq, &wait);
575 try_to_freeze();
576}
577
Adrian Bunk972c3512006-04-27 21:06:50 -0300578static int vivi_thread(void *data)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300579{
Hans Verkuil730947b2010-04-10 04:13:53 -0300580 struct vivi_dev *dev = data;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300581
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300582 dprintk(dev, 1, "thread started\n");
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300583
Rafael J. Wysocki83144182007-07-17 04:03:35 -0700584 set_freezable();
Mauro Carvalho Chehab0b600512007-01-14 08:33:24 -0300585
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300586 for (;;) {
Hans Verkuil730947b2010-04-10 04:13:53 -0300587 vivi_sleep(dev);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300588
589 if (kthread_should_stop())
590 break;
591 }
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300592 dprintk(dev, 1, "thread: exit\n");
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300593 return 0;
594}
595
Pawel Osciake007a322011-01-19 13:02:29 -0200596static int vivi_start_generating(struct vivi_dev *dev)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300597{
Brandon Philips78718e52008-04-02 18:10:59 -0300598 struct vivi_dmaqueue *dma_q = &dev->vidq;
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300599
Harvey Harrison7e28adb2008-04-08 23:20:00 -0300600 dprintk(dev, 1, "%s\n", __func__);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300601
Hans Verkuil730947b2010-04-10 04:13:53 -0300602 /* Resets frame counters */
603 dev->ms = 0;
604 dev->mv_count = 0;
605 dev->jiffies = jiffies;
606
607 dma_q->frame = 0;
608 dma_q->ini_jiffies = jiffies;
609 dma_q->kthread = kthread_run(vivi_thread, dev, dev->v4l2_dev.name);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300610
Akinobu Mita054afee2006-12-20 10:04:00 -0300611 if (IS_ERR(dma_q->kthread)) {
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -0300612 v4l2_err(&dev->v4l2_dev, "kernel_thread() failed\n");
Pawel Osciake007a322011-01-19 13:02:29 -0200613 return PTR_ERR(dma_q->kthread);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300614 }
Mauro Carvalho Chehab0b600512007-01-14 08:33:24 -0300615 /* Wakes thread */
616 wake_up_interruptible(&dma_q->wq);
617
Harvey Harrison7e28adb2008-04-08 23:20:00 -0300618 dprintk(dev, 1, "returning from %s\n", __func__);
Pawel Osciake007a322011-01-19 13:02:29 -0200619 return 0;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300620}
621
Pawel Osciake007a322011-01-19 13:02:29 -0200622static void vivi_stop_generating(struct vivi_dev *dev)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300623{
Hans Verkuil730947b2010-04-10 04:13:53 -0300624 struct vivi_dmaqueue *dma_q = &dev->vidq;
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300625
Harvey Harrison7e28adb2008-04-08 23:20:00 -0300626 dprintk(dev, 1, "%s\n", __func__);
Hans Verkuil730947b2010-04-10 04:13:53 -0300627
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300628 /* shutdown control thread */
629 if (dma_q->kthread) {
630 kthread_stop(dma_q->kthread);
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300631 dma_q->kthread = NULL;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300632 }
Hans Verkuil730947b2010-04-10 04:13:53 -0300633
Pawel Osciake007a322011-01-19 13:02:29 -0200634 /*
635 * Typical driver might need to wait here until dma engine stops.
636 * In this case we can abort imiedetly, so it's just a noop.
637 */
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300638
Pawel Osciake007a322011-01-19 13:02:29 -0200639 /* Release all active buffers */
640 while (!list_empty(&dma_q->active)) {
641 struct vivi_buffer *buf;
642 buf = list_entry(dma_q->active.next, struct vivi_buffer, list);
643 list_del(&buf->list);
644 vb2_buffer_done(&buf->vb, VB2_BUF_STATE_ERROR);
645 dprintk(dev, 2, "[%p/%d] done\n", buf, buf->vb.v4l2_buf.index);
646 }
647}
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300648/* ------------------------------------------------------------------
649 Videobuf operations
650 ------------------------------------------------------------------*/
Pawel Osciake007a322011-01-19 13:02:29 -0200651static int queue_setup(struct vb2_queue *vq, unsigned int *nbuffers,
652 unsigned int *nplanes, unsigned long sizes[],
653 void *alloc_ctxs[])
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300654{
Pawel Osciake007a322011-01-19 13:02:29 -0200655 struct vivi_dev *dev = vb2_get_drv_priv(vq);
656 unsigned long size;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300657
Pawel Osciake007a322011-01-19 13:02:29 -0200658 size = dev->width * dev->height * 2;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300659
Pawel Osciake007a322011-01-19 13:02:29 -0200660 if (0 == *nbuffers)
661 *nbuffers = 32;
Mauro Carvalho Chehab6bb27902007-08-23 16:41:14 -0300662
Pawel Osciake007a322011-01-19 13:02:29 -0200663 while (size * *nbuffers > vid_limit * 1024 * 1024)
664 (*nbuffers)--;
Mauro Carvalho Chehab6bb27902007-08-23 16:41:14 -0300665
Pawel Osciake007a322011-01-19 13:02:29 -0200666 *nplanes = 1;
667
668 sizes[0] = size;
669
670 /*
671 * videobuf2-vmalloc allocator is context-less so no need to set
672 * alloc_ctxs array.
673 */
674
675 dprintk(dev, 1, "%s, count=%d, size=%ld\n", __func__,
676 *nbuffers, size);
Mauro Carvalho Chehab6bb27902007-08-23 16:41:14 -0300677
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300678 return 0;
679}
680
Pawel Osciake007a322011-01-19 13:02:29 -0200681static int buffer_init(struct vb2_buffer *vb)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300682{
Pawel Osciake007a322011-01-19 13:02:29 -0200683 struct vivi_dev *dev = vb2_get_drv_priv(vb->vb2_queue);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300684
Hans Verkuil730947b2010-04-10 04:13:53 -0300685 BUG_ON(NULL == dev->fmt);
Brandon Philips78718e52008-04-02 18:10:59 -0300686
Pawel Osciake007a322011-01-19 13:02:29 -0200687 /*
688 * This callback is called once per buffer, after its allocation.
689 *
690 * Vivi does not allow changing format during streaming, but it is
691 * possible to do so when streaming is paused (i.e. in streamoff state).
692 * Buffers however are not freed when going into streamoff and so
693 * buffer size verification has to be done in buffer_prepare, on each
694 * qbuf.
695 * It would be best to move verification code here to buf_init and
696 * s_fmt though.
697 */
698
699 return 0;
700}
701
702static int buffer_prepare(struct vb2_buffer *vb)
703{
704 struct vivi_dev *dev = vb2_get_drv_priv(vb->vb2_queue);
705 struct vivi_buffer *buf = container_of(vb, struct vivi_buffer, vb);
706 unsigned long size;
707
708 dprintk(dev, 1, "%s, field=%d\n", __func__, vb->v4l2_buf.field);
709
710 BUG_ON(NULL == dev->fmt);
711
712 /*
713 * Theses properties only change when queue is idle, see s_fmt.
714 * The below checks should not be performed here, on each
715 * buffer_prepare (i.e. on each qbuf). Most of the code in this function
716 * should thus be moved to buffer_init and s_fmt.
717 */
Hans Verkuil730947b2010-04-10 04:13:53 -0300718 if (dev->width < 48 || dev->width > MAX_WIDTH ||
719 dev->height < 32 || dev->height > MAX_HEIGHT)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300720 return -EINVAL;
Brandon Philips78718e52008-04-02 18:10:59 -0300721
Pawel Osciake007a322011-01-19 13:02:29 -0200722 size = dev->width * dev->height * 2;
723 if (vb2_plane_size(vb, 0) < size) {
724 dprintk(dev, 1, "%s data will not fit into plane (%lu < %lu)\n",
725 __func__, vb2_plane_size(vb, 0), size);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300726 return -EINVAL;
Pawel Osciake007a322011-01-19 13:02:29 -0200727 }
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300728
Pawel Osciake007a322011-01-19 13:02:29 -0200729 vb2_set_plane_payload(&buf->vb, 0, size);
730
731 buf->fmt = dev->fmt;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300732
Hans Verkuil730947b2010-04-10 04:13:53 -0300733 precalculate_bars(dev);
734 precalculate_line(dev);
Mauro Carvalho Chehabc285add2009-06-25 16:28:23 -0300735
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300736 return 0;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300737}
738
Pawel Osciake007a322011-01-19 13:02:29 -0200739static int buffer_finish(struct vb2_buffer *vb)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300740{
Pawel Osciake007a322011-01-19 13:02:29 -0200741 struct vivi_dev *dev = vb2_get_drv_priv(vb->vb2_queue);
742 dprintk(dev, 1, "%s\n", __func__);
743 return 0;
744}
745
746static void buffer_cleanup(struct vb2_buffer *vb)
747{
748 struct vivi_dev *dev = vb2_get_drv_priv(vb->vb2_queue);
749 dprintk(dev, 1, "%s\n", __func__);
750
751}
752
753static void buffer_queue(struct vb2_buffer *vb)
754{
755 struct vivi_dev *dev = vb2_get_drv_priv(vb->vb2_queue);
Hans Verkuil730947b2010-04-10 04:13:53 -0300756 struct vivi_buffer *buf = container_of(vb, struct vivi_buffer, vb);
Brandon Philips78718e52008-04-02 18:10:59 -0300757 struct vivi_dmaqueue *vidq = &dev->vidq;
Pawel Osciake007a322011-01-19 13:02:29 -0200758 unsigned long flags = 0;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300759
Harvey Harrison7e28adb2008-04-08 23:20:00 -0300760 dprintk(dev, 1, "%s\n", __func__);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300761
Pawel Osciake007a322011-01-19 13:02:29 -0200762 spin_lock_irqsave(&dev->slock, flags);
763 list_add_tail(&buf->list, &vidq->active);
764 spin_unlock_irqrestore(&dev->slock, flags);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300765}
766
Pawel Osciake007a322011-01-19 13:02:29 -0200767static int start_streaming(struct vb2_queue *vq)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300768{
Pawel Osciake007a322011-01-19 13:02:29 -0200769 struct vivi_dev *dev = vb2_get_drv_priv(vq);
Harvey Harrison7e28adb2008-04-08 23:20:00 -0300770 dprintk(dev, 1, "%s\n", __func__);
Pawel Osciake007a322011-01-19 13:02:29 -0200771 return vivi_start_generating(dev);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300772}
773
Pawel Osciake007a322011-01-19 13:02:29 -0200774/* abort streaming and wait for last buffer */
775static int stop_streaming(struct vb2_queue *vq)
776{
777 struct vivi_dev *dev = vb2_get_drv_priv(vq);
778 dprintk(dev, 1, "%s\n", __func__);
779 vivi_stop_generating(dev);
780 return 0;
781}
782
783static void vivi_lock(struct vb2_queue *vq)
784{
785 struct vivi_dev *dev = vb2_get_drv_priv(vq);
786 mutex_lock(&dev->mutex);
787}
788
789static void vivi_unlock(struct vb2_queue *vq)
790{
791 struct vivi_dev *dev = vb2_get_drv_priv(vq);
792 mutex_unlock(&dev->mutex);
793}
794
795
796static struct vb2_ops vivi_video_qops = {
797 .queue_setup = queue_setup,
798 .buf_init = buffer_init,
799 .buf_prepare = buffer_prepare,
800 .buf_finish = buffer_finish,
801 .buf_cleanup = buffer_cleanup,
802 .buf_queue = buffer_queue,
803 .start_streaming = start_streaming,
804 .stop_streaming = stop_streaming,
805 .wait_prepare = vivi_unlock,
806 .wait_finish = vivi_lock,
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300807};
808
809/* ------------------------------------------------------------------
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300810 IOCTL vidioc handling
811 ------------------------------------------------------------------*/
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300812static int vidioc_querycap(struct file *file, void *priv,
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300813 struct v4l2_capability *cap)
814{
Hans Verkuil730947b2010-04-10 04:13:53 -0300815 struct vivi_dev *dev = video_drvdata(file);
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -0300816
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300817 strcpy(cap->driver, "vivi");
818 strcpy(cap->card, "vivi");
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -0300819 strlcpy(cap->bus_info, dev->v4l2_dev.name, sizeof(cap->bus_info));
Hans Verkuil730947b2010-04-10 04:13:53 -0300820 cap->capabilities = V4L2_CAP_VIDEO_CAPTURE | V4L2_CAP_STREAMING | \
821 V4L2_CAP_READWRITE;
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300822 return 0;
823}
824
Hans Verkuil78b526a2008-05-28 12:16:41 -0300825static int vidioc_enum_fmt_vid_cap(struct file *file, void *priv,
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300826 struct v4l2_fmtdesc *f)
827{
Magnus Dammd891f472008-10-14 12:47:09 -0300828 struct vivi_fmt *fmt;
829
830 if (f->index >= ARRAY_SIZE(formats))
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300831 return -EINVAL;
832
Magnus Dammd891f472008-10-14 12:47:09 -0300833 fmt = &formats[f->index];
834
835 strlcpy(f->description, fmt->name, sizeof(f->description));
836 f->pixelformat = fmt->fourcc;
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300837 return 0;
838}
839
Hans Verkuil78b526a2008-05-28 12:16:41 -0300840static int vidioc_g_fmt_vid_cap(struct file *file, void *priv,
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300841 struct v4l2_format *f)
842{
Hans Verkuil730947b2010-04-10 04:13:53 -0300843 struct vivi_dev *dev = video_drvdata(file);
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300844
Hans Verkuil730947b2010-04-10 04:13:53 -0300845 f->fmt.pix.width = dev->width;
846 f->fmt.pix.height = dev->height;
Pawel Osciake007a322011-01-19 13:02:29 -0200847 f->fmt.pix.field = dev->field;
Hans Verkuil730947b2010-04-10 04:13:53 -0300848 f->fmt.pix.pixelformat = dev->fmt->fourcc;
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300849 f->fmt.pix.bytesperline =
Hans Verkuil730947b2010-04-10 04:13:53 -0300850 (f->fmt.pix.width * dev->fmt->depth) >> 3;
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300851 f->fmt.pix.sizeimage =
852 f->fmt.pix.height * f->fmt.pix.bytesperline;
Hans Verkuil730947b2010-04-10 04:13:53 -0300853 return 0;
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300854}
855
Hans Verkuil78b526a2008-05-28 12:16:41 -0300856static int vidioc_try_fmt_vid_cap(struct file *file, void *priv,
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300857 struct v4l2_format *f)
858{
Hans Verkuil730947b2010-04-10 04:13:53 -0300859 struct vivi_dev *dev = video_drvdata(file);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300860 struct vivi_fmt *fmt;
861 enum v4l2_field field;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300862
Magnus Dammd891f472008-10-14 12:47:09 -0300863 fmt = get_format(f);
864 if (!fmt) {
865 dprintk(dev, 1, "Fourcc format (0x%08x) invalid.\n",
866 f->fmt.pix.pixelformat);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300867 return -EINVAL;
868 }
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300869
870 field = f->fmt.pix.field;
871
872 if (field == V4L2_FIELD_ANY) {
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300873 field = V4L2_FIELD_INTERLACED;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300874 } else if (V4L2_FIELD_INTERLACED != field) {
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300875 dprintk(dev, 1, "Field type invalid.\n");
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300876 return -EINVAL;
877 }
878
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300879 f->fmt.pix.field = field;
Hans Verkuil730947b2010-04-10 04:13:53 -0300880 v4l_bound_align_image(&f->fmt.pix.width, 48, MAX_WIDTH, 2,
881 &f->fmt.pix.height, 32, MAX_HEIGHT, 0, 0);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300882 f->fmt.pix.bytesperline =
883 (f->fmt.pix.width * fmt->depth) >> 3;
884 f->fmt.pix.sizeimage =
885 f->fmt.pix.height * f->fmt.pix.bytesperline;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300886 return 0;
887}
888
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -0300889static int vidioc_s_fmt_vid_cap(struct file *file, void *priv,
890 struct v4l2_format *f)
891{
Hans Verkuil730947b2010-04-10 04:13:53 -0300892 struct vivi_dev *dev = video_drvdata(file);
Pawel Osciake007a322011-01-19 13:02:29 -0200893 struct vb2_queue *q = &dev->vb_vidq;
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -0300894
Hans Verkuil730947b2010-04-10 04:13:53 -0300895 int ret = vidioc_try_fmt_vid_cap(file, priv, f);
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -0300896 if (ret < 0)
897 return ret;
898
Pawel Osciake007a322011-01-19 13:02:29 -0200899 if (vb2_is_streaming(q)) {
Hans Verkuil730947b2010-04-10 04:13:53 -0300900 dprintk(dev, 1, "%s device busy\n", __func__);
Pawel Osciake007a322011-01-19 13:02:29 -0200901 return -EBUSY;
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -0300902 }
903
Hans Verkuil730947b2010-04-10 04:13:53 -0300904 dev->fmt = get_format(f);
905 dev->width = f->fmt.pix.width;
906 dev->height = f->fmt.pix.height;
Pawel Osciake007a322011-01-19 13:02:29 -0200907 dev->field = f->fmt.pix.field;
908
909 return 0;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300910}
911
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300912static int vidioc_reqbufs(struct file *file, void *priv,
913 struct v4l2_requestbuffers *p)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300914{
Hans Verkuil730947b2010-04-10 04:13:53 -0300915 struct vivi_dev *dev = video_drvdata(file);
Pawel Osciake007a322011-01-19 13:02:29 -0200916 return vb2_reqbufs(&dev->vb_vidq, p);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300917}
918
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300919static int vidioc_querybuf(struct file *file, void *priv, struct v4l2_buffer *p)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300920{
Hans Verkuil730947b2010-04-10 04:13:53 -0300921 struct vivi_dev *dev = video_drvdata(file);
Pawel Osciake007a322011-01-19 13:02:29 -0200922 return vb2_querybuf(&dev->vb_vidq, p);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300923}
924
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300925static int vidioc_qbuf(struct file *file, void *priv, struct v4l2_buffer *p)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300926{
Hans Verkuil730947b2010-04-10 04:13:53 -0300927 struct vivi_dev *dev = video_drvdata(file);
Pawel Osciake007a322011-01-19 13:02:29 -0200928 return vb2_qbuf(&dev->vb_vidq, p);
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300929}
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300930
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300931static int vidioc_dqbuf(struct file *file, void *priv, struct v4l2_buffer *p)
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300932{
Hans Verkuil730947b2010-04-10 04:13:53 -0300933 struct vivi_dev *dev = video_drvdata(file);
Pawel Osciake007a322011-01-19 13:02:29 -0200934 return vb2_dqbuf(&dev->vb_vidq, p, file->f_flags & O_NONBLOCK);
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300935}
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300936
Adrian Bunkdc46ace2006-06-23 06:42:44 -0300937static int vidioc_streamon(struct file *file, void *priv, enum v4l2_buf_type i)
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300938{
Hans Verkuil730947b2010-04-10 04:13:53 -0300939 struct vivi_dev *dev = video_drvdata(file);
Pawel Osciake007a322011-01-19 13:02:29 -0200940 return vb2_streamon(&dev->vb_vidq, i);
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300941}
942
Adrian Bunkdc46ace2006-06-23 06:42:44 -0300943static int vidioc_streamoff(struct file *file, void *priv, enum v4l2_buf_type i)
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300944{
Hans Verkuil730947b2010-04-10 04:13:53 -0300945 struct vivi_dev *dev = video_drvdata(file);
Pawel Osciake007a322011-01-19 13:02:29 -0200946 return vb2_streamoff(&dev->vb_vidq, i);
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300947}
948
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300949static int vidioc_s_std(struct file *file, void *priv, v4l2_std_id *i)
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300950{
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300951 return 0;
952}
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300953
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300954/* only one input in this sample driver */
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300955static int vidioc_enum_input(struct file *file, void *priv,
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300956 struct v4l2_input *inp)
957{
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -0300958 if (inp->index >= NUM_INPUTS)
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300959 return -EINVAL;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300960
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300961 inp->type = V4L2_INPUT_TYPE_CAMERA;
Mauro Carvalho Chehab784c6682007-12-13 06:35:26 -0300962 inp->std = V4L2_STD_525_60;
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -0300963 sprintf(inp->name, "Camera %u", inp->index);
Hans Verkuil730947b2010-04-10 04:13:53 -0300964 return 0;
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300965}
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300966
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300967static int vidioc_g_input(struct file *file, void *priv, unsigned int *i)
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300968{
Hans Verkuil730947b2010-04-10 04:13:53 -0300969 struct vivi_dev *dev = video_drvdata(file);
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -0300970
971 *i = dev->input;
Hans Verkuil730947b2010-04-10 04:13:53 -0300972 return 0;
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300973}
Hans Verkuil730947b2010-04-10 04:13:53 -0300974
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300975static int vidioc_s_input(struct file *file, void *priv, unsigned int i)
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300976{
Hans Verkuil730947b2010-04-10 04:13:53 -0300977 struct vivi_dev *dev = video_drvdata(file);
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -0300978
979 if (i >= NUM_INPUTS)
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300980 return -EINVAL;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300981
Hans Verkuilc7a52f82011-06-07 10:20:23 -0300982 if (i == dev->input)
983 return 0;
984
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -0300985 dev->input = i;
Hans Verkuil730947b2010-04-10 04:13:53 -0300986 precalculate_bars(dev);
987 precalculate_line(dev);
988 return 0;
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300989}
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300990
Hans Verkuilc7a52f82011-06-07 10:20:23 -0300991static int vidioc_subscribe_event(struct v4l2_fh *fh,
992 struct v4l2_event_subscription *sub)
993{
994 switch (sub->type) {
995 case V4L2_EVENT_CTRL:
996 return v4l2_ctrl_subscribe_fh(fh, sub, 0);
997 default:
998 return -EINVAL;
999 }
1000}
1001
Hans Verkuil730947b2010-04-10 04:13:53 -03001002/* --- controls ---------------------------------------------- */
Hans Verkuil7e996af2011-01-23 12:33:16 -02001003
Hans Verkuila1c894f2011-06-07 06:34:41 -03001004static int vivi_g_volatile_ctrl(struct v4l2_ctrl *ctrl)
1005{
1006 struct vivi_dev *dev = container_of(ctrl->handler, struct vivi_dev, ctrl_handler);
1007
1008 if (ctrl == dev->autogain)
1009 dev->gain->val = jiffies & 0xff;
1010 return 0;
1011}
1012
Hans Verkuil7e996af2011-01-23 12:33:16 -02001013static int vivi_s_ctrl(struct v4l2_ctrl *ctrl)
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001014{
Hans Verkuil7e996af2011-01-23 12:33:16 -02001015 struct vivi_dev *dev = container_of(ctrl->handler, struct vivi_dev, ctrl_handler);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001016
Hans Verkuil7e996af2011-01-23 12:33:16 -02001017 if (ctrl == dev->button)
1018 dev->button_pressed = 30;
1019 return 0;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001020}
1021
1022/* ------------------------------------------------------------------
1023 File operations for the device
1024 ------------------------------------------------------------------*/
1025
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001026static ssize_t
1027vivi_read(struct file *file, char __user *data, size_t count, loff_t *ppos)
1028{
Hans Verkuil730947b2010-04-10 04:13:53 -03001029 struct vivi_dev *dev = video_drvdata(file);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001030
Pawel Osciake007a322011-01-19 13:02:29 -02001031 dprintk(dev, 1, "read called\n");
1032 return vb2_read(&dev->vb_vidq, data, count, ppos,
1033 file->f_flags & O_NONBLOCK);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001034}
1035
1036static unsigned int
1037vivi_poll(struct file *file, struct poll_table_struct *wait)
1038{
Hans Verkuil730947b2010-04-10 04:13:53 -03001039 struct vivi_dev *dev = video_drvdata(file);
Hans Verkuilc7a52f82011-06-07 10:20:23 -03001040 struct v4l2_fh *fh = file->private_data;
Pawel Osciake007a322011-01-19 13:02:29 -02001041 struct vb2_queue *q = &dev->vb_vidq;
Hans Verkuilc7a52f82011-06-07 10:20:23 -03001042 unsigned int res;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001043
Harvey Harrison7e28adb2008-04-08 23:20:00 -03001044 dprintk(dev, 1, "%s\n", __func__);
Hans Verkuilc7a52f82011-06-07 10:20:23 -03001045 res = vb2_poll(q, file, wait);
1046 if (v4l2_event_pending(fh))
1047 res |= POLLPRI;
1048 else
1049 poll_wait(file, &fh->events->wait, wait);
1050 return res;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001051}
1052
Hans Verkuilbec43662008-12-30 06:58:20 -03001053static int vivi_close(struct file *file)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001054{
Laurent Pinchart50462eb2009-12-10 11:47:13 -02001055 struct video_device *vdev = video_devdata(file);
Hans Verkuil730947b2010-04-10 04:13:53 -03001056 struct vivi_dev *dev = video_drvdata(file);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001057
Pawel Osciake007a322011-01-19 13:02:29 -02001058 dprintk(dev, 1, "close called (dev=%s), file %p\n",
1059 video_device_node_name(vdev), file);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001060
Hans Verkuil2e4784d2011-03-11 20:01:54 -03001061 if (v4l2_fh_is_singular_file(file))
Pawel Osciake007a322011-01-19 13:02:29 -02001062 vb2_queue_release(&dev->vb_vidq);
Hans Verkuil2e4784d2011-03-11 20:01:54 -03001063 return v4l2_fh_release(file);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001064}
1065
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -03001066static int vivi_mmap(struct file *file, struct vm_area_struct *vma)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001067{
Hans Verkuil730947b2010-04-10 04:13:53 -03001068 struct vivi_dev *dev = video_drvdata(file);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001069 int ret;
1070
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -03001071 dprintk(dev, 1, "mmap called, vma=0x%08lx\n", (unsigned long)vma);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001072
Pawel Osciake007a322011-01-19 13:02:29 -02001073 ret = vb2_mmap(&dev->vb_vidq, vma);
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -03001074 dprintk(dev, 1, "vma start=0x%08lx, size=%ld, ret=%d\n",
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001075 (unsigned long)vma->vm_start,
Hans Verkuil730947b2010-04-10 04:13:53 -03001076 (unsigned long)vma->vm_end - (unsigned long)vma->vm_start,
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001077 ret);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001078 return ret;
1079}
1080
Hans Verkuil7e996af2011-01-23 12:33:16 -02001081static const struct v4l2_ctrl_ops vivi_ctrl_ops = {
Hans Verkuila1c894f2011-06-07 06:34:41 -03001082 .g_volatile_ctrl = vivi_g_volatile_ctrl,
Hans Verkuil7e996af2011-01-23 12:33:16 -02001083 .s_ctrl = vivi_s_ctrl,
1084};
1085
1086#define VIVI_CID_CUSTOM_BASE (V4L2_CID_USER_BASE | 0xf000)
1087
1088static const struct v4l2_ctrl_config vivi_ctrl_button = {
1089 .ops = &vivi_ctrl_ops,
1090 .id = VIVI_CID_CUSTOM_BASE + 0,
1091 .name = "Button",
1092 .type = V4L2_CTRL_TYPE_BUTTON,
1093};
1094
1095static const struct v4l2_ctrl_config vivi_ctrl_boolean = {
1096 .ops = &vivi_ctrl_ops,
1097 .id = VIVI_CID_CUSTOM_BASE + 1,
1098 .name = "Boolean",
1099 .type = V4L2_CTRL_TYPE_BOOLEAN,
1100 .min = 0,
1101 .max = 1,
1102 .step = 1,
1103 .def = 1,
1104};
1105
1106static const struct v4l2_ctrl_config vivi_ctrl_int32 = {
1107 .ops = &vivi_ctrl_ops,
1108 .id = VIVI_CID_CUSTOM_BASE + 2,
1109 .name = "Integer 32 Bits",
1110 .type = V4L2_CTRL_TYPE_INTEGER,
Hans Verkuil5b283022011-01-11 17:32:28 -03001111 .min = 0x80000000,
1112 .max = 0x7fffffff,
Hans Verkuil7e996af2011-01-23 12:33:16 -02001113 .step = 1,
1114};
1115
1116static const struct v4l2_ctrl_config vivi_ctrl_int64 = {
1117 .ops = &vivi_ctrl_ops,
1118 .id = VIVI_CID_CUSTOM_BASE + 3,
1119 .name = "Integer 64 Bits",
1120 .type = V4L2_CTRL_TYPE_INTEGER64,
1121};
1122
1123static const char * const vivi_ctrl_menu_strings[] = {
1124 "Menu Item 0 (Skipped)",
1125 "Menu Item 1",
1126 "Menu Item 2 (Skipped)",
1127 "Menu Item 3",
1128 "Menu Item 4",
1129 "Menu Item 5 (Skipped)",
1130 NULL,
1131};
1132
1133static const struct v4l2_ctrl_config vivi_ctrl_menu = {
1134 .ops = &vivi_ctrl_ops,
1135 .id = VIVI_CID_CUSTOM_BASE + 4,
1136 .name = "Menu",
1137 .type = V4L2_CTRL_TYPE_MENU,
1138 .min = 1,
1139 .max = 4,
1140 .def = 3,
1141 .menu_skip_mask = 0x04,
1142 .qmenu = vivi_ctrl_menu_strings,
1143};
1144
1145static const struct v4l2_ctrl_config vivi_ctrl_string = {
1146 .ops = &vivi_ctrl_ops,
1147 .id = VIVI_CID_CUSTOM_BASE + 5,
1148 .name = "String",
1149 .type = V4L2_CTRL_TYPE_STRING,
1150 .min = 2,
1151 .max = 4,
1152 .step = 1,
1153};
1154
Hans Verkuilbec43662008-12-30 06:58:20 -03001155static const struct v4l2_file_operations vivi_fops = {
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001156 .owner = THIS_MODULE,
Hans Verkuilc7a52f82011-06-07 10:20:23 -03001157 .open = v4l2_fh_open,
Mauro Carvalho Chehabf905c442007-12-10 04:07:03 -03001158 .release = vivi_close,
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001159 .read = vivi_read,
1160 .poll = vivi_poll,
Hans Verkuilfedc6c82010-09-20 18:25:55 -03001161 .unlocked_ioctl = video_ioctl2, /* V4L2 ioctl handler */
Mauro Carvalho Chehab5a037702007-08-02 23:31:54 -03001162 .mmap = vivi_mmap,
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001163};
1164
Hans Verkuila3998102008-07-21 02:57:38 -03001165static const struct v4l2_ioctl_ops vivi_ioctl_ops = {
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001166 .vidioc_querycap = vidioc_querycap,
Hans Verkuil78b526a2008-05-28 12:16:41 -03001167 .vidioc_enum_fmt_vid_cap = vidioc_enum_fmt_vid_cap,
1168 .vidioc_g_fmt_vid_cap = vidioc_g_fmt_vid_cap,
1169 .vidioc_try_fmt_vid_cap = vidioc_try_fmt_vid_cap,
1170 .vidioc_s_fmt_vid_cap = vidioc_s_fmt_vid_cap,
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001171 .vidioc_reqbufs = vidioc_reqbufs,
1172 .vidioc_querybuf = vidioc_querybuf,
1173 .vidioc_qbuf = vidioc_qbuf,
1174 .vidioc_dqbuf = vidioc_dqbuf,
1175 .vidioc_s_std = vidioc_s_std,
1176 .vidioc_enum_input = vidioc_enum_input,
1177 .vidioc_g_input = vidioc_g_input,
1178 .vidioc_s_input = vidioc_s_input,
Hans Verkuil730947b2010-04-10 04:13:53 -03001179 .vidioc_streamon = vidioc_streamon,
1180 .vidioc_streamoff = vidioc_streamoff,
Hans Verkuilc7a52f82011-06-07 10:20:23 -03001181 .vidioc_subscribe_event = vidioc_subscribe_event,
1182 .vidioc_unsubscribe_event = v4l2_event_unsubscribe,
Hans Verkuila3998102008-07-21 02:57:38 -03001183};
1184
1185static struct video_device vivi_template = {
1186 .name = "vivi",
Hans Verkuila3998102008-07-21 02:57:38 -03001187 .fops = &vivi_fops,
1188 .ioctl_ops = &vivi_ioctl_ops,
Hans Verkuila3998102008-07-21 02:57:38 -03001189 .release = video_device_release,
1190
Mauro Carvalho Chehab784c6682007-12-13 06:35:26 -03001191 .tvnorms = V4L2_STD_525_60,
Mauro Carvalho Chehabe75f9ce2006-11-20 13:19:20 -03001192 .current_norm = V4L2_STD_NTSC_M,
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001193};
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001194
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001195/* -----------------------------------------------------------------
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001196 Initialization and module stuff
1197 ------------------------------------------------------------------*/
1198
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001199static int vivi_release(void)
1200{
1201 struct vivi_dev *dev;
1202 struct list_head *list;
1203
1204 while (!list_empty(&vivi_devlist)) {
1205 list = vivi_devlist.next;
1206 list_del(list);
1207 dev = list_entry(list, struct vivi_dev, vivi_devlist);
1208
Laurent Pinchart38c7c032009-11-27 13:57:15 -03001209 v4l2_info(&dev->v4l2_dev, "unregistering %s\n",
1210 video_device_node_name(dev->vfd));
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001211 video_unregister_device(dev->vfd);
1212 v4l2_device_unregister(&dev->v4l2_dev);
Hans Verkuil7e996af2011-01-23 12:33:16 -02001213 v4l2_ctrl_handler_free(&dev->ctrl_handler);
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001214 kfree(dev);
1215 }
1216
1217 return 0;
1218}
1219
Hans Verkuilc41ee242009-02-14 13:43:44 -03001220static int __init vivi_create_instance(int inst)
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001221{
1222 struct vivi_dev *dev;
1223 struct video_device *vfd;
Hans Verkuil7e996af2011-01-23 12:33:16 -02001224 struct v4l2_ctrl_handler *hdl;
Pawel Osciake007a322011-01-19 13:02:29 -02001225 struct vb2_queue *q;
Hans Verkuil730947b2010-04-10 04:13:53 -03001226 int ret;
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001227
1228 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
1229 if (!dev)
1230 return -ENOMEM;
1231
1232 snprintf(dev->v4l2_dev.name, sizeof(dev->v4l2_dev.name),
Hans Verkuilc41ee242009-02-14 13:43:44 -03001233 "%s-%03d", VIVI_MODULE_NAME, inst);
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001234 ret = v4l2_device_register(NULL, &dev->v4l2_dev);
1235 if (ret)
1236 goto free_dev;
1237
Hans Verkuil730947b2010-04-10 04:13:53 -03001238 dev->fmt = &formats[0];
1239 dev->width = 640;
1240 dev->height = 480;
Hans Verkuil7e996af2011-01-23 12:33:16 -02001241 hdl = &dev->ctrl_handler;
1242 v4l2_ctrl_handler_init(hdl, 11);
1243 dev->volume = v4l2_ctrl_new_std(hdl, &vivi_ctrl_ops,
1244 V4L2_CID_AUDIO_VOLUME, 0, 255, 1, 200);
1245 dev->brightness = v4l2_ctrl_new_std(hdl, &vivi_ctrl_ops,
1246 V4L2_CID_BRIGHTNESS, 0, 255, 1, 127);
1247 dev->contrast = v4l2_ctrl_new_std(hdl, &vivi_ctrl_ops,
1248 V4L2_CID_CONTRAST, 0, 255, 1, 16);
1249 dev->saturation = v4l2_ctrl_new_std(hdl, &vivi_ctrl_ops,
1250 V4L2_CID_SATURATION, 0, 255, 1, 127);
1251 dev->hue = v4l2_ctrl_new_std(hdl, &vivi_ctrl_ops,
1252 V4L2_CID_HUE, -128, 127, 1, 0);
Hans Verkuila1c894f2011-06-07 06:34:41 -03001253 dev->autogain = v4l2_ctrl_new_std(hdl, &vivi_ctrl_ops,
1254 V4L2_CID_AUTOGAIN, 0, 1, 1, 1);
1255 dev->gain = v4l2_ctrl_new_std(hdl, &vivi_ctrl_ops,
1256 V4L2_CID_GAIN, 0, 255, 1, 100);
Hans Verkuil7e996af2011-01-23 12:33:16 -02001257 dev->button = v4l2_ctrl_new_custom(hdl, &vivi_ctrl_button, NULL);
1258 dev->int32 = v4l2_ctrl_new_custom(hdl, &vivi_ctrl_int32, NULL);
1259 dev->int64 = v4l2_ctrl_new_custom(hdl, &vivi_ctrl_int64, NULL);
1260 dev->boolean = v4l2_ctrl_new_custom(hdl, &vivi_ctrl_boolean, NULL);
1261 dev->menu = v4l2_ctrl_new_custom(hdl, &vivi_ctrl_menu, NULL);
1262 dev->string = v4l2_ctrl_new_custom(hdl, &vivi_ctrl_string, NULL);
1263 if (hdl->error) {
1264 ret = hdl->error;
1265 goto unreg_dev;
1266 }
Hans Verkuila1c894f2011-06-07 06:34:41 -03001267 v4l2_ctrl_auto_cluster(2, &dev->autogain, 0, true);
Hans Verkuil7e996af2011-01-23 12:33:16 -02001268 dev->v4l2_dev.ctrl_handler = hdl;
Hans Verkuil730947b2010-04-10 04:13:53 -03001269
Hans Verkuilfedc6c82010-09-20 18:25:55 -03001270 /* initialize locks */
1271 spin_lock_init(&dev->slock);
Hans Verkuilfedc6c82010-09-20 18:25:55 -03001272
Pawel Osciake007a322011-01-19 13:02:29 -02001273 /* initialize queue */
1274 q = &dev->vb_vidq;
1275 memset(q, 0, sizeof(dev->vb_vidq));
1276 q->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
1277 q->io_modes = VB2_MMAP | VB2_USERPTR | VB2_READ;
1278 q->drv_priv = dev;
1279 q->buf_struct_size = sizeof(struct vivi_buffer);
1280 q->ops = &vivi_video_qops;
1281 q->mem_ops = &vb2_vmalloc_memops;
1282
1283 vb2_queue_init(q);
1284
1285 mutex_init(&dev->mutex);
Hans Verkuil730947b2010-04-10 04:13:53 -03001286
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001287 /* init video dma queues */
1288 INIT_LIST_HEAD(&dev->vidq.active);
1289 init_waitqueue_head(&dev->vidq.wq);
1290
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001291 ret = -ENOMEM;
1292 vfd = video_device_alloc();
1293 if (!vfd)
1294 goto unreg_dev;
1295
1296 *vfd = vivi_template;
Mauro Carvalho Chehabc285add2009-06-25 16:28:23 -03001297 vfd->debug = debug;
Hans Verkuil730947b2010-04-10 04:13:53 -03001298 vfd->v4l2_dev = &dev->v4l2_dev;
Hans Verkuilb1a873a2011-03-22 10:14:07 -03001299 set_bit(V4L2_FL_USE_FH_PRIO, &vfd->flags);
Pawel Osciake007a322011-01-19 13:02:29 -02001300
1301 /*
1302 * Provide a mutex to v4l2 core. It will be used to protect
1303 * all fops and v4l2 ioctls.
1304 */
Hans Verkuilfedc6c82010-09-20 18:25:55 -03001305 vfd->lock = &dev->mutex;
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001306
1307 ret = video_register_device(vfd, VFL_TYPE_GRABBER, video_nr);
1308 if (ret < 0)
1309 goto rel_vdev;
1310
1311 video_set_drvdata(vfd, dev);
1312
1313 /* Now that everything is fine, let's add it to device list */
1314 list_add_tail(&dev->vivi_devlist, &vivi_devlist);
1315
Roel Kluin7de0b872009-12-16 13:06:33 -03001316 if (video_nr != -1)
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001317 video_nr++;
1318
1319 dev->vfd = vfd;
Laurent Pinchart38c7c032009-11-27 13:57:15 -03001320 v4l2_info(&dev->v4l2_dev, "V4L2 device registered as %s\n",
1321 video_device_node_name(vfd));
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001322 return 0;
1323
1324rel_vdev:
1325 video_device_release(vfd);
1326unreg_dev:
Hans Verkuil7e996af2011-01-23 12:33:16 -02001327 v4l2_ctrl_handler_free(hdl);
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001328 v4l2_device_unregister(&dev->v4l2_dev);
1329free_dev:
1330 kfree(dev);
1331 return ret;
1332}
1333
Mauro Carvalho Chehab980d4f12008-09-03 17:11:53 -03001334/* This routine allocates from 1 to n_devs virtual drivers.
1335
1336 The real maximum number of virtual drivers will depend on how many drivers
1337 will succeed. This is limited to the maximum number of devices that
Hans Verkuil62cfdac2009-02-14 11:37:17 -03001338 videodev supports, which is equal to VIDEO_NUM_DEVICES.
Mauro Carvalho Chehab980d4f12008-09-03 17:11:53 -03001339 */
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001340static int __init vivi_init(void)
1341{
Hans Verkuil730947b2010-04-10 04:13:53 -03001342 const struct font_desc *font = find_font("VGA8x16");
Hans Verkuil9185cbf2009-03-06 09:58:12 -03001343 int ret = 0, i;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001344
Hans Verkuil730947b2010-04-10 04:13:53 -03001345 if (font == NULL) {
1346 printk(KERN_ERR "vivi: could not find font\n");
1347 return -ENODEV;
1348 }
1349 font8x16 = font->data;
1350
Mauro Carvalho Chehab980d4f12008-09-03 17:11:53 -03001351 if (n_devs <= 0)
1352 n_devs = 1;
1353
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001354 for (i = 0; i < n_devs; i++) {
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001355 ret = vivi_create_instance(i);
1356 if (ret) {
1357 /* If some instantiations succeeded, keep driver */
Mauro Carvalho Chehab980d4f12008-09-03 17:11:53 -03001358 if (i)
1359 ret = 0;
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001360 break;
Mauro Carvalho Chehab980d4f12008-09-03 17:11:53 -03001361 }
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001362 }
1363
1364 if (ret < 0) {
Hans Verkuil730947b2010-04-10 04:13:53 -03001365 printk(KERN_ERR "vivi: error %d while loading driver\n", ret);
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001366 return ret;
1367 }
1368
1369 printk(KERN_INFO "Video Technology Magazine Virtual Video "
Mauro Carvalho Chehab1990d502011-06-24 14:45:49 -03001370 "Capture Board ver %s successfully loaded.\n",
1371 VIVI_VERSION);
Mauro Carvalho Chehab980d4f12008-09-03 17:11:53 -03001372
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001373 /* n_devs will reflect the actual number of allocated devices */
1374 n_devs = i;
Mauro Carvalho Chehab980d4f12008-09-03 17:11:53 -03001375
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001376 return ret;
1377}
1378
1379static void __exit vivi_exit(void)
1380{
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001381 vivi_release();
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001382}
1383
1384module_init(vivi_init);
1385module_exit(vivi_exit);