2 * Zoran zr36057/zr36067 PCI controller driver, for the
3 * Pinnacle/Miro DC10/DC10+/DC30/DC30+, Iomega Buz, Linux
4 * Media Labs LML33/LML33R10.
6 * Copyright (C) 2000 Serguei Miridonov <mirsev@cicese.mx>
8 * Changes for BUZ by Wolfgang Scherr <scherr@net4you.net>
10 * Changes for DC10/DC30 by Laurent Pinchart <laurent.pinchart@skynet.be>
12 * Changes for LML33R10 by Maxim Yevtyushkin <max@linuxmedialabs.com>
14 * Changes for videodev2/v4l2 by Ronald Bultje <rbultje@ronald.bitfreak.net>
19 * Copyright (C) 1999 Wolfgang Scherr <scherr@net4you.net>
21 * Iomega Buz driver version 1.0
22 * Copyright (C) 1999 Rainer Johanni <Rainer@Johanni.de>
25 * Copyright (C) 1998 Dave Perks <dperks@ibm.net>
27 * bttv - Bt848 frame grabber driver
28 * Copyright (C) 1996,97,98 Ralph Metzler (rjkm@thp.uni-koeln.de)
29 * & Marcus Metzler (mocm@thp.uni-koeln.de)
32 * This program is free software; you can redistribute it and/or modify
33 * it under the terms of the GNU General Public License as published by
34 * the Free Software Foundation; either version 2 of the License, or
35 * (at your option) any later version.
37 * This program is distributed in the hope that it will be useful,
38 * but WITHOUT ANY WARRANTY; without even the implied warranty of
39 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
40 * GNU General Public License for more details.
42 * You should have received a copy of the GNU General Public License
43 * along with this program; if not, write to the Free Software
44 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
47 #include <linux/version.h>
48 #include <linux/init.h>
49 #include <linux/module.h>
50 #include <linux/delay.h>
51 #include <linux/slab.h>
52 #include <linux/pci.h>
53 #include <linux/vmalloc.h>
54 #include <linux/wait.h>
56 #include <linux/interrupt.h>
57 #include <linux/i2c.h>
58 #include <linux/i2c-algo-bit.h>
60 #include <linux/spinlock.h>
61 #define MAP_NR(x) virt_to_page(x)
62 #define ZORAN_VID_TYPE ( \
68 VID_TYPE_MJPEG_DECODER | \
69 VID_TYPE_MJPEG_ENCODER \
72 #include <linux/videodev.h>
73 #include <media/v4l2-common.h>
74 #include "videocodec.h"
76 #include <asm/byteorder.h>
78 #include <asm/uaccess.h>
79 #include <linux/proc_fs.h>
81 #include <linux/video_decoder.h>
82 #include <linux/video_encoder.h>
83 #include <linux/mutex.h>
85 #include "zoran_device.h"
86 #include "zoran_card.h"
88 /* we declare some card type definitions here, they mean
89 * the same as the v4l1 ZORAN_VID_TYPE above, except it's v4l2 */
90 #define ZORAN_V4L2_VID_FLAGS ( \
92 V4L2_CAP_VIDEO_CAPTURE |\
93 V4L2_CAP_VIDEO_OUTPUT |\
94 V4L2_CAP_VIDEO_OVERLAY \
97 #include <asm/byteorder.h>
99 #if defined(CONFIG_VIDEO_V4L1_COMPAT)
100 #define ZFMT(pal, fcc, cs) \
101 .palette = (pal), .fourcc = (fcc), .colorspace = (cs)
103 #define ZFMT(pal, fcc, cs) \
104 .fourcc = (fcc), .colorspace = (cs)
107 const struct zoran_format zoran_formats[] = {
109 .name = "15-bit RGB LE",
110 ZFMT(VIDEO_PALETTE_RGB555,
111 V4L2_PIX_FMT_RGB555, V4L2_COLORSPACE_SRGB),
113 .flags = ZORAN_FORMAT_CAPTURE |
114 ZORAN_FORMAT_OVERLAY,
115 .vfespfr = ZR36057_VFESPFR_RGB555|ZR36057_VFESPFR_ErrDif|
116 ZR36057_VFESPFR_LittleEndian,
118 .name = "15-bit RGB BE",
120 V4L2_PIX_FMT_RGB555X, V4L2_COLORSPACE_SRGB),
122 .flags = ZORAN_FORMAT_CAPTURE |
123 ZORAN_FORMAT_OVERLAY,
124 .vfespfr = ZR36057_VFESPFR_RGB555|ZR36057_VFESPFR_ErrDif,
126 .name = "16-bit RGB LE",
127 ZFMT(VIDEO_PALETTE_RGB565,
128 V4L2_PIX_FMT_RGB565, V4L2_COLORSPACE_SRGB),
130 .flags = ZORAN_FORMAT_CAPTURE |
131 ZORAN_FORMAT_OVERLAY,
132 .vfespfr = ZR36057_VFESPFR_RGB565|ZR36057_VFESPFR_ErrDif|
133 ZR36057_VFESPFR_LittleEndian,
135 .name = "16-bit RGB BE",
137 V4L2_PIX_FMT_RGB565, V4L2_COLORSPACE_SRGB),
139 .flags = ZORAN_FORMAT_CAPTURE |
140 ZORAN_FORMAT_OVERLAY,
141 .vfespfr = ZR36057_VFESPFR_RGB565|ZR36057_VFESPFR_ErrDif,
143 .name = "24-bit RGB",
144 ZFMT(VIDEO_PALETTE_RGB24,
145 V4L2_PIX_FMT_BGR24, V4L2_COLORSPACE_SRGB),
147 .flags = ZORAN_FORMAT_CAPTURE |
148 ZORAN_FORMAT_OVERLAY,
149 .vfespfr = ZR36057_VFESPFR_RGB888|ZR36057_VFESPFR_Pack24,
151 .name = "32-bit RGB LE",
152 ZFMT(VIDEO_PALETTE_RGB32,
153 V4L2_PIX_FMT_BGR32, V4L2_COLORSPACE_SRGB),
155 .flags = ZORAN_FORMAT_CAPTURE |
156 ZORAN_FORMAT_OVERLAY,
157 .vfespfr = ZR36057_VFESPFR_RGB888|ZR36057_VFESPFR_LittleEndian,
159 .name = "32-bit RGB BE",
161 V4L2_PIX_FMT_RGB32, V4L2_COLORSPACE_SRGB),
163 .flags = ZORAN_FORMAT_CAPTURE |
164 ZORAN_FORMAT_OVERLAY,
165 .vfespfr = ZR36057_VFESPFR_RGB888,
167 .name = "4:2:2, packed, YUYV",
168 ZFMT(VIDEO_PALETTE_YUV422,
169 V4L2_PIX_FMT_YUYV, V4L2_COLORSPACE_SMPTE170M),
171 .flags = ZORAN_FORMAT_CAPTURE |
172 ZORAN_FORMAT_OVERLAY,
173 .vfespfr = ZR36057_VFESPFR_YUV422,
175 .name = "4:2:2, packed, UYVY",
176 ZFMT(VIDEO_PALETTE_UYVY,
177 V4L2_PIX_FMT_UYVY, V4L2_COLORSPACE_SMPTE170M),
179 .flags = ZORAN_FORMAT_CAPTURE |
180 ZORAN_FORMAT_OVERLAY,
181 .vfespfr = ZR36057_VFESPFR_YUV422|ZR36057_VFESPFR_LittleEndian,
183 .name = "Hardware-encoded Motion-JPEG",
185 V4L2_PIX_FMT_MJPEG, V4L2_COLORSPACE_SMPTE170M),
187 .flags = ZORAN_FORMAT_CAPTURE |
188 ZORAN_FORMAT_PLAYBACK |
189 ZORAN_FORMAT_COMPRESSED,
192 #define NUM_FORMATS ARRAY_SIZE(zoran_formats)
194 // RJ: Test only - want to test BUZ_USE_HIMEM even when CONFIG_BIGPHYS_AREA is defined
197 extern int v4l_nbufs;
198 extern int v4l_bufsize;
199 extern int jpg_nbufs;
200 extern int jpg_bufsize;
201 extern int pass_through;
203 static int lock_norm; /* 0 = default 1 = Don't change TV standard (norm) */
204 module_param(lock_norm, int, 0644);
205 MODULE_PARM_DESC(lock_norm, "Prevent norm changes (1 = ignore, >1 = fail)");
207 /* small helper function for calculating buffersizes for v4l2
208 * we calculate the nearest higher power-of-two, which
209 * will be the recommended buffersize */
211 zoran_v4l2_calc_bufsize (struct zoran_jpg_settings *settings)
213 __u8 div = settings->VerDcm * settings->HorDcm * settings->TmpDcm;
214 __u32 num = (1024 * 512) / (div);
223 if (result > jpg_bufsize)
230 /* forward references */
231 static void v4l_fbuffer_free(struct file *file);
232 static void jpg_fbuffer_free(struct file *file);
235 * Allocate the V4L grab buffers
237 * These have to be pysically contiguous.
238 * If v4l_bufsize <= MAX_KMALLOC_MEM we use kmalloc
239 * else we try to allocate them with bigphysarea_alloc_pages
240 * if the bigphysarea patch is present in the kernel,
241 * else we try to use high memory (if the user has bootet
242 * Linux with the necessary memory left over).
246 get_high_mem (unsigned long size)
249 * Check if there is usable memory at the end of Linux memory
250 * of at least size. Return the physical address of this memory,
251 * return 0 on failure.
253 * The idea is from Alexandro Rubini's book "Linux device drivers".
254 * The driver from him which is downloadable from O'Reilly's
255 * web site misses the "virt_to_phys(high_memory)" part
256 * (and therefore doesn't work at all - at least with 2.2.x kernels).
258 * It should be unnecessary to mention that THIS IS DANGEROUS,
259 * if more than one driver at a time has the idea to use this memory!!!!
262 volatile unsigned char __iomem *mem;
264 unsigned long hi_mem_ph;
267 /* Map the high memory to user space */
269 hi_mem_ph = virt_to_phys(high_memory);
271 mem = ioremap(hi_mem_ph, size);
274 KERN_ERR "%s: get_high_mem() - ioremap failed\n",
279 for (i = 0; i < size; i++) {
280 /* Check if it is memory */
283 if (readb(mem + i) != c)
287 if (readb(mem + i) != c)
289 writeb(0, mem + i); /* zero out memory */
291 /* give the kernel air to breath */
292 if ((i & 0x3ffff) == 0x3ffff)
301 "%s: get_high_mem() - requested %lu, avail %lu\n",
302 ZORAN_NAME, size, i);
310 v4l_fbuffer_alloc (struct file *file)
312 struct zoran_fh *fh = file->private_data;
313 struct zoran *zr = fh->zr;
316 unsigned long pmem = 0;
318 /* we might have old buffers lying around... */
319 if (fh->v4l_buffers.ready_to_be_freed) {
320 v4l_fbuffer_free(file);
323 for (i = 0; i < fh->v4l_buffers.num_buffers; i++) {
324 if (fh->v4l_buffers.buffer[i].fbuffer)
327 "%s: v4l_fbuffer_alloc() - buffer %d allready allocated!?\n",
331 if (fh->v4l_buffers.buffer_size <= MAX_KMALLOC_MEM) {
334 mem = kmalloc(fh->v4l_buffers.buffer_size, GFP_KERNEL);
338 "%s: v4l_fbuffer_alloc() - kmalloc for V4L buf %d failed\n",
340 v4l_fbuffer_free(file);
343 fh->v4l_buffers.buffer[i].fbuffer = mem;
344 fh->v4l_buffers.buffer[i].fbuffer_phys =
346 fh->v4l_buffers.buffer[i].fbuffer_bus =
348 for (off = 0; off < fh->v4l_buffers.buffer_size;
350 SetPageReserved(MAP_NR(mem + off));
353 "%s: v4l_fbuffer_alloc() - V4L frame %d mem 0x%lx (bus: 0x%lx)\n",
354 ZR_DEVNAME(zr), i, (unsigned long) mem,
358 /* Use high memory which has been left at boot time */
360 /* Ok., Ok. this is an evil hack - we make
361 * the assumption that physical addresses are
362 * the same as bus addresses (true at least
363 * for Intel processors). The whole method of
364 * obtaining and using this memory is not very
365 * nice - but I hope it saves some poor users
366 * from kernel hacking, which might have even
367 * more evil results */
371 fh->v4l_buffers.num_buffers *
372 fh->v4l_buffers.buffer_size;
374 pmem = get_high_mem(size);
378 "%s: v4l_fbuffer_alloc() - get_high_mem (size = %d KB) for V4L bufs failed\n",
379 ZR_DEVNAME(zr), size >> 10);
382 fh->v4l_buffers.buffer[0].fbuffer = NULL;
383 fh->v4l_buffers.buffer[0].fbuffer_phys = pmem;
384 fh->v4l_buffers.buffer[0].fbuffer_bus = pmem;
387 "%s: v4l_fbuffer_alloc() - using %d KB high memory\n",
388 ZR_DEVNAME(zr), size >> 10);
390 fh->v4l_buffers.buffer[i].fbuffer = NULL;
391 fh->v4l_buffers.buffer[i].fbuffer_phys =
392 pmem + i * fh->v4l_buffers.buffer_size;
393 fh->v4l_buffers.buffer[i].fbuffer_bus =
394 pmem + i * fh->v4l_buffers.buffer_size;
399 fh->v4l_buffers.allocated = 1;
404 /* free the V4L grab buffers */
406 v4l_fbuffer_free (struct file *file)
408 struct zoran_fh *fh = file->private_data;
409 struct zoran *zr = fh->zr;
413 dprintk(4, KERN_INFO "%s: v4l_fbuffer_free()\n", ZR_DEVNAME(zr));
415 for (i = 0; i < fh->v4l_buffers.num_buffers; i++) {
416 if (!fh->v4l_buffers.buffer[i].fbuffer)
419 if (fh->v4l_buffers.buffer_size <= MAX_KMALLOC_MEM) {
420 mem = fh->v4l_buffers.buffer[i].fbuffer;
421 for (off = 0; off < fh->v4l_buffers.buffer_size;
423 ClearPageReserved(MAP_NR(mem + off));
424 kfree((void *) fh->v4l_buffers.buffer[i].fbuffer);
426 fh->v4l_buffers.buffer[i].fbuffer = NULL;
429 fh->v4l_buffers.allocated = 0;
430 fh->v4l_buffers.ready_to_be_freed = 0;
434 * Allocate the MJPEG grab buffers.
436 * If the requested buffer size is smaller than MAX_KMALLOC_MEM,
437 * kmalloc is used to request a physically contiguous area,
438 * else we allocate the memory in framgents with get_zeroed_page.
440 * If a Natoma chipset is present and this is a revision 1 zr36057,
441 * each MJPEG buffer needs to be physically contiguous.
442 * (RJ: This statement is from Dave Perks' original driver,
443 * I could never check it because I have a zr36067)
444 * The driver cares about this because it reduces the buffer
445 * size to MAX_KMALLOC_MEM in that case (which forces contiguous allocation).
447 * RJ: The contents grab buffers needs never be accessed in the driver.
448 * Therefore there is no need to allocate them with vmalloc in order
449 * to get a contiguous virtual memory space.
450 * I don't understand why many other drivers first allocate them with
451 * vmalloc (which uses internally also get_zeroed_page, but delivers you
452 * virtual addresses) and then again have to make a lot of efforts
453 * to get the physical address.
456 * On big-endian architectures (such as ppc) some extra steps
457 * are needed. When reading and writing to the stat_com array
458 * and fragment buffers, the device expects to see little-
459 * endian values. The use of cpu_to_le32() and le32_to_cpu()
460 * in this function (and one or two others in zoran_device.c)
461 * ensure that these values are always stored in little-endian
462 * form, regardless of architecture. The zr36057 does Very Bad
463 * Things on big endian architectures if the stat_com array
464 * and fragment buffers are not little-endian.
468 jpg_fbuffer_alloc (struct file *file)
470 struct zoran_fh *fh = file->private_data;
471 struct zoran *zr = fh->zr;
475 /* we might have old buffers lying around */
476 if (fh->jpg_buffers.ready_to_be_freed) {
477 jpg_fbuffer_free(file);
480 for (i = 0; i < fh->jpg_buffers.num_buffers; i++) {
481 if (fh->jpg_buffers.buffer[i].frag_tab)
484 "%s: jpg_fbuffer_alloc() - buffer %d allready allocated!?\n",
487 /* Allocate fragment table for this buffer */
489 mem = get_zeroed_page(GFP_KERNEL);
493 "%s: jpg_fbuffer_alloc() - get_zeroed_page (frag_tab) failed for buffer %d\n",
495 jpg_fbuffer_free(file);
498 fh->jpg_buffers.buffer[i].frag_tab = (__le32 *) mem;
499 fh->jpg_buffers.buffer[i].frag_tab_bus =
500 virt_to_bus((void *) mem);
502 //if (alloc_contig) {
503 if (fh->jpg_buffers.need_contiguous) {
505 (unsigned long) kmalloc(fh->jpg_buffers.
511 "%s: jpg_fbuffer_alloc() - kmalloc failed for buffer %d\n",
513 jpg_fbuffer_free(file);
516 fh->jpg_buffers.buffer[i].frag_tab[0] =
517 cpu_to_le32(virt_to_bus((void *) mem));
518 fh->jpg_buffers.buffer[i].frag_tab[1] =
519 cpu_to_le32(((fh->jpg_buffers.buffer_size / 4) << 1) | 1);
520 for (off = 0; off < fh->jpg_buffers.buffer_size;
522 SetPageReserved(MAP_NR(mem + off));
524 /* jpg_bufsize is allreay page aligned */
526 j < fh->jpg_buffers.buffer_size / PAGE_SIZE;
528 mem = get_zeroed_page(GFP_KERNEL);
532 "%s: jpg_fbuffer_alloc() - get_zeroed_page failed for buffer %d\n",
534 jpg_fbuffer_free(file);
538 fh->jpg_buffers.buffer[i].frag_tab[2 * j] =
539 cpu_to_le32(virt_to_bus((void *) mem));
540 fh->jpg_buffers.buffer[i].frag_tab[2 * j +
542 cpu_to_le32((PAGE_SIZE / 4) << 1);
543 SetPageReserved(MAP_NR(mem));
546 fh->jpg_buffers.buffer[i].frag_tab[2 * j - 1] |= cpu_to_le32(1);
551 KERN_DEBUG "%s: jpg_fbuffer_alloc() - %d KB allocated\n",
553 (fh->jpg_buffers.num_buffers *
554 fh->jpg_buffers.buffer_size) >> 10);
556 fh->jpg_buffers.allocated = 1;
561 /* free the MJPEG grab buffers */
563 jpg_fbuffer_free (struct file *file)
565 struct zoran_fh *fh = file->private_data;
566 struct zoran *zr = fh->zr;
570 dprintk(4, KERN_DEBUG "%s: jpg_fbuffer_free()\n", ZR_DEVNAME(zr));
572 for (i = 0; i < fh->jpg_buffers.num_buffers; i++) {
573 if (!fh->jpg_buffers.buffer[i].frag_tab)
576 //if (alloc_contig) {
577 if (fh->jpg_buffers.need_contiguous) {
578 if (fh->jpg_buffers.buffer[i].frag_tab[0]) {
579 mem = (unsigned char *) bus_to_virt(le32_to_cpu(
580 fh->jpg_buffers.buffer[i].frag_tab[0]));
582 off < fh->jpg_buffers.buffer_size;
584 ClearPageReserved(MAP_NR
587 fh->jpg_buffers.buffer[i].frag_tab[0] = 0;
588 fh->jpg_buffers.buffer[i].frag_tab[1] = 0;
592 j < fh->jpg_buffers.buffer_size / PAGE_SIZE;
594 if (!fh->jpg_buffers.buffer[i].
597 ClearPageReserved(MAP_NR
601 buffer[i].frag_tab[2 *
603 free_page((unsigned long)
609 fh->jpg_buffers.buffer[i].frag_tab[2 * j] =
611 fh->jpg_buffers.buffer[i].frag_tab[2 * j +
616 free_page((unsigned long) fh->jpg_buffers.buffer[i].
618 fh->jpg_buffers.buffer[i].frag_tab = NULL;
621 fh->jpg_buffers.allocated = 0;
622 fh->jpg_buffers.ready_to_be_freed = 0;
626 * V4L Buffer grabbing
630 zoran_v4l_set_format (struct file *file,
633 const struct zoran_format *format)
635 struct zoran_fh *fh = file->private_data;
636 struct zoran *zr = fh->zr;
639 /* Check size and format of the grab wanted */
641 if (height < BUZ_MIN_HEIGHT || width < BUZ_MIN_WIDTH ||
642 height > BUZ_MAX_HEIGHT || width > BUZ_MAX_WIDTH) {
645 "%s: v4l_set_format() - wrong frame size (%dx%d)\n",
646 ZR_DEVNAME(zr), width, height);
650 bpp = (format->depth + 7) / 8;
652 /* Check against available buffer size */
653 if (height * width * bpp > fh->v4l_buffers.buffer_size) {
656 "%s: v4l_set_format() - video buffer size (%d kB) is too small\n",
657 ZR_DEVNAME(zr), fh->v4l_buffers.buffer_size >> 10);
661 /* The video front end needs 4-byte alinged line sizes */
663 if ((bpp == 2 && (width & 1)) || (bpp == 3 && (width & 3))) {
666 "%s: v4l_set_format() - wrong frame alingment\n",
671 fh->v4l_settings.width = width;
672 fh->v4l_settings.height = height;
673 fh->v4l_settings.format = format;
674 fh->v4l_settings.bytesperline = bpp * fh->v4l_settings.width;
680 zoran_v4l_queue_frame (struct file *file,
683 struct zoran_fh *fh = file->private_data;
684 struct zoran *zr = fh->zr;
688 if (!fh->v4l_buffers.allocated) {
691 "%s: v4l_queue_frame() - buffers not yet allocated\n",
696 /* No grabbing outside the buffer range! */
697 if (num >= fh->v4l_buffers.num_buffers || num < 0) {
700 "%s: v4l_queue_frame() - buffer %d is out of range\n",
701 ZR_DEVNAME(zr), num);
705 spin_lock_irqsave(&zr->spinlock, flags);
707 if (fh->v4l_buffers.active == ZORAN_FREE) {
708 if (zr->v4l_buffers.active == ZORAN_FREE) {
709 zr->v4l_buffers = fh->v4l_buffers;
710 fh->v4l_buffers.active = ZORAN_ACTIVE;
714 "%s: v4l_queue_frame() - another session is already capturing\n",
720 /* make sure a grab isn't going on currently with this buffer */
722 switch (zr->v4l_buffers.buffer[num].state) {
725 if (zr->v4l_buffers.active == ZORAN_FREE) {
726 fh->v4l_buffers.active = ZORAN_FREE;
727 zr->v4l_buffers.allocated = 0;
729 res = -EBUSY; /* what are you doing? */
734 "%s: v4l_queue_frame() - queueing buffer %d in state DONE!?\n",
735 ZR_DEVNAME(zr), num);
737 /* since there is at least one unused buffer there's room for at least
738 * one more pend[] entry */
739 zr->v4l_pend[zr->v4l_pend_head++ &
740 V4L_MASK_FRAME] = num;
741 zr->v4l_buffers.buffer[num].state = BUZ_STATE_PEND;
742 zr->v4l_buffers.buffer[num].bs.length =
743 fh->v4l_settings.bytesperline *
744 zr->v4l_settings.height;
745 fh->v4l_buffers.buffer[num] =
746 zr->v4l_buffers.buffer[num];
751 spin_unlock_irqrestore(&zr->spinlock, flags);
753 if (!res && zr->v4l_buffers.active == ZORAN_FREE)
754 zr->v4l_buffers.active = fh->v4l_buffers.active;
760 v4l_grab (struct file *file,
761 struct video_mmap *mp)
763 struct zoran_fh *fh = file->private_data;
764 struct zoran *zr = fh->zr;
767 for (i = 0; i < NUM_FORMATS; i++) {
768 if (zoran_formats[i].palette == mp->format &&
769 zoran_formats[i].flags & ZORAN_FORMAT_CAPTURE &&
770 !(zoran_formats[i].flags & ZORAN_FORMAT_COMPRESSED))
773 if (i == NUM_FORMATS || zoran_formats[i].depth == 0) {
776 "%s: v4l_grab() - wrong bytes-per-pixel format\n",
782 * To minimize the time spent in the IRQ routine, we avoid setting up
783 * the video front end there.
784 * If this grab has different parameters from a running streaming capture
785 * we stop the streaming capture and start it over again.
787 if (zr->v4l_memgrab_active &&
788 (zr->v4l_settings.width != mp->width ||
789 zr->v4l_settings.height != mp->height ||
790 zr->v4l_settings.format->palette != mp->format)) {
791 res = wait_grab_pending(zr);
795 if ((res = zoran_v4l_set_format(file,
800 zr->v4l_settings = fh->v4l_settings;
802 /* queue the frame in the pending queue */
803 if ((res = zoran_v4l_queue_frame(file, mp->frame))) {
804 fh->v4l_buffers.active = ZORAN_FREE;
808 /* put the 36057 into frame grabbing mode */
809 if (!res && !zr->v4l_memgrab_active)
810 zr36057_set_memgrab(zr, 1);
812 //dprintk(4, KERN_INFO "%s: Frame grab 3...\n", ZR_DEVNAME(zr));
818 * Sync on a V4L buffer
822 v4l_sync (struct file *file,
825 struct zoran_fh *fh = file->private_data;
826 struct zoran *zr = fh->zr;
829 if (fh->v4l_buffers.active == ZORAN_FREE) {
832 "%s: v4l_sync() - no grab active for this session\n",
837 /* check passed-in frame number */
838 if (frame >= fh->v4l_buffers.num_buffers || frame < 0) {
840 KERN_ERR "%s: v4l_sync() - frame %d is invalid\n",
841 ZR_DEVNAME(zr), frame);
845 /* Check if is buffer was queued at all */
846 if (zr->v4l_buffers.buffer[frame].state == BUZ_STATE_USER) {
849 "%s: v4l_sync() - attempt to sync on a buffer which was not queued?\n",
854 /* wait on this buffer to get ready */
855 if (!wait_event_interruptible_timeout(zr->v4l_capq,
856 (zr->v4l_buffers.buffer[frame].state != BUZ_STATE_PEND),
859 if (signal_pending(current))
862 /* buffer should now be in BUZ_STATE_DONE */
863 if (zr->v4l_buffers.buffer[frame].state != BUZ_STATE_DONE)
865 KERN_ERR "%s: v4l_sync() - internal state error\n",
868 zr->v4l_buffers.buffer[frame].state = BUZ_STATE_USER;
869 fh->v4l_buffers.buffer[frame] = zr->v4l_buffers.buffer[frame];
871 spin_lock_irqsave(&zr->spinlock, flags);
873 /* Check if streaming capture has finished */
874 if (zr->v4l_pend_tail == zr->v4l_pend_head) {
875 zr36057_set_memgrab(zr, 0);
876 if (zr->v4l_buffers.active == ZORAN_ACTIVE) {
877 fh->v4l_buffers.active = zr->v4l_buffers.active =
879 zr->v4l_buffers.allocated = 0;
883 spin_unlock_irqrestore(&zr->spinlock, flags);
889 * Queue a MJPEG buffer for capture/playback
893 zoran_jpg_queue_frame (struct file *file,
895 enum zoran_codec_mode mode)
897 struct zoran_fh *fh = file->private_data;
898 struct zoran *zr = fh->zr;
902 /* Check if buffers are allocated */
903 if (!fh->jpg_buffers.allocated) {
906 "%s: jpg_queue_frame() - buffers not yet allocated\n",
911 /* No grabbing outside the buffer range! */
912 if (num >= fh->jpg_buffers.num_buffers || num < 0) {
915 "%s: jpg_queue_frame() - buffer %d out of range\n",
916 ZR_DEVNAME(zr), num);
920 /* what is the codec mode right now? */
921 if (zr->codec_mode == BUZ_MODE_IDLE) {
922 zr->jpg_settings = fh->jpg_settings;
923 } else if (zr->codec_mode != mode) {
924 /* wrong codec mode active - invalid */
927 "%s: jpg_queue_frame() - codec in wrong mode\n",
932 if (fh->jpg_buffers.active == ZORAN_FREE) {
933 if (zr->jpg_buffers.active == ZORAN_FREE) {
934 zr->jpg_buffers = fh->jpg_buffers;
935 fh->jpg_buffers.active = ZORAN_ACTIVE;
939 "%s: jpg_queue_frame() - another session is already capturing\n",
945 if (!res && zr->codec_mode == BUZ_MODE_IDLE) {
946 /* Ok load up the jpeg codec */
947 zr36057_enable_jpg(zr, mode);
950 spin_lock_irqsave(&zr->spinlock, flags);
953 switch (zr->jpg_buffers.buffer[num].state) {
957 "%s: jpg_queue_frame() - queing frame in BUZ_STATE_DONE state!?\n",
960 /* since there is at least one unused buffer there's room for at
961 *least one more pend[] entry */
962 zr->jpg_pend[zr->jpg_que_head++ & BUZ_MASK_FRAME] =
964 zr->jpg_buffers.buffer[num].state = BUZ_STATE_PEND;
965 fh->jpg_buffers.buffer[num] =
966 zr->jpg_buffers.buffer[num];
967 zoran_feed_stat_com(zr);
972 if (zr->jpg_buffers.active == ZORAN_FREE) {
973 fh->jpg_buffers.active = ZORAN_FREE;
974 zr->jpg_buffers.allocated = 0;
976 res = -EBUSY; /* what are you doing? */
981 spin_unlock_irqrestore(&zr->spinlock, flags);
983 if (!res && zr->jpg_buffers.active == ZORAN_FREE) {
984 zr->jpg_buffers.active = fh->jpg_buffers.active;
991 jpg_qbuf (struct file *file,
993 enum zoran_codec_mode mode)
995 struct zoran_fh *fh = file->private_data;
996 struct zoran *zr = fh->zr;
999 /* Does the user want to stop streaming? */
1001 if (zr->codec_mode == mode) {
1002 if (fh->jpg_buffers.active == ZORAN_FREE) {
1005 "%s: jpg_qbuf(-1) - session not active\n",
1009 fh->jpg_buffers.active = zr->jpg_buffers.active =
1011 zr->jpg_buffers.allocated = 0;
1012 zr36057_enable_jpg(zr, BUZ_MODE_IDLE);
1017 "%s: jpg_qbuf() - stop streaming but not in streaming mode\n",
1023 if ((res = zoran_jpg_queue_frame(file, frame, mode)))
1026 /* Start the jpeg codec when the first frame is queued */
1027 if (!res && zr->jpg_que_head == 1)
1034 * Sync on a MJPEG buffer
1038 jpg_sync (struct file *file,
1039 struct zoran_sync *bs)
1041 struct zoran_fh *fh = file->private_data;
1042 struct zoran *zr = fh->zr;
1043 unsigned long flags;
1046 if (fh->jpg_buffers.active == ZORAN_FREE) {
1049 "%s: jpg_sync() - capture is not currently active\n",
1053 if (zr->codec_mode != BUZ_MODE_MOTION_DECOMPRESS &&
1054 zr->codec_mode != BUZ_MODE_MOTION_COMPRESS) {
1057 "%s: jpg_sync() - codec not in streaming mode\n",
1061 if (!wait_event_interruptible_timeout(zr->jpg_capq,
1062 (zr->jpg_que_tail != zr->jpg_dma_tail ||
1063 zr->jpg_dma_tail == zr->jpg_dma_head),
1067 btand(~ZR36057_JMC_Go_en, ZR36057_JMC);
1069 zr->codec->control(zr->codec, CODEC_G_STATUS,
1073 "%s: jpg_sync() - timeout: codec isr=0x%02x\n",
1074 ZR_DEVNAME(zr), isr);
1079 if (signal_pending(current))
1080 return -ERESTARTSYS;
1082 spin_lock_irqsave(&zr->spinlock, flags);
1084 if (zr->jpg_dma_tail != zr->jpg_dma_head)
1085 frame = zr->jpg_pend[zr->jpg_que_tail++ & BUZ_MASK_FRAME];
1087 frame = zr->jpg_pend[zr->jpg_que_tail & BUZ_MASK_FRAME];
1089 /* buffer should now be in BUZ_STATE_DONE */
1090 if (zr->jpg_buffers.buffer[frame].state != BUZ_STATE_DONE)
1092 KERN_ERR "%s: jpg_sync() - internal state error\n",
1095 *bs = zr->jpg_buffers.buffer[frame].bs;
1097 zr->jpg_buffers.buffer[frame].state = BUZ_STATE_USER;
1098 fh->jpg_buffers.buffer[frame] = zr->jpg_buffers.buffer[frame];
1100 spin_unlock_irqrestore(&zr->spinlock, flags);
1106 zoran_open_init_session (struct file *file)
1109 struct zoran_fh *fh = file->private_data;
1110 struct zoran *zr = fh->zr;
1112 /* Per default, map the V4L Buffers */
1113 fh->map_mode = ZORAN_MAP_MODE_RAW;
1115 /* take over the card's current settings */
1116 fh->overlay_settings = zr->overlay_settings;
1117 fh->overlay_settings.is_set = 0;
1118 fh->overlay_settings.format = zr->overlay_settings.format;
1119 fh->overlay_active = ZORAN_FREE;
1122 fh->v4l_settings = zr->v4l_settings;
1125 memset(&fh->v4l_buffers, 0, sizeof(struct zoran_v4l_struct));
1126 for (i = 0; i < VIDEO_MAX_FRAME; i++) {
1127 fh->v4l_buffers.buffer[i].state = BUZ_STATE_USER; /* nothing going on */
1128 fh->v4l_buffers.buffer[i].bs.frame = i;
1130 fh->v4l_buffers.allocated = 0;
1131 fh->v4l_buffers.ready_to_be_freed = 0;
1132 fh->v4l_buffers.active = ZORAN_FREE;
1133 fh->v4l_buffers.buffer_size = v4l_bufsize;
1134 fh->v4l_buffers.num_buffers = v4l_nbufs;
1137 fh->jpg_settings = zr->jpg_settings;
1140 memset(&fh->jpg_buffers, 0, sizeof(struct zoran_jpg_struct));
1141 for (i = 0; i < BUZ_MAX_FRAME; i++) {
1142 fh->jpg_buffers.buffer[i].state = BUZ_STATE_USER; /* nothing going on */
1143 fh->jpg_buffers.buffer[i].bs.frame = i;
1145 fh->jpg_buffers.need_contiguous = zr->jpg_buffers.need_contiguous;
1146 fh->jpg_buffers.allocated = 0;
1147 fh->jpg_buffers.ready_to_be_freed = 0;
1148 fh->jpg_buffers.active = ZORAN_FREE;
1149 fh->jpg_buffers.buffer_size = jpg_bufsize;
1150 fh->jpg_buffers.num_buffers = jpg_nbufs;
1154 zoran_close_end_session (struct file *file)
1156 struct zoran_fh *fh = file->private_data;
1157 struct zoran *zr = fh->zr;
1160 if (fh->overlay_active != ZORAN_FREE) {
1161 fh->overlay_active = zr->overlay_active = ZORAN_FREE;
1162 zr->v4l_overlay_active = 0;
1163 if (!zr->v4l_memgrab_active)
1164 zr36057_overlay(zr, 0);
1165 zr->overlay_mask = NULL;
1169 if (fh->v4l_buffers.active != ZORAN_FREE) {
1170 unsigned long flags;
1172 spin_lock_irqsave(&zr->spinlock, flags);
1173 zr36057_set_memgrab(zr, 0);
1174 zr->v4l_buffers.allocated = 0;
1175 zr->v4l_buffers.active = fh->v4l_buffers.active =
1177 spin_unlock_irqrestore(&zr->spinlock, flags);
1181 if (fh->v4l_buffers.allocated ||
1182 fh->v4l_buffers.ready_to_be_freed) {
1183 v4l_fbuffer_free(file);
1187 if (fh->jpg_buffers.active != ZORAN_FREE) {
1188 zr36057_enable_jpg(zr, BUZ_MODE_IDLE);
1189 zr->jpg_buffers.allocated = 0;
1190 zr->jpg_buffers.active = fh->jpg_buffers.active =
1195 if (fh->jpg_buffers.allocated ||
1196 fh->jpg_buffers.ready_to_be_freed) {
1197 jpg_fbuffer_free(file);
1202 * Open a zoran card. Right now the flags stuff is just playing
1206 zoran_open (struct inode *inode,
1209 unsigned int minor = iminor(inode);
1210 struct zoran *zr = NULL;
1211 struct zoran_fh *fh;
1212 int i, res, first_open = 0, have_module_locks = 0;
1214 /* find the device */
1215 for (i = 0; i < zoran_num; i++) {
1216 if (zoran[i].video_dev->minor == minor) {
1223 dprintk(1, KERN_ERR "%s: device not found!\n", ZORAN_NAME);
1225 goto open_unlock_and_return;
1228 /* see fs/device.c - the kernel already locks during open(),
1229 * so locking ourselves only causes deadlocks */
1230 /*mutex_lock(&zr->resource_lock);*/
1234 KERN_ERR "%s: no TV decoder loaded for device!\n",
1237 goto open_unlock_and_return;
1240 /* try to grab a module lock */
1241 if (!try_module_get(THIS_MODULE)) {
1244 "%s: failed to acquire my own lock! PANIC!\n",
1247 goto open_unlock_and_return;
1249 if (!try_module_get(zr->decoder->driver->driver.owner)) {
1252 "%s: failed to grab ownership of i2c decoder\n",
1255 module_put(THIS_MODULE);
1256 goto open_unlock_and_return;
1259 !try_module_get(zr->encoder->driver->driver.owner)) {
1262 "%s: failed to grab ownership of i2c encoder\n",
1265 module_put(zr->decoder->driver->driver.owner);
1266 module_put(THIS_MODULE);
1267 goto open_unlock_and_return;
1270 have_module_locks = 1;
1272 if (zr->user >= 2048) {
1273 dprintk(1, KERN_ERR "%s: too many users (%d) on device\n",
1274 ZR_DEVNAME(zr), zr->user);
1276 goto open_unlock_and_return;
1279 dprintk(1, KERN_INFO "%s: zoran_open(%s, pid=[%d]), users(-)=%d\n",
1280 ZR_DEVNAME(zr), current->comm, task_pid_nr(current), zr->user);
1282 /* now, create the open()-specific file_ops struct */
1283 fh = kzalloc(sizeof(struct zoran_fh), GFP_KERNEL);
1287 "%s: zoran_open() - allocation of zoran_fh failed\n",
1290 goto open_unlock_and_return;
1292 /* used to be BUZ_MAX_WIDTH/HEIGHT, but that gives overflows
1293 * on norm-change! */
1295 kmalloc(((768 + 31) / 32) * 576 * 4, GFP_KERNEL);
1296 if (!fh->overlay_mask) {
1299 "%s: zoran_open() - allocation of overlay_mask failed\n",
1303 goto open_unlock_and_return;
1306 if (zr->user++ == 0)
1309 /*mutex_unlock(&zr->resource_lock);*/
1311 /* default setup - TODO: look at flags */
1312 if (first_open) { /* First device open */
1313 zr36057_restart(zr);
1314 zoran_open_init_params(zr);
1315 zoran_init_hardware(zr);
1317 btor(ZR36057_ICR_IntPinEn, ZR36057_ICR);
1320 /* set file_ops stuff */
1321 file->private_data = fh;
1323 zoran_open_init_session(file);
1327 open_unlock_and_return:
1328 /* if we grabbed locks, release them accordingly */
1329 if (have_module_locks) {
1330 module_put(zr->decoder->driver->driver.owner);
1332 module_put(zr->encoder->driver->driver.owner);
1334 module_put(THIS_MODULE);
1337 /* if there's no device found, we didn't obtain the lock either */
1339 /*mutex_unlock(&zr->resource_lock);*/
1346 zoran_close (struct inode *inode,
1349 struct zoran_fh *fh = file->private_data;
1350 struct zoran *zr = fh->zr;
1352 dprintk(1, KERN_INFO "%s: zoran_close(%s, pid=[%d]), users(+)=%d\n",
1353 ZR_DEVNAME(zr), current->comm, task_pid_nr(current), zr->user);
1355 /* kernel locks (fs/device.c), so don't do that ourselves
1356 * (prevents deadlocks) */
1357 /*mutex_lock(&zr->resource_lock);*/
1359 zoran_close_end_session(file);
1361 if (zr->user-- == 1) { /* Last process */
1362 /* Clean up JPEG process */
1363 wake_up_interruptible(&zr->jpg_capq);
1364 zr36057_enable_jpg(zr, BUZ_MODE_IDLE);
1365 zr->jpg_buffers.allocated = 0;
1366 zr->jpg_buffers.active = ZORAN_FREE;
1368 /* disable interrupts */
1369 btand(~ZR36057_ICR_IntPinEn, ZR36057_ICR);
1371 if (zr36067_debug > 1)
1372 print_interrupts(zr);
1375 zr->v4l_overlay_active = 0;
1376 zr36057_overlay(zr, 0);
1377 zr->overlay_mask = NULL;
1380 wake_up_interruptible(&zr->v4l_capq);
1381 zr36057_set_memgrab(zr, 0);
1382 zr->v4l_buffers.allocated = 0;
1383 zr->v4l_buffers.active = ZORAN_FREE;
1384 zoran_set_pci_master(zr, 0);
1386 if (!pass_through) { /* Switch to color bar */
1387 int zero = 0, two = 2;
1388 decoder_command(zr, DECODER_ENABLE_OUTPUT, &zero);
1389 encoder_command(zr, ENCODER_SET_INPUT, &two);
1393 file->private_data = NULL;
1394 kfree(fh->overlay_mask);
1397 /* release locks on the i2c modules */
1398 module_put(zr->decoder->driver->driver.owner);
1400 module_put(zr->encoder->driver->driver.owner);
1402 module_put(THIS_MODULE);
1404 /*mutex_unlock(&zr->resource_lock);*/
1406 dprintk(4, KERN_INFO "%s: zoran_close() done\n", ZR_DEVNAME(zr));
1413 zoran_read (struct file *file,
1418 /* we simply don't support read() (yet)... */
1424 zoran_write (struct file *file,
1425 const char __user *data,
1429 /* ...and the same goes for write() */
1435 setup_fbuffer (struct file *file,
1437 const struct zoran_format *fmt,
1442 struct zoran_fh *fh = file->private_data;
1443 struct zoran *zr = fh->zr;
1445 /* (Ronald) v4l/v4l2 guidelines */
1446 if (!capable(CAP_SYS_ADMIN) && !capable(CAP_SYS_RAWIO))
1449 /* Don't allow frame buffer overlay if PCI or AGP is buggy, or on
1450 ALi Magik (that needs very low latency while the card needs a
1451 higher value always) */
1453 if (pci_pci_problems & (PCIPCI_FAIL | PCIAGP_FAIL | PCIPCI_ALIMAGIK))
1456 /* we need a bytesperline value, even if not given */
1458 bytesperline = width * ((fmt->depth + 7) & ~7) / 8;
1461 if (zr->overlay_active) {
1462 /* dzjee... stupid users... don't even bother to turn off
1463 * overlay before changing the memory location...
1464 * normally, we would return errors here. However, one of
1465 * the tools that does this is... xawtv! and since xawtv
1466 * is used by +/- 99% of the users, we'd rather be user-
1467 * friendly and silently do as if nothing went wrong */
1470 "%s: setup_fbuffer() - forced overlay turnoff because framebuffer changed\n",
1472 zr36057_overlay(zr, 0);
1476 if (!(fmt->flags & ZORAN_FORMAT_OVERLAY)) {
1479 "%s: setup_fbuffer() - no valid overlay format given\n",
1483 if (height <= 0 || width <= 0 || bytesperline <= 0) {
1486 "%s: setup_fbuffer() - invalid height/width/bpl value (%d|%d|%d)\n",
1487 ZR_DEVNAME(zr), width, height, bytesperline);
1490 if (bytesperline & 3) {
1493 "%s: setup_fbuffer() - bytesperline (%d) must be 4-byte aligned\n",
1494 ZR_DEVNAME(zr), bytesperline);
1498 zr->buffer.base = (void *) ((unsigned long) base & ~3);
1499 zr->buffer.height = height;
1500 zr->buffer.width = width;
1501 zr->buffer.depth = fmt->depth;
1502 zr->overlay_settings.format = fmt;
1503 zr->buffer.bytesperline = bytesperline;
1505 /* The user should set new window parameters */
1506 zr->overlay_settings.is_set = 0;
1513 setup_window (struct file *file,
1518 struct video_clip __user *clips,
1520 void __user *bitmap)
1522 struct zoran_fh *fh = file->private_data;
1523 struct zoran *zr = fh->zr;
1524 struct video_clip *vcp = NULL;
1528 if (!zr->buffer.base) {
1531 "%s: setup_window() - frame buffer has to be set first\n",
1536 if (!fh->overlay_settings.format) {
1539 "%s: setup_window() - no overlay format set\n",
1545 * The video front end needs 4-byte alinged line sizes, we correct that
1546 * silently here if necessary
1548 if (zr->buffer.depth == 15 || zr->buffer.depth == 16) {
1549 end = (x + width) & ~1; /* round down */
1550 x = (x + 1) & ~1; /* round up */
1554 if (zr->buffer.depth == 24) {
1555 end = (x + width) & ~3; /* round down */
1556 x = (x + 3) & ~3; /* round up */
1560 if (width > BUZ_MAX_WIDTH)
1561 width = BUZ_MAX_WIDTH;
1562 if (height > BUZ_MAX_HEIGHT)
1563 height = BUZ_MAX_HEIGHT;
1565 /* Check for vaild parameters */
1566 if (width < BUZ_MIN_WIDTH || height < BUZ_MIN_HEIGHT ||
1567 width > BUZ_MAX_WIDTH || height > BUZ_MAX_HEIGHT) {
1570 "%s: setup_window() - width = %d or height = %d invalid\n",
1571 ZR_DEVNAME(zr), width, height);
1575 fh->overlay_settings.x = x;
1576 fh->overlay_settings.y = y;
1577 fh->overlay_settings.width = width;
1578 fh->overlay_settings.height = height;
1579 fh->overlay_settings.clipcount = clipcount;
1582 * If an overlay is running, we have to switch it off
1583 * and switch it on again in order to get the new settings in effect.
1585 * We also want to avoid that the overlay mask is written
1586 * when an overlay is running.
1589 on = zr->v4l_overlay_active && !zr->v4l_memgrab_active &&
1590 zr->overlay_active != ZORAN_FREE &&
1591 fh->overlay_active != ZORAN_FREE;
1593 zr36057_overlay(zr, 0);
1596 * Write the overlay mask if clips are wanted.
1597 * We prefer a bitmap.
1600 /* fake value - it just means we want clips */
1601 fh->overlay_settings.clipcount = 1;
1603 if (copy_from_user(fh->overlay_mask, bitmap,
1604 (width * height + 7) / 8)) {
1607 } else if (clipcount > 0) {
1608 /* write our own bitmap from the clips */
1609 vcp = vmalloc(sizeof(struct video_clip) * (clipcount + 4));
1613 "%s: setup_window() - Alloc of clip mask failed\n",
1618 (vcp, clips, sizeof(struct video_clip) * clipcount)) {
1622 write_overlay_mask(file, vcp, clipcount);
1626 fh->overlay_settings.is_set = 1;
1627 if (fh->overlay_active != ZORAN_FREE &&
1628 zr->overlay_active != ZORAN_FREE)
1629 zr->overlay_settings = fh->overlay_settings;
1632 zr36057_overlay(zr, 1);
1634 /* Make sure the changes come into effect */
1635 return wait_grab_pending(zr);
1639 setup_overlay (struct file *file,
1642 struct zoran_fh *fh = file->private_data;
1643 struct zoran *zr = fh->zr;
1645 /* If there is nothing to do, return immediatly */
1646 if ((on && fh->overlay_active != ZORAN_FREE) ||
1647 (!on && fh->overlay_active == ZORAN_FREE))
1650 /* check whether we're touching someone else's overlay */
1651 if (on && zr->overlay_active != ZORAN_FREE &&
1652 fh->overlay_active == ZORAN_FREE) {
1655 "%s: setup_overlay() - overlay is already active for another session\n",
1659 if (!on && zr->overlay_active != ZORAN_FREE &&
1660 fh->overlay_active == ZORAN_FREE) {
1663 "%s: setup_overlay() - you cannot cancel someone else's session\n",
1669 zr->overlay_active = fh->overlay_active = ZORAN_FREE;
1670 zr->v4l_overlay_active = 0;
1671 /* When a grab is running, the video simply
1672 * won't be switched on any more */
1673 if (!zr->v4l_memgrab_active)
1674 zr36057_overlay(zr, 0);
1675 zr->overlay_mask = NULL;
1677 if (!zr->buffer.base || !fh->overlay_settings.is_set) {
1680 "%s: setup_overlay() - buffer or window not set\n",
1684 if (!fh->overlay_settings.format) {
1687 "%s: setup_overlay() - no overlay format set\n",
1691 zr->overlay_active = fh->overlay_active = ZORAN_LOCKED;
1692 zr->v4l_overlay_active = 1;
1693 zr->overlay_mask = fh->overlay_mask;
1694 zr->overlay_settings = fh->overlay_settings;
1695 if (!zr->v4l_memgrab_active)
1696 zr36057_overlay(zr, 1);
1697 /* When a grab is running, the video will be
1698 * switched on when grab is finished */
1701 /* Make sure the changes come into effect */
1702 return wait_grab_pending(zr);
1705 /* get the status of a buffer in the clients buffer queue */
1707 zoran_v4l2_buffer_status (struct file *file,
1708 struct v4l2_buffer *buf,
1711 struct zoran_fh *fh = file->private_data;
1712 struct zoran *zr = fh->zr;
1714 buf->flags = V4L2_BUF_FLAG_MAPPED;
1716 switch (fh->map_mode) {
1717 case ZORAN_MAP_MODE_RAW:
1720 if (num < 0 || num >= fh->v4l_buffers.num_buffers ||
1721 !fh->v4l_buffers.allocated) {
1724 "%s: v4l2_buffer_status() - wrong number or buffers not allocated\n",
1729 buf->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
1730 buf->length = fh->v4l_buffers.buffer_size;
1733 buf->bytesused = fh->v4l_buffers.buffer[num].bs.length;
1734 if (fh->v4l_buffers.buffer[num].state == BUZ_STATE_DONE ||
1735 fh->v4l_buffers.buffer[num].state == BUZ_STATE_USER) {
1736 buf->sequence = fh->v4l_buffers.buffer[num].bs.seq;
1737 buf->flags |= V4L2_BUF_FLAG_DONE;
1739 fh->v4l_buffers.buffer[num].bs.timestamp;
1741 buf->flags |= V4L2_BUF_FLAG_QUEUED;
1744 if (fh->v4l_settings.height <= BUZ_MAX_HEIGHT / 2)
1745 buf->field = V4L2_FIELD_TOP;
1747 buf->field = V4L2_FIELD_INTERLACED;
1751 case ZORAN_MAP_MODE_JPG_REC:
1752 case ZORAN_MAP_MODE_JPG_PLAY:
1755 if (num < 0 || num >= fh->jpg_buffers.num_buffers ||
1756 !fh->jpg_buffers.allocated) {
1759 "%s: v4l2_buffer_status() - wrong number or buffers not allocated\n",
1764 buf->type = (fh->map_mode == ZORAN_MAP_MODE_JPG_REC) ?
1765 V4L2_BUF_TYPE_VIDEO_CAPTURE :
1766 V4L2_BUF_TYPE_VIDEO_OUTPUT;
1767 buf->length = fh->jpg_buffers.buffer_size;
1769 /* these variables are only written after frame has been captured */
1770 if (fh->jpg_buffers.buffer[num].state == BUZ_STATE_DONE ||
1771 fh->jpg_buffers.buffer[num].state == BUZ_STATE_USER) {
1772 buf->sequence = fh->jpg_buffers.buffer[num].bs.seq;
1774 fh->jpg_buffers.buffer[num].bs.timestamp;
1776 fh->jpg_buffers.buffer[num].bs.length;
1777 buf->flags |= V4L2_BUF_FLAG_DONE;
1779 buf->flags |= V4L2_BUF_FLAG_QUEUED;
1782 /* which fields are these? */
1783 if (fh->jpg_settings.TmpDcm != 1)
1786 odd_even ? V4L2_FIELD_TOP : V4L2_FIELD_BOTTOM;
1790 odd_even ? V4L2_FIELD_SEQ_TB :
1799 "%s: v4l2_buffer_status() - invalid buffer type|map_mode (%d|%d)\n",
1800 ZR_DEVNAME(zr), buf->type, fh->map_mode);
1804 buf->memory = V4L2_MEMORY_MMAP;
1806 buf->m.offset = buf->length * num;
1812 zoran_set_norm (struct zoran *zr,
1813 int norm) /* VIDEO_MODE_* */
1815 int norm_encoder, on;
1817 if (zr->v4l_buffers.active != ZORAN_FREE ||
1818 zr->jpg_buffers.active != ZORAN_FREE) {
1821 "%s: set_norm() called while in playback/capture mode\n",
1826 if (lock_norm && norm != zr->norm) {
1827 if (lock_norm > 1) {
1830 "%s: set_norm() - TV standard is locked, can not switch norm\n",
1836 "%s: set_norm() - TV standard is locked, norm was not changed\n",
1842 if (norm != VIDEO_MODE_AUTO &&
1843 (norm < 0 || norm >= zr->card.norms ||
1844 !zr->card.tvn[norm])) {
1846 KERN_ERR "%s: set_norm() - unsupported norm %d\n",
1847 ZR_DEVNAME(zr), norm);
1851 if (norm == VIDEO_MODE_AUTO) {
1854 /* if we have autodetect, ... */
1855 struct video_decoder_capability caps;
1856 decoder_command(zr, DECODER_GET_CAPABILITIES, &caps);
1857 if (!(caps.flags & VIDEO_DECODER_AUTO)) {
1858 dprintk(1, KERN_ERR "%s: norm=auto unsupported\n",
1863 decoder_command(zr, DECODER_SET_NORM, &norm);
1865 /* let changes come into effect */
1868 decoder_command(zr, DECODER_GET_STATUS, &status);
1869 if (!(status & DECODER_STATUS_GOOD)) {
1872 "%s: set_norm() - no norm detected\n",
1875 decoder_command(zr, DECODER_SET_NORM, &zr->norm);
1879 if (status & DECODER_STATUS_NTSC)
1880 norm = VIDEO_MODE_NTSC;
1881 else if (status & DECODER_STATUS_SECAM)
1882 norm = VIDEO_MODE_SECAM;
1884 norm = VIDEO_MODE_PAL;
1886 zr->timing = zr->card.tvn[norm];
1887 norm_encoder = norm;
1889 /* We switch overlay off and on since a change in the
1890 * norm needs different VFE settings */
1891 on = zr->overlay_active && !zr->v4l_memgrab_active;
1893 zr36057_overlay(zr, 0);
1895 decoder_command(zr, DECODER_SET_NORM, &norm);
1896 encoder_command(zr, ENCODER_SET_NORM, &norm_encoder);
1899 zr36057_overlay(zr, 1);
1901 /* Make sure the changes come into effect */
1908 zoran_set_input (struct zoran *zr,
1913 if (input == zr->input) {
1917 if (zr->v4l_buffers.active != ZORAN_FREE ||
1918 zr->jpg_buffers.active != ZORAN_FREE) {
1921 "%s: set_input() called while in playback/capture mode\n",
1926 if (input < 0 || input >= zr->card.inputs) {
1929 "%s: set_input() - unnsupported input %d\n",
1930 ZR_DEVNAME(zr), input);
1934 realinput = zr->card.input[input].muxsel;
1937 decoder_command(zr, DECODER_SET_INPUT, &realinput);
1947 zoran_do_ioctl (struct inode *inode,
1952 struct zoran_fh *fh = file->private_data;
1953 struct zoran *zr = fh->zr;
1954 /* CAREFUL: used in multiple places here */
1955 struct zoran_jpg_settings settings;
1957 /* we might have older buffers lying around... We don't want
1958 * to wait, but we do want to try cleaning them up ASAP. So
1959 * we try to obtain the lock and free them. If that fails, we
1960 * don't do anything and wait for the next turn. In the end,
1961 * zoran_close() or a new allocation will still free them...
1962 * This is just a 'the sooner the better' extra 'feature'
1964 * We don't free the buffers right on munmap() because that
1965 * causes oopses (kfree() inside munmap() oopses for no
1966 * apparent reason - it's also not reproduceable in any way,
1967 * but moving the free code outside the munmap() handler fixes
1968 * all this... If someone knows why, please explain me (Ronald)
1970 if (mutex_trylock(&zr->resource_lock)) {
1971 /* we obtained it! Let's try to free some things */
1972 if (fh->jpg_buffers.ready_to_be_freed)
1973 jpg_fbuffer_free(file);
1974 if (fh->v4l_buffers.ready_to_be_freed)
1975 v4l_fbuffer_free(file);
1977 mutex_unlock(&zr->resource_lock);
1984 struct video_capability *vcap = arg;
1986 dprintk(3, KERN_DEBUG "%s: VIDIOCGCAP\n", ZR_DEVNAME(zr));
1988 memset(vcap, 0, sizeof(struct video_capability));
1989 strncpy(vcap->name, ZR_DEVNAME(zr), sizeof(vcap->name)-1);
1990 vcap->type = ZORAN_VID_TYPE;
1992 vcap->channels = zr->card.inputs;
1994 mutex_lock(&zr->resource_lock);
1995 vcap->maxwidth = BUZ_MAX_WIDTH;
1996 vcap->maxheight = BUZ_MAX_HEIGHT;
1997 vcap->minwidth = BUZ_MIN_WIDTH;
1998 vcap->minheight = BUZ_MIN_HEIGHT;
1999 mutex_unlock(&zr->resource_lock);
2007 struct video_channel *vchan = arg;
2008 int channel = vchan->channel;
2010 dprintk(3, KERN_DEBUG "%s: VIDIOCGCHAN - channel=%d\n",
2011 ZR_DEVNAME(zr), vchan->channel);
2013 memset(vchan, 0, sizeof(struct video_channel));
2014 if (channel > zr->card.inputs || channel < 0) {
2017 "%s: VIDIOCGCHAN on not existing channel %d\n",
2018 ZR_DEVNAME(zr), channel);
2022 strcpy(vchan->name, zr->card.input[channel].name);
2026 vchan->type = VIDEO_TYPE_CAMERA;
2027 mutex_lock(&zr->resource_lock);
2028 vchan->norm = zr->norm;
2029 mutex_unlock(&zr->resource_lock);
2030 vchan->channel = channel;
2036 /* RJ: the documentation at http://roadrunner.swansea.linux.org.uk/v4lapi.shtml says:
2038 * * "The VIDIOCSCHAN ioctl takes an integer argument and switches the capture to this input."
2040 * * The famos BTTV driver has it implemented with a struct video_channel argument
2041 * * and we follow it for compatibility reasons
2043 * * BTW: this is the only way the user can set the norm!
2048 struct video_channel *vchan = arg;
2053 "%s: VIDIOCSCHAN - channel=%d, norm=%d\n",
2054 ZR_DEVNAME(zr), vchan->channel, vchan->norm);
2056 mutex_lock(&zr->resource_lock);
2057 if ((res = zoran_set_input(zr, vchan->channel)))
2058 goto schan_unlock_and_return;
2059 if ((res = zoran_set_norm(zr, vchan->norm)))
2060 goto schan_unlock_and_return;
2062 /* Make sure the changes come into effect */
2063 res = wait_grab_pending(zr);
2064 schan_unlock_and_return:
2065 mutex_unlock(&zr->resource_lock);
2072 struct video_picture *vpict = arg;
2074 dprintk(3, KERN_DEBUG "%s: VIDIOCGPICT\n", ZR_DEVNAME(zr));
2076 memset(vpict, 0, sizeof(struct video_picture));
2077 mutex_lock(&zr->resource_lock);
2078 vpict->hue = zr->hue;
2079 vpict->brightness = zr->brightness;
2080 vpict->contrast = zr->contrast;
2081 vpict->colour = zr->saturation;
2082 if (fh->overlay_settings.format) {
2083 vpict->depth = fh->overlay_settings.format->depth;
2084 vpict->palette = fh->overlay_settings.format->palette;
2088 mutex_unlock(&zr->resource_lock);
2096 struct video_picture *vpict = arg;
2101 "%s: VIDIOCSPICT - bri=%d, hue=%d, col=%d, con=%d, dep=%d, pal=%d\n",
2102 ZR_DEVNAME(zr), vpict->brightness, vpict->hue,
2103 vpict->colour, vpict->contrast, vpict->depth,
2106 for (i = 0; i < NUM_FORMATS; i++) {
2107 const struct zoran_format *fmt = &zoran_formats[i];
2109 if (fmt->palette != -1 &&
2110 fmt->flags & ZORAN_FORMAT_OVERLAY &&
2111 fmt->palette == vpict->palette &&
2112 fmt->depth == vpict->depth)
2115 if (i == NUM_FORMATS) {
2118 "%s: VIDIOCSPICT - Invalid palette %d\n",
2119 ZR_DEVNAME(zr), vpict->palette);
2123 mutex_lock(&zr->resource_lock);
2125 decoder_command(zr, DECODER_SET_PICTURE, vpict);
2127 zr->hue = vpict->hue;
2128 zr->contrast = vpict->contrast;
2129 zr->saturation = vpict->colour;
2130 zr->brightness = vpict->brightness;
2132 fh->overlay_settings.format = &zoran_formats[i];
2134 mutex_unlock(&zr->resource_lock);
2144 dprintk(3, KERN_DEBUG "%s: VIDIOCCAPTURE - on=%d\n",
2145 ZR_DEVNAME(zr), *on);
2147 mutex_lock(&zr->resource_lock);
2148 res = setup_overlay(file, *on);
2149 mutex_unlock(&zr->resource_lock);
2157 struct video_window *vwin = arg;
2159 dprintk(3, KERN_DEBUG "%s: VIDIOCGWIN\n", ZR_DEVNAME(zr));
2161 memset(vwin, 0, sizeof(struct video_window));
2162 mutex_lock(&zr->resource_lock);
2163 vwin->x = fh->overlay_settings.x;
2164 vwin->y = fh->overlay_settings.y;
2165 vwin->width = fh->overlay_settings.width;
2166 vwin->height = fh->overlay_settings.height;
2167 mutex_unlock(&zr->resource_lock);
2168 vwin->clipcount = 0;
2175 struct video_window *vwin = arg;
2180 "%s: VIDIOCSWIN - x=%d, y=%d, w=%d, h=%d, clipcount=%d\n",
2181 ZR_DEVNAME(zr), vwin->x, vwin->y, vwin->width,
2182 vwin->height, vwin->clipcount);
2184 mutex_lock(&zr->resource_lock);
2186 setup_window(file, vwin->x, vwin->y, vwin->width,
2187 vwin->height, vwin->clips,
2188 vwin->clipcount, NULL);
2189 mutex_unlock(&zr->resource_lock);
2197 struct video_buffer *vbuf = arg;
2199 dprintk(3, KERN_DEBUG "%s: VIDIOCGFBUF\n", ZR_DEVNAME(zr));
2201 mutex_lock(&zr->resource_lock);
2203 mutex_unlock(&zr->resource_lock);
2210 struct video_buffer *vbuf = arg;
2215 "%s: VIDIOCSFBUF - base=%p, w=%d, h=%d, depth=%d, bpl=%d\n",
2216 ZR_DEVNAME(zr), vbuf->base, vbuf->width,
2217 vbuf->height, vbuf->depth, vbuf->bytesperline);
2219 for (i = 0; i < NUM_FORMATS; i++)
2220 if (zoran_formats[i].depth == vbuf->depth)
2222 if (i == NUM_FORMATS) {
2225 "%s: VIDIOCSFBUF - invalid fbuf depth %d\n",
2226 ZR_DEVNAME(zr), vbuf->depth);
2230 mutex_lock(&zr->resource_lock);
2232 setup_fbuffer(file, vbuf->base, &zoran_formats[i],
2233 vbuf->width, vbuf->height,
2234 vbuf->bytesperline);
2235 mutex_unlock(&zr->resource_lock);
2243 int *frame = arg, res;
2245 dprintk(3, KERN_DEBUG "%s: VIDIOCSYNC - frame=%d\n",
2246 ZR_DEVNAME(zr), *frame);
2248 mutex_lock(&zr->resource_lock);
2249 res = v4l_sync(file, *frame);
2250 mutex_unlock(&zr->resource_lock);
2252 zr->v4l_sync_tail++;
2257 case VIDIOCMCAPTURE:
2259 struct video_mmap *vmap = arg;
2264 "%s: VIDIOCMCAPTURE - frame=%d, geom=%dx%d, fmt=%d\n",
2265 ZR_DEVNAME(zr), vmap->frame, vmap->width, vmap->height,
2268 mutex_lock(&zr->resource_lock);
2269 res = v4l_grab(file, vmap);
2270 mutex_unlock(&zr->resource_lock);
2277 struct video_mbuf *vmbuf = arg;
2280 dprintk(3, KERN_DEBUG "%s: VIDIOCGMBUF\n", ZR_DEVNAME(zr));
2283 fh->v4l_buffers.num_buffers *
2284 fh->v4l_buffers.buffer_size;
2285 vmbuf->frames = fh->v4l_buffers.num_buffers;
2286 for (i = 0; i < vmbuf->frames; i++) {
2288 i * fh->v4l_buffers.buffer_size;
2291 mutex_lock(&zr->resource_lock);
2293 if (fh->jpg_buffers.allocated || fh->v4l_buffers.allocated) {
2296 "%s: VIDIOCGMBUF - buffers already allocated\n",
2299 goto v4l1reqbuf_unlock_and_return;
2302 if (v4l_fbuffer_alloc(file)) {
2304 goto v4l1reqbuf_unlock_and_return;
2307 /* The next mmap will map the V4L buffers */
2308 fh->map_mode = ZORAN_MAP_MODE_RAW;
2309 v4l1reqbuf_unlock_and_return:
2310 mutex_unlock(&zr->resource_lock);
2318 struct video_unit *vunit = arg;
2320 dprintk(3, KERN_DEBUG "%s: VIDIOCGUNIT\n", ZR_DEVNAME(zr));
2322 vunit->video = zr->video_dev->minor;
2323 vunit->vbi = VIDEO_NO_UNIT;
2324 vunit->radio = VIDEO_NO_UNIT;
2325 vunit->audio = VIDEO_NO_UNIT;
2326 vunit->teletext = VIDEO_NO_UNIT;
2333 * RJ: In principal we could support subcaptures for V4L grabbing.
2334 * Not even the famous BTTV driver has them, however.
2335 * If there should be a strong demand, one could consider
2336 * to implement them.
2338 case VIDIOCGCAPTURE:
2340 dprintk(3, KERN_ERR "%s: VIDIOCGCAPTURE not supported\n",
2346 case VIDIOCSCAPTURE:
2348 dprintk(3, KERN_ERR "%s: VIDIOCSCAPTURE not supported\n",
2354 case BUZIOC_G_PARAMS:
2356 struct zoran_params *bparams = arg;
2358 dprintk(3, KERN_DEBUG "%s: BUZIOC_G_PARAMS\n", ZR_DEVNAME(zr));
2360 memset(bparams, 0, sizeof(struct zoran_params));
2361 bparams->major_version = MAJOR_VERSION;
2362 bparams->minor_version = MINOR_VERSION;
2364 mutex_lock(&zr->resource_lock);
2366 bparams->norm = zr->norm;
2367 bparams->input = zr->input;
2369 bparams->decimation = fh->jpg_settings.decimation;
2370 bparams->HorDcm = fh->jpg_settings.HorDcm;
2371 bparams->VerDcm = fh->jpg_settings.VerDcm;
2372 bparams->TmpDcm = fh->jpg_settings.TmpDcm;
2373 bparams->field_per_buff = fh->jpg_settings.field_per_buff;
2374 bparams->img_x = fh->jpg_settings.img_x;
2375 bparams->img_y = fh->jpg_settings.img_y;
2376 bparams->img_width = fh->jpg_settings.img_width;
2377 bparams->img_height = fh->jpg_settings.img_height;
2378 bparams->odd_even = fh->jpg_settings.odd_even;
2380 bparams->quality = fh->jpg_settings.jpg_comp.quality;
2381 bparams->APPn = fh->jpg_settings.jpg_comp.APPn;
2382 bparams->APP_len = fh->jpg_settings.jpg_comp.APP_len;
2383 memcpy(bparams->APP_data,
2384 fh->jpg_settings.jpg_comp.APP_data,
2385 sizeof(bparams->APP_data));
2386 bparams->COM_len = zr->jpg_settings.jpg_comp.COM_len;
2387 memcpy(bparams->COM_data,
2388 fh->jpg_settings.jpg_comp.COM_data,
2389 sizeof(bparams->COM_data));
2390 bparams->jpeg_markers =
2391 fh->jpg_settings.jpg_comp.jpeg_markers;
2393 mutex_unlock(&zr->resource_lock);
2395 bparams->VFIFO_FB = 0;
2401 case BUZIOC_S_PARAMS:
2403 struct zoran_params *bparams = arg;
2406 dprintk(3, KERN_DEBUG "%s: BUZIOC_S_PARAMS\n", ZR_DEVNAME(zr));
2408 settings.decimation = bparams->decimation;
2409 settings.HorDcm = bparams->HorDcm;
2410 settings.VerDcm = bparams->VerDcm;
2411 settings.TmpDcm = bparams->TmpDcm;
2412 settings.field_per_buff = bparams->field_per_buff;
2413 settings.img_x = bparams->img_x;
2414 settings.img_y = bparams->img_y;
2415 settings.img_width = bparams->img_width;
2416 settings.img_height = bparams->img_height;
2417 settings.odd_even = bparams->odd_even;
2419 settings.jpg_comp.quality = bparams->quality;
2420 settings.jpg_comp.APPn = bparams->APPn;
2421 settings.jpg_comp.APP_len = bparams->APP_len;
2422 memcpy(settings.jpg_comp.APP_data, bparams->APP_data,
2423 sizeof(bparams->APP_data));
2424 settings.jpg_comp.COM_len = bparams->COM_len;
2425 memcpy(settings.jpg_comp.COM_data, bparams->COM_data,
2426 sizeof(bparams->COM_data));
2427 settings.jpg_comp.jpeg_markers = bparams->jpeg_markers;
2429 mutex_lock(&zr->resource_lock);
2431 if (zr->codec_mode != BUZ_MODE_IDLE) {
2434 "%s: BUZIOC_S_PARAMS called, but Buz in capture/playback mode\n",
2437 goto sparams_unlock_and_return;
2440 /* Check the params first before overwriting our
2442 if (zoran_check_jpg_settings(zr, &settings)) {
2444 goto sparams_unlock_and_return;
2447 fh->jpg_settings = settings;
2448 sparams_unlock_and_return:
2449 mutex_unlock(&zr->resource_lock);
2455 case BUZIOC_REQBUFS:
2457 struct zoran_requestbuffers *breq = arg;
2462 "%s: BUZIOC_REQBUFS - count=%lu, size=%lu\n",
2463 ZR_DEVNAME(zr), breq->count, breq->size);
2465 /* Enforce reasonable lower and upper limits */
2466 if (breq->count < 4)
2467 breq->count = 4; /* Could be choosen smaller */
2468 if (breq->count > jpg_nbufs)
2469 breq->count = jpg_nbufs;
2470 breq->size = PAGE_ALIGN(breq->size);
2471 if (breq->size < 8192)
2472 breq->size = 8192; /* Arbitrary */
2473 /* breq->size is limited by 1 page for the stat_com
2474 * tables to a Maximum of 2 MB */
2475 if (breq->size > jpg_bufsize)
2476 breq->size = jpg_bufsize;
2477 if (fh->jpg_buffers.need_contiguous &&
2478 breq->size > MAX_KMALLOC_MEM)
2479 breq->size = MAX_KMALLOC_MEM;
2481 mutex_lock(&zr->resource_lock);
2483 if (fh->jpg_buffers.allocated || fh->v4l_buffers.allocated) {
2486 "%s: BUZIOC_REQBUFS - buffers allready allocated\n",
2489 goto jpgreqbuf_unlock_and_return;
2492 fh->jpg_buffers.num_buffers = breq->count;
2493 fh->jpg_buffers.buffer_size = breq->size;
2495 if (jpg_fbuffer_alloc(file)) {
2497 goto jpgreqbuf_unlock_and_return;
2500 /* The next mmap will map the MJPEG buffers - could
2501 * also be *_PLAY, but it doesn't matter here */
2502 fh->map_mode = ZORAN_MAP_MODE_JPG_REC;
2503 jpgreqbuf_unlock_and_return:
2504 mutex_unlock(&zr->resource_lock);
2510 case BUZIOC_QBUF_CAPT:
2512 int *frame = arg, res;
2514 dprintk(3, KERN_DEBUG "%s: BUZIOC_QBUF_CAPT - frame=%d\n",
2515 ZR_DEVNAME(zr), *frame);
2517 mutex_lock(&zr->resource_lock);
2518 res = jpg_qbuf(file, *frame, BUZ_MODE_MOTION_COMPRESS);
2519 mutex_unlock(&zr->resource_lock);
2525 case BUZIOC_QBUF_PLAY:
2527 int *frame = arg, res;
2529 dprintk(3, KERN_DEBUG "%s: BUZIOC_QBUF_PLAY - frame=%d\n",
2530 ZR_DEVNAME(zr), *frame);
2532 mutex_lock(&zr->resource_lock);
2533 res = jpg_qbuf(file, *frame, BUZ_MODE_MOTION_DECOMPRESS);
2534 mutex_unlock(&zr->resource_lock);
2542 struct zoran_sync *bsync = arg;
2545 dprintk(3, KERN_DEBUG "%s: BUZIOC_SYNC\n", ZR_DEVNAME(zr));
2547 mutex_lock(&zr->resource_lock);
2548 res = jpg_sync(file, bsync);
2549 mutex_unlock(&zr->resource_lock);
2555 case BUZIOC_G_STATUS:
2557 struct zoran_status *bstat = arg;
2558 int norm, input, status, res = 0;
2560 dprintk(3, KERN_DEBUG "%s: BUZIOC_G_STATUS\n", ZR_DEVNAME(zr));
2562 if (zr->codec_mode != BUZ_MODE_IDLE) {
2565 "%s: BUZIOC_G_STATUS called but Buz in capture/playback mode\n",
2570 input = zr->card.input[bstat->input].muxsel;
2571 norm = VIDEO_MODE_AUTO;
2573 mutex_lock(&zr->resource_lock);
2575 if (zr->codec_mode != BUZ_MODE_IDLE) {
2578 "%s: BUZIOC_G_STATUS called, but Buz in capture/playback mode\n",
2581 goto gstat_unlock_and_return;
2584 decoder_command(zr, DECODER_SET_INPUT, &input);
2585 decoder_command(zr, DECODER_SET_NORM, &norm);
2587 /* sleep 1 second */
2590 /* Get status of video decoder */
2591 decoder_command(zr, DECODER_GET_STATUS, &status);
2593 /* restore previous input and norm */
2594 input = zr->card.input[zr->input].muxsel;
2595 decoder_command(zr, DECODER_SET_INPUT, &input);
2596 decoder_command(zr, DECODER_SET_NORM, &zr->norm);
2597 gstat_unlock_and_return:
2598 mutex_unlock(&zr->resource_lock);
2602 (status & DECODER_STATUS_GOOD) ? 1 : 0;
2603 if (status & DECODER_STATUS_NTSC)
2604 bstat->norm = VIDEO_MODE_NTSC;
2605 else if (status & DECODER_STATUS_SECAM)
2606 bstat->norm = VIDEO_MODE_SECAM;
2608 bstat->norm = VIDEO_MODE_PAL;
2611 (status & DECODER_STATUS_COLOR) ? 1 : 0;
2618 /* The new video4linux2 capture interface - much nicer than video4linux1, since
2619 * it allows for integrating the JPEG capturing calls inside standard v4l2
2622 case VIDIOC_QUERYCAP:
2624 struct v4l2_capability *cap = arg;
2626 dprintk(3, KERN_DEBUG "%s: VIDIOC_QUERYCAP\n", ZR_DEVNAME(zr));
2628 memset(cap, 0, sizeof(*cap));
2629 strncpy(cap->card, ZR_DEVNAME(zr), sizeof(cap->card)-1);
2630 strncpy(cap->driver, "zoran", sizeof(cap->driver)-1);
2631 snprintf(cap->bus_info, sizeof(cap->bus_info), "PCI:%s",
2632 pci_name(zr->pci_dev));
2634 KERNEL_VERSION(MAJOR_VERSION, MINOR_VERSION,
2636 cap->capabilities = ZORAN_V4L2_VID_FLAGS;
2642 case VIDIOC_ENUM_FMT:
2644 struct v4l2_fmtdesc *fmt = arg;
2645 int index = fmt->index, num = -1, i, flag = 0, type =
2648 dprintk(3, KERN_DEBUG "%s: VIDIOC_ENUM_FMT - index=%d\n",
2649 ZR_DEVNAME(zr), fmt->index);
2651 switch (fmt->type) {
2652 case V4L2_BUF_TYPE_VIDEO_CAPTURE:
2653 flag = ZORAN_FORMAT_CAPTURE;
2655 case V4L2_BUF_TYPE_VIDEO_OUTPUT:
2656 flag = ZORAN_FORMAT_PLAYBACK;
2658 case V4L2_BUF_TYPE_VIDEO_OVERLAY:
2659 flag = ZORAN_FORMAT_OVERLAY;
2664 "%s: VIDIOC_ENUM_FMT - unknown type %d\n",
2665 ZR_DEVNAME(zr), fmt->type);
2669 for (i = 0; i < NUM_FORMATS; i++) {
2670 if (zoran_formats[i].flags & flag)
2672 if (num == fmt->index)
2675 if (fmt->index < 0 /* late, but not too late */ ||
2679 memset(fmt, 0, sizeof(*fmt));
2682 strncpy(fmt->description, zoran_formats[i].name, sizeof(fmt->description)-1);
2683 fmt->pixelformat = zoran_formats[i].fourcc;
2684 if (zoran_formats[i].flags & ZORAN_FORMAT_COMPRESSED)
2685 fmt->flags |= V4L2_FMT_FLAG_COMPRESSED;
2693 struct v4l2_format *fmt = arg;
2694 int type = fmt->type;
2696 dprintk(5, KERN_DEBUG "%s: VIDIOC_G_FMT\n", ZR_DEVNAME(zr));
2698 memset(fmt, 0, sizeof(*fmt));
2701 switch (fmt->type) {
2702 case V4L2_BUF_TYPE_VIDEO_OVERLAY:
2704 mutex_lock(&zr->resource_lock);
2706 fmt->fmt.win.w.left = fh->overlay_settings.x;
2707 fmt->fmt.win.w.top = fh->overlay_settings.y;
2708 fmt->fmt.win.w.width = fh->overlay_settings.width;
2709 fmt->fmt.win.w.height =
2710 fh->overlay_settings.height;
2711 if (fh->overlay_settings.width * 2 >
2713 fmt->fmt.win.field = V4L2_FIELD_INTERLACED;
2715 fmt->fmt.win.field = V4L2_FIELD_TOP;
2717 mutex_unlock(&zr->resource_lock);
2721 case V4L2_BUF_TYPE_VIDEO_CAPTURE:
2722 case V4L2_BUF_TYPE_VIDEO_OUTPUT:
2724 mutex_lock(&zr->resource_lock);
2726 if (fmt->type == V4L2_BUF_TYPE_VIDEO_CAPTURE &&
2727 fh->map_mode == ZORAN_MAP_MODE_RAW) {
2729 fmt->fmt.pix.width =
2730 fh->v4l_settings.width;
2731 fmt->fmt.pix.height =
2732 fh->v4l_settings.height;
2733 fmt->fmt.pix.sizeimage =
2734 fh->v4l_settings.bytesperline *
2735 fh->v4l_settings.height;
2736 fmt->fmt.pix.pixelformat =
2737 fh->v4l_settings.format->fourcc;
2738 fmt->fmt.pix.colorspace =
2739 fh->v4l_settings.format->colorspace;
2740 fmt->fmt.pix.bytesperline = 0;
2741 if (BUZ_MAX_HEIGHT <
2742 (fh->v4l_settings.height * 2))
2743 fmt->fmt.pix.field =
2744 V4L2_FIELD_INTERLACED;
2746 fmt->fmt.pix.field =
2751 fmt->fmt.pix.width =
2752 fh->jpg_settings.img_width /
2753 fh->jpg_settings.HorDcm;
2754 fmt->fmt.pix.height =
2755 fh->jpg_settings.img_height /
2756 (fh->jpg_settings.VerDcm *
2757 fh->jpg_settings.TmpDcm);
2758 fmt->fmt.pix.sizeimage =
2759 zoran_v4l2_calc_bufsize(&fh->
2761 fmt->fmt.pix.pixelformat =
2763 if (fh->jpg_settings.TmpDcm == 1)
2764 fmt->fmt.pix.field =
2766 odd_even ? V4L2_FIELD_SEQ_BT :
2769 fmt->fmt.pix.field =
2771 odd_even ? V4L2_FIELD_TOP :
2774 fmt->fmt.pix.bytesperline = 0;
2775 fmt->fmt.pix.colorspace =
2776 V4L2_COLORSPACE_SMPTE170M;
2779 mutex_unlock(&zr->resource_lock);
2786 "%s: VIDIOC_G_FMT - unsupported type %d\n",
2787 ZR_DEVNAME(zr), fmt->type);
2796 struct v4l2_format *fmt = arg;
2800 dprintk(3, KERN_DEBUG "%s: VIDIOC_S_FMT - type=%d, ",
2801 ZR_DEVNAME(zr), fmt->type);
2803 switch (fmt->type) {
2804 case V4L2_BUF_TYPE_VIDEO_OVERLAY:
2806 dprintk(3, "x=%d, y=%d, w=%d, h=%d, cnt=%d, map=0x%p\n",
2807 fmt->fmt.win.w.left, fmt->fmt.win.w.top,
2808 fmt->fmt.win.w.width,
2809 fmt->fmt.win.w.height,
2810 fmt->fmt.win.clipcount,
2811 fmt->fmt.win.bitmap);
2812 mutex_lock(&zr->resource_lock);
2814 setup_window(file, fmt->fmt.win.w.left,
2816 fmt->fmt.win.w.width,
2817 fmt->fmt.win.w.height,
2818 (struct video_clip __user *)
2820 fmt->fmt.win.clipcount,
2821 fmt->fmt.win.bitmap);
2822 mutex_unlock(&zr->resource_lock);
2826 case V4L2_BUF_TYPE_VIDEO_CAPTURE:
2827 case V4L2_BUF_TYPE_VIDEO_OUTPUT:
2830 __cpu_to_le32(fmt->fmt.pix.pixelformat);
2831 dprintk(3, "size=%dx%d, fmt=0x%x (%4.4s)\n",
2832 fmt->fmt.pix.width, fmt->fmt.pix.height,
2833 fmt->fmt.pix.pixelformat,
2834 (char *) &printformat);
2836 if (fmt->fmt.pix.bytesperline > 0) {
2838 KERN_ERR "%s: bpl not supported\n",
2843 /* we can be requested to do JPEG/raw playback/capture */
2845 (fmt->type == V4L2_BUF_TYPE_VIDEO_CAPTURE ||
2846 (fmt->type == V4L2_BUF_TYPE_VIDEO_OUTPUT &&
2847 fmt->fmt.pix.pixelformat ==
2848 V4L2_PIX_FMT_MJPEG))) {
2851 "%s: VIDIOC_S_FMT - unknown type %d/0x%x(%4.4s) combination\n",
2852 ZR_DEVNAME(zr), fmt->type,
2853 fmt->fmt.pix.pixelformat,
2854 (char *) &printformat);
2858 if (fmt->fmt.pix.pixelformat == V4L2_PIX_FMT_MJPEG) {
2859 mutex_lock(&zr->resource_lock);
2861 settings = fh->jpg_settings;
2863 if (fh->v4l_buffers.allocated ||
2864 fh->jpg_buffers.allocated) {
2867 "%s: VIDIOC_S_FMT - cannot change capture mode\n",
2870 goto sfmtjpg_unlock_and_return;
2873 /* we actually need to set 'real' parameters now */
2874 if ((fmt->fmt.pix.height * 2) >
2876 settings.TmpDcm = 1;
2878 settings.TmpDcm = 2;
2879 settings.decimation = 0;
2880 if (fmt->fmt.pix.height <=
2881 fh->jpg_settings.img_height / 2)
2882 settings.VerDcm = 2;
2884 settings.VerDcm = 1;
2885 if (fmt->fmt.pix.width <=
2886 fh->jpg_settings.img_width / 4)
2887 settings.HorDcm = 4;
2888 else if (fmt->fmt.pix.width <=
2889 fh->jpg_settings.img_width / 2)
2890 settings.HorDcm = 2;
2892 settings.HorDcm = 1;
2893 if (settings.TmpDcm == 1)
2894 settings.field_per_buff = 2;
2896 settings.field_per_buff = 1;
2900 zoran_check_jpg_settings(zr,
2902 goto sfmtjpg_unlock_and_return;
2904 /* it's ok, so set them */
2905 fh->jpg_settings = settings;
2907 /* tell the user what we actually did */
2908 fmt->fmt.pix.width =
2909 settings.img_width / settings.HorDcm;
2910 fmt->fmt.pix.height =
2911 settings.img_height * 2 /
2912 (settings.TmpDcm * settings.VerDcm);
2913 if (settings.TmpDcm == 1)
2914 fmt->fmt.pix.field =
2916 odd_even ? V4L2_FIELD_SEQ_TB :
2919 fmt->fmt.pix.field =
2921 odd_even ? V4L2_FIELD_TOP :
2923 fh->jpg_buffers.buffer_size =
2924 zoran_v4l2_calc_bufsize(&fh->
2926 fmt->fmt.pix.sizeimage =
2927 fh->jpg_buffers.buffer_size;
2929 /* we hereby abuse this variable to show that
2930 * we're gonna do mjpeg capture */
2933 V4L2_BUF_TYPE_VIDEO_CAPTURE) ?
2934 ZORAN_MAP_MODE_JPG_REC :
2935 ZORAN_MAP_MODE_JPG_PLAY;
2936 sfmtjpg_unlock_and_return:
2937 mutex_unlock(&zr->resource_lock);
2939 for (i = 0; i < NUM_FORMATS; i++)
2940 if (fmt->fmt.pix.pixelformat ==
2941 zoran_formats[i].fourcc)
2943 if (i == NUM_FORMATS) {
2946 "%s: VIDIOC_S_FMT - unknown/unsupported format 0x%x (%4.4s)\n",
2948 fmt->fmt.pix.pixelformat,
2949 (char *) &printformat);
2952 mutex_lock(&zr->resource_lock);
2953 if (fh->jpg_buffers.allocated ||
2954 (fh->v4l_buffers.allocated &&
2955 fh->v4l_buffers.active !=
2959 "%s: VIDIOC_S_FMT - cannot change capture mode\n",
2962 goto sfmtv4l_unlock_and_return;
2964 if (fmt->fmt.pix.height > BUZ_MAX_HEIGHT)
2965 fmt->fmt.pix.height =
2967 if (fmt->fmt.pix.width > BUZ_MAX_WIDTH)
2968 fmt->fmt.pix.width = BUZ_MAX_WIDTH;
2971 zoran_v4l_set_format(file,
2978 goto sfmtv4l_unlock_and_return;
2980 /* tell the user the
2981 * results/missing stuff */
2982 fmt->fmt.pix.sizeimage =
2983 fh->v4l_settings.height *
2984 fh->v4l_settings.bytesperline;
2985 if (BUZ_MAX_HEIGHT <
2986 (fh->v4l_settings.height * 2))
2987 fmt->fmt.pix.field =
2988 V4L2_FIELD_INTERLACED;
2990 fmt->fmt.pix.field =
2993 fh->map_mode = ZORAN_MAP_MODE_RAW;
2994 sfmtv4l_unlock_and_return:
2995 mutex_unlock(&zr->resource_lock);
3001 dprintk(3, "unsupported\n");
3004 "%s: VIDIOC_S_FMT - unsupported type %d\n",
3005 ZR_DEVNAME(zr), fmt->type);
3015 struct v4l2_framebuffer *fb = arg;
3017 dprintk(3, KERN_DEBUG "%s: VIDIOC_G_FBUF\n", ZR_DEVNAME(zr));
3019 memset(fb, 0, sizeof(*fb));
3020 mutex_lock(&zr->resource_lock);
3021 fb->base = zr->buffer.base;
3022 fb->fmt.width = zr->buffer.width;
3023 fb->fmt.height = zr->buffer.height;
3024 if (zr->overlay_settings.format) {
3025 fb->fmt.pixelformat =
3026 fh->overlay_settings.format->fourcc;
3028 fb->fmt.bytesperline = zr->buffer.bytesperline;
3029 mutex_unlock(&zr->resource_lock);
3030 fb->fmt.colorspace = V4L2_COLORSPACE_SRGB;
3031 fb->fmt.field = V4L2_FIELD_INTERLACED;
3032 fb->flags = V4L2_FBUF_FLAG_OVERLAY;
3033 fb->capability = V4L2_FBUF_CAP_LIST_CLIPPING;
3042 struct v4l2_framebuffer *fb = arg;
3043 __u32 printformat = __cpu_to_le32(fb->fmt.pixelformat);
3047 "%s: VIDIOC_S_FBUF - base=0x%p, size=%dx%d, bpl=%d, fmt=0x%x (%4.4s)\n",
3048 ZR_DEVNAME(zr), fb->base, fb->fmt.width, fb->fmt.height,
3049 fb->fmt.bytesperline, fb->fmt.pixelformat,
3050 (char *) &printformat);
3052 for (i = 0; i < NUM_FORMATS; i++)
3053 if (zoran_formats[i].fourcc == fb->fmt.pixelformat)
3055 if (i == NUM_FORMATS) {
3058 "%s: VIDIOC_S_FBUF - format=0x%x (%4.4s) not allowed\n",
3059 ZR_DEVNAME(zr), fb->fmt.pixelformat,
3060 (char *) &printformat);
3064 mutex_lock(&zr->resource_lock);
3066 setup_fbuffer(file, fb->base, &zoran_formats[i],
3067 fb->fmt.width, fb->fmt.height,
3068 fb->fmt.bytesperline);
3069 mutex_unlock(&zr->resource_lock);
3075 case VIDIOC_OVERLAY:
3079 dprintk(3, KERN_DEBUG "%s: VIDIOC_PREVIEW - on=%d\n",
3080 ZR_DEVNAME(zr), *on);
3082 mutex_lock(&zr->resource_lock);
3083 res = setup_overlay(file, *on);
3084 mutex_unlock(&zr->resource_lock);
3090 case VIDIOC_REQBUFS:
3092 struct v4l2_requestbuffers *req = arg;
3095 dprintk(3, KERN_DEBUG "%s: VIDIOC_REQBUFS - type=%d\n",
3096 ZR_DEVNAME(zr), req->type);
3098 if (req->memory != V4L2_MEMORY_MMAP) {
3101 "%s: only MEMORY_MMAP capture is supported, not %d\n",
3102 ZR_DEVNAME(zr), req->memory);
3106 mutex_lock(&zr->resource_lock);
3108 if (fh->v4l_buffers.allocated || fh->jpg_buffers.allocated) {
3111 "%s: VIDIOC_REQBUFS - buffers allready allocated\n",
3114 goto v4l2reqbuf_unlock_and_return;
3117 if (fh->map_mode == ZORAN_MAP_MODE_RAW &&
3118 req->type == V4L2_BUF_TYPE_VIDEO_CAPTURE) {
3120 /* control user input */
3123 if (req->count > v4l_nbufs)
3124 req->count = v4l_nbufs;
3125 fh->v4l_buffers.num_buffers = req->count;
3127 if (v4l_fbuffer_alloc(file)) {
3129 goto v4l2reqbuf_unlock_and_return;
3132 /* The next mmap will map the V4L buffers */
3133 fh->map_mode = ZORAN_MAP_MODE_RAW;
3135 } else if (fh->map_mode == ZORAN_MAP_MODE_JPG_REC ||
3136 fh->map_mode == ZORAN_MAP_MODE_JPG_PLAY) {
3138 /* we need to calculate size ourselves now */
3141 if (req->count > jpg_nbufs)
3142 req->count = jpg_nbufs;
3143 fh->jpg_buffers.num_buffers = req->count;
3144 fh->jpg_buffers.buffer_size =
3145 zoran_v4l2_calc_bufsize(&fh->jpg_settings);
3147 if (jpg_fbuffer_alloc(file)) {
3149 goto v4l2reqbuf_unlock_and_return;
3152 /* The next mmap will map the MJPEG buffers */
3153 if (req->type == V4L2_BUF_TYPE_VIDEO_CAPTURE)
3154 fh->map_mode = ZORAN_MAP_MODE_JPG_REC;
3156 fh->map_mode = ZORAN_MAP_MODE_JPG_PLAY;
3161 "%s: VIDIOC_REQBUFS - unknown type %d\n",
3162 ZR_DEVNAME(zr), req->type);
3164 goto v4l2reqbuf_unlock_and_return;
3166 v4l2reqbuf_unlock_and_return:
3167 mutex_unlock(&zr->resource_lock);
3173 case VIDIOC_QUERYBUF:
3175 struct v4l2_buffer *buf = arg;
3176 __u32 type = buf->type;
3177 int index = buf->index, res;
3181 "%s: VIDIOC_QUERYBUF - index=%d, type=%d\n",
3182 ZR_DEVNAME(zr), buf->index, buf->type);
3184 memset(buf, 0, sizeof(*buf));
3188 mutex_lock(&zr->resource_lock);
3189 res = zoran_v4l2_buffer_status(file, buf, buf->index);
3190 mutex_unlock(&zr->resource_lock);
3198 struct v4l2_buffer *buf = arg;
3199 int res = 0, codec_mode, buf_type;
3202 KERN_DEBUG "%s: VIDIOC_QBUF - type=%d, index=%d\n",
3203 ZR_DEVNAME(zr), buf->type, buf->index);
3205 mutex_lock(&zr->resource_lock);
3207 switch (fh->map_mode) {
3208 case ZORAN_MAP_MODE_RAW:
3209 if (buf->type != V4L2_BUF_TYPE_VIDEO_CAPTURE) {
3212 "%s: VIDIOC_QBUF - invalid buf->type=%d for map_mode=%d\n",
3213 ZR_DEVNAME(zr), buf->type, fh->map_mode);
3215 goto qbuf_unlock_and_return;
3218 res = zoran_v4l_queue_frame(file, buf->index);
3220 goto qbuf_unlock_and_return;
3221 if (!zr->v4l_memgrab_active &&
3222 fh->v4l_buffers.active == ZORAN_LOCKED)
3223 zr36057_set_memgrab(zr, 1);
3226 case ZORAN_MAP_MODE_JPG_REC:
3227 case ZORAN_MAP_MODE_JPG_PLAY:
3228 if (fh->map_mode == ZORAN_MAP_MODE_JPG_PLAY) {
3229 buf_type = V4L2_BUF_TYPE_VIDEO_OUTPUT;
3230 codec_mode = BUZ_MODE_MOTION_DECOMPRESS;
3232 buf_type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
3233 codec_mode = BUZ_MODE_MOTION_COMPRESS;
3236 if (buf->type != buf_type) {
3239 "%s: VIDIOC_QBUF - invalid buf->type=%d for map_mode=%d\n",
3240 ZR_DEVNAME(zr), buf->type, fh->map_mode);
3242 goto qbuf_unlock_and_return;
3246 zoran_jpg_queue_frame(file, buf->index,
3249 goto qbuf_unlock_and_return;
3250 if (zr->codec_mode == BUZ_MODE_IDLE &&
3251 fh->jpg_buffers.active == ZORAN_LOCKED) {
3252 zr36057_enable_jpg(zr, codec_mode);
3259 "%s: VIDIOC_QBUF - unsupported type %d\n",
3260 ZR_DEVNAME(zr), buf->type);
3262 goto qbuf_unlock_and_return;
3264 qbuf_unlock_and_return:
3265 mutex_unlock(&zr->resource_lock);
3273 struct v4l2_buffer *buf = arg;
3274 int res = 0, buf_type, num = -1; /* compiler borks here (?) */
3276 dprintk(3, KERN_DEBUG "%s: VIDIOC_DQBUF - type=%d\n",
3277 ZR_DEVNAME(zr), buf->type);
3279 mutex_lock(&zr->resource_lock);
3281 switch (fh->map_mode) {
3282 case ZORAN_MAP_MODE_RAW:
3283 if (buf->type != V4L2_BUF_TYPE_VIDEO_CAPTURE) {
3286 "%s: VIDIOC_QBUF - invalid buf->type=%d for map_mode=%d\n",
3287 ZR_DEVNAME(zr), buf->type, fh->map_mode);
3289 goto dqbuf_unlock_and_return;
3292 num = zr->v4l_pend[zr->v4l_sync_tail & V4L_MASK_FRAME];
3293 if (file->f_flags & O_NONBLOCK &&
3294 zr->v4l_buffers.buffer[num].state !=
3297 goto dqbuf_unlock_and_return;
3299 res = v4l_sync(file, num);
3301 goto dqbuf_unlock_and_return;
3303 zr->v4l_sync_tail++;
3304 res = zoran_v4l2_buffer_status(file, buf, num);
3307 case ZORAN_MAP_MODE_JPG_REC:
3308 case ZORAN_MAP_MODE_JPG_PLAY:
3310 struct zoran_sync bs;
3312 if (fh->map_mode == ZORAN_MAP_MODE_JPG_PLAY)
3313 buf_type = V4L2_BUF_TYPE_VIDEO_OUTPUT;
3315 buf_type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
3317 if (buf->type != buf_type) {
3320 "%s: VIDIOC_QBUF - invalid buf->type=%d for map_mode=%d\n",
3321 ZR_DEVNAME(zr), buf->type, fh->map_mode);
3323 goto dqbuf_unlock_and_return;
3328 jpg_que_tail & BUZ_MASK_FRAME];
3330 if (file->f_flags & O_NONBLOCK &&
3331 zr->jpg_buffers.buffer[num].state !=
3334 goto dqbuf_unlock_and_return;
3336 res = jpg_sync(file, &bs);
3338 goto dqbuf_unlock_and_return;
3340 zoran_v4l2_buffer_status(file, buf, bs.frame);
3347 "%s: VIDIOC_DQBUF - unsupported type %d\n",
3348 ZR_DEVNAME(zr), buf->type);
3350 goto dqbuf_unlock_and_return;
3352 dqbuf_unlock_and_return:
3353 mutex_unlock(&zr->resource_lock);
3359 case VIDIOC_STREAMON:
3363 dprintk(3, KERN_DEBUG "%s: VIDIOC_STREAMON\n", ZR_DEVNAME(zr));
3365 mutex_lock(&zr->resource_lock);
3367 switch (fh->map_mode) {
3368 case ZORAN_MAP_MODE_RAW: /* raw capture */
3369 if (zr->v4l_buffers.active != ZORAN_ACTIVE ||
3370 fh->v4l_buffers.active != ZORAN_ACTIVE) {
3372 goto strmon_unlock_and_return;
3375 zr->v4l_buffers.active = fh->v4l_buffers.active =
3377 zr->v4l_settings = fh->v4l_settings;
3379 zr->v4l_sync_tail = zr->v4l_pend_tail;
3380 if (!zr->v4l_memgrab_active &&
3381 zr->v4l_pend_head != zr->v4l_pend_tail) {
3382 zr36057_set_memgrab(zr, 1);
3386 case ZORAN_MAP_MODE_JPG_REC:
3387 case ZORAN_MAP_MODE_JPG_PLAY:
3388 /* what is the codec mode right now? */
3389 if (zr->jpg_buffers.active != ZORAN_ACTIVE ||
3390 fh->jpg_buffers.active != ZORAN_ACTIVE) {
3392 goto strmon_unlock_and_return;
3395 zr->jpg_buffers.active = fh->jpg_buffers.active =
3398 if (zr->jpg_que_head != zr->jpg_que_tail) {
3399 /* Start the jpeg codec when the first frame is queued */
3407 "%s: VIDIOC_STREAMON - invalid map mode %d\n",
3408 ZR_DEVNAME(zr), fh->map_mode);
3410 goto strmon_unlock_and_return;
3412 strmon_unlock_and_return:
3413 mutex_unlock(&zr->resource_lock);
3419 case VIDIOC_STREAMOFF:
3423 dprintk(3, KERN_DEBUG "%s: VIDIOC_STREAMOFF\n", ZR_DEVNAME(zr));
3425 mutex_lock(&zr->resource_lock);
3427 switch (fh->map_mode) {
3428 case ZORAN_MAP_MODE_RAW: /* raw capture */
3429 if (fh->v4l_buffers.active == ZORAN_FREE &&
3430 zr->v4l_buffers.active != ZORAN_FREE) {
3431 res = -EPERM; /* stay off other's settings! */
3432 goto strmoff_unlock_and_return;
3434 if (zr->v4l_buffers.active == ZORAN_FREE)
3435 goto strmoff_unlock_and_return;
3437 /* unload capture */
3438 if (zr->v4l_memgrab_active) {
3439 unsigned long flags;
3441 spin_lock_irqsave(&zr->spinlock, flags);
3442 zr36057_set_memgrab(zr, 0);
3443 spin_unlock_irqrestore(&zr->spinlock, flags);
3446 for (i = 0; i < fh->v4l_buffers.num_buffers; i++)
3447 zr->v4l_buffers.buffer[i].state =
3449 fh->v4l_buffers = zr->v4l_buffers;
3451 zr->v4l_buffers.active = fh->v4l_buffers.active =
3454 zr->v4l_grab_seq = 0;
3455 zr->v4l_pend_head = zr->v4l_pend_tail = 0;
3456 zr->v4l_sync_tail = 0;
3460 case ZORAN_MAP_MODE_JPG_REC:
3461 case ZORAN_MAP_MODE_JPG_PLAY:
3462 if (fh->jpg_buffers.active == ZORAN_FREE &&
3463 zr->jpg_buffers.active != ZORAN_FREE) {
3464 res = -EPERM; /* stay off other's settings! */
3465 goto strmoff_unlock_and_return;
3467 if (zr->jpg_buffers.active == ZORAN_FREE)
3468 goto strmoff_unlock_and_return;
3473 ZORAN_MAP_MODE_JPG_REC) ?
3474 BUZ_MODE_MOTION_COMPRESS :
3475 BUZ_MODE_MOTION_DECOMPRESS);
3477 goto strmoff_unlock_and_return;
3482 "%s: VIDIOC_STREAMOFF - invalid map mode %d\n",
3483 ZR_DEVNAME(zr), fh->map_mode);
3485 goto strmoff_unlock_and_return;
3487 strmoff_unlock_and_return:
3488 mutex_unlock(&zr->resource_lock);
3494 case VIDIOC_QUERYCTRL:
3496 struct v4l2_queryctrl *ctrl = arg;
3498 dprintk(3, KERN_DEBUG "%s: VIDIOC_QUERYCTRL - id=%d\n",
3499 ZR_DEVNAME(zr), ctrl->id);
3501 /* we only support hue/saturation/contrast/brightness */
3502 if (ctrl->id < V4L2_CID_BRIGHTNESS ||
3503 ctrl->id > V4L2_CID_HUE)
3507 memset(ctrl, 0, sizeof(*ctrl));
3512 case V4L2_CID_BRIGHTNESS:
3513 strncpy(ctrl->name, "Brightness", sizeof(ctrl->name)-1);
3515 case V4L2_CID_CONTRAST:
3516 strncpy(ctrl->name, "Contrast", sizeof(ctrl->name)-1);
3518 case V4L2_CID_SATURATION:
3519 strncpy(ctrl->name, "Saturation", sizeof(ctrl->name)-1);
3522 strncpy(ctrl->name, "Hue", sizeof(ctrl->name)-1);
3527 ctrl->maximum = 65535;
3529 ctrl->default_value = 32768;
3530 ctrl->type = V4L2_CTRL_TYPE_INTEGER;
3538 struct v4l2_control *ctrl = arg;
3540 dprintk(3, KERN_DEBUG "%s: VIDIOC_G_CTRL - id=%d\n",
3541 ZR_DEVNAME(zr), ctrl->id);
3543 /* we only support hue/saturation/contrast/brightness */
3544 if (ctrl->id < V4L2_CID_BRIGHTNESS ||
3545 ctrl->id > V4L2_CID_HUE)
3548 mutex_lock(&zr->resource_lock);
3550 case V4L2_CID_BRIGHTNESS:
3551 ctrl->value = zr->brightness;
3553 case V4L2_CID_CONTRAST:
3554 ctrl->value = zr->contrast;
3556 case V4L2_CID_SATURATION:
3557 ctrl->value = zr->saturation;
3560 ctrl->value = zr->hue;
3563 mutex_unlock(&zr->resource_lock);
3571 struct v4l2_control *ctrl = arg;
3572 struct video_picture pict;
3574 dprintk(3, KERN_DEBUG "%s: VIDIOC_S_CTRL - id=%d\n",
3575 ZR_DEVNAME(zr), ctrl->id);
3577 /* we only support hue/saturation/contrast/brightness */
3578 if (ctrl->id < V4L2_CID_BRIGHTNESS ||
3579 ctrl->id > V4L2_CID_HUE)
3582 if (ctrl->value < 0 || ctrl->value > 65535) {
3585 "%s: VIDIOC_S_CTRL - invalid value %d for id=%d\n",
3586 ZR_DEVNAME(zr), ctrl->value, ctrl->id);
3590 mutex_lock(&zr->resource_lock);
3592 case V4L2_CID_BRIGHTNESS:
3593 zr->brightness = ctrl->value;
3595 case V4L2_CID_CONTRAST:
3596 zr->contrast = ctrl->value;
3598 case V4L2_CID_SATURATION:
3599 zr->saturation = ctrl->value;
3602 zr->hue = ctrl->value;
3605 pict.brightness = zr->brightness;
3606 pict.contrast = zr->contrast;
3607 pict.colour = zr->saturation;
3610 decoder_command(zr, DECODER_SET_PICTURE, &pict);
3612 mutex_unlock(&zr->resource_lock);
3618 case VIDIOC_ENUMSTD:
3620 struct v4l2_standard *std = arg;
3622 dprintk(3, KERN_DEBUG "%s: VIDIOC_ENUMSTD - index=%d\n",
3623 ZR_DEVNAME(zr), std->index);
3625 if (std->index < 0 || std->index >= (zr->card.norms + 1))
3628 int id = std->index;
3629 memset(std, 0, sizeof(*std));
3633 if (std->index == zr->card.norms) {
3634 /* if we have autodetect, ... */
3635 struct video_decoder_capability caps;
3636 decoder_command(zr, DECODER_GET_CAPABILITIES,
3638 if (caps.flags & VIDEO_DECODER_AUTO) {
3639 std->id = V4L2_STD_ALL;
3640 strncpy(std->name, "Autodetect", sizeof(std->name)-1);
3645 switch (std->index) {
3647 std->id = V4L2_STD_PAL;
3648 strncpy(std->name, "PAL", sizeof(std->name)-1);
3649 std->frameperiod.numerator = 1;
3650 std->frameperiod.denominator = 25;
3651 std->framelines = zr->card.tvn[0]->Ht;
3654 std->id = V4L2_STD_NTSC;
3655 strncpy(std->name, "NTSC", sizeof(std->name)-1);
3656 std->frameperiod.numerator = 1001;
3657 std->frameperiod.denominator = 30000;
3658 std->framelines = zr->card.tvn[1]->Ht;
3661 std->id = V4L2_STD_SECAM;
3662 strncpy(std->name, "SECAM", sizeof(std->name)-1);
3663 std->frameperiod.numerator = 1;
3664 std->frameperiod.denominator = 25;
3665 std->framelines = zr->card.tvn[2]->Ht;
3675 v4l2_std_id *std = arg;
3678 dprintk(3, KERN_DEBUG "%s: VIDIOC_G_STD\n", ZR_DEVNAME(zr));
3680 mutex_lock(&zr->resource_lock);
3682 mutex_unlock(&zr->resource_lock);
3685 case VIDEO_MODE_PAL:
3686 *std = V4L2_STD_PAL;
3688 case VIDEO_MODE_NTSC:
3689 *std = V4L2_STD_NTSC;
3691 case VIDEO_MODE_SECAM:
3692 *std = V4L2_STD_SECAM;
3702 int norm = -1, res = 0;
3703 v4l2_std_id *std = arg;
3705 dprintk(3, KERN_DEBUG "%s: VIDIOC_S_STD - norm=0x%llx\n",
3706 ZR_DEVNAME(zr), (unsigned long long)*std);
3708 if ((*std & V4L2_STD_PAL) && !(*std & ~V4L2_STD_PAL))
3709 norm = VIDEO_MODE_PAL;
3710 else if ((*std & V4L2_STD_NTSC) && !(*std & ~V4L2_STD_NTSC))
3711 norm = VIDEO_MODE_NTSC;
3712 else if ((*std & V4L2_STD_SECAM) && !(*std & ~V4L2_STD_SECAM))
3713 norm = VIDEO_MODE_SECAM;
3714 else if (*std == V4L2_STD_ALL)
3715 norm = VIDEO_MODE_AUTO;
3719 "%s: VIDIOC_S_STD - invalid norm 0x%llx\n",
3720 ZR_DEVNAME(zr), (unsigned long long)*std);
3724 mutex_lock(&zr->resource_lock);
3725 if ((res = zoran_set_norm(zr, norm)))
3726 goto sstd_unlock_and_return;
3728 res = wait_grab_pending(zr);
3729 sstd_unlock_and_return:
3730 mutex_unlock(&zr->resource_lock);
3735 case VIDIOC_ENUMINPUT:
3737 struct v4l2_input *inp = arg;
3740 dprintk(3, KERN_DEBUG "%s: VIDIOC_ENUMINPUT - index=%d\n",
3741 ZR_DEVNAME(zr), inp->index);
3743 if (inp->index < 0 || inp->index >= zr->card.inputs)
3746 int id = inp->index;
3747 memset(inp, 0, sizeof(*inp));
3751 strncpy(inp->name, zr->card.input[inp->index].name,
3752 sizeof(inp->name) - 1);
3753 inp->type = V4L2_INPUT_TYPE_CAMERA;
3754 inp->std = V4L2_STD_ALL;
3756 /* Get status of video decoder */
3757 mutex_lock(&zr->resource_lock);
3758 decoder_command(zr, DECODER_GET_STATUS, &status);
3759 mutex_unlock(&zr->resource_lock);
3761 if (!(status & DECODER_STATUS_GOOD)) {
3762 inp->status |= V4L2_IN_ST_NO_POWER;
3763 inp->status |= V4L2_IN_ST_NO_SIGNAL;
3765 if (!(status & DECODER_STATUS_COLOR))
3766 inp->status |= V4L2_IN_ST_NO_COLOR;
3772 case VIDIOC_G_INPUT:
3776 dprintk(3, KERN_DEBUG "%s: VIDIOC_G_INPUT\n", ZR_DEVNAME(zr));
3778 mutex_lock(&zr->resource_lock);
3780 mutex_unlock(&zr->resource_lock);
3786 case VIDIOC_S_INPUT:
3788 int *input = arg, res = 0;
3790 dprintk(3, KERN_DEBUG "%s: VIDIOC_S_INPUT - input=%d\n",
3791 ZR_DEVNAME(zr), *input);
3793 mutex_lock(&zr->resource_lock);
3794 if ((res = zoran_set_input(zr, *input)))
3795 goto sinput_unlock_and_return;
3797 /* Make sure the changes come into effect */
3798 res = wait_grab_pending(zr);
3799 sinput_unlock_and_return:
3800 mutex_unlock(&zr->resource_lock);
3805 case VIDIOC_ENUMOUTPUT:
3807 struct v4l2_output *outp = arg;
3809 dprintk(3, KERN_DEBUG "%s: VIDIOC_ENUMOUTPUT - index=%d\n",
3810 ZR_DEVNAME(zr), outp->index);
3812 if (outp->index != 0)
3815 memset(outp, 0, sizeof(*outp));
3817 outp->type = V4L2_OUTPUT_TYPE_ANALOGVGAOVERLAY;
3818 strncpy(outp->name, "Autodetect", sizeof(outp->name)-1);
3824 case VIDIOC_G_OUTPUT:
3828 dprintk(3, KERN_DEBUG "%s: VIDIOC_G_OUTPUT\n", ZR_DEVNAME(zr));
3836 case VIDIOC_S_OUTPUT:
3840 dprintk(3, KERN_DEBUG "%s: VIDIOC_S_OUTPUT - output=%d\n",
3841 ZR_DEVNAME(zr), *output);
3850 /* cropping (sub-frame capture) */
3851 case VIDIOC_CROPCAP:
3853 struct v4l2_cropcap *cropcap = arg;
3854 int type = cropcap->type, res = 0;
3856 dprintk(3, KERN_ERR "%s: VIDIOC_CROPCAP - type=%d\n",
3857 ZR_DEVNAME(zr), cropcap->type);
3859 memset(cropcap, 0, sizeof(*cropcap));
3860 cropcap->type = type;
3862 mutex_lock(&zr->resource_lock);
3864 if (cropcap->type != V4L2_BUF_TYPE_VIDEO_OUTPUT &&
3865 (cropcap->type != V4L2_BUF_TYPE_VIDEO_CAPTURE ||
3866 fh->map_mode == ZORAN_MAP_MODE_RAW)) {
3869 "%s: VIDIOC_CROPCAP - subcapture only supported for compressed capture\n",
3872 goto cropcap_unlock_and_return;
3875 cropcap->bounds.top = cropcap->bounds.left = 0;
3876 cropcap->bounds.width = BUZ_MAX_WIDTH;
3877 cropcap->bounds.height = BUZ_MAX_HEIGHT;
3878 cropcap->defrect.top = cropcap->defrect.left = 0;
3879 cropcap->defrect.width = BUZ_MIN_WIDTH;
3880 cropcap->defrect.height = BUZ_MIN_HEIGHT;
3881 cropcap_unlock_and_return:
3882 mutex_unlock(&zr->resource_lock);
3889 struct v4l2_crop *crop = arg;
3890 int type = crop->type, res = 0;
3892 dprintk(3, KERN_ERR "%s: VIDIOC_G_CROP - type=%d\n",
3893 ZR_DEVNAME(zr), crop->type);
3895 memset(crop, 0, sizeof(*crop));
3898 mutex_lock(&zr->resource_lock);
3900 if (crop->type != V4L2_BUF_TYPE_VIDEO_OUTPUT &&
3901 (crop->type != V4L2_BUF_TYPE_VIDEO_CAPTURE ||
3902 fh->map_mode == ZORAN_MAP_MODE_RAW)) {
3905 "%s: VIDIOC_G_CROP - subcapture only supported for compressed capture\n",
3908 goto gcrop_unlock_and_return;
3911 crop->c.top = fh->jpg_settings.img_y;
3912 crop->c.left = fh->jpg_settings.img_x;
3913 crop->c.width = fh->jpg_settings.img_width;
3914 crop->c.height = fh->jpg_settings.img_height;
3916 gcrop_unlock_and_return:
3917 mutex_unlock(&zr->resource_lock);
3925 struct v4l2_crop *crop = arg;
3928 settings = fh->jpg_settings;
3932 "%s: VIDIOC_S_CROP - type=%d, x=%d,y=%d,w=%d,h=%d\n",
3933 ZR_DEVNAME(zr), crop->type, crop->c.left, crop->c.top,
3934 crop->c.width, crop->c.height);
3936 mutex_lock(&zr->resource_lock);
3938 if (fh->jpg_buffers.allocated || fh->v4l_buffers.allocated) {
3941 "%s: VIDIOC_S_CROP - cannot change settings while active\n",
3944 goto scrop_unlock_and_return;
3947 if (crop->type != V4L2_BUF_TYPE_VIDEO_OUTPUT &&
3948 (crop->type != V4L2_BUF_TYPE_VIDEO_CAPTURE ||
3949 fh->map_mode == ZORAN_MAP_MODE_RAW)) {
3952 "%s: VIDIOC_G_CROP - subcapture only supported for compressed capture\n",
3955 goto scrop_unlock_and_return;
3958 /* move into a form that we understand */
3959 settings.img_x = crop->c.left;
3960 settings.img_y = crop->c.top;
3961 settings.img_width = crop->c.width;
3962 settings.img_height = crop->c.height;
3964 /* check validity */
3965 if ((res = zoran_check_jpg_settings(zr, &settings)))
3966 goto scrop_unlock_and_return;
3969 fh->jpg_settings = settings;
3971 scrop_unlock_and_return:
3972 mutex_unlock(&zr->resource_lock);
3977 case VIDIOC_G_JPEGCOMP:
3979 struct v4l2_jpegcompression *params = arg;
3981 dprintk(3, KERN_DEBUG "%s: VIDIOC_G_JPEGCOMP\n",
3984 memset(params, 0, sizeof(*params));
3986 mutex_lock(&zr->resource_lock);
3988 params->quality = fh->jpg_settings.jpg_comp.quality;
3989 params->APPn = fh->jpg_settings.jpg_comp.APPn;
3990 memcpy(params->APP_data,
3991 fh->jpg_settings.jpg_comp.APP_data,
3992 fh->jpg_settings.jpg_comp.APP_len);
3993 params->APP_len = fh->jpg_settings.jpg_comp.APP_len;
3994 memcpy(params->COM_data,
3995 fh->jpg_settings.jpg_comp.COM_data,
3996 fh->jpg_settings.jpg_comp.COM_len);
3997 params->COM_len = fh->jpg_settings.jpg_comp.COM_len;
3998 params->jpeg_markers =
3999 fh->jpg_settings.jpg_comp.jpeg_markers;
4001 mutex_unlock(&zr->resource_lock);
4007 case VIDIOC_S_JPEGCOMP:
4009 struct v4l2_jpegcompression *params = arg;
4012 settings = fh->jpg_settings;
4016 "%s: VIDIOC_S_JPEGCOMP - quality=%d, APPN=%d, APP_len=%d, COM_len=%d\n",
4017 ZR_DEVNAME(zr), params->quality, params->APPn,
4018 params->APP_len, params->COM_len);
4020 settings.jpg_comp = *params;
4022 mutex_lock(&zr->resource_lock);
4024 if (fh->v4l_buffers.active != ZORAN_FREE ||
4025 fh->jpg_buffers.active != ZORAN_FREE) {
4028 "%s: VIDIOC_S_JPEGCOMP called while in playback/capture mode\n",
4031 goto sjpegc_unlock_and_return;
4034 if ((res = zoran_check_jpg_settings(zr, &settings)))
4035 goto sjpegc_unlock_and_return;
4036 if (!fh->jpg_buffers.allocated)
4037 fh->jpg_buffers.buffer_size =
4038 zoran_v4l2_calc_bufsize(&fh->jpg_settings);
4039 fh->jpg_settings.jpg_comp = *params = settings.jpg_comp;
4040 sjpegc_unlock_and_return:
4041 mutex_unlock(&zr->resource_lock);
4047 case VIDIOC_QUERYSTD: /* why is this useful? */
4049 v4l2_std_id *std = arg;
4052 KERN_DEBUG "%s: VIDIOC_QUERY_STD - std=0x%llx\n",
4053 ZR_DEVNAME(zr), (unsigned long long)*std);
4055 if (*std == V4L2_STD_ALL || *std == V4L2_STD_NTSC ||
4056 *std == V4L2_STD_PAL || (*std == V4L2_STD_SECAM &&
4057 zr->card.norms == 3)) {
4065 case VIDIOC_TRY_FMT:
4067 struct v4l2_format *fmt = arg;
4070 dprintk(3, KERN_DEBUG "%s: VIDIOC_TRY_FMT - type=%d\n",
4071 ZR_DEVNAME(zr), fmt->type);
4073 switch (fmt->type) {
4074 case V4L2_BUF_TYPE_VIDEO_OVERLAY:
4075 mutex_lock(&zr->resource_lock);
4077 if (fmt->fmt.win.w.width > BUZ_MAX_WIDTH)
4078 fmt->fmt.win.w.width = BUZ_MAX_WIDTH;
4079 if (fmt->fmt.win.w.width < BUZ_MIN_WIDTH)
4080 fmt->fmt.win.w.width = BUZ_MIN_WIDTH;
4081 if (fmt->fmt.win.w.height > BUZ_MAX_HEIGHT)
4082 fmt->fmt.win.w.height = BUZ_MAX_HEIGHT;
4083 if (fmt->fmt.win.w.height < BUZ_MIN_HEIGHT)
4084 fmt->fmt.win.w.height = BUZ_MIN_HEIGHT;
4086 mutex_unlock(&zr->resource_lock);
4089 case V4L2_BUF_TYPE_VIDEO_CAPTURE:
4090 case V4L2_BUF_TYPE_VIDEO_OUTPUT:
4091 if (fmt->fmt.pix.bytesperline > 0)
4094 mutex_lock(&zr->resource_lock);
4096 if (fmt->fmt.pix.pixelformat == V4L2_PIX_FMT_MJPEG) {
4097 settings = fh->jpg_settings;
4099 /* we actually need to set 'real' parameters now */
4100 if ((fmt->fmt.pix.height * 2) >
4102 settings.TmpDcm = 1;
4104 settings.TmpDcm = 2;
4105 settings.decimation = 0;
4106 if (fmt->fmt.pix.height <=
4107 fh->jpg_settings.img_height / 2)
4108 settings.VerDcm = 2;
4110 settings.VerDcm = 1;
4111 if (fmt->fmt.pix.width <=
4112 fh->jpg_settings.img_width / 4)
4113 settings.HorDcm = 4;
4114 else if (fmt->fmt.pix.width <=
4115 fh->jpg_settings.img_width / 2)
4116 settings.HorDcm = 2;
4118 settings.HorDcm = 1;
4119 if (settings.TmpDcm == 1)
4120 settings.field_per_buff = 2;
4122 settings.field_per_buff = 1;
4126 zoran_check_jpg_settings(zr,
4128 goto tryfmt_unlock_and_return;
4130 /* tell the user what we actually did */
4131 fmt->fmt.pix.width =
4132 settings.img_width / settings.HorDcm;
4133 fmt->fmt.pix.height =
4134 settings.img_height * 2 /
4135 (settings.TmpDcm * settings.VerDcm);
4136 if (settings.TmpDcm == 1)
4137 fmt->fmt.pix.field =
4139 odd_even ? V4L2_FIELD_SEQ_TB :
4142 fmt->fmt.pix.field =
4144 odd_even ? V4L2_FIELD_TOP :
4147 fmt->fmt.pix.sizeimage =
4148 zoran_v4l2_calc_bufsize(&settings);
4149 } else if (fmt->type ==
4150 V4L2_BUF_TYPE_VIDEO_CAPTURE) {
4153 for (i = 0; i < NUM_FORMATS; i++)
4154 if (zoran_formats[i].fourcc ==
4155 fmt->fmt.pix.pixelformat)
4157 if (i == NUM_FORMATS) {
4159 goto tryfmt_unlock_and_return;
4162 if (fmt->fmt.pix.width > BUZ_MAX_WIDTH)
4163 fmt->fmt.pix.width = BUZ_MAX_WIDTH;
4164 if (fmt->fmt.pix.width < BUZ_MIN_WIDTH)
4165 fmt->fmt.pix.width = BUZ_MIN_WIDTH;
4166 if (fmt->fmt.pix.height > BUZ_MAX_HEIGHT)
4167 fmt->fmt.pix.height =
4169 if (fmt->fmt.pix.height < BUZ_MIN_HEIGHT)
4170 fmt->fmt.pix.height =
4174 goto tryfmt_unlock_and_return;
4176 tryfmt_unlock_and_return:
4177 mutex_unlock(&zr->resource_lock);
4191 dprintk(1, KERN_DEBUG "%s: UNKNOWN ioctl cmd: 0x%x\n",
4192 ZR_DEVNAME(zr), cmd);
4193 return -ENOIOCTLCMD;
4202 zoran_ioctl (struct inode *inode,
4207 return video_usercopy(inode, file, cmd, arg, zoran_do_ioctl);
4211 zoran_poll (struct file *file,
4214 struct zoran_fh *fh = file->private_data;
4215 struct zoran *zr = fh->zr;
4217 unsigned long flags;
4219 /* we should check whether buffers are ready to be synced on
4220 * (w/o waits - O_NONBLOCK) here
4221 * if ready for read (sync), return POLLIN|POLLRDNORM,
4222 * if ready for write (sync), return POLLOUT|POLLWRNORM,
4223 * if error, return POLLERR,
4224 * if no buffers queued or so, return POLLNVAL
4227 mutex_lock(&zr->resource_lock);
4229 switch (fh->map_mode) {
4230 case ZORAN_MAP_MODE_RAW:
4231 poll_wait(file, &zr->v4l_capq, wait);
4232 frame = zr->v4l_pend[zr->v4l_sync_tail & V4L_MASK_FRAME];
4234 spin_lock_irqsave(&zr->spinlock, flags);
4237 "%s: %s() raw - active=%c, sync_tail=%lu/%c, pend_tail=%lu, pend_head=%lu\n",
4238 ZR_DEVNAME(zr), __func__,
4239 "FAL"[fh->v4l_buffers.active], zr->v4l_sync_tail,
4240 "UPMD"[zr->v4l_buffers.buffer[frame].state],
4241 zr->v4l_pend_tail, zr->v4l_pend_head);
4242 /* Process is the one capturing? */
4243 if (fh->v4l_buffers.active != ZORAN_FREE &&
4244 /* Buffer ready to DQBUF? */
4245 zr->v4l_buffers.buffer[frame].state == BUZ_STATE_DONE)
4246 res = POLLIN | POLLRDNORM;
4247 spin_unlock_irqrestore(&zr->spinlock, flags);
4251 case ZORAN_MAP_MODE_JPG_REC:
4252 case ZORAN_MAP_MODE_JPG_PLAY:
4253 poll_wait(file, &zr->jpg_capq, wait);
4254 frame = zr->jpg_pend[zr->jpg_que_tail & BUZ_MASK_FRAME];
4256 spin_lock_irqsave(&zr->spinlock, flags);
4259 "%s: %s() jpg - active=%c, que_tail=%lu/%c, que_head=%lu, dma=%lu/%lu\n",
4260 ZR_DEVNAME(zr), __func__,
4261 "FAL"[fh->jpg_buffers.active], zr->jpg_que_tail,
4262 "UPMD"[zr->jpg_buffers.buffer[frame].state],
4263 zr->jpg_que_head, zr->jpg_dma_tail, zr->jpg_dma_head);
4264 if (fh->jpg_buffers.active != ZORAN_FREE &&
4265 zr->jpg_buffers.buffer[frame].state == BUZ_STATE_DONE) {
4266 if (fh->map_mode == ZORAN_MAP_MODE_JPG_REC)
4267 res = POLLIN | POLLRDNORM;
4269 res = POLLOUT | POLLWRNORM;
4271 spin_unlock_irqrestore(&zr->spinlock, flags);
4278 "%s: zoran_poll() - internal error, unknown map_mode=%d\n",
4279 ZR_DEVNAME(zr), fh->map_mode);
4283 mutex_unlock(&zr->resource_lock);
4290 * This maps the buffers to user space.
4292 * Depending on the state of fh->map_mode
4293 * the V4L or the MJPEG buffers are mapped
4294 * per buffer or all together
4296 * Note that we need to connect to some
4297 * unmap signal event to unmap the de-allocate
4298 * the buffer accordingly (zoran_vm_close())
4302 zoran_vm_open (struct vm_area_struct *vma)
4304 struct zoran_mapping *map = vma->vm_private_data;
4310 zoran_vm_close (struct vm_area_struct *vma)
4312 struct zoran_mapping *map = vma->vm_private_data;
4313 struct file *file = map->file;
4314 struct zoran_fh *fh = file->private_data;
4315 struct zoran *zr = fh->zr;
4319 if (map->count == 0) {
4320 switch (fh->map_mode) {
4321 case ZORAN_MAP_MODE_JPG_REC:
4322 case ZORAN_MAP_MODE_JPG_PLAY:
4324 dprintk(3, KERN_INFO "%s: munmap(MJPEG)\n",
4327 for (i = 0; i < fh->jpg_buffers.num_buffers; i++) {
4328 if (fh->jpg_buffers.buffer[i].map == map) {
4329 fh->jpg_buffers.buffer[i].map =
4335 for (i = 0; i < fh->jpg_buffers.num_buffers; i++)
4336 if (fh->jpg_buffers.buffer[i].map)
4338 if (i == fh->jpg_buffers.num_buffers) {
4339 mutex_lock(&zr->resource_lock);
4341 if (fh->jpg_buffers.active != ZORAN_FREE) {
4342 jpg_qbuf(file, -1, zr->codec_mode);
4343 zr->jpg_buffers.allocated = 0;
4344 zr->jpg_buffers.active =
4345 fh->jpg_buffers.active =
4348 //jpg_fbuffer_free(file);
4349 fh->jpg_buffers.allocated = 0;
4350 fh->jpg_buffers.ready_to_be_freed = 1;
4352 mutex_unlock(&zr->resource_lock);
4357 case ZORAN_MAP_MODE_RAW:
4359 dprintk(3, KERN_INFO "%s: munmap(V4L)\n",
4362 for (i = 0; i < fh->v4l_buffers.num_buffers; i++) {
4363 if (fh->v4l_buffers.buffer[i].map == map) {
4365 fh->v4l_buffers.buffer[i].map =
4371 for (i = 0; i < fh->v4l_buffers.num_buffers; i++)
4372 if (fh->v4l_buffers.buffer[i].map)
4374 if (i == fh->v4l_buffers.num_buffers) {
4375 mutex_lock(&zr->resource_lock);
4377 if (fh->v4l_buffers.active != ZORAN_FREE) {
4378 unsigned long flags;
4380 spin_lock_irqsave(&zr->spinlock, flags);
4381 zr36057_set_memgrab(zr, 0);
4382 zr->v4l_buffers.allocated = 0;
4383 zr->v4l_buffers.active =
4384 fh->v4l_buffers.active =
4386 spin_unlock_irqrestore(&zr->spinlock, flags);
4388 //v4l_fbuffer_free(file);
4389 fh->v4l_buffers.allocated = 0;
4390 fh->v4l_buffers.ready_to_be_freed = 1;
4392 mutex_unlock(&zr->resource_lock);
4399 "%s: munmap() - internal error - unknown map mode %d\n",
4400 ZR_DEVNAME(zr), fh->map_mode);
4407 static struct vm_operations_struct zoran_vm_ops = {
4408 .open = zoran_vm_open,
4409 .close = zoran_vm_close,
4413 zoran_mmap (struct file *file,
4414 struct vm_area_struct *vma)
4416 struct zoran_fh *fh = file->private_data;
4417 struct zoran *zr = fh->zr;
4418 unsigned long size = (vma->vm_end - vma->vm_start);
4419 unsigned long offset = vma->vm_pgoff << PAGE_SHIFT;
4421 unsigned long page, start = vma->vm_start, todo, pos, fraglen;
4423 struct zoran_mapping *map;
4427 KERN_INFO "%s: mmap(%s) of 0x%08lx-0x%08lx (size=%lu)\n",
4429 fh->map_mode == ZORAN_MAP_MODE_RAW ? "V4L" : "MJPEG",
4430 vma->vm_start, vma->vm_end, size);
4432 if (!(vma->vm_flags & VM_SHARED) || !(vma->vm_flags & VM_READ) ||
4433 !(vma->vm_flags & VM_WRITE)) {
4436 "%s: mmap() - no MAP_SHARED/PROT_{READ,WRITE} given\n",
4441 switch (fh->map_mode) {
4443 case ZORAN_MAP_MODE_JPG_REC:
4444 case ZORAN_MAP_MODE_JPG_PLAY:
4447 mutex_lock(&zr->resource_lock);
4449 /* Map the MJPEG buffers */
4450 if (!fh->jpg_buffers.allocated) {
4453 "%s: zoran_mmap(MJPEG) - buffers not yet allocated\n",
4456 goto jpg_mmap_unlock_and_return;
4459 first = offset / fh->jpg_buffers.buffer_size;
4460 last = first - 1 + size / fh->jpg_buffers.buffer_size;
4461 if (offset % fh->jpg_buffers.buffer_size != 0 ||
4462 size % fh->jpg_buffers.buffer_size != 0 || first < 0 ||
4463 last < 0 || first >= fh->jpg_buffers.num_buffers ||
4464 last >= fh->jpg_buffers.num_buffers) {
4467 "%s: mmap(MJPEG) - offset=%lu or size=%lu invalid for bufsize=%d and numbufs=%d\n",
4468 ZR_DEVNAME(zr), offset, size,
4469 fh->jpg_buffers.buffer_size,
4470 fh->jpg_buffers.num_buffers);
4472 goto jpg_mmap_unlock_and_return;
4474 for (i = first; i <= last; i++) {
4475 if (fh->jpg_buffers.buffer[i].map) {
4478 "%s: mmap(MJPEG) - buffer %d already mapped\n",
4481 goto jpg_mmap_unlock_and_return;
4485 /* map these buffers (v4l_buffers[i]) */
4486 map = kmalloc(sizeof(struct zoran_mapping), GFP_KERNEL);
4489 goto jpg_mmap_unlock_and_return;
4494 vma->vm_ops = &zoran_vm_ops;
4495 vma->vm_flags |= VM_DONTEXPAND;
4496 vma->vm_private_data = map;
4498 for (i = first; i <= last; i++) {
4500 j < fh->jpg_buffers.buffer_size / PAGE_SIZE;
4503 (le32_to_cpu(fh->jpg_buffers.buffer[i].
4504 frag_tab[2 * j + 1]) & ~1) << 1;
4509 le32_to_cpu(fh->jpg_buffers.
4510 buffer[i].frag_tab[2 * j]);
4511 /* should just be pos on i386 */
4512 page = virt_to_phys(bus_to_virt(pos))
4514 if (remap_pfn_range(vma, start, page,
4515 todo, PAGE_SHARED)) {
4518 "%s: zoran_mmap(V4L) - remap_pfn_range failed\n",
4521 goto jpg_mmap_unlock_and_return;
4527 if (le32_to_cpu(fh->jpg_buffers.buffer[i].
4528 frag_tab[2 * j + 1]) & 1)
4529 break; /* was last fragment */
4531 fh->jpg_buffers.buffer[i].map = map;
4536 jpg_mmap_unlock_and_return:
4537 mutex_unlock(&zr->resource_lock);
4541 case ZORAN_MAP_MODE_RAW:
4543 mutex_lock(&zr->resource_lock);
4545 /* Map the V4L buffers */
4546 if (!fh->v4l_buffers.allocated) {
4549 "%s: zoran_mmap(V4L) - buffers not yet allocated\n",
4552 goto v4l_mmap_unlock_and_return;
4555 first = offset / fh->v4l_buffers.buffer_size;
4556 last = first - 1 + size / fh->v4l_buffers.buffer_size;
4557 if (offset % fh->v4l_buffers.buffer_size != 0 ||
4558 size % fh->v4l_buffers.buffer_size != 0 || first < 0 ||
4559 last < 0 || first >= fh->v4l_buffers.num_buffers ||
4560 last >= fh->v4l_buffers.buffer_size) {
4563 "%s: mmap(V4L) - offset=%lu or size=%lu invalid for bufsize=%d and numbufs=%d\n",
4564 ZR_DEVNAME(zr), offset, size,
4565 fh->v4l_buffers.buffer_size,
4566 fh->v4l_buffers.num_buffers);
4568 goto v4l_mmap_unlock_and_return;
4570 for (i = first; i <= last; i++) {
4571 if (fh->v4l_buffers.buffer[i].map) {
4574 "%s: mmap(V4L) - buffer %d already mapped\n",
4577 goto v4l_mmap_unlock_and_return;
4581 /* map these buffers (v4l_buffers[i]) */
4582 map = kmalloc(sizeof(struct zoran_mapping), GFP_KERNEL);
4585 goto v4l_mmap_unlock_and_return;
4590 vma->vm_ops = &zoran_vm_ops;
4591 vma->vm_flags |= VM_DONTEXPAND;
4592 vma->vm_private_data = map;
4594 for (i = first; i <= last; i++) {
4596 if (todo > fh->v4l_buffers.buffer_size)
4597 todo = fh->v4l_buffers.buffer_size;
4598 page = fh->v4l_buffers.buffer[i].fbuffer_phys;
4599 if (remap_pfn_range(vma, start, page >> PAGE_SHIFT,
4600 todo, PAGE_SHARED)) {
4603 "%s: zoran_mmap(V4L)i - remap_pfn_range failed\n",
4606 goto v4l_mmap_unlock_and_return;
4610 fh->v4l_buffers.buffer[i].map = map;
4614 v4l_mmap_unlock_and_return:
4615 mutex_unlock(&zr->resource_lock);
4622 "%s: zoran_mmap() - internal error - unknown map mode %d\n",
4623 ZR_DEVNAME(zr), fh->map_mode);
4630 static const struct file_operations zoran_fops = {
4631 .owner = THIS_MODULE,
4633 .release = zoran_close,
4634 .ioctl = zoran_ioctl,
4635 #ifdef CONFIG_COMPAT
4636 .compat_ioctl = v4l_compat_ioctl32,
4638 .llseek = no_llseek,
4640 .write = zoran_write,
4645 struct video_device zoran_template __devinitdata = {
4647 .type = ZORAN_VID_TYPE,
4648 .type2 = ZORAN_V4L2_VID_FLAGS,
4649 .fops = &zoran_fops,
4650 .release = &zoran_vdev_release,