blob: a9747a10c546fd9b64a76d795343ceaf2ce1a1e4 [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 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the BSD Licence, GNU General Public License
12 * as published by the Free Software Foundation; either version 2 of the
13 * License, or (at your option) any later version
14 */
15#include <linux/module.h>
16#include <linux/delay.h>
17#include <linux/errno.h>
18#include <linux/fs.h>
19#include <linux/kernel.h>
20#include <linux/slab.h>
21#include <linux/mm.h>
22#include <linux/ioport.h>
23#include <linux/init.h>
24#include <linux/sched.h>
25#include <linux/pci.h>
26#include <linux/random.h>
27#include <linux/version.h>
Matthias Kaehlcke51b54022007-07-02 10:19:38 -030028#include <linux/mutex.h>
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -030029#include <linux/videodev2.h>
Andrew Morton10951362006-04-27 10:10:58 -030030#include <linux/dma-mapping.h>
Mauro Carvalho Chehabcd41e282006-04-09 15:43:41 -030031#ifdef CONFIG_VIDEO_V4L1_COMPAT
32/* Include V4L1 specific functions. Should be removed soon */
33#include <linux/videodev.h>
34#endif
Michael Krufkyf13df912006-03-23 22:01:44 -030035#include <linux/interrupt.h>
Mauro Carvalho Chehab5a037702007-08-02 23:31:54 -030036#include <media/videobuf-vmalloc.h>
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -030037#include <media/v4l2-common.h>
38#include <linux/kthread.h>
39#include <linux/highmem.h>
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080040#include <linux/freezer.h>
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -030041
42/* Wake up at about 30 fps */
43#define WAKE_NUMERATOR 30
44#define WAKE_DENOMINATOR 1001
45#define BUFFER_TIMEOUT msecs_to_jiffies(500) /* 0.5 seconds */
46
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -030047#include "font.h"
48
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -030049#define VIVI_MAJOR_VERSION 0
50#define VIVI_MINOR_VERSION 4
51#define VIVI_RELEASE 0
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -030052#define VIVI_VERSION \
53 KERNEL_VERSION(VIVI_MAJOR_VERSION, VIVI_MINOR_VERSION, VIVI_RELEASE)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -030054
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -030055/* Declare static vars that will be used as parameters */
56static unsigned int vid_limit = 16; /* Video memory limit, in Mb */
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -030057static int video_nr = -1; /* /dev/videoN, -1 for autodetect */
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -030058static int n_devs = 1; /* Number of virtual devices */
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -030059
60/* supported controls */
61static struct v4l2_queryctrl vivi_qctrl[] = {
62 {
63 .id = V4L2_CID_AUDIO_VOLUME,
64 .name = "Volume",
65 .minimum = 0,
66 .maximum = 65535,
67 .step = 65535/100,
68 .default_value = 65535,
69 .flags = 0,
70 .type = V4L2_CTRL_TYPE_INTEGER,
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -030071 }, {
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -030072 .id = V4L2_CID_BRIGHTNESS,
73 .type = V4L2_CTRL_TYPE_INTEGER,
74 .name = "Brightness",
75 .minimum = 0,
76 .maximum = 255,
77 .step = 1,
78 .default_value = 127,
79 .flags = 0,
80 }, {
81 .id = V4L2_CID_CONTRAST,
82 .type = V4L2_CTRL_TYPE_INTEGER,
83 .name = "Contrast",
84 .minimum = 0,
85 .maximum = 255,
86 .step = 0x1,
87 .default_value = 0x10,
88 .flags = 0,
89 }, {
90 .id = V4L2_CID_SATURATION,
91 .type = V4L2_CTRL_TYPE_INTEGER,
92 .name = "Saturation",
93 .minimum = 0,
94 .maximum = 255,
95 .step = 0x1,
96 .default_value = 127,
97 .flags = 0,
98 }, {
99 .id = V4L2_CID_HUE,
100 .type = V4L2_CTRL_TYPE_INTEGER,
101 .name = "Hue",
102 .minimum = -128,
103 .maximum = 127,
104 .step = 0x1,
105 .default_value = 0,
106 .flags = 0,
107 }
108};
109
110static int qctl_regs[ARRAY_SIZE(vivi_qctrl)];
111
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300112#define dprintk(dev, level, fmt, arg...) \
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300113 do { \
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300114 if (dev->vfd->debug >= (level)) \
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300115 printk(KERN_DEBUG "vivi: " fmt , ## arg); \
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300116 } while (0)
117
118/* ------------------------------------------------------------------
119 Basic structures
120 ------------------------------------------------------------------*/
121
122struct vivi_fmt {
123 char *name;
124 u32 fourcc; /* v4l2 format id */
125 int depth;
126};
127
128static struct vivi_fmt format = {
129 .name = "4:2:2, packed, YUYV",
130 .fourcc = V4L2_PIX_FMT_YUYV,
131 .depth = 16,
132};
133
134struct sg_to_addr {
135 int pos;
136 struct scatterlist *sg;
137};
138
139/* buffer for one video frame */
140struct vivi_buffer {
141 /* common v4l buffer stuff -- must be first */
142 struct videobuf_buffer vb;
143
144 struct vivi_fmt *fmt;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300145};
146
147struct vivi_dmaqueue {
148 struct list_head active;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300149
150 /* thread for generating video stream*/
151 struct task_struct *kthread;
152 wait_queue_head_t wq;
153 /* Counters to control fps rate */
154 int frame;
155 int ini_jiffies;
156};
157
158static LIST_HEAD(vivi_devlist);
159
160struct vivi_dev {
161 struct list_head vivi_devlist;
162
Mauro Carvalho Chehab55862ac2007-12-13 16:13:37 -0300163 spinlock_t slock;
Brandon Philipsaa9dbac2008-04-02 18:10:59 -0300164 struct mutex mutex;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300165
166 int users;
167
168 /* various device info */
Mauro Carvalho Chehabf905c442007-12-10 04:07:03 -0300169 struct video_device *vfd;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300170
171 struct vivi_dmaqueue vidq;
172
173 /* Several counters */
Mauro Carvalho Chehabdfd8c042008-01-13 19:36:11 -0300174 int h, m, s, ms;
175 unsigned long jiffies;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300176 char timestr[13];
Mauro Carvalho Chehab025341d2007-12-10 04:43:38 -0300177
178 int mv_count; /* Controls bars movement */
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300179};
180
181struct vivi_fh {
182 struct vivi_dev *dev;
183
184 /* video capture */
185 struct vivi_fmt *fmt;
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300186 unsigned int width, height;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300187 struct videobuf_queue vb_vidq;
188
189 enum v4l2_buf_type type;
190};
191
192/* ------------------------------------------------------------------
193 DMA and thread functions
194 ------------------------------------------------------------------*/
195
196/* Bars and Colors should match positions */
197
198enum colors {
199 WHITE,
200 AMBAR,
201 CYAN,
202 GREEN,
203 MAGENTA,
204 RED,
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300205 BLUE,
206 BLACK,
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300207};
208
209static u8 bars[8][3] = {
210 /* R G B */
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300211 {204, 204, 204}, /* white */
212 {208, 208, 0}, /* ambar */
213 { 0, 206, 206}, /* cyan */
214 { 0, 239, 0}, /* green */
215 {239, 0, 239}, /* magenta */
216 {205, 0, 0}, /* red */
217 { 0, 0, 255}, /* blue */
218 { 0, 0, 0}, /* black */
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300219};
220
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300221#define TO_Y(r, g, b) \
222 (((16829 * r + 33039 * g + 6416 * b + 32768) >> 16) + 16)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300223/* RGB to V(Cr) Color transform */
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300224#define TO_V(r, g, b) \
225 (((28784 * r - 24103 * g - 4681 * b + 32768) >> 16) + 128)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300226/* RGB to U(Cb) Color transform */
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300227#define TO_U(r, g, b) \
228 (((-9714 * r - 19070 * g + 28784 * b + 32768) >> 16) + 128)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300229
230#define TSTAMP_MIN_Y 24
231#define TSTAMP_MAX_Y TSTAMP_MIN_Y+15
232#define TSTAMP_MIN_X 64
233
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300234static void gen_line(char *basep, int inipos, int wmax,
235 int hmax, int line, int count, char *timestr)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300236{
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300237 int w, i, j, y;
238 int pos = inipos;
239 char *p, *s;
240 u8 chr, r, g, b, color;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300241
242 /* We will just duplicate the second pixel at the packet */
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300243 wmax /= 2;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300244
245 /* Generate a standard color bar pattern */
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300246 for (w = 0; w < wmax; w++) {
247 int colorpos = ((w + count) * 8/(wmax + 1)) % 8;
248 r = bars[colorpos][0];
249 g = bars[colorpos][1];
250 b = bars[colorpos][2];
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300251
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300252 for (color = 0; color < 4; color++) {
253 p = basep + pos;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300254
255 switch (color) {
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300256 case 0:
257 case 2:
258 *p = TO_Y(r, g, b); /* Luma */
259 break;
260 case 1:
261 *p = TO_U(r, g, b); /* Cb */
262 break;
263 case 3:
264 *p = TO_V(r, g, b); /* Cr */
265 break;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300266 }
267 pos++;
268 }
269 }
270
271 /* Checks if it is possible to show timestamp */
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300272 if (TSTAMP_MAX_Y >= hmax)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300273 goto end;
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300274 if (TSTAMP_MIN_X + strlen(timestr) >= wmax)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300275 goto end;
276
277 /* Print stream time */
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300278 if (line >= TSTAMP_MIN_Y && line <= TSTAMP_MAX_Y) {
279 j = TSTAMP_MIN_X;
280 for (s = timestr; *s; s++) {
281 chr = rom8x16_bits[(*s-0x30)*16+line-TSTAMP_MIN_Y];
282 for (i = 0; i < 7; i++) {
283 if (chr & 1 << (7 - i)) {
284 /* Font color*/
285 r = 0;
286 g = 198;
287 b = 0;
288 } else {
289 /* Background color */
290 r = bars[BLACK][0];
291 g = bars[BLACK][1];
292 b = bars[BLACK][2];
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300293 }
294
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300295 pos = inipos + j * 2;
296 for (color = 0; color < 4; color++) {
297 p = basep + pos;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300298
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300299 y = TO_Y(r, g, b);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300300
301 switch (color) {
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300302 case 0:
303 case 2:
304 *p = TO_Y(r, g, b); /* Luma */
305 break;
306 case 1:
307 *p = TO_U(r, g, b); /* Cb */
308 break;
309 case 3:
310 *p = TO_V(r, g, b); /* Cr */
311 break;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300312 }
313 pos++;
314 }
315 j++;
316 }
317 }
318 }
319
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300320end:
Mauro Carvalho Chehabb50e7fe2007-01-25 05:00:01 -0300321 return;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300322}
Brandon Philips78718e52008-04-02 18:10:59 -0300323
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300324static void vivi_fillbuff(struct vivi_dev *dev, struct vivi_buffer *buf)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300325{
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300326 int h , pos = 0;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300327 int hmax = buf->vb.height;
328 int wmax = buf->vb.width;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300329 struct timeval ts;
Marcin Slusarz5c554e62008-06-22 09:11:40 -0300330 char *tmpbuf;
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300331 void *vbuf = videobuf_to_vmalloc(&buf->vb);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300332
Marcin Slusarz5c554e62008-06-22 09:11:40 -0300333 if (!vbuf)
Mauro Carvalho Chehab5a037702007-08-02 23:31:54 -0300334 return;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300335
Marcin Slusarz5c554e62008-06-22 09:11:40 -0300336 tmpbuf = kmalloc(wmax * 2, GFP_ATOMIC);
337 if (!tmpbuf)
Brandon Philips78718e52008-04-02 18:10:59 -0300338 return;
339
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300340 for (h = 0; h < hmax; h++) {
Mauro Carvalho Chehab025341d2007-12-10 04:43:38 -0300341 gen_line(tmpbuf, 0, wmax, hmax, h, dev->mv_count,
Mauro Carvalho Chehab3bef5e42007-09-22 02:01:33 -0300342 dev->timestr);
Brandon Philips78718e52008-04-02 18:10:59 -0300343 memcpy(vbuf + pos, tmpbuf, wmax * 2);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300344 pos += wmax*2;
345 }
346
Mauro Carvalho Chehab025341d2007-12-10 04:43:38 -0300347 dev->mv_count++;
Mauro Carvalho Chehab3bef5e42007-09-22 02:01:33 -0300348
Mauro Carvalho Chehab5a037702007-08-02 23:31:54 -0300349 kfree(tmpbuf);
350
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300351 /* Updates stream time */
352
Mauro Carvalho Chehabdfd8c042008-01-13 19:36:11 -0300353 dev->ms += jiffies_to_msecs(jiffies-dev->jiffies);
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300354 dev->jiffies = jiffies;
Mauro Carvalho Chehabdfd8c042008-01-13 19:36:11 -0300355 if (dev->ms >= 1000) {
356 dev->ms -= 1000;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300357 dev->s++;
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300358 if (dev->s >= 60) {
359 dev->s -= 60;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300360 dev->m++;
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300361 if (dev->m > 60) {
362 dev->m -= 60;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300363 dev->h++;
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300364 if (dev->h > 24)
365 dev->h -= 24;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300366 }
367 }
368 }
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300369 sprintf(dev->timestr, "%02d:%02d:%02d:%03d",
Mauro Carvalho Chehabdfd8c042008-01-13 19:36:11 -0300370 dev->h, dev->m, dev->s, dev->ms);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300371
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300372 dprintk(dev, 2, "vivifill at %s: Buffer 0x%08lx size= %d\n",
373 dev->timestr, (unsigned long)tmpbuf, pos);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300374
375 /* Advice that buffer was filled */
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300376 buf->vb.field_count++;
377 do_gettimeofday(&ts);
378 buf->vb.ts = ts;
Brandon Philips78718e52008-04-02 18:10:59 -0300379 buf->vb.state = VIDEOBUF_DONE;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300380}
381
Brandon Philips78718e52008-04-02 18:10:59 -0300382static void vivi_thread_tick(struct vivi_fh *fh)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300383{
Brandon Philips78718e52008-04-02 18:10:59 -0300384 struct vivi_buffer *buf;
385 struct vivi_dev *dev = fh->dev;
386 struct vivi_dmaqueue *dma_q = &dev->vidq;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300387
Brandon Philips78718e52008-04-02 18:10:59 -0300388 unsigned long flags = 0;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300389
Brandon Philips78718e52008-04-02 18:10:59 -0300390 dprintk(dev, 1, "Thread tick\n");
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300391
Brandon Philips78718e52008-04-02 18:10:59 -0300392 spin_lock_irqsave(&dev->slock, flags);
393 if (list_empty(&dma_q->active)) {
394 dprintk(dev, 1, "No active queue to serve\n");
395 goto unlock;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300396 }
Brandon Philips78718e52008-04-02 18:10:59 -0300397
398 buf = list_entry(dma_q->active.next,
399 struct vivi_buffer, vb.queue);
400
401 /* Nobody is waiting on this buffer, return */
402 if (!waitqueue_active(&buf->vb.done))
403 goto unlock;
404
405 list_del(&buf->vb.queue);
406
407 do_gettimeofday(&buf->vb.ts);
408
409 /* Fill buffer */
410 vivi_fillbuff(dev, buf);
411 dprintk(dev, 1, "filled buffer %p\n", buf);
412
413 wake_up(&buf->vb.done);
414 dprintk(dev, 2, "[%p/%d] wakeup\n", buf, buf->vb. i);
415unlock:
416 spin_unlock_irqrestore(&dev->slock, flags);
417 return;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300418}
419
Mauro Carvalho Chehab6594ad82007-12-13 16:15:41 -0300420#define frames_to_ms(frames) \
421 ((frames * WAKE_NUMERATOR * 1000) / WAKE_DENOMINATOR)
422
Brandon Philips78718e52008-04-02 18:10:59 -0300423static void vivi_sleep(struct vivi_fh *fh)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300424{
Brandon Philips78718e52008-04-02 18:10:59 -0300425 struct vivi_dev *dev = fh->dev;
426 struct vivi_dmaqueue *dma_q = &dev->vidq;
427 int timeout;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300428 DECLARE_WAITQUEUE(wait, current);
429
Harvey Harrison7e28adb2008-04-08 23:20:00 -0300430 dprintk(dev, 1, "%s dma_q=0x%08lx\n", __func__,
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300431 (unsigned long)dma_q);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300432
433 add_wait_queue(&dma_q->wq, &wait);
Mauro Carvalho Chehab6594ad82007-12-13 16:15:41 -0300434 if (kthread_should_stop())
435 goto stop_task;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300436
Mauro Carvalho Chehab6594ad82007-12-13 16:15:41 -0300437 /* Calculate time to wake up */
Brandon Philips78718e52008-04-02 18:10:59 -0300438 timeout = msecs_to_jiffies(frames_to_ms(1));
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300439
Brandon Philips78718e52008-04-02 18:10:59 -0300440 vivi_thread_tick(fh);
Mauro Carvalho Chehab6594ad82007-12-13 16:15:41 -0300441
442 schedule_timeout_interruptible(timeout);
443
444stop_task:
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300445 remove_wait_queue(&dma_q->wq, &wait);
446 try_to_freeze();
447}
448
Adrian Bunk972c3512006-04-27 21:06:50 -0300449static int vivi_thread(void *data)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300450{
Brandon Philips78718e52008-04-02 18:10:59 -0300451 struct vivi_fh *fh = data;
452 struct vivi_dev *dev = fh->dev;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300453
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300454 dprintk(dev, 1, "thread started\n");
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300455
Rafael J. Wysocki83144182007-07-17 04:03:35 -0700456 set_freezable();
Mauro Carvalho Chehab0b600512007-01-14 08:33:24 -0300457
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300458 for (;;) {
Brandon Philips78718e52008-04-02 18:10:59 -0300459 vivi_sleep(fh);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300460
461 if (kthread_should_stop())
462 break;
463 }
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300464 dprintk(dev, 1, "thread: exit\n");
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300465 return 0;
466}
467
Brandon Philips78718e52008-04-02 18:10:59 -0300468static int vivi_start_thread(struct vivi_fh *fh)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300469{
Brandon Philips78718e52008-04-02 18:10:59 -0300470 struct vivi_dev *dev = fh->dev;
471 struct vivi_dmaqueue *dma_q = &dev->vidq;
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300472
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300473 dma_q->frame = 0;
474 dma_q->ini_jiffies = jiffies;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300475
Harvey Harrison7e28adb2008-04-08 23:20:00 -0300476 dprintk(dev, 1, "%s\n", __func__);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300477
Brandon Philips78718e52008-04-02 18:10:59 -0300478 dma_q->kthread = kthread_run(vivi_thread, fh, "vivi");
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300479
Akinobu Mita054afee2006-12-20 10:04:00 -0300480 if (IS_ERR(dma_q->kthread)) {
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300481 printk(KERN_ERR "vivi: kernel_thread() failed\n");
Akinobu Mita054afee2006-12-20 10:04:00 -0300482 return PTR_ERR(dma_q->kthread);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300483 }
Mauro Carvalho Chehab0b600512007-01-14 08:33:24 -0300484 /* Wakes thread */
485 wake_up_interruptible(&dma_q->wq);
486
Harvey Harrison7e28adb2008-04-08 23:20:00 -0300487 dprintk(dev, 1, "returning from %s\n", __func__);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300488 return 0;
489}
490
Adrian Bunk972c3512006-04-27 21:06:50 -0300491static void vivi_stop_thread(struct vivi_dmaqueue *dma_q)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300492{
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300493 struct vivi_dev *dev = container_of(dma_q, struct vivi_dev, vidq);
494
Harvey Harrison7e28adb2008-04-08 23:20:00 -0300495 dprintk(dev, 1, "%s\n", __func__);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300496 /* shutdown control thread */
497 if (dma_q->kthread) {
498 kthread_stop(dma_q->kthread);
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300499 dma_q->kthread = NULL;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300500 }
501}
502
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300503/* ------------------------------------------------------------------
504 Videobuf operations
505 ------------------------------------------------------------------*/
506static int
507buffer_setup(struct videobuf_queue *vq, unsigned int *count, unsigned int *size)
508{
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300509 struct vivi_fh *fh = vq->priv_data;
510 struct vivi_dev *dev = fh->dev;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300511
512 *size = fh->width*fh->height*2;
513
514 if (0 == *count)
515 *count = 32;
Mauro Carvalho Chehab6bb27902007-08-23 16:41:14 -0300516
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300517 while (*size * *count > vid_limit * 1024 * 1024)
518 (*count)--;
Mauro Carvalho Chehab6bb27902007-08-23 16:41:14 -0300519
Harvey Harrison7e28adb2008-04-08 23:20:00 -0300520 dprintk(dev, 1, "%s, count=%d, size=%d\n", __func__,
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300521 *count, *size);
Mauro Carvalho Chehab6bb27902007-08-23 16:41:14 -0300522
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300523 return 0;
524}
525
Adrian Bunk972c3512006-04-27 21:06:50 -0300526static void free_buffer(struct videobuf_queue *vq, struct vivi_buffer *buf)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300527{
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300528 struct vivi_fh *fh = vq->priv_data;
529 struct vivi_dev *dev = fh->dev;
530
Harvey Harrison7e28adb2008-04-08 23:20:00 -0300531 dprintk(dev, 1, "%s, state: %i\n", __func__, buf->vb.state);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300532
533 if (in_interrupt())
534 BUG();
535
Mauro Carvalho Chehab5a037702007-08-02 23:31:54 -0300536 videobuf_vmalloc_free(&buf->vb);
Mauro Carvalho Chehabfbde31d2008-04-13 14:57:44 -0300537 dprintk(dev, 1, "free_buffer: freed\n");
Brandon Philips0fc06862007-11-06 20:02:36 -0300538 buf->vb.state = VIDEOBUF_NEEDS_INIT;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300539}
540
541#define norm_maxw() 1024
542#define norm_maxh() 768
543static int
544buffer_prepare(struct videobuf_queue *vq, struct videobuf_buffer *vb,
545 enum v4l2_field field)
546{
547 struct vivi_fh *fh = vq->priv_data;
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300548 struct vivi_dev *dev = fh->dev;
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300549 struct vivi_buffer *buf = container_of(vb, struct vivi_buffer, vb);
Brandon Philips78718e52008-04-02 18:10:59 -0300550 int rc;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300551
Harvey Harrison7e28adb2008-04-08 23:20:00 -0300552 dprintk(dev, 1, "%s, field=%d\n", __func__, field);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300553
554 BUG_ON(NULL == fh->fmt);
Brandon Philips78718e52008-04-02 18:10:59 -0300555
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300556 if (fh->width < 48 || fh->width > norm_maxw() ||
557 fh->height < 32 || fh->height > norm_maxh())
558 return -EINVAL;
Brandon Philips78718e52008-04-02 18:10:59 -0300559
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300560 buf->vb.size = fh->width*fh->height*2;
561 if (0 != buf->vb.baddr && buf->vb.bsize < buf->vb.size)
562 return -EINVAL;
563
Brandon Philips78718e52008-04-02 18:10:59 -0300564 /* These properties only change when queue is idle, see s_fmt */
565 buf->fmt = fh->fmt;
566 buf->vb.width = fh->width;
567 buf->vb.height = fh->height;
568 buf->vb.field = field;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300569
Brandon Philips0fc06862007-11-06 20:02:36 -0300570 if (VIDEOBUF_NEEDS_INIT == buf->vb.state) {
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300571 rc = videobuf_iolock(vq, &buf->vb, NULL);
572 if (rc < 0)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300573 goto fail;
574 }
575
Brandon Philips0fc06862007-11-06 20:02:36 -0300576 buf->vb.state = VIDEOBUF_PREPARED;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300577
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300578 return 0;
579
580fail:
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300581 free_buffer(vq, buf);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300582 return rc;
583}
584
585static void
586buffer_queue(struct videobuf_queue *vq, struct videobuf_buffer *vb)
587{
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300588 struct vivi_buffer *buf = container_of(vb, struct vivi_buffer, vb);
589 struct vivi_fh *fh = vq->priv_data;
590 struct vivi_dev *dev = fh->dev;
Brandon Philips78718e52008-04-02 18:10:59 -0300591 struct vivi_dmaqueue *vidq = &dev->vidq;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300592
Harvey Harrison7e28adb2008-04-08 23:20:00 -0300593 dprintk(dev, 1, "%s\n", __func__);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300594
Brandon Philips78718e52008-04-02 18:10:59 -0300595 buf->vb.state = VIDEOBUF_QUEUED;
596 list_add_tail(&buf->vb.queue, &vidq->active);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300597}
598
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300599static void buffer_release(struct videobuf_queue *vq,
600 struct videobuf_buffer *vb)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300601{
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300602 struct vivi_buffer *buf = container_of(vb, struct vivi_buffer, vb);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300603 struct vivi_fh *fh = vq->priv_data;
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300604 struct vivi_dev *dev = (struct vivi_dev *)fh->dev;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300605
Harvey Harrison7e28adb2008-04-08 23:20:00 -0300606 dprintk(dev, 1, "%s\n", __func__);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300607
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300608 free_buffer(vq, buf);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300609}
610
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300611static struct videobuf_queue_ops vivi_video_qops = {
612 .buf_setup = buffer_setup,
613 .buf_prepare = buffer_prepare,
614 .buf_queue = buffer_queue,
615 .buf_release = buffer_release,
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300616};
617
618/* ------------------------------------------------------------------
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300619 IOCTL vidioc handling
620 ------------------------------------------------------------------*/
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300621static int vidioc_querycap(struct file *file, void *priv,
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300622 struct v4l2_capability *cap)
623{
624 strcpy(cap->driver, "vivi");
625 strcpy(cap->card, "vivi");
626 cap->version = VIVI_VERSION;
627 cap->capabilities = V4L2_CAP_VIDEO_CAPTURE |
628 V4L2_CAP_STREAMING |
629 V4L2_CAP_READWRITE;
630 return 0;
631}
632
Hans Verkuil78b526a2008-05-28 12:16:41 -0300633static int vidioc_enum_fmt_vid_cap(struct file *file, void *priv,
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300634 struct v4l2_fmtdesc *f)
635{
636 if (f->index > 0)
637 return -EINVAL;
638
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300639 strlcpy(f->description, format.name, sizeof(f->description));
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300640 f->pixelformat = format.fourcc;
641 return 0;
642}
643
Hans Verkuil78b526a2008-05-28 12:16:41 -0300644static int vidioc_g_fmt_vid_cap(struct file *file, void *priv,
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300645 struct v4l2_format *f)
646{
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300647 struct vivi_fh *fh = priv;
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300648
649 f->fmt.pix.width = fh->width;
650 f->fmt.pix.height = fh->height;
651 f->fmt.pix.field = fh->vb_vidq.field;
652 f->fmt.pix.pixelformat = fh->fmt->fourcc;
653 f->fmt.pix.bytesperline =
654 (f->fmt.pix.width * fh->fmt->depth) >> 3;
655 f->fmt.pix.sizeimage =
656 f->fmt.pix.height * f->fmt.pix.bytesperline;
657
658 return (0);
659}
660
Hans Verkuil78b526a2008-05-28 12:16:41 -0300661static int vidioc_try_fmt_vid_cap(struct file *file, void *priv,
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300662 struct v4l2_format *f)
663{
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300664 struct vivi_fh *fh = priv;
665 struct vivi_dev *dev = fh->dev;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300666 struct vivi_fmt *fmt;
667 enum v4l2_field field;
668 unsigned int maxw, maxh;
669
670 if (format.fourcc != f->fmt.pix.pixelformat) {
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300671 dprintk(dev, 1, "Fourcc format (0x%08x) invalid. "
672 "Driver accepts only 0x%08x\n",
673 f->fmt.pix.pixelformat, format.fourcc);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300674 return -EINVAL;
675 }
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300676 fmt = &format;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300677
678 field = f->fmt.pix.field;
679
680 if (field == V4L2_FIELD_ANY) {
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300681 field = V4L2_FIELD_INTERLACED;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300682 } else if (V4L2_FIELD_INTERLACED != field) {
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300683 dprintk(dev, 1, "Field type invalid.\n");
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300684 return -EINVAL;
685 }
686
687 maxw = norm_maxw();
688 maxh = norm_maxh();
689
690 f->fmt.pix.field = field;
691 if (f->fmt.pix.height < 32)
692 f->fmt.pix.height = 32;
693 if (f->fmt.pix.height > maxh)
694 f->fmt.pix.height = maxh;
695 if (f->fmt.pix.width < 48)
696 f->fmt.pix.width = 48;
697 if (f->fmt.pix.width > maxw)
698 f->fmt.pix.width = maxw;
699 f->fmt.pix.width &= ~0x03;
700 f->fmt.pix.bytesperline =
701 (f->fmt.pix.width * fmt->depth) >> 3;
702 f->fmt.pix.sizeimage =
703 f->fmt.pix.height * f->fmt.pix.bytesperline;
704
705 return 0;
706}
707
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300708/*FIXME: This seems to be generic enough to be at videodev2 */
Hans Verkuil78b526a2008-05-28 12:16:41 -0300709static int vidioc_s_fmt_vid_cap(struct file *file, void *priv,
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300710 struct v4l2_format *f)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300711{
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300712 struct vivi_fh *fh = priv;
Brandon Philips78718e52008-04-02 18:10:59 -0300713 struct videobuf_queue *q = &fh->vb_vidq;
714
Hans Verkuil78b526a2008-05-28 12:16:41 -0300715 int ret = vidioc_try_fmt_vid_cap(file, fh, f);
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300716 if (ret < 0)
717 return (ret);
718
Brandon Philips78718e52008-04-02 18:10:59 -0300719 mutex_lock(&q->vb_lock);
720
721 if (videobuf_queue_is_busy(&fh->vb_vidq)) {
Harvey Harrison7e28adb2008-04-08 23:20:00 -0300722 dprintk(fh->dev, 1, "%s queue busy\n", __func__);
Brandon Philips78718e52008-04-02 18:10:59 -0300723 ret = -EBUSY;
724 goto out;
725 }
726
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300727 fh->fmt = &format;
728 fh->width = f->fmt.pix.width;
729 fh->height = f->fmt.pix.height;
730 fh->vb_vidq.field = f->fmt.pix.field;
731 fh->type = f->type;
732
Brandon Philips78718e52008-04-02 18:10:59 -0300733 ret = 0;
734out:
735 mutex_unlock(&q->vb_lock);
736
737 return (ret);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300738}
739
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300740static int vidioc_reqbufs(struct file *file, void *priv,
741 struct v4l2_requestbuffers *p)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300742{
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300743 struct vivi_fh *fh = priv;
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300744
745 return (videobuf_reqbufs(&fh->vb_vidq, p));
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300746}
747
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300748static int vidioc_querybuf(struct file *file, void *priv, struct v4l2_buffer *p)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300749{
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300750 struct vivi_fh *fh = priv;
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300751
752 return (videobuf_querybuf(&fh->vb_vidq, p));
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300753}
754
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300755static int vidioc_qbuf(struct file *file, void *priv, struct v4l2_buffer *p)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300756{
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300757 struct vivi_fh *fh = priv;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300758
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300759 return (videobuf_qbuf(&fh->vb_vidq, p));
760}
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300761
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300762static int vidioc_dqbuf(struct file *file, void *priv, struct v4l2_buffer *p)
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300763{
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300764 struct vivi_fh *fh = priv;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300765
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300766 return (videobuf_dqbuf(&fh->vb_vidq, p,
767 file->f_flags & O_NONBLOCK));
768}
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300769
Mauro Carvalho Chehab0dfa9ab2006-08-08 09:10:10 -0300770#ifdef CONFIG_VIDEO_V4L1_COMPAT
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300771static int vidiocgmbuf(struct file *file, void *priv, struct video_mbuf *mbuf)
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300772{
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300773 struct vivi_fh *fh = priv;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300774
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300775 return videobuf_cgmbuf(&fh->vb_vidq, mbuf, 8);
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300776}
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300777#endif
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300778
Adrian Bunkdc46ace2006-06-23 06:42:44 -0300779static int vidioc_streamon(struct file *file, void *priv, enum v4l2_buf_type i)
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300780{
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300781 struct vivi_fh *fh = priv;
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300782
783 if (fh->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
784 return -EINVAL;
785 if (i != fh->type)
786 return -EINVAL;
787
Brandon Philipsba32bd92007-09-27 20:55:17 -0300788 return videobuf_streamon(&fh->vb_vidq);
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300789}
790
Adrian Bunkdc46ace2006-06-23 06:42:44 -0300791static int vidioc_streamoff(struct file *file, void *priv, enum v4l2_buf_type i)
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300792{
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300793 struct vivi_fh *fh = priv;
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300794
795 if (fh->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
796 return -EINVAL;
797 if (i != fh->type)
798 return -EINVAL;
799
Brandon Philipsba32bd92007-09-27 20:55:17 -0300800 return videobuf_streamoff(&fh->vb_vidq);
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300801}
802
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300803static int vidioc_s_std(struct file *file, void *priv, v4l2_std_id *i)
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300804{
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300805 return 0;
806}
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300807
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300808/* only one input in this sample driver */
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300809static int vidioc_enum_input(struct file *file, void *priv,
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300810 struct v4l2_input *inp)
811{
812 if (inp->index != 0)
813 return -EINVAL;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300814
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300815 inp->type = V4L2_INPUT_TYPE_CAMERA;
Mauro Carvalho Chehab784c6682007-12-13 06:35:26 -0300816 inp->std = V4L2_STD_525_60;
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300817 strcpy(inp->name, "Camera");
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300818
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300819 return (0);
820}
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300821
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300822static int vidioc_g_input(struct file *file, void *priv, unsigned int *i)
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300823{
824 *i = 0;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300825
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300826 return (0);
827}
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300828static int vidioc_s_input(struct file *file, void *priv, unsigned int i)
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300829{
830 if (i > 0)
831 return -EINVAL;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300832
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300833 return (0);
834}
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300835
836 /* --- controls ---------------------------------------------- */
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300837static int vidioc_queryctrl(struct file *file, void *priv,
838 struct v4l2_queryctrl *qc)
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300839{
840 int i;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300841
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300842 for (i = 0; i < ARRAY_SIZE(vivi_qctrl); i++)
843 if (qc->id && qc->id == vivi_qctrl[i].id) {
844 memcpy(qc, &(vivi_qctrl[i]),
845 sizeof(*qc));
846 return (0);
847 }
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300848
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300849 return -EINVAL;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300850}
851
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300852static int vidioc_g_ctrl(struct file *file, void *priv,
853 struct v4l2_control *ctrl)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300854{
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300855 int i;
856
857 for (i = 0; i < ARRAY_SIZE(vivi_qctrl); i++)
858 if (ctrl->id == vivi_qctrl[i].id) {
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300859 ctrl->value = qctl_regs[i];
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300860 return (0);
861 }
862
863 return -EINVAL;
864}
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300865static int vidioc_s_ctrl(struct file *file, void *priv,
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300866 struct v4l2_control *ctrl)
867{
868 int i;
869
870 for (i = 0; i < ARRAY_SIZE(vivi_qctrl); i++)
871 if (ctrl->id == vivi_qctrl[i].id) {
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300872 if (ctrl->value < vivi_qctrl[i].minimum
873 || ctrl->value > vivi_qctrl[i].maximum) {
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300874 return (-ERANGE);
875 }
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300876 qctl_regs[i] = ctrl->value;
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300877 return (0);
878 }
879 return -EINVAL;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300880}
881
882/* ------------------------------------------------------------------
883 File operations for the device
884 ------------------------------------------------------------------*/
885
886#define line_buf_size(norm) (norm_maxw(norm)*(format.depth+7)/8)
887
888static int vivi_open(struct inode *inode, struct file *file)
889{
890 int minor = iminor(inode);
Trent Piephoa991f442007-10-10 05:37:43 -0300891 struct vivi_dev *dev;
Mauro Carvalho Chehab63b79cf2008-04-26 08:25:18 -0300892 struct vivi_fh *fh = NULL;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300893 int i;
Brandon Philipsaa9dbac2008-04-02 18:10:59 -0300894 int retval = 0;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300895
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300896 printk(KERN_DEBUG "vivi: open called (minor=%d)\n", minor);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300897
Trent Piephoa991f442007-10-10 05:37:43 -0300898 list_for_each_entry(dev, &vivi_devlist, vivi_devlist)
Mauro Carvalho Chehabf905c442007-12-10 04:07:03 -0300899 if (dev->vfd->minor == minor)
Trent Piephoa991f442007-10-10 05:37:43 -0300900 goto found;
901 return -ENODEV;
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300902
Trent Piephoa991f442007-10-10 05:37:43 -0300903found:
Brandon Philipsaa9dbac2008-04-02 18:10:59 -0300904 mutex_lock(&dev->mutex);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300905 dev->users++;
906
Brandon Philipsaa9dbac2008-04-02 18:10:59 -0300907 if (dev->users > 1) {
908 dev->users--;
909 retval = -EBUSY;
910 goto unlock;
911 }
912
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300913 dprintk(dev, 1, "open minor=%d type=%s users=%d\n", minor,
Trent Piephoa991f442007-10-10 05:37:43 -0300914 v4l2_type_names[V4L2_BUF_TYPE_VIDEO_CAPTURE], dev->users);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300915
916 /* allocate + initialize per filehandle data */
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300917 fh = kzalloc(sizeof(*fh), GFP_KERNEL);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300918 if (NULL == fh) {
919 dev->users--;
Brandon Philipsaa9dbac2008-04-02 18:10:59 -0300920 retval = -ENOMEM;
921 goto unlock;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300922 }
Brandon Philipsaa9dbac2008-04-02 18:10:59 -0300923unlock:
924 mutex_unlock(&dev->mutex);
925 if (retval)
926 return retval;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300927
928 file->private_data = fh;
929 fh->dev = dev;
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300930
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300931 fh->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
932 fh->fmt = &format;
933 fh->width = 640;
934 fh->height = 480;
935
936 /* Put all controls at a sane state */
937 for (i = 0; i < ARRAY_SIZE(vivi_qctrl); i++)
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300938 qctl_regs[i] = vivi_qctrl[i].default_value;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300939
940 /* Resets frame counters */
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300941 dev->h = 0;
942 dev->m = 0;
943 dev->s = 0;
Mauro Carvalho Chehabdfd8c042008-01-13 19:36:11 -0300944 dev->ms = 0;
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300945 dev->mv_count = 0;
946 dev->jiffies = jiffies;
947 sprintf(dev->timestr, "%02d:%02d:%02d:%03d",
Mauro Carvalho Chehabdfd8c042008-01-13 19:36:11 -0300948 dev->h, dev->m, dev->s, dev->ms);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300949
Mauro Carvalho Chehab5a037702007-08-02 23:31:54 -0300950 videobuf_queue_vmalloc_init(&fh->vb_vidq, &vivi_video_qops,
Mauro Carvalho Chehab55862ac2007-12-13 16:13:37 -0300951 NULL, &dev->slock, fh->type, V4L2_FIELD_INTERLACED,
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300952 sizeof(struct vivi_buffer), fh);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300953
Brandon Philips78718e52008-04-02 18:10:59 -0300954 vivi_start_thread(fh);
955
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300956 return 0;
957}
958
959static ssize_t
960vivi_read(struct file *file, char __user *data, size_t count, loff_t *ppos)
961{
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300962 struct vivi_fh *fh = file->private_data;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300963
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300964 if (fh->type == V4L2_BUF_TYPE_VIDEO_CAPTURE) {
Mauro Carvalho Chehabacb09af2007-07-29 22:56:11 -0300965 return videobuf_read_stream(&fh->vb_vidq, data, count, ppos, 0,
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300966 file->f_flags & O_NONBLOCK);
967 }
968 return 0;
969}
970
971static unsigned int
972vivi_poll(struct file *file, struct poll_table_struct *wait)
973{
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300974 struct vivi_fh *fh = file->private_data;
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300975 struct vivi_dev *dev = fh->dev;
Brandon Philips85c7c70bc2007-09-27 20:55:02 -0300976 struct videobuf_queue *q = &fh->vb_vidq;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300977
Harvey Harrison7e28adb2008-04-08 23:20:00 -0300978 dprintk(dev, 1, "%s\n", __func__);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300979
980 if (V4L2_BUF_TYPE_VIDEO_CAPTURE != fh->type)
981 return POLLERR;
982
Brandon Philips85c7c70bc2007-09-27 20:55:02 -0300983 return videobuf_poll_stream(file, q, wait);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300984}
985
Mauro Carvalho Chehabf905c442007-12-10 04:07:03 -0300986static int vivi_close(struct inode *inode, struct file *file)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300987{
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300988 struct vivi_fh *fh = file->private_data;
989 struct vivi_dev *dev = fh->dev;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300990 struct vivi_dmaqueue *vidq = &dev->vidq;
991
992 int minor = iminor(inode);
993
994 vivi_stop_thread(vidq);
Brandon Philips053fcb62007-11-13 20:11:26 -0300995 videobuf_stop(&fh->vb_vidq);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300996 videobuf_mmap_free(&fh->vb_vidq);
997
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -0300998 kfree(fh);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300999
Brandon Philipsaa9dbac2008-04-02 18:10:59 -03001000 mutex_lock(&dev->mutex);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001001 dev->users--;
Brandon Philipsaa9dbac2008-04-02 18:10:59 -03001002 mutex_unlock(&dev->mutex);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001003
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -03001004 dprintk(dev, 1, "close called (minor=%d, users=%d)\n",
1005 minor, dev->users);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001006
1007 return 0;
1008}
1009
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001010static int vivi_release(void)
Mauro Carvalho Chehabf905c442007-12-10 04:07:03 -03001011{
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001012 struct vivi_dev *dev;
1013 struct list_head *list;
Mauro Carvalho Chehabf905c442007-12-10 04:07:03 -03001014
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001015 while (!list_empty(&vivi_devlist)) {
1016 list = vivi_devlist.next;
1017 list_del(list);
1018 dev = list_entry(list, struct vivi_dev, vivi_devlist);
1019
1020 if (-1 != dev->vfd->minor)
1021 video_unregister_device(dev->vfd);
1022 else
1023 video_device_release(dev->vfd);
1024
1025 kfree(dev);
1026 }
Mauro Carvalho Chehabf905c442007-12-10 04:07:03 -03001027
1028 return 0;
1029}
1030
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -03001031static int vivi_mmap(struct file *file, struct vm_area_struct *vma)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001032{
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -03001033 struct vivi_fh *fh = file->private_data;
1034 struct vivi_dev *dev = fh->dev;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001035 int ret;
1036
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -03001037 dprintk(dev, 1, "mmap called, vma=0x%08lx\n", (unsigned long)vma);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001038
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -03001039 ret = videobuf_mmap_mapper(&fh->vb_vidq, vma);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001040
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -03001041 dprintk(dev, 1, "vma start=0x%08lx, size=%ld, ret=%d\n",
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001042 (unsigned long)vma->vm_start,
1043 (unsigned long)vma->vm_end-(unsigned long)vma->vm_start,
1044 ret);
1045
1046 return ret;
1047}
1048
Arjan van de Venfa027c22007-02-12 00:55:33 -08001049static const struct file_operations vivi_fops = {
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001050 .owner = THIS_MODULE,
1051 .open = vivi_open,
Mauro Carvalho Chehabf905c442007-12-10 04:07:03 -03001052 .release = vivi_close,
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001053 .read = vivi_read,
1054 .poll = vivi_poll,
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001055 .ioctl = video_ioctl2, /* V4L2 ioctl handler */
Mauro Carvalho Chehabfbde31d2008-04-13 14:57:44 -03001056 .compat_ioctl = v4l_compat_ioctl32,
Mauro Carvalho Chehab5a037702007-08-02 23:31:54 -03001057 .mmap = vivi_mmap,
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001058 .llseek = no_llseek,
1059};
1060
Mauro Carvalho Chehabf905c442007-12-10 04:07:03 -03001061static struct video_device vivi_template = {
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001062 .name = "vivi",
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001063 .type = VID_TYPE_CAPTURE,
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001064 .fops = &vivi_fops,
1065 .minor = -1,
Mauro Carvalho Chehabf905c442007-12-10 04:07:03 -03001066 .release = video_device_release,
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001067
1068 .vidioc_querycap = vidioc_querycap,
Hans Verkuil78b526a2008-05-28 12:16:41 -03001069 .vidioc_enum_fmt_vid_cap = vidioc_enum_fmt_vid_cap,
1070 .vidioc_g_fmt_vid_cap = vidioc_g_fmt_vid_cap,
1071 .vidioc_try_fmt_vid_cap = vidioc_try_fmt_vid_cap,
1072 .vidioc_s_fmt_vid_cap = vidioc_s_fmt_vid_cap,
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001073 .vidioc_reqbufs = vidioc_reqbufs,
1074 .vidioc_querybuf = vidioc_querybuf,
1075 .vidioc_qbuf = vidioc_qbuf,
1076 .vidioc_dqbuf = vidioc_dqbuf,
1077 .vidioc_s_std = vidioc_s_std,
1078 .vidioc_enum_input = vidioc_enum_input,
1079 .vidioc_g_input = vidioc_g_input,
1080 .vidioc_s_input = vidioc_s_input,
1081 .vidioc_queryctrl = vidioc_queryctrl,
1082 .vidioc_g_ctrl = vidioc_g_ctrl,
1083 .vidioc_s_ctrl = vidioc_s_ctrl,
1084 .vidioc_streamon = vidioc_streamon,
1085 .vidioc_streamoff = vidioc_streamoff,
Mauro Carvalho Chehab0dfa9ab2006-08-08 09:10:10 -03001086#ifdef CONFIG_VIDEO_V4L1_COMPAT
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001087 .vidiocgmbuf = vidiocgmbuf,
1088#endif
Mauro Carvalho Chehab784c6682007-12-13 06:35:26 -03001089 .tvnorms = V4L2_STD_525_60,
Mauro Carvalho Chehabe75f9ce2006-11-20 13:19:20 -03001090 .current_norm = V4L2_STD_NTSC_M,
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001091};
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001092/* -----------------------------------------------------------------
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001093 Initialization and module stuff
1094 ------------------------------------------------------------------*/
1095
1096static int __init vivi_init(void)
1097{
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001098 int ret = -ENOMEM, i;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001099 struct vivi_dev *dev;
Mauro Carvalho Chehabf905c442007-12-10 04:07:03 -03001100 struct video_device *vfd;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001101
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001102 for (i = 0; i < n_devs; i++) {
1103 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
1104 if (NULL == dev)
1105 break;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001106
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001107 list_add_tail(&dev->vivi_devlist, &vivi_devlist);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001108
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001109 /* init video dma queues */
1110 INIT_LIST_HEAD(&dev->vidq.active);
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001111 init_waitqueue_head(&dev->vidq.wq);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001112
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001113 /* initialize locks */
Mauro Carvalho Chehab55862ac2007-12-13 16:13:37 -03001114 spin_lock_init(&dev->slock);
Brandon Philipsaa9dbac2008-04-02 18:10:59 -03001115 mutex_init(&dev->mutex);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001116
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001117 vfd = video_device_alloc();
1118 if (NULL == vfd)
1119 break;
Mauro Carvalho Chehabf905c442007-12-10 04:07:03 -03001120
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001121 *vfd = vivi_template;
Mauro Carvalho Chehabf905c442007-12-10 04:07:03 -03001122
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001123 ret = video_register_device(vfd, VFL_TYPE_GRABBER, video_nr);
1124 if (ret < 0)
1125 break;
Mauro Carvalho Chehabf905c442007-12-10 04:07:03 -03001126
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001127 snprintf(vfd->name, sizeof(vfd->name), "%s (%i)",
1128 vivi_template.name, vfd->minor);
1129
1130 if (video_nr >= 0)
1131 video_nr++;
1132
1133 dev->vfd = vfd;
1134 }
1135
1136 if (ret < 0) {
1137 vivi_release();
1138 printk(KERN_INFO "Error %d while loading vivi driver\n", ret);
1139 } else
1140 printk(KERN_INFO "Video Technology Magazine Virtual Video "
1141 "Capture Board successfully loaded.\n");
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001142 return ret;
1143}
1144
1145static void __exit vivi_exit(void)
1146{
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001147 vivi_release();
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001148}
1149
1150module_init(vivi_init);
1151module_exit(vivi_exit);
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001152
1153MODULE_DESCRIPTION("Video Technology Magazine Virtual Video Capture Board");
1154MODULE_AUTHOR("Mauro Carvalho Chehab, Ted Walther and John Sokol");
1155MODULE_LICENSE("Dual BSD/GPL");
1156
1157module_param(video_nr, int, 0);
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001158MODULE_PARM_DESC(video_nr, "video iminor start number");
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001159
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001160module_param(n_devs, int, 0);
1161MODULE_PARM_DESC(n_devs, "number of video devices to create");
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001162
Mauro Carvalho Chehab8996b3f2007-12-13 06:36:22 -03001163module_param_named(debug, vivi_template.debug, int, 0444);
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001164MODULE_PARM_DESC(debug, "activates debug info");
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001165
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001166module_param(vid_limit, int, 0644);
1167MODULE_PARM_DESC(vid_limit, "capture memory limit in megabytes");