From 073779b5efc8c055185962cc55fabbed5433fba0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20=C5=BBygowski?= Date: Wed, 29 Jun 2022 11:32:01 +0200 Subject: soc/intel/alderlake: Hook up ADL-P and ADL-S public FSP MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Update 3rdparty/fsp submodule to include AlderLake FSP. Hook up the Kconfig settings to point to Fsp.fd and headers for ADL-S and ADL-P platforms which the FSP has been published for. The FSP binaries are compliant with the specification revision 2.3 so update these settings accordingly. Although FSP header is v2.3 compliant, the features set of the FSP v2.3 is not being met. Signed-off-by: Michał Żygowski Change-Id: I577931da7952b681534bb78b7b2c7683cd99febd Reviewed-on: https://review.coreboot.org/c/coreboot/+/65519 Reviewed-by: Subrata Banik Tested-by: build bot (Jenkins) --- 3rdparty/fsp | 2 +- src/soc/intel/alderlake/Kconfig | 12 +++++++++--- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/3rdparty/fsp b/3rdparty/fsp index c607bab63b0c..3853be02e71a 160000 --- a/3rdparty/fsp +++ b/3rdparty/fsp @@ -1 +1 @@ -Subproject commit c607bab63b0c6f31c2b06b50ceecadf24ca428e1 +Subproject commit 3853be02e71adb8f87d2c792b9f3f855b798e428 diff --git a/src/soc/intel/alderlake/Kconfig b/src/soc/intel/alderlake/Kconfig index f6ef7a7e042c..117bf064eb03 100644 --- a/src/soc/intel/alderlake/Kconfig +++ b/src/soc/intel/alderlake/Kconfig @@ -26,12 +26,16 @@ config SOC_INTEL_ALDERLAKE_PCH_N config SOC_INTEL_ALDERLAKE_PCH_P bool select SOC_INTEL_ALDERLAKE + select HAVE_INTEL_FSP_REPO + select PLATFORM_USES_FSP2_3 help Choose this option if your mainboard has a PCH-P chipset. config SOC_INTEL_ALDERLAKE_PCH_S bool select SOC_INTEL_ALDERLAKE + select HAVE_INTEL_FSP_REPO + select PLATFORM_USES_FSP2_3 help Choose this option if your mainboard has a PCH-S chipset. @@ -70,8 +74,7 @@ config CPU_SPECIFIC_OPTIONS select MRC_SETTINGS_PROTECT select PARALLEL_MP_AP_WORK select MICROCODE_BLOB_UNDISCLOSED - select PLATFORM_USES_FSP2_2 if !SOC_INTEL_ALDERLAKE_PCH_S - select PLATFORM_USES_FSP2_3 if SOC_INTEL_ALDERLAKE_PCH_S + select PLATFORM_USES_FSP2_2 select PMC_GLOBAL_RESET_ENABLE_LOCK select SOC_INTEL_COMMON select SOC_INTEL_COMMON_ACPI_WAKE_SOURCE @@ -357,12 +360,15 @@ config FSP_HEADER_PATH string "Location of FSP headers" default "src/vendorcode/intel/fsp/fsp2_0/alderlake_n/" if SOC_INTEL_ALDERLAKE_PCH_N default "src/vendorcode/intel/fsp/fsp2_0/raptorlake/" if SOC_INTEL_RAPTORLAKE + default "3rdparty/fsp/AlderLakeFspBinPkg/Client/AlderLakeP/Include/" if SOC_INTEL_ALDERLAKE_PCH_P + default "3rdparty/fsp/AlderLakeFspBinPkg/Client/AlderLakeS/Include/" if SOC_INTEL_ALDERLAKE_PCH_S default "src/vendorcode/intel/fsp/fsp2_0/alderlake/" config FSP_FD_PATH string depends on FSP_USE_REPO - default "3rdparty/fsp/AlderLakeFspBinPkg/Fsp.fd" + default "3rdparty/fsp/AlderLakeFspBinPkg/Client/AlderLakeP/Fsp.fd" if SOC_INTEL_ALDERLAKE_PCH_P + default "3rdparty/fsp/AlderLakeFspBinPkg/Client/AlderLakeS/Fsp.fd" if SOC_INTEL_ALDERLAKE_PCH_S config SOC_INTEL_ALDERLAKE_DEBUG_CONSENT int "Debug Consent for ADL" -- cgit v1.2.3