2019-05-19 15:07:45 +03:00
# SPDX-License-Identifier: GPL-2.0-only
2012-08-20 21:48:02 +04:00
# Analog TV tuners, auto-loaded via tuner.ko
2008-04-30 04:38:46 +04:00
config MEDIA_TUNER
2008-04-30 04:38:44 +04:00
tristate
2014-07-22 21:22:01 +04:00
depends on (MEDIA_ANALOG_TV_SUPPORT || MEDIA_DIGITAL_TV_SUPPORT || MEDIA_RADIO_SUPPORT || MEDIA_SDR_SUPPORT) && I2C
[media] media: Remove VIDEO_MEDIA Kconfig option
In the past, it was possible to have either DVB or V4L2 core
as module and the other as builtin. Such config never make much
sense, and created several issues in order to make the Kconfig
dependency to work, as all drivers that depend on both (most
TV drivers) would need to be compiled as 'm'. Due to that,
the VIDEO_MEDIA config option were added.
Instead of such weird approach, let's just use the MEDIA_SUPPORT
=y or =m to select if the media subsystem core will be either
builtin or module, simplifying the building system logic.
Also, fix the tuners configuration, by enabling them only if
a tuner is required. So, if just webcam/grabbers support is
selected, no tuner option will be selected. Also, if only digital
TV is selected, no analog tuner support is selected.
That removes the need of using EXPERT customise options, when
analog TV is not selected.
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
2012-05-28 15:17:48 +04:00
default y
2012-08-20 21:48:02 +04:00
select MEDIA_TUNER_XC2028 if MEDIA_SUBDRV_AUTOSELECT
select MEDIA_TUNER_XC5000 if MEDIA_SUBDRV_AUTOSELECT
select MEDIA_TUNER_XC4000 if MEDIA_SUBDRV_AUTOSELECT
select MEDIA_TUNER_MT20XX if MEDIA_SUBDRV_AUTOSELECT
select MEDIA_TUNER_TDA8290 if MEDIA_SUBDRV_AUTOSELECT
2012-09-03 17:16:34 +04:00
select MEDIA_TUNER_TEA5761 if MEDIA_SUBDRV_AUTOSELECT && MEDIA_RADIO_SUPPORT
2012-08-20 21:48:02 +04:00
select MEDIA_TUNER_TEA5767 if MEDIA_SUBDRV_AUTOSELECT && MEDIA_RADIO_SUPPORT
select MEDIA_TUNER_SIMPLE if MEDIA_SUBDRV_AUTOSELECT
select MEDIA_TUNER_TDA9887 if MEDIA_SUBDRV_AUTOSELECT
select MEDIA_TUNER_MC44S803 if MEDIA_SUBDRV_AUTOSELECT
2008-04-30 04:38:44 +04:00
2019-07-27 16:31:29 +03:00
comment "Tuner drivers hidden by 'Autoselect ancillary drivers'"
depends on MEDIA_HIDE_ANCILLARY_SUBDRV
depends on MEDIA_ANALOG_TV_SUPPORT || MEDIA_DIGITAL_TV_SUPPORT || MEDIA_RADIO_SUPPORT || MEDIA_SDR_SUPPORT
2010-11-09 20:29:05 +03:00
menu "Customize TV tuners"
2019-07-27 16:31:29 +03:00
visible if !MEDIA_HIDE_ANCILLARY_SUBDRV
2014-07-25 13:17:59 +04:00
depends on MEDIA_ANALOG_TV_SUPPORT || MEDIA_DIGITAL_TV_SUPPORT || MEDIA_RADIO_SUPPORT || MEDIA_SDR_SUPPORT
2008-04-30 04:38:44 +04:00
2008-04-30 04:38:46 +04:00
config MEDIA_TUNER_SIMPLE
2008-04-30 04:38:44 +04:00
tristate "Simple tuner support"
[media] media: Remove VIDEO_MEDIA Kconfig option
In the past, it was possible to have either DVB or V4L2 core
as module and the other as builtin. Such config never make much
sense, and created several issues in order to make the Kconfig
dependency to work, as all drivers that depend on both (most
TV drivers) would need to be compiled as 'm'. Due to that,
the VIDEO_MEDIA config option were added.
Instead of such weird approach, let's just use the MEDIA_SUPPORT
=y or =m to select if the media subsystem core will be either
builtin or module, simplifying the building system logic.
Also, fix the tuners configuration, by enabling them only if
a tuner is required. So, if just webcam/grabbers support is
selected, no tuner option will be selected. Also, if only digital
TV is selected, no analog tuner support is selected.
That removes the need of using EXPERT customise options, when
analog TV is not selected.
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
2012-05-28 15:17:48 +04:00
depends on MEDIA_SUPPORT && I2C
2008-04-30 04:38:46 +04:00
select MEDIA_TUNER_TDA9887
2012-08-20 21:48:02 +04:00
default m if !MEDIA_SUBDRV_AUTOSELECT
2008-04-30 04:38:44 +04:00
help
Say Y here to include support for various simple tuners.
2017-11-23 11:24:45 +03:00
config MEDIA_TUNER_TDA18250
tristate "NXP TDA18250 silicon tuner"
depends on MEDIA_SUPPORT && I2C
default m if !MEDIA_SUBDRV_AUTOSELECT
help
Say Y here to include support for TDA18250 tuner.
2008-04-30 04:38:46 +04:00
config MEDIA_TUNER_TDA8290
2008-04-30 04:38:44 +04:00
tristate "TDA 8290/8295 + 8275(a)/18271 tuner combo"
[media] media: Remove VIDEO_MEDIA Kconfig option
In the past, it was possible to have either DVB or V4L2 core
as module and the other as builtin. Such config never make much
sense, and created several issues in order to make the Kconfig
dependency to work, as all drivers that depend on both (most
TV drivers) would need to be compiled as 'm'. Due to that,
the VIDEO_MEDIA config option were added.
Instead of such weird approach, let's just use the MEDIA_SUPPORT
=y or =m to select if the media subsystem core will be either
builtin or module, simplifying the building system logic.
Also, fix the tuners configuration, by enabling them only if
a tuner is required. So, if just webcam/grabbers support is
selected, no tuner option will be selected. Also, if only digital
TV is selected, no analog tuner support is selected.
That removes the need of using EXPERT customise options, when
analog TV is not selected.
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
2012-05-28 15:17:48 +04:00
depends on MEDIA_SUPPORT && I2C
2008-04-30 04:38:46 +04:00
select MEDIA_TUNER_TDA827X
select MEDIA_TUNER_TDA18271
2012-08-20 21:48:02 +04:00
default m if !MEDIA_SUBDRV_AUTOSELECT
2008-04-30 04:38:44 +04:00
help
Say Y here to include support for Philips TDA8290+8275(a) tuner.
2008-04-30 04:38:46 +04:00
config MEDIA_TUNER_TDA827X
2008-04-30 04:38:44 +04:00
tristate "Philips TDA827X silicon tuner"
[media] media: Remove VIDEO_MEDIA Kconfig option
In the past, it was possible to have either DVB or V4L2 core
as module and the other as builtin. Such config never make much
sense, and created several issues in order to make the Kconfig
dependency to work, as all drivers that depend on both (most
TV drivers) would need to be compiled as 'm'. Due to that,
the VIDEO_MEDIA config option were added.
Instead of such weird approach, let's just use the MEDIA_SUPPORT
=y or =m to select if the media subsystem core will be either
builtin or module, simplifying the building system logic.
Also, fix the tuners configuration, by enabling them only if
a tuner is required. So, if just webcam/grabbers support is
selected, no tuner option will be selected. Also, if only digital
TV is selected, no analog tuner support is selected.
That removes the need of using EXPERT customise options, when
analog TV is not selected.
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
2012-05-28 15:17:48 +04:00
depends on MEDIA_SUPPORT && I2C
2012-08-20 21:48:02 +04:00
default m if !MEDIA_SUBDRV_AUTOSELECT
2008-04-30 04:38:44 +04:00
help
A DVB-T silicon tuner module. Say Y when you want to support this tuner.
2008-04-30 04:38:46 +04:00
config MEDIA_TUNER_TDA18271
2008-04-30 04:38:44 +04:00
tristate "NXP TDA18271 silicon tuner"
[media] media: Remove VIDEO_MEDIA Kconfig option
In the past, it was possible to have either DVB or V4L2 core
as module and the other as builtin. Such config never make much
sense, and created several issues in order to make the Kconfig
dependency to work, as all drivers that depend on both (most
TV drivers) would need to be compiled as 'm'. Due to that,
the VIDEO_MEDIA config option were added.
Instead of such weird approach, let's just use the MEDIA_SUPPORT
=y or =m to select if the media subsystem core will be either
builtin or module, simplifying the building system logic.
Also, fix the tuners configuration, by enabling them only if
a tuner is required. So, if just webcam/grabbers support is
selected, no tuner option will be selected. Also, if only digital
TV is selected, no analog tuner support is selected.
That removes the need of using EXPERT customise options, when
analog TV is not selected.
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
2012-05-28 15:17:48 +04:00
depends on MEDIA_SUPPORT && I2C
2012-08-20 21:48:02 +04:00
default m if !MEDIA_SUBDRV_AUTOSELECT
2008-04-30 04:38:44 +04:00
help
A silicon tuner module. Say Y when you want to support this tuner.
2008-04-30 04:38:46 +04:00
config MEDIA_TUNER_TDA9887
2008-04-30 04:38:44 +04:00
tristate "TDA 9885/6/7 analog IF demodulator"
[media] media: Remove VIDEO_MEDIA Kconfig option
In the past, it was possible to have either DVB or V4L2 core
as module and the other as builtin. Such config never make much
sense, and created several issues in order to make the Kconfig
dependency to work, as all drivers that depend on both (most
TV drivers) would need to be compiled as 'm'. Due to that,
the VIDEO_MEDIA config option were added.
Instead of such weird approach, let's just use the MEDIA_SUPPORT
=y or =m to select if the media subsystem core will be either
builtin or module, simplifying the building system logic.
Also, fix the tuners configuration, by enabling them only if
a tuner is required. So, if just webcam/grabbers support is
selected, no tuner option will be selected. Also, if only digital
TV is selected, no analog tuner support is selected.
That removes the need of using EXPERT customise options, when
analog TV is not selected.
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
2012-05-28 15:17:48 +04:00
depends on MEDIA_SUPPORT && I2C
2012-08-20 21:48:02 +04:00
default m if !MEDIA_SUBDRV_AUTOSELECT
2008-04-30 04:38:44 +04:00
help
Say Y here to include support for Philips TDA9885/6/7
analog IF demodulator.
2008-04-30 04:38:46 +04:00
config MEDIA_TUNER_TEA5761
2012-09-03 17:16:34 +04:00
tristate "TEA 5761 radio tuner"
[media] media: Remove VIDEO_MEDIA Kconfig option
In the past, it was possible to have either DVB or V4L2 core
as module and the other as builtin. Such config never make much
sense, and created several issues in order to make the Kconfig
dependency to work, as all drivers that depend on both (most
TV drivers) would need to be compiled as 'm'. Due to that,
the VIDEO_MEDIA config option were added.
Instead of such weird approach, let's just use the MEDIA_SUPPORT
=y or =m to select if the media subsystem core will be either
builtin or module, simplifying the building system logic.
Also, fix the tuners configuration, by enabling them only if
a tuner is required. So, if just webcam/grabbers support is
selected, no tuner option will be selected. Also, if only digital
TV is selected, no analog tuner support is selected.
That removes the need of using EXPERT customise options, when
analog TV is not selected.
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
2012-05-28 15:17:48 +04:00
depends on MEDIA_SUPPORT && I2C
2012-08-20 21:48:02 +04:00
default m if !MEDIA_SUBDRV_AUTOSELECT
2008-04-30 04:38:44 +04:00
help
Say Y here to include support for the Philips TEA5761 radio tuner.
2008-04-30 04:38:46 +04:00
config MEDIA_TUNER_TEA5767
2008-04-30 04:38:44 +04:00
tristate "TEA 5767 radio tuner"
[media] media: Remove VIDEO_MEDIA Kconfig option
In the past, it was possible to have either DVB or V4L2 core
as module and the other as builtin. Such config never make much
sense, and created several issues in order to make the Kconfig
dependency to work, as all drivers that depend on both (most
TV drivers) would need to be compiled as 'm'. Due to that,
the VIDEO_MEDIA config option were added.
Instead of such weird approach, let's just use the MEDIA_SUPPORT
=y or =m to select if the media subsystem core will be either
builtin or module, simplifying the building system logic.
Also, fix the tuners configuration, by enabling them only if
a tuner is required. So, if just webcam/grabbers support is
selected, no tuner option will be selected. Also, if only digital
TV is selected, no analog tuner support is selected.
That removes the need of using EXPERT customise options, when
analog TV is not selected.
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
2012-05-28 15:17:48 +04:00
depends on MEDIA_SUPPORT && I2C
2012-08-20 21:48:02 +04:00
default m if !MEDIA_SUBDRV_AUTOSELECT
2008-04-30 04:38:44 +04:00
help
Say Y here to include support for the Philips TEA5767 radio tuner.
2014-07-12 15:53:22 +04:00
config MEDIA_TUNER_MSI001
tristate "Mirics MSi001"
depends on MEDIA_SUPPORT && SPI && VIDEO_V4L2
2014-07-25 13:17:59 +04:00
default m if !MEDIA_SUBDRV_AUTOSELECT
2014-07-12 15:53:22 +04:00
help
Mirics MSi001 silicon tuner driver.
2008-04-30 04:38:46 +04:00
config MEDIA_TUNER_MT20XX
2008-04-30 04:38:44 +04:00
tristate "Microtune 2032 / 2050 tuners"
[media] media: Remove VIDEO_MEDIA Kconfig option
In the past, it was possible to have either DVB or V4L2 core
as module and the other as builtin. Such config never make much
sense, and created several issues in order to make the Kconfig
dependency to work, as all drivers that depend on both (most
TV drivers) would need to be compiled as 'm'. Due to that,
the VIDEO_MEDIA config option were added.
Instead of such weird approach, let's just use the MEDIA_SUPPORT
=y or =m to select if the media subsystem core will be either
builtin or module, simplifying the building system logic.
Also, fix the tuners configuration, by enabling them only if
a tuner is required. So, if just webcam/grabbers support is
selected, no tuner option will be selected. Also, if only digital
TV is selected, no analog tuner support is selected.
That removes the need of using EXPERT customise options, when
analog TV is not selected.
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
2012-05-28 15:17:48 +04:00
depends on MEDIA_SUPPORT && I2C
2012-08-20 21:48:02 +04:00
default m if !MEDIA_SUBDRV_AUTOSELECT
2008-04-30 04:38:44 +04:00
help
Say Y here to include support for the MT2032 / MT2050 tuner.
2008-04-30 04:38:46 +04:00
config MEDIA_TUNER_MT2060
2008-04-30 04:38:45 +04:00
tristate "Microtune MT2060 silicon IF tuner"
[media] media: Remove VIDEO_MEDIA Kconfig option
In the past, it was possible to have either DVB or V4L2 core
as module and the other as builtin. Such config never make much
sense, and created several issues in order to make the Kconfig
dependency to work, as all drivers that depend on both (most
TV drivers) would need to be compiled as 'm'. Due to that,
the VIDEO_MEDIA config option were added.
Instead of such weird approach, let's just use the MEDIA_SUPPORT
=y or =m to select if the media subsystem core will be either
builtin or module, simplifying the building system logic.
Also, fix the tuners configuration, by enabling them only if
a tuner is required. So, if just webcam/grabbers support is
selected, no tuner option will be selected. Also, if only digital
TV is selected, no analog tuner support is selected.
That removes the need of using EXPERT customise options, when
analog TV is not selected.
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
2012-05-28 15:17:48 +04:00
depends on MEDIA_SUPPORT && I2C
2012-08-20 21:48:02 +04:00
default m if !MEDIA_SUBDRV_AUTOSELECT
2008-04-30 04:38:45 +04:00
help
A driver for the silicon IF tuner MT2060 from Microtune.
2011-07-21 04:24:53 +04:00
config MEDIA_TUNER_MT2063
tristate "Microtune MT2063 silicon IF tuner"
[media] media: Remove VIDEO_MEDIA Kconfig option
In the past, it was possible to have either DVB or V4L2 core
as module and the other as builtin. Such config never make much
sense, and created several issues in order to make the Kconfig
dependency to work, as all drivers that depend on both (most
TV drivers) would need to be compiled as 'm'. Due to that,
the VIDEO_MEDIA config option were added.
Instead of such weird approach, let's just use the MEDIA_SUPPORT
=y or =m to select if the media subsystem core will be either
builtin or module, simplifying the building system logic.
Also, fix the tuners configuration, by enabling them only if
a tuner is required. So, if just webcam/grabbers support is
selected, no tuner option will be selected. Also, if only digital
TV is selected, no analog tuner support is selected.
That removes the need of using EXPERT customise options, when
analog TV is not selected.
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
2012-05-28 15:17:48 +04:00
depends on MEDIA_SUPPORT && I2C
2012-08-20 21:48:02 +04:00
default m if !MEDIA_SUBDRV_AUTOSELECT
2011-07-21 04:24:53 +04:00
help
A driver for the silicon IF tuner MT2063 from Microtune.
2008-04-30 04:38:46 +04:00
config MEDIA_TUNER_MT2266
2008-04-30 04:38:45 +04:00
tristate "Microtune MT2266 silicon tuner"
[media] media: Remove VIDEO_MEDIA Kconfig option
In the past, it was possible to have either DVB or V4L2 core
as module and the other as builtin. Such config never make much
sense, and created several issues in order to make the Kconfig
dependency to work, as all drivers that depend on both (most
TV drivers) would need to be compiled as 'm'. Due to that,
the VIDEO_MEDIA config option were added.
Instead of such weird approach, let's just use the MEDIA_SUPPORT
=y or =m to select if the media subsystem core will be either
builtin or module, simplifying the building system logic.
Also, fix the tuners configuration, by enabling them only if
a tuner is required. So, if just webcam/grabbers support is
selected, no tuner option will be selected. Also, if only digital
TV is selected, no analog tuner support is selected.
That removes the need of using EXPERT customise options, when
analog TV is not selected.
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
2012-05-28 15:17:48 +04:00
depends on MEDIA_SUPPORT && I2C
2012-08-20 21:48:02 +04:00
default m if !MEDIA_SUBDRV_AUTOSELECT
2008-04-30 04:38:45 +04:00
help
A driver for the silicon baseband tuner MT2266 from Microtune.
2008-04-30 04:38:46 +04:00
config MEDIA_TUNER_MT2131
2008-04-30 04:38:45 +04:00
tristate "Microtune MT2131 silicon tuner"
[media] media: Remove VIDEO_MEDIA Kconfig option
In the past, it was possible to have either DVB or V4L2 core
as module and the other as builtin. Such config never make much
sense, and created several issues in order to make the Kconfig
dependency to work, as all drivers that depend on both (most
TV drivers) would need to be compiled as 'm'. Due to that,
the VIDEO_MEDIA config option were added.
Instead of such weird approach, let's just use the MEDIA_SUPPORT
=y or =m to select if the media subsystem core will be either
builtin or module, simplifying the building system logic.
Also, fix the tuners configuration, by enabling them only if
a tuner is required. So, if just webcam/grabbers support is
selected, no tuner option will be selected. Also, if only digital
TV is selected, no analog tuner support is selected.
That removes the need of using EXPERT customise options, when
analog TV is not selected.
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
2012-05-28 15:17:48 +04:00
depends on MEDIA_SUPPORT && I2C
2012-08-20 21:48:02 +04:00
default m if !MEDIA_SUBDRV_AUTOSELECT
2008-04-30 04:38:45 +04:00
help
A driver for the silicon baseband tuner MT2131 from Microtune.
2008-04-30 04:38:46 +04:00
config MEDIA_TUNER_QT1010
2008-04-30 04:38:45 +04:00
tristate "Quantek QT1010 silicon tuner"
[media] media: Remove VIDEO_MEDIA Kconfig option
In the past, it was possible to have either DVB or V4L2 core
as module and the other as builtin. Such config never make much
sense, and created several issues in order to make the Kconfig
dependency to work, as all drivers that depend on both (most
TV drivers) would need to be compiled as 'm'. Due to that,
the VIDEO_MEDIA config option were added.
Instead of such weird approach, let's just use the MEDIA_SUPPORT
=y or =m to select if the media subsystem core will be either
builtin or module, simplifying the building system logic.
Also, fix the tuners configuration, by enabling them only if
a tuner is required. So, if just webcam/grabbers support is
selected, no tuner option will be selected. Also, if only digital
TV is selected, no analog tuner support is selected.
That removes the need of using EXPERT customise options, when
analog TV is not selected.
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
2012-05-28 15:17:48 +04:00
depends on MEDIA_SUPPORT && I2C
2012-08-20 21:48:02 +04:00
default m if !MEDIA_SUBDRV_AUTOSELECT
2008-04-30 04:38:45 +04:00
help
A driver for the silicon tuner QT1010 from Quantek.
2008-04-30 04:38:46 +04:00
config MEDIA_TUNER_XC2028
2008-04-30 04:38:44 +04:00
tristate "XCeive xc2028/xc3028 tuners"
[media] media: Remove VIDEO_MEDIA Kconfig option
In the past, it was possible to have either DVB or V4L2 core
as module and the other as builtin. Such config never make much
sense, and created several issues in order to make the Kconfig
dependency to work, as all drivers that depend on both (most
TV drivers) would need to be compiled as 'm'. Due to that,
the VIDEO_MEDIA config option were added.
Instead of such weird approach, let's just use the MEDIA_SUPPORT
=y or =m to select if the media subsystem core will be either
builtin or module, simplifying the building system logic.
Also, fix the tuners configuration, by enabling them only if
a tuner is required. So, if just webcam/grabbers support is
selected, no tuner option will be selected. Also, if only digital
TV is selected, no analog tuner support is selected.
That removes the need of using EXPERT customise options, when
analog TV is not selected.
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
2012-05-28 15:17:48 +04:00
depends on MEDIA_SUPPORT && I2C
2012-08-20 21:48:02 +04:00
default m if !MEDIA_SUBDRV_AUTOSELECT
2008-04-30 04:38:44 +04:00
help
Say Y here to include support for the xc2028/xc3028 tuners.
2008-04-30 04:38:46 +04:00
config MEDIA_TUNER_XC5000
2008-04-30 04:38:44 +04:00
tristate "Xceive XC5000 silicon tuner"
[media] media: Remove VIDEO_MEDIA Kconfig option
In the past, it was possible to have either DVB or V4L2 core
as module and the other as builtin. Such config never make much
sense, and created several issues in order to make the Kconfig
dependency to work, as all drivers that depend on both (most
TV drivers) would need to be compiled as 'm'. Due to that,
the VIDEO_MEDIA config option were added.
Instead of such weird approach, let's just use the MEDIA_SUPPORT
=y or =m to select if the media subsystem core will be either
builtin or module, simplifying the building system logic.
Also, fix the tuners configuration, by enabling them only if
a tuner is required. So, if just webcam/grabbers support is
selected, no tuner option will be selected. Also, if only digital
TV is selected, no analog tuner support is selected.
That removes the need of using EXPERT customise options, when
analog TV is not selected.
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
2012-05-28 15:17:48 +04:00
depends on MEDIA_SUPPORT && I2C
2012-08-20 21:48:02 +04:00
default m if !MEDIA_SUBDRV_AUTOSELECT
2008-04-30 04:38:44 +04:00
help
A driver for the silicon tuner XC5000 from Xceive.
2009-01-26 13:12:25 +03:00
This device is only used inside a SiP called together with a
2008-04-30 04:38:44 +04:00
demodulator for now.
2009-06-24 05:34:06 +04:00
config MEDIA_TUNER_XC4000
tristate "Xceive XC4000 silicon tuner"
[media] media: Remove VIDEO_MEDIA Kconfig option
In the past, it was possible to have either DVB or V4L2 core
as module and the other as builtin. Such config never make much
sense, and created several issues in order to make the Kconfig
dependency to work, as all drivers that depend on both (most
TV drivers) would need to be compiled as 'm'. Due to that,
the VIDEO_MEDIA config option were added.
Instead of such weird approach, let's just use the MEDIA_SUPPORT
=y or =m to select if the media subsystem core will be either
builtin or module, simplifying the building system logic.
Also, fix the tuners configuration, by enabling them only if
a tuner is required. So, if just webcam/grabbers support is
selected, no tuner option will be selected. Also, if only digital
TV is selected, no analog tuner support is selected.
That removes the need of using EXPERT customise options, when
analog TV is not selected.
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
2012-05-28 15:17:48 +04:00
depends on MEDIA_SUPPORT && I2C
2012-08-20 21:48:02 +04:00
default m if !MEDIA_SUBDRV_AUTOSELECT
2009-06-24 05:34:06 +04:00
help
A driver for the silicon tuner XC4000 from Xceive.
This device is only used inside a SiP called together with a
demodulator for now.
2008-05-08 19:14:40 +04:00
config MEDIA_TUNER_MXL5005S
tristate "MaxLinear MSL5005S silicon tuner"
[media] media: Remove VIDEO_MEDIA Kconfig option
In the past, it was possible to have either DVB or V4L2 core
as module and the other as builtin. Such config never make much
sense, and created several issues in order to make the Kconfig
dependency to work, as all drivers that depend on both (most
TV drivers) would need to be compiled as 'm'. Due to that,
the VIDEO_MEDIA config option were added.
Instead of such weird approach, let's just use the MEDIA_SUPPORT
=y or =m to select if the media subsystem core will be either
builtin or module, simplifying the building system logic.
Also, fix the tuners configuration, by enabling them only if
a tuner is required. So, if just webcam/grabbers support is
selected, no tuner option will be selected. Also, if only digital
TV is selected, no analog tuner support is selected.
That removes the need of using EXPERT customise options, when
analog TV is not selected.
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
2012-05-28 15:17:48 +04:00
depends on MEDIA_SUPPORT && I2C
2012-08-20 21:48:02 +04:00
default m if !MEDIA_SUBDRV_AUTOSELECT
2008-05-08 19:14:40 +04:00
help
A driver for the silicon tuner MXL5005S from MaxLinear.
2008-07-08 01:20:58 +04:00
config MEDIA_TUNER_MXL5007T
tristate "MaxLinear MxL5007T silicon tuner"
[media] media: Remove VIDEO_MEDIA Kconfig option
In the past, it was possible to have either DVB or V4L2 core
as module and the other as builtin. Such config never make much
sense, and created several issues in order to make the Kconfig
dependency to work, as all drivers that depend on both (most
TV drivers) would need to be compiled as 'm'. Due to that,
the VIDEO_MEDIA config option were added.
Instead of such weird approach, let's just use the MEDIA_SUPPORT
=y or =m to select if the media subsystem core will be either
builtin or module, simplifying the building system logic.
Also, fix the tuners configuration, by enabling them only if
a tuner is required. So, if just webcam/grabbers support is
selected, no tuner option will be selected. Also, if only digital
TV is selected, no analog tuner support is selected.
That removes the need of using EXPERT customise options, when
analog TV is not selected.
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
2012-05-28 15:17:48 +04:00
depends on MEDIA_SUPPORT && I2C
2012-08-20 21:48:02 +04:00
default m if !MEDIA_SUBDRV_AUTOSELECT
2008-07-08 01:20:58 +04:00
help
A driver for the silicon tuner MxL5007T from MaxLinear.
2009-02-02 20:50:09 +03:00
config MEDIA_TUNER_MC44S803
tristate "Freescale MC44S803 Low Power CMOS Broadband tuners"
[media] media: Remove VIDEO_MEDIA Kconfig option
In the past, it was possible to have either DVB or V4L2 core
as module and the other as builtin. Such config never make much
sense, and created several issues in order to make the Kconfig
dependency to work, as all drivers that depend on both (most
TV drivers) would need to be compiled as 'm'. Due to that,
the VIDEO_MEDIA config option were added.
Instead of such weird approach, let's just use the MEDIA_SUPPORT
=y or =m to select if the media subsystem core will be either
builtin or module, simplifying the building system logic.
Also, fix the tuners configuration, by enabling them only if
a tuner is required. So, if just webcam/grabbers support is
selected, no tuner option will be selected. Also, if only digital
TV is selected, no analog tuner support is selected.
That removes the need of using EXPERT customise options, when
analog TV is not selected.
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
2012-05-28 15:17:48 +04:00
depends on MEDIA_SUPPORT && I2C
2012-08-20 21:48:02 +04:00
default m if !MEDIA_SUBDRV_AUTOSELECT
2009-02-02 20:50:09 +03:00
help
Say Y here to support the Freescale MC44S803 based tuners
2009-10-26 12:42:34 +03:00
config MEDIA_TUNER_MAX2165
tristate "Maxim MAX2165 silicon tuner"
[media] media: Remove VIDEO_MEDIA Kconfig option
In the past, it was possible to have either DVB or V4L2 core
as module and the other as builtin. Such config never make much
sense, and created several issues in order to make the Kconfig
dependency to work, as all drivers that depend on both (most
TV drivers) would need to be compiled as 'm'. Due to that,
the VIDEO_MEDIA config option were added.
Instead of such weird approach, let's just use the MEDIA_SUPPORT
=y or =m to select if the media subsystem core will be either
builtin or module, simplifying the building system logic.
Also, fix the tuners configuration, by enabling them only if
a tuner is required. So, if just webcam/grabbers support is
selected, no tuner option will be selected. Also, if only digital
TV is selected, no analog tuner support is selected.
That removes the need of using EXPERT customise options, when
analog TV is not selected.
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
2012-05-28 15:17:48 +04:00
depends on MEDIA_SUPPORT && I2C
2012-08-20 21:48:02 +04:00
default m if !MEDIA_SUBDRV_AUTOSELECT
2009-10-26 12:42:34 +03:00
help
A driver for the silicon tuner MAX2165 from Maxim.
2010-08-13 10:41:02 +04:00
config MEDIA_TUNER_TDA18218
tristate "NXP TDA18218 silicon tuner"
[media] media: Remove VIDEO_MEDIA Kconfig option
In the past, it was possible to have either DVB or V4L2 core
as module and the other as builtin. Such config never make much
sense, and created several issues in order to make the Kconfig
dependency to work, as all drivers that depend on both (most
TV drivers) would need to be compiled as 'm'. Due to that,
the VIDEO_MEDIA config option were added.
Instead of such weird approach, let's just use the MEDIA_SUPPORT
=y or =m to select if the media subsystem core will be either
builtin or module, simplifying the building system logic.
Also, fix the tuners configuration, by enabling them only if
a tuner is required. So, if just webcam/grabbers support is
selected, no tuner option will be selected. Also, if only digital
TV is selected, no analog tuner support is selected.
That removes the need of using EXPERT customise options, when
analog TV is not selected.
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
2012-05-28 15:17:48 +04:00
depends on MEDIA_SUPPORT && I2C
2012-08-20 21:48:02 +04:00
default m if !MEDIA_SUBDRV_AUTOSELECT
2010-08-13 10:41:02 +04:00
help
NXP TDA18218 silicon tuner driver.
2011-04-10 03:07:30 +04:00
2012-04-02 19:14:32 +04:00
config MEDIA_TUNER_FC0011
tristate "Fitipower FC0011 silicon tuner"
[media] media: Remove VIDEO_MEDIA Kconfig option
In the past, it was possible to have either DVB or V4L2 core
as module and the other as builtin. Such config never make much
sense, and created several issues in order to make the Kconfig
dependency to work, as all drivers that depend on both (most
TV drivers) would need to be compiled as 'm'. Due to that,
the VIDEO_MEDIA config option were added.
Instead of such weird approach, let's just use the MEDIA_SUPPORT
=y or =m to select if the media subsystem core will be either
builtin or module, simplifying the building system logic.
Also, fix the tuners configuration, by enabling them only if
a tuner is required. So, if just webcam/grabbers support is
selected, no tuner option will be selected. Also, if only digital
TV is selected, no analog tuner support is selected.
That removes the need of using EXPERT customise options, when
analog TV is not selected.
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
2012-05-28 15:17:48 +04:00
depends on MEDIA_SUPPORT && I2C
2012-08-20 21:48:02 +04:00
default m if !MEDIA_SUBDRV_AUTOSELECT
2012-04-02 19:14:32 +04:00
help
Fitipower FC0011 silicon tuner driver.
2012-05-06 23:56:55 +04:00
config MEDIA_TUNER_FC0012
tristate "Fitipower FC0012 silicon tuner"
[media] media: Remove VIDEO_MEDIA Kconfig option
In the past, it was possible to have either DVB or V4L2 core
as module and the other as builtin. Such config never make much
sense, and created several issues in order to make the Kconfig
dependency to work, as all drivers that depend on both (most
TV drivers) would need to be compiled as 'm'. Due to that,
the VIDEO_MEDIA config option were added.
Instead of such weird approach, let's just use the MEDIA_SUPPORT
=y or =m to select if the media subsystem core will be either
builtin or module, simplifying the building system logic.
Also, fix the tuners configuration, by enabling them only if
a tuner is required. So, if just webcam/grabbers support is
selected, no tuner option will be selected. Also, if only digital
TV is selected, no analog tuner support is selected.
That removes the need of using EXPERT customise options, when
analog TV is not selected.
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
2012-05-28 15:17:48 +04:00
depends on MEDIA_SUPPORT && I2C
2012-08-20 21:48:02 +04:00
default m if !MEDIA_SUBDRV_AUTOSELECT
2012-05-06 23:56:55 +04:00
help
Fitipower FC0012 silicon tuner driver.
2012-05-06 23:57:02 +04:00
config MEDIA_TUNER_FC0013
tristate "Fitipower FC0013 silicon tuner"
[media] media: Remove VIDEO_MEDIA Kconfig option
In the past, it was possible to have either DVB or V4L2 core
as module and the other as builtin. Such config never make much
sense, and created several issues in order to make the Kconfig
dependency to work, as all drivers that depend on both (most
TV drivers) would need to be compiled as 'm'. Due to that,
the VIDEO_MEDIA config option were added.
Instead of such weird approach, let's just use the MEDIA_SUPPORT
=y or =m to select if the media subsystem core will be either
builtin or module, simplifying the building system logic.
Also, fix the tuners configuration, by enabling them only if
a tuner is required. So, if just webcam/grabbers support is
selected, no tuner option will be selected. Also, if only digital
TV is selected, no analog tuner support is selected.
That removes the need of using EXPERT customise options, when
analog TV is not selected.
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
2012-05-28 15:17:48 +04:00
depends on MEDIA_SUPPORT && I2C
2012-08-20 21:48:02 +04:00
default m if !MEDIA_SUBDRV_AUTOSELECT
2012-05-06 23:57:02 +04:00
help
Fitipower FC0013 silicon tuner driver.
2011-04-10 03:07:30 +04:00
config MEDIA_TUNER_TDA18212
tristate "NXP TDA18212 silicon tuner"
[media] media: Remove VIDEO_MEDIA Kconfig option
In the past, it was possible to have either DVB or V4L2 core
as module and the other as builtin. Such config never make much
sense, and created several issues in order to make the Kconfig
dependency to work, as all drivers that depend on both (most
TV drivers) would need to be compiled as 'm'. Due to that,
the VIDEO_MEDIA config option were added.
Instead of such weird approach, let's just use the MEDIA_SUPPORT
=y or =m to select if the media subsystem core will be either
builtin or module, simplifying the building system logic.
Also, fix the tuners configuration, by enabling them only if
a tuner is required. So, if just webcam/grabbers support is
selected, no tuner option will be selected. Also, if only digital
TV is selected, no analog tuner support is selected.
That removes the need of using EXPERT customise options, when
analog TV is not selected.
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
2012-05-28 15:17:48 +04:00
depends on MEDIA_SUPPORT && I2C
2014-08-04 08:00:46 +04:00
select REGMAP_I2C
2012-08-20 21:48:02 +04:00
default m if !MEDIA_SUBDRV_AUTOSELECT
2011-04-10 03:07:30 +04:00
help
NXP TDA18212 silicon tuner driver.
2012-09-02 04:09:21 +04:00
config MEDIA_TUNER_E4000
tristate "Elonics E4000 silicon tuner"
2014-03-17 01:13:05 +04:00
depends on MEDIA_SUPPORT && I2C
2014-02-08 13:20:35 +04:00
select REGMAP_I2C
2012-09-02 04:09:21 +04:00
default m if !MEDIA_SUBDRV_AUTOSELECT
help
Elonics E4000 silicon tuner driver.
2012-09-09 05:07:24 +04:00
config MEDIA_TUNER_FC2580
tristate "FCI FC2580 silicon tuner"
depends on MEDIA_SUPPORT && I2C
2015-04-15 19:51:29 +03:00
select REGMAP_I2C
2012-09-09 05:07:24 +04:00
default m if !MEDIA_SUBDRV_AUTOSELECT
help
FCI FC2580 silicon tuner driver.
2014-10-30 11:01:51 +03:00
config MEDIA_TUNER_M88RS6000T
tristate "Montage M88RS6000 internal tuner"
depends on MEDIA_SUPPORT && I2C
select REGMAP_I2C
default m if !MEDIA_SUBDRV_AUTOSELECT
help
Montage M88RS6000 internal tuner.
2012-03-30 13:37:26 +04:00
config MEDIA_TUNER_TUA9001
2015-04-16 02:26:06 +03:00
tristate "Infineon TUA9001 silicon tuner"
[media] media: Remove VIDEO_MEDIA Kconfig option
In the past, it was possible to have either DVB or V4L2 core
as module and the other as builtin. Such config never make much
sense, and created several issues in order to make the Kconfig
dependency to work, as all drivers that depend on both (most
TV drivers) would need to be compiled as 'm'. Due to that,
the VIDEO_MEDIA config option were added.
Instead of such weird approach, let's just use the MEDIA_SUPPORT
=y or =m to select if the media subsystem core will be either
builtin or module, simplifying the building system logic.
Also, fix the tuners configuration, by enabling them only if
a tuner is required. So, if just webcam/grabbers support is
selected, no tuner option will be selected. Also, if only digital
TV is selected, no analog tuner support is selected.
That removes the need of using EXPERT customise options, when
analog TV is not selected.
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
2012-05-28 15:17:48 +04:00
depends on MEDIA_SUPPORT && I2C
2015-04-16 02:38:43 +03:00
select REGMAP_I2C
2012-08-20 21:48:02 +04:00
default m if !MEDIA_SUBDRV_AUTOSELECT
2012-03-30 13:37:26 +04:00
help
Infineon TUA 9001 silicon tuner driver.
2013-01-07 16:37:30 +04:00
2014-04-11 04:58:10 +04:00
config MEDIA_TUNER_SI2157
tristate "Silicon Labs Si2157 silicon tuner"
depends on MEDIA_SUPPORT && I2C
default m if !MEDIA_SUBDRV_AUTOSELECT
help
Silicon Labs Si2157 silicon tuner driver.
2013-01-07 16:37:30 +04:00
config MEDIA_TUNER_IT913X
tristate "ITE Tech IT913x silicon tuner"
depends on MEDIA_SUPPORT && I2C
2014-08-27 04:45:33 +04:00
select REGMAP_I2C
2013-01-07 16:37:30 +04:00
default m if !MEDIA_SUBDRV_AUTOSELECT
help
ITE Tech IT913x silicon tuner driver.
2013-04-05 21:35:18 +04:00
config MEDIA_TUNER_R820T
tristate "Rafael Micro R820T silicon tuner"
depends on MEDIA_SUPPORT && I2C
default m if !MEDIA_SUBDRV_AUTOSELECT
2015-04-10 23:22:08 +03:00
select BITREVERSE
2013-04-05 21:35:18 +04:00
help
Rafael Micro R820T silicon tuner driver.
2014-09-08 21:20:40 +04:00
config MEDIA_TUNER_MXL301RF
tristate "MaxLinear MxL301RF tuner"
depends on MEDIA_SUPPORT && I2C
default m if !MEDIA_SUBDRV_AUTOSELECT
help
MaxLinear MxL301RF OFDM tuner driver.
2014-09-08 21:20:41 +04:00
config MEDIA_TUNER_QM1D1C0042
tristate "Sharp QM1D1C0042 tuner"
depends on MEDIA_SUPPORT && I2C
default m if !MEDIA_SUBDRV_AUTOSELECT
help
Sharp QM1D1C0042 trellis coded 8PSK tuner driver.
2018-04-08 20:39:50 +03:00
config MEDIA_TUNER_QM1D1B0004
tristate "Sharp QM1D1B0004 tuner"
depends on MEDIA_SUPPORT && I2C
default m if !MEDIA_SUBDRV_AUTOSELECT
help
Sharp QM1D1B0004 ISDB-S tuner driver.
2010-11-09 20:29:05 +03:00
endmenu