From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from [140.186.70.92] (port=37309 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1P0bhQ-0000Ee-D4 for qemu-devel@nongnu.org; Tue, 28 Sep 2010 11:02:34 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1P0bhO-0005to-Fc for qemu-devel@nongnu.org; Tue, 28 Sep 2010 11:02:31 -0400 Received: from smtp02.citrix.com ([66.165.176.63]:17947) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1P0bhO-0005tN-7q for qemu-devel@nongnu.org; Tue, 28 Sep 2010 11:02:30 -0400 From: anthony.perard@citrix.com Date: Tue, 28 Sep 2010 16:01:23 +0100 Message-Id: <1285686097-13036-1-git-send-email-anthony.perard@citrix.com> Subject: [Qemu-devel] [PATCH RFC V4 00/14] xen device model support List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Anthony PERARD , xen-devel@lists.xensource.com, Stefano.Stabellini@eu.citrix.com From: Anthony PERARD Hi all, this is the fourth version of the patch series that adds xen device model support in qemu. This is the list of changes we made on top of the last version: - we addressed the code style change requests; - we have split mapcache in two file xen-mapcache.c and xen-mapcache-stub.c with check in configure to use one or the other; - we have fixed the compilation issue with user-only target and with older Xen release (3.3.0, 3.4.0 and 4.0.1), this come with more check in the configure script; - we have replaced -enable-xen by a more generic options, so we introduce -accel options (use for kvm and xen). For the next time we have to remove the Xen specific ACPI Implementation. 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. xen: Add a Xen specific ACPI Implementation to target-xen Makefile.target | 13 ++ configure | 70 +++++++- cpu-common.h | 1 + exec.c | 71 ++++++- hw/hw.h | 3 + hw/pci_ids.h | 2 + hw/piix_pci.c | 28 +++- hw/xen.h | 26 +++ hw/xen_acpi_piix4.c | 411 +++++++++++++++++++++++++++++++++++++ hw/xen_backend.c | 314 +++++++++++++++--------------- hw/xen_backend.h | 2 +- hw/xen_common.h | 51 ++++-- hw/xen_disk.c | 414 +++++++++++++++++++------------------- hw/xen_domainbuild.c | 2 +- hw/xen_machine_fv.c | 156 ++++++++++++++ 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 | 546 ++++++++++++++++++++++++++++++++++++++++++++++++++ xen-mapcache-stub.c | 33 +++ xen-mapcache.c | 335 +++++++++++++++++++++++++++++++ xen-mapcache.h | 14 ++ xen-stub.c | 34 +++ 26 files changed, 2788 insertions(+), 517 deletions(-) create mode 100644 hw/xen_acpi_piix4.c 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