public inbox for kvm@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/21] KVM: PPC: MOL bringup patches v3
@ 2010-03-24 20:48 Alexander Graf
  2010-03-24 20:48 ` [PATCH 05/21] KVM: PPC: Split instruction reading out Alexander Graf
                   ` (9 more replies)
  0 siblings, 10 replies; 26+ messages in thread
From: Alexander Graf @ 2010-03-24 20:48 UTC (permalink / raw)
  To: kvm-ppc-u79uwXL29TY76Z2rM5mHXA; +Cc: kvm-u79uwXL29TY76Z2rM5mHXA

Mac-on-Linux has always lacked PPC64 host support. This is going to
change now!

This patchset contains minor patches to enable MOL, but is mostly about
bug fixes that came out of running Mac OS X. With this set and the
current svn version of MOL I have 10.4.11 running as a guest on a 970MP
as well as a PS3 host.


v1 -> v2:

 - Add documentation for EXIT_OSI and ENABLE_CAP
 - Add flags to enable_cap
 - Add build fix for !CONFIG_VSX
 - Remove in-paca register check

v2 -> v3:

 - Document that EXIT_OSI is not migration safe
 - Add CAP for ENABLE_CAP
 - Improve documentation for ENABLE_CAP
 - Add alignment emulation for stfs, stfd, lfd
 - Add alignment DAR emulation
 - Add CAP for unset irq
 - new: Fix dcbz emulation
 - new: Add emulation for dcba
 - new: Add check if pte was mapped secondary (PS3 fix)
 - new: Use ULL for big numbers
 - new: Make bools bitfields
 - new: Disable MSR_FEx for Cell hosts (PS3 speedup)


Alexander Graf (21):
  KVM: PPC: Ensure split mode works
  KVM: PPC: Allow userspace to unset the IRQ line
  KVM: PPC: Make DSISR 32 bits wide
  KVM: PPC: Book3S_32 guest MMU fixes
  KVM: PPC: Split instruction reading out
  KVM: PPC: Don't reload FPU with invalid values
  KVM: PPC: Load VCPU for register fetching
  KVM: PPC: Implement mfsr emulation
  KVM: PPC: Implement BAT reads
  KVM: PPC: Make XER load 32 bit
  KVM: PPC: Implement emulation for lbzux and lhax
  KVM: PPC: Implement alignment interrupt
  KVM: Add support for enabling capabilities per-vcpu
  KVM: PPC: Add OSI hypercall interface
  KVM: PPC: Make build work without CONFIG_VSX/ALTIVEC
  KVM: PPC: Fix dcbz emulation
  KVM: PPC: Add emulation for dcba
  KVM: PPC: Add check if pte was mapped secondary
  KVM: PPC: Use ULL for big numbers
  KVM: PPC: Make bools bitfields
  KVM: PPC: Disable MSR_FEx for Cell hosts

 Documentation/kvm/api.txt               |   54 ++++++++-
 arch/powerpc/include/asm/kvm.h          |    3 +
 arch/powerpc/include/asm/kvm_book3s.h   |   47 +++++---
 arch/powerpc/include/asm/kvm_host.h     |   10 +-
 arch/powerpc/include/asm/kvm_ppc.h      |    2 +
 arch/powerpc/kvm/book3s.c               |  191 +++++++++++++++++++-----------
 arch/powerpc/kvm/book3s_32_mmu.c        |   30 ++++-
 arch/powerpc/kvm/book3s_64_emulate.c    |  146 +++++++++++++++++++++++-
 arch/powerpc/kvm/book3s_64_interrupts.S |    2 +-
 arch/powerpc/kvm/book3s_64_mmu_host.c   |    7 +
 arch/powerpc/kvm/book3s_64_slb.S        |    2 +-
 arch/powerpc/kvm/emulate.c              |   20 ++++
 arch/powerpc/kvm/powerpc.c              |   45 +++++++-
 include/linux/kvm.h                     |   19 +++
 14 files changed, 468 insertions(+), 110 deletions(-)

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

end of thread, other threads:[~2010-04-01  9:13 UTC | newest]

Thread overview: 26+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-03-24 20:48 [PATCH 00/21] KVM: PPC: MOL bringup patches v3 Alexander Graf
2010-03-24 20:48 ` [PATCH 05/21] KVM: PPC: Split instruction reading out Alexander Graf
2010-03-24 20:48 ` [PATCH 10/21] KVM: PPC: Make XER load 32 bit Alexander Graf
2010-03-24 20:48 ` [PATCH 12/21] KVM: PPC: Implement alignment interrupt Alexander Graf
2010-03-24 20:48 ` [PATCH 13/21] KVM: Add support for enabling capabilities per-vcpu Alexander Graf
     [not found]   ` <1269463717-18305-14-git-send-email-agraf-l3A5Bk7waGM@public.gmane.org>
2010-04-01  8:51     ` Avi Kivity
     [not found]       ` <4BB45E9D.20303-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
2010-04-01  9:06         ` Alexander Graf
     [not found]           ` <B66E8E9D-10BC-4CE6-BAAB-6D185CBDEB38-l3A5Bk7waGM@public.gmane.org>
2010-04-01  9:13             ` Avi Kivity
2010-03-24 20:48 ` [PATCH 15/21] KVM: PPC: Make build work without CONFIG_VSX/ALTIVEC Alexander Graf
2010-03-24 20:48 ` [PATCH 16/21] KVM: PPC: Fix dcbz emulation Alexander Graf
2010-03-24 20:48 ` [PATCH 17/21] KVM: PPC: Add emulation for dcba Alexander Graf
2010-03-24 20:48 ` [PATCH 18/21] KVM: PPC: Add check if pte was mapped secondary Alexander Graf
2010-03-24 20:48 ` [PATCH 19/21] KVM: PPC: Use ULL for big numbers Alexander Graf
     [not found] ` <1269463717-18305-1-git-send-email-agraf-l3A5Bk7waGM@public.gmane.org>
2010-03-24 20:48   ` [PATCH 01/21] KVM: PPC: Ensure split mode works Alexander Graf
2010-03-24 20:48   ` [PATCH 02/21] KVM: PPC: Allow userspace to unset the IRQ line Alexander Graf
2010-03-24 20:48   ` [PATCH 03/21] KVM: PPC: Make DSISR 32 bits wide Alexander Graf
2010-03-24 20:48   ` [PATCH 04/21] KVM: PPC: Book3S_32 guest MMU fixes Alexander Graf
2010-03-24 20:48   ` [PATCH 06/21] KVM: PPC: Don't reload FPU with invalid values Alexander Graf
2010-03-24 20:48   ` [PATCH 07/21] KVM: PPC: Load VCPU for register fetching Alexander Graf
2010-03-24 20:48   ` [PATCH 08/21] KVM: PPC: Implement mfsr emulation Alexander Graf
2010-03-24 20:48   ` [PATCH 09/21] KVM: PPC: Implement BAT reads Alexander Graf
2010-03-24 20:48   ` [PATCH 11/21] KVM: PPC: Implement emulation for lbzux and lhax Alexander Graf
2010-03-24 20:48   ` [PATCH 14/21] KVM: PPC: Add OSI hypercall interface Alexander Graf
2010-03-24 20:48   ` [PATCH 20/21] KVM: PPC: Make bools bitfields Alexander Graf
2010-03-24 20:48   ` [PATCH 21/21] KVM: PPC: Disable MSR_FEx for Cell hosts Alexander Graf
2010-04-01  8:50   ` [PATCH 00/21] KVM: PPC: MOL bringup patches v3 Avi Kivity

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