diff options
author | Hans Verkuil <devnull@localhost> | 2006-01-12 20:08:42 +0000 |
---|---|---|
committer | Hans Verkuil <devnull@localhost> | 2006-01-12 20:08:42 +0000 |
commit | 912a7a7b733e7f4d9fe9846aaaf619c25f3571af (patch) | |
tree | d952cb64b71b6af6a6043e5b30f79054405a3893 | |
parent | 35d1005b4b1de758b74a0f4b6d2902f935262b67 (diff) | |
download | mediapointer-dvb-s2-912a7a7b733e7f4d9fe9846aaaf619c25f3571af.tar.gz mediapointer-dvb-s2-912a7a7b733e7f4d9fe9846aaaf619c25f3571af.tar.bz2 |
Add support for Samsung tuner TCPN 2121P30A
Add support for Samsung tuner TCPN 2121P30A, used in
Hauppauge PVR-500 cards.
Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
-rw-r--r-- | linux/Documentation/video4linux/CARDLIST.tuner | 1 | ||||
-rw-r--r-- | linux/drivers/media/video/tuner-types.c | 26 | ||||
-rw-r--r-- | linux/drivers/media/video/tveeprom.c | 2 | ||||
-rw-r--r-- | linux/include/media/tuner.h | 3 | ||||
-rw-r--r-- | v4l/ChangeLog | 11 |
5 files changed, 40 insertions, 3 deletions
diff --git a/linux/Documentation/video4linux/CARDLIST.tuner b/linux/Documentation/video4linux/CARDLIST.tuner index 0bf3d5bf9..f6d0cf7b7 100644 --- a/linux/Documentation/video4linux/CARDLIST.tuner +++ b/linux/Documentation/video4linux/CARDLIST.tuner @@ -68,3 +68,4 @@ tuner=66 - LG NTSC (TALN mini series) tuner=67 - Philips TD1316 Hybrid Tuner tuner=68 - Philips TUV1236D ATSC/NTSC dual in tuner=69 - Tena TNF 5335 MF +tuner=70 - Samsung TCPN 2121P30A diff --git a/linux/drivers/media/video/tuner-types.c b/linux/drivers/media/video/tuner-types.c index fd7bc6b36..65b115f17 100644 --- a/linux/drivers/media/video/tuner-types.c +++ b/linux/drivers/media/video/tuner-types.c @@ -1,5 +1,5 @@ /* - * $Id: tuner-types.c,v 1.1 2006/01/12 17:06:49 mkrufky Exp $ + * $Id: tuner-types.c,v 1.2 2006/01/12 20:08:42 hverkuil Exp $ * * i2c tv tuner chip device type database. * @@ -1130,6 +1130,24 @@ static struct tuner_params tuner_tnf_5335mf_params[] = { }, }; +/* 70-79 */ +/* ------------ TUNER_SAMSUNG_TCPN_2121P30A - Samsung NTSC ------------ */ + +static struct tuner_range tuner_samsung_tcpn_2121p30a_ntsc_ranges[] = { + { 16 * 175.75 /*MHz*/, 0x01, }, + { 16 * 410.25 /*MHz*/, 0x02, }, + { 16 * 999.99 , 0x08, }, +}; + +static struct tuner_params tuner_samsung_tcpn_2121p30a_params[] = { + { + .type = TUNER_PARAM_TYPE_NTSC, + .ranges = tuner_samsung_tcpn_2121p30a_ntsc_ranges, + .count = ARRAY_SIZE(tuner_samsung_tcpn_2121p30a_ntsc_ranges), + .config = 0xce, + }, +}; + /* --------------------------------------------------------------------- */ struct tunertype tuners[] = { @@ -1424,6 +1442,12 @@ struct tunertype tuners[] = { .name = "Tena TNF 5335 MF", .params = tuner_tnf_5335mf_params, }, + + /* 70-79 */ + [TUNER_SAMSUNG_TCPN_2121P30A] = { /* Samsung NTSC */ + .name = "Samsung TCPN 2121P30A", + .params = tuner_samsung_tcpn_2121p30a_params, + }, }; unsigned const int tuner_count = ARRAY_SIZE(tuners); diff --git a/linux/drivers/media/video/tveeprom.c b/linux/drivers/media/video/tveeprom.c index 9de1702b0..b819ba0c8 100644 --- a/linux/drivers/media/video/tveeprom.c +++ b/linux/drivers/media/video/tveeprom.c @@ -194,7 +194,7 @@ hauppauge_tuner[] = { TUNER_LG_PAL_NEW_TAPC, "TCL 2002MI 3"}, { TUNER_TCL_2002N, "TCL 2002N 6A"}, { TUNER_PHILIPS_FM1236_MK3, "Philips FQ1236 MK3"}, - { TUNER_ABSENT, "Samsung TCPN 2121P30A"}, + { TUNER_SAMSUNG_TCPN_2121P30A, "Samsung TCPN 2121P30A"}, { TUNER_ABSENT, "Samsung TCPE 4121P30A"}, { TUNER_PHILIPS_FM1216ME_MK3, "TCL MFPE05 2"}, /* 90-99 */ diff --git a/linux/include/media/tuner.h b/linux/include/media/tuner.h index 19460ea29..a6a5786dc 100644 --- a/linux/include/media/tuner.h +++ b/linux/include/media/tuner.h @@ -1,5 +1,5 @@ /* - $Id: tuner.h,v 1.74 2006/01/12 17:06:49 mkrufky Exp $ + $Id: tuner.h,v 1.75 2006/01/12 20:08:42 hverkuil Exp $ tuner.h - definition for different tuners Copyright (C) 1997 Markus Schroeder (schroedm@uni-duesseldorf.de) @@ -116,6 +116,7 @@ #define TUNER_PHILIPS_TUV1236D 68 /* ATI HDTV Wonder */ #define TUNER_TNF_5335MF 69 /* Sabrent Bt848 */ +#define TUNER_SAMSUNG_TCPN_2121P30A 70 /* Hauppauge PVR-500MCE NTSC */ /* tv card specific */ #define TDA9887_PRESENT (1<<0) diff --git a/v4l/ChangeLog b/v4l/ChangeLog index e1e93897d..43b1b8774 100644 --- a/v4l/ChangeLog +++ b/v4l/ChangeLog @@ -1,3 +1,14 @@ +2006-01-12 20:06 hverkuil + + * linux/Documentation/video4linux/CARDLIST.tuner: + * linux/drivers/media/video/tuner-types.c: + * linux/drivers/media/video/tveeprom.c: + * linux/include/media/tuner.h: + - Add support for Samsung tuner TCPN 2121P30A, used in + Hauppauge PVR-500 cards. + + Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> + 2006-01-12 17:57 mkrufky * v4l/scripts/cardlist: |