From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:49667) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aK6Ec-00084A-Dy for qemu-devel@nongnu.org; Fri, 15 Jan 2016 10:24:19 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aK6Eb-0000xC-FB for qemu-devel@nongnu.org; Fri, 15 Jan 2016 10:24:18 -0500 Received: from mnementh.archaic.org.uk ([2001:8b0:1d0::1]:59462) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aK6Eb-0000u7-7T for qemu-devel@nongnu.org; Fri, 15 Jan 2016 10:24:17 -0500 Received: from pm215 by mnementh.archaic.org.uk with local (Exim 4.80) (envelope-from ) id 1aK6EP-00016Z-TZ for qemu-devel@nongnu.org; Fri, 15 Jan 2016 15:24:05 +0000 From: Peter Maydell Date: Fri, 15 Jan 2016 15:23:54 +0000 Message-Id: <1452871445-4221-1-git-send-email-peter.maydell@linaro.org> Subject: [Qemu-devel] [PULL 00/11] target-arm queue List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org This is the current ARM queue; biggest bit is Andrew's patches to add dump-guest-memory support. Anyway, 11 patches is enough that we might as well push the queue out to master... thanks -- PMM The following changes since commit f02ccf53693758b65843264e077f90cf295e7d98: disas/libvixl: Really suppress gcc 4.6.3 sign-compare warnings (2016-01-14 17:57:51 +0000) are available in the git repository at: git://git.linaro.org/people/pmaydell/qemu-arm.git tags/pull-target-arm-20160115 for you to fetch changes up to 67736a25f86595c8ae174a21d965af5a027884c9: ARM: virt: Don't generate RTC ACPI device when using UEFI (2016-01-15 14:55:16 +0000) ---------------------------------------------------------------- target-arm queue: * use the right MMU index when handling unaligned accesses * xlnx-zynqmp: Add support for high DDR memory regions * target-arm: support QMP dump-guest-memory * ARM: virt: Don't generate RTC ACPI device when using UEFI ---------------------------------------------------------------- Alistair Francis (1): xlnx-zynqmp: Add support for high DDR memory regions Alvise Rigo (1): target-arm: Use the right MMU index in arm_regime_using_lpae_format Andrew Jones (8): qapi-schema: dump-guest-memory: Improve text dump: qemunotes aren't commonly needed dump: allow target to set the page size dump: allow target to set the physical base target-arm: support QMP dump-guest-memory target-arm: dump-guest-memory: add prfpreg notes for aarch64 elf: add arm note types target-arm: dump-guest-memory: add vfp notes for arm Shannon Zhao (1): ARM: virt: Don't generate RTC ACPI device when using UEFI dump.c | 131 ++++++++++------- hw/arm/virt-acpi-build.c | 24 +--- hw/arm/xlnx-ep108.c | 40 +++--- hw/arm/xlnx-zynqmp.c | 37 +++++ include/elf.h | 5 + include/hw/arm/xlnx-zynqmp.h | 12 ++ include/sysemu/dump-arch.h | 9 +- include/sysemu/dump.h | 11 +- qapi-schema.json | 4 +- qom/cpu.c | 4 +- target-arm/Makefile.objs | 3 +- target-arm/arch_dump.c | 336 +++++++++++++++++++++++++++++++++++++++++++ target-arm/cpu-qom.h | 5 + target-arm/cpu.c | 2 + target-arm/helper.c | 12 +- target-arm/internals.h | 5 +- target-arm/op_helper.c | 2 +- target-ppc/arch_dump.c | 6 - target-ppc/cpu-qom.h | 2 - target-ppc/translate_init.c | 1 - target-s390x/arch_dump.c | 6 - target-s390x/cpu-qom.h | 2 - target-s390x/cpu.c | 1 - 23 files changed, 528 insertions(+), 132 deletions(-) create mode 100644 target-arm/arch_dump.c