diff options
author | Lean Sheng Tan <lean.sheng.tan@intel.com> | 2021-06-04 08:54:29 -0700 |
---|---|---|
committer | Werner Zeh <werner.zeh@siemens.com> | 2021-06-10 09:53:22 +0000 |
commit | 79fcadb3c46bab00c3d819bcf5c1937ccd9a05b0 (patch) | |
tree | c4d7e619d1334edf66b40be5db28ef29e8af23ce /src | |
parent | bc88f898c274a8a41f911d28906048b27fd096e6 (diff) |
soc/intel/elkhartlake: Use FSP from FSP repo by default
Select 'HAVE_INTEL_FSP_REPO' so that the FSP binary from the FSP
repository is used by default. Also, use the FSP headers from the FSP
repository instead.
Signed-off-by: Lean Sheng Tan <lean.sheng.tan@intel.com>
Change-Id: I0c1bcb07ed0f73e1d5ada5f6f16b84816c4ef3d7
Reviewed-on: https://review.coreboot.org/c/coreboot/+/55229
Reviewed-by: Mario Scheithauer <mario.scheithauer@siemens.com>
Reviewed-by: Werner Zeh <werner.zeh@siemens.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src')
-rw-r--r-- | src/soc/intel/elkhartlake/Kconfig | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/soc/intel/elkhartlake/Kconfig b/src/soc/intel/elkhartlake/Kconfig index bb1766a49f..29ce195b53 100644 --- a/src/soc/intel/elkhartlake/Kconfig +++ b/src/soc/intel/elkhartlake/Kconfig @@ -62,6 +62,7 @@ config CPU_SPECIFIC_OPTIONS select UDELAY_TSC select UDK_202005_BINDING select DISPLAY_FSP_VERSION_INFO + select HAVE_INTEL_FSP_REPO config MAX_CPUS int @@ -188,10 +189,12 @@ config CBFS_SIZE default 0x200000 config FSP_HEADER_PATH - default "src/vendorcode/intel/fsp/fsp2_0/elkhartlake/" + default "3rdparty/fsp/ElkhartLakeFspBinPkg/Include/" config FSP_FD_PATH - default "3rdparty/fsp/ElkhartLakeFspBinPkg/Fsp.fd" + string + depends on FSP_USE_REPO + default "3rdparty/fsp/ElkhartLakeFspBinPkg/FspBin/FSPRel.bin" config SOC_INTEL_ELKHARTLAKE_DEBUG_CONSENT int "Debug Consent for EHL" |