blob: 889e6611e0398c2f40bd0baae7e8d1392c03cea3 [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 */
57static struct video_device vivi; /* Video device */
58static int video_nr = -1; /* /dev/videoN, -1 for autodetect */
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -030059static int n_devs = 1; /* Number of virtual devices */
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -030060
61/* supported controls */
62static struct v4l2_queryctrl vivi_qctrl[] = {
63 {
64 .id = V4L2_CID_AUDIO_VOLUME,
65 .name = "Volume",
66 .minimum = 0,
67 .maximum = 65535,
68 .step = 65535/100,
69 .default_value = 65535,
70 .flags = 0,
71 .type = V4L2_CTRL_TYPE_INTEGER,
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -030072 }, {
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -030073 .id = V4L2_CID_BRIGHTNESS,
74 .type = V4L2_CTRL_TYPE_INTEGER,
75 .name = "Brightness",
76 .minimum = 0,
77 .maximum = 255,
78 .step = 1,
79 .default_value = 127,
80 .flags = 0,
81 }, {
82 .id = V4L2_CID_CONTRAST,
83 .type = V4L2_CTRL_TYPE_INTEGER,
84 .name = "Contrast",
85 .minimum = 0,
86 .maximum = 255,
87 .step = 0x1,
88 .default_value = 0x10,
89 .flags = 0,
90 }, {
91 .id = V4L2_CID_SATURATION,
92 .type = V4L2_CTRL_TYPE_INTEGER,
93 .name = "Saturation",
94 .minimum = 0,
95 .maximum = 255,
96 .step = 0x1,
97 .default_value = 127,
98 .flags = 0,
99 }, {
100 .id = V4L2_CID_HUE,
101 .type = V4L2_CTRL_TYPE_INTEGER,
102 .name = "Hue",
103 .minimum = -128,
104 .maximum = 127,
105 .step = 0x1,
106 .default_value = 0,
107 .flags = 0,
108 }
109};
110
111static int qctl_regs[ARRAY_SIZE(vivi_qctrl)];
112
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300113#define dprintk(level, fmt, arg...) \
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300114 do { \
115 if (vivi.debug >= (level)) \
116 printk(KERN_DEBUG "vivi: " fmt , ## arg); \
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300117 } while (0)
118
119/* ------------------------------------------------------------------
120 Basic structures
121 ------------------------------------------------------------------*/
122
123struct vivi_fmt {
124 char *name;
125 u32 fourcc; /* v4l2 format id */
126 int depth;
127};
128
129static struct vivi_fmt format = {
130 .name = "4:2:2, packed, YUYV",
131 .fourcc = V4L2_PIX_FMT_YUYV,
132 .depth = 16,
133};
134
135struct sg_to_addr {
136 int pos;
137 struct scatterlist *sg;
138};
139
140/* buffer for one video frame */
141struct vivi_buffer {
142 /* common v4l buffer stuff -- must be first */
143 struct videobuf_buffer vb;
144
145 struct vivi_fmt *fmt;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300146};
147
148struct vivi_dmaqueue {
149 struct list_head active;
150 struct list_head queued;
151 struct timer_list timeout;
152
153 /* thread for generating video stream*/
154 struct task_struct *kthread;
155 wait_queue_head_t wq;
156 /* Counters to control fps rate */
157 int frame;
158 int ini_jiffies;
159};
160
161static LIST_HEAD(vivi_devlist);
162
163struct vivi_dev {
164 struct list_head vivi_devlist;
165
Matthias Kaehlcke51b54022007-07-02 10:19:38 -0300166 struct mutex lock;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300167
168 int users;
169
170 /* various device info */
Mauro Carvalho Chehabf905c442007-12-10 04:07:03 -0300171 struct video_device *vfd;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300172
173 struct vivi_dmaqueue vidq;
174
175 /* Several counters */
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300176 int h, m, s, us, jiffies;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300177 char timestr[13];
Mauro Carvalho Chehab025341d2007-12-10 04:43:38 -0300178
179 int mv_count; /* Controls bars movement */
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300180};
181
182struct vivi_fh {
183 struct vivi_dev *dev;
184
185 /* video capture */
186 struct vivi_fmt *fmt;
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300187 unsigned int width, height;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300188 struct videobuf_queue vb_vidq;
189
190 enum v4l2_buf_type type;
191};
192
193/* ------------------------------------------------------------------
194 DMA and thread functions
195 ------------------------------------------------------------------*/
196
197/* Bars and Colors should match positions */
198
199enum colors {
200 WHITE,
201 AMBAR,
202 CYAN,
203 GREEN,
204 MAGENTA,
205 RED,
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300206 BLUE,
207 BLACK,
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300208};
209
210static u8 bars[8][3] = {
211 /* R G B */
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300212 {204, 204, 204}, /* white */
213 {208, 208, 0}, /* ambar */
214 { 0, 206, 206}, /* cyan */
215 { 0, 239, 0}, /* green */
216 {239, 0, 239}, /* magenta */
217 {205, 0, 0}, /* red */
218 { 0, 0, 255}, /* blue */
219 { 0, 0, 0}, /* black */
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300220};
221
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300222#define TO_Y(r, g, b) \
223 (((16829 * r + 33039 * g + 6416 * b + 32768) >> 16) + 16)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300224/* RGB to V(Cr) Color transform */
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300225#define TO_V(r, g, b) \
226 (((28784 * r - 24103 * g - 4681 * b + 32768) >> 16) + 128)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300227/* RGB to U(Cb) Color transform */
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300228#define TO_U(r, g, b) \
229 (((-9714 * r - 19070 * g + 28784 * b + 32768) >> 16) + 128)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300230
231#define TSTAMP_MIN_Y 24
232#define TSTAMP_MAX_Y TSTAMP_MIN_Y+15
233#define TSTAMP_MIN_X 64
234
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300235static void gen_line(char *basep, int inipos, int wmax,
236 int hmax, int line, int count, char *timestr)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300237{
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300238 int w, i, j, y;
239 int pos = inipos;
240 char *p, *s;
241 u8 chr, r, g, b, color;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300242
243 /* We will just duplicate the second pixel at the packet */
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300244 wmax /= 2;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300245
246 /* Generate a standard color bar pattern */
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300247 for (w = 0; w < wmax; w++) {
248 int colorpos = ((w + count) * 8/(wmax + 1)) % 8;
249 r = bars[colorpos][0];
250 g = bars[colorpos][1];
251 b = bars[colorpos][2];
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300252
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300253 for (color = 0; color < 4; color++) {
254 p = basep + pos;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300255
256 switch (color) {
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300257 case 0:
258 case 2:
259 *p = TO_Y(r, g, b); /* Luma */
260 break;
261 case 1:
262 *p = TO_U(r, g, b); /* Cb */
263 break;
264 case 3:
265 *p = TO_V(r, g, b); /* Cr */
266 break;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300267 }
268 pos++;
269 }
270 }
271
272 /* Checks if it is possible to show timestamp */
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300273 if (TSTAMP_MAX_Y >= hmax)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300274 goto end;
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300275 if (TSTAMP_MIN_X + strlen(timestr) >= wmax)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300276 goto end;
277
278 /* Print stream time */
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300279 if (line >= TSTAMP_MIN_Y && line <= TSTAMP_MAX_Y) {
280 j = TSTAMP_MIN_X;
281 for (s = timestr; *s; s++) {
282 chr = rom8x16_bits[(*s-0x30)*16+line-TSTAMP_MIN_Y];
283 for (i = 0; i < 7; i++) {
284 if (chr & 1 << (7 - i)) {
285 /* Font color*/
286 r = 0;
287 g = 198;
288 b = 0;
289 } else {
290 /* Background color */
291 r = bars[BLACK][0];
292 g = bars[BLACK][1];
293 b = bars[BLACK][2];
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300294 }
295
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300296 pos = inipos + j * 2;
297 for (color = 0; color < 4; color++) {
298 p = basep + pos;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300299
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300300 y = TO_Y(r, g, b);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300301
302 switch (color) {
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300303 case 0:
304 case 2:
305 *p = TO_Y(r, g, b); /* Luma */
306 break;
307 case 1:
308 *p = TO_U(r, g, b); /* Cb */
309 break;
310 case 3:
311 *p = TO_V(r, g, b); /* Cr */
312 break;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300313 }
314 pos++;
315 }
316 j++;
317 }
318 }
319 }
320
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300321end:
Mauro Carvalho Chehabb50e7fe2007-01-25 05:00:01 -0300322 return;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -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;
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300330 char *tmpbuf = kmalloc(wmax * 2, GFP_KERNEL);
331 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
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300336 for (h = 0; h < hmax; h++) {
Mauro Carvalho Chehab025341d2007-12-10 04:43:38 -0300337 gen_line(tmpbuf, 0, wmax, hmax, h, dev->mv_count,
Mauro Carvalho Chehab3bef5e42007-09-22 02:01:33 -0300338 dev->timestr);
Mauro Carvalho Chehab5a037702007-08-02 23:31:54 -0300339 /* FIXME: replacing to __copy_to_user */
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300340 if (copy_to_user(vbuf + pos, tmpbuf, wmax * 2) != 0)
341 dprintk(2, "vivifill copy_to_user failed.\n");
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300342 pos += wmax*2;
343 }
344
Mauro Carvalho Chehab025341d2007-12-10 04:43:38 -0300345 dev->mv_count++;
Mauro Carvalho Chehab3bef5e42007-09-22 02:01:33 -0300346
Mauro Carvalho Chehab5a037702007-08-02 23:31:54 -0300347 kfree(tmpbuf);
348
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300349 /* Updates stream time */
350
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300351 dev->us += jiffies_to_usecs(jiffies-dev->jiffies);
352 dev->jiffies = jiffies;
353 if (dev->us >= 1000000) {
354 dev->us -= 1000000;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300355 dev->s++;
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300356 if (dev->s >= 60) {
357 dev->s -= 60;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300358 dev->m++;
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300359 if (dev->m > 60) {
360 dev->m -= 60;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300361 dev->h++;
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300362 if (dev->h > 24)
363 dev->h -= 24;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300364 }
365 }
366 }
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300367 sprintf(dev->timestr, "%02d:%02d:%02d:%03d",
368 dev->h, dev->m, dev->s, (dev->us + 500) / 1000);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300369
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300370 dprintk(2, "vivifill at %s: Buffer 0x%08lx size= %d\n", dev->timestr,
371 (unsigned long)tmpbuf, pos);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300372
373 /* Advice that buffer was filled */
Brandon Philips0fc06862007-11-06 20:02:36 -0300374 buf->vb.state = VIDEOBUF_DONE;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300375 buf->vb.field_count++;
376 do_gettimeofday(&ts);
377 buf->vb.ts = ts;
378
379 list_del(&buf->vb.queue);
380 wake_up(&buf->vb.done);
381}
382
383static int restart_video_queue(struct vivi_dmaqueue *dma_q);
384
385static void vivi_thread_tick(struct vivi_dmaqueue *dma_q)
386{
387 struct vivi_buffer *buf;
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300388 struct vivi_dev *dev = container_of(dma_q, struct vivi_dev, vidq);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300389
390 int bc;
391
392 /* Announces videobuf that all went ok */
393 for (bc = 0;; bc++) {
394 if (list_empty(&dma_q->active)) {
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300395 dprintk(1, "No active queue to serve\n");
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300396 break;
397 }
398
399 buf = list_entry(dma_q->active.next,
400 struct vivi_buffer, vb.queue);
401
402 /* Nobody is waiting something to be done, just return */
403 if (!waitqueue_active(&buf->vb.done)) {
404 mod_timer(&dma_q->timeout, jiffies+BUFFER_TIMEOUT);
405 return;
406 }
407
408 do_gettimeofday(&buf->vb.ts);
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300409 dprintk(2, "[%p/%d] wakeup\n", buf, buf->vb. i);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300410
411 /* Fill buffer */
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300412 vivi_fillbuff(dev, buf);
Mauro Carvalho Chehab0b600512007-01-14 08:33:24 -0300413
414 if (list_empty(&dma_q->active)) {
415 del_timer(&dma_q->timeout);
416 } else {
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300417 mod_timer(&dma_q->timeout, jiffies + BUFFER_TIMEOUT);
Mauro Carvalho Chehab0b600512007-01-14 08:33:24 -0300418 }
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300419 }
420 if (bc != 1)
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300421 dprintk(1, "%s: %d buffers handled (should be 1)\n",
422 __FUNCTION__, bc);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300423}
424
Adrian Bunk972c3512006-04-27 21:06:50 -0300425static void vivi_sleep(struct vivi_dmaqueue *dma_q)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300426{
427 int timeout;
428 DECLARE_WAITQUEUE(wait, current);
429
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300430 dprintk(1, "%s dma_q=0x%08lx\n", __FUNCTION__, (unsigned long)dma_q);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300431
432 add_wait_queue(&dma_q->wq, &wait);
433 if (!kthread_should_stop()) {
434 dma_q->frame++;
435
436 /* Calculate time to wake up */
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300437 timeout = dma_q->ini_jiffies+
438 msecs_to_jiffies((dma_q->frame*WAKE_NUMERATOR * 1000)
439 / WAKE_DENOMINATOR) - jiffies;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300440
441 if (timeout <= 0) {
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300442 int old = dma_q->frame;
443 dma_q->frame = (jiffies_to_msecs(jiffies -
444 dma_q->ini_jiffies) *
445 WAKE_DENOMINATOR) /
446 (WAKE_NUMERATOR * 1000) + 1;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300447
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300448 timeout = dma_q->ini_jiffies+
449 msecs_to_jiffies((dma_q->frame *
450 WAKE_NUMERATOR * 1000)
451 / WAKE_DENOMINATOR) - jiffies;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300452
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300453 dprintk(1, "underrun, losed %d frames. "
454 "Now, frame is %d. Waking on %d jiffies\n",
455 dma_q->frame-old, dma_q->frame, timeout);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300456 } else
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300457 dprintk(1, "will sleep for %i jiffies\n", timeout);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300458
459 vivi_thread_tick(dma_q);
460
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300461 schedule_timeout_interruptible(timeout);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300462 }
463
464 remove_wait_queue(&dma_q->wq, &wait);
465 try_to_freeze();
466}
467
Adrian Bunk972c3512006-04-27 21:06:50 -0300468static int vivi_thread(void *data)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300469{
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300470 struct vivi_dmaqueue *dma_q = data;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300471
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300472 dprintk(1, "thread started\n");
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300473
Mauro Carvalho Chehab0b600512007-01-14 08:33:24 -0300474 mod_timer(&dma_q->timeout, jiffies+BUFFER_TIMEOUT);
Rafael J. Wysocki83144182007-07-17 04:03:35 -0700475 set_freezable();
Mauro Carvalho Chehab0b600512007-01-14 08:33:24 -0300476
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300477 for (;;) {
478 vivi_sleep(dma_q);
479
480 if (kthread_should_stop())
481 break;
482 }
483 dprintk(1, "thread: exit\n");
484 return 0;
485}
486
Adrian Bunk972c3512006-04-27 21:06:50 -0300487static int vivi_start_thread(struct vivi_dmaqueue *dma_q)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300488{
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300489 dma_q->frame = 0;
490 dma_q->ini_jiffies = jiffies;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300491
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300492 dprintk(1, "%s\n", __FUNCTION__);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300493
494 dma_q->kthread = kthread_run(vivi_thread, dma_q, "vivi");
495
Akinobu Mita054afee2006-12-20 10:04:00 -0300496 if (IS_ERR(dma_q->kthread)) {
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300497 printk(KERN_ERR "vivi: kernel_thread() failed\n");
Akinobu Mita054afee2006-12-20 10:04:00 -0300498 return PTR_ERR(dma_q->kthread);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300499 }
Mauro Carvalho Chehab0b600512007-01-14 08:33:24 -0300500 /* Wakes thread */
501 wake_up_interruptible(&dma_q->wq);
502
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300503 dprintk(1, "returning from %s\n", __FUNCTION__);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300504 return 0;
505}
506
Adrian Bunk972c3512006-04-27 21:06:50 -0300507static void vivi_stop_thread(struct vivi_dmaqueue *dma_q)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300508{
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300509 dprintk(1, "%s\n", __FUNCTION__);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300510 /* shutdown control thread */
511 if (dma_q->kthread) {
512 kthread_stop(dma_q->kthread);
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300513 dma_q->kthread = NULL;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300514 }
515}
516
517static int restart_video_queue(struct vivi_dmaqueue *dma_q)
518{
519 struct vivi_buffer *buf, *prev;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300520
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300521 dprintk(1, "%s dma_q=0x%08lx\n", __FUNCTION__, (unsigned long)dma_q);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300522
523 if (!list_empty(&dma_q->active)) {
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300524 buf = list_entry(dma_q->active.next,
525 struct vivi_buffer, vb.queue);
526 dprintk(2, "restart_queue [%p/%d]: restart dma\n",
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300527 buf, buf->vb.i);
528
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300529 dprintk(1, "Restarting video dma\n");
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300530 vivi_stop_thread(dma_q);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300531
532 /* cancel all outstanding capture / vbi requests */
Trent Piephoa991f442007-10-10 05:37:43 -0300533 list_for_each_entry_safe(buf, prev, &dma_q->active, vb.queue) {
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300534 list_del(&buf->vb.queue);
Brandon Philips0fc06862007-11-06 20:02:36 -0300535 buf->vb.state = VIDEOBUF_ERROR;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300536 wake_up(&buf->vb.done);
537 }
538 mod_timer(&dma_q->timeout, jiffies+BUFFER_TIMEOUT);
539
540 return 0;
541 }
542
543 prev = NULL;
544 for (;;) {
545 if (list_empty(&dma_q->queued))
546 return 0;
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300547 buf = list_entry(dma_q->queued.next,
548 struct vivi_buffer, vb.queue);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300549 if (NULL == prev) {
550 list_del(&buf->vb.queue);
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300551 list_add_tail(&buf->vb.queue, &dma_q->active);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300552
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300553 dprintk(1, "Restarting video dma\n");
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300554 vivi_stop_thread(dma_q);
555 vivi_start_thread(dma_q);
556
Brandon Philips0fc06862007-11-06 20:02:36 -0300557 buf->vb.state = VIDEOBUF_ACTIVE;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300558 mod_timer(&dma_q->timeout, jiffies+BUFFER_TIMEOUT);
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300559 dprintk(2, "[%p/%d] restart_queue - first active\n",
560 buf, buf->vb.i);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300561
562 } else if (prev->vb.width == buf->vb.width &&
563 prev->vb.height == buf->vb.height &&
564 prev->fmt == buf->fmt) {
565 list_del(&buf->vb.queue);
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300566 list_add_tail(&buf->vb.queue, &dma_q->active);
Brandon Philips0fc06862007-11-06 20:02:36 -0300567 buf->vb.state = VIDEOBUF_ACTIVE;
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300568 dprintk(2, "[%p/%d] restart_queue - move to active\n",
569 buf, buf->vb.i);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300570 } else {
571 return 0;
572 }
573 prev = buf;
574 }
575}
576
577static void vivi_vid_timeout(unsigned long data)
578{
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300579 struct vivi_dev *dev = (struct vivi_dev *)data;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300580 struct vivi_dmaqueue *vidq = &dev->vidq;
581 struct vivi_buffer *buf;
582
583 while (!list_empty(&vidq->active)) {
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300584 buf = list_entry(vidq->active.next,
585 struct vivi_buffer, vb.queue);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300586 list_del(&buf->vb.queue);
Brandon Philips0fc06862007-11-06 20:02:36 -0300587 buf->vb.state = VIDEOBUF_ERROR;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300588 wake_up(&buf->vb.done);
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300589 printk(KERN_INFO "vivi/0: [%p/%d] timeout\n", buf, buf->vb.i);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300590 }
591
592 restart_video_queue(vidq);
593}
594
595/* ------------------------------------------------------------------
596 Videobuf operations
597 ------------------------------------------------------------------*/
598static int
599buffer_setup(struct videobuf_queue *vq, unsigned int *count, unsigned int *size)
600{
601 struct vivi_fh *fh = vq->priv_data;
602
603 *size = fh->width*fh->height*2;
604
605 if (0 == *count)
606 *count = 32;
Mauro Carvalho Chehab6bb27902007-08-23 16:41:14 -0300607
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300608 while (*size * *count > vid_limit * 1024 * 1024)
609 (*count)--;
Mauro Carvalho Chehab6bb27902007-08-23 16:41:14 -0300610
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300611 dprintk(1, "%s, count=%d, size=%d\n", __FUNCTION__, *count, *size);
Mauro Carvalho Chehab6bb27902007-08-23 16:41:14 -0300612
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300613 return 0;
614}
615
Adrian Bunk972c3512006-04-27 21:06:50 -0300616static void free_buffer(struct videobuf_queue *vq, struct vivi_buffer *buf)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300617{
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300618 dprintk(1, "%s\n", __FUNCTION__);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300619
620 if (in_interrupt())
621 BUG();
622
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300623 videobuf_waiton(&buf->vb, 0, 0);
Mauro Carvalho Chehab5a037702007-08-02 23:31:54 -0300624 videobuf_vmalloc_free(&buf->vb);
Brandon Philips0fc06862007-11-06 20:02:36 -0300625 buf->vb.state = VIDEOBUF_NEEDS_INIT;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300626}
627
628#define norm_maxw() 1024
629#define norm_maxh() 768
630static int
631buffer_prepare(struct videobuf_queue *vq, struct videobuf_buffer *vb,
632 enum v4l2_field field)
633{
634 struct vivi_fh *fh = vq->priv_data;
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300635 struct vivi_buffer *buf = container_of(vb, struct vivi_buffer, vb);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300636 int rc, init_buffer = 0;
637
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300638 dprintk(1, "%s, field=%d\n", __FUNCTION__, field);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300639
640 BUG_ON(NULL == fh->fmt);
641 if (fh->width < 48 || fh->width > norm_maxw() ||
642 fh->height < 32 || fh->height > norm_maxh())
643 return -EINVAL;
644 buf->vb.size = fh->width*fh->height*2;
645 if (0 != buf->vb.baddr && buf->vb.bsize < buf->vb.size)
646 return -EINVAL;
647
648 if (buf->fmt != fh->fmt ||
649 buf->vb.width != fh->width ||
650 buf->vb.height != fh->height ||
651 buf->vb.field != field) {
652 buf->fmt = fh->fmt;
653 buf->vb.width = fh->width;
654 buf->vb.height = fh->height;
655 buf->vb.field = field;
656 init_buffer = 1;
657 }
658
Brandon Philips0fc06862007-11-06 20:02:36 -0300659 if (VIDEOBUF_NEEDS_INIT == buf->vb.state) {
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300660 rc = videobuf_iolock(vq, &buf->vb, NULL);
661 if (rc < 0)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300662 goto fail;
663 }
664
Brandon Philips0fc06862007-11-06 20:02:36 -0300665 buf->vb.state = VIDEOBUF_PREPARED;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300666
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300667 return 0;
668
669fail:
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300670 free_buffer(vq, buf);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300671 return rc;
672}
673
674static void
675buffer_queue(struct videobuf_queue *vq, struct videobuf_buffer *vb)
676{
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300677 struct vivi_buffer *buf = container_of(vb, struct vivi_buffer, vb);
678 struct vivi_fh *fh = vq->priv_data;
679 struct vivi_dev *dev = fh->dev;
680 struct vivi_dmaqueue *vidq = &dev->vidq;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300681 struct vivi_buffer *prev;
682
683 if (!list_empty(&vidq->queued)) {
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300684 dprintk(1, "adding vb queue=0x%08lx\n",
685 (unsigned long)&buf->vb.queue);
686 list_add_tail(&buf->vb.queue, &vidq->queued);
Brandon Philips0fc06862007-11-06 20:02:36 -0300687 buf->vb.state = VIDEOBUF_QUEUED;
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300688 dprintk(2, "[%p/%d] buffer_queue - append to queued\n",
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300689 buf, buf->vb.i);
690 } else if (list_empty(&vidq->active)) {
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300691 list_add_tail(&buf->vb.queue, &vidq->active);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300692
Brandon Philips0fc06862007-11-06 20:02:36 -0300693 buf->vb.state = VIDEOBUF_ACTIVE;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300694 mod_timer(&vidq->timeout, jiffies+BUFFER_TIMEOUT);
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300695 dprintk(2, "[%p/%d] buffer_queue - first active\n",
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300696 buf, buf->vb.i);
697
698 vivi_start_thread(vidq);
699 } else {
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300700 prev = list_entry(vidq->active.prev,
701 struct vivi_buffer, vb.queue);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300702 if (prev->vb.width == buf->vb.width &&
703 prev->vb.height == buf->vb.height &&
704 prev->fmt == buf->fmt) {
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300705 list_add_tail(&buf->vb.queue, &vidq->active);
Brandon Philips0fc06862007-11-06 20:02:36 -0300706 buf->vb.state = VIDEOBUF_ACTIVE;
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300707 dprintk(2, "[%p/%d] buffer_queue - append to active\n",
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300708 buf, buf->vb.i);
709
710 } else {
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300711 list_add_tail(&buf->vb.queue, &vidq->queued);
Brandon Philips0fc06862007-11-06 20:02:36 -0300712 buf->vb.state = VIDEOBUF_QUEUED;
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300713 dprintk(2, "[%p/%d] buffer_queue - first queued\n",
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300714 buf, buf->vb.i);
715 }
716 }
717}
718
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300719static void buffer_release(struct videobuf_queue *vq,
720 struct videobuf_buffer *vb)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300721{
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300722 struct vivi_buffer *buf = container_of(vb, struct vivi_buffer, vb);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300723 struct vivi_fh *fh = vq->priv_data;
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300724 struct vivi_dev *dev = (struct vivi_dev *)fh->dev;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300725 struct vivi_dmaqueue *vidq = &dev->vidq;
726
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300727 dprintk(1, "%s\n", __FUNCTION__);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300728
729 vivi_stop_thread(vidq);
730
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300731 free_buffer(vq, buf);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300732}
733
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300734static struct videobuf_queue_ops vivi_video_qops = {
735 .buf_setup = buffer_setup,
736 .buf_prepare = buffer_prepare,
737 .buf_queue = buffer_queue,
738 .buf_release = buffer_release,
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300739};
740
741/* ------------------------------------------------------------------
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300742 IOCTL vidioc handling
743 ------------------------------------------------------------------*/
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300744static int vidioc_querycap(struct file *file, void *priv,
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300745 struct v4l2_capability *cap)
746{
747 strcpy(cap->driver, "vivi");
748 strcpy(cap->card, "vivi");
749 cap->version = VIVI_VERSION;
750 cap->capabilities = V4L2_CAP_VIDEO_CAPTURE |
751 V4L2_CAP_STREAMING |
752 V4L2_CAP_READWRITE;
753 return 0;
754}
755
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300756static int vidioc_enum_fmt_cap(struct file *file, void *priv,
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300757 struct v4l2_fmtdesc *f)
758{
759 if (f->index > 0)
760 return -EINVAL;
761
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300762 strlcpy(f->description, format.name, sizeof(f->description));
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300763 f->pixelformat = format.fourcc;
764 return 0;
765}
766
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300767static int vidioc_g_fmt_cap(struct file *file, void *priv,
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300768 struct v4l2_format *f)
769{
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300770 struct vivi_fh *fh = priv;
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300771
772 f->fmt.pix.width = fh->width;
773 f->fmt.pix.height = fh->height;
774 f->fmt.pix.field = fh->vb_vidq.field;
775 f->fmt.pix.pixelformat = fh->fmt->fourcc;
776 f->fmt.pix.bytesperline =
777 (f->fmt.pix.width * fh->fmt->depth) >> 3;
778 f->fmt.pix.sizeimage =
779 f->fmt.pix.height * f->fmt.pix.bytesperline;
780
781 return (0);
782}
783
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300784static int vidioc_try_fmt_cap(struct file *file, void *priv,
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300785 struct v4l2_format *f)
786{
787 struct vivi_fmt *fmt;
788 enum v4l2_field field;
789 unsigned int maxw, maxh;
790
791 if (format.fourcc != f->fmt.pix.pixelformat) {
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300792 dprintk(1, "Fourcc format (0x%08x) invalid. Driver accepts "
793 "only 0x%08x\n", f->fmt.pix.pixelformat, format.fourcc);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300794 return -EINVAL;
795 }
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300796 fmt = &format;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300797
798 field = f->fmt.pix.field;
799
800 if (field == V4L2_FIELD_ANY) {
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300801 field = V4L2_FIELD_INTERLACED;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300802 } else if (V4L2_FIELD_INTERLACED != field) {
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300803 dprintk(1, "Field type invalid.\n");
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300804 return -EINVAL;
805 }
806
807 maxw = norm_maxw();
808 maxh = norm_maxh();
809
810 f->fmt.pix.field = field;
811 if (f->fmt.pix.height < 32)
812 f->fmt.pix.height = 32;
813 if (f->fmt.pix.height > maxh)
814 f->fmt.pix.height = maxh;
815 if (f->fmt.pix.width < 48)
816 f->fmt.pix.width = 48;
817 if (f->fmt.pix.width > maxw)
818 f->fmt.pix.width = maxw;
819 f->fmt.pix.width &= ~0x03;
820 f->fmt.pix.bytesperline =
821 (f->fmt.pix.width * fmt->depth) >> 3;
822 f->fmt.pix.sizeimage =
823 f->fmt.pix.height * f->fmt.pix.bytesperline;
824
825 return 0;
826}
827
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300828/*FIXME: This seems to be generic enough to be at videodev2 */
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300829static int vidioc_s_fmt_cap(struct file *file, void *priv,
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300830 struct v4l2_format *f)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300831{
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300832 struct vivi_fh *fh = priv;
833 int ret = vidioc_try_fmt_cap(file, fh, f);
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300834 if (ret < 0)
835 return (ret);
836
837 fh->fmt = &format;
838 fh->width = f->fmt.pix.width;
839 fh->height = f->fmt.pix.height;
840 fh->vb_vidq.field = f->fmt.pix.field;
841 fh->type = f->type;
842
843 return (0);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300844}
845
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300846static int vidioc_reqbufs(struct file *file, void *priv,
847 struct v4l2_requestbuffers *p)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300848{
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300849 struct vivi_fh *fh = priv;
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300850
851 return (videobuf_reqbufs(&fh->vb_vidq, p));
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300852}
853
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300854static int vidioc_querybuf(struct file *file, void *priv, struct v4l2_buffer *p)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300855{
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300856 struct vivi_fh *fh = priv;
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300857
858 return (videobuf_querybuf(&fh->vb_vidq, p));
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300859}
860
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300861static int vidioc_qbuf(struct file *file, void *priv, struct v4l2_buffer *p)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300862{
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300863 struct vivi_fh *fh = priv;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300864
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300865 return (videobuf_qbuf(&fh->vb_vidq, p));
866}
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300867
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300868static int vidioc_dqbuf(struct file *file, void *priv, struct v4l2_buffer *p)
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300869{
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300870 struct vivi_fh *fh = priv;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300871
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300872 return (videobuf_dqbuf(&fh->vb_vidq, p,
873 file->f_flags & O_NONBLOCK));
874}
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300875
Mauro Carvalho Chehab0dfa9ab2006-08-08 09:10:10 -0300876#ifdef CONFIG_VIDEO_V4L1_COMPAT
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300877static int vidiocgmbuf(struct file *file, void *priv, struct video_mbuf *mbuf)
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300878{
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300879 struct vivi_fh *fh = priv;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300880
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300881 return videobuf_cgmbuf(&fh->vb_vidq, mbuf, 8);
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300882}
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300883#endif
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300884
Adrian Bunkdc46ace2006-06-23 06:42:44 -0300885static int vidioc_streamon(struct file *file, void *priv, enum v4l2_buf_type i)
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300886{
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300887 struct vivi_fh *fh = priv;
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300888
889 if (fh->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
890 return -EINVAL;
891 if (i != fh->type)
892 return -EINVAL;
893
Brandon Philipsba32bd92007-09-27 20:55:17 -0300894 return videobuf_streamon(&fh->vb_vidq);
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300895}
896
Adrian Bunkdc46ace2006-06-23 06:42:44 -0300897static int vidioc_streamoff(struct file *file, void *priv, enum v4l2_buf_type i)
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300898{
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300899 struct vivi_fh *fh = priv;
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300900
901 if (fh->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
902 return -EINVAL;
903 if (i != fh->type)
904 return -EINVAL;
905
Brandon Philipsba32bd92007-09-27 20:55:17 -0300906 return videobuf_streamoff(&fh->vb_vidq);
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300907}
908
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300909static int vidioc_s_std(struct file *file, void *priv, v4l2_std_id *i)
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300910{
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300911 return 0;
912}
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300913
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300914/* only one input in this sample driver */
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300915static int vidioc_enum_input(struct file *file, void *priv,
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300916 struct v4l2_input *inp)
917{
918 if (inp->index != 0)
919 return -EINVAL;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300920
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300921 inp->type = V4L2_INPUT_TYPE_CAMERA;
Mauro Carvalho Chehab784c6682007-12-13 06:35:26 -0300922 inp->std = V4L2_STD_525_60;
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300923 strcpy(inp->name, "Camera");
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300924
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300925 return (0);
926}
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300927
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300928static int vidioc_g_input(struct file *file, void *priv, unsigned int *i)
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300929{
930 *i = 0;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300931
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300932 return (0);
933}
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300934static int vidioc_s_input(struct file *file, void *priv, unsigned int i)
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300935{
936 if (i > 0)
937 return -EINVAL;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300938
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300939 return (0);
940}
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300941
942 /* --- controls ---------------------------------------------- */
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300943static int vidioc_queryctrl(struct file *file, void *priv,
944 struct v4l2_queryctrl *qc)
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300945{
946 int i;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300947
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300948 for (i = 0; i < ARRAY_SIZE(vivi_qctrl); i++)
949 if (qc->id && qc->id == vivi_qctrl[i].id) {
950 memcpy(qc, &(vivi_qctrl[i]),
951 sizeof(*qc));
952 return (0);
953 }
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300954
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300955 return -EINVAL;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300956}
957
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300958static int vidioc_g_ctrl(struct file *file, void *priv,
959 struct v4l2_control *ctrl)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300960{
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300961 int i;
962
963 for (i = 0; i < ARRAY_SIZE(vivi_qctrl); i++)
964 if (ctrl->id == vivi_qctrl[i].id) {
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300965 ctrl->value = qctl_regs[i];
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300966 return (0);
967 }
968
969 return -EINVAL;
970}
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300971static int vidioc_s_ctrl(struct file *file, void *priv,
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300972 struct v4l2_control *ctrl)
973{
974 int i;
975
976 for (i = 0; i < ARRAY_SIZE(vivi_qctrl); i++)
977 if (ctrl->id == vivi_qctrl[i].id) {
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300978 if (ctrl->value < vivi_qctrl[i].minimum
979 || ctrl->value > vivi_qctrl[i].maximum) {
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300980 return (-ERANGE);
981 }
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300982 qctl_regs[i] = ctrl->value;
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300983 return (0);
984 }
985 return -EINVAL;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300986}
987
988/* ------------------------------------------------------------------
989 File operations for the device
990 ------------------------------------------------------------------*/
991
992#define line_buf_size(norm) (norm_maxw(norm)*(format.depth+7)/8)
993
994static int vivi_open(struct inode *inode, struct file *file)
995{
996 int minor = iminor(inode);
Trent Piephoa991f442007-10-10 05:37:43 -0300997 struct vivi_dev *dev;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300998 struct vivi_fh *fh;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300999 int i;
1000
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -03001001 printk(KERN_DEBUG "vivi: open called (minor=%d)\n", minor);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001002
Trent Piephoa991f442007-10-10 05:37:43 -03001003 list_for_each_entry(dev, &vivi_devlist, vivi_devlist)
Mauro Carvalho Chehabf905c442007-12-10 04:07:03 -03001004 if (dev->vfd->minor == minor)
Trent Piephoa991f442007-10-10 05:37:43 -03001005 goto found;
1006 return -ENODEV;
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -03001007
Trent Piephoa991f442007-10-10 05:37:43 -03001008found:
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001009 /* If more than one user, mutex should be added */
1010 dev->users++;
1011
Trent Piephoa991f442007-10-10 05:37:43 -03001012 dprintk(1, "open minor=%d type=%s users=%d\n", minor,
1013 v4l2_type_names[V4L2_BUF_TYPE_VIDEO_CAPTURE], dev->users);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001014
1015 /* allocate + initialize per filehandle data */
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -03001016 fh = kzalloc(sizeof(*fh), GFP_KERNEL);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001017 if (NULL == fh) {
1018 dev->users--;
1019 return -ENOMEM;
1020 }
1021
1022 file->private_data = fh;
1023 fh->dev = dev;
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001024
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001025 fh->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
1026 fh->fmt = &format;
1027 fh->width = 640;
1028 fh->height = 480;
1029
1030 /* Put all controls at a sane state */
1031 for (i = 0; i < ARRAY_SIZE(vivi_qctrl); i++)
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -03001032 qctl_regs[i] = vivi_qctrl[i].default_value;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001033
1034 /* Resets frame counters */
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -03001035 dev->h = 0;
1036 dev->m = 0;
1037 dev->s = 0;
1038 dev->us = 0;
1039 dev->mv_count = 0;
1040 dev->jiffies = jiffies;
1041 sprintf(dev->timestr, "%02d:%02d:%02d:%03d",
1042 dev->h, dev->m, dev->s, (dev->us + 500) / 1000);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001043
Mauro Carvalho Chehab5a037702007-08-02 23:31:54 -03001044 videobuf_queue_vmalloc_init(&fh->vb_vidq, &vivi_video_qops,
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -03001045 NULL, NULL, fh->type, V4L2_FIELD_INTERLACED,
1046 sizeof(struct vivi_buffer), fh);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001047
1048 return 0;
1049}
1050
1051static ssize_t
1052vivi_read(struct file *file, char __user *data, size_t count, loff_t *ppos)
1053{
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -03001054 struct vivi_fh *fh = file->private_data;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001055
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -03001056 if (fh->type == V4L2_BUF_TYPE_VIDEO_CAPTURE) {
Mauro Carvalho Chehabacb09af2007-07-29 22:56:11 -03001057 return videobuf_read_stream(&fh->vb_vidq, data, count, ppos, 0,
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001058 file->f_flags & O_NONBLOCK);
1059 }
1060 return 0;
1061}
1062
1063static unsigned int
1064vivi_poll(struct file *file, struct poll_table_struct *wait)
1065{
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001066 struct vivi_fh *fh = file->private_data;
Brandon Philips85c7c70bc2007-09-27 20:55:02 -03001067 struct videobuf_queue *q = &fh->vb_vidq;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001068
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -03001069 dprintk(1, "%s\n", __FUNCTION__);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001070
1071 if (V4L2_BUF_TYPE_VIDEO_CAPTURE != fh->type)
1072 return POLLERR;
1073
Brandon Philips85c7c70bc2007-09-27 20:55:02 -03001074 return videobuf_poll_stream(file, q, wait);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001075}
1076
Mauro Carvalho Chehabf905c442007-12-10 04:07:03 -03001077static int vivi_close(struct inode *inode, struct file *file)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001078{
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001079 struct vivi_fh *fh = file->private_data;
1080 struct vivi_dev *dev = fh->dev;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001081 struct vivi_dmaqueue *vidq = &dev->vidq;
1082
1083 int minor = iminor(inode);
1084
1085 vivi_stop_thread(vidq);
Brandon Philips053fcb62007-11-13 20:11:26 -03001086 videobuf_stop(&fh->vb_vidq);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001087 videobuf_mmap_free(&fh->vb_vidq);
1088
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001089 kfree(fh);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001090
1091 dev->users--;
1092
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -03001093 dprintk(1, "close called (minor=%d, users=%d)\n", minor, dev->users);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001094
1095 return 0;
1096}
1097
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001098static int vivi_release(void)
Mauro Carvalho Chehabf905c442007-12-10 04:07:03 -03001099{
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001100 struct vivi_dev *dev;
1101 struct list_head *list;
Mauro Carvalho Chehabf905c442007-12-10 04:07:03 -03001102
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001103 while (!list_empty(&vivi_devlist)) {
1104 list = vivi_devlist.next;
1105 list_del(list);
1106 dev = list_entry(list, struct vivi_dev, vivi_devlist);
1107
1108 if (-1 != dev->vfd->minor)
1109 video_unregister_device(dev->vfd);
1110 else
1111 video_device_release(dev->vfd);
1112
1113 kfree(dev);
1114 }
Mauro Carvalho Chehabf905c442007-12-10 04:07:03 -03001115
1116 return 0;
1117}
1118
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -03001119static int vivi_mmap(struct file *file, struct vm_area_struct *vma)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001120{
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -03001121 struct vivi_fh *fh = file->private_data;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001122 int ret;
1123
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -03001124 dprintk(1, "mmap called, vma=0x%08lx\n", (unsigned long)vma);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001125
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -03001126 ret = videobuf_mmap_mapper(&fh->vb_vidq, vma);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001127
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -03001128 dprintk(1, "vma start=0x%08lx, size=%ld, ret=%d\n",
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001129 (unsigned long)vma->vm_start,
1130 (unsigned long)vma->vm_end-(unsigned long)vma->vm_start,
1131 ret);
1132
1133 return ret;
1134}
1135
Arjan van de Venfa027c22007-02-12 00:55:33 -08001136static const struct file_operations vivi_fops = {
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001137 .owner = THIS_MODULE,
1138 .open = vivi_open,
Mauro Carvalho Chehabf905c442007-12-10 04:07:03 -03001139 .release = vivi_close,
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001140 .read = vivi_read,
1141 .poll = vivi_poll,
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001142 .ioctl = video_ioctl2, /* V4L2 ioctl handler */
Mauro Carvalho Chehab5a037702007-08-02 23:31:54 -03001143 .mmap = vivi_mmap,
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001144 .llseek = no_llseek,
1145};
1146
Mauro Carvalho Chehabf905c442007-12-10 04:07:03 -03001147static struct video_device vivi_template = {
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001148 .name = "vivi",
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001149 .type = VID_TYPE_CAPTURE,
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001150 .fops = &vivi_fops,
1151 .minor = -1,
Mauro Carvalho Chehabf905c442007-12-10 04:07:03 -03001152 .release = video_device_release,
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001153
1154 .vidioc_querycap = vidioc_querycap,
1155 .vidioc_enum_fmt_cap = vidioc_enum_fmt_cap,
1156 .vidioc_g_fmt_cap = vidioc_g_fmt_cap,
1157 .vidioc_try_fmt_cap = vidioc_try_fmt_cap,
1158 .vidioc_s_fmt_cap = vidioc_s_fmt_cap,
1159 .vidioc_reqbufs = vidioc_reqbufs,
1160 .vidioc_querybuf = vidioc_querybuf,
1161 .vidioc_qbuf = vidioc_qbuf,
1162 .vidioc_dqbuf = vidioc_dqbuf,
1163 .vidioc_s_std = vidioc_s_std,
1164 .vidioc_enum_input = vidioc_enum_input,
1165 .vidioc_g_input = vidioc_g_input,
1166 .vidioc_s_input = vidioc_s_input,
1167 .vidioc_queryctrl = vidioc_queryctrl,
1168 .vidioc_g_ctrl = vidioc_g_ctrl,
1169 .vidioc_s_ctrl = vidioc_s_ctrl,
1170 .vidioc_streamon = vidioc_streamon,
1171 .vidioc_streamoff = vidioc_streamoff,
Mauro Carvalho Chehab0dfa9ab2006-08-08 09:10:10 -03001172#ifdef CONFIG_VIDEO_V4L1_COMPAT
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001173 .vidiocgmbuf = vidiocgmbuf,
1174#endif
Mauro Carvalho Chehab784c6682007-12-13 06:35:26 -03001175 .tvnorms = V4L2_STD_525_60,
Mauro Carvalho Chehabe75f9ce2006-11-20 13:19:20 -03001176 .current_norm = V4L2_STD_NTSC_M,
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001177};
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001178/* -----------------------------------------------------------------
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001179 Initialization and module stuff
1180 ------------------------------------------------------------------*/
1181
1182static int __init vivi_init(void)
1183{
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001184 int ret = -ENOMEM, i;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001185 struct vivi_dev *dev;
Mauro Carvalho Chehabf905c442007-12-10 04:07:03 -03001186 struct video_device *vfd;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001187
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001188 for (i = 0; i < n_devs; i++) {
1189 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
1190 if (NULL == dev)
1191 break;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001192
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001193 list_add_tail(&dev->vivi_devlist, &vivi_devlist);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001194
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001195 /* init video dma queues */
1196 INIT_LIST_HEAD(&dev->vidq.active);
1197 INIT_LIST_HEAD(&dev->vidq.queued);
1198 init_waitqueue_head(&dev->vidq.wq);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001199
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001200 /* initialize locks */
1201 mutex_init(&dev->lock);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001202
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001203 dev->vidq.timeout.function = vivi_vid_timeout;
1204 dev->vidq.timeout.data = (unsigned long)dev;
1205 init_timer(&dev->vidq.timeout);
Mauro Carvalho Chehabf905c442007-12-10 04:07:03 -03001206
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001207 vfd = video_device_alloc();
1208 if (NULL == vfd)
1209 break;
Mauro Carvalho Chehabf905c442007-12-10 04:07:03 -03001210
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001211 *vfd = vivi_template;
Mauro Carvalho Chehabf905c442007-12-10 04:07:03 -03001212
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001213 ret = video_register_device(vfd, VFL_TYPE_GRABBER, video_nr);
1214 if (ret < 0)
1215 break;
Mauro Carvalho Chehabf905c442007-12-10 04:07:03 -03001216
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001217 snprintf(vfd->name, sizeof(vfd->name), "%s (%i)",
1218 vivi_template.name, vfd->minor);
1219
1220 if (video_nr >= 0)
1221 video_nr++;
1222
1223 dev->vfd = vfd;
1224 }
1225
1226 if (ret < 0) {
1227 vivi_release();
1228 printk(KERN_INFO "Error %d while loading vivi driver\n", ret);
1229 } else
1230 printk(KERN_INFO "Video Technology Magazine Virtual Video "
1231 "Capture Board successfully loaded.\n");
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001232 return ret;
1233}
1234
1235static void __exit vivi_exit(void)
1236{
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001237 vivi_release();
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001238}
1239
1240module_init(vivi_init);
1241module_exit(vivi_exit);
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001242
1243MODULE_DESCRIPTION("Video Technology Magazine Virtual Video Capture Board");
1244MODULE_AUTHOR("Mauro Carvalho Chehab, Ted Walther and John Sokol");
1245MODULE_LICENSE("Dual BSD/GPL");
1246
1247module_param(video_nr, int, 0);
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001248MODULE_PARM_DESC(video_nr, "video iminor start number");
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001249
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001250module_param(n_devs, int, 0);
1251MODULE_PARM_DESC(n_devs, "number of video devices to create");
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001252
Mauro Carvalho Chehab8996b3f2007-12-13 06:36:22 -03001253module_param_named(debug, vivi_template.debug, int, 0444);
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001254MODULE_PARM_DESC(debug, "activates debug info");
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001255
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001256module_param(vid_limit, int, 0644);
1257MODULE_PARM_DESC(vid_limit, "capture memory limit in megabytes");