diff options
author | Tim Crawford <tcrawford@system76.com> | 2020-11-24 08:42:02 -0700 |
---|---|---|
committer | Michael Niewöhner <foss@mniewoehner.de> | 2021-01-23 17:00:31 +0000 |
commit | 0698f0f3549fd0738497dfb9994b25be0069d54a (patch) | |
tree | fb4bf09a974d5a22587c4c232241ecc41d6571f5 /src/soc/intel/cannonlake | |
parent | 8818ddab828ab2cdf1244a204664dcc35cd069ae (diff) |
soc/intel/cometlake: Add ucode for CML-H
Add microcode from 3rdparty repo for:
- 06-a5-02 (CPUID signature: 0xa0652)
Change-Id: I95419f44a1e804ce31338fe6d863f156c655321b
Signed-off-by: Tim Crawford <tcrawford@system76.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/47915
Reviewed-by: Jeremy Soller <jeremy@system76.com>
Reviewed-by: Felix Singer <felixsinger@posteo.net>
Reviewed-by: Michael Niewöhner <foss@mniewoehner.de>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/soc/intel/cannonlake')
-rw-r--r-- | src/soc/intel/cannonlake/Makefile.inc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/soc/intel/cannonlake/Makefile.inc b/src/soc/intel/cannonlake/Makefile.inc index e0605817ae..28b5ad0170 100644 --- a/src/soc/intel/cannonlake/Makefile.inc +++ b/src/soc/intel/cannonlake/Makefile.inc @@ -108,7 +108,9 @@ else ifeq ($(CONFIG_SOC_INTEL_WHISKEYLAKE),y) cpu_microcode_bins += 3rdparty/intel-microcode/intel-ucode/06-8e-0b cpu_microcode_bins += 3rdparty/intel-microcode/intel-ucode/06-8e-0c else ifeq ($(CONFIG_SOC_INTEL_COMETLAKE),y) -ifneq ($(CONFIG_SOC_INTEL_CANNONLAKE_PCH_H),y) +ifeq ($(CONFIG_SOC_INTEL_CANNONLAKE_PCH_H),y) +cpu_microcode_bins += 3rdparty/intel-microcode/intel-ucode/06-a5-02 +else # Missing 06-a6-01 cpu_microcode_bins += 3rdparty/intel-microcode/intel-ucode/06-8e-0c cpu_microcode_bins += 3rdparty/intel-microcode/intel-ucode/06-a6-00 |