diff options
author | Tim Crawford <tcrawford@system76.com> | 2023-07-11 15:48:42 -0600 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2023-07-14 18:49:33 +0000 |
commit | e3bbd72857c246731c8627c043c0f38735dcefc3 (patch) | |
tree | cbdb3b7c9e50c6668d6f59744f34e18930eabef6 /src/soc | |
parent | 40c1a41b2d7d1b2a53efb292307b48c1908c4cd9 (diff) |
soc/intel/cannonlake: Hook up ucode for CML-S
Hook up microcode from 3rdparty repo for:
- 06-a5-03 (CPUID signature: 0xa0653)
- 06-a5-05 (CPUID signature: 0xa0655)
Fixes loading microcode on system76/bonw14.
Change-Id: Ie6789420926fe46fc61ea6773f02dc07dc2e9b5e
Signed-off-by: Tim Crawford <tcrawford@system76.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/76415
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Jeremy Soller <jeremy@system76.com>
Diffstat (limited to 'src/soc')
-rw-r--r-- | src/soc/intel/cannonlake/Makefile.inc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/soc/intel/cannonlake/Makefile.inc b/src/soc/intel/cannonlake/Makefile.inc index 28c7cddcad..c747385baa 100644 --- a/src/soc/intel/cannonlake/Makefile.inc +++ b/src/soc/intel/cannonlake/Makefile.inc @@ -103,6 +103,8 @@ cpu_microcode_bins += 3rdparty/intel-microcode/intel-ucode/06-8e-0c else ifeq ($(CONFIG_SOC_INTEL_COMETLAKE),y) ifeq ($(CONFIG_SOC_INTEL_CANNONLAKE_PCH_H),y) cpu_microcode_bins += 3rdparty/intel-microcode/intel-ucode/06-a5-02 +cpu_microcode_bins += 3rdparty/intel-microcode/intel-ucode/06-a5-03 +cpu_microcode_bins += 3rdparty/intel-microcode/intel-ucode/06-a5-05 else cpu_microcode_bins += 3rdparty/intel-microcode/intel-ucode/06-8e-0c cpu_microcode_bins += 3rdparty/intel-microcode/intel-ucode/06-a6-00 |