From patchwork Mon Mar 7 04:23:26 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Peter Xu X-Patchwork-Id: 592775 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [IPv6:2001:4830:134:3::11]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id B76DA140CF6 for ; Mon, 7 Mar 2016 15:25:16 +1100 (AEDT) Received: from localhost ([::1]:53501 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1acmjK-0008K0-O5 for incoming@patchwork.ozlabs.org; Sun, 06 Mar 2016 23:25:14 -0500 Received: from eggs.gnu.org ([2001:4830:134:3::10]:60077) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1acmi2-0006EW-Sb for qemu-devel@nongnu.org; Sun, 06 Mar 2016 23:23:55 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1acmi2-0005Yw-49 for qemu-devel@nongnu.org; Sun, 06 Mar 2016 23:23:54 -0500 Received: from mx1.redhat.com ([209.132.183.28]:59955) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1acmi0-0005YY-9A; Sun, 06 Mar 2016 23:23:52 -0500 Received: from int-mx09.intmail.prod.int.phx2.redhat.com (int-mx09.intmail.prod.int.phx2.redhat.com [10.5.11.22]) by mx1.redhat.com (Postfix) with ESMTPS id ED877C0006FF; Mon, 7 Mar 2016 04:23:51 +0000 (UTC) Received: from pxdev.xzpeter.org.com (vpn1-5-200.pek2.redhat.com [10.72.5.200]) by int-mx09.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id u274NYnS001687; Sun, 6 Mar 2016 23:23:44 -0500 From: Peter Xu To: qemu-devel@nongnu.org Date: Mon, 7 Mar 2016 12:23:26 +0800 Message-Id: <1457324608-11434-2-git-send-email-peterx@redhat.com> In-Reply-To: <1457324608-11434-1-git-send-email-peterx@redhat.com> References: <1457324608-11434-1-git-send-email-peterx@redhat.com> X-Scanned-By: MIMEDefang 2.68 on 10.5.11.22 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 209.132.183.28 Cc: wei@redhat.com, peter.maydell@linaro.org, drjones@redhat.com, mdroth@linux.vnet.ibm.com, armbru@redhat.com, peterx@redhat.com, abologna@redhat.com, qemu-arm@nongnu.org Subject: [Qemu-devel] [PATCH v3 1/3] arm: qmp: add GICCapability struct 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 Define new struct to describe whether we support specific GIC version. Signed-off-by: Peter Xu --- qapi-schema.json | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/qapi-schema.json b/qapi-schema.json index 7b8f2a1..0b2de6c 100644 --- a/qapi-schema.json +++ b/qapi-schema.json @@ -4135,3 +4135,25 @@ ## { 'enum': 'ReplayMode', 'data': [ 'none', 'record', 'play' ] } + +## +# @GICCapability: +# +# This struct describes capability for a specific GIC version. These +# bits are not only decided by QEMU/KVM software version, but also +# decided by the hardware that the program is running upon. +# +# @version: version of GIC to be described. +# +# @emulated: whether current QEMU/hardware supports emulated GIC +# device in user space. +# +# @kernel: whether current QEMU/hardware supports hardware +# accelerated GIC device in kernel. +# +# Since: 2.6 +## +{ 'struct': 'GICCapability', + 'data': { 'version': 'int', + 'emulated': 'bool', + 'kernel': 'bool' } }