From patchwork Wed Dec 19 08:46:02 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gerd Hoffmann X-Patchwork-Id: 207266 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 5E9772C009B for ; Wed, 19 Dec 2012 20:13:10 +1100 (EST) Received: from localhost ([::1]:45706 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TlFIl-000456-KF for incoming@patchwork.ozlabs.org; Wed, 19 Dec 2012 03:46:55 -0500 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 Received: from rincewind.home.kraxel.org (ovpn-116-25.ams2.redhat.com [10.36.116.25]) by int-mx02.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id qBJ8kALD030688; Wed, 19 Dec 2012 03:46:11 -0500 Received: by rincewind.home.kraxel.org (Postfix, from userid 500) id 506E141738; Wed, 19 Dec 2012 09:46:10 +0100 (CET) From: Gerd Hoffmann To: qemu-devel@nongnu.org Date: Wed, 19 Dec 2012 09:46:02 +0100 Message-Id: <1355906770-17199-1-git-send-email-kraxel@redhat.com> X-Scanned-By: MIMEDefang 2.67 on 10.5.11.12 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 209.132.183.28 Cc: Gerd Hoffmann Subject: [Qemu-devel] [PATCH 0/8] misc acpi updates and test devices X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org 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