Kconfig 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. # SPDX-License-Identifier: MIT
  2. config DRM_DP_AUX_BUS
  3. tristate
  4. depends on DRM
  5. depends on OF || COMPILE_TEST
  6. config DRM_DISPLAY_HELPER
  7. tristate
  8. depends on DRM
  9. help
  10. DRM helpers for display adapters.
  11. config DRM_DISPLAY_DP_HELPER
  12. bool
  13. depends on DRM_DISPLAY_HELPER
  14. help
  15. DRM display helpers for DisplayPort.
  16. config DRM_DISPLAY_HDCP_HELPER
  17. bool
  18. depends on DRM_DISPLAY_HELPER
  19. help
  20. DRM display helpers for HDCP.
  21. config DRM_DISPLAY_HDMI_HELPER
  22. bool
  23. depends on DRM_DISPLAY_HELPER
  24. help
  25. DRM display helpers for HDMI.
  26. config DRM_DP_AUX_CHARDEV
  27. bool "DRM DP AUX Interface"
  28. depends on DRM && DRM_DISPLAY_HELPER
  29. select DRM_DISPLAY_DP_HELPER
  30. help
  31. Choose this option to enable a /dev/drm_dp_auxN node that allows to
  32. read and write values to arbitrary DPCD registers on the DP aux
  33. channel.
  34. config DRM_DP_CEC
  35. bool "Enable DisplayPort CEC-Tunneling-over-AUX HDMI support"
  36. depends on DRM && DRM_DISPLAY_HELPER
  37. select DRM_DISPLAY_DP_HELPER
  38. select CEC_CORE
  39. help
  40. Choose this option if you want to enable HDMI CEC support for
  41. DisplayPort/USB-C to HDMI adapters.
  42. Note: not all adapters support this feature, and even for those
  43. that do support this they often do not hook up the CEC pin.