Linux Audio

Check our new training course

Embedded Linux training

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