From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:49276) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZZM7Y-0002Xy-M1 for qemu-devel@nongnu.org; Tue, 08 Sep 2015 12:51:49 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZZM7X-00082B-H5 for qemu-devel@nongnu.org; Tue, 08 Sep 2015 12:51:48 -0400 Received: from mnementh.archaic.org.uk ([2001:8b0:1d0::1]:35050) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZZM7X-0007xj-AG for qemu-devel@nongnu.org; Tue, 08 Sep 2015 12:51:47 -0400 Received: from pm215 by mnementh.archaic.org.uk with local (Exim 4.80) (envelope-from ) id 1ZZM7I-0001hX-5v for qemu-devel@nongnu.org; Tue, 08 Sep 2015 17:51:32 +0100 From: Peter Maydell Date: Tue, 8 Sep 2015 17:51:12 +0100 Message-Id: <1441731092-6513-1-git-send-email-peter.maydell@linaro.org> Subject: [Qemu-devel] [PULL 00/20] target-arm queue List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Another week, another pullreq... -- PMM The following changes since commit 8611280505119e296757a60711a881341603fa5a: target-microblaze: Use setcond for pcmp* (2015-09-08 08:49:33 +0200) are available in the git repository at: git://git.linaro.org/people/pmaydell/qemu-arm.git tags/pull-target-arm-20150908 for you to fetch changes up to 6fdf3282d16e7fb6e798824fb5f4f60c6a73067d: xlnx-zynqmp: Connect the sysbus AHCI to ZynqMP (2015-09-08 17:38:45 +0100) ---------------------------------------------------------------- target-arm queue: * Implement priority handling properly via GICC_APR * Enable TZ extensions on the GIC if we're using them * Minor preparatory patches for EL3 support * cadence_gem: Correct Marvell PHY SPCFC reset value * Support AHCI in ZynqMP ---------------------------------------------------------------- Alistair Francis (5): cadence_gem: Correct Marvell PHY SPCFC reset value ahci: Separate the AHCI state structure into the header ahci.c: Don't assume AHCIState's parent is AHCIPCIState xlnx-zynqmp.c: Convert some of the error_propagate() calls to error_abort xlnx-zynqmp: Connect the sysbus AHCI to ZynqMP Edgar E. Iglesias (3): target-arm: Log the target EL when taking exceptions target-arm: Correct opc1 for AT_S12Exx target-arm: Add AArch64 access to PAR_EL1 Peter Crosthwaite (1): qom: Add recursive version of object_child_for_each Peter Maydell (10): armv7m_nvic: Implement ICSR without using internal GIC state hw/intc/arm_gic: Running priority is group priority, not full priority hw/intc/arm_gic: Fix handling of GICC_APR, GICC_NSAPR registers hw/intc/arm_gic: Drop running_irq and last_active arrays hw/intc/arm_gic: Actually set the active bits for active interrupts hw/arm: new interface for devices which need to behave differently for kernel boot hw/intc/arm_gic_common: Configure IRQs as NS if doing direct NS kernel boot hw/cpu/{a15mpcore, a9mpcore}: enable TrustZone in GIC if it is enabled in CPUs hw/arm/virt: Default to not providing TrustZone support hw/arm/virt: Enable TZ extensions on the GIC if we are using them Sergey Sorokin (1): target-arm: Fix default_exception_el() function for the case when EL3 is not supported hw/arm/boot.c | 34 ++++++ hw/arm/virt.c | 14 ++- hw/arm/xlnx-zynqmp.c | 32 +++-- hw/cpu/a15mpcore.c | 13 +++ hw/cpu/a9mpcore.c | 11 ++ hw/ide/ahci.c | 26 ++--- hw/ide/ahci.h | 16 +++ hw/intc/arm_gic.c | 245 ++++++++++++++++++++++++++++++++++----- hw/intc/arm_gic_common.c | 59 ++++++++-- hw/intc/armv7m_nvic.c | 13 +-- hw/net/cadence_gem.c | 2 +- include/hw/arm/linux-boot-if.h | 43 +++++++ include/hw/arm/xlnx-zynqmp.h | 3 + include/hw/intc/arm_gic_common.h | 12 +- include/qom/object.h | 15 +++ qom/object.c | 25 +++- target-arm/helper-a64.c | 3 +- target-arm/helper.c | 14 ++- target-arm/translate-a64.c | 6 +- target-arm/translate.c | 6 +- target-arm/translate.h | 5 +- 21 files changed, 493 insertions(+), 104 deletions(-) create mode 100644 include/hw/arm/linux-boot-if.h