From patchwork Tue Feb 23 10:52:06 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Peter Xu X-Patchwork-Id: 8390541 Return-Path: X-Original-To: patchwork-qemu-devel@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork1.web.kernel.org (Postfix) with ESMTP id A06539F372 for ; Tue, 23 Feb 2016 10:52:45 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 1CE0F2025A for ; Tue, 23 Feb 2016 10:52:45 +0000 (UTC) Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 75F93201F4 for ; Tue, 23 Feb 2016 10:52:44 +0000 (UTC) Received: from localhost ([::1]:55955 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aYAaB-0006ko-Tr for patchwork-qemu-devel@patchwork.kernel.org; Tue, 23 Feb 2016 05:52:43 -0500 Received: from eggs.gnu.org ([2001:4830:134:3::10]:55896) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aYAa2-0006iY-Bk for qemu-devel@nongnu.org; Tue, 23 Feb 2016 05:52:35 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aYAa1-0001bB-15 for qemu-devel@nongnu.org; Tue, 23 Feb 2016 05:52:34 -0500 Received: from mx1.redhat.com ([209.132.183.28]:52194) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aYAa0-0001ar-Ql for qemu-devel@nongnu.org; Tue, 23 Feb 2016 05:52:32 -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 89A05C0006E4; Tue, 23 Feb 2016 10:52:31 +0000 (UTC) Received: from pxdev.xzpeter.org.com (vpn1-4-236.pek2.redhat.com [10.72.4.236]) by int-mx09.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id u1NAqFHo019776; Tue, 23 Feb 2016 05:52:25 -0500 From: Peter Xu To: qemu-devel@nongnu.org Date: Tue, 23 Feb 2016 18:52:06 +0800 Message-Id: <1456224728-28163-2-git-send-email-peterx@redhat.com> In-Reply-To: <1456224728-28163-1-git-send-email-peterx@redhat.com> References: <1456224728-28163-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 Subject: [Qemu-devel] [PATCH 1/3] arm: gic: add GICType 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+patchwork-qemu-devel=patchwork.kernel.org@nongnu.org Sender: qemu-devel-bounces+patchwork-qemu-devel=patchwork.kernel.org@nongnu.org X-Spam-Status: No, score=-6.9 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_HI, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP 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' ] }