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 #ifdef CONFIG_VIDEO_V4L1_COMPAT
35 /* Include V4L1 specific functions. Should be removed soon */
36 #include <linux/videodev.h>
39 /* ------------------------------------------------------------------ */
41 static unsigned int video_debug = 0;
42 static unsigned int gbuffers = 8;
43 static unsigned int noninterlaced = 1;
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) \
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,
111 .name = "15 bpp RGB, le",
112 .fourcc = V4L2_PIX_FMT_RGB555,
116 .name = "15 bpp RGB, be",
117 .fourcc = V4L2_PIX_FMT_RGB555X,
122 .name = "16 bpp RGB, le",
123 .fourcc = V4L2_PIX_FMT_RGB565,
127 .name = "16 bpp RGB, be",
128 .fourcc = V4L2_PIX_FMT_RGB565X,
133 .name = "24 bpp RGB, le",
134 .fourcc = V4L2_PIX_FMT_BGR24,
138 .name = "24 bpp RGB, be",
139 .fourcc = V4L2_PIX_FMT_RGB24,
144 .name = "32 bpp RGB, le",
145 .fourcc = V4L2_PIX_FMT_BGR32,
149 .name = "32 bpp RGB, be",
150 .fourcc = V4L2_PIX_FMT_RGB32,
156 .name = "4:2:2 packed, YUYV",
157 .fourcc = V4L2_PIX_FMT_YUYV,
163 .name = "4:2:2 packed, UYVY",
164 .fourcc = V4L2_PIX_FMT_UYVY,
169 .name = "4:2:2 planar, Y-Cb-Cr",
170 .fourcc = V4L2_PIX_FMT_YUV422P,
178 .name = "4:2:0 planar, Y-Cb-Cr",
179 .fourcc = V4L2_PIX_FMT_YUV420,
187 .name = "4:2:0 planar, Y-Cb-Cr",
188 .fourcc = V4L2_PIX_FMT_YVU420,
198 #define FORMATS ARRAY_SIZE(formats)
200 #define NORM_625_50 \
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, \
210 #define NORM_525_60 \
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, \
220 static struct saa7134_tvnorm tvnorms[] = {
222 .name = "PAL", /* autodetect */
226 .sync_control = 0x18,
227 .luma_control = 0x40,
228 .chroma_ctrl1 = 0x81,
230 .chroma_ctrl2 = 0x06,
235 .id = V4L2_STD_PAL_BG,
238 .sync_control = 0x18,
239 .luma_control = 0x40,
240 .chroma_ctrl1 = 0x81,
242 .chroma_ctrl2 = 0x06,
247 .id = V4L2_STD_PAL_I,
250 .sync_control = 0x18,
251 .luma_control = 0x40,
252 .chroma_ctrl1 = 0x81,
254 .chroma_ctrl2 = 0x06,
259 .id = V4L2_STD_PAL_DK,
262 .sync_control = 0x18,
263 .luma_control = 0x40,
264 .chroma_ctrl1 = 0x81,
266 .chroma_ctrl2 = 0x06,
274 .sync_control = 0x59,
275 .luma_control = 0x40,
276 .chroma_ctrl1 = 0x89,
278 .chroma_ctrl2 = 0x0e,
283 .id = V4L2_STD_SECAM,
286 .sync_control = 0x18,
287 .luma_control = 0x1b,
288 .chroma_ctrl1 = 0xd1,
290 .chroma_ctrl2 = 0x00,
295 .id = V4L2_STD_SECAM_DK,
298 .sync_control = 0x18,
299 .luma_control = 0x1b,
300 .chroma_ctrl1 = 0xd1,
302 .chroma_ctrl2 = 0x00,
307 .id = V4L2_STD_SECAM_L,
310 .sync_control = 0x18,
311 .luma_control = 0x1b,
312 .chroma_ctrl1 = 0xd1,
314 .chroma_ctrl2 = 0x00,
319 .id = V4L2_STD_SECAM_LC,
322 .sync_control = 0x18,
323 .luma_control = 0x1b,
324 .chroma_ctrl1 = 0xd1,
326 .chroma_ctrl2 = 0x00,
331 .id = V4L2_STD_PAL_M,
334 .sync_control = 0x59,
335 .luma_control = 0x40,
336 .chroma_ctrl1 = 0xb9,
338 .chroma_ctrl2 = 0x0e,
343 .id = V4L2_STD_PAL_Nc,
346 .sync_control = 0x18,
347 .luma_control = 0x40,
348 .chroma_ctrl1 = 0xa1,
350 .chroma_ctrl2 = 0x06,
355 .id = V4L2_STD_PAL_60,
363 .vbi_v_start_1 = 273,
366 .sync_control = 0x18,
367 .luma_control = 0x40,
368 .chroma_ctrl1 = 0x81,
370 .chroma_ctrl2 = 0x06,
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 = {
384 .flags = V4L2_CTRL_FLAG_DISABLED,
386 static const struct v4l2_queryctrl video_ctrls[] = {
389 .id = V4L2_CID_BRIGHTNESS,
390 .name = "Brightness",
394 .default_value = 128,
395 .type = V4L2_CTRL_TYPE_INTEGER,
397 .id = V4L2_CID_CONTRAST,
403 .type = V4L2_CTRL_TYPE_INTEGER,
405 .id = V4L2_CID_SATURATION,
406 .name = "Saturation",
411 .type = V4L2_CTRL_TYPE_INTEGER,
419 .type = V4L2_CTRL_TYPE_INTEGER,
421 .id = V4L2_CID_HFLIP,
425 .type = V4L2_CTRL_TYPE_BOOLEAN,
429 .id = V4L2_CID_AUDIO_MUTE,
433 .type = V4L2_CTRL_TYPE_BOOLEAN,
435 .id = V4L2_CID_AUDIO_VOLUME,
441 .type = V4L2_CTRL_TYPE_INTEGER,
443 /* --- private --- */
445 .id = V4L2_CID_PRIVATE_INVERT,
449 .type = V4L2_CTRL_TYPE_BOOLEAN,
451 .id = V4L2_CID_PRIVATE_Y_ODD,
452 .name = "y offset odd field",
456 .type = V4L2_CTRL_TYPE_INTEGER,
458 .id = V4L2_CID_PRIVATE_Y_EVEN,
459 .name = "y offset even field",
463 .type = V4L2_CTRL_TYPE_INTEGER,
465 .id = V4L2_CID_PRIVATE_AUTOMUTE,
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)
479 for (i = 0; i < CTRLS; i++)
480 if (video_ctrls[i].id == id)
481 return video_ctrls+i;
485 static struct saa7134_format* format_by_fourcc(unsigned int fourcc)
489 for (i = 0; i < FORMATS; i++)
490 if (formats[i].fourcc == fourcc)
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 */
505 mutex_lock(&dev->lock);
506 if (dev->resources & bit) {
507 /* no, someone else uses it */
508 mutex_unlock(&dev->lock);
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);
520 int res_check(struct saa7134_fh *fh, unsigned int bit)
522 return (fh->resources & bit);
526 int res_locked(struct saa7134_dev *dev, unsigned int bit)
528 return (dev->resources & bit);
532 void res_free(struct saa7134_dev *dev, struct saa7134_fh *fh, unsigned int bits)
534 BUG_ON((fh->resources & bits) != bits);
536 mutex_lock(&dev->lock);
537 fh->resources &= ~bits;
538 dev->resources &= ~bits;
539 dprintk("res: put %d\n",bits);
540 mutex_unlock(&dev->lock);
543 /* ------------------------------------------------------------------ */
545 static void set_tvnorm(struct saa7134_dev *dev, struct saa7134_tvnorm *norm)
547 int luma_control,sync_control,mux;
549 dprintk("set tv norm = %s\n",norm->name);
552 mux = card_in(dev,dev->ctl_input).vmux;
553 luma_control = norm->luma_control;
554 sync_control = norm->sync_control;
557 luma_control |= 0x80; /* svideo */
558 if (noninterlaced || dev->nosignal)
559 sync_control |= 0x20;
562 dev->crop_bounds.left = norm->h_start;
563 dev->crop_defrect.left = norm->h_start;
564 dev->crop_bounds.width = norm->h_stop - norm->h_start +1;
565 dev->crop_defrect.width = norm->h_stop - norm->h_start +1;
567 dev->crop_bounds.top = (norm->vbi_v_stop_0+1)*2;
568 dev->crop_defrect.top = norm->video_v_start*2;
569 dev->crop_bounds.height = ((norm->id & V4L2_STD_525_60) ? 524 : 624)
570 - dev->crop_bounds.top;
571 dev->crop_defrect.height = (norm->video_v_stop - norm->video_v_start +1)*2;
573 dev->crop_current = dev->crop_defrect;
575 /* setup video decoder */
576 saa_writeb(SAA7134_INCR_DELAY, 0x08);
577 saa_writeb(SAA7134_ANALOG_IN_CTRL1, 0xc0 | mux);
578 saa_writeb(SAA7134_ANALOG_IN_CTRL2, 0x00);
580 saa_writeb(SAA7134_ANALOG_IN_CTRL3, 0x90);
581 saa_writeb(SAA7134_ANALOG_IN_CTRL4, 0x90);
582 saa_writeb(SAA7134_HSYNC_START, 0xeb);
583 saa_writeb(SAA7134_HSYNC_STOP, 0xe0);
584 saa_writeb(SAA7134_SOURCE_TIMING1, norm->src_timing);
586 saa_writeb(SAA7134_SYNC_CTRL, sync_control);
587 saa_writeb(SAA7134_LUMA_CTRL, luma_control);
588 saa_writeb(SAA7134_DEC_LUMA_BRIGHT, dev->ctl_bright);
589 saa_writeb(SAA7134_DEC_LUMA_CONTRAST, dev->ctl_contrast);
591 saa_writeb(SAA7134_DEC_CHROMA_SATURATION, dev->ctl_saturation);
592 saa_writeb(SAA7134_DEC_CHROMA_HUE, dev->ctl_hue);
593 saa_writeb(SAA7134_CHROMA_CTRL1, norm->chroma_ctrl1);
594 saa_writeb(SAA7134_CHROMA_GAIN, norm->chroma_gain);
596 saa_writeb(SAA7134_CHROMA_CTRL2, norm->chroma_ctrl2);
597 saa_writeb(SAA7134_MODE_DELAY_CTRL, 0x00);
599 saa_writeb(SAA7134_ANALOG_ADC, 0x01);
600 saa_writeb(SAA7134_VGATE_START, 0x11);
601 saa_writeb(SAA7134_VGATE_STOP, 0xfe);
602 saa_writeb(SAA7134_MISC_VGATE_MSB, norm->vgate_misc);
603 saa_writeb(SAA7134_RAW_DATA_GAIN, 0x40);
604 saa_writeb(SAA7134_RAW_DATA_OFFSET, 0x80);
606 saa7134_i2c_call_clients(dev,VIDIOC_S_STD,&norm->id);
609 static void video_mux(struct saa7134_dev *dev, int input)
611 dprintk("video input = %d [%s]\n",input,card_in(dev,input).name);
612 dev->ctl_input = input;
613 set_tvnorm(dev,dev->tvnorm);
614 saa7134_tvaudio_setinput(dev,&card_in(dev,input));
617 static void set_h_prescale(struct saa7134_dev *dev, int task, int prescale)
619 static const struct {
626 /* XPSC XACL XC2_1 XDCG VPFY */
638 static const int count = ARRAY_SIZE(vals);
641 for (i = 0; i < count; i++)
642 if (vals[i].xpsc == prescale)
647 saa_writeb(SAA7134_H_PRESCALE(task), vals[i].xpsc);
648 saa_writeb(SAA7134_ACC_LENGTH(task), vals[i].xacl);
649 saa_writeb(SAA7134_LEVEL_CTRL(task),
650 (vals[i].xc2_1 << 3) | (vals[i].xdcg));
651 saa_andorb(SAA7134_FIR_PREFILTER_CTRL(task), 0x0f,
652 (vals[i].vpfy << 2) | vals[i].vpfy);
655 static void set_v_scale(struct saa7134_dev *dev, int task, int yscale)
659 saa_writeb(SAA7134_V_SCALE_RATIO1(task), yscale & 0xff);
660 saa_writeb(SAA7134_V_SCALE_RATIO2(task), yscale >> 8);
662 mirror = (dev->ctl_mirror) ? 0x02 : 0x00;
665 dprintk("yscale LPI yscale=%d\n",yscale);
666 saa_writeb(SAA7134_V_FILTER(task), 0x00 | mirror);
667 saa_writeb(SAA7134_LUMA_CONTRAST(task), 0x40);
668 saa_writeb(SAA7134_CHROMA_SATURATION(task), 0x40);
671 val = 0x40 * 1024 / yscale;
672 dprintk("yscale ACM yscale=%d val=0x%x\n",yscale,val);
673 saa_writeb(SAA7134_V_FILTER(task), 0x01 | mirror);
674 saa_writeb(SAA7134_LUMA_CONTRAST(task), val);
675 saa_writeb(SAA7134_CHROMA_SATURATION(task), val);
677 saa_writeb(SAA7134_LUMA_BRIGHT(task), 0x80);
680 static void set_size(struct saa7134_dev *dev, int task,
681 int width, int height, int interlace)
683 int prescale,xscale,yscale,y_even,y_odd;
684 int h_start, h_stop, v_start, v_stop;
685 int div = interlace ? 2 : 1;
687 /* setup video scaler */
688 h_start = dev->crop_current.left;
689 v_start = dev->crop_current.top/2;
690 h_stop = (dev->crop_current.left + dev->crop_current.width -1);
691 v_stop = (dev->crop_current.top + dev->crop_current.height -1)/2;
693 saa_writeb(SAA7134_VIDEO_H_START1(task), h_start & 0xff);
694 saa_writeb(SAA7134_VIDEO_H_START2(task), h_start >> 8);
695 saa_writeb(SAA7134_VIDEO_H_STOP1(task), h_stop & 0xff);
696 saa_writeb(SAA7134_VIDEO_H_STOP2(task), h_stop >> 8);
697 saa_writeb(SAA7134_VIDEO_V_START1(task), v_start & 0xff);
698 saa_writeb(SAA7134_VIDEO_V_START2(task), v_start >> 8);
699 saa_writeb(SAA7134_VIDEO_V_STOP1(task), v_stop & 0xff);
700 saa_writeb(SAA7134_VIDEO_V_STOP2(task), v_stop >> 8);
702 prescale = dev->crop_current.width / width;
705 xscale = 1024 * dev->crop_current.width / prescale / width;
706 yscale = 512 * div * dev->crop_current.height / height;
707 dprintk("prescale=%d xscale=%d yscale=%d\n",prescale,xscale,yscale);
708 set_h_prescale(dev,task,prescale);
709 saa_writeb(SAA7134_H_SCALE_INC1(task), xscale & 0xff);
710 saa_writeb(SAA7134_H_SCALE_INC2(task), xscale >> 8);
711 set_v_scale(dev,task,yscale);
713 saa_writeb(SAA7134_VIDEO_PIXELS1(task), width & 0xff);
714 saa_writeb(SAA7134_VIDEO_PIXELS2(task), width >> 8);
715 saa_writeb(SAA7134_VIDEO_LINES1(task), height/div & 0xff);
716 saa_writeb(SAA7134_VIDEO_LINES2(task), height/div >> 8);
718 /* deinterlace y offsets */
719 y_odd = dev->ctl_y_odd;
720 y_even = dev->ctl_y_even;
721 saa_writeb(SAA7134_V_PHASE_OFFSET0(task), y_odd);
722 saa_writeb(SAA7134_V_PHASE_OFFSET1(task), y_even);
723 saa_writeb(SAA7134_V_PHASE_OFFSET2(task), y_odd);
724 saa_writeb(SAA7134_V_PHASE_OFFSET3(task), y_even);
727 /* ------------------------------------------------------------------ */
735 static void sort_cliplist(struct cliplist *cl, int entries)
737 struct cliplist swap;
740 for (i = entries-2; i >= 0; i--) {
741 for (n = 0, j = 0; j <= i; j++) {
742 if (cl[j].position > cl[j+1].position) {
754 static void set_cliplist(struct saa7134_dev *dev, int reg,
755 struct cliplist *cl, int entries, char *name)
760 for (i = 0; i < entries; i++) {
761 winbits |= cl[i].enable;
762 winbits &= ~cl[i].disable;
763 if (i < 15 && cl[i].position == cl[i+1].position)
765 saa_writeb(reg + 0, winbits);
766 saa_writeb(reg + 2, cl[i].position & 0xff);
767 saa_writeb(reg + 3, cl[i].position >> 8);
768 dprintk("clip: %s winbits=%02x pos=%d\n",
769 name,winbits,cl[i].position);
772 for (; reg < 0x400; reg += 8) {
773 saa_writeb(reg+ 0, 0);
774 saa_writeb(reg + 1, 0);
775 saa_writeb(reg + 2, 0);
776 saa_writeb(reg + 3, 0);
780 static int clip_range(int val)
787 static int setup_clipping(struct saa7134_dev *dev, struct v4l2_clip *clips,
788 int nclips, int interlace)
790 struct cliplist col[16], row[16];
792 int div = interlace ? 2 : 1;
794 memset(col,0,sizeof(col)); cols = 0;
795 memset(row,0,sizeof(row)); rows = 0;
796 for (i = 0; i < nclips && i < 8; i++) {
797 col[cols].position = clip_range(clips[i].c.left);
798 col[cols].enable = (1 << i);
800 col[cols].position = clip_range(clips[i].c.left+clips[i].c.width);
801 col[cols].disable = (1 << i);
803 row[rows].position = clip_range(clips[i].c.top / div);
804 row[rows].enable = (1 << i);
806 row[rows].position = clip_range((clips[i].c.top + clips[i].c.height)
808 row[rows].disable = (1 << i);
811 sort_cliplist(col,cols);
812 sort_cliplist(row,rows);
813 set_cliplist(dev,0x380,col,cols,"cols");
814 set_cliplist(dev,0x384,row,rows,"rows");
818 static int verify_preview(struct saa7134_dev *dev, struct v4l2_window *win)
820 enum v4l2_field field;
823 if (NULL == dev->ovbuf.base)
825 if (NULL == dev->ovfmt)
827 if (win->w.width < 48 || win->w.height < 32)
829 if (win->clipcount > 2048)
833 maxw = dev->crop_current.width;
834 maxh = dev->crop_current.height;
836 if (V4L2_FIELD_ANY == field) {
837 field = (win->w.height > maxh/2)
838 ? V4L2_FIELD_INTERLACED
843 case V4L2_FIELD_BOTTOM:
846 case V4L2_FIELD_INTERLACED:
853 if (win->w.width > maxw)
855 if (win->w.height > maxh)
856 win->w.height = maxh;
860 static int start_preview(struct saa7134_dev *dev, struct saa7134_fh *fh)
862 unsigned long base,control,bpl;
865 err = verify_preview(dev,&fh->win);
869 dev->ovfield = fh->win.field;
870 dprintk("start_preview %dx%d+%d+%d %s field=%s\n",
871 fh->win.w.width,fh->win.w.height,
872 fh->win.w.left,fh->win.w.top,
873 dev->ovfmt->name,v4l2_field_names[dev->ovfield]);
875 /* setup window + clipping */
876 set_size(dev,TASK_B,fh->win.w.width,fh->win.w.height,
877 V4L2_FIELD_HAS_BOTH(dev->ovfield));
878 setup_clipping(dev,fh->clips,fh->nclips,
879 V4L2_FIELD_HAS_BOTH(dev->ovfield));
881 saa_andorb(SAA7134_DATA_PATH(TASK_B), 0x3f, 0x03);
883 saa_andorb(SAA7134_DATA_PATH(TASK_B), 0x3f, 0x01);
884 saa_writeb(SAA7134_OFMT_VIDEO_B, dev->ovfmt->pm | 0x20);
886 /* dma: setup channel 1 (= Video Task B) */
887 base = (unsigned long)dev->ovbuf.base;
888 base += dev->ovbuf.fmt.bytesperline * fh->win.w.top;
889 base += dev->ovfmt->depth/8 * fh->win.w.left;
890 bpl = dev->ovbuf.fmt.bytesperline;
891 control = SAA7134_RS_CONTROL_BURST_16;
892 if (dev->ovfmt->bswap)
893 control |= SAA7134_RS_CONTROL_BSWAP;
894 if (dev->ovfmt->wswap)
895 control |= SAA7134_RS_CONTROL_WSWAP;
896 if (V4L2_FIELD_HAS_BOTH(dev->ovfield)) {
897 saa_writel(SAA7134_RS_BA1(1),base);
898 saa_writel(SAA7134_RS_BA2(1),base+bpl);
899 saa_writel(SAA7134_RS_PITCH(1),bpl*2);
900 saa_writel(SAA7134_RS_CONTROL(1),control);
902 saa_writel(SAA7134_RS_BA1(1),base);
903 saa_writel(SAA7134_RS_BA2(1),base);
904 saa_writel(SAA7134_RS_PITCH(1),bpl);
905 saa_writel(SAA7134_RS_CONTROL(1),control);
910 saa7134_set_dmabits(dev);
915 static int stop_preview(struct saa7134_dev *dev, struct saa7134_fh *fh)
918 saa7134_set_dmabits(dev);
922 /* ------------------------------------------------------------------ */
924 static int buffer_activate(struct saa7134_dev *dev,
925 struct saa7134_buf *buf,
926 struct saa7134_buf *next)
928 unsigned long base,control,bpl;
929 unsigned long bpl_uv,lines_uv,base2,base3,tmp; /* planar */
931 dprintk("buffer_activate buf=%p\n",buf);
932 buf->vb.state = STATE_ACTIVE;
935 set_size(dev,TASK_A,buf->vb.width,buf->vb.height,
936 V4L2_FIELD_HAS_BOTH(buf->vb.field));
938 saa_andorb(SAA7134_DATA_PATH(TASK_A), 0x3f, 0x03);
940 saa_andorb(SAA7134_DATA_PATH(TASK_A), 0x3f, 0x01);
941 saa_writeb(SAA7134_OFMT_VIDEO_A, buf->fmt->pm);
943 /* DMA: setup channel 0 (= Video Task A0) */
944 base = saa7134_buffer_base(buf);
945 if (buf->fmt->planar)
948 bpl = (buf->vb.width * buf->fmt->depth) / 8;
949 control = SAA7134_RS_CONTROL_BURST_16 |
950 SAA7134_RS_CONTROL_ME |
951 (buf->pt->dma >> 12);
953 control |= SAA7134_RS_CONTROL_BSWAP;
955 control |= SAA7134_RS_CONTROL_WSWAP;
956 if (V4L2_FIELD_HAS_BOTH(buf->vb.field)) {
958 saa_writel(SAA7134_RS_BA1(0),base);
959 saa_writel(SAA7134_RS_BA2(0),base+bpl);
960 saa_writel(SAA7134_RS_PITCH(0),bpl*2);
963 saa_writel(SAA7134_RS_BA1(0),base);
964 saa_writel(SAA7134_RS_BA2(0),base);
965 saa_writel(SAA7134_RS_PITCH(0),bpl);
967 saa_writel(SAA7134_RS_CONTROL(0),control);
969 if (buf->fmt->planar) {
970 /* DMA: setup channel 4+5 (= planar task A) */
971 bpl_uv = bpl >> buf->fmt->hshift;
972 lines_uv = buf->vb.height >> buf->fmt->vshift;
973 base2 = base + bpl * buf->vb.height;
974 base3 = base2 + bpl_uv * lines_uv;
975 if (buf->fmt->uvswap)
976 tmp = base2, base2 = base3, base3 = tmp;
977 dprintk("uv: bpl=%ld lines=%ld base2/3=%ld/%ld\n",
978 bpl_uv,lines_uv,base2,base3);
979 if (V4L2_FIELD_HAS_BOTH(buf->vb.field)) {
981 saa_writel(SAA7134_RS_BA1(4),base2);
982 saa_writel(SAA7134_RS_BA2(4),base2+bpl_uv);
983 saa_writel(SAA7134_RS_PITCH(4),bpl_uv*2);
984 saa_writel(SAA7134_RS_BA1(5),base3);
985 saa_writel(SAA7134_RS_BA2(5),base3+bpl_uv);
986 saa_writel(SAA7134_RS_PITCH(5),bpl_uv*2);
989 saa_writel(SAA7134_RS_BA1(4),base2);
990 saa_writel(SAA7134_RS_BA2(4),base2);
991 saa_writel(SAA7134_RS_PITCH(4),bpl_uv);
992 saa_writel(SAA7134_RS_BA1(5),base3);
993 saa_writel(SAA7134_RS_BA2(5),base3);
994 saa_writel(SAA7134_RS_PITCH(5),bpl_uv);
996 saa_writel(SAA7134_RS_CONTROL(4),control);
997 saa_writel(SAA7134_RS_CONTROL(5),control);
1001 saa7134_set_dmabits(dev);
1002 mod_timer(&dev->video_q.timeout, jiffies+BUFFER_TIMEOUT);
1006 static int buffer_prepare(struct videobuf_queue *q,
1007 struct videobuf_buffer *vb,
1008 enum v4l2_field field)
1010 struct saa7134_fh *fh = q->priv_data;
1011 struct saa7134_dev *dev = fh->dev;
1012 struct saa7134_buf *buf = container_of(vb,struct saa7134_buf,vb);
1017 if (NULL == fh->fmt)
1019 if (fh->width < 48 ||
1021 fh->width/4 > dev->crop_current.width ||
1022 fh->height/4 > dev->crop_current.height ||
1023 fh->width > dev->crop_bounds.width ||
1024 fh->height > dev->crop_bounds.height)
1026 size = (fh->width * fh->height * fh->fmt->depth) >> 3;
1027 if (0 != buf->vb.baddr && buf->vb.bsize < size)
1030 dprintk("buffer_prepare [%d,size=%dx%d,bytes=%d,fields=%s,%s]\n",
1031 vb->i,fh->width,fh->height,size,v4l2_field_names[field],
1033 if (buf->vb.width != fh->width ||
1034 buf->vb.height != fh->height ||
1035 buf->vb.size != size ||
1036 buf->vb.field != field ||
1037 buf->fmt != fh->fmt) {
1038 saa7134_dma_free(q,buf);
1041 if (STATE_NEEDS_INIT == buf->vb.state) {
1042 buf->vb.width = fh->width;
1043 buf->vb.height = fh->height;
1044 buf->vb.size = size;
1045 buf->vb.field = field;
1047 buf->pt = &fh->pt_cap;
1049 err = videobuf_iolock(q,&buf->vb,&dev->ovbuf);
1052 err = saa7134_pgtable_build(dev->pci,buf->pt,
1055 saa7134_buffer_startpage(buf));
1059 buf->vb.state = STATE_PREPARED;
1060 buf->activate = buffer_activate;
1064 saa7134_dma_free(q,buf);
1069 buffer_setup(struct videobuf_queue *q, unsigned int *count, unsigned int *size)
1071 struct saa7134_fh *fh = q->priv_data;
1073 *size = fh->fmt->depth * fh->width * fh->height >> 3;
1076 *count = saa7134_buffer_count(*size,*count);
1080 static void buffer_queue(struct videobuf_queue *q, struct videobuf_buffer *vb)
1082 struct saa7134_fh *fh = q->priv_data;
1083 struct saa7134_buf *buf = container_of(vb,struct saa7134_buf,vb);
1085 saa7134_buffer_queue(fh->dev,&fh->dev->video_q,buf);
1088 static void buffer_release(struct videobuf_queue *q, struct videobuf_buffer *vb)
1090 struct saa7134_buf *buf = container_of(vb,struct saa7134_buf,vb);
1092 saa7134_dma_free(q,buf);
1095 static struct videobuf_queue_ops video_qops = {
1096 .buf_setup = buffer_setup,
1097 .buf_prepare = buffer_prepare,
1098 .buf_queue = buffer_queue,
1099 .buf_release = buffer_release,
1102 /* ------------------------------------------------------------------ */
1104 static int get_control(struct saa7134_dev *dev, struct v4l2_control *c)
1106 const struct v4l2_queryctrl* ctrl;
1108 ctrl = ctrl_by_id(c->id);
1112 case V4L2_CID_BRIGHTNESS:
1113 c->value = dev->ctl_bright;
1116 c->value = dev->ctl_hue;
1118 case V4L2_CID_CONTRAST:
1119 c->value = dev->ctl_contrast;
1121 case V4L2_CID_SATURATION:
1122 c->value = dev->ctl_saturation;
1124 case V4L2_CID_AUDIO_MUTE:
1125 c->value = dev->ctl_mute;
1127 case V4L2_CID_AUDIO_VOLUME:
1128 c->value = dev->ctl_volume;
1130 case V4L2_CID_PRIVATE_INVERT:
1131 c->value = dev->ctl_invert;
1133 case V4L2_CID_HFLIP:
1134 c->value = dev->ctl_mirror;
1136 case V4L2_CID_PRIVATE_Y_EVEN:
1137 c->value = dev->ctl_y_even;
1139 case V4L2_CID_PRIVATE_Y_ODD:
1140 c->value = dev->ctl_y_odd;
1142 case V4L2_CID_PRIVATE_AUTOMUTE:
1143 c->value = dev->ctl_automute;
1151 static int set_control(struct saa7134_dev *dev, struct saa7134_fh *fh,
1152 struct v4l2_control *c)
1154 const struct v4l2_queryctrl* ctrl;
1155 unsigned long flags;
1156 int restart_overlay = 0;
1158 ctrl = ctrl_by_id(c->id);
1161 dprintk("set_control name=%s val=%d\n",ctrl->name,c->value);
1162 switch (ctrl->type) {
1163 case V4L2_CTRL_TYPE_BOOLEAN:
1164 case V4L2_CTRL_TYPE_MENU:
1165 case V4L2_CTRL_TYPE_INTEGER:
1166 if (c->value < ctrl->minimum)
1167 c->value = ctrl->minimum;
1168 if (c->value > ctrl->maximum)
1169 c->value = ctrl->maximum;
1175 case V4L2_CID_BRIGHTNESS:
1176 dev->ctl_bright = c->value;
1177 saa_writeb(SAA7134_DEC_LUMA_BRIGHT, dev->ctl_bright);
1180 dev->ctl_hue = c->value;
1181 saa_writeb(SAA7134_DEC_CHROMA_HUE, dev->ctl_hue);
1183 case V4L2_CID_CONTRAST:
1184 dev->ctl_contrast = c->value;
1185 saa_writeb(SAA7134_DEC_LUMA_CONTRAST,
1186 dev->ctl_invert ? -dev->ctl_contrast : dev->ctl_contrast);
1188 case V4L2_CID_SATURATION:
1189 dev->ctl_saturation = c->value;
1190 saa_writeb(SAA7134_DEC_CHROMA_SATURATION,
1191 dev->ctl_invert ? -dev->ctl_saturation : dev->ctl_saturation);
1193 case V4L2_CID_AUDIO_MUTE:
1194 dev->ctl_mute = c->value;
1195 saa7134_tvaudio_setmute(dev);
1197 case V4L2_CID_AUDIO_VOLUME:
1198 dev->ctl_volume = c->value;
1199 saa7134_tvaudio_setvolume(dev,dev->ctl_volume);
1201 case V4L2_CID_PRIVATE_INVERT:
1202 dev->ctl_invert = c->value;
1203 saa_writeb(SAA7134_DEC_LUMA_CONTRAST,
1204 dev->ctl_invert ? -dev->ctl_contrast : dev->ctl_contrast);
1205 saa_writeb(SAA7134_DEC_CHROMA_SATURATION,
1206 dev->ctl_invert ? -dev->ctl_saturation : dev->ctl_saturation);
1208 case V4L2_CID_HFLIP:
1209 dev->ctl_mirror = c->value;
1210 restart_overlay = 1;
1212 case V4L2_CID_PRIVATE_Y_EVEN:
1213 dev->ctl_y_even = c->value;
1214 restart_overlay = 1;
1216 case V4L2_CID_PRIVATE_Y_ODD:
1217 dev->ctl_y_odd = c->value;
1218 restart_overlay = 1;
1220 case V4L2_CID_PRIVATE_AUTOMUTE:
1221 dev->ctl_automute = c->value;
1222 if (dev->tda9887_conf) {
1223 if (dev->ctl_automute)
1224 dev->tda9887_conf |= TDA9887_AUTOMUTE;
1226 dev->tda9887_conf &= ~TDA9887_AUTOMUTE;
1227 saa7134_i2c_call_clients(dev, TDA9887_SET_CONFIG,
1228 &dev->tda9887_conf);
1234 if (restart_overlay && fh && res_check(fh, RESOURCE_OVERLAY)) {
1235 spin_lock_irqsave(&dev->slock,flags);
1236 stop_preview(dev,fh);
1237 start_preview(dev,fh);
1238 spin_unlock_irqrestore(&dev->slock,flags);
1243 /* ------------------------------------------------------------------ */
1245 static struct videobuf_queue* saa7134_queue(struct saa7134_fh *fh)
1247 struct videobuf_queue* q = NULL;
1250 case V4L2_BUF_TYPE_VIDEO_CAPTURE:
1253 case V4L2_BUF_TYPE_VBI_CAPTURE:
1262 static int saa7134_resource(struct saa7134_fh *fh)
1267 case V4L2_BUF_TYPE_VIDEO_CAPTURE:
1268 res = RESOURCE_VIDEO;
1270 case V4L2_BUF_TYPE_VBI_CAPTURE:
1279 static int video_open(struct inode *inode, struct file *file)
1281 int minor = iminor(inode);
1282 struct saa7134_dev *h,*dev = NULL;
1283 struct saa7134_fh *fh;
1284 struct list_head *list;
1285 enum v4l2_buf_type type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
1287 list_for_each(list,&saa7134_devlist) {
1288 h = list_entry(list, struct saa7134_dev, devlist);
1289 if (h->video_dev && (h->video_dev->minor == minor))
1291 if (h->radio_dev && (h->radio_dev->minor == minor)) {
1295 if (h->vbi_dev && (h->vbi_dev->minor == minor)) {
1296 type = V4L2_BUF_TYPE_VBI_CAPTURE;
1303 dprintk("open minor=%d radio=%d type=%s\n",minor,radio,
1304 v4l2_type_names[type]);
1306 /* allocate + initialize per filehandle data */
1307 fh = kzalloc(sizeof(*fh),GFP_KERNEL);
1310 file->private_data = fh;
1314 fh->fmt = format_by_fourcc(V4L2_PIX_FMT_BGR24);
1317 v4l2_prio_open(&dev->prio,&fh->prio);
1319 videobuf_queue_init(&fh->cap, &video_qops,
1320 dev->pci, &dev->slock,
1321 V4L2_BUF_TYPE_VIDEO_CAPTURE,
1322 V4L2_FIELD_INTERLACED,
1323 sizeof(struct saa7134_buf),
1325 videobuf_queue_init(&fh->vbi, &saa7134_vbi_qops,
1326 dev->pci, &dev->slock,
1327 V4L2_BUF_TYPE_VBI_CAPTURE,
1329 sizeof(struct saa7134_buf),
1331 saa7134_pgtable_alloc(dev->pci,&fh->pt_cap);
1332 saa7134_pgtable_alloc(dev->pci,&fh->pt_vbi);
1335 /* switch to radio mode */
1336 saa7134_tvaudio_setinput(dev,&card(dev).radio);
1337 saa7134_i2c_call_clients(dev,AUDC_SET_RADIO, NULL);
1339 /* switch to video/vbi mode */
1340 video_mux(dev,dev->ctl_input);
1346 video_read(struct file *file, char __user *data, size_t count, loff_t *ppos)
1348 struct saa7134_fh *fh = file->private_data;
1351 case V4L2_BUF_TYPE_VIDEO_CAPTURE:
1352 if (res_locked(fh->dev,RESOURCE_VIDEO))
1354 return videobuf_read_one(saa7134_queue(fh),
1356 file->f_flags & O_NONBLOCK);
1357 case V4L2_BUF_TYPE_VBI_CAPTURE:
1358 if (!res_get(fh->dev,fh,RESOURCE_VBI))
1360 return videobuf_read_stream(saa7134_queue(fh),
1361 data, count, ppos, 1,
1362 file->f_flags & O_NONBLOCK);
1371 video_poll(struct file *file, struct poll_table_struct *wait)
1373 struct saa7134_fh *fh = file->private_data;
1374 struct videobuf_buffer *buf = NULL;
1376 if (V4L2_BUF_TYPE_VBI_CAPTURE == fh->type)
1377 return videobuf_poll_stream(file, &fh->vbi, wait);
1379 if (res_check(fh,RESOURCE_VIDEO)) {
1380 if (!list_empty(&fh->cap.stream))
1381 buf = list_entry(fh->cap.stream.next, struct videobuf_buffer, stream);
1383 mutex_lock(&fh->cap.lock);
1384 if (UNSET == fh->cap.read_off) {
1385 /* need to capture a new frame */
1386 if (res_locked(fh->dev,RESOURCE_VIDEO)) {
1387 mutex_unlock(&fh->cap.lock);
1390 if (0 != fh->cap.ops->buf_prepare(&fh->cap,fh->cap.read_buf,fh->cap.field)) {
1391 mutex_unlock(&fh->cap.lock);
1394 fh->cap.ops->buf_queue(&fh->cap,fh->cap.read_buf);
1395 fh->cap.read_off = 0;
1397 mutex_unlock(&fh->cap.lock);
1398 buf = fh->cap.read_buf;
1404 poll_wait(file, &buf->done, wait);
1405 if (buf->state == STATE_DONE ||
1406 buf->state == STATE_ERROR)
1407 return POLLIN|POLLRDNORM;
1411 static int video_release(struct inode *inode, struct file *file)
1413 struct saa7134_fh *fh = file->private_data;
1414 struct saa7134_dev *dev = fh->dev;
1415 unsigned long flags;
1417 /* turn off overlay */
1418 if (res_check(fh, RESOURCE_OVERLAY)) {
1419 spin_lock_irqsave(&dev->slock,flags);
1420 stop_preview(dev,fh);
1421 spin_unlock_irqrestore(&dev->slock,flags);
1422 res_free(dev,fh,RESOURCE_OVERLAY);
1425 /* stop video capture */
1426 if (res_check(fh, RESOURCE_VIDEO)) {
1427 videobuf_streamoff(&fh->cap);
1428 res_free(dev,fh,RESOURCE_VIDEO);
1430 if (fh->cap.read_buf) {
1431 buffer_release(&fh->cap,fh->cap.read_buf);
1432 kfree(fh->cap.read_buf);
1435 /* stop vbi capture */
1436 if (res_check(fh, RESOURCE_VBI)) {
1437 if (fh->vbi.streaming)
1438 videobuf_streamoff(&fh->vbi);
1439 if (fh->vbi.reading)
1440 videobuf_read_stop(&fh->vbi);
1441 res_free(dev,fh,RESOURCE_VBI);
1444 /* ts-capture will not work in planar mode, so turn it off Hac: 04.05*/
1445 saa_andorb(SAA7134_OFMT_VIDEO_A, 0x1f, 0);
1446 saa_andorb(SAA7134_OFMT_VIDEO_B, 0x1f, 0);
1447 saa_andorb(SAA7134_OFMT_DATA_A, 0x1f, 0);
1448 saa_andorb(SAA7134_OFMT_DATA_B, 0x1f, 0);
1450 saa7134_i2c_call_clients(dev, TUNER_SET_STANDBY, NULL);
1453 videobuf_mmap_free(&fh->cap);
1454 videobuf_mmap_free(&fh->vbi);
1455 saa7134_pgtable_free(dev->pci,&fh->pt_cap);
1456 saa7134_pgtable_free(dev->pci,&fh->pt_vbi);
1458 v4l2_prio_close(&dev->prio,&fh->prio);
1459 file->private_data = NULL;
1465 video_mmap(struct file *file, struct vm_area_struct * vma)
1467 struct saa7134_fh *fh = file->private_data;
1469 return videobuf_mmap_mapper(saa7134_queue(fh), vma);
1472 /* ------------------------------------------------------------------ */
1474 static void saa7134_vbi_fmt(struct saa7134_dev *dev, struct v4l2_format *f)
1476 struct saa7134_tvnorm *norm = dev->tvnorm;
1478 f->fmt.vbi.sampling_rate = 6750000 * 4;
1479 f->fmt.vbi.samples_per_line = 2048 /* VBI_LINE_LENGTH */;
1480 f->fmt.vbi.sample_format = V4L2_PIX_FMT_GREY;
1481 f->fmt.vbi.offset = 64 * 4;
1482 f->fmt.vbi.start[0] = norm->vbi_v_start_0;
1483 f->fmt.vbi.count[0] = norm->vbi_v_stop_0 - norm->vbi_v_start_0 +1;
1484 f->fmt.vbi.start[1] = norm->vbi_v_start_1;
1485 f->fmt.vbi.count[1] = f->fmt.vbi.count[0];
1486 f->fmt.vbi.flags = 0; /* VBI_UNSYNC VBI_INTERLACED */
1490 static int saa7134_g_fmt(struct saa7134_dev *dev, struct saa7134_fh *fh,
1491 struct v4l2_format *f)
1494 case V4L2_BUF_TYPE_VIDEO_CAPTURE:
1495 memset(&f->fmt.pix,0,sizeof(f->fmt.pix));
1496 f->fmt.pix.width = fh->width;
1497 f->fmt.pix.height = fh->height;
1498 f->fmt.pix.field = fh->cap.field;
1499 f->fmt.pix.pixelformat = fh->fmt->fourcc;
1500 f->fmt.pix.bytesperline =
1501 (f->fmt.pix.width * fh->fmt->depth) >> 3;
1502 f->fmt.pix.sizeimage =
1503 f->fmt.pix.height * f->fmt.pix.bytesperline;
1505 case V4L2_BUF_TYPE_VIDEO_OVERLAY:
1506 if (saa7134_no_overlay > 0) {
1507 printk ("V4L2_BUF_TYPE_VIDEO_OVERLAY: no_overlay\n");
1510 f->fmt.win = fh->win;
1512 case V4L2_BUF_TYPE_VBI_CAPTURE:
1513 saa7134_vbi_fmt(dev,f);
1520 static int saa7134_try_fmt(struct saa7134_dev *dev, struct saa7134_fh *fh,
1521 struct v4l2_format *f)
1526 case V4L2_BUF_TYPE_VIDEO_CAPTURE:
1528 struct saa7134_format *fmt;
1529 enum v4l2_field field;
1530 unsigned int maxw, maxh;
1532 fmt = format_by_fourcc(f->fmt.pix.pixelformat);
1536 field = f->fmt.pix.field;
1537 maxw = min(dev->crop_current.width*4, dev->crop_bounds.width);
1538 maxh = min(dev->crop_current.height*4, dev->crop_bounds.height);
1540 if (V4L2_FIELD_ANY == field) {
1541 field = (f->fmt.pix.height > maxh/2)
1542 ? V4L2_FIELD_INTERLACED
1543 : V4L2_FIELD_BOTTOM;
1546 case V4L2_FIELD_TOP:
1547 case V4L2_FIELD_BOTTOM:
1550 case V4L2_FIELD_INTERLACED:
1556 f->fmt.pix.field = field;
1557 if (f->fmt.pix.width < 48)
1558 f->fmt.pix.width = 48;
1559 if (f->fmt.pix.height < 32)
1560 f->fmt.pix.height = 32;
1561 if (f->fmt.pix.width > maxw)
1562 f->fmt.pix.width = maxw;
1563 if (f->fmt.pix.height > maxh)
1564 f->fmt.pix.height = maxh;
1565 f->fmt.pix.width &= ~0x03;
1566 f->fmt.pix.bytesperline =
1567 (f->fmt.pix.width * fmt->depth) >> 3;
1568 f->fmt.pix.sizeimage =
1569 f->fmt.pix.height * f->fmt.pix.bytesperline;
1573 case V4L2_BUF_TYPE_VIDEO_OVERLAY:
1574 if (saa7134_no_overlay > 0) {
1575 printk ("V4L2_BUF_TYPE_VIDEO_OVERLAY: no_overlay\n");
1578 err = verify_preview(dev,&f->fmt.win);
1582 case V4L2_BUF_TYPE_VBI_CAPTURE:
1583 saa7134_vbi_fmt(dev,f);
1590 static int saa7134_s_fmt(struct saa7134_dev *dev, struct saa7134_fh *fh,
1591 struct v4l2_format *f)
1593 unsigned long flags;
1597 case V4L2_BUF_TYPE_VIDEO_CAPTURE:
1598 err = saa7134_try_fmt(dev,fh,f);
1602 fh->fmt = format_by_fourcc(f->fmt.pix.pixelformat);
1603 fh->width = f->fmt.pix.width;
1604 fh->height = f->fmt.pix.height;
1605 fh->cap.field = f->fmt.pix.field;
1607 case V4L2_BUF_TYPE_VIDEO_OVERLAY:
1608 if (saa7134_no_overlay > 0) {
1609 printk ("V4L2_BUF_TYPE_VIDEO_OVERLAY: no_overlay\n");
1612 err = verify_preview(dev,&f->fmt.win);
1616 mutex_lock(&dev->lock);
1617 fh->win = f->fmt.win;
1618 fh->nclips = f->fmt.win.clipcount;
1621 if (copy_from_user(fh->clips,f->fmt.win.clips,
1622 sizeof(struct v4l2_clip)*fh->nclips)) {
1623 mutex_unlock(&dev->lock);
1627 if (res_check(fh, RESOURCE_OVERLAY)) {
1628 spin_lock_irqsave(&dev->slock,flags);
1629 stop_preview(dev,fh);
1630 start_preview(dev,fh);
1631 spin_unlock_irqrestore(&dev->slock,flags);
1633 mutex_unlock(&dev->lock);
1635 case V4L2_BUF_TYPE_VBI_CAPTURE:
1636 saa7134_vbi_fmt(dev,f);
1643 int saa7134_common_ioctl(struct saa7134_dev *dev,
1644 unsigned int cmd, void *arg)
1649 case VIDIOC_QUERYCTRL:
1651 const struct v4l2_queryctrl *ctrl;
1652 struct v4l2_queryctrl *c = arg;
1654 if ((c->id < V4L2_CID_BASE ||
1655 c->id >= V4L2_CID_LASTP1) &&
1656 (c->id < V4L2_CID_PRIVATE_BASE ||
1657 c->id >= V4L2_CID_PRIVATE_LASTP1))
1659 ctrl = ctrl_by_id(c->id);
1660 *c = (NULL != ctrl) ? *ctrl : no_ctrl;
1664 return get_control(dev,arg);
1667 mutex_lock(&dev->lock);
1668 err = set_control(dev,NULL,arg);
1669 mutex_unlock(&dev->lock);
1672 /* --- input switching --------------------------------------- */
1673 case VIDIOC_ENUMINPUT:
1675 struct v4l2_input *i = arg;
1679 if (n >= SAA7134_INPUT_MAX)
1681 if (NULL == card_in(dev,i->index).name)
1683 memset(i,0,sizeof(*i));
1685 i->type = V4L2_INPUT_TYPE_CAMERA;
1686 strcpy(i->name,card_in(dev,n).name);
1687 if (card_in(dev,n).tv)
1688 i->type = V4L2_INPUT_TYPE_TUNER;
1690 if (n == dev->ctl_input) {
1691 int v1 = saa_readb(SAA7134_STATUS_VIDEO1);
1692 int v2 = saa_readb(SAA7134_STATUS_VIDEO2);
1694 if (0 != (v1 & 0x40))
1695 i->status |= V4L2_IN_ST_NO_H_LOCK;
1696 if (0 != (v2 & 0x40))
1697 i->status |= V4L2_IN_ST_NO_SYNC;
1698 if (0 != (v2 & 0x0e))
1699 i->status |= V4L2_IN_ST_MACROVISION;
1701 for (n = 0; n < TVNORMS; n++)
1702 i->std |= tvnorms[n].id;
1705 case VIDIOC_G_INPUT:
1708 *i = dev->ctl_input;
1711 case VIDIOC_S_INPUT:
1715 if (*i < 0 || *i >= SAA7134_INPUT_MAX)
1717 if (NULL == card_in(dev,*i).name)
1719 mutex_lock(&dev->lock);
1721 mutex_unlock(&dev->lock);
1728 EXPORT_SYMBOL(saa7134_common_ioctl);
1731 * This function is _not_ called directly, but from
1732 * video_generic_ioctl (and maybe others). userspace
1733 * copying is done already, arg is a kernel pointer.
1735 static int video_do_ioctl(struct inode *inode, struct file *file,
1736 unsigned int cmd, void *arg)
1738 struct saa7134_fh *fh = file->private_data;
1739 struct saa7134_dev *dev = fh->dev;
1740 unsigned long flags;
1743 if (video_debug > 1)
1744 v4l_print_ioctl(dev->name,cmd);
1749 case VIDIOC_S_INPUT:
1750 case VIDIOC_S_TUNER:
1751 case VIDIOC_S_FREQUENCY:
1752 err = v4l2_prio_check(&dev->prio,&fh->prio);
1758 case VIDIOC_QUERYCAP:
1760 struct v4l2_capability *cap = arg;
1761 unsigned int tuner_type = dev->tuner_type;
1763 memset(cap,0,sizeof(*cap));
1764 strcpy(cap->driver, "saa7134");
1765 strlcpy(cap->card, saa7134_boards[dev->board].name,
1767 sprintf(cap->bus_info,"PCI:%s",pci_name(dev->pci));
1768 cap->version = SAA7134_VERSION_CODE;
1770 V4L2_CAP_VIDEO_CAPTURE |
1771 V4L2_CAP_VBI_CAPTURE |
1772 V4L2_CAP_READWRITE |
1773 V4L2_CAP_STREAMING |
1775 if (saa7134_no_overlay <= 0) {
1776 cap->capabilities |= V4L2_CAP_VIDEO_OVERLAY;
1779 if ((tuner_type == TUNER_ABSENT) || (tuner_type == UNSET))
1780 cap->capabilities &= ~V4L2_CAP_TUNER;
1785 /* --- tv standards ------------------------------------------ */
1786 case VIDIOC_ENUMSTD:
1788 struct v4l2_standard *e = arg;
1794 err = v4l2_video_std_construct(e, tvnorms[e->index].id,
1795 tvnorms[e->index].name);
1803 v4l2_std_id *id = arg;
1805 *id = dev->tvnorm->id;
1810 v4l2_std_id *id = arg;
1814 for (i = 0; i < TVNORMS; i++)
1815 if (*id == tvnorms[i].id)
1818 for (i = 0; i < TVNORMS; i++)
1819 if (*id & tvnorms[i].id)
1823 if ((*id & V4L2_STD_SECAM) && (secam[0] != '-')) {
1824 if (secam[0] == 'L' || secam[0] == 'l') {
1825 if (secam[1] == 'C' || secam[1] == 'c')
1826 fixup = V4L2_STD_SECAM_LC;
1828 fixup = V4L2_STD_SECAM_L;
1830 if (secam[0] == 'D' || secam[0] == 'd')
1831 fixup = V4L2_STD_SECAM_DK;
1833 fixup = V4L2_STD_SECAM;
1835 for (i = 0; i < TVNORMS; i++)
1836 if (fixup == tvnorms[i].id)
1839 mutex_lock(&dev->lock);
1840 if (res_check(fh, RESOURCE_OVERLAY)) {
1841 spin_lock_irqsave(&dev->slock,flags);
1842 stop_preview(dev,fh);
1843 set_tvnorm(dev,&tvnorms[i]);
1844 start_preview(dev,fh);
1845 spin_unlock_irqrestore(&dev->slock,flags);
1847 set_tvnorm(dev,&tvnorms[i]);
1848 saa7134_tvaudio_do_scan(dev);
1849 mutex_unlock(&dev->lock);
1853 case VIDIOC_CROPCAP:
1855 struct v4l2_cropcap *cap = arg;
1857 if (cap->type != V4L2_BUF_TYPE_VIDEO_CAPTURE &&
1858 cap->type != V4L2_BUF_TYPE_VIDEO_OVERLAY)
1860 cap->bounds = dev->crop_bounds;
1861 cap->defrect = dev->crop_defrect;
1862 cap->pixelaspect.numerator = 1;
1863 cap->pixelaspect.denominator = 1;
1864 if (dev->tvnorm->id & V4L2_STD_525_60) {
1865 cap->pixelaspect.numerator = 11;
1866 cap->pixelaspect.denominator = 10;
1868 if (dev->tvnorm->id & V4L2_STD_625_50) {
1869 cap->pixelaspect.numerator = 54;
1870 cap->pixelaspect.denominator = 59;
1877 struct v4l2_crop * crop = arg;
1879 if (crop->type != V4L2_BUF_TYPE_VIDEO_CAPTURE &&
1880 crop->type != V4L2_BUF_TYPE_VIDEO_OVERLAY)
1882 crop->c = dev->crop_current;
1887 struct v4l2_crop *crop = arg;
1888 struct v4l2_rect *b = &dev->crop_bounds;
1890 if (crop->type != V4L2_BUF_TYPE_VIDEO_CAPTURE &&
1891 crop->type != V4L2_BUF_TYPE_VIDEO_OVERLAY)
1893 if (crop->c.height < 0)
1895 if (crop->c.width < 0)
1898 if (res_locked(fh->dev,RESOURCE_OVERLAY))
1900 if (res_locked(fh->dev,RESOURCE_VIDEO))
1903 if (crop->c.top < b->top)
1904 crop->c.top = b->top;
1905 if (crop->c.top > b->top + b->height)
1906 crop->c.top = b->top + b->height;
1907 if (crop->c.height > b->top - crop->c.top + b->height)
1908 crop->c.height = b->top - crop->c.top + b->height;
1910 if (crop->c.left < b->left)
1911 crop->c.left = b->left;
1912 if (crop->c.left > b->left + b->width)
1913 crop->c.left = b->left + b->width;
1914 if (crop->c.width > b->left - crop->c.left + b->width)
1915 crop->c.width = b->left - crop->c.left + b->width;
1917 dev->crop_current = crop->c;
1921 /* --- tuner ioctls ------------------------------------------ */
1922 case VIDIOC_G_TUNER:
1924 struct v4l2_tuner *t = arg;
1929 memset(t,0,sizeof(*t));
1930 for (n = 0; n < SAA7134_INPUT_MAX; n++)
1931 if (card_in(dev,n).tv)
1933 if (NULL != card_in(dev,n).name) {
1934 strcpy(t->name, "Television");
1935 t->type = V4L2_TUNER_ANALOG_TV;
1936 t->capability = V4L2_TUNER_CAP_NORM |
1937 V4L2_TUNER_CAP_STEREO |
1938 V4L2_TUNER_CAP_LANG1 |
1939 V4L2_TUNER_CAP_LANG2;
1940 t->rangehigh = 0xffffffffUL;
1941 t->rxsubchans = saa7134_tvaudio_getstereo(dev);
1942 t->audmode = saa7134_tvaudio_rx2mode(t->rxsubchans);
1944 if (0 != (saa_readb(SAA7134_STATUS_VIDEO1) & 0x03))
1948 case VIDIOC_S_TUNER:
1950 struct v4l2_tuner *t = arg;
1953 mode = dev->thread.mode;
1954 if (UNSET == mode) {
1955 rx = saa7134_tvaudio_getstereo(dev);
1956 mode = saa7134_tvaudio_rx2mode(t->rxsubchans);
1958 if (mode != t->audmode) {
1959 dev->thread.mode = t->audmode;
1963 case VIDIOC_G_FREQUENCY:
1965 struct v4l2_frequency *f = arg;
1967 memset(f,0,sizeof(*f));
1968 f->type = fh->radio ? V4L2_TUNER_RADIO : V4L2_TUNER_ANALOG_TV;
1969 f->frequency = dev->ctl_freq;
1972 case VIDIOC_S_FREQUENCY:
1974 struct v4l2_frequency *f = arg;
1978 if (0 == fh->radio && V4L2_TUNER_ANALOG_TV != f->type)
1980 if (1 == fh->radio && V4L2_TUNER_RADIO != f->type)
1982 mutex_lock(&dev->lock);
1983 dev->ctl_freq = f->frequency;
1985 saa7134_i2c_call_clients(dev,VIDIOC_S_FREQUENCY,f);
1987 saa7134_tvaudio_do_scan(dev);
1988 mutex_unlock(&dev->lock);
1992 /* --- control ioctls ---------------------------------------- */
1993 case VIDIOC_ENUMINPUT:
1994 case VIDIOC_G_INPUT:
1995 case VIDIOC_S_INPUT:
1996 case VIDIOC_QUERYCTRL:
1999 return saa7134_common_ioctl(dev, cmd, arg);
2001 case VIDIOC_G_AUDIO:
2003 struct v4l2_audio *a = arg;
2005 memset(a,0,sizeof(*a));
2006 strcpy(a->name,"audio");
2009 case VIDIOC_S_AUDIO:
2013 struct v4l2_captureparm *parm = arg;
2014 memset(parm,0,sizeof(*parm));
2018 case VIDIOC_G_PRIORITY:
2020 enum v4l2_priority *p = arg;
2022 *p = v4l2_prio_max(&dev->prio);
2025 case VIDIOC_S_PRIORITY:
2027 enum v4l2_priority *prio = arg;
2029 return v4l2_prio_change(&dev->prio, &fh->prio, *prio);
2032 /* --- preview ioctls ---------------------------------------- */
2033 case VIDIOC_ENUM_FMT:
2035 struct v4l2_fmtdesc *f = arg;
2036 enum v4l2_buf_type type;
2042 case V4L2_BUF_TYPE_VIDEO_CAPTURE:
2043 case V4L2_BUF_TYPE_VIDEO_OVERLAY:
2044 if (saa7134_no_overlay > 0) {
2045 printk ("V4L2_BUF_TYPE_VIDEO_OVERLAY: no_overlay\n");
2048 if (index >= FORMATS)
2050 if (f->type == V4L2_BUF_TYPE_VIDEO_OVERLAY &&
2051 formats[index].planar)
2053 memset(f,0,sizeof(*f));
2056 strlcpy(f->description,formats[index].name,sizeof(f->description));
2057 f->pixelformat = formats[index].fourcc;
2059 case V4L2_BUF_TYPE_VBI_CAPTURE:
2062 memset(f,0,sizeof(*f));
2065 f->pixelformat = V4L2_PIX_FMT_GREY;
2066 strcpy(f->description,"vbi data");
2075 struct v4l2_framebuffer *fb = arg;
2078 fb->capability = V4L2_FBUF_CAP_LIST_CLIPPING;
2083 struct v4l2_framebuffer *fb = arg;
2084 struct saa7134_format *fmt;
2086 if(!capable(CAP_SYS_ADMIN) &&
2087 !capable(CAP_SYS_RAWIO))
2091 fmt = format_by_fourcc(fb->fmt.pixelformat);
2098 if (0 == dev->ovbuf.fmt.bytesperline)
2099 dev->ovbuf.fmt.bytesperline =
2100 dev->ovbuf.fmt.width*fmt->depth/8;
2103 case VIDIOC_OVERLAY:
2108 if (saa7134_no_overlay > 0) {
2109 printk ("no_overlay\n");
2113 if (!res_get(dev,fh,RESOURCE_OVERLAY))
2115 spin_lock_irqsave(&dev->slock,flags);
2116 start_preview(dev,fh);
2117 spin_unlock_irqrestore(&dev->slock,flags);
2120 if (!res_check(fh, RESOURCE_OVERLAY))
2122 spin_lock_irqsave(&dev->slock,flags);
2123 stop_preview(dev,fh);
2124 spin_unlock_irqrestore(&dev->slock,flags);
2125 res_free(dev,fh,RESOURCE_OVERLAY);
2130 /* --- capture ioctls ---------------------------------------- */
2133 struct v4l2_format *f = arg;
2134 return saa7134_g_fmt(dev,fh,f);
2138 struct v4l2_format *f = arg;
2139 return saa7134_s_fmt(dev,fh,f);
2141 case VIDIOC_TRY_FMT:
2143 struct v4l2_format *f = arg;
2144 return saa7134_try_fmt(dev,fh,f);
2146 #ifdef CONFIG_VIDEO_V4L1_COMPAT
2149 struct video_mbuf *mbuf = arg;
2150 struct videobuf_queue *q;
2151 struct v4l2_requestbuffers req;
2154 q = saa7134_queue(fh);
2155 memset(&req,0,sizeof(req));
2157 req.count = gbuffers;
2158 req.memory = V4L2_MEMORY_MMAP;
2159 err = videobuf_reqbufs(q,&req);
2162 memset(mbuf,0,sizeof(*mbuf));
2163 mbuf->frames = req.count;
2165 for (i = 0; i < mbuf->frames; i++) {
2166 mbuf->offsets[i] = q->bufs[i]->boff;
2167 mbuf->size += q->bufs[i]->bsize;
2172 case VIDIOC_REQBUFS:
2173 return videobuf_reqbufs(saa7134_queue(fh),arg);
2175 case VIDIOC_QUERYBUF:
2176 return videobuf_querybuf(saa7134_queue(fh),arg);
2179 return videobuf_qbuf(saa7134_queue(fh),arg);
2182 return videobuf_dqbuf(saa7134_queue(fh),arg,
2183 file->f_flags & O_NONBLOCK);
2185 case VIDIOC_STREAMON:
2187 int res = saa7134_resource(fh);
2189 if (!res_get(dev,fh,res))
2191 return videobuf_streamon(saa7134_queue(fh));
2193 case VIDIOC_STREAMOFF:
2195 int res = saa7134_resource(fh);
2197 err = videobuf_streamoff(saa7134_queue(fh));
2200 res_free(dev,fh,res);
2205 return v4l_compat_translate_ioctl(inode,file,cmd,arg,
2211 static int video_ioctl(struct inode *inode, struct file *file,
2212 unsigned int cmd, unsigned long arg)
2214 return video_usercopy(inode, file, cmd, arg, video_do_ioctl);
2217 static int radio_do_ioctl(struct inode *inode, struct file *file,
2218 unsigned int cmd, void *arg)
2220 struct saa7134_fh *fh = file->private_data;
2221 struct saa7134_dev *dev = fh->dev;
2223 if (video_debug > 1)
2224 v4l_print_ioctl(dev->name,cmd);
2226 case VIDIOC_QUERYCAP:
2228 struct v4l2_capability *cap = arg;
2230 memset(cap,0,sizeof(*cap));
2231 strcpy(cap->driver, "saa7134");
2232 strlcpy(cap->card, saa7134_boards[dev->board].name,
2234 sprintf(cap->bus_info,"PCI:%s",pci_name(dev->pci));
2235 cap->version = SAA7134_VERSION_CODE;
2236 cap->capabilities = V4L2_CAP_TUNER;
2239 case VIDIOC_G_TUNER:
2241 struct v4l2_tuner *t = arg;
2246 memset(t,0,sizeof(*t));
2247 strcpy(t->name, "Radio");
2248 t->type = V4L2_TUNER_RADIO;
2250 saa7134_i2c_call_clients(dev, VIDIOC_G_TUNER, t);
2251 if (dev->input->amux == TV) {
2252 t->signal = 0xf800 - ((saa_readb(0x581) & 0x1f) << 11);
2253 t->rxsubchans = (saa_readb(0x529) & 0x08) ?
2254 V4L2_TUNER_SUB_STEREO : V4L2_TUNER_SUB_MONO;
2258 case VIDIOC_S_TUNER:
2260 struct v4l2_tuner *t = arg;
2265 saa7134_i2c_call_clients(dev,VIDIOC_S_TUNER,t);
2269 case VIDIOC_ENUMINPUT:
2271 struct v4l2_input *i = arg;
2275 strcpy(i->name,"Radio");
2276 i->type = V4L2_INPUT_TYPE_TUNER;
2279 case VIDIOC_G_INPUT:
2285 case VIDIOC_G_AUDIO:
2287 struct v4l2_audio *a = arg;
2289 memset(a,0,sizeof(*a));
2290 strcpy(a->name,"Radio");
2295 v4l2_std_id *id = arg;
2299 case VIDIOC_S_AUDIO:
2300 case VIDIOC_S_INPUT:
2304 case VIDIOC_QUERYCTRL:
2306 const struct v4l2_queryctrl *ctrl;
2307 struct v4l2_queryctrl *c = arg;
2309 if (c->id < V4L2_CID_BASE ||
2310 c->id >= V4L2_CID_LASTP1)
2312 if (c->id == V4L2_CID_AUDIO_MUTE) {
2313 ctrl = ctrl_by_id(c->id);
2322 case VIDIOC_G_FREQUENCY:
2323 case VIDIOC_S_FREQUENCY:
2324 return video_do_ioctl(inode,file,cmd,arg);
2327 return v4l_compat_translate_ioctl(inode,file,cmd,arg,
2333 static int radio_ioctl(struct inode *inode, struct file *file,
2334 unsigned int cmd, unsigned long arg)
2336 return video_usercopy(inode, file, cmd, arg, radio_do_ioctl);
2339 static const struct file_operations video_fops =
2341 .owner = THIS_MODULE,
2343 .release = video_release,
2347 .ioctl = video_ioctl,
2348 .compat_ioctl = v4l_compat_ioctl32,
2349 .llseek = no_llseek,
2352 static const struct file_operations radio_fops =
2354 .owner = THIS_MODULE,
2356 .release = video_release,
2357 .ioctl = radio_ioctl,
2358 .compat_ioctl = v4l_compat_ioctl32,
2359 .llseek = no_llseek,
2362 /* ----------------------------------------------------------- */
2363 /* exported stuff */
2365 struct video_device saa7134_video_template =
2367 .name = "saa7134-video",
2368 .type = VID_TYPE_CAPTURE|VID_TYPE_TUNER|
2369 VID_TYPE_CLIPPING|VID_TYPE_SCALES,
2371 .fops = &video_fops,
2375 struct video_device saa7134_vbi_template =
2377 .name = "saa7134-vbi",
2378 .type = VID_TYPE_TUNER|VID_TYPE_TELETEXT,
2380 .fops = &video_fops,
2384 struct video_device saa7134_radio_template =
2386 .name = "saa7134-radio",
2387 .type = VID_TYPE_TUNER,
2389 .fops = &radio_fops,
2393 int saa7134_video_init1(struct saa7134_dev *dev)
2395 /* sanitycheck insmod options */
2396 if (gbuffers < 2 || gbuffers > VIDEO_MAX_FRAME)
2398 if (gbufsize < 0 || gbufsize > gbufsize_max)
2399 gbufsize = gbufsize_max;
2400 gbufsize = (gbufsize + PAGE_SIZE - 1) & PAGE_MASK;
2402 /* put some sensible defaults into the data structures ... */
2403 dev->ctl_bright = ctrl_by_id(V4L2_CID_BRIGHTNESS)->default_value;
2404 dev->ctl_contrast = ctrl_by_id(V4L2_CID_CONTRAST)->default_value;
2405 dev->ctl_hue = ctrl_by_id(V4L2_CID_HUE)->default_value;
2406 dev->ctl_saturation = ctrl_by_id(V4L2_CID_SATURATION)->default_value;
2407 dev->ctl_volume = ctrl_by_id(V4L2_CID_AUDIO_VOLUME)->default_value;
2408 dev->ctl_mute = 1; // ctrl_by_id(V4L2_CID_AUDIO_MUTE)->default_value;
2409 dev->ctl_invert = ctrl_by_id(V4L2_CID_PRIVATE_INVERT)->default_value;
2410 dev->ctl_automute = ctrl_by_id(V4L2_CID_PRIVATE_AUTOMUTE)->default_value;
2412 if (dev->tda9887_conf && dev->ctl_automute)
2413 dev->tda9887_conf |= TDA9887_AUTOMUTE;
2416 INIT_LIST_HEAD(&dev->video_q.queue);
2417 init_timer(&dev->video_q.timeout);
2418 dev->video_q.timeout.function = saa7134_buffer_timeout;
2419 dev->video_q.timeout.data = (unsigned long)(&dev->video_q);
2420 dev->video_q.dev = dev;
2422 if (saa7134_boards[dev->board].video_out) {
2423 /* enable video output */
2424 int vo = saa7134_boards[dev->board].video_out;
2426 unsigned int vid_port_opts = saa7134_boards[dev->board].vid_port_opts;
2427 saa_writeb(SAA7134_VIDEO_PORT_CTRL0, video_out[vo][0]);
2428 video_reg = video_out[vo][1];
2429 if (vid_port_opts & SET_T_CODE_POLARITY_NON_INVERTED)
2430 video_reg &= ~VP_T_CODE_P_INVERTED;
2431 saa_writeb(SAA7134_VIDEO_PORT_CTRL1, video_reg);
2432 saa_writeb(SAA7134_VIDEO_PORT_CTRL2, video_out[vo][2]);
2433 saa_writeb(SAA7134_VIDEO_PORT_CTRL3, video_out[vo][3]);
2434 saa_writeb(SAA7134_VIDEO_PORT_CTRL4, video_out[vo][4]);
2435 video_reg = video_out[vo][5];
2436 if (vid_port_opts & SET_CLOCK_NOT_DELAYED)
2437 video_reg &= ~VP_CLK_CTRL2_DELAYED;
2438 if (vid_port_opts & SET_CLOCK_INVERTED)
2439 video_reg |= VP_CLK_CTRL1_INVERTED;
2440 saa_writeb(SAA7134_VIDEO_PORT_CTRL5, video_reg);
2441 video_reg = video_out[vo][6];
2442 if (vid_port_opts & SET_VSYNC_OFF) {
2443 video_reg &= ~VP_VS_TYPE_MASK;
2444 video_reg |= VP_VS_TYPE_OFF;
2446 saa_writeb(SAA7134_VIDEO_PORT_CTRL6, video_reg);
2447 saa_writeb(SAA7134_VIDEO_PORT_CTRL7, video_out[vo][7]);
2448 saa_writeb(SAA7134_VIDEO_PORT_CTRL8, video_out[vo][8]);
2454 int saa7134_video_init2(struct saa7134_dev *dev)
2457 set_tvnorm(dev,&tvnorms[0]);
2459 saa7134_tvaudio_setmute(dev);
2460 saa7134_tvaudio_setvolume(dev,dev->ctl_volume);
2464 int saa7134_video_fini(struct saa7134_dev *dev)
2470 void saa7134_irq_video_intl(struct saa7134_dev *dev)
2472 static const char *st[] = {
2473 "(no signal)", "NTSC", "PAL", "SECAM" };
2476 st1 = saa_readb(SAA7134_STATUS_VIDEO1);
2477 st2 = saa_readb(SAA7134_STATUS_VIDEO2);
2478 dprintk("DCSDT: pll: %s, sync: %s, norm: %s\n",
2479 (st1 & 0x40) ? "not locked" : "locked",
2480 (st2 & 0x40) ? "no" : "yes",
2482 dev->nosignal = (st1 & 0x40) || (st2 & 0x40);
2484 if (dev->nosignal) {
2485 /* no video signal -> mute audio */
2486 if (dev->ctl_automute)
2488 saa7134_tvaudio_setmute(dev);
2489 saa_setb(SAA7134_SYNC_CTRL, 0x20);
2491 /* wake up tvaudio audio carrier scan thread */
2492 saa7134_tvaudio_do_scan(dev);
2494 saa_clearb(SAA7134_SYNC_CTRL, 0x20);
2496 if (dev->mops && dev->mops->signal_change)
2497 dev->mops->signal_change(dev);
2500 void saa7134_irq_video_done(struct saa7134_dev *dev, unsigned long status)
2502 enum v4l2_field field;
2504 spin_lock(&dev->slock);
2505 if (dev->video_q.curr) {
2506 dev->video_fieldcount++;
2507 field = dev->video_q.curr->vb.field;
2508 if (V4L2_FIELD_HAS_BOTH(field)) {
2509 /* make sure we have seen both fields */
2510 if ((status & 0x10) == 0x00) {
2511 dev->video_q.curr->top_seen = 1;
2514 if (!dev->video_q.curr->top_seen)
2516 } else if (field == V4L2_FIELD_TOP) {
2517 if ((status & 0x10) != 0x10)
2519 } else if (field == V4L2_FIELD_BOTTOM) {
2520 if ((status & 0x10) != 0x00)
2523 dev->video_q.curr->vb.field_count = dev->video_fieldcount;
2524 saa7134_buffer_finish(dev,&dev->video_q,STATE_DONE);
2526 saa7134_buffer_next(dev,&dev->video_q);
2529 spin_unlock(&dev->slock);
2532 /* ----------------------------------------------------------- */