linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PULL 00/15] KVM/{arm,arm64} updates for 3.14
@ 2013-12-28 11:15 Marc Zyngier
  2013-12-28 11:15 ` [PATCH 01/15] arm/arm64: KVM: arch_timer: Initialize cntvoff at kvm_init Marc Zyngier
                   ` (15 more replies)
  0 siblings, 16 replies; 17+ messages in thread
From: Marc Zyngier @ 2013-12-28 11:15 UTC (permalink / raw)
  To: linux-arm-kernel

Hi Marcelo,

Could you please pull the following tag into kvm/next?

It contains the long overdue GIC+timer save/restore interface for
KVM/arm, and a couple of other less important changes for KVM/arm64.

Thanks,

	M.

The following changes since commit 989c6b34f6a9480e397b170cc62237e89bf4fdb9:

  KVM: MMU: handle invalid root_hpa at __direct_map (2013-12-20 19:22:49 +0100)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/maz/arm-platforms.git tags/kvm-arm64/next-3.14-1

for you to fetch changes up to da91747cda0fdbaa05b80becb5cecfac35c8de36:

  Merge branch 'kvm-arm64/for-3.14' into kvm-arm64/next (2013-12-28 10:29:37 +0000)

----------------------------------------------------------------

First drop of 3.14 merge candidates for KVM/{arm,arm64}

- GIC+timer save restore
- Allow userspace to request a X-Gene vcpu
- Cleanup SMC handling on arm64
- Allow configuration of maximum number of vcpus on arm64

----------------------------------------------------------------
Andre Przywara (1):
      ARM/KVM: save and restore generic timer registers

Anup Patel (3):
      arm64: KVM: Add Kconfig option for max VCPUs per-Guest
      arm64: KVM: Support X-Gene guest VCPU on APM X-Gene host
      arm64: KVM: Force undefined exception for Guest SMC intructions

Christoffer Dall (11):
      arm/arm64: KVM: arch_timer: Initialize cntvoff at kvm_init
      ARM: KVM: Allow creating the VGIC after VCPUs
      KVM: arm-vgic: Support KVM_CREATE_DEVICE for VGIC
      KVM: arm-vgic: Set base addr through device API
      irqchip: arm-gic: Define additional MMIO offsets and masks
      KVM: arm-vgic: Make vgic mmio functions more generic
      arm/arm64: kvm: Set vcpu->cpu to -1 on vcpu_put
      KVM: arm-vgic: Add vgic reg access from dev attr
      KVM: arm-vgic: Support unqueueing of LRs to the dist
      KVM: arm-vgic: Add GICD_SPENDSGIR and GICD_CPENDSGIR handlers
      KVM: arm-vgic: Support CPU interface reg access

Marc Zyngier (2):
      Merge tag 'vgic-migrate-for-marc' of git://git.linaro.org/people/christoffer.dall/linux-kvm-arm into kvm-arm64/next
      Merge branch 'kvm-arm64/for-3.14' into kvm-arm64/next

 Documentation/virtual/kvm/api.txt              |   7 +-
 Documentation/virtual/kvm/devices/arm-vgic.txt |  73 ++++
 arch/arm/include/asm/kvm_host.h                |   3 +
 arch/arm/include/uapi/asm/kvm.h                |  28 ++
 arch/arm/kvm/arm.c                             |  19 +-
 arch/arm/kvm/guest.c                           |  92 +++-
 arch/arm64/include/asm/kvm_host.h              |   7 +-
 arch/arm64/include/uapi/asm/kvm.h              |  21 +-
 arch/arm64/kvm/Kconfig                         |  11 +
 arch/arm64/kvm/guest.c                         |  32 +-
 arch/arm64/kvm/handle_exit.c                   |   3 -
 arch/arm64/kvm/sys_regs_generic_v8.c           |   3 +
 include/kvm/arm_vgic.h                         |   2 +-
 include/linux/irqchip/arm-gic.h                |  12 +
 include/linux/kvm_host.h                       |   1 +
 include/uapi/linux/kvm.h                       |   1 +
 virt/kvm/arm/arch_timer.c                      |  34 ++
 virt/kvm/arm/vgic.c                            | 584 +++++++++++++++++++++++--
 virt/kvm/kvm_main.c                            |   5 +
 19 files changed, 881 insertions(+), 57 deletions(-)
 create mode 100644 Documentation/virtual/kvm/devices/arm-vgic.txt

Andre Przywara (1):
  ARM/KVM: save and restore generic timer registers

Anup Patel (3):
  arm64: KVM: Add Kconfig option for max VCPUs per-Guest
  arm64: KVM: Support X-Gene guest VCPU on APM X-Gene host
  arm64: KVM: Force undefined exception for Guest SMC intructions

Christoffer Dall (11):
  arm/arm64: KVM: arch_timer: Initialize cntvoff at kvm_init
  ARM: KVM: Allow creating the VGIC after VCPUs
  KVM: arm-vgic: Support KVM_CREATE_DEVICE for VGIC
  KVM: arm-vgic: Set base addr through device API
  irqchip: arm-gic: Define additional MMIO offsets and masks
  KVM: arm-vgic: Make vgic mmio functions more generic
  arm/arm64: kvm: Set vcpu->cpu to -1 on vcpu_put
  KVM: arm-vgic: Add vgic reg access from dev attr
  KVM: arm-vgic: Support unqueueing of LRs to the dist
  KVM: arm-vgic: Add GICD_SPENDSGIR and GICD_CPENDSGIR handlers
  KVM: arm-vgic: Support CPU interface reg access

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

end of thread, other threads:[~2013-12-31 19:25 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-12-28 11:15 [PULL 00/15] KVM/{arm,arm64} updates for 3.14 Marc Zyngier
2013-12-28 11:15 ` [PATCH 01/15] arm/arm64: KVM: arch_timer: Initialize cntvoff at kvm_init Marc Zyngier
2013-12-28 11:15 ` [PATCH 02/15] ARM/KVM: save and restore generic timer registers Marc Zyngier
2013-12-28 11:15 ` [PATCH 03/15] ARM: KVM: Allow creating the VGIC after VCPUs Marc Zyngier
2013-12-28 11:15 ` [PATCH 04/15] KVM: arm-vgic: Support KVM_CREATE_DEVICE for VGIC Marc Zyngier
2013-12-28 11:15 ` [PATCH 05/15] KVM: arm-vgic: Set base addr through device API Marc Zyngier
2013-12-28 11:15 ` [PATCH 06/15] irqchip: arm-gic: Define additional MMIO offsets and masks Marc Zyngier
2013-12-28 11:15 ` [PATCH 07/15] KVM: arm-vgic: Make vgic mmio functions more generic Marc Zyngier
2013-12-28 11:15 ` [PATCH 08/15] arm/arm64: kvm: Set vcpu->cpu to -1 on vcpu_put Marc Zyngier
2013-12-28 11:15 ` [PATCH 09/15] KVM: arm-vgic: Add vgic reg access from dev attr Marc Zyngier
2013-12-28 11:15 ` [PATCH 10/15] KVM: arm-vgic: Support unqueueing of LRs to the dist Marc Zyngier
2013-12-28 11:15 ` [PATCH 11/15] KVM: arm-vgic: Add GICD_SPENDSGIR and GICD_CPENDSGIR handlers Marc Zyngier
2013-12-28 11:15 ` [PATCH 12/15] KVM: arm-vgic: Support CPU interface reg access Marc Zyngier
2013-12-28 11:15 ` [PATCH 13/15] arm64: KVM: Add Kconfig option for max VCPUs per-Guest Marc Zyngier
2013-12-28 11:15 ` [PATCH 14/15] arm64: KVM: Support X-Gene guest VCPU on APM X-Gene host Marc Zyngier
2013-12-28 11:15 ` [PATCH 15/15] arm64: KVM: Force undefined exception for Guest SMC intructions Marc Zyngier
2013-12-31 19:25 ` [PULL 00/15] KVM/{arm,arm64} updates for 3.14 Marcelo Tosatti

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