Defines TargetInfo for 32- and 64-bit riscv binaries.
Signed-off-by: Anton Johansson <anjo@rev.ng>
---
configs/targets/riscv32-softmmu.c | 26 ++++++++++++++++++++++++++
configs/targets/riscv64-softmmu.c | 26 ++++++++++++++++++++++++++
configs/targets/meson.build | 1 +
3 files changed, 53 insertions(+)
diff --git a/configs/targets/riscv32-softmmu.c b/configs/targets/riscv32-softmmu.c
new file mode 100644
index 0000000000..897c93594b
--- /dev/null
+++ b/configs/targets/riscv32-softmmu.c
@@ -0,0 +1,26 @@
+/*
+ * QEMU binary/target API (qemu-system-riscv32)
+ *
+ * Copyright (c) rev.ng Labs Srl.
+ *
+ * SPDX-License-Identifier: GPL-2.0-or-later
+ */
+
+#include "qemu/osdep.h"
+#include "qemu/target-info-impl.h"
+#include "hw/riscv/machines-qom.h"
+#include "target/riscv/cpu-qom.h"
+
+static const TargetInfo target_info_riscv32_system = {
+ .target_name = "riscv32",
+ .target_arch = SYS_EMU_TARGET_RISCV32,
+ .long_bits = 32,
+ .cpu_type = TYPE_RISCV_CPU,
+ .machine_typename = TYPE_TARGET_RISCV32_MACHINE,
+ .endianness = ENDIAN_MODE_LITTLE,
+};
+
+const TargetInfo *target_info(void)
+{
+ return &target_info_riscv32_system;
+}
diff --git a/configs/targets/riscv64-softmmu.c b/configs/targets/riscv64-softmmu.c
new file mode 100644
index 0000000000..d2e4520d76
--- /dev/null
+++ b/configs/targets/riscv64-softmmu.c
@@ -0,0 +1,26 @@
+/*
+ * QEMU binary/target API (qemu-system-riscv64)
+ *
+ * Copyright (c) rev.ng Labs Srl.
+ *
+ * SPDX-License-Identifier: GPL-2.0-or-later
+ */
+
+#include "qemu/osdep.h"
+#include "qemu/target-info-impl.h"
+#include "hw/riscv/machines-qom.h"
+#include "target/riscv/cpu-qom.h"
+
+static const TargetInfo target_info_riscv64_system = {
+ .target_name = "riscv64",
+ .target_arch = SYS_EMU_TARGET_RISCV64,
+ .long_bits = 64,
+ .cpu_type = TYPE_RISCV_CPU,
+ .machine_typename = TYPE_TARGET_RISCV64_MACHINE,
+ .endianness = ENDIAN_MODE_LITTLE,
+};
+
+const TargetInfo *target_info(void)
+{
+ return &target_info_riscv64_system;
+}
diff --git a/configs/targets/meson.build b/configs/targets/meson.build
index cca2514eb5..2ab4d27eaf 100644
--- a/configs/targets/meson.build
+++ b/configs/targets/meson.build
@@ -1,5 +1,6 @@
foreach target : [
'arm-softmmu', 'aarch64-softmmu',
+ 'riscv32-softmmu', 'riscv64-softmmu'
]
config_target_info += {target : files(target + '.c')}
endforeach
--
2.51.0