V4L/DVB (8050): Add register get/set debug ioctls to saa7134
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / media / video / saa7134 / saa7134-video.c
blob1a5137550e7a8bafe217c91d637fba3fa9ca2b55
1 /*
3 * device driver for philips saa7134 based TV cards
4 * video4linux video interface
6 * (c) 2001-03 Gerd Knorr <kraxel@bytesex.org> [SuSE Labs]
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23 #include <linux/init.h>
24 #include <linux/list.h>
25 #include <linux/module.h>
26 #include <linux/kernel.h>
27 #include <linux/slab.h>
28 #include <linux/sort.h>
30 #include "saa7134-reg.h"
31 #include "saa7134.h"
32 #include <media/v4l2-common.h>
34 #ifdef CONFIG_VIDEO_V4L1_COMPAT
35 /* Include V4L1 specific functions. Should be removed soon */
36 #include <linux/videodev.h>
37 #endif
39 /* ------------------------------------------------------------------ */
41 unsigned int video_debug;
42 static unsigned int gbuffers = 8;
43 static unsigned int noninterlaced; /* 0 */
44 static unsigned int gbufsize = 720*576*4;
45 static unsigned int gbufsize_max = 720*576*4;
46 static char secam[] = "--";
47 module_param(video_debug, int, 0644);
48 MODULE_PARM_DESC(video_debug,"enable debug messages [video]");
49 module_param(gbuffers, int, 0444);
50 MODULE_PARM_DESC(gbuffers,"number of capture buffers, range 2-32");
51 module_param(noninterlaced, int, 0644);
52 MODULE_PARM_DESC(noninterlaced,"capture non interlaced video");
53 module_param_string(secam, secam, sizeof(secam), 0644);
54 MODULE_PARM_DESC(secam, "force SECAM variant, either DK,L or Lc");
57 #define dprintk(fmt, arg...) if (video_debug&0x04) \
58 printk(KERN_DEBUG "%s/video: " fmt, dev->name , ## arg)
60 /* ------------------------------------------------------------------ */
61 /* Defines for Video Output Port Register at address 0x191 */
63 /* Bit 0: VIP code T bit polarity */
65 #define VP_T_CODE_P_NON_INVERTED 0x00
66 #define VP_T_CODE_P_INVERTED 0x01
68 /* ------------------------------------------------------------------ */
69 /* Defines for Video Output Port Register at address 0x195 */
71 /* Bit 2: Video output clock delay control */
73 #define VP_CLK_CTRL2_NOT_DELAYED 0x00
74 #define VP_CLK_CTRL2_DELAYED 0x04
76 /* Bit 1: Video output clock invert control */
78 #define VP_CLK_CTRL1_NON_INVERTED 0x00
79 #define VP_CLK_CTRL1_INVERTED 0x02
81 /* ------------------------------------------------------------------ */
82 /* Defines for Video Output Port Register at address 0x196 */
84 /* Bits 2 to 0: VSYNC pin video vertical sync type */
86 #define VP_VS_TYPE_MASK 0x07
88 #define VP_VS_TYPE_OFF 0x00
89 #define VP_VS_TYPE_V123 0x01
90 #define VP_VS_TYPE_V_ITU 0x02
91 #define VP_VS_TYPE_VGATE_L 0x03
92 #define VP_VS_TYPE_RESERVED1 0x04
93 #define VP_VS_TYPE_RESERVED2 0x05
94 #define VP_VS_TYPE_F_ITU 0x06
95 #define VP_VS_TYPE_SC_FID 0x07
97 /* ------------------------------------------------------------------ */
98 /* data structs for video */
100 static int video_out[][9] = {
101 [CCIR656] = { 0x00, 0xb1, 0x00, 0xa1, 0x00, 0x04, 0x06, 0x00, 0x00 },
104 static struct saa7134_format formats[] = {
106 .name = "8 bpp gray",
107 .fourcc = V4L2_PIX_FMT_GREY,
108 .depth = 8,
109 .pm = 0x06,
111 .name = "15 bpp RGB, le",
112 .fourcc = V4L2_PIX_FMT_RGB555,
113 .depth = 16,
114 .pm = 0x13 | 0x80,
116 .name = "15 bpp RGB, be",
117 .fourcc = V4L2_PIX_FMT_RGB555X,
118 .depth = 16,
119 .pm = 0x13 | 0x80,
120 .bswap = 1,
122 .name = "16 bpp RGB, le",
123 .fourcc = V4L2_PIX_FMT_RGB565,
124 .depth = 16,
125 .pm = 0x10 | 0x80,
127 .name = "16 bpp RGB, be",
128 .fourcc = V4L2_PIX_FMT_RGB565X,
129 .depth = 16,
130 .pm = 0x10 | 0x80,
131 .bswap = 1,
133 .name = "24 bpp RGB, le",
134 .fourcc = V4L2_PIX_FMT_BGR24,
135 .depth = 24,
136 .pm = 0x11,
138 .name = "24 bpp RGB, be",
139 .fourcc = V4L2_PIX_FMT_RGB24,
140 .depth = 24,
141 .pm = 0x11,
142 .bswap = 1,
144 .name = "32 bpp RGB, le",
145 .fourcc = V4L2_PIX_FMT_BGR32,
146 .depth = 32,
147 .pm = 0x12,
149 .name = "32 bpp RGB, be",
150 .fourcc = V4L2_PIX_FMT_RGB32,
151 .depth = 32,
152 .pm = 0x12,
153 .bswap = 1,
154 .wswap = 1,
156 .name = "4:2:2 packed, YUYV",
157 .fourcc = V4L2_PIX_FMT_YUYV,
158 .depth = 16,
159 .pm = 0x00,
160 .bswap = 1,
161 .yuv = 1,
163 .name = "4:2:2 packed, UYVY",
164 .fourcc = V4L2_PIX_FMT_UYVY,
165 .depth = 16,
166 .pm = 0x00,
167 .yuv = 1,
169 .name = "4:2:2 planar, Y-Cb-Cr",
170 .fourcc = V4L2_PIX_FMT_YUV422P,
171 .depth = 16,
172 .pm = 0x09,
173 .yuv = 1,
174 .planar = 1,
175 .hshift = 1,
176 .vshift = 0,
178 .name = "4:2:0 planar, Y-Cb-Cr",
179 .fourcc = V4L2_PIX_FMT_YUV420,
180 .depth = 12,
181 .pm = 0x0a,
182 .yuv = 1,
183 .planar = 1,
184 .hshift = 1,
185 .vshift = 1,
187 .name = "4:2:0 planar, Y-Cb-Cr",
188 .fourcc = V4L2_PIX_FMT_YVU420,
189 .depth = 12,
190 .pm = 0x0a,
191 .yuv = 1,
192 .planar = 1,
193 .uvswap = 1,
194 .hshift = 1,
195 .vshift = 1,
198 #define FORMATS ARRAY_SIZE(formats)
200 #define NORM_625_50 \
201 .h_start = 0, \
202 .h_stop = 719, \
203 .video_v_start = 24, \
204 .video_v_stop = 311, \
205 .vbi_v_start_0 = 7, \
206 .vbi_v_stop_0 = 22, \
207 .vbi_v_start_1 = 319, \
208 .src_timing = 4
210 #define NORM_525_60 \
211 .h_start = 0, \
212 .h_stop = 703, \
213 .video_v_start = 23, \
214 .video_v_stop = 262, \
215 .vbi_v_start_0 = 10, \
216 .vbi_v_stop_0 = 21, \
217 .vbi_v_start_1 = 273, \
218 .src_timing = 7
220 static struct saa7134_tvnorm tvnorms[] = {
222 .name = "PAL", /* autodetect */
223 .id = V4L2_STD_PAL,
224 NORM_625_50,
226 .sync_control = 0x18,
227 .luma_control = 0x40,
228 .chroma_ctrl1 = 0x81,
229 .chroma_gain = 0x2a,
230 .chroma_ctrl2 = 0x06,
231 .vgate_misc = 0x1c,
234 .name = "PAL-BG",
235 .id = V4L2_STD_PAL_BG,
236 NORM_625_50,
238 .sync_control = 0x18,
239 .luma_control = 0x40,
240 .chroma_ctrl1 = 0x81,
241 .chroma_gain = 0x2a,
242 .chroma_ctrl2 = 0x06,
243 .vgate_misc = 0x1c,
246 .name = "PAL-I",
247 .id = V4L2_STD_PAL_I,
248 NORM_625_50,
250 .sync_control = 0x18,
251 .luma_control = 0x40,
252 .chroma_ctrl1 = 0x81,
253 .chroma_gain = 0x2a,
254 .chroma_ctrl2 = 0x06,
255 .vgate_misc = 0x1c,
258 .name = "PAL-DK",
259 .id = V4L2_STD_PAL_DK,
260 NORM_625_50,
262 .sync_control = 0x18,
263 .luma_control = 0x40,
264 .chroma_ctrl1 = 0x81,
265 .chroma_gain = 0x2a,
266 .chroma_ctrl2 = 0x06,
267 .vgate_misc = 0x1c,
270 .name = "NTSC",
271 .id = V4L2_STD_NTSC,
272 NORM_525_60,
274 .sync_control = 0x59,
275 .luma_control = 0x40,
276 .chroma_ctrl1 = 0x89,
277 .chroma_gain = 0x2a,
278 .chroma_ctrl2 = 0x0e,
279 .vgate_misc = 0x18,
282 .name = "SECAM",
283 .id = V4L2_STD_SECAM,
284 NORM_625_50,
286 .sync_control = 0x18,
287 .luma_control = 0x1b,
288 .chroma_ctrl1 = 0xd1,
289 .chroma_gain = 0x80,
290 .chroma_ctrl2 = 0x00,
291 .vgate_misc = 0x1c,
294 .name = "SECAM-DK",
295 .id = V4L2_STD_SECAM_DK,
296 NORM_625_50,
298 .sync_control = 0x18,
299 .luma_control = 0x1b,
300 .chroma_ctrl1 = 0xd1,
301 .chroma_gain = 0x80,
302 .chroma_ctrl2 = 0x00,
303 .vgate_misc = 0x1c,
306 .name = "SECAM-L",
307 .id = V4L2_STD_SECAM_L,
308 NORM_625_50,
310 .sync_control = 0x18,
311 .luma_control = 0x1b,
312 .chroma_ctrl1 = 0xd1,
313 .chroma_gain = 0x80,
314 .chroma_ctrl2 = 0x00,
315 .vgate_misc = 0x1c,
318 .name = "SECAM-Lc",
319 .id = V4L2_STD_SECAM_LC,
320 NORM_625_50,
322 .sync_control = 0x18,
323 .luma_control = 0x1b,
324 .chroma_ctrl1 = 0xd1,
325 .chroma_gain = 0x80,
326 .chroma_ctrl2 = 0x00,
327 .vgate_misc = 0x1c,
330 .name = "PAL-M",
331 .id = V4L2_STD_PAL_M,
332 NORM_525_60,
334 .sync_control = 0x59,
335 .luma_control = 0x40,
336 .chroma_ctrl1 = 0xb9,
337 .chroma_gain = 0x2a,
338 .chroma_ctrl2 = 0x0e,
339 .vgate_misc = 0x18,
342 .name = "PAL-Nc",
343 .id = V4L2_STD_PAL_Nc,
344 NORM_625_50,
346 .sync_control = 0x18,
347 .luma_control = 0x40,
348 .chroma_ctrl1 = 0xa1,
349 .chroma_gain = 0x2a,
350 .chroma_ctrl2 = 0x06,
351 .vgate_misc = 0x1c,
354 .name = "PAL-60",
355 .id = V4L2_STD_PAL_60,
357 .h_start = 0,
358 .h_stop = 719,
359 .video_v_start = 23,
360 .video_v_stop = 262,
361 .vbi_v_start_0 = 10,
362 .vbi_v_stop_0 = 21,
363 .vbi_v_start_1 = 273,
364 .src_timing = 7,
366 .sync_control = 0x18,
367 .luma_control = 0x40,
368 .chroma_ctrl1 = 0x81,
369 .chroma_gain = 0x2a,
370 .chroma_ctrl2 = 0x06,
371 .vgate_misc = 0x1c,
374 #define TVNORMS ARRAY_SIZE(tvnorms)
376 #define V4L2_CID_PRIVATE_INVERT (V4L2_CID_PRIVATE_BASE + 0)
377 #define V4L2_CID_PRIVATE_Y_ODD (V4L2_CID_PRIVATE_BASE + 1)
378 #define V4L2_CID_PRIVATE_Y_EVEN (V4L2_CID_PRIVATE_BASE + 2)
379 #define V4L2_CID_PRIVATE_AUTOMUTE (V4L2_CID_PRIVATE_BASE + 3)
380 #define V4L2_CID_PRIVATE_LASTP1 (V4L2_CID_PRIVATE_BASE + 4)
382 static const struct v4l2_queryctrl no_ctrl = {
383 .name = "42",
384 .flags = V4L2_CTRL_FLAG_DISABLED,
386 static const struct v4l2_queryctrl video_ctrls[] = {
387 /* --- video --- */
389 .id = V4L2_CID_BRIGHTNESS,
390 .name = "Brightness",
391 .minimum = 0,
392 .maximum = 255,
393 .step = 1,
394 .default_value = 128,
395 .type = V4L2_CTRL_TYPE_INTEGER,
397 .id = V4L2_CID_CONTRAST,
398 .name = "Contrast",
399 .minimum = 0,
400 .maximum = 127,
401 .step = 1,
402 .default_value = 68,
403 .type = V4L2_CTRL_TYPE_INTEGER,
405 .id = V4L2_CID_SATURATION,
406 .name = "Saturation",
407 .minimum = 0,
408 .maximum = 127,
409 .step = 1,
410 .default_value = 64,
411 .type = V4L2_CTRL_TYPE_INTEGER,
413 .id = V4L2_CID_HUE,
414 .name = "Hue",
415 .minimum = -128,
416 .maximum = 127,
417 .step = 1,
418 .default_value = 0,
419 .type = V4L2_CTRL_TYPE_INTEGER,
421 .id = V4L2_CID_HFLIP,
422 .name = "Mirror",
423 .minimum = 0,
424 .maximum = 1,
425 .type = V4L2_CTRL_TYPE_BOOLEAN,
427 /* --- audio --- */
429 .id = V4L2_CID_AUDIO_MUTE,
430 .name = "Mute",
431 .minimum = 0,
432 .maximum = 1,
433 .type = V4L2_CTRL_TYPE_BOOLEAN,
435 .id = V4L2_CID_AUDIO_VOLUME,
436 .name = "Volume",
437 .minimum = -15,
438 .maximum = 15,
439 .step = 1,
440 .default_value = 0,
441 .type = V4L2_CTRL_TYPE_INTEGER,
443 /* --- private --- */
445 .id = V4L2_CID_PRIVATE_INVERT,
446 .name = "Invert",
447 .minimum = 0,
448 .maximum = 1,
449 .type = V4L2_CTRL_TYPE_BOOLEAN,
451 .id = V4L2_CID_PRIVATE_Y_ODD,
452 .name = "y offset odd field",
453 .minimum = 0,
454 .maximum = 128,
455 .default_value = 0,
456 .type = V4L2_CTRL_TYPE_INTEGER,
458 .id = V4L2_CID_PRIVATE_Y_EVEN,
459 .name = "y offset even field",
460 .minimum = 0,
461 .maximum = 128,
462 .default_value = 0,
463 .type = V4L2_CTRL_TYPE_INTEGER,
465 .id = V4L2_CID_PRIVATE_AUTOMUTE,
466 .name = "automute",
467 .minimum = 0,
468 .maximum = 1,
469 .default_value = 1,
470 .type = V4L2_CTRL_TYPE_BOOLEAN,
473 static const unsigned int CTRLS = ARRAY_SIZE(video_ctrls);
475 static const struct v4l2_queryctrl* ctrl_by_id(unsigned int id)
477 unsigned int i;
479 for (i = 0; i < CTRLS; i++)
480 if (video_ctrls[i].id == id)
481 return video_ctrls+i;
482 return NULL;
485 static struct saa7134_format* format_by_fourcc(unsigned int fourcc)
487 unsigned int i;
489 for (i = 0; i < FORMATS; i++)
490 if (formats[i].fourcc == fourcc)
491 return formats+i;
492 return NULL;
495 /* ----------------------------------------------------------------------- */
496 /* resource management */
498 static int res_get(struct saa7134_dev *dev, struct saa7134_fh *fh, unsigned int bit)
500 if (fh->resources & bit)
501 /* have it already allocated */
502 return 1;
504 /* is it free? */
505 mutex_lock(&dev->lock);
506 if (dev->resources & bit) {
507 /* no, someone else uses it */
508 mutex_unlock(&dev->lock);
509 return 0;
511 /* it's free, grab it */
512 fh->resources |= bit;
513 dev->resources |= bit;
514 dprintk("res: get %d\n",bit);
515 mutex_unlock(&dev->lock);
516 return 1;
519 static int res_check(struct saa7134_fh *fh, unsigned int bit)
521 return (fh->resources & bit);
524 static int res_locked(struct saa7134_dev *dev, unsigned int bit)
526 return (dev->resources & bit);
529 static
530 void res_free(struct saa7134_dev *dev, struct saa7134_fh *fh, unsigned int bits)
532 BUG_ON((fh->resources & bits) != bits);
534 mutex_lock(&dev->lock);
535 fh->resources &= ~bits;
536 dev->resources &= ~bits;
537 dprintk("res: put %d\n",bits);
538 mutex_unlock(&dev->lock);
541 /* ------------------------------------------------------------------ */
543 static void set_tvnorm(struct saa7134_dev *dev, struct saa7134_tvnorm *norm)
545 dprintk("set tv norm = %s\n",norm->name);
546 dev->tvnorm = norm;
548 /* setup cropping */
549 dev->crop_bounds.left = norm->h_start;
550 dev->crop_defrect.left = norm->h_start;
551 dev->crop_bounds.width = norm->h_stop - norm->h_start +1;
552 dev->crop_defrect.width = norm->h_stop - norm->h_start +1;
554 dev->crop_bounds.top = (norm->vbi_v_stop_0+1)*2;
555 dev->crop_defrect.top = norm->video_v_start*2;
556 dev->crop_bounds.height = ((norm->id & V4L2_STD_525_60) ? 524 : 624)
557 - dev->crop_bounds.top;
558 dev->crop_defrect.height = (norm->video_v_stop - norm->video_v_start +1)*2;
560 dev->crop_current = dev->crop_defrect;
562 saa7134_set_tvnorm_hw(dev);
565 static void video_mux(struct saa7134_dev *dev, int input)
567 dprintk("video input = %d [%s]\n", input, card_in(dev, input).name);
568 dev->ctl_input = input;
569 set_tvnorm(dev, dev->tvnorm);
570 saa7134_tvaudio_setinput(dev, &card_in(dev, input));
574 static void saa7134_set_decoder(struct saa7134_dev *dev)
576 int luma_control, sync_control, mux;
578 struct saa7134_tvnorm *norm = dev->tvnorm;
579 mux = card_in(dev, dev->ctl_input).vmux;
581 luma_control = norm->luma_control;
582 sync_control = norm->sync_control;
584 if (mux > 5)
585 luma_control |= 0x80; /* svideo */
586 if (noninterlaced || dev->nosignal)
587 sync_control |= 0x20;
589 /* setup video decoder */
590 saa_writeb(SAA7134_INCR_DELAY, 0x08);
591 saa_writeb(SAA7134_ANALOG_IN_CTRL1, 0xc0 | mux);
592 saa_writeb(SAA7134_ANALOG_IN_CTRL2, 0x00);
594 saa_writeb(SAA7134_ANALOG_IN_CTRL3, 0x90);
595 saa_writeb(SAA7134_ANALOG_IN_CTRL4, 0x90);
596 saa_writeb(SAA7134_HSYNC_START, 0xeb);
597 saa_writeb(SAA7134_HSYNC_STOP, 0xe0);
598 saa_writeb(SAA7134_SOURCE_TIMING1, norm->src_timing);
600 saa_writeb(SAA7134_SYNC_CTRL, sync_control);
601 saa_writeb(SAA7134_LUMA_CTRL, luma_control);
602 saa_writeb(SAA7134_DEC_LUMA_BRIGHT, dev->ctl_bright);
604 saa_writeb(SAA7134_DEC_LUMA_CONTRAST,
605 dev->ctl_invert ? -dev->ctl_contrast : dev->ctl_contrast);
607 saa_writeb(SAA7134_DEC_CHROMA_SATURATION,
608 dev->ctl_invert ? -dev->ctl_saturation : dev->ctl_saturation);
610 saa_writeb(SAA7134_DEC_CHROMA_HUE, dev->ctl_hue);
611 saa_writeb(SAA7134_CHROMA_CTRL1, norm->chroma_ctrl1);
612 saa_writeb(SAA7134_CHROMA_GAIN, norm->chroma_gain);
614 saa_writeb(SAA7134_CHROMA_CTRL2, norm->chroma_ctrl2);
615 saa_writeb(SAA7134_MODE_DELAY_CTRL, 0x00);
617 saa_writeb(SAA7134_ANALOG_ADC, 0x01);
618 saa_writeb(SAA7134_VGATE_START, 0x11);
619 saa_writeb(SAA7134_VGATE_STOP, 0xfe);
620 saa_writeb(SAA7134_MISC_VGATE_MSB, norm->vgate_misc);
621 saa_writeb(SAA7134_RAW_DATA_GAIN, 0x40);
622 saa_writeb(SAA7134_RAW_DATA_OFFSET, 0x80);
625 void saa7134_set_tvnorm_hw(struct saa7134_dev *dev)
627 saa7134_set_decoder(dev);
629 if (card_in(dev, dev->ctl_input).tv)
630 saa7134_i2c_call_clients(dev, VIDIOC_S_STD, &dev->tvnorm->id);
633 static void set_h_prescale(struct saa7134_dev *dev, int task, int prescale)
635 static const struct {
636 int xpsc;
637 int xacl;
638 int xc2_1;
639 int xdcg;
640 int vpfy;
641 } vals[] = {
642 /* XPSC XACL XC2_1 XDCG VPFY */
643 { 1, 0, 0, 0, 0 },
644 { 2, 2, 1, 2, 2 },
645 { 3, 4, 1, 3, 2 },
646 { 4, 8, 1, 4, 2 },
647 { 5, 8, 1, 4, 2 },
648 { 6, 8, 1, 4, 3 },
649 { 7, 8, 1, 4, 3 },
650 { 8, 15, 0, 4, 3 },
651 { 9, 15, 0, 4, 3 },
652 { 10, 16, 1, 5, 3 },
654 static const int count = ARRAY_SIZE(vals);
655 int i;
657 for (i = 0; i < count; i++)
658 if (vals[i].xpsc == prescale)
659 break;
660 if (i == count)
661 return;
663 saa_writeb(SAA7134_H_PRESCALE(task), vals[i].xpsc);
664 saa_writeb(SAA7134_ACC_LENGTH(task), vals[i].xacl);
665 saa_writeb(SAA7134_LEVEL_CTRL(task),
666 (vals[i].xc2_1 << 3) | (vals[i].xdcg));
667 saa_andorb(SAA7134_FIR_PREFILTER_CTRL(task), 0x0f,
668 (vals[i].vpfy << 2) | vals[i].vpfy);
671 static void set_v_scale(struct saa7134_dev *dev, int task, int yscale)
673 int val,mirror;
675 saa_writeb(SAA7134_V_SCALE_RATIO1(task), yscale & 0xff);
676 saa_writeb(SAA7134_V_SCALE_RATIO2(task), yscale >> 8);
678 mirror = (dev->ctl_mirror) ? 0x02 : 0x00;
679 if (yscale < 2048) {
680 /* LPI */
681 dprintk("yscale LPI yscale=%d\n",yscale);
682 saa_writeb(SAA7134_V_FILTER(task), 0x00 | mirror);
683 saa_writeb(SAA7134_LUMA_CONTRAST(task), 0x40);
684 saa_writeb(SAA7134_CHROMA_SATURATION(task), 0x40);
685 } else {
686 /* ACM */
687 val = 0x40 * 1024 / yscale;
688 dprintk("yscale ACM yscale=%d val=0x%x\n",yscale,val);
689 saa_writeb(SAA7134_V_FILTER(task), 0x01 | mirror);
690 saa_writeb(SAA7134_LUMA_CONTRAST(task), val);
691 saa_writeb(SAA7134_CHROMA_SATURATION(task), val);
693 saa_writeb(SAA7134_LUMA_BRIGHT(task), 0x80);
696 static void set_size(struct saa7134_dev *dev, int task,
697 int width, int height, int interlace)
699 int prescale,xscale,yscale,y_even,y_odd;
700 int h_start, h_stop, v_start, v_stop;
701 int div = interlace ? 2 : 1;
703 /* setup video scaler */
704 h_start = dev->crop_current.left;
705 v_start = dev->crop_current.top/2;
706 h_stop = (dev->crop_current.left + dev->crop_current.width -1);
707 v_stop = (dev->crop_current.top + dev->crop_current.height -1)/2;
709 saa_writeb(SAA7134_VIDEO_H_START1(task), h_start & 0xff);
710 saa_writeb(SAA7134_VIDEO_H_START2(task), h_start >> 8);
711 saa_writeb(SAA7134_VIDEO_H_STOP1(task), h_stop & 0xff);
712 saa_writeb(SAA7134_VIDEO_H_STOP2(task), h_stop >> 8);
713 saa_writeb(SAA7134_VIDEO_V_START1(task), v_start & 0xff);
714 saa_writeb(SAA7134_VIDEO_V_START2(task), v_start >> 8);
715 saa_writeb(SAA7134_VIDEO_V_STOP1(task), v_stop & 0xff);
716 saa_writeb(SAA7134_VIDEO_V_STOP2(task), v_stop >> 8);
718 prescale = dev->crop_current.width / width;
719 if (0 == prescale)
720 prescale = 1;
721 xscale = 1024 * dev->crop_current.width / prescale / width;
722 yscale = 512 * div * dev->crop_current.height / height;
723 dprintk("prescale=%d xscale=%d yscale=%d\n",prescale,xscale,yscale);
724 set_h_prescale(dev,task,prescale);
725 saa_writeb(SAA7134_H_SCALE_INC1(task), xscale & 0xff);
726 saa_writeb(SAA7134_H_SCALE_INC2(task), xscale >> 8);
727 set_v_scale(dev,task,yscale);
729 saa_writeb(SAA7134_VIDEO_PIXELS1(task), width & 0xff);
730 saa_writeb(SAA7134_VIDEO_PIXELS2(task), width >> 8);
731 saa_writeb(SAA7134_VIDEO_LINES1(task), height/div & 0xff);
732 saa_writeb(SAA7134_VIDEO_LINES2(task), height/div >> 8);
734 /* deinterlace y offsets */
735 y_odd = dev->ctl_y_odd;
736 y_even = dev->ctl_y_even;
737 saa_writeb(SAA7134_V_PHASE_OFFSET0(task), y_odd);
738 saa_writeb(SAA7134_V_PHASE_OFFSET1(task), y_even);
739 saa_writeb(SAA7134_V_PHASE_OFFSET2(task), y_odd);
740 saa_writeb(SAA7134_V_PHASE_OFFSET3(task), y_even);
743 /* ------------------------------------------------------------------ */
745 struct cliplist {
746 __u16 position;
747 __u8 enable;
748 __u8 disable;
751 static void set_cliplist(struct saa7134_dev *dev, int reg,
752 struct cliplist *cl, int entries, char *name)
754 __u8 winbits = 0;
755 int i;
757 for (i = 0; i < entries; i++) {
758 winbits |= cl[i].enable;
759 winbits &= ~cl[i].disable;
760 if (i < 15 && cl[i].position == cl[i+1].position)
761 continue;
762 saa_writeb(reg + 0, winbits);
763 saa_writeb(reg + 2, cl[i].position & 0xff);
764 saa_writeb(reg + 3, cl[i].position >> 8);
765 dprintk("clip: %s winbits=%02x pos=%d\n",
766 name,winbits,cl[i].position);
767 reg += 8;
769 for (; reg < 0x400; reg += 8) {
770 saa_writeb(reg+ 0, 0);
771 saa_writeb(reg + 1, 0);
772 saa_writeb(reg + 2, 0);
773 saa_writeb(reg + 3, 0);
777 static int clip_range(int val)
779 if (val < 0)
780 val = 0;
781 return val;
784 /* Sort into smallest position first order */
785 static int cliplist_cmp(const void *a, const void *b)
787 const struct cliplist *cla = a;
788 const struct cliplist *clb = b;
789 if (cla->position < clb->position)
790 return -1;
791 if (cla->position > clb->position)
792 return 1;
793 return 0;
796 static int setup_clipping(struct saa7134_dev *dev, struct v4l2_clip *clips,
797 int nclips, int interlace)
799 struct cliplist col[16], row[16];
800 int cols = 0, rows = 0, i;
801 int div = interlace ? 2 : 1;
803 memset(col, 0, sizeof(col));
804 memset(row, 0, sizeof(row));
805 for (i = 0; i < nclips && i < 8; i++) {
806 col[cols].position = clip_range(clips[i].c.left);
807 col[cols].enable = (1 << i);
808 cols++;
809 col[cols].position = clip_range(clips[i].c.left+clips[i].c.width);
810 col[cols].disable = (1 << i);
811 cols++;
812 row[rows].position = clip_range(clips[i].c.top / div);
813 row[rows].enable = (1 << i);
814 rows++;
815 row[rows].position = clip_range((clips[i].c.top + clips[i].c.height)
816 / div);
817 row[rows].disable = (1 << i);
818 rows++;
820 sort(col, cols, sizeof col[0], cliplist_cmp, NULL);
821 sort(row, rows, sizeof row[0], cliplist_cmp, NULL);
822 set_cliplist(dev,0x380,col,cols,"cols");
823 set_cliplist(dev,0x384,row,rows,"rows");
824 return 0;
827 static int verify_preview(struct saa7134_dev *dev, struct v4l2_window *win)
829 enum v4l2_field field;
830 int maxw, maxh;
832 if (NULL == dev->ovbuf.base)
833 return -EINVAL;
834 if (NULL == dev->ovfmt)
835 return -EINVAL;
836 if (win->w.width < 48 || win->w.height < 32)
837 return -EINVAL;
838 if (win->clipcount > 2048)
839 return -EINVAL;
841 field = win->field;
842 maxw = dev->crop_current.width;
843 maxh = dev->crop_current.height;
845 if (V4L2_FIELD_ANY == field) {
846 field = (win->w.height > maxh/2)
847 ? V4L2_FIELD_INTERLACED
848 : V4L2_FIELD_TOP;
850 switch (field) {
851 case V4L2_FIELD_TOP:
852 case V4L2_FIELD_BOTTOM:
853 maxh = maxh / 2;
854 break;
855 case V4L2_FIELD_INTERLACED:
856 break;
857 default:
858 return -EINVAL;
861 win->field = field;
862 if (win->w.width > maxw)
863 win->w.width = maxw;
864 if (win->w.height > maxh)
865 win->w.height = maxh;
866 return 0;
869 static int start_preview(struct saa7134_dev *dev, struct saa7134_fh *fh)
871 unsigned long base,control,bpl;
872 int err;
874 err = verify_preview(dev,&fh->win);
875 if (0 != err)
876 return err;
878 dev->ovfield = fh->win.field;
879 dprintk("start_preview %dx%d+%d+%d %s field=%s\n",
880 fh->win.w.width,fh->win.w.height,
881 fh->win.w.left,fh->win.w.top,
882 dev->ovfmt->name,v4l2_field_names[dev->ovfield]);
884 /* setup window + clipping */
885 set_size(dev,TASK_B,fh->win.w.width,fh->win.w.height,
886 V4L2_FIELD_HAS_BOTH(dev->ovfield));
887 setup_clipping(dev,fh->clips,fh->nclips,
888 V4L2_FIELD_HAS_BOTH(dev->ovfield));
889 if (dev->ovfmt->yuv)
890 saa_andorb(SAA7134_DATA_PATH(TASK_B), 0x3f, 0x03);
891 else
892 saa_andorb(SAA7134_DATA_PATH(TASK_B), 0x3f, 0x01);
893 saa_writeb(SAA7134_OFMT_VIDEO_B, dev->ovfmt->pm | 0x20);
895 /* dma: setup channel 1 (= Video Task B) */
896 base = (unsigned long)dev->ovbuf.base;
897 base += dev->ovbuf.fmt.bytesperline * fh->win.w.top;
898 base += dev->ovfmt->depth/8 * fh->win.w.left;
899 bpl = dev->ovbuf.fmt.bytesperline;
900 control = SAA7134_RS_CONTROL_BURST_16;
901 if (dev->ovfmt->bswap)
902 control |= SAA7134_RS_CONTROL_BSWAP;
903 if (dev->ovfmt->wswap)
904 control |= SAA7134_RS_CONTROL_WSWAP;
905 if (V4L2_FIELD_HAS_BOTH(dev->ovfield)) {
906 saa_writel(SAA7134_RS_BA1(1),base);
907 saa_writel(SAA7134_RS_BA2(1),base+bpl);
908 saa_writel(SAA7134_RS_PITCH(1),bpl*2);
909 saa_writel(SAA7134_RS_CONTROL(1),control);
910 } else {
911 saa_writel(SAA7134_RS_BA1(1),base);
912 saa_writel(SAA7134_RS_BA2(1),base);
913 saa_writel(SAA7134_RS_PITCH(1),bpl);
914 saa_writel(SAA7134_RS_CONTROL(1),control);
917 /* start dma */
918 dev->ovenable = 1;
919 saa7134_set_dmabits(dev);
921 return 0;
924 static int stop_preview(struct saa7134_dev *dev, struct saa7134_fh *fh)
926 dev->ovenable = 0;
927 saa7134_set_dmabits(dev);
928 return 0;
931 /* ------------------------------------------------------------------ */
933 static int buffer_activate(struct saa7134_dev *dev,
934 struct saa7134_buf *buf,
935 struct saa7134_buf *next)
937 unsigned long base,control,bpl;
938 unsigned long bpl_uv,lines_uv,base2,base3,tmp; /* planar */
940 dprintk("buffer_activate buf=%p\n",buf);
941 buf->vb.state = VIDEOBUF_ACTIVE;
942 buf->top_seen = 0;
944 set_size(dev,TASK_A,buf->vb.width,buf->vb.height,
945 V4L2_FIELD_HAS_BOTH(buf->vb.field));
946 if (buf->fmt->yuv)
947 saa_andorb(SAA7134_DATA_PATH(TASK_A), 0x3f, 0x03);
948 else
949 saa_andorb(SAA7134_DATA_PATH(TASK_A), 0x3f, 0x01);
950 saa_writeb(SAA7134_OFMT_VIDEO_A, buf->fmt->pm);
952 /* DMA: setup channel 0 (= Video Task A0) */
953 base = saa7134_buffer_base(buf);
954 if (buf->fmt->planar)
955 bpl = buf->vb.width;
956 else
957 bpl = (buf->vb.width * buf->fmt->depth) / 8;
958 control = SAA7134_RS_CONTROL_BURST_16 |
959 SAA7134_RS_CONTROL_ME |
960 (buf->pt->dma >> 12);
961 if (buf->fmt->bswap)
962 control |= SAA7134_RS_CONTROL_BSWAP;
963 if (buf->fmt->wswap)
964 control |= SAA7134_RS_CONTROL_WSWAP;
965 if (V4L2_FIELD_HAS_BOTH(buf->vb.field)) {
966 /* interlaced */
967 saa_writel(SAA7134_RS_BA1(0),base);
968 saa_writel(SAA7134_RS_BA2(0),base+bpl);
969 saa_writel(SAA7134_RS_PITCH(0),bpl*2);
970 } else {
971 /* non-interlaced */
972 saa_writel(SAA7134_RS_BA1(0),base);
973 saa_writel(SAA7134_RS_BA2(0),base);
974 saa_writel(SAA7134_RS_PITCH(0),bpl);
976 saa_writel(SAA7134_RS_CONTROL(0),control);
978 if (buf->fmt->planar) {
979 /* DMA: setup channel 4+5 (= planar task A) */
980 bpl_uv = bpl >> buf->fmt->hshift;
981 lines_uv = buf->vb.height >> buf->fmt->vshift;
982 base2 = base + bpl * buf->vb.height;
983 base3 = base2 + bpl_uv * lines_uv;
984 if (buf->fmt->uvswap)
985 tmp = base2, base2 = base3, base3 = tmp;
986 dprintk("uv: bpl=%ld lines=%ld base2/3=%ld/%ld\n",
987 bpl_uv,lines_uv,base2,base3);
988 if (V4L2_FIELD_HAS_BOTH(buf->vb.field)) {
989 /* interlaced */
990 saa_writel(SAA7134_RS_BA1(4),base2);
991 saa_writel(SAA7134_RS_BA2(4),base2+bpl_uv);
992 saa_writel(SAA7134_RS_PITCH(4),bpl_uv*2);
993 saa_writel(SAA7134_RS_BA1(5),base3);
994 saa_writel(SAA7134_RS_BA2(5),base3+bpl_uv);
995 saa_writel(SAA7134_RS_PITCH(5),bpl_uv*2);
996 } else {
997 /* non-interlaced */
998 saa_writel(SAA7134_RS_BA1(4),base2);
999 saa_writel(SAA7134_RS_BA2(4),base2);
1000 saa_writel(SAA7134_RS_PITCH(4),bpl_uv);
1001 saa_writel(SAA7134_RS_BA1(5),base3);
1002 saa_writel(SAA7134_RS_BA2(5),base3);
1003 saa_writel(SAA7134_RS_PITCH(5),bpl_uv);
1005 saa_writel(SAA7134_RS_CONTROL(4),control);
1006 saa_writel(SAA7134_RS_CONTROL(5),control);
1009 /* start DMA */
1010 saa7134_set_dmabits(dev);
1011 mod_timer(&dev->video_q.timeout, jiffies+BUFFER_TIMEOUT);
1012 return 0;
1015 static int buffer_prepare(struct videobuf_queue *q,
1016 struct videobuf_buffer *vb,
1017 enum v4l2_field field)
1019 struct saa7134_fh *fh = q->priv_data;
1020 struct saa7134_dev *dev = fh->dev;
1021 struct saa7134_buf *buf = container_of(vb,struct saa7134_buf,vb);
1022 unsigned int size;
1023 int err;
1025 /* sanity checks */
1026 if (NULL == fh->fmt)
1027 return -EINVAL;
1028 if (fh->width < 48 ||
1029 fh->height < 32 ||
1030 fh->width/4 > dev->crop_current.width ||
1031 fh->height/4 > dev->crop_current.height ||
1032 fh->width > dev->crop_bounds.width ||
1033 fh->height > dev->crop_bounds.height)
1034 return -EINVAL;
1035 size = (fh->width * fh->height * fh->fmt->depth) >> 3;
1036 if (0 != buf->vb.baddr && buf->vb.bsize < size)
1037 return -EINVAL;
1039 dprintk("buffer_prepare [%d,size=%dx%d,bytes=%d,fields=%s,%s]\n",
1040 vb->i,fh->width,fh->height,size,v4l2_field_names[field],
1041 fh->fmt->name);
1042 if (buf->vb.width != fh->width ||
1043 buf->vb.height != fh->height ||
1044 buf->vb.size != size ||
1045 buf->vb.field != field ||
1046 buf->fmt != fh->fmt) {
1047 saa7134_dma_free(q,buf);
1050 if (VIDEOBUF_NEEDS_INIT == buf->vb.state) {
1051 struct videobuf_dmabuf *dma=videobuf_to_dma(&buf->vb);
1053 buf->vb.width = fh->width;
1054 buf->vb.height = fh->height;
1055 buf->vb.size = size;
1056 buf->vb.field = field;
1057 buf->fmt = fh->fmt;
1058 buf->pt = &fh->pt_cap;
1060 err = videobuf_iolock(q,&buf->vb,&dev->ovbuf);
1061 if (err)
1062 goto oops;
1063 err = saa7134_pgtable_build(dev->pci,buf->pt,
1064 dma->sglist,
1065 dma->sglen,
1066 saa7134_buffer_startpage(buf));
1067 if (err)
1068 goto oops;
1070 buf->vb.state = VIDEOBUF_PREPARED;
1071 buf->activate = buffer_activate;
1072 return 0;
1074 oops:
1075 saa7134_dma_free(q,buf);
1076 return err;
1079 static int
1080 buffer_setup(struct videobuf_queue *q, unsigned int *count, unsigned int *size)
1082 struct saa7134_fh *fh = q->priv_data;
1084 *size = fh->fmt->depth * fh->width * fh->height >> 3;
1085 if (0 == *count)
1086 *count = gbuffers;
1087 *count = saa7134_buffer_count(*size,*count);
1088 return 0;
1091 static void buffer_queue(struct videobuf_queue *q, struct videobuf_buffer *vb)
1093 struct saa7134_fh *fh = q->priv_data;
1094 struct saa7134_buf *buf = container_of(vb,struct saa7134_buf,vb);
1096 saa7134_buffer_queue(fh->dev,&fh->dev->video_q,buf);
1099 static void buffer_release(struct videobuf_queue *q, struct videobuf_buffer *vb)
1101 struct saa7134_buf *buf = container_of(vb,struct saa7134_buf,vb);
1103 saa7134_dma_free(q,buf);
1106 static struct videobuf_queue_ops video_qops = {
1107 .buf_setup = buffer_setup,
1108 .buf_prepare = buffer_prepare,
1109 .buf_queue = buffer_queue,
1110 .buf_release = buffer_release,
1113 /* ------------------------------------------------------------------ */
1115 int saa7134_g_ctrl(struct file *file, void *priv, struct v4l2_control *c)
1117 struct saa7134_fh *fh = priv;
1118 struct saa7134_dev *dev = fh->dev;
1119 const struct v4l2_queryctrl* ctrl;
1121 ctrl = ctrl_by_id(c->id);
1122 if (NULL == ctrl)
1123 return -EINVAL;
1124 switch (c->id) {
1125 case V4L2_CID_BRIGHTNESS:
1126 c->value = dev->ctl_bright;
1127 break;
1128 case V4L2_CID_HUE:
1129 c->value = dev->ctl_hue;
1130 break;
1131 case V4L2_CID_CONTRAST:
1132 c->value = dev->ctl_contrast;
1133 break;
1134 case V4L2_CID_SATURATION:
1135 c->value = dev->ctl_saturation;
1136 break;
1137 case V4L2_CID_AUDIO_MUTE:
1138 c->value = dev->ctl_mute;
1139 break;
1140 case V4L2_CID_AUDIO_VOLUME:
1141 c->value = dev->ctl_volume;
1142 break;
1143 case V4L2_CID_PRIVATE_INVERT:
1144 c->value = dev->ctl_invert;
1145 break;
1146 case V4L2_CID_HFLIP:
1147 c->value = dev->ctl_mirror;
1148 break;
1149 case V4L2_CID_PRIVATE_Y_EVEN:
1150 c->value = dev->ctl_y_even;
1151 break;
1152 case V4L2_CID_PRIVATE_Y_ODD:
1153 c->value = dev->ctl_y_odd;
1154 break;
1155 case V4L2_CID_PRIVATE_AUTOMUTE:
1156 c->value = dev->ctl_automute;
1157 break;
1158 default:
1159 return -EINVAL;
1161 return 0;
1163 EXPORT_SYMBOL_GPL(saa7134_g_ctrl);
1165 int saa7134_s_ctrl(struct file *file, void *f, struct v4l2_control *c)
1167 const struct v4l2_queryctrl* ctrl;
1168 struct saa7134_fh *fh = f;
1169 struct saa7134_dev *dev = fh->dev;
1170 unsigned long flags;
1171 int restart_overlay = 0;
1172 int err = -EINVAL;
1174 err = v4l2_prio_check(&dev->prio, &fh->prio);
1175 if (0 != err)
1176 return err;
1178 mutex_lock(&dev->lock);
1180 ctrl = ctrl_by_id(c->id);
1181 if (NULL == ctrl)
1182 goto error;
1184 dprintk("set_control name=%s val=%d\n",ctrl->name,c->value);
1185 switch (ctrl->type) {
1186 case V4L2_CTRL_TYPE_BOOLEAN:
1187 case V4L2_CTRL_TYPE_MENU:
1188 case V4L2_CTRL_TYPE_INTEGER:
1189 if (c->value < ctrl->minimum)
1190 c->value = ctrl->minimum;
1191 if (c->value > ctrl->maximum)
1192 c->value = ctrl->maximum;
1193 break;
1194 default:
1195 /* nothing */;
1197 switch (c->id) {
1198 case V4L2_CID_BRIGHTNESS:
1199 dev->ctl_bright = c->value;
1200 saa_writeb(SAA7134_DEC_LUMA_BRIGHT, dev->ctl_bright);
1201 break;
1202 case V4L2_CID_HUE:
1203 dev->ctl_hue = c->value;
1204 saa_writeb(SAA7134_DEC_CHROMA_HUE, dev->ctl_hue);
1205 break;
1206 case V4L2_CID_CONTRAST:
1207 dev->ctl_contrast = c->value;
1208 saa_writeb(SAA7134_DEC_LUMA_CONTRAST,
1209 dev->ctl_invert ? -dev->ctl_contrast : dev->ctl_contrast);
1210 break;
1211 case V4L2_CID_SATURATION:
1212 dev->ctl_saturation = c->value;
1213 saa_writeb(SAA7134_DEC_CHROMA_SATURATION,
1214 dev->ctl_invert ? -dev->ctl_saturation : dev->ctl_saturation);
1215 break;
1216 case V4L2_CID_AUDIO_MUTE:
1217 dev->ctl_mute = c->value;
1218 saa7134_tvaudio_setmute(dev);
1219 break;
1220 case V4L2_CID_AUDIO_VOLUME:
1221 dev->ctl_volume = c->value;
1222 saa7134_tvaudio_setvolume(dev,dev->ctl_volume);
1223 break;
1224 case V4L2_CID_PRIVATE_INVERT:
1225 dev->ctl_invert = c->value;
1226 saa_writeb(SAA7134_DEC_LUMA_CONTRAST,
1227 dev->ctl_invert ? -dev->ctl_contrast : dev->ctl_contrast);
1228 saa_writeb(SAA7134_DEC_CHROMA_SATURATION,
1229 dev->ctl_invert ? -dev->ctl_saturation : dev->ctl_saturation);
1230 break;
1231 case V4L2_CID_HFLIP:
1232 dev->ctl_mirror = c->value;
1233 restart_overlay = 1;
1234 break;
1235 case V4L2_CID_PRIVATE_Y_EVEN:
1236 dev->ctl_y_even = c->value;
1237 restart_overlay = 1;
1238 break;
1239 case V4L2_CID_PRIVATE_Y_ODD:
1240 dev->ctl_y_odd = c->value;
1241 restart_overlay = 1;
1242 break;
1243 case V4L2_CID_PRIVATE_AUTOMUTE:
1245 struct v4l2_priv_tun_config tda9887_cfg;
1247 tda9887_cfg.tuner = TUNER_TDA9887;
1248 tda9887_cfg.priv = &dev->tda9887_conf;
1250 dev->ctl_automute = c->value;
1251 if (dev->tda9887_conf) {
1252 if (dev->ctl_automute)
1253 dev->tda9887_conf |= TDA9887_AUTOMUTE;
1254 else
1255 dev->tda9887_conf &= ~TDA9887_AUTOMUTE;
1257 saa7134_i2c_call_clients(dev, TUNER_SET_CONFIG,
1258 &tda9887_cfg);
1260 break;
1262 default:
1263 goto error;
1265 if (restart_overlay && fh && res_check(fh, RESOURCE_OVERLAY)) {
1266 spin_lock_irqsave(&dev->slock,flags);
1267 stop_preview(dev,fh);
1268 start_preview(dev,fh);
1269 spin_unlock_irqrestore(&dev->slock,flags);
1271 err = 0;
1273 error:
1274 mutex_unlock(&dev->lock);
1275 return err;
1277 EXPORT_SYMBOL_GPL(saa7134_s_ctrl);
1279 /* ------------------------------------------------------------------ */
1281 static struct videobuf_queue* saa7134_queue(struct saa7134_fh *fh)
1283 struct videobuf_queue* q = NULL;
1285 switch (fh->type) {
1286 case V4L2_BUF_TYPE_VIDEO_CAPTURE:
1287 q = &fh->cap;
1288 break;
1289 case V4L2_BUF_TYPE_VBI_CAPTURE:
1290 q = &fh->vbi;
1291 break;
1292 default:
1293 BUG();
1295 return q;
1298 static int saa7134_resource(struct saa7134_fh *fh)
1300 if (fh->type == V4L2_BUF_TYPE_VIDEO_CAPTURE)
1301 return RESOURCE_VIDEO;
1303 if (fh->type == V4L2_BUF_TYPE_VBI_CAPTURE)
1304 return RESOURCE_VBI;
1306 BUG();
1307 return 0;
1310 static int video_open(struct inode *inode, struct file *file)
1312 int minor = iminor(inode);
1313 struct saa7134_dev *dev;
1314 struct saa7134_fh *fh;
1315 enum v4l2_buf_type type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
1316 int radio = 0;
1317 list_for_each_entry(dev, &saa7134_devlist, devlist) {
1318 if (dev->video_dev && (dev->video_dev->minor == minor))
1319 goto found;
1320 if (dev->radio_dev && (dev->radio_dev->minor == minor)) {
1321 radio = 1;
1322 goto found;
1324 if (dev->vbi_dev && (dev->vbi_dev->minor == minor)) {
1325 type = V4L2_BUF_TYPE_VBI_CAPTURE;
1326 goto found;
1329 return -ENODEV;
1330 found:
1332 dprintk("open minor=%d radio=%d type=%s\n",minor,radio,
1333 v4l2_type_names[type]);
1335 /* allocate + initialize per filehandle data */
1336 fh = kzalloc(sizeof(*fh),GFP_KERNEL);
1337 if (NULL == fh)
1338 return -ENOMEM;
1339 file->private_data = fh;
1340 fh->dev = dev;
1341 fh->radio = radio;
1342 fh->type = type;
1343 fh->fmt = format_by_fourcc(V4L2_PIX_FMT_BGR24);
1344 fh->width = 720;
1345 fh->height = 576;
1346 v4l2_prio_open(&dev->prio,&fh->prio);
1348 videobuf_queue_sg_init(&fh->cap, &video_qops,
1349 &dev->pci->dev, &dev->slock,
1350 V4L2_BUF_TYPE_VIDEO_CAPTURE,
1351 V4L2_FIELD_INTERLACED,
1352 sizeof(struct saa7134_buf),
1353 fh);
1354 videobuf_queue_sg_init(&fh->vbi, &saa7134_vbi_qops,
1355 &dev->pci->dev, &dev->slock,
1356 V4L2_BUF_TYPE_VBI_CAPTURE,
1357 V4L2_FIELD_SEQ_TB,
1358 sizeof(struct saa7134_buf),
1359 fh);
1360 saa7134_pgtable_alloc(dev->pci,&fh->pt_cap);
1361 saa7134_pgtable_alloc(dev->pci,&fh->pt_vbi);
1363 if (fh->radio) {
1364 /* switch to radio mode */
1365 saa7134_tvaudio_setinput(dev,&card(dev).radio);
1366 saa7134_i2c_call_clients(dev,AUDC_SET_RADIO, NULL);
1367 } else {
1368 /* switch to video/vbi mode */
1369 video_mux(dev,dev->ctl_input);
1371 return 0;
1374 static ssize_t
1375 video_read(struct file *file, char __user *data, size_t count, loff_t *ppos)
1377 struct saa7134_fh *fh = file->private_data;
1379 switch (fh->type) {
1380 case V4L2_BUF_TYPE_VIDEO_CAPTURE:
1381 if (res_locked(fh->dev,RESOURCE_VIDEO))
1382 return -EBUSY;
1383 return videobuf_read_one(saa7134_queue(fh),
1384 data, count, ppos,
1385 file->f_flags & O_NONBLOCK);
1386 case V4L2_BUF_TYPE_VBI_CAPTURE:
1387 if (!res_get(fh->dev,fh,RESOURCE_VBI))
1388 return -EBUSY;
1389 return videobuf_read_stream(saa7134_queue(fh),
1390 data, count, ppos, 1,
1391 file->f_flags & O_NONBLOCK);
1392 break;
1393 default:
1394 BUG();
1395 return 0;
1399 static unsigned int
1400 video_poll(struct file *file, struct poll_table_struct *wait)
1402 struct saa7134_fh *fh = file->private_data;
1403 struct videobuf_buffer *buf = NULL;
1405 if (V4L2_BUF_TYPE_VBI_CAPTURE == fh->type)
1406 return videobuf_poll_stream(file, &fh->vbi, wait);
1408 if (res_check(fh,RESOURCE_VIDEO)) {
1409 if (!list_empty(&fh->cap.stream))
1410 buf = list_entry(fh->cap.stream.next, struct videobuf_buffer, stream);
1411 } else {
1412 mutex_lock(&fh->cap.vb_lock);
1413 if (UNSET == fh->cap.read_off) {
1414 /* need to capture a new frame */
1415 if (res_locked(fh->dev,RESOURCE_VIDEO))
1416 goto err;
1417 if (0 != fh->cap.ops->buf_prepare(&fh->cap,fh->cap.read_buf,fh->cap.field))
1418 goto err;
1419 fh->cap.ops->buf_queue(&fh->cap,fh->cap.read_buf);
1420 fh->cap.read_off = 0;
1422 mutex_unlock(&fh->cap.vb_lock);
1423 buf = fh->cap.read_buf;
1426 if (!buf)
1427 return POLLERR;
1429 poll_wait(file, &buf->done, wait);
1430 if (buf->state == VIDEOBUF_DONE ||
1431 buf->state == VIDEOBUF_ERROR)
1432 return POLLIN|POLLRDNORM;
1433 return 0;
1435 err:
1436 mutex_unlock(&fh->cap.vb_lock);
1437 return POLLERR;
1440 static int video_release(struct inode *inode, struct file *file)
1442 struct saa7134_fh *fh = file->private_data;
1443 struct saa7134_dev *dev = fh->dev;
1444 unsigned long flags;
1446 /* turn off overlay */
1447 if (res_check(fh, RESOURCE_OVERLAY)) {
1448 spin_lock_irqsave(&dev->slock,flags);
1449 stop_preview(dev,fh);
1450 spin_unlock_irqrestore(&dev->slock,flags);
1451 res_free(dev,fh,RESOURCE_OVERLAY);
1454 /* stop video capture */
1455 if (res_check(fh, RESOURCE_VIDEO)) {
1456 videobuf_streamoff(&fh->cap);
1457 res_free(dev,fh,RESOURCE_VIDEO);
1459 if (fh->cap.read_buf) {
1460 buffer_release(&fh->cap,fh->cap.read_buf);
1461 kfree(fh->cap.read_buf);
1464 /* stop vbi capture */
1465 if (res_check(fh, RESOURCE_VBI)) {
1466 videobuf_stop(&fh->vbi);
1467 res_free(dev,fh,RESOURCE_VBI);
1470 /* ts-capture will not work in planar mode, so turn it off Hac: 04.05*/
1471 saa_andorb(SAA7134_OFMT_VIDEO_A, 0x1f, 0);
1472 saa_andorb(SAA7134_OFMT_VIDEO_B, 0x1f, 0);
1473 saa_andorb(SAA7134_OFMT_DATA_A, 0x1f, 0);
1474 saa_andorb(SAA7134_OFMT_DATA_B, 0x1f, 0);
1476 saa7134_i2c_call_clients(dev, TUNER_SET_STANDBY, NULL);
1478 /* free stuff */
1479 videobuf_mmap_free(&fh->cap);
1480 videobuf_mmap_free(&fh->vbi);
1481 saa7134_pgtable_free(dev->pci,&fh->pt_cap);
1482 saa7134_pgtable_free(dev->pci,&fh->pt_vbi);
1484 v4l2_prio_close(&dev->prio,&fh->prio);
1485 file->private_data = NULL;
1486 kfree(fh);
1487 return 0;
1490 static int video_mmap(struct file *file, struct vm_area_struct * vma)
1492 struct saa7134_fh *fh = file->private_data;
1494 return videobuf_mmap_mapper(saa7134_queue(fh), vma);
1497 /* ------------------------------------------------------------------ */
1499 static int saa7134_try_get_set_fmt_vbi_cap(struct file *file, void *priv,
1500 struct v4l2_format *f)
1502 struct saa7134_fh *fh = priv;
1503 struct saa7134_dev *dev = fh->dev;
1504 struct saa7134_tvnorm *norm = dev->tvnorm;
1506 f->fmt.vbi.sampling_rate = 6750000 * 4;
1507 f->fmt.vbi.samples_per_line = 2048 /* VBI_LINE_LENGTH */;
1508 f->fmt.vbi.sample_format = V4L2_PIX_FMT_GREY;
1509 f->fmt.vbi.offset = 64 * 4;
1510 f->fmt.vbi.start[0] = norm->vbi_v_start_0;
1511 f->fmt.vbi.count[0] = norm->vbi_v_stop_0 - norm->vbi_v_start_0 +1;
1512 f->fmt.vbi.start[1] = norm->vbi_v_start_1;
1513 f->fmt.vbi.count[1] = f->fmt.vbi.count[0];
1514 f->fmt.vbi.flags = 0; /* VBI_UNSYNC VBI_INTERLACED */
1516 return 0;
1519 static int saa7134_g_fmt_vid_cap(struct file *file, void *priv,
1520 struct v4l2_format *f)
1522 struct saa7134_fh *fh = priv;
1524 f->fmt.pix.width = fh->width;
1525 f->fmt.pix.height = fh->height;
1526 f->fmt.pix.field = fh->cap.field;
1527 f->fmt.pix.pixelformat = fh->fmt->fourcc;
1528 f->fmt.pix.bytesperline =
1529 (f->fmt.pix.width * fh->fmt->depth) >> 3;
1530 f->fmt.pix.sizeimage =
1531 f->fmt.pix.height * f->fmt.pix.bytesperline;
1532 return 0;
1535 static int saa7134_g_fmt_vid_overlay(struct file *file, void *priv,
1536 struct v4l2_format *f)
1538 struct saa7134_fh *fh = priv;
1540 if (saa7134_no_overlay > 0) {
1541 printk(KERN_ERR "V4L2_BUF_TYPE_VIDEO_OVERLAY: no_overlay\n");
1542 return -EINVAL;
1544 f->fmt.win = fh->win;
1546 return 0;
1549 static int saa7134_try_fmt_vid_cap(struct file *file, void *priv,
1550 struct v4l2_format *f)
1552 struct saa7134_fh *fh = priv;
1553 struct saa7134_dev *dev = fh->dev;
1554 struct saa7134_format *fmt;
1555 enum v4l2_field field;
1556 unsigned int maxw, maxh;
1558 fmt = format_by_fourcc(f->fmt.pix.pixelformat);
1559 if (NULL == fmt)
1560 return -EINVAL;
1562 field = f->fmt.pix.field;
1563 maxw = min(dev->crop_current.width*4, dev->crop_bounds.width);
1564 maxh = min(dev->crop_current.height*4, dev->crop_bounds.height);
1566 if (V4L2_FIELD_ANY == field) {
1567 field = (f->fmt.pix.height > maxh/2)
1568 ? V4L2_FIELD_INTERLACED
1569 : V4L2_FIELD_BOTTOM;
1571 switch (field) {
1572 case V4L2_FIELD_TOP:
1573 case V4L2_FIELD_BOTTOM:
1574 maxh = maxh / 2;
1575 break;
1576 case V4L2_FIELD_INTERLACED:
1577 break;
1578 default:
1579 return -EINVAL;
1582 f->fmt.pix.field = field;
1583 if (f->fmt.pix.width < 48)
1584 f->fmt.pix.width = 48;
1585 if (f->fmt.pix.height < 32)
1586 f->fmt.pix.height = 32;
1587 if (f->fmt.pix.width > maxw)
1588 f->fmt.pix.width = maxw;
1589 if (f->fmt.pix.height > maxh)
1590 f->fmt.pix.height = maxh;
1591 f->fmt.pix.width &= ~0x03;
1592 f->fmt.pix.bytesperline =
1593 (f->fmt.pix.width * fmt->depth) >> 3;
1594 f->fmt.pix.sizeimage =
1595 f->fmt.pix.height * f->fmt.pix.bytesperline;
1597 return 0;
1600 static int saa7134_try_fmt_vid_overlay(struct file *file, void *priv,
1601 struct v4l2_format *f)
1603 struct saa7134_fh *fh = priv;
1604 struct saa7134_dev *dev = fh->dev;
1606 if (saa7134_no_overlay > 0) {
1607 printk(KERN_ERR "V4L2_BUF_TYPE_VIDEO_OVERLAY: no_overlay\n");
1608 return -EINVAL;
1611 return verify_preview(dev, &f->fmt.win);
1614 static int saa7134_s_fmt_vid_cap(struct file *file, void *priv,
1615 struct v4l2_format *f)
1617 struct saa7134_fh *fh = priv;
1618 int err;
1620 err = saa7134_try_fmt_vid_cap(file, priv, f);
1621 if (0 != err)
1622 return err;
1624 fh->fmt = format_by_fourcc(f->fmt.pix.pixelformat);
1625 fh->width = f->fmt.pix.width;
1626 fh->height = f->fmt.pix.height;
1627 fh->cap.field = f->fmt.pix.field;
1628 return 0;
1631 static int saa7134_s_fmt_vid_overlay(struct file *file, void *priv,
1632 struct v4l2_format *f)
1634 struct saa7134_fh *fh = priv;
1635 struct saa7134_dev *dev = fh->dev;
1636 int err;
1637 unsigned long flags;
1639 if (saa7134_no_overlay > 0) {
1640 printk(KERN_ERR "V4L2_BUF_TYPE_VIDEO_OVERLAY: no_overlay\n");
1641 return -EINVAL;
1643 err = verify_preview(dev, &f->fmt.win);
1644 if (0 != err)
1645 return err;
1647 mutex_lock(&dev->lock);
1649 fh->win = f->fmt.win;
1650 fh->nclips = f->fmt.win.clipcount;
1652 if (fh->nclips > 8)
1653 fh->nclips = 8;
1655 if (copy_from_user(fh->clips, f->fmt.win.clips,
1656 sizeof(struct v4l2_clip)*fh->nclips)) {
1657 mutex_unlock(&dev->lock);
1658 return -EFAULT;
1661 if (res_check(fh, RESOURCE_OVERLAY)) {
1662 spin_lock_irqsave(&dev->slock, flags);
1663 stop_preview(dev, fh);
1664 start_preview(dev, fh);
1665 spin_unlock_irqrestore(&dev->slock, flags);
1668 mutex_unlock(&dev->lock);
1669 return 0;
1672 int saa7134_queryctrl(struct file *file, void *priv, struct v4l2_queryctrl *c)
1674 const struct v4l2_queryctrl *ctrl;
1676 if ((c->id < V4L2_CID_BASE ||
1677 c->id >= V4L2_CID_LASTP1) &&
1678 (c->id < V4L2_CID_PRIVATE_BASE ||
1679 c->id >= V4L2_CID_PRIVATE_LASTP1))
1680 return -EINVAL;
1681 ctrl = ctrl_by_id(c->id);
1682 *c = (NULL != ctrl) ? *ctrl : no_ctrl;
1683 return 0;
1685 EXPORT_SYMBOL_GPL(saa7134_queryctrl);
1687 static int saa7134_enum_input(struct file *file, void *priv,
1688 struct v4l2_input *i)
1690 struct saa7134_fh *fh = priv;
1691 struct saa7134_dev *dev = fh->dev;
1692 unsigned int n;
1694 n = i->index;
1695 if (n >= SAA7134_INPUT_MAX)
1696 return -EINVAL;
1697 if (NULL == card_in(dev, i->index).name)
1698 return -EINVAL;
1699 memset(i, 0, sizeof(*i));
1700 i->index = n;
1701 i->type = V4L2_INPUT_TYPE_CAMERA;
1702 strcpy(i->name, card_in(dev, n).name);
1703 if (card_in(dev, n).tv)
1704 i->type = V4L2_INPUT_TYPE_TUNER;
1705 i->audioset = 1;
1706 if (n == dev->ctl_input) {
1707 int v1 = saa_readb(SAA7134_STATUS_VIDEO1);
1708 int v2 = saa_readb(SAA7134_STATUS_VIDEO2);
1710 if (0 != (v1 & 0x40))
1711 i->status |= V4L2_IN_ST_NO_H_LOCK;
1712 if (0 != (v2 & 0x40))
1713 i->status |= V4L2_IN_ST_NO_SYNC;
1714 if (0 != (v2 & 0x0e))
1715 i->status |= V4L2_IN_ST_MACROVISION;
1717 i->std = SAA7134_NORMS;
1718 return 0;
1721 static int saa7134_g_input(struct file *file, void *priv, unsigned int *i)
1723 struct saa7134_fh *fh = priv;
1724 struct saa7134_dev *dev = fh->dev;
1726 *i = dev->ctl_input;
1727 return 0;
1730 static int saa7134_s_input(struct file *file, void *priv, unsigned int i)
1732 struct saa7134_fh *fh = priv;
1733 struct saa7134_dev *dev = fh->dev;
1734 int err;
1736 err = v4l2_prio_check(&dev->prio, &fh->prio);
1737 if (0 != err)
1738 return err;
1740 if (i < 0 || i >= SAA7134_INPUT_MAX)
1741 return -EINVAL;
1742 if (NULL == card_in(dev, i).name)
1743 return -EINVAL;
1744 mutex_lock(&dev->lock);
1745 video_mux(dev, i);
1746 mutex_unlock(&dev->lock);
1747 return 0;
1750 static int saa7134_querycap(struct file *file, void *priv,
1751 struct v4l2_capability *cap)
1753 struct saa7134_fh *fh = priv;
1754 struct saa7134_dev *dev = fh->dev;
1756 unsigned int tuner_type = dev->tuner_type;
1758 strcpy(cap->driver, "saa7134");
1759 strlcpy(cap->card, saa7134_boards[dev->board].name,
1760 sizeof(cap->card));
1761 sprintf(cap->bus_info, "PCI:%s", pci_name(dev->pci));
1762 cap->version = SAA7134_VERSION_CODE;
1763 cap->capabilities =
1764 V4L2_CAP_VIDEO_CAPTURE |
1765 V4L2_CAP_VBI_CAPTURE |
1766 V4L2_CAP_READWRITE |
1767 V4L2_CAP_STREAMING |
1768 V4L2_CAP_TUNER;
1769 if (saa7134_no_overlay <= 0)
1770 cap->capabilities |= V4L2_CAP_VIDEO_OVERLAY;
1772 if ((tuner_type == TUNER_ABSENT) || (tuner_type == UNSET))
1773 cap->capabilities &= ~V4L2_CAP_TUNER;
1774 return 0;
1777 static int saa7134_s_std(struct file *file, void *priv, v4l2_std_id *id)
1779 struct saa7134_fh *fh = priv;
1780 struct saa7134_dev *dev = fh->dev;
1781 unsigned long flags;
1782 unsigned int i;
1783 v4l2_std_id fixup;
1784 int err;
1786 err = v4l2_prio_check(&dev->prio, &fh->prio);
1787 if (0 != err)
1788 return err;
1790 for (i = 0; i < TVNORMS; i++)
1791 if (*id == tvnorms[i].id)
1792 break;
1794 if (i == TVNORMS)
1795 for (i = 0; i < TVNORMS; i++)
1796 if (*id & tvnorms[i].id)
1797 break;
1798 if (i == TVNORMS)
1799 return -EINVAL;
1801 if ((*id & V4L2_STD_SECAM) && (secam[0] != '-')) {
1802 if (secam[0] == 'L' || secam[0] == 'l') {
1803 if (secam[1] == 'C' || secam[1] == 'c')
1804 fixup = V4L2_STD_SECAM_LC;
1805 else
1806 fixup = V4L2_STD_SECAM_L;
1807 } else {
1808 if (secam[0] == 'D' || secam[0] == 'd')
1809 fixup = V4L2_STD_SECAM_DK;
1810 else
1811 fixup = V4L2_STD_SECAM;
1813 for (i = 0; i < TVNORMS; i++)
1814 if (fixup == tvnorms[i].id)
1815 break;
1818 *id = tvnorms[i].id;
1820 mutex_lock(&dev->lock);
1821 if (res_check(fh, RESOURCE_OVERLAY)) {
1822 spin_lock_irqsave(&dev->slock, flags);
1823 stop_preview(dev, fh);
1824 spin_unlock_irqrestore(&dev->slock, flags);
1826 set_tvnorm(dev, &tvnorms[i]);
1828 spin_lock_irqsave(&dev->slock, flags);
1829 start_preview(dev, fh);
1830 spin_unlock_irqrestore(&dev->slock, flags);
1831 } else
1832 set_tvnorm(dev, &tvnorms[i]);
1834 saa7134_tvaudio_do_scan(dev);
1835 mutex_unlock(&dev->lock);
1836 return 0;
1839 static int saa7134_cropcap(struct file *file, void *priv,
1840 struct v4l2_cropcap *cap)
1842 struct saa7134_fh *fh = priv;
1843 struct saa7134_dev *dev = fh->dev;
1845 if (cap->type != V4L2_BUF_TYPE_VIDEO_CAPTURE &&
1846 cap->type != V4L2_BUF_TYPE_VIDEO_OVERLAY)
1847 return -EINVAL;
1848 cap->bounds = dev->crop_bounds;
1849 cap->defrect = dev->crop_defrect;
1850 cap->pixelaspect.numerator = 1;
1851 cap->pixelaspect.denominator = 1;
1852 if (dev->tvnorm->id & V4L2_STD_525_60) {
1853 cap->pixelaspect.numerator = 11;
1854 cap->pixelaspect.denominator = 10;
1856 if (dev->tvnorm->id & V4L2_STD_625_50) {
1857 cap->pixelaspect.numerator = 54;
1858 cap->pixelaspect.denominator = 59;
1860 return 0;
1863 static int saa7134_g_crop(struct file *file, void *f, struct v4l2_crop *crop)
1865 struct saa7134_fh *fh = f;
1866 struct saa7134_dev *dev = fh->dev;
1868 if (crop->type != V4L2_BUF_TYPE_VIDEO_CAPTURE &&
1869 crop->type != V4L2_BUF_TYPE_VIDEO_OVERLAY)
1870 return -EINVAL;
1871 crop->c = dev->crop_current;
1872 return 0;
1875 static int saa7134_s_crop(struct file *file, void *f, struct v4l2_crop *crop)
1877 struct saa7134_fh *fh = f;
1878 struct saa7134_dev *dev = fh->dev;
1879 struct v4l2_rect *b = &dev->crop_bounds;
1881 if (crop->type != V4L2_BUF_TYPE_VIDEO_CAPTURE &&
1882 crop->type != V4L2_BUF_TYPE_VIDEO_OVERLAY)
1883 return -EINVAL;
1884 if (crop->c.height < 0)
1885 return -EINVAL;
1886 if (crop->c.width < 0)
1887 return -EINVAL;
1889 if (res_locked(fh->dev, RESOURCE_OVERLAY))
1890 return -EBUSY;
1891 if (res_locked(fh->dev, RESOURCE_VIDEO))
1892 return -EBUSY;
1894 if (crop->c.top < b->top)
1895 crop->c.top = b->top;
1896 if (crop->c.top > b->top + b->height)
1897 crop->c.top = b->top + b->height;
1898 if (crop->c.height > b->top - crop->c.top + b->height)
1899 crop->c.height = b->top - crop->c.top + b->height;
1901 if (crop->c.left < b->left)
1902 crop->c.left = b->left;
1903 if (crop->c.left > b->left + b->width)
1904 crop->c.left = b->left + b->width;
1905 if (crop->c.width > b->left - crop->c.left + b->width)
1906 crop->c.width = b->left - crop->c.left + b->width;
1908 dev->crop_current = crop->c;
1909 return 0;
1912 static int saa7134_g_tuner(struct file *file, void *priv,
1913 struct v4l2_tuner *t)
1915 struct saa7134_fh *fh = priv;
1916 struct saa7134_dev *dev = fh->dev;
1917 int n;
1919 if (0 != t->index)
1920 return -EINVAL;
1921 memset(t, 0, sizeof(*t));
1922 for (n = 0; n < SAA7134_INPUT_MAX; n++)
1923 if (card_in(dev, n).tv)
1924 break;
1925 if (NULL != card_in(dev, n).name) {
1926 strcpy(t->name, "Television");
1927 t->type = V4L2_TUNER_ANALOG_TV;
1928 t->capability = V4L2_TUNER_CAP_NORM |
1929 V4L2_TUNER_CAP_STEREO |
1930 V4L2_TUNER_CAP_LANG1 |
1931 V4L2_TUNER_CAP_LANG2;
1932 t->rangehigh = 0xffffffffUL;
1933 t->rxsubchans = saa7134_tvaudio_getstereo(dev);
1934 t->audmode = saa7134_tvaudio_rx2mode(t->rxsubchans);
1936 if (0 != (saa_readb(SAA7134_STATUS_VIDEO1) & 0x03))
1937 t->signal = 0xffff;
1938 return 0;
1941 static int saa7134_s_tuner(struct file *file, void *priv,
1942 struct v4l2_tuner *t)
1944 struct saa7134_fh *fh = priv;
1945 struct saa7134_dev *dev = fh->dev;
1946 int rx, mode, err;
1948 err = v4l2_prio_check(&dev->prio, &fh->prio);
1949 if (0 != err)
1950 return err;
1952 mode = dev->thread.mode;
1953 if (UNSET == mode) {
1954 rx = saa7134_tvaudio_getstereo(dev);
1955 mode = saa7134_tvaudio_rx2mode(t->rxsubchans);
1957 if (mode != t->audmode)
1958 dev->thread.mode = t->audmode;
1960 return 0;
1963 static int saa7134_g_frequency(struct file *file, void *priv,
1964 struct v4l2_frequency *f)
1966 struct saa7134_fh *fh = priv;
1967 struct saa7134_dev *dev = fh->dev;
1969 f->type = fh->radio ? V4L2_TUNER_RADIO : V4L2_TUNER_ANALOG_TV;
1970 f->frequency = dev->ctl_freq;
1972 return 0;
1975 static int saa7134_s_frequency(struct file *file, void *priv,
1976 struct v4l2_frequency *f)
1978 struct saa7134_fh *fh = priv;
1979 struct saa7134_dev *dev = fh->dev;
1980 int err;
1982 err = v4l2_prio_check(&dev->prio, &fh->prio);
1983 if (0 != err)
1984 return err;
1986 if (0 != f->tuner)
1987 return -EINVAL;
1988 if (0 == fh->radio && V4L2_TUNER_ANALOG_TV != f->type)
1989 return -EINVAL;
1990 if (1 == fh->radio && V4L2_TUNER_RADIO != f->type)
1991 return -EINVAL;
1992 mutex_lock(&dev->lock);
1993 dev->ctl_freq = f->frequency;
1995 saa7134_i2c_call_clients(dev, VIDIOC_S_FREQUENCY, f);
1997 saa7134_tvaudio_do_scan(dev);
1998 mutex_unlock(&dev->lock);
1999 return 0;
2002 static int saa7134_g_audio(struct file *file, void *priv, struct v4l2_audio *a)
2004 strcpy(a->name, "audio");
2005 return 0;
2008 static int saa7134_s_audio(struct file *file, void *priv, struct v4l2_audio *a)
2010 return 0;
2013 static int saa7134_g_priority(struct file *file, void *f, enum v4l2_priority *p)
2015 struct saa7134_fh *fh = f;
2016 struct saa7134_dev *dev = fh->dev;
2018 *p = v4l2_prio_max(&dev->prio);
2019 return 0;
2022 static int saa7134_s_priority(struct file *file, void *f,
2023 enum v4l2_priority prio)
2025 struct saa7134_fh *fh = f;
2026 struct saa7134_dev *dev = fh->dev;
2028 return v4l2_prio_change(&dev->prio, &fh->prio, prio);
2031 static int saa7134_enum_fmt_vid_cap(struct file *file, void *priv,
2032 struct v4l2_fmtdesc *f)
2034 if (f->index >= FORMATS)
2035 return -EINVAL;
2037 strlcpy(f->description, formats[f->index].name,
2038 sizeof(f->description));
2040 f->pixelformat = formats[f->index].fourcc;
2042 return 0;
2045 static int saa7134_enum_fmt_vid_overlay(struct file *file, void *priv,
2046 struct v4l2_fmtdesc *f)
2048 if (saa7134_no_overlay > 0) {
2049 printk(KERN_ERR "V4L2_BUF_TYPE_VIDEO_OVERLAY: no_overlay\n");
2050 return -EINVAL;
2053 if ((f->index >= FORMATS) || formats[f->index].planar)
2054 return -EINVAL;
2056 strlcpy(f->description, formats[f->index].name,
2057 sizeof(f->description));
2059 f->pixelformat = formats[f->index].fourcc;
2061 return 0;
2064 static int saa7134_enum_fmt_vbi_cap(struct file *file, void *priv,
2065 struct v4l2_fmtdesc *f)
2067 if (0 != f->index)
2068 return -EINVAL;
2070 f->pixelformat = V4L2_PIX_FMT_GREY;
2071 strcpy(f->description, "vbi data");
2073 return 0;
2076 static int saa7134_g_fbuf(struct file *file, void *f,
2077 struct v4l2_framebuffer *fb)
2079 struct saa7134_fh *fh = f;
2080 struct saa7134_dev *dev = fh->dev;
2082 *fb = dev->ovbuf;
2083 fb->capability = V4L2_FBUF_CAP_LIST_CLIPPING;
2085 return 0;
2088 static int saa7134_s_fbuf(struct file *file, void *f,
2089 struct v4l2_framebuffer *fb)
2091 struct saa7134_fh *fh = f;
2092 struct saa7134_dev *dev = fh->dev;
2093 struct saa7134_format *fmt;
2095 if (!capable(CAP_SYS_ADMIN) &&
2096 !capable(CAP_SYS_RAWIO))
2097 return -EPERM;
2099 /* check args */
2100 fmt = format_by_fourcc(fb->fmt.pixelformat);
2101 if (NULL == fmt)
2102 return -EINVAL;
2104 /* ok, accept it */
2105 dev->ovbuf = *fb;
2106 dev->ovfmt = fmt;
2107 if (0 == dev->ovbuf.fmt.bytesperline)
2108 dev->ovbuf.fmt.bytesperline =
2109 dev->ovbuf.fmt.width*fmt->depth/8;
2110 return 0;
2113 static int saa7134_overlay(struct file *file, void *f, unsigned int on)
2115 struct saa7134_fh *fh = f;
2116 struct saa7134_dev *dev = fh->dev;
2117 unsigned long flags;
2119 if (on) {
2120 if (saa7134_no_overlay > 0) {
2121 dprintk("no_overlay\n");
2122 return -EINVAL;
2125 if (!res_get(dev, fh, RESOURCE_OVERLAY))
2126 return -EBUSY;
2127 spin_lock_irqsave(&dev->slock, flags);
2128 start_preview(dev, fh);
2129 spin_unlock_irqrestore(&dev->slock, flags);
2131 if (!on) {
2132 if (!res_check(fh, RESOURCE_OVERLAY))
2133 return -EINVAL;
2134 spin_lock_irqsave(&dev->slock, flags);
2135 stop_preview(dev, fh);
2136 spin_unlock_irqrestore(&dev->slock, flags);
2137 res_free(dev, fh, RESOURCE_OVERLAY);
2139 return 0;
2142 #ifdef CONFIG_VIDEO_V4L1_COMPAT
2143 static int vidiocgmbuf(struct file *file, void *priv, struct video_mbuf *mbuf)
2145 struct saa7134_fh *fh = file->private_data;
2146 return videobuf_cgmbuf(saa7134_queue(fh), mbuf, 8);
2148 #endif
2150 static int saa7134_reqbufs(struct file *file, void *priv,
2151 struct v4l2_requestbuffers *p)
2153 struct saa7134_fh *fh = priv;
2154 return videobuf_reqbufs(saa7134_queue(fh), p);
2157 static int saa7134_querybuf(struct file *file, void *priv,
2158 struct v4l2_buffer *b)
2160 struct saa7134_fh *fh = priv;
2161 return videobuf_querybuf(saa7134_queue(fh), b);
2164 static int saa7134_qbuf(struct file *file, void *priv, struct v4l2_buffer *b)
2166 struct saa7134_fh *fh = priv;
2167 return videobuf_qbuf(saa7134_queue(fh), b);
2170 static int saa7134_dqbuf(struct file *file, void *priv, struct v4l2_buffer *b)
2172 struct saa7134_fh *fh = priv;
2173 return videobuf_dqbuf(saa7134_queue(fh), b,
2174 file->f_flags & O_NONBLOCK);
2177 static int saa7134_streamon(struct file *file, void *priv,
2178 enum v4l2_buf_type type)
2180 struct saa7134_fh *fh = priv;
2181 struct saa7134_dev *dev = fh->dev;
2182 int res = saa7134_resource(fh);
2184 if (!res_get(dev, fh, res))
2185 return -EBUSY;
2187 return videobuf_streamon(saa7134_queue(fh));
2190 static int saa7134_streamoff(struct file *file, void *priv,
2191 enum v4l2_buf_type type)
2193 int err;
2194 struct saa7134_fh *fh = priv;
2195 struct saa7134_dev *dev = fh->dev;
2196 int res = saa7134_resource(fh);
2198 err = videobuf_streamoff(saa7134_queue(fh));
2199 if (err < 0)
2200 return err;
2201 res_free(dev, fh, res);
2202 return 0;
2205 static int saa7134_g_parm(struct file *file, void *fh,
2206 struct v4l2_streamparm *parm)
2208 return 0;
2211 #ifdef CONFIG_VIDEO_ADV_DEBUG
2212 static int vidioc_g_register (struct file *file, void *priv,
2213 struct v4l2_register *reg)
2215 struct saa7134_fh *fh = priv;
2216 struct saa7134_dev *dev = fh->dev;
2218 if (!v4l2_chip_match_host(reg->match_type, reg->match_chip))
2219 return -EINVAL;
2220 reg->val = saa_readb(reg->reg);
2221 return 0;
2224 static int vidioc_s_register (struct file *file, void *priv,
2225 struct v4l2_register *reg)
2227 struct saa7134_fh *fh = priv;
2228 struct saa7134_dev *dev = fh->dev;
2230 if (!v4l2_chip_match_host(reg->match_type, reg->match_chip))
2231 return -EINVAL;
2232 saa_writeb(reg->reg&0xffffff, reg->val);
2233 return 0;
2235 #endif
2237 static int radio_querycap(struct file *file, void *priv,
2238 struct v4l2_capability *cap)
2240 struct saa7134_fh *fh = file->private_data;
2241 struct saa7134_dev *dev = fh->dev;
2243 strcpy(cap->driver, "saa7134");
2244 strlcpy(cap->card, saa7134_boards[dev->board].name, sizeof(cap->card));
2245 sprintf(cap->bus_info, "PCI:%s", pci_name(dev->pci));
2246 cap->version = SAA7134_VERSION_CODE;
2247 cap->capabilities = V4L2_CAP_TUNER;
2248 return 0;
2251 static int radio_g_tuner(struct file *file, void *priv,
2252 struct v4l2_tuner *t)
2254 struct saa7134_fh *fh = file->private_data;
2255 struct saa7134_dev *dev = fh->dev;
2257 if (0 != t->index)
2258 return -EINVAL;
2260 memset(t, 0, sizeof(*t));
2261 strcpy(t->name, "Radio");
2262 t->type = V4L2_TUNER_RADIO;
2264 saa7134_i2c_call_clients(dev, VIDIOC_G_TUNER, t);
2265 if (dev->input->amux == TV) {
2266 t->signal = 0xf800 - ((saa_readb(0x581) & 0x1f) << 11);
2267 t->rxsubchans = (saa_readb(0x529) & 0x08) ?
2268 V4L2_TUNER_SUB_STEREO : V4L2_TUNER_SUB_MONO;
2270 return 0;
2272 static int radio_s_tuner(struct file *file, void *priv,
2273 struct v4l2_tuner *t)
2275 struct saa7134_fh *fh = file->private_data;
2276 struct saa7134_dev *dev = fh->dev;
2278 if (0 != t->index)
2279 return -EINVAL;
2281 saa7134_i2c_call_clients(dev, VIDIOC_S_TUNER, t);
2282 return 0;
2285 static int radio_enum_input(struct file *file, void *priv,
2286 struct v4l2_input *i)
2288 if (i->index != 0)
2289 return -EINVAL;
2291 strcpy(i->name, "Radio");
2292 i->type = V4L2_INPUT_TYPE_TUNER;
2294 return 0;
2297 static int radio_g_input(struct file *filp, void *priv, unsigned int *i)
2299 *i = 0;
2300 return 0;
2303 static int radio_g_audio(struct file *file, void *priv,
2304 struct v4l2_audio *a)
2306 memset(a, 0, sizeof(*a));
2307 strcpy(a->name, "Radio");
2308 return 0;
2311 static int radio_s_audio(struct file *file, void *priv,
2312 struct v4l2_audio *a)
2314 return 0;
2317 static int radio_s_input(struct file *filp, void *priv, unsigned int i)
2319 return 0;
2322 static int radio_s_std(struct file *file, void *fh, v4l2_std_id *norm)
2324 return 0;
2327 static int radio_queryctrl(struct file *file, void *priv,
2328 struct v4l2_queryctrl *c)
2330 const struct v4l2_queryctrl *ctrl;
2332 if (c->id < V4L2_CID_BASE ||
2333 c->id >= V4L2_CID_LASTP1)
2334 return -EINVAL;
2335 if (c->id == V4L2_CID_AUDIO_MUTE) {
2336 ctrl = ctrl_by_id(c->id);
2337 *c = *ctrl;
2338 } else
2339 *c = no_ctrl;
2340 return 0;
2343 static const struct file_operations video_fops =
2345 .owner = THIS_MODULE,
2346 .open = video_open,
2347 .release = video_release,
2348 .read = video_read,
2349 .poll = video_poll,
2350 .mmap = video_mmap,
2351 .ioctl = video_ioctl2,
2352 .compat_ioctl = v4l_compat_ioctl32,
2353 .llseek = no_llseek,
2356 static const struct file_operations radio_fops =
2358 .owner = THIS_MODULE,
2359 .open = video_open,
2360 .release = video_release,
2361 .ioctl = video_ioctl2,
2362 .compat_ioctl = v4l_compat_ioctl32,
2363 .llseek = no_llseek,
2366 /* ----------------------------------------------------------- */
2367 /* exported stuff */
2369 struct video_device saa7134_video_template =
2371 .name = "saa7134-video",
2372 .type = VID_TYPE_CAPTURE|VID_TYPE_TUNER |
2373 VID_TYPE_CLIPPING|VID_TYPE_SCALES,
2374 .fops = &video_fops,
2375 .minor = -1,
2376 .vidioc_querycap = saa7134_querycap,
2377 .vidioc_enum_fmt_vid_cap = saa7134_enum_fmt_vid_cap,
2378 .vidioc_g_fmt_vid_cap = saa7134_g_fmt_vid_cap,
2379 .vidioc_try_fmt_vid_cap = saa7134_try_fmt_vid_cap,
2380 .vidioc_s_fmt_vid_cap = saa7134_s_fmt_vid_cap,
2381 .vidioc_enum_fmt_vid_overlay = saa7134_enum_fmt_vid_overlay,
2382 .vidioc_g_fmt_vid_overlay = saa7134_g_fmt_vid_overlay,
2383 .vidioc_try_fmt_vid_overlay = saa7134_try_fmt_vid_overlay,
2384 .vidioc_s_fmt_vid_overlay = saa7134_s_fmt_vid_overlay,
2385 .vidioc_enum_fmt_vbi_cap = saa7134_enum_fmt_vbi_cap,
2386 .vidioc_g_fmt_vbi_cap = saa7134_try_get_set_fmt_vbi_cap,
2387 .vidioc_try_fmt_vbi_cap = saa7134_try_get_set_fmt_vbi_cap,
2388 .vidioc_s_fmt_vbi_cap = saa7134_try_get_set_fmt_vbi_cap,
2389 .vidioc_g_audio = saa7134_g_audio,
2390 .vidioc_s_audio = saa7134_s_audio,
2391 .vidioc_cropcap = saa7134_cropcap,
2392 .vidioc_reqbufs = saa7134_reqbufs,
2393 .vidioc_querybuf = saa7134_querybuf,
2394 .vidioc_qbuf = saa7134_qbuf,
2395 .vidioc_dqbuf = saa7134_dqbuf,
2396 .vidioc_s_std = saa7134_s_std,
2397 .vidioc_enum_input = saa7134_enum_input,
2398 .vidioc_g_input = saa7134_g_input,
2399 .vidioc_s_input = saa7134_s_input,
2400 .vidioc_queryctrl = saa7134_queryctrl,
2401 .vidioc_g_ctrl = saa7134_g_ctrl,
2402 .vidioc_s_ctrl = saa7134_s_ctrl,
2403 .vidioc_streamon = saa7134_streamon,
2404 .vidioc_streamoff = saa7134_streamoff,
2405 .vidioc_g_tuner = saa7134_g_tuner,
2406 .vidioc_s_tuner = saa7134_s_tuner,
2407 #ifdef CONFIG_VIDEO_V4L1_COMPAT
2408 .vidiocgmbuf = vidiocgmbuf,
2409 #endif
2410 .vidioc_g_crop = saa7134_g_crop,
2411 .vidioc_s_crop = saa7134_s_crop,
2412 .vidioc_g_fbuf = saa7134_g_fbuf,
2413 .vidioc_s_fbuf = saa7134_s_fbuf,
2414 .vidioc_overlay = saa7134_overlay,
2415 .vidioc_g_priority = saa7134_g_priority,
2416 .vidioc_s_priority = saa7134_s_priority,
2417 .vidioc_g_parm = saa7134_g_parm,
2418 .vidioc_g_frequency = saa7134_g_frequency,
2419 .vidioc_s_frequency = saa7134_s_frequency,
2420 #ifdef CONFIG_VIDEO_ADV_DEBUG
2421 .vidioc_g_register = vidioc_g_register,
2422 .vidioc_s_register = vidioc_s_register,
2423 #endif
2424 .tvnorms = SAA7134_NORMS,
2425 .current_norm = V4L2_STD_PAL,
2428 struct video_device saa7134_radio_template =
2430 .name = "saa7134-radio",
2431 .type = VID_TYPE_TUNER,
2432 .fops = &radio_fops,
2433 .minor = -1,
2434 .vidioc_querycap = radio_querycap,
2435 .vidioc_g_tuner = radio_g_tuner,
2436 .vidioc_enum_input = radio_enum_input,
2437 .vidioc_g_audio = radio_g_audio,
2438 .vidioc_s_tuner = radio_s_tuner,
2439 .vidioc_s_audio = radio_s_audio,
2440 .vidioc_s_input = radio_s_input,
2441 .vidioc_s_std = radio_s_std,
2442 .vidioc_queryctrl = radio_queryctrl,
2443 .vidioc_g_input = radio_g_input,
2444 .vidioc_g_ctrl = saa7134_g_ctrl,
2445 .vidioc_s_ctrl = saa7134_s_ctrl,
2446 .vidioc_g_frequency = saa7134_g_frequency,
2447 .vidioc_s_frequency = saa7134_s_frequency,
2450 int saa7134_video_init1(struct saa7134_dev *dev)
2452 /* sanitycheck insmod options */
2453 if (gbuffers < 2 || gbuffers > VIDEO_MAX_FRAME)
2454 gbuffers = 2;
2455 if (gbufsize < 0 || gbufsize > gbufsize_max)
2456 gbufsize = gbufsize_max;
2457 gbufsize = (gbufsize + PAGE_SIZE - 1) & PAGE_MASK;
2459 /* put some sensible defaults into the data structures ... */
2460 dev->ctl_bright = ctrl_by_id(V4L2_CID_BRIGHTNESS)->default_value;
2461 dev->ctl_contrast = ctrl_by_id(V4L2_CID_CONTRAST)->default_value;
2462 dev->ctl_hue = ctrl_by_id(V4L2_CID_HUE)->default_value;
2463 dev->ctl_saturation = ctrl_by_id(V4L2_CID_SATURATION)->default_value;
2464 dev->ctl_volume = ctrl_by_id(V4L2_CID_AUDIO_VOLUME)->default_value;
2465 dev->ctl_mute = 1; // ctrl_by_id(V4L2_CID_AUDIO_MUTE)->default_value;
2466 dev->ctl_invert = ctrl_by_id(V4L2_CID_PRIVATE_INVERT)->default_value;
2467 dev->ctl_automute = ctrl_by_id(V4L2_CID_PRIVATE_AUTOMUTE)->default_value;
2469 if (dev->tda9887_conf && dev->ctl_automute)
2470 dev->tda9887_conf |= TDA9887_AUTOMUTE;
2471 dev->automute = 0;
2473 INIT_LIST_HEAD(&dev->video_q.queue);
2474 init_timer(&dev->video_q.timeout);
2475 dev->video_q.timeout.function = saa7134_buffer_timeout;
2476 dev->video_q.timeout.data = (unsigned long)(&dev->video_q);
2477 dev->video_q.dev = dev;
2479 if (saa7134_boards[dev->board].video_out)
2480 saa7134_videoport_init(dev);
2482 return 0;
2485 int saa7134_videoport_init(struct saa7134_dev *dev)
2487 /* enable video output */
2488 int vo = saa7134_boards[dev->board].video_out;
2489 int video_reg;
2490 unsigned int vid_port_opts = saa7134_boards[dev->board].vid_port_opts;
2492 /* Configure videoport */
2493 saa_writeb(SAA7134_VIDEO_PORT_CTRL0, video_out[vo][0]);
2494 video_reg = video_out[vo][1];
2495 if (vid_port_opts & SET_T_CODE_POLARITY_NON_INVERTED)
2496 video_reg &= ~VP_T_CODE_P_INVERTED;
2497 saa_writeb(SAA7134_VIDEO_PORT_CTRL1, video_reg);
2498 saa_writeb(SAA7134_VIDEO_PORT_CTRL2, video_out[vo][2]);
2499 saa_writeb(SAA7134_VIDEO_PORT_CTRL4, video_out[vo][4]);
2500 video_reg = video_out[vo][5];
2501 if (vid_port_opts & SET_CLOCK_NOT_DELAYED)
2502 video_reg &= ~VP_CLK_CTRL2_DELAYED;
2503 if (vid_port_opts & SET_CLOCK_INVERTED)
2504 video_reg |= VP_CLK_CTRL1_INVERTED;
2505 saa_writeb(SAA7134_VIDEO_PORT_CTRL5, video_reg);
2506 video_reg = video_out[vo][6];
2507 if (vid_port_opts & SET_VSYNC_OFF) {
2508 video_reg &= ~VP_VS_TYPE_MASK;
2509 video_reg |= VP_VS_TYPE_OFF;
2511 saa_writeb(SAA7134_VIDEO_PORT_CTRL6, video_reg);
2512 saa_writeb(SAA7134_VIDEO_PORT_CTRL7, video_out[vo][7]);
2513 saa_writeb(SAA7134_VIDEO_PORT_CTRL8, video_out[vo][8]);
2515 /* Start videoport */
2516 saa_writeb(SAA7134_VIDEO_PORT_CTRL3, video_out[vo][3]);
2518 return 0;
2521 int saa7134_video_init2(struct saa7134_dev *dev)
2523 /* init video hw */
2524 set_tvnorm(dev,&tvnorms[0]);
2525 video_mux(dev,0);
2526 saa7134_tvaudio_setmute(dev);
2527 saa7134_tvaudio_setvolume(dev,dev->ctl_volume);
2528 return 0;
2531 void saa7134_irq_video_signalchange(struct saa7134_dev *dev)
2533 static const char *st[] = {
2534 "(no signal)", "NTSC", "PAL", "SECAM" };
2535 u32 st1,st2;
2537 st1 = saa_readb(SAA7134_STATUS_VIDEO1);
2538 st2 = saa_readb(SAA7134_STATUS_VIDEO2);
2539 dprintk("DCSDT: pll: %s, sync: %s, norm: %s\n",
2540 (st1 & 0x40) ? "not locked" : "locked",
2541 (st2 & 0x40) ? "no" : "yes",
2542 st[st1 & 0x03]);
2543 dev->nosignal = (st1 & 0x40) || (st2 & 0x40) || !(st2 & 0x1);
2545 if (dev->nosignal) {
2546 /* no video signal -> mute audio */
2547 if (dev->ctl_automute)
2548 dev->automute = 1;
2549 saa7134_tvaudio_setmute(dev);
2550 } else {
2551 /* wake up tvaudio audio carrier scan thread */
2552 saa7134_tvaudio_do_scan(dev);
2555 if ((st2 & 0x80) && !noninterlaced && !dev->nosignal)
2556 saa_clearb(SAA7134_SYNC_CTRL, 0x20);
2557 else
2558 saa_setb(SAA7134_SYNC_CTRL, 0x20);
2560 if (dev->mops && dev->mops->signal_change)
2561 dev->mops->signal_change(dev);
2565 void saa7134_irq_video_done(struct saa7134_dev *dev, unsigned long status)
2567 enum v4l2_field field;
2569 spin_lock(&dev->slock);
2570 if (dev->video_q.curr) {
2571 dev->video_fieldcount++;
2572 field = dev->video_q.curr->vb.field;
2573 if (V4L2_FIELD_HAS_BOTH(field)) {
2574 /* make sure we have seen both fields */
2575 if ((status & 0x10) == 0x00) {
2576 dev->video_q.curr->top_seen = 1;
2577 goto done;
2579 if (!dev->video_q.curr->top_seen)
2580 goto done;
2581 } else if (field == V4L2_FIELD_TOP) {
2582 if ((status & 0x10) != 0x10)
2583 goto done;
2584 } else if (field == V4L2_FIELD_BOTTOM) {
2585 if ((status & 0x10) != 0x00)
2586 goto done;
2588 dev->video_q.curr->vb.field_count = dev->video_fieldcount;
2589 saa7134_buffer_finish(dev,&dev->video_q,VIDEOBUF_DONE);
2591 saa7134_buffer_next(dev,&dev->video_q);
2593 done:
2594 spin_unlock(&dev->slock);
2597 /* ----------------------------------------------------------- */
2599 * Local variables:
2600 * c-basic-offset: 8
2601 * End: