diff options
author | Michael Krufky <mkrufky@linuxtv.org> | 2007-10-22 08:56:38 -0400 |
---|---|---|
committer | Michael Krufky <mkrufky@linuxtv.org> | 2007-10-22 08:56:38 -0400 |
commit | d9d95216cef86d580d36f7a13cc80bcb4973c4c8 (patch) | |
tree | 4df352ecc87a6966aa777a4ed3bf006743e3f8a0 /linux/drivers/media/Kconfig | |
parent | a13ef5b4f0fa3617da1cc100fc809baf91ace7e3 (diff) | |
download | mediapointer-dvb-s2-d9d95216cef86d580d36f7a13cc80bcb4973c4c8.tar.gz mediapointer-dvb-s2-d9d95216cef86d580d36f7a13cc80bcb4973c4c8.tar.bz2 |
tda8290: add support for NXP TDA18271 tuner and TDA8295 analog demod
From: Michael Krufky <mkrufky@linuxtv.org>
Add basic support for NXP TDA8295 analog demod and TDA18271 tuner silicon.
TDA8295 + TDA8275a not yet tested.
TDA8290 + TDA18271 not yet supported.
Digital mode of TDA18271 not yet tested & needs more work.
Signed-off-by: Michael Krufky <mkrufky@linuxtv.org>
Reviewed-by: Hans Verkuil <hverkuil@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
---
linux/Documentation/video4linux/CARDLIST.tuner | 1
linux/drivers/media/Kconfig | 3
linux/drivers/media/dvb/frontends/Kconfig | 7
linux/drivers/media/dvb/frontends/Makefile | 1
linux/drivers/media/dvb/frontends/tda18271.c | 1062 +++++++++++++++++++++++++
linux/drivers/media/dvb/frontends/tda18271.h | 40
linux/drivers/media/video/tda8290.c | 339 +++++++
linux/drivers/media/video/tda8290.h | 8
linux/drivers/media/video/tuner-core.c | 5
linux/drivers/media/video/tuner-types.c | 3
linux/drivers/media/video/tveeprom.c | 2
linux/include/media/tuner.h | 2
v4l/versions.txt | 2
13 files changed, 1467 insertions(+), 8 deletions(-)
Diffstat (limited to 'linux/drivers/media/Kconfig')
-rw-r--r-- | linux/drivers/media/Kconfig | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/linux/drivers/media/Kconfig b/linux/drivers/media/Kconfig index a2b49dd5c..416d85c65 100644 --- a/linux/drivers/media/Kconfig +++ b/linux/drivers/media/Kconfig @@ -105,9 +105,10 @@ config TUNER_MT20XX Say Y here to include support for the MT2032 / MT2050 tuner. config TUNER_TDA8290 - tristate "TDA 8290+8275(a) tuner combo" + tristate "TDA 8290/8295 + 8275(a)/18271 tuner combo" depends on I2C select DVB_TDA827X + select DVB_TDA18271 default m if VIDEO_TUNER_CUSTOMIZE help Say Y here to include support for Philips TDA8290+8275(a) tuner. |