2019-05-19 20:07:45 +08:00
|
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
2012-08-21 01:48:02 +08:00
|
|
|
# Analog TV tuners, auto-loaded via tuner.ko
|
2008-04-30 08:38:46 +08:00
|
|
|
config MEDIA_TUNER
|
2008-04-30 08:38:44 +08:00
|
|
|
tristate
|
2014-07-23 01:22:01 +08: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 19:17:48 +08:00
|
|
|
default y
|
2012-08-21 01:48:02 +08: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 21:16:34 +08:00
|
|
|
select MEDIA_TUNER_TEA5761 if MEDIA_SUBDRV_AUTOSELECT && MEDIA_RADIO_SUPPORT
|
2012-08-21 01:48:02 +08: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 08:38:44 +08:00
|
|
|
|
2020-04-15 21:39:38 +08:00
|
|
|
comment "Tuner drivers auto-selected by 'Autoselect ancillary drivers'"
|
2019-07-27 21:31:29 +08:00
|
|
|
depends on MEDIA_HIDE_ANCILLARY_SUBDRV
|
|
|
|
depends on MEDIA_ANALOG_TV_SUPPORT || MEDIA_DIGITAL_TV_SUPPORT || MEDIA_RADIO_SUPPORT || MEDIA_SDR_SUPPORT
|
|
|
|
|
2010-11-10 01:29:05 +08:00
|
|
|
menu "Customize TV tuners"
|
2019-07-27 21:31:29 +08:00
|
|
|
visible if !MEDIA_HIDE_ANCILLARY_SUBDRV
|
2014-07-25 17:17:59 +08:00
|
|
|
depends on MEDIA_ANALOG_TV_SUPPORT || MEDIA_DIGITAL_TV_SUPPORT || MEDIA_RADIO_SUPPORT || MEDIA_SDR_SUPPORT
|
2008-04-30 08:38:44 +08:00
|
|
|
|
2022-03-14 18:01:05 +08:00
|
|
|
config MEDIA_TUNER_E4000
|
|
|
|
tristate "Elonics E4000 silicon tuner"
|
|
|
|
depends on MEDIA_SUPPORT && I2C && VIDEO_DEV
|
|
|
|
select REGMAP_I2C
|
2012-08-21 01:48:02 +08:00
|
|
|
default m if !MEDIA_SUBDRV_AUTOSELECT
|
2008-04-30 08:38:44 +08:00
|
|
|
help
|
2022-03-14 18:01:05 +08:00
|
|
|
Elonics E4000 silicon tuner driver.
|
2008-04-30 08:38:44 +08:00
|
|
|
|
2022-03-14 18:01:05 +08:00
|
|
|
config MEDIA_TUNER_FC0011
|
|
|
|
tristate "Fitipower FC0011 silicon tuner"
|
2017-11-23 16:24:45 +08:00
|
|
|
depends on MEDIA_SUPPORT && I2C
|
|
|
|
default m if !MEDIA_SUBDRV_AUTOSELECT
|
|
|
|
help
|
2022-03-14 18:01:05 +08:00
|
|
|
Fitipower FC0011 silicon tuner driver.
|
2017-11-23 16:24:45 +08:00
|
|
|
|
2022-03-14 18:01:05 +08: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 19:17:48 +08:00
|
|
|
depends on MEDIA_SUPPORT && I2C
|
2012-08-21 01:48:02 +08:00
|
|
|
default m if !MEDIA_SUBDRV_AUTOSELECT
|
2008-04-30 08:38:44 +08:00
|
|
|
help
|
2022-03-14 18:01:05 +08:00
|
|
|
Fitipower FC0012 silicon tuner driver.
|
2008-04-30 08:38:44 +08:00
|
|
|
|
2022-03-14 18:01:05 +08: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 19:17:48 +08:00
|
|
|
depends on MEDIA_SUPPORT && I2C
|
2012-08-21 01:48:02 +08:00
|
|
|
default m if !MEDIA_SUBDRV_AUTOSELECT
|
2008-04-30 08:38:44 +08:00
|
|
|
help
|
2022-03-14 18:01:05 +08:00
|
|
|
Fitipower FC0013 silicon tuner driver.
|
2008-04-30 08:38:44 +08:00
|
|
|
|
2022-03-14 18:01:05 +08:00
|
|
|
config MEDIA_TUNER_FC2580
|
|
|
|
tristate "FCI FC2580 silicon tuner"
|
|
|
|
depends on MEDIA_SUPPORT && I2C && VIDEO_DEV
|
|
|
|
select REGMAP_I2C
|
|
|
|
default m if !MEDIA_SUBDRV_AUTOSELECT
|
|
|
|
help
|
|
|
|
FCI FC2580 silicon tuner driver.
|
|
|
|
|
|
|
|
config MEDIA_TUNER_IT913X
|
|
|
|
tristate "ITE Tech IT913x 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 19:17:48 +08:00
|
|
|
depends on MEDIA_SUPPORT && I2C
|
2022-03-14 18:01:05 +08:00
|
|
|
select REGMAP_I2C
|
2012-08-21 01:48:02 +08:00
|
|
|
default m if !MEDIA_SUBDRV_AUTOSELECT
|
2008-04-30 08:38:44 +08:00
|
|
|
help
|
2022-03-14 18:01:05 +08:00
|
|
|
ITE Tech IT913x silicon tuner driver.
|
2008-04-30 08:38:44 +08:00
|
|
|
|
2022-03-14 18:01:05 +08:00
|
|
|
config MEDIA_TUNER_M88RS6000T
|
|
|
|
tristate "Montage M88RS6000 internal 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 19:17:48 +08:00
|
|
|
depends on MEDIA_SUPPORT && I2C
|
2022-03-14 18:01:05 +08:00
|
|
|
select REGMAP_I2C
|
2012-08-21 01:48:02 +08:00
|
|
|
default m if !MEDIA_SUBDRV_AUTOSELECT
|
2008-04-30 08:38:44 +08:00
|
|
|
help
|
2022-03-14 18:01:05 +08:00
|
|
|
Montage M88RS6000 internal tuner.
|
2008-04-30 08:38:44 +08:00
|
|
|
|
2022-03-14 18:01:05 +08: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 19:17:48 +08:00
|
|
|
depends on MEDIA_SUPPORT && I2C
|
2012-08-21 01:48:02 +08:00
|
|
|
default m if !MEDIA_SUBDRV_AUTOSELECT
|
2008-04-30 08:38:44 +08:00
|
|
|
help
|
2022-03-14 18:01:05 +08:00
|
|
|
A driver for the silicon tuner MAX2165 from Maxim.
|
2008-04-30 08:38:44 +08:00
|
|
|
|
2022-03-14 18:01:05 +08: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 19:17:48 +08:00
|
|
|
depends on MEDIA_SUPPORT && I2C
|
2012-08-21 01:48:02 +08:00
|
|
|
default m if !MEDIA_SUBDRV_AUTOSELECT
|
2008-04-30 08:38:44 +08:00
|
|
|
help
|
2022-03-14 18:01:05 +08:00
|
|
|
Say Y here to support the Freescale MC44S803 based tuners
|
2008-04-30 08:38:44 +08:00
|
|
|
|
2014-07-12 19:53:22 +08:00
|
|
|
config MEDIA_TUNER_MSI001
|
|
|
|
tristate "Mirics MSi001"
|
media: Kconfig: cleanup VIDEO_DEV dependencies
media Kconfig has two entries associated to V4L API:
VIDEO_DEV and VIDEO_V4L2.
On Kernel 2.6.x, there were two V4L APIs, each one with its own flag.
VIDEO_DEV were meant to:
1) enable Video4Linux and make its Kconfig options to appear;
2) it makes the Kernel build the V4L core.
while VIDEO_V4L2 where used to distinguish between drivers that
implement the newer API and drivers that implemented the former one.
With time, such meaning changed, specially after the removal of
all V4L version 1 drivers.
At the current implementation, VIDEO_DEV only does (1): it enables
the media options related to V4L, that now has:
menu "Video4Linux options"
visible if VIDEO_DEV
source "drivers/media/v4l2-core/Kconfig"
endmenu
but it doesn't affect anymore the V4L core drivers.
The rationale is that the V4L2 core has a "soft" dependency
at the I2C bus, and now requires to select a number of other
Kconfig options:
config VIDEO_V4L2
tristate
depends on (I2C || I2C=n) && VIDEO_DEV
select RATIONAL
select VIDEOBUF2_V4L2 if VIDEOBUF2_CORE
default (I2C || I2C=n) && VIDEO_DEV
In the past, merging them would be tricky, but it seems that it is now
possible to merge those symbols, in order to simplify V4L dependencies.
Let's keep VIDEO_DEV, as this one is used on some make *defconfig
configurations.
Suggested-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Jacopo Mondi <jacopo@jmondi.org>
Reviewed-by: Neil Armstrong <narmstrong@baylibre.com> # for meson-vdec & meson-ge2d
Acked-by: Andrzej Pietrasiewicz <andrzejtp2010@gmail.com>
Acked-by: Łukasz Stelmach <l.stelmach@samsung.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
2022-03-13 14:25:46 +08:00
|
|
|
depends on MEDIA_SUPPORT && SPI && VIDEO_DEV
|
2014-07-25 17:17:59 +08:00
|
|
|
default m if !MEDIA_SUBDRV_AUTOSELECT
|
2014-07-12 19:53:22 +08:00
|
|
|
help
|
|
|
|
Mirics MSi001 silicon tuner driver.
|
|
|
|
|
2008-04-30 08:38:46 +08:00
|
|
|
config MEDIA_TUNER_MT2060
|
2008-04-30 08:38:45 +08: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 19:17:48 +08:00
|
|
|
depends on MEDIA_SUPPORT && I2C
|
2012-08-21 01:48:02 +08:00
|
|
|
default m if !MEDIA_SUBDRV_AUTOSELECT
|
2008-04-30 08:38:45 +08:00
|
|
|
help
|
|
|
|
A driver for the silicon IF tuner MT2060 from Microtune.
|
|
|
|
|
2011-07-21 08:24:53 +08: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 19:17:48 +08:00
|
|
|
depends on MEDIA_SUPPORT && I2C
|
2012-08-21 01:48:02 +08:00
|
|
|
default m if !MEDIA_SUBDRV_AUTOSELECT
|
2011-07-21 08:24:53 +08:00
|
|
|
help
|
|
|
|
A driver for the silicon IF tuner MT2063 from Microtune.
|
|
|
|
|
2022-03-14 18:01:05 +08:00
|
|
|
config MEDIA_TUNER_MT20XX
|
|
|
|
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 19:17:48 +08:00
|
|
|
depends on MEDIA_SUPPORT && I2C
|
2012-08-21 01:48:02 +08:00
|
|
|
default m if !MEDIA_SUBDRV_AUTOSELECT
|
2008-04-30 08:38:45 +08:00
|
|
|
help
|
2022-03-14 18:01:05 +08:00
|
|
|
Say Y here to include support for the MT2032 / MT2050 tuner.
|
2008-04-30 08:38:45 +08:00
|
|
|
|
2008-04-30 08:38:46 +08:00
|
|
|
config MEDIA_TUNER_MT2131
|
2008-04-30 08:38:45 +08: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 19:17:48 +08:00
|
|
|
depends on MEDIA_SUPPORT && I2C
|
2012-08-21 01:48:02 +08:00
|
|
|
default m if !MEDIA_SUBDRV_AUTOSELECT
|
2008-04-30 08:38:45 +08:00
|
|
|
help
|
|
|
|
A driver for the silicon baseband tuner MT2131 from Microtune.
|
|
|
|
|
2022-03-14 18:01:05 +08:00
|
|
|
config MEDIA_TUNER_MT2266
|
|
|
|
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 19:17:48 +08:00
|
|
|
depends on MEDIA_SUPPORT && I2C
|
2012-08-21 01:48:02 +08:00
|
|
|
default m if !MEDIA_SUBDRV_AUTOSELECT
|
2008-04-30 08:38:44 +08:00
|
|
|
help
|
2022-03-14 18:01:05 +08:00
|
|
|
A driver for the silicon baseband tuner MT2266 from Microtune.
|
2008-04-30 08:38:44 +08:00
|
|
|
|
2022-03-14 18:01:05 +08:00
|
|
|
config MEDIA_TUNER_MXL301RF
|
|
|
|
tristate "MaxLinear MxL301RF 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 19:17:48 +08:00
|
|
|
depends on MEDIA_SUPPORT && I2C
|
2012-08-21 01:48:02 +08:00
|
|
|
default m if !MEDIA_SUBDRV_AUTOSELECT
|
2009-06-24 09:34:06 +08:00
|
|
|
help
|
2022-03-14 18:01:05 +08:00
|
|
|
MaxLinear MxL301RF OFDM tuner driver.
|
2009-06-24 09:34:06 +08:00
|
|
|
|
2008-05-08 23:14:40 +08: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 19:17:48 +08:00
|
|
|
depends on MEDIA_SUPPORT && I2C
|
2012-08-21 01:48:02 +08:00
|
|
|
default m if !MEDIA_SUBDRV_AUTOSELECT
|
2008-05-08 23:14:40 +08:00
|
|
|
help
|
|
|
|
A driver for the silicon tuner MXL5005S from MaxLinear.
|
|
|
|
|
2008-07-08 05:20:58 +08: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 19:17:48 +08:00
|
|
|
depends on MEDIA_SUPPORT && I2C
|
2012-08-21 01:48:02 +08:00
|
|
|
default m if !MEDIA_SUBDRV_AUTOSELECT
|
2008-07-08 05:20:58 +08:00
|
|
|
help
|
|
|
|
A driver for the silicon tuner MxL5007T from MaxLinear.
|
|
|
|
|
2022-03-14 18:01:05 +08:00
|
|
|
config MEDIA_TUNER_QM1D1B0004
|
|
|
|
tristate "Sharp QM1D1B0004 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 19:17:48 +08:00
|
|
|
depends on MEDIA_SUPPORT && I2C
|
2012-08-21 01:48:02 +08:00
|
|
|
default m if !MEDIA_SUBDRV_AUTOSELECT
|
2009-02-03 01:50:09 +08:00
|
|
|
help
|
2022-03-14 18:01:05 +08:00
|
|
|
Sharp QM1D1B0004 ISDB-S tuner driver.
|
2009-02-03 01:50:09 +08:00
|
|
|
|
2022-03-14 18:01:05 +08:00
|
|
|
config MEDIA_TUNER_QM1D1C0042
|
|
|
|
tristate "Sharp QM1D1C0042 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 19:17:48 +08:00
|
|
|
depends on MEDIA_SUPPORT && I2C
|
2012-08-21 01:48:02 +08:00
|
|
|
default m if !MEDIA_SUBDRV_AUTOSELECT
|
2009-10-26 17:42:34 +08:00
|
|
|
help
|
2022-03-14 18:01:05 +08:00
|
|
|
Sharp QM1D1C0042 trellis coded 8PSK tuner driver.
|
2009-10-26 17:42:34 +08:00
|
|
|
|
2022-03-14 18:01:05 +08:00
|
|
|
config MEDIA_TUNER_QT1010
|
|
|
|
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 19:17:48 +08:00
|
|
|
depends on MEDIA_SUPPORT && I2C
|
2012-08-21 01:48:02 +08:00
|
|
|
default m if !MEDIA_SUBDRV_AUTOSELECT
|
2010-08-13 14:41:02 +08:00
|
|
|
help
|
2022-03-14 18:01:05 +08:00
|
|
|
A driver for the silicon tuner QT1010 from Quantek.
|
2011-04-10 07:07:30 +08:00
|
|
|
|
2022-03-14 18:01:05 +08:00
|
|
|
config MEDIA_TUNER_R820T
|
|
|
|
tristate "Rafael Micro R820T 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 19:17:48 +08:00
|
|
|
depends on MEDIA_SUPPORT && I2C
|
2012-08-21 01:48:02 +08:00
|
|
|
default m if !MEDIA_SUBDRV_AUTOSELECT
|
2022-03-14 18:01:05 +08:00
|
|
|
select BITREVERSE
|
2012-04-02 23:14:32 +08:00
|
|
|
help
|
2022-03-14 18:01:05 +08:00
|
|
|
Rafael Micro R820T silicon tuner driver.
|
2012-04-02 23:14:32 +08:00
|
|
|
|
2022-03-14 18:01:05 +08:00
|
|
|
config MEDIA_TUNER_SI2157
|
|
|
|
tristate "Silicon Labs Si2157 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 19:17:48 +08:00
|
|
|
depends on MEDIA_SUPPORT && I2C
|
2012-08-21 01:48:02 +08:00
|
|
|
default m if !MEDIA_SUBDRV_AUTOSELECT
|
2012-05-07 03:56:55 +08:00
|
|
|
help
|
2022-03-14 18:01:05 +08:00
|
|
|
Silicon Labs Si2157 silicon tuner driver.
|
2012-05-07 03:56:55 +08:00
|
|
|
|
2022-03-14 18:01:05 +08:00
|
|
|
config MEDIA_TUNER_SIMPLE
|
|
|
|
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 19:17:48 +08:00
|
|
|
depends on MEDIA_SUPPORT && I2C
|
2022-03-14 18:01:05 +08:00
|
|
|
select MEDIA_TUNER_TDA9887
|
2012-08-21 01:48:02 +08:00
|
|
|
default m if !MEDIA_SUBDRV_AUTOSELECT
|
2012-05-07 03:57:02 +08:00
|
|
|
help
|
2022-03-14 18:01:05 +08:00
|
|
|
Say Y here to include support for various simple tuners.
|
2012-05-07 03:57:02 +08:00
|
|
|
|
2011-04-10 07:07:30 +08: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 19:17:48 +08:00
|
|
|
depends on MEDIA_SUPPORT && I2C
|
2014-08-04 12:00:46 +08:00
|
|
|
select REGMAP_I2C
|
2012-08-21 01:48:02 +08:00
|
|
|
default m if !MEDIA_SUBDRV_AUTOSELECT
|
2011-04-10 07:07:30 +08:00
|
|
|
help
|
|
|
|
NXP TDA18212 silicon tuner driver.
|
|
|
|
|
2022-03-14 18:01:05 +08:00
|
|
|
config MEDIA_TUNER_TDA18218
|
|
|
|
tristate "NXP TDA18218 silicon tuner"
|
|
|
|
depends on MEDIA_SUPPORT && I2C
|
2012-09-02 08:09:21 +08:00
|
|
|
default m if !MEDIA_SUBDRV_AUTOSELECT
|
|
|
|
help
|
2022-03-14 18:01:05 +08:00
|
|
|
NXP TDA18218 silicon tuner driver.
|
2012-09-02 08:09:21 +08:00
|
|
|
|
2022-03-14 18:01:05 +08:00
|
|
|
config MEDIA_TUNER_TDA18250
|
|
|
|
tristate "NXP TDA18250 silicon tuner"
|
|
|
|
depends on MEDIA_SUPPORT && I2C
|
2012-09-09 09:07:24 +08:00
|
|
|
default m if !MEDIA_SUBDRV_AUTOSELECT
|
|
|
|
help
|
2022-03-14 18:01:05 +08:00
|
|
|
Say Y here to include support for TDA18250 tuner.
|
2012-09-09 09:07:24 +08:00
|
|
|
|
2022-03-14 18:01:05 +08:00
|
|
|
config MEDIA_TUNER_TDA18271
|
|
|
|
tristate "NXP TDA18271 silicon tuner"
|
2014-10-30 16:01:51 +08:00
|
|
|
depends on MEDIA_SUPPORT && I2C
|
|
|
|
default m if !MEDIA_SUBDRV_AUTOSELECT
|
|
|
|
help
|
2022-03-14 18:01:05 +08:00
|
|
|
A silicon tuner module. Say Y when you want to support this tuner.
|
2014-10-30 16:01:51 +08:00
|
|
|
|
2022-03-14 18:01:05 +08:00
|
|
|
config MEDIA_TUNER_TDA827X
|
|
|
|
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 19:17:48 +08:00
|
|
|
depends on MEDIA_SUPPORT && I2C
|
2012-08-21 01:48:02 +08:00
|
|
|
default m if !MEDIA_SUBDRV_AUTOSELECT
|
2012-03-30 17:37:26 +08:00
|
|
|
help
|
2022-03-14 18:01:05 +08:00
|
|
|
A DVB-T silicon tuner module. Say Y when you want to support this tuner.
|
2013-01-07 20:37:30 +08:00
|
|
|
|
2022-03-14 18:01:05 +08:00
|
|
|
config MEDIA_TUNER_TDA8290
|
|
|
|
tristate "TDA 8290/8295 + 8275(a)/18271 tuner combo"
|
2014-04-11 08:58:10 +08:00
|
|
|
depends on MEDIA_SUPPORT && I2C
|
2022-03-14 18:01:05 +08:00
|
|
|
select MEDIA_TUNER_TDA827X
|
|
|
|
select MEDIA_TUNER_TDA18271
|
2014-04-11 08:58:10 +08:00
|
|
|
default m if !MEDIA_SUBDRV_AUTOSELECT
|
|
|
|
help
|
2022-03-14 18:01:05 +08:00
|
|
|
Say Y here to include support for Philips TDA8290+8275(a) tuner.
|
2014-04-11 08:58:10 +08:00
|
|
|
|
2022-03-14 18:01:05 +08:00
|
|
|
config MEDIA_TUNER_TDA9887
|
|
|
|
tristate "TDA 9885/6/7 analog IF demodulator"
|
2013-01-07 20:37:30 +08:00
|
|
|
depends on MEDIA_SUPPORT && I2C
|
|
|
|
default m if !MEDIA_SUBDRV_AUTOSELECT
|
|
|
|
help
|
2022-03-14 18:01:05 +08:00
|
|
|
Say Y here to include support for Philips TDA9885/6/7
|
|
|
|
analog IF demodulator.
|
2013-04-06 01:35:18 +08:00
|
|
|
|
2022-03-14 18:01:05 +08:00
|
|
|
config MEDIA_TUNER_TEA5761
|
|
|
|
tristate "TEA 5761 radio tuner"
|
2013-04-06 01:35:18 +08:00
|
|
|
depends on MEDIA_SUPPORT && I2C
|
|
|
|
default m if !MEDIA_SUBDRV_AUTOSELECT
|
|
|
|
help
|
2022-03-14 18:01:05 +08:00
|
|
|
Say Y here to include support for the Philips TEA5761 radio tuner.
|
2014-09-09 01:20:40 +08:00
|
|
|
|
2022-03-14 18:01:05 +08:00
|
|
|
config MEDIA_TUNER_TEA5767
|
|
|
|
tristate "TEA 5767 radio tuner"
|
2014-09-09 01:20:40 +08:00
|
|
|
depends on MEDIA_SUPPORT && I2C
|
|
|
|
default m if !MEDIA_SUBDRV_AUTOSELECT
|
|
|
|
help
|
2022-03-14 18:01:05 +08:00
|
|
|
Say Y here to include support for the Philips TEA5767 radio tuner.
|
2014-09-09 01:20:41 +08:00
|
|
|
|
2022-03-14 18:01:05 +08:00
|
|
|
config MEDIA_TUNER_TUA9001
|
|
|
|
tristate "Infineon TUA9001 silicon tuner"
|
2014-09-09 01:20:41 +08:00
|
|
|
depends on MEDIA_SUPPORT && I2C
|
2022-03-14 18:01:05 +08:00
|
|
|
select REGMAP_I2C
|
2014-09-09 01:20:41 +08:00
|
|
|
default m if !MEDIA_SUBDRV_AUTOSELECT
|
|
|
|
help
|
2022-03-14 18:01:05 +08:00
|
|
|
Infineon TUA 9001 silicon tuner driver.
|
2018-04-09 01:39:50 +08:00
|
|
|
|
2022-03-14 18:01:05 +08:00
|
|
|
config MEDIA_TUNER_XC2028
|
|
|
|
tristate "XCeive xc2028/xc3028 tuners"
|
2018-04-09 01:39:50 +08:00
|
|
|
depends on MEDIA_SUPPORT && I2C
|
|
|
|
default m if !MEDIA_SUBDRV_AUTOSELECT
|
|
|
|
help
|
2022-03-14 18:01:05 +08:00
|
|
|
Say Y here to include support for the xc2028/xc3028 tuners.
|
|
|
|
|
|
|
|
config MEDIA_TUNER_XC4000
|
|
|
|
tristate "Xceive XC4000 silicon tuner"
|
|
|
|
depends on MEDIA_SUPPORT && I2C
|
|
|
|
default m if !MEDIA_SUBDRV_AUTOSELECT
|
|
|
|
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.
|
|
|
|
|
|
|
|
config MEDIA_TUNER_XC5000
|
|
|
|
tristate "Xceive XC5000 silicon tuner"
|
|
|
|
depends on MEDIA_SUPPORT && I2C
|
|
|
|
default m if !MEDIA_SUBDRV_AUTOSELECT
|
|
|
|
help
|
|
|
|
A driver for the silicon tuner XC5000 from Xceive.
|
|
|
|
This device is only used inside a SiP called together with a
|
|
|
|
demodulator for now.
|
|
|
|
|
2010-11-10 01:29:05 +08:00
|
|
|
endmenu
|