soc/amd/common/psp/psp_def.h: increase P2C_BUFFER_MAXSIZE
[coreboot2.git] / src / include / console / simnow.h
blob9a9d6792b8a45f5b8750483778791ed5d566cb58
1 /* SPDX-License-Identifier: GPL-2.0-only */
3 #ifndef CONSOLE_SIMNOW_H
4 #define CONSOLE_SIMNOW_H
6 #include <stdint.h>
8 void simnow_console_init(void);
9 void simnow_console_tx_byte(unsigned char data);
11 #define __SIMNOW_CONSOLE_ENABLE__ CONFIG(CONSOLE_AMD_SIMNOW)
13 #if __SIMNOW_CONSOLE_ENABLE__
14 static inline void __simnow_console_init(void)
16 simnow_console_init();
19 static inline void __simnow_console_tx_byte(u8 data)
21 simnow_console_tx_byte(data);
23 #else
24 static inline void __simnow_console_init(void) {}
25 static inline void __simnow_console_tx_byte(u8 data) {}
26 #endif
28 #endif /* CONSOLE_SIMNOW_H */