1 /* SPDX-License-Identifier: GPL-2.0-only */
3 #ifndef _QEMU_DEBUGCON_H_
4 #define _QEMU_DEBUGCON_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
);
19 static inline void __qemu_debugcon_init(void) {}
20 static inline void __qemu_debugcon_tx_byte(u8 data
) {}