From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:57600) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aIdYF-0007mN-I6 for qemu-devel@nongnu.org; Mon, 11 Jan 2016 09:34:32 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aIdYE-000620-2j for qemu-devel@nongnu.org; Mon, 11 Jan 2016 09:34:31 -0500 Received: from mnementh.archaic.org.uk ([2001:8b0:1d0::1]:59287) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aIdYD-00061Q-R4 for qemu-devel@nongnu.org; Mon, 11 Jan 2016 09:34:29 -0500 Received: from pm215 by mnementh.archaic.org.uk with local (Exim 4.80) (envelope-from ) id 1aIdYC-0006ea-9g for qemu-devel@nongnu.org; Mon, 11 Jan 2016 14:34:28 +0000 From: Peter Maydell Date: Mon, 11 Jan 2016 14:34:24 +0000 Message-Id: <1452522868-25550-1-git-send-email-peter.maydell@linaro.org> Subject: [Qemu-devel] [PULL 0/5] target-arm queue List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Not very many patches here, but no point holding on to them. I'm not going to email out the libvixl upgrade patch because it's so big it'd get blocked by the list server anyway. thanks -- PMM The following changes since commit 692a5519ab1510ff48bdde9701017b9425643058: Merge remote-tracking branch 'remotes/mjt/tags/pull-trivial-patches-2016-01-11' into staging (2016-01-11 12:56:58 +0000) are available in the git repository at: git://git.linaro.org/people/pmaydell/qemu-arm.git tags/pull-target-arm-20160111 for you to fetch changes up to fe84fe5e2a59d5e83f043226114153bd3ccb1c51: hw/arm/virt: Support legacy -nic command line syntax (2016-01-11 14:23:03 +0000) ---------------------------------------------------------------- target-arm queue: * i.MX: move i.MX31 CCM object to register array * xilinx_axidma: remove dead code * xlnx-zynqmp: Add support for high DDR memory regions * disas/libvixl: Update to upstream VIXL 1.12 * virt: Support legacy -nic command line syntax ---------------------------------------------------------------- Alistair Francis (1): xlnx-zynqmp: Add support for high DDR memory regions Andrew Jones (1): hw/dma/xilinx_axidma: remove dead code Ashok Kumar (1): hw/arm/virt: Support legacy -nic command line syntax Jean-Christophe DUBOIS (1): i.MX: move i.MX31 CCM object to register array Peter Maydell (1): disas/libvixl: Update to upstream VIXL 1.12 disas/arm-a64.cc | 2 +- disas/libvixl/Makefile.objs | 9 +- disas/libvixl/README | 3 +- disas/libvixl/a64/assembler-a64.h | 2353 ---------- disas/libvixl/a64/disasm-a64.cc | 1954 --------- disas/libvixl/a64/instructions-a64.cc | 314 -- disas/libvixl/a64/instructions-a64.h | 384 -- disas/libvixl/vixl/a64/assembler-a64.h | 4624 ++++++++++++++++++++ disas/libvixl/{ => vixl}/a64/constants-a64.h | 967 +++- disas/libvixl/{ => vixl}/a64/cpu-a64.h | 6 +- disas/libvixl/{ => vixl}/a64/decoder-a64.cc | 210 +- disas/libvixl/{ => vixl}/a64/decoder-a64.h | 58 +- disas/libvixl/vixl/a64/disasm-a64.cc | 3487 +++++++++++++++ disas/libvixl/{ => vixl}/a64/disasm-a64.h | 17 +- disas/libvixl/vixl/a64/instructions-a64.cc | 622 +++ disas/libvixl/vixl/a64/instructions-a64.h | 757 ++++ disas/libvixl/{ => vixl}/code-buffer.h | 2 +- .../{utils.cc => vixl/compiler-intrinsics.cc} | 137 +- disas/libvixl/vixl/compiler-intrinsics.h | 155 + disas/libvixl/{ => vixl}/globals.h | 82 +- disas/libvixl/vixl/invalset.h | 775 ++++ disas/libvixl/{ => vixl}/platform.h | 2 +- disas/libvixl/vixl/utils.cc | 142 + disas/libvixl/{ => vixl}/utils.h | 115 +- hw/arm/virt.c | 14 + hw/arm/xlnx-ep108.c | 35 +- hw/arm/xlnx-zynqmp.c | 37 + hw/dma/xilinx_axidma.c | 10 - hw/misc/imx31_ccm.c | 188 +- include/hw/arm/xlnx-zynqmp.h | 12 + include/hw/misc/imx31_ccm.h | 38 +- 31 files changed, 12185 insertions(+), 5326 deletions(-) delete mode 100644 disas/libvixl/a64/assembler-a64.h delete mode 100644 disas/libvixl/a64/disasm-a64.cc delete mode 100644 disas/libvixl/a64/instructions-a64.cc delete mode 100644 disas/libvixl/a64/instructions-a64.h create mode 100644 disas/libvixl/vixl/a64/assembler-a64.h rename disas/libvixl/{ => vixl}/a64/constants-a64.h (51%) rename disas/libvixl/{ => vixl}/a64/cpu-a64.h (96%) rename disas/libvixl/{ => vixl}/a64/decoder-a64.cc (81%) rename disas/libvixl/{ => vixl}/a64/decoder-a64.h (82%) create mode 100644 disas/libvixl/vixl/a64/disasm-a64.cc rename disas/libvixl/{ => vixl}/a64/disasm-a64.h (94%) create mode 100644 disas/libvixl/vixl/a64/instructions-a64.cc create mode 100644 disas/libvixl/vixl/a64/instructions-a64.h rename disas/libvixl/{ => vixl}/code-buffer.h (99%) rename disas/libvixl/{utils.cc => vixl/compiler-intrinsics.cc} (60%) create mode 100644 disas/libvixl/vixl/compiler-intrinsics.h rename disas/libvixl/{ => vixl}/globals.h (52%) create mode 100644 disas/libvixl/vixl/invalset.h rename disas/libvixl/{ => vixl}/platform.h (98%) create mode 100644 disas/libvixl/vixl/utils.cc rename disas/libvixl/{ => vixl}/utils.h (68%)