blob: 02a232768e3bd68c2d93332cd717e8d60da95e3a [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 Chehab55862ac2007-12-13 16:13:37 -0300166 spinlock_t slock;
Brandon Philipsaa9dbac2008-04-02 18:10:59 -0300167 struct mutex mutex;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300168
169 int users;
170
171 /* various device info */
Mauro Carvalho Chehabf905c442007-12-10 04:07:03 -0300172 struct video_device *vfd;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300173
174 struct vivi_dmaqueue vidq;
175
176 /* Several counters */
Mauro Carvalho Chehabdfd8c042008-01-13 19:36:11 -0300177 int h, m, s, ms;
178 unsigned long jiffies;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300179 char timestr[13];
Mauro Carvalho Chehab025341d2007-12-10 04:43:38 -0300180
181 int mv_count; /* Controls bars movement */
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300182};
183
184struct vivi_fh {
185 struct vivi_dev *dev;
186
187 /* video capture */
188 struct vivi_fmt *fmt;
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300189 unsigned int width, height;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300190 struct videobuf_queue vb_vidq;
191
192 enum v4l2_buf_type type;
193};
194
195/* ------------------------------------------------------------------
196 DMA and thread functions
197 ------------------------------------------------------------------*/
198
199/* Bars and Colors should match positions */
200
201enum colors {
202 WHITE,
203 AMBAR,
204 CYAN,
205 GREEN,
206 MAGENTA,
207 RED,
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300208 BLUE,
209 BLACK,
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300210};
211
212static u8 bars[8][3] = {
213 /* R G B */
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300214 {204, 204, 204}, /* white */
215 {208, 208, 0}, /* ambar */
216 { 0, 206, 206}, /* cyan */
217 { 0, 239, 0}, /* green */
218 {239, 0, 239}, /* magenta */
219 {205, 0, 0}, /* red */
220 { 0, 0, 255}, /* blue */
221 { 0, 0, 0}, /* black */
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300222};
223
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300224#define TO_Y(r, g, b) \
225 (((16829 * r + 33039 * g + 6416 * b + 32768) >> 16) + 16)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300226/* RGB to V(Cr) Color transform */
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300227#define TO_V(r, g, b) \
228 (((28784 * r - 24103 * g - 4681 * b + 32768) >> 16) + 128)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300229/* RGB to U(Cb) Color transform */
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300230#define TO_U(r, g, b) \
231 (((-9714 * r - 19070 * g + 28784 * b + 32768) >> 16) + 128)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300232
233#define TSTAMP_MIN_Y 24
234#define TSTAMP_MAX_Y TSTAMP_MIN_Y+15
235#define TSTAMP_MIN_X 64
236
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300237static void gen_line(char *basep, int inipos, int wmax,
238 int hmax, int line, int count, char *timestr)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300239{
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300240 int w, i, j, y;
241 int pos = inipos;
242 char *p, *s;
243 u8 chr, r, g, b, color;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300244
245 /* We will just duplicate the second pixel at the packet */
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300246 wmax /= 2;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300247
248 /* Generate a standard color bar pattern */
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300249 for (w = 0; w < wmax; w++) {
250 int colorpos = ((w + count) * 8/(wmax + 1)) % 8;
251 r = bars[colorpos][0];
252 g = bars[colorpos][1];
253 b = bars[colorpos][2];
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300254
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300255 for (color = 0; color < 4; color++) {
256 p = basep + pos;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300257
258 switch (color) {
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300259 case 0:
260 case 2:
261 *p = TO_Y(r, g, b); /* Luma */
262 break;
263 case 1:
264 *p = TO_U(r, g, b); /* Cb */
265 break;
266 case 3:
267 *p = TO_V(r, g, b); /* Cr */
268 break;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300269 }
270 pos++;
271 }
272 }
273
274 /* Checks if it is possible to show timestamp */
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300275 if (TSTAMP_MAX_Y >= hmax)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300276 goto end;
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300277 if (TSTAMP_MIN_X + strlen(timestr) >= wmax)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300278 goto end;
279
280 /* Print stream time */
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300281 if (line >= TSTAMP_MIN_Y && line <= TSTAMP_MAX_Y) {
282 j = TSTAMP_MIN_X;
283 for (s = timestr; *s; s++) {
284 chr = rom8x16_bits[(*s-0x30)*16+line-TSTAMP_MIN_Y];
285 for (i = 0; i < 7; i++) {
286 if (chr & 1 << (7 - i)) {
287 /* Font color*/
288 r = 0;
289 g = 198;
290 b = 0;
291 } else {
292 /* Background color */
293 r = bars[BLACK][0];
294 g = bars[BLACK][1];
295 b = bars[BLACK][2];
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300296 }
297
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300298 pos = inipos + j * 2;
299 for (color = 0; color < 4; color++) {
300 p = basep + pos;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300301
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300302 y = TO_Y(r, g, b);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300303
304 switch (color) {
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300305 case 0:
306 case 2:
307 *p = TO_Y(r, g, b); /* Luma */
308 break;
309 case 1:
310 *p = TO_U(r, g, b); /* Cb */
311 break;
312 case 3:
313 *p = TO_V(r, g, b); /* Cr */
314 break;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300315 }
316 pos++;
317 }
318 j++;
319 }
320 }
321 }
322
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300323end:
Mauro Carvalho Chehabb50e7fe2007-01-25 05:00:01 -0300324 return;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300325}
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300326static void vivi_fillbuff(struct vivi_dev *dev, struct vivi_buffer *buf)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300327{
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300328 int h , pos = 0;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300329 int hmax = buf->vb.height;
330 int wmax = buf->vb.width;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300331 struct timeval ts;
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300332 char *tmpbuf = kmalloc(wmax * 2, GFP_KERNEL);
333 void *vbuf = videobuf_to_vmalloc(&buf->vb);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300334
Mauro Carvalho Chehab5a037702007-08-02 23:31:54 -0300335 if (!tmpbuf)
336 return;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300337
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300338 for (h = 0; h < hmax; h++) {
Mauro Carvalho Chehab025341d2007-12-10 04:43:38 -0300339 gen_line(tmpbuf, 0, wmax, hmax, h, dev->mv_count,
Mauro Carvalho Chehab3bef5e42007-09-22 02:01:33 -0300340 dev->timestr);
Mauro Carvalho Chehab5a037702007-08-02 23:31:54 -0300341 /* FIXME: replacing to __copy_to_user */
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300342 if (copy_to_user(vbuf + pos, tmpbuf, wmax * 2) != 0)
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300343 dprintk(dev, 2, "vivifill copy_to_user failed.\n");
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300344 pos += wmax*2;
345 }
346
Mauro Carvalho Chehab025341d2007-12-10 04:43:38 -0300347 dev->mv_count++;
Mauro Carvalho Chehab3bef5e42007-09-22 02:01:33 -0300348
Mauro Carvalho Chehab5a037702007-08-02 23:31:54 -0300349 kfree(tmpbuf);
350
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300351 /* Updates stream time */
352
Mauro Carvalho Chehabdfd8c042008-01-13 19:36:11 -0300353 dev->ms += jiffies_to_msecs(jiffies-dev->jiffies);
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300354 dev->jiffies = jiffies;
Mauro Carvalho Chehabdfd8c042008-01-13 19:36:11 -0300355 if (dev->ms >= 1000) {
356 dev->ms -= 1000;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300357 dev->s++;
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300358 if (dev->s >= 60) {
359 dev->s -= 60;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300360 dev->m++;
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300361 if (dev->m > 60) {
362 dev->m -= 60;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300363 dev->h++;
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300364 if (dev->h > 24)
365 dev->h -= 24;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300366 }
367 }
368 }
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300369 sprintf(dev->timestr, "%02d:%02d:%02d:%03d",
Mauro Carvalho Chehabdfd8c042008-01-13 19:36:11 -0300370 dev->h, dev->m, dev->s, dev->ms);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300371
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300372 dprintk(dev, 2, "vivifill at %s: Buffer 0x%08lx size= %d\n",
373 dev->timestr, (unsigned long)tmpbuf, pos);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300374
375 /* Advice that buffer was filled */
Brandon Philips0fc06862007-11-06 20:02:36 -0300376 buf->vb.state = VIDEOBUF_DONE;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300377 buf->vb.field_count++;
378 do_gettimeofday(&ts);
379 buf->vb.ts = ts;
380
381 list_del(&buf->vb.queue);
382 wake_up(&buf->vb.done);
383}
384
385static int restart_video_queue(struct vivi_dmaqueue *dma_q);
386
387static void vivi_thread_tick(struct vivi_dmaqueue *dma_q)
388{
389 struct vivi_buffer *buf;
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300390 struct vivi_dev *dev = container_of(dma_q, struct vivi_dev, vidq);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300391
392 int bc;
393
Mauro Carvalho Chehab55862ac2007-12-13 16:13:37 -0300394 spin_lock(&dev->slock);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300395 /* Announces videobuf that all went ok */
396 for (bc = 0;; bc++) {
397 if (list_empty(&dma_q->active)) {
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300398 dprintk(dev, 1, "No active queue to serve\n");
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300399 break;
400 }
401
402 buf = list_entry(dma_q->active.next,
403 struct vivi_buffer, vb.queue);
404
405 /* Nobody is waiting something to be done, just return */
406 if (!waitqueue_active(&buf->vb.done)) {
407 mod_timer(&dma_q->timeout, jiffies+BUFFER_TIMEOUT);
Mauro Carvalho Chehab55862ac2007-12-13 16:13:37 -0300408 spin_unlock(&dev->slock);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300409 return;
410 }
411
412 do_gettimeofday(&buf->vb.ts);
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300413 dprintk(dev, 2, "[%p/%d] wakeup\n", buf, buf->vb. i);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300414
415 /* Fill buffer */
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300416 vivi_fillbuff(dev, buf);
Mauro Carvalho Chehab0b600512007-01-14 08:33:24 -0300417
418 if (list_empty(&dma_q->active)) {
419 del_timer(&dma_q->timeout);
420 } else {
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300421 mod_timer(&dma_q->timeout, jiffies + BUFFER_TIMEOUT);
Mauro Carvalho Chehab0b600512007-01-14 08:33:24 -0300422 }
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300423 }
424 if (bc != 1)
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300425 dprintk(dev, 1, "%s: %d buffers handled (should be 1)\n",
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300426 __FUNCTION__, bc);
Mauro Carvalho Chehab55862ac2007-12-13 16:13:37 -0300427 spin_unlock(&dev->slock);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300428}
429
Mauro Carvalho Chehab6594ad82007-12-13 16:15:41 -0300430#define frames_to_ms(frames) \
431 ((frames * WAKE_NUMERATOR * 1000) / WAKE_DENOMINATOR)
432
Adrian Bunk972c3512006-04-27 21:06:50 -0300433static void vivi_sleep(struct vivi_dmaqueue *dma_q)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300434{
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300435 struct vivi_dev *dev = container_of(dma_q, struct vivi_dev, vidq);
Mauro Carvalho Chehab6594ad82007-12-13 16:15:41 -0300436 int timeout, running_time;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300437 DECLARE_WAITQUEUE(wait, current);
438
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300439 dprintk(dev, 1, "%s dma_q=0x%08lx\n", __FUNCTION__,
440 (unsigned long)dma_q);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300441
442 add_wait_queue(&dma_q->wq, &wait);
Mauro Carvalho Chehab6594ad82007-12-13 16:15:41 -0300443 if (kthread_should_stop())
444 goto stop_task;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300445
Mauro Carvalho Chehab6594ad82007-12-13 16:15:41 -0300446 running_time = jiffies - dma_q->ini_jiffies;
447 dma_q->frame++;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300448
Mauro Carvalho Chehab6594ad82007-12-13 16:15:41 -0300449 /* Calculate time to wake up */
450 timeout = msecs_to_jiffies(frames_to_ms(dma_q->frame)) - running_time;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300451
Mauro Carvalho Chehab6594ad82007-12-13 16:15:41 -0300452 if (timeout > msecs_to_jiffies(frames_to_ms(2)) || timeout <= 0) {
453 int old = dma_q->frame;
454 int nframes;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300455
Mauro Carvalho Chehab6594ad82007-12-13 16:15:41 -0300456 dma_q->frame = (jiffies_to_msecs(running_time) /
457 frames_to_ms(1)) + 1;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300458
Mauro Carvalho Chehab6594ad82007-12-13 16:15:41 -0300459 timeout = msecs_to_jiffies(frames_to_ms(dma_q->frame))
460 - running_time;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300461
Mauro Carvalho Chehab6594ad82007-12-13 16:15:41 -0300462 if (unlikely (timeout <= 0))
463 timeout = 1;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300464
Mauro Carvalho Chehab6594ad82007-12-13 16:15:41 -0300465 nframes = (dma_q->frame > old)?
466 dma_q->frame - old : old - dma_q->frame;
467
468 dprintk(dev, 1, "%ld: %s %d frames. "
469 "Current frame is %d. Will sleep for %d jiffies\n",
470 jiffies,
471 (dma_q->frame > old)? "Underrun, losed" : "Overrun of",
472 nframes, dma_q->frame, timeout);
473 } else
474 dprintk(dev, 1, "will sleep for %d jiffies\n", timeout);
475
476 vivi_thread_tick(dma_q);
477
478 schedule_timeout_interruptible(timeout);
479
480stop_task:
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300481 remove_wait_queue(&dma_q->wq, &wait);
482 try_to_freeze();
483}
484
Adrian Bunk972c3512006-04-27 21:06:50 -0300485static int vivi_thread(void *data)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300486{
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300487 struct vivi_dmaqueue *dma_q = data;
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300488 struct vivi_dev *dev = container_of(dma_q, struct vivi_dev, vidq);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300489
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300490 dprintk(dev, 1, "thread started\n");
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300491
Mauro Carvalho Chehab0b600512007-01-14 08:33:24 -0300492 mod_timer(&dma_q->timeout, jiffies+BUFFER_TIMEOUT);
Rafael J. Wysocki83144182007-07-17 04:03:35 -0700493 set_freezable();
Mauro Carvalho Chehab0b600512007-01-14 08:33:24 -0300494
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300495 for (;;) {
496 vivi_sleep(dma_q);
497
498 if (kthread_should_stop())
499 break;
500 }
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300501 dprintk(dev, 1, "thread: exit\n");
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300502 return 0;
503}
504
Adrian Bunk972c3512006-04-27 21:06:50 -0300505static int vivi_start_thread(struct vivi_dmaqueue *dma_q)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300506{
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300507 struct vivi_dev *dev = container_of(dma_q, struct vivi_dev, vidq);
508
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300509 dma_q->frame = 0;
510 dma_q->ini_jiffies = jiffies;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300511
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300512 dprintk(dev, 1, "%s\n", __FUNCTION__);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300513
514 dma_q->kthread = kthread_run(vivi_thread, dma_q, "vivi");
515
Akinobu Mita054afee2006-12-20 10:04:00 -0300516 if (IS_ERR(dma_q->kthread)) {
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300517 printk(KERN_ERR "vivi: kernel_thread() failed\n");
Akinobu Mita054afee2006-12-20 10:04:00 -0300518 return PTR_ERR(dma_q->kthread);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300519 }
Mauro Carvalho Chehab0b600512007-01-14 08:33:24 -0300520 /* Wakes thread */
521 wake_up_interruptible(&dma_q->wq);
522
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300523 dprintk(dev, 1, "returning from %s\n", __FUNCTION__);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300524 return 0;
525}
526
Adrian Bunk972c3512006-04-27 21:06:50 -0300527static void vivi_stop_thread(struct vivi_dmaqueue *dma_q)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300528{
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300529 struct vivi_dev *dev = container_of(dma_q, struct vivi_dev, vidq);
530
531 dprintk(dev, 1, "%s\n", __FUNCTION__);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300532 /* shutdown control thread */
533 if (dma_q->kthread) {
534 kthread_stop(dma_q->kthread);
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300535 dma_q->kthread = NULL;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300536 }
537}
538
539static int restart_video_queue(struct vivi_dmaqueue *dma_q)
540{
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300541 struct vivi_dev *dev = container_of(dma_q, struct vivi_dev, vidq);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300542 struct vivi_buffer *buf, *prev;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300543
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300544 dprintk(dev, 1, "%s dma_q=0x%08lx\n", __FUNCTION__,
545 (unsigned long)dma_q);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300546
547 if (!list_empty(&dma_q->active)) {
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300548 buf = list_entry(dma_q->active.next,
549 struct vivi_buffer, vb.queue);
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300550 dprintk(dev, 2, "restart_queue [%p/%d]: restart dma\n",
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300551 buf, buf->vb.i);
552
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300553 dprintk(dev, 1, "Restarting video dma\n");
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300554 vivi_stop_thread(dma_q);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300555
556 /* cancel all outstanding capture / vbi requests */
Trent Piephoa991f442007-10-10 05:37:43 -0300557 list_for_each_entry_safe(buf, prev, &dma_q->active, vb.queue) {
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300558 list_del(&buf->vb.queue);
Brandon Philips0fc06862007-11-06 20:02:36 -0300559 buf->vb.state = VIDEOBUF_ERROR;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300560 wake_up(&buf->vb.done);
561 }
562 mod_timer(&dma_q->timeout, jiffies+BUFFER_TIMEOUT);
563
564 return 0;
565 }
566
567 prev = NULL;
568 for (;;) {
569 if (list_empty(&dma_q->queued))
570 return 0;
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300571 buf = list_entry(dma_q->queued.next,
572 struct vivi_buffer, vb.queue);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300573 if (NULL == prev) {
574 list_del(&buf->vb.queue);
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300575 list_add_tail(&buf->vb.queue, &dma_q->active);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300576
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300577 dprintk(dev, 1, "Restarting video dma\n");
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300578 vivi_stop_thread(dma_q);
579 vivi_start_thread(dma_q);
580
Brandon Philips0fc06862007-11-06 20:02:36 -0300581 buf->vb.state = VIDEOBUF_ACTIVE;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300582 mod_timer(&dma_q->timeout, jiffies+BUFFER_TIMEOUT);
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300583 dprintk(dev, 2,
584 "[%p/%d] restart_queue - first active\n",
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300585 buf, buf->vb.i);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300586
587 } else if (prev->vb.width == buf->vb.width &&
588 prev->vb.height == buf->vb.height &&
589 prev->fmt == buf->fmt) {
590 list_del(&buf->vb.queue);
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300591 list_add_tail(&buf->vb.queue, &dma_q->active);
Brandon Philips0fc06862007-11-06 20:02:36 -0300592 buf->vb.state = VIDEOBUF_ACTIVE;
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300593 dprintk(dev, 2,
594 "[%p/%d] restart_queue - move to active\n",
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300595 buf, buf->vb.i);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300596 } else {
597 return 0;
598 }
599 prev = buf;
600 }
601}
602
603static void vivi_vid_timeout(unsigned long data)
604{
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300605 struct vivi_dev *dev = (struct vivi_dev *)data;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300606 struct vivi_dmaqueue *vidq = &dev->vidq;
607 struct vivi_buffer *buf;
608
Mauro Carvalho Chehab55862ac2007-12-13 16:13:37 -0300609 spin_lock(&dev->slock);
610
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300611 while (!list_empty(&vidq->active)) {
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300612 buf = list_entry(vidq->active.next,
613 struct vivi_buffer, vb.queue);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300614 list_del(&buf->vb.queue);
Brandon Philips0fc06862007-11-06 20:02:36 -0300615 buf->vb.state = VIDEOBUF_ERROR;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300616 wake_up(&buf->vb.done);
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300617 printk(KERN_INFO "vivi/0: [%p/%d] timeout\n", buf, buf->vb.i);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300618 }
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300619 restart_video_queue(vidq);
Mauro Carvalho Chehab55862ac2007-12-13 16:13:37 -0300620
621 spin_unlock(&dev->slock);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300622}
623
624/* ------------------------------------------------------------------
625 Videobuf operations
626 ------------------------------------------------------------------*/
627static int
628buffer_setup(struct videobuf_queue *vq, unsigned int *count, unsigned int *size)
629{
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300630 struct vivi_fh *fh = vq->priv_data;
631 struct vivi_dev *dev = fh->dev;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300632
633 *size = fh->width*fh->height*2;
634
635 if (0 == *count)
636 *count = 32;
Mauro Carvalho Chehab6bb27902007-08-23 16:41:14 -0300637
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300638 while (*size * *count > vid_limit * 1024 * 1024)
639 (*count)--;
Mauro Carvalho Chehab6bb27902007-08-23 16:41:14 -0300640
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300641 dprintk(dev, 1, "%s, count=%d, size=%d\n", __FUNCTION__,
642 *count, *size);
Mauro Carvalho Chehab6bb27902007-08-23 16:41:14 -0300643
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300644 return 0;
645}
646
Adrian Bunk972c3512006-04-27 21:06:50 -0300647static void free_buffer(struct videobuf_queue *vq, struct vivi_buffer *buf)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300648{
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300649 struct vivi_fh *fh = vq->priv_data;
650 struct vivi_dev *dev = fh->dev;
651
652 dprintk(dev, 1, "%s\n", __FUNCTION__);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300653
654 if (in_interrupt())
655 BUG();
656
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300657 videobuf_waiton(&buf->vb, 0, 0);
Mauro Carvalho Chehab5a037702007-08-02 23:31:54 -0300658 videobuf_vmalloc_free(&buf->vb);
Brandon Philips0fc06862007-11-06 20:02:36 -0300659 buf->vb.state = VIDEOBUF_NEEDS_INIT;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300660}
661
662#define norm_maxw() 1024
663#define norm_maxh() 768
664static int
665buffer_prepare(struct videobuf_queue *vq, struct videobuf_buffer *vb,
666 enum v4l2_field field)
667{
668 struct vivi_fh *fh = vq->priv_data;
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300669 struct vivi_dev *dev = fh->dev;
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300670 struct vivi_buffer *buf = container_of(vb, struct vivi_buffer, vb);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300671 int rc, init_buffer = 0;
672
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300673 dprintk(dev, 1, "%s, field=%d\n", __FUNCTION__, field);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300674
675 BUG_ON(NULL == fh->fmt);
676 if (fh->width < 48 || fh->width > norm_maxw() ||
677 fh->height < 32 || fh->height > norm_maxh())
678 return -EINVAL;
679 buf->vb.size = fh->width*fh->height*2;
680 if (0 != buf->vb.baddr && buf->vb.bsize < buf->vb.size)
681 return -EINVAL;
682
683 if (buf->fmt != fh->fmt ||
684 buf->vb.width != fh->width ||
685 buf->vb.height != fh->height ||
686 buf->vb.field != field) {
687 buf->fmt = fh->fmt;
688 buf->vb.width = fh->width;
689 buf->vb.height = fh->height;
690 buf->vb.field = field;
691 init_buffer = 1;
692 }
693
Brandon Philips0fc06862007-11-06 20:02:36 -0300694 if (VIDEOBUF_NEEDS_INIT == buf->vb.state) {
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300695 rc = videobuf_iolock(vq, &buf->vb, NULL);
696 if (rc < 0)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300697 goto fail;
698 }
699
Brandon Philips0fc06862007-11-06 20:02:36 -0300700 buf->vb.state = VIDEOBUF_PREPARED;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300701
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300702 return 0;
703
704fail:
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300705 free_buffer(vq, buf);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300706 return rc;
707}
708
709static void
710buffer_queue(struct videobuf_queue *vq, struct videobuf_buffer *vb)
711{
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300712 struct vivi_buffer *buf = container_of(vb, struct vivi_buffer, vb);
713 struct vivi_fh *fh = vq->priv_data;
714 struct vivi_dev *dev = fh->dev;
715 struct vivi_dmaqueue *vidq = &dev->vidq;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300716 struct vivi_buffer *prev;
717
718 if (!list_empty(&vidq->queued)) {
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300719 dprintk(dev, 1, "adding vb queue=0x%08lx\n",
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300720 (unsigned long)&buf->vb.queue);
721 list_add_tail(&buf->vb.queue, &vidq->queued);
Brandon Philips0fc06862007-11-06 20:02:36 -0300722 buf->vb.state = VIDEOBUF_QUEUED;
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300723 dprintk(dev, 2, "[%p/%d] buffer_queue - append to queued\n",
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300724 buf, buf->vb.i);
725 } else if (list_empty(&vidq->active)) {
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300726 list_add_tail(&buf->vb.queue, &vidq->active);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300727
Brandon Philips0fc06862007-11-06 20:02:36 -0300728 buf->vb.state = VIDEOBUF_ACTIVE;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300729 mod_timer(&vidq->timeout, jiffies+BUFFER_TIMEOUT);
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300730 dprintk(dev, 2, "[%p/%d] buffer_queue - first active\n",
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300731 buf, buf->vb.i);
732
733 vivi_start_thread(vidq);
734 } else {
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300735 prev = list_entry(vidq->active.prev,
736 struct vivi_buffer, vb.queue);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300737 if (prev->vb.width == buf->vb.width &&
738 prev->vb.height == buf->vb.height &&
739 prev->fmt == buf->fmt) {
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300740 list_add_tail(&buf->vb.queue, &vidq->active);
Brandon Philips0fc06862007-11-06 20:02:36 -0300741 buf->vb.state = VIDEOBUF_ACTIVE;
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300742 dprintk(dev, 2,
743 "[%p/%d] buffer_queue - append to active\n",
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300744 buf, buf->vb.i);
745
746 } else {
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300747 list_add_tail(&buf->vb.queue, &vidq->queued);
Brandon Philips0fc06862007-11-06 20:02:36 -0300748 buf->vb.state = VIDEOBUF_QUEUED;
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300749 dprintk(dev, 2,
750 "[%p/%d] buffer_queue - first queued\n",
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300751 buf, buf->vb.i);
752 }
753 }
754}
755
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300756static void buffer_release(struct videobuf_queue *vq,
757 struct videobuf_buffer *vb)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300758{
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300759 struct vivi_buffer *buf = container_of(vb, struct vivi_buffer, vb);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300760 struct vivi_fh *fh = vq->priv_data;
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300761 struct vivi_dev *dev = (struct vivi_dev *)fh->dev;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300762 struct vivi_dmaqueue *vidq = &dev->vidq;
763
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300764 dprintk(dev, 1, "%s\n", __FUNCTION__);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300765
766 vivi_stop_thread(vidq);
767
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300768 free_buffer(vq, buf);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300769}
770
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300771static struct videobuf_queue_ops vivi_video_qops = {
772 .buf_setup = buffer_setup,
773 .buf_prepare = buffer_prepare,
774 .buf_queue = buffer_queue,
775 .buf_release = buffer_release,
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300776};
777
778/* ------------------------------------------------------------------
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300779 IOCTL vidioc handling
780 ------------------------------------------------------------------*/
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300781static int vidioc_querycap(struct file *file, void *priv,
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300782 struct v4l2_capability *cap)
783{
784 strcpy(cap->driver, "vivi");
785 strcpy(cap->card, "vivi");
786 cap->version = VIVI_VERSION;
787 cap->capabilities = V4L2_CAP_VIDEO_CAPTURE |
788 V4L2_CAP_STREAMING |
789 V4L2_CAP_READWRITE;
790 return 0;
791}
792
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300793static int vidioc_enum_fmt_cap(struct file *file, void *priv,
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300794 struct v4l2_fmtdesc *f)
795{
796 if (f->index > 0)
797 return -EINVAL;
798
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300799 strlcpy(f->description, format.name, sizeof(f->description));
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300800 f->pixelformat = format.fourcc;
801 return 0;
802}
803
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300804static int vidioc_g_fmt_cap(struct file *file, void *priv,
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300805 struct v4l2_format *f)
806{
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300807 struct vivi_fh *fh = priv;
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300808
809 f->fmt.pix.width = fh->width;
810 f->fmt.pix.height = fh->height;
811 f->fmt.pix.field = fh->vb_vidq.field;
812 f->fmt.pix.pixelformat = fh->fmt->fourcc;
813 f->fmt.pix.bytesperline =
814 (f->fmt.pix.width * fh->fmt->depth) >> 3;
815 f->fmt.pix.sizeimage =
816 f->fmt.pix.height * f->fmt.pix.bytesperline;
817
818 return (0);
819}
820
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300821static int vidioc_try_fmt_cap(struct file *file, void *priv,
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300822 struct v4l2_format *f)
823{
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300824 struct vivi_fh *fh = priv;
825 struct vivi_dev *dev = fh->dev;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300826 struct vivi_fmt *fmt;
827 enum v4l2_field field;
828 unsigned int maxw, maxh;
829
830 if (format.fourcc != f->fmt.pix.pixelformat) {
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300831 dprintk(dev, 1, "Fourcc format (0x%08x) invalid. "
832 "Driver accepts only 0x%08x\n",
833 f->fmt.pix.pixelformat, format.fourcc);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300834 return -EINVAL;
835 }
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300836 fmt = &format;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300837
838 field = f->fmt.pix.field;
839
840 if (field == V4L2_FIELD_ANY) {
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300841 field = V4L2_FIELD_INTERLACED;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300842 } else if (V4L2_FIELD_INTERLACED != field) {
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300843 dprintk(dev, 1, "Field type invalid.\n");
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300844 return -EINVAL;
845 }
846
847 maxw = norm_maxw();
848 maxh = norm_maxh();
849
850 f->fmt.pix.field = field;
851 if (f->fmt.pix.height < 32)
852 f->fmt.pix.height = 32;
853 if (f->fmt.pix.height > maxh)
854 f->fmt.pix.height = maxh;
855 if (f->fmt.pix.width < 48)
856 f->fmt.pix.width = 48;
857 if (f->fmt.pix.width > maxw)
858 f->fmt.pix.width = maxw;
859 f->fmt.pix.width &= ~0x03;
860 f->fmt.pix.bytesperline =
861 (f->fmt.pix.width * fmt->depth) >> 3;
862 f->fmt.pix.sizeimage =
863 f->fmt.pix.height * f->fmt.pix.bytesperline;
864
865 return 0;
866}
867
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300868/*FIXME: This seems to be generic enough to be at videodev2 */
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300869static int vidioc_s_fmt_cap(struct file *file, void *priv,
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300870 struct v4l2_format *f)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300871{
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300872 struct vivi_fh *fh = priv;
873 int ret = vidioc_try_fmt_cap(file, fh, f);
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300874 if (ret < 0)
875 return (ret);
876
877 fh->fmt = &format;
878 fh->width = f->fmt.pix.width;
879 fh->height = f->fmt.pix.height;
880 fh->vb_vidq.field = f->fmt.pix.field;
881 fh->type = f->type;
882
883 return (0);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300884}
885
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300886static int vidioc_reqbufs(struct file *file, void *priv,
887 struct v4l2_requestbuffers *p)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300888{
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300889 struct vivi_fh *fh = priv;
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300890
891 return (videobuf_reqbufs(&fh->vb_vidq, p));
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300892}
893
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300894static int vidioc_querybuf(struct file *file, void *priv, struct v4l2_buffer *p)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300895{
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300896 struct vivi_fh *fh = priv;
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300897
898 return (videobuf_querybuf(&fh->vb_vidq, p));
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300899}
900
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300901static int vidioc_qbuf(struct file *file, void *priv, struct v4l2_buffer *p)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300902{
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300903 struct vivi_fh *fh = priv;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300904
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300905 return (videobuf_qbuf(&fh->vb_vidq, p));
906}
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300907
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300908static int vidioc_dqbuf(struct file *file, void *priv, struct v4l2_buffer *p)
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300909{
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300910 struct vivi_fh *fh = priv;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300911
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300912 return (videobuf_dqbuf(&fh->vb_vidq, p,
913 file->f_flags & O_NONBLOCK));
914}
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300915
Mauro Carvalho Chehab0dfa9ab2006-08-08 09:10:10 -0300916#ifdef CONFIG_VIDEO_V4L1_COMPAT
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300917static int vidiocgmbuf(struct file *file, void *priv, struct video_mbuf *mbuf)
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300918{
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300919 struct vivi_fh *fh = priv;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300920
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300921 return videobuf_cgmbuf(&fh->vb_vidq, mbuf, 8);
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300922}
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300923#endif
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300924
Adrian Bunkdc46ace2006-06-23 06:42:44 -0300925static int vidioc_streamon(struct file *file, void *priv, enum v4l2_buf_type i)
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300926{
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300927 struct vivi_fh *fh = priv;
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300928
929 if (fh->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
930 return -EINVAL;
931 if (i != fh->type)
932 return -EINVAL;
933
Brandon Philipsba32bd92007-09-27 20:55:17 -0300934 return videobuf_streamon(&fh->vb_vidq);
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300935}
936
Adrian Bunkdc46ace2006-06-23 06:42:44 -0300937static int vidioc_streamoff(struct file *file, void *priv, enum v4l2_buf_type i)
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300938{
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300939 struct vivi_fh *fh = priv;
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300940
941 if (fh->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
942 return -EINVAL;
943 if (i != fh->type)
944 return -EINVAL;
945
Brandon Philipsba32bd92007-09-27 20:55:17 -0300946 return videobuf_streamoff(&fh->vb_vidq);
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300947}
948
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300949static int vidioc_s_std(struct file *file, void *priv, v4l2_std_id *i)
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300950{
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300951 return 0;
952}
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300953
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300954/* only one input in this sample driver */
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300955static int vidioc_enum_input(struct file *file, void *priv,
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300956 struct v4l2_input *inp)
957{
958 if (inp->index != 0)
959 return -EINVAL;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300960
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300961 inp->type = V4L2_INPUT_TYPE_CAMERA;
Mauro Carvalho Chehab784c6682007-12-13 06:35:26 -0300962 inp->std = V4L2_STD_525_60;
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300963 strcpy(inp->name, "Camera");
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300964
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300965 return (0);
966}
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300967
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300968static int vidioc_g_input(struct file *file, void *priv, unsigned int *i)
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300969{
970 *i = 0;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300971
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300972 return (0);
973}
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300974static int vidioc_s_input(struct file *file, void *priv, unsigned int i)
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300975{
976 if (i > 0)
977 return -EINVAL;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300978
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300979 return (0);
980}
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300981
982 /* --- controls ---------------------------------------------- */
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300983static int vidioc_queryctrl(struct file *file, void *priv,
984 struct v4l2_queryctrl *qc)
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300985{
986 int i;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300987
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300988 for (i = 0; i < ARRAY_SIZE(vivi_qctrl); i++)
989 if (qc->id && qc->id == vivi_qctrl[i].id) {
990 memcpy(qc, &(vivi_qctrl[i]),
991 sizeof(*qc));
992 return (0);
993 }
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300994
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300995 return -EINVAL;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300996}
997
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300998static int vidioc_g_ctrl(struct file *file, void *priv,
999 struct v4l2_control *ctrl)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001000{
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001001 int i;
1002
1003 for (i = 0; i < ARRAY_SIZE(vivi_qctrl); i++)
1004 if (ctrl->id == vivi_qctrl[i].id) {
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -03001005 ctrl->value = qctl_regs[i];
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001006 return (0);
1007 }
1008
1009 return -EINVAL;
1010}
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -03001011static int vidioc_s_ctrl(struct file *file, void *priv,
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001012 struct v4l2_control *ctrl)
1013{
1014 int i;
1015
1016 for (i = 0; i < ARRAY_SIZE(vivi_qctrl); i++)
1017 if (ctrl->id == vivi_qctrl[i].id) {
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -03001018 if (ctrl->value < vivi_qctrl[i].minimum
1019 || ctrl->value > vivi_qctrl[i].maximum) {
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001020 return (-ERANGE);
1021 }
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -03001022 qctl_regs[i] = ctrl->value;
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001023 return (0);
1024 }
1025 return -EINVAL;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001026}
1027
1028/* ------------------------------------------------------------------
1029 File operations for the device
1030 ------------------------------------------------------------------*/
1031
1032#define line_buf_size(norm) (norm_maxw(norm)*(format.depth+7)/8)
1033
1034static int vivi_open(struct inode *inode, struct file *file)
1035{
1036 int minor = iminor(inode);
Trent Piephoa991f442007-10-10 05:37:43 -03001037 struct vivi_dev *dev;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001038 struct vivi_fh *fh;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001039 int i;
Brandon Philipsaa9dbac2008-04-02 18:10:59 -03001040 int retval = 0;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001041
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -03001042 printk(KERN_DEBUG "vivi: open called (minor=%d)\n", minor);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001043
Trent Piephoa991f442007-10-10 05:37:43 -03001044 list_for_each_entry(dev, &vivi_devlist, vivi_devlist)
Mauro Carvalho Chehabf905c442007-12-10 04:07:03 -03001045 if (dev->vfd->minor == minor)
Trent Piephoa991f442007-10-10 05:37:43 -03001046 goto found;
1047 return -ENODEV;
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -03001048
Trent Piephoa991f442007-10-10 05:37:43 -03001049found:
Brandon Philipsaa9dbac2008-04-02 18:10:59 -03001050 mutex_lock(&dev->mutex);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001051 dev->users++;
1052
Brandon Philipsaa9dbac2008-04-02 18:10:59 -03001053 if (dev->users > 1) {
1054 dev->users--;
1055 retval = -EBUSY;
1056 goto unlock;
1057 }
1058
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -03001059 dprintk(dev, 1, "open minor=%d type=%s users=%d\n", minor,
Trent Piephoa991f442007-10-10 05:37:43 -03001060 v4l2_type_names[V4L2_BUF_TYPE_VIDEO_CAPTURE], dev->users);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001061
1062 /* allocate + initialize per filehandle data */
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -03001063 fh = kzalloc(sizeof(*fh), GFP_KERNEL);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001064 if (NULL == fh) {
1065 dev->users--;
Brandon Philipsaa9dbac2008-04-02 18:10:59 -03001066 retval = -ENOMEM;
1067 goto unlock;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001068 }
Brandon Philipsaa9dbac2008-04-02 18:10:59 -03001069unlock:
1070 mutex_unlock(&dev->mutex);
1071 if (retval)
1072 return retval;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001073
1074 file->private_data = fh;
1075 fh->dev = dev;
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001076
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001077 fh->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
1078 fh->fmt = &format;
1079 fh->width = 640;
1080 fh->height = 480;
1081
1082 /* Put all controls at a sane state */
1083 for (i = 0; i < ARRAY_SIZE(vivi_qctrl); i++)
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -03001084 qctl_regs[i] = vivi_qctrl[i].default_value;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001085
1086 /* Resets frame counters */
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -03001087 dev->h = 0;
1088 dev->m = 0;
1089 dev->s = 0;
Mauro Carvalho Chehabdfd8c042008-01-13 19:36:11 -03001090 dev->ms = 0;
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -03001091 dev->mv_count = 0;
1092 dev->jiffies = jiffies;
1093 sprintf(dev->timestr, "%02d:%02d:%02d:%03d",
Mauro Carvalho Chehabdfd8c042008-01-13 19:36:11 -03001094 dev->h, dev->m, dev->s, dev->ms);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001095
Mauro Carvalho Chehab5a037702007-08-02 23:31:54 -03001096 videobuf_queue_vmalloc_init(&fh->vb_vidq, &vivi_video_qops,
Mauro Carvalho Chehab55862ac2007-12-13 16:13:37 -03001097 NULL, &dev->slock, fh->type, V4L2_FIELD_INTERLACED,
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -03001098 sizeof(struct vivi_buffer), fh);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001099
1100 return 0;
1101}
1102
1103static ssize_t
1104vivi_read(struct file *file, char __user *data, size_t count, loff_t *ppos)
1105{
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -03001106 struct vivi_fh *fh = file->private_data;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001107
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -03001108 if (fh->type == V4L2_BUF_TYPE_VIDEO_CAPTURE) {
Mauro Carvalho Chehabacb09af2007-07-29 22:56:11 -03001109 return videobuf_read_stream(&fh->vb_vidq, data, count, ppos, 0,
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001110 file->f_flags & O_NONBLOCK);
1111 }
1112 return 0;
1113}
1114
1115static unsigned int
1116vivi_poll(struct file *file, struct poll_table_struct *wait)
1117{
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001118 struct vivi_fh *fh = file->private_data;
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -03001119 struct vivi_dev *dev = fh->dev;
Brandon Philips85c7c70bc2007-09-27 20:55:02 -03001120 struct videobuf_queue *q = &fh->vb_vidq;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001121
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -03001122 dprintk(dev, 1, "%s\n", __FUNCTION__);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001123
1124 if (V4L2_BUF_TYPE_VIDEO_CAPTURE != fh->type)
1125 return POLLERR;
1126
Brandon Philips85c7c70bc2007-09-27 20:55:02 -03001127 return videobuf_poll_stream(file, q, wait);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001128}
1129
Mauro Carvalho Chehabf905c442007-12-10 04:07:03 -03001130static int vivi_close(struct inode *inode, struct file *file)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001131{
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001132 struct vivi_fh *fh = file->private_data;
1133 struct vivi_dev *dev = fh->dev;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001134 struct vivi_dmaqueue *vidq = &dev->vidq;
1135
1136 int minor = iminor(inode);
1137
1138 vivi_stop_thread(vidq);
Brandon Philips053fcb62007-11-13 20:11:26 -03001139 videobuf_stop(&fh->vb_vidq);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001140 videobuf_mmap_free(&fh->vb_vidq);
1141
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001142 kfree(fh);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001143
Brandon Philipsaa9dbac2008-04-02 18:10:59 -03001144 mutex_lock(&dev->mutex);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001145 dev->users--;
Brandon Philipsaa9dbac2008-04-02 18:10:59 -03001146 mutex_unlock(&dev->mutex);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001147
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -03001148 dprintk(dev, 1, "close called (minor=%d, users=%d)\n",
1149 minor, dev->users);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001150
1151 return 0;
1152}
1153
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001154static int vivi_release(void)
Mauro Carvalho Chehabf905c442007-12-10 04:07:03 -03001155{
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001156 struct vivi_dev *dev;
1157 struct list_head *list;
Mauro Carvalho Chehabf905c442007-12-10 04:07:03 -03001158
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001159 while (!list_empty(&vivi_devlist)) {
1160 list = vivi_devlist.next;
1161 list_del(list);
1162 dev = list_entry(list, struct vivi_dev, vivi_devlist);
1163
1164 if (-1 != dev->vfd->minor)
1165 video_unregister_device(dev->vfd);
1166 else
1167 video_device_release(dev->vfd);
1168
1169 kfree(dev);
1170 }
Mauro Carvalho Chehabf905c442007-12-10 04:07:03 -03001171
1172 return 0;
1173}
1174
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -03001175static int vivi_mmap(struct file *file, struct vm_area_struct *vma)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001176{
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -03001177 struct vivi_fh *fh = file->private_data;
1178 struct vivi_dev *dev = fh->dev;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001179 int ret;
1180
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -03001181 dprintk(dev, 1, "mmap called, vma=0x%08lx\n", (unsigned long)vma);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001182
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -03001183 ret = videobuf_mmap_mapper(&fh->vb_vidq, vma);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001184
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -03001185 dprintk(dev, 1, "vma start=0x%08lx, size=%ld, ret=%d\n",
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001186 (unsigned long)vma->vm_start,
1187 (unsigned long)vma->vm_end-(unsigned long)vma->vm_start,
1188 ret);
1189
1190 return ret;
1191}
1192
Arjan van de Venfa027c22007-02-12 00:55:33 -08001193static const struct file_operations vivi_fops = {
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001194 .owner = THIS_MODULE,
1195 .open = vivi_open,
Mauro Carvalho Chehabf905c442007-12-10 04:07:03 -03001196 .release = vivi_close,
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001197 .read = vivi_read,
1198 .poll = vivi_poll,
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001199 .ioctl = video_ioctl2, /* V4L2 ioctl handler */
Mauro Carvalho Chehabcf8267f2008-03-28 17:45:51 -03001200 .compat_ioctl = v4l_compat_ioctl32,
Mauro Carvalho Chehab5a037702007-08-02 23:31:54 -03001201 .mmap = vivi_mmap,
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001202 .llseek = no_llseek,
1203};
1204
Mauro Carvalho Chehabf905c442007-12-10 04:07:03 -03001205static struct video_device vivi_template = {
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001206 .name = "vivi",
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001207 .type = VID_TYPE_CAPTURE,
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001208 .fops = &vivi_fops,
1209 .minor = -1,
Mauro Carvalho Chehabf905c442007-12-10 04:07:03 -03001210 .release = video_device_release,
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001211
1212 .vidioc_querycap = vidioc_querycap,
1213 .vidioc_enum_fmt_cap = vidioc_enum_fmt_cap,
1214 .vidioc_g_fmt_cap = vidioc_g_fmt_cap,
1215 .vidioc_try_fmt_cap = vidioc_try_fmt_cap,
1216 .vidioc_s_fmt_cap = vidioc_s_fmt_cap,
1217 .vidioc_reqbufs = vidioc_reqbufs,
1218 .vidioc_querybuf = vidioc_querybuf,
1219 .vidioc_qbuf = vidioc_qbuf,
1220 .vidioc_dqbuf = vidioc_dqbuf,
1221 .vidioc_s_std = vidioc_s_std,
1222 .vidioc_enum_input = vidioc_enum_input,
1223 .vidioc_g_input = vidioc_g_input,
1224 .vidioc_s_input = vidioc_s_input,
1225 .vidioc_queryctrl = vidioc_queryctrl,
1226 .vidioc_g_ctrl = vidioc_g_ctrl,
1227 .vidioc_s_ctrl = vidioc_s_ctrl,
1228 .vidioc_streamon = vidioc_streamon,
1229 .vidioc_streamoff = vidioc_streamoff,
Mauro Carvalho Chehab0dfa9ab2006-08-08 09:10:10 -03001230#ifdef CONFIG_VIDEO_V4L1_COMPAT
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001231 .vidiocgmbuf = vidiocgmbuf,
1232#endif
Mauro Carvalho Chehab784c6682007-12-13 06:35:26 -03001233 .tvnorms = V4L2_STD_525_60,
Mauro Carvalho Chehabe75f9ce2006-11-20 13:19:20 -03001234 .current_norm = V4L2_STD_NTSC_M,
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001235};
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001236/* -----------------------------------------------------------------
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001237 Initialization and module stuff
1238 ------------------------------------------------------------------*/
1239
1240static int __init vivi_init(void)
1241{
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001242 int ret = -ENOMEM, i;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001243 struct vivi_dev *dev;
Mauro Carvalho Chehabf905c442007-12-10 04:07:03 -03001244 struct video_device *vfd;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001245
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001246 for (i = 0; i < n_devs; i++) {
1247 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
1248 if (NULL == dev)
1249 break;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001250
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001251 list_add_tail(&dev->vivi_devlist, &vivi_devlist);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001252
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001253 /* init video dma queues */
1254 INIT_LIST_HEAD(&dev->vidq.active);
1255 INIT_LIST_HEAD(&dev->vidq.queued);
1256 init_waitqueue_head(&dev->vidq.wq);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001257
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001258 /* initialize locks */
1259 mutex_init(&dev->lock);
Mauro Carvalho Chehab55862ac2007-12-13 16:13:37 -03001260 spin_lock_init(&dev->slock);
Brandon Philipsaa9dbac2008-04-02 18:10:59 -03001261 mutex_init(&dev->mutex);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001262
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001263 dev->vidq.timeout.function = vivi_vid_timeout;
1264 dev->vidq.timeout.data = (unsigned long)dev;
1265 init_timer(&dev->vidq.timeout);
Mauro Carvalho Chehabf905c442007-12-10 04:07:03 -03001266
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001267 vfd = video_device_alloc();
1268 if (NULL == vfd)
1269 break;
Mauro Carvalho Chehabf905c442007-12-10 04:07:03 -03001270
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001271 *vfd = vivi_template;
Mauro Carvalho Chehabf905c442007-12-10 04:07:03 -03001272
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001273 ret = video_register_device(vfd, VFL_TYPE_GRABBER, video_nr);
1274 if (ret < 0)
1275 break;
Mauro Carvalho Chehabf905c442007-12-10 04:07:03 -03001276
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001277 snprintf(vfd->name, sizeof(vfd->name), "%s (%i)",
1278 vivi_template.name, vfd->minor);
1279
1280 if (video_nr >= 0)
1281 video_nr++;
1282
1283 dev->vfd = vfd;
1284 }
1285
1286 if (ret < 0) {
1287 vivi_release();
1288 printk(KERN_INFO "Error %d while loading vivi driver\n", ret);
1289 } else
1290 printk(KERN_INFO "Video Technology Magazine Virtual Video "
1291 "Capture Board successfully loaded.\n");
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001292 return ret;
1293}
1294
1295static void __exit vivi_exit(void)
1296{
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001297 vivi_release();
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001298}
1299
1300module_init(vivi_init);
1301module_exit(vivi_exit);
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001302
1303MODULE_DESCRIPTION("Video Technology Magazine Virtual Video Capture Board");
1304MODULE_AUTHOR("Mauro Carvalho Chehab, Ted Walther and John Sokol");
1305MODULE_LICENSE("Dual BSD/GPL");
1306
1307module_param(video_nr, int, 0);
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001308MODULE_PARM_DESC(video_nr, "video iminor start number");
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001309
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001310module_param(n_devs, int, 0);
1311MODULE_PARM_DESC(n_devs, "number of video devices to create");
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001312
Mauro Carvalho Chehab8996b3f2007-12-13 06:36:22 -03001313module_param_named(debug, vivi_template.debug, int, 0444);
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001314MODULE_PARM_DESC(debug, "activates debug info");
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001315
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001316module_param(vid_limit, int, 0644);
1317MODULE_PARM_DESC(vid_limit, "capture memory limit in megabytes");