aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/test-drivers/Kconfig
diff options
context:
space:
mode:
authorDaniel W. S. Almeida <dwlsalmeida@gmail.com>2020-08-21 14:58:45 +0200
committerMauro Carvalho Chehab <mchehab+huawei@kernel.org>2020-09-12 09:42:16 +0200
commit24fb190e92e09c819f432cdf366a1540cf52f1f2 (patch)
treef3313b5bda0ebe54e0dc745450f161e9a1e2a860 /drivers/media/test-drivers/Kconfig
parentmedia: av7110: don't do float point math (diff)
downloadlinux-dev-24fb190e92e09c819f432cdf366a1540cf52f1f2.tar.xz
linux-dev-24fb190e92e09c819f432cdf366a1540cf52f1f2.zip
media: vidtv: implement a tuner driver
The virtual DVB test driver serves as a reference DVB driver and helps validate the existing APIs in the media subsystem. It can also aid developers working on userspace applications. This dummy tuner should support common TV standards such as DVB-T/T2/S/S2, ISDB-T and ATSC when completed. Signed-off-by: Daniel W. S. Almeida <dwlsalmeida@gmail.com> Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
Diffstat (limited to 'drivers/media/test-drivers/Kconfig')
-rw-r--r--drivers/media/test-drivers/Kconfig16
1 files changed, 16 insertions, 0 deletions
diff --git a/drivers/media/test-drivers/Kconfig b/drivers/media/test-drivers/Kconfig
index 188381c85593..874fcc72c48c 100644
--- a/drivers/media/test-drivers/Kconfig
+++ b/drivers/media/test-drivers/Kconfig
@@ -4,6 +4,16 @@ menuconfig V4L_TEST_DRIVERS
bool "V4L test drivers"
depends on VIDEO_DEV
+menuconfig DVB_TEST_DRIVERS
+ bool "DVB test drivers"
+ depends on DVB_CORE && MEDIA_SUPPORT && I2C
+ help
+ Enables DVB test drivers.
+
+ This enables the DVB test drivers. They are meant as an aid for
+ DVB device driver writers and developers working on userspace
+ media applications.
+
if V4L_TEST_DRIVERS
source "drivers/media/test-drivers/vimc/Kconfig"
@@ -24,3 +34,9 @@ config VIDEO_VIM2M
source "drivers/media/test-drivers/vicodec/Kconfig"
endif #V4L_TEST_DRIVERS
+
+if DVB_TEST_DRIVERS
+
+source "drivers/media/test-drivers/vidtv/Kconfig"
+
+endif #DVB_TEST_DRIVERS