From: Peter Maydell <peter.maydell@linaro.org>
To: qemu-devel@nongnu.org
Subject: [Qemu-devel] [PULL 00/20] target-arm queue
Date: Tue, 8 Sep 2015 17:51:12 +0100 [thread overview]
Message-ID: <1441731092-6513-1-git-send-email-peter.maydell@linaro.org> (raw)
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<n>, GICC_NSAPR<n> 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
next reply other threads:[~2015-09-08 16:51 UTC|newest]
Thread overview: 30+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-09-08 16:51 Peter Maydell [this message]
2015-09-08 16:51 ` [Qemu-devel] [PULL 01/20] armv7m_nvic: Implement ICSR without using internal GIC state Peter Maydell
2015-09-08 16:51 ` [Qemu-devel] [PULL 02/20] hw/intc/arm_gic: Running priority is group priority, not full priority Peter Maydell
2015-09-08 16:51 ` [Qemu-devel] [PULL 03/20] hw/intc/arm_gic: Fix handling of GICC_APR<n>, GICC_NSAPR<n> registers Peter Maydell
2015-09-08 16:51 ` [Qemu-devel] [PULL 04/20] hw/intc/arm_gic: Drop running_irq and last_active arrays Peter Maydell
2015-09-08 16:51 ` [Qemu-devel] [PULL 05/20] hw/intc/arm_gic: Actually set the active bits for active interrupts Peter Maydell
2015-09-08 16:51 ` [Qemu-devel] [PULL 06/20] qom: Add recursive version of object_child_for_each Peter Maydell
2015-09-08 16:51 ` [Qemu-devel] [PULL 07/20] hw/arm: new interface for devices which need to behave differently for kernel boot Peter Maydell
2015-09-08 16:51 ` [Qemu-devel] [PULL 08/20] hw/intc/arm_gic_common: Configure IRQs as NS if doing direct NS " Peter Maydell
2015-09-08 16:51 ` [Qemu-devel] [PULL 09/20] hw/cpu/{a15mpcore, a9mpcore}: enable TrustZone in GIC if it is enabled in CPUs Peter Maydell
2015-09-08 16:51 ` [Qemu-devel] [PULL 10/20] hw/arm/virt: Default to not providing TrustZone support Peter Maydell
2015-09-08 16:51 ` [Qemu-devel] [PULL 11/20] hw/arm/virt: Enable TZ extensions on the GIC if we are using them Peter Maydell
2015-09-08 16:51 ` [Qemu-devel] [PULL 12/20] target-arm: Fix default_exception_el() function for the case when EL3 is not supported Peter Maydell
2015-09-08 16:51 ` [Qemu-devel] [PULL 13/20] target-arm: Log the target EL when taking exceptions Peter Maydell
2015-09-08 16:51 ` [Qemu-devel] [PULL 14/20] target-arm: Correct opc1 for AT_S12Exx Peter Maydell
2015-09-08 16:51 ` [Qemu-devel] [PULL 15/20] target-arm: Add AArch64 access to PAR_EL1 Peter Maydell
2015-09-08 16:51 ` [Qemu-devel] [PULL 16/20] cadence_gem: Correct Marvell PHY SPCFC reset value Peter Maydell
2015-09-08 16:51 ` [Qemu-devel] [PULL 17/20] ahci: Separate the AHCI state structure into the header Peter Maydell
2015-09-08 16:51 ` [Qemu-devel] [PULL 18/20] ahci.c: Don't assume AHCIState's parent is AHCIPCIState Peter Maydell
2015-09-08 16:51 ` [Qemu-devel] [PULL 19/20] xlnx-zynqmp.c: Convert some of the error_propagate() calls to error_abort Peter Maydell
2015-09-08 16:51 ` [Qemu-devel] [PULL 20/20] xlnx-zynqmp: Connect the sysbus AHCI to ZynqMP Peter Maydell
2015-09-08 19:08 ` [Qemu-devel] [PULL 00/20] target-arm queue Peter Maydell
-- strict thread matches above, loose matches on Subject: below --
2018-02-15 18:36 Peter Maydell
2018-02-15 19:41 ` Peter Maydell
2017-10-06 15:59 Peter Maydell
2017-10-06 16:44 ` Peter Maydell
2016-02-26 15:20 Peter Maydell
2016-02-26 16:42 ` Peter Maydell
2015-08-25 14:59 Peter Maydell
2014-06-09 14:57 Peter Maydell
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1441731092-6513-1-git-send-email-peter.maydell@linaro.org \
--to=peter.maydell@linaro.org \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).