coreboot
coreboot is an Open Source project aimed at replacing the proprietary BIOS found in most computers.
cbnt.h
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 #ifndef SECURITY_INTEL_CBNT_H_
4 #define SECURITY_INTEL_CBNT_H_
5 
7 
8 #define CBNT_BASE_ADDRESS TXT_PUBLIC_SPACE
9 
10 #define CBNT_ERRORCODE (CBNT_BASE_ADDRESS + 0x30)
11 #define CBNT_BOOTSTATUS (CBNT_BASE_ADDRESS + 0xa0)
12 #define CBNT_BIOSACM_ERRORCODE (CBNT_BASE_ADDRESS + 0x328)
13 
14 void intel_cbnt_log_registers(void);
15 
16 #endif
void intel_cbnt_log_registers(void)
Definition: logging.c:120