diff options
author | Angel Pons <th3fanbus@gmail.com> | 2023-02-08 11:10:00 +0100 |
---|---|---|
committer | Stefan Reinauer <stefan.reinauer@coreboot.org> | 2023-05-27 00:03:12 +0000 |
commit | 16e3d6acd4fb49e9da42d6e529f7c5b6a2728162 (patch) | |
tree | 269d6412e5c671f86b3aeb4572e0005a127c430d | |
parent | e8183599aec0d09789da40fb720339f9f42a53df (diff) |
cpu/intel/haswell: Add Broadwell Trad µcode updates
Include µcode updates for Broadwell Trad(itional) CPUs.
Tested on Asrock Z97 Extreme6 with an i5-5675C, µcode update loads:
CPU id(40671) ucode:00000022 Intel(R) Core(TM) i5-5675C CPU @ 3.10GHz
Change-Id: I54bb2e767f008b21dcf5d176f8b92a56dcabd129
Signed-off-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/72894
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Reviewed-by: Paul Menzel <paulepanter@mailbox.org>
-rw-r--r-- | src/cpu/intel/haswell/Makefile.inc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/cpu/intel/haswell/Makefile.inc b/src/cpu/intel/haswell/Makefile.inc index 5516184699..2adc7394da 100644 --- a/src/cpu/intel/haswell/Makefile.inc +++ b/src/cpu/intel/haswell/Makefile.inc @@ -30,4 +30,6 @@ else cpu_microcode_bins += $(wildcard 3rdparty/intel-microcode/intel-ucode/06-3c-*) # Crystal Well (Trad) cpu_microcode_bins += $(wildcard 3rdparty/intel-microcode/intel-ucode/06-46-*) +# Broadwell Trad +cpu_microcode_bins += $(wildcard 3rdparty/intel-microcode/intel-ucode/06-47-*) endif |