2 * Virtual Video driver - This code emulates a real video device with v4l2 api
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/
10 * Conversion to videobuf2 by Pawel Osciak & Marek Szyprowski
11 * Copyright (c) 2010 Samsung Electronics
13 * 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
18 #include <linux/module.h>
19 #include <linux/errno.h>
20 #include <linux/kernel.h>
21 #include <linux/init.h>
22 #include <linux/sched.h>
23 #include <linux/slab.h>
24 #include <linux/font.h>
25 #include <linux/mutex.h>
26 #include <linux/videodev2.h>
27 #include <linux/kthread.h>
28 #include <linux/freezer.h>
29 #include <media/videobuf2-vmalloc.h>
30 #include <media/v4l2-device.h>
31 #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>
37 #define VIVI_MODULE_NAME "vivi"
39 /* Maximum allowed frame rate
41 * Vivi will allow setting timeperframe in [1/FPS_MAX - FPS_MAX/1] range.
43 * Ideally FPS_MAX should be infinity, i.e. practically UINT_MAX, but that
44 * might hit application errors when they manipulate these values.
46 * Besides, for tpf < 1ms image-generation logic should be changed, to avoid
47 * producing frames with equal content.
51 #define MAX_WIDTH 1920
52 #define MAX_HEIGHT 1200
54 #define VIVI_VERSION "0.8.1"
56 MODULE_DESCRIPTION("Video Technology Magazine Virtual Video Capture Board");
57 MODULE_AUTHOR("Mauro Carvalho Chehab, Ted Walther and John Sokol");
58 MODULE_LICENSE("Dual BSD/GPL");
59 MODULE_VERSION(VIVI_VERSION);
61 static unsigned video_nr = -1;
62 module_param(video_nr, uint, 0644);
63 MODULE_PARM_DESC(video_nr, "videoX start number, -1 is autodetect");
65 static unsigned n_devs = 1;
66 module_param(n_devs, uint, 0644);
67 MODULE_PARM_DESC(n_devs, "number of video devices to create");
69 static unsigned debug;
70 module_param(debug, uint, 0644);
71 MODULE_PARM_DESC(debug, "activates debug info");
73 static unsigned int vid_limit = 16;
74 module_param(vid_limit, uint, 0644);
75 MODULE_PARM_DESC(vid_limit, "capture memory limit in megabytes");
77 /* Global font descriptor */
78 static const u8 *font8x16;
80 /* timeperframe: min/max and default */
81 static const struct v4l2_fract
82 tpf_min = {.numerator = 1, .denominator = FPS_MAX},
83 tpf_max = {.numerator = FPS_MAX, .denominator = 1},
84 tpf_default = {.numerator = 1001, .denominator = 30000}; /* NTSC */
86 #define dprintk(dev, level, fmt, arg...) \
87 v4l2_dbg(level, debug, &dev->v4l2_dev, fmt, ## arg)
89 /* ------------------------------------------------------------------
91 ------------------------------------------------------------------*/
95 u32 fourcc; /* v4l2 format id */
100 static const struct vivi_fmt formats[] = {
102 .name = "4:2:2, packed, YUYV",
103 .fourcc = V4L2_PIX_FMT_YUYV,
108 .name = "4:2:2, packed, UYVY",
109 .fourcc = V4L2_PIX_FMT_UYVY,
114 .name = "4:2:2, packed, YVYU",
115 .fourcc = V4L2_PIX_FMT_YVYU,
120 .name = "4:2:2, packed, VYUY",
121 .fourcc = V4L2_PIX_FMT_VYUY,
126 .name = "RGB565 (LE)",
127 .fourcc = V4L2_PIX_FMT_RGB565, /* gggbbbbb rrrrrggg */
131 .name = "RGB565 (BE)",
132 .fourcc = V4L2_PIX_FMT_RGB565X, /* rrrrrggg gggbbbbb */
136 .name = "RGB555 (LE)",
137 .fourcc = V4L2_PIX_FMT_RGB555, /* gggbbbbb arrrrrgg */
141 .name = "RGB555 (BE)",
142 .fourcc = V4L2_PIX_FMT_RGB555X, /* arrrrrgg gggbbbbb */
146 .name = "RGB24 (LE)",
147 .fourcc = V4L2_PIX_FMT_RGB24, /* rgb */
151 .name = "RGB24 (BE)",
152 .fourcc = V4L2_PIX_FMT_BGR24, /* bgr */
156 .name = "RGB32 (LE)",
157 .fourcc = V4L2_PIX_FMT_RGB32, /* argb */
161 .name = "RGB32 (BE)",
162 .fourcc = V4L2_PIX_FMT_BGR32, /* bgra */
167 static const struct vivi_fmt *__get_format(u32 pixelformat)
169 const struct vivi_fmt *fmt;
172 for (k = 0; k < ARRAY_SIZE(formats); k++) {
174 if (fmt->fourcc == pixelformat)
178 if (k == ARRAY_SIZE(formats))
184 static const struct vivi_fmt *get_format(struct v4l2_format *f)
186 return __get_format(f->fmt.pix.pixelformat);
189 /* buffer for one video frame */
191 /* common v4l buffer stuff -- must be first */
192 struct vb2_buffer vb;
193 struct list_head list;
194 const struct vivi_fmt *fmt;
197 struct vivi_dmaqueue {
198 struct list_head active;
200 /* thread for generating video stream*/
201 struct task_struct *kthread;
202 wait_queue_head_t wq;
203 /* Counters to control fps rate */
208 static LIST_HEAD(vivi_devlist);
211 struct list_head vivi_devlist;
212 struct v4l2_device v4l2_dev;
213 struct v4l2_ctrl_handler ctrl_handler;
214 struct video_device vdev;
217 struct v4l2_ctrl *brightness;
218 struct v4l2_ctrl *contrast;
219 struct v4l2_ctrl *saturation;
220 struct v4l2_ctrl *hue;
222 /* autogain/gain cluster */
223 struct v4l2_ctrl *autogain;
224 struct v4l2_ctrl *gain;
226 struct v4l2_ctrl *volume;
227 struct v4l2_ctrl *alpha;
228 struct v4l2_ctrl *button;
229 struct v4l2_ctrl *boolean;
230 struct v4l2_ctrl *int32;
231 struct v4l2_ctrl *int64;
232 struct v4l2_ctrl *menu;
233 struct v4l2_ctrl *string;
234 struct v4l2_ctrl *bitmask;
235 struct v4l2_ctrl *int_menu;
240 struct vivi_dmaqueue vidq;
242 /* Several counters */
244 unsigned long jiffies;
245 unsigned button_pressed;
247 int mv_count; /* Controls bars movement */
253 const struct vivi_fmt *fmt;
254 struct v4l2_fract timeperframe;
255 unsigned int width, height;
256 struct vb2_queue vb_vidq;
257 unsigned int field_count;
260 u8 line[MAX_WIDTH * 8] __attribute__((__aligned__(4)));
261 unsigned int pixelsize;
266 /* ------------------------------------------------------------------
267 DMA and thread functions
268 ------------------------------------------------------------------*/
270 /* Bars and Colors should match positions */
285 #define COLOR_WHITE {204, 204, 204}
286 #define COLOR_AMBER {208, 208, 0}
287 #define COLOR_CYAN { 0, 206, 206}
288 #define COLOR_GREEN { 0, 239, 0}
289 #define COLOR_MAGENTA {239, 0, 239}
290 #define COLOR_RED {205, 0, 0}
291 #define COLOR_BLUE { 0, 0, 255}
292 #define COLOR_BLACK { 0, 0, 0}
298 /* Maximum number of bars are 10 - otherwise, the input print code
299 should be modified */
300 static const struct bar_std bars[] = {
301 { /* Standard ITU-R color bar sequence */
302 { COLOR_WHITE, COLOR_AMBER, COLOR_CYAN, COLOR_GREEN,
303 COLOR_MAGENTA, COLOR_RED, COLOR_BLUE, COLOR_BLACK, COLOR_BLACK }
305 { COLOR_WHITE, COLOR_AMBER, COLOR_BLACK, COLOR_WHITE,
306 COLOR_AMBER, COLOR_BLACK, COLOR_WHITE, COLOR_AMBER, COLOR_BLACK }
308 { COLOR_WHITE, COLOR_CYAN, COLOR_BLACK, COLOR_WHITE,
309 COLOR_CYAN, COLOR_BLACK, COLOR_WHITE, COLOR_CYAN, COLOR_BLACK }
311 { COLOR_WHITE, COLOR_GREEN, COLOR_BLACK, COLOR_WHITE,
312 COLOR_GREEN, COLOR_BLACK, COLOR_WHITE, COLOR_GREEN, COLOR_BLACK }
316 #define NUM_INPUTS ARRAY_SIZE(bars)
318 #define TO_Y(r, g, b) \
319 (((16829 * r + 33039 * g + 6416 * b + 32768) >> 16) + 16)
320 /* RGB to V(Cr) Color transform */
321 #define TO_V(r, g, b) \
322 (((28784 * r - 24103 * g - 4681 * b + 32768) >> 16) + 128)
323 /* RGB to U(Cb) Color transform */
324 #define TO_U(r, g, b) \
325 (((-9714 * r - 19070 * g + 28784 * b + 32768) >> 16) + 128)
327 /* precalculate color bar values to speed up rendering */
328 static void precalculate_bars(struct vivi_dev *dev)
333 for (k = 0; k < 9; k++) {
334 r = bars[dev->input].bar[k][0];
335 g = bars[dev->input].bar[k][1];
336 b = bars[dev->input].bar[k][2];
337 is_yuv = dev->fmt->is_yuv;
339 switch (dev->fmt->fourcc) {
340 case V4L2_PIX_FMT_RGB565:
341 case V4L2_PIX_FMT_RGB565X:
346 case V4L2_PIX_FMT_RGB555:
347 case V4L2_PIX_FMT_RGB555X:
352 case V4L2_PIX_FMT_YUYV:
353 case V4L2_PIX_FMT_UYVY:
354 case V4L2_PIX_FMT_YVYU:
355 case V4L2_PIX_FMT_VYUY:
356 case V4L2_PIX_FMT_RGB24:
357 case V4L2_PIX_FMT_BGR24:
358 case V4L2_PIX_FMT_RGB32:
359 case V4L2_PIX_FMT_BGR32:
364 dev->bars[k][0] = TO_Y(r, g, b); /* Luma */
365 dev->bars[k][1] = TO_U(r, g, b); /* Cb */
366 dev->bars[k][2] = TO_V(r, g, b); /* Cr */
375 /* 'odd' is true for pixels 1, 3, 5, etc. and false for pixels 0, 2, 4, etc. */
376 static void gen_twopix(struct vivi_dev *dev, u8 *buf, int colorpos, bool odd)
379 u8 alpha = dev->alpha_component;
383 r_y = dev->bars[colorpos][0]; /* R or precalculated Y */
384 g_u = dev->bars[colorpos][1]; /* G or precalculated U */
385 b_v = dev->bars[colorpos][2]; /* B or precalculated V */
387 for (color = 0; color < dev->pixelsize; color++) {
390 switch (dev->fmt->fourcc) {
391 case V4L2_PIX_FMT_YUYV:
397 *p = odd ? b_v : g_u;
401 case V4L2_PIX_FMT_UYVY:
404 *p = odd ? b_v : g_u;
411 case V4L2_PIX_FMT_YVYU:
417 *p = odd ? g_u : b_v;
421 case V4L2_PIX_FMT_VYUY:
424 *p = odd ? g_u : b_v;
431 case V4L2_PIX_FMT_RGB565:
434 *p = (g_u << 5) | b_v;
437 *p = (r_y << 3) | (g_u >> 3);
441 case V4L2_PIX_FMT_RGB565X:
444 *p = (r_y << 3) | (g_u >> 3);
447 *p = (g_u << 5) | b_v;
451 case V4L2_PIX_FMT_RGB555:
454 *p = (g_u << 5) | b_v;
457 *p = (alpha & 0x80) | (r_y << 2) | (g_u >> 3);
461 case V4L2_PIX_FMT_RGB555X:
464 *p = (alpha & 0x80) | (r_y << 2) | (g_u >> 3);
467 *p = (g_u << 5) | b_v;
471 case V4L2_PIX_FMT_RGB24:
484 case V4L2_PIX_FMT_BGR24:
497 case V4L2_PIX_FMT_RGB32:
513 case V4L2_PIX_FMT_BGR32:
533 static void precalculate_line(struct vivi_dev *dev)
535 unsigned pixsize = dev->pixelsize;
536 unsigned pixsize2 = 2*pixsize;
540 for (colorpos = 0; colorpos < 16; ++colorpos) {
542 int wstart = colorpos * dev->width / 8;
543 int wend = (colorpos+1) * dev->width / 8;
546 gen_twopix(dev, &pix[0], colorpos % 8, 0);
547 gen_twopix(dev, &pix[pixsize], colorpos % 8, 1);
549 for (w = wstart/2*2, pos = dev->line + w*pixsize; w < wend; w += 2, pos += pixsize2)
550 memcpy(pos, pix, pixsize2);
554 /* need this to do rgb24 rendering */
555 typedef struct { u16 __; u8 _; } __attribute__((packed)) x24;
557 static void gen_text(struct vivi_dev *dev, char *basep,
558 int y, int x, char *text)
561 unsigned int width = dev->width;
563 /* Checks if it is possible to show string */
564 if (y + 16 >= dev->height || x + strlen(text) * 8 >= width)
567 /* Print stream time */
568 #define PRINTSTR(PIXTYPE) do { \
571 memcpy(&fg, &dev->textfg, sizeof(PIXTYPE)); \
572 memcpy(&bg, &dev->textbg, sizeof(PIXTYPE)); \
574 for (line = 0; line < 16; line++) { \
575 PIXTYPE *pos = (PIXTYPE *)( basep + ((y + line) * width + x) * sizeof(PIXTYPE) ); \
578 for (s = text; *s; s++) { \
579 u8 chr = font8x16[*s * 16 + line]; \
581 pos[0] = (chr & (0x01 << 7) ? fg : bg); \
582 pos[1] = (chr & (0x01 << 6) ? fg : bg); \
583 pos[2] = (chr & (0x01 << 5) ? fg : bg); \
584 pos[3] = (chr & (0x01 << 4) ? fg : bg); \
585 pos[4] = (chr & (0x01 << 3) ? fg : bg); \
586 pos[5] = (chr & (0x01 << 2) ? fg : bg); \
587 pos[6] = (chr & (0x01 << 1) ? fg : bg); \
588 pos[7] = (chr & (0x01 << 0) ? fg : bg); \
595 switch (dev->pixelsize) {
597 PRINTSTR(u16); break;
599 PRINTSTR(u32); break;
601 PRINTSTR(x24); break;
605 static void vivi_fillbuff(struct vivi_dev *dev, struct vivi_buffer *buf)
607 int stride = dev->width * dev->pixelsize;
608 int hmax = dev->height;
609 void *vbuf = vb2_plane_vaddr(&buf->vb, 0);
619 linestart = dev->line + (dev->mv_count % dev->width) * dev->pixelsize;
621 for (h = 0; h < hmax; h++)
622 memcpy(vbuf + h * stride, linestart, stride);
624 /* Updates stream time */
626 gen_twopix(dev, (u8 *)&dev->textbg, TEXT_BLACK, /*odd=*/ 0);
627 gen_twopix(dev, (u8 *)&dev->textfg, WHITE, /*odd=*/ 0);
629 dev->ms += jiffies_to_msecs(jiffies - dev->jiffies);
630 dev->jiffies = jiffies;
632 snprintf(str, sizeof(str), " %02d:%02d:%02d:%03d ",
633 (ms / (60 * 60 * 1000)) % 24,
634 (ms / (60 * 1000)) % 60,
637 gen_text(dev, vbuf, line++ * 16, 16, str);
638 snprintf(str, sizeof(str), " %dx%d, input %d ",
639 dev->width, dev->height, dev->input);
640 gen_text(dev, vbuf, line++ * 16, 16, str);
642 gain = v4l2_ctrl_g_ctrl(dev->gain);
643 mutex_lock(dev->ctrl_handler.lock);
644 snprintf(str, sizeof(str), " brightness %3d, contrast %3d, saturation %3d, hue %d ",
645 dev->brightness->cur.val,
646 dev->contrast->cur.val,
647 dev->saturation->cur.val,
649 gen_text(dev, vbuf, line++ * 16, 16, str);
650 snprintf(str, sizeof(str), " autogain %d, gain %3d, volume %3d, alpha 0x%02x ",
651 dev->autogain->cur.val, gain, dev->volume->cur.val,
652 dev->alpha->cur.val);
653 gen_text(dev, vbuf, line++ * 16, 16, str);
654 snprintf(str, sizeof(str), " int32 %d, int64 %lld, bitmask %08x ",
656 dev->int64->cur.val64,
657 dev->bitmask->cur.val);
658 gen_text(dev, vbuf, line++ * 16, 16, str);
659 snprintf(str, sizeof(str), " boolean %d, menu %s, string \"%s\" ",
660 dev->boolean->cur.val,
661 dev->menu->qmenu[dev->menu->cur.val],
662 dev->string->cur.string);
663 gen_text(dev, vbuf, line++ * 16, 16, str);
664 snprintf(str, sizeof(str), " integer_menu %lld, value %d ",
665 dev->int_menu->qmenu_int[dev->int_menu->cur.val],
666 dev->int_menu->cur.val);
667 gen_text(dev, vbuf, line++ * 16, 16, str);
668 mutex_unlock(dev->ctrl_handler.lock);
669 if (dev->button_pressed) {
670 dev->button_pressed--;
671 snprintf(str, sizeof(str), " button pressed!");
672 gen_text(dev, vbuf, line++ * 16, 16, str);
677 buf->vb.v4l2_buf.field = V4L2_FIELD_INTERLACED;
679 buf->vb.v4l2_buf.sequence = dev->field_count >> 1;
680 v4l2_get_timestamp(&buf->vb.v4l2_buf.timestamp);
683 static void vivi_thread_tick(struct vivi_dev *dev)
685 struct vivi_dmaqueue *dma_q = &dev->vidq;
686 struct vivi_buffer *buf;
687 unsigned long flags = 0;
689 dprintk(dev, 1, "Thread tick\n");
691 spin_lock_irqsave(&dev->slock, flags);
692 if (list_empty(&dma_q->active)) {
693 dprintk(dev, 1, "No active queue to serve\n");
694 spin_unlock_irqrestore(&dev->slock, flags);
698 buf = list_entry(dma_q->active.next, struct vivi_buffer, list);
699 list_del(&buf->list);
700 spin_unlock_irqrestore(&dev->slock, flags);
702 v4l2_get_timestamp(&buf->vb.v4l2_buf.timestamp);
705 vivi_fillbuff(dev, buf);
706 dprintk(dev, 1, "filled buffer %p\n", buf);
708 vb2_buffer_done(&buf->vb, VB2_BUF_STATE_DONE);
709 dprintk(dev, 2, "[%p/%d] done\n", buf, buf->vb.v4l2_buf.index);
712 #define frames_to_ms(dev, frames) \
713 ((frames * dev->timeperframe.numerator * 1000) / dev->timeperframe.denominator)
715 static void vivi_sleep(struct vivi_dev *dev)
717 struct vivi_dmaqueue *dma_q = &dev->vidq;
719 DECLARE_WAITQUEUE(wait, current);
721 dprintk(dev, 1, "%s dma_q=0x%08lx\n", __func__,
722 (unsigned long)dma_q);
724 add_wait_queue(&dma_q->wq, &wait);
725 if (kthread_should_stop())
728 /* Calculate time to wake up */
729 timeout = msecs_to_jiffies(frames_to_ms(dev, 1));
731 vivi_thread_tick(dev);
733 schedule_timeout_interruptible(timeout);
736 remove_wait_queue(&dma_q->wq, &wait);
740 static int vivi_thread(void *data)
742 struct vivi_dev *dev = data;
744 dprintk(dev, 1, "thread started\n");
751 if (kthread_should_stop())
754 dprintk(dev, 1, "thread: exit\n");
758 static int vivi_start_generating(struct vivi_dev *dev)
760 struct vivi_dmaqueue *dma_q = &dev->vidq;
762 dprintk(dev, 1, "%s\n", __func__);
764 /* Resets frame counters */
767 dev->jiffies = jiffies;
770 dma_q->ini_jiffies = jiffies;
771 dma_q->kthread = kthread_run(vivi_thread, dev, "%s",
774 if (IS_ERR(dma_q->kthread)) {
775 v4l2_err(&dev->v4l2_dev, "kernel_thread() failed\n");
776 return PTR_ERR(dma_q->kthread);
779 wake_up_interruptible(&dma_q->wq);
781 dprintk(dev, 1, "returning from %s\n", __func__);
785 static void vivi_stop_generating(struct vivi_dev *dev)
787 struct vivi_dmaqueue *dma_q = &dev->vidq;
789 dprintk(dev, 1, "%s\n", __func__);
791 /* shutdown control thread */
792 if (dma_q->kthread) {
793 kthread_stop(dma_q->kthread);
794 dma_q->kthread = NULL;
798 * Typical driver might need to wait here until dma engine stops.
799 * In this case we can abort imiedetly, so it's just a noop.
802 /* Release all active buffers */
803 while (!list_empty(&dma_q->active)) {
804 struct vivi_buffer *buf;
805 buf = list_entry(dma_q->active.next, struct vivi_buffer, list);
806 list_del(&buf->list);
807 vb2_buffer_done(&buf->vb, VB2_BUF_STATE_ERROR);
808 dprintk(dev, 2, "[%p/%d] done\n", buf, buf->vb.v4l2_buf.index);
811 /* ------------------------------------------------------------------
813 ------------------------------------------------------------------*/
814 static int queue_setup(struct vb2_queue *vq, const struct v4l2_format *fmt,
815 unsigned int *nbuffers, unsigned int *nplanes,
816 unsigned int sizes[], void *alloc_ctxs[])
818 struct vivi_dev *dev = vb2_get_drv_priv(vq);
822 size = fmt->fmt.pix.sizeimage;
824 size = dev->width * dev->height * dev->pixelsize;
832 while (size * *nbuffers > vid_limit * 1024 * 1024)
840 * videobuf2-vmalloc allocator is context-less so no need to set
844 dprintk(dev, 1, "%s, count=%d, size=%ld\n", __func__,
850 static int buffer_prepare(struct vb2_buffer *vb)
852 struct vivi_dev *dev = vb2_get_drv_priv(vb->vb2_queue);
853 struct vivi_buffer *buf = container_of(vb, struct vivi_buffer, vb);
856 dprintk(dev, 1, "%s, field=%d\n", __func__, vb->v4l2_buf.field);
858 BUG_ON(NULL == dev->fmt);
861 * Theses properties only change when queue is idle, see s_fmt.
862 * The below checks should not be performed here, on each
863 * buffer_prepare (i.e. on each qbuf). Most of the code in this function
864 * should thus be moved to buffer_init and s_fmt.
866 if (dev->width < 48 || dev->width > MAX_WIDTH ||
867 dev->height < 32 || dev->height > MAX_HEIGHT)
870 size = dev->width * dev->height * dev->pixelsize;
871 if (vb2_plane_size(vb, 0) < size) {
872 dprintk(dev, 1, "%s data will not fit into plane (%lu < %lu)\n",
873 __func__, vb2_plane_size(vb, 0), size);
877 vb2_set_plane_payload(&buf->vb, 0, size);
881 precalculate_bars(dev);
882 precalculate_line(dev);
887 static void buffer_queue(struct vb2_buffer *vb)
889 struct vivi_dev *dev = vb2_get_drv_priv(vb->vb2_queue);
890 struct vivi_buffer *buf = container_of(vb, struct vivi_buffer, vb);
891 struct vivi_dmaqueue *vidq = &dev->vidq;
892 unsigned long flags = 0;
894 dprintk(dev, 1, "%s\n", __func__);
896 spin_lock_irqsave(&dev->slock, flags);
897 list_add_tail(&buf->list, &vidq->active);
898 spin_unlock_irqrestore(&dev->slock, flags);
901 static int start_streaming(struct vb2_queue *vq, unsigned int count)
903 struct vivi_dev *dev = vb2_get_drv_priv(vq);
904 dprintk(dev, 1, "%s\n", __func__);
905 return vivi_start_generating(dev);
908 /* abort streaming and wait for last buffer */
909 static int stop_streaming(struct vb2_queue *vq)
911 struct vivi_dev *dev = vb2_get_drv_priv(vq);
912 dprintk(dev, 1, "%s\n", __func__);
913 vivi_stop_generating(dev);
917 static void vivi_lock(struct vb2_queue *vq)
919 struct vivi_dev *dev = vb2_get_drv_priv(vq);
920 mutex_lock(&dev->mutex);
923 static void vivi_unlock(struct vb2_queue *vq)
925 struct vivi_dev *dev = vb2_get_drv_priv(vq);
926 mutex_unlock(&dev->mutex);
930 static const struct vb2_ops vivi_video_qops = {
931 .queue_setup = queue_setup,
932 .buf_prepare = buffer_prepare,
933 .buf_queue = buffer_queue,
934 .start_streaming = start_streaming,
935 .stop_streaming = stop_streaming,
936 .wait_prepare = vivi_unlock,
937 .wait_finish = vivi_lock,
940 /* ------------------------------------------------------------------
941 IOCTL vidioc handling
942 ------------------------------------------------------------------*/
943 static int vidioc_querycap(struct file *file, void *priv,
944 struct v4l2_capability *cap)
946 struct vivi_dev *dev = video_drvdata(file);
948 strcpy(cap->driver, "vivi");
949 strcpy(cap->card, "vivi");
950 snprintf(cap->bus_info, sizeof(cap->bus_info),
951 "platform:%s", dev->v4l2_dev.name);
952 cap->device_caps = V4L2_CAP_VIDEO_CAPTURE | V4L2_CAP_STREAMING |
954 cap->capabilities = cap->device_caps | V4L2_CAP_DEVICE_CAPS;
958 static int vidioc_enum_fmt_vid_cap(struct file *file, void *priv,
959 struct v4l2_fmtdesc *f)
961 const struct vivi_fmt *fmt;
963 if (f->index >= ARRAY_SIZE(formats))
966 fmt = &formats[f->index];
968 strlcpy(f->description, fmt->name, sizeof(f->description));
969 f->pixelformat = fmt->fourcc;
973 static int vidioc_g_fmt_vid_cap(struct file *file, void *priv,
974 struct v4l2_format *f)
976 struct vivi_dev *dev = video_drvdata(file);
978 f->fmt.pix.width = dev->width;
979 f->fmt.pix.height = dev->height;
980 f->fmt.pix.field = V4L2_FIELD_INTERLACED;
981 f->fmt.pix.pixelformat = dev->fmt->fourcc;
982 f->fmt.pix.bytesperline =
983 (f->fmt.pix.width * dev->fmt->depth) >> 3;
984 f->fmt.pix.sizeimage =
985 f->fmt.pix.height * f->fmt.pix.bytesperline;
986 if (dev->fmt->is_yuv)
987 f->fmt.pix.colorspace = V4L2_COLORSPACE_SMPTE170M;
989 f->fmt.pix.colorspace = V4L2_COLORSPACE_SRGB;
993 static int vidioc_try_fmt_vid_cap(struct file *file, void *priv,
994 struct v4l2_format *f)
996 struct vivi_dev *dev = video_drvdata(file);
997 const struct vivi_fmt *fmt;
1001 dprintk(dev, 1, "Fourcc format (0x%08x) unknown.\n",
1002 f->fmt.pix.pixelformat);
1003 f->fmt.pix.pixelformat = V4L2_PIX_FMT_YUYV;
1004 fmt = get_format(f);
1007 f->fmt.pix.field = V4L2_FIELD_INTERLACED;
1008 v4l_bound_align_image(&f->fmt.pix.width, 48, MAX_WIDTH, 2,
1009 &f->fmt.pix.height, 32, MAX_HEIGHT, 0, 0);
1010 f->fmt.pix.bytesperline =
1011 (f->fmt.pix.width * fmt->depth) >> 3;
1012 f->fmt.pix.sizeimage =
1013 f->fmt.pix.height * f->fmt.pix.bytesperline;
1015 f->fmt.pix.colorspace = V4L2_COLORSPACE_SMPTE170M;
1017 f->fmt.pix.colorspace = V4L2_COLORSPACE_SRGB;
1018 f->fmt.pix.priv = 0;
1022 static int vidioc_s_fmt_vid_cap(struct file *file, void *priv,
1023 struct v4l2_format *f)
1025 struct vivi_dev *dev = video_drvdata(file);
1026 struct vb2_queue *q = &dev->vb_vidq;
1028 int ret = vidioc_try_fmt_vid_cap(file, priv, f);
1032 if (vb2_is_busy(q)) {
1033 dprintk(dev, 1, "%s device busy\n", __func__);
1037 dev->fmt = get_format(f);
1038 dev->pixelsize = dev->fmt->depth / 8;
1039 dev->width = f->fmt.pix.width;
1040 dev->height = f->fmt.pix.height;
1045 static int vidioc_enum_framesizes(struct file *file, void *fh,
1046 struct v4l2_frmsizeenum *fsize)
1048 static const struct v4l2_frmsize_stepwise sizes = {
1056 for (i = 0; i < ARRAY_SIZE(formats); i++)
1057 if (formats[i].fourcc == fsize->pixel_format)
1059 if (i == ARRAY_SIZE(formats))
1061 fsize->type = V4L2_FRMSIZE_TYPE_STEPWISE;
1062 fsize->stepwise = sizes;
1066 /* only one input in this sample driver */
1067 static int vidioc_enum_input(struct file *file, void *priv,
1068 struct v4l2_input *inp)
1070 if (inp->index >= NUM_INPUTS)
1073 inp->type = V4L2_INPUT_TYPE_CAMERA;
1074 sprintf(inp->name, "Camera %u", inp->index);
1078 static int vidioc_g_input(struct file *file, void *priv, unsigned int *i)
1080 struct vivi_dev *dev = video_drvdata(file);
1086 static int vidioc_s_input(struct file *file, void *priv, unsigned int i)
1088 struct vivi_dev *dev = video_drvdata(file);
1090 if (i >= NUM_INPUTS)
1093 if (i == dev->input)
1098 * Modify the brightness range depending on the input.
1099 * This makes it easy to use vivi to test if applications can
1100 * handle control range modifications and is also how this is
1101 * typically used in practice as different inputs may be hooked
1102 * up to different receivers with different control ranges.
1104 v4l2_ctrl_modify_range(dev->brightness,
1105 128 * i, 255 + 128 * i, 1, 127 + 128 * i);
1106 precalculate_bars(dev);
1107 precalculate_line(dev);
1111 /* timeperframe is arbitrary and continous */
1112 static int vidioc_enum_frameintervals(struct file *file, void *priv,
1113 struct v4l2_frmivalenum *fival)
1115 const struct vivi_fmt *fmt;
1120 fmt = __get_format(fival->pixel_format);
1124 /* regarding width & height - we support any */
1126 fival->type = V4L2_FRMIVAL_TYPE_CONTINUOUS;
1128 /* fill in stepwise (step=1.0 is requred by V4L2 spec) */
1129 fival->stepwise.min = tpf_min;
1130 fival->stepwise.max = tpf_max;
1131 fival->stepwise.step = (struct v4l2_fract) {1, 1};
1136 static int vidioc_g_parm(struct file *file, void *priv,
1137 struct v4l2_streamparm *parm)
1139 struct vivi_dev *dev = video_drvdata(file);
1141 if (parm->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
1144 parm->parm.capture.capability = V4L2_CAP_TIMEPERFRAME;
1145 parm->parm.capture.timeperframe = dev->timeperframe;
1146 parm->parm.capture.readbuffers = 1;
1150 #define FRACT_CMP(a, OP, b) \
1151 ((u64)(a).numerator * (b).denominator OP (u64)(b).numerator * (a).denominator)
1153 static int vidioc_s_parm(struct file *file, void *priv,
1154 struct v4l2_streamparm *parm)
1156 struct vivi_dev *dev = video_drvdata(file);
1157 struct v4l2_fract tpf;
1159 if (parm->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
1162 tpf = parm->parm.capture.timeperframe;
1164 /* tpf: {*, 0} resets timing; clip to [min, max]*/
1165 tpf = tpf.denominator ? tpf : tpf_default;
1166 tpf = FRACT_CMP(tpf, <, tpf_min) ? tpf_min : tpf;
1167 tpf = FRACT_CMP(tpf, >, tpf_max) ? tpf_max : tpf;
1169 dev->timeperframe = tpf;
1170 parm->parm.capture.timeperframe = tpf;
1171 parm->parm.capture.readbuffers = 1;
1175 /* --- controls ---------------------------------------------- */
1177 static int vivi_g_volatile_ctrl(struct v4l2_ctrl *ctrl)
1179 struct vivi_dev *dev = container_of(ctrl->handler, struct vivi_dev, ctrl_handler);
1181 if (ctrl == dev->autogain)
1182 dev->gain->val = jiffies & 0xff;
1186 static int vivi_s_ctrl(struct v4l2_ctrl *ctrl)
1188 struct vivi_dev *dev = container_of(ctrl->handler, struct vivi_dev, ctrl_handler);
1191 case V4L2_CID_ALPHA_COMPONENT:
1192 dev->alpha_component = ctrl->val;
1195 if (ctrl == dev->button)
1196 dev->button_pressed = 30;
1202 /* ------------------------------------------------------------------
1203 File operations for the device
1204 ------------------------------------------------------------------*/
1206 static const struct v4l2_ctrl_ops vivi_ctrl_ops = {
1207 .g_volatile_ctrl = vivi_g_volatile_ctrl,
1208 .s_ctrl = vivi_s_ctrl,
1211 #define VIVI_CID_CUSTOM_BASE (V4L2_CID_USER_BASE | 0xf000)
1213 static const struct v4l2_ctrl_config vivi_ctrl_button = {
1214 .ops = &vivi_ctrl_ops,
1215 .id = VIVI_CID_CUSTOM_BASE + 0,
1217 .type = V4L2_CTRL_TYPE_BUTTON,
1220 static const struct v4l2_ctrl_config vivi_ctrl_boolean = {
1221 .ops = &vivi_ctrl_ops,
1222 .id = VIVI_CID_CUSTOM_BASE + 1,
1224 .type = V4L2_CTRL_TYPE_BOOLEAN,
1231 static const struct v4l2_ctrl_config vivi_ctrl_int32 = {
1232 .ops = &vivi_ctrl_ops,
1233 .id = VIVI_CID_CUSTOM_BASE + 2,
1234 .name = "Integer 32 Bits",
1235 .type = V4L2_CTRL_TYPE_INTEGER,
1241 static const struct v4l2_ctrl_config vivi_ctrl_int64 = {
1242 .ops = &vivi_ctrl_ops,
1243 .id = VIVI_CID_CUSTOM_BASE + 3,
1244 .name = "Integer 64 Bits",
1245 .type = V4L2_CTRL_TYPE_INTEGER64,
1248 static const char * const vivi_ctrl_menu_strings[] = {
1249 "Menu Item 0 (Skipped)",
1251 "Menu Item 2 (Skipped)",
1254 "Menu Item 5 (Skipped)",
1258 static const struct v4l2_ctrl_config vivi_ctrl_menu = {
1259 .ops = &vivi_ctrl_ops,
1260 .id = VIVI_CID_CUSTOM_BASE + 4,
1262 .type = V4L2_CTRL_TYPE_MENU,
1266 .menu_skip_mask = 0x04,
1267 .qmenu = vivi_ctrl_menu_strings,
1270 static const struct v4l2_ctrl_config vivi_ctrl_string = {
1271 .ops = &vivi_ctrl_ops,
1272 .id = VIVI_CID_CUSTOM_BASE + 5,
1274 .type = V4L2_CTRL_TYPE_STRING,
1280 static const struct v4l2_ctrl_config vivi_ctrl_bitmask = {
1281 .ops = &vivi_ctrl_ops,
1282 .id = VIVI_CID_CUSTOM_BASE + 6,
1284 .type = V4L2_CTRL_TYPE_BITMASK,
1291 static const s64 vivi_ctrl_int_menu_values[] = {
1292 1, 1, 2, 3, 5, 8, 13, 21, 42,
1295 static const struct v4l2_ctrl_config vivi_ctrl_int_menu = {
1296 .ops = &vivi_ctrl_ops,
1297 .id = VIVI_CID_CUSTOM_BASE + 7,
1298 .name = "Integer menu",
1299 .type = V4L2_CTRL_TYPE_INTEGER_MENU,
1303 .menu_skip_mask = 0x02,
1304 .qmenu_int = vivi_ctrl_int_menu_values,
1307 static const struct v4l2_file_operations vivi_fops = {
1308 .owner = THIS_MODULE,
1309 .open = v4l2_fh_open,
1310 .release = vb2_fop_release,
1311 .read = vb2_fop_read,
1312 .poll = vb2_fop_poll,
1313 .unlocked_ioctl = video_ioctl2, /* V4L2 ioctl handler */
1314 .mmap = vb2_fop_mmap,
1317 static const struct v4l2_ioctl_ops vivi_ioctl_ops = {
1318 .vidioc_querycap = vidioc_querycap,
1319 .vidioc_enum_fmt_vid_cap = vidioc_enum_fmt_vid_cap,
1320 .vidioc_g_fmt_vid_cap = vidioc_g_fmt_vid_cap,
1321 .vidioc_try_fmt_vid_cap = vidioc_try_fmt_vid_cap,
1322 .vidioc_s_fmt_vid_cap = vidioc_s_fmt_vid_cap,
1323 .vidioc_enum_framesizes = vidioc_enum_framesizes,
1324 .vidioc_reqbufs = vb2_ioctl_reqbufs,
1325 .vidioc_create_bufs = vb2_ioctl_create_bufs,
1326 .vidioc_prepare_buf = vb2_ioctl_prepare_buf,
1327 .vidioc_querybuf = vb2_ioctl_querybuf,
1328 .vidioc_qbuf = vb2_ioctl_qbuf,
1329 .vidioc_dqbuf = vb2_ioctl_dqbuf,
1330 .vidioc_enum_input = vidioc_enum_input,
1331 .vidioc_g_input = vidioc_g_input,
1332 .vidioc_s_input = vidioc_s_input,
1333 .vidioc_enum_frameintervals = vidioc_enum_frameintervals,
1334 .vidioc_g_parm = vidioc_g_parm,
1335 .vidioc_s_parm = vidioc_s_parm,
1336 .vidioc_streamon = vb2_ioctl_streamon,
1337 .vidioc_streamoff = vb2_ioctl_streamoff,
1338 .vidioc_log_status = v4l2_ctrl_log_status,
1339 .vidioc_subscribe_event = v4l2_ctrl_subscribe_event,
1340 .vidioc_unsubscribe_event = v4l2_event_unsubscribe,
1343 static const struct video_device vivi_template = {
1346 .ioctl_ops = &vivi_ioctl_ops,
1347 .release = video_device_release_empty,
1350 /* -----------------------------------------------------------------
1351 Initialization and module stuff
1352 ------------------------------------------------------------------*/
1354 static int vivi_release(void)
1356 struct vivi_dev *dev;
1357 struct list_head *list;
1359 while (!list_empty(&vivi_devlist)) {
1360 list = vivi_devlist.next;
1362 dev = list_entry(list, struct vivi_dev, vivi_devlist);
1364 v4l2_info(&dev->v4l2_dev, "unregistering %s\n",
1365 video_device_node_name(&dev->vdev));
1366 video_unregister_device(&dev->vdev);
1367 v4l2_device_unregister(&dev->v4l2_dev);
1368 v4l2_ctrl_handler_free(&dev->ctrl_handler);
1375 static int __init vivi_create_instance(int inst)
1377 struct vivi_dev *dev;
1378 struct video_device *vfd;
1379 struct v4l2_ctrl_handler *hdl;
1380 struct vb2_queue *q;
1383 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
1387 snprintf(dev->v4l2_dev.name, sizeof(dev->v4l2_dev.name),
1388 "%s-%03d", VIVI_MODULE_NAME, inst);
1389 ret = v4l2_device_register(NULL, &dev->v4l2_dev);
1393 dev->fmt = &formats[0];
1394 dev->timeperframe = tpf_default;
1397 dev->pixelsize = dev->fmt->depth / 8;
1398 hdl = &dev->ctrl_handler;
1399 v4l2_ctrl_handler_init(hdl, 11);
1400 dev->volume = v4l2_ctrl_new_std(hdl, &vivi_ctrl_ops,
1401 V4L2_CID_AUDIO_VOLUME, 0, 255, 1, 200);
1402 dev->brightness = v4l2_ctrl_new_std(hdl, &vivi_ctrl_ops,
1403 V4L2_CID_BRIGHTNESS, 0, 255, 1, 127);
1404 dev->contrast = v4l2_ctrl_new_std(hdl, &vivi_ctrl_ops,
1405 V4L2_CID_CONTRAST, 0, 255, 1, 16);
1406 dev->saturation = v4l2_ctrl_new_std(hdl, &vivi_ctrl_ops,
1407 V4L2_CID_SATURATION, 0, 255, 1, 127);
1408 dev->hue = v4l2_ctrl_new_std(hdl, &vivi_ctrl_ops,
1409 V4L2_CID_HUE, -128, 127, 1, 0);
1410 dev->autogain = v4l2_ctrl_new_std(hdl, &vivi_ctrl_ops,
1411 V4L2_CID_AUTOGAIN, 0, 1, 1, 1);
1412 dev->gain = v4l2_ctrl_new_std(hdl, &vivi_ctrl_ops,
1413 V4L2_CID_GAIN, 0, 255, 1, 100);
1414 dev->alpha = v4l2_ctrl_new_std(hdl, &vivi_ctrl_ops,
1415 V4L2_CID_ALPHA_COMPONENT, 0, 255, 1, 0);
1416 dev->button = v4l2_ctrl_new_custom(hdl, &vivi_ctrl_button, NULL);
1417 dev->int32 = v4l2_ctrl_new_custom(hdl, &vivi_ctrl_int32, NULL);
1418 dev->int64 = v4l2_ctrl_new_custom(hdl, &vivi_ctrl_int64, NULL);
1419 dev->boolean = v4l2_ctrl_new_custom(hdl, &vivi_ctrl_boolean, NULL);
1420 dev->menu = v4l2_ctrl_new_custom(hdl, &vivi_ctrl_menu, NULL);
1421 dev->string = v4l2_ctrl_new_custom(hdl, &vivi_ctrl_string, NULL);
1422 dev->bitmask = v4l2_ctrl_new_custom(hdl, &vivi_ctrl_bitmask, NULL);
1423 dev->int_menu = v4l2_ctrl_new_custom(hdl, &vivi_ctrl_int_menu, NULL);
1428 v4l2_ctrl_auto_cluster(2, &dev->autogain, 0, true);
1429 dev->v4l2_dev.ctrl_handler = hdl;
1431 /* initialize locks */
1432 spin_lock_init(&dev->slock);
1434 /* initialize queue */
1436 q->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
1437 q->io_modes = VB2_MMAP | VB2_USERPTR | VB2_DMABUF | VB2_READ;
1439 q->buf_struct_size = sizeof(struct vivi_buffer);
1440 q->ops = &vivi_video_qops;
1441 q->mem_ops = &vb2_vmalloc_memops;
1442 q->timestamp_type = V4L2_BUF_FLAG_TIMESTAMP_MONOTONIC;
1444 ret = vb2_queue_init(q);
1448 mutex_init(&dev->mutex);
1450 /* init video dma queues */
1451 INIT_LIST_HEAD(&dev->vidq.active);
1452 init_waitqueue_head(&dev->vidq.wq);
1455 *vfd = vivi_template;
1457 vfd->v4l2_dev = &dev->v4l2_dev;
1459 set_bit(V4L2_FL_USE_FH_PRIO, &vfd->flags);
1462 * Provide a mutex to v4l2 core. It will be used to protect
1463 * all fops and v4l2 ioctls.
1465 vfd->lock = &dev->mutex;
1466 video_set_drvdata(vfd, dev);
1468 ret = video_register_device(vfd, VFL_TYPE_GRABBER, video_nr);
1472 /* Now that everything is fine, let's add it to device list */
1473 list_add_tail(&dev->vivi_devlist, &vivi_devlist);
1475 v4l2_info(&dev->v4l2_dev, "V4L2 device registered as %s\n",
1476 video_device_node_name(vfd));
1480 v4l2_ctrl_handler_free(hdl);
1481 v4l2_device_unregister(&dev->v4l2_dev);
1487 /* This routine allocates from 1 to n_devs virtual drivers.
1489 The real maximum number of virtual drivers will depend on how many drivers
1490 will succeed. This is limited to the maximum number of devices that
1491 videodev supports, which is equal to VIDEO_NUM_DEVICES.
1493 static int __init vivi_init(void)
1495 const struct font_desc *font = find_font("VGA8x16");
1499 printk(KERN_ERR "vivi: could not find font\n");
1502 font8x16 = font->data;
1507 for (i = 0; i < n_devs; i++) {
1508 ret = vivi_create_instance(i);
1510 /* If some instantiations succeeded, keep driver */
1518 printk(KERN_ERR "vivi: error %d while loading driver\n", ret);
1522 printk(KERN_INFO "Video Technology Magazine Virtual Video "
1523 "Capture Board ver %s successfully loaded.\n",
1526 /* n_devs will reflect the actual number of allocated devices */
1532 static void __exit vivi_exit(void)
1537 module_init(vivi_init);
1538 module_exit(vivi_exit);