From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:58720) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UHg3s-0002zO-Jz for qemu-devel@nongnu.org; Mon, 18 Mar 2013 15:49:38 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UHg3q-0005Vp-VD for qemu-devel@nongnu.org; Mon, 18 Mar 2013 15:49:36 -0400 Received: from mail-vc0-f179.google.com ([209.85.220.179]:45788) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UHg3q-0005Vc-RX for qemu-devel@nongnu.org; Mon, 18 Mar 2013 15:49:34 -0400 Received: by mail-vc0-f179.google.com with SMTP id gf12so3222938vcb.24 for ; Mon, 18 Mar 2013 12:49:33 -0700 (PDT) From: Anthony Green Date: Mon, 18 Mar 2013 15:49:21 -0400 Message-Id: <1363636165-1814-1-git-send-email-green@moxielogic.com> Subject: [Qemu-devel] [PATCH v11 0/4] Moxie CPU port List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: blauwirbel@gmail.com, Anthony Green This version of the patch addresses recent changes in the upstream qemu sources (where interrupt_request resides). Please consider applying this version of the patch. Thank you! AG Anthony Green (4): Add moxie target code Add moxie disassembler Add sample moxie system Add top level changes for moxie MAINTAINERS | 5 + arch_init.c | 2 + configure | 9 +- cpu-exec.c | 2 + default-configs/moxie-softmmu.mak | 2 + disas.c | 6 + disas/Makefile.objs | 1 + disas/moxie.c | 360 +++++++++++++++ hw/moxie/Makefile.objs | 6 + hw/moxie/moxiesim.c | 174 +++++++ include/disas/bfd.h | 2 + include/sysemu/arch_init.h | 1 + qapi-schema.json | 6 +- target-moxie/Makefile.objs | 2 + target-moxie/cpu.c | 172 +++++++ target-moxie/cpu.h | 167 +++++++ target-moxie/helper.c | 171 +++++++ target-moxie/helper.h | 9 + target-moxie/machine.c | 28 ++ target-moxie/machine.h | 1 + target-moxie/mmu.c | 36 ++ target-moxie/mmu.h | 19 + target-moxie/translate.c | 926 ++++++++++++++++++++++++++++++++++++++ 23 files changed, 2103 insertions(+), 4 deletions(-) create mode 100644 default-configs/moxie-softmmu.mak create mode 100644 disas/moxie.c create mode 100644 hw/moxie/Makefile.objs create mode 100644 hw/moxie/moxiesim.c create mode 100644 target-moxie/Makefile.objs create mode 100644 target-moxie/cpu.c create mode 100644 target-moxie/cpu.h create mode 100644 target-moxie/helper.c create mode 100644 target-moxie/helper.h create mode 100644 target-moxie/machine.c create mode 100644 target-moxie/machine.h create mode 100644 target-moxie/mmu.c create mode 100644 target-moxie/mmu.h create mode 100644 target-moxie/translate.c -- 1.8.1.4