From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:52045) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RD5ZH-0005TF-DO for qemu-devel@nongnu.org; Sun, 09 Oct 2011 22:26:16 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RD5ZG-0002Kd-Ij for qemu-devel@nongnu.org; Sun, 09 Oct 2011 22:26:15 -0400 Received: from [188.134.19.124] (port=59879 helo=octofox.metropolis) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RD5ZG-0002KT-9A for qemu-devel@nongnu.org; Sun, 09 Oct 2011 22:26:14 -0400 From: Max Filippov Date: Mon, 10 Oct 2011 06:25:58 +0400 Message-Id: <1318213565-3268-1-git-send-email-jcmvbkbc@gmail.com> Subject: [Qemu-devel] [PATCH 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 | 28 ++ target-xtensa/core-fsf/core-isa.h | 362 +++++++++++++++++ target-xtensa/core-fsf/gdb-config.c | 152 +++++++ 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 | 533 +++++++++++++++++++++++++ target-xtensa/translate.c | 14 +- tests/xtensa/Makefile | 2 +- 18 files changed, 1955 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 create mode 100644 target-xtensa/core-fsf/gdb-config.c 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