summaryrefslogtreecommitdiff
path: root/linux/drivers/media/video/saa7134/saa7134-video.c
diff options
context:
space:
mode:
authorGerd Knorr <devnull@localhost>2005-02-03 10:48:23 +0000
committerGerd Knorr <devnull@localhost>2005-02-03 10:48:23 +0000
commitb0dc534be911e5799370884fd732a88cc94684d4 (patch)
treed7dffc159553be0de4e78eb5ead636731af79afd /linux/drivers/media/video/saa7134/saa7134-video.c
parent71daf2d7061f7fd30d949da8071621d6d7f83b6e (diff)
downloadmediapointer-dvb-s2-b0dc534be911e5799370884fd732a88cc94684d4.tar.gz
mediapointer-dvb-s2-b0dc534be911e5799370884fd732a88cc94684d4.tar.bz2
- saa7134: PAL-60 support by Phil Richards.
Diffstat (limited to 'linux/drivers/media/video/saa7134/saa7134-video.c')
-rw-r--r--linux/drivers/media/video/saa7134/saa7134-video.c20
1 files changed, 19 insertions, 1 deletions
diff --git a/linux/drivers/media/video/saa7134/saa7134-video.c b/linux/drivers/media/video/saa7134/saa7134-video.c
index eb485fc9f..3c101b95a 100644
--- a/linux/drivers/media/video/saa7134/saa7134-video.c
+++ b/linux/drivers/media/video/saa7134/saa7134-video.c
@@ -1,5 +1,5 @@
/*
- * $Id: saa7134-video.c,v 1.26 2005/02/03 10:24:33 kraxel Exp $
+ * $Id: saa7134-video.c,v 1.27 2005/02/03 10:48:23 kraxel Exp $
*
* device driver for philips saa7134 based TV cards
* video4linux video interface
@@ -268,6 +268,24 @@ static struct saa7134_tvnorm tvnorms[] = {
.chroma_ctrl2 = 0x06,
.vgate_misc = 0x1c,
+ },{
+ .name = "PAL-60",
+ .id = V4L2_STD_PAL_60,
+
+ .h_start = 0,
+ .h_stop = 719,
+ .video_v_start = 22,
+ .video_v_stop = 22+239,
+ .vbi_v_start = 10, /* FIXME */
+ .vbi_v_stop = 21, /* FIXME */
+ .src_timing = 1,
+
+ .sync_control = 0x18,
+ .luma_control = 0x40,
+ .chroma_ctrl1 = 0x81,
+ .chroma_gain = 0x2a,
+ .chroma_ctrl2 = 0x06,
+ .vgate_misc = 0x1c,
}
};
#define TVNORMS ARRAY_SIZE(tvnorms)