0001 # SPDX-License-Identifier: GPL-2.0-only
0002 config CEC_CORE
0003 tristate
0004
0005 config CEC_NOTIFIER
0006 bool
0007
0008 config CEC_PIN
0009 bool
0010
0011 menu "CEC support"
0012
0013 config MEDIA_CEC_RC
0014 bool "HDMI CEC RC integration"
0015 depends on CEC_CORE && RC_CORE
0016 depends on CEC_CORE=m || RC_CORE=y
0017 help
0018 Pass on CEC remote control messages to the RC framework.
0019
0020 config CEC_PIN_ERROR_INJ
0021 bool "Enable CEC error injection support"
0022 depends on CEC_PIN && DEBUG_FS
0023 help
0024 This option enables CEC error injection using debugfs.
0025
0026 menuconfig MEDIA_CEC_SUPPORT
0027 bool
0028 prompt "HDMI CEC drivers"
0029 default y if MEDIA_SUPPORT && !MEDIA_SUPPORT_FILTER
0030 help
0031 Enable support for HDMI CEC (Consumer Electronics Control),
0032 which is an optional HDMI feature.
0033
0034 Say Y when you have an HDMI receiver, transmitter or a USB CEC
0035 adapter that supports HDMI CEC.
0036
0037 if MEDIA_CEC_SUPPORT
0038 source "drivers/media/cec/i2c/Kconfig"
0039 source "drivers/media/cec/platform/Kconfig"
0040 source "drivers/media/cec/usb/Kconfig"
0041 endif
0042
0043 endmenu