2008-04-30 00:38:46 +00:00
|
|
|
config MEDIA_ATTACH
|
2008-04-30 06:19:33 +00:00
|
|
|
bool "Load and attach frontend and tuner driver modules as needed"
|
[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 11:17:48 +00:00
|
|
|
depends on MEDIA_ANALOG_TV_SUPPORT || MEDIA_DIGITAL_TV_SUPPORT || MEDIA_RADIO_SUPPORT
|
2008-04-30 00:38:44 +00:00
|
|
|
depends on MODULES
|
2012-05-28 11:17:47 +00:00
|
|
|
default y if !EXPERT
|
2008-04-30 00:38:44 +00:00
|
|
|
help
|
|
|
|
Remove the static dependency of DVB card drivers on all
|
|
|
|
frontend modules for all possible card variants. Instead,
|
|
|
|
allow the card drivers to only load the frontend modules
|
2008-04-30 06:19:33 +00:00
|
|
|
they require.
|
|
|
|
|
|
|
|
Also, tuner module will automatically load a tuner driver
|
|
|
|
when needed, for analog mode.
|
|
|
|
|
|
|
|
This saves several KBytes of memory.
|
2008-04-30 00:38:44 +00:00
|
|
|
|
|
|
|
Note: You will need module-init-tools v3.2 or later for this feature.
|
|
|
|
|
|
|
|
If unsure say Y.
|
|
|
|
|
2012-08-20 17:48:02 +00:00
|
|
|
# Analog TV tuners, auto-loaded via tuner.ko
|
2008-04-30 00:38:46 +00:00
|
|
|
config MEDIA_TUNER
|
2008-04-30 00:38:44 +00:00
|
|
|
tristate
|
[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 11:17:48 +00:00
|
|
|
depends on (MEDIA_ANALOG_TV_SUPPORT || MEDIA_RADIO_SUPPORT) && I2C
|
|
|
|
default y
|
2012-08-20 17:48:02 +00: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 13:16:34 +00:00
|
|
|
select MEDIA_TUNER_TEA5761 if MEDIA_SUBDRV_AUTOSELECT && MEDIA_RADIO_SUPPORT
|
2012-08-20 17:48:02 +00: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 00:38:44 +00:00
|
|
|
|
2010-11-09 17:29:05 +00:00
|
|
|
menu "Customize TV tuners"
|
2012-08-20 17:48:02 +00:00
|
|
|
visible if !MEDIA_SUBDRV_AUTOSELECT
|
[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 11:17:48 +00:00
|
|
|
depends on MEDIA_ANALOG_TV_SUPPORT || MEDIA_DIGITAL_TV_SUPPORT || MEDIA_RADIO_SUPPORT
|
2008-04-30 00:38:44 +00:00
|
|
|
|
2008-04-30 00:38:46 +00:00
|
|
|
config MEDIA_TUNER_SIMPLE
|
2008-04-30 00:38:44 +00: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 11:17:48 +00:00
|
|
|
depends on MEDIA_SUPPORT && I2C
|
2008-04-30 00:38:46 +00:00
|
|
|
select MEDIA_TUNER_TDA9887
|
2012-08-20 17:48:02 +00:00
|
|
|
default m if !MEDIA_SUBDRV_AUTOSELECT
|
2008-04-30 00:38:44 +00:00
|
|
|
help
|
|
|
|
Say Y here to include support for various simple tuners.
|
|
|
|
|
2008-04-30 00:38:46 +00:00
|
|
|
config MEDIA_TUNER_TDA8290
|
2008-04-30 00:38:44 +00: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 11:17:48 +00:00
|
|
|
depends on MEDIA_SUPPORT && I2C
|
2008-04-30 00:38:46 +00:00
|
|
|
select MEDIA_TUNER_TDA827X
|
|
|
|
select MEDIA_TUNER_TDA18271
|
2012-08-20 17:48:02 +00:00
|
|
|
default m if !MEDIA_SUBDRV_AUTOSELECT
|
2008-04-30 00:38:44 +00:00
|
|
|
help
|
|
|
|
Say Y here to include support for Philips TDA8290+8275(a) tuner.
|
|
|
|
|
2008-04-30 00:38:46 +00:00
|
|
|
config MEDIA_TUNER_TDA827X
|
2008-04-30 00:38:44 +00: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 11:17:48 +00:00
|
|
|
depends on MEDIA_SUPPORT && I2C
|
2012-08-20 17:48:02 +00:00
|
|
|
default m if !MEDIA_SUBDRV_AUTOSELECT
|
2008-04-30 00:38:44 +00:00
|
|
|
help
|
|
|
|
A DVB-T silicon tuner module. Say Y when you want to support this tuner.
|
|
|
|
|
2008-04-30 00:38:46 +00:00
|
|
|
config MEDIA_TUNER_TDA18271
|
2008-04-30 00:38:44 +00: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 11:17:48 +00:00
|
|
|
depends on MEDIA_SUPPORT && I2C
|
2012-08-20 17:48:02 +00:00
|
|
|
default m if !MEDIA_SUBDRV_AUTOSELECT
|
2008-04-30 00:38:44 +00:00
|
|
|
help
|
|
|
|
A silicon tuner module. Say Y when you want to support this tuner.
|
|
|
|
|
2008-04-30 00:38:46 +00:00
|
|
|
config MEDIA_TUNER_TDA9887
|
2008-04-30 00:38:44 +00: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 11:17:48 +00:00
|
|
|
depends on MEDIA_SUPPORT && I2C
|
2012-08-20 17:48:02 +00:00
|
|
|
default m if !MEDIA_SUBDRV_AUTOSELECT
|
2008-04-30 00:38:44 +00:00
|
|
|
help
|
|
|
|
Say Y here to include support for Philips TDA9885/6/7
|
|
|
|
analog IF demodulator.
|
|
|
|
|
2008-04-30 00:38:46 +00:00
|
|
|
config MEDIA_TUNER_TEA5761
|
2012-09-03 13:16:34 +00: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 11:17:48 +00:00
|
|
|
depends on MEDIA_SUPPORT && I2C
|
2012-08-20 17:48:02 +00:00
|
|
|
default m if !MEDIA_SUBDRV_AUTOSELECT
|
2008-04-30 00:38:44 +00:00
|
|
|
help
|
|
|
|
Say Y here to include support for the Philips TEA5761 radio tuner.
|
|
|
|
|
2008-04-30 00:38:46 +00:00
|
|
|
config MEDIA_TUNER_TEA5767
|
2008-04-30 00:38:44 +00: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 11:17:48 +00:00
|
|
|
depends on MEDIA_SUPPORT && I2C
|
2012-08-20 17:48:02 +00:00
|
|
|
default m if !MEDIA_SUBDRV_AUTOSELECT
|
2008-04-30 00:38:44 +00:00
|
|
|
help
|
|
|
|
Say Y here to include support for the Philips TEA5767 radio tuner.
|
|
|
|
|
2008-04-30 00:38:46 +00:00
|
|
|
config MEDIA_TUNER_MT20XX
|
2008-04-30 00:38:44 +00: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 11:17:48 +00:00
|
|
|
depends on MEDIA_SUPPORT && I2C
|
2012-08-20 17:48:02 +00:00
|
|
|
default m if !MEDIA_SUBDRV_AUTOSELECT
|
2008-04-30 00:38:44 +00:00
|
|
|
help
|
|
|
|
Say Y here to include support for the MT2032 / MT2050 tuner.
|
|
|
|
|
2008-04-30 00:38:46 +00:00
|
|
|
config MEDIA_TUNER_MT2060
|
2008-04-30 00:38:45 +00: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 11:17:48 +00:00
|
|
|
depends on MEDIA_SUPPORT && I2C
|
2012-08-20 17:48:02 +00:00
|
|
|
default m if !MEDIA_SUBDRV_AUTOSELECT
|
2008-04-30 00:38:45 +00:00
|
|
|
help
|
|
|
|
A driver for the silicon IF tuner MT2060 from Microtune.
|
|
|
|
|
2011-07-21 00:24:53 +00: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 11:17:48 +00:00
|
|
|
depends on MEDIA_SUPPORT && I2C
|
2012-08-20 17:48:02 +00:00
|
|
|
default m if !MEDIA_SUBDRV_AUTOSELECT
|
2011-07-21 00:24:53 +00:00
|
|
|
help
|
|
|
|
A driver for the silicon IF tuner MT2063 from Microtune.
|
|
|
|
|
2008-04-30 00:38:46 +00:00
|
|
|
config MEDIA_TUNER_MT2266
|
2008-04-30 00:38:45 +00: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 11:17:48 +00:00
|
|
|
depends on MEDIA_SUPPORT && I2C
|
2012-08-20 17:48:02 +00:00
|
|
|
default m if !MEDIA_SUBDRV_AUTOSELECT
|
2008-04-30 00:38:45 +00:00
|
|
|
help
|
|
|
|
A driver for the silicon baseband tuner MT2266 from Microtune.
|
|
|
|
|
2008-04-30 00:38:46 +00:00
|
|
|
config MEDIA_TUNER_MT2131
|
2008-04-30 00:38:45 +00: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 11:17:48 +00:00
|
|
|
depends on MEDIA_SUPPORT && I2C
|
2012-08-20 17:48:02 +00:00
|
|
|
default m if !MEDIA_SUBDRV_AUTOSELECT
|
2008-04-30 00:38:45 +00:00
|
|
|
help
|
|
|
|
A driver for the silicon baseband tuner MT2131 from Microtune.
|
|
|
|
|
2008-04-30 00:38:46 +00:00
|
|
|
config MEDIA_TUNER_QT1010
|
2008-04-30 00:38:45 +00: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 11:17:48 +00:00
|
|
|
depends on MEDIA_SUPPORT && I2C
|
2012-08-20 17:48:02 +00:00
|
|
|
default m if !MEDIA_SUBDRV_AUTOSELECT
|
2008-04-30 00:38:45 +00:00
|
|
|
help
|
|
|
|
A driver for the silicon tuner QT1010 from Quantek.
|
|
|
|
|
2008-04-30 00:38:46 +00:00
|
|
|
config MEDIA_TUNER_XC2028
|
2008-04-30 00:38:44 +00: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 11:17:48 +00:00
|
|
|
depends on MEDIA_SUPPORT && I2C
|
2012-08-20 17:48:02 +00:00
|
|
|
default m if !MEDIA_SUBDRV_AUTOSELECT
|
2008-04-30 00:38:44 +00:00
|
|
|
help
|
|
|
|
Say Y here to include support for the xc2028/xc3028 tuners.
|
|
|
|
|
2008-04-30 00:38:46 +00:00
|
|
|
config MEDIA_TUNER_XC5000
|
2008-04-30 00:38:44 +00: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 11:17:48 +00:00
|
|
|
depends on MEDIA_SUPPORT && I2C
|
2012-08-20 17:48:02 +00:00
|
|
|
default m if !MEDIA_SUBDRV_AUTOSELECT
|
2008-04-30 00:38:44 +00:00
|
|
|
help
|
|
|
|
A driver for the silicon tuner XC5000 from Xceive.
|
2009-01-26 10:12:25 +00:00
|
|
|
This device is only used inside a SiP called together with a
|
2008-04-30 00:38:44 +00:00
|
|
|
demodulator for now.
|
|
|
|
|
2009-06-24 01:34:06 +00: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 11:17:48 +00:00
|
|
|
depends on MEDIA_SUPPORT && I2C
|
2012-08-20 17:48:02 +00:00
|
|
|
default m if !MEDIA_SUBDRV_AUTOSELECT
|
2009-06-24 01:34:06 +00: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 15:14:40 +00: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 11:17:48 +00:00
|
|
|
depends on MEDIA_SUPPORT && I2C
|
2012-08-20 17:48:02 +00:00
|
|
|
default m if !MEDIA_SUBDRV_AUTOSELECT
|
2008-05-08 15:14:40 +00:00
|
|
|
help
|
|
|
|
A driver for the silicon tuner MXL5005S from MaxLinear.
|
|
|
|
|
2008-07-07 21:20:58 +00: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 11:17:48 +00:00
|
|
|
depends on MEDIA_SUPPORT && I2C
|
2012-08-20 17:48:02 +00:00
|
|
|
default m if !MEDIA_SUBDRV_AUTOSELECT
|
2008-07-07 21:20:58 +00:00
|
|
|
help
|
|
|
|
A driver for the silicon tuner MxL5007T from MaxLinear.
|
|
|
|
|
2009-02-02 17:50:09 +00: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 11:17:48 +00:00
|
|
|
depends on MEDIA_SUPPORT && I2C
|
2012-08-20 17:48:02 +00:00
|
|
|
default m if !MEDIA_SUBDRV_AUTOSELECT
|
2009-02-02 17:50:09 +00:00
|
|
|
help
|
|
|
|
Say Y here to support the Freescale MC44S803 based tuners
|
|
|
|
|
2009-10-26 09:42:34 +00: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 11:17:48 +00:00
|
|
|
depends on MEDIA_SUPPORT && I2C
|
2012-08-20 17:48:02 +00:00
|
|
|
default m if !MEDIA_SUBDRV_AUTOSELECT
|
2009-10-26 09:42:34 +00:00
|
|
|
help
|
|
|
|
A driver for the silicon tuner MAX2165 from Maxim.
|
|
|
|
|
2010-08-13 06:41:02 +00: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 11:17:48 +00:00
|
|
|
depends on MEDIA_SUPPORT && I2C
|
2012-08-20 17:48:02 +00:00
|
|
|
default m if !MEDIA_SUBDRV_AUTOSELECT
|
2010-08-13 06:41:02 +00:00
|
|
|
help
|
|
|
|
NXP TDA18218 silicon tuner driver.
|
2011-04-09 23:07:30 +00:00
|
|
|
|
2012-04-02 15:14:32 +00: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 11:17:48 +00:00
|
|
|
depends on MEDIA_SUPPORT && I2C
|
2012-08-20 17:48:02 +00:00
|
|
|
default m if !MEDIA_SUBDRV_AUTOSELECT
|
2012-04-02 15:14:32 +00:00
|
|
|
help
|
|
|
|
Fitipower FC0011 silicon tuner driver.
|
|
|
|
|
2012-05-06 19:56:55 +00: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 11:17:48 +00:00
|
|
|
depends on MEDIA_SUPPORT && I2C
|
2012-08-20 17:48:02 +00:00
|
|
|
default m if !MEDIA_SUBDRV_AUTOSELECT
|
2012-05-06 19:56:55 +00:00
|
|
|
help
|
|
|
|
Fitipower FC0012 silicon tuner driver.
|
|
|
|
|
2012-05-06 19:57:02 +00: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 11:17:48 +00:00
|
|
|
depends on MEDIA_SUPPORT && I2C
|
2012-08-20 17:48:02 +00:00
|
|
|
default m if !MEDIA_SUBDRV_AUTOSELECT
|
2012-05-06 19:57:02 +00:00
|
|
|
help
|
|
|
|
Fitipower FC0013 silicon tuner driver.
|
|
|
|
|
2011-04-09 23:07:30 +00: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 11:17:48 +00:00
|
|
|
depends on MEDIA_SUPPORT && I2C
|
2012-08-20 17:48:02 +00:00
|
|
|
default m if !MEDIA_SUBDRV_AUTOSELECT
|
2011-04-09 23:07:30 +00:00
|
|
|
help
|
|
|
|
NXP TDA18212 silicon tuner driver.
|
|
|
|
|
2012-09-02 00:09:21 +00:00
|
|
|
config MEDIA_TUNER_E4000
|
|
|
|
tristate "Elonics E4000 silicon tuner"
|
|
|
|
depends on MEDIA_SUPPORT && I2C
|
|
|
|
default m if !MEDIA_SUBDRV_AUTOSELECT
|
|
|
|
help
|
|
|
|
Elonics E4000 silicon tuner driver.
|
|
|
|
|
2012-09-09 01:07:24 +00:00
|
|
|
config MEDIA_TUNER_FC2580
|
|
|
|
tristate "FCI FC2580 silicon tuner"
|
|
|
|
depends on MEDIA_SUPPORT && I2C
|
|
|
|
default m if !MEDIA_SUBDRV_AUTOSELECT
|
|
|
|
help
|
|
|
|
FCI FC2580 silicon tuner driver.
|
|
|
|
|
2012-03-30 09:37:26 +00:00
|
|
|
config MEDIA_TUNER_TUA9001
|
|
|
|
tristate "Infineon TUA 9001 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 11:17:48 +00:00
|
|
|
depends on MEDIA_SUPPORT && I2C
|
2012-08-20 17:48:02 +00:00
|
|
|
default m if !MEDIA_SUBDRV_AUTOSELECT
|
2012-03-30 09:37:26 +00:00
|
|
|
help
|
|
|
|
Infineon TUA 9001 silicon tuner driver.
|
2013-01-07 12:37:30 +00:00
|
|
|
|
|
|
|
config MEDIA_TUNER_IT913X
|
|
|
|
tristate "ITE Tech IT913x silicon tuner"
|
|
|
|
depends on MEDIA_SUPPORT && I2C
|
|
|
|
default m if !MEDIA_SUBDRV_AUTOSELECT
|
|
|
|
help
|
|
|
|
ITE Tech IT913x silicon tuner driver.
|
2013-04-05 17:35:18 +00:00
|
|
|
|
|
|
|
config MEDIA_TUNER_R820T
|
|
|
|
tristate "Rafael Micro R820T silicon tuner"
|
|
|
|
depends on MEDIA_SUPPORT && I2C
|
|
|
|
default m if !MEDIA_SUBDRV_AUTOSELECT
|
|
|
|
help
|
|
|
|
Rafael Micro R820T silicon tuner driver.
|
2010-11-09 17:29:05 +00:00
|
|
|
endmenu
|