Attention is currently required from: Jérémy Compostella.
Hello Jérémy Compostella,
I'd like you to do a code review. Please visit
https://review.coreboot.org/c/coreboot/+/81045?usp=email
to review the following change.
Change subject: drivers/intel/fsp2_0: Add PLATFORM_USES_FSP2_4 ......................................................................
drivers/intel/fsp2_0: Add PLATFORM_USES_FSP2_4
Change-Id: I4100c7203fdabeaaab8e05076fe8ebf5924c3f4d Signed-off-by: Jeremy Compostella jeremy.compostella@intel.com Signed-off-by: Shuo Liu shuo.liu@intel.com --- M src/drivers/intel/fsp2_0/Kconfig 1 file changed, 12 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/45/81045/1
diff --git a/src/drivers/intel/fsp2_0/Kconfig b/src/drivers/intel/fsp2_0/Kconfig index e27249f..2c8bdc4 100644 --- a/src/drivers/intel/fsp2_0/Kconfig +++ b/src/drivers/intel/fsp2_0/Kconfig @@ -39,6 +39,18 @@ 1. Added ExtendedImageRevision field in FSP_INFO_HEADER 2. Added FSP_NON_VOLATILE_STORAGE_HOB2
+config PLATFORM_USES_FSP2_4 + bool + default n + select PLATFORM_USES_FSP2_3 + help + Include FSP 2.4 wrappers and functionality. + Features added into FSP 2.4 specification that impact coreboot are: + 1. FSP-M multi phase init support + 2. FSPM_ARCH2_UPD and FSPS_ARCH2_UPD data structures must be + used in place of FSPM_ARCH_UPD and FSPS_ARCH_UPD respectively + 3. 64-bits support + if PLATFORM_USES_FSP2_0
config PLATFORM_USES_FSP2_X86_32