From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:44693) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aUpRS-0007jq-Rn for qemu-devel@nongnu.org; Sun, 14 Feb 2016 00:41:55 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aUpRQ-0003uh-Qg for qemu-devel@nongnu.org; Sun, 14 Feb 2016 00:41:54 -0500 Received: from mx1.redhat.com ([209.132.183.28]:55904) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aUpRQ-0003uc-L9 for qemu-devel@nongnu.org; Sun, 14 Feb 2016 00:41:52 -0500 Received: from int-mx14.intmail.prod.int.phx2.redhat.com (int-mx14.intmail.prod.int.phx2.redhat.com [10.5.11.27]) by mx1.redhat.com (Postfix) with ESMTPS id 4340D7003A for ; Sun, 14 Feb 2016 05:41:52 +0000 (UTC) From: Peter Xu Date: Sun, 14 Feb 2016 13:41:42 +0800 Message-Id: <1455428503-2113-2-git-send-email-peterx@redhat.com> In-Reply-To: <1455428503-2113-1-git-send-email-peterx@redhat.com> References: <1455428503-2113-1-git-send-email-peterx@redhat.com> Subject: [Qemu-devel] [RFC PATCH 1/2] arm: gic: add GICType List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org, libvir-list@redhat.com Cc: wei@redhat.com, drjones@redhat.com, abologna@redhat.com, peterx@redhat.com A new enum type is added to define ARM GIC types. Signed-off-by: Peter Xu --- qapi-schema.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/qapi-schema.json b/qapi-schema.json index 8d04897..81654bd 100644 --- a/qapi-schema.json +++ b/qapi-schema.json @@ -4083,3 +4083,20 @@ ## { 'enum': 'ReplayMode', 'data': [ 'none', 'record', 'play' ] } + +## +# @GICType: +# +# An enumeration of GIC types +# +# @gicv2: GICv2 support without kernel irqchip +# +# @gicv3: GICv3 support without kernel irqchip +# +# @gicv2-kvm: GICv3 support with kernel irqchip +# +# @gicv3-kvm: GICv3 support with kernel irqchip +# +# Since: 2.6 +## +{ 'enum': 'GICType', 'data': [ 'gicv2', 'gicv3', 'gicv2-kvm', 'gicv3-kvm' ] } -- 2.4.3