summaryrefslogtreecommitdiff
path: root/src/include/cpu/x86/bist.h
blob: 8232b9c6873b4c64a0a5cd009c9b6472b8a4c3ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef CPU_X86_BIST_H
#define CPU_X86_BIST_H

static void report_bist_failure(u32 bist)
{
	if (bist != 0) {
#if CONFIG_USE_DCACHE_RAM
                printk(BIOS_EMERG, "BIST failed: %08x", bist);
#else
		print_emerg("BIST failed: ");
		print_emerg_hex32(bist);
#endif
		die("\n");

	}
}

#endif /* CPU_Xf86_BIST_H */