Nico Huber has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/31199
Change subject: soc/intel/cpulib: Add debug message to mca_configure() ......................................................................
soc/intel/cpulib: Add debug message to mca_configure()
Change-Id: Idfe93e454cc0ce0d8e06e23beaddee2f11f5eedd Signed-off-by: Nico Huber nico.huber@secunet.com --- M src/soc/intel/common/block/cpu/cpulib.c 1 file changed, 2 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/99/31199/1
diff --git a/src/soc/intel/common/block/cpu/cpulib.c b/src/soc/intel/common/block/cpu/cpulib.c index d18b50c..ece79d6 100644 --- a/src/soc/intel/common/block/cpu/cpulib.c +++ b/src/soc/intel/common/block/cpu/cpulib.c @@ -323,6 +323,8 @@ int i; int num_banks;
+ printk(BIOS_DEBUG, "Clearing out pending MCEs\n"); + msr = rdmsr(IA32_MCG_CAP); num_banks = msr.lo & 0xff; msr.lo = msr.hi = 0;