From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:54585) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TlFI8-0002m2-CD for qemu-devel@nongnu.org; Wed, 19 Dec 2012 03:46:17 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TlFI5-0007pz-9D for qemu-devel@nongnu.org; Wed, 19 Dec 2012 03:46:16 -0500 Received: from mx1.redhat.com ([209.132.183.28]:58266) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TlFI5-0007pM-0a for qemu-devel@nongnu.org; Wed, 19 Dec 2012 03:46:13 -0500 Received: from int-mx02.intmail.prod.int.phx2.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id qBJ8kB17031325 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Wed, 19 Dec 2012 03:46:12 -0500 From: Gerd Hoffmann Date: Wed, 19 Dec 2012 09:46:02 +0100 Message-Id: <1355906770-17199-1-git-send-email-kraxel@redhat.com> Subject: [Qemu-devel] [PATCH 0/8] misc acpi updates and test devices List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Gerd Hoffmann Hi, Next round of the minor acpi update patch series. The acpi bits are actually unchanged. The debug-exit device got updates. It handles byte, word + dword access. Also the io region size is configurable now. While being at it I also picked up the pc-testdev, polished it a bit (portio list is gone, some QOM cleanups), and sticked it into the series. Git tree for pulling is available in case no one objects, but especially patches 5+6 should get some review first (all others have been on the list before and are unmodified reposts). cheers, Gerd The following changes since commit 914606d26e654d4c01bd5186f4d05e3fd445e219: Merge remote-tracking branch 'stefanha/trivial-patches' into staging (2012-12-18 15:41:43 -0600) are available in the git repository at: git://git.kraxel.org/qemu acpi.1 Gerd Hoffmann (7): configure: also symlink *.aml files acpi: autoload dsdt apci: assign memory regions to piix4 acpi device apci: assign memory regions to ich9 lpc device switch debugcon to memory api add isa-debug-exit device. pc: remove bochs bios debug ports Lucas Meneghel Rodrigues (1): hw: Add test device for unittests execution configure | 1 + hw/acpi_ich9.c | 6 +- hw/acpi_ich9.h | 4 +- hw/acpi_piix4.c | 20 ++++-- hw/debugcon.c | 31 +++++++-- hw/debugexit.c | 75 ++++++++++++++++++++ hw/i386/Makefile.objs | 3 +- hw/lpc_ich9.c | 2 +- hw/pc-testdev.c | 183 +++++++++++++++++++++++++++++++++++++++++++++++++ hw/pc.c | 64 ++++++----------- hw/pc.h | 1 + hw/pc_piix.c | 1 + hw/pc_q35.c | 1 + 13 files changed, 332 insertions(+), 60 deletions(-) create mode 100644 hw/debugexit.c create mode 100644 hw/pc-testdev.c