blob: c9d23633fe42880a7fd95b94414585ac0024a8a7 [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;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300167
168 int users;
169
170 /* various device info */
Mauro Carvalho Chehabf905c442007-12-10 04:07:03 -0300171 struct video_device *vfd;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300172
173 struct vivi_dmaqueue vidq;
174
175 /* Several counters */
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300176 int h, m, s, us, jiffies;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300177 char timestr[13];
Mauro Carvalho Chehab025341d2007-12-10 04:43:38 -0300178
179 int mv_count; /* Controls bars movement */
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300180};
181
182struct vivi_fh {
183 struct vivi_dev *dev;
184
185 /* video capture */
186 struct vivi_fmt *fmt;
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300187 unsigned int width, height;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300188 struct videobuf_queue vb_vidq;
189
190 enum v4l2_buf_type type;
191};
192
193/* ------------------------------------------------------------------
194 DMA and thread functions
195 ------------------------------------------------------------------*/
196
197/* Bars and Colors should match positions */
198
199enum colors {
200 WHITE,
201 AMBAR,
202 CYAN,
203 GREEN,
204 MAGENTA,
205 RED,
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300206 BLUE,
207 BLACK,
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300208};
209
210static u8 bars[8][3] = {
211 /* R G B */
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300212 {204, 204, 204}, /* white */
213 {208, 208, 0}, /* ambar */
214 { 0, 206, 206}, /* cyan */
215 { 0, 239, 0}, /* green */
216 {239, 0, 239}, /* magenta */
217 {205, 0, 0}, /* red */
218 { 0, 0, 255}, /* blue */
219 { 0, 0, 0}, /* black */
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300220};
221
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300222#define TO_Y(r, g, b) \
223 (((16829 * r + 33039 * g + 6416 * b + 32768) >> 16) + 16)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300224/* RGB to V(Cr) Color transform */
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300225#define TO_V(r, g, b) \
226 (((28784 * r - 24103 * g - 4681 * b + 32768) >> 16) + 128)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300227/* RGB to U(Cb) Color transform */
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300228#define TO_U(r, g, b) \
229 (((-9714 * r - 19070 * g + 28784 * b + 32768) >> 16) + 128)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300230
231#define TSTAMP_MIN_Y 24
232#define TSTAMP_MAX_Y TSTAMP_MIN_Y+15
233#define TSTAMP_MIN_X 64
234
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300235static void gen_line(char *basep, int inipos, int wmax,
236 int hmax, int line, int count, char *timestr)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300237{
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300238 int w, i, j, y;
239 int pos = inipos;
240 char *p, *s;
241 u8 chr, r, g, b, color;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300242
243 /* We will just duplicate the second pixel at the packet */
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300244 wmax /= 2;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300245
246 /* Generate a standard color bar pattern */
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300247 for (w = 0; w < wmax; w++) {
248 int colorpos = ((w + count) * 8/(wmax + 1)) % 8;
249 r = bars[colorpos][0];
250 g = bars[colorpos][1];
251 b = bars[colorpos][2];
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300252
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300253 for (color = 0; color < 4; color++) {
254 p = basep + pos;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300255
256 switch (color) {
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300257 case 0:
258 case 2:
259 *p = TO_Y(r, g, b); /* Luma */
260 break;
261 case 1:
262 *p = TO_U(r, g, b); /* Cb */
263 break;
264 case 3:
265 *p = TO_V(r, g, b); /* Cr */
266 break;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300267 }
268 pos++;
269 }
270 }
271
272 /* Checks if it is possible to show timestamp */
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300273 if (TSTAMP_MAX_Y >= hmax)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300274 goto end;
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300275 if (TSTAMP_MIN_X + strlen(timestr) >= wmax)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300276 goto end;
277
278 /* Print stream time */
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300279 if (line >= TSTAMP_MIN_Y && line <= TSTAMP_MAX_Y) {
280 j = TSTAMP_MIN_X;
281 for (s = timestr; *s; s++) {
282 chr = rom8x16_bits[(*s-0x30)*16+line-TSTAMP_MIN_Y];
283 for (i = 0; i < 7; i++) {
284 if (chr & 1 << (7 - i)) {
285 /* Font color*/
286 r = 0;
287 g = 198;
288 b = 0;
289 } else {
290 /* Background color */
291 r = bars[BLACK][0];
292 g = bars[BLACK][1];
293 b = bars[BLACK][2];
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300294 }
295
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300296 pos = inipos + j * 2;
297 for (color = 0; color < 4; color++) {
298 p = basep + pos;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300299
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300300 y = TO_Y(r, g, b);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300301
302 switch (color) {
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300303 case 0:
304 case 2:
305 *p = TO_Y(r, g, b); /* Luma */
306 break;
307 case 1:
308 *p = TO_U(r, g, b); /* Cb */
309 break;
310 case 3:
311 *p = TO_V(r, g, b); /* Cr */
312 break;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300313 }
314 pos++;
315 }
316 j++;
317 }
318 }
319 }
320
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300321end:
Mauro Carvalho Chehabb50e7fe2007-01-25 05:00:01 -0300322 return;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300323}
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300324static void vivi_fillbuff(struct vivi_dev *dev, struct vivi_buffer *buf)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300325{
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300326 int h , pos = 0;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300327 int hmax = buf->vb.height;
328 int wmax = buf->vb.width;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300329 struct timeval ts;
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300330 char *tmpbuf = kmalloc(wmax * 2, GFP_KERNEL);
331 void *vbuf = videobuf_to_vmalloc(&buf->vb);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300332
Mauro Carvalho Chehab5a037702007-08-02 23:31:54 -0300333 if (!tmpbuf)
334 return;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300335
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300336 for (h = 0; h < hmax; h++) {
Mauro Carvalho Chehab025341d2007-12-10 04:43:38 -0300337 gen_line(tmpbuf, 0, wmax, hmax, h, dev->mv_count,
Mauro Carvalho Chehab3bef5e42007-09-22 02:01:33 -0300338 dev->timestr);
Mauro Carvalho Chehab5a037702007-08-02 23:31:54 -0300339 /* FIXME: replacing to __copy_to_user */
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300340 if (copy_to_user(vbuf + pos, tmpbuf, wmax * 2) != 0)
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300341 dprintk(dev, 2, "vivifill copy_to_user failed.\n");
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300342 pos += wmax*2;
343 }
344
Mauro Carvalho Chehab025341d2007-12-10 04:43:38 -0300345 dev->mv_count++;
Mauro Carvalho Chehab3bef5e42007-09-22 02:01:33 -0300346
Mauro Carvalho Chehab5a037702007-08-02 23:31:54 -0300347 kfree(tmpbuf);
348
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300349 /* Updates stream time */
350
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300351 dev->us += jiffies_to_usecs(jiffies-dev->jiffies);
352 dev->jiffies = jiffies;
353 if (dev->us >= 1000000) {
354 dev->us -= 1000000;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300355 dev->s++;
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300356 if (dev->s >= 60) {
357 dev->s -= 60;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300358 dev->m++;
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300359 if (dev->m > 60) {
360 dev->m -= 60;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300361 dev->h++;
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300362 if (dev->h > 24)
363 dev->h -= 24;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300364 }
365 }
366 }
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300367 sprintf(dev->timestr, "%02d:%02d:%02d:%03d",
368 dev->h, dev->m, dev->s, (dev->us + 500) / 1000);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300369
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300370 dprintk(dev, 2, "vivifill at %s: Buffer 0x%08lx size= %d\n",
371 dev->timestr, (unsigned long)tmpbuf, pos);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300372
373 /* Advice that buffer was filled */
Brandon Philips0fc06862007-11-06 20:02:36 -0300374 buf->vb.state = VIDEOBUF_DONE;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300375 buf->vb.field_count++;
376 do_gettimeofday(&ts);
377 buf->vb.ts = ts;
378
379 list_del(&buf->vb.queue);
380 wake_up(&buf->vb.done);
381}
382
383static int restart_video_queue(struct vivi_dmaqueue *dma_q);
384
385static void vivi_thread_tick(struct vivi_dmaqueue *dma_q)
386{
387 struct vivi_buffer *buf;
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300388 struct vivi_dev *dev = container_of(dma_q, struct vivi_dev, vidq);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300389
390 int bc;
391
Mauro Carvalho Chehab55862ac2007-12-13 16:13:37 -0300392 spin_lock(&dev->slock);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300393 /* Announces videobuf that all went ok */
394 for (bc = 0;; bc++) {
395 if (list_empty(&dma_q->active)) {
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300396 dprintk(dev, 1, "No active queue to serve\n");
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300397 break;
398 }
399
400 buf = list_entry(dma_q->active.next,
401 struct vivi_buffer, vb.queue);
402
403 /* Nobody is waiting something to be done, just return */
404 if (!waitqueue_active(&buf->vb.done)) {
405 mod_timer(&dma_q->timeout, jiffies+BUFFER_TIMEOUT);
Mauro Carvalho Chehab55862ac2007-12-13 16:13:37 -0300406 spin_unlock(&dev->slock);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300407 return;
408 }
409
410 do_gettimeofday(&buf->vb.ts);
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300411 dprintk(dev, 2, "[%p/%d] wakeup\n", buf, buf->vb. i);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300412
413 /* Fill buffer */
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300414 vivi_fillbuff(dev, buf);
Mauro Carvalho Chehab0b600512007-01-14 08:33:24 -0300415
416 if (list_empty(&dma_q->active)) {
417 del_timer(&dma_q->timeout);
418 } else {
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300419 mod_timer(&dma_q->timeout, jiffies + BUFFER_TIMEOUT);
Mauro Carvalho Chehab0b600512007-01-14 08:33:24 -0300420 }
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300421 }
422 if (bc != 1)
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300423 dprintk(dev, 1, "%s: %d buffers handled (should be 1)\n",
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300424 __FUNCTION__, bc);
Mauro Carvalho Chehab55862ac2007-12-13 16:13:37 -0300425 spin_unlock(&dev->slock);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300426}
427
Mauro Carvalho Chehab6594ad82007-12-13 16:15:41 -0300428#define frames_to_ms(frames) \
429 ((frames * WAKE_NUMERATOR * 1000) / WAKE_DENOMINATOR)
430
Adrian Bunk972c3512006-04-27 21:06:50 -0300431static void vivi_sleep(struct vivi_dmaqueue *dma_q)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300432{
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300433 struct vivi_dev *dev = container_of(dma_q, struct vivi_dev, vidq);
Mauro Carvalho Chehab6594ad82007-12-13 16:15:41 -0300434 int timeout, running_time;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300435 DECLARE_WAITQUEUE(wait, current);
436
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300437 dprintk(dev, 1, "%s dma_q=0x%08lx\n", __FUNCTION__,
438 (unsigned long)dma_q);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300439
440 add_wait_queue(&dma_q->wq, &wait);
Mauro Carvalho Chehab6594ad82007-12-13 16:15:41 -0300441 if (kthread_should_stop())
442 goto stop_task;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300443
Mauro Carvalho Chehab6594ad82007-12-13 16:15:41 -0300444 running_time = jiffies - dma_q->ini_jiffies;
445 dma_q->frame++;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300446
Mauro Carvalho Chehab6594ad82007-12-13 16:15:41 -0300447 /* Calculate time to wake up */
448 timeout = msecs_to_jiffies(frames_to_ms(dma_q->frame)) - running_time;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300449
Mauro Carvalho Chehab6594ad82007-12-13 16:15:41 -0300450 if (timeout > msecs_to_jiffies(frames_to_ms(2)) || timeout <= 0) {
451 int old = dma_q->frame;
452 int nframes;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300453
Mauro Carvalho Chehab6594ad82007-12-13 16:15:41 -0300454 dma_q->frame = (jiffies_to_msecs(running_time) /
455 frames_to_ms(1)) + 1;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300456
Mauro Carvalho Chehab6594ad82007-12-13 16:15:41 -0300457 timeout = msecs_to_jiffies(frames_to_ms(dma_q->frame))
458 - running_time;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300459
Mauro Carvalho Chehab6594ad82007-12-13 16:15:41 -0300460 if (unlikely (timeout <= 0))
461 timeout = 1;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300462
Mauro Carvalho Chehab6594ad82007-12-13 16:15:41 -0300463 nframes = (dma_q->frame > old)?
464 dma_q->frame - old : old - dma_q->frame;
465
466 dprintk(dev, 1, "%ld: %s %d frames. "
467 "Current frame is %d. Will sleep for %d jiffies\n",
468 jiffies,
469 (dma_q->frame > old)? "Underrun, losed" : "Overrun of",
470 nframes, dma_q->frame, timeout);
471 } else
472 dprintk(dev, 1, "will sleep for %d jiffies\n", timeout);
473
474 vivi_thread_tick(dma_q);
475
476 schedule_timeout_interruptible(timeout);
477
478stop_task:
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300479 remove_wait_queue(&dma_q->wq, &wait);
480 try_to_freeze();
481}
482
Adrian Bunk972c3512006-04-27 21:06:50 -0300483static int vivi_thread(void *data)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300484{
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300485 struct vivi_dmaqueue *dma_q = data;
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300486 struct vivi_dev *dev = container_of(dma_q, struct vivi_dev, vidq);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300487
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300488 dprintk(dev, 1, "thread started\n");
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300489
Mauro Carvalho Chehab0b600512007-01-14 08:33:24 -0300490 mod_timer(&dma_q->timeout, jiffies+BUFFER_TIMEOUT);
Rafael J. Wysocki83144182007-07-17 04:03:35 -0700491 set_freezable();
Mauro Carvalho Chehab0b600512007-01-14 08:33:24 -0300492
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300493 for (;;) {
494 vivi_sleep(dma_q);
495
496 if (kthread_should_stop())
497 break;
498 }
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300499 dprintk(dev, 1, "thread: exit\n");
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300500 return 0;
501}
502
Adrian Bunk972c3512006-04-27 21:06:50 -0300503static int vivi_start_thread(struct vivi_dmaqueue *dma_q)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300504{
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300505 struct vivi_dev *dev = container_of(dma_q, struct vivi_dev, vidq);
506
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300507 dma_q->frame = 0;
508 dma_q->ini_jiffies = jiffies;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300509
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300510 dprintk(dev, 1, "%s\n", __FUNCTION__);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300511
512 dma_q->kthread = kthread_run(vivi_thread, dma_q, "vivi");
513
Akinobu Mita054afee2006-12-20 10:04:00 -0300514 if (IS_ERR(dma_q->kthread)) {
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300515 printk(KERN_ERR "vivi: kernel_thread() failed\n");
Akinobu Mita054afee2006-12-20 10:04:00 -0300516 return PTR_ERR(dma_q->kthread);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300517 }
Mauro Carvalho Chehab0b600512007-01-14 08:33:24 -0300518 /* Wakes thread */
519 wake_up_interruptible(&dma_q->wq);
520
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300521 dprintk(dev, 1, "returning from %s\n", __FUNCTION__);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300522 return 0;
523}
524
Adrian Bunk972c3512006-04-27 21:06:50 -0300525static void vivi_stop_thread(struct vivi_dmaqueue *dma_q)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300526{
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300527 struct vivi_dev *dev = container_of(dma_q, struct vivi_dev, vidq);
528
529 dprintk(dev, 1, "%s\n", __FUNCTION__);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300530 /* shutdown control thread */
531 if (dma_q->kthread) {
532 kthread_stop(dma_q->kthread);
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300533 dma_q->kthread = NULL;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300534 }
535}
536
537static int restart_video_queue(struct vivi_dmaqueue *dma_q)
538{
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300539 struct vivi_dev *dev = container_of(dma_q, struct vivi_dev, vidq);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300540 struct vivi_buffer *buf, *prev;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300541
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300542 dprintk(dev, 1, "%s dma_q=0x%08lx\n", __FUNCTION__,
543 (unsigned long)dma_q);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300544
545 if (!list_empty(&dma_q->active)) {
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300546 buf = list_entry(dma_q->active.next,
547 struct vivi_buffer, vb.queue);
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300548 dprintk(dev, 2, "restart_queue [%p/%d]: restart dma\n",
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300549 buf, buf->vb.i);
550
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300551 dprintk(dev, 1, "Restarting video dma\n");
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300552 vivi_stop_thread(dma_q);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300553
554 /* cancel all outstanding capture / vbi requests */
Trent Piephoa991f442007-10-10 05:37:43 -0300555 list_for_each_entry_safe(buf, prev, &dma_q->active, vb.queue) {
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300556 list_del(&buf->vb.queue);
Brandon Philips0fc06862007-11-06 20:02:36 -0300557 buf->vb.state = VIDEOBUF_ERROR;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300558 wake_up(&buf->vb.done);
559 }
560 mod_timer(&dma_q->timeout, jiffies+BUFFER_TIMEOUT);
561
562 return 0;
563 }
564
565 prev = NULL;
566 for (;;) {
567 if (list_empty(&dma_q->queued))
568 return 0;
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300569 buf = list_entry(dma_q->queued.next,
570 struct vivi_buffer, vb.queue);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300571 if (NULL == prev) {
572 list_del(&buf->vb.queue);
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300573 list_add_tail(&buf->vb.queue, &dma_q->active);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300574
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300575 dprintk(dev, 1, "Restarting video dma\n");
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300576 vivi_stop_thread(dma_q);
577 vivi_start_thread(dma_q);
578
Brandon Philips0fc06862007-11-06 20:02:36 -0300579 buf->vb.state = VIDEOBUF_ACTIVE;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300580 mod_timer(&dma_q->timeout, jiffies+BUFFER_TIMEOUT);
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300581 dprintk(dev, 2,
582 "[%p/%d] restart_queue - first active\n",
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300583 buf, buf->vb.i);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300584
585 } else if (prev->vb.width == buf->vb.width &&
586 prev->vb.height == buf->vb.height &&
587 prev->fmt == buf->fmt) {
588 list_del(&buf->vb.queue);
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300589 list_add_tail(&buf->vb.queue, &dma_q->active);
Brandon Philips0fc06862007-11-06 20:02:36 -0300590 buf->vb.state = VIDEOBUF_ACTIVE;
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300591 dprintk(dev, 2,
592 "[%p/%d] restart_queue - move to active\n",
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300593 buf, buf->vb.i);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300594 } else {
595 return 0;
596 }
597 prev = buf;
598 }
599}
600
601static void vivi_vid_timeout(unsigned long data)
602{
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300603 struct vivi_dev *dev = (struct vivi_dev *)data;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300604 struct vivi_dmaqueue *vidq = &dev->vidq;
605 struct vivi_buffer *buf;
606
Mauro Carvalho Chehab55862ac2007-12-13 16:13:37 -0300607 spin_lock(&dev->slock);
608
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300609 while (!list_empty(&vidq->active)) {
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300610 buf = list_entry(vidq->active.next,
611 struct vivi_buffer, vb.queue);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300612 list_del(&buf->vb.queue);
Brandon Philips0fc06862007-11-06 20:02:36 -0300613 buf->vb.state = VIDEOBUF_ERROR;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300614 wake_up(&buf->vb.done);
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300615 printk(KERN_INFO "vivi/0: [%p/%d] timeout\n", buf, buf->vb.i);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300616 }
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300617 restart_video_queue(vidq);
Mauro Carvalho Chehab55862ac2007-12-13 16:13:37 -0300618
619 spin_unlock(&dev->slock);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300620}
621
622/* ------------------------------------------------------------------
623 Videobuf operations
624 ------------------------------------------------------------------*/
625static int
626buffer_setup(struct videobuf_queue *vq, unsigned int *count, unsigned int *size)
627{
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300628 struct vivi_fh *fh = vq->priv_data;
629 struct vivi_dev *dev = fh->dev;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300630
631 *size = fh->width*fh->height*2;
632
633 if (0 == *count)
634 *count = 32;
Mauro Carvalho Chehab6bb27902007-08-23 16:41:14 -0300635
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300636 while (*size * *count > vid_limit * 1024 * 1024)
637 (*count)--;
Mauro Carvalho Chehab6bb27902007-08-23 16:41:14 -0300638
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300639 dprintk(dev, 1, "%s, count=%d, size=%d\n", __FUNCTION__,
640 *count, *size);
Mauro Carvalho Chehab6bb27902007-08-23 16:41:14 -0300641
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300642 return 0;
643}
644
Adrian Bunk972c3512006-04-27 21:06:50 -0300645static void free_buffer(struct videobuf_queue *vq, struct vivi_buffer *buf)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300646{
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300647 struct vivi_fh *fh = vq->priv_data;
648 struct vivi_dev *dev = fh->dev;
649
650 dprintk(dev, 1, "%s\n", __FUNCTION__);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300651
652 if (in_interrupt())
653 BUG();
654
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300655 videobuf_waiton(&buf->vb, 0, 0);
Mauro Carvalho Chehab5a037702007-08-02 23:31:54 -0300656 videobuf_vmalloc_free(&buf->vb);
Brandon Philips0fc06862007-11-06 20:02:36 -0300657 buf->vb.state = VIDEOBUF_NEEDS_INIT;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300658}
659
660#define norm_maxw() 1024
661#define norm_maxh() 768
662static int
663buffer_prepare(struct videobuf_queue *vq, struct videobuf_buffer *vb,
664 enum v4l2_field field)
665{
666 struct vivi_fh *fh = vq->priv_data;
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300667 struct vivi_dev *dev = fh->dev;
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300668 struct vivi_buffer *buf = container_of(vb, struct vivi_buffer, vb);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300669 int rc, init_buffer = 0;
670
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300671 dprintk(dev, 1, "%s, field=%d\n", __FUNCTION__, field);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300672
673 BUG_ON(NULL == fh->fmt);
674 if (fh->width < 48 || fh->width > norm_maxw() ||
675 fh->height < 32 || fh->height > norm_maxh())
676 return -EINVAL;
677 buf->vb.size = fh->width*fh->height*2;
678 if (0 != buf->vb.baddr && buf->vb.bsize < buf->vb.size)
679 return -EINVAL;
680
681 if (buf->fmt != fh->fmt ||
682 buf->vb.width != fh->width ||
683 buf->vb.height != fh->height ||
684 buf->vb.field != field) {
685 buf->fmt = fh->fmt;
686 buf->vb.width = fh->width;
687 buf->vb.height = fh->height;
688 buf->vb.field = field;
689 init_buffer = 1;
690 }
691
Brandon Philips0fc06862007-11-06 20:02:36 -0300692 if (VIDEOBUF_NEEDS_INIT == buf->vb.state) {
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300693 rc = videobuf_iolock(vq, &buf->vb, NULL);
694 if (rc < 0)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300695 goto fail;
696 }
697
Brandon Philips0fc06862007-11-06 20:02:36 -0300698 buf->vb.state = VIDEOBUF_PREPARED;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300699
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300700 return 0;
701
702fail:
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300703 free_buffer(vq, buf);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300704 return rc;
705}
706
707static void
708buffer_queue(struct videobuf_queue *vq, struct videobuf_buffer *vb)
709{
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300710 struct vivi_buffer *buf = container_of(vb, struct vivi_buffer, vb);
711 struct vivi_fh *fh = vq->priv_data;
712 struct vivi_dev *dev = fh->dev;
713 struct vivi_dmaqueue *vidq = &dev->vidq;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300714 struct vivi_buffer *prev;
715
716 if (!list_empty(&vidq->queued)) {
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300717 dprintk(dev, 1, "adding vb queue=0x%08lx\n",
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300718 (unsigned long)&buf->vb.queue);
719 list_add_tail(&buf->vb.queue, &vidq->queued);
Brandon Philips0fc06862007-11-06 20:02:36 -0300720 buf->vb.state = VIDEOBUF_QUEUED;
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300721 dprintk(dev, 2, "[%p/%d] buffer_queue - append to queued\n",
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300722 buf, buf->vb.i);
723 } else if (list_empty(&vidq->active)) {
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300724 list_add_tail(&buf->vb.queue, &vidq->active);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300725
Brandon Philips0fc06862007-11-06 20:02:36 -0300726 buf->vb.state = VIDEOBUF_ACTIVE;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300727 mod_timer(&vidq->timeout, jiffies+BUFFER_TIMEOUT);
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300728 dprintk(dev, 2, "[%p/%d] buffer_queue - first active\n",
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300729 buf, buf->vb.i);
730
731 vivi_start_thread(vidq);
732 } else {
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300733 prev = list_entry(vidq->active.prev,
734 struct vivi_buffer, vb.queue);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300735 if (prev->vb.width == buf->vb.width &&
736 prev->vb.height == buf->vb.height &&
737 prev->fmt == buf->fmt) {
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300738 list_add_tail(&buf->vb.queue, &vidq->active);
Brandon Philips0fc06862007-11-06 20:02:36 -0300739 buf->vb.state = VIDEOBUF_ACTIVE;
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300740 dprintk(dev, 2,
741 "[%p/%d] buffer_queue - append to active\n",
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300742 buf, buf->vb.i);
743
744 } else {
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300745 list_add_tail(&buf->vb.queue, &vidq->queued);
Brandon Philips0fc06862007-11-06 20:02:36 -0300746 buf->vb.state = VIDEOBUF_QUEUED;
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300747 dprintk(dev, 2,
748 "[%p/%d] buffer_queue - first queued\n",
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300749 buf, buf->vb.i);
750 }
751 }
752}
753
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300754static void buffer_release(struct videobuf_queue *vq,
755 struct videobuf_buffer *vb)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300756{
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300757 struct vivi_buffer *buf = container_of(vb, struct vivi_buffer, vb);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300758 struct vivi_fh *fh = vq->priv_data;
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300759 struct vivi_dev *dev = (struct vivi_dev *)fh->dev;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300760 struct vivi_dmaqueue *vidq = &dev->vidq;
761
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300762 dprintk(dev, 1, "%s\n", __FUNCTION__);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300763
764 vivi_stop_thread(vidq);
765
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300766 free_buffer(vq, buf);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300767}
768
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300769static struct videobuf_queue_ops vivi_video_qops = {
770 .buf_setup = buffer_setup,
771 .buf_prepare = buffer_prepare,
772 .buf_queue = buffer_queue,
773 .buf_release = buffer_release,
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300774};
775
776/* ------------------------------------------------------------------
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300777 IOCTL vidioc handling
778 ------------------------------------------------------------------*/
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300779static int vidioc_querycap(struct file *file, void *priv,
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300780 struct v4l2_capability *cap)
781{
782 strcpy(cap->driver, "vivi");
783 strcpy(cap->card, "vivi");
784 cap->version = VIVI_VERSION;
785 cap->capabilities = V4L2_CAP_VIDEO_CAPTURE |
786 V4L2_CAP_STREAMING |
787 V4L2_CAP_READWRITE;
788 return 0;
789}
790
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300791static int vidioc_enum_fmt_cap(struct file *file, void *priv,
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300792 struct v4l2_fmtdesc *f)
793{
794 if (f->index > 0)
795 return -EINVAL;
796
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300797 strlcpy(f->description, format.name, sizeof(f->description));
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300798 f->pixelformat = format.fourcc;
799 return 0;
800}
801
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300802static int vidioc_g_fmt_cap(struct file *file, void *priv,
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300803 struct v4l2_format *f)
804{
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300805 struct vivi_fh *fh = priv;
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300806
807 f->fmt.pix.width = fh->width;
808 f->fmt.pix.height = fh->height;
809 f->fmt.pix.field = fh->vb_vidq.field;
810 f->fmt.pix.pixelformat = fh->fmt->fourcc;
811 f->fmt.pix.bytesperline =
812 (f->fmt.pix.width * fh->fmt->depth) >> 3;
813 f->fmt.pix.sizeimage =
814 f->fmt.pix.height * f->fmt.pix.bytesperline;
815
816 return (0);
817}
818
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300819static int vidioc_try_fmt_cap(struct file *file, void *priv,
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300820 struct v4l2_format *f)
821{
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300822 struct vivi_fh *fh = priv;
823 struct vivi_dev *dev = fh->dev;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300824 struct vivi_fmt *fmt;
825 enum v4l2_field field;
826 unsigned int maxw, maxh;
827
828 if (format.fourcc != f->fmt.pix.pixelformat) {
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300829 dprintk(dev, 1, "Fourcc format (0x%08x) invalid. "
830 "Driver accepts only 0x%08x\n",
831 f->fmt.pix.pixelformat, format.fourcc);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300832 return -EINVAL;
833 }
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300834 fmt = &format;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300835
836 field = f->fmt.pix.field;
837
838 if (field == V4L2_FIELD_ANY) {
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300839 field = V4L2_FIELD_INTERLACED;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300840 } else if (V4L2_FIELD_INTERLACED != field) {
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -0300841 dprintk(dev, 1, "Field type invalid.\n");
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300842 return -EINVAL;
843 }
844
845 maxw = norm_maxw();
846 maxh = norm_maxh();
847
848 f->fmt.pix.field = field;
849 if (f->fmt.pix.height < 32)
850 f->fmt.pix.height = 32;
851 if (f->fmt.pix.height > maxh)
852 f->fmt.pix.height = maxh;
853 if (f->fmt.pix.width < 48)
854 f->fmt.pix.width = 48;
855 if (f->fmt.pix.width > maxw)
856 f->fmt.pix.width = maxw;
857 f->fmt.pix.width &= ~0x03;
858 f->fmt.pix.bytesperline =
859 (f->fmt.pix.width * fmt->depth) >> 3;
860 f->fmt.pix.sizeimage =
861 f->fmt.pix.height * f->fmt.pix.bytesperline;
862
863 return 0;
864}
865
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300866/*FIXME: This seems to be generic enough to be at videodev2 */
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300867static int vidioc_s_fmt_cap(struct file *file, void *priv,
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300868 struct v4l2_format *f)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300869{
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300870 struct vivi_fh *fh = priv;
871 int ret = vidioc_try_fmt_cap(file, fh, f);
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300872 if (ret < 0)
873 return (ret);
874
875 fh->fmt = &format;
876 fh->width = f->fmt.pix.width;
877 fh->height = f->fmt.pix.height;
878 fh->vb_vidq.field = f->fmt.pix.field;
879 fh->type = f->type;
880
881 return (0);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300882}
883
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300884static int vidioc_reqbufs(struct file *file, void *priv,
885 struct v4l2_requestbuffers *p)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300886{
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300887 struct vivi_fh *fh = priv;
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300888
889 return (videobuf_reqbufs(&fh->vb_vidq, p));
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300890}
891
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300892static int vidioc_querybuf(struct file *file, void *priv, struct v4l2_buffer *p)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300893{
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300894 struct vivi_fh *fh = priv;
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300895
896 return (videobuf_querybuf(&fh->vb_vidq, p));
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300897}
898
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300899static int vidioc_qbuf(struct file *file, void *priv, struct v4l2_buffer *p)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -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 Chehabc820cc42006-06-04 10:34:12 -0300903 return (videobuf_qbuf(&fh->vb_vidq, p));
904}
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300905
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300906static int vidioc_dqbuf(struct file *file, void *priv, struct v4l2_buffer *p)
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300907{
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300908 struct vivi_fh *fh = priv;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300909
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300910 return (videobuf_dqbuf(&fh->vb_vidq, p,
911 file->f_flags & O_NONBLOCK));
912}
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300913
Mauro Carvalho Chehab0dfa9ab2006-08-08 09:10:10 -0300914#ifdef CONFIG_VIDEO_V4L1_COMPAT
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300915static int vidiocgmbuf(struct file *file, void *priv, struct video_mbuf *mbuf)
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300916{
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300917 struct vivi_fh *fh = priv;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300918
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300919 return videobuf_cgmbuf(&fh->vb_vidq, mbuf, 8);
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300920}
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300921#endif
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300922
Adrian Bunkdc46ace2006-06-23 06:42:44 -0300923static int vidioc_streamon(struct file *file, void *priv, enum v4l2_buf_type i)
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300924{
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300925 struct vivi_fh *fh = priv;
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300926
927 if (fh->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
928 return -EINVAL;
929 if (i != fh->type)
930 return -EINVAL;
931
Brandon Philipsba32bd92007-09-27 20:55:17 -0300932 return videobuf_streamon(&fh->vb_vidq);
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300933}
934
Adrian Bunkdc46ace2006-06-23 06:42:44 -0300935static int vidioc_streamoff(struct file *file, void *priv, enum v4l2_buf_type i)
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300936{
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300937 struct vivi_fh *fh = priv;
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300938
939 if (fh->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
940 return -EINVAL;
941 if (i != fh->type)
942 return -EINVAL;
943
Brandon Philipsba32bd92007-09-27 20:55:17 -0300944 return videobuf_streamoff(&fh->vb_vidq);
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300945}
946
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300947static int vidioc_s_std(struct file *file, void *priv, v4l2_std_id *i)
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300948{
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300949 return 0;
950}
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300951
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300952/* only one input in this sample driver */
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300953static int vidioc_enum_input(struct file *file, void *priv,
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300954 struct v4l2_input *inp)
955{
956 if (inp->index != 0)
957 return -EINVAL;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300958
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300959 inp->type = V4L2_INPUT_TYPE_CAMERA;
Mauro Carvalho Chehab784c6682007-12-13 06:35:26 -0300960 inp->std = V4L2_STD_525_60;
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300961 strcpy(inp->name, "Camera");
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300962
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300963 return (0);
964}
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300965
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300966static int vidioc_g_input(struct file *file, void *priv, unsigned int *i)
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300967{
968 *i = 0;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300969
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300970 return (0);
971}
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300972static int vidioc_s_input(struct file *file, void *priv, unsigned int i)
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300973{
974 if (i > 0)
975 return -EINVAL;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300976
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300977 return (0);
978}
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300979
980 /* --- controls ---------------------------------------------- */
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300981static int vidioc_queryctrl(struct file *file, void *priv,
982 struct v4l2_queryctrl *qc)
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300983{
984 int i;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300985
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300986 for (i = 0; i < ARRAY_SIZE(vivi_qctrl); i++)
987 if (qc->id && qc->id == vivi_qctrl[i].id) {
988 memcpy(qc, &(vivi_qctrl[i]),
989 sizeof(*qc));
990 return (0);
991 }
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300992
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300993 return -EINVAL;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300994}
995
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -0300996static int vidioc_g_ctrl(struct file *file, void *priv,
997 struct v4l2_control *ctrl)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300998{
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300999 int i;
1000
1001 for (i = 0; i < ARRAY_SIZE(vivi_qctrl); i++)
1002 if (ctrl->id == vivi_qctrl[i].id) {
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -03001003 ctrl->value = qctl_regs[i];
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001004 return (0);
1005 }
1006
1007 return -EINVAL;
1008}
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -03001009static int vidioc_s_ctrl(struct file *file, void *priv,
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001010 struct v4l2_control *ctrl)
1011{
1012 int i;
1013
1014 for (i = 0; i < ARRAY_SIZE(vivi_qctrl); i++)
1015 if (ctrl->id == vivi_qctrl[i].id) {
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -03001016 if (ctrl->value < vivi_qctrl[i].minimum
1017 || ctrl->value > vivi_qctrl[i].maximum) {
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001018 return (-ERANGE);
1019 }
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -03001020 qctl_regs[i] = ctrl->value;
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001021 return (0);
1022 }
1023 return -EINVAL;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001024}
1025
1026/* ------------------------------------------------------------------
1027 File operations for the device
1028 ------------------------------------------------------------------*/
1029
1030#define line_buf_size(norm) (norm_maxw(norm)*(format.depth+7)/8)
1031
1032static int vivi_open(struct inode *inode, struct file *file)
1033{
1034 int minor = iminor(inode);
Trent Piephoa991f442007-10-10 05:37:43 -03001035 struct vivi_dev *dev;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001036 struct vivi_fh *fh;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001037 int i;
1038
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -03001039 printk(KERN_DEBUG "vivi: open called (minor=%d)\n", minor);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001040
Trent Piephoa991f442007-10-10 05:37:43 -03001041 list_for_each_entry(dev, &vivi_devlist, vivi_devlist)
Mauro Carvalho Chehabf905c442007-12-10 04:07:03 -03001042 if (dev->vfd->minor == minor)
Trent Piephoa991f442007-10-10 05:37:43 -03001043 goto found;
1044 return -ENODEV;
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -03001045
Trent Piephoa991f442007-10-10 05:37:43 -03001046found:
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001047 /* If more than one user, mutex should be added */
1048 dev->users++;
1049
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -03001050 dprintk(dev, 1, "open minor=%d type=%s users=%d\n", minor,
Trent Piephoa991f442007-10-10 05:37:43 -03001051 v4l2_type_names[V4L2_BUF_TYPE_VIDEO_CAPTURE], dev->users);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001052
1053 /* allocate + initialize per filehandle data */
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -03001054 fh = kzalloc(sizeof(*fh), GFP_KERNEL);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001055 if (NULL == fh) {
1056 dev->users--;
1057 return -ENOMEM;
1058 }
1059
1060 file->private_data = fh;
1061 fh->dev = dev;
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001062
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001063 fh->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
1064 fh->fmt = &format;
1065 fh->width = 640;
1066 fh->height = 480;
1067
1068 /* Put all controls at a sane state */
1069 for (i = 0; i < ARRAY_SIZE(vivi_qctrl); i++)
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -03001070 qctl_regs[i] = vivi_qctrl[i].default_value;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001071
1072 /* Resets frame counters */
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -03001073 dev->h = 0;
1074 dev->m = 0;
1075 dev->s = 0;
1076 dev->us = 0;
1077 dev->mv_count = 0;
1078 dev->jiffies = jiffies;
1079 sprintf(dev->timestr, "%02d:%02d:%02d:%03d",
1080 dev->h, dev->m, dev->s, (dev->us + 500) / 1000);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001081
Mauro Carvalho Chehab5a037702007-08-02 23:31:54 -03001082 videobuf_queue_vmalloc_init(&fh->vb_vidq, &vivi_video_qops,
Mauro Carvalho Chehab55862ac2007-12-13 16:13:37 -03001083 NULL, &dev->slock, fh->type, V4L2_FIELD_INTERLACED,
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -03001084 sizeof(struct vivi_buffer), fh);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001085
1086 return 0;
1087}
1088
1089static ssize_t
1090vivi_read(struct file *file, char __user *data, size_t count, loff_t *ppos)
1091{
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -03001092 struct vivi_fh *fh = file->private_data;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001093
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -03001094 if (fh->type == V4L2_BUF_TYPE_VIDEO_CAPTURE) {
Mauro Carvalho Chehabacb09af2007-07-29 22:56:11 -03001095 return videobuf_read_stream(&fh->vb_vidq, data, count, ppos, 0,
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001096 file->f_flags & O_NONBLOCK);
1097 }
1098 return 0;
1099}
1100
1101static unsigned int
1102vivi_poll(struct file *file, struct poll_table_struct *wait)
1103{
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001104 struct vivi_fh *fh = file->private_data;
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -03001105 struct vivi_dev *dev = fh->dev;
Brandon Philips85c7c70bc2007-09-27 20:55:02 -03001106 struct videobuf_queue *q = &fh->vb_vidq;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001107
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -03001108 dprintk(dev, 1, "%s\n", __FUNCTION__);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001109
1110 if (V4L2_BUF_TYPE_VIDEO_CAPTURE != fh->type)
1111 return POLLERR;
1112
Brandon Philips85c7c70bc2007-09-27 20:55:02 -03001113 return videobuf_poll_stream(file, q, wait);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001114}
1115
Mauro Carvalho Chehabf905c442007-12-10 04:07:03 -03001116static int vivi_close(struct inode *inode, struct file *file)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001117{
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001118 struct vivi_fh *fh = file->private_data;
1119 struct vivi_dev *dev = fh->dev;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001120 struct vivi_dmaqueue *vidq = &dev->vidq;
1121
1122 int minor = iminor(inode);
1123
1124 vivi_stop_thread(vidq);
Brandon Philips053fcb62007-11-13 20:11:26 -03001125 videobuf_stop(&fh->vb_vidq);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001126 videobuf_mmap_free(&fh->vb_vidq);
1127
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001128 kfree(fh);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001129
1130 dev->users--;
1131
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -03001132 dprintk(dev, 1, "close called (minor=%d, users=%d)\n",
1133 minor, dev->users);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001134
1135 return 0;
1136}
1137
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001138static int vivi_release(void)
Mauro Carvalho Chehabf905c442007-12-10 04:07:03 -03001139{
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001140 struct vivi_dev *dev;
1141 struct list_head *list;
Mauro Carvalho Chehabf905c442007-12-10 04:07:03 -03001142
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001143 while (!list_empty(&vivi_devlist)) {
1144 list = vivi_devlist.next;
1145 list_del(list);
1146 dev = list_entry(list, struct vivi_dev, vivi_devlist);
1147
1148 if (-1 != dev->vfd->minor)
1149 video_unregister_device(dev->vfd);
1150 else
1151 video_device_release(dev->vfd);
1152
1153 kfree(dev);
1154 }
Mauro Carvalho Chehabf905c442007-12-10 04:07:03 -03001155
1156 return 0;
1157}
1158
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -03001159static int vivi_mmap(struct file *file, struct vm_area_struct *vma)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001160{
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -03001161 struct vivi_fh *fh = file->private_data;
1162 struct vivi_dev *dev = fh->dev;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001163 int ret;
1164
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -03001165 dprintk(dev, 1, "mmap called, vma=0x%08lx\n", (unsigned long)vma);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001166
Mauro Carvalho Chehab543323b2007-12-10 09:33:52 -03001167 ret = videobuf_mmap_mapper(&fh->vb_vidq, vma);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001168
Mauro Carvalho Chehab6c2f9902007-12-13 13:30:14 -03001169 dprintk(dev, 1, "vma start=0x%08lx, size=%ld, ret=%d\n",
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001170 (unsigned long)vma->vm_start,
1171 (unsigned long)vma->vm_end-(unsigned long)vma->vm_start,
1172 ret);
1173
1174 return ret;
1175}
1176
Arjan van de Venfa027c22007-02-12 00:55:33 -08001177static const struct file_operations vivi_fops = {
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001178 .owner = THIS_MODULE,
1179 .open = vivi_open,
Mauro Carvalho Chehabf905c442007-12-10 04:07:03 -03001180 .release = vivi_close,
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001181 .read = vivi_read,
1182 .poll = vivi_poll,
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001183 .ioctl = video_ioctl2, /* V4L2 ioctl handler */
Mauro Carvalho Chehab5a037702007-08-02 23:31:54 -03001184 .mmap = vivi_mmap,
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001185 .llseek = no_llseek,
1186};
1187
Mauro Carvalho Chehabf905c442007-12-10 04:07:03 -03001188static struct video_device vivi_template = {
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001189 .name = "vivi",
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001190 .type = VID_TYPE_CAPTURE,
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001191 .fops = &vivi_fops,
1192 .minor = -1,
Mauro Carvalho Chehabf905c442007-12-10 04:07:03 -03001193 .release = video_device_release,
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001194
1195 .vidioc_querycap = vidioc_querycap,
1196 .vidioc_enum_fmt_cap = vidioc_enum_fmt_cap,
1197 .vidioc_g_fmt_cap = vidioc_g_fmt_cap,
1198 .vidioc_try_fmt_cap = vidioc_try_fmt_cap,
1199 .vidioc_s_fmt_cap = vidioc_s_fmt_cap,
1200 .vidioc_reqbufs = vidioc_reqbufs,
1201 .vidioc_querybuf = vidioc_querybuf,
1202 .vidioc_qbuf = vidioc_qbuf,
1203 .vidioc_dqbuf = vidioc_dqbuf,
1204 .vidioc_s_std = vidioc_s_std,
1205 .vidioc_enum_input = vidioc_enum_input,
1206 .vidioc_g_input = vidioc_g_input,
1207 .vidioc_s_input = vidioc_s_input,
1208 .vidioc_queryctrl = vidioc_queryctrl,
1209 .vidioc_g_ctrl = vidioc_g_ctrl,
1210 .vidioc_s_ctrl = vidioc_s_ctrl,
1211 .vidioc_streamon = vidioc_streamon,
1212 .vidioc_streamoff = vidioc_streamoff,
Mauro Carvalho Chehab0dfa9ab2006-08-08 09:10:10 -03001213#ifdef CONFIG_VIDEO_V4L1_COMPAT
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001214 .vidiocgmbuf = vidiocgmbuf,
1215#endif
Mauro Carvalho Chehab784c6682007-12-13 06:35:26 -03001216 .tvnorms = V4L2_STD_525_60,
Mauro Carvalho Chehabe75f9ce2006-11-20 13:19:20 -03001217 .current_norm = V4L2_STD_NTSC_M,
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001218};
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001219/* -----------------------------------------------------------------
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001220 Initialization and module stuff
1221 ------------------------------------------------------------------*/
1222
1223static int __init vivi_init(void)
1224{
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001225 int ret = -ENOMEM, i;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001226 struct vivi_dev *dev;
Mauro Carvalho Chehabf905c442007-12-10 04:07:03 -03001227 struct video_device *vfd;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001228
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001229 for (i = 0; i < n_devs; i++) {
1230 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
1231 if (NULL == dev)
1232 break;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001233
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001234 list_add_tail(&dev->vivi_devlist, &vivi_devlist);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001235
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001236 /* init video dma queues */
1237 INIT_LIST_HEAD(&dev->vidq.active);
1238 INIT_LIST_HEAD(&dev->vidq.queued);
1239 init_waitqueue_head(&dev->vidq.wq);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001240
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001241 /* initialize locks */
1242 mutex_init(&dev->lock);
Mauro Carvalho Chehab55862ac2007-12-13 16:13:37 -03001243 spin_lock_init(&dev->slock);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001244
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001245 dev->vidq.timeout.function = vivi_vid_timeout;
1246 dev->vidq.timeout.data = (unsigned long)dev;
1247 init_timer(&dev->vidq.timeout);
Mauro Carvalho Chehabf905c442007-12-10 04:07:03 -03001248
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001249 vfd = video_device_alloc();
1250 if (NULL == vfd)
1251 break;
Mauro Carvalho Chehabf905c442007-12-10 04:07:03 -03001252
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001253 *vfd = vivi_template;
Mauro Carvalho Chehabf905c442007-12-10 04:07:03 -03001254
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001255 ret = video_register_device(vfd, VFL_TYPE_GRABBER, video_nr);
1256 if (ret < 0)
1257 break;
Mauro Carvalho Chehabf905c442007-12-10 04:07:03 -03001258
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001259 snprintf(vfd->name, sizeof(vfd->name), "%s (%i)",
1260 vivi_template.name, vfd->minor);
1261
1262 if (video_nr >= 0)
1263 video_nr++;
1264
1265 dev->vfd = vfd;
1266 }
1267
1268 if (ret < 0) {
1269 vivi_release();
1270 printk(KERN_INFO "Error %d while loading vivi driver\n", ret);
1271 } else
1272 printk(KERN_INFO "Video Technology Magazine Virtual Video "
1273 "Capture Board successfully loaded.\n");
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001274 return ret;
1275}
1276
1277static void __exit vivi_exit(void)
1278{
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001279 vivi_release();
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001280}
1281
1282module_init(vivi_init);
1283module_exit(vivi_exit);
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001284
1285MODULE_DESCRIPTION("Video Technology Magazine Virtual Video Capture Board");
1286MODULE_AUTHOR("Mauro Carvalho Chehab, Ted Walther and John Sokol");
1287MODULE_LICENSE("Dual BSD/GPL");
1288
1289module_param(video_nr, int, 0);
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001290MODULE_PARM_DESC(video_nr, "video iminor start number");
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001291
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001292module_param(n_devs, int, 0);
1293MODULE_PARM_DESC(n_devs, "number of video devices to create");
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001294
Mauro Carvalho Chehab8996b3f2007-12-13 06:36:22 -03001295module_param_named(debug, vivi_template.debug, int, 0444);
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001296MODULE_PARM_DESC(debug, "activates debug info");
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001297
Mauro Carvalho Chehab55712ff2007-12-10 04:38:11 -03001298module_param(vid_limit, int, 0644);
1299MODULE_PARM_DESC(vid_limit, "capture memory limit in megabytes");