From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ian Campbell Subject: [PATCH RFC 5/8] xen/arm: Support Cortex-A7 GIC Date: Tue, 10 Sep 2013 15:18:22 +0100 Message-ID: <1378822705-19310-5-git-send-email-ian.campbell@citrix.com> References: <1378822681.10928.8.camel@kazak.uk.xensource.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <1378822681.10928.8.camel@kazak.uk.xensource.com> List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xen.org Errors-To: xen-devel-bounces@lists.xen.org To: xen-devel@lists.xen.org Cc: Josh Zhao , julien.grall@linaro.org, tim@xen.org, Ian Campbell , stefano.stabellini@eu.citrix.com List-Id: xen-devel@lists.xenproject.org NB: NOT TO BE APPLIED Julien has a patch to make this use a match list. This should be rebased onto that. Signed-off-by: Ian Campbell --- xen/arch/arm/gic.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/xen/arch/arm/gic.c b/xen/arch/arm/gic.c index 7c24811..ab0f00d 100644 --- a/xen/arch/arm/gic.c +++ b/xen/arch/arm/gic.c @@ -360,6 +360,8 @@ void __init gic_init(void) node = dt_find_interrupt_controller("arm,cortex-a15-gic"); if ( !node ) + node = dt_find_interrupt_controller("arm,cortex-a7-gic"); + if ( !node ) panic("Unable to find compatible GIC in the device tree\n"); dt_device_set_used_by(node, DOMID_XEN); -- 1.7.10.4