qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 00/16] target-arm queue
@ 2018-11-12 17:08 Peter Maydell
  2018-11-12 17:08 ` [Qemu-devel] [PULL 01/16] target/arm: Remove workaround for small SAU regions Peter Maydell
                   ` (15 more replies)
  0 siblings, 16 replies; 17+ messages in thread
From: Peter Maydell @ 2018-11-12 17:08 UTC (permalink / raw)
  To: qemu-devel

target-arm queue for 3.1: mostly bug fixes, but the "turn on
EL2 support for Cortex-A7 and -A15" is technically enabling
of a new feature... I think this is OK since we're only at rc1,
and it's easy to revert that feature bit flip if necessary.

thanks
-- PMM


The following changes since commit 5704c36d25ee84e7129722cb0db53df9faefe943:

  Merge remote-tracking branch 'remotes/kraxel/tags/fixes-31-20181112-pull-request' into staging (2018-11-12 15:55:40 +0000)

are available in the Git repository at:

  https://git.linaro.org/people/pmaydell/qemu-arm.git tags/pull-target-arm-20181112

for you to fetch changes up to 1a4c1a6dbf60aebddd07753f1013ea896c06ad29:

  target/arm/cpu: Give Cortex-A15 and -A7 the EL2 feature (2018-11-12 16:52:29 +0000)

----------------------------------------------------------------
target/arm queue:
 * Remove no-longer-needed workaround for small SAU regions for v8M
 * Remove antique TODO comment
 * MAINTAINERS: Add an entry for the 'collie' machine
 * hw/arm/sysbus-fdt: Only call match_fn callback if the type matches
 * Fix infinite recursion in tlbi_aa64_vmalle1_write()
 * ARM KVM: fix various bugs in handling of guest debugging
 * Correctly implement handling of HCR_EL2.{VI, VF}
 * Hyp mode R14 is shared with User and System
 * Give Cortex-A15 and -A7 the EL2 feature

----------------------------------------------------------------
Alex Bennée (6):
      target/arm64: properly handle DBGVR RESS bits
      target/arm64: hold BQL when calling do_interrupt()
      target/arm64: kvm debug set target_el when passing exception to guest
      tests/guest-debug: fix scoping of failcount
      arm: use symbolic MDCR_TDE in arm_debug_target_el
      arm: fix aa64_generate_debug_exceptions to work with EL2

Eric Auger (1):
      hw/arm/sysbus-fdt: Only call match_fn callback if the type matches

Peter Maydell (7):
      target/arm: Remove workaround for small SAU regions
      target/arm: Remove antique TODO comment
      Revert "target/arm: Implement HCR.VI and VF"
      target/arm: Track the state of our irq lines from the GIC explicitly
      target/arm: Correctly implement handling of HCR_EL2.{VI, VF}
      target/arm: Hyp mode R14 is shared with User and System
      target/arm/cpu: Give Cortex-A15 and -A7 the EL2 feature

Richard Henderson (1):
      target/arm: Fix typo in tlbi_aa64_vmalle1_write

Thomas Huth (1):
      MAINTAINERS: Add an entry for the 'collie' machine

 target/arm/cpu.h                  |  44 +++++++++++------
 target/arm/internals.h            |  34 +++++++++++++
 hw/arm/sysbus-fdt.c               |  12 +++--
 target/arm/cpu.c                  |  66 ++++++++++++++++++++++++-
 target/arm/helper.c               | 101 +++++++++++++-------------------------
 target/arm/kvm32.c                |   4 +-
 target/arm/kvm64.c                |  20 +++++++-
 target/arm/machine.c              |  51 +++++++++++++++++++
 target/arm/op_helper.c            |   4 +-
 MAINTAINERS                       |   7 +++
 tests/guest-debug/test-gdbstub.py |   1 +
 11 files changed, 248 insertions(+), 96 deletions(-)

^ permalink raw reply	[flat|nested] 17+ messages in thread

end of thread, other threads:[~2018-11-12 17:09 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-11-12 17:08 [Qemu-devel] [PULL 00/16] target-arm queue Peter Maydell
2018-11-12 17:08 ` [Qemu-devel] [PULL 01/16] target/arm: Remove workaround for small SAU regions Peter Maydell
2018-11-12 17:08 ` [Qemu-devel] [PULL 02/16] target/arm: Remove antique TODO comment Peter Maydell
2018-11-12 17:08 ` [Qemu-devel] [PULL 03/16] MAINTAINERS: Add an entry for the 'collie' machine Peter Maydell
2018-11-12 17:08 ` [Qemu-devel] [PULL 04/16] hw/arm/sysbus-fdt: Only call match_fn callback if the type matches Peter Maydell
2018-11-12 17:08 ` [Qemu-devel] [PULL 05/16] target/arm: Fix typo in tlbi_aa64_vmalle1_write Peter Maydell
2018-11-12 17:08 ` [Qemu-devel] [PULL 06/16] target/arm64: properly handle DBGVR RESS bits Peter Maydell
2018-11-12 17:08 ` [Qemu-devel] [PULL 07/16] target/arm64: hold BQL when calling do_interrupt() Peter Maydell
2018-11-12 17:08 ` [Qemu-devel] [PULL 08/16] target/arm64: kvm debug set target_el when passing exception to guest Peter Maydell
2018-11-12 17:08 ` [Qemu-devel] [PULL 09/16] tests/guest-debug: fix scoping of failcount Peter Maydell
2018-11-12 17:08 ` [Qemu-devel] [PULL 10/16] arm: use symbolic MDCR_TDE in arm_debug_target_el Peter Maydell
2018-11-12 17:08 ` [Qemu-devel] [PULL 11/16] arm: fix aa64_generate_debug_exceptions to work with EL2 Peter Maydell
2018-11-12 17:08 ` [Qemu-devel] [PULL 12/16] Revert "target/arm: Implement HCR.VI and VF" Peter Maydell
2018-11-12 17:08 ` [Qemu-devel] [PULL 13/16] target/arm: Track the state of our irq lines from the GIC explicitly Peter Maydell
2018-11-12 17:08 ` [Qemu-devel] [PULL 14/16] target/arm: Correctly implement handling of HCR_EL2.{VI, VF} Peter Maydell
2018-11-12 17:08 ` [Qemu-devel] [PULL 15/16] target/arm: Hyp mode R14 is shared with User and System Peter Maydell
2018-11-12 17:08 ` [Qemu-devel] [PULL 16/16] target/arm/cpu: Give Cortex-A15 and -A7 the EL2 feature Peter Maydell

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).