From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:55028) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZtcL7-0001kp-41 for qemu-devel@nongnu.org; Tue, 03 Nov 2015 09:13:34 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZtcL5-0007wM-Jy for qemu-devel@nongnu.org; Tue, 03 Nov 2015 09:13:32 -0500 Received: from mnementh.archaic.org.uk ([2001:8b0:1d0::1]:35243) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZtcL5-0007sB-A4 for qemu-devel@nongnu.org; Tue, 03 Nov 2015 09:13:31 -0500 Received: from pm215 by mnementh.archaic.org.uk with local (Exim 4.80) (envelope-from ) id 1ZtcKt-0003Ei-7W for qemu-devel@nongnu.org; Tue, 03 Nov 2015 14:13:19 +0000 From: Peter Maydell Date: Tue, 3 Nov 2015 14:13:06 +0000 Message-Id: <1446559999-12413-1-git-send-email-peter.maydell@linaro.org> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Subject: [Qemu-devel] [PULL 00/13] target-arm queue List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Here's the target-arm queue for 2.5: a few minor cleanups, one or two small new features, and a pile of bug fixes. Still on my to-review list for 2.5: * the breakpoint/singlestep fixes * highbank boot blob patchset * zynq ADC controller (maybe) so I expect to do another pullreq before rc0. thanks -- PMM The following changes since commit 130d0bc6594d0cc6591d00312841891b3c187b07: Merge remote-tracking branch 'remotes/kraxel/tags/pull-ui-20151103-1' into staging (2015-11-03 10:20:04 +0000) are available in the git repository at: git://git.linaro.org/people/pmaydell/qemu-arm.git tags/pull-target-arm-20151103 for you to fetch changes up to 5d9c1756140d680e66e5b45005a1fb7078b74ee1: ARM: ACPI: Fix MPIDR value in ACPI table (2015-11-03 13:49:42 +0000) ---------------------------------------------------------------- target-arm queue: * code cleanup to use symbolic constants for register bank numbers * fix direct booting of modern Linux kernels on xilinx_zynq by setting SCLR values to what the kernel expects firmware to have done * implement SYSRESETREQ for ARMv7M CPU (stellaris boards) * update MAINTAINERS to mention new qemu-arm mailing list * clean up display of PSTATE in AArch64 debug logs * report Secure/Nonsecure status in CPU debug logs * fix a missing _CCA attribute in ACPI tables * add support for GICv3 to ACPI tables ---------------------------------------------------------------- Graeme Gregory (1): hw/arm/virt-acpi-build: _CCA attribute is compulsory Michael Davidsaver (3): armv7-m: Return DeviceState* from armv7m_init() armv7-m: Implement SYSRESETREQ arm: stellaris: exit on external reset request Peter Crosthwaite (3): arm: boot: Adjust indentation of FIXUP comments arm: boot: Add board specific setup code API arm: xilinx_zynq: Add linux pre-boot Peter Maydell (3): MAINTAINERS: Add new qemu-arm mailing list to ARM related entries target-arm: Bring AArch64 debug CPU display of PSTATE into line with AArch32 target-arm: Report S/NS status in the CPU debug logs Shannon Zhao (2): hw/arm/virt-acpi-build: Add GICC ACPI subtable for GICv3 ARM: ACPI: Fix MPIDR value in ACPI table Soren Brinkmann (1): target-arm: Add and use symbolic names for register banks MAINTAINERS | 23 +++++++++++++++++++++++ hw/arm/armv7m.c | 9 ++------- hw/arm/boot.c | 36 +++++++++++++++++++++++++++--------- hw/arm/stellaris.c | 41 ++++++++++++++++++++++++++++++----------- hw/arm/stm32f205_soc.c | 15 ++++++++------- hw/arm/virt-acpi-build.c | 33 +++++++++++++++++++-------------- hw/arm/xilinx_zynq.c | 42 ++++++++++++++++++++++++++++++++++++++++++ hw/intc/armv7m_nvic.c | 9 ++++++++- include/hw/arm/arm.h | 12 +++++++++++- target-arm/helper.c | 37 ++++++++++++++++++++++--------------- target-arm/internals.h | 16 +++++++++++++--- target-arm/kvm32.c | 34 +++++++++++++++++----------------- target-arm/op_helper.c | 8 ++++---- target-arm/translate-a64.c | 17 ++++++++++++++--- target-arm/translate.c | 12 +++++++++++- 15 files changed, 251 insertions(+), 93 deletions(-)