All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH V2 0/2] kvm tools: PPC64 basic support
@ 2011-12-13  7:00 ` Matt Evans
  0 siblings, 0 replies; 38+ messages in thread
From: Matt Evans @ 2011-12-13  7:00 UTC (permalink / raw)
  To: kvm, kvm-ppc; +Cc: penberg, asias.hejun, levinsasha928, gorcunov

These two patches build on the previous "split out arch-specific" work.  The
first adds a PPC64 build, basic CPU support, guest RAM mapping (using hugepages),
flat kernel loading and all required arch-specific definitions & structures.

With patches to date, this should build PPC but not necessarily run much.
Subsequent patches add support to emulate an SPAPR-esque machine.

This patch does not include any code borrowed from outside kvmtool.

The second patch is a small fix for generic virtio code (now that we have a
PPC build) which removes reliance on ioeventfds for PPC, which doesn't provide
them.

Matt Evans (2):
  kvm tools: Add initial SPAPR PPC64 architecture support
  kvm tools: Make virtio-pci's ioeventfd__add_event() fall back
    gracefully if ioeventfds unavailable

 tools/kvm/Makefile                           |   10 +
 tools/kvm/include/kvm/ioeventfd.h            |    3 +-
 tools/kvm/ioeventfd.c                        |   12 +-
 tools/kvm/kvm.c                              |    3 +
 tools/kvm/powerpc/include/kvm/barrier.h      |    6 +
 tools/kvm/powerpc/include/kvm/kvm-arch.h     |   72 ++++++++
 tools/kvm/powerpc/include/kvm/kvm-cpu-arch.h |   66 ++++++++
 tools/kvm/powerpc/ioport.c                   |   18 ++
 tools/kvm/powerpc/irq.c                      |   40 +++++
 tools/kvm/powerpc/kvm-cpu.c                  |  233 ++++++++++++++++++++++++++
 tools/kvm/powerpc/kvm.c                      |  187 +++++++++++++++++++++
 tools/kvm/virtio/pci.c                       |   13 ++-
 12 files changed, 658 insertions(+), 5 deletions(-)
 create mode 100644 tools/kvm/powerpc/include/kvm/barrier.h
 create mode 100644 tools/kvm/powerpc/include/kvm/kvm-arch.h
 create mode 100644 tools/kvm/powerpc/include/kvm/kvm-cpu-arch.h
 create mode 100644 tools/kvm/powerpc/ioport.c
 create mode 100644 tools/kvm/powerpc/irq.c
 create mode 100644 tools/kvm/powerpc/kvm-cpu.c
 create mode 100644 tools/kvm/powerpc/kvm.c


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

end of thread, other threads:[~2011-12-15  2:20 UTC | newest]

Thread overview: 38+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-12-13  7:00 [PATCH V2 0/2] kvm tools: PPC64 basic support Matt Evans
2011-12-13  7:00 ` Matt Evans
2011-12-13  7:00 ` [PATCH V2 1/2] kvm tools: Add initial SPAPR PPC64 architecture support Matt Evans
2011-12-13  7:00   ` Matt Evans
2011-12-13  7:44   ` Pekka Enberg
2011-12-13  7:44     ` Pekka Enberg
2011-12-14  9:38     ` [PATCH V2 1/2] kvm tools: Add initial SPAPR PPC64 architecture Benjamin Herrenschmidt
2011-12-14  9:38       ` [PATCH V2 1/2] kvm tools: Add initial SPAPR PPC64 architecture support Benjamin Herrenschmidt
2011-12-14 10:30       ` Pekka Enberg
2011-12-14 10:30         ` Pekka Enberg
2011-12-14 10:41         ` [PATCH V2 1/2] kvm tools: Add initial SPAPR PPC64 architecture Benjamin Herrenschmidt
2011-12-14 10:41           ` [PATCH V2 1/2] kvm tools: Add initial SPAPR PPC64 architecture support Benjamin Herrenschmidt
     [not found]           ` <521B67B5-FA19-479A-A1DF-14A0E65C30AF@suse.de>
2011-12-14 11:31             ` [PATCH V2 1/2] kvm tools: Add initial SPAPR PPC64 architecture Pekka Enberg
2011-12-14 11:31               ` [PATCH V2 1/2] kvm tools: Add initial SPAPR PPC64 architecture support Pekka Enberg
2011-12-14 13:36             ` [PATCH V2 1/2] kvm tools: Add initial SPAPR PPC64 architecture Asias He
2011-12-14 13:36               ` [PATCH V2 1/2] kvm tools: Add initial SPAPR PPC64 architecture support Asias He
2011-12-13  8:23   ` Alexander Graf
2011-12-13  8:23     ` Alexander Graf
2011-12-15  1:27     ` [PATCH V2 1/2] kvm tools: Add initial SPAPR PPC64 architecture Matt Evans
2011-12-15  1:27       ` [PATCH V2 1/2] kvm tools: Add initial SPAPR PPC64 architecture support Matt Evans
2011-12-15  1:37       ` Alexander Graf
2011-12-15  1:37         ` Alexander Graf
2011-12-15  2:20         ` [PATCH V2 1/2] kvm tools: Add initial SPAPR PPC64 architecture Matt Evans
2011-12-15  2:20           ` [PATCH V2 1/2] kvm tools: Add initial SPAPR PPC64 architecture support Matt Evans
2011-12-13 17:43   ` Pekka Enberg
2011-12-13 17:43     ` Pekka Enberg
2011-12-13 21:41     ` Matt Evans
2011-12-13 21:41       ` Matt Evans
2011-12-13  7:00 ` [PATCH V2 2/2] kvm tools: Make virtio-pci's ioeventfd__add_event() fall back gracefully if ioeventfd Matt Evans
2011-12-13  7:00   ` [PATCH V2 2/2] kvm tools: Make virtio-pci's ioeventfd__add_event() fall back gracefully if ioeventfds unavailable Matt Evans
2011-12-13  8:25 ` [PATCH V2 0/2] kvm tools: PPC64 basic support Sasha Levin
2011-12-13 10:23   ` Sasha Levin
2011-12-14  0:34   ` Matt Evans
2011-12-14  0:34     ` Matt Evans
2011-12-14  6:35     ` Sasha Levin
2011-12-14  6:35       ` Sasha Levin
2011-12-14  9:35       ` Benjamin Herrenschmidt
2011-12-14  9:35         ` Benjamin Herrenschmidt

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.