From patchwork Thu Nov 15 03:06:36 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?Andreas_F=C3=A4rber?= X-Patchwork-Id: 199113 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 E66F02C008A for ; Thu, 15 Nov 2012 14:07:13 +1100 (EST) Received: from localhost ([::1]:38979 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TYpnJ-0004DZ-Jy for incoming@patchwork.ozlabs.org; Wed, 14 Nov 2012 22:07:09 -0500 Received: from eggs.gnu.org ([208.118.235.92]:40373) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TYpnB-0004DD-6S for qemu-devel@nongnu.org; Wed, 14 Nov 2012 22:07:04 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TYpn8-0007BG-41 for qemu-devel@nongnu.org; Wed, 14 Nov 2012 22:07:01 -0500 Received: from cantor2.suse.de ([195.135.220.15]:49810 helo=mx2.suse.de) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TYpn7-0007BA-Qj for qemu-devel@nongnu.org; Wed, 14 Nov 2012 22:06:58 -0500 Received: from relay2.suse.de (unknown [195.135.220.254]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx2.suse.de (Postfix) with ESMTP id A2872A329E; Thu, 15 Nov 2012 04:06:56 +0100 (CET) From: =?UTF-8?q?Andreas=20F=C3=A4rber?= To: qemu-devel@nongnu.org Date: Thu, 15 Nov 2012 04:06:36 +0100 Message-Id: <1352948807-30415-1-git-send-email-afaerber@suse.de> X-Mailer: git-send-email 1.7.10.4 MIME-Version: 1.0 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.4.x X-Received-From: 195.135.220.15 Cc: Igor Mammedov , =?UTF-8?q?Andreas=20F=C3=A4rber?= , anthony@codemonkey.ws, Eduardo Habkost Subject: [Qemu-devel] [PULL for-1.3] QOM CPUState patch queue 2012-11-15 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 Hello Anthony, Here's some steps towards CPU-as-a-device and two new x86 CPU models. Please pull. I decided to take only a conservative patch selection at this late hour: Getting the qdev split in avoids having to rebase and review this over and over. While the CPU as a device would have been helpful as a shared code base for continued development, it does not provide our users with added value as-is. Unless you see it as an important feature for v1.3, warranting header file shuffling during the Hard Freeze, I'll just set up a -next tree for us. Regards, Andreas Cc: Eduardo Habkost Cc: Igor Mammedov The following changes since commit ce34cf72fe508b27a78f83c184142e8d1e6a048a: Merge remote-tracking branch 'awilliam/tags/vfio-pci-for-qemu-1.3.0-rc0' into staging (2012-11-14 08:53:40 -0600) are available in the git repository at: git://github.com/afaerber/qemu-cpu.git qom-cpu for you to fetch changes up to 37507094f350b75c62dc059f998e7185de3ab60a: target-i386: Add Haswell CPU model (2012-11-15 03:48:47 +0100) ---------------------------------------------------------------- Andre Przywara (2): target-i386/cpu: Name new CPUID bits target-i386/cpu: Add new Opteron CPU model Andreas Färber (1): osdep: Move qemu_{open,close}() prototypes Anthony Liguori (1): qdev: Split up header so it can be used in cpu.h Eduardo Habkost (5): qemu-common.h: Comment about usage rules qemu-fsdev-dummy.c: Include module.h vnc-palette.h: Include qemu-config.h: Include headers it needs target-i386: Add Haswell CPU model Igor Mammedov (2): Move qemu_irq typedef out of qemu-common.h qapi-types.h: Don't include qemu-common.h fsdev/qemu-fsdev-dummy.c | 1 + hw/arm-misc.h | 1 + hw/bt.h | 2 + hw/devices.h | 2 + hw/irq.h | 2 + hw/mc146818rtc.c | 1 + hw/omap.h | 1 + hw/qdev-addr.c | 1 + hw/qdev-core.h | 238 +++++++++++++++++++++++++++++ hw/qdev-monitor.h | 16 ++ hw/qdev-properties.c | 1 + hw/qdev-properties.h | 130 ++++++++++++++++ hw/qdev.c | 1 + hw/qdev.h | 370 +--------------------------------------------- hw/soc_dma.h | 1 + hw/xen.h | 1 + osdep.h | 3 + qemu-common.h | 14 +- qemu-config.h | 2 + scripts/qapi-types.py | 3 +- target-i386/cpu.c | 73 ++++++++- target-i386/cpu.h | 22 +++ ui/vnc-palette.h | 1 + 23 Dateien geändert, 510 Zeilen hinzugefügt(+), 377 Zeilen entfernt(-) create mode 100644 hw/qdev-core.h create mode 100644 hw/qdev-monitor.h create mode 100644 hw/qdev-properties.h