Add support to run SMM handler in TSEG instead of ASEG
[coreboot.git] / src / include / cpu / x86 / bist.h
1 #ifndef CPU_X86_BIST_H
2 #define CPU_X86_BIST_H
3
4 static void report_bist_failure(u32 bist)
5 {
6         if (bist != 0) {
7 #if CONFIG_CACHE_AS_RAM
8                 printk(BIOS_EMERG, "BIST failed: %08x", bist);
9 #else
10                 print_emerg("BIST failed: ");
11                 print_emerg_hex32(bist);
12 #endif
13                 die("\n");
14
15         }
16 }
17
18 #endif /* CPU_Xf86_BIST_H */