blob: ed1d8e083670edfca90038434c34a97cf9e74220 [file] [log] [blame]
/* SPDX-License-Identifier: GPL-2.0-only */
#ifndef _QEMU_DEBUGCON_H_
#define _QEMU_DEBUGCON_H_
#include <stdint.h>
void qemu_debugcon_init(void);
void qemu_debugcon_tx_byte(unsigned char data);
#if CONFIG(CONSOLE_QEMU_DEBUGCON) && \
(ENV_SEPARATE_ROMSTAGE || ENV_RAMSTAGE || ENV_POSTCAR || ENV_BOOTBLOCK)
static inline void __qemu_debugcon_init(void) { qemu_debugcon_init(); }
static inline void __qemu_debugcon_tx_byte(u8 data)
{
qemu_debugcon_tx_byte(data);
}
#else
static inline void __qemu_debugcon_init(void) {}
static inline void __qemu_debugcon_tx_byte(u8 data) {}
#endif
#endif