From: Peter Maydell <peter.maydell@linaro.org>
To: qemu-devel@nongnu.org
Subject: [Qemu-devel] [PULL 00/13] target-arm queue
Date: Tue, 3 Nov 2015 14:13:06 +0000 [thread overview]
Message-ID: <1446559999-12413-1-git-send-email-peter.maydell@linaro.org> (raw)
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(-)
next reply other threads:[~2015-11-03 14:13 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-11-03 14:13 Peter Maydell [this message]
2015-11-03 14:13 ` [Qemu-devel] [PULL 01/13] target-arm: Add and use symbolic names for register banks Peter Maydell
2015-11-03 14:13 ` [Qemu-devel] [PULL 02/13] arm: boot: Adjust indentation of FIXUP comments Peter Maydell
2015-11-03 14:13 ` [Qemu-devel] [PULL 03/13] arm: boot: Add board specific setup code API Peter Maydell
2015-11-03 14:13 ` [Qemu-devel] [PULL 04/13] arm: xilinx_zynq: Add linux pre-boot Peter Maydell
2015-11-03 14:13 ` [Qemu-devel] [PULL 05/13] armv7-m: Return DeviceState* from armv7m_init() Peter Maydell
2015-11-03 14:13 ` [Qemu-devel] [PULL 06/13] armv7-m: Implement SYSRESETREQ Peter Maydell
2015-11-03 14:13 ` [Qemu-devel] [PULL 07/13] arm: stellaris: exit on external reset request Peter Maydell
2015-11-03 14:13 ` [Qemu-devel] [PULL 08/13] MAINTAINERS: Add new qemu-arm mailing list to ARM related entries Peter Maydell
2015-11-03 14:13 ` [Qemu-devel] [PULL 09/13] target-arm: Bring AArch64 debug CPU display of PSTATE into line with AArch32 Peter Maydell
2015-11-03 14:13 ` [Qemu-devel] [PULL 10/13] target-arm: Report S/NS status in the CPU debug logs Peter Maydell
2015-11-03 14:13 ` [Qemu-devel] [PULL 11/13] hw/arm/virt-acpi-build: _CCA attribute is compulsory Peter Maydell
2015-11-03 14:13 ` [Qemu-devel] [PULL 12/13] hw/arm/virt-acpi-build: Add GICC ACPI subtable for GICv3 Peter Maydell
2015-11-03 14:13 ` [Qemu-devel] [PULL 13/13] ARM: ACPI: Fix MPIDR value in ACPI table Peter Maydell
2015-11-03 15:31 ` [Qemu-devel] [PULL 00/13] target-arm queue Peter Maydell
-- strict thread matches above, loose matches on Subject: below --
2018-03-19 18:34 Peter Maydell
2018-03-20 9:51 ` Peter Maydell
2017-10-12 16:03 Peter Maydell
2017-10-16 9:22 ` Peter Maydell
2017-02-07 18:37 Peter Maydell
2017-02-07 18:55 ` Peter Maydell
2017-02-07 19:01 ` no-reply
2015-10-16 13:57 Peter Maydell
2015-10-17 14:05 ` 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=1446559999-12413-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).