2014-02-02 18:12:14 +01:00
|
|
|
#ifndef _QEMU_DEBUGCON_H_
|
|
|
|
#define _QEMU_DEBUGCON_H_
|
|
|
|
|
2014-02-26 14:19:04 +01:00
|
|
|
#include <rules.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
|
2014-02-02 18:12:14 +01:00
|
|
|
void qemu_debugcon_init(void);
|
|
|
|
void qemu_debugcon_tx_byte(unsigned char data);
|
|
|
|
|
2014-02-26 14:19:04 +01:00
|
|
|
#if 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
|
|
|
|
|
2014-02-02 18:12:14 +01:00
|
|
|
#endif
|