From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752840AbcFJTg4 (ORCPT ); Fri, 10 Jun 2016 15:36:56 -0400 Received: from smtp4-g21.free.fr ([212.27.42.4]:25292 "EHLO smtp4-g21.free.fr" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750848AbcFJTgz (ORCPT ); Fri, 10 Jun 2016 15:36:55 -0400 Subject: Re: Using irq-crossbar.c To: Marc Zyngier , Sebastian Frias Cc: Thomas Gleixner , LKML , Grygorii Strashko , Sricharan R , Mans Rullgard References: <575ADEBA.2030202@laposte.net> <575AE52E.9020005@arm.com> From: Mason Message-ID: <575B16BD.50600@free.fr> Date: Fri, 10 Jun 2016 21:36:29 +0200 User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0 SeaMonkey/2.40 MIME-Version: 1.0 In-Reply-To: <575AE52E.9020005@arm.com> Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 10/06/2016 18:05, Marc Zyngier wrote: > On 10/06/16 16:37, Sebastian Frias wrote: > >> here's the diff on our DT: >> >> --- tango4-common.dtsi 2016-06-10 16:23:08.244246017 +0200 >> +++ tangox_irqv2-common.dtsi 2016-06-10 16:24:01.212588737 +0200 >> @@ -47,7 +47,7 @@ >> >> soc { >> compatible = "simple-bus"; >> - interrupt-parent = <&irq0>; >> + interrupt-parent = <&irq_mux>; >> #address-cells = <1>; >> #size-cells = <1>; >> ranges; >> @@ -75,7 +75,7 @@ >> uart: serial@10700 { >> compatible = "ralink,rt2880-uart"; >> reg = <0x10700 0x30>; >> - interrupts = <1 IRQ_TYPE_LEVEL_HIGH>; >> + interrupts = ; >> clock-frequency = <7372800>; >> reg-shift = <2>; >> }; >> @@ -83,10 +83,11 @@ >> eth0: ethernet@26000 { >> compatible = "sigma,smp8734-ethernet"; >> reg = <0x26000 0x800>; >> - interrupts = <38 IRQ_TYPE_LEVEL_HIGH>; >> + interrupts = ; >> clocks = <&clkgen 1>; >> }; >> >> +#if 0 >> intc: interrupt-controller@6e000 { >> compatible = "sigma,smp8642-intc"; >> reg = <0x6e000 0x400>; >> @@ -117,5 +118,16 @@ >> interrupts = ; >> }; >> }; >> +#else >> + irq_mux: irq_mux@6f800 { >> + compatible = "sigma,smp-irq-mux"; >> + reg = <0x6f800 0x400>; >> + interrupt-controller; >> + interrupt-parent = <&gic>; >> + irqs-reserved = <2 3 4 125 126 127>; >> + }; > > Where is the GIC? Where is the #interrupt-cells property? What is the > interrupt parent for the GIC itself? (and I'm tempted to add "What is > your name? What is you quest?", but that's because it is Friday and I > feel like I need a beer...). Beer and cheese? Beurk! ;-) I think Sebastian is even more baffled by the DT mess (sorry, intricacies) than I am. The base file he was referring to is: https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/tree/arch/arm/boot/dts/tango4-common.dtsi Regards.