blob: 24a77887df1a6d88e8697f8b29ee9599cf640b19 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/* SPDX-License-Identifier: GPL-2.0-only */
#include <amdblocks/mca.h>
#include <cpu/x86/msr.h>
/* Check the Machine Check Architecture Extension registers */
void check_mca(void)
{
/* TODO: Implement MCAX register checking and BERT table generation. */
/* mca_clear_status uses the MCA registers and not the MCAX ones. Since they are
aliases, we can use either set of registers. */
mca_clear_status();
}
|