From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:40797) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VRKgw-0000Yt-Bx for qemu-devel@nongnu.org; Wed, 02 Oct 2013 07:34:15 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VRKgj-000269-SV for qemu-devel@nongnu.org; Wed, 02 Oct 2013 07:34:06 -0400 Received: from e06smtp10.uk.ibm.com ([195.75.94.106]:54449) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VRKgj-00025S-Ib for qemu-devel@nongnu.org; Wed, 02 Oct 2013 07:33:53 -0400 Received: from /spool/local by e06smtp10.uk.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Wed, 2 Oct 2013 12:33:50 +0100 Received: from b06cxnps4075.portsmouth.uk.ibm.com (d06relay12.portsmouth.uk.ibm.com [9.149.109.197]) by d06dlp01.portsmouth.uk.ibm.com (Postfix) with ESMTP id CE9EA17D805A for ; Wed, 2 Oct 2013 12:34:05 +0100 (BST) Received: from d06av04.portsmouth.uk.ibm.com (d06av04.portsmouth.uk.ibm.com [9.149.37.216]) by b06cxnps4075.portsmouth.uk.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id r92BXZiY56426610 for ; Wed, 2 Oct 2013 11:33:35 GMT Received: from d06av04.portsmouth.uk.ibm.com (localhost [127.0.0.1]) by d06av04.portsmouth.uk.ibm.com (8.14.4/8.14.4/NCO v10.0 AVout) with ESMTP id r92BXl9C022811 for ; Wed, 2 Oct 2013 05:33:47 -0600 From: Michael Mueller Date: Wed, 2 Oct 2013 13:33:31 +0200 Message-Id: <1380713622-22325-1-git-send-email-mimu@linux.vnet.ibm.com> Subject: [Qemu-devel] [PATCH RFC 00/11] s390 cpu models for KVM accelerator List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Michael Mueller The following patch set implements S390 cpu models in KVM accellerator context. It is currently based on a configuration device interface not yet published for RFC. The implementation can as well be used to feed the currently discussed TCG related facility representation. Michael Mueller (11): s390/qemu: cpu modle disable list cpus s390/qemu: cpu model extend config device s390/qemu: cpu model cpu class definition s390/qemu: cpu model cpu facilitiy support s390/qemu: cpu model alias support s390/qemu: cpu model KVM properties requests s390/qemu: cpu model class initialization s390/qemu: cpu model command line option help s390/qemu: cpu model QMP query-cpu-definitions s390/qemu: cpu model QMP query-cpu-model s390/qemu: cpu model enablement hw/s390x/s390-virtio-ccw.c | 15 + hw/s390x/s390-virtio.c | 31 ++- include/sysemu/arch_init.h | 1 + linux-headers/asm-s390/kvm.h | 15 + qapi-schema.json | 23 ++ qmp-commands.hx | 6 + qmp.c | 5 + target-s390x/Makefile.objs | 1 + target-s390x/cpu-models.c | 637 +++++++++++++++++++++++++++++++++++++++++++ target-s390x/cpu-models.h | 97 +++++++ target-s390x/cpu-qom.h | 9 + target-s390x/cpu.c | 106 ++++++- target-s390x/helper.c | 24 +- vl.c | 8 +- 14 files changed, 965 insertions(+), 13 deletions(-) create mode 100644 target-s390x/cpu-models.c create mode 100644 target-s390x/cpu-models.h -- 1.8.3.1