2019-05-19 20:07:45 +08:00
|
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
2012-07-10 01:59:28 +08:00
|
|
|
config DVB_USB_V2
|
|
|
|
tristate "Support for various USB DVB devices v2"
|
2013-07-23 20:15:31 +08:00
|
|
|
depends on DVB_CORE && USB && I2C && (RC_CORE || RC_CORE=n)
|
2012-07-10 01:59:28 +08:00
|
|
|
help
|
|
|
|
By enabling this you will be able to choose the various supported
|
|
|
|
USB1.1 and USB2.0 DVB devices.
|
|
|
|
|
|
|
|
Almost every USB device needs a firmware, please look into
|
2020-03-04 22:54:10 +08:00
|
|
|
<file:Documentation/driver-api/media/drivers/dvb-usb.rst>.
|
2012-07-10 01:59:28 +08:00
|
|
|
|
|
|
|
For a complete list of supported USB devices see the LinuxTV DVB Wiki:
|
2015-12-04 20:38:59 +08:00
|
|
|
<https://linuxtv.org/wiki/index.php/DVB_USB>
|
2012-07-10 01:59:28 +08:00
|
|
|
|
|
|
|
Say Y if you own a USB DVB device.
|
|
|
|
|
2022-03-14 18:01:05 +08:00
|
|
|
if DVB_USB_V2
|
|
|
|
|
2012-07-10 01:59:28 +08:00
|
|
|
config DVB_USB_AF9015
|
|
|
|
tristate "Afatech AF9015 DVB-T USB2.0 support"
|
2018-03-23 20:43:47 +08:00
|
|
|
depends on DVB_USB_V2 && I2C_MUX
|
2017-07-13 14:42:52 +08:00
|
|
|
select REGMAP
|
2012-07-10 01:59:28 +08:00
|
|
|
select DVB_AF9013
|
2012-08-21 01:48:02 +08:00
|
|
|
select DVB_PLL if MEDIA_SUBDRV_AUTOSELECT
|
|
|
|
select MEDIA_TUNER_MT2060 if MEDIA_SUBDRV_AUTOSELECT
|
|
|
|
select MEDIA_TUNER_QT1010 if MEDIA_SUBDRV_AUTOSELECT
|
|
|
|
select MEDIA_TUNER_TDA18271 if MEDIA_SUBDRV_AUTOSELECT
|
|
|
|
select MEDIA_TUNER_MXL5005S if MEDIA_SUBDRV_AUTOSELECT
|
|
|
|
select MEDIA_TUNER_MC44S803 if MEDIA_SUBDRV_AUTOSELECT
|
|
|
|
select MEDIA_TUNER_TDA18218 if MEDIA_SUBDRV_AUTOSELECT
|
|
|
|
select MEDIA_TUNER_MXL5007T if MEDIA_SUBDRV_AUTOSELECT
|
2012-07-10 01:59:28 +08:00
|
|
|
help
|
|
|
|
Say Y here to support the Afatech AF9015 based DVB-T USB2.0 receiver
|
|
|
|
|
|
|
|
config DVB_USB_AF9035
|
|
|
|
tristate "Afatech AF9035 DVB-T USB2.0 support"
|
|
|
|
depends on DVB_USB_V2
|
|
|
|
select DVB_AF9033
|
2021-06-12 17:13:51 +08:00
|
|
|
select DVB_SI2168 if MEDIA_SUBDRV_AUTOSELECT
|
|
|
|
select MEDIA_TUNER_SI2157 if MEDIA_SUBDRV_AUTOSELECT
|
2012-08-21 01:48:02 +08:00
|
|
|
select MEDIA_TUNER_TUA9001 if MEDIA_SUBDRV_AUTOSELECT
|
|
|
|
select MEDIA_TUNER_FC0011 if MEDIA_SUBDRV_AUTOSELECT
|
|
|
|
select MEDIA_TUNER_MXL5007T if MEDIA_SUBDRV_AUTOSELECT
|
|
|
|
select MEDIA_TUNER_TDA18218 if MEDIA_SUBDRV_AUTOSELECT
|
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
|
|
|
select MEDIA_TUNER_FC2580 if (MEDIA_SUBDRV_AUTOSELECT && VIDEO_DEV)
|
2013-01-07 20:51:13 +08:00
|
|
|
select MEDIA_TUNER_IT913X if MEDIA_SUBDRV_AUTOSELECT
|
2012-07-10 01:59:28 +08:00
|
|
|
help
|
|
|
|
Say Y here to support the Afatech AF9035 based DVB USB receiver.
|
|
|
|
|
|
|
|
config DVB_USB_ANYSEE
|
|
|
|
tristate "Anysee DVB-T/C USB2.0 support"
|
|
|
|
depends on DVB_USB_V2
|
2012-08-21 01:48:02 +08:00
|
|
|
select DVB_PLL if MEDIA_SUBDRV_AUTOSELECT
|
|
|
|
select DVB_MT352 if MEDIA_SUBDRV_AUTOSELECT
|
|
|
|
select DVB_ZL10353 if MEDIA_SUBDRV_AUTOSELECT
|
|
|
|
select DVB_TDA10023 if MEDIA_SUBDRV_AUTOSELECT
|
|
|
|
select MEDIA_TUNER_TDA18212 if MEDIA_SUBDRV_AUTOSELECT
|
|
|
|
select DVB_CX24116 if MEDIA_SUBDRV_AUTOSELECT
|
|
|
|
select DVB_STV0900 if MEDIA_SUBDRV_AUTOSELECT
|
|
|
|
select DVB_STV6110 if MEDIA_SUBDRV_AUTOSELECT
|
|
|
|
select DVB_ISL6423 if MEDIA_SUBDRV_AUTOSELECT
|
|
|
|
select DVB_CXD2820R if MEDIA_SUBDRV_AUTOSELECT
|
2012-07-10 01:59:28 +08:00
|
|
|
help
|
|
|
|
Say Y here to support the Anysee E30, Anysee E30 Plus or
|
|
|
|
Anysee E30 C Plus DVB USB2.0 receiver.
|
|
|
|
|
|
|
|
config DVB_USB_AU6610
|
|
|
|
tristate "Alcor Micro AU6610 USB2.0 support"
|
|
|
|
depends on DVB_USB_V2
|
2012-08-21 01:48:02 +08:00
|
|
|
select DVB_ZL10353 if MEDIA_SUBDRV_AUTOSELECT
|
|
|
|
select MEDIA_TUNER_QT1010 if MEDIA_SUBDRV_AUTOSELECT
|
2012-07-10 01:59:28 +08:00
|
|
|
help
|
|
|
|
Say Y here to support the Sigmatek DVB-110 DVB-T USB2.0 receiver.
|
|
|
|
|
2012-08-05 03:05:34 +08:00
|
|
|
config DVB_USB_AZ6007
|
|
|
|
tristate "AzureWave 6007 and clones DVB-T/C USB2.0 support"
|
|
|
|
depends on DVB_USB_V2
|
2013-03-25 17:43:12 +08:00
|
|
|
select CYPRESS_FIRMWARE
|
2012-08-21 01:48:02 +08:00
|
|
|
select DVB_DRXK if MEDIA_SUBDRV_AUTOSELECT
|
|
|
|
select MEDIA_TUNER_MT2063 if MEDIA_SUBDRV_AUTOSELECT
|
2012-08-05 03:05:34 +08:00
|
|
|
help
|
|
|
|
Say Y here to support the AZ6007 receivers like Terratec H7.
|
|
|
|
|
2012-07-10 01:59:28 +08:00
|
|
|
config DVB_USB_CE6230
|
|
|
|
tristate "Intel CE6230 DVB-T USB2.0 support"
|
|
|
|
depends on DVB_USB_V2
|
|
|
|
select DVB_ZL10353
|
2012-08-21 01:48:02 +08:00
|
|
|
select MEDIA_TUNER_MXL5005S if MEDIA_SUBDRV_AUTOSELECT
|
2012-07-10 01:59:28 +08:00
|
|
|
help
|
|
|
|
Say Y here to support the Intel CE6230 DVB-T USB2.0 receiver
|
|
|
|
|
2022-03-14 18:01:05 +08:00
|
|
|
config DVB_USB_DVBSKY
|
|
|
|
tristate "DVBSky USB support"
|
|
|
|
depends on DVB_USB_V2
|
|
|
|
select DVB_M88DS3103 if MEDIA_SUBDRV_AUTOSELECT
|
|
|
|
select DVB_SI2168 if MEDIA_SUBDRV_AUTOSELECT
|
|
|
|
select DVB_TS2020 if MEDIA_SUBDRV_AUTOSELECT
|
|
|
|
select MEDIA_TUNER_SI2157 if MEDIA_SUBDRV_AUTOSELECT
|
|
|
|
select DVB_SP2 if MEDIA_SUBDRV_AUTOSELECT
|
|
|
|
help
|
|
|
|
Say Y here to support the USB receivers from DVBSky.
|
|
|
|
|
2012-07-10 01:59:28 +08:00
|
|
|
config DVB_USB_EC168
|
|
|
|
tristate "E3C EC168 DVB-T USB2.0 support"
|
|
|
|
depends on DVB_USB_V2
|
|
|
|
select DVB_EC100
|
2012-08-21 01:48:02 +08:00
|
|
|
select MEDIA_TUNER_MXL5005S if MEDIA_SUBDRV_AUTOSELECT
|
2012-07-10 01:59:28 +08:00
|
|
|
help
|
|
|
|
Say Y here to support the E3C EC168 DVB-T USB2.0 receiver.
|
|
|
|
|
|
|
|
config DVB_USB_GL861
|
|
|
|
tristate "Genesys Logic GL861 USB2.0 support"
|
|
|
|
depends on DVB_USB_V2
|
2012-08-21 01:48:02 +08:00
|
|
|
select DVB_ZL10353 if MEDIA_SUBDRV_AUTOSELECT
|
2018-06-10 22:45:31 +08:00
|
|
|
select DVB_TC90522 if MEDIA_SUBDRV_AUTOSELECT
|
2012-08-21 01:48:02 +08:00
|
|
|
select MEDIA_TUNER_QT1010 if MEDIA_SUBDRV_AUTOSELECT
|
2018-06-10 22:45:31 +08:00
|
|
|
select DVB_PLL if MEDIA_SUBDRV_AUTOSELECT
|
2012-07-10 01:59:28 +08:00
|
|
|
help
|
|
|
|
Say Y here to support the MSI Megasky 580 (55801) DVB-T USB2.0
|
2018-06-10 22:45:31 +08:00
|
|
|
receiver with USB ID 0db0:5581, Friio White ISDB-T receiver
|
|
|
|
with USB ID 0x7a69:0001.
|
2012-07-10 01:59:28 +08:00
|
|
|
|
2012-08-07 03:21:40 +08:00
|
|
|
config DVB_USB_LME2510
|
|
|
|
tristate "LME DM04/QQBOX DVB-S USB2.0 support"
|
|
|
|
depends on DVB_USB_V2
|
2012-11-29 11:05:35 +08:00
|
|
|
depends on RC_CORE
|
2012-08-21 01:48:02 +08:00
|
|
|
select DVB_TDA10086 if MEDIA_SUBDRV_AUTOSELECT
|
|
|
|
select DVB_TDA826X if MEDIA_SUBDRV_AUTOSELECT
|
|
|
|
select DVB_STV0288 if MEDIA_SUBDRV_AUTOSELECT
|
|
|
|
select DVB_IX2505V if MEDIA_SUBDRV_AUTOSELECT
|
|
|
|
select DVB_STV0299 if MEDIA_SUBDRV_AUTOSELECT
|
|
|
|
select DVB_PLL if MEDIA_SUBDRV_AUTOSELECT
|
|
|
|
select DVB_M88RS2000 if MEDIA_SUBDRV_AUTOSELECT
|
2012-12-29 06:40:33 +08:00
|
|
|
select DVB_TS2020 if MEDIA_SUBDRV_AUTOSELECT
|
2012-08-07 03:21:40 +08:00
|
|
|
help
|
|
|
|
Say Y here to support the LME DM04/QQBOX DVB-S USB2.0
|
|
|
|
|
2012-07-10 01:59:28 +08:00
|
|
|
config DVB_USB_MXL111SF
|
|
|
|
tristate "MxL111SF DTV USB2.0 support"
|
|
|
|
depends on DVB_USB_V2
|
2012-08-21 01:48:02 +08:00
|
|
|
select DVB_LGDT3305 if MEDIA_SUBDRV_AUTOSELECT
|
|
|
|
select DVB_LG2160 if MEDIA_SUBDRV_AUTOSELECT
|
2012-07-10 01:59:28 +08:00
|
|
|
select VIDEO_TVEEPROM
|
|
|
|
help
|
|
|
|
Say Y here to support the MxL111SF USB2.0 DTV receiver.
|
|
|
|
|
2012-08-13 09:27:07 +08:00
|
|
|
config DVB_USB_RTL28XXU
|
|
|
|
tristate "Realtek RTL28xxU DVB USB support"
|
2014-03-11 02:18:55 +08:00
|
|
|
depends on DVB_USB_V2 && I2C_MUX
|
2016-05-23 00:12:06 +08:00
|
|
|
select DVB_MN88472 if MEDIA_SUBDRV_AUTOSELECT
|
|
|
|
select DVB_MN88473 if MEDIA_SUBDRV_AUTOSELECT
|
2018-09-27 05:44:45 +08:00
|
|
|
select DVB_CXD2841ER if MEDIA_SUBDRV_AUTOSELECT
|
2012-08-13 09:27:07 +08:00
|
|
|
select DVB_RTL2830
|
|
|
|
select DVB_RTL2832
|
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
|
|
|
select DVB_RTL2832_SDR if (MEDIA_SUBDRV_AUTOSELECT && MEDIA_SDR_SUPPORT && VIDEO_DEV)
|
2016-05-23 00:12:06 +08:00
|
|
|
select DVB_SI2168 if MEDIA_SUBDRV_AUTOSELECT
|
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
|
|
|
select MEDIA_TUNER_E4000 if (MEDIA_SUBDRV_AUTOSELECT && VIDEO_DEV)
|
2012-08-21 01:48:02 +08:00
|
|
|
select MEDIA_TUNER_FC0012 if MEDIA_SUBDRV_AUTOSELECT
|
|
|
|
select MEDIA_TUNER_FC0013 if MEDIA_SUBDRV_AUTOSELECT
|
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
|
|
|
select MEDIA_TUNER_FC2580 if (MEDIA_SUBDRV_AUTOSELECT && VIDEO_DEV)
|
2016-05-23 00:12:07 +08:00
|
|
|
select MEDIA_TUNER_MT2060 if MEDIA_SUBDRV_AUTOSELECT
|
|
|
|
select MEDIA_TUNER_MXL5005S if MEDIA_SUBDRV_AUTOSELECT
|
|
|
|
select MEDIA_TUNER_QT1010 if MEDIA_SUBDRV_AUTOSELECT
|
2013-04-06 20:40:11 +08:00
|
|
|
select MEDIA_TUNER_R820T if MEDIA_SUBDRV_AUTOSELECT
|
2016-05-23 00:12:06 +08:00
|
|
|
select MEDIA_TUNER_SI2157 if MEDIA_SUBDRV_AUTOSELECT
|
|
|
|
select MEDIA_TUNER_TUA9001 if MEDIA_SUBDRV_AUTOSELECT
|
2012-08-13 09:27:07 +08:00
|
|
|
help
|
|
|
|
Say Y here to support the Realtek RTL28xxU DVB USB receiver.
|
|
|
|
|
2015-07-24 05:53:41 +08:00
|
|
|
config DVB_USB_ZD1301
|
|
|
|
tristate "ZyDAS ZD1301"
|
|
|
|
depends on DVB_USB_V2
|
|
|
|
select DVB_ZD1301_DEMOD if MEDIA_SUBDRV_AUTOSELECT
|
|
|
|
select MEDIA_TUNER_MT2060 if MEDIA_SUBDRV_AUTOSELECT
|
|
|
|
help
|
|
|
|
Say Y here to support the ZyDAS ZD1301 DVB USB receiver.
|
2022-03-14 18:01:05 +08:00
|
|
|
|
|
|
|
endif
|