soc/amd/cezanne/mca: add empty mca_check_all_banks function
This will allow factoring out and moving check_mca() to soc/amd/common. Change-Id: I92c7657baef17c248a5aef1eda268e9647502837 Signed-off-by: Felix Held <felix-coreboot@felixheld.de> Reviewed-on: https://review.coreboot.org/c/coreboot/+/56280 Reviewed-by: Raul Rangel <rrangel@chromium.org> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
parent
f1093af1f6
commit
dc970fc039
|
@ -3,11 +3,15 @@
|
||||||
#include <amdblocks/mca.h>
|
#include <amdblocks/mca.h>
|
||||||
#include <cpu/x86/msr.h>
|
#include <cpu/x86/msr.h>
|
||||||
|
|
||||||
|
static void mca_check_all_banks(void)
|
||||||
|
{
|
||||||
|
/* TODO: Implement MCAX register checking and BERT table generation. */
|
||||||
|
}
|
||||||
|
|
||||||
/* Check the Machine Check Architecture Extension registers */
|
/* Check the Machine Check Architecture Extension registers */
|
||||||
void check_mca(void)
|
void check_mca(void)
|
||||||
{
|
{
|
||||||
/* TODO: Implement MCAX register checking and BERT table generation. */
|
mca_check_all_banks();
|
||||||
|
|
||||||
/* mca_clear_status uses the MCA registers and not the MCAX ones. Since they are
|
/* mca_clear_status uses the MCA registers and not the MCAX ones. Since they are
|
||||||
aliases, we can use either set of registers. */
|
aliases, we can use either set of registers. */
|
||||||
mca_clear_status();
|
mca_clear_status();
|
||||||
|
|
Loading…
Reference in New Issue