Attention is currently required from: Arthur Heymans. Hello Arthur Heymans,
I'd like you to do a code review. Please visit
https://review.coreboot.org/c/coreboot/+/57444
to review the following change.
Change subject: intel/xeon_sp/cpx: Hook up public microcode release ......................................................................
intel/xeon_sp/cpx: Hook up public microcode release
Change-Id: I7e575cb17e2004bd931f4fa1d05f17c4cdca29ba Signed-off-by: Arthur Heymans arthur@aheymans.xyz --- M Documentation/mainboard/ocp/deltalake.md M src/soc/intel/xeon_sp/cpx/Kconfig M src/soc/intel/xeon_sp/cpx/Makefile.inc 3 files changed, 4 insertions(+), 2 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/44/57444/1
diff --git a/Documentation/mainboard/ocp/deltalake.md b/Documentation/mainboard/ocp/deltalake.md index 4510866..a2b61b4 100644 --- a/Documentation/mainboard/ocp/deltalake.md +++ b/Documentation/mainboard/ocp/deltalake.md @@ -24,7 +24,8 @@ - FSP blob: The blob (Intel Cooper Lake Scalable Processor Firmware Support Package) is not yet available to the public. It will be made public soon by Intel with redistributable license. -- Microcode: Available through github.com:otcshare/Intel-Generic-Microcode.git. +- Microcode: Available through github.com/intel/Intel-Linux-Processor-Microcode-Data-Files. + coreboot.org mirrors this repo and by default the correct binary is included. - ME binary: Ignition binary will be made public soon by Intel with redistributable license. - ACM binaries: only required for CBnT enablement. Available under NDA with Intel. diff --git a/src/soc/intel/xeon_sp/cpx/Kconfig b/src/soc/intel/xeon_sp/cpx/Kconfig index 51fc927..4e3a796 100644 --- a/src/soc/intel/xeon_sp/cpx/Kconfig +++ b/src/soc/intel/xeon_sp/cpx/Kconfig @@ -4,7 +4,6 @@
config SOC_SPECIFIC_OPTIONS def_bool y - select MICROCODE_BLOB_NOT_HOOKED_UP
config FSP_HEADER_PATH string "Location of FSP headers" diff --git a/src/soc/intel/xeon_sp/cpx/Makefile.inc b/src/soc/intel/xeon_sp/cpx/Makefile.inc index b2e653e..526e1d8 100644 --- a/src/soc/intel/xeon_sp/cpx/Makefile.inc +++ b/src/soc/intel/xeon_sp/cpx/Makefile.inc @@ -18,4 +18,6 @@
CPPFLAGS_common += -I$(src)/soc/intel/xeon_sp/cpx/include -I$(src)/soc/intel/xeon_sp/cpx
+cpu_microcode_bins += 3rdparty/intel-microcode/intel-ucode/06-55-0b + endif ## CONFIG_SOC_INTEL_COOPERLAKE_SP