soc/intel/xeon_sp/spr: Drop microcode constraints
[coreboot2.git] / src / include / console / qemu_debugcon.h
blobed1d8e083670edfca90038434c34a97cf9e74220
1 /* SPDX-License-Identifier: GPL-2.0-only */
3 #ifndef _QEMU_DEBUGCON_H_
4 #define _QEMU_DEBUGCON_H_
6 #include <stdint.h>
8 void qemu_debugcon_init(void);
9 void qemu_debugcon_tx_byte(unsigned char data);
11 #if CONFIG(CONSOLE_QEMU_DEBUGCON) && \
12 (ENV_SEPARATE_ROMSTAGE || ENV_RAMSTAGE || ENV_POSTCAR || ENV_BOOTBLOCK)
13 static inline void __qemu_debugcon_init(void) { qemu_debugcon_init(); }
14 static inline void __qemu_debugcon_tx_byte(u8 data)
16 qemu_debugcon_tx_byte(data);
18 #else
19 static inline void __qemu_debugcon_init(void) {}
20 static inline void __qemu_debugcon_tx_byte(u8 data) {}
21 #endif
23 #endif