From mboxrd@z Thu Jan 1 00:00:00 1970 From: Christoffer Dall Subject: Re: [PATCH] KVM: arm64: add gic-400 compatible Date: Thu, 11 Sep 2014 16:07:49 -0700 Message-ID: <20140911230749.GW5535@lvm> References: <20140908222144.4967.80301.stgit@joelaarch64.amd.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: kvmarm@lists.cs.columbia.edu, linux-arm-kernel@lists.infradead.org, kvm@vger.kernel.org To: Joel Schopp Return-path: Received: from mail-pa0-f43.google.com ([209.85.220.43]:34510 "EHLO mail-pa0-f43.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751320AbaIKXHt (ORCPT ); Thu, 11 Sep 2014 19:07:49 -0400 Received: by mail-pa0-f43.google.com with SMTP id fa1so10310595pad.30 for ; Thu, 11 Sep 2014 16:07:49 -0700 (PDT) Content-Disposition: inline In-Reply-To: <20140908222144.4967.80301.stgit@joelaarch64.amd.com> Sender: kvm-owner@vger.kernel.org List-ID: On Mon, Sep 08, 2014 at 10:21:44PM +0000, Joel Schopp wrote: > Add a one liner to identify the gic-400. It's gicv2 with optional MSI extensions. > > Cc: Christoffer Dall > Signed-off-by: Joel Schopp > --- > virt/kvm/arm/vgic.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/virt/kvm/arm/vgic.c b/virt/kvm/arm/vgic.c > index 73eba79..e81444e 100644 > --- a/virt/kvm/arm/vgic.c > +++ b/virt/kvm/arm/vgic.c > @@ -1550,6 +1550,7 @@ static struct notifier_block vgic_cpu_nb = { > > static const struct of_device_id vgic_ids[] = { > { .compatible = "arm,cortex-a15-gic", .data = vgic_v2_probe, }, > + { .compatible = "arm,gic-400", .data = vgic_v2_probe, }, > { .compatible = "arm,gic-v3", .data = vgic_v3_probe, }, > {}, > }; > Acked-by: Christoffer Dall From mboxrd@z Thu Jan 1 00:00:00 1970 From: christoffer.dall@linaro.org (Christoffer Dall) Date: Thu, 11 Sep 2014 16:07:49 -0700 Subject: [PATCH] KVM: arm64: add gic-400 compatible In-Reply-To: <20140908222144.4967.80301.stgit@joelaarch64.amd.com> References: <20140908222144.4967.80301.stgit@joelaarch64.amd.com> Message-ID: <20140911230749.GW5535@lvm> To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org On Mon, Sep 08, 2014 at 10:21:44PM +0000, Joel Schopp wrote: > Add a one liner to identify the gic-400. It's gicv2 with optional MSI extensions. > > Cc: Christoffer Dall > Signed-off-by: Joel Schopp > --- > virt/kvm/arm/vgic.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/virt/kvm/arm/vgic.c b/virt/kvm/arm/vgic.c > index 73eba79..e81444e 100644 > --- a/virt/kvm/arm/vgic.c > +++ b/virt/kvm/arm/vgic.c > @@ -1550,6 +1550,7 @@ static struct notifier_block vgic_cpu_nb = { > > static const struct of_device_id vgic_ids[] = { > { .compatible = "arm,cortex-a15-gic", .data = vgic_v2_probe, }, > + { .compatible = "arm,gic-400", .data = vgic_v2_probe, }, > { .compatible = "arm,gic-v3", .data = vgic_v3_probe, }, > {}, > }; > Acked-by: Christoffer Dall