From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:44841) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UxFaE-0004Qk-2x for qemu-devel@nongnu.org; Thu, 11 Jul 2013 08:02:52 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UxFa8-0000Oh-8b for qemu-devel@nongnu.org; Thu, 11 Jul 2013 08:02:50 -0400 Received: from mx1.redhat.com ([209.132.183.28]:27362) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UxFa8-0000OZ-0q for qemu-devel@nongnu.org; Thu, 11 Jul 2013 08:02:44 -0400 Received: from int-mx11.intmail.prod.int.phx2.redhat.com (int-mx11.intmail.prod.int.phx2.redhat.com [10.5.11.24]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id r6BC2gB0027356 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Thu, 11 Jul 2013 08:02:43 -0400 Received: from redhat.com (vpn1-7-228.ams2.redhat.com [10.36.7.228]) by int-mx11.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with SMTP id r6BC2fb9017354 for ; Thu, 11 Jul 2013 08:02:42 -0400 Date: Thu, 11 Jul 2013 15:03:58 +0300 From: "Michael S. Tsirkin" Message-ID: <1373544219-25608-1-git-send-email-mst@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Subject: [Qemu-devel] [PATCH v2 0/2] acpi hotplug of devices behind a bridge List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org This is on top of patchset generating ACPI tables in qemu. Changes from v1: - fixed some bugs - fixed migration and cross version compatibility - rebased to latest bits Michael S. Tsirkin (2): pci: add pci_for_each_bus qemu: piix: PCI bridge ACPI hotplug support docs/specs/acpi_pci_hotplug.txt | 8 + hw/acpi/piix4.c | 217 +++++++++++++++----- hw/i386/Makefile.objs | 2 +- hw/i386/acpi-build.c | 425 +++++++++++++++++++++++++++++++++++---- hw/i386/acpi-dsdt.dsl | 36 +++- hw/i386/pc_piix.c | 3 + hw/i386/ssdt-pcihp.dsl | 51 ----- hw/i386/ssdt-pcihp.hex.generated | 108 ---------- hw/pci/pci.c | 17 ++ include/hw/i386/pc.h | 5 +- include/hw/pci/pci.h | 3 + 11 files changed, 607 insertions(+), 268 deletions(-) delete mode 100644 hw/i386/ssdt-pcihp.dsl delete mode 100644 hw/i386/ssdt-pcihp.hex.generated -- MST