aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/common/tuners/tuner-types.c
diff options
context:
space:
mode:
authorAndy Walls <awalls@radix.net>2009-06-07 21:39:03 -0300
committerMauro Carvalho Chehab <mchehab@redhat.com>2009-06-16 19:07:25 -0300
commit5ddc9b100fc96e8f3c6d435cecd9d09e5b9673f9 (patch)
treec5a25e1cdb82741a85f239c378b07ab3ad7fa953 /drivers/media/common/tuners/tuner-types.c
parent7360055aa31f5f732af4d0ed23517f1b6adfa573 (diff)
downloadkernel_samsung_smdk4412-5ddc9b100fc96e8f3c6d435cecd9d09e5b9673f9.zip
kernel_samsung_smdk4412-5ddc9b100fc96e8f3c6d435cecd9d09e5b9673f9.tar.gz
kernel_samsung_smdk4412-5ddc9b100fc96e8f3c6d435cecd9d09e5b9673f9.tar.bz2
V4L/DVB (11933): tuner-simple, tveeprom: Add Philips FQ1216LME MK3 analog tuner
Signed-off-by: Andy Walls <awalls@radix.net> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/common/tuners/tuner-types.c')
-rw-r--r--drivers/media/common/tuners/tuner-types.c29
1 files changed, 29 insertions, 0 deletions
diff --git a/drivers/media/common/tuners/tuner-types.c b/drivers/media/common/tuners/tuner-types.c
index a9ce5b2..6a7f1a4 100644
--- a/drivers/media/common/tuners/tuner-types.c
+++ b/drivers/media/common/tuners/tuner-types.c
@@ -1279,6 +1279,28 @@ static struct tuner_params tuner_tcl_mf02gip_5n_params[] = {
},
};
+/* 80-89 */
+/* --------- TUNER_PHILIPS_FQ1216LME_MK3 -- active loopthrough, no FM ------- */
+
+static struct tuner_params tuner_fq1216lme_mk3_params[] = {
+ {
+ .type = TUNER_PARAM_TYPE_PAL,
+ .ranges = tuner_fm1216me_mk3_pal_ranges,
+ .count = ARRAY_SIZE(tuner_fm1216me_mk3_pal_ranges),
+ .cb_first_if_lower_freq = 1, /* not specified, but safe to do */
+ .has_tda9887 = 1, /* TDA9886 */
+ .port1_active = 1,
+ .port2_active = 1,
+ .port2_invert_for_secam_lc = 1,
+ .default_top_low = 4,
+ .default_top_mid = 4,
+ .default_top_high = 4,
+ .default_top_secam_low = 4,
+ .default_top_secam_mid = 4,
+ .default_top_secam_high = 4,
+ },
+};
+
/* --------------------------------------------------------------------- */
struct tunertype tuners[] = {
@@ -1724,6 +1746,13 @@ struct tunertype tuners[] = {
.params = tuner_fm1216mk5_params,
.count = ARRAY_SIZE(tuner_fm1216mk5_params),
},
+
+ /* 80-89 */
+ [TUNER_PHILIPS_FQ1216LME_MK3] = { /* PAL/SECAM, Loop-thru, no FM */
+ .name = "Philips FQ1216LME MK3 PAL/SECAM w/active loopthrough",
+ .params = tuner_fq1216lme_mk3_params,
+ .count = ARRAY_SIZE(tuner_fq1216lme_mk3_params),
+ },
};
EXPORT_SYMBOL(tuners);