From: "Andreas Färber" <afaerber@suse.de>
To: Bastian Koppelmann <kbastian@mail.uni-paderborn.de>,
qemu-devel@nongnu.org
Cc: peter.maydell@linaro.org, rth@twiddle.net
Subject: Re: [Qemu-devel] [PATCH v5 00/15] TriCore architecture guest implementation
Date: Wed, 20 Aug 2014 15:17:43 +0200 [thread overview]
Message-ID: <53F49FF7.4010101@suse.de> (raw)
In-Reply-To: <1407931644-25602-1-git-send-email-kbastian@mail.uni-paderborn.de>
Hi,
Am 13.08.2014 14:07, schrieb Bastian Koppelmann:
> 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 | 1259 +++++++++++++++++++++++++++++++
> target-tricore/tricore-defs.h | 28 +
> target-tricore/tricore-opcodes.h | 1406 +++++++++++++++++++++++++++++++++++
> 20 files changed, 4130 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
I still haven't really looked at the CPU QOM parts yet (and won't get to
that shortly, no blocker), in this diffstat I am missing a MAINTAINERS
entry that names and CCs someone (you?) to take care of all those new
target-tricore/, hw/tricore/ and hw/include/tricore/ files in the future.
Have you tested your new machine using "make check V=1"? Just wondering
whether qom-test passes. (Sorry if I already asked earlier.)
Regards,
Andreas
--
SUSE LINUX Products GmbH, Maxfeldstr. 5, 90409 Nürnberg, Germany
GF: Jeff Hawn, Jennifer Guild, Felix Imendörffer; HRB 16746 AG Nürnberg
next prev parent reply other threads:[~2014-08-20 13:18 UTC|newest]
Thread overview: 29+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-08-13 12:07 [Qemu-devel] [PATCH v5 00/15] TriCore architecture guest implementation Bastian Koppelmann
2014-08-13 12:07 ` [Qemu-devel] [PATCH v5 01/15] target-tricore: Add target stubs and qom-cpu Bastian Koppelmann
2014-08-20 14:16 ` Richard Henderson
2014-08-13 12:07 ` [Qemu-devel] [PATCH v5 02/15] target-tricore: Add board for systemmode Bastian Koppelmann
2014-08-13 12:07 ` [Qemu-devel] [PATCH v5 03/15] target-tricore: Add softmmu support Bastian Koppelmann
2014-08-20 14:17 ` Richard Henderson
2014-08-13 12:07 ` [Qemu-devel] [PATCH v5 04/15] target-tricore: Add initialization for translation and activate target Bastian Koppelmann
2014-08-20 15:52 ` Richard Henderson
2014-08-13 12:07 ` [Qemu-devel] [PATCH v5 05/15] target-tricore: Add masks and opcodes for decoding Bastian Koppelmann
2014-08-20 15:52 ` Richard Henderson
2014-08-13 12:07 ` [Qemu-devel] [PATCH v5 06/15] target-tricore: Add instructions of SRC opcode format Bastian Koppelmann
2014-08-21 20:32 ` Richard Henderson
2014-08-13 12:07 ` [Qemu-devel] [PATCH v5 07/15] target-tricore: Add instructions of SRR " Bastian Koppelmann
2014-08-21 20:35 ` Richard Henderson
2014-08-13 12:07 ` [Qemu-devel] [PATCH v5 08/15] target-tricore: Add instructions of SSR " Bastian Koppelmann
2014-08-13 12:07 ` [Qemu-devel] [PATCH v5 09/15] target-tricore: Add instructions of SRRS and SLRO " Bastian Koppelmann
2014-08-21 20:37 ` Richard Henderson
2014-08-13 12:07 ` [Qemu-devel] [PATCH v5 10/15] target-tricore: Add instructions of SB " Bastian Koppelmann
2014-08-21 20:41 ` Richard Henderson
2014-08-13 12:07 ` [Qemu-devel] [PATCH v5 11/15] target-tricore: Add instructions of SBC and SBRN " Bastian Koppelmann
2014-08-13 12:07 ` [Qemu-devel] [PATCH v5 12/15] target-tricore: Add instructions of SBR " Bastian Koppelmann
2014-08-13 12:07 ` [Qemu-devel] [PATCH v5 13/15] target-tricore: Add instructions of SC " Bastian Koppelmann
2014-08-13 12:07 ` [Qemu-devel] [PATCH v5 14/15] target-tricore: Add instructions of SLR, SSRO and SRO " Bastian Koppelmann
2014-08-13 12:07 ` [Qemu-devel] [PATCH v5 15/15] target-tricore: Add instructions of SR " Bastian Koppelmann
2014-08-21 20:48 ` Richard Henderson
2014-08-22 16:35 ` Bastian Koppelmann
2014-08-20 13:17 ` Andreas Färber [this message]
2014-08-20 14:44 ` [Qemu-devel] [PATCH v5 00/15] TriCore architecture guest implementation Bastian Koppelmann
2014-08-20 14:06 ` Bastian Koppelmann
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=53F49FF7.4010101@suse.de \
--to=afaerber@suse.de \
--cc=kbastian@mail.uni-paderborn.de \
--cc=peter.maydell@linaro.org \
--cc=qemu-devel@nongnu.org \
--cc=rth@twiddle.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).