2022-04-28 11:44:28 +03:00
|
|
|
/*
|
|
|
|
* Syscall implementations for semihosting.
|
|
|
|
*
|
|
|
|
* Copyright (c) 2022 Linaro
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef SEMIHOSTING_SYSCALLS_H
|
|
|
|
#define SEMIHOSTING_SYSCALLS_H
|
|
|
|
|
2024-07-18 12:45:16 +03:00
|
|
|
#include "gdbstub/syscalls.h"
|
|
|
|
|
2022-04-28 11:44:28 +03:00
|
|
|
/*
|
|
|
|
* Argument loading from the guest is performed by the caller;
|
|
|
|
* results are returned via the 'complete' callback.
|
|
|
|
*
|
|
|
|
* String operands are in address/len pairs. The len argument may be 0
|
|
|
|
* (when the semihosting abi does not already provide the length),
|
|
|
|
* or non-zero (where it should include the terminating zero).
|
|
|
|
*/
|
|
|
|
|
2022-04-28 21:40:41 +03:00
|
|
|
typedef struct GuestFD GuestFD;
|
|
|
|
|
2022-04-28 11:44:28 +03:00
|
|
|
void semihost_sys_open(CPUState *cs, gdb_syscall_complete_cb complete,
|
|
|
|
target_ulong fname, target_ulong fname_len,
|
|
|
|
int gdb_flags, int mode);
|
|
|
|
|
2022-04-28 19:22:18 +03:00
|
|
|
void semihost_sys_close(CPUState *cs, gdb_syscall_complete_cb complete,
|
|
|
|
int fd);
|
|
|
|
|
2022-04-28 21:40:41 +03:00
|
|
|
void semihost_sys_read(CPUState *cs, gdb_syscall_complete_cb complete,
|
|
|
|
int fd, target_ulong buf, target_ulong len);
|
|
|
|
|
|
|
|
void semihost_sys_read_gf(CPUState *cs, gdb_syscall_complete_cb complete,
|
|
|
|
GuestFD *gf, target_ulong buf, target_ulong len);
|
|
|
|
|
2022-04-28 21:49:47 +03:00
|
|
|
void semihost_sys_write(CPUState *cs, gdb_syscall_complete_cb complete,
|
|
|
|
int fd, target_ulong buf, target_ulong len);
|
|
|
|
|
|
|
|
void semihost_sys_write_gf(CPUState *cs, gdb_syscall_complete_cb complete,
|
|
|
|
GuestFD *gf, target_ulong buf, target_ulong len);
|
|
|
|
|
2022-04-28 22:04:44 +03:00
|
|
|
void semihost_sys_lseek(CPUState *cs, gdb_syscall_complete_cb complete,
|
|
|
|
int fd, int64_t off, int gdb_whence);
|
|
|
|
|
2022-04-28 22:31:25 +03:00
|
|
|
void semihost_sys_isatty(CPUState *cs, gdb_syscall_complete_cb complete,
|
|
|
|
int fd);
|
|
|
|
|
2022-04-29 19:05:36 +03:00
|
|
|
void semihost_sys_flen(CPUState *cs, gdb_syscall_complete_cb fstat_cb,
|
|
|
|
gdb_syscall_complete_cb flen_cb,
|
|
|
|
int fd, target_ulong fstat_addr);
|
|
|
|
|
2022-04-30 01:45:25 +03:00
|
|
|
void semihost_sys_fstat(CPUState *cs, gdb_syscall_complete_cb complete,
|
|
|
|
int fd, target_ulong addr);
|
|
|
|
|
|
|
|
void semihost_sys_stat(CPUState *cs, gdb_syscall_complete_cb complete,
|
|
|
|
target_ulong fname, target_ulong fname_len,
|
|
|
|
target_ulong addr);
|
|
|
|
|
2022-04-29 19:29:27 +03:00
|
|
|
void semihost_sys_remove(CPUState *cs, gdb_syscall_complete_cb complete,
|
|
|
|
target_ulong fname, target_ulong fname_len);
|
|
|
|
|
2022-04-29 20:11:31 +03:00
|
|
|
void semihost_sys_rename(CPUState *cs, gdb_syscall_complete_cb complete,
|
|
|
|
target_ulong oname, target_ulong oname_len,
|
|
|
|
target_ulong nname, target_ulong nname_len);
|
|
|
|
|
2022-04-29 23:57:19 +03:00
|
|
|
void semihost_sys_system(CPUState *cs, gdb_syscall_complete_cb complete,
|
|
|
|
target_ulong cmd, target_ulong cmd_len);
|
|
|
|
|
2022-04-30 02:05:49 +03:00
|
|
|
void semihost_sys_gettimeofday(CPUState *cs, gdb_syscall_complete_cb complete,
|
|
|
|
target_ulong tv_addr, target_ulong tz_addr);
|
|
|
|
|
2022-05-02 21:15:40 +03:00
|
|
|
void semihost_sys_poll_one(CPUState *cs, gdb_syscall_complete_cb complete,
|
|
|
|
int fd, GIOCondition cond, int timeout);
|
|
|
|
|
2022-04-28 11:44:28 +03:00
|
|
|
#endif /* SEMIHOSTING_SYSCALLS_H */
|