1# SPDX-License-Identifier: GPL-2.0-only 2menu "Display Engine Configuration" 3 depends on DRM && DRM_AMDGPU 4 5config DRM_AMD_DC 6 bool "AMD DC - Enable new display engine" 7 default y 8 select DRM_AMD_DC_DCN1_0 if X86 && !(KCOV_INSTRUMENT_ALL && KCOV_ENABLE_COMPARISONS) 9 help 10 Choose this option if you want to use the new display engine 11 support for AMDGPU. This adds required support for Vega and 12 Raven ASICs. 13 14config DRM_AMD_DC_DCN1_0 15 def_bool n 16 help 17 RV family support for display engine 18 19config DRM_AMD_DC_DCN2_0 20 bool "DCN 2.0 family" 21 default y 22 depends on DRM_AMD_DC && X86 23 depends on DRM_AMD_DC_DCN1_0 24 help 25 Choose this option if you want to have 26 Navi support for display engine 27 28config DRM_AMD_DC_DSC_SUPPORT 29 bool "DSC support" 30 default y 31 depends on DRM_AMD_DC && X86 32 depends on DRM_AMD_DC_DCN1_0 33 depends on DRM_AMD_DC_DCN2_0 34 help 35 Choose this option if you want to have 36 Dynamic Stream Compression support 37 38config DEBUG_KERNEL_DC 39 bool "Enable kgdb break in DC" 40 depends on DRM_AMD_DC 41 help 42 Choose this option 43 if you want to hit 44 kdgb_break in assert. 45 46endmenu 47