blob: b1e9592acb907bb06ca59d82e8fa6cafcf5384fc [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;
Brandon Philips78718e52008-04-02 18:10:59 -0300330 char *tmpbuf = kmalloc(wmax * 2, GFP_ATOMIC);
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
Mauro Carvalho Chehab5a037702007-08-02 23:31:54 -0300333 if (!tmpbuf)
334 return;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300335
Brandon Philips78718e52008-04-02 18:10:59 -0300336 if (!vbuf)
337 return;
338
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300339 for (h = 0; h < hmax; h++) {
Mauro Carvalho Chehab025341d2007-12-10 04:43:38 -0300340 gen_line(tmpbuf, 0, wmax, hmax, h, dev->mv_count,
Mauro Carvalho Chehab3bef5e42007-09-22 02:01:33 -0300341 dev->timestr);
Brandon Philips78718e52008-04-02 18:10:59 -0300342 memcpy(vbuf + pos, tmpbuf, wmax * 2);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300343 pos += wmax*2;
344 }
345
Mauro Carvalho Chehab025341d2007-12-10 04:43:38 -0300346 dev->mv_count++;
Mauro Carvalho Chehab3bef5e42007-09-22 02:01:33 -0300347
Mauro Carvalho Chehab5a037702007-08-02 23:31:54 -0300348 kfree(tmpbuf);
349
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300350 /* Updates stream time */
351
Mauro Carvalho Chehabdfd8c042008-01-13 19:36:11 -0300352 dev->ms += jiffies_to_msecs(jiffies-dev->jiffies);
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300353 dev->jiffies = jiffies;
Mauro Carvalho Chehabdfd8c042008-01-13 19:36:11 -0300354 if (dev->ms >= 1000) {
355 dev->ms -= 1000;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300356 dev->s++;
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300357 if (dev->s >= 60) {
358 dev->s -= 60;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300359 dev->m++;
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300360 if (dev->m > 60) {
361 dev->m -= 60;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300362 dev->h++;
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300363 if (dev->h > 24)
364 dev->h -= 24;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300365 }
366 }
367 }
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300368 sprintf(dev->timestr, "%02d:%02d:%02d:%03d",
Mauro Carvalho Chehabdfd8c042008-01-13 19:36:11 -0300369 dev->h, dev->m, dev->s, dev->ms);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300370
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300371 dprintk(dev, 2, "vivifill at %s: Buffer 0x%08lx size= %d\n",
372 dev->timestr, (unsigned long)tmpbuf, pos);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300373
374 /* Advice that buffer was filled */
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300375 buf->vb.field_count++;
376 do_gettimeofday(&ts);
377 buf->vb.ts = ts;
Brandon Philips78718e52008-04-02 18:10:59 -0300378 buf->vb.state = VIDEOBUF_DONE;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300379}
380
Brandon Philips78718e52008-04-02 18:10:59 -0300381static void vivi_thread_tick(struct vivi_fh *fh)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300382{
Brandon Philips78718e52008-04-02 18:10:59 -0300383 struct vivi_buffer *buf;
384 struct vivi_dev *dev = fh->dev;
385 struct vivi_dmaqueue *dma_q = &dev->vidq;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300386
Brandon Philips78718e52008-04-02 18:10:59 -0300387 unsigned long flags = 0;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300388
Brandon Philips78718e52008-04-02 18:10:59 -0300389 dprintk(dev, 1, "Thread tick\n");
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300390
Brandon Philips78718e52008-04-02 18:10:59 -0300391 spin_lock_irqsave(&dev->slock, flags);
392 if (list_empty(&dma_q->active)) {
393 dprintk(dev, 1, "No active queue to serve\n");
394 goto unlock;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300395 }
Brandon Philips78718e52008-04-02 18:10:59 -0300396
397 buf = list_entry(dma_q->active.next,
398 struct vivi_buffer, vb.queue);
399
400 /* Nobody is waiting on this buffer, return */
401 if (!waitqueue_active(&buf->vb.done))
402 goto unlock;
403
404 list_del(&buf->vb.queue);
405
406 do_gettimeofday(&buf->vb.ts);
407
408 /* Fill buffer */
409 vivi_fillbuff(dev, buf);
410 dprintk(dev, 1, "filled buffer %p\n", buf);
411
412 wake_up(&buf->vb.done);
413 dprintk(dev, 2, "[%p/%d] wakeup\n", buf, buf->vb. i);
414unlock:
415 spin_unlock_irqrestore(&dev->slock, flags);
416 return;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300417}
418
Mauro Carvalho Chehab6594ad82007-12-13 16:15:41 -0300419#define frames_to_ms(frames) \
420 ((frames * WAKE_NUMERATOR * 1000) / WAKE_DENOMINATOR)
421
Brandon Philips78718e52008-04-02 18:10:59 -0300422static void vivi_sleep(struct vivi_fh *fh)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300423{
Brandon Philips78718e52008-04-02 18:10:59 -0300424 struct vivi_dev *dev = fh->dev;
425 struct vivi_dmaqueue *dma_q = &dev->vidq;
426 int timeout;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300427 DECLARE_WAITQUEUE(wait, current);
428
Harvey Harrison7e28adb2008-04-08 23:20:00 -0300429 dprintk(dev, 1, "%s dma_q=0x%08lx\n", __func__,
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300430 (unsigned long)dma_q);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300431
432 add_wait_queue(&dma_q->wq, &wait);
Mauro Carvalho Chehab6594ad82007-12-13 16:15:41 -0300433 if (kthread_should_stop())
434 goto stop_task;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300435
Mauro Carvalho Chehab6594ad82007-12-13 16:15:41 -0300436 /* Calculate time to wake up */
Brandon Philips78718e52008-04-02 18:10:59 -0300437 timeout = msecs_to_jiffies(frames_to_ms(1));
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300438
Brandon Philips78718e52008-04-02 18:10:59 -0300439 vivi_thread_tick(fh);
Mauro Carvalho Chehab6594ad82007-12-13 16:15:41 -0300440
441 schedule_timeout_interruptible(timeout);
442
443stop_task:
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300444 remove_wait_queue(&dma_q->wq, &wait);
445 try_to_freeze();
446}
447
Adrian Bunk972c3512006-04-27 21:06:50 -0300448static int vivi_thread(void *data)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300449{
Brandon Philips78718e52008-04-02 18:10:59 -0300450 struct vivi_fh *fh = data;
451 struct vivi_dev *dev = fh->dev;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300452
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300453 dprintk(dev, 1, "thread started\n");
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300454
Rafael J. Wysocki83144182007-07-17 04:03:35 -0700455 set_freezable();
Mauro Carvalho Chehab0b600512007-01-14 08:33:24 -0300456
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300457 for (;;) {
Brandon Philips78718e52008-04-02 18:10:59 -0300458 vivi_sleep(fh);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300459
460 if (kthread_should_stop())
461 break;
462 }
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300463 dprintk(dev, 1, "thread: exit\n");
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300464 return 0;
465}
466
Brandon Philips78718e52008-04-02 18:10:59 -0300467static int vivi_start_thread(struct vivi_fh *fh)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300468{
Brandon Philips78718e52008-04-02 18:10:59 -0300469 struct vivi_dev *dev = fh->dev;
470 struct vivi_dmaqueue *dma_q = &dev->vidq;
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300471
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300472 dma_q->frame = 0;
473 dma_q->ini_jiffies = jiffies;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300474
Harvey Harrison7e28adb2008-04-08 23:20:00 -0300475 dprintk(dev, 1, "%s\n", __func__);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300476
Brandon Philips78718e52008-04-02 18:10:59 -0300477 dma_q->kthread = kthread_run(vivi_thread, fh, "vivi");
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300478
Akinobu Mita054afee2006-12-20 10:04:00 -0300479 if (IS_ERR(dma_q->kthread)) {
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300480 printk(KERN_ERR "vivi: kernel_thread() failed\n");
Akinobu Mita054afee2006-12-20 10:04:00 -0300481 return PTR_ERR(dma_q->kthread);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300482 }
Mauro Carvalho Chehab0b600512007-01-14 08:33:24 -0300483 /* Wakes thread */
484 wake_up_interruptible(&dma_q->wq);
485
Harvey Harrison7e28adb2008-04-08 23:20:00 -0300486 dprintk(dev, 1, "returning from %s\n", __func__);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300487 return 0;
488}
489
Adrian Bunk972c3512006-04-27 21:06:50 -0300490static void vivi_stop_thread(struct vivi_dmaqueue *dma_q)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300491{
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300492 struct vivi_dev *dev = container_of(dma_q, struct vivi_dev, vidq);
493
Harvey Harrison7e28adb2008-04-08 23:20:00 -0300494 dprintk(dev, 1, "%s\n", __func__);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300495 /* shutdown control thread */
496 if (dma_q->kthread) {
497 kthread_stop(dma_q->kthread);
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300498 dma_q->kthread = NULL;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300499 }
500}
501
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300502/* ------------------------------------------------------------------
503 Videobuf operations
504 ------------------------------------------------------------------*/
505static int
506buffer_setup(struct videobuf_queue *vq, unsigned int *count, unsigned int *size)
507{
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300508 struct vivi_fh *fh = vq->priv_data;
509 struct vivi_dev *dev = fh->dev;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300510
511 *size = fh->width*fh->height*2;
512
513 if (0 == *count)
514 *count = 32;
Mauro Carvalho Chehab6bb27902007-08-23 16:41:14 -0300515
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300516 while (*size * *count > vid_limit * 1024 * 1024)
517 (*count)--;
Mauro Carvalho Chehab6bb27902007-08-23 16:41:14 -0300518
Harvey Harrison7e28adb2008-04-08 23:20:00 -0300519 dprintk(dev, 1, "%s, count=%d, size=%d\n", __func__,
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300520 *count, *size);
Mauro Carvalho Chehab6bb27902007-08-23 16:41:14 -0300521
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300522 return 0;
523}
524
Adrian Bunk972c3512006-04-27 21:06:50 -0300525static void free_buffer(struct videobuf_queue *vq, struct vivi_buffer *buf)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300526{
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300527 struct vivi_fh *fh = vq->priv_data;
528 struct vivi_dev *dev = fh->dev;
529
Harvey Harrison7e28adb2008-04-08 23:20:00 -0300530 dprintk(dev, 1, "%s, state: %i\n", __func__, buf->vb.state);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300531
532 if (in_interrupt())
533 BUG();
534
Mauro Carvalho Chehab5a037702007-08-02 23:31:54 -0300535 videobuf_vmalloc_free(&buf->vb);
Mauro Carvalho Chehabfbde31d2008-04-13 14:57:44 -0300536 dprintk(dev, 1, "free_buffer: freed\n");
Brandon Philips0fc06862007-11-06 20:02:36 -0300537 buf->vb.state = VIDEOBUF_NEEDS_INIT;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300538}
539
540#define norm_maxw() 1024
541#define norm_maxh() 768
542static int
543buffer_prepare(struct videobuf_queue *vq, struct videobuf_buffer *vb,
544 enum v4l2_field field)
545{
546 struct vivi_fh *fh = vq->priv_data;
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300547 struct vivi_dev *dev = fh->dev;
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300548 struct vivi_buffer *buf = container_of(vb, struct vivi_buffer, vb);
Brandon Philips78718e52008-04-02 18:10:59 -0300549 int rc;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300550
Harvey Harrison7e28adb2008-04-08 23:20:00 -0300551 dprintk(dev, 1, "%s, field=%d\n", __func__, field);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300552
553 BUG_ON(NULL == fh->fmt);
Brandon Philips78718e52008-04-02 18:10:59 -0300554
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300555 if (fh->width < 48 || fh->width > norm_maxw() ||
556 fh->height < 32 || fh->height > norm_maxh())
557 return -EINVAL;
Brandon Philips78718e52008-04-02 18:10:59 -0300558
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300559 buf->vb.size = fh->width*fh->height*2;
560 if (0 != buf->vb.baddr && buf->vb.bsize < buf->vb.size)
561 return -EINVAL;
562
Brandon Philips78718e52008-04-02 18:10:59 -0300563 /* These properties only change when queue is idle, see s_fmt */
564 buf->fmt = fh->fmt;
565 buf->vb.width = fh->width;
566 buf->vb.height = fh->height;
567 buf->vb.field = field;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300568
Brandon Philips0fc06862007-11-06 20:02:36 -0300569 if (VIDEOBUF_NEEDS_INIT == buf->vb.state) {
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300570 rc = videobuf_iolock(vq, &buf->vb, NULL);
571 if (rc < 0)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300572 goto fail;
573 }
574
Brandon Philips0fc06862007-11-06 20:02:36 -0300575 buf->vb.state = VIDEOBUF_PREPARED;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300576
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300577 return 0;
578
579fail:
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300580 free_buffer(vq, buf);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300581 return rc;
582}
583
584static void
585buffer_queue(struct videobuf_queue *vq, struct videobuf_buffer *vb)
586{
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300587 struct vivi_buffer *buf = container_of(vb, struct vivi_buffer, vb);
588 struct vivi_fh *fh = vq->priv_data;
589 struct vivi_dev *dev = fh->dev;
Brandon Philips78718e52008-04-02 18:10:59 -0300590 struct vivi_dmaqueue *vidq = &dev->vidq;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300591
Harvey Harrison7e28adb2008-04-08 23:20:00 -0300592 dprintk(dev, 1, "%s\n", __func__);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300593
Brandon Philips78718e52008-04-02 18:10:59 -0300594 buf->vb.state = VIDEOBUF_QUEUED;
595 list_add_tail(&buf->vb.queue, &vidq->active);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300596}
597
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300598static void buffer_release(struct videobuf_queue *vq,
599 struct videobuf_buffer *vb)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300600{
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300601 struct vivi_buffer *buf = container_of(vb, struct vivi_buffer, vb);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300602 struct vivi_fh *fh = vq->priv_data;
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300603 struct vivi_dev *dev = (struct vivi_dev *)fh->dev;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300604
Harvey Harrison7e28adb2008-04-08 23:20:00 -0300605 dprintk(dev, 1, "%s\n", __func__);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300606
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300607 free_buffer(vq, buf);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300608}
609
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300610static struct videobuf_queue_ops vivi_video_qops = {
611 .buf_setup = buffer_setup,
612 .buf_prepare = buffer_prepare,
613 .buf_queue = buffer_queue,
614 .buf_release = buffer_release,
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300615};
616
617/* ------------------------------------------------------------------
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300618 IOCTL vidioc handling
619 ------------------------------------------------------------------*/
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300620static int vidioc_querycap(struct file *file, void *priv,
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300621 struct v4l2_capability *cap)
622{
623 strcpy(cap->driver, "vivi");
624 strcpy(cap->card, "vivi");
625 cap->version = VIVI_VERSION;
626 cap->capabilities = V4L2_CAP_VIDEO_CAPTURE |
627 V4L2_CAP_STREAMING |
628 V4L2_CAP_READWRITE;
629 return 0;
630}
631
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300632static int vidioc_enum_fmt_cap(struct file *file, void *priv,
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300633 struct v4l2_fmtdesc *f)
634{
635 if (f->index > 0)
636 return -EINVAL;
637
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300638 strlcpy(f->description, format.name, sizeof(f->description));
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300639 f->pixelformat = format.fourcc;
640 return 0;
641}
642
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300643static int vidioc_g_fmt_cap(struct file *file, void *priv,
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300644 struct v4l2_format *f)
645{
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300646 struct vivi_fh *fh = priv;
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300647
648 f->fmt.pix.width = fh->width;
649 f->fmt.pix.height = fh->height;
650 f->fmt.pix.field = fh->vb_vidq.field;
651 f->fmt.pix.pixelformat = fh->fmt->fourcc;
652 f->fmt.pix.bytesperline =
653 (f->fmt.pix.width * fh->fmt->depth) >> 3;
654 f->fmt.pix.sizeimage =
655 f->fmt.pix.height * f->fmt.pix.bytesperline;
656
657 return (0);
658}
659
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300660static int vidioc_try_fmt_cap(struct file *file, void *priv,
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300661 struct v4l2_format *f)
662{
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300663 struct vivi_fh *fh = priv;
664 struct vivi_dev *dev = fh->dev;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300665 struct vivi_fmt *fmt;
666 enum v4l2_field field;
667 unsigned int maxw, maxh;
668
669 if (format.fourcc != f->fmt.pix.pixelformat) {
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300670 dprintk(dev, 1, "Fourcc format (0x%08x) invalid. "
671 "Driver accepts only 0x%08x\n",
672 f->fmt.pix.pixelformat, format.fourcc);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300673 return -EINVAL;
674 }
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300675 fmt = &format;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300676
677 field = f->fmt.pix.field;
678
679 if (field == V4L2_FIELD_ANY) {
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300680 field = V4L2_FIELD_INTERLACED;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300681 } else if (V4L2_FIELD_INTERLACED != field) {
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300682 dprintk(dev, 1, "Field type invalid.\n");
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300683 return -EINVAL;
684 }
685
686 maxw = norm_maxw();
687 maxh = norm_maxh();
688
689 f->fmt.pix.field = field;
690 if (f->fmt.pix.height < 32)
691 f->fmt.pix.height = 32;
692 if (f->fmt.pix.height > maxh)
693 f->fmt.pix.height = maxh;
694 if (f->fmt.pix.width < 48)
695 f->fmt.pix.width = 48;
696 if (f->fmt.pix.width > maxw)
697 f->fmt.pix.width = maxw;
698 f->fmt.pix.width &= ~0x03;
699 f->fmt.pix.bytesperline =
700 (f->fmt.pix.width * fmt->depth) >> 3;
701 f->fmt.pix.sizeimage =
702 f->fmt.pix.height * f->fmt.pix.bytesperline;
703
704 return 0;
705}
706
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300707/*FIXME: This seems to be generic enough to be at videodev2 */
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300708static int vidioc_s_fmt_cap(struct file *file, void *priv,
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300709 struct v4l2_format *f)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300710{
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300711 struct vivi_fh *fh = priv;
Brandon Philips78718e52008-04-02 18:10:59 -0300712 struct videobuf_queue *q = &fh->vb_vidq;
713
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300714 int ret = vidioc_try_fmt_cap(file, fh, f);
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300715 if (ret < 0)
716 return (ret);
717
Brandon Philips78718e52008-04-02 18:10:59 -0300718 mutex_lock(&q->vb_lock);
719
720 if (videobuf_queue_is_busy(&fh->vb_vidq)) {
Harvey Harrison7e28adb2008-04-08 23:20:00 -0300721 dprintk(fh->dev, 1, "%s queue busy\n", __func__);
Brandon Philips78718e52008-04-02 18:10:59 -0300722 ret = -EBUSY;
723 goto out;
724 }
725
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300726 fh->fmt = &format;
727 fh->width = f->fmt.pix.width;
728 fh->height = f->fmt.pix.height;
729 fh->vb_vidq.field = f->fmt.pix.field;
730 fh->type = f->type;
731
Brandon Philips78718e52008-04-02 18:10:59 -0300732 ret = 0;
733out:
734 mutex_unlock(&q->vb_lock);
735
736 return (ret);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300737}
738
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300739static int vidioc_reqbufs(struct file *file, void *priv,
740 struct v4l2_requestbuffers *p)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300741{
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300742 struct vivi_fh *fh = priv;
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300743
744 return (videobuf_reqbufs(&fh->vb_vidq, p));
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300745}
746
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300747static int vidioc_querybuf(struct file *file, void *priv, struct v4l2_buffer *p)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300748{
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300749 struct vivi_fh *fh = priv;
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300750
751 return (videobuf_querybuf(&fh->vb_vidq, p));
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300752}
753
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300754static int vidioc_qbuf(struct file *file, void *priv, struct v4l2_buffer *p)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300755{
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300756 struct vivi_fh *fh = priv;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300757
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300758 return (videobuf_qbuf(&fh->vb_vidq, p));
759}
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300760
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300761static int vidioc_dqbuf(struct file *file, void *priv, struct v4l2_buffer *p)
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300762{
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300763 struct vivi_fh *fh = priv;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300764
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300765 return (videobuf_dqbuf(&fh->vb_vidq, p,
766 file->f_flags & O_NONBLOCK));
767}
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300768
Mauro Carvalho Chehab0dfa9ab2006-08-08 09:10:10 -0300769#ifdef CONFIG_VIDEO_V4L1_COMPAT
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300770static int vidiocgmbuf(struct file *file, void *priv, struct video_mbuf *mbuf)
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300771{
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300772 struct vivi_fh *fh = priv;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300773
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300774 return videobuf_cgmbuf(&fh->vb_vidq, mbuf, 8);
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300775}
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300776#endif
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300777
Adrian Bunkdc46ace2006-06-23 06:42:44 -0300778static int vidioc_streamon(struct file *file, void *priv, enum v4l2_buf_type i)
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300779{
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300780 struct vivi_fh *fh = priv;
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300781
782 if (fh->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
783 return -EINVAL;
784 if (i != fh->type)
785 return -EINVAL;
786
Brandon Philipsba32bd92007-09-27 20:55:17 -0300787 return videobuf_streamon(&fh->vb_vidq);
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300788}
789
Adrian Bunkdc46ace2006-06-23 06:42:44 -0300790static int vidioc_streamoff(struct file *file, void *priv, enum v4l2_buf_type i)
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300791{
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300792 struct vivi_fh *fh = priv;
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300793
794 if (fh->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
795 return -EINVAL;
796 if (i != fh->type)
797 return -EINVAL;
798
Brandon Philipsba32bd92007-09-27 20:55:17 -0300799 return videobuf_streamoff(&fh->vb_vidq);
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300800}
801
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300802static int vidioc_s_std(struct file *file, void *priv, v4l2_std_id *i)
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300803{
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300804 return 0;
805}
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300806
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300807/* only one input in this sample driver */
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300808static int vidioc_enum_input(struct file *file, void *priv,
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300809 struct v4l2_input *inp)
810{
811 if (inp->index != 0)
812 return -EINVAL;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300813
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300814 inp->type = V4L2_INPUT_TYPE_CAMERA;
Mauro Carvalho Chehab784c6682007-12-13 06:35:26 -0300815 inp->std = V4L2_STD_525_60;
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300816 strcpy(inp->name, "Camera");
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300817
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300818 return (0);
819}
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300820
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300821static int vidioc_g_input(struct file *file, void *priv, unsigned int *i)
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300822{
823 *i = 0;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300824
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300825 return (0);
826}
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300827static int vidioc_s_input(struct file *file, void *priv, unsigned int i)
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300828{
829 if (i > 0)
830 return -EINVAL;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300831
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300832 return (0);
833}
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300834
835 /* --- controls ---------------------------------------------- */
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300836static int vidioc_queryctrl(struct file *file, void *priv,
837 struct v4l2_queryctrl *qc)
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300838{
839 int i;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300840
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300841 for (i = 0; i < ARRAY_SIZE(vivi_qctrl); i++)
842 if (qc->id && qc->id == vivi_qctrl[i].id) {
843 memcpy(qc, &(vivi_qctrl[i]),
844 sizeof(*qc));
845 return (0);
846 }
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300847
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300848 return -EINVAL;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300849}
850
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300851static int vidioc_g_ctrl(struct file *file, void *priv,
852 struct v4l2_control *ctrl)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300853{
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300854 int i;
855
856 for (i = 0; i < ARRAY_SIZE(vivi_qctrl); i++)
857 if (ctrl->id == vivi_qctrl[i].id) {
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300858 ctrl->value = qctl_regs[i];
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300859 return (0);
860 }
861
862 return -EINVAL;
863}
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300864static int vidioc_s_ctrl(struct file *file, void *priv,
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300865 struct v4l2_control *ctrl)
866{
867 int i;
868
869 for (i = 0; i < ARRAY_SIZE(vivi_qctrl); i++)
870 if (ctrl->id == vivi_qctrl[i].id) {
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300871 if (ctrl->value < vivi_qctrl[i].minimum
872 || ctrl->value > vivi_qctrl[i].maximum) {
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300873 return (-ERANGE);
874 }
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300875 qctl_regs[i] = ctrl->value;
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300876 return (0);
877 }
878 return -EINVAL;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300879}
880
881/* ------------------------------------------------------------------
882 File operations for the device
883 ------------------------------------------------------------------*/
884
885#define line_buf_size(norm) (norm_maxw(norm)*(format.depth+7)/8)
886
887static int vivi_open(struct inode *inode, struct file *file)
888{
889 int minor = iminor(inode);
Trent Piephoa991f442007-10-10 05:37:43 -0300890 struct vivi_dev *dev;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300891 struct vivi_fh *fh;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300892 int i;
Brandon Philipsaa9dbac2008-04-02 18:10:59 -0300893 int retval = 0;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300894
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300895 printk(KERN_DEBUG "vivi: open called (minor=%d)\n", minor);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300896
Trent Piephoa991f442007-10-10 05:37:43 -0300897 list_for_each_entry(dev, &vivi_devlist, vivi_devlist)
Mauro Carvalho Chehabf905c442007-12-10 04:07:03 -0300898 if (dev->vfd->minor == minor)
Trent Piephoa991f442007-10-10 05:37:43 -0300899 goto found;
900 return -ENODEV;
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300901
Trent Piephoa991f442007-10-10 05:37:43 -0300902found:
Brandon Philipsaa9dbac2008-04-02 18:10:59 -0300903 mutex_lock(&dev->mutex);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300904 dev->users++;
905
Brandon Philipsaa9dbac2008-04-02 18:10:59 -0300906 if (dev->users > 1) {
907 dev->users--;
908 retval = -EBUSY;
909 goto unlock;
910 }
911
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300912 dprintk(dev, 1, "open minor=%d type=%s users=%d\n", minor,
Trent Piephoa991f442007-10-10 05:37:43 -0300913 v4l2_type_names[V4L2_BUF_TYPE_VIDEO_CAPTURE], dev->users);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300914
915 /* allocate + initialize per filehandle data */
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300916 fh = kzalloc(sizeof(*fh), GFP_KERNEL);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300917 if (NULL == fh) {
918 dev->users--;
Brandon Philipsaa9dbac2008-04-02 18:10:59 -0300919 retval = -ENOMEM;
920 goto unlock;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300921 }
Brandon Philipsaa9dbac2008-04-02 18:10:59 -0300922unlock:
923 mutex_unlock(&dev->mutex);
924 if (retval)
925 return retval;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300926
927 file->private_data = fh;
928 fh->dev = dev;
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300929
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300930 fh->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
931 fh->fmt = &format;
932 fh->width = 640;
933 fh->height = 480;
934
935 /* Put all controls at a sane state */
936 for (i = 0; i < ARRAY_SIZE(vivi_qctrl); i++)
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300937 qctl_regs[i] = vivi_qctrl[i].default_value;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300938
939 /* Resets frame counters */
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300940 dev->h = 0;
941 dev->m = 0;
942 dev->s = 0;
Mauro Carvalho Chehabdfd8c042008-01-13 19:36:11 -0300943 dev->ms = 0;
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300944 dev->mv_count = 0;
945 dev->jiffies = jiffies;
946 sprintf(dev->timestr, "%02d:%02d:%02d:%03d",
Mauro Carvalho Chehabdfd8c042008-01-13 19:36:11 -0300947 dev->h, dev->m, dev->s, dev->ms);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300948
Mauro Carvalho Chehab5a037702007-08-02 23:31:54 -0300949 videobuf_queue_vmalloc_init(&fh->vb_vidq, &vivi_video_qops,
Mauro Carvalho Chehab55862ac2007-12-13 16:13:37 -0300950 NULL, &dev->slock, fh->type, V4L2_FIELD_INTERLACED,
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300951 sizeof(struct vivi_buffer), fh);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300952
Brandon Philips78718e52008-04-02 18:10:59 -0300953 vivi_start_thread(fh);
954
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300955 return 0;
956}
957
958static ssize_t
959vivi_read(struct file *file, char __user *data, size_t count, loff_t *ppos)
960{
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300961 struct vivi_fh *fh = file->private_data;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300962
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300963 if (fh->type == V4L2_BUF_TYPE_VIDEO_CAPTURE) {
Mauro Carvalho Chehabacb09af2007-07-29 22:56:11 -0300964 return videobuf_read_stream(&fh->vb_vidq, data, count, ppos, 0,
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300965 file->f_flags & O_NONBLOCK);
966 }
967 return 0;
968}
969
970static unsigned int
971vivi_poll(struct file *file, struct poll_table_struct *wait)
972{
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300973 struct vivi_fh *fh = file->private_data;
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300974 struct vivi_dev *dev = fh->dev;
Brandon Philips85c7c70bc2007-09-27 20:55:02 -0300975 struct videobuf_queue *q = &fh->vb_vidq;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300976
Harvey Harrison7e28adb2008-04-08 23:20:00 -0300977 dprintk(dev, 1, "%s\n", __func__);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300978
979 if (V4L2_BUF_TYPE_VIDEO_CAPTURE != fh->type)
980 return POLLERR;
981
Brandon Philips85c7c70bc2007-09-27 20:55:02 -0300982 return videobuf_poll_stream(file, q, wait);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300983}
984
Mauro Carvalho Chehabf905c442007-12-10 04:07:03 -0300985static int vivi_close(struct inode *inode, struct file *file)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300986{
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300987 struct vivi_fh *fh = file->private_data;
988 struct vivi_dev *dev = fh->dev;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300989 struct vivi_dmaqueue *vidq = &dev->vidq;
990
991 int minor = iminor(inode);
992
993 vivi_stop_thread(vidq);
Brandon Philips053fcb62007-11-13 20:11:26 -0300994 videobuf_stop(&fh->vb_vidq);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300995 videobuf_mmap_free(&fh->vb_vidq);
996
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -0300997 kfree(fh);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300998
Brandon Philipsaa9dbac2008-04-02 18:10:59 -0300999 mutex_lock(&dev->mutex);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001000 dev->users--;
Brandon Philipsaa9dbac2008-04-02 18:10:59 -03001001 mutex_unlock(&dev->mutex);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001002
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -03001003 dprintk(dev, 1, "close called (minor=%d, users=%d)\n",
1004 minor, dev->users);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001005
1006 return 0;
1007}
1008
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001009static int vivi_release(void)
Mauro Carvalho Chehabf905c442007-12-10 04:07:03 -03001010{
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001011 struct vivi_dev *dev;
1012 struct list_head *list;
Mauro Carvalho Chehabf905c442007-12-10 04:07:03 -03001013
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001014 while (!list_empty(&vivi_devlist)) {
1015 list = vivi_devlist.next;
1016 list_del(list);
1017 dev = list_entry(list, struct vivi_dev, vivi_devlist);
1018
1019 if (-1 != dev->vfd->minor)
1020 video_unregister_device(dev->vfd);
1021 else
1022 video_device_release(dev->vfd);
1023
1024 kfree(dev);
1025 }
Mauro Carvalho Chehabf905c442007-12-10 04:07:03 -03001026
1027 return 0;
1028}
1029
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -03001030static int vivi_mmap(struct file *file, struct vm_area_struct *vma)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001031{
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -03001032 struct vivi_fh *fh = file->private_data;
1033 struct vivi_dev *dev = fh->dev;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001034 int ret;
1035
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -03001036 dprintk(dev, 1, "mmap called, vma=0x%08lx\n", (unsigned long)vma);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001037
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -03001038 ret = videobuf_mmap_mapper(&fh->vb_vidq, vma);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001039
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -03001040 dprintk(dev, 1, "vma start=0x%08lx, size=%ld, ret=%d\n",
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001041 (unsigned long)vma->vm_start,
1042 (unsigned long)vma->vm_end-(unsigned long)vma->vm_start,
1043 ret);
1044
1045 return ret;
1046}
1047
Arjan van de Venfa027c22007-02-12 00:55:33 -08001048static const struct file_operations vivi_fops = {
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001049 .owner = THIS_MODULE,
1050 .open = vivi_open,
Mauro Carvalho Chehabf905c442007-12-10 04:07:03 -03001051 .release = vivi_close,
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001052 .read = vivi_read,
1053 .poll = vivi_poll,
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001054 .ioctl = video_ioctl2, /* V4L2 ioctl handler */
Mauro Carvalho Chehabfbde31d2008-04-13 14:57:44 -03001055 .compat_ioctl = v4l_compat_ioctl32,
Mauro Carvalho Chehab5a037702007-08-02 23:31:54 -03001056 .mmap = vivi_mmap,
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001057 .llseek = no_llseek,
1058};
1059
Mauro Carvalho Chehabf905c442007-12-10 04:07:03 -03001060static struct video_device vivi_template = {
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001061 .name = "vivi",
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001062 .type = VID_TYPE_CAPTURE,
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001063 .fops = &vivi_fops,
1064 .minor = -1,
Mauro Carvalho Chehabf905c442007-12-10 04:07:03 -03001065 .release = video_device_release,
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001066
1067 .vidioc_querycap = vidioc_querycap,
1068 .vidioc_enum_fmt_cap = vidioc_enum_fmt_cap,
1069 .vidioc_g_fmt_cap = vidioc_g_fmt_cap,
1070 .vidioc_try_fmt_cap = vidioc_try_fmt_cap,
1071 .vidioc_s_fmt_cap = vidioc_s_fmt_cap,
1072 .vidioc_reqbufs = vidioc_reqbufs,
1073 .vidioc_querybuf = vidioc_querybuf,
1074 .vidioc_qbuf = vidioc_qbuf,
1075 .vidioc_dqbuf = vidioc_dqbuf,
1076 .vidioc_s_std = vidioc_s_std,
1077 .vidioc_enum_input = vidioc_enum_input,
1078 .vidioc_g_input = vidioc_g_input,
1079 .vidioc_s_input = vidioc_s_input,
1080 .vidioc_queryctrl = vidioc_queryctrl,
1081 .vidioc_g_ctrl = vidioc_g_ctrl,
1082 .vidioc_s_ctrl = vidioc_s_ctrl,
1083 .vidioc_streamon = vidioc_streamon,
1084 .vidioc_streamoff = vidioc_streamoff,
Mauro Carvalho Chehab0dfa9ab2006-08-08 09:10:10 -03001085#ifdef CONFIG_VIDEO_V4L1_COMPAT
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001086 .vidiocgmbuf = vidiocgmbuf,
1087#endif
Mauro Carvalho Chehab784c6682007-12-13 06:35:26 -03001088 .tvnorms = V4L2_STD_525_60,
Mauro Carvalho Chehabe75f9ce2006-11-20 13:19:20 -03001089 .current_norm = V4L2_STD_NTSC_M,
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001090};
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001091/* -----------------------------------------------------------------
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001092 Initialization and module stuff
1093 ------------------------------------------------------------------*/
1094
1095static int __init vivi_init(void)
1096{
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001097 int ret = -ENOMEM, i;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001098 struct vivi_dev *dev;
Mauro Carvalho Chehabf905c442007-12-10 04:07:03 -03001099 struct video_device *vfd;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001100
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001101 for (i = 0; i < n_devs; i++) {
1102 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
1103 if (NULL == dev)
1104 break;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001105
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001106 list_add_tail(&dev->vivi_devlist, &vivi_devlist);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001107
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001108 /* init video dma queues */
1109 INIT_LIST_HEAD(&dev->vidq.active);
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001110 init_waitqueue_head(&dev->vidq.wq);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001111
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001112 /* initialize locks */
Mauro Carvalho Chehab55862ac2007-12-13 16:13:37 -03001113 spin_lock_init(&dev->slock);
Brandon Philipsaa9dbac2008-04-02 18:10:59 -03001114 mutex_init(&dev->mutex);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001115
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001116 vfd = video_device_alloc();
1117 if (NULL == vfd)
1118 break;
Mauro Carvalho Chehabf905c442007-12-10 04:07:03 -03001119
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001120 *vfd = vivi_template;
Mauro Carvalho Chehabf905c442007-12-10 04:07:03 -03001121
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001122 ret = video_register_device(vfd, VFL_TYPE_GRABBER, video_nr);
1123 if (ret < 0)
1124 break;
Mauro Carvalho Chehabf905c442007-12-10 04:07:03 -03001125
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001126 snprintf(vfd->name, sizeof(vfd->name), "%s (%i)",
1127 vivi_template.name, vfd->minor);
1128
1129 if (video_nr >= 0)
1130 video_nr++;
1131
1132 dev->vfd = vfd;
1133 }
1134
1135 if (ret < 0) {
1136 vivi_release();
1137 printk(KERN_INFO "Error %d while loading vivi driver\n", ret);
1138 } else
1139 printk(KERN_INFO "Video Technology Magazine Virtual Video "
1140 "Capture Board successfully loaded.\n");
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001141 return ret;
1142}
1143
1144static void __exit vivi_exit(void)
1145{
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001146 vivi_release();
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001147}
1148
1149module_init(vivi_init);
1150module_exit(vivi_exit);
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001151
1152MODULE_DESCRIPTION("Video Technology Magazine Virtual Video Capture Board");
1153MODULE_AUTHOR("Mauro Carvalho Chehab, Ted Walther and John Sokol");
1154MODULE_LICENSE("Dual BSD/GPL");
1155
1156module_param(video_nr, int, 0);
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001157MODULE_PARM_DESC(video_nr, "video iminor start number");
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001158
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001159module_param(n_devs, int, 0);
1160MODULE_PARM_DESC(n_devs, "number of video devices to create");
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001161
Mauro Carvalho Chehab8996b3f2007-12-13 06:36:22 -03001162module_param_named(debug, vivi_template.debug, int, 0444);
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001163MODULE_PARM_DESC(debug, "activates debug info");
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001164
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001165module_param(vid_limit, int, 0644);
1166MODULE_PARM_DESC(vid_limit, "capture memory limit in megabytes");