amd/stoneyridge: Relocate MCA error identification
Move the process of interrogating the Machine Check registers into its own file. This rearranges source code in preparation of supporting a Boot Error Record Table, which stoneyridge will use to report latent MC errors to the OS. BUG=b:65446699 TEST=inspect BERT region, and dmesg, on full patch stack. Use test data plus a failing Grunt system. Change-Id: Ia3275e9135dc96ba4a717c9371f38843fa1e3e64 Signed-off-by: Marshall Dawson <marshalldawson3rd@gmail.com> Reviewed-on: https://review.coreboot.org/28475 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Martin Roth <martinroth@google.com>
This commit is contained in:
committed by
Martin Roth
parent
4b0f6fa156
commit
0b4a1e220a
@@ -117,62 +117,6 @@ void stoney_init_cpus(struct device *dev)
|
||||
set_warm_reset_flag();
|
||||
}
|
||||
|
||||
static const char *const mca_bank_name[] = {
|
||||
"Load-store unit",
|
||||
"Instruction fetch unit",
|
||||
"Combined unit",
|
||||
"Reserved",
|
||||
"Northbridge",
|
||||
"Execution unit",
|
||||
"Floating point unit"
|
||||
};
|
||||
|
||||
static void check_mca(void)
|
||||
{
|
||||
int i;
|
||||
msr_t msr;
|
||||
int num_banks;
|
||||
|
||||
msr = rdmsr(MCG_CAP);
|
||||
num_banks = msr.lo & MCA_BANKS_MASK;
|
||||
|
||||
if (is_warm_reset()) {
|
||||
for (i = 0 ; i < num_banks ; i++) {
|
||||
if (i == 3) /* Reserved in Family 15h */
|
||||
continue;
|
||||
|
||||
msr = rdmsr(MC0_STATUS + (i * 4));
|
||||
if (msr.hi || msr.lo) {
|
||||
int core = cpuid_ebx(1) >> 24;
|
||||
|
||||
printk(BIOS_WARNING, "#MC Error: core %d, bank %d %s\n",
|
||||
core, i, mca_bank_name[i]);
|
||||
|
||||
printk(BIOS_WARNING, " MC%d_STATUS = %08x_%08x\n",
|
||||
i, msr.hi, msr.lo);
|
||||
msr = rdmsr(MC0_ADDR + (i * 4));
|
||||
printk(BIOS_WARNING, " MC%d_ADDR = %08x_%08x\n",
|
||||
i, msr.hi, msr.lo);
|
||||
msr = rdmsr(MC0_MISC + (i * 4));
|
||||
printk(BIOS_WARNING, " MC%d_MISC = %08x_%08x\n",
|
||||
i, msr.hi, msr.lo);
|
||||
msr = rdmsr(MC0_CTL + (i * 4));
|
||||
printk(BIOS_WARNING, " MC%d_CTL = %08x_%08x\n",
|
||||
i, msr.hi, msr.lo);
|
||||
msr = rdmsr(MC0_CTL_MASK + i);
|
||||
printk(BIOS_WARNING, " MC%d_CTL_MASK = %08x_%08x\n",
|
||||
i, msr.hi, msr.lo);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/* zero the machine check error status registers */
|
||||
msr.lo = 0;
|
||||
msr.hi = 0;
|
||||
for (i = 0 ; i < num_banks ; i++)
|
||||
wrmsr(MC0_STATUS + (i * 4), msr);
|
||||
}
|
||||
|
||||
static void model_15_init(struct device *dev)
|
||||
{
|
||||
check_mca();
|
||||
|
Reference in New Issue
Block a user