From acbf1541eeedec58ce8a31c6847b2296f40bf4bd Mon Sep 17 00:00:00 2001 From: Felix Held Date: Tue, 13 Jul 2021 16:44:18 +0200 Subject: src: use mca_clear_status function instead of open coding Change-Id: I53413b4051b79d7c2f24b1191ce877155e654400 Signed-off-by: Felix Held Reviewed-on: https://review.coreboot.org/c/coreboot/+/56259 Reviewed-by: Raul Rangel Tested-by: build bot (Jenkins) --- src/cpu/intel/model_206ax/model_206ax_init.c | 15 ++------------- 1 file changed, 2 insertions(+), 13 deletions(-) (limited to 'src/cpu/intel/model_206ax') diff --git a/src/cpu/intel/model_206ax/model_206ax_init.c b/src/cpu/intel/model_206ax/model_206ax_init.c index 541cb3bc67..09cad24b8b 100644 --- a/src/cpu/intel/model_206ax/model_206ax_init.c +++ b/src/cpu/intel/model_206ax/model_206ax_init.c @@ -297,18 +297,6 @@ unsigned int smbios_processor_external_clock(void) return SANDYBRIDGE_BCLK; } -static void configure_mca(void) -{ - msr_t msr; - int i; - const unsigned int num_banks = mca_get_bank_count(); - - msr.lo = msr.hi = 0; - /* This should only be done on a cold boot */ - for (i = 0; i < num_banks; i++) - wrmsr(IA32_MC_STATUS(i), msr); -} - static void model_206ax_report(void) { static const char *const mode[] = {"NOT ", ""}; @@ -340,7 +328,8 @@ static void model_206ax_init(struct device *cpu) { /* Clear out pending MCEs */ - configure_mca(); + /* This should only be done on a cold boot */ + mca_clear_status(); /* Print infos */ model_206ax_report(); -- cgit v1.2.3