aboutsummaryrefslogtreecommitdiff
path: root/src/include/console/qemu_debugcon.h
blob: 82dbd3fa919fbdb9123a0d8a2628d4e5e57a67b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#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 IS_ENABLED(CONFIG_CONSOLE_QEMU_DEBUGCON) && (ENV_ROMSTAGE || ENV_RAMSTAGE)
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