1 /* 2 * Semihosting Console 3 * 4 * Copyright (c) 2019 Linaro Ltd 5 * 6 * SPDX-License-Identifier: GPL-2.0-or-later 7 */ 8 9 #ifndef SEMIHOST_CONSOLE_H 10 #define SEMIHOST_CONSOLE_H 11 12 #include "cpu.h" 13 14 /** 15 * qemu_semihosting_console_outs: 16 * @env: CPUArchState 17 * @s: host address of null terminated guest string 18 * 19 * Send a null terminated guest string to the debug console. This may 20 * be the remote gdb session if a softmmu guest is currently being 21 * debugged. 22 * 23 * Returns: number of bytes written. 24 */ 25 int qemu_semihosting_console_outs(CPUArchState *env, target_ulong s); 26 27 /** 28 * qemu_semihosting_console_outc: 29 * @env: CPUArchState 30 * @s: host address of null terminated guest string 31 * 32 * Send single character from guest memory to the debug console. This 33 * may be the remote gdb session if a softmmu guest is currently being 34 * debugged. 35 * 36 * Returns: nothing 37 */ 38 void qemu_semihosting_console_outc(CPUArchState *env, target_ulong c); 39 40 /** 41 * qemu_semihosting_console_inc: 42 * @env: CPUArchState 43 * 44 * Receive single character from debug console. As this call may block 45 * if no data is available we suspend the CPU and will re-execute the 46 * instruction when data is there. Therefore two conditions must be met: 47 * 48 * - CPUState is synchronized before calling this function 49 * - pc is only updated once the character is successfully returned 50 * 51 * Returns: character read OR cpu_loop_exit! 52 */ 53 target_ulong qemu_semihosting_console_inc(CPUArchState *env); 54 55 /** 56 * qemu_semihosting_log_out: 57 * @s: pointer to string 58 * @len: length of string 59 * 60 * Send a string to the debug output. Unlike console_out these strings 61 * can't be sent to a remote gdb instance as they don't exist in guest 62 * memory. 63 * 64 * Returns: number of bytes written 65 */ 66 int qemu_semihosting_log_out(const char *s, int len); 67 68 #endif /* SEMIHOST_CONSOLE_H */ 69