src: use mca_clear_status function instead of open coding

Change-Id: I53413b4051b79d7c2f24b1191ce877155e654400
Signed-off-by: Felix Held <felix-coreboot@felixheld.de>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/56259
Reviewed-by: Raul Rangel <rrangel@chromium.org>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
Felix Held
2021-07-13 16:44:18 +02:00
parent bf1f1df41b
commit acbf1541ee
9 changed files with 11 additions and 72 deletions

View File

@ -527,12 +527,10 @@ static void configure_mca(void)
for (i = 0; i < num_banks; i++)
wrmsr(IA32_MC_CTL(i), msr);
msr.lo = msr.hi = 0;
/* TODO(adurbin): This should only be done on a cold boot. Also, some
* of these banks are core vs package scope. For now every CPU clears
* every bank. */
for (i = 0; i < num_banks; i++)
wrmsr(IA32_MC_STATUS(i), msr);
mca_clear_status();
}
/* All CPUs including BSP will run the following function. */