blob: 5578c195358514e1c012fe2c04d188986a059885 [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 Verkuilb6d17a52011-03-29 16:33:11 -0300179 struct v4l2_ctrl *bitmask;
Hans Verkuil730947b2010-04-10 04:13:53 -0300180
Mauro Carvalho Chehab55862ac2007-12-13 16:13:37 -0300181 spinlock_t slock;
Brandon Philipsaa9dbac2008-04-02 18:10:59 -0300182 struct mutex mutex;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300183
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300184 /* various device info */
Mauro Carvalho Chehabf905c442007-12-10 04:07:03 -0300185 struct video_device *vfd;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300186
187 struct vivi_dmaqueue vidq;
188
189 /* Several counters */
Hans Verkuil730947b2010-04-10 04:13:53 -0300190 unsigned ms;
Mauro Carvalho Chehabdfd8c042008-01-13 19:36:11 -0300191 unsigned long jiffies;
Hans Verkuil7e996af2011-01-23 12:33:16 -0200192 unsigned button_pressed;
Mauro Carvalho Chehab025341d2007-12-10 04:43:38 -0300193
194 int mv_count; /* Controls bars movement */
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -0300195
196 /* Input Number */
197 int input;
Hans Verkuilc41ee242009-02-14 13:43:44 -0300198
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300199 /* video capture */
200 struct vivi_fmt *fmt;
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300201 unsigned int width, height;
Pawel Osciake007a322011-01-19 13:02:29 -0200202 struct vb2_queue vb_vidq;
203 enum v4l2_field field;
204 unsigned int field_count;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300205
Hans Verkuil730947b2010-04-10 04:13:53 -0300206 u8 bars[9][3];
207 u8 line[MAX_WIDTH * 4];
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300208};
209
210/* ------------------------------------------------------------------
211 DMA and thread functions
212 ------------------------------------------------------------------*/
213
214/* Bars and Colors should match positions */
215
216enum colors {
217 WHITE,
Hans Verkuil730947b2010-04-10 04:13:53 -0300218 AMBER,
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300219 CYAN,
220 GREEN,
221 MAGENTA,
222 RED,
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300223 BLUE,
224 BLACK,
Hans Verkuil730947b2010-04-10 04:13:53 -0300225 TEXT_BLACK,
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300226};
227
Hans Verkuil730947b2010-04-10 04:13:53 -0300228/* R G B */
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -0300229#define COLOR_WHITE {204, 204, 204}
Hans Verkuil730947b2010-04-10 04:13:53 -0300230#define COLOR_AMBER {208, 208, 0}
231#define COLOR_CYAN { 0, 206, 206}
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -0300232#define COLOR_GREEN { 0, 239, 0}
233#define COLOR_MAGENTA {239, 0, 239}
234#define COLOR_RED {205, 0, 0}
235#define COLOR_BLUE { 0, 0, 255}
236#define COLOR_BLACK { 0, 0, 0}
237
238struct bar_std {
Hans Verkuil730947b2010-04-10 04:13:53 -0300239 u8 bar[9][3];
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300240};
241
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -0300242/* Maximum number of bars are 10 - otherwise, the input print code
243 should be modified */
244static struct bar_std bars[] = {
245 { /* Standard ITU-R color bar sequence */
Hans Verkuil730947b2010-04-10 04:13:53 -0300246 { COLOR_WHITE, COLOR_AMBER, COLOR_CYAN, COLOR_GREEN,
247 COLOR_MAGENTA, COLOR_RED, COLOR_BLUE, COLOR_BLACK, COLOR_BLACK }
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -0300248 }, {
Hans Verkuil730947b2010-04-10 04:13:53 -0300249 { COLOR_WHITE, COLOR_AMBER, COLOR_BLACK, COLOR_WHITE,
250 COLOR_AMBER, COLOR_BLACK, COLOR_WHITE, COLOR_AMBER, COLOR_BLACK }
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -0300251 }, {
Hans Verkuil730947b2010-04-10 04:13:53 -0300252 { COLOR_WHITE, COLOR_CYAN, COLOR_BLACK, COLOR_WHITE,
253 COLOR_CYAN, COLOR_BLACK, COLOR_WHITE, COLOR_CYAN, COLOR_BLACK }
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -0300254 }, {
Hans Verkuil730947b2010-04-10 04:13:53 -0300255 { COLOR_WHITE, COLOR_GREEN, COLOR_BLACK, COLOR_WHITE,
256 COLOR_GREEN, COLOR_BLACK, COLOR_WHITE, COLOR_GREEN, COLOR_BLACK }
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -0300257 },
258};
259
260#define NUM_INPUTS ARRAY_SIZE(bars)
261
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300262#define TO_Y(r, g, b) \
263 (((16829 * r + 33039 * g + 6416 * b + 32768) >> 16) + 16)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300264/* RGB to V(Cr) Color transform */
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300265#define TO_V(r, g, b) \
266 (((28784 * r - 24103 * g - 4681 * b + 32768) >> 16) + 128)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300267/* RGB to U(Cb) Color transform */
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300268#define TO_U(r, g, b) \
269 (((-9714 * r - 19070 * g + 28784 * b + 32768) >> 16) + 128)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300270
Mauro Carvalho Chehabc285add2009-06-25 16:28:23 -0300271/* precalculate color bar values to speed up rendering */
Hans Verkuil730947b2010-04-10 04:13:53 -0300272static void precalculate_bars(struct vivi_dev *dev)
Mauro Carvalho Chehabc285add2009-06-25 16:28:23 -0300273{
Hans Verkuil730947b2010-04-10 04:13:53 -0300274 u8 r, g, b;
Mauro Carvalho Chehabc285add2009-06-25 16:28:23 -0300275 int k, is_yuv;
276
Hans Verkuil730947b2010-04-10 04:13:53 -0300277 for (k = 0; k < 9; k++) {
278 r = bars[dev->input].bar[k][0];
279 g = bars[dev->input].bar[k][1];
280 b = bars[dev->input].bar[k][2];
Mauro Carvalho Chehabc285add2009-06-25 16:28:23 -0300281 is_yuv = 0;
282
Hans Verkuil730947b2010-04-10 04:13:53 -0300283 switch (dev->fmt->fourcc) {
Mauro Carvalho Chehabc285add2009-06-25 16:28:23 -0300284 case V4L2_PIX_FMT_YUYV:
285 case V4L2_PIX_FMT_UYVY:
286 is_yuv = 1;
287 break;
288 case V4L2_PIX_FMT_RGB565:
289 case V4L2_PIX_FMT_RGB565X:
290 r >>= 3;
291 g >>= 2;
292 b >>= 3;
293 break;
294 case V4L2_PIX_FMT_RGB555:
295 case V4L2_PIX_FMT_RGB555X:
296 r >>= 3;
297 g >>= 3;
298 b >>= 3;
299 break;
300 }
301
302 if (is_yuv) {
Hans Verkuil730947b2010-04-10 04:13:53 -0300303 dev->bars[k][0] = TO_Y(r, g, b); /* Luma */
304 dev->bars[k][1] = TO_U(r, g, b); /* Cb */
305 dev->bars[k][2] = TO_V(r, g, b); /* Cr */
Mauro Carvalho Chehabc285add2009-06-25 16:28:23 -0300306 } else {
Hans Verkuil730947b2010-04-10 04:13:53 -0300307 dev->bars[k][0] = r;
308 dev->bars[k][1] = g;
309 dev->bars[k][2] = b;
Mauro Carvalho Chehabc285add2009-06-25 16:28:23 -0300310 }
311 }
Mauro Carvalho Chehabc285add2009-06-25 16:28:23 -0300312}
313
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -0300314#define TSTAMP_MIN_Y 24
315#define TSTAMP_MAX_Y (TSTAMP_MIN_Y + 15)
316#define TSTAMP_INPUT_X 10
317#define TSTAMP_MIN_X (54 + TSTAMP_INPUT_X)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300318
Hans Verkuil730947b2010-04-10 04:13:53 -0300319static void gen_twopix(struct vivi_dev *dev, u8 *buf, int colorpos)
Magnus Damm74d7c5a2008-10-14 12:46:59 -0300320{
Hans Verkuil730947b2010-04-10 04:13:53 -0300321 u8 r_y, g_u, b_v;
Magnus Damm74d7c5a2008-10-14 12:46:59 -0300322 int color;
Hans Verkuil730947b2010-04-10 04:13:53 -0300323 u8 *p;
Magnus Damm74d7c5a2008-10-14 12:46:59 -0300324
Hans Verkuil730947b2010-04-10 04:13:53 -0300325 r_y = dev->bars[colorpos][0]; /* R or precalculated Y */
326 g_u = dev->bars[colorpos][1]; /* G or precalculated U */
327 b_v = dev->bars[colorpos][2]; /* B or precalculated V */
Magnus Damm74d7c5a2008-10-14 12:46:59 -0300328
329 for (color = 0; color < 4; color++) {
330 p = buf + color;
331
Hans Verkuil730947b2010-04-10 04:13:53 -0300332 switch (dev->fmt->fourcc) {
Magnus Dammd891f472008-10-14 12:47:09 -0300333 case V4L2_PIX_FMT_YUYV:
334 switch (color) {
335 case 0:
336 case 2:
337 *p = r_y;
338 break;
339 case 1:
340 *p = g_u;
341 break;
342 case 3:
343 *p = b_v;
344 break;
345 }
Magnus Damm74d7c5a2008-10-14 12:46:59 -0300346 break;
Magnus Dammfca36ba2008-10-14 12:47:25 -0300347 case V4L2_PIX_FMT_UYVY:
348 switch (color) {
349 case 1:
350 case 3:
351 *p = r_y;
352 break;
353 case 0:
354 *p = g_u;
355 break;
356 case 2:
357 *p = b_v;
358 break;
359 }
360 break;
Magnus Dammaeadb5d2008-10-14 12:47:35 -0300361 case V4L2_PIX_FMT_RGB565:
362 switch (color) {
363 case 0:
364 case 2:
365 *p = (g_u << 5) | b_v;
366 break;
367 case 1:
368 case 3:
369 *p = (r_y << 3) | (g_u >> 3);
370 break;
371 }
372 break;
373 case V4L2_PIX_FMT_RGB565X:
374 switch (color) {
375 case 0:
376 case 2:
377 *p = (r_y << 3) | (g_u >> 3);
378 break;
379 case 1:
380 case 3:
381 *p = (g_u << 5) | b_v;
382 break;
383 }
384 break;
Magnus Dammdef52392008-10-14 12:47:43 -0300385 case V4L2_PIX_FMT_RGB555:
386 switch (color) {
387 case 0:
388 case 2:
389 *p = (g_u << 5) | b_v;
390 break;
391 case 1:
392 case 3:
393 *p = (r_y << 2) | (g_u >> 3);
394 break;
395 }
396 break;
397 case V4L2_PIX_FMT_RGB555X:
398 switch (color) {
399 case 0:
400 case 2:
401 *p = (r_y << 2) | (g_u >> 3);
402 break;
403 case 1:
404 case 3:
405 *p = (g_u << 5) | b_v;
406 break;
407 }
408 break;
Magnus Damm74d7c5a2008-10-14 12:46:59 -0300409 }
410 }
411}
412
Hans Verkuil730947b2010-04-10 04:13:53 -0300413static void precalculate_line(struct vivi_dev *dev)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300414{
Hans Verkuil730947b2010-04-10 04:13:53 -0300415 int w;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300416
Hans Verkuil730947b2010-04-10 04:13:53 -0300417 for (w = 0; w < dev->width * 2; w += 2) {
418 int colorpos = (w / (dev->width / 8) % 8);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300419
Hans Verkuil730947b2010-04-10 04:13:53 -0300420 gen_twopix(dev, dev->line + w * 2, colorpos);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300421 }
Hans Verkuil730947b2010-04-10 04:13:53 -0300422}
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300423
Hans Verkuil730947b2010-04-10 04:13:53 -0300424static void gen_text(struct vivi_dev *dev, char *basep,
425 int y, int x, char *text)
426{
427 int line;
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -0300428
Hans Verkuil730947b2010-04-10 04:13:53 -0300429 /* Checks if it is possible to show string */
430 if (y + 16 >= dev->height || x + strlen(text) * 8 >= dev->width)
431 return;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300432
433 /* Print stream time */
Hans Verkuil730947b2010-04-10 04:13:53 -0300434 for (line = y; line < y + 16; line++) {
435 int j = 0;
436 char *pos = basep + line * dev->width * 2 + x * 2;
437 char *s;
438
439 for (s = text; *s; s++) {
440 u8 chr = font8x16[*s * 16 + line - y];
441 int i;
442
443 for (i = 0; i < 7; i++, j++) {
Magnus Damm74d7c5a2008-10-14 12:46:59 -0300444 /* Draw white font on black background */
Hans Verkuil730947b2010-04-10 04:13:53 -0300445 if (chr & (1 << (7 - i)))
446 gen_twopix(dev, pos + j * 2, WHITE);
Magnus Damm74d7c5a2008-10-14 12:46:59 -0300447 else
Hans Verkuil730947b2010-04-10 04:13:53 -0300448 gen_twopix(dev, pos + j * 2, TEXT_BLACK);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300449 }
450 }
451 }
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300452}
Brandon Philips78718e52008-04-02 18:10:59 -0300453
Hans Verkuil730947b2010-04-10 04:13:53 -0300454static void vivi_fillbuff(struct vivi_dev *dev, struct vivi_buffer *buf)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300455{
Pawel Osciake007a322011-01-19 13:02:29 -0200456 int wmax = dev->width;
457 int hmax = dev->height;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300458 struct timeval ts;
Pawel Osciake007a322011-01-19 13:02:29 -0200459 void *vbuf = vb2_plane_vaddr(&buf->vb, 0);
Hans Verkuil730947b2010-04-10 04:13:53 -0300460 unsigned ms;
461 char str[100];
462 int h, line = 1;
Hans Verkuila1c894f2011-06-07 06:34:41 -0300463 s32 gain;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300464
Marcin Slusarz5c554e62008-06-22 09:11:40 -0300465 if (!vbuf)
Mauro Carvalho Chehab5a037702007-08-02 23:31:54 -0300466 return;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300467
Hans Verkuil730947b2010-04-10 04:13:53 -0300468 for (h = 0; h < hmax; h++)
469 memcpy(vbuf + h * wmax * 2, dev->line + (dev->mv_count % wmax) * 2, wmax * 2);
Mauro Carvalho Chehab5a037702007-08-02 23:31:54 -0300470
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300471 /* Updates stream time */
472
Hans Verkuil730947b2010-04-10 04:13:53 -0300473 dev->ms += jiffies_to_msecs(jiffies - dev->jiffies);
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300474 dev->jiffies = jiffies;
Hans Verkuil730947b2010-04-10 04:13:53 -0300475 ms = dev->ms;
476 snprintf(str, sizeof(str), " %02d:%02d:%02d:%03d ",
477 (ms / (60 * 60 * 1000)) % 24,
478 (ms / (60 * 1000)) % 60,
479 (ms / 1000) % 60,
480 ms % 1000);
481 gen_text(dev, vbuf, line++ * 16, 16, str);
482 snprintf(str, sizeof(str), " %dx%d, input %d ",
483 dev->width, dev->height, dev->input);
484 gen_text(dev, vbuf, line++ * 16, 16, str);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300485
Hans Verkuila1c894f2011-06-07 06:34:41 -0300486 gain = v4l2_ctrl_g_ctrl(dev->gain);
Hans Verkuil7e996af2011-01-23 12:33:16 -0200487 mutex_lock(&dev->ctrl_handler.lock);
Hans Verkuil730947b2010-04-10 04:13:53 -0300488 snprintf(str, sizeof(str), " brightness %3d, contrast %3d, saturation %3d, hue %d ",
Hans Verkuil7e996af2011-01-23 12:33:16 -0200489 dev->brightness->cur.val,
490 dev->contrast->cur.val,
491 dev->saturation->cur.val,
492 dev->hue->cur.val);
Hans Verkuil730947b2010-04-10 04:13:53 -0300493 gen_text(dev, vbuf, line++ * 16, 16, str);
Hans Verkuila1c894f2011-06-07 06:34:41 -0300494 snprintf(str, sizeof(str), " autogain %d, gain %3d, volume %3d ",
495 dev->autogain->cur.val, gain, dev->volume->cur.val);
Hans Verkuil730947b2010-04-10 04:13:53 -0300496 gen_text(dev, vbuf, line++ * 16, 16, str);
Hans Verkuilb6d17a52011-03-29 16:33:11 -0300497 snprintf(str, sizeof(str), " int32 %d, int64 %lld, bitmask %08x ",
Hans Verkuil7e996af2011-01-23 12:33:16 -0200498 dev->int32->cur.val,
Hans Verkuilb6d17a52011-03-29 16:33:11 -0300499 dev->int64->cur.val64,
500 dev->bitmask->cur.val);
Hans Verkuil7e996af2011-01-23 12:33:16 -0200501 gen_text(dev, vbuf, line++ * 16, 16, str);
502 snprintf(str, sizeof(str), " boolean %d, menu %s, string \"%s\" ",
503 dev->boolean->cur.val,
504 dev->menu->qmenu[dev->menu->cur.val],
505 dev->string->cur.string);
506 mutex_unlock(&dev->ctrl_handler.lock);
507 gen_text(dev, vbuf, line++ * 16, 16, str);
508 if (dev->button_pressed) {
509 dev->button_pressed--;
510 snprintf(str, sizeof(str), " button pressed!");
511 gen_text(dev, vbuf, line++ * 16, 16, str);
512 }
Hans Verkuil730947b2010-04-10 04:13:53 -0300513
514 dev->mv_count += 2;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300515
Pawel Osciake007a322011-01-19 13:02:29 -0200516 buf->vb.v4l2_buf.field = dev->field;
517 dev->field_count++;
518 buf->vb.v4l2_buf.sequence = dev->field_count >> 1;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300519 do_gettimeofday(&ts);
Pawel Osciake007a322011-01-19 13:02:29 -0200520 buf->vb.v4l2_buf.timestamp = ts;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300521}
522
Hans Verkuil730947b2010-04-10 04:13:53 -0300523static void vivi_thread_tick(struct vivi_dev *dev)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300524{
Brandon Philips78718e52008-04-02 18:10:59 -0300525 struct vivi_dmaqueue *dma_q = &dev->vidq;
Hans Verkuil730947b2010-04-10 04:13:53 -0300526 struct vivi_buffer *buf;
Brandon Philips78718e52008-04-02 18:10:59 -0300527 unsigned long flags = 0;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300528
Brandon Philips78718e52008-04-02 18:10:59 -0300529 dprintk(dev, 1, "Thread tick\n");
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300530
Brandon Philips78718e52008-04-02 18:10:59 -0300531 spin_lock_irqsave(&dev->slock, flags);
532 if (list_empty(&dma_q->active)) {
533 dprintk(dev, 1, "No active queue to serve\n");
Hans Verkuil1de5be52011-07-05 07:19:23 -0300534 spin_unlock_irqrestore(&dev->slock, flags);
535 return;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300536 }
Brandon Philips78718e52008-04-02 18:10:59 -0300537
Pawel Osciake007a322011-01-19 13:02:29 -0200538 buf = list_entry(dma_q->active.next, struct vivi_buffer, list);
539 list_del(&buf->list);
Hans Verkuil1de5be52011-07-05 07:19:23 -0300540 spin_unlock_irqrestore(&dev->slock, flags);
Brandon Philips78718e52008-04-02 18:10:59 -0300541
Pawel Osciake007a322011-01-19 13:02:29 -0200542 do_gettimeofday(&buf->vb.v4l2_buf.timestamp);
Brandon Philips78718e52008-04-02 18:10:59 -0300543
544 /* Fill buffer */
Hans Verkuil730947b2010-04-10 04:13:53 -0300545 vivi_fillbuff(dev, buf);
Brandon Philips78718e52008-04-02 18:10:59 -0300546 dprintk(dev, 1, "filled buffer %p\n", buf);
547
Pawel Osciake007a322011-01-19 13:02:29 -0200548 vb2_buffer_done(&buf->vb, VB2_BUF_STATE_DONE);
549 dprintk(dev, 2, "[%p/%d] done\n", buf, buf->vb.v4l2_buf.index);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300550}
551
Mauro Carvalho Chehab6594ad82007-12-13 16:15:41 -0300552#define frames_to_ms(frames) \
553 ((frames * WAKE_NUMERATOR * 1000) / WAKE_DENOMINATOR)
554
Hans Verkuil730947b2010-04-10 04:13:53 -0300555static void vivi_sleep(struct vivi_dev *dev)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300556{
Brandon Philips78718e52008-04-02 18:10:59 -0300557 struct vivi_dmaqueue *dma_q = &dev->vidq;
558 int timeout;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300559 DECLARE_WAITQUEUE(wait, current);
560
Harvey Harrison7e28adb2008-04-08 23:20:00 -0300561 dprintk(dev, 1, "%s dma_q=0x%08lx\n", __func__,
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300562 (unsigned long)dma_q);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300563
564 add_wait_queue(&dma_q->wq, &wait);
Mauro Carvalho Chehab6594ad82007-12-13 16:15:41 -0300565 if (kthread_should_stop())
566 goto stop_task;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300567
Mauro Carvalho Chehab6594ad82007-12-13 16:15:41 -0300568 /* Calculate time to wake up */
Brandon Philips78718e52008-04-02 18:10:59 -0300569 timeout = msecs_to_jiffies(frames_to_ms(1));
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300570
Hans Verkuil730947b2010-04-10 04:13:53 -0300571 vivi_thread_tick(dev);
Mauro Carvalho Chehab6594ad82007-12-13 16:15:41 -0300572
573 schedule_timeout_interruptible(timeout);
574
575stop_task:
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300576 remove_wait_queue(&dma_q->wq, &wait);
577 try_to_freeze();
578}
579
Adrian Bunk972c3512006-04-27 21:06:50 -0300580static int vivi_thread(void *data)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300581{
Hans Verkuil730947b2010-04-10 04:13:53 -0300582 struct vivi_dev *dev = data;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300583
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300584 dprintk(dev, 1, "thread started\n");
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300585
Rafael J. Wysocki83144182007-07-17 04:03:35 -0700586 set_freezable();
Mauro Carvalho Chehab0b600512007-01-14 08:33:24 -0300587
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300588 for (;;) {
Hans Verkuil730947b2010-04-10 04:13:53 -0300589 vivi_sleep(dev);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300590
591 if (kthread_should_stop())
592 break;
593 }
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300594 dprintk(dev, 1, "thread: exit\n");
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300595 return 0;
596}
597
Pawel Osciake007a322011-01-19 13:02:29 -0200598static int vivi_start_generating(struct vivi_dev *dev)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300599{
Brandon Philips78718e52008-04-02 18:10:59 -0300600 struct vivi_dmaqueue *dma_q = &dev->vidq;
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300601
Harvey Harrison7e28adb2008-04-08 23:20:00 -0300602 dprintk(dev, 1, "%s\n", __func__);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300603
Hans Verkuil730947b2010-04-10 04:13:53 -0300604 /* Resets frame counters */
605 dev->ms = 0;
606 dev->mv_count = 0;
607 dev->jiffies = jiffies;
608
609 dma_q->frame = 0;
610 dma_q->ini_jiffies = jiffies;
611 dma_q->kthread = kthread_run(vivi_thread, dev, dev->v4l2_dev.name);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300612
Akinobu Mita054afee2006-12-20 10:04:00 -0300613 if (IS_ERR(dma_q->kthread)) {
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -0300614 v4l2_err(&dev->v4l2_dev, "kernel_thread() failed\n");
Pawel Osciake007a322011-01-19 13:02:29 -0200615 return PTR_ERR(dma_q->kthread);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300616 }
Mauro Carvalho Chehab0b600512007-01-14 08:33:24 -0300617 /* Wakes thread */
618 wake_up_interruptible(&dma_q->wq);
619
Harvey Harrison7e28adb2008-04-08 23:20:00 -0300620 dprintk(dev, 1, "returning from %s\n", __func__);
Pawel Osciake007a322011-01-19 13:02:29 -0200621 return 0;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300622}
623
Pawel Osciake007a322011-01-19 13:02:29 -0200624static void vivi_stop_generating(struct vivi_dev *dev)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300625{
Hans Verkuil730947b2010-04-10 04:13:53 -0300626 struct vivi_dmaqueue *dma_q = &dev->vidq;
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300627
Harvey Harrison7e28adb2008-04-08 23:20:00 -0300628 dprintk(dev, 1, "%s\n", __func__);
Hans Verkuil730947b2010-04-10 04:13:53 -0300629
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300630 /* shutdown control thread */
631 if (dma_q->kthread) {
632 kthread_stop(dma_q->kthread);
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300633 dma_q->kthread = NULL;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300634 }
Hans Verkuil730947b2010-04-10 04:13:53 -0300635
Pawel Osciake007a322011-01-19 13:02:29 -0200636 /*
637 * Typical driver might need to wait here until dma engine stops.
638 * In this case we can abort imiedetly, so it's just a noop.
639 */
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300640
Pawel Osciake007a322011-01-19 13:02:29 -0200641 /* Release all active buffers */
642 while (!list_empty(&dma_q->active)) {
643 struct vivi_buffer *buf;
644 buf = list_entry(dma_q->active.next, struct vivi_buffer, list);
645 list_del(&buf->list);
646 vb2_buffer_done(&buf->vb, VB2_BUF_STATE_ERROR);
647 dprintk(dev, 2, "[%p/%d] done\n", buf, buf->vb.v4l2_buf.index);
648 }
649}
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300650/* ------------------------------------------------------------------
651 Videobuf operations
652 ------------------------------------------------------------------*/
Guennadi Liakhovetskifc714e702011-08-24 10:30:21 -0300653static int queue_setup(struct vb2_queue *vq, const struct v4l2_format *fmt,
654 unsigned int *nbuffers, unsigned int *nplanes,
655 unsigned int sizes[], void *alloc_ctxs[])
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300656{
Pawel Osciake007a322011-01-19 13:02:29 -0200657 struct vivi_dev *dev = vb2_get_drv_priv(vq);
658 unsigned long size;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300659
Pawel Osciake007a322011-01-19 13:02:29 -0200660 size = dev->width * dev->height * 2;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300661
Pawel Osciake007a322011-01-19 13:02:29 -0200662 if (0 == *nbuffers)
663 *nbuffers = 32;
Mauro Carvalho Chehab6bb27902007-08-23 16:41:14 -0300664
Pawel Osciake007a322011-01-19 13:02:29 -0200665 while (size * *nbuffers > vid_limit * 1024 * 1024)
666 (*nbuffers)--;
Mauro Carvalho Chehab6bb27902007-08-23 16:41:14 -0300667
Pawel Osciake007a322011-01-19 13:02:29 -0200668 *nplanes = 1;
669
670 sizes[0] = size;
671
672 /*
673 * videobuf2-vmalloc allocator is context-less so no need to set
674 * alloc_ctxs array.
675 */
676
677 dprintk(dev, 1, "%s, count=%d, size=%ld\n", __func__,
678 *nbuffers, size);
Mauro Carvalho Chehab6bb27902007-08-23 16:41:14 -0300679
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300680 return 0;
681}
682
Pawel Osciake007a322011-01-19 13:02:29 -0200683static int buffer_init(struct vb2_buffer *vb)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300684{
Pawel Osciake007a322011-01-19 13:02:29 -0200685 struct vivi_dev *dev = vb2_get_drv_priv(vb->vb2_queue);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300686
Hans Verkuil730947b2010-04-10 04:13:53 -0300687 BUG_ON(NULL == dev->fmt);
Brandon Philips78718e52008-04-02 18:10:59 -0300688
Pawel Osciake007a322011-01-19 13:02:29 -0200689 /*
690 * This callback is called once per buffer, after its allocation.
691 *
692 * Vivi does not allow changing format during streaming, but it is
693 * possible to do so when streaming is paused (i.e. in streamoff state).
694 * Buffers however are not freed when going into streamoff and so
695 * buffer size verification has to be done in buffer_prepare, on each
696 * qbuf.
697 * It would be best to move verification code here to buf_init and
698 * s_fmt though.
699 */
700
701 return 0;
702}
703
704static int buffer_prepare(struct vb2_buffer *vb)
705{
706 struct vivi_dev *dev = vb2_get_drv_priv(vb->vb2_queue);
707 struct vivi_buffer *buf = container_of(vb, struct vivi_buffer, vb);
708 unsigned long size;
709
710 dprintk(dev, 1, "%s, field=%d\n", __func__, vb->v4l2_buf.field);
711
712 BUG_ON(NULL == dev->fmt);
713
714 /*
715 * Theses properties only change when queue is idle, see s_fmt.
716 * The below checks should not be performed here, on each
717 * buffer_prepare (i.e. on each qbuf). Most of the code in this function
718 * should thus be moved to buffer_init and s_fmt.
719 */
Hans Verkuil730947b2010-04-10 04:13:53 -0300720 if (dev->width < 48 || dev->width > MAX_WIDTH ||
721 dev->height < 32 || dev->height > MAX_HEIGHT)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300722 return -EINVAL;
Brandon Philips78718e52008-04-02 18:10:59 -0300723
Pawel Osciake007a322011-01-19 13:02:29 -0200724 size = dev->width * dev->height * 2;
725 if (vb2_plane_size(vb, 0) < size) {
726 dprintk(dev, 1, "%s data will not fit into plane (%lu < %lu)\n",
727 __func__, vb2_plane_size(vb, 0), size);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300728 return -EINVAL;
Pawel Osciake007a322011-01-19 13:02:29 -0200729 }
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300730
Pawel Osciake007a322011-01-19 13:02:29 -0200731 vb2_set_plane_payload(&buf->vb, 0, size);
732
733 buf->fmt = dev->fmt;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300734
Hans Verkuil730947b2010-04-10 04:13:53 -0300735 precalculate_bars(dev);
736 precalculate_line(dev);
Mauro Carvalho Chehabc285add2009-06-25 16:28:23 -0300737
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300738 return 0;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300739}
740
Pawel Osciake007a322011-01-19 13:02:29 -0200741static int buffer_finish(struct vb2_buffer *vb)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300742{
Pawel Osciake007a322011-01-19 13:02:29 -0200743 struct vivi_dev *dev = vb2_get_drv_priv(vb->vb2_queue);
744 dprintk(dev, 1, "%s\n", __func__);
745 return 0;
746}
747
748static void buffer_cleanup(struct vb2_buffer *vb)
749{
750 struct vivi_dev *dev = vb2_get_drv_priv(vb->vb2_queue);
751 dprintk(dev, 1, "%s\n", __func__);
752
753}
754
755static void buffer_queue(struct vb2_buffer *vb)
756{
757 struct vivi_dev *dev = vb2_get_drv_priv(vb->vb2_queue);
Hans Verkuil730947b2010-04-10 04:13:53 -0300758 struct vivi_buffer *buf = container_of(vb, struct vivi_buffer, vb);
Brandon Philips78718e52008-04-02 18:10:59 -0300759 struct vivi_dmaqueue *vidq = &dev->vidq;
Pawel Osciake007a322011-01-19 13:02:29 -0200760 unsigned long flags = 0;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300761
Harvey Harrison7e28adb2008-04-08 23:20:00 -0300762 dprintk(dev, 1, "%s\n", __func__);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300763
Pawel Osciake007a322011-01-19 13:02:29 -0200764 spin_lock_irqsave(&dev->slock, flags);
765 list_add_tail(&buf->list, &vidq->active);
766 spin_unlock_irqrestore(&dev->slock, flags);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300767}
768
Marek Szyprowskibd323e22011-08-29 08:51:49 -0300769static int start_streaming(struct vb2_queue *vq, unsigned int count)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300770{
Pawel Osciake007a322011-01-19 13:02:29 -0200771 struct vivi_dev *dev = vb2_get_drv_priv(vq);
Harvey Harrison7e28adb2008-04-08 23:20:00 -0300772 dprintk(dev, 1, "%s\n", __func__);
Pawel Osciake007a322011-01-19 13:02:29 -0200773 return vivi_start_generating(dev);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300774}
775
Pawel Osciake007a322011-01-19 13:02:29 -0200776/* abort streaming and wait for last buffer */
777static int stop_streaming(struct vb2_queue *vq)
778{
779 struct vivi_dev *dev = vb2_get_drv_priv(vq);
780 dprintk(dev, 1, "%s\n", __func__);
781 vivi_stop_generating(dev);
782 return 0;
783}
784
785static void vivi_lock(struct vb2_queue *vq)
786{
787 struct vivi_dev *dev = vb2_get_drv_priv(vq);
788 mutex_lock(&dev->mutex);
789}
790
791static void vivi_unlock(struct vb2_queue *vq)
792{
793 struct vivi_dev *dev = vb2_get_drv_priv(vq);
794 mutex_unlock(&dev->mutex);
795}
796
797
798static struct vb2_ops vivi_video_qops = {
799 .queue_setup = queue_setup,
800 .buf_init = buffer_init,
801 .buf_prepare = buffer_prepare,
802 .buf_finish = buffer_finish,
803 .buf_cleanup = buffer_cleanup,
804 .buf_queue = buffer_queue,
805 .start_streaming = start_streaming,
806 .stop_streaming = stop_streaming,
807 .wait_prepare = vivi_unlock,
808 .wait_finish = vivi_lock,
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300809};
810
811/* ------------------------------------------------------------------
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300812 IOCTL vidioc handling
813 ------------------------------------------------------------------*/
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300814static int vidioc_querycap(struct file *file, void *priv,
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300815 struct v4l2_capability *cap)
816{
Hans Verkuil730947b2010-04-10 04:13:53 -0300817 struct vivi_dev *dev = video_drvdata(file);
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -0300818
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300819 strcpy(cap->driver, "vivi");
820 strcpy(cap->card, "vivi");
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -0300821 strlcpy(cap->bus_info, dev->v4l2_dev.name, sizeof(cap->bus_info));
Hans Verkuil23268ae2012-01-24 05:24:36 -0300822 cap->device_caps = V4L2_CAP_VIDEO_CAPTURE | V4L2_CAP_STREAMING |
823 V4L2_CAP_READWRITE;
824 cap->capabilities = cap->device_caps | V4L2_CAP_DEVICE_CAPS;
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300825 return 0;
826}
827
Hans Verkuil78b526a2008-05-28 12:16:41 -0300828static int vidioc_enum_fmt_vid_cap(struct file *file, void *priv,
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300829 struct v4l2_fmtdesc *f)
830{
Magnus Dammd891f472008-10-14 12:47:09 -0300831 struct vivi_fmt *fmt;
832
833 if (f->index >= ARRAY_SIZE(formats))
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300834 return -EINVAL;
835
Magnus Dammd891f472008-10-14 12:47:09 -0300836 fmt = &formats[f->index];
837
838 strlcpy(f->description, fmt->name, sizeof(f->description));
839 f->pixelformat = fmt->fourcc;
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300840 return 0;
841}
842
Hans Verkuil78b526a2008-05-28 12:16:41 -0300843static int vidioc_g_fmt_vid_cap(struct file *file, void *priv,
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300844 struct v4l2_format *f)
845{
Hans Verkuil730947b2010-04-10 04:13:53 -0300846 struct vivi_dev *dev = video_drvdata(file);
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300847
Hans Verkuil730947b2010-04-10 04:13:53 -0300848 f->fmt.pix.width = dev->width;
849 f->fmt.pix.height = dev->height;
Pawel Osciake007a322011-01-19 13:02:29 -0200850 f->fmt.pix.field = dev->field;
Hans Verkuil730947b2010-04-10 04:13:53 -0300851 f->fmt.pix.pixelformat = dev->fmt->fourcc;
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300852 f->fmt.pix.bytesperline =
Hans Verkuil730947b2010-04-10 04:13:53 -0300853 (f->fmt.pix.width * dev->fmt->depth) >> 3;
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300854 f->fmt.pix.sizeimage =
855 f->fmt.pix.height * f->fmt.pix.bytesperline;
Hans Verkuil8c79eec2011-07-29 07:19:46 -0300856 if (dev->fmt->fourcc == V4L2_PIX_FMT_YUYV ||
857 dev->fmt->fourcc == V4L2_PIX_FMT_UYVY)
858 f->fmt.pix.colorspace = V4L2_COLORSPACE_SMPTE170M;
859 else
860 f->fmt.pix.colorspace = V4L2_COLORSPACE_SRGB;
Hans Verkuil730947b2010-04-10 04:13:53 -0300861 return 0;
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300862}
863
Hans Verkuil78b526a2008-05-28 12:16:41 -0300864static int vidioc_try_fmt_vid_cap(struct file *file, void *priv,
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300865 struct v4l2_format *f)
866{
Hans Verkuil730947b2010-04-10 04:13:53 -0300867 struct vivi_dev *dev = video_drvdata(file);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300868 struct vivi_fmt *fmt;
869 enum v4l2_field field;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300870
Magnus Dammd891f472008-10-14 12:47:09 -0300871 fmt = get_format(f);
872 if (!fmt) {
873 dprintk(dev, 1, "Fourcc format (0x%08x) invalid.\n",
874 f->fmt.pix.pixelformat);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300875 return -EINVAL;
876 }
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300877
878 field = f->fmt.pix.field;
879
880 if (field == V4L2_FIELD_ANY) {
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300881 field = V4L2_FIELD_INTERLACED;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300882 } else if (V4L2_FIELD_INTERLACED != field) {
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300883 dprintk(dev, 1, "Field type invalid.\n");
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300884 return -EINVAL;
885 }
886
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300887 f->fmt.pix.field = field;
Hans Verkuil730947b2010-04-10 04:13:53 -0300888 v4l_bound_align_image(&f->fmt.pix.width, 48, MAX_WIDTH, 2,
889 &f->fmt.pix.height, 32, MAX_HEIGHT, 0, 0);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300890 f->fmt.pix.bytesperline =
891 (f->fmt.pix.width * fmt->depth) >> 3;
892 f->fmt.pix.sizeimage =
893 f->fmt.pix.height * f->fmt.pix.bytesperline;
Hans Verkuil8c79eec2011-07-29 07:19:46 -0300894 if (fmt->fourcc == V4L2_PIX_FMT_YUYV ||
895 fmt->fourcc == V4L2_PIX_FMT_UYVY)
896 f->fmt.pix.colorspace = V4L2_COLORSPACE_SMPTE170M;
897 else
898 f->fmt.pix.colorspace = V4L2_COLORSPACE_SRGB;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300899 return 0;
900}
901
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -0300902static int vidioc_s_fmt_vid_cap(struct file *file, void *priv,
903 struct v4l2_format *f)
904{
Hans Verkuil730947b2010-04-10 04:13:53 -0300905 struct vivi_dev *dev = video_drvdata(file);
Pawel Osciake007a322011-01-19 13:02:29 -0200906 struct vb2_queue *q = &dev->vb_vidq;
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -0300907
Hans Verkuil730947b2010-04-10 04:13:53 -0300908 int ret = vidioc_try_fmt_vid_cap(file, priv, f);
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -0300909 if (ret < 0)
910 return ret;
911
Pawel Osciake007a322011-01-19 13:02:29 -0200912 if (vb2_is_streaming(q)) {
Hans Verkuil730947b2010-04-10 04:13:53 -0300913 dprintk(dev, 1, "%s device busy\n", __func__);
Pawel Osciake007a322011-01-19 13:02:29 -0200914 return -EBUSY;
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -0300915 }
916
Hans Verkuil730947b2010-04-10 04:13:53 -0300917 dev->fmt = get_format(f);
918 dev->width = f->fmt.pix.width;
919 dev->height = f->fmt.pix.height;
Pawel Osciake007a322011-01-19 13:02:29 -0200920 dev->field = f->fmt.pix.field;
921
922 return 0;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300923}
924
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300925static int vidioc_reqbufs(struct file *file, void *priv,
926 struct v4l2_requestbuffers *p)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300927{
Hans Verkuil730947b2010-04-10 04:13:53 -0300928 struct vivi_dev *dev = video_drvdata(file);
Pawel Osciake007a322011-01-19 13:02:29 -0200929 return vb2_reqbufs(&dev->vb_vidq, p);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300930}
931
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300932static int vidioc_querybuf(struct file *file, void *priv, struct v4l2_buffer *p)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300933{
Hans Verkuil730947b2010-04-10 04:13:53 -0300934 struct vivi_dev *dev = video_drvdata(file);
Pawel Osciake007a322011-01-19 13:02:29 -0200935 return vb2_querybuf(&dev->vb_vidq, p);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300936}
937
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300938static int vidioc_qbuf(struct file *file, void *priv, struct v4l2_buffer *p)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300939{
Hans Verkuil730947b2010-04-10 04:13:53 -0300940 struct vivi_dev *dev = video_drvdata(file);
Pawel Osciake007a322011-01-19 13:02:29 -0200941 return vb2_qbuf(&dev->vb_vidq, p);
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300942}
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300943
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300944static int vidioc_dqbuf(struct file *file, void *priv, struct v4l2_buffer *p)
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300945{
Hans Verkuil730947b2010-04-10 04:13:53 -0300946 struct vivi_dev *dev = video_drvdata(file);
Pawel Osciake007a322011-01-19 13:02:29 -0200947 return vb2_dqbuf(&dev->vb_vidq, p, file->f_flags & O_NONBLOCK);
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300948}
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300949
Adrian Bunkdc46ace2006-06-23 06:42:44 -0300950static int vidioc_streamon(struct file *file, void *priv, enum v4l2_buf_type i)
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300951{
Hans Verkuil730947b2010-04-10 04:13:53 -0300952 struct vivi_dev *dev = video_drvdata(file);
Pawel Osciake007a322011-01-19 13:02:29 -0200953 return vb2_streamon(&dev->vb_vidq, i);
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300954}
955
Adrian Bunkdc46ace2006-06-23 06:42:44 -0300956static int vidioc_streamoff(struct file *file, void *priv, enum v4l2_buf_type i)
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300957{
Hans Verkuil730947b2010-04-10 04:13:53 -0300958 struct vivi_dev *dev = video_drvdata(file);
Pawel Osciake007a322011-01-19 13:02:29 -0200959 return vb2_streamoff(&dev->vb_vidq, i);
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300960}
961
Hans Verkuil380834d2011-08-26 08:45:38 -0300962static int vidioc_log_status(struct file *file, void *priv)
963{
964 struct vivi_dev *dev = video_drvdata(file);
965
966 v4l2_ctrl_handler_log_status(&dev->ctrl_handler, dev->v4l2_dev.name);
967 return 0;
968}
969
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300970static int vidioc_s_std(struct file *file, void *priv, v4l2_std_id *i)
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300971{
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300972 return 0;
973}
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300974
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300975/* only one input in this sample driver */
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300976static int vidioc_enum_input(struct file *file, void *priv,
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300977 struct v4l2_input *inp)
978{
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -0300979 if (inp->index >= NUM_INPUTS)
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300980 return -EINVAL;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300981
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300982 inp->type = V4L2_INPUT_TYPE_CAMERA;
Mauro Carvalho Chehab784c6682007-12-13 06:35:26 -0300983 inp->std = V4L2_STD_525_60;
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -0300984 sprintf(inp->name, "Camera %u", inp->index);
Hans Verkuil730947b2010-04-10 04:13:53 -0300985 return 0;
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300986}
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300987
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300988static int vidioc_g_input(struct file *file, void *priv, unsigned int *i)
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300989{
Hans Verkuil730947b2010-04-10 04:13:53 -0300990 struct vivi_dev *dev = video_drvdata(file);
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -0300991
992 *i = dev->input;
Hans Verkuil730947b2010-04-10 04:13:53 -0300993 return 0;
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300994}
Hans Verkuil730947b2010-04-10 04:13:53 -0300995
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300996static int vidioc_s_input(struct file *file, void *priv, unsigned int i)
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300997{
Hans Verkuil730947b2010-04-10 04:13:53 -0300998 struct vivi_dev *dev = video_drvdata(file);
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -0300999
1000 if (i >= NUM_INPUTS)
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001001 return -EINVAL;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001002
Hans Verkuilc7a52f82011-06-07 10:20:23 -03001003 if (i == dev->input)
1004 return 0;
1005
Mauro Carvalho Chehabe164b582009-01-11 10:29:43 -03001006 dev->input = i;
Hans Verkuil730947b2010-04-10 04:13:53 -03001007 precalculate_bars(dev);
1008 precalculate_line(dev);
1009 return 0;
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001010}
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001011
Hans Verkuilc7a52f82011-06-07 10:20:23 -03001012static int vidioc_subscribe_event(struct v4l2_fh *fh,
1013 struct v4l2_event_subscription *sub)
1014{
1015 switch (sub->type) {
1016 case V4L2_EVENT_CTRL:
Hans Verkuilf1e393d2011-06-13 19:24:17 -03001017 return v4l2_event_subscribe(fh, sub, 0);
Hans Verkuilc7a52f82011-06-07 10:20:23 -03001018 default:
1019 return -EINVAL;
1020 }
1021}
1022
Hans Verkuil730947b2010-04-10 04:13:53 -03001023/* --- controls ---------------------------------------------- */
Hans Verkuil7e996af2011-01-23 12:33:16 -02001024
Hans Verkuila1c894f2011-06-07 06:34:41 -03001025static int vivi_g_volatile_ctrl(struct v4l2_ctrl *ctrl)
1026{
1027 struct vivi_dev *dev = container_of(ctrl->handler, struct vivi_dev, ctrl_handler);
1028
1029 if (ctrl == dev->autogain)
1030 dev->gain->val = jiffies & 0xff;
1031 return 0;
1032}
1033
Hans Verkuil7e996af2011-01-23 12:33:16 -02001034static int vivi_s_ctrl(struct v4l2_ctrl *ctrl)
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001035{
Hans Verkuil7e996af2011-01-23 12:33:16 -02001036 struct vivi_dev *dev = container_of(ctrl->handler, struct vivi_dev, ctrl_handler);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001037
Hans Verkuil7e996af2011-01-23 12:33:16 -02001038 if (ctrl == dev->button)
1039 dev->button_pressed = 30;
1040 return 0;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001041}
1042
1043/* ------------------------------------------------------------------
1044 File operations for the device
1045 ------------------------------------------------------------------*/
1046
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001047static ssize_t
1048vivi_read(struct file *file, char __user *data, size_t count, loff_t *ppos)
1049{
Hans Verkuil730947b2010-04-10 04:13:53 -03001050 struct vivi_dev *dev = video_drvdata(file);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001051
Pawel Osciake007a322011-01-19 13:02:29 -02001052 dprintk(dev, 1, "read called\n");
1053 return vb2_read(&dev->vb_vidq, data, count, ppos,
1054 file->f_flags & O_NONBLOCK);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001055}
1056
1057static unsigned int
1058vivi_poll(struct file *file, struct poll_table_struct *wait)
1059{
Hans Verkuil730947b2010-04-10 04:13:53 -03001060 struct vivi_dev *dev = video_drvdata(file);
Hans Verkuilc7a52f82011-06-07 10:20:23 -03001061 struct v4l2_fh *fh = file->private_data;
Pawel Osciake007a322011-01-19 13:02:29 -02001062 struct vb2_queue *q = &dev->vb_vidq;
Hans Verkuilc7a52f82011-06-07 10:20:23 -03001063 unsigned int res;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001064
Harvey Harrison7e28adb2008-04-08 23:20:00 -03001065 dprintk(dev, 1, "%s\n", __func__);
Hans Verkuilc7a52f82011-06-07 10:20:23 -03001066 res = vb2_poll(q, file, wait);
1067 if (v4l2_event_pending(fh))
1068 res |= POLLPRI;
1069 else
Hans Verkuil523f46d2011-06-13 17:44:42 -03001070 poll_wait(file, &fh->wait, wait);
Hans Verkuilc7a52f82011-06-07 10:20:23 -03001071 return res;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001072}
1073
Hans Verkuilbec43662008-12-30 06:58:20 -03001074static int vivi_close(struct file *file)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001075{
Laurent Pinchart50462eb2009-12-10 11:47:13 -02001076 struct video_device *vdev = video_devdata(file);
Hans Verkuil730947b2010-04-10 04:13:53 -03001077 struct vivi_dev *dev = video_drvdata(file);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001078
Pawel Osciake007a322011-01-19 13:02:29 -02001079 dprintk(dev, 1, "close called (dev=%s), file %p\n",
1080 video_device_node_name(vdev), file);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001081
Hans Verkuil2e4784d2011-03-11 20:01:54 -03001082 if (v4l2_fh_is_singular_file(file))
Pawel Osciake007a322011-01-19 13:02:29 -02001083 vb2_queue_release(&dev->vb_vidq);
Hans Verkuil2e4784d2011-03-11 20:01:54 -03001084 return v4l2_fh_release(file);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001085}
1086
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -03001087static int vivi_mmap(struct file *file, struct vm_area_struct *vma)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001088{
Hans Verkuil730947b2010-04-10 04:13:53 -03001089 struct vivi_dev *dev = video_drvdata(file);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001090 int ret;
1091
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -03001092 dprintk(dev, 1, "mmap called, vma=0x%08lx\n", (unsigned long)vma);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001093
Pawel Osciake007a322011-01-19 13:02:29 -02001094 ret = vb2_mmap(&dev->vb_vidq, vma);
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -03001095 dprintk(dev, 1, "vma start=0x%08lx, size=%ld, ret=%d\n",
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001096 (unsigned long)vma->vm_start,
Hans Verkuil730947b2010-04-10 04:13:53 -03001097 (unsigned long)vma->vm_end - (unsigned long)vma->vm_start,
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001098 ret);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001099 return ret;
1100}
1101
Hans Verkuil7e996af2011-01-23 12:33:16 -02001102static const struct v4l2_ctrl_ops vivi_ctrl_ops = {
Hans Verkuila1c894f2011-06-07 06:34:41 -03001103 .g_volatile_ctrl = vivi_g_volatile_ctrl,
Hans Verkuil7e996af2011-01-23 12:33:16 -02001104 .s_ctrl = vivi_s_ctrl,
1105};
1106
1107#define VIVI_CID_CUSTOM_BASE (V4L2_CID_USER_BASE | 0xf000)
1108
1109static const struct v4l2_ctrl_config vivi_ctrl_button = {
1110 .ops = &vivi_ctrl_ops,
1111 .id = VIVI_CID_CUSTOM_BASE + 0,
1112 .name = "Button",
1113 .type = V4L2_CTRL_TYPE_BUTTON,
1114};
1115
1116static const struct v4l2_ctrl_config vivi_ctrl_boolean = {
1117 .ops = &vivi_ctrl_ops,
1118 .id = VIVI_CID_CUSTOM_BASE + 1,
1119 .name = "Boolean",
1120 .type = V4L2_CTRL_TYPE_BOOLEAN,
1121 .min = 0,
1122 .max = 1,
1123 .step = 1,
1124 .def = 1,
1125};
1126
1127static const struct v4l2_ctrl_config vivi_ctrl_int32 = {
1128 .ops = &vivi_ctrl_ops,
1129 .id = VIVI_CID_CUSTOM_BASE + 2,
1130 .name = "Integer 32 Bits",
1131 .type = V4L2_CTRL_TYPE_INTEGER,
Hans Verkuil5b283022011-01-11 17:32:28 -03001132 .min = 0x80000000,
1133 .max = 0x7fffffff,
Hans Verkuil7e996af2011-01-23 12:33:16 -02001134 .step = 1,
1135};
1136
1137static const struct v4l2_ctrl_config vivi_ctrl_int64 = {
1138 .ops = &vivi_ctrl_ops,
1139 .id = VIVI_CID_CUSTOM_BASE + 3,
1140 .name = "Integer 64 Bits",
1141 .type = V4L2_CTRL_TYPE_INTEGER64,
1142};
1143
1144static const char * const vivi_ctrl_menu_strings[] = {
1145 "Menu Item 0 (Skipped)",
1146 "Menu Item 1",
1147 "Menu Item 2 (Skipped)",
1148 "Menu Item 3",
1149 "Menu Item 4",
1150 "Menu Item 5 (Skipped)",
1151 NULL,
1152};
1153
1154static const struct v4l2_ctrl_config vivi_ctrl_menu = {
1155 .ops = &vivi_ctrl_ops,
1156 .id = VIVI_CID_CUSTOM_BASE + 4,
1157 .name = "Menu",
1158 .type = V4L2_CTRL_TYPE_MENU,
1159 .min = 1,
1160 .max = 4,
1161 .def = 3,
1162 .menu_skip_mask = 0x04,
1163 .qmenu = vivi_ctrl_menu_strings,
1164};
1165
1166static const struct v4l2_ctrl_config vivi_ctrl_string = {
1167 .ops = &vivi_ctrl_ops,
1168 .id = VIVI_CID_CUSTOM_BASE + 5,
1169 .name = "String",
1170 .type = V4L2_CTRL_TYPE_STRING,
1171 .min = 2,
1172 .max = 4,
1173 .step = 1,
1174};
1175
Hans Verkuilb6d17a52011-03-29 16:33:11 -03001176static const struct v4l2_ctrl_config vivi_ctrl_bitmask = {
1177 .ops = &vivi_ctrl_ops,
1178 .id = VIVI_CID_CUSTOM_BASE + 6,
1179 .name = "Bitmask",
1180 .type = V4L2_CTRL_TYPE_BITMASK,
1181 .def = 0x80002000,
1182 .min = 0,
1183 .max = 0x80402010,
1184 .step = 0,
1185};
1186
Hans Verkuilbec43662008-12-30 06:58:20 -03001187static const struct v4l2_file_operations vivi_fops = {
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001188 .owner = THIS_MODULE,
Hans Verkuilc7a52f82011-06-07 10:20:23 -03001189 .open = v4l2_fh_open,
Mauro Carvalho Chehabf905c442007-12-10 04:07:03 -03001190 .release = vivi_close,
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001191 .read = vivi_read,
1192 .poll = vivi_poll,
Hans Verkuilfedc6c82010-09-20 18:25:55 -03001193 .unlocked_ioctl = video_ioctl2, /* V4L2 ioctl handler */
Mauro Carvalho Chehab5a037702007-08-02 23:31:54 -03001194 .mmap = vivi_mmap,
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001195};
1196
Hans Verkuila3998102008-07-21 02:57:38 -03001197static const struct v4l2_ioctl_ops vivi_ioctl_ops = {
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001198 .vidioc_querycap = vidioc_querycap,
Hans Verkuil78b526a2008-05-28 12:16:41 -03001199 .vidioc_enum_fmt_vid_cap = vidioc_enum_fmt_vid_cap,
1200 .vidioc_g_fmt_vid_cap = vidioc_g_fmt_vid_cap,
1201 .vidioc_try_fmt_vid_cap = vidioc_try_fmt_vid_cap,
1202 .vidioc_s_fmt_vid_cap = vidioc_s_fmt_vid_cap,
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001203 .vidioc_reqbufs = vidioc_reqbufs,
1204 .vidioc_querybuf = vidioc_querybuf,
1205 .vidioc_qbuf = vidioc_qbuf,
1206 .vidioc_dqbuf = vidioc_dqbuf,
1207 .vidioc_s_std = vidioc_s_std,
1208 .vidioc_enum_input = vidioc_enum_input,
1209 .vidioc_g_input = vidioc_g_input,
1210 .vidioc_s_input = vidioc_s_input,
Hans Verkuil730947b2010-04-10 04:13:53 -03001211 .vidioc_streamon = vidioc_streamon,
1212 .vidioc_streamoff = vidioc_streamoff,
Hans Verkuil380834d2011-08-26 08:45:38 -03001213 .vidioc_log_status = vidioc_log_status,
Hans Verkuilc7a52f82011-06-07 10:20:23 -03001214 .vidioc_subscribe_event = vidioc_subscribe_event,
1215 .vidioc_unsubscribe_event = v4l2_event_unsubscribe,
Hans Verkuila3998102008-07-21 02:57:38 -03001216};
1217
1218static struct video_device vivi_template = {
1219 .name = "vivi",
Hans Verkuila3998102008-07-21 02:57:38 -03001220 .fops = &vivi_fops,
1221 .ioctl_ops = &vivi_ioctl_ops,
Hans Verkuila3998102008-07-21 02:57:38 -03001222 .release = video_device_release,
1223
Mauro Carvalho Chehab784c6682007-12-13 06:35:26 -03001224 .tvnorms = V4L2_STD_525_60,
Mauro Carvalho Chehabe75f9ce2006-11-20 13:19:20 -03001225 .current_norm = V4L2_STD_NTSC_M,
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001226};
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001227
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001228/* -----------------------------------------------------------------
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001229 Initialization and module stuff
1230 ------------------------------------------------------------------*/
1231
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001232static int vivi_release(void)
1233{
1234 struct vivi_dev *dev;
1235 struct list_head *list;
1236
1237 while (!list_empty(&vivi_devlist)) {
1238 list = vivi_devlist.next;
1239 list_del(list);
1240 dev = list_entry(list, struct vivi_dev, vivi_devlist);
1241
Laurent Pinchart38c7c032009-11-27 13:57:15 -03001242 v4l2_info(&dev->v4l2_dev, "unregistering %s\n",
1243 video_device_node_name(dev->vfd));
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001244 video_unregister_device(dev->vfd);
1245 v4l2_device_unregister(&dev->v4l2_dev);
Hans Verkuil7e996af2011-01-23 12:33:16 -02001246 v4l2_ctrl_handler_free(&dev->ctrl_handler);
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001247 kfree(dev);
1248 }
1249
1250 return 0;
1251}
1252
Hans Verkuilc41ee242009-02-14 13:43:44 -03001253static int __init vivi_create_instance(int inst)
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001254{
1255 struct vivi_dev *dev;
1256 struct video_device *vfd;
Hans Verkuil7e996af2011-01-23 12:33:16 -02001257 struct v4l2_ctrl_handler *hdl;
Pawel Osciake007a322011-01-19 13:02:29 -02001258 struct vb2_queue *q;
Hans Verkuil730947b2010-04-10 04:13:53 -03001259 int ret;
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001260
1261 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
1262 if (!dev)
1263 return -ENOMEM;
1264
1265 snprintf(dev->v4l2_dev.name, sizeof(dev->v4l2_dev.name),
Hans Verkuilc41ee242009-02-14 13:43:44 -03001266 "%s-%03d", VIVI_MODULE_NAME, inst);
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001267 ret = v4l2_device_register(NULL, &dev->v4l2_dev);
1268 if (ret)
1269 goto free_dev;
1270
Hans Verkuil730947b2010-04-10 04:13:53 -03001271 dev->fmt = &formats[0];
1272 dev->width = 640;
1273 dev->height = 480;
Hans Verkuil7e996af2011-01-23 12:33:16 -02001274 hdl = &dev->ctrl_handler;
1275 v4l2_ctrl_handler_init(hdl, 11);
1276 dev->volume = v4l2_ctrl_new_std(hdl, &vivi_ctrl_ops,
1277 V4L2_CID_AUDIO_VOLUME, 0, 255, 1, 200);
1278 dev->brightness = v4l2_ctrl_new_std(hdl, &vivi_ctrl_ops,
1279 V4L2_CID_BRIGHTNESS, 0, 255, 1, 127);
1280 dev->contrast = v4l2_ctrl_new_std(hdl, &vivi_ctrl_ops,
1281 V4L2_CID_CONTRAST, 0, 255, 1, 16);
1282 dev->saturation = v4l2_ctrl_new_std(hdl, &vivi_ctrl_ops,
1283 V4L2_CID_SATURATION, 0, 255, 1, 127);
1284 dev->hue = v4l2_ctrl_new_std(hdl, &vivi_ctrl_ops,
1285 V4L2_CID_HUE, -128, 127, 1, 0);
Hans Verkuila1c894f2011-06-07 06:34:41 -03001286 dev->autogain = v4l2_ctrl_new_std(hdl, &vivi_ctrl_ops,
1287 V4L2_CID_AUTOGAIN, 0, 1, 1, 1);
1288 dev->gain = v4l2_ctrl_new_std(hdl, &vivi_ctrl_ops,
1289 V4L2_CID_GAIN, 0, 255, 1, 100);
Hans Verkuil7e996af2011-01-23 12:33:16 -02001290 dev->button = v4l2_ctrl_new_custom(hdl, &vivi_ctrl_button, NULL);
1291 dev->int32 = v4l2_ctrl_new_custom(hdl, &vivi_ctrl_int32, NULL);
1292 dev->int64 = v4l2_ctrl_new_custom(hdl, &vivi_ctrl_int64, NULL);
1293 dev->boolean = v4l2_ctrl_new_custom(hdl, &vivi_ctrl_boolean, NULL);
1294 dev->menu = v4l2_ctrl_new_custom(hdl, &vivi_ctrl_menu, NULL);
1295 dev->string = v4l2_ctrl_new_custom(hdl, &vivi_ctrl_string, NULL);
Hans Verkuilb6d17a52011-03-29 16:33:11 -03001296 dev->bitmask = v4l2_ctrl_new_custom(hdl, &vivi_ctrl_bitmask, NULL);
Hans Verkuil7e996af2011-01-23 12:33:16 -02001297 if (hdl->error) {
1298 ret = hdl->error;
1299 goto unreg_dev;
1300 }
Hans Verkuila1c894f2011-06-07 06:34:41 -03001301 v4l2_ctrl_auto_cluster(2, &dev->autogain, 0, true);
Hans Verkuil7e996af2011-01-23 12:33:16 -02001302 dev->v4l2_dev.ctrl_handler = hdl;
Hans Verkuil730947b2010-04-10 04:13:53 -03001303
Hans Verkuilfedc6c82010-09-20 18:25:55 -03001304 /* initialize locks */
1305 spin_lock_init(&dev->slock);
Hans Verkuilfedc6c82010-09-20 18:25:55 -03001306
Pawel Osciake007a322011-01-19 13:02:29 -02001307 /* initialize queue */
1308 q = &dev->vb_vidq;
1309 memset(q, 0, sizeof(dev->vb_vidq));
1310 q->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
1311 q->io_modes = VB2_MMAP | VB2_USERPTR | VB2_READ;
1312 q->drv_priv = dev;
1313 q->buf_struct_size = sizeof(struct vivi_buffer);
1314 q->ops = &vivi_video_qops;
1315 q->mem_ops = &vb2_vmalloc_memops;
1316
1317 vb2_queue_init(q);
1318
1319 mutex_init(&dev->mutex);
Hans Verkuil730947b2010-04-10 04:13:53 -03001320
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001321 /* init video dma queues */
1322 INIT_LIST_HEAD(&dev->vidq.active);
1323 init_waitqueue_head(&dev->vidq.wq);
1324
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001325 ret = -ENOMEM;
1326 vfd = video_device_alloc();
1327 if (!vfd)
1328 goto unreg_dev;
1329
1330 *vfd = vivi_template;
Mauro Carvalho Chehabc285add2009-06-25 16:28:23 -03001331 vfd->debug = debug;
Hans Verkuil730947b2010-04-10 04:13:53 -03001332 vfd->v4l2_dev = &dev->v4l2_dev;
Hans Verkuilb1a873a2011-03-22 10:14:07 -03001333 set_bit(V4L2_FL_USE_FH_PRIO, &vfd->flags);
Pawel Osciake007a322011-01-19 13:02:29 -02001334
1335 /*
1336 * Provide a mutex to v4l2 core. It will be used to protect
1337 * all fops and v4l2 ioctls.
1338 */
Hans Verkuilfedc6c82010-09-20 18:25:55 -03001339 vfd->lock = &dev->mutex;
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001340
1341 ret = video_register_device(vfd, VFL_TYPE_GRABBER, video_nr);
1342 if (ret < 0)
1343 goto rel_vdev;
1344
1345 video_set_drvdata(vfd, dev);
1346
1347 /* Now that everything is fine, let's add it to device list */
1348 list_add_tail(&dev->vivi_devlist, &vivi_devlist);
1349
Roel Kluin7de0b872009-12-16 13:06:33 -03001350 if (video_nr != -1)
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001351 video_nr++;
1352
1353 dev->vfd = vfd;
Laurent Pinchart38c7c032009-11-27 13:57:15 -03001354 v4l2_info(&dev->v4l2_dev, "V4L2 device registered as %s\n",
1355 video_device_node_name(vfd));
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001356 return 0;
1357
1358rel_vdev:
1359 video_device_release(vfd);
1360unreg_dev:
Hans Verkuil7e996af2011-01-23 12:33:16 -02001361 v4l2_ctrl_handler_free(hdl);
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001362 v4l2_device_unregister(&dev->v4l2_dev);
1363free_dev:
1364 kfree(dev);
1365 return ret;
1366}
1367
Mauro Carvalho Chehab980d4f12008-09-03 17:11:53 -03001368/* This routine allocates from 1 to n_devs virtual drivers.
1369
1370 The real maximum number of virtual drivers will depend on how many drivers
1371 will succeed. This is limited to the maximum number of devices that
Hans Verkuil62cfdac2009-02-14 11:37:17 -03001372 videodev supports, which is equal to VIDEO_NUM_DEVICES.
Mauro Carvalho Chehab980d4f12008-09-03 17:11:53 -03001373 */
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001374static int __init vivi_init(void)
1375{
Hans Verkuil730947b2010-04-10 04:13:53 -03001376 const struct font_desc *font = find_font("VGA8x16");
Hans Verkuil9185cbf2009-03-06 09:58:12 -03001377 int ret = 0, i;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001378
Hans Verkuil730947b2010-04-10 04:13:53 -03001379 if (font == NULL) {
1380 printk(KERN_ERR "vivi: could not find font\n");
1381 return -ENODEV;
1382 }
1383 font8x16 = font->data;
1384
Mauro Carvalho Chehab980d4f12008-09-03 17:11:53 -03001385 if (n_devs <= 0)
1386 n_devs = 1;
1387
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001388 for (i = 0; i < n_devs; i++) {
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001389 ret = vivi_create_instance(i);
1390 if (ret) {
1391 /* If some instantiations succeeded, keep driver */
Mauro Carvalho Chehab980d4f12008-09-03 17:11:53 -03001392 if (i)
1393 ret = 0;
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001394 break;
Mauro Carvalho Chehab980d4f12008-09-03 17:11:53 -03001395 }
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001396 }
1397
1398 if (ret < 0) {
Hans Verkuil730947b2010-04-10 04:13:53 -03001399 printk(KERN_ERR "vivi: error %d while loading driver\n", ret);
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001400 return ret;
1401 }
1402
1403 printk(KERN_INFO "Video Technology Magazine Virtual Video "
Mauro Carvalho Chehab1990d502011-06-24 14:45:49 -03001404 "Capture Board ver %s successfully loaded.\n",
1405 VIVI_VERSION);
Mauro Carvalho Chehab980d4f12008-09-03 17:11:53 -03001406
Hans Verkuil5ab6c9a2009-02-14 13:23:12 -03001407 /* n_devs will reflect the actual number of allocated devices */
1408 n_devs = i;
Mauro Carvalho Chehab980d4f12008-09-03 17:11:53 -03001409
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001410 return ret;
1411}
1412
1413static void __exit vivi_exit(void)
1414{
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001415 vivi_release();
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001416}
1417
1418module_init(vivi_init);
1419module_exit(vivi_exit);