44 lines · plain
1# SPDX-License-Identifier: GPL-2.0-only2config CEC_CORE3 tristate4 5config CEC_NOTIFIER6 bool7 8config CEC_PIN9 bool10 11menu "CEC support"12 13config MEDIA_CEC_RC14 bool "HDMI CEC RC integration"15 depends on CEC_CORE && RC_CORE16 depends on CEC_CORE=m || RC_CORE=y17 help18 Pass on CEC remote control messages to the RC framework.19 20config CEC_PIN_ERROR_INJ21 bool "Enable CEC error injection support"22 depends on CEC_PIN && DEBUG_FS23 help24 This option enables CEC error injection using debugfs.25 26menuconfig MEDIA_CEC_SUPPORT27 bool28 prompt "HDMI CEC drivers"29 default y if MEDIA_SUPPORT && !MEDIA_SUPPORT_FILTER30 help31 Enable support for HDMI CEC (Consumer Electronics Control),32 which is an optional HDMI feature.33 34 Say Y when you have an HDMI receiver, transmitter or a USB CEC35 adapter that supports HDMI CEC.36 37if MEDIA_CEC_SUPPORT38source "drivers/media/cec/i2c/Kconfig"39source "drivers/media/cec/platform/Kconfig"40source "drivers/media/cec/usb/Kconfig"41endif42 43endmenu44