Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752134Ab2FRMGo (ORCPT ); Mon, 18 Jun 2012 08:06:44 -0400 Received: from mail-ob0-f174.google.com ([209.85.214.174]:53281 "EHLO mail-ob0-f174.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751902Ab2FRMGn (ORCPT ); Mon, 18 Jun 2012 08:06:43 -0400 Message-ID: <4FDF19CF.8010303@gmail.com> Date: Mon, 18 Jun 2012 07:06:39 -0500 From: Rob Herring User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:12.0) Gecko/20120430 Thunderbird/12.0.1 MIME-Version: 1.0 To: Michal Simek CC: linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux@arm.linux.org.uk, John.Linn@xilinx.com, arnd@arndb.de Subject: Re: [PATCH] arm: zynq: Support GIC OF initialization References: <1340017873-18170-1-git-send-email-monstr@monstr.eu> In-Reply-To: <1340017873-18170-1-git-send-email-monstr@monstr.eu> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1338 Lines: 42 On 06/18/2012 06:11 AM, Michal Simek wrote: > Zynq is OF driven platfrom which requires OF initialization. > > Signed-off-by: Michal Simek > --- > arch/arm/mach-zynq/common.c | 7 ++++++- > 1 files changed, 6 insertions(+), 1 deletions(-) > > diff --git a/arch/arm/mach-zynq/common.c b/arch/arm/mach-zynq/common.c > index 17d68d6..7941544 100644 > --- a/arch/arm/mach-zynq/common.c > +++ b/arch/arm/mach-zynq/common.c > @@ -56,12 +56,17 @@ static void __init xilinx_init_machine(void) > of_platform_bus_probe(NULL, zynq_of_bus_ids, NULL); > } > > +static const struct of_device_id zynq_dt_irq_match[] __initconst = { > + { .compatible = "arm,cortex-a9-gic", .data = gic_of_init }, > + { } > +}; > + > /** > * xilinx_irq_init() - Interrupt controller initialization for the GIC. > */ > static void __init xilinx_irq_init(void) > { > - gic_init(0, 29, SCU_GIC_DIST_BASE, SCU_GIC_CPU_BASE); And delete the corresponding defines? Rob > + of_irq_init(zynq_dt_irq_match); > } > > /* The minimum devices needed to be mapped before the VM system is up and -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/