diff options
author | Arthur Heymans <arthur@aheymans.xyz> | 2023-07-14 22:58:49 +0200 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2023-11-13 15:15:49 +0000 |
commit | 2e2f1661bb306d7b00b4f121148e9613c5d14e72 (patch) | |
tree | 9a6e42495c0af1d58fa1c8a9ab74c288e684f71e /src/soc/amd/genoa/Makefile.inc | |
parent | 2edcd93c12df65398279235229f5654119ea4167 (diff) |
soc/amd/genoa: Hook SMP and SMM init
All CPUs properly come out of reset and relocate SMM.
Signed-off-by: Arthur Heymans <arthur@aheymans.xyz>
Change-Id: I8c2d976addacd5a2ba70eb629510128853b9f847
Reviewed-on: https://review.coreboot.org/c/coreboot/+/76523
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
Diffstat (limited to 'src/soc/amd/genoa/Makefile.inc')
-rw-r--r-- | src/soc/amd/genoa/Makefile.inc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/soc/amd/genoa/Makefile.inc b/src/soc/amd/genoa/Makefile.inc index 506f6cf279..96acc43b31 100644 --- a/src/soc/amd/genoa/Makefile.inc +++ b/src/soc/amd/genoa/Makefile.inc @@ -14,8 +14,12 @@ romstage-y += romstage.c ramstage-y += aoac.c ramstage-y += chip.c +ramstage-y += cpu.c ramstage-y += domain.c ramstage-y += root_complex.c +ramstage-y += smihandler.c + +smm-y += smihandler.c CPPFLAGS_common += -I$(src)/soc/amd/genoa/include |