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/Kconfig | |
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/Kconfig')
-rw-r--r-- | src/soc/amd/genoa/Kconfig | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/soc/amd/genoa/Kconfig b/src/soc/amd/genoa/Kconfig index 2e30df749c..397a81f620 100644 --- a/src/soc/amd/genoa/Kconfig +++ b/src/soc/amd/genoa/Kconfig @@ -7,8 +7,10 @@ config SOC_SPECIFIC_OPTIONS def_bool y select ARCH_X86 select HAVE_EXP_X86_64_SUPPORT + select HAVE_SMI_HANDLER select RESET_VECTOR_IN_RAM select SOC_AMD_COMMON + select SOC_AMD_COMMON_BLOCK_ACPI select SOC_AMD_COMMON_BLOCK_ACPIMMIO select SOC_AMD_COMMON_BLOCK_AOAC select SOC_AMD_COMMON_BLOCK_BANKED_GPIOS @@ -25,6 +27,7 @@ config SOC_SPECIFIC_OPTIONS select SOC_AMD_COMMON_BLOCK_PSP_GEN2 select SOC_AMD_COMMON_BLOCK_PSP_SPL select SOC_AMD_COMMON_BLOCK_SMI + select SOC_AMD_COMMON_BLOCK_SMM select SOC_AMD_COMMON_BLOCK_SMU select SOC_AMD_COMMON_BLOCK_SMU_SX_ENTRY select SOC_AMD_COMMON_BLOCK_TSC @@ -151,6 +154,9 @@ config PSP_SOFTFUSE_BITS See #57299 (NDA) for additional bit definitions. endmenu +config SMM_TSEG_SIZE + hex + default 0x800000 #TODO: Check if the value of HEAP_SIZE is optimal config HEAP_SIZE |