diff options
author | Nico Huber <nico.h@gmx.de> | 2019-02-28 23:22:02 +0100 |
---|---|---|
committer | Nico Huber <nico.h@gmx.de> | 2019-03-03 10:54:45 +0000 |
commit | a1601136f20e3009b866f38b47438f4a157db29d (patch) | |
tree | c0c17660b2efb88b314a51fbfe016ac84efd8314 | |
parent | 2d0fe4ff22f0c1ca5d71b20339f3c9858c38b71a (diff) |
cpu/intel/model_1067x: Don't try to apply MCU a second time
Applying microcode updates a second time seems to be only necessary
on newer platforms (Nehalem+) for "uncore" updates.
Change-Id: Ia2ee9c70677190ffd1a08df1101d39a14fc2c384
Signed-off-by: Nico Huber <nico.h@gmx.de>
Reviewed-on: https://review.coreboot.org/c/31665
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
Reviewed-by: Masanori Ogino <masanori.ogino@gmail.com>
Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
-rw-r--r-- | src/cpu/intel/model_1067x/mp_init.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/cpu/intel/model_1067x/mp_init.c b/src/cpu/intel/model_1067x/mp_init.c index 16ea8fccb4..48909c25e9 100644 --- a/src/cpu/intel/model_1067x/mp_init.c +++ b/src/cpu/intel/model_1067x/mp_init.c @@ -87,9 +87,6 @@ static void per_cpu_smm_trigger(void) /* Relocate the SMM handler. */ smm_relocate(); - - /* After SMM relocation a 2nd microcode load is required. */ - intel_microcode_load_unlocked(microcode_patch); } static void post_mp_init(void) |