Skip to content

Commit 4340db0

Browse files
committed
drm/amdgpu: Temporarily disable broken Clang builds due to blown stack-frame
calculate_bandwidth() is presently broken on all !(X86_64 || SPARC64 || ARM64) architectures built with Clang (all released versions), whereby the stack frame gets blown up to well over 5k. This would cause an immediate kernel panic on most architectures. We'll revert this when the following bug report has been resolved: llvm/llvm-project#41896. Suggested-by: Arnd Bergmann <arnd@arndb.de> Signed-off-by: Lee Jones <lee@kernel.org>
1 parent eb70814 commit 4340db0

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

drivers/gpu/drm/amd/display/Kconfig

+7
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,20 @@ menu "Display Engine Configuration"
55
config DRM_AMD_DC
66
bool "AMD DC - Enable new display engine"
77
default y
8+
depends on BROKEN || !CC_IS_CLANG || X86_64 || SPARC64 || ARM64
89
select SND_HDA_COMPONENT if SND_HDA_CORE
910
select DRM_AMD_DC_DCN if (X86 || PPC_LONG_DOUBLE_128)
1011
help
1112
Choose this option if you want to use the new display engine
1213
support for AMDGPU. This adds required support for Vega and
1314
Raven ASICs.
1415

16+
calculate_bandwidth() is presently broken on all !(X86_64 || SPARC64 || ARM64)
17+
architectures built with Clang (all released versions), whereby the stack
18+
frame gets blown up to well over 5k. This would cause an immediate kernel
19+
panic on most architectures. We'll revert this when the following bug report
20+
has been resolved: https://github.com/llvm/llvm-project/issues/41896.
21+
1522
config DRM_AMD_DC_DCN
1623
def_bool n
1724
help

0 commit comments

Comments
 (0)