qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 00/14] target-arm queue
@ 2014-06-19 17:36 Peter Maydell
  2014-06-19 17:36 ` [Qemu-devel] [PULL 01/14] target-arm: implement PD0/PD1 bits for TTBCR Peter Maydell
                   ` (14 more replies)
  0 siblings, 15 replies; 16+ messages in thread
From: Peter Maydell @ 2014-06-19 17:36 UTC (permalink / raw)
  To: qemu-devel

target-arm queue: mostly fairly minor stuff, apart from the PSCI
patches, which have been on the list for some time.

I meant to put this out earlier in the week but got hit by an
urgent deadline...

thanks
-- PMM

The following changes since commit 6baa963f4dcc211801608ebe1e0482b51653350c:

  Merge remote-tracking branch 'remotes/bonzini/scsi-next' into staging (2014-06-19 16:18:04 +0100)

are available in the git repository at:


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

for you to fetch changes up to b6fb3a89e3cd173153f1edc4edbf970987b4ebdd:

  armv7m_nvic: fix AIRCR implementation (2014-06-19 18:33:05 +0100)

----------------------------------------------------------------
target-arm:
 * Support PSCI 0.2 when using KVM
 * fix AIRCR reset value for v7M CPUs
 * report correct size information for pflash_cfi01
 * minor coverity fixes
 * avoid warnings on Windows builds due to #define clash
 * implement TTBCR PD0/PD1 bits

----------------------------------------------------------------
Fabian Aggeler (1):
      target-arm: implement PD0/PD1 bits for TTBCR

Oran Avraham (1):
      armv7m_nvic: fix AIRCR implementation

Peter Maydell (6):
      hw/arm/spitz: Avoid clash with Windows header symbol MOD_SHIFT
      target-arm: Add ULL suffix to calculation of page size
      target-arm/translate-a64.c: Remove dead ?: in disas_simd_3same_int()
      target-arm/translate-a64.c: Fix dead ?: in handle_simd_shift_fpint_conv()
      hw/arm/vexpress: Forbid specifying flash contents in two ways at once
      hw/block/pflash_cfi01: Report correct size info for parallel configs

Pranavkumar Sawargaonkar (6):
      kvm: Handle exit reason KVM_EXIT_SYSTEM_EVENT
      target-arm: Common kvm_arm_vcpu_init() for KVM ARM and KVM ARM64
      target-arm: Enable KVM_ARM_VCPU_PSCI_0_2 feature when possible
      target-arm: Implement kvm_arch_reset_vcpu() for KVM ARM64
      target-arm: Introduce per-CPU field for PSCI version
      Use PSCI v0.2 compatible string when KVM or TCG provides it

 hw/arm/spitz.c             | 108 ++++++++++++++++++++++++---------------------
 hw/arm/vexpress.c          |  10 ++++-
 hw/arm/virt.c              |  16 ++++++-
 hw/block/pflash_cfi01.c    |  20 +++++++--
 hw/intc/armv7m_nvic.c      |   5 ++-
 kvm-all.c                  |  16 +++++++
 target-arm/cpu-qom.h       |   9 ++++
 target-arm/cpu.c           |   1 +
 target-arm/cpu.h           |  16 +++++++
 target-arm/helper.c        |  64 +++++++++++++++++++--------
 target-arm/kvm.c           |  11 +++++
 target-arm/kvm32.c         |  16 ++++---
 target-arm/kvm64.c         |  26 ++++++++---
 target-arm/kvm_arm.h       |  12 +++++
 target-arm/translate-a64.c |   5 ++-
 15 files changed, 246 insertions(+), 89 deletions(-)

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

end of thread, other threads:[~2014-06-20 17:00 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-06-19 17:36 [Qemu-devel] [PULL 00/14] target-arm queue Peter Maydell
2014-06-19 17:36 ` [Qemu-devel] [PULL 01/14] target-arm: implement PD0/PD1 bits for TTBCR Peter Maydell
2014-06-19 17:36 ` [Qemu-devel] [PULL 02/14] hw/arm/spitz: Avoid clash with Windows header symbol MOD_SHIFT Peter Maydell
2014-06-19 17:36 ` [Qemu-devel] [PULL 03/14] target-arm: Add ULL suffix to calculation of page size Peter Maydell
2014-06-19 17:36 ` [Qemu-devel] [PULL 04/14] target-arm/translate-a64.c: Remove dead ?: in disas_simd_3same_int() Peter Maydell
2014-06-19 17:36 ` [Qemu-devel] [PULL 05/14] target-arm/translate-a64.c: Fix dead ?: in handle_simd_shift_fpint_conv() Peter Maydell
2014-06-19 17:36 ` [Qemu-devel] [PULL 06/14] hw/arm/vexpress: Forbid specifying flash contents in two ways at once Peter Maydell
2014-06-19 17:36 ` [Qemu-devel] [PULL 07/14] hw/block/pflash_cfi01: Report correct size info for parallel configs Peter Maydell
2014-06-19 17:36 ` [Qemu-devel] [PULL 08/14] kvm: Handle exit reason KVM_EXIT_SYSTEM_EVENT Peter Maydell
2014-06-19 17:36 ` [Qemu-devel] [PULL 09/14] target-arm: Common kvm_arm_vcpu_init() for KVM ARM and KVM ARM64 Peter Maydell
2014-06-19 17:36 ` [Qemu-devel] [PULL 10/14] target-arm: Enable KVM_ARM_VCPU_PSCI_0_2 feature when possible Peter Maydell
2014-06-19 17:36 ` [Qemu-devel] [PULL 11/14] target-arm: Implement kvm_arch_reset_vcpu() for KVM ARM64 Peter Maydell
2014-06-19 17:36 ` [Qemu-devel] [PULL 12/14] target-arm: Introduce per-CPU field for PSCI version Peter Maydell
2014-06-19 17:36 ` [Qemu-devel] [PULL 13/14] Use PSCI v0.2 compatible string when KVM or TCG provides it Peter Maydell
2014-06-19 17:36 ` [Qemu-devel] [PULL 14/14] armv7m_nvic: fix AIRCR implementation Peter Maydell
2014-06-20 17:00 ` [Qemu-devel] [PULL 00/14] target-arm queue 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).