blob: 512128a6f58c6f0b1e1b75a71082fa56f741d097 [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
47/* These timers are for 1 fps - used only for testing */
48//#define WAKE_DENOMINATOR 30 /* hack for testing purposes */
49//#define BUFFER_TIMEOUT msecs_to_jiffies(5000) /* 5 seconds */
50
51#include "font.h"
52
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -030053#define VIVI_MAJOR_VERSION 0
54#define VIVI_MINOR_VERSION 4
55#define VIVI_RELEASE 0
56#define VIVI_VERSION KERNEL_VERSION(VIVI_MAJOR_VERSION, VIVI_MINOR_VERSION, VIVI_RELEASE)
57
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -030058/* Declare static vars that will be used as parameters */
59static unsigned int vid_limit = 16; /* Video memory limit, in Mb */
60static struct video_device vivi; /* Video device */
61static int video_nr = -1; /* /dev/videoN, -1 for autodetect */
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -030062
63/* supported controls */
64static struct v4l2_queryctrl vivi_qctrl[] = {
65 {
66 .id = V4L2_CID_AUDIO_VOLUME,
67 .name = "Volume",
68 .minimum = 0,
69 .maximum = 65535,
70 .step = 65535/100,
71 .default_value = 65535,
72 .flags = 0,
73 .type = V4L2_CTRL_TYPE_INTEGER,
74 },{
75 .id = V4L2_CID_BRIGHTNESS,
76 .type = V4L2_CTRL_TYPE_INTEGER,
77 .name = "Brightness",
78 .minimum = 0,
79 .maximum = 255,
80 .step = 1,
81 .default_value = 127,
82 .flags = 0,
83 }, {
84 .id = V4L2_CID_CONTRAST,
85 .type = V4L2_CTRL_TYPE_INTEGER,
86 .name = "Contrast",
87 .minimum = 0,
88 .maximum = 255,
89 .step = 0x1,
90 .default_value = 0x10,
91 .flags = 0,
92 }, {
93 .id = V4L2_CID_SATURATION,
94 .type = V4L2_CTRL_TYPE_INTEGER,
95 .name = "Saturation",
96 .minimum = 0,
97 .maximum = 255,
98 .step = 0x1,
99 .default_value = 127,
100 .flags = 0,
101 }, {
102 .id = V4L2_CID_HUE,
103 .type = V4L2_CTRL_TYPE_INTEGER,
104 .name = "Hue",
105 .minimum = -128,
106 .maximum = 127,
107 .step = 0x1,
108 .default_value = 0,
109 .flags = 0,
110 }
111};
112
113static int qctl_regs[ARRAY_SIZE(vivi_qctrl)];
114
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300115#define dprintk(level,fmt, arg...) \
116 do { \
117 if (vivi.debug >= (level)) \
118 printk(KERN_DEBUG "vivi: " fmt , ## arg); \
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300119 } while (0)
120
121/* ------------------------------------------------------------------
122 Basic structures
123 ------------------------------------------------------------------*/
124
125struct vivi_fmt {
126 char *name;
127 u32 fourcc; /* v4l2 format id */
128 int depth;
129};
130
131static struct vivi_fmt format = {
132 .name = "4:2:2, packed, YUYV",
133 .fourcc = V4L2_PIX_FMT_YUYV,
134 .depth = 16,
135};
136
137struct sg_to_addr {
138 int pos;
139 struct scatterlist *sg;
140};
141
142/* buffer for one video frame */
143struct vivi_buffer {
144 /* common v4l buffer stuff -- must be first */
145 struct videobuf_buffer vb;
146
147 struct vivi_fmt *fmt;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300148};
149
150struct vivi_dmaqueue {
151 struct list_head active;
152 struct list_head queued;
153 struct timer_list timeout;
154
155 /* thread for generating video stream*/
156 struct task_struct *kthread;
157 wait_queue_head_t wq;
158 /* Counters to control fps rate */
159 int frame;
160 int ini_jiffies;
161};
162
163static LIST_HEAD(vivi_devlist);
164
165struct vivi_dev {
166 struct list_head vivi_devlist;
167
Matthias Kaehlcke51b54022007-07-02 10:19:38 -0300168 struct mutex lock;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300169
170 int users;
171
172 /* various device info */
173 unsigned int resources;
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300174 struct video_device vfd;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300175
176 struct vivi_dmaqueue vidq;
177
178 /* Several counters */
179 int h,m,s,us,jiffies;
180 char timestr[13];
181};
182
183struct vivi_fh {
184 struct vivi_dev *dev;
185
186 /* video capture */
187 struct vivi_fmt *fmt;
188 unsigned int width,height;
189 struct videobuf_queue vb_vidq;
190
191 enum v4l2_buf_type type;
192};
193
194/* ------------------------------------------------------------------
195 DMA and thread functions
196 ------------------------------------------------------------------*/
197
198/* Bars and Colors should match positions */
199
200enum colors {
201 WHITE,
202 AMBAR,
203 CYAN,
204 GREEN,
205 MAGENTA,
206 RED,
207 BLUE
208};
209
210static u8 bars[8][3] = {
211 /* R G B */
212 {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}
220};
221
222#define TO_Y(r,g,b) (((16829*r +33039*g +6416*b + 32768)>>16)+16)
223/* RGB to V(Cr) Color transform */
224#define TO_V(r,g,b) (((28784*r -24103*g -4681*b + 32768)>>16)+128)
225/* RGB to U(Cb) Color transform */
226#define TO_U(r,g,b) (((-9714*r -19070*g +28784*b + 32768)>>16)+128)
227
228#define TSTAMP_MIN_Y 24
229#define TSTAMP_MAX_Y TSTAMP_MIN_Y+15
230#define TSTAMP_MIN_X 64
231
Mauro Carvalho Chehabb50e7fe2007-01-25 05:00:01 -0300232static void gen_line(char *basep,int inipos,int wmax,
Mauro Carvalho Chehab3bef5e42007-09-22 02:01:33 -0300233 int hmax, int line, int count, char *timestr)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300234{
Mauro Carvalho Chehabb50e7fe2007-01-25 05:00:01 -0300235 int w,i,j,pos=inipos,y;
236 char *p,*s;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300237 u8 chr,r,g,b,color;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300238
239 /* We will just duplicate the second pixel at the packet */
240 wmax/=2;
241
242 /* Generate a standard color bar pattern */
243 for (w=0;w<wmax;w++) {
Mauro Carvalho Chehab3bef5e42007-09-22 02:01:33 -0300244 int colorpos=((w+count)*8/(wmax+1)) % 8;
245 r=bars[colorpos][0];
246 g=bars[colorpos][1];
247 b=bars[colorpos][2];
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300248
249 for (color=0;color<4;color++) {
Mauro Carvalho Chehabb50e7fe2007-01-25 05:00:01 -0300250 p=basep+pos;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300251
252 switch (color) {
253 case 0:
254 case 2:
255 *p=TO_Y(r,g,b); /* Luminance */
256 break;
257 case 1:
258 *p=TO_U(r,g,b); /* Cb */
259 break;
260 case 3:
261 *p=TO_V(r,g,b); /* Cr */
262 break;
263 }
264 pos++;
265 }
266 }
267
268 /* Checks if it is possible to show timestamp */
269 if (TSTAMP_MAX_Y>=hmax)
270 goto end;
271 if (TSTAMP_MIN_X+strlen(timestr)>=wmax)
272 goto end;
273
274 /* Print stream time */
275 if (line>=TSTAMP_MIN_Y && line<=TSTAMP_MAX_Y) {
276 j=TSTAMP_MIN_X;
277 for (s=timestr;*s;s++) {
278 chr=rom8x16_bits[(*s-0x30)*16+line-TSTAMP_MIN_Y];
279 for (i=0;i<7;i++) {
280 if (chr&1<<(7-i)) { /* Font color*/
281 r=bars[BLUE][0];
282 g=bars[BLUE][1];
283 b=bars[BLUE][2];
284 r=g=b=0;
285 g=198;
286 } else { /* Background color */
287 r=bars[WHITE][0];
288 g=bars[WHITE][1];
289 b=bars[WHITE][2];
290 r=g=b=0;
291 }
292
293 pos=inipos+j*2;
294 for (color=0;color<4;color++) {
Mauro Carvalho Chehabb50e7fe2007-01-25 05:00:01 -0300295 p=basep+pos;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300296
297 y=TO_Y(r,g,b);
298
299 switch (color) {
300 case 0:
301 case 2:
302 *p=TO_Y(r,g,b); /* Luminance */
303 break;
304 case 1:
305 *p=TO_U(r,g,b); /* Cb */
306 break;
307 case 3:
308 *p=TO_V(r,g,b); /* Cr */
309 break;
310 }
311 pos++;
312 }
313 j++;
314 }
315 }
316 }
317
318
319end:
Mauro Carvalho Chehabb50e7fe2007-01-25 05:00:01 -0300320 return;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300321}
322static void vivi_fillbuff(struct vivi_dev *dev,struct vivi_buffer *buf)
323{
324 int h,pos=0;
325 int hmax = buf->vb.height;
326 int wmax = buf->vb.width;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300327 struct timeval ts;
Mauro Carvalho Chehab5a037702007-08-02 23:31:54 -0300328 char *tmpbuf = kmalloc(wmax*2,GFP_KERNEL);
329 void *vbuf=videobuf_to_vmalloc (&buf->vb);
Mauro Carvalho Chehab3bef5e42007-09-22 02:01:33 -0300330 /* FIXME: move to dev struct */
331 static int mv_count=0;
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
336 for (h=0;h<hmax;h++) {
Mauro Carvalho Chehab3bef5e42007-09-22 02:01:33 -0300337 gen_line(tmpbuf,0,wmax,hmax,h,mv_count,
338 dev->timestr);
Mauro Carvalho Chehab5a037702007-08-02 23:31:54 -0300339 /* FIXME: replacing to __copy_to_user */
340 if (copy_to_user(vbuf+pos,tmpbuf,wmax*2)!=0)
341 dprintk(2,"vivifill copy_to_user failed.\n");
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300342 pos += wmax*2;
343 }
344
Mauro Carvalho Chehab3bef5e42007-09-22 02:01:33 -0300345 mv_count++;
346
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
351 dev->us+=jiffies_to_usecs(jiffies-dev->jiffies);
352 dev->jiffies=jiffies;
353 if (dev->us>=1000000) {
354 dev->us-=1000000;
355 dev->s++;
356 if (dev->s>=60) {
357 dev->s-=60;
358 dev->m++;
359 if (dev->m>60) {
360 dev->m-=60;
361 dev->h++;
362 if (dev->h>24)
363 dev->h-=24;
364 }
365 }
366 }
367 sprintf(dev->timestr,"%02d:%02d:%02d:%03d",
368 dev->h,dev->m,dev->s,(dev->us+500)/1000);
369
370 dprintk(2,"vivifill at %s: Buffer 0x%08lx size= %d\n",dev->timestr,
Mauro Carvalho Chehab5a037702007-08-02 23:31:54 -0300371 (unsigned long)tmpbuf,pos);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300372
373 /* Advice that buffer was filled */
374 buf->vb.state = STATE_DONE;
375 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;
388 struct vivi_dev *dev= container_of(dma_q,struct vivi_dev,vidq);
389
390 int bc;
391
392 /* Announces videobuf that all went ok */
393 for (bc = 0;; bc++) {
394 if (list_empty(&dma_q->active)) {
395 dprintk(1,"No active queue to serve\n");
396 break;
397 }
398
399 buf = list_entry(dma_q->active.next,
400 struct vivi_buffer, vb.queue);
401
402 /* Nobody is waiting something to be done, just return */
403 if (!waitqueue_active(&buf->vb.done)) {
404 mod_timer(&dma_q->timeout, jiffies+BUFFER_TIMEOUT);
405 return;
406 }
407
408 do_gettimeofday(&buf->vb.ts);
409 dprintk(2,"[%p/%d] wakeup\n",buf,buf->vb.i);
410
411 /* Fill buffer */
412 vivi_fillbuff(dev,buf);
Mauro Carvalho Chehab0b600512007-01-14 08:33:24 -0300413
414 if (list_empty(&dma_q->active)) {
415 del_timer(&dma_q->timeout);
416 } else {
417 mod_timer(&dma_q->timeout, jiffies+BUFFER_TIMEOUT);
418 }
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300419 }
420 if (bc != 1)
421 dprintk(1,"%s: %d buffers handled (should be 1)\n",__FUNCTION__,bc);
422}
423
Adrian Bunk972c3512006-04-27 21:06:50 -0300424static void vivi_sleep(struct vivi_dmaqueue *dma_q)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300425{
426 int timeout;
427 DECLARE_WAITQUEUE(wait, current);
428
429 dprintk(1,"%s dma_q=0x%08lx\n",__FUNCTION__,(unsigned long)dma_q);
430
431 add_wait_queue(&dma_q->wq, &wait);
432 if (!kthread_should_stop()) {
433 dma_q->frame++;
434
435 /* Calculate time to wake up */
436 timeout=dma_q->ini_jiffies+msecs_to_jiffies((dma_q->frame*WAKE_NUMERATOR*1000)/WAKE_DENOMINATOR)-jiffies;
437
438 if (timeout <= 0) {
439 int old=dma_q->frame;
440 dma_q->frame=(jiffies_to_msecs(jiffies-dma_q->ini_jiffies)*WAKE_DENOMINATOR)/(WAKE_NUMERATOR*1000)+1;
441
442 timeout=dma_q->ini_jiffies+msecs_to_jiffies((dma_q->frame*WAKE_NUMERATOR*1000)/WAKE_DENOMINATOR)-jiffies;
443
444 dprintk(1,"underrun, losed %d frames. "
445 "Now, frame is %d. Waking on %d jiffies\n",
446 dma_q->frame-old,dma_q->frame,timeout);
447 } else
448 dprintk(1,"will sleep for %i jiffies\n",timeout);
449
450 vivi_thread_tick(dma_q);
451
452 schedule_timeout_interruptible (timeout);
453 }
454
455 remove_wait_queue(&dma_q->wq, &wait);
456 try_to_freeze();
457}
458
Adrian Bunk972c3512006-04-27 21:06:50 -0300459static int vivi_thread(void *data)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300460{
461 struct vivi_dmaqueue *dma_q=data;
462
463 dprintk(1,"thread started\n");
464
Mauro Carvalho Chehab0b600512007-01-14 08:33:24 -0300465 mod_timer(&dma_q->timeout, jiffies+BUFFER_TIMEOUT);
Rafael J. Wysocki83144182007-07-17 04:03:35 -0700466 set_freezable();
Mauro Carvalho Chehab0b600512007-01-14 08:33:24 -0300467
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300468 for (;;) {
469 vivi_sleep(dma_q);
470
471 if (kthread_should_stop())
472 break;
473 }
474 dprintk(1, "thread: exit\n");
475 return 0;
476}
477
Adrian Bunk972c3512006-04-27 21:06:50 -0300478static int vivi_start_thread(struct vivi_dmaqueue *dma_q)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300479{
480 dma_q->frame=0;
481 dma_q->ini_jiffies=jiffies;
482
483 dprintk(1,"%s\n",__FUNCTION__);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300484
485 dma_q->kthread = kthread_run(vivi_thread, dma_q, "vivi");
486
Akinobu Mita054afee2006-12-20 10:04:00 -0300487 if (IS_ERR(dma_q->kthread)) {
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300488 printk(KERN_ERR "vivi: kernel_thread() failed\n");
Akinobu Mita054afee2006-12-20 10:04:00 -0300489 return PTR_ERR(dma_q->kthread);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300490 }
Mauro Carvalho Chehab0b600512007-01-14 08:33:24 -0300491 /* Wakes thread */
492 wake_up_interruptible(&dma_q->wq);
493
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300494 dprintk(1,"returning from %s\n",__FUNCTION__);
495 return 0;
496}
497
Adrian Bunk972c3512006-04-27 21:06:50 -0300498static void vivi_stop_thread(struct vivi_dmaqueue *dma_q)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300499{
500 dprintk(1,"%s\n",__FUNCTION__);
501 /* shutdown control thread */
502 if (dma_q->kthread) {
503 kthread_stop(dma_q->kthread);
504 dma_q->kthread=NULL;
505 }
506}
507
508static int restart_video_queue(struct vivi_dmaqueue *dma_q)
509{
510 struct vivi_buffer *buf, *prev;
511 struct list_head *item;
512
513 dprintk(1,"%s dma_q=0x%08lx\n",__FUNCTION__,(unsigned long)dma_q);
514
515 if (!list_empty(&dma_q->active)) {
516 buf = list_entry(dma_q->active.next, struct vivi_buffer, vb.queue);
517 dprintk(2,"restart_queue [%p/%d]: restart dma\n",
518 buf, buf->vb.i);
519
520 dprintk(1,"Restarting video dma\n");
521 vivi_stop_thread(dma_q);
522// vivi_start_thread(dma_q);
523
524 /* cancel all outstanding capture / vbi requests */
525 list_for_each(item,&dma_q->active) {
526 buf = list_entry(item, struct vivi_buffer, vb.queue);
527
528 list_del(&buf->vb.queue);
529 buf->vb.state = STATE_ERROR;
530 wake_up(&buf->vb.done);
531 }
532 mod_timer(&dma_q->timeout, jiffies+BUFFER_TIMEOUT);
533
534 return 0;
535 }
536
537 prev = NULL;
538 for (;;) {
539 if (list_empty(&dma_q->queued))
540 return 0;
541 buf = list_entry(dma_q->queued.next, struct vivi_buffer, vb.queue);
542 if (NULL == prev) {
543 list_del(&buf->vb.queue);
544 list_add_tail(&buf->vb.queue,&dma_q->active);
545
546 dprintk(1,"Restarting video dma\n");
547 vivi_stop_thread(dma_q);
548 vivi_start_thread(dma_q);
549
550 buf->vb.state = STATE_ACTIVE;
551 mod_timer(&dma_q->timeout, jiffies+BUFFER_TIMEOUT);
552 dprintk(2,"[%p/%d] restart_queue - first active\n",
553 buf,buf->vb.i);
554
555 } else if (prev->vb.width == buf->vb.width &&
556 prev->vb.height == buf->vb.height &&
557 prev->fmt == buf->fmt) {
558 list_del(&buf->vb.queue);
559 list_add_tail(&buf->vb.queue,&dma_q->active);
560 buf->vb.state = STATE_ACTIVE;
561 dprintk(2,"[%p/%d] restart_queue - move to active\n",
562 buf,buf->vb.i);
563 } else {
564 return 0;
565 }
566 prev = buf;
567 }
568}
569
570static void vivi_vid_timeout(unsigned long data)
571{
572 struct vivi_dev *dev = (struct vivi_dev*)data;
573 struct vivi_dmaqueue *vidq = &dev->vidq;
574 struct vivi_buffer *buf;
575
576 while (!list_empty(&vidq->active)) {
577 buf = list_entry(vidq->active.next, struct vivi_buffer, vb.queue);
578 list_del(&buf->vb.queue);
579 buf->vb.state = STATE_ERROR;
580 wake_up(&buf->vb.done);
581 printk("vivi/0: [%p/%d] timeout\n", buf, buf->vb.i);
582 }
583
584 restart_video_queue(vidq);
585}
586
587/* ------------------------------------------------------------------
588 Videobuf operations
589 ------------------------------------------------------------------*/
590static int
591buffer_setup(struct videobuf_queue *vq, unsigned int *count, unsigned int *size)
592{
593 struct vivi_fh *fh = vq->priv_data;
594
595 *size = fh->width*fh->height*2;
596
597 if (0 == *count)
598 *count = 32;
Mauro Carvalho Chehab6bb27902007-08-23 16:41:14 -0300599
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300600 while (*size * *count > vid_limit * 1024 * 1024)
601 (*count)--;
Mauro Carvalho Chehab6bb27902007-08-23 16:41:14 -0300602
603 dprintk(1,"%s, count=%d, size=%d\n",__FUNCTION__,*count, *size);
604
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300605 return 0;
606}
607
Adrian Bunk972c3512006-04-27 21:06:50 -0300608static void free_buffer(struct videobuf_queue *vq, struct vivi_buffer *buf)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300609{
610 dprintk(1,"%s\n",__FUNCTION__);
611
612 if (in_interrupt())
613 BUG();
614
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300615 videobuf_waiton(&buf->vb,0,0);
Mauro Carvalho Chehab5a037702007-08-02 23:31:54 -0300616 videobuf_vmalloc_free(&buf->vb);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300617 buf->vb.state = STATE_NEEDS_INIT;
618}
619
620#define norm_maxw() 1024
621#define norm_maxh() 768
622static int
623buffer_prepare(struct videobuf_queue *vq, struct videobuf_buffer *vb,
624 enum v4l2_field field)
625{
626 struct vivi_fh *fh = vq->priv_data;
627 struct vivi_buffer *buf = container_of(vb,struct vivi_buffer,vb);
628 int rc, init_buffer = 0;
629
Mauro Carvalho Chehab6bb27902007-08-23 16:41:14 -0300630 dprintk(1,"%s, field=%d\n",__FUNCTION__,field);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300631
632 BUG_ON(NULL == fh->fmt);
633 if (fh->width < 48 || fh->width > norm_maxw() ||
634 fh->height < 32 || fh->height > norm_maxh())
635 return -EINVAL;
636 buf->vb.size = fh->width*fh->height*2;
637 if (0 != buf->vb.baddr && buf->vb.bsize < buf->vb.size)
638 return -EINVAL;
639
640 if (buf->fmt != fh->fmt ||
641 buf->vb.width != fh->width ||
642 buf->vb.height != fh->height ||
643 buf->vb.field != field) {
644 buf->fmt = fh->fmt;
645 buf->vb.width = fh->width;
646 buf->vb.height = fh->height;
647 buf->vb.field = field;
648 init_buffer = 1;
649 }
650
651 if (STATE_NEEDS_INIT == buf->vb.state) {
652 if (0 != (rc = videobuf_iolock(vq,&buf->vb,NULL)))
653 goto fail;
654 }
655
656 buf->vb.state = STATE_PREPARED;
657
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300658 return 0;
659
660fail:
661 free_buffer(vq,buf);
662 return rc;
663}
664
665static void
666buffer_queue(struct videobuf_queue *vq, struct videobuf_buffer *vb)
667{
668 struct vivi_buffer *buf = container_of(vb,struct vivi_buffer,vb);
669 struct vivi_fh *fh = vq->priv_data;
670 struct vivi_dev *dev = fh->dev;
671 struct vivi_dmaqueue *vidq = &dev->vidq;
672 struct vivi_buffer *prev;
673
674 if (!list_empty(&vidq->queued)) {
675 dprintk(1,"adding vb queue=0x%08lx\n",(unsigned long)&buf->vb.queue);
676 list_add_tail(&buf->vb.queue,&vidq->queued);
677 buf->vb.state = STATE_QUEUED;
678 dprintk(2,"[%p/%d] buffer_queue - append to queued\n",
679 buf, buf->vb.i);
680 } else if (list_empty(&vidq->active)) {
681 list_add_tail(&buf->vb.queue,&vidq->active);
682
683 buf->vb.state = STATE_ACTIVE;
684 mod_timer(&vidq->timeout, jiffies+BUFFER_TIMEOUT);
685 dprintk(2,"[%p/%d] buffer_queue - first active\n",
686 buf, buf->vb.i);
687
688 vivi_start_thread(vidq);
689 } else {
690 prev = list_entry(vidq->active.prev, struct vivi_buffer, vb.queue);
691 if (prev->vb.width == buf->vb.width &&
692 prev->vb.height == buf->vb.height &&
693 prev->fmt == buf->fmt) {
694 list_add_tail(&buf->vb.queue,&vidq->active);
695 buf->vb.state = STATE_ACTIVE;
696 dprintk(2,"[%p/%d] buffer_queue - append to active\n",
697 buf, buf->vb.i);
698
699 } else {
700 list_add_tail(&buf->vb.queue,&vidq->queued);
701 buf->vb.state = STATE_QUEUED;
702 dprintk(2,"[%p/%d] buffer_queue - first queued\n",
703 buf, buf->vb.i);
704 }
705 }
706}
707
708static void buffer_release(struct videobuf_queue *vq, struct videobuf_buffer *vb)
709{
710 struct vivi_buffer *buf = container_of(vb,struct vivi_buffer,vb);
711 struct vivi_fh *fh = vq->priv_data;
712 struct vivi_dev *dev = (struct vivi_dev*)fh->dev;
713 struct vivi_dmaqueue *vidq = &dev->vidq;
714
715 dprintk(1,"%s\n",__FUNCTION__);
716
717 vivi_stop_thread(vidq);
718
719 free_buffer(vq,buf);
720}
721
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300722static struct videobuf_queue_ops vivi_video_qops = {
723 .buf_setup = buffer_setup,
724 .buf_prepare = buffer_prepare,
725 .buf_queue = buffer_queue,
726 .buf_release = buffer_release,
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300727};
728
729/* ------------------------------------------------------------------
730 IOCTL handling
731 ------------------------------------------------------------------*/
732
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300733
734static int res_get(struct vivi_dev *dev, struct vivi_fh *fh)
735{
736 /* is it free? */
Matthias Kaehlcke51b54022007-07-02 10:19:38 -0300737 mutex_lock(&dev->lock);
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300738 if (dev->resources) {
739 /* no, someone else uses it */
Matthias Kaehlcke51b54022007-07-02 10:19:38 -0300740 mutex_unlock(&dev->lock);
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300741 return 0;
742 }
743 /* it's free, grab it */
744 dev->resources =1;
745 dprintk(1,"res: get\n");
Matthias Kaehlcke51b54022007-07-02 10:19:38 -0300746 mutex_unlock(&dev->lock);
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300747 return 1;
748}
749
750static int res_locked(struct vivi_dev *dev)
751{
752 return (dev->resources);
753}
754
755static void res_free(struct vivi_dev *dev, struct vivi_fh *fh)
756{
Matthias Kaehlcke51b54022007-07-02 10:19:38 -0300757 mutex_lock(&dev->lock);
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300758 dev->resources = 0;
759 dprintk(1,"res: put\n");
Matthias Kaehlcke51b54022007-07-02 10:19:38 -0300760 mutex_lock(&dev->lock);
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300761}
762
763/* ------------------------------------------------------------------
764 IOCTL vidioc handling
765 ------------------------------------------------------------------*/
766static int vidioc_querycap (struct file *file, void *priv,
767 struct v4l2_capability *cap)
768{
769 strcpy(cap->driver, "vivi");
770 strcpy(cap->card, "vivi");
771 cap->version = VIVI_VERSION;
772 cap->capabilities = V4L2_CAP_VIDEO_CAPTURE |
773 V4L2_CAP_STREAMING |
774 V4L2_CAP_READWRITE;
775 return 0;
776}
777
778static int vidioc_enum_fmt_cap (struct file *file, void *priv,
779 struct v4l2_fmtdesc *f)
780{
781 if (f->index > 0)
782 return -EINVAL;
783
784 strlcpy(f->description,format.name,sizeof(f->description));
785 f->pixelformat = format.fourcc;
786 return 0;
787}
788
789static int vidioc_g_fmt_cap (struct file *file, void *priv,
790 struct v4l2_format *f)
791{
792 struct vivi_fh *fh=priv;
793
794 f->fmt.pix.width = fh->width;
795 f->fmt.pix.height = fh->height;
796 f->fmt.pix.field = fh->vb_vidq.field;
797 f->fmt.pix.pixelformat = fh->fmt->fourcc;
798 f->fmt.pix.bytesperline =
799 (f->fmt.pix.width * fh->fmt->depth) >> 3;
800 f->fmt.pix.sizeimage =
801 f->fmt.pix.height * f->fmt.pix.bytesperline;
802
803 return (0);
804}
805
806static int vidioc_try_fmt_cap (struct file *file, void *priv,
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300807 struct v4l2_format *f)
808{
809 struct vivi_fmt *fmt;
810 enum v4l2_field field;
811 unsigned int maxw, maxh;
812
813 if (format.fourcc != f->fmt.pix.pixelformat) {
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300814 dprintk(1,"Fourcc format (0x%08x) invalid. Driver accepts "
815 "only 0x%08x\n",f->fmt.pix.pixelformat,format.fourcc);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300816 return -EINVAL;
817 }
818 fmt=&format;
819
820 field = f->fmt.pix.field;
821
822 if (field == V4L2_FIELD_ANY) {
Brandon Philipsa326ae12007-09-27 20:54:52 -0300823 field=V4L2_FIELD_INTERLACED;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300824 } else if (V4L2_FIELD_INTERLACED != field) {
825 dprintk(1,"Field type invalid.\n");
826 return -EINVAL;
827 }
828
829 maxw = norm_maxw();
830 maxh = norm_maxh();
831
832 f->fmt.pix.field = field;
833 if (f->fmt.pix.height < 32)
834 f->fmt.pix.height = 32;
835 if (f->fmt.pix.height > maxh)
836 f->fmt.pix.height = maxh;
837 if (f->fmt.pix.width < 48)
838 f->fmt.pix.width = 48;
839 if (f->fmt.pix.width > maxw)
840 f->fmt.pix.width = maxw;
841 f->fmt.pix.width &= ~0x03;
842 f->fmt.pix.bytesperline =
843 (f->fmt.pix.width * fmt->depth) >> 3;
844 f->fmt.pix.sizeimage =
845 f->fmt.pix.height * f->fmt.pix.bytesperline;
846
847 return 0;
848}
849
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300850/*FIXME: This seems to be generic enough to be at videodev2 */
851static int vidioc_s_fmt_cap (struct file *file, void *priv,
852 struct v4l2_format *f)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300853{
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300854 struct vivi_fh *fh=priv;
855 int ret = vidioc_try_fmt_cap(file,fh,f);
856 if (ret < 0)
857 return (ret);
858
859 fh->fmt = &format;
860 fh->width = f->fmt.pix.width;
861 fh->height = f->fmt.pix.height;
862 fh->vb_vidq.field = f->fmt.pix.field;
863 fh->type = f->type;
864
865 return (0);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300866}
867
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300868static int vidioc_reqbufs (struct file *file, void *priv, struct v4l2_requestbuffers *p)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300869{
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300870 struct vivi_fh *fh=priv;
871
872 return (videobuf_reqbufs(&fh->vb_vidq, p));
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300873}
874
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300875static int vidioc_querybuf (struct file *file, void *priv, struct v4l2_buffer *p)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300876{
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300877 struct vivi_fh *fh=priv;
878
879 return (videobuf_querybuf(&fh->vb_vidq, p));
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300880}
881
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300882static int vidioc_qbuf (struct file *file, void *priv, struct v4l2_buffer *p)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300883{
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300884 struct vivi_fh *fh=priv;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300885
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300886 return (videobuf_qbuf(&fh->vb_vidq, p));
887}
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300888
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300889static int vidioc_dqbuf (struct file *file, void *priv, struct v4l2_buffer *p)
890{
891 struct vivi_fh *fh=priv;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300892
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300893 return (videobuf_dqbuf(&fh->vb_vidq, p,
894 file->f_flags & O_NONBLOCK));
895}
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300896
Mauro Carvalho Chehab0dfa9ab2006-08-08 09:10:10 -0300897#ifdef CONFIG_VIDEO_V4L1_COMPAT
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300898static int vidiocgmbuf (struct file *file, void *priv, struct video_mbuf *mbuf)
899{
900 struct vivi_fh *fh=priv;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300901
Mauro Carvalho Chehab6bb27902007-08-23 16:41:14 -0300902 return videobuf_cgmbuf (&fh->vb_vidq, mbuf, 8);
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300903}
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300904#endif
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300905
Adrian Bunkdc46ace2006-06-23 06:42:44 -0300906static int vidioc_streamon(struct file *file, void *priv, enum v4l2_buf_type i)
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300907{
908 struct vivi_fh *fh=priv;
909 struct vivi_dev *dev = fh->dev;
910
911 if (fh->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
912 return -EINVAL;
913 if (i != fh->type)
914 return -EINVAL;
915
916 if (!res_get(dev,fh))
917 return -EBUSY;
918 return (videobuf_streamon(&fh->vb_vidq));
919}
920
Adrian Bunkdc46ace2006-06-23 06:42:44 -0300921static int vidioc_streamoff(struct file *file, void *priv, enum v4l2_buf_type i)
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300922{
923 struct vivi_fh *fh=priv;
924 struct vivi_dev *dev = fh->dev;
925
926 if (fh->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
927 return -EINVAL;
928 if (i != fh->type)
929 return -EINVAL;
930
931 videobuf_streamoff(&fh->vb_vidq);
932 res_free(dev,fh);
933
934 return (0);
935}
936
Mauro Carvalho Chehabe75f9ce2006-11-20 13:19:20 -0300937static int vidioc_s_std (struct file *file, void *priv, v4l2_std_id *i)
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300938{
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300939 return 0;
940}
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300941
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300942/* only one input in this sample driver */
943static int vidioc_enum_input (struct file *file, void *priv,
944 struct v4l2_input *inp)
945{
946 if (inp->index != 0)
947 return -EINVAL;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300948
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300949 inp->type = V4L2_INPUT_TYPE_CAMERA;
950 inp->std = V4L2_STD_NTSC_M;
951 strcpy(inp->name,"Camera");
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300952
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300953 return (0);
954}
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300955
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300956static int vidioc_g_input (struct file *file, void *priv, unsigned int *i)
957{
958 *i = 0;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300959
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300960 return (0);
961}
962static int vidioc_s_input (struct file *file, void *priv, unsigned int i)
963{
964 if (i > 0)
965 return -EINVAL;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300966
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300967 return (0);
968}
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300969
970 /* --- controls ---------------------------------------------- */
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300971static int vidioc_queryctrl (struct file *file, void *priv,
972 struct v4l2_queryctrl *qc)
973{
974 int i;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300975
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300976 for (i = 0; i < ARRAY_SIZE(vivi_qctrl); i++)
977 if (qc->id && qc->id == vivi_qctrl[i].id) {
978 memcpy(qc, &(vivi_qctrl[i]),
979 sizeof(*qc));
980 return (0);
981 }
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300982
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300983 return -EINVAL;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300984}
985
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300986static int vidioc_g_ctrl (struct file *file, void *priv,
987 struct v4l2_control *ctrl)
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -0300988{
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -0300989 int i;
990
991 for (i = 0; i < ARRAY_SIZE(vivi_qctrl); i++)
992 if (ctrl->id == vivi_qctrl[i].id) {
993 ctrl->value=qctl_regs[i];
994 return (0);
995 }
996
997 return -EINVAL;
998}
999static int vidioc_s_ctrl (struct file *file, void *priv,
1000 struct v4l2_control *ctrl)
1001{
1002 int i;
1003
1004 for (i = 0; i < ARRAY_SIZE(vivi_qctrl); i++)
1005 if (ctrl->id == vivi_qctrl[i].id) {
1006 if (ctrl->value <
1007 vivi_qctrl[i].minimum
1008 || ctrl->value >
1009 vivi_qctrl[i].maximum) {
1010 return (-ERANGE);
1011 }
1012 qctl_regs[i]=ctrl->value;
1013 return (0);
1014 }
1015 return -EINVAL;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001016}
1017
1018/* ------------------------------------------------------------------
1019 File operations for the device
1020 ------------------------------------------------------------------*/
1021
1022#define line_buf_size(norm) (norm_maxw(norm)*(format.depth+7)/8)
1023
1024static int vivi_open(struct inode *inode, struct file *file)
1025{
1026 int minor = iminor(inode);
1027 struct vivi_dev *h,*dev = NULL;
1028 struct vivi_fh *fh;
1029 struct list_head *list;
1030 enum v4l2_buf_type type = 0;
1031 int i;
1032
1033 printk(KERN_DEBUG "vivi: open called (minor=%d)\n",minor);
1034
1035 list_for_each(list,&vivi_devlist) {
1036 h = list_entry(list, struct vivi_dev, vivi_devlist);
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001037 if (h->vfd.minor == minor) {
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001038 dev = h;
1039 type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
1040 }
1041 }
1042 if (NULL == dev)
1043 return -ENODEV;
1044
1045
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001046
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001047 /* If more than one user, mutex should be added */
1048 dev->users++;
1049
1050 dprintk(1,"open minor=%d type=%s users=%d\n",
1051 minor,v4l2_type_names[type],dev->users);
1052
1053 /* allocate + initialize per filehandle data */
1054 fh = kzalloc(sizeof(*fh),GFP_KERNEL);
1055 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++)
1070 qctl_regs[i] =vivi_qctrl[i].default_value;
1071
1072 dprintk(1,"Open: fh=0x%08lx, dev=0x%08lx, dev->vidq=0x%08lx\n",
1073 (unsigned long)fh,(unsigned long)dev,(unsigned long)&dev->vidq);
1074 dprintk(1,"Open: list_empty queued=%d\n",list_empty(&dev->vidq.queued));
1075 dprintk(1,"Open: list_empty active=%d\n",list_empty(&dev->vidq.active));
1076
1077 /* Resets frame counters */
1078 dev->h=0;
1079 dev->m=0;
1080 dev->s=0;
1081 dev->us=0;
1082 dev->jiffies=jiffies;
1083 sprintf(dev->timestr,"%02d:%02d:%02d:%03d",
1084 dev->h,dev->m,dev->s,(dev->us+500)/1000);
1085
Mauro Carvalho Chehab5a037702007-08-02 23:31:54 -03001086 videobuf_queue_vmalloc_init(&fh->vb_vidq, &vivi_video_qops,
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001087 NULL, NULL,
1088 fh->type,
1089 V4L2_FIELD_INTERLACED,
1090 sizeof(struct vivi_buffer),fh);
1091
1092 return 0;
1093}
1094
1095static ssize_t
1096vivi_read(struct file *file, char __user *data, size_t count, loff_t *ppos)
1097{
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001098 struct vivi_fh *fh = file->private_data;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001099
1100 if (fh->type==V4L2_BUF_TYPE_VIDEO_CAPTURE) {
1101 if (res_locked(fh->dev))
1102 return -EBUSY;
Mauro Carvalho Chehabacb09af2007-07-29 22:56:11 -03001103 return videobuf_read_stream(&fh->vb_vidq, data, count, ppos, 0,
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001104 file->f_flags & O_NONBLOCK);
1105 }
1106 return 0;
1107}
1108
1109static unsigned int
1110vivi_poll(struct file *file, struct poll_table_struct *wait)
1111{
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001112 struct vivi_fh *fh = file->private_data;
1113 struct vivi_buffer *buf;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001114
1115 dprintk(1,"%s\n",__FUNCTION__);
1116
1117 if (V4L2_BUF_TYPE_VIDEO_CAPTURE != fh->type)
1118 return POLLERR;
1119
1120 if (res_get(fh->dev,fh)) {
1121 dprintk(1,"poll: mmap interface\n");
1122 /* streaming capture */
1123 if (list_empty(&fh->vb_vidq.stream))
1124 return POLLERR;
1125 buf = list_entry(fh->vb_vidq.stream.next,struct vivi_buffer,vb.stream);
1126 } else {
1127 dprintk(1,"poll: read() interface\n");
1128 /* read() capture */
Mauro Carvalho Chehab40558da2007-08-27 07:37:34 -03001129 return videobuf_poll_stream(file, &fh-> vb_vidq,
1130 wait);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001131 }
1132 poll_wait(file, &buf->vb.done, wait);
1133 if (buf->vb.state == STATE_DONE ||
1134 buf->vb.state == STATE_ERROR)
1135 return POLLIN|POLLRDNORM;
1136 return 0;
1137}
1138
1139static int vivi_release(struct inode *inode, struct file *file)
1140{
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001141 struct vivi_fh *fh = file->private_data;
1142 struct vivi_dev *dev = fh->dev;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001143 struct vivi_dmaqueue *vidq = &dev->vidq;
1144
1145 int minor = iminor(inode);
1146
1147 vivi_stop_thread(vidq);
1148 videobuf_mmap_free(&fh->vb_vidq);
1149
1150 kfree (fh);
1151
1152 dev->users--;
1153
1154 printk(KERN_DEBUG "vivi: close called (minor=%d, users=%d)\n",minor,dev->users);
1155
1156 return 0;
1157}
1158
1159static int
1160vivi_mmap(struct file *file, struct vm_area_struct * vma)
1161{
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001162 struct vivi_fh *fh = file->private_data;
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001163 int ret;
1164
1165 dprintk (1,"mmap called, vma=0x%08lx\n",(unsigned long)vma);
1166
1167 ret=videobuf_mmap_mapper(&fh->vb_vidq, vma);
1168
1169 dprintk (1,"vma start=0x%08lx, size=%ld, ret=%d\n",
1170 (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,
1180 .release = vivi_release,
1181 .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
1188static struct video_device vivi = {
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001189 .name = "vivi",
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001190 .type = VID_TYPE_CAPTURE,
1191 .hardware = 0,
1192 .fops = &vivi_fops,
1193 .minor = -1,
1194// .release = video_device_release,
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001195
1196 .vidioc_querycap = vidioc_querycap,
1197 .vidioc_enum_fmt_cap = vidioc_enum_fmt_cap,
1198 .vidioc_g_fmt_cap = vidioc_g_fmt_cap,
1199 .vidioc_try_fmt_cap = vidioc_try_fmt_cap,
1200 .vidioc_s_fmt_cap = vidioc_s_fmt_cap,
1201 .vidioc_reqbufs = vidioc_reqbufs,
1202 .vidioc_querybuf = vidioc_querybuf,
1203 .vidioc_qbuf = vidioc_qbuf,
1204 .vidioc_dqbuf = vidioc_dqbuf,
1205 .vidioc_s_std = vidioc_s_std,
1206 .vidioc_enum_input = vidioc_enum_input,
1207 .vidioc_g_input = vidioc_g_input,
1208 .vidioc_s_input = vidioc_s_input,
1209 .vidioc_queryctrl = vidioc_queryctrl,
1210 .vidioc_g_ctrl = vidioc_g_ctrl,
1211 .vidioc_s_ctrl = vidioc_s_ctrl,
1212 .vidioc_streamon = vidioc_streamon,
1213 .vidioc_streamoff = vidioc_streamoff,
Mauro Carvalho Chehab0dfa9ab2006-08-08 09:10:10 -03001214#ifdef CONFIG_VIDEO_V4L1_COMPAT
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001215 .vidiocgmbuf = vidiocgmbuf,
1216#endif
Mauro Carvalho Chehabe75f9ce2006-11-20 13:19:20 -03001217 .tvnorms = V4L2_STD_NTSC_M,
1218 .current_norm = V4L2_STD_NTSC_M,
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001219};
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001220/* -----------------------------------------------------------------
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001221 Initialization and module stuff
1222 ------------------------------------------------------------------*/
1223
1224static int __init vivi_init(void)
1225{
1226 int ret;
1227 struct vivi_dev *dev;
1228
1229 dev = kzalloc(sizeof(*dev),GFP_KERNEL);
1230 if (NULL == dev)
1231 return -ENOMEM;
1232 list_add_tail(&dev->vivi_devlist,&vivi_devlist);
1233
1234 /* init video dma queues */
1235 INIT_LIST_HEAD(&dev->vidq.active);
1236 INIT_LIST_HEAD(&dev->vidq.queued);
Mauro Carvalho Chehabdf3a7102007-01-13 09:25:16 -03001237 init_waitqueue_head(&dev->vidq.wq);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001238
1239 /* initialize locks */
Matthias Kaehlcke51b54022007-07-02 10:19:38 -03001240 mutex_init(&dev->lock);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001241
1242 dev->vidq.timeout.function = vivi_vid_timeout;
1243 dev->vidq.timeout.data = (unsigned long)dev;
1244 init_timer(&dev->vidq.timeout);
1245
1246 ret = video_register_device(&vivi, VFL_TYPE_GRABBER, video_nr);
1247 printk(KERN_INFO "Video Technology Magazine Virtual Video Capture Board (Load status: %d)\n", ret);
1248 return ret;
1249}
1250
1251static void __exit vivi_exit(void)
1252{
1253 struct vivi_dev *h;
1254 struct list_head *list;
1255
Akinobu Mita72f678c2006-12-20 10:03:53 -03001256 while (!list_empty(&vivi_devlist)) {
1257 list = vivi_devlist.next;
1258 list_del(list);
Mauro Carvalho Chehab1e6dd652006-03-10 12:40:10 -03001259 h = list_entry(list, struct vivi_dev, vivi_devlist);
1260 kfree (h);
1261 }
1262 video_unregister_device(&vivi);
1263}
1264
1265module_init(vivi_init);
1266module_exit(vivi_exit);
Mauro Carvalho Chehabc820cc42006-06-04 10:34:12 -03001267
1268MODULE_DESCRIPTION("Video Technology Magazine Virtual Video Capture Board");
1269MODULE_AUTHOR("Mauro Carvalho Chehab, Ted Walther and John Sokol");
1270MODULE_LICENSE("Dual BSD/GPL");
1271
1272module_param(video_nr, int, 0);
1273
1274module_param_named(debug,vivi.debug, int, 0644);
1275MODULE_PARM_DESC(debug,"activates debug info");
1276
1277module_param(vid_limit,int,0644);
1278MODULE_PARM_DESC(vid_limit,"capture memory limit in megabytes");
1279