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