repo.or.cz
/
coreboot2.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
drivers/asmedia: Add code to enable AHCI for ASM1061
[coreboot2.git]
/
src
/
include
/
cpu
/
x86
/
bist.h
blob
247e78cd197403f031f1a1e538874973e50ed20d
1
/* SPDX-License-Identifier: GPL-2.0-only */
2
3
#ifndef CPU_X86_BIST_H
4
#define CPU_X86_BIST_H
5
6
#include <console/console.h>
7
#include <stdint.h>
8
9
static
inline
void
report_bist_failure
(
u32 bist
)
10
{
11
if
(
bist
!=
0
) {
12
printk
(
BIOS_EMERG
,
"BIST failed: %08x"
,
bist
);
13
die
(
"
\n
"
);
14
}
15
}
16
17
#endif
/* CPU_X86_BIST_H */