mbox

[PULL,00/11] target-arm queue

Message ID 1452871445-4221-1-git-send-email-peter.maydell@linaro.org
State New
Headers show

Pull-request

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

Message

Peter Maydell Jan. 15, 2016, 3:23 p.m. UTC
This is the current ARM queue; biggest bit is Andrew's patches to
add dump-guest-memory support. Anyway, 11 patches is enough that we
might as well push the queue out to master...

thanks
-- PMM



The following changes since commit f02ccf53693758b65843264e077f90cf295e7d98:

  disas/libvixl: Really suppress gcc 4.6.3 sign-compare warnings (2016-01-14 17:57:51 +0000)

are available in the git repository at:

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

for you to fetch changes up to 67736a25f86595c8ae174a21d965af5a027884c9:

  ARM: virt: Don't generate RTC ACPI device when using UEFI (2016-01-15 14:55:16 +0000)

----------------------------------------------------------------
target-arm queue:
 * use the right MMU index when handling unaligned accesses
 * xlnx-zynqmp: Add support for high DDR memory regions
 * target-arm: support QMP dump-guest-memory
 * ARM: virt: Don't generate RTC ACPI device when using UEFI

----------------------------------------------------------------
Alistair Francis (1):
      xlnx-zynqmp: Add support for high DDR memory regions

Alvise Rigo (1):
      target-arm: Use the right MMU index in arm_regime_using_lpae_format

Andrew Jones (8):
      qapi-schema: dump-guest-memory: Improve text
      dump: qemunotes aren't commonly needed
      dump: allow target to set the page size
      dump: allow target to set the physical base
      target-arm: support QMP dump-guest-memory
      target-arm: dump-guest-memory: add prfpreg notes for aarch64
      elf: add arm note types
      target-arm: dump-guest-memory: add vfp notes for arm

Shannon Zhao (1):
      ARM: virt: Don't generate RTC ACPI device when using UEFI

 dump.c                       | 131 ++++++++++-------
 hw/arm/virt-acpi-build.c     |  24 +---
 hw/arm/xlnx-ep108.c          |  40 +++---
 hw/arm/xlnx-zynqmp.c         |  37 +++++
 include/elf.h                |   5 +
 include/hw/arm/xlnx-zynqmp.h |  12 ++
 include/sysemu/dump-arch.h   |   9 +-
 include/sysemu/dump.h        |  11 +-
 qapi-schema.json             |   4 +-
 qom/cpu.c                    |   4 +-
 target-arm/Makefile.objs     |   3 +-
 target-arm/arch_dump.c       | 336 +++++++++++++++++++++++++++++++++++++++++++
 target-arm/cpu-qom.h         |   5 +
 target-arm/cpu.c             |   2 +
 target-arm/helper.c          |  12 +-
 target-arm/internals.h       |   5 +-
 target-arm/op_helper.c       |   2 +-
 target-ppc/arch_dump.c       |   6 -
 target-ppc/cpu-qom.h         |   2 -
 target-ppc/translate_init.c  |   1 -
 target-s390x/arch_dump.c     |   6 -
 target-s390x/cpu-qom.h       |   2 -
 target-s390x/cpu.c           |   1 -
 23 files changed, 528 insertions(+), 132 deletions(-)
 create mode 100644 target-arm/arch_dump.c

Comments

Peter Maydell Jan. 15, 2016, 5:01 p.m. UTC | #1
On 15 January 2016 at 15:23, Peter Maydell <peter.maydell@linaro.org> wrote:
> This is the current ARM queue; biggest bit is Andrew's patches to
> add dump-guest-memory support. Anyway, 11 patches is enough that we
> might as well push the queue out to master...
>
> thanks
> -- PMM
>
>
>
> The following changes since commit f02ccf53693758b65843264e077f90cf295e7d98:
>
>   disas/libvixl: Really suppress gcc 4.6.3 sign-compare warnings (2016-01-14 17:57:51 +0000)
>
> are available in the git repository at:
>
>   git://git.linaro.org/people/pmaydell/qemu-arm.git tags/pull-target-arm-20160115
>
> for you to fetch changes up to 67736a25f86595c8ae174a21d965af5a027884c9:
>
>   ARM: virt: Don't generate RTC ACPI device when using UEFI (2016-01-15 14:55:16 +0000)
>
> ----------------------------------------------------------------
> target-arm queue:
>  * use the right MMU index when handling unaligned accesses
>  * xlnx-zynqmp: Add support for high DDR memory regions
>  * target-arm: support QMP dump-guest-memory
>  * ARM: virt: Don't generate RTC ACPI device when using UEFI

Applied, thanks.

-- PMM