summaryrefslogtreecommitdiff
path: root/linux/drivers/media/common/tuners/tda18271.h
diff options
context:
space:
mode:
authorMauro Carvalho Chehab <mchehab@redhat.com>2009-09-15 14:09:03 -0300
committerMauro Carvalho Chehab <mchehab@redhat.com>2009-09-15 14:09:03 -0300
commit5c742b688922417548eae7f84f8979c6e08d9692 (patch)
tree061ccba74878c6885fe91563ae9e616b88e4a7ee /linux/drivers/media/common/tuners/tda18271.h
parenta7ec580399a117b5f3320f4e0b252d0ba87917ba (diff)
parent6c7152d8e7cab73ccc06346104d485dd0c03aa19 (diff)
downloadmediapointer-dvb-s2-5c742b688922417548eae7f84f8979c6e08d9692.tar.gz
mediapointer-dvb-s2-5c742b688922417548eae7f84f8979c6e08d9692.tar.bz2
merge: http://linuxtv.org/hg/~awalls/v4l-dvb
From: Mauro Carvalho Chehab <mchehab@redhat.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'linux/drivers/media/common/tuners/tda18271.h')
-rw-r--r--linux/drivers/media/common/tuners/tda18271.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/linux/drivers/media/common/tuners/tda18271.h b/linux/drivers/media/common/tuners/tda18271.h
index 71bac9593..323f29121 100644
--- a/linux/drivers/media/common/tuners/tda18271.h
+++ b/linux/drivers/media/common/tuners/tda18271.h
@@ -67,6 +67,17 @@ enum tda18271_i2c_gate {
TDA18271_GATE_DIGITAL,
};
+enum tda18271_output_options {
+ /* slave tuner output & loop thru & xtal oscillator always on */
+ TDA18271_OUTPUT_LT_XT_ON = 0,
+
+ /* slave tuner output loop thru off */
+ TDA18271_OUTPUT_LT_OFF = 1,
+
+ /* xtal oscillator off */
+ TDA18271_OUTPUT_XT_OFF = 2,
+};
+
struct tda18271_config {
/* override default if freq / std settings (optional) */
struct tda18271_std_map *std_map;
@@ -77,6 +88,9 @@ struct tda18271_config {
/* use i2c gate provided by analog or digital demod */
enum tda18271_i2c_gate gate;
+ /* output options that can be disabled */
+ enum tda18271_output_options output_opt;
+
/* force rf tracking filter calibration on startup */
unsigned int rf_cal_on_startup:1;