public inbox for kvm-ppc@vger.kernel.org
 help / color / mirror / Atom feed
* [PULL 00/16] ppc patch queue 2012-05-06
@ 2012-05-06 14:20 Alexander Graf
  2012-05-06 14:20 ` [PATCH 01/16] KVM: Use minimum and maximum address mapped by TLB1 Alexander Graf
                   ` (16 more replies)
  0 siblings, 17 replies; 18+ messages in thread
From: Alexander Graf @ 2012-05-06 14:20 UTC (permalink / raw)
  To: kvm-ppc; +Cc: kvm list, Avi Kivity

Hi Avi,

This is my current patch queue for ppc. Please pull.

Alex


The following changes since commit e726b1bd64b0b8945c171d2d4bf749fba9fc0800:
  Christian Borntraeger (1):
        KVM: s390: implement KVM_CAP_NR/MAX_VCPUS

are available in the git repository at:

  git://github.com/agraf/linux-2.6.git for-upstream

Alexander Graf (8):
      KVM: PPC: Restrict PPC_[L|ST]D macro to asm code
      KVM: PPC: Book3S: PR: Optimize entry path
      KVM: PPC: Book3S: PR: No isync in slbie path
      KVM: PPC: Fix stbux emulation
      KVM: PPC: Fix PR KVM on POWER7 bare metal
      KVM: PPC: Book3S: Enable IRQs during exit handling
      KVM: PPC: Emulator: clean up instruction parsing
      KVM: PPC: Emulator: clean up SPR reads and writes

Benjamin Herrenschmidt (2):
      kvm/book3s: Make kernel emulated H_PUT_TCE available for "PR" KVM
      kvm/powerpc: Add new ioctl to retreive server MMU infos

Bharat Bhushan (2):
      KVM: Use minimum and maximum address mapped by TLB1
      KVM: PPC: Use clockevent multiplier and shifter for decrementer

Mihai Caraman (2):
      KVM: PPC: bookehv: Use lwz/stw instead of PPC_LL/PPC_STL for 32-bit fields
      KVM: PPC: bookehv: Fix r8/r13 storing in level exception handler

Varun Sethi (2):
      KVM: PPC: bookehv: Use a Macro for saving/restoring guest registers to/from their 64 bit copies.
      KVM: PPC: booke(hv): Fix save/restore of guest accessible SPRGs.

 Documentation/virtual/kvm/api.txt     |   70 +++++++++++++++
 arch/powerpc/include/asm/kvm_asm.h    |   10 ++
 arch/powerpc/include/asm/kvm_host.h   |    4 +-
 arch/powerpc/include/asm/kvm_ppc.h    |   10 ++-
 arch/powerpc/include/asm/time.h       |    1 +
 arch/powerpc/kernel/ppc_ksyms.c       |    4 +
 arch/powerpc/kernel/time.c            |    3 +-
 arch/powerpc/kvm/44x_emulate.c        |   51 ++++-------
 arch/powerpc/kvm/Makefile             |    2 +
 arch/powerpc/kvm/book3s_64_slb.S      |    2 -
 arch/powerpc/kvm/book3s_64_vio.c      |  150 +++++++++++++++++++++++++++++++++
 arch/powerpc/kvm/book3s_64_vio_hv.c   |    3 +
 arch/powerpc/kvm/book3s_emulate.c     |  106 ++++++++++++-----------
 arch/powerpc/kvm/book3s_hv.c          |  145 ++++++++------------------------
 arch/powerpc/kvm/book3s_pr.c          |   35 ++++++++
 arch/powerpc/kvm/book3s_pr_papr.c     |   18 ++++
 arch/powerpc/kvm/book3s_segment.S     |   48 +++++++----
 arch/powerpc/kvm/booke.h              |    4 +-
 arch/powerpc/kvm/booke_emulate.c      |   95 ++++++++++++---------
 arch/powerpc/kvm/booke_interrupts.S   |    8 +-
 arch/powerpc/kvm/bookehv_interrupts.S |   58 +++++--------
 arch/powerpc/kvm/e500.h               |    4 +
 arch/powerpc/kvm/e500_emulate.c       |  126 ++++++++++++++++------------
 arch/powerpc/kvm/e500_tlb.c           |   88 +++++++++++++++++++-
 arch/powerpc/kvm/emulate.c            |  146 +++++++++++---------------------
 arch/powerpc/kvm/powerpc.c            |   26 +++++-
 include/linux/kvm.h                   |   27 ++++++
 27 files changed, 782 insertions(+), 462 deletions(-)
 create mode 100644 arch/powerpc/kvm/book3s_64_vio.c

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

end of thread, other threads:[~2012-05-08 14:01 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-05-06 14:20 [PULL 00/16] ppc patch queue 2012-05-06 Alexander Graf
2012-05-06 14:20 ` [PATCH 01/16] KVM: Use minimum and maximum address mapped by TLB1 Alexander Graf
2012-05-06 14:20 ` [PATCH 02/16] KVM: PPC: Use clockevent multiplier and shifter for decrementer Alexander Graf
2012-05-06 14:20 ` [PATCH 03/16] KVM: PPC: bookehv: Use a Macro for saving/restoring guest registers to/from their 64 b Alexander Graf
2012-05-06 14:20 ` [PATCH 04/16] KVM: PPC: Restrict PPC_[L|ST]D macro to asm code Alexander Graf
2012-05-06 14:20 ` [PATCH 05/16] KVM: PPC: booke(hv): Fix save/restore of guest accessible SPRGs Alexander Graf
2012-05-06 14:20 ` [PATCH 06/16] KVM: PPC: Book3S: PR: Optimize entry path Alexander Graf
2012-05-06 14:20 ` [PATCH 07/16] KVM: PPC: Book3S: PR: No isync in slbie path Alexander Graf
2012-05-06 14:20 ` [PATCH 08/16] KVM: PPC: bookehv: Use lwz/stw instead of PPC_LL/PPC_STL for 32-bit fields Alexander Graf
2012-05-06 14:20 ` [PATCH 09/16] KVM: PPC: Fix stbux emulation Alexander Graf
2012-05-06 14:20 ` [PATCH 10/16] KVM: PPC: Fix PR KVM on POWER7 bare metal Alexander Graf
2012-05-06 14:20 ` [PATCH 11/16] KVM: PPC: Book3S: Enable IRQs during exit handling Alexander Graf
2012-05-06 14:20 ` [PATCH 12/16] KVM: PPC: bookehv: Fix r8/r13 storing in level exception handler Alexander Graf
2012-05-06 14:20 ` [PATCH 13/16] kvm/book3s: Make kernel emulated H_PUT_TCE available for "PR" KVM Alexander Graf
2012-05-06 14:20 ` [PATCH 14/16] kvm/powerpc: Add new ioctl to retreive server MMU infos Alexander Graf
2012-05-06 14:20 ` [PATCH 15/16] KVM: PPC: Emulator: clean up instruction parsing Alexander Graf
2012-05-06 14:21 ` [PATCH 16/16] KVM: PPC: Emulator: clean up SPR reads and writes Alexander Graf
2012-05-08 14:01 ` [PULL 00/16] ppc patch queue 2012-05-06 Avi Kivity

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox