MAINTAINERS: Add Matt as a maintainer for Star Labs
[coreboot2.git] / src / soc / amd / common / block / include / amdblocks / stb.h
blobdb032b9dde8f36bbe250409514f20736d9004545
1 /* SPDX-License-Identifier: GPL-2.0-only */
3 #ifndef AMD_BLOCK_STB_H
4 #define AMD_BLOCK_STB_H
6 #include <types.h>
8 #define AMD_STB_PMI_0 0x30600
10 #define AMD_STB_COREBOOT_POST_PREFIX 0xBA000000
11 #define AMD_STB_COREBOOT_MARKER 0xBAADF00D
13 struct stb_entry_struct {
14 uint32_t ts;
15 uint32_t val;
18 void write_stb_to_console(void);
19 void add_stb_to_timestamp_buffer(void);
21 #endif /* AMD_BLOCK_STB_H */