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