blob: 0346d1af3e62b9661fa269b7f38e5223dde61a4e [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;
149 struct list_head queued;
150 struct timer_list timeout;
151
152 /* thread for generating video stream*/
153 struct task_struct *kthread;
154 wait_queue_head_t wq;
155 /* Counters to control fps rate */
156 int frame;
157 int ini_jiffies;
158};
159
160static LIST_HEAD(vivi_devlist);
161
162struct vivi_dev {
163 struct list_head vivi_devlist;
164
Matthias Kaehlcke51b54022007-07-02 10:19:38 -0300165 struct mutex lock;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300166
167 int users;
168
169 /* various device info */
Mauro Carvalho Chehabf905c442007-12-10 04:07:03 -0300170 struct video_device *vfd;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300171
172 struct vivi_dmaqueue vidq;
173
174 /* Several counters */
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300175 int h, m, s, us, 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}
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300323static void vivi_fillbuff(struct vivi_dev *dev, struct vivi_buffer *buf)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300324{
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300325 int h , pos = 0;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300326 int hmax = buf->vb.height;
327 int wmax = buf->vb.width;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300328 struct timeval ts;
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300329 char *tmpbuf = kmalloc(wmax * 2, GFP_KERNEL);
330 void *vbuf = videobuf_to_vmalloc(&buf->vb);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300331
Mauro Carvalho Chehab5a037702007-08-02 23:31:54 -0300332 if (!tmpbuf)
333 return;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300334
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300335 for (h = 0; h < hmax; h++) {
Mauro Carvalho Chehab025341d2007-12-10 04:43:38 -0300336 gen_line(tmpbuf, 0, wmax, hmax, h, dev->mv_count,
Mauro Carvalho Chehab3bef5e42007-09-22 02:01:33 -0300337 dev->timestr);
Mauro Carvalho Chehab5a037702007-08-02 23:31:54 -0300338 /* FIXME: replacing to __copy_to_user */
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300339 if (copy_to_user(vbuf + pos, tmpbuf, wmax * 2) != 0)
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300340 dprintk(dev, 2, "vivifill copy_to_user failed.\n");
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300341 pos += wmax*2;
342 }
343
Mauro Carvalho Chehab025341d2007-12-10 04:43:38 -0300344 dev->mv_count++;
Mauro Carvalho Chehab3bef5e42007-09-22 02:01:33 -0300345
Mauro Carvalho Chehab5a037702007-08-02 23:31:54 -0300346 kfree(tmpbuf);
347
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300348 /* Updates stream time */
349
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300350 dev->us += jiffies_to_usecs(jiffies-dev->jiffies);
351 dev->jiffies = jiffies;
352 if (dev->us >= 1000000) {
353 dev->us -= 1000000;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300354 dev->s++;
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300355 if (dev->s >= 60) {
356 dev->s -= 60;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300357 dev->m++;
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300358 if (dev->m > 60) {
359 dev->m -= 60;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300360 dev->h++;
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300361 if (dev->h > 24)
362 dev->h -= 24;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300363 }
364 }
365 }
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300366 sprintf(dev->timestr, "%02d:%02d:%02d:%03d",
367 dev->h, dev->m, dev->s, (dev->us + 500) / 1000);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300368
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300369 dprintk(dev, 2, "vivifill at %s: Buffer 0x%08lx size= %d\n",
370 dev->timestr, (unsigned long)tmpbuf, pos);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300371
372 /* Advice that buffer was filled */
Brandon Philips0fc06862007-11-06 20:02:36 -0300373 buf->vb.state = VIDEOBUF_DONE;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300374 buf->vb.field_count++;
375 do_gettimeofday(&ts);
376 buf->vb.ts = ts;
377
378 list_del(&buf->vb.queue);
379 wake_up(&buf->vb.done);
380}
381
382static int restart_video_queue(struct vivi_dmaqueue *dma_q);
383
384static void vivi_thread_tick(struct vivi_dmaqueue *dma_q)
385{
386 struct vivi_buffer *buf;
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300387 struct vivi_dev *dev = container_of(dma_q, struct vivi_dev, vidq);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300388
389 int bc;
390
391 /* Announces videobuf that all went ok */
392 for (bc = 0;; bc++) {
393 if (list_empty(&dma_q->active)) {
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300394 dprintk(dev, 1, "No active queue to serve\n");
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300395 break;
396 }
397
398 buf = list_entry(dma_q->active.next,
399 struct vivi_buffer, vb.queue);
400
401 /* Nobody is waiting something to be done, just return */
402 if (!waitqueue_active(&buf->vb.done)) {
403 mod_timer(&dma_q->timeout, jiffies+BUFFER_TIMEOUT);
404 return;
405 }
406
407 do_gettimeofday(&buf->vb.ts);
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300408 dprintk(dev, 2, "[%p/%d] wakeup\n", buf, buf->vb. i);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300409
410 /* Fill buffer */
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300411 vivi_fillbuff(dev, buf);
Mauro Carvalho Chehab0b600512007-01-14 08:33:24 -0300412
413 if (list_empty(&dma_q->active)) {
414 del_timer(&dma_q->timeout);
415 } else {
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300416 mod_timer(&dma_q->timeout, jiffies + BUFFER_TIMEOUT);
Mauro Carvalho Chehab0b600512007-01-14 08:33:24 -0300417 }
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300418 }
419 if (bc != 1)
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300420 dprintk(dev, 1, "%s: %d buffers handled (should be 1)\n",
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300421 __FUNCTION__, bc);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300422}
423
Adrian Bunk972c3512006-04-27 21:06:50 -0300424static void vivi_sleep(struct vivi_dmaqueue *dma_q)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300425{
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300426 struct vivi_dev *dev = container_of(dma_q, struct vivi_dev, vidq);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300427 int timeout;
428 DECLARE_WAITQUEUE(wait, current);
429
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300430 dprintk(dev, 1, "%s dma_q=0x%08lx\n", __FUNCTION__,
431 (unsigned long)dma_q);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300432
433 add_wait_queue(&dma_q->wq, &wait);
434 if (!kthread_should_stop()) {
435 dma_q->frame++;
436
437 /* Calculate time to wake up */
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300438 timeout = dma_q->ini_jiffies+
439 msecs_to_jiffies((dma_q->frame*WAKE_NUMERATOR * 1000)
440 / WAKE_DENOMINATOR) - jiffies;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300441
442 if (timeout <= 0) {
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300443 int old = dma_q->frame;
444 dma_q->frame = (jiffies_to_msecs(jiffies -
445 dma_q->ini_jiffies) *
446 WAKE_DENOMINATOR) /
447 (WAKE_NUMERATOR * 1000) + 1;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300448
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300449 timeout = dma_q->ini_jiffies+
450 msecs_to_jiffies((dma_q->frame *
451 WAKE_NUMERATOR * 1000)
452 / WAKE_DENOMINATOR) - jiffies;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300453
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300454 dprintk(dev, 1, "underrun, losed %d frames. "
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300455 "Now, frame is %d. Waking on %d jiffies\n",
456 dma_q->frame-old, dma_q->frame, timeout);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300457 } else
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300458 dprintk(dev, 1, "will sleep for %i jiffies\n",
459 timeout);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300460
461 vivi_thread_tick(dma_q);
462
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300463 schedule_timeout_interruptible(timeout);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300464 }
465
466 remove_wait_queue(&dma_q->wq, &wait);
467 try_to_freeze();
468}
469
Adrian Bunk972c3512006-04-27 21:06:50 -0300470static int vivi_thread(void *data)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300471{
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300472 struct vivi_dmaqueue *dma_q = data;
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300473 struct vivi_dev *dev = container_of(dma_q, struct vivi_dev, vidq);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300474
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300475 dprintk(dev, 1, "thread started\n");
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300476
Mauro Carvalho Chehab0b600512007-01-14 08:33:24 -0300477 mod_timer(&dma_q->timeout, jiffies+BUFFER_TIMEOUT);
Rafael J. Wysocki83144182007-07-17 04:03:35 -0700478 set_freezable();
Mauro Carvalho Chehab0b600512007-01-14 08:33:24 -0300479
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300480 for (;;) {
481 vivi_sleep(dma_q);
482
483 if (kthread_should_stop())
484 break;
485 }
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300486 dprintk(dev, 1, "thread: exit\n");
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300487 return 0;
488}
489
Adrian Bunk972c3512006-04-27 21:06:50 -0300490static int vivi_start_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
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300494 dma_q->frame = 0;
495 dma_q->ini_jiffies = jiffies;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300496
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300497 dprintk(dev, 1, "%s\n", __FUNCTION__);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300498
499 dma_q->kthread = kthread_run(vivi_thread, dma_q, "vivi");
500
Akinobu Mita054afee2006-12-20 10:04:00 -0300501 if (IS_ERR(dma_q->kthread)) {
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300502 printk(KERN_ERR "vivi: kernel_thread() failed\n");
Akinobu Mita054afee2006-12-20 10:04:00 -0300503 return PTR_ERR(dma_q->kthread);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300504 }
Mauro Carvalho Chehab0b600512007-01-14 08:33:24 -0300505 /* Wakes thread */
506 wake_up_interruptible(&dma_q->wq);
507
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300508 dprintk(dev, 1, "returning from %s\n", __FUNCTION__);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300509 return 0;
510}
511
Adrian Bunk972c3512006-04-27 21:06:50 -0300512static void vivi_stop_thread(struct vivi_dmaqueue *dma_q)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300513{
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300514 struct vivi_dev *dev = container_of(dma_q, struct vivi_dev, vidq);
515
516 dprintk(dev, 1, "%s\n", __FUNCTION__);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300517 /* shutdown control thread */
518 if (dma_q->kthread) {
519 kthread_stop(dma_q->kthread);
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300520 dma_q->kthread = NULL;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300521 }
522}
523
524static int restart_video_queue(struct vivi_dmaqueue *dma_q)
525{
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300526 struct vivi_dev *dev = container_of(dma_q, struct vivi_dev, vidq);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300527 struct vivi_buffer *buf, *prev;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300528
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300529 dprintk(dev, 1, "%s dma_q=0x%08lx\n", __FUNCTION__,
530 (unsigned long)dma_q);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300531
532 if (!list_empty(&dma_q->active)) {
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300533 buf = list_entry(dma_q->active.next,
534 struct vivi_buffer, vb.queue);
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300535 dprintk(dev, 2, "restart_queue [%p/%d]: restart dma\n",
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300536 buf, buf->vb.i);
537
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300538 dprintk(dev, 1, "Restarting video dma\n");
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300539 vivi_stop_thread(dma_q);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300540
541 /* cancel all outstanding capture / vbi requests */
Trent Piephoa991f442007-10-10 05:37:43 -0300542 list_for_each_entry_safe(buf, prev, &dma_q->active, vb.queue) {
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300543 list_del(&buf->vb.queue);
Brandon Philips0fc06862007-11-06 20:02:36 -0300544 buf->vb.state = VIDEOBUF_ERROR;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300545 wake_up(&buf->vb.done);
546 }
547 mod_timer(&dma_q->timeout, jiffies+BUFFER_TIMEOUT);
548
549 return 0;
550 }
551
552 prev = NULL;
553 for (;;) {
554 if (list_empty(&dma_q->queued))
555 return 0;
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300556 buf = list_entry(dma_q->queued.next,
557 struct vivi_buffer, vb.queue);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300558 if (NULL == prev) {
559 list_del(&buf->vb.queue);
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300560 list_add_tail(&buf->vb.queue, &dma_q->active);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300561
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300562 dprintk(dev, 1, "Restarting video dma\n");
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300563 vivi_stop_thread(dma_q);
564 vivi_start_thread(dma_q);
565
Brandon Philips0fc06862007-11-06 20:02:36 -0300566 buf->vb.state = VIDEOBUF_ACTIVE;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300567 mod_timer(&dma_q->timeout, jiffies+BUFFER_TIMEOUT);
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300568 dprintk(dev, 2,
569 "[%p/%d] restart_queue - first active\n",
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300570 buf, buf->vb.i);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300571
572 } else if (prev->vb.width == buf->vb.width &&
573 prev->vb.height == buf->vb.height &&
574 prev->fmt == buf->fmt) {
575 list_del(&buf->vb.queue);
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300576 list_add_tail(&buf->vb.queue, &dma_q->active);
Brandon Philips0fc06862007-11-06 20:02:36 -0300577 buf->vb.state = VIDEOBUF_ACTIVE;
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300578 dprintk(dev, 2,
579 "[%p/%d] restart_queue - move to active\n",
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300580 buf, buf->vb.i);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300581 } else {
582 return 0;
583 }
584 prev = buf;
585 }
586}
587
588static void vivi_vid_timeout(unsigned long data)
589{
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300590 struct vivi_dev *dev = (struct vivi_dev *)data;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300591 struct vivi_dmaqueue *vidq = &dev->vidq;
592 struct vivi_buffer *buf;
593
594 while (!list_empty(&vidq->active)) {
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300595 buf = list_entry(vidq->active.next,
596 struct vivi_buffer, vb.queue);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300597 list_del(&buf->vb.queue);
Brandon Philips0fc06862007-11-06 20:02:36 -0300598 buf->vb.state = VIDEOBUF_ERROR;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300599 wake_up(&buf->vb.done);
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300600 printk(KERN_INFO "vivi/0: [%p/%d] timeout\n", buf, buf->vb.i);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300601 }
602
603 restart_video_queue(vidq);
604}
605
606/* ------------------------------------------------------------------
607 Videobuf operations
608 ------------------------------------------------------------------*/
609static int
610buffer_setup(struct videobuf_queue *vq, unsigned int *count, unsigned int *size)
611{
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300612 struct vivi_fh *fh = vq->priv_data;
613 struct vivi_dev *dev = fh->dev;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300614
615 *size = fh->width*fh->height*2;
616
617 if (0 == *count)
618 *count = 32;
Mauro Carvalho Chehab6bb27902007-08-23 16:41:14 -0300619
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300620 while (*size * *count > vid_limit * 1024 * 1024)
621 (*count)--;
Mauro Carvalho Chehab6bb27902007-08-23 16:41:14 -0300622
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300623 dprintk(dev, 1, "%s, count=%d, size=%d\n", __FUNCTION__,
624 *count, *size);
Mauro Carvalho Chehab6bb27902007-08-23 16:41:14 -0300625
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300626 return 0;
627}
628
Adrian Bunk972c3512006-04-27 21:06:50 -0300629static void free_buffer(struct videobuf_queue *vq, struct vivi_buffer *buf)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300630{
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300631 struct vivi_fh *fh = vq->priv_data;
632 struct vivi_dev *dev = fh->dev;
633
634 dprintk(dev, 1, "%s\n", __FUNCTION__);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300635
636 if (in_interrupt())
637 BUG();
638
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300639 videobuf_waiton(&buf->vb, 0, 0);
Mauro Carvalho Chehab5a037702007-08-02 23:31:54 -0300640 videobuf_vmalloc_free(&buf->vb);
Brandon Philips0fc06862007-11-06 20:02:36 -0300641 buf->vb.state = VIDEOBUF_NEEDS_INIT;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300642}
643
644#define norm_maxw() 1024
645#define norm_maxh() 768
646static int
647buffer_prepare(struct videobuf_queue *vq, struct videobuf_buffer *vb,
648 enum v4l2_field field)
649{
650 struct vivi_fh *fh = vq->priv_data;
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300651 struct vivi_dev *dev = fh->dev;
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300652 struct vivi_buffer *buf = container_of(vb, struct vivi_buffer, vb);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300653 int rc, init_buffer = 0;
654
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300655 dprintk(dev, 1, "%s, field=%d\n", __FUNCTION__, field);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300656
657 BUG_ON(NULL == fh->fmt);
658 if (fh->width < 48 || fh->width > norm_maxw() ||
659 fh->height < 32 || fh->height > norm_maxh())
660 return -EINVAL;
661 buf->vb.size = fh->width*fh->height*2;
662 if (0 != buf->vb.baddr && buf->vb.bsize < buf->vb.size)
663 return -EINVAL;
664
665 if (buf->fmt != fh->fmt ||
666 buf->vb.width != fh->width ||
667 buf->vb.height != fh->height ||
668 buf->vb.field != field) {
669 buf->fmt = fh->fmt;
670 buf->vb.width = fh->width;
671 buf->vb.height = fh->height;
672 buf->vb.field = field;
673 init_buffer = 1;
674 }
675
Brandon Philips0fc06862007-11-06 20:02:36 -0300676 if (VIDEOBUF_NEEDS_INIT == buf->vb.state) {
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300677 rc = videobuf_iolock(vq, &buf->vb, NULL);
678 if (rc < 0)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300679 goto fail;
680 }
681
Brandon Philips0fc06862007-11-06 20:02:36 -0300682 buf->vb.state = VIDEOBUF_PREPARED;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300683
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300684 return 0;
685
686fail:
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300687 free_buffer(vq, buf);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300688 return rc;
689}
690
691static void
692buffer_queue(struct videobuf_queue *vq, struct videobuf_buffer *vb)
693{
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300694 struct vivi_buffer *buf = container_of(vb, struct vivi_buffer, vb);
695 struct vivi_fh *fh = vq->priv_data;
696 struct vivi_dev *dev = fh->dev;
697 struct vivi_dmaqueue *vidq = &dev->vidq;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300698 struct vivi_buffer *prev;
699
700 if (!list_empty(&vidq->queued)) {
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300701 dprintk(dev, 1, "adding vb queue=0x%08lx\n",
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300702 (unsigned long)&buf->vb.queue);
703 list_add_tail(&buf->vb.queue, &vidq->queued);
Brandon Philips0fc06862007-11-06 20:02:36 -0300704 buf->vb.state = VIDEOBUF_QUEUED;
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300705 dprintk(dev, 2, "[%p/%d] buffer_queue - append to queued\n",
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300706 buf, buf->vb.i);
707 } else if (list_empty(&vidq->active)) {
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300708 list_add_tail(&buf->vb.queue, &vidq->active);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300709
Brandon Philips0fc06862007-11-06 20:02:36 -0300710 buf->vb.state = VIDEOBUF_ACTIVE;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300711 mod_timer(&vidq->timeout, jiffies+BUFFER_TIMEOUT);
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300712 dprintk(dev, 2, "[%p/%d] buffer_queue - first active\n",
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300713 buf, buf->vb.i);
714
715 vivi_start_thread(vidq);
716 } else {
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300717 prev = list_entry(vidq->active.prev,
718 struct vivi_buffer, vb.queue);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300719 if (prev->vb.width == buf->vb.width &&
720 prev->vb.height == buf->vb.height &&
721 prev->fmt == buf->fmt) {
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300722 list_add_tail(&buf->vb.queue, &vidq->active);
Brandon Philips0fc06862007-11-06 20:02:36 -0300723 buf->vb.state = VIDEOBUF_ACTIVE;
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300724 dprintk(dev, 2,
725 "[%p/%d] buffer_queue - append to active\n",
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300726 buf, buf->vb.i);
727
728 } else {
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300729 list_add_tail(&buf->vb.queue, &vidq->queued);
Brandon Philips0fc06862007-11-06 20:02:36 -0300730 buf->vb.state = VIDEOBUF_QUEUED;
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300731 dprintk(dev, 2,
732 "[%p/%d] buffer_queue - first queued\n",
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300733 buf, buf->vb.i);
734 }
735 }
736}
737
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300738static void buffer_release(struct videobuf_queue *vq,
739 struct videobuf_buffer *vb)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300740{
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300741 struct vivi_buffer *buf = container_of(vb, struct vivi_buffer, vb);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300742 struct vivi_fh *fh = vq->priv_data;
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300743 struct vivi_dev *dev = (struct vivi_dev *)fh->dev;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300744 struct vivi_dmaqueue *vidq = &dev->vidq;
745
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300746 dprintk(dev, 1, "%s\n", __FUNCTION__);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300747
748 vivi_stop_thread(vidq);
749
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300750 free_buffer(vq, buf);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300751}
752
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300753static struct videobuf_queue_ops vivi_video_qops = {
754 .buf_setup = buffer_setup,
755 .buf_prepare = buffer_prepare,
756 .buf_queue = buffer_queue,
757 .buf_release = buffer_release,
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300758};
759
760/* ------------------------------------------------------------------
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300761 IOCTL vidioc handling
762 ------------------------------------------------------------------*/
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300763static int vidioc_querycap(struct file *file, void *priv,
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300764 struct v4l2_capability *cap)
765{
766 strcpy(cap->driver, "vivi");
767 strcpy(cap->card, "vivi");
768 cap->version = VIVI_VERSION;
769 cap->capabilities = V4L2_CAP_VIDEO_CAPTURE |
770 V4L2_CAP_STREAMING |
771 V4L2_CAP_READWRITE;
772 return 0;
773}
774
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300775static int vidioc_enum_fmt_cap(struct file *file, void *priv,
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300776 struct v4l2_fmtdesc *f)
777{
778 if (f->index > 0)
779 return -EINVAL;
780
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300781 strlcpy(f->description, format.name, sizeof(f->description));
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300782 f->pixelformat = format.fourcc;
783 return 0;
784}
785
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300786static int vidioc_g_fmt_cap(struct file *file, void *priv,
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300787 struct v4l2_format *f)
788{
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300789 struct vivi_fh *fh = priv;
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300790
791 f->fmt.pix.width = fh->width;
792 f->fmt.pix.height = fh->height;
793 f->fmt.pix.field = fh->vb_vidq.field;
794 f->fmt.pix.pixelformat = fh->fmt->fourcc;
795 f->fmt.pix.bytesperline =
796 (f->fmt.pix.width * fh->fmt->depth) >> 3;
797 f->fmt.pix.sizeimage =
798 f->fmt.pix.height * f->fmt.pix.bytesperline;
799
800 return (0);
801}
802
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300803static int vidioc_try_fmt_cap(struct file *file, void *priv,
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300804 struct v4l2_format *f)
805{
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300806 struct vivi_fh *fh = priv;
807 struct vivi_dev *dev = fh->dev;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300808 struct vivi_fmt *fmt;
809 enum v4l2_field field;
810 unsigned int maxw, maxh;
811
812 if (format.fourcc != f->fmt.pix.pixelformat) {
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300813 dprintk(dev, 1, "Fourcc format (0x%08x) invalid. "
814 "Driver accepts only 0x%08x\n",
815 f->fmt.pix.pixelformat, format.fourcc);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300816 return -EINVAL;
817 }
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300818 fmt = &format;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300819
820 field = f->fmt.pix.field;
821
822 if (field == V4L2_FIELD_ANY) {
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300823 field = V4L2_FIELD_INTERLACED;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300824 } else if (V4L2_FIELD_INTERLACED != field) {
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300825 dprintk(dev, 1, "Field type invalid.\n");
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300826 return -EINVAL;
827 }
828
829 maxw = norm_maxw();
830 maxh = norm_maxh();
831
832 f->fmt.pix.field = field;
833 if (f->fmt.pix.height < 32)
834 f->fmt.pix.height = 32;
835 if (f->fmt.pix.height > maxh)
836 f->fmt.pix.height = maxh;
837 if (f->fmt.pix.width < 48)
838 f->fmt.pix.width = 48;
839 if (f->fmt.pix.width > maxw)
840 f->fmt.pix.width = maxw;
841 f->fmt.pix.width &= ~0x03;
842 f->fmt.pix.bytesperline =
843 (f->fmt.pix.width * fmt->depth) >> 3;
844 f->fmt.pix.sizeimage =
845 f->fmt.pix.height * f->fmt.pix.bytesperline;
846
847 return 0;
848}
849
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300850/*FIXME: This seems to be generic enough to be at videodev2 */
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300851static int vidioc_s_fmt_cap(struct file *file, void *priv,
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300852 struct v4l2_format *f)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300853{
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300854 struct vivi_fh *fh = priv;
855 int ret = vidioc_try_fmt_cap(file, fh, f);
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300856 if (ret < 0)
857 return (ret);
858
859 fh->fmt = &format;
860 fh->width = f->fmt.pix.width;
861 fh->height = f->fmt.pix.height;
862 fh->vb_vidq.field = f->fmt.pix.field;
863 fh->type = f->type;
864
865 return (0);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300866}
867
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300868static int vidioc_reqbufs(struct file *file, void *priv,
869 struct v4l2_requestbuffers *p)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300870{
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300871 struct vivi_fh *fh = priv;
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300872
873 return (videobuf_reqbufs(&fh->vb_vidq, p));
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300874}
875
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300876static int vidioc_querybuf(struct file *file, void *priv, struct v4l2_buffer *p)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300877{
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300878 struct vivi_fh *fh = priv;
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300879
880 return (videobuf_querybuf(&fh->vb_vidq, p));
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300881}
882
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300883static int vidioc_qbuf(struct file *file, void *priv, struct v4l2_buffer *p)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300884{
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300885 struct vivi_fh *fh = priv;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300886
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300887 return (videobuf_qbuf(&fh->vb_vidq, p));
888}
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300889
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300890static int vidioc_dqbuf(struct file *file, void *priv, struct v4l2_buffer *p)
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300891{
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300892 struct vivi_fh *fh = priv;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300893
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300894 return (videobuf_dqbuf(&fh->vb_vidq, p,
895 file->f_flags & O_NONBLOCK));
896}
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300897
Mauro Carvalho Chehab0dfa9ab2006-08-08 09:10:10 -0300898#ifdef CONFIG_VIDEO_V4L1_COMPAT
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300899static int vidiocgmbuf(struct file *file, void *priv, struct video_mbuf *mbuf)
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300900{
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300901 struct vivi_fh *fh = priv;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300902
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300903 return videobuf_cgmbuf(&fh->vb_vidq, mbuf, 8);
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300904}
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300905#endif
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300906
Adrian Bunkdc46ace2006-06-23 06:42:44 -0300907static int vidioc_streamon(struct file *file, void *priv, enum v4l2_buf_type i)
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300908{
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300909 struct vivi_fh *fh = priv;
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300910
911 if (fh->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
912 return -EINVAL;
913 if (i != fh->type)
914 return -EINVAL;
915
Brandon Philipsba32bd92007-09-27 20:55:17 -0300916 return videobuf_streamon(&fh->vb_vidq);
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300917}
918
Adrian Bunkdc46ace2006-06-23 06:42:44 -0300919static int vidioc_streamoff(struct file *file, void *priv, enum v4l2_buf_type i)
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300920{
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300921 struct vivi_fh *fh = priv;
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300922
923 if (fh->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
924 return -EINVAL;
925 if (i != fh->type)
926 return -EINVAL;
927
Brandon Philipsba32bd92007-09-27 20:55:17 -0300928 return videobuf_streamoff(&fh->vb_vidq);
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300929}
930
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300931static int vidioc_s_std(struct file *file, void *priv, v4l2_std_id *i)
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300932{
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300933 return 0;
934}
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300935
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300936/* only one input in this sample driver */
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300937static int vidioc_enum_input(struct file *file, void *priv,
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300938 struct v4l2_input *inp)
939{
940 if (inp->index != 0)
941 return -EINVAL;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300942
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300943 inp->type = V4L2_INPUT_TYPE_CAMERA;
Mauro Carvalho Chehab784c6682007-12-13 06:35:26 -0300944 inp->std = V4L2_STD_525_60;
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300945 strcpy(inp->name, "Camera");
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300946
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300947 return (0);
948}
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300949
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300950static int vidioc_g_input(struct file *file, void *priv, unsigned int *i)
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300951{
952 *i = 0;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300953
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300954 return (0);
955}
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300956static int vidioc_s_input(struct file *file, void *priv, unsigned int i)
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300957{
958 if (i > 0)
959 return -EINVAL;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300960
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300961 return (0);
962}
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300963
964 /* --- controls ---------------------------------------------- */
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300965static int vidioc_queryctrl(struct file *file, void *priv,
966 struct v4l2_queryctrl *qc)
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300967{
968 int i;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300969
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300970 for (i = 0; i < ARRAY_SIZE(vivi_qctrl); i++)
971 if (qc->id && qc->id == vivi_qctrl[i].id) {
972 memcpy(qc, &(vivi_qctrl[i]),
973 sizeof(*qc));
974 return (0);
975 }
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300976
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300977 return -EINVAL;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300978}
979
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300980static int vidioc_g_ctrl(struct file *file, void *priv,
981 struct v4l2_control *ctrl)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300982{
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300983 int i;
984
985 for (i = 0; i < ARRAY_SIZE(vivi_qctrl); i++)
986 if (ctrl->id == vivi_qctrl[i].id) {
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300987 ctrl->value = qctl_regs[i];
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300988 return (0);
989 }
990
991 return -EINVAL;
992}
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300993static int vidioc_s_ctrl(struct file *file, void *priv,
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300994 struct v4l2_control *ctrl)
995{
996 int i;
997
998 for (i = 0; i < ARRAY_SIZE(vivi_qctrl); i++)
999 if (ctrl->id == vivi_qctrl[i].id) {
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -03001000 if (ctrl->value < vivi_qctrl[i].minimum
1001 || ctrl->value > vivi_qctrl[i].maximum) {
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001002 return (-ERANGE);
1003 }
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -03001004 qctl_regs[i] = ctrl->value;
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001005 return (0);
1006 }
1007 return -EINVAL;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001008}
1009
1010/* ------------------------------------------------------------------
1011 File operations for the device
1012 ------------------------------------------------------------------*/
1013
1014#define line_buf_size(norm) (norm_maxw(norm)*(format.depth+7)/8)
1015
1016static int vivi_open(struct inode *inode, struct file *file)
1017{
1018 int minor = iminor(inode);
Trent Piephoa991f442007-10-10 05:37:43 -03001019 struct vivi_dev *dev;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001020 struct vivi_fh *fh;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001021 int i;
1022
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -03001023 printk(KERN_DEBUG "vivi: open called (minor=%d)\n", minor);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001024
Trent Piephoa991f442007-10-10 05:37:43 -03001025 list_for_each_entry(dev, &vivi_devlist, vivi_devlist)
Mauro Carvalho Chehabf905c442007-12-10 04:07:03 -03001026 if (dev->vfd->minor == minor)
Trent Piephoa991f442007-10-10 05:37:43 -03001027 goto found;
1028 return -ENODEV;
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -03001029
Trent Piephoa991f442007-10-10 05:37:43 -03001030found:
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001031 /* If more than one user, mutex should be added */
1032 dev->users++;
1033
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -03001034 dprintk(dev, 1, "open minor=%d type=%s users=%d\n", minor,
Trent Piephoa991f442007-10-10 05:37:43 -03001035 v4l2_type_names[V4L2_BUF_TYPE_VIDEO_CAPTURE], dev->users);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001036
1037 /* allocate + initialize per filehandle data */
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -03001038 fh = kzalloc(sizeof(*fh), GFP_KERNEL);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001039 if (NULL == fh) {
1040 dev->users--;
1041 return -ENOMEM;
1042 }
1043
1044 file->private_data = fh;
1045 fh->dev = dev;
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001046
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001047 fh->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
1048 fh->fmt = &format;
1049 fh->width = 640;
1050 fh->height = 480;
1051
1052 /* Put all controls at a sane state */
1053 for (i = 0; i < ARRAY_SIZE(vivi_qctrl); i++)
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -03001054 qctl_regs[i] = vivi_qctrl[i].default_value;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001055
1056 /* Resets frame counters */
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -03001057 dev->h = 0;
1058 dev->m = 0;
1059 dev->s = 0;
1060 dev->us = 0;
1061 dev->mv_count = 0;
1062 dev->jiffies = jiffies;
1063 sprintf(dev->timestr, "%02d:%02d:%02d:%03d",
1064 dev->h, dev->m, dev->s, (dev->us + 500) / 1000);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001065
Mauro Carvalho Chehab5a037702007-08-02 23:31:54 -03001066 videobuf_queue_vmalloc_init(&fh->vb_vidq, &vivi_video_qops,
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -03001067 NULL, NULL, fh->type, V4L2_FIELD_INTERLACED,
1068 sizeof(struct vivi_buffer), fh);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001069
1070 return 0;
1071}
1072
1073static ssize_t
1074vivi_read(struct file *file, char __user *data, size_t count, loff_t *ppos)
1075{
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -03001076 struct vivi_fh *fh = file->private_data;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001077
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -03001078 if (fh->type == V4L2_BUF_TYPE_VIDEO_CAPTURE) {
Mauro Carvalho Chehabacb09af2007-07-29 22:56:11 -03001079 return videobuf_read_stream(&fh->vb_vidq, data, count, ppos, 0,
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001080 file->f_flags & O_NONBLOCK);
1081 }
1082 return 0;
1083}
1084
1085static unsigned int
1086vivi_poll(struct file *file, struct poll_table_struct *wait)
1087{
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001088 struct vivi_fh *fh = file->private_data;
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -03001089 struct vivi_dev *dev = fh->dev;
Brandon Philips85c7c70bc2007-09-27 20:55:02 -03001090 struct videobuf_queue *q = &fh->vb_vidq;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001091
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -03001092 dprintk(dev, 1, "%s\n", __FUNCTION__);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001093
1094 if (V4L2_BUF_TYPE_VIDEO_CAPTURE != fh->type)
1095 return POLLERR;
1096
Brandon Philips85c7c70bc2007-09-27 20:55:02 -03001097 return videobuf_poll_stream(file, q, wait);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001098}
1099
Mauro Carvalho Chehabf905c442007-12-10 04:07:03 -03001100static int vivi_close(struct inode *inode, struct file *file)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001101{
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001102 struct vivi_fh *fh = file->private_data;
1103 struct vivi_dev *dev = fh->dev;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001104 struct vivi_dmaqueue *vidq = &dev->vidq;
1105
1106 int minor = iminor(inode);
1107
1108 vivi_stop_thread(vidq);
Brandon Philips053fcb62007-11-13 20:11:26 -03001109 videobuf_stop(&fh->vb_vidq);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001110 videobuf_mmap_free(&fh->vb_vidq);
1111
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001112 kfree(fh);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001113
1114 dev->users--;
1115
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -03001116 dprintk(dev, 1, "close called (minor=%d, users=%d)\n",
1117 minor, dev->users);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001118
1119 return 0;
1120}
1121
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001122static int vivi_release(void)
Mauro Carvalho Chehabf905c442007-12-10 04:07:03 -03001123{
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001124 struct vivi_dev *dev;
1125 struct list_head *list;
Mauro Carvalho Chehabf905c442007-12-10 04:07:03 -03001126
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001127 while (!list_empty(&vivi_devlist)) {
1128 list = vivi_devlist.next;
1129 list_del(list);
1130 dev = list_entry(list, struct vivi_dev, vivi_devlist);
1131
1132 if (-1 != dev->vfd->minor)
1133 video_unregister_device(dev->vfd);
1134 else
1135 video_device_release(dev->vfd);
1136
1137 kfree(dev);
1138 }
Mauro Carvalho Chehabf905c442007-12-10 04:07:03 -03001139
1140 return 0;
1141}
1142
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -03001143static int vivi_mmap(struct file *file, struct vm_area_struct *vma)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001144{
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -03001145 struct vivi_fh *fh = file->private_data;
1146 struct vivi_dev *dev = fh->dev;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001147 int ret;
1148
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -03001149 dprintk(dev, 1, "mmap called, vma=0x%08lx\n", (unsigned long)vma);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001150
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -03001151 ret = videobuf_mmap_mapper(&fh->vb_vidq, vma);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001152
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -03001153 dprintk(dev, 1, "vma start=0x%08lx, size=%ld, ret=%d\n",
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001154 (unsigned long)vma->vm_start,
1155 (unsigned long)vma->vm_end-(unsigned long)vma->vm_start,
1156 ret);
1157
1158 return ret;
1159}
1160
Arjan van de Venfa027c22007-02-12 00:55:33 -08001161static const struct file_operations vivi_fops = {
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001162 .owner = THIS_MODULE,
1163 .open = vivi_open,
Mauro Carvalho Chehabf905c442007-12-10 04:07:03 -03001164 .release = vivi_close,
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001165 .read = vivi_read,
1166 .poll = vivi_poll,
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001167 .ioctl = video_ioctl2, /* V4L2 ioctl handler */
Mauro Carvalho Chehab5a037702007-08-02 23:31:54 -03001168 .mmap = vivi_mmap,
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001169 .llseek = no_llseek,
1170};
1171
Mauro Carvalho Chehabf905c442007-12-10 04:07:03 -03001172static struct video_device vivi_template = {
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001173 .name = "vivi",
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001174 .type = VID_TYPE_CAPTURE,
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001175 .fops = &vivi_fops,
1176 .minor = -1,
Mauro Carvalho Chehabf905c442007-12-10 04:07:03 -03001177 .release = video_device_release,
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001178
1179 .vidioc_querycap = vidioc_querycap,
1180 .vidioc_enum_fmt_cap = vidioc_enum_fmt_cap,
1181 .vidioc_g_fmt_cap = vidioc_g_fmt_cap,
1182 .vidioc_try_fmt_cap = vidioc_try_fmt_cap,
1183 .vidioc_s_fmt_cap = vidioc_s_fmt_cap,
1184 .vidioc_reqbufs = vidioc_reqbufs,
1185 .vidioc_querybuf = vidioc_querybuf,
1186 .vidioc_qbuf = vidioc_qbuf,
1187 .vidioc_dqbuf = vidioc_dqbuf,
1188 .vidioc_s_std = vidioc_s_std,
1189 .vidioc_enum_input = vidioc_enum_input,
1190 .vidioc_g_input = vidioc_g_input,
1191 .vidioc_s_input = vidioc_s_input,
1192 .vidioc_queryctrl = vidioc_queryctrl,
1193 .vidioc_g_ctrl = vidioc_g_ctrl,
1194 .vidioc_s_ctrl = vidioc_s_ctrl,
1195 .vidioc_streamon = vidioc_streamon,
1196 .vidioc_streamoff = vidioc_streamoff,
Mauro Carvalho Chehab0dfa9ab2006-08-08 09:10:10 -03001197#ifdef CONFIG_VIDEO_V4L1_COMPAT
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001198 .vidiocgmbuf = vidiocgmbuf,
1199#endif
Mauro Carvalho Chehab784c6682007-12-13 06:35:26 -03001200 .tvnorms = V4L2_STD_525_60,
Mauro Carvalho Chehabe75f9ce2006-11-20 13:19:20 -03001201 .current_norm = V4L2_STD_NTSC_M,
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001202};
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001203/* -----------------------------------------------------------------
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001204 Initialization and module stuff
1205 ------------------------------------------------------------------*/
1206
1207static int __init vivi_init(void)
1208{
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001209 int ret = -ENOMEM, i;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001210 struct vivi_dev *dev;
Mauro Carvalho Chehabf905c442007-12-10 04:07:03 -03001211 struct video_device *vfd;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001212
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001213 for (i = 0; i < n_devs; i++) {
1214 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
1215 if (NULL == dev)
1216 break;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001217
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001218 list_add_tail(&dev->vivi_devlist, &vivi_devlist);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001219
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001220 /* init video dma queues */
1221 INIT_LIST_HEAD(&dev->vidq.active);
1222 INIT_LIST_HEAD(&dev->vidq.queued);
1223 init_waitqueue_head(&dev->vidq.wq);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001224
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001225 /* initialize locks */
1226 mutex_init(&dev->lock);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001227
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001228 dev->vidq.timeout.function = vivi_vid_timeout;
1229 dev->vidq.timeout.data = (unsigned long)dev;
1230 init_timer(&dev->vidq.timeout);
Mauro Carvalho Chehabf905c442007-12-10 04:07:03 -03001231
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001232 vfd = video_device_alloc();
1233 if (NULL == vfd)
1234 break;
Mauro Carvalho Chehabf905c442007-12-10 04:07:03 -03001235
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001236 *vfd = vivi_template;
Mauro Carvalho Chehabf905c442007-12-10 04:07:03 -03001237
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001238 ret = video_register_device(vfd, VFL_TYPE_GRABBER, video_nr);
1239 if (ret < 0)
1240 break;
Mauro Carvalho Chehabf905c442007-12-10 04:07:03 -03001241
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001242 snprintf(vfd->name, sizeof(vfd->name), "%s (%i)",
1243 vivi_template.name, vfd->minor);
1244
1245 if (video_nr >= 0)
1246 video_nr++;
1247
1248 dev->vfd = vfd;
1249 }
1250
1251 if (ret < 0) {
1252 vivi_release();
1253 printk(KERN_INFO "Error %d while loading vivi driver\n", ret);
1254 } else
1255 printk(KERN_INFO "Video Technology Magazine Virtual Video "
1256 "Capture Board successfully loaded.\n");
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001257 return ret;
1258}
1259
1260static void __exit vivi_exit(void)
1261{
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001262 vivi_release();
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001263}
1264
1265module_init(vivi_init);
1266module_exit(vivi_exit);
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001267
1268MODULE_DESCRIPTION("Video Technology Magazine Virtual Video Capture Board");
1269MODULE_AUTHOR("Mauro Carvalho Chehab, Ted Walther and John Sokol");
1270MODULE_LICENSE("Dual BSD/GPL");
1271
1272module_param(video_nr, int, 0);
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001273MODULE_PARM_DESC(video_nr, "video iminor start number");
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001274
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001275module_param(n_devs, int, 0);
1276MODULE_PARM_DESC(n_devs, "number of video devices to create");
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001277
Mauro Carvalho Chehab8996b3f2007-12-13 06:36:22 -03001278module_param_named(debug, vivi_template.debug, int, 0444);
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001279MODULE_PARM_DESC(debug, "activates debug info");
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001280
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001281module_param(vid_limit, int, 0644);
1282MODULE_PARM_DESC(vid_limit, "capture memory limit in megabytes");