[linux-meson] Re: [PATCH v2 3/5] pinctrl: meson: enable GPIO IRQs
From: Marc Zyngier <hidden>
Date: 2015-11-26 16:27:22
Also in:
linux-devicetree
On Tue, 24 Nov 2015 10:04:50 +0100 Carlo Caione [off-list ref] wrote:
On Tue, Nov 24, 2015 at 9:28 AM, Marc Zyngier [off-list ref] wrote:quoted
On Mon, 23 Nov 2015 11:16:54 +0100 Carlo Caione [off-list ref] wrote:quoted
From: Carlo Caione <redacted> On Meson8 and Meson8b SoCs there are 8 independent filtered GPIO interrupt modules that can be programmed to use any of the GPIOs in the chip as an interrupt source. For each GPIO IRQ we have: GPIOs --> [mux]--> [polarity]--> [filter]--> [edge select]--> GIC The eight GPIO interrupts respond to mask/unmask/clear/etc.. just like any other interrupt in the chip. The difference for the GPIO interrupts is that they can be filtered and conditioned. This patch adds support for the external GPIOs interrupts and enables them for Meson8 and Meson8b SoCs. Signed-off-by: Carlo Caione <redacted> Signed-off-by: Beniamino Galvani <redacted> ---[...]quoted
+ for (i = 0; i < pc->num_gic_irqs; i++) { + struct of_phandle_args oirq; + + of_irq_parse_one(node, i, &oirq); + irq_of_phandle_args_to_fwspec(&oirq, &pc->gic_irqs[i]); + + pc->irq_map[i] = IRQ_FREE; + }The whole thing feels weird. Why do you need to keep a set of fwspecs?We only have 8 IRQs on the GIC side that we can use for the GPIOs. The set of fwspec is used to track these IRQs. At probe time we read from the DTS how many and which IRQs are reserved on the GIC for the GPIOs. Every time a GPIO IRQ is installed, we use one of these IRQ lines.
That doesn't answer my question. Having the raw IRQ numbers, why not. Storing a whole fwspec (16 u32 + 1 int + 1 pointer) seems completely overkill.
quoted
All you need is a range of interrupts that would be conveniently represented by a bitmap (assuming your interrupts space is a mostly contiguous range).I could do that but it feels to me like we end up hiding from the DTS some information that naturally should be in there: a pinctrl device that is using 8 interrupt lines of its interrupt controller. IMO this is not a special case that requires some special treatment.
Well, it is also arguable that these interrupts are not the pinctrl's, but those of the device that actually uses them (or we'd be describing interrupts in all interrupt controller bindings, which doesn't make any sense). See for example the TI crossbar, which has similar functionalities. I'm not going to take a hard line here, but the argument you have so far doesn't seem to hold much water for me. Or there is something obvious that I have missed, which is entirely possible. Thanks, M. -- Jazz is not dead. It just smells funny.