-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
drm/amd/display: Initial DC support for Beige Goby
[Why&How] Add Beige Goby (DCN303) resource, irq service, & dmub loader. v2: fix nbio include (Alex) Signed-off-by: Chris Park <Chris.Park@amd.com> Signed-off-by: Aurabindo Pillai <aurabindo.pillai@amd.com> Acked-by: Alex Deucher <alexander.deucher@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
- Loading branch information
Aurabindo Pillai
authored and
Alex Deucher
committed
May 20, 2021
1 parent
8198ace
commit cd6d421
Showing
27 changed files
with
2,651 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
# | ||
# (c) Copyright 2021 Advanced Micro Devices, Inc. All the rights reserved | ||
# | ||
# All rights reserved. This notice is intended as a precaution against | ||
# inadvertent publication and does not imply publication or any waiver | ||
# of confidentiality. The year included in the foregoing notice is the | ||
# year of creation of the work. | ||
# | ||
# Authors: AMD | ||
# | ||
# Makefile for dcn303. | ||
|
||
DCN3_03 = dcn303_init.o dcn303_hwseq.o dcn303_resource.o | ||
|
||
ifdef CONFIG_X86 | ||
CFLAGS_$(AMDDALPATH)/dc/dcn303/dcn303_resource.o := -msse | ||
endif | ||
|
||
ifdef CONFIG_PPC64 | ||
CFLAGS_$(AMDDALPATH)/dc/dcn303/dcn303_resource.o := -mhard-float -maltivec | ||
endif | ||
|
||
ifdef CONFIG_CC_IS_GCC | ||
ifeq ($(call cc-ifversion, -lt, 0701, y), y) | ||
IS_OLD_GCC = 1 | ||
endif | ||
CFLAGS_$(AMDDALPATH)/dc/dcn303/dcn303_resource.o += -mhard-float | ||
endif | ||
|
||
ifdef CONFIG_X86 | ||
ifdef IS_OLD_GCC | ||
# Stack alignment mismatch, proceed with caution. | ||
# GCC < 7.1 cannot compile code using `double` and -mpreferred-stack-boundary=3 | ||
# (8B stack alignment). | ||
CFLAGS_$(AMDDALPATH)/dc/dcn303/dcn303_resource.o += -mpreferred-stack-boundary=4 | ||
else | ||
CFLAGS_$(AMDDALPATH)/dc/dcn303/dcn303_resource.o += -msse2 | ||
endif | ||
endif | ||
|
||
AMD_DAL_DCN3_03 = $(addprefix $(AMDDALPATH)/dc/dcn303/,$(DCN3_03)) | ||
|
||
AMD_DISPLAY_FILES += $(AMD_DAL_DCN3_03) |
Oops, something went wrong.