Subrata Banik has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/32553
Change subject: soc/intel/skylake: Remove redundent mca_configure() in ramstage ......................................................................
soc/intel/skylake: Remove redundent mca_configure() in ramstage
This patch removes redundent mca_configure() function call from ramstage to clear machine check exception. First time its getting called from soc_core_init() function inside cpu.c file.
Change-Id: I7e54fd07816c6317588ab6db06365937c4300ccd Signed-off-by: Subrata Banik subrata.banik@intel.com --- M src/soc/intel/skylake/finalize.c 1 file changed, 0 insertions(+), 4 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/53/32553/1
diff --git a/src/soc/intel/skylake/finalize.c b/src/soc/intel/skylake/finalize.c index 5d7e1e0..34738f2 100644 --- a/src/soc/intel/skylake/finalize.c +++ b/src/soc/intel/skylake/finalize.c @@ -20,7 +20,6 @@ #include <bootstate.h> #include <console/console.h> #include <console/post_codes.h> -#include <cpu/x86/mp.h> #include <cpu/x86/smm.h> #include <device/pci.h> #include <intelblocks/cpulib.h> @@ -142,9 +141,6 @@
pch_finalize_script(dev);
- printk(BIOS_DEBUG, "Clearing MCA.\n"); - mp_run_on_all_cpus(mca_configure, NULL, 17 * USECS_PER_SEC); - soc_lockdown(dev);
printk(BIOS_DEBUG, "Finalizing SMM.\n");