vivi.c 34.5 KB
Newer Older
1 2 3 4 5 6 7 8 9
/*
 * Virtual Video driver - This code emulates a real video device with v4l2 api
 *
 * Copyright (c) 2006 by:
 *      Mauro Carvalho Chehab <mchehab--a.t--infradead.org>
 *      Ted Walther <ted--a.t--enumera.com>
 *      John Sokol <sokol--a.t--videotechnology.com>
 *      http://v4l.videotechnology.com/
 *
10 11 12
 *      Conversion to videobuf2 by Pawel Osciak & Marek Szyprowski
 *      Copyright (c) 2010 Samsung Electronics
 *
13 14 15 16 17 18 19 20 21 22
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the BSD Licence, GNU General Public License
 * as published by the Free Software Foundation; either version 2 of the
 * License, or (at your option) any later version
 */
#include <linux/module.h>
#include <linux/errno.h>
#include <linux/kernel.h>
#include <linux/init.h>
#include <linux/sched.h>
23
#include <linux/slab.h>
24
#include <linux/font.h>
25
#include <linux/mutex.h>
26 27
#include <linux/videodev2.h>
#include <linux/kthread.h>
28
#include <linux/freezer.h>
29
#include <media/videobuf2-vmalloc.h>
30 31
#include <media/v4l2-device.h>
#include <media/v4l2-ioctl.h>
32
#include <media/v4l2-ctrls.h>
33
#include <media/v4l2-fh.h>
34
#include <media/v4l2-event.h>
35
#include <media/v4l2-common.h>
36

37
#define VIVI_MODULE_NAME "vivi"
38

39 40 41 42
/* Wake up at about 30 fps */
#define WAKE_NUMERATOR 30
#define WAKE_DENOMINATOR 1001

43 44 45
#define MAX_WIDTH 1920
#define MAX_HEIGHT 1200

46
#define VIVI_VERSION "0.8.1"
47

48 49 50
MODULE_DESCRIPTION("Video Technology Magazine Virtual Video Capture Board");
MODULE_AUTHOR("Mauro Carvalho Chehab, Ted Walther and John Sokol");
MODULE_LICENSE("Dual BSD/GPL");
51
MODULE_VERSION(VIVI_VERSION);
52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68

static unsigned video_nr = -1;
module_param(video_nr, uint, 0644);
MODULE_PARM_DESC(video_nr, "videoX start number, -1 is autodetect");

static unsigned n_devs = 1;
module_param(n_devs, uint, 0644);
MODULE_PARM_DESC(n_devs, "number of video devices to create");

static unsigned debug;
module_param(debug, uint, 0644);
MODULE_PARM_DESC(debug, "activates debug info");

static unsigned int vid_limit = 16;
module_param(vid_limit, uint, 0644);
MODULE_PARM_DESC(vid_limit, "capture memory limit in megabytes");

69 70
/* Global font descriptor */
static const u8 *font8x16;
71

72 73
#define dprintk(dev, level, fmt, arg...) \
	v4l2_dbg(level, debug, &dev->v4l2_dev, fmt, ## arg)
74 75 76 77 78 79 80 81

/* ------------------------------------------------------------------
	Basic structures
   ------------------------------------------------------------------*/

struct vivi_fmt {
	char  *name;
	u32   fourcc;          /* v4l2 format id */
82 83
	u8    depth;
	bool  is_yuv;
84 85
};

86 87 88 89 90
static struct vivi_fmt formats[] = {
	{
		.name     = "4:2:2, packed, YUYV",
		.fourcc   = V4L2_PIX_FMT_YUYV,
		.depth    = 16,
91
		.is_yuv   = true,
92
	},
93 94 95 96
	{
		.name     = "4:2:2, packed, UYVY",
		.fourcc   = V4L2_PIX_FMT_UYVY,
		.depth    = 16,
97
		.is_yuv   = true,
98
	},
99 100 101 102
	{
		.name     = "4:2:2, packed, YVYU",
		.fourcc   = V4L2_PIX_FMT_YVYU,
		.depth    = 16,
103
		.is_yuv   = true,
104 105 106 107 108
	},
	{
		.name     = "4:2:2, packed, VYUY",
		.fourcc   = V4L2_PIX_FMT_VYUY,
		.depth    = 16,
109
		.is_yuv   = true,
110
	},
111 112 113 114 115 116 117 118 119 120
	{
		.name     = "RGB565 (LE)",
		.fourcc   = V4L2_PIX_FMT_RGB565, /* gggbbbbb rrrrrggg */
		.depth    = 16,
	},
	{
		.name     = "RGB565 (BE)",
		.fourcc   = V4L2_PIX_FMT_RGB565X, /* rrrrrggg gggbbbbb */
		.depth    = 16,
	},
121 122 123 124 125 126 127 128 129 130
	{
		.name     = "RGB555 (LE)",
		.fourcc   = V4L2_PIX_FMT_RGB555, /* gggbbbbb arrrrrgg */
		.depth    = 16,
	},
	{
		.name     = "RGB555 (BE)",
		.fourcc   = V4L2_PIX_FMT_RGB555X, /* arrrrrgg gggbbbbb */
		.depth    = 16,
	},
131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150
	{
		.name     = "RGB24 (LE)",
		.fourcc   = V4L2_PIX_FMT_RGB24, /* rgb */
		.depth    = 24,
	},
	{
		.name     = "RGB24 (BE)",
		.fourcc   = V4L2_PIX_FMT_BGR24, /* bgr */
		.depth    = 24,
	},
	{
		.name     = "RGB32 (LE)",
		.fourcc   = V4L2_PIX_FMT_RGB32, /* argb */
		.depth    = 32,
	},
	{
		.name     = "RGB32 (BE)",
		.fourcc   = V4L2_PIX_FMT_BGR32, /* bgra */
		.depth    = 32,
	},
151 152
};

153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169
static struct vivi_fmt *get_format(struct v4l2_format *f)
{
	struct vivi_fmt *fmt;
	unsigned int k;

	for (k = 0; k < ARRAY_SIZE(formats); k++) {
		fmt = &formats[k];
		if (fmt->fourcc == f->fmt.pix.pixelformat)
			break;
	}

	if (k == ARRAY_SIZE(formats))
		return NULL;

	return &formats[k];
}

170 171 172
/* buffer for one video frame */
struct vivi_buffer {
	/* common v4l buffer stuff -- must be first */
173 174
	struct vb2_buffer	vb;
	struct list_head	list;
175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192
	struct vivi_fmt        *fmt;
};

struct vivi_dmaqueue {
	struct list_head       active;

	/* thread for generating video stream*/
	struct task_struct         *kthread;
	wait_queue_head_t          wq;
	/* Counters to control fps rate */
	int                        frame;
	int                        ini_jiffies;
};

static LIST_HEAD(vivi_devlist);

struct vivi_dev {
	struct list_head           vivi_devlist;
193
	struct v4l2_device 	   v4l2_dev;
194
	struct v4l2_ctrl_handler   ctrl_handler;
195
	struct video_device	   vdev;
196

197
	/* controls */
198 199 200 201
	struct v4l2_ctrl	   *brightness;
	struct v4l2_ctrl	   *contrast;
	struct v4l2_ctrl	   *saturation;
	struct v4l2_ctrl	   *hue;
202 203 204 205 206
	struct {
		/* autogain/gain cluster */
		struct v4l2_ctrl	   *autogain;
		struct v4l2_ctrl	   *gain;
	};
207
	struct v4l2_ctrl	   *volume;
208
	struct v4l2_ctrl	   *alpha;
209 210 211 212 213 214
	struct v4l2_ctrl	   *button;
	struct v4l2_ctrl	   *boolean;
	struct v4l2_ctrl	   *int32;
	struct v4l2_ctrl	   *int64;
	struct v4l2_ctrl	   *menu;
	struct v4l2_ctrl	   *string;
215
	struct v4l2_ctrl	   *bitmask;
216
	struct v4l2_ctrl	   *int_menu;
217

218
	spinlock_t                 slock;
219
	struct mutex		   mutex;
220 221 222 223

	struct vivi_dmaqueue       vidq;

	/* Several counters */
224
	unsigned 		   ms;
225
	unsigned long              jiffies;
226
	unsigned		   button_pressed;
227 228

	int			   mv_count;	/* Controls bars movement */
229 230 231

	/* Input Number */
	int			   input;
232

233 234
	/* video capture */
	struct vivi_fmt            *fmt;
235
	unsigned int               width, height;
236 237
	struct vb2_queue	   vb_vidq;
	unsigned int		   field_count;
238

239
	u8			   bars[9][3];
240
	u8			   line[MAX_WIDTH * 8] __attribute__((__aligned__(4)));
241
	unsigned int		   pixelsize;
242
	u8			   alpha_component;
K
Kirill Smelkov 已提交
243
	u32			   textfg, textbg;
244 245 246 247 248 249 250 251 252 253
};

/* ------------------------------------------------------------------
	DMA and thread functions
   ------------------------------------------------------------------*/

/* Bars and Colors should match positions */

enum colors {
	WHITE,
254
	AMBER,
255 256 257 258
	CYAN,
	GREEN,
	MAGENTA,
	RED,
259 260
	BLUE,
	BLACK,
261
	TEXT_BLACK,
262 263
};

264
/* R   G   B */
265
#define COLOR_WHITE	{204, 204, 204}
266 267
#define COLOR_AMBER	{208, 208,   0}
#define COLOR_CYAN	{  0, 206, 206}
268 269 270 271 272 273 274
#define	COLOR_GREEN	{  0, 239,   0}
#define COLOR_MAGENTA	{239,   0, 239}
#define COLOR_RED	{205,   0,   0}
#define COLOR_BLUE	{  0,   0, 255}
#define COLOR_BLACK	{  0,   0,   0}

struct bar_std {
275
	u8 bar[9][3];
276 277 278 279 280 281
};

/* Maximum number of bars are 10 - otherwise, the input print code
   should be modified */
static struct bar_std bars[] = {
	{	/* Standard ITU-R color bar sequence */
282 283
		{ COLOR_WHITE, COLOR_AMBER, COLOR_CYAN, COLOR_GREEN,
		  COLOR_MAGENTA, COLOR_RED, COLOR_BLUE, COLOR_BLACK, COLOR_BLACK }
284
	}, {
285 286
		{ COLOR_WHITE, COLOR_AMBER, COLOR_BLACK, COLOR_WHITE,
		  COLOR_AMBER, COLOR_BLACK, COLOR_WHITE, COLOR_AMBER, COLOR_BLACK }
287
	}, {
288 289
		{ COLOR_WHITE, COLOR_CYAN, COLOR_BLACK, COLOR_WHITE,
		  COLOR_CYAN, COLOR_BLACK, COLOR_WHITE, COLOR_CYAN, COLOR_BLACK }
290
	}, {
291 292
		{ COLOR_WHITE, COLOR_GREEN, COLOR_BLACK, COLOR_WHITE,
		  COLOR_GREEN, COLOR_BLACK, COLOR_WHITE, COLOR_GREEN, COLOR_BLACK }
293
	},
294 295
};

296 297
#define NUM_INPUTS ARRAY_SIZE(bars)

298 299
#define TO_Y(r, g, b) \
	(((16829 * r + 33039 * g + 6416 * b  + 32768) >> 16) + 16)
300
/* RGB to  V(Cr) Color transform */
301 302
#define TO_V(r, g, b) \
	(((28784 * r - 24103 * g - 4681 * b  + 32768) >> 16) + 128)
303
/* RGB to  U(Cb) Color transform */
304 305
#define TO_U(r, g, b) \
	(((-9714 * r - 19070 * g + 28784 * b + 32768) >> 16) + 128)
306

307
/* precalculate color bar values to speed up rendering */
308
static void precalculate_bars(struct vivi_dev *dev)
309
{
310
	u8 r, g, b;
311 312
	int k, is_yuv;

313 314 315 316
	for (k = 0; k < 9; k++) {
		r = bars[dev->input].bar[k][0];
		g = bars[dev->input].bar[k][1];
		b = bars[dev->input].bar[k][2];
317
		is_yuv = dev->fmt->is_yuv;
318

319
		switch (dev->fmt->fourcc) {
320 321 322 323 324 325 326 327 328 329 330 331
		case V4L2_PIX_FMT_RGB565:
		case V4L2_PIX_FMT_RGB565X:
			r >>= 3;
			g >>= 2;
			b >>= 3;
			break;
		case V4L2_PIX_FMT_RGB555:
		case V4L2_PIX_FMT_RGB555X:
			r >>= 3;
			g >>= 3;
			b >>= 3;
			break;
332 333 334 335
		case V4L2_PIX_FMT_YUYV:
		case V4L2_PIX_FMT_UYVY:
		case V4L2_PIX_FMT_YVYU:
		case V4L2_PIX_FMT_VYUY:
336 337 338 339 340
		case V4L2_PIX_FMT_RGB24:
		case V4L2_PIX_FMT_BGR24:
		case V4L2_PIX_FMT_RGB32:
		case V4L2_PIX_FMT_BGR32:
			break;
341 342 343
		}

		if (is_yuv) {
344 345 346
			dev->bars[k][0] = TO_Y(r, g, b);	/* Luma */
			dev->bars[k][1] = TO_U(r, g, b);	/* Cb */
			dev->bars[k][2] = TO_V(r, g, b);	/* Cr */
347
		} else {
348 349 350
			dev->bars[k][0] = r;
			dev->bars[k][1] = g;
			dev->bars[k][2] = b;
351 352 353 354
		}
	}
}

355 356
/* 'odd' is true for pixels 1, 3, 5, etc. and false for pixels 0, 2, 4, etc. */
static void gen_twopix(struct vivi_dev *dev, u8 *buf, int colorpos, bool odd)
357
{
358
	u8 r_y, g_u, b_v;
359
	u8 alpha = dev->alpha_component;
360
	int color;
361
	u8 *p;
362

363 364 365
	r_y = dev->bars[colorpos][0]; /* R or precalculated Y */
	g_u = dev->bars[colorpos][1]; /* G or precalculated U */
	b_v = dev->bars[colorpos][2]; /* B or precalculated V */
366

367
	for (color = 0; color < dev->pixelsize; color++) {
368 369
		p = buf + color;

370
		switch (dev->fmt->fourcc) {
371 372 373 374 375 376
		case V4L2_PIX_FMT_YUYV:
			switch (color) {
			case 0:
				*p = r_y;
				break;
			case 1:
377
				*p = odd ? b_v : g_u;
378 379
				break;
			}
380
			break;
381 382
		case V4L2_PIX_FMT_UYVY:
			switch (color) {
383 384 385
			case 0:
				*p = odd ? b_v : g_u;
				break;
386 387 388
			case 1:
				*p = r_y;
				break;
389 390 391 392 393 394 395 396 397 398 399 400 401 402
			}
			break;
		case V4L2_PIX_FMT_YVYU:
			switch (color) {
			case 0:
				*p = r_y;
				break;
			case 1:
				*p = odd ? g_u : b_v;
				break;
			}
			break;
		case V4L2_PIX_FMT_VYUY:
			switch (color) {
403
			case 0:
404
				*p = odd ? g_u : b_v;
405
				break;
406 407
			case 1:
				*p = r_y;
408 409 410
				break;
			}
			break;
411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430
		case V4L2_PIX_FMT_RGB565:
			switch (color) {
			case 0:
				*p = (g_u << 5) | b_v;
				break;
			case 1:
				*p = (r_y << 3) | (g_u >> 3);
				break;
			}
			break;
		case V4L2_PIX_FMT_RGB565X:
			switch (color) {
			case 0:
				*p = (r_y << 3) | (g_u >> 3);
				break;
			case 1:
				*p = (g_u << 5) | b_v;
				break;
			}
			break;
431 432 433 434 435 436
		case V4L2_PIX_FMT_RGB555:
			switch (color) {
			case 0:
				*p = (g_u << 5) | b_v;
				break;
			case 1:
437
				*p = (alpha & 0x80) | (r_y << 2) | (g_u >> 3);
438 439 440 441 442 443
				break;
			}
			break;
		case V4L2_PIX_FMT_RGB555X:
			switch (color) {
			case 0:
444
				*p = (alpha & 0x80) | (r_y << 2) | (g_u >> 3);
445 446 447 448 449 450
				break;
			case 1:
				*p = (g_u << 5) | b_v;
				break;
			}
			break;
451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479
		case V4L2_PIX_FMT_RGB24:
			switch (color) {
			case 0:
				*p = r_y;
				break;
			case 1:
				*p = g_u;
				break;
			case 2:
				*p = b_v;
				break;
			}
			break;
		case V4L2_PIX_FMT_BGR24:
			switch (color) {
			case 0:
				*p = b_v;
				break;
			case 1:
				*p = g_u;
				break;
			case 2:
				*p = r_y;
				break;
			}
			break;
		case V4L2_PIX_FMT_RGB32:
			switch (color) {
			case 0:
480
				*p = alpha;
481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504
				break;
			case 1:
				*p = r_y;
				break;
			case 2:
				*p = g_u;
				break;
			case 3:
				*p = b_v;
				break;
			}
			break;
		case V4L2_PIX_FMT_BGR32:
			switch (color) {
			case 0:
				*p = b_v;
				break;
			case 1:
				*p = g_u;
				break;
			case 2:
				*p = r_y;
				break;
			case 3:
505
				*p = alpha;
506 507 508
				break;
			}
			break;
509 510 511 512
		}
	}
}

513
static void precalculate_line(struct vivi_dev *dev)
514
{
515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530
	unsigned pixsize  = dev->pixelsize;
	unsigned pixsize2 = 2*pixsize;
	int colorpos;
	u8 *pos;

	for (colorpos = 0; colorpos < 16; ++colorpos) {
		u8 pix[8];
		int wstart =  colorpos    * dev->width / 8;
		int wend   = (colorpos+1) * dev->width / 8;
		int w;

		gen_twopix(dev, &pix[0],        colorpos % 8, 0);
		gen_twopix(dev, &pix[pixsize],  colorpos % 8, 1);

		for (w = wstart/2*2, pos = dev->line + w*pixsize; w < wend; w += 2, pos += pixsize2)
			memcpy(pos, pix, pixsize2);
531
	}
532
}
533

K
Kirill Smelkov 已提交
534 535 536
/* need this to do rgb24 rendering */
typedef struct { u16 __; u8 _; } __attribute__((packed)) x24;

537 538 539 540
static void gen_text(struct vivi_dev *dev, char *basep,
					int y, int x, char *text)
{
	int line;
K
Kirill Smelkov 已提交
541
	unsigned int width = dev->width;
542

543
	/* Checks if it is possible to show string */
K
Kirill Smelkov 已提交
544
	if (y + 16 >= dev->height || x + strlen(text) * 8 >= width)
545
		return;
546 547

	/* Print stream time */
K
Kirill Smelkov 已提交
548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581
#define PRINTSTR(PIXTYPE) do {	\
	PIXTYPE fg;	\
	PIXTYPE bg;	\
	memcpy(&fg, &dev->textfg, sizeof(PIXTYPE));	\
	memcpy(&bg, &dev->textbg, sizeof(PIXTYPE));	\
	\
	for (line = 0; line < 16; line++) {	\
		PIXTYPE *pos = (PIXTYPE *)( basep + ((y + line) * width + x) * sizeof(PIXTYPE) );	\
		u8 *s;	\
	\
		for (s = text; *s; s++) {	\
			u8 chr = font8x16[*s * 16 + line];	\
	\
			pos[0] = (chr & (0x01 << 7) ? fg : bg);	\
			pos[1] = (chr & (0x01 << 6) ? fg : bg);	\
			pos[2] = (chr & (0x01 << 5) ? fg : bg);	\
			pos[3] = (chr & (0x01 << 4) ? fg : bg);	\
			pos[4] = (chr & (0x01 << 3) ? fg : bg);	\
			pos[5] = (chr & (0x01 << 2) ? fg : bg);	\
			pos[6] = (chr & (0x01 << 1) ? fg : bg);	\
			pos[7] = (chr & (0x01 << 0) ? fg : bg);	\
	\
			pos += 8;	\
		}	\
	}	\
} while (0)

	switch (dev->pixelsize) {
	case 2:
		PRINTSTR(u16); break;
	case 4:
		PRINTSTR(u32); break;
	case 3:
		PRINTSTR(x24); break;
582 583
	}
}
584

585
static void vivi_fillbuff(struct vivi_dev *dev, struct vivi_buffer *buf)
586
{
587
	int stride = dev->width * dev->pixelsize;
588 589
	int hmax = dev->height;
	void *vbuf = vb2_plane_vaddr(&buf->vb, 0);
590 591 592
	unsigned ms;
	char str[100];
	int h, line = 1;
593
	u8 *linestart;
594
	s32 gain;
595

596
	if (!vbuf)
597
		return;
598

599 600
	linestart = dev->line + (dev->mv_count % dev->width) * dev->pixelsize;

601
	for (h = 0; h < hmax; h++)
602
		memcpy(vbuf + h * stride, linestart, stride);
603

604 605
	/* Updates stream time */

K
Kirill Smelkov 已提交
606 607 608
	gen_twopix(dev, (u8 *)&dev->textbg, TEXT_BLACK, /*odd=*/ 0);
	gen_twopix(dev, (u8 *)&dev->textfg, WHITE, /*odd=*/ 0);

609
	dev->ms += jiffies_to_msecs(jiffies - dev->jiffies);
610
	dev->jiffies = jiffies;
611 612 613 614 615 616 617 618 619 620 621
	ms = dev->ms;
	snprintf(str, sizeof(str), " %02d:%02d:%02d:%03d ",
			(ms / (60 * 60 * 1000)) % 24,
			(ms / (60 * 1000)) % 60,
			(ms / 1000) % 60,
			ms % 1000);
	gen_text(dev, vbuf, line++ * 16, 16, str);
	snprintf(str, sizeof(str), " %dx%d, input %d ",
			dev->width, dev->height, dev->input);
	gen_text(dev, vbuf, line++ * 16, 16, str);

622
	gain = v4l2_ctrl_g_ctrl(dev->gain);
623
	mutex_lock(dev->ctrl_handler.lock);
624
	snprintf(str, sizeof(str), " brightness %3d, contrast %3d, saturation %3d, hue %d ",
625 626 627 628
			dev->brightness->cur.val,
			dev->contrast->cur.val,
			dev->saturation->cur.val,
			dev->hue->cur.val);
629
	gen_text(dev, vbuf, line++ * 16, 16, str);
630 631 632
	snprintf(str, sizeof(str), " autogain %d, gain %3d, volume %3d, alpha 0x%02x ",
			dev->autogain->cur.val, gain, dev->volume->cur.val,
			dev->alpha->cur.val);
633
	gen_text(dev, vbuf, line++ * 16, 16, str);
634
	snprintf(str, sizeof(str), " int32 %d, int64 %lld, bitmask %08x ",
635
			dev->int32->cur.val,
636 637
			dev->int64->cur.val64,
			dev->bitmask->cur.val);
638 639 640 641 642
	gen_text(dev, vbuf, line++ * 16, 16, str);
	snprintf(str, sizeof(str), " boolean %d, menu %s, string \"%s\" ",
			dev->boolean->cur.val,
			dev->menu->qmenu[dev->menu->cur.val],
			dev->string->cur.string);
H
Hans Verkuil 已提交
643
	gen_text(dev, vbuf, line++ * 16, 16, str);
644 645 646 647
	snprintf(str, sizeof(str), " integer_menu %lld, value %d ",
			dev->int_menu->qmenu_int[dev->int_menu->cur.val],
			dev->int_menu->cur.val);
	gen_text(dev, vbuf, line++ * 16, 16, str);
648
	mutex_unlock(dev->ctrl_handler.lock);
649 650 651 652 653
	if (dev->button_pressed) {
		dev->button_pressed--;
		snprintf(str, sizeof(str), " button pressed!");
		gen_text(dev, vbuf, line++ * 16, 16, str);
	}
654 655

	dev->mv_count += 2;
656

657
	buf->vb.v4l2_buf.field = V4L2_FIELD_INTERLACED;
658 659
	dev->field_count++;
	buf->vb.v4l2_buf.sequence = dev->field_count >> 1;
660
	v4l2_get_timestamp(&buf->vb.v4l2_buf.timestamp);
661 662
}

663
static void vivi_thread_tick(struct vivi_dev *dev)
664
{
665
	struct vivi_dmaqueue *dma_q = &dev->vidq;
666
	struct vivi_buffer *buf;
667
	unsigned long flags = 0;
668

669
	dprintk(dev, 1, "Thread tick\n");
670

671 672 673
	spin_lock_irqsave(&dev->slock, flags);
	if (list_empty(&dma_q->active)) {
		dprintk(dev, 1, "No active queue to serve\n");
674 675
		spin_unlock_irqrestore(&dev->slock, flags);
		return;
676
	}
677

678 679
	buf = list_entry(dma_q->active.next, struct vivi_buffer, list);
	list_del(&buf->list);
680
	spin_unlock_irqrestore(&dev->slock, flags);
681

682
	v4l2_get_timestamp(&buf->vb.v4l2_buf.timestamp);
683 684

	/* Fill buffer */
685
	vivi_fillbuff(dev, buf);
686 687
	dprintk(dev, 1, "filled buffer %p\n", buf);

688 689
	vb2_buffer_done(&buf->vb, VB2_BUF_STATE_DONE);
	dprintk(dev, 2, "[%p/%d] done\n", buf, buf->vb.v4l2_buf.index);
690 691
}

692 693 694
#define frames_to_ms(frames)					\
	((frames * WAKE_NUMERATOR * 1000) / WAKE_DENOMINATOR)

695
static void vivi_sleep(struct vivi_dev *dev)
696
{
697 698
	struct vivi_dmaqueue *dma_q = &dev->vidq;
	int timeout;
699 700
	DECLARE_WAITQUEUE(wait, current);

701
	dprintk(dev, 1, "%s dma_q=0x%08lx\n", __func__,
702
		(unsigned long)dma_q);
703 704

	add_wait_queue(&dma_q->wq, &wait);
705 706 707 708
	if (kthread_should_stop())
		goto stop_task;

	/* Calculate time to wake up */
709
	timeout = msecs_to_jiffies(frames_to_ms(1));
710

711
	vivi_thread_tick(dev);
712 713

	schedule_timeout_interruptible(timeout);
714

715
stop_task:
716 717 718 719
	remove_wait_queue(&dma_q->wq, &wait);
	try_to_freeze();
}

720
static int vivi_thread(void *data)
721
{
722
	struct vivi_dev *dev = data;
723

724
	dprintk(dev, 1, "thread started\n");
725

726
	set_freezable();
727

728
	for (;;) {
729
		vivi_sleep(dev);
730 731 732 733

		if (kthread_should_stop())
			break;
	}
734
	dprintk(dev, 1, "thread: exit\n");
735 736 737
	return 0;
}

738
static int vivi_start_generating(struct vivi_dev *dev)
739
{
740
	struct vivi_dmaqueue *dma_q = &dev->vidq;
741

742
	dprintk(dev, 1, "%s\n", __func__);
743

744 745 746 747 748 749 750 751
	/* Resets frame counters */
	dev->ms = 0;
	dev->mv_count = 0;
	dev->jiffies = jiffies;

	dma_q->frame = 0;
	dma_q->ini_jiffies = jiffies;
	dma_q->kthread = kthread_run(vivi_thread, dev, dev->v4l2_dev.name);
752

753
	if (IS_ERR(dma_q->kthread)) {
754
		v4l2_err(&dev->v4l2_dev, "kernel_thread() failed\n");
755
		return PTR_ERR(dma_q->kthread);
756
	}
757 758 759
	/* Wakes thread */
	wake_up_interruptible(&dma_q->wq);

760
	dprintk(dev, 1, "returning from %s\n", __func__);
761
	return 0;
762 763
}

764
static void vivi_stop_generating(struct vivi_dev *dev)
765
{
766
	struct vivi_dmaqueue *dma_q = &dev->vidq;
767

768
	dprintk(dev, 1, "%s\n", __func__);
769

770 771 772
	/* shutdown control thread */
	if (dma_q->kthread) {
		kthread_stop(dma_q->kthread);
773
		dma_q->kthread = NULL;
774
	}
775

776 777 778 779 780 781 782 783 784 785 786 787 788
	/*
	 * Typical driver might need to wait here until dma engine stops.
	 * In this case we can abort imiedetly, so it's just a noop.
	 */

	/* Release all active buffers */
	while (!list_empty(&dma_q->active)) {
		struct vivi_buffer *buf;
		buf = list_entry(dma_q->active.next, struct vivi_buffer, list);
		list_del(&buf->list);
		vb2_buffer_done(&buf->vb, VB2_BUF_STATE_ERROR);
		dprintk(dev, 2, "[%p/%d] done\n", buf, buf->vb.v4l2_buf.index);
	}
789 790 791 792
}
/* ------------------------------------------------------------------
	Videobuf operations
   ------------------------------------------------------------------*/
793 794 795
static int queue_setup(struct vb2_queue *vq, const struct v4l2_format *fmt,
				unsigned int *nbuffers, unsigned int *nplanes,
				unsigned int sizes[], void *alloc_ctxs[])
796
{
797 798 799
	struct vivi_dev *dev = vb2_get_drv_priv(vq);
	unsigned long size;

800 801 802 803 804 805 806
	if (fmt)
		size = fmt->fmt.pix.sizeimage;
	else
		size = dev->width * dev->height * dev->pixelsize;

	if (size == 0)
		return -EINVAL;
807

808 809
	if (0 == *nbuffers)
		*nbuffers = 32;
810

811 812
	while (size * *nbuffers > vid_limit * 1024 * 1024)
		(*nbuffers)--;
813

814
	*nplanes = 1;
815

816 817 818 819 820 821 822 823 824
	sizes[0] = size;

	/*
	 * videobuf2-vmalloc allocator is context-less so no need to set
	 * alloc_ctxs array.
	 */

	dprintk(dev, 1, "%s, count=%d, size=%ld\n", __func__,
		*nbuffers, size);
825

826 827 828
	return 0;
}

829
static int buffer_prepare(struct vb2_buffer *vb)
830
{
831
	struct vivi_dev *dev = vb2_get_drv_priv(vb->vb2_queue);
832
	struct vivi_buffer *buf = container_of(vb, struct vivi_buffer, vb);
833
	unsigned long size;
834

835
	dprintk(dev, 1, "%s, field=%d\n", __func__, vb->v4l2_buf.field);
836

837
	BUG_ON(NULL == dev->fmt);
838

839 840 841 842 843 844
	/*
	 * Theses properties only change when queue is idle, see s_fmt.
	 * The below checks should not be performed here, on each
	 * buffer_prepare (i.e. on each qbuf). Most of the code in this function
	 * should thus be moved to buffer_init and s_fmt.
	 */
845 846
	if (dev->width  < 48 || dev->width  > MAX_WIDTH ||
	    dev->height < 32 || dev->height > MAX_HEIGHT)
847
		return -EINVAL;
848

849
	size = dev->width * dev->height * dev->pixelsize;
850 851 852
	if (vb2_plane_size(vb, 0) < size) {
		dprintk(dev, 1, "%s data will not fit into plane (%lu < %lu)\n",
				__func__, vb2_plane_size(vb, 0), size);
853
		return -EINVAL;
854 855 856
	}

	vb2_set_plane_payload(&buf->vb, 0, size);
857

858
	buf->fmt = dev->fmt;
859

860 861
	precalculate_bars(dev);
	precalculate_line(dev);
862

863 864
	return 0;
}
865

866
static void buffer_queue(struct vb2_buffer *vb)
867
{
868
	struct vivi_dev *dev = vb2_get_drv_priv(vb->vb2_queue);
869
	struct vivi_buffer *buf = container_of(vb, struct vivi_buffer, vb);
870
	struct vivi_dmaqueue *vidq = &dev->vidq;
871
	unsigned long flags = 0;
872

873
	dprintk(dev, 1, "%s\n", __func__);
874

875 876 877
	spin_lock_irqsave(&dev->slock, flags);
	list_add_tail(&buf->list, &vidq->active);
	spin_unlock_irqrestore(&dev->slock, flags);
878 879
}

880
static int start_streaming(struct vb2_queue *vq, unsigned int count)
881
{
882 883 884 885
	struct vivi_dev *dev = vb2_get_drv_priv(vq);
	dprintk(dev, 1, "%s\n", __func__);
	return vivi_start_generating(dev);
}
886

887 888 889 890
/* abort streaming and wait for last buffer */
static int stop_streaming(struct vb2_queue *vq)
{
	struct vivi_dev *dev = vb2_get_drv_priv(vq);
891
	dprintk(dev, 1, "%s\n", __func__);
892 893 894 895 896 897 898 899 900
	vivi_stop_generating(dev);
	return 0;
}

static void vivi_lock(struct vb2_queue *vq)
{
	struct vivi_dev *dev = vb2_get_drv_priv(vq);
	mutex_lock(&dev->mutex);
}
901

902 903 904 905
static void vivi_unlock(struct vb2_queue *vq)
{
	struct vivi_dev *dev = vb2_get_drv_priv(vq);
	mutex_unlock(&dev->mutex);
906 907
}

908 909 910 911 912 913 914 915 916

static struct vb2_ops vivi_video_qops = {
	.queue_setup		= queue_setup,
	.buf_prepare		= buffer_prepare,
	.buf_queue		= buffer_queue,
	.start_streaming	= start_streaming,
	.stop_streaming		= stop_streaming,
	.wait_prepare		= vivi_unlock,
	.wait_finish		= vivi_lock,
917 918
};

919 920 921
/* ------------------------------------------------------------------
	IOCTL vidioc handling
   ------------------------------------------------------------------*/
922
static int vidioc_querycap(struct file *file, void  *priv,
923 924
					struct v4l2_capability *cap)
{
925
	struct vivi_dev *dev = video_drvdata(file);
926

927 928
	strcpy(cap->driver, "vivi");
	strcpy(cap->card, "vivi");
929 930
	snprintf(cap->bus_info, sizeof(cap->bus_info),
			"platform:%s", dev->v4l2_dev.name);
931 932 933
	cap->device_caps = V4L2_CAP_VIDEO_CAPTURE | V4L2_CAP_STREAMING |
			    V4L2_CAP_READWRITE;
	cap->capabilities = cap->device_caps | V4L2_CAP_DEVICE_CAPS;
934 935 936
	return 0;
}

937
static int vidioc_enum_fmt_vid_cap(struct file *file, void  *priv,
938 939
					struct v4l2_fmtdesc *f)
{
940 941 942
	struct vivi_fmt *fmt;

	if (f->index >= ARRAY_SIZE(formats))
943 944
		return -EINVAL;

945 946 947 948
	fmt = &formats[f->index];

	strlcpy(f->description, fmt->name, sizeof(f->description));
	f->pixelformat = fmt->fourcc;
949 950 951
	return 0;
}

952
static int vidioc_g_fmt_vid_cap(struct file *file, void *priv,
953 954
					struct v4l2_format *f)
{
955
	struct vivi_dev *dev = video_drvdata(file);
956

957 958
	f->fmt.pix.width        = dev->width;
	f->fmt.pix.height       = dev->height;
959
	f->fmt.pix.field        = V4L2_FIELD_INTERLACED;
960
	f->fmt.pix.pixelformat  = dev->fmt->fourcc;
961
	f->fmt.pix.bytesperline =
962
		(f->fmt.pix.width * dev->fmt->depth) >> 3;
963 964
	f->fmt.pix.sizeimage =
		f->fmt.pix.height * f->fmt.pix.bytesperline;
965
	if (dev->fmt->is_yuv)
H
Hans Verkuil 已提交
966 967 968
		f->fmt.pix.colorspace = V4L2_COLORSPACE_SMPTE170M;
	else
		f->fmt.pix.colorspace = V4L2_COLORSPACE_SRGB;
969
	return 0;
970 971
}

972
static int vidioc_try_fmt_vid_cap(struct file *file, void *priv,
973 974
			struct v4l2_format *f)
{
975
	struct vivi_dev *dev = video_drvdata(file);
976 977
	struct vivi_fmt *fmt;

978 979
	fmt = get_format(f);
	if (!fmt) {
980
		dprintk(dev, 1, "Fourcc format (0x%08x) unknown.\n",
981
			f->fmt.pix.pixelformat);
982 983
		f->fmt.pix.pixelformat = V4L2_PIX_FMT_YUYV;
		fmt = get_format(f);
984 985
	}

986
	f->fmt.pix.field = V4L2_FIELD_INTERLACED;
987 988
	v4l_bound_align_image(&f->fmt.pix.width, 48, MAX_WIDTH, 2,
			      &f->fmt.pix.height, 32, MAX_HEIGHT, 0, 0);
989 990 991 992
	f->fmt.pix.bytesperline =
		(f->fmt.pix.width * fmt->depth) >> 3;
	f->fmt.pix.sizeimage =
		f->fmt.pix.height * f->fmt.pix.bytesperline;
993
	if (fmt->is_yuv)
H
Hans Verkuil 已提交
994 995 996
		f->fmt.pix.colorspace = V4L2_COLORSPACE_SMPTE170M;
	else
		f->fmt.pix.colorspace = V4L2_COLORSPACE_SRGB;
997
	f->fmt.pix.priv = 0;
998 999 1000
	return 0;
}

1001 1002 1003
static int vidioc_s_fmt_vid_cap(struct file *file, void *priv,
					struct v4l2_format *f)
{
1004
	struct vivi_dev *dev = video_drvdata(file);
1005
	struct vb2_queue *q = &dev->vb_vidq;
1006

1007
	int ret = vidioc_try_fmt_vid_cap(file, priv, f);
1008 1009 1010
	if (ret < 0)
		return ret;

1011
	if (vb2_is_busy(q)) {
1012
		dprintk(dev, 1, "%s device busy\n", __func__);
1013
		return -EBUSY;
1014 1015
	}

1016
	dev->fmt = get_format(f);
1017
	dev->pixelsize = dev->fmt->depth / 8;
1018 1019
	dev->width = f->fmt.pix.width;
	dev->height = f->fmt.pix.height;
1020 1021

	return 0;
1022 1023
}

1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044
static int vidioc_enum_framesizes(struct file *file, void *fh,
					 struct v4l2_frmsizeenum *fsize)
{
	static const struct v4l2_frmsize_stepwise sizes = {
		48, MAX_WIDTH, 4,
		32, MAX_HEIGHT, 1
	};
	int i;

	if (fsize->index)
		return -EINVAL;
	for (i = 0; i < ARRAY_SIZE(formats); i++)
		if (formats[i].fourcc == fsize->pixel_format)
			break;
	if (i == ARRAY_SIZE(formats))
		return -EINVAL;
	fsize->type = V4L2_FRMSIZE_TYPE_STEPWISE;
	fsize->stepwise = sizes;
	return 0;
}

1045
/* only one input in this sample driver */
1046
static int vidioc_enum_input(struct file *file, void *priv,
1047 1048
				struct v4l2_input *inp)
{
1049
	if (inp->index >= NUM_INPUTS)
1050
		return -EINVAL;
1051

1052
	inp->type = V4L2_INPUT_TYPE_CAMERA;
1053
	sprintf(inp->name, "Camera %u", inp->index);
1054
	return 0;
1055
}
1056

1057
static int vidioc_g_input(struct file *file, void *priv, unsigned int *i)
1058
{
1059
	struct vivi_dev *dev = video_drvdata(file);
1060 1061

	*i = dev->input;
1062
	return 0;
1063
}
1064

1065
static int vidioc_s_input(struct file *file, void *priv, unsigned int i)
1066
{
1067
	struct vivi_dev *dev = video_drvdata(file);
1068 1069

	if (i >= NUM_INPUTS)
1070
		return -EINVAL;
1071

1072 1073 1074
	if (i == dev->input)
		return 0;

1075
	dev->input = i;
1076 1077 1078
	precalculate_bars(dev);
	precalculate_line(dev);
	return 0;
1079
}
1080

1081
/* --- controls ---------------------------------------------- */
1082

1083 1084 1085 1086 1087 1088 1089 1090 1091
static int vivi_g_volatile_ctrl(struct v4l2_ctrl *ctrl)
{
	struct vivi_dev *dev = container_of(ctrl->handler, struct vivi_dev, ctrl_handler);

	if (ctrl == dev->autogain)
		dev->gain->val = jiffies & 0xff;
	return 0;
}

1092
static int vivi_s_ctrl(struct v4l2_ctrl *ctrl)
1093
{
1094
	struct vivi_dev *dev = container_of(ctrl->handler, struct vivi_dev, ctrl_handler);
1095

1096 1097 1098 1099 1100 1101 1102 1103 1104
	switch (ctrl->id) {
	case V4L2_CID_ALPHA_COMPONENT:
		dev->alpha_component = ctrl->val;
		break;
	default:
		if (ctrl == dev->button)
			dev->button_pressed = 30;
		break;
	}
1105
	return 0;
1106 1107 1108 1109 1110 1111
}

/* ------------------------------------------------------------------
	File operations for the device
   ------------------------------------------------------------------*/

1112
static const struct v4l2_ctrl_ops vivi_ctrl_ops = {
1113
	.g_volatile_ctrl = vivi_g_volatile_ctrl,
1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141
	.s_ctrl = vivi_s_ctrl,
};

#define VIVI_CID_CUSTOM_BASE	(V4L2_CID_USER_BASE | 0xf000)

static const struct v4l2_ctrl_config vivi_ctrl_button = {
	.ops = &vivi_ctrl_ops,
	.id = VIVI_CID_CUSTOM_BASE + 0,
	.name = "Button",
	.type = V4L2_CTRL_TYPE_BUTTON,
};

static const struct v4l2_ctrl_config vivi_ctrl_boolean = {
	.ops = &vivi_ctrl_ops,
	.id = VIVI_CID_CUSTOM_BASE + 1,
	.name = "Boolean",
	.type = V4L2_CTRL_TYPE_BOOLEAN,
	.min = 0,
	.max = 1,
	.step = 1,
	.def = 1,
};

static const struct v4l2_ctrl_config vivi_ctrl_int32 = {
	.ops = &vivi_ctrl_ops,
	.id = VIVI_CID_CUSTOM_BASE + 2,
	.name = "Integer 32 Bits",
	.type = V4L2_CTRL_TYPE_INTEGER,
1142 1143
	.min = 0x80000000,
	.max = 0x7fffffff,
1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185
	.step = 1,
};

static const struct v4l2_ctrl_config vivi_ctrl_int64 = {
	.ops = &vivi_ctrl_ops,
	.id = VIVI_CID_CUSTOM_BASE + 3,
	.name = "Integer 64 Bits",
	.type = V4L2_CTRL_TYPE_INTEGER64,
};

static const char * const vivi_ctrl_menu_strings[] = {
	"Menu Item 0 (Skipped)",
	"Menu Item 1",
	"Menu Item 2 (Skipped)",
	"Menu Item 3",
	"Menu Item 4",
	"Menu Item 5 (Skipped)",
	NULL,
};

static const struct v4l2_ctrl_config vivi_ctrl_menu = {
	.ops = &vivi_ctrl_ops,
	.id = VIVI_CID_CUSTOM_BASE + 4,
	.name = "Menu",
	.type = V4L2_CTRL_TYPE_MENU,
	.min = 1,
	.max = 4,
	.def = 3,
	.menu_skip_mask = 0x04,
	.qmenu = vivi_ctrl_menu_strings,
};

static const struct v4l2_ctrl_config vivi_ctrl_string = {
	.ops = &vivi_ctrl_ops,
	.id = VIVI_CID_CUSTOM_BASE + 5,
	.name = "String",
	.type = V4L2_CTRL_TYPE_STRING,
	.min = 2,
	.max = 4,
	.step = 1,
};

1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196
static const struct v4l2_ctrl_config vivi_ctrl_bitmask = {
	.ops = &vivi_ctrl_ops,
	.id = VIVI_CID_CUSTOM_BASE + 6,
	.name = "Bitmask",
	.type = V4L2_CTRL_TYPE_BITMASK,
	.def = 0x80002000,
	.min = 0,
	.max = 0x80402010,
	.step = 0,
};

1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212
static const s64 vivi_ctrl_int_menu_values[] = {
	1, 1, 2, 3, 5, 8, 13, 21, 42,
};

static const struct v4l2_ctrl_config vivi_ctrl_int_menu = {
	.ops = &vivi_ctrl_ops,
	.id = VIVI_CID_CUSTOM_BASE + 7,
	.name = "Integer menu",
	.type = V4L2_CTRL_TYPE_INTEGER_MENU,
	.min = 1,
	.max = 8,
	.def = 4,
	.menu_skip_mask = 0x02,
	.qmenu_int = vivi_ctrl_int_menu_values,
};

1213
static const struct v4l2_file_operations vivi_fops = {
1214
	.owner		= THIS_MODULE,
1215
	.open           = v4l2_fh_open,
1216 1217 1218
	.release        = vb2_fop_release,
	.read           = vb2_fop_read,
	.poll		= vb2_fop_poll,
H
Hans Verkuil 已提交
1219
	.unlocked_ioctl = video_ioctl2, /* V4L2 ioctl handler */
1220
	.mmap           = vb2_fop_mmap,
1221 1222
};

1223
static const struct v4l2_ioctl_ops vivi_ioctl_ops = {
1224
	.vidioc_querycap      = vidioc_querycap,
1225 1226 1227 1228
	.vidioc_enum_fmt_vid_cap  = vidioc_enum_fmt_vid_cap,
	.vidioc_g_fmt_vid_cap     = vidioc_g_fmt_vid_cap,
	.vidioc_try_fmt_vid_cap   = vidioc_try_fmt_vid_cap,
	.vidioc_s_fmt_vid_cap     = vidioc_s_fmt_vid_cap,
1229
	.vidioc_enum_framesizes   = vidioc_enum_framesizes,
1230
	.vidioc_reqbufs       = vb2_ioctl_reqbufs,
1231 1232
	.vidioc_create_bufs   = vb2_ioctl_create_bufs,
	.vidioc_prepare_buf   = vb2_ioctl_prepare_buf,
1233 1234 1235
	.vidioc_querybuf      = vb2_ioctl_querybuf,
	.vidioc_qbuf          = vb2_ioctl_qbuf,
	.vidioc_dqbuf         = vb2_ioctl_dqbuf,
1236 1237 1238
	.vidioc_enum_input    = vidioc_enum_input,
	.vidioc_g_input       = vidioc_g_input,
	.vidioc_s_input       = vidioc_s_input,
1239 1240
	.vidioc_streamon      = vb2_ioctl_streamon,
	.vidioc_streamoff     = vb2_ioctl_streamoff,
1241
	.vidioc_log_status    = v4l2_ctrl_log_status,
1242
	.vidioc_subscribe_event = v4l2_ctrl_subscribe_event,
1243
	.vidioc_unsubscribe_event = v4l2_event_unsubscribe,
1244 1245 1246 1247 1248 1249
};

static struct video_device vivi_template = {
	.name		= "vivi",
	.fops           = &vivi_fops,
	.ioctl_ops 	= &vivi_ioctl_ops,
1250
	.release	= video_device_release_empty,
1251
};
1252

1253
/* -----------------------------------------------------------------
1254 1255 1256
	Initialization and module stuff
   ------------------------------------------------------------------*/

1257 1258 1259 1260
static int vivi_release(void)
{
	struct vivi_dev *dev;
	struct list_head *list;
1261

1262 1263 1264 1265 1266
	while (!list_empty(&vivi_devlist)) {
		list = vivi_devlist.next;
		list_del(list);
		dev = list_entry(list, struct vivi_dev, vivi_devlist);

1267
		v4l2_info(&dev->v4l2_dev, "unregistering %s\n",
1268 1269
			video_device_node_name(&dev->vdev));
		video_unregister_device(&dev->vdev);
1270
		v4l2_device_unregister(&dev->v4l2_dev);
1271
		v4l2_ctrl_handler_free(&dev->ctrl_handler);
1272 1273 1274 1275 1276 1277
		kfree(dev);
	}

	return 0;
}

1278
static int __init vivi_create_instance(int inst)
1279 1280
{
	struct vivi_dev *dev;
1281
	struct video_device *vfd;
1282
	struct v4l2_ctrl_handler *hdl;
1283
	struct vb2_queue *q;
1284
	int ret;
1285

1286 1287 1288
	dev = kzalloc(sizeof(*dev), GFP_KERNEL);
	if (!dev)
		return -ENOMEM;
1289

1290
	snprintf(dev->v4l2_dev.name, sizeof(dev->v4l2_dev.name),
1291
			"%s-%03d", VIVI_MODULE_NAME, inst);
1292 1293 1294
	ret = v4l2_device_register(NULL, &dev->v4l2_dev);
	if (ret)
		goto free_dev;
1295

1296 1297 1298
	dev->fmt = &formats[0];
	dev->width = 640;
	dev->height = 480;
1299
	dev->pixelsize = dev->fmt->depth / 8;
1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311
	hdl = &dev->ctrl_handler;
	v4l2_ctrl_handler_init(hdl, 11);
	dev->volume = v4l2_ctrl_new_std(hdl, &vivi_ctrl_ops,
			V4L2_CID_AUDIO_VOLUME, 0, 255, 1, 200);
	dev->brightness = v4l2_ctrl_new_std(hdl, &vivi_ctrl_ops,
			V4L2_CID_BRIGHTNESS, 0, 255, 1, 127);
	dev->contrast = v4l2_ctrl_new_std(hdl, &vivi_ctrl_ops,
			V4L2_CID_CONTRAST, 0, 255, 1, 16);
	dev->saturation = v4l2_ctrl_new_std(hdl, &vivi_ctrl_ops,
			V4L2_CID_SATURATION, 0, 255, 1, 127);
	dev->hue = v4l2_ctrl_new_std(hdl, &vivi_ctrl_ops,
			V4L2_CID_HUE, -128, 127, 1, 0);
1312 1313 1314 1315
	dev->autogain = v4l2_ctrl_new_std(hdl, &vivi_ctrl_ops,
			V4L2_CID_AUTOGAIN, 0, 1, 1, 1);
	dev->gain = v4l2_ctrl_new_std(hdl, &vivi_ctrl_ops,
			V4L2_CID_GAIN, 0, 255, 1, 100);
1316 1317
	dev->alpha = v4l2_ctrl_new_std(hdl, &vivi_ctrl_ops,
			V4L2_CID_ALPHA_COMPONENT, 0, 255, 1, 0);
1318 1319 1320 1321 1322 1323
	dev->button = v4l2_ctrl_new_custom(hdl, &vivi_ctrl_button, NULL);
	dev->int32 = v4l2_ctrl_new_custom(hdl, &vivi_ctrl_int32, NULL);
	dev->int64 = v4l2_ctrl_new_custom(hdl, &vivi_ctrl_int64, NULL);
	dev->boolean = v4l2_ctrl_new_custom(hdl, &vivi_ctrl_boolean, NULL);
	dev->menu = v4l2_ctrl_new_custom(hdl, &vivi_ctrl_menu, NULL);
	dev->string = v4l2_ctrl_new_custom(hdl, &vivi_ctrl_string, NULL);
1324
	dev->bitmask = v4l2_ctrl_new_custom(hdl, &vivi_ctrl_bitmask, NULL);
1325
	dev->int_menu = v4l2_ctrl_new_custom(hdl, &vivi_ctrl_int_menu, NULL);
1326 1327 1328 1329
	if (hdl->error) {
		ret = hdl->error;
		goto unreg_dev;
	}
1330
	v4l2_ctrl_auto_cluster(2, &dev->autogain, 0, true);
1331
	dev->v4l2_dev.ctrl_handler = hdl;
1332

H
Hans Verkuil 已提交
1333 1334 1335
	/* initialize locks */
	spin_lock_init(&dev->slock);

1336 1337 1338
	/* initialize queue */
	q = &dev->vb_vidq;
	q->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
1339
	q->io_modes = VB2_MMAP | VB2_USERPTR | VB2_DMABUF | VB2_READ;
1340 1341 1342 1343 1344
	q->drv_priv = dev;
	q->buf_struct_size = sizeof(struct vivi_buffer);
	q->ops = &vivi_video_qops;
	q->mem_ops = &vb2_vmalloc_memops;

1345 1346 1347
	ret = vb2_queue_init(q);
	if (ret)
		goto unreg_dev;
1348 1349

	mutex_init(&dev->mutex);
1350

1351 1352 1353
	/* init video dma queues */
	INIT_LIST_HEAD(&dev->vidq.active);
	init_waitqueue_head(&dev->vidq.wq);
1354

1355
	vfd = &dev->vdev;
1356
	*vfd = vivi_template;
1357
	vfd->debug = debug;
1358
	vfd->v4l2_dev = &dev->v4l2_dev;
1359
	vfd->queue = q;
1360
	set_bit(V4L2_FL_USE_FH_PRIO, &vfd->flags);
1361 1362 1363 1364 1365

	/*
	 * Provide a mutex to v4l2 core. It will be used to protect
	 * all fops and v4l2 ioctls.
	 */
H
Hans Verkuil 已提交
1366
	vfd->lock = &dev->mutex;
1367
	video_set_drvdata(vfd, dev);
1368

1369 1370
	ret = video_register_device(vfd, VFL_TYPE_GRABBER, video_nr);
	if (ret < 0)
1371
		goto unreg_dev;
1372

1373 1374
	/* Now that everything is fine, let's add it to device list */
	list_add_tail(&dev->vivi_devlist, &vivi_devlist);
1375

1376 1377
	v4l2_info(&dev->v4l2_dev, "V4L2 device registered as %s\n",
		  video_device_node_name(vfd));
1378 1379 1380
	return 0;

unreg_dev:
1381
	v4l2_ctrl_handler_free(hdl);
1382 1383 1384 1385 1386
	v4l2_device_unregister(&dev->v4l2_dev);
free_dev:
	kfree(dev);
	return ret;
}
1387

1388 1389 1390 1391 1392 1393 1394 1395
/* This routine allocates from 1 to n_devs virtual drivers.

   The real maximum number of virtual drivers will depend on how many drivers
   will succeed. This is limited to the maximum number of devices that
   videodev supports, which is equal to VIDEO_NUM_DEVICES.
 */
static int __init vivi_init(void)
{
1396
	const struct font_desc *font = find_font("VGA8x16");
1397
	int ret = 0, i;
1398

1399 1400 1401 1402 1403 1404
	if (font == NULL) {
		printk(KERN_ERR "vivi: could not find font\n");
		return -ENODEV;
	}
	font8x16 = font->data;

1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415
	if (n_devs <= 0)
		n_devs = 1;

	for (i = 0; i < n_devs; i++) {
		ret = vivi_create_instance(i);
		if (ret) {
			/* If some instantiations succeeded, keep driver */
			if (i)
				ret = 0;
			break;
		}
1416
	}
1417

1418
	if (ret < 0) {
1419
		printk(KERN_ERR "vivi: error %d while loading driver\n", ret);
1420 1421 1422 1423
		return ret;
	}

	printk(KERN_INFO "Video Technology Magazine Virtual Video "
1424 1425
			"Capture Board ver %s successfully loaded.\n",
			VIVI_VERSION);
1426

1427 1428
	/* n_devs will reflect the actual number of allocated devices */
	n_devs = i;
1429

1430 1431 1432 1433 1434
	return ret;
}

static void __exit vivi_exit(void)
{
1435
	vivi_release();
1436 1437 1438 1439
}

module_init(vivi_init);
module_exit(vivi_exit);