diff options
author | Tim Crawford <tcrawford@system76.com> | 2023-02-08 08:49:16 -0700 |
---|---|---|
committer | Felix Singer <felixsinger@posteo.net> | 2023-03-02 19:40:31 +0000 |
commit | 0b101fc338b7a2ca4ac5f351a7bbbb5ceb7697f6 (patch) | |
tree | df46e1653364765622b614e079c4ea0f2560ff89 | |
parent | 7c5625b5c8001f45ec45c415ca1639680c8754e9 (diff) | |
download | coreboot-0b101fc338b7a2ca4ac5f351a7bbbb5ceb7697f6.tar.gz coreboot-0b101fc338b7a2ca4ac5f351a7bbbb5ceb7697f6.tar.bz2 coreboot-0b101fc338b7a2ca4ac5f351a7bbbb5ceb7697f6.zip |
soc/intel/alderlake: Hook up ucode for RPL-S/HX B0
Hook up microcode from 3rdparty repo for:
- 06-b7-01 (CPUID signature: 0xb0671)
Verified microcode blob was in CBFS on Clevo PD50SNE (system76/serw13),
which has an i9-13900HX.
Change-Id: If91ff9233a5e1dd1db76edf33a76c55f5dddc9b4
Signed-off-by: Tim Crawford <tcrawford@system76.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/72927
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Felix Singer <felixsinger@posteo.net>
-rw-r--r-- | src/soc/intel/alderlake/Makefile.inc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/soc/intel/alderlake/Makefile.inc b/src/soc/intel/alderlake/Makefile.inc index 943b158564fd..5c2b9dcdf859 100644 --- a/src/soc/intel/alderlake/Makefile.inc +++ b/src/soc/intel/alderlake/Makefile.inc @@ -76,6 +76,8 @@ ifeq ($(CONFIG_SOC_INTEL_ALDERLAKE_PCH_S),y) cpu_microcode_bins += 3rdparty/intel-microcode/intel-ucode/06-97-02 # ADL-S H0 cpu_microcode_bins += 3rdparty/intel-microcode/intel-ucode/06-97-05 +# RPL-S/HX B0 +cpu_microcode_bins += 3rdparty/intel-microcode/intel-ucode/06-b7-01 else ifneq ($(CONFIG_SOC_INTEL_ALDERLAKE_PCH_N),y) # 06-9a-00, 06-9a-01 are ADL-P/ADL-M Engineering Samples |