Kconfig 971 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. config CEC_CORE
  3. tristate
  4. config CEC_NOTIFIER
  5. bool
  6. config CEC_PIN
  7. bool
  8. menu "CEC support"
  9. config MEDIA_CEC_RC
  10. bool "HDMI CEC RC integration"
  11. depends on CEC_CORE && RC_CORE
  12. depends on CEC_CORE=m || RC_CORE=y
  13. help
  14. Pass on CEC remote control messages to the RC framework.
  15. config CEC_PIN_ERROR_INJ
  16. bool "Enable CEC error injection support"
  17. depends on CEC_PIN && DEBUG_FS
  18. help
  19. This option enables CEC error injection using debugfs.
  20. menuconfig MEDIA_CEC_SUPPORT
  21. bool
  22. prompt "HDMI CEC drivers"
  23. default y if MEDIA_SUPPORT && !MEDIA_SUPPORT_FILTER
  24. help
  25. Enable support for HDMI CEC (Consumer Electronics Control),
  26. which is an optional HDMI feature.
  27. Say Y when you have an HDMI receiver, transmitter or a USB CEC
  28. adapter that supports HDMI CEC.
  29. if MEDIA_CEC_SUPPORT
  30. source "drivers/media/cec/i2c/Kconfig"
  31. source "drivers/media/cec/platform/Kconfig"
  32. source "drivers/media/cec/usb/Kconfig"
  33. endif
  34. endmenu