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