From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:34949) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TbvUe-00067Y-Et for qemu-devel@nongnu.org; Fri, 23 Nov 2012 10:48:44 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TbvUY-0006hk-Kr for qemu-devel@nongnu.org; Fri, 23 Nov 2012 10:48:40 -0500 Received: from mx1.redhat.com ([209.132.183.28]:58656) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TbvUY-0006hT-CW for qemu-devel@nongnu.org; Fri, 23 Nov 2012 10:48:34 -0500 Received: from int-mx01.intmail.prod.int.phx2.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id qANFmXG8005112 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Fri, 23 Nov 2012 10:48:33 -0500 From: Gerd Hoffmann Date: Fri, 23 Nov 2012 16:48:11 +0100 Message-Id: <1353685711-24573-1-git-send-email-kraxel@redhat.com> Subject: [Qemu-devel] [PATCH 00/20] acpi: switch to memory api List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Gerd Hoffmann Hi, While wading through the qemu acpi and seabios aml code I've figured the qemu acpi codebase is *way* too messy. So this patch series switches the apci code to the memory api. That alone cleans up quite a bit and makes the code in hw/acpi.c more self-contained. As bonus everything shows up nicely in "info mtree" now, so you can compare that with /proc/ioports content of the guest for trouble-shooting. I've fixed one or another bug along the way. The patch series applies on top of Jason's q35 patch series. I've kept all ich9 bits as separate patches though, so when simply dropping all ich9 patches the resulting series should apply to master just fine. Comments? Reviews? cheers, Gerd Gerd Hoffmann (20): apci: switch piix4 to memory api apci: switch ich9 to memory api apci: switch vt82c686 to memory api apci: switch timer to memory api apci: switch timer to memory api [ich9] apci: switch cnt to memory api apci: switch cnt to memory api [ich9] apci: switch evt to memory api apci: switch evt to memory api [ich9] acpi: cleanup piix4 memory region acpi: cleanup vt82c686 memory region apci: switch ich9 gpe to memory api apci: switch ich9 smi to memory api acpi: cleanup ich9 memory region acpi: switch smbus to memory api acpi: fix piix4 smbus mapping apci: switch piix4 gpe to memory api acpi: remove acpi_gpe_blk apci: switch piix4 pci hotplug to memory api q35: update lpc pci config space according to configured devices hw/acpi.c | 113 +++++++++++++++++++++++++++------ hw/acpi.h | 18 +++--- hw/acpi_ich9.c | 188 ++++++++++++++----------------------------------------- hw/acpi_ich9.h | 3 + hw/acpi_piix4.c | 166 ++++++++++++++++++++++++------------------------- hw/ich9.h | 1 + hw/lpc_ich9.c | 29 +++++++++ hw/pm_smbus.c | 17 ++++- hw/pm_smbus.h | 3 +- hw/smbus_ich9.c | 64 +++++-------------- hw/vt82c686.c | 95 ++++------------------------ 11 files changed, 308 insertions(+), 389 deletions(-)