From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755197AbaIBTgj (ORCPT ); Tue, 2 Sep 2014 15:36:39 -0400 Received: from mail-vc0-f179.google.com ([209.85.220.179]:42052 "EHLO mail-vc0-f179.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755174AbaIBTgg (ORCPT ); Tue, 2 Sep 2014 15:36:36 -0400 MIME-Version: 1.0 In-Reply-To: <5405FE07.4030400@gmail.com> References: <1409350479-19108-1-git-send-email-abrestic@chromium.org> <1409350479-19108-4-git-send-email-abrestic@chromium.org> <5405FE07.4030400@gmail.com> Date: Tue, 2 Sep 2014 12:36:35 -0700 X-Google-Sender-Auth: 2r_FbelVnA0mt4NUtrECEqmy22Q Message-ID: Subject: Re: [PATCH 03/12] of: Add binding document for MIPS GIC From: Andrew Bresticker To: David Daney Cc: Ralf Baechle , Rob Herring , Pawel Moll , Mark Rutland , Ian Campbell , Kumar Gala , Jeffrey Deans , Markos Chandras , Paul Burton , Thomas Gleixner , Jason Cooper , Linux-MIPS , "devicetree@vger.kernel.org" , "linux-kernel@vger.kernel.org" Content-Type: text/plain; charset=UTF-8 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, Sep 2, 2014 at 10:27 AM, David Daney wrote: > On 08/29/2014 03:14 PM, Andrew Bresticker wrote: >> >> The Global Interrupt Controller (GIC) present on certain MIPS systems >> can be used to route external interrupts to individual VPEs and CPU >> interrupt vectors. It also supports a timer and software-generated >> interrupts. >> >> Signed-off-by: Andrew Bresticker >> --- >> Documentation/devicetree/bindings/mips/gic.txt | 50 >> ++++++++++++++++++++++++++ >> 1 file changed, 50 insertions(+) >> create mode 100644 Documentation/devicetree/bindings/mips/gic.txt >> >> diff --git a/Documentation/devicetree/bindings/mips/gic.txt >> b/Documentation/devicetree/bindings/mips/gic.txt >> new file mode 100644 >> index 0000000..725f1ef >> --- /dev/null >> +++ b/Documentation/devicetree/bindings/mips/gic.txt >> @@ -0,0 +1,50 @@ >> +MIPS Global Interrupt Controller (GIC) >> + >> +The MIPS GIC routes external interrupts to individual VPEs and IRQ pins. >> +It also supports a timer and software-generated interrupts which can be >> +used as IPIs. >> + >> +Required properties: >> +- compatible : Should be "mti,global-interrupt-controller" >> +- reg : Base address and length of the GIC registers. >> +- interrupts : Core interrupts to which the GIC may route external >> interrupts. > > > This doesn't make sense to me. The GIC can, and does, route interrupts to > all CPU cores in a SMP system. How can there be a concept of only > associating it with several interrupt lines on a single CPU in the system? > That is not what the GIC does, is it? It is a Global interrupts controller, > not local. So specifying device tree bindings that don't show its Global > nature seems wrong. While the GIC can route external interrupts to any HW interrupt vector it may not make sense to actually use all those vectors. For example, the CP0 timer is usually hooked up to HW vector 5 (it could be treated as a GIC local interrupt, though it may still be fixed to HW vector 5). BTW, the Malta example about the i8259 I gave before was wrong - it appears that it actually gets chained with the GIC. What would you suggest instead? Route all GIC interrupts to a single vector? Attempt to distribute them over all 6 vectors? >> +- interrupt-controller : Identifies the node as an interrupt controller >> +- #interrupt-cells : Specifies the number of cells needed to encode an >> + interrupt specifier. Should be 3. >> + - The first cell is the GIC interrupt number. >> + - The second cell encodes the interrupt flags. >> + See for a list of >> valid >> + flags. >> + - The optional third cell indicates which CPU interrupt vector the GIC >> + interrupt should be routed to. It is a 0-based index into the list >> of >> + GIC-to-CPU interrupts specified in the "interrupts" property >> described >> + above. For example, a '2' in this cell will route the interrupt to >> the >> + 3rd core interrupt listed in 'interrupts'. If omitted, the interrupt >> will >> + be routed to the 1st core interrupt. >> + > > > This seems like a really convoluted way of doing things that really goes > against the device tree model. > > The routing of interrupts through the GIC to a core interrupt is controlled > entirely within the GIC hardware and therefore should be a property of the > GIC itself, not all the random devices connected upstream to the GIC. > > It also places policy about the priority of the various interrupts into the > device tree. Typically the device tree would contain only information about > the topology of the hardware blocks, not arbitrary policy decisions that > software could change and still have a perfectly functional system. > > Therefore I would recommend removing the third cell from the interrupt > specifier. As Mark mentioned, putting priority policy in the DT is a bit of a gray area. Since I don't see any need for it currently, I've decided to drop it.