From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:60687) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RFD9R-0002Dq-Lx for qemu-devel@nongnu.org; Sat, 15 Oct 2011 18:56:23 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RFD9Q-0004sF-Un for qemu-devel@nongnu.org; Sat, 15 Oct 2011 18:56:21 -0400 Received: from [188.134.19.124] (port=53484 helo=octofox.metropolis) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RFD9Q-0004s0-Il for qemu-devel@nongnu.org; Sat, 15 Oct 2011 18:56:20 -0400 From: Max Filippov Date: Sun, 16 Oct 2011 02:56:00 +0400 Message-Id: <1318719367-19659-1-git-send-email-jcmvbkbc@gmail.com> Subject: [Qemu-devel] [PATCH v2 0/7] target-xtensa: add overlay parsing header and convert hand-written core definitions to use overlays List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: jcmvbkbc@gmail.com Max Filippov (7): target-xtensa: increase xtensa options accuracy target-xtensa: remove hand-written xtensa cores implementations target-xtensa: implement external interrupt mapping target-xtensa: extract core configuration from overlay target-xtensa: add dc232b core target-xtensa: add fsf core target-xtensa: rename dc232b board to sim Makefile.target | 5 +- hw/xtensa_dc232b.c | 116 ------ hw/xtensa_pic.c | 12 + hw/xtensa_sample.c | 107 ----- hw/xtensa_sim.c | 116 ++++++ target-xtensa/core-dc232b.c | 28 ++ target-xtensa/core-dc232b/core-isa.h | 424 ++++++++++++++++++++ target-xtensa/core-dc232b/gdb-config.c | 261 ++++++++++++ target-xtensa/core-fsf.c | 22 + target-xtensa/core-fsf/core-isa.h | 362 +++++++++++++++++ target-xtensa/cpu.h | 15 +- target-xtensa/gdb-config-dc232b.c | 261 ------------ target-xtensa/gdb-config-sample-xtensa-core.c | 375 ----------------- target-xtensa/helper.c | 249 +----------- target-xtensa/overlay_tool.h | 534 +++++++++++++++++++++++++ target-xtensa/translate.c | 14 +- tests/xtensa/Makefile | 2 +- 17 files changed, 1798 insertions(+), 1105 deletions(-) delete mode 100644 hw/xtensa_dc232b.c delete mode 100644 hw/xtensa_sample.c create mode 100644 hw/xtensa_sim.c create mode 100644 target-xtensa/core-dc232b.c create mode 100644 target-xtensa/core-dc232b/core-isa.h create mode 100644 target-xtensa/core-dc232b/gdb-config.c create mode 100644 target-xtensa/core-fsf.c create mode 100644 target-xtensa/core-fsf/core-isa.h delete mode 100644 target-xtensa/gdb-config-dc232b.c delete mode 100644 target-xtensa/gdb-config-sample-xtensa-core.c create mode 100644 target-xtensa/overlay_tool.h -- 1.7.6.4