From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:33451) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XK67v-0002Tj-KV for qemu-devel@nongnu.org; Wed, 20 Aug 2014 09:40:41 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XK67p-000579-89 for qemu-devel@nongnu.org; Wed, 20 Aug 2014 09:40:35 -0400 Received: from mail.uni-paderborn.de ([131.234.142.9]:37826) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XK67o-000555-SV for qemu-devel@nongnu.org; Wed, 20 Aug 2014 09:40:29 -0400 Message-ID: <53F4B448.70601@mail.uni-paderborn.de> Date: Wed, 20 Aug 2014 15:44:24 +0100 From: Bastian Koppelmann MIME-Version: 1.0 References: <1407931644-25602-1-git-send-email-kbastian@mail.uni-paderborn.de> <53F49FF7.4010101@suse.de> In-Reply-To: <53F49FF7.4010101@suse.de> Content-Type: text/plain; charset=iso-8859-15; format=flowed Content-Transfer-Encoding: 8bit Subject: Re: [Qemu-devel] [PATCH v5 00/15] TriCore architecture guest implementation List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: =?ISO-8859-15?Q?Andreas_F=E4rber?= , qemu-devel@nongnu.org Cc: peter.maydell@linaro.org, rth@twiddle.net Hi Andreas, On 08/20/2014 02:17 PM, Andreas Färber wrote: > 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. I can definitly do that. > > Have you tested your new machine using "make check V=1"? Just wondering > whether qom-test passes. (Sorry if I already asked earlier.) I just tried that now and the test fails, because I have a whitespace in the machine name. I'll fix that as soon as I get review on the translation patches. > > Regards, > Andreas > Thanks, Bastian