Kconfig 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. # SPDX-License-Identifier: GPL-2.0
  2. menu "ARM devices"
  3. config DRM_HDLCD
  4. tristate "ARM HDLCD"
  5. depends on DRM && OF && (ARM || ARM64 || COMPILE_TEST)
  6. depends on COMMON_CLK
  7. select DRM_KMS_HELPER
  8. select DRM_GEM_DMA_HELPER
  9. help
  10. Choose this option if you have an ARM High Definition Colour LCD
  11. controller.
  12. If M is selected the module will be called hdlcd.
  13. config DRM_HDLCD_SHOW_UNDERRUN
  14. bool "Show underrun conditions"
  15. depends on DRM_HDLCD
  16. default n
  17. help
  18. Enable this option to show in red colour the pixels that the
  19. HDLCD device did not fetch from framebuffer due to underrun
  20. conditions.
  21. config DRM_MALI_DISPLAY
  22. tristate "ARM Mali Display Processor"
  23. depends on DRM && OF && (ARM || ARM64 || COMPILE_TEST)
  24. depends on COMMON_CLK
  25. select DRM_KMS_HELPER
  26. select DRM_GEM_DMA_HELPER
  27. select VIDEOMODE_HELPERS
  28. help
  29. Choose this option if you want to compile the ARM Mali Display
  30. Processor driver. It supports the DP500, DP550 and DP650 variants
  31. of the hardware.
  32. If compiled as a module it will be called mali-dp.
  33. source "drivers/gpu/drm/arm/display/Kconfig"
  34. endmenu