qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH V5 00/14] xen device model support
@ 2010-10-11 16:06 anthony.perard
  2010-10-11 16:06 ` [Qemu-devel] [PATCH V5 01/14] xen: Replace some tab-indents with spaces (clean-up) anthony.perard
                   ` (13 more replies)
  0 siblings, 14 replies; 16+ messages in thread
From: anthony.perard @ 2010-10-11 16:06 UTC (permalink / raw)
  To: qemu-devel; +Cc: Anthony PERARD, xen-devel, Stefano.Stabellini

From: Anthony PERARD <anthony.perard@citrix.com>

Hi all,
This is the fifth version of the patch series that adds Xen device model support
in QEMU.

The change we have made on the last version are:

  - We removed the Xen specific ACPI PIIX4 implementation and added a Xen call in
    acpi_piix4.c for the sleep state.

  - We removed all the qemu_ram_ptr_unlock calls apart from the one in
    cpu_physical_memory_rw.


Please let us know if you have any additional comments and we'll be happy to
address them. Otherwise this version of the series contains everything needed
for Xen support in Qemu, so it could be considered for commit.


Anthony PERARD (14):
  xen: Replace some tab-indents with spaces (clean-up).
  xen: Support new libxc calls from xen unstable.
  xen: Add xen_machine_fv
  Introduce -accel command option.
  xen: Add xen in -accel option.
  xen: Add the Xen platform pci device
  piix_pci: Introduces Xen specific call for irq.
  xen: add a 8259 Interrupt Controller
  xen: Introduce the Xen mapcache
  Introduce qemu_ram_ptr_unlock.
  vl.c: Introduce getter for shutdown_requested and reset_requested.
  xen: Initialize event channels and io rings
  xen: Set running state in xenstore.
  acpi-piix4: Add Xen hypercall for sleep state.

 Makefile.target      |   12 +
 configure            |   70 ++++++-
 cpu-common.h         |    1 +
 exec.c               |   49 ++++-
 hw/acpi_piix4.c      |    4 +
 hw/hw.h              |    3 +
 hw/pci_ids.h         |    2 +
 hw/piix_pci.c        |   28 +++-
 hw/xen.h             |   28 +++
 hw/xen_backend.c     |  314 ++++++++++++++--------------
 hw/xen_backend.h     |    2 +-
 hw/xen_common.h      |   48 +++--
 hw/xen_disk.c        |  414 ++++++++++++++++++------------------
 hw/xen_domainbuild.c |    2 +-
 hw/xen_machine_fv.c  |  160 ++++++++++++++
 hw/xen_nic.c         |  230 ++++++++++----------
 hw/xen_platform.c    |  431 +++++++++++++++++++++++++++++++++++++
 hw/xen_platform.h    |    8 +
 qemu-options.hx      |   10 +
 sysemu.h             |    2 +
 vl.c                 |   98 ++++++++-
 xen-all.c            |  573 ++++++++++++++++++++++++++++++++++++++++++++++++++
 xen-mapcache-stub.c  |   33 +++
 xen-mapcache.c       |  335 +++++++++++++++++++++++++++++
 xen-mapcache.h       |   14 ++
 xen-stub.c           |   38 ++++
 26 files changed, 2395 insertions(+), 514 deletions(-)
 create mode 100644 hw/xen_machine_fv.c
 create mode 100644 hw/xen_platform.c
 create mode 100644 hw/xen_platform.h
 create mode 100644 xen-all.c
 create mode 100644 xen-mapcache-stub.c
 create mode 100644 xen-mapcache.c
 create mode 100644 xen-mapcache.h
 create mode 100644 xen-stub.c

-- 
Anthony PERARD

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

end of thread, other threads:[~2010-10-17 16:27 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-10-11 16:06 [Qemu-devel] [PATCH V5 00/14] xen device model support anthony.perard
2010-10-11 16:06 ` [Qemu-devel] [PATCH V5 01/14] xen: Replace some tab-indents with spaces (clean-up) anthony.perard
2010-10-11 16:06 ` [Qemu-devel] [PATCH V5 02/14] xen: Support new libxc calls from xen unstable anthony.perard
2010-10-11 16:06 ` [Qemu-devel] [PATCH V5 03/14] xen: Add xen_machine_fv anthony.perard
2010-10-11 16:07 ` [Qemu-devel] [PATCH V5 04/14] Introduce -accel command option anthony.perard
2010-10-11 16:07 ` [Qemu-devel] [PATCH V5 05/14] xen: Add xen in -accel option anthony.perard
2010-10-11 16:07 ` [Qemu-devel] [PATCH V5 06/14] xen: Add the Xen platform pci device anthony.perard
2010-10-11 16:07 ` [Qemu-devel] [PATCH V5 07/14] piix_pci: Introduces Xen specific call for irq anthony.perard
2010-10-11 16:07 ` [Qemu-devel] [PATCH V5 08/14] xen: add a 8259 Interrupt Controller anthony.perard
2010-10-11 16:07 ` [Qemu-devel] [PATCH V5 09/14] xen: Introduce the Xen mapcache anthony.perard
2010-10-17 16:16   ` Blue Swirl
2010-10-11 16:07 ` [Qemu-devel] [PATCH V5 10/14] Introduce qemu_ram_ptr_unlock anthony.perard
2010-10-11 16:07 ` [Qemu-devel] [PATCH V5 11/14] vl.c: Introduce getter for shutdown_requested and reset_requested anthony.perard
2010-10-11 16:07 ` [Qemu-devel] [PATCH V5 12/14] xen: Initialize event channels and io rings anthony.perard
2010-10-11 16:07 ` [Qemu-devel] [PATCH V5 13/14] xen: Set running state in xenstore anthony.perard
2010-10-11 16:07 ` [Qemu-devel] [PATCH V5 14/14] acpi-piix4: Add Xen hypercall for sleep state anthony.perard

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