• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
Keine Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Commit MetaInfo

Revisionc421e19e7eb4bf77d994caa7d0a1fd482b41bd7c (tree)
Zeit2019-06-18 23:01:18
AutorYoshinori Sato <ysato@user...>
CommiterYoshinori Sato

Log Message

Add rx-softmmu

Tested-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Signed-off-by: Yoshinori Sato <ysato@users.sourceforge.jp>
Message-Id: <20190607091116.49044-17-ysato@users.sourceforge.jp>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
pick ed65c02993 target/rx: Add RX to SysEmuTarget
pick 01372568ae tests: Add rx to machine-none-test.c
[PMD: Squashed patches from Richard Henderson modifying

qapi/common.json and tests/machine-none-test.c]

Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>

Ändern Zusammenfassung

Diff

--- a/arch_init.c
+++ b/arch_init.c
@@ -73,6 +73,8 @@ int graphic_depth = 32;
7373 #define QEMU_ARCH QEMU_ARCH_PPC
7474 #elif defined(TARGET_RISCV)
7575 #define QEMU_ARCH QEMU_ARCH_RISCV
76+#elif defined(TARGET_RX)
77+#define QEMU_ARCH QEMU_ARCH_RX
7678 #elif defined(TARGET_S390X)
7779 #define QEMU_ARCH QEMU_ARCH_S390X
7880 #elif defined(TARGET_SH4)
--- a/configure
+++ b/configure
@@ -7595,6 +7595,11 @@ case "$target_name" in
75957595 gdb_xml_files="riscv-64bit-cpu.xml riscv-64bit-fpu.xml riscv-64bit-csr.xml"
75967596 target_compiler=$cross_cc_riscv64
75977597 ;;
7598+ rx)
7599+ TARGET_ARCH=rx
7600+ bflt="yes"
7601+ target_compiler=$cross_cc_rx
7602+ ;;
75987603 sh4|sh4eb)
75997604 TARGET_ARCH=sh4
76007605 bflt="yes"
@@ -7815,6 +7820,9 @@ for i in $ARCH $TARGET_BASE_ARCH ; do
78157820 riscv*)
78167821 disas_config "RISCV"
78177822 ;;
7823+ rx)
7824+ disas_config "RX"
7825+ ;;
78187826 s390*)
78197827 disas_config "S390"
78207828 ;;
--- /dev/null
+++ b/default-configs/rx-softmmu.mak
@@ -0,0 +1,3 @@
1+# Default configuration for rx-softmmu
2+
3+CONFIG_RX_VIRT=y
--- a/hw/Kconfig
+++ b/hw/Kconfig
@@ -54,6 +54,7 @@ source nios2/Kconfig
5454 source openrisc/Kconfig
5555 source ppc/Kconfig
5656 source riscv/Kconfig
57+source rx/Kconfig
5758 source s390x/Kconfig
5859 source sh4/Kconfig
5960 source sparc/Kconfig
--- a/include/exec/poison.h
+++ b/include/exec/poison.h
@@ -26,6 +26,7 @@
2626 #pragma GCC poison TARGET_PPC
2727 #pragma GCC poison TARGET_PPC64
2828 #pragma GCC poison TARGET_ABI32
29+#pragma GCC poison TARGET_RX
2930 #pragma GCC poison TARGET_S390X
3031 #pragma GCC poison TARGET_SH4
3132 #pragma GCC poison TARGET_SPARC
--- a/include/sysemu/arch_init.h
+++ b/include/sysemu/arch_init.h
@@ -25,6 +25,7 @@ enum {
2525 QEMU_ARCH_NIOS2 = (1 << 17),
2626 QEMU_ARCH_HPPA = (1 << 18),
2727 QEMU_ARCH_RISCV = (1 << 19),
28+ QEMU_ARCH_RX = (1 << 20),
2829 };
2930
3031 extern const uint32_t arch_type;
--- a/qapi/common.json
+++ b/qapi/common.json
@@ -183,6 +183,7 @@
183183 # is true even for "qemu-system-x86_64".
184184 #
185185 # ppcemb: dropped in 3.1
186+# rx: added in 4.1
186187 #
187188 # Since: 3.0
188189 ##
@@ -190,6 +191,6 @@
190191 'data' : [ 'aarch64', 'alpha', 'arm', 'cris', 'hppa', 'i386', 'lm32',
191192 'm68k', 'microblaze', 'microblazeel', 'mips', 'mips64',
192193 'mips64el', 'mipsel', 'moxie', 'nios2', 'or1k', 'ppc',
193- 'ppc64', 'riscv32', 'riscv64', 's390x', 'sh4',
194+ 'ppc64', 'riscv32', 'riscv64', 'rx', 's390x', 'sh4',
194195 'sh4eb', 'sparc', 'sparc64', 'tricore', 'unicore32',
195196 'x86_64', 'xtensa', 'xtensaeb' ] }
--- a/tests/machine-none-test.c
+++ b/tests/machine-none-test.c
@@ -56,6 +56,7 @@ static struct arch2cpu cpus_map[] = {
5656 { "hppa", "hppa" },
5757 { "riscv64", "rv64gcsu-v1.10.0" },
5858 { "riscv32", "rv32gcsu-v1.9.1" },
59+ { "rx", "rx62n" },
5960 };
6061
6162 static const char *get_cpu_model_by_arch(const char *arch)