drivers/asmedia: Add code to enable AHCI for ASM1061
[coreboot2.git] / src / include / cpu / x86 / bist.h
blob247e78cd197403f031f1a1e538874973e50ed20d
1 /* SPDX-License-Identifier: GPL-2.0-only */
3 #ifndef CPU_X86_BIST_H
4 #define CPU_X86_BIST_H
6 #include <console/console.h>
7 #include <stdint.h>
9 static inline void report_bist_failure(u32 bist)
11 if (bist != 0) {
12 printk(BIOS_EMERG, "BIST failed: %08x", bist);
13 die("\n");
17 #endif /* CPU_X86_BIST_H */