[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH v6 00/15] TriCore architecture guest implementation
From: |
Bastian Koppelmann |
Subject: |
[Qemu-devel] [PATCH v6 00/15] TriCore architecture guest implementation |
Date: |
Fri, 22 Aug 2014 17:52:21 +0100 |
Hi,
my aim is to add Infineon's TriCore architecture to QEMU. This series of
patches adds the target stubs, a basic testboard and a softmmu for system mode
emulation. Furthermore it adds all the 16 bit long instructions of the
architecture grouped by opcode format.
After this series of patches. Another one will follow, which adds a lot of the
32 bit long instructions.
All the best
Bastian
Richard Henderson: Thanks alot for the great feedback, I really appreciate it.
v5 -> v6:
- Add myself to MAINTAINERS
- tricore_testboard: Fix machine name containing blanks.
- get_physical_address: Add PAGE_EXEC permission.
- gen_shaci: Add calculation of PSW.C to shift_count = -32 case.
- gen_intermediate_code_internal: Replace gen_goto_tb with setting of
next_pc and exit_tb(0).
- SBC/SBR_JEQ: Negate condition.
- Formating fixes.
Bastian Koppelmann (15):
target-tricore: Add target stubs and qom-cpu
target-tricore: Add board for systemmode
target-tricore: Add softmmu support
target-tricore: Add initialization for translation and activate target
target-tricore: Add masks and opcodes for decoding
target-tricore: Add instructions of SRC opcode format
target-tricore: Add instructions of SRR opcode format
target-tricore: Add instructions of SSR opcode format
target-tricore: Add instructions of SRRS and SLRO opcode format
target-tricore: Add instructions of SB opcode format
target-tricore: Add instructions of SBC and SBRN opcode format
target-tricore: Add instructions of SBR opcode format
target-tricore: Add instructions of SC opcode format
target-tricore: Add instructions of SLR, SSRO and SRO opcode format
target-tricore: Add instructions of SR opcode format
MAINTAINERS | 6 +
arch_init.c | 2 +
configure | 5 +
cpu-exec.c | 11 +-
cpus.c | 6 +
default-configs/tricore-softmmu.mak | 3 +
hw/tricore/Makefile.objs | 1 +
hw/tricore/tricore_testboard.c | 129 ++++
include/elf.h | 2 +
include/hw/tricore/tricore.h | 54 ++
include/sysemu/arch_init.h | 1 +
target-tricore/Makefile.objs | 1 +
target-tricore/cpu-qom.h | 71 ++
target-tricore/cpu.c | 191 +++++
target-tricore/cpu.h | 400 ++++++++++
target-tricore/helper.c | 144 ++++
target-tricore/helper.h | 25 +
target-tricore/op_helper.c | 392 ++++++++++
target-tricore/translate.c | 1263 +++++++++++++++++++++++++++++++
target-tricore/tricore-defs.h | 28 +
target-tricore/tricore-opcodes.h | 1406 +++++++++++++++++++++++++++++++++++
21 files changed, 4140 insertions(+), 1 deletion(-)
create mode 100644 default-configs/tricore-softmmu.mak
create mode 100644 hw/tricore/Makefile.objs
create mode 100644 hw/tricore/tricore_testboard.c
create mode 100644 include/hw/tricore/tricore.h
create mode 100644 target-tricore/Makefile.objs
create mode 100644 target-tricore/cpu-qom.h
create mode 100644 target-tricore/cpu.c
create mode 100644 target-tricore/cpu.h
create mode 100644 target-tricore/helper.c
create mode 100644 target-tricore/helper.h
create mode 100644 target-tricore/op_helper.c
create mode 100644 target-tricore/translate.c
create mode 100644 target-tricore/tricore-defs.h
create mode 100644 target-tricore/tricore-opcodes.h
--
2.1.0
- [Qemu-devel] [PATCH v6 00/15] TriCore architecture guest implementation,
Bastian Koppelmann <=
- [Qemu-devel] [PATCH v6 01/15] target-tricore: Add target stubs and qom-cpu, Bastian Koppelmann, 2014/08/22
- [Qemu-devel] [PATCH v6 04/15] target-tricore: Add initialization for translation and activate target, Bastian Koppelmann, 2014/08/22
- [Qemu-devel] [PATCH v6 02/15] target-tricore: Add board for systemmode, Bastian Koppelmann, 2014/08/22
- [Qemu-devel] [PATCH v6 03/15] target-tricore: Add softmmu support, Bastian Koppelmann, 2014/08/22
- [Qemu-devel] [PATCH v6 05/15] target-tricore: Add masks and opcodes for decoding, Bastian Koppelmann, 2014/08/22