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/moduleparam.h>
27 #include <linux/kernel.h>
28 #include <linux/slab.h>
30 #include "saa7134-reg.h"
32 #include <media/v4l2-common.h>
34 /* Include V4L1 specific functions. Should be removed soon */
35 #include <linux/videodev.h>
37 /* ------------------------------------------------------------------ */
39 static unsigned int video_debug = 0;
40 static unsigned int gbuffers = 8;
41 static unsigned int noninterlaced = 0;
42 static unsigned int gbufsize = 720*576*4;
43 static unsigned int gbufsize_max = 720*576*4;
44 module_param(video_debug, int, 0644);
45 MODULE_PARM_DESC(video_debug,"enable debug messages [video]");
46 module_param(gbuffers, int, 0444);
47 MODULE_PARM_DESC(gbuffers,"number of capture buffers, range 2-32");
48 module_param(noninterlaced, int, 0644);
49 MODULE_PARM_DESC(noninterlaced,"video input is noninterlaced");
51 #define dprintk(fmt, arg...) if (video_debug) \
52 printk(KERN_DEBUG "%s/video: " fmt, dev->name , ## arg)
54 /* ------------------------------------------------------------------ */
55 /* Defines for Video Output Port Register at address 0x191 */
57 /* Bit 0: VIP code T bit polarity */
59 #define VP_T_CODE_P_NON_INVERTED 0x00
60 #define VP_T_CODE_P_INVERTED 0x01
62 /* ------------------------------------------------------------------ */
63 /* Defines for Video Output Port Register at address 0x195 */
65 /* Bit 2: Video output clock delay control */
67 #define VP_CLK_CTRL2_NOT_DELAYED 0x00
68 #define VP_CLK_CTRL2_DELAYED 0x04
70 /* Bit 1: Video output clock invert control */
72 #define VP_CLK_CTRL1_NON_INVERTED 0x00
73 #define VP_CLK_CTRL1_INVERTED 0x02
75 /* ------------------------------------------------------------------ */
76 /* Defines for Video Output Port Register at address 0x196 */
78 /* Bits 2 to 0: VSYNC pin video vertical sync type */
80 #define VP_VS_TYPE_MASK 0x07
82 #define VP_VS_TYPE_OFF 0x00
83 #define VP_VS_TYPE_V123 0x01
84 #define VP_VS_TYPE_V_ITU 0x02
85 #define VP_VS_TYPE_VGATE_L 0x03
86 #define VP_VS_TYPE_RESERVED1 0x04
87 #define VP_VS_TYPE_RESERVED2 0x05
88 #define VP_VS_TYPE_F_ITU 0x06
89 #define VP_VS_TYPE_SC_FID 0x07
91 /* ------------------------------------------------------------------ */
92 /* data structs for video */
94 static int video_out[][9] = {
95 [CCIR656] = { 0x00, 0xb1, 0x00, 0xa1, 0x00, 0x04, 0x06, 0x00, 0x00 },
98 static struct saa7134_format formats[] = {
100 .name = "8 bpp gray",
101 .fourcc = V4L2_PIX_FMT_GREY,
105 .name = "15 bpp RGB, le",
106 .fourcc = V4L2_PIX_FMT_RGB555,
110 .name = "15 bpp RGB, be",
111 .fourcc = V4L2_PIX_FMT_RGB555X,
116 .name = "16 bpp RGB, le",
117 .fourcc = V4L2_PIX_FMT_RGB565,
121 .name = "16 bpp RGB, be",
122 .fourcc = V4L2_PIX_FMT_RGB565X,
127 .name = "24 bpp RGB, le",
128 .fourcc = V4L2_PIX_FMT_BGR24,
132 .name = "24 bpp RGB, be",
133 .fourcc = V4L2_PIX_FMT_RGB24,
138 .name = "32 bpp RGB, le",
139 .fourcc = V4L2_PIX_FMT_BGR32,
143 .name = "32 bpp RGB, be",
144 .fourcc = V4L2_PIX_FMT_RGB32,
150 .name = "4:2:2 packed, YUYV",
151 .fourcc = V4L2_PIX_FMT_YUYV,
157 .name = "4:2:2 packed, UYVY",
158 .fourcc = V4L2_PIX_FMT_UYVY,
163 .name = "4:2:2 planar, Y-Cb-Cr",
164 .fourcc = V4L2_PIX_FMT_YUV422P,
172 .name = "4:2:0 planar, Y-Cb-Cr",
173 .fourcc = V4L2_PIX_FMT_YUV420,
181 .name = "4:2:0 planar, Y-Cb-Cr",
182 .fourcc = V4L2_PIX_FMT_YVU420,
192 #define FORMATS ARRAY_SIZE(formats)
194 #define NORM_625_50 \
197 .video_v_start = 24, \
198 .video_v_stop = 311, \
199 .vbi_v_start_0 = 7, \
200 .vbi_v_stop_0 = 22, \
201 .vbi_v_start_1 = 319, \
204 #define NORM_525_60 \
207 .video_v_start = 23, \
208 .video_v_stop = 262, \
209 .vbi_v_start_0 = 10, \
210 .vbi_v_stop_0 = 21, \
211 .vbi_v_start_1 = 273, \
214 static struct saa7134_tvnorm tvnorms[] = {
216 .name = "PAL", /* autodetect */
220 .sync_control = 0x18,
221 .luma_control = 0x40,
222 .chroma_ctrl1 = 0x81,
224 .chroma_ctrl2 = 0x06,
229 .id = V4L2_STD_PAL_BG,
232 .sync_control = 0x18,
233 .luma_control = 0x40,
234 .chroma_ctrl1 = 0x81,
236 .chroma_ctrl2 = 0x06,
241 .id = V4L2_STD_PAL_I,
244 .sync_control = 0x18,
245 .luma_control = 0x40,
246 .chroma_ctrl1 = 0x81,
248 .chroma_ctrl2 = 0x06,
253 .id = V4L2_STD_PAL_DK,
256 .sync_control = 0x18,
257 .luma_control = 0x40,
258 .chroma_ctrl1 = 0x81,
260 .chroma_ctrl2 = 0x06,
268 .sync_control = 0x59,
269 .luma_control = 0x40,
270 .chroma_ctrl1 = 0x89,
272 .chroma_ctrl2 = 0x0e,
277 .id = V4L2_STD_SECAM,
280 .sync_control = 0x18, /* old: 0x58, */
281 .luma_control = 0x1b,
282 .chroma_ctrl1 = 0xd1,
284 .chroma_ctrl2 = 0x00,
289 .id = V4L2_STD_PAL_M,
292 .sync_control = 0x59,
293 .luma_control = 0x40,
294 .chroma_ctrl1 = 0xb9,
296 .chroma_ctrl2 = 0x0e,
301 .id = V4L2_STD_PAL_Nc,
304 .sync_control = 0x18,
305 .luma_control = 0x40,
306 .chroma_ctrl1 = 0xa1,
308 .chroma_ctrl2 = 0x06,
313 .id = V4L2_STD_PAL_60,
321 .vbi_v_start_1 = 273,
324 .sync_control = 0x18,
325 .luma_control = 0x40,
326 .chroma_ctrl1 = 0x81,
328 .chroma_ctrl2 = 0x06,
332 #define TVNORMS ARRAY_SIZE(tvnorms)
334 #define V4L2_CID_PRIVATE_INVERT (V4L2_CID_PRIVATE_BASE + 0)
335 #define V4L2_CID_PRIVATE_Y_ODD (V4L2_CID_PRIVATE_BASE + 1)
336 #define V4L2_CID_PRIVATE_Y_EVEN (V4L2_CID_PRIVATE_BASE + 2)
337 #define V4L2_CID_PRIVATE_AUTOMUTE (V4L2_CID_PRIVATE_BASE + 3)
338 #define V4L2_CID_PRIVATE_LASTP1 (V4L2_CID_PRIVATE_BASE + 4)
340 static const struct v4l2_queryctrl no_ctrl = {
342 .flags = V4L2_CTRL_FLAG_DISABLED,
344 static const struct v4l2_queryctrl video_ctrls[] = {
347 .id = V4L2_CID_BRIGHTNESS,
348 .name = "Brightness",
352 .default_value = 128,
353 .type = V4L2_CTRL_TYPE_INTEGER,
355 .id = V4L2_CID_CONTRAST,
361 .type = V4L2_CTRL_TYPE_INTEGER,
363 .id = V4L2_CID_SATURATION,
364 .name = "Saturation",
369 .type = V4L2_CTRL_TYPE_INTEGER,
377 .type = V4L2_CTRL_TYPE_INTEGER,
379 .id = V4L2_CID_HFLIP,
383 .type = V4L2_CTRL_TYPE_BOOLEAN,
387 .id = V4L2_CID_AUDIO_MUTE,
391 .type = V4L2_CTRL_TYPE_BOOLEAN,
393 .id = V4L2_CID_AUDIO_VOLUME,
399 .type = V4L2_CTRL_TYPE_INTEGER,
401 /* --- private --- */
403 .id = V4L2_CID_PRIVATE_INVERT,
407 .type = V4L2_CTRL_TYPE_BOOLEAN,
409 .id = V4L2_CID_PRIVATE_Y_ODD,
410 .name = "y offset odd field",
414 .type = V4L2_CTRL_TYPE_INTEGER,
416 .id = V4L2_CID_PRIVATE_Y_EVEN,
417 .name = "y offset even field",
421 .type = V4L2_CTRL_TYPE_INTEGER,
423 .id = V4L2_CID_PRIVATE_AUTOMUTE,
428 .type = V4L2_CTRL_TYPE_BOOLEAN,
431 static const unsigned int CTRLS = ARRAY_SIZE(video_ctrls);
433 static const struct v4l2_queryctrl* ctrl_by_id(unsigned int id)
437 for (i = 0; i < CTRLS; i++)
438 if (video_ctrls[i].id == id)
439 return video_ctrls+i;
443 static struct saa7134_format* format_by_fourcc(unsigned int fourcc)
447 for (i = 0; i < FORMATS; i++)
448 if (formats[i].fourcc == fourcc)
453 /* ----------------------------------------------------------------------- */
454 /* resource management */
456 static int res_get(struct saa7134_dev *dev, struct saa7134_fh *fh, unsigned int bit)
458 if (fh->resources & bit)
459 /* have it already allocated */
463 mutex_lock(&dev->lock);
464 if (dev->resources & bit) {
465 /* no, someone else uses it */
466 mutex_unlock(&dev->lock);
469 /* it's free, grab it */
470 fh->resources |= bit;
471 dev->resources |= bit;
472 dprintk("res: get %d\n",bit);
473 mutex_unlock(&dev->lock);
478 int res_check(struct saa7134_fh *fh, unsigned int bit)
480 return (fh->resources & bit);
484 int res_locked(struct saa7134_dev *dev, unsigned int bit)
486 return (dev->resources & bit);
490 void res_free(struct saa7134_dev *dev, struct saa7134_fh *fh, unsigned int bits)
492 BUG_ON((fh->resources & bits) != bits);
494 mutex_lock(&dev->lock);
495 fh->resources &= ~bits;
496 dev->resources &= ~bits;
497 dprintk("res: put %d\n",bits);
498 mutex_unlock(&dev->lock);
501 /* ------------------------------------------------------------------ */
503 static void set_tvnorm(struct saa7134_dev *dev, struct saa7134_tvnorm *norm)
505 int luma_control,sync_control,mux;
507 dprintk("set tv norm = %s\n",norm->name);
510 mux = card_in(dev,dev->ctl_input).vmux;
511 luma_control = norm->luma_control;
512 sync_control = norm->sync_control;
515 luma_control |= 0x80; /* svideo */
516 if (noninterlaced || dev->nosignal)
517 sync_control |= 0x20;
520 dev->crop_bounds.left = norm->h_start;
521 dev->crop_defrect.left = norm->h_start;
522 dev->crop_bounds.width = norm->h_stop - norm->h_start +1;
523 dev->crop_defrect.width = norm->h_stop - norm->h_start +1;
525 dev->crop_bounds.top = (norm->vbi_v_stop_0+1)*2;
526 dev->crop_defrect.top = norm->video_v_start*2;
527 dev->crop_bounds.height = ((norm->id & V4L2_STD_525_60) ? 524 : 624)
528 - dev->crop_bounds.top;
529 dev->crop_defrect.height = (norm->video_v_stop - norm->video_v_start +1)*2;
531 dev->crop_current = dev->crop_defrect;
533 /* setup video decoder */
534 saa_writeb(SAA7134_INCR_DELAY, 0x08);
535 saa_writeb(SAA7134_ANALOG_IN_CTRL1, 0xc0 | mux);
536 saa_writeb(SAA7134_ANALOG_IN_CTRL2, 0x00);
538 saa_writeb(SAA7134_ANALOG_IN_CTRL3, 0x90);
539 saa_writeb(SAA7134_ANALOG_IN_CTRL4, 0x90);
540 saa_writeb(SAA7134_HSYNC_START, 0xeb);
541 saa_writeb(SAA7134_HSYNC_STOP, 0xe0);
542 saa_writeb(SAA7134_SOURCE_TIMING1, norm->src_timing);
544 saa_writeb(SAA7134_SYNC_CTRL, sync_control);
545 saa_writeb(SAA7134_LUMA_CTRL, luma_control);
546 saa_writeb(SAA7134_DEC_LUMA_BRIGHT, dev->ctl_bright);
547 saa_writeb(SAA7134_DEC_LUMA_CONTRAST, dev->ctl_contrast);
549 saa_writeb(SAA7134_DEC_CHROMA_SATURATION, dev->ctl_saturation);
550 saa_writeb(SAA7134_DEC_CHROMA_HUE, dev->ctl_hue);
551 saa_writeb(SAA7134_CHROMA_CTRL1, norm->chroma_ctrl1);
552 saa_writeb(SAA7134_CHROMA_GAIN, norm->chroma_gain);
554 saa_writeb(SAA7134_CHROMA_CTRL2, norm->chroma_ctrl2);
555 saa_writeb(SAA7134_MODE_DELAY_CTRL, 0x00);
557 saa_writeb(SAA7134_ANALOG_ADC, 0x01);
558 saa_writeb(SAA7134_VGATE_START, 0x11);
559 saa_writeb(SAA7134_VGATE_STOP, 0xfe);
560 saa_writeb(SAA7134_MISC_VGATE_MSB, norm->vgate_misc);
561 saa_writeb(SAA7134_RAW_DATA_GAIN, 0x40);
562 saa_writeb(SAA7134_RAW_DATA_OFFSET, 0x80);
564 saa7134_i2c_call_clients(dev,VIDIOC_S_STD,&norm->id);
567 static void video_mux(struct saa7134_dev *dev, int input)
569 dprintk("video input = %d [%s]\n",input,card_in(dev,input).name);
570 dev->ctl_input = input;
571 set_tvnorm(dev,dev->tvnorm);
572 saa7134_tvaudio_setinput(dev,&card_in(dev,input));
575 static void set_h_prescale(struct saa7134_dev *dev, int task, int prescale)
577 static const struct {
584 /* XPSC XACL XC2_1 XDCG VPFY */
596 static const int count = ARRAY_SIZE(vals);
599 for (i = 0; i < count; i++)
600 if (vals[i].xpsc == prescale)
605 saa_writeb(SAA7134_H_PRESCALE(task), vals[i].xpsc);
606 saa_writeb(SAA7134_ACC_LENGTH(task), vals[i].xacl);
607 saa_writeb(SAA7134_LEVEL_CTRL(task),
608 (vals[i].xc2_1 << 3) | (vals[i].xdcg));
609 saa_andorb(SAA7134_FIR_PREFILTER_CTRL(task), 0x0f,
610 (vals[i].vpfy << 2) | vals[i].vpfy);
613 static void set_v_scale(struct saa7134_dev *dev, int task, int yscale)
617 saa_writeb(SAA7134_V_SCALE_RATIO1(task), yscale & 0xff);
618 saa_writeb(SAA7134_V_SCALE_RATIO2(task), yscale >> 8);
620 mirror = (dev->ctl_mirror) ? 0x02 : 0x00;
623 dprintk("yscale LPI yscale=%d\n",yscale);
624 saa_writeb(SAA7134_V_FILTER(task), 0x00 | mirror);
625 saa_writeb(SAA7134_LUMA_CONTRAST(task), 0x40);
626 saa_writeb(SAA7134_CHROMA_SATURATION(task), 0x40);
629 val = 0x40 * 1024 / yscale;
630 dprintk("yscale ACM yscale=%d val=0x%x\n",yscale,val);
631 saa_writeb(SAA7134_V_FILTER(task), 0x01 | mirror);
632 saa_writeb(SAA7134_LUMA_CONTRAST(task), val);
633 saa_writeb(SAA7134_CHROMA_SATURATION(task), val);
635 saa_writeb(SAA7134_LUMA_BRIGHT(task), 0x80);
638 static void set_size(struct saa7134_dev *dev, int task,
639 int width, int height, int interlace)
641 int prescale,xscale,yscale,y_even,y_odd;
642 int h_start, h_stop, v_start, v_stop;
643 int div = interlace ? 2 : 1;
645 /* setup video scaler */
646 h_start = dev->crop_current.left;
647 v_start = dev->crop_current.top/2;
648 h_stop = (dev->crop_current.left + dev->crop_current.width -1);
649 v_stop = (dev->crop_current.top + dev->crop_current.height -1)/2;
651 saa_writeb(SAA7134_VIDEO_H_START1(task), h_start & 0xff);
652 saa_writeb(SAA7134_VIDEO_H_START2(task), h_start >> 8);
653 saa_writeb(SAA7134_VIDEO_H_STOP1(task), h_stop & 0xff);
654 saa_writeb(SAA7134_VIDEO_H_STOP2(task), h_stop >> 8);
655 saa_writeb(SAA7134_VIDEO_V_START1(task), v_start & 0xff);
656 saa_writeb(SAA7134_VIDEO_V_START2(task), v_start >> 8);
657 saa_writeb(SAA7134_VIDEO_V_STOP1(task), v_stop & 0xff);
658 saa_writeb(SAA7134_VIDEO_V_STOP2(task), v_stop >> 8);
660 prescale = dev->crop_current.width / width;
663 xscale = 1024 * dev->crop_current.width / prescale / width;
664 yscale = 512 * div * dev->crop_current.height / height;
665 dprintk("prescale=%d xscale=%d yscale=%d\n",prescale,xscale,yscale);
666 set_h_prescale(dev,task,prescale);
667 saa_writeb(SAA7134_H_SCALE_INC1(task), xscale & 0xff);
668 saa_writeb(SAA7134_H_SCALE_INC2(task), xscale >> 8);
669 set_v_scale(dev,task,yscale);
671 saa_writeb(SAA7134_VIDEO_PIXELS1(task), width & 0xff);
672 saa_writeb(SAA7134_VIDEO_PIXELS2(task), width >> 8);
673 saa_writeb(SAA7134_VIDEO_LINES1(task), height/div & 0xff);
674 saa_writeb(SAA7134_VIDEO_LINES2(task), height/div >> 8);
676 /* deinterlace y offsets */
677 y_odd = dev->ctl_y_odd;
678 y_even = dev->ctl_y_even;
679 saa_writeb(SAA7134_V_PHASE_OFFSET0(task), y_odd);
680 saa_writeb(SAA7134_V_PHASE_OFFSET1(task), y_even);
681 saa_writeb(SAA7134_V_PHASE_OFFSET2(task), y_odd);
682 saa_writeb(SAA7134_V_PHASE_OFFSET3(task), y_even);
685 /* ------------------------------------------------------------------ */
693 static void sort_cliplist(struct cliplist *cl, int entries)
695 struct cliplist swap;
698 for (i = entries-2; i >= 0; i--) {
699 for (n = 0, j = 0; j <= i; j++) {
700 if (cl[j].position > cl[j+1].position) {
712 static void set_cliplist(struct saa7134_dev *dev, int reg,
713 struct cliplist *cl, int entries, char *name)
718 for (i = 0; i < entries; i++) {
719 winbits |= cl[i].enable;
720 winbits &= ~cl[i].disable;
721 if (i < 15 && cl[i].position == cl[i+1].position)
723 saa_writeb(reg + 0, winbits);
724 saa_writeb(reg + 2, cl[i].position & 0xff);
725 saa_writeb(reg + 3, cl[i].position >> 8);
726 dprintk("clip: %s winbits=%02x pos=%d\n",
727 name,winbits,cl[i].position);
730 for (; reg < 0x400; reg += 8) {
731 saa_writeb(reg+ 0, 0);
732 saa_writeb(reg + 1, 0);
733 saa_writeb(reg + 2, 0);
734 saa_writeb(reg + 3, 0);
738 static int clip_range(int val)
745 static int setup_clipping(struct saa7134_dev *dev, struct v4l2_clip *clips,
746 int nclips, int interlace)
748 struct cliplist col[16], row[16];
750 int div = interlace ? 2 : 1;
752 memset(col,0,sizeof(col)); cols = 0;
753 memset(row,0,sizeof(row)); rows = 0;
754 for (i = 0; i < nclips && i < 8; i++) {
755 col[cols].position = clip_range(clips[i].c.left);
756 col[cols].enable = (1 << i);
758 col[cols].position = clip_range(clips[i].c.left+clips[i].c.width);
759 col[cols].disable = (1 << i);
761 row[rows].position = clip_range(clips[i].c.top / div);
762 row[rows].enable = (1 << i);
764 row[rows].position = clip_range((clips[i].c.top + clips[i].c.height)
766 row[rows].disable = (1 << i);
769 sort_cliplist(col,cols);
770 sort_cliplist(row,rows);
771 set_cliplist(dev,0x380,col,cols,"cols");
772 set_cliplist(dev,0x384,row,rows,"rows");
776 static int verify_preview(struct saa7134_dev *dev, struct v4l2_window *win)
778 enum v4l2_field field;
781 if (NULL == dev->ovbuf.base)
783 if (NULL == dev->ovfmt)
785 if (win->w.width < 48 || win->w.height < 32)
787 if (win->clipcount > 2048)
791 maxw = dev->crop_current.width;
792 maxh = dev->crop_current.height;
794 if (V4L2_FIELD_ANY == field) {
795 field = (win->w.height > maxh/2)
796 ? V4L2_FIELD_INTERLACED
801 case V4L2_FIELD_BOTTOM:
804 case V4L2_FIELD_INTERLACED:
811 if (win->w.width > maxw)
813 if (win->w.height > maxh)
814 win->w.height = maxh;
818 static int start_preview(struct saa7134_dev *dev, struct saa7134_fh *fh)
820 unsigned long base,control,bpl;
823 err = verify_preview(dev,&fh->win);
827 dev->ovfield = fh->win.field;
828 dprintk("start_preview %dx%d+%d+%d %s field=%s\n",
829 fh->win.w.width,fh->win.w.height,
830 fh->win.w.left,fh->win.w.top,
831 dev->ovfmt->name,v4l2_field_names[dev->ovfield]);
833 /* setup window + clipping */
834 set_size(dev,TASK_B,fh->win.w.width,fh->win.w.height,
835 V4L2_FIELD_HAS_BOTH(dev->ovfield));
836 setup_clipping(dev,fh->clips,fh->nclips,
837 V4L2_FIELD_HAS_BOTH(dev->ovfield));
839 saa_andorb(SAA7134_DATA_PATH(TASK_B), 0x3f, 0x03);
841 saa_andorb(SAA7134_DATA_PATH(TASK_B), 0x3f, 0x01);
842 saa_writeb(SAA7134_OFMT_VIDEO_B, dev->ovfmt->pm | 0x20);
844 /* dma: setup channel 1 (= Video Task B) */
845 base = (unsigned long)dev->ovbuf.base;
846 base += dev->ovbuf.fmt.bytesperline * fh->win.w.top;
847 base += dev->ovfmt->depth/8 * fh->win.w.left;
848 bpl = dev->ovbuf.fmt.bytesperline;
849 control = SAA7134_RS_CONTROL_BURST_16;
850 if (dev->ovfmt->bswap)
851 control |= SAA7134_RS_CONTROL_BSWAP;
852 if (dev->ovfmt->wswap)
853 control |= SAA7134_RS_CONTROL_WSWAP;
854 if (V4L2_FIELD_HAS_BOTH(dev->ovfield)) {
855 saa_writel(SAA7134_RS_BA1(1),base);
856 saa_writel(SAA7134_RS_BA2(1),base+bpl);
857 saa_writel(SAA7134_RS_PITCH(1),bpl*2);
858 saa_writel(SAA7134_RS_CONTROL(1),control);
860 saa_writel(SAA7134_RS_BA1(1),base);
861 saa_writel(SAA7134_RS_BA2(1),base);
862 saa_writel(SAA7134_RS_PITCH(1),bpl);
863 saa_writel(SAA7134_RS_CONTROL(1),control);
868 saa7134_set_dmabits(dev);
873 static int stop_preview(struct saa7134_dev *dev, struct saa7134_fh *fh)
876 saa7134_set_dmabits(dev);
880 /* ------------------------------------------------------------------ */
882 static int buffer_activate(struct saa7134_dev *dev,
883 struct saa7134_buf *buf,
884 struct saa7134_buf *next)
886 unsigned long base,control,bpl;
887 unsigned long bpl_uv,lines_uv,base2,base3,tmp; /* planar */
889 dprintk("buffer_activate buf=%p\n",buf);
890 buf->vb.state = STATE_ACTIVE;
893 set_size(dev,TASK_A,buf->vb.width,buf->vb.height,
894 V4L2_FIELD_HAS_BOTH(buf->vb.field));
896 saa_andorb(SAA7134_DATA_PATH(TASK_A), 0x3f, 0x03);
898 saa_andorb(SAA7134_DATA_PATH(TASK_A), 0x3f, 0x01);
899 saa_writeb(SAA7134_OFMT_VIDEO_A, buf->fmt->pm);
901 /* DMA: setup channel 0 (= Video Task A0) */
902 base = saa7134_buffer_base(buf);
903 if (buf->fmt->planar)
906 bpl = (buf->vb.width * buf->fmt->depth) / 8;
907 control = SAA7134_RS_CONTROL_BURST_16 |
908 SAA7134_RS_CONTROL_ME |
909 (buf->pt->dma >> 12);
911 control |= SAA7134_RS_CONTROL_BSWAP;
913 control |= SAA7134_RS_CONTROL_WSWAP;
914 if (V4L2_FIELD_HAS_BOTH(buf->vb.field)) {
916 saa_writel(SAA7134_RS_BA1(0),base);
917 saa_writel(SAA7134_RS_BA2(0),base+bpl);
918 saa_writel(SAA7134_RS_PITCH(0),bpl*2);
921 saa_writel(SAA7134_RS_BA1(0),base);
922 saa_writel(SAA7134_RS_BA2(0),base);
923 saa_writel(SAA7134_RS_PITCH(0),bpl);
925 saa_writel(SAA7134_RS_CONTROL(0),control);
927 if (buf->fmt->planar) {
928 /* DMA: setup channel 4+5 (= planar task A) */
929 bpl_uv = bpl >> buf->fmt->hshift;
930 lines_uv = buf->vb.height >> buf->fmt->vshift;
931 base2 = base + bpl * buf->vb.height;
932 base3 = base2 + bpl_uv * lines_uv;
933 if (buf->fmt->uvswap)
934 tmp = base2, base2 = base3, base3 = tmp;
935 dprintk("uv: bpl=%ld lines=%ld base2/3=%ld/%ld\n",
936 bpl_uv,lines_uv,base2,base3);
937 if (V4L2_FIELD_HAS_BOTH(buf->vb.field)) {
939 saa_writel(SAA7134_RS_BA1(4),base2);
940 saa_writel(SAA7134_RS_BA2(4),base2+bpl_uv);
941 saa_writel(SAA7134_RS_PITCH(4),bpl_uv*2);
942 saa_writel(SAA7134_RS_BA1(5),base3);
943 saa_writel(SAA7134_RS_BA2(5),base3+bpl_uv);
944 saa_writel(SAA7134_RS_PITCH(5),bpl_uv*2);
947 saa_writel(SAA7134_RS_BA1(4),base2);
948 saa_writel(SAA7134_RS_BA2(4),base2);
949 saa_writel(SAA7134_RS_PITCH(4),bpl_uv);
950 saa_writel(SAA7134_RS_BA1(5),base3);
951 saa_writel(SAA7134_RS_BA2(5),base3);
952 saa_writel(SAA7134_RS_PITCH(5),bpl_uv);
954 saa_writel(SAA7134_RS_CONTROL(4),control);
955 saa_writel(SAA7134_RS_CONTROL(5),control);
959 saa7134_set_dmabits(dev);
960 mod_timer(&dev->video_q.timeout, jiffies+BUFFER_TIMEOUT);
964 static int buffer_prepare(struct videobuf_queue *q,
965 struct videobuf_buffer *vb,
966 enum v4l2_field field)
968 struct saa7134_fh *fh = q->priv_data;
969 struct saa7134_dev *dev = fh->dev;
970 struct saa7134_buf *buf = container_of(vb,struct saa7134_buf,vb);
977 if (fh->width < 48 ||
979 fh->width/4 > dev->crop_current.width ||
980 fh->height/4 > dev->crop_current.height ||
981 fh->width > dev->crop_bounds.width ||
982 fh->height > dev->crop_bounds.height)
984 size = (fh->width * fh->height * fh->fmt->depth) >> 3;
985 if (0 != buf->vb.baddr && buf->vb.bsize < size)
988 dprintk("buffer_prepare [%d,size=%dx%d,bytes=%d,fields=%s,%s]\n",
989 vb->i,fh->width,fh->height,size,v4l2_field_names[field],
991 if (buf->vb.width != fh->width ||
992 buf->vb.height != fh->height ||
993 buf->vb.size != size ||
994 buf->vb.field != field ||
995 buf->fmt != fh->fmt) {
996 saa7134_dma_free(q,buf);
999 if (STATE_NEEDS_INIT == buf->vb.state) {
1000 buf->vb.width = fh->width;
1001 buf->vb.height = fh->height;
1002 buf->vb.size = size;
1003 buf->vb.field = field;
1005 buf->pt = &fh->pt_cap;
1007 err = videobuf_iolock(q,&buf->vb,&dev->ovbuf);
1010 err = saa7134_pgtable_build(dev->pci,buf->pt,
1013 saa7134_buffer_startpage(buf));
1017 buf->vb.state = STATE_PREPARED;
1018 buf->activate = buffer_activate;
1022 saa7134_dma_free(q,buf);
1027 buffer_setup(struct videobuf_queue *q, unsigned int *count, unsigned int *size)
1029 struct saa7134_fh *fh = q->priv_data;
1031 *size = fh->fmt->depth * fh->width * fh->height >> 3;
1034 *count = saa7134_buffer_count(*size,*count);
1038 static void buffer_queue(struct videobuf_queue *q, struct videobuf_buffer *vb)
1040 struct saa7134_fh *fh = q->priv_data;
1041 struct saa7134_buf *buf = container_of(vb,struct saa7134_buf,vb);
1043 saa7134_buffer_queue(fh->dev,&fh->dev->video_q,buf);
1046 static void buffer_release(struct videobuf_queue *q, struct videobuf_buffer *vb)
1048 struct saa7134_buf *buf = container_of(vb,struct saa7134_buf,vb);
1050 saa7134_dma_free(q,buf);
1053 static struct videobuf_queue_ops video_qops = {
1054 .buf_setup = buffer_setup,
1055 .buf_prepare = buffer_prepare,
1056 .buf_queue = buffer_queue,
1057 .buf_release = buffer_release,
1060 /* ------------------------------------------------------------------ */
1062 static int get_control(struct saa7134_dev *dev, struct v4l2_control *c)
1064 const struct v4l2_queryctrl* ctrl;
1066 ctrl = ctrl_by_id(c->id);
1070 case V4L2_CID_BRIGHTNESS:
1071 c->value = dev->ctl_bright;
1074 c->value = dev->ctl_hue;
1076 case V4L2_CID_CONTRAST:
1077 c->value = dev->ctl_contrast;
1079 case V4L2_CID_SATURATION:
1080 c->value = dev->ctl_saturation;
1082 case V4L2_CID_AUDIO_MUTE:
1083 c->value = dev->ctl_mute;
1085 case V4L2_CID_AUDIO_VOLUME:
1086 c->value = dev->ctl_volume;
1088 case V4L2_CID_PRIVATE_INVERT:
1089 c->value = dev->ctl_invert;
1091 case V4L2_CID_HFLIP:
1092 c->value = dev->ctl_mirror;
1094 case V4L2_CID_PRIVATE_Y_EVEN:
1095 c->value = dev->ctl_y_even;
1097 case V4L2_CID_PRIVATE_Y_ODD:
1098 c->value = dev->ctl_y_odd;
1100 case V4L2_CID_PRIVATE_AUTOMUTE:
1101 c->value = dev->ctl_automute;
1109 static int set_control(struct saa7134_dev *dev, struct saa7134_fh *fh,
1110 struct v4l2_control *c)
1112 const struct v4l2_queryctrl* ctrl;
1113 unsigned long flags;
1114 int restart_overlay = 0;
1116 ctrl = ctrl_by_id(c->id);
1119 dprintk("set_control name=%s val=%d\n",ctrl->name,c->value);
1120 switch (ctrl->type) {
1121 case V4L2_CTRL_TYPE_BOOLEAN:
1122 case V4L2_CTRL_TYPE_MENU:
1123 case V4L2_CTRL_TYPE_INTEGER:
1124 if (c->value < ctrl->minimum)
1125 c->value = ctrl->minimum;
1126 if (c->value > ctrl->maximum)
1127 c->value = ctrl->maximum;
1133 case V4L2_CID_BRIGHTNESS:
1134 dev->ctl_bright = c->value;
1135 saa_writeb(SAA7134_DEC_LUMA_BRIGHT, dev->ctl_bright);
1138 dev->ctl_hue = c->value;
1139 saa_writeb(SAA7134_DEC_CHROMA_HUE, dev->ctl_hue);
1141 case V4L2_CID_CONTRAST:
1142 dev->ctl_contrast = c->value;
1143 saa_writeb(SAA7134_DEC_LUMA_CONTRAST,
1144 dev->ctl_invert ? -dev->ctl_contrast : dev->ctl_contrast);
1146 case V4L2_CID_SATURATION:
1147 dev->ctl_saturation = c->value;
1148 saa_writeb(SAA7134_DEC_CHROMA_SATURATION,
1149 dev->ctl_invert ? -dev->ctl_saturation : dev->ctl_saturation);
1151 case V4L2_CID_AUDIO_MUTE:
1152 dev->ctl_mute = c->value;
1153 saa7134_tvaudio_setmute(dev);
1155 case V4L2_CID_AUDIO_VOLUME:
1156 dev->ctl_volume = c->value;
1157 saa7134_tvaudio_setvolume(dev,dev->ctl_volume);
1159 case V4L2_CID_PRIVATE_INVERT:
1160 dev->ctl_invert = c->value;
1161 saa_writeb(SAA7134_DEC_LUMA_CONTRAST,
1162 dev->ctl_invert ? -dev->ctl_contrast : dev->ctl_contrast);
1163 saa_writeb(SAA7134_DEC_CHROMA_SATURATION,
1164 dev->ctl_invert ? -dev->ctl_saturation : dev->ctl_saturation);
1166 case V4L2_CID_HFLIP:
1167 dev->ctl_mirror = c->value;
1168 restart_overlay = 1;
1170 case V4L2_CID_PRIVATE_Y_EVEN:
1171 dev->ctl_y_even = c->value;
1172 restart_overlay = 1;
1174 case V4L2_CID_PRIVATE_Y_ODD:
1175 dev->ctl_y_odd = c->value;
1176 restart_overlay = 1;
1178 case V4L2_CID_PRIVATE_AUTOMUTE:
1179 dev->ctl_automute = c->value;
1180 if (dev->tda9887_conf) {
1181 if (dev->ctl_automute)
1182 dev->tda9887_conf |= TDA9887_AUTOMUTE;
1184 dev->tda9887_conf &= ~TDA9887_AUTOMUTE;
1185 saa7134_i2c_call_clients(dev, TDA9887_SET_CONFIG,
1186 &dev->tda9887_conf);
1192 if (restart_overlay && fh && res_check(fh, RESOURCE_OVERLAY)) {
1193 spin_lock_irqsave(&dev->slock,flags);
1194 stop_preview(dev,fh);
1195 start_preview(dev,fh);
1196 spin_unlock_irqrestore(&dev->slock,flags);
1201 /* ------------------------------------------------------------------ */
1203 static struct videobuf_queue* saa7134_queue(struct saa7134_fh *fh)
1205 struct videobuf_queue* q = NULL;
1208 case V4L2_BUF_TYPE_VIDEO_CAPTURE:
1211 case V4L2_BUF_TYPE_VBI_CAPTURE:
1220 static int saa7134_resource(struct saa7134_fh *fh)
1225 case V4L2_BUF_TYPE_VIDEO_CAPTURE:
1226 res = RESOURCE_VIDEO;
1228 case V4L2_BUF_TYPE_VBI_CAPTURE:
1237 static int video_open(struct inode *inode, struct file *file)
1239 int minor = iminor(inode);
1240 struct saa7134_dev *h,*dev = NULL;
1241 struct saa7134_fh *fh;
1242 struct list_head *list;
1243 enum v4l2_buf_type type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
1245 list_for_each(list,&saa7134_devlist) {
1246 h = list_entry(list, struct saa7134_dev, devlist);
1247 if (h->video_dev && (h->video_dev->minor == minor))
1249 if (h->radio_dev && (h->radio_dev->minor == minor)) {
1253 if (h->vbi_dev && (h->vbi_dev->minor == minor)) {
1254 type = V4L2_BUF_TYPE_VBI_CAPTURE;
1261 dprintk("open minor=%d radio=%d type=%s\n",minor,radio,
1262 v4l2_type_names[type]);
1264 /* allocate + initialize per filehandle data */
1265 fh = kzalloc(sizeof(*fh),GFP_KERNEL);
1268 file->private_data = fh;
1272 fh->fmt = format_by_fourcc(V4L2_PIX_FMT_BGR24);
1275 v4l2_prio_open(&dev->prio,&fh->prio);
1277 videobuf_queue_init(&fh->cap, &video_qops,
1278 dev->pci, &dev->slock,
1279 V4L2_BUF_TYPE_VIDEO_CAPTURE,
1280 V4L2_FIELD_INTERLACED,
1281 sizeof(struct saa7134_buf),
1283 videobuf_queue_init(&fh->vbi, &saa7134_vbi_qops,
1284 dev->pci, &dev->slock,
1285 V4L2_BUF_TYPE_VBI_CAPTURE,
1287 sizeof(struct saa7134_buf),
1289 saa7134_pgtable_alloc(dev->pci,&fh->pt_cap);
1290 saa7134_pgtable_alloc(dev->pci,&fh->pt_vbi);
1293 /* switch to radio mode */
1294 saa7134_tvaudio_setinput(dev,&card(dev).radio);
1295 saa7134_i2c_call_clients(dev,AUDC_SET_RADIO, NULL);
1297 /* switch to video/vbi mode */
1298 video_mux(dev,dev->ctl_input);
1304 video_read(struct file *file, char __user *data, size_t count, loff_t *ppos)
1306 struct saa7134_fh *fh = file->private_data;
1309 case V4L2_BUF_TYPE_VIDEO_CAPTURE:
1310 if (res_locked(fh->dev,RESOURCE_VIDEO))
1312 return videobuf_read_one(saa7134_queue(fh),
1314 file->f_flags & O_NONBLOCK);
1315 case V4L2_BUF_TYPE_VBI_CAPTURE:
1316 if (!res_get(fh->dev,fh,RESOURCE_VBI))
1318 return videobuf_read_stream(saa7134_queue(fh),
1319 data, count, ppos, 1,
1320 file->f_flags & O_NONBLOCK);
1329 video_poll(struct file *file, struct poll_table_struct *wait)
1331 struct saa7134_fh *fh = file->private_data;
1332 struct videobuf_buffer *buf = NULL;
1334 if (V4L2_BUF_TYPE_VBI_CAPTURE == fh->type)
1335 return videobuf_poll_stream(file, &fh->vbi, wait);
1337 if (res_check(fh,RESOURCE_VIDEO)) {
1338 if (!list_empty(&fh->cap.stream))
1339 buf = list_entry(fh->cap.stream.next, struct videobuf_buffer, stream);
1341 mutex_lock(&fh->cap.lock);
1342 if (UNSET == fh->cap.read_off) {
1343 /* need to capture a new frame */
1344 if (res_locked(fh->dev,RESOURCE_VIDEO)) {
1345 mutex_unlock(&fh->cap.lock);
1348 if (0 != fh->cap.ops->buf_prepare(&fh->cap,fh->cap.read_buf,fh->cap.field)) {
1349 mutex_unlock(&fh->cap.lock);
1352 fh->cap.ops->buf_queue(&fh->cap,fh->cap.read_buf);
1353 fh->cap.read_off = 0;
1355 mutex_unlock(&fh->cap.lock);
1356 buf = fh->cap.read_buf;
1362 poll_wait(file, &buf->done, wait);
1363 if (buf->state == STATE_DONE ||
1364 buf->state == STATE_ERROR)
1365 return POLLIN|POLLRDNORM;
1369 static int video_release(struct inode *inode, struct file *file)
1371 struct saa7134_fh *fh = file->private_data;
1372 struct saa7134_dev *dev = fh->dev;
1373 unsigned long flags;
1375 /* turn off overlay */
1376 if (res_check(fh, RESOURCE_OVERLAY)) {
1377 spin_lock_irqsave(&dev->slock,flags);
1378 stop_preview(dev,fh);
1379 spin_unlock_irqrestore(&dev->slock,flags);
1380 res_free(dev,fh,RESOURCE_OVERLAY);
1383 /* stop video capture */
1384 if (res_check(fh, RESOURCE_VIDEO)) {
1385 videobuf_streamoff(&fh->cap);
1386 res_free(dev,fh,RESOURCE_VIDEO);
1388 if (fh->cap.read_buf) {
1389 buffer_release(&fh->cap,fh->cap.read_buf);
1390 kfree(fh->cap.read_buf);
1393 /* stop vbi capture */
1394 if (res_check(fh, RESOURCE_VBI)) {
1395 if (fh->vbi.streaming)
1396 videobuf_streamoff(&fh->vbi);
1397 if (fh->vbi.reading)
1398 videobuf_read_stop(&fh->vbi);
1399 res_free(dev,fh,RESOURCE_VBI);
1402 /* ts-capture will not work in planar mode, so turn it off Hac: 04.05*/
1403 saa_andorb(SAA7134_OFMT_VIDEO_A, 0x1f, 0);
1404 saa_andorb(SAA7134_OFMT_VIDEO_B, 0x1f, 0);
1405 saa_andorb(SAA7134_OFMT_DATA_A, 0x1f, 0);
1406 saa_andorb(SAA7134_OFMT_DATA_B, 0x1f, 0);
1408 saa7134_i2c_call_clients(dev, TUNER_SET_STANDBY, NULL);
1411 videobuf_mmap_free(&fh->cap);
1412 videobuf_mmap_free(&fh->vbi);
1413 saa7134_pgtable_free(dev->pci,&fh->pt_cap);
1414 saa7134_pgtable_free(dev->pci,&fh->pt_vbi);
1416 v4l2_prio_close(&dev->prio,&fh->prio);
1417 file->private_data = NULL;
1423 video_mmap(struct file *file, struct vm_area_struct * vma)
1425 struct saa7134_fh *fh = file->private_data;
1427 return videobuf_mmap_mapper(saa7134_queue(fh), vma);
1430 /* ------------------------------------------------------------------ */
1432 static void saa7134_vbi_fmt(struct saa7134_dev *dev, struct v4l2_format *f)
1434 struct saa7134_tvnorm *norm = dev->tvnorm;
1436 f->fmt.vbi.sampling_rate = 6750000 * 4;
1437 f->fmt.vbi.samples_per_line = 2048 /* VBI_LINE_LENGTH */;
1438 f->fmt.vbi.sample_format = V4L2_PIX_FMT_GREY;
1439 f->fmt.vbi.offset = 64 * 4;
1440 f->fmt.vbi.start[0] = norm->vbi_v_start_0;
1441 f->fmt.vbi.count[0] = norm->vbi_v_stop_0 - norm->vbi_v_start_0 +1;
1442 f->fmt.vbi.start[1] = norm->vbi_v_start_1;
1443 f->fmt.vbi.count[1] = f->fmt.vbi.count[0];
1444 f->fmt.vbi.flags = 0; /* VBI_UNSYNC VBI_INTERLACED */
1448 static int saa7134_g_fmt(struct saa7134_dev *dev, struct saa7134_fh *fh,
1449 struct v4l2_format *f)
1452 case V4L2_BUF_TYPE_VIDEO_CAPTURE:
1453 memset(&f->fmt.pix,0,sizeof(f->fmt.pix));
1454 f->fmt.pix.width = fh->width;
1455 f->fmt.pix.height = fh->height;
1456 f->fmt.pix.field = fh->cap.field;
1457 f->fmt.pix.pixelformat = fh->fmt->fourcc;
1458 f->fmt.pix.bytesperline =
1459 (f->fmt.pix.width * fh->fmt->depth) >> 3;
1460 f->fmt.pix.sizeimage =
1461 f->fmt.pix.height * f->fmt.pix.bytesperline;
1463 case V4L2_BUF_TYPE_VIDEO_OVERLAY:
1464 if (saa7134_no_overlay > 0) {
1465 printk ("V4L2_BUF_TYPE_VIDEO_OVERLAY: no_overlay\n");
1468 f->fmt.win = fh->win;
1470 case V4L2_BUF_TYPE_VBI_CAPTURE:
1471 saa7134_vbi_fmt(dev,f);
1478 static int saa7134_try_fmt(struct saa7134_dev *dev, struct saa7134_fh *fh,
1479 struct v4l2_format *f)
1484 case V4L2_BUF_TYPE_VIDEO_CAPTURE:
1486 struct saa7134_format *fmt;
1487 enum v4l2_field field;
1488 unsigned int maxw, maxh;
1490 fmt = format_by_fourcc(f->fmt.pix.pixelformat);
1494 field = f->fmt.pix.field;
1495 maxw = min(dev->crop_current.width*4, dev->crop_bounds.width);
1496 maxh = min(dev->crop_current.height*4, dev->crop_bounds.height);
1498 if (V4L2_FIELD_ANY == field) {
1499 field = (f->fmt.pix.height > maxh/2)
1500 ? V4L2_FIELD_INTERLACED
1501 : V4L2_FIELD_BOTTOM;
1504 case V4L2_FIELD_TOP:
1505 case V4L2_FIELD_BOTTOM:
1508 case V4L2_FIELD_INTERLACED:
1514 f->fmt.pix.field = field;
1515 if (f->fmt.pix.width < 48)
1516 f->fmt.pix.width = 48;
1517 if (f->fmt.pix.height < 32)
1518 f->fmt.pix.height = 32;
1519 if (f->fmt.pix.width > maxw)
1520 f->fmt.pix.width = maxw;
1521 if (f->fmt.pix.height > maxh)
1522 f->fmt.pix.height = maxh;
1523 f->fmt.pix.width &= ~0x03;
1524 f->fmt.pix.bytesperline =
1525 (f->fmt.pix.width * fmt->depth) >> 3;
1526 f->fmt.pix.sizeimage =
1527 f->fmt.pix.height * f->fmt.pix.bytesperline;
1531 case V4L2_BUF_TYPE_VIDEO_OVERLAY:
1532 if (saa7134_no_overlay > 0) {
1533 printk ("V4L2_BUF_TYPE_VIDEO_OVERLAY: no_overlay\n");
1536 err = verify_preview(dev,&f->fmt.win);
1540 case V4L2_BUF_TYPE_VBI_CAPTURE:
1541 saa7134_vbi_fmt(dev,f);
1548 static int saa7134_s_fmt(struct saa7134_dev *dev, struct saa7134_fh *fh,
1549 struct v4l2_format *f)
1551 unsigned long flags;
1555 case V4L2_BUF_TYPE_VIDEO_CAPTURE:
1556 err = saa7134_try_fmt(dev,fh,f);
1560 fh->fmt = format_by_fourcc(f->fmt.pix.pixelformat);
1561 fh->width = f->fmt.pix.width;
1562 fh->height = f->fmt.pix.height;
1563 fh->cap.field = f->fmt.pix.field;
1565 case V4L2_BUF_TYPE_VIDEO_OVERLAY:
1566 if (saa7134_no_overlay > 0) {
1567 printk ("V4L2_BUF_TYPE_VIDEO_OVERLAY: no_overlay\n");
1570 err = verify_preview(dev,&f->fmt.win);
1574 mutex_lock(&dev->lock);
1575 fh->win = f->fmt.win;
1576 fh->nclips = f->fmt.win.clipcount;
1579 if (copy_from_user(fh->clips,f->fmt.win.clips,
1580 sizeof(struct v4l2_clip)*fh->nclips)) {
1581 mutex_unlock(&dev->lock);
1585 if (res_check(fh, RESOURCE_OVERLAY)) {
1586 spin_lock_irqsave(&dev->slock,flags);
1587 stop_preview(dev,fh);
1588 start_preview(dev,fh);
1589 spin_unlock_irqrestore(&dev->slock,flags);
1591 mutex_unlock(&dev->lock);
1593 case V4L2_BUF_TYPE_VBI_CAPTURE:
1594 saa7134_vbi_fmt(dev,f);
1601 int saa7134_common_ioctl(struct saa7134_dev *dev,
1602 unsigned int cmd, void *arg)
1607 case VIDIOC_QUERYCTRL:
1609 const struct v4l2_queryctrl *ctrl;
1610 struct v4l2_queryctrl *c = arg;
1612 if ((c->id < V4L2_CID_BASE ||
1613 c->id >= V4L2_CID_LASTP1) &&
1614 (c->id < V4L2_CID_PRIVATE_BASE ||
1615 c->id >= V4L2_CID_PRIVATE_LASTP1))
1617 ctrl = ctrl_by_id(c->id);
1618 *c = (NULL != ctrl) ? *ctrl : no_ctrl;
1622 return get_control(dev,arg);
1625 mutex_lock(&dev->lock);
1626 err = set_control(dev,NULL,arg);
1627 mutex_unlock(&dev->lock);
1630 /* --- input switching --------------------------------------- */
1631 case VIDIOC_ENUMINPUT:
1633 struct v4l2_input *i = arg;
1637 if (n >= SAA7134_INPUT_MAX)
1639 if (NULL == card_in(dev,i->index).name)
1641 memset(i,0,sizeof(*i));
1643 i->type = V4L2_INPUT_TYPE_CAMERA;
1644 strcpy(i->name,card_in(dev,n).name);
1645 if (card_in(dev,n).tv)
1646 i->type = V4L2_INPUT_TYPE_TUNER;
1648 if (n == dev->ctl_input) {
1649 int v1 = saa_readb(SAA7134_STATUS_VIDEO1);
1650 int v2 = saa_readb(SAA7134_STATUS_VIDEO2);
1652 if (0 != (v1 & 0x40))
1653 i->status |= V4L2_IN_ST_NO_H_LOCK;
1654 if (0 != (v2 & 0x40))
1655 i->status |= V4L2_IN_ST_NO_SYNC;
1656 if (0 != (v2 & 0x0e))
1657 i->status |= V4L2_IN_ST_MACROVISION;
1659 for (n = 0; n < TVNORMS; n++)
1660 i->std |= tvnorms[n].id;
1663 case VIDIOC_G_INPUT:
1666 *i = dev->ctl_input;
1669 case VIDIOC_S_INPUT:
1673 if (*i < 0 || *i >= SAA7134_INPUT_MAX)
1675 if (NULL == card_in(dev,*i).name)
1677 mutex_lock(&dev->lock);
1679 mutex_unlock(&dev->lock);
1686 EXPORT_SYMBOL(saa7134_common_ioctl);
1689 * This function is _not_ called directly, but from
1690 * video_generic_ioctl (and maybe others). userspace
1691 * copying is done already, arg is a kernel pointer.
1693 static int video_do_ioctl(struct inode *inode, struct file *file,
1694 unsigned int cmd, void *arg)
1696 struct saa7134_fh *fh = file->private_data;
1697 struct saa7134_dev *dev = fh->dev;
1698 unsigned long flags;
1701 if (video_debug > 1)
1702 v4l_print_ioctl(dev->name,cmd);
1707 case VIDIOC_S_INPUT:
1708 case VIDIOC_S_TUNER:
1709 case VIDIOC_S_FREQUENCY:
1710 err = v4l2_prio_check(&dev->prio,&fh->prio);
1716 case VIDIOC_QUERYCAP:
1718 struct v4l2_capability *cap = arg;
1719 unsigned int tuner_type = dev->tuner_type;
1721 memset(cap,0,sizeof(*cap));
1722 strcpy(cap->driver, "saa7134");
1723 strlcpy(cap->card, saa7134_boards[dev->board].name,
1725 sprintf(cap->bus_info,"PCI:%s",pci_name(dev->pci));
1726 cap->version = SAA7134_VERSION_CODE;
1728 V4L2_CAP_VIDEO_CAPTURE |
1729 V4L2_CAP_VBI_CAPTURE |
1730 V4L2_CAP_READWRITE |
1731 V4L2_CAP_STREAMING |
1733 if (saa7134_no_overlay <= 0) {
1734 cap->capabilities |= V4L2_CAP_VIDEO_OVERLAY;
1737 if ((tuner_type == TUNER_ABSENT) || (tuner_type == UNSET))
1738 cap->capabilities &= ~V4L2_CAP_TUNER;
1743 /* --- tv standards ------------------------------------------ */
1744 case VIDIOC_ENUMSTD:
1746 struct v4l2_standard *e = arg;
1752 err = v4l2_video_std_construct(e, tvnorms[e->index].id,
1753 tvnorms[e->index].name);
1761 v4l2_std_id *id = arg;
1763 *id = dev->tvnorm->id;
1768 v4l2_std_id *id = arg;
1771 for (i = 0; i < TVNORMS; i++)
1772 if (*id == tvnorms[i].id)
1775 for (i = 0; i < TVNORMS; i++)
1776 if (*id & tvnorms[i].id)
1781 mutex_lock(&dev->lock);
1782 if (res_check(fh, RESOURCE_OVERLAY)) {
1783 spin_lock_irqsave(&dev->slock,flags);
1784 stop_preview(dev,fh);
1785 set_tvnorm(dev,&tvnorms[i]);
1786 start_preview(dev,fh);
1787 spin_unlock_irqrestore(&dev->slock,flags);
1789 set_tvnorm(dev,&tvnorms[i]);
1790 saa7134_tvaudio_do_scan(dev);
1791 mutex_unlock(&dev->lock);
1795 case VIDIOC_CROPCAP:
1797 struct v4l2_cropcap *cap = arg;
1799 if (cap->type != V4L2_BUF_TYPE_VIDEO_CAPTURE &&
1800 cap->type != V4L2_BUF_TYPE_VIDEO_OVERLAY)
1802 cap->bounds = dev->crop_bounds;
1803 cap->defrect = dev->crop_defrect;
1804 cap->pixelaspect.numerator = 1;
1805 cap->pixelaspect.denominator = 1;
1806 if (dev->tvnorm->id & V4L2_STD_525_60) {
1807 cap->pixelaspect.numerator = 11;
1808 cap->pixelaspect.denominator = 10;
1810 if (dev->tvnorm->id & V4L2_STD_625_50) {
1811 cap->pixelaspect.numerator = 54;
1812 cap->pixelaspect.denominator = 59;
1819 struct v4l2_crop * crop = arg;
1821 if (crop->type != V4L2_BUF_TYPE_VIDEO_CAPTURE &&
1822 crop->type != V4L2_BUF_TYPE_VIDEO_OVERLAY)
1824 crop->c = dev->crop_current;
1829 struct v4l2_crop *crop = arg;
1830 struct v4l2_rect *b = &dev->crop_bounds;
1832 if (crop->type != V4L2_BUF_TYPE_VIDEO_CAPTURE &&
1833 crop->type != V4L2_BUF_TYPE_VIDEO_OVERLAY)
1835 if (crop->c.height < 0)
1837 if (crop->c.width < 0)
1840 if (res_locked(fh->dev,RESOURCE_OVERLAY))
1842 if (res_locked(fh->dev,RESOURCE_VIDEO))
1845 if (crop->c.top < b->top)
1846 crop->c.top = b->top;
1847 if (crop->c.top > b->top + b->height)
1848 crop->c.top = b->top + b->height;
1849 if (crop->c.height > b->top - crop->c.top + b->height)
1850 crop->c.height = b->top - crop->c.top + b->height;
1852 if (crop->c.left < b->left)
1853 crop->c.left = b->left;
1854 if (crop->c.left > b->left + b->width)
1855 crop->c.left = b->left + b->width;
1856 if (crop->c.width > b->left - crop->c.left + b->width)
1857 crop->c.width = b->left - crop->c.left + b->width;
1859 dev->crop_current = crop->c;
1863 /* --- tuner ioctls ------------------------------------------ */
1864 case VIDIOC_G_TUNER:
1866 struct v4l2_tuner *t = arg;
1871 memset(t,0,sizeof(*t));
1872 for (n = 0; n < SAA7134_INPUT_MAX; n++)
1873 if (card_in(dev,n).tv)
1875 if (NULL != card_in(dev,n).name) {
1876 strcpy(t->name, "Television");
1877 t->type = V4L2_TUNER_ANALOG_TV;
1878 t->capability = V4L2_TUNER_CAP_NORM |
1879 V4L2_TUNER_CAP_STEREO |
1880 V4L2_TUNER_CAP_LANG1 |
1881 V4L2_TUNER_CAP_LANG2;
1882 t->rangehigh = 0xffffffffUL;
1883 t->rxsubchans = saa7134_tvaudio_getstereo(dev);
1884 t->audmode = saa7134_tvaudio_rx2mode(t->rxsubchans);
1886 if (0 != (saa_readb(SAA7134_STATUS_VIDEO1) & 0x03))
1890 case VIDIOC_S_TUNER:
1892 struct v4l2_tuner *t = arg;
1895 mode = dev->thread.mode;
1896 if (UNSET == mode) {
1897 rx = saa7134_tvaudio_getstereo(dev);
1898 mode = saa7134_tvaudio_rx2mode(t->rxsubchans);
1900 if (mode != t->audmode) {
1901 dev->thread.mode = t->audmode;
1905 case VIDIOC_G_FREQUENCY:
1907 struct v4l2_frequency *f = arg;
1909 memset(f,0,sizeof(*f));
1910 f->type = fh->radio ? V4L2_TUNER_RADIO : V4L2_TUNER_ANALOG_TV;
1911 f->frequency = dev->ctl_freq;
1914 case VIDIOC_S_FREQUENCY:
1916 struct v4l2_frequency *f = arg;
1920 if (0 == fh->radio && V4L2_TUNER_ANALOG_TV != f->type)
1922 if (1 == fh->radio && V4L2_TUNER_RADIO != f->type)
1924 mutex_lock(&dev->lock);
1925 dev->ctl_freq = f->frequency;
1927 saa7134_i2c_call_clients(dev,VIDIOC_S_FREQUENCY,f);
1929 saa7134_tvaudio_do_scan(dev);
1930 mutex_unlock(&dev->lock);
1934 /* --- control ioctls ---------------------------------------- */
1935 case VIDIOC_ENUMINPUT:
1936 case VIDIOC_G_INPUT:
1937 case VIDIOC_S_INPUT:
1938 case VIDIOC_QUERYCTRL:
1941 return saa7134_common_ioctl(dev, cmd, arg);
1943 case VIDIOC_G_AUDIO:
1945 struct v4l2_audio *a = arg;
1947 memset(a,0,sizeof(*a));
1948 strcpy(a->name,"audio");
1951 case VIDIOC_S_AUDIO:
1955 struct v4l2_captureparm *parm = arg;
1956 memset(parm,0,sizeof(*parm));
1960 case VIDIOC_G_PRIORITY:
1962 enum v4l2_priority *p = arg;
1964 *p = v4l2_prio_max(&dev->prio);
1967 case VIDIOC_S_PRIORITY:
1969 enum v4l2_priority *prio = arg;
1971 return v4l2_prio_change(&dev->prio, &fh->prio, *prio);
1974 /* --- preview ioctls ---------------------------------------- */
1975 case VIDIOC_ENUM_FMT:
1977 struct v4l2_fmtdesc *f = arg;
1978 enum v4l2_buf_type type;
1984 case V4L2_BUF_TYPE_VIDEO_CAPTURE:
1985 case V4L2_BUF_TYPE_VIDEO_OVERLAY:
1986 if (saa7134_no_overlay > 0) {
1987 printk ("V4L2_BUF_TYPE_VIDEO_OVERLAY: no_overlay\n");
1990 if (index >= FORMATS)
1992 if (f->type == V4L2_BUF_TYPE_VIDEO_OVERLAY &&
1993 formats[index].planar)
1995 memset(f,0,sizeof(*f));
1998 strlcpy(f->description,formats[index].name,sizeof(f->description));
1999 f->pixelformat = formats[index].fourcc;
2001 case V4L2_BUF_TYPE_VBI_CAPTURE:
2004 memset(f,0,sizeof(*f));
2007 f->pixelformat = V4L2_PIX_FMT_GREY;
2008 strcpy(f->description,"vbi data");
2017 struct v4l2_framebuffer *fb = arg;
2020 fb->capability = V4L2_FBUF_CAP_LIST_CLIPPING;
2025 struct v4l2_framebuffer *fb = arg;
2026 struct saa7134_format *fmt;
2028 if(!capable(CAP_SYS_ADMIN) &&
2029 !capable(CAP_SYS_RAWIO))
2033 fmt = format_by_fourcc(fb->fmt.pixelformat);
2040 if (0 == dev->ovbuf.fmt.bytesperline)
2041 dev->ovbuf.fmt.bytesperline =
2042 dev->ovbuf.fmt.width*fmt->depth/8;
2045 case VIDIOC_OVERLAY:
2050 if (saa7134_no_overlay > 0) {
2051 printk ("no_overlay\n");
2055 if (!res_get(dev,fh,RESOURCE_OVERLAY))
2057 spin_lock_irqsave(&dev->slock,flags);
2058 start_preview(dev,fh);
2059 spin_unlock_irqrestore(&dev->slock,flags);
2062 if (!res_check(fh, RESOURCE_OVERLAY))
2064 spin_lock_irqsave(&dev->slock,flags);
2065 stop_preview(dev,fh);
2066 spin_unlock_irqrestore(&dev->slock,flags);
2067 res_free(dev,fh,RESOURCE_OVERLAY);
2072 /* --- capture ioctls ---------------------------------------- */
2075 struct v4l2_format *f = arg;
2076 return saa7134_g_fmt(dev,fh,f);
2080 struct v4l2_format *f = arg;
2081 return saa7134_s_fmt(dev,fh,f);
2083 case VIDIOC_TRY_FMT:
2085 struct v4l2_format *f = arg;
2086 return saa7134_try_fmt(dev,fh,f);
2091 struct video_mbuf *mbuf = arg;
2092 struct videobuf_queue *q;
2093 struct v4l2_requestbuffers req;
2096 q = saa7134_queue(fh);
2097 memset(&req,0,sizeof(req));
2099 req.count = gbuffers;
2100 req.memory = V4L2_MEMORY_MMAP;
2101 err = videobuf_reqbufs(q,&req);
2104 memset(mbuf,0,sizeof(*mbuf));
2105 mbuf->frames = req.count;
2107 for (i = 0; i < mbuf->frames; i++) {
2108 mbuf->offsets[i] = q->bufs[i]->boff;
2109 mbuf->size += q->bufs[i]->bsize;
2114 case VIDIOC_REQBUFS:
2115 return videobuf_reqbufs(saa7134_queue(fh),arg);
2117 case VIDIOC_QUERYBUF:
2118 return videobuf_querybuf(saa7134_queue(fh),arg);
2121 return videobuf_qbuf(saa7134_queue(fh),arg);
2124 return videobuf_dqbuf(saa7134_queue(fh),arg,
2125 file->f_flags & O_NONBLOCK);
2127 case VIDIOC_STREAMON:
2129 int res = saa7134_resource(fh);
2131 if (!res_get(dev,fh,res))
2133 return videobuf_streamon(saa7134_queue(fh));
2135 case VIDIOC_STREAMOFF:
2137 int res = saa7134_resource(fh);
2139 err = videobuf_streamoff(saa7134_queue(fh));
2142 res_free(dev,fh,res);
2147 return v4l_compat_translate_ioctl(inode,file,cmd,arg,
2153 static int video_ioctl(struct inode *inode, struct file *file,
2154 unsigned int cmd, unsigned long arg)
2156 return video_usercopy(inode, file, cmd, arg, video_do_ioctl);
2159 static int radio_do_ioctl(struct inode *inode, struct file *file,
2160 unsigned int cmd, void *arg)
2162 struct saa7134_fh *fh = file->private_data;
2163 struct saa7134_dev *dev = fh->dev;
2165 if (video_debug > 1)
2166 v4l_print_ioctl(dev->name,cmd);
2168 case VIDIOC_QUERYCAP:
2170 struct v4l2_capability *cap = arg;
2172 memset(cap,0,sizeof(*cap));
2173 strcpy(cap->driver, "saa7134");
2174 strlcpy(cap->card, saa7134_boards[dev->board].name,
2176 sprintf(cap->bus_info,"PCI:%s",pci_name(dev->pci));
2177 cap->version = SAA7134_VERSION_CODE;
2178 cap->capabilities = V4L2_CAP_TUNER;
2181 case VIDIOC_G_TUNER:
2183 struct v4l2_tuner *t = arg;
2188 memset(t,0,sizeof(*t));
2189 strcpy(t->name, "Radio");
2190 t->type = V4L2_TUNER_RADIO;
2192 saa7134_i2c_call_clients(dev, VIDIOC_G_TUNER, t);
2196 case VIDIOC_S_TUNER:
2198 struct v4l2_tuner *t = arg;
2203 saa7134_i2c_call_clients(dev,VIDIOC_S_TUNER,t);
2207 case VIDIOC_ENUMINPUT:
2209 struct v4l2_input *i = arg;
2213 strcpy(i->name,"Radio");
2214 i->type = V4L2_INPUT_TYPE_TUNER;
2217 case VIDIOC_G_INPUT:
2223 case VIDIOC_G_AUDIO:
2225 struct v4l2_audio *a = arg;
2227 memset(a,0,sizeof(*a));
2228 strcpy(a->name,"Radio");
2233 v4l2_std_id *id = arg;
2237 case VIDIOC_S_AUDIO:
2238 case VIDIOC_S_INPUT:
2242 case VIDIOC_QUERYCTRL:
2244 const struct v4l2_queryctrl *ctrl;
2245 struct v4l2_queryctrl *c = arg;
2247 if (c->id < V4L2_CID_BASE ||
2248 c->id >= V4L2_CID_LASTP1)
2250 if (c->id == V4L2_CID_AUDIO_MUTE) {
2251 ctrl = ctrl_by_id(c->id);
2260 case VIDIOC_G_FREQUENCY:
2261 case VIDIOC_S_FREQUENCY:
2262 return video_do_ioctl(inode,file,cmd,arg);
2265 return v4l_compat_translate_ioctl(inode,file,cmd,arg,
2271 static int radio_ioctl(struct inode *inode, struct file *file,
2272 unsigned int cmd, unsigned long arg)
2274 return video_usercopy(inode, file, cmd, arg, radio_do_ioctl);
2277 static struct file_operations video_fops =
2279 .owner = THIS_MODULE,
2281 .release = video_release,
2285 .ioctl = video_ioctl,
2286 .compat_ioctl = v4l_compat_ioctl32,
2287 .llseek = no_llseek,
2290 static struct file_operations radio_fops =
2292 .owner = THIS_MODULE,
2294 .release = video_release,
2295 .ioctl = radio_ioctl,
2296 .compat_ioctl = v4l_compat_ioctl32,
2297 .llseek = no_llseek,
2300 /* ----------------------------------------------------------- */
2301 /* exported stuff */
2303 struct video_device saa7134_video_template =
2305 .name = "saa7134-video",
2306 .type = VID_TYPE_CAPTURE|VID_TYPE_TUNER|
2307 VID_TYPE_CLIPPING|VID_TYPE_SCALES,
2309 .fops = &video_fops,
2313 struct video_device saa7134_vbi_template =
2315 .name = "saa7134-vbi",
2316 .type = VID_TYPE_TUNER|VID_TYPE_TELETEXT,
2318 .fops = &video_fops,
2322 struct video_device saa7134_radio_template =
2324 .name = "saa7134-radio",
2325 .type = VID_TYPE_TUNER,
2327 .fops = &radio_fops,
2331 int saa7134_video_init1(struct saa7134_dev *dev)
2333 /* sanitycheck insmod options */
2334 if (gbuffers < 2 || gbuffers > VIDEO_MAX_FRAME)
2336 if (gbufsize < 0 || gbufsize > gbufsize_max)
2337 gbufsize = gbufsize_max;
2338 gbufsize = (gbufsize + PAGE_SIZE - 1) & PAGE_MASK;
2340 /* put some sensible defaults into the data structures ... */
2341 dev->ctl_bright = ctrl_by_id(V4L2_CID_BRIGHTNESS)->default_value;
2342 dev->ctl_contrast = ctrl_by_id(V4L2_CID_CONTRAST)->default_value;
2343 dev->ctl_hue = ctrl_by_id(V4L2_CID_HUE)->default_value;
2344 dev->ctl_saturation = ctrl_by_id(V4L2_CID_SATURATION)->default_value;
2345 dev->ctl_volume = ctrl_by_id(V4L2_CID_AUDIO_VOLUME)->default_value;
2346 dev->ctl_mute = 1; // ctrl_by_id(V4L2_CID_AUDIO_MUTE)->default_value;
2347 dev->ctl_invert = ctrl_by_id(V4L2_CID_PRIVATE_INVERT)->default_value;
2348 dev->ctl_automute = ctrl_by_id(V4L2_CID_PRIVATE_AUTOMUTE)->default_value;
2350 if (dev->tda9887_conf && dev->ctl_automute)
2351 dev->tda9887_conf |= TDA9887_AUTOMUTE;
2354 INIT_LIST_HEAD(&dev->video_q.queue);
2355 init_timer(&dev->video_q.timeout);
2356 dev->video_q.timeout.function = saa7134_buffer_timeout;
2357 dev->video_q.timeout.data = (unsigned long)(&dev->video_q);
2358 dev->video_q.dev = dev;
2360 if (saa7134_boards[dev->board].video_out) {
2361 /* enable video output */
2362 int vo = saa7134_boards[dev->board].video_out;
2364 unsigned int vid_port_opts = saa7134_boards[dev->board].vid_port_opts;
2365 saa_writeb(SAA7134_VIDEO_PORT_CTRL0, video_out[vo][0]);
2366 video_reg = video_out[vo][1];
2367 if (vid_port_opts & SET_T_CODE_POLARITY_NON_INVERTED)
2368 video_reg &= ~VP_T_CODE_P_INVERTED;
2369 saa_writeb(SAA7134_VIDEO_PORT_CTRL1, video_reg);
2370 saa_writeb(SAA7134_VIDEO_PORT_CTRL2, video_out[vo][2]);
2371 saa_writeb(SAA7134_VIDEO_PORT_CTRL3, video_out[vo][3]);
2372 saa_writeb(SAA7134_VIDEO_PORT_CTRL4, video_out[vo][4]);
2373 video_reg = video_out[vo][5];
2374 if (vid_port_opts & SET_CLOCK_NOT_DELAYED)
2375 video_reg &= ~VP_CLK_CTRL2_DELAYED;
2376 if (vid_port_opts & SET_CLOCK_INVERTED)
2377 video_reg |= VP_CLK_CTRL1_INVERTED;
2378 saa_writeb(SAA7134_VIDEO_PORT_CTRL5, video_reg);
2379 video_reg = video_out[vo][6];
2380 if (vid_port_opts & SET_VSYNC_OFF) {
2381 video_reg &= ~VP_VS_TYPE_MASK;
2382 video_reg |= VP_VS_TYPE_OFF;
2384 saa_writeb(SAA7134_VIDEO_PORT_CTRL6, video_reg);
2385 saa_writeb(SAA7134_VIDEO_PORT_CTRL7, video_out[vo][7]);
2386 saa_writeb(SAA7134_VIDEO_PORT_CTRL8, video_out[vo][8]);
2392 int saa7134_video_init2(struct saa7134_dev *dev)
2395 set_tvnorm(dev,&tvnorms[0]);
2397 saa7134_tvaudio_setmute(dev);
2398 saa7134_tvaudio_setvolume(dev,dev->ctl_volume);
2402 int saa7134_video_fini(struct saa7134_dev *dev)
2408 void saa7134_irq_video_intl(struct saa7134_dev *dev)
2410 static const char *st[] = {
2411 "(no signal)", "NTSC", "PAL", "SECAM" };
2414 st1 = saa_readb(SAA7134_STATUS_VIDEO1);
2415 st2 = saa_readb(SAA7134_STATUS_VIDEO2);
2416 dprintk("DCSDT: pll: %s, sync: %s, norm: %s\n",
2417 (st1 & 0x40) ? "not locked" : "locked",
2418 (st2 & 0x40) ? "no" : "yes",
2420 dev->nosignal = (st1 & 0x40) || (st2 & 0x40);
2422 if (dev->nosignal) {
2423 /* no video signal -> mute audio */
2424 if (dev->ctl_automute)
2426 saa7134_tvaudio_setmute(dev);
2427 saa_setb(SAA7134_SYNC_CTRL, 0x20);
2429 /* wake up tvaudio audio carrier scan thread */
2430 saa7134_tvaudio_do_scan(dev);
2432 saa_clearb(SAA7134_SYNC_CTRL, 0x20);
2434 if (dev->mops && dev->mops->signal_change)
2435 dev->mops->signal_change(dev);
2438 void saa7134_irq_video_done(struct saa7134_dev *dev, unsigned long status)
2440 enum v4l2_field field;
2442 spin_lock(&dev->slock);
2443 if (dev->video_q.curr) {
2444 dev->video_fieldcount++;
2445 field = dev->video_q.curr->vb.field;
2446 if (V4L2_FIELD_HAS_BOTH(field)) {
2447 /* make sure we have seen both fields */
2448 if ((status & 0x10) == 0x00) {
2449 dev->video_q.curr->top_seen = 1;
2452 if (!dev->video_q.curr->top_seen)
2454 } else if (field == V4L2_FIELD_TOP) {
2455 if ((status & 0x10) != 0x10)
2457 } else if (field == V4L2_FIELD_BOTTOM) {
2458 if ((status & 0x10) != 0x00)
2461 dev->video_q.curr->vb.field_count = dev->video_fieldcount;
2462 saa7134_buffer_finish(dev,&dev->video_q,STATE_DONE);
2464 saa7134_buffer_next(dev,&dev->video_q);
2467 spin_unlock(&dev->slock);
2470 /* ----------------------------------------------------------- */