2019-05-19 15:07:45 +03:00
# SPDX-License-Identifier: GPL-2.0-only
2005-04-17 02:20:36 +04:00
#
# Multimedia device configuration
#
2017-05-28 11:48:37 +03:00
config CEC_CORE
tristate
2017-05-28 11:58:04 +03:00
config CEC_NOTIFIER
2017-05-28 11:48:37 +03:00
bool
2017-07-11 09:30:42 +03:00
config CEC_PIN
bool
2017-07-02 22:37:58 +03:00
source "drivers/media/rc/Kconfig"
2009-05-19 05:00:34 +04:00
menuconfig MEDIA_SUPPORT
tristate "Multimedia support"
2007-05-10 17:45:57 +04:00
depends on HAS_IOMEM
2009-05-19 05:00:34 +04:00
help
2012-05-28 15:17:47 +04:00
If you want to use Webcams, Video grabber devices and/or TV devices
2009-05-19 05:00:34 +04:00
enable this option and other options below.
2012-05-28 15:17:47 +04:00
Additional info and docs are available on the web at
2015-12-04 15:38:59 +03:00
<https://linuxtv.org>
2009-05-19 05:00:34 +04:00
if MEDIA_SUPPORT
2005-04-17 02:20:36 +04:00
2008-04-30 04:38:44 +04:00
comment "Multimedia core support"
2012-05-28 15:17:47 +04:00
#
# Multimedia support - automatically enable V4L2 and DVB core
#
config MEDIA_CAMERA_SUPPORT
bool "Cameras/video grabbers support"
2019-03-20 13:39:44 +03:00
help
2012-05-28 15:17:47 +04:00
Enable support for webcams and video grabbers.
Say Y when you have a webcam or a video capture grabber board.
config MEDIA_ANALOG_TV_SUPPORT
bool "Analog TV support"
2019-03-20 13:39:44 +03:00
help
2012-05-28 15:17:47 +04:00
Enable analog TV support.
Say Y when you have a TV board with analog support or with a
hybrid analog/digital TV chipset.
Note: There are several DVB cards that are based on chips that
support both analog and digital TV. Disabling this option
will disable support for them.
config MEDIA_DIGITAL_TV_SUPPORT
bool "Digital TV support"
2019-03-20 13:39:44 +03:00
help
2012-05-28 15:17:47 +04:00
Enable digital TV support.
Say Y when you have a board with digital support or a board with
hybrid digital TV and analog TV.
config MEDIA_RADIO_SUPPORT
bool "AM/FM radio receivers/transmitters support"
2019-03-20 13:39:44 +03:00
help
2012-05-28 15:17:47 +04:00
Enable AM/FM radio support.
Additional info and docs are available on the web at
2015-12-04 15:38:59 +03:00
<https://linuxtv.org>
2012-05-28 15:17:47 +04:00
Say Y when you have a board with radio support.
Note: There are several TV cards that are based on chips that
support radio reception. Disabling this option will
disable support for them.
2014-07-13 04:43:12 +04:00
config MEDIA_SDR_SUPPORT
bool "Software defined radio support"
2019-03-20 13:39:44 +03:00
help
2014-07-13 04:43:12 +04:00
Enable software defined radio support.
Say Y when you have a software defined radio device.
2016-11-02 13:25:28 +03:00
config MEDIA_CEC_SUPPORT
2018-05-03 02:19:30 +03:00
bool "HDMI CEC support"
2019-03-20 13:39:44 +03:00
help
2018-05-03 02:19:30 +03:00
Enable support for HDMI CEC (Consumer Electronics Control),
which is an optional HDMI feature.
2016-11-02 13:25:28 +03:00
2018-05-03 02:19:30 +03:00
Say Y when you have an HDMI receiver, transmitter or a USB CEC
adapter that supports HDMI CEC.
2016-06-17 15:13:08 +03:00
2017-04-17 13:44:35 +03:00
source "drivers/media/cec/Kconfig"
2016-11-14 16:55:20 +03:00
2009-12-09 14:39:56 +03:00
#
# Media controller
2012-05-28 15:17:47 +04:00
# Selectable only for webcam/grabbers, as other drivers don't use it
2009-12-09 14:39:56 +03:00
#
config MEDIA_CONTROLLER
2012-10-02 22:17:27 +04:00
bool "Media Controller API"
2015-01-02 18:19:51 +03:00
depends on MEDIA_CAMERA_SUPPORT || MEDIA_ANALOG_TV_SUPPORT || MEDIA_DIGITAL_TV_SUPPORT
2019-03-20 13:39:44 +03:00
help
2009-12-09 14:39:56 +03:00
Enable the media controller API used to query media devices internal
topology and configure it dynamically.
This API is mostly used by camera interfaces in embedded platforms.
2015-01-02 18:19:51 +03:00
config MEDIA_CONTROLLER_DVB
2015-05-06 17:26:13 +03:00
bool "Enable Media controller for DVB (EXPERIMENTAL)"
2016-11-18 22:47:41 +03:00
depends on MEDIA_CONTROLLER && DVB_CORE
2019-03-20 13:39:44 +03:00
help
2015-01-02 18:19:51 +03:00
Enable the media controller API support for DVB.
This is currently experimental.
2018-12-05 20:23:54 +03:00
config MEDIA_CONTROLLER_REQUEST_API
bool "Enable Media controller Request API (EXPERIMENTAL)"
depends on MEDIA_CONTROLLER && STAGING_MEDIA
default n
2019-03-20 13:39:44 +03:00
help
2018-12-05 20:23:54 +03:00
DO NOT ENABLE THIS OPTION UNLESS YOU KNOW WHAT YOU'RE DOING.
This option enables the Request API for the Media controller and V4L2
interfaces. It is currently needed by a few stateless codec drivers.
There is currently no intention to provide API or ABI stability for
this new API as of yet.
2008-04-30 04:38:44 +04:00
#
2012-05-28 15:17:47 +04:00
# Video4Linux support
# Only enables if one of the V4L2 types (ATV, webcam, radio) is selected
2008-04-30 04:38:44 +04:00
#
2005-04-17 02:20:36 +04:00
config VIDEO_DEV
2012-05-28 15:17:47 +04:00
tristate
depends on MEDIA_SUPPORT
2014-07-13 04:43:12 +04:00
depends on MEDIA_CAMERA_SUPPORT || MEDIA_ANALOG_TV_SUPPORT || MEDIA_RADIO_SUPPORT || MEDIA_SDR_SUPPORT
2012-05-28 15:17:47 +04:00
default y
2005-04-17 02:20:36 +04:00
2010-05-21 13:04:24 +04:00
config VIDEO_V4L2_SUBDEV_API
2012-10-02 22:17:27 +04:00
bool "V4L2 sub-device userspace API"
depends on VIDEO_DEV && MEDIA_CONTROLLER
2019-03-20 13:39:44 +03:00
help
2010-05-21 13:04:24 +04:00
Enables the V4L2 sub-device pad-level userspace API used to configure
video format, size and frame rate between hardware blocks.
This API is mostly used by camera interfaces in embedded platforms.
2012-08-14 23:07:25 +04:00
source "drivers/media/v4l2-core/Kconfig"
2008-04-30 04:38:44 +04:00
#
# DVB Core
2012-05-28 15:17:47 +04:00
# Only enables if one of DTV is selected
2008-04-30 04:38:44 +04:00
#
2005-04-17 02:20:36 +04:00
2008-04-30 04:38:44 +04:00
config DVB_CORE
2012-05-28 15:17:47 +04:00
tristate
depends on MEDIA_SUPPORT
depends on MEDIA_DIGITAL_TV_SUPPORT
2018-03-07 17:51:17 +03:00
depends on (I2C || I2C=n)
2012-05-28 15:17:47 +04:00
default y
2008-04-30 04:38:44 +04:00
select CRC32
2007-08-28 04:59:35 +04:00
2017-12-28 17:24:20 +03:00
config DVB_MMAP
bool "Enable DVB memory-mapped API (EXPERIMENTAL)"
depends on DVB_CORE
2018-01-04 13:31:31 +03:00
depends on VIDEO_V4L2=y || VIDEO_V4L2=DVB_CORE
select VIDEOBUF2_VMALLOC
2017-12-28 17:24:20 +03:00
default n
help
2018-01-17 06:16:12 +03:00
This option enables DVB experimental memory-mapped API, which
2017-12-28 17:24:20 +03:00
reduces the number of context switches to read DVB buffers, as
the buffers can use mmap() syscalls.
Support for it is experimental. Use with care. If unsure,
say N.
2011-05-23 16:43:35 +04:00
config DVB_NET
bool "DVB Network Support"
default (NET && INET)
2011-06-10 14:43:26 +04:00
depends on NET && INET && DVB_CORE
2011-05-23 16:43:35 +04:00
help
2011-06-16 23:06:56 +04:00
This option enables DVB Network Support which is a part of the DVB
standard. It is used, for example, by automatic firmware updates used
on Set-Top-Boxes. It can also be used to access the Internet via the
DVB card, if the network provider supports it.
2011-05-23 16:43:35 +04:00
2011-06-16 23:06:56 +04:00
You may want to disable the network support on embedded devices. If
unsure say Y.
2011-05-23 16:43:35 +04:00
2012-12-27 20:43:41 +04:00
# This Kconfig option is used by both PCI and USB drivers
config TTPCI_EEPROM
[media] Fix build when drivers are builtin and frontend modules
There are a large number of reports that the media build is
not compiling when some drivers are compiled as builtin, while
the needed frontends are compiled as module.
On the last one of such reports:
From: kbuild test robot <fengguang.wu@intel.com>
Subject: saa7134-dvb.c:undefined reference to `zl10039_attach'
The .config file has:
CONFIG_VIDEO_SAA7134=y
CONFIG_VIDEO_SAA7134_DVB=y
# CONFIG_MEDIA_ATTACH is not set
CONFIG_DVB_ZL10039=m
And it produces all those errors:
drivers/built-in.o: In function `set_type':
tuner-core.c:(.text+0x2f263e): undefined reference to `tea5767_attach'
tuner-core.c:(.text+0x2f273e): undefined reference to `tda9887_attach'
drivers/built-in.o: In function `tuner_probe':
tuner-core.c:(.text+0x2f2d20): undefined reference to `tea5767_autodetection'
drivers/built-in.o: In function `av7110_attach':
av7110.c:(.text+0x330bda): undefined reference to `ves1x93_attach'
av7110.c:(.text+0x330bf7): undefined reference to `stv0299_attach'
av7110.c:(.text+0x330c63): undefined reference to `tda8083_attach'
av7110.c:(.text+0x330d09): undefined reference to `ves1x93_attach'
av7110.c:(.text+0x330d33): undefined reference to `tda8083_attach'
av7110.c:(.text+0x330d5d): undefined reference to `stv0297_attach'
av7110.c:(.text+0x330dbe): undefined reference to `stv0299_attach'
drivers/built-in.o: In function `tuner_attach_dtt7520x':
ngene-cards.c:(.text+0x3381cb): undefined reference to `dvb_pll_attach'
drivers/built-in.o: In function `demod_attach_lg330x':
ngene-cards.c:(.text+0x33828a): undefined reference to `lgdt330x_attach'
drivers/built-in.o: In function `demod_attach_stv0900':
ngene-cards.c:(.text+0x3383d5): undefined reference to `stv090x_attach'
drivers/built-in.o: In function `cineS2_probe':
ngene-cards.c:(.text+0x338b7f): undefined reference to `drxk_attach'
drivers/built-in.o: In function `configure_tda827x_fe':
saa7134-dvb.c:(.text+0x346ae7): undefined reference to `tda10046_attach'
drivers/built-in.o: In function `dvb_init':
saa7134-dvb.c:(.text+0x347283): undefined reference to `mt352_attach'
saa7134-dvb.c:(.text+0x3472cd): undefined reference to `mt352_attach'
saa7134-dvb.c:(.text+0x34731c): undefined reference to `tda10046_attach'
saa7134-dvb.c:(.text+0x34733c): undefined reference to `tda10046_attach'
saa7134-dvb.c:(.text+0x34735c): undefined reference to `tda10046_attach'
saa7134-dvb.c:(.text+0x347378): undefined reference to `tda10046_attach'
saa7134-dvb.c:(.text+0x3473db): undefined reference to `tda10046_attach'
drivers/built-in.o:saa7134-dvb.c:(.text+0x347502): more undefined references to `tda10046_attach' follow
drivers/built-in.o: In function `dvb_init':
saa7134-dvb.c:(.text+0x347812): undefined reference to `mt352_attach'
saa7134-dvb.c:(.text+0x347951): undefined reference to `mt312_attach'
saa7134-dvb.c:(.text+0x3479a9): undefined reference to `mt312_attach'
>> saa7134-dvb.c:(.text+0x3479c1): undefined reference to `zl10039_attach'
This is happening because a builtin module can't use directly a symbol
found on a module. By enabling CONFIG_MEDIA_ATTACH, the configuration
becomes valid, as dvb_attach() macro loads the module if needed, making
the symbol available to the builtin module.
While this bug started to appear after the patches that use IS_DEFINED
macro (like changeset 7b34be71db533f3e0cf93d53cf62d036cdb5418a), this
bug is a way ancient than that.
The thing is that, before the IS_DEFINED() patches, the logic used to be:
&& defined(MODULE))
struct dvb_frontend *zl10039_attach(struct dvb_frontend *fe,
u8 i2c_addr,
struct i2c_adapter *i2c);
static inline struct dvb_frontend *zl10039_attach(struct dvb_frontend *fe,
u8 i2c_addr,
struct i2c_adapter *i2c)
{
printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__);
return NULL;
}
The above code, with the .config file used, was evoluting to FALSE
(instead of TRUE as it should be, as CONFIG_DVB_ZL10039 is 'm'),
and were adding the static inline code at saa7134-dvb, instead
of the external call. So, while it weren't producing any compilation
error, the code weren't working either.
So, as the overhead for using CONFIG_MEDIA_ATTACH is minimal, just
enable it, if MODULES is defined.
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
2013-06-20 17:35:53 +04:00
tristate
depends on I2C
default n
2012-12-27 20:43:41 +04:00
2012-08-14 23:07:25 +04:00
source "drivers/media/dvb-core/Kconfig"
2012-07-06 16:12:59 +04:00
comment "Media drivers"
2007-08-23 23:37:49 +04:00
2008-04-30 04:38:44 +04:00
#
2012-08-14 23:23:43 +04:00
# V4L platform/mem2mem drivers
2008-04-30 04:38:44 +04:00
#
2007-06-25 22:42:01 +04:00
2012-06-14 23:35:56 +04:00
source "drivers/media/usb/Kconfig"
2012-08-20 17:02:05 +04:00
source "drivers/media/pci/Kconfig"
source "drivers/media/platform/Kconfig"
2012-06-14 23:36:01 +04:00
source "drivers/media/mmc/Kconfig"
2012-08-20 17:02:05 +04:00
source "drivers/media/radio/Kconfig"
2005-04-17 02:20:36 +04:00
2012-06-14 23:35:55 +04:00
comment "Supported FireWire (IEEE 1394) Adapters"
depends on DVB_CORE && FIREWIRE
source "drivers/media/firewire/Kconfig"
2012-08-20 17:02:05 +04:00
# Common driver options
2012-06-14 23:35:58 +04:00
source "drivers/media/common/Kconfig"
2016-09-15 18:18:14 +03:00
comment "Media ancillary drivers (tuners, sensors, i2c, spi, frontends)"
2012-12-22 14:48:58 +04:00
2012-08-20 17:02:05 +04:00
#
2016-09-15 18:18:14 +03:00
# Ancillary drivers (tuners, i2c, spi, frontends)
2012-08-20 17:02:05 +04:00
#
2012-08-20 21:48:02 +04:00
config MEDIA_SUBDRV_AUTOSELECT
2016-09-15 18:18:14 +03:00
bool "Autoselect ancillary drivers (tuners, sensors, i2c, spi, frontends)"
2014-07-13 04:43:12 +04:00
depends on MEDIA_ANALOG_TV_SUPPORT || MEDIA_DIGITAL_TV_SUPPORT || MEDIA_CAMERA_SUPPORT || MEDIA_SDR_SUPPORT
[media] subdev autoselect only works if I2C and I2C_MUX is selected
As reported by the kbuild test robot <fengguang.wu@intel.com>:
> warning: (VIDEO_EM28XX_DVB) selects DVB_M88DS3103 which has unmet direct dependencies (MEDIA_SUPPORT && DVB_CORE && I2C && I2C_MUX)
> drivers/built-in.o: In function `m88ds3103_release':
> >> m88ds3103.c:(.text+0x1ab1af): undefined reference to `i2c_del_mux_adapter'
> drivers/built-in.o: In function `m88ds3103_attach':
> >> (.text+0x1ab342): undefined reference to `i2c_add_mux_adapter'
There are 3 possible ways to fix it:
1) make em28xx dependent on I2C_MUX.
That sounds wrong, as the em28xx bridge doesn't have i2c muxes on it,
and just one frontend has.
Well, subdevs could eventually be converted to, instead of using dvb
i2c gate control, to use i2c mux support.
That makes sense, but it takes time and lots of effort. Not sure if
this will happen anytime soon.
2) MEDIA_SUBDRV_AUTOSELECT can be dependent of I2C and I2C_MUX.
That means that users will need to manually enable I2C_MUX on some
distributions. Not sure about others, but, on Fedora, this option is
disabled.
So, it can end by generating a number of complains from users
that their devices suddenly stopped working after a Kernel upgrade,
at least until all distros that ship Kernels with I2C_MUX enabled.
3) if MEDIA_SUBDRV_AUTOSELECT is selected, it will select I2C and I2C_MUX.
Of course, MEDIA_SUBDRV_AUTOSELECT will need to inherit all dependencies
that I2C and I2C_MUX have (only HAS_IOMEM).
The disadvantage is that, if new dependencies are added on I2C, they'll
also need to be added here.
As the hole idea of autoselect is to let the user not bother about whatever
frontend/tuner is used by a driver, IMHO, (3) is the better solution.
Reported-by: kbuild test robot <fengguang.wu@intel.com>
Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
2013-12-21 11:42:11 +04:00
depends on HAS_IOMEM
select I2C
select I2C_MUX
2012-08-20 21:48:02 +04:00
default y
help
2012-12-22 14:48:58 +04:00
By default, a media driver auto-selects all possible ancillary
devices such as tuners, sensors, video encoders/decoders and
frontends, that are used by any of the supported devices.
2012-08-20 21:48:02 +04:00
This is generally the right thing to do, except when there
2012-10-17 23:09:23 +04:00
are strict constraints with regards to the kernel size,
like on embedded systems.
2012-08-20 21:48:02 +04:00
2012-10-17 23:09:23 +04:00
Use this option with care, as deselecting ancillary drivers which
are, in fact, necessary will result in the lack of the needed
functionality for your device (it may not tune or may not have
2012-12-22 14:48:58 +04:00
the needed demodulators).
2012-08-20 21:48:02 +04:00
If unsure say Y.
[media] Fix build when drivers are builtin and frontend modules
There are a large number of reports that the media build is
not compiling when some drivers are compiled as builtin, while
the needed frontends are compiled as module.
On the last one of such reports:
From: kbuild test robot <fengguang.wu@intel.com>
Subject: saa7134-dvb.c:undefined reference to `zl10039_attach'
The .config file has:
CONFIG_VIDEO_SAA7134=y
CONFIG_VIDEO_SAA7134_DVB=y
# CONFIG_MEDIA_ATTACH is not set
CONFIG_DVB_ZL10039=m
And it produces all those errors:
drivers/built-in.o: In function `set_type':
tuner-core.c:(.text+0x2f263e): undefined reference to `tea5767_attach'
tuner-core.c:(.text+0x2f273e): undefined reference to `tda9887_attach'
drivers/built-in.o: In function `tuner_probe':
tuner-core.c:(.text+0x2f2d20): undefined reference to `tea5767_autodetection'
drivers/built-in.o: In function `av7110_attach':
av7110.c:(.text+0x330bda): undefined reference to `ves1x93_attach'
av7110.c:(.text+0x330bf7): undefined reference to `stv0299_attach'
av7110.c:(.text+0x330c63): undefined reference to `tda8083_attach'
av7110.c:(.text+0x330d09): undefined reference to `ves1x93_attach'
av7110.c:(.text+0x330d33): undefined reference to `tda8083_attach'
av7110.c:(.text+0x330d5d): undefined reference to `stv0297_attach'
av7110.c:(.text+0x330dbe): undefined reference to `stv0299_attach'
drivers/built-in.o: In function `tuner_attach_dtt7520x':
ngene-cards.c:(.text+0x3381cb): undefined reference to `dvb_pll_attach'
drivers/built-in.o: In function `demod_attach_lg330x':
ngene-cards.c:(.text+0x33828a): undefined reference to `lgdt330x_attach'
drivers/built-in.o: In function `demod_attach_stv0900':
ngene-cards.c:(.text+0x3383d5): undefined reference to `stv090x_attach'
drivers/built-in.o: In function `cineS2_probe':
ngene-cards.c:(.text+0x338b7f): undefined reference to `drxk_attach'
drivers/built-in.o: In function `configure_tda827x_fe':
saa7134-dvb.c:(.text+0x346ae7): undefined reference to `tda10046_attach'
drivers/built-in.o: In function `dvb_init':
saa7134-dvb.c:(.text+0x347283): undefined reference to `mt352_attach'
saa7134-dvb.c:(.text+0x3472cd): undefined reference to `mt352_attach'
saa7134-dvb.c:(.text+0x34731c): undefined reference to `tda10046_attach'
saa7134-dvb.c:(.text+0x34733c): undefined reference to `tda10046_attach'
saa7134-dvb.c:(.text+0x34735c): undefined reference to `tda10046_attach'
saa7134-dvb.c:(.text+0x347378): undefined reference to `tda10046_attach'
saa7134-dvb.c:(.text+0x3473db): undefined reference to `tda10046_attach'
drivers/built-in.o:saa7134-dvb.c:(.text+0x347502): more undefined references to `tda10046_attach' follow
drivers/built-in.o: In function `dvb_init':
saa7134-dvb.c:(.text+0x347812): undefined reference to `mt352_attach'
saa7134-dvb.c:(.text+0x347951): undefined reference to `mt312_attach'
saa7134-dvb.c:(.text+0x3479a9): undefined reference to `mt312_attach'
>> saa7134-dvb.c:(.text+0x3479c1): undefined reference to `zl10039_attach'
This is happening because a builtin module can't use directly a symbol
found on a module. By enabling CONFIG_MEDIA_ATTACH, the configuration
becomes valid, as dvb_attach() macro loads the module if needed, making
the symbol available to the builtin module.
While this bug started to appear after the patches that use IS_DEFINED
macro (like changeset 7b34be71db533f3e0cf93d53cf62d036cdb5418a), this
bug is a way ancient than that.
The thing is that, before the IS_DEFINED() patches, the logic used to be:
&& defined(MODULE))
struct dvb_frontend *zl10039_attach(struct dvb_frontend *fe,
u8 i2c_addr,
struct i2c_adapter *i2c);
static inline struct dvb_frontend *zl10039_attach(struct dvb_frontend *fe,
u8 i2c_addr,
struct i2c_adapter *i2c)
{
printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__);
return NULL;
}
The above code, with the .config file used, was evoluting to FALSE
(instead of TRUE as it should be, as CONFIG_DVB_ZL10039 is 'm'),
and were adding the static inline code at saa7134-dvb, instead
of the external call. So, while it weren't producing any compilation
error, the code weren't working either.
So, as the overhead for using CONFIG_MEDIA_ATTACH is minimal, just
enable it, if MODULES is defined.
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
2013-06-20 17:35:53 +04:00
config MEDIA_ATTACH
bool
depends on MEDIA_ANALOG_TV_SUPPORT || MEDIA_DIGITAL_TV_SUPPORT || MEDIA_RADIO_SUPPORT
depends on MODULES
default MODULES
2012-08-20 17:02:05 +04:00
source "drivers/media/i2c/Kconfig"
2016-09-15 18:18:14 +03:00
source "drivers/media/spi/Kconfig"
2012-08-20 21:48:02 +04:00
source "drivers/media/tuners/Kconfig"
2012-08-20 17:02:05 +04:00
source "drivers/media/dvb-frontends/Kconfig"
2009-05-19 05:00:34 +04:00
endif # MEDIA_SUPPORT