Re: [PATCH 1/2] RFC: gpio: Add support for hierarchical IRQ domains

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On Tue, Jun 4, 2019 at 2:58 PM Thierry Reding <thierry.reding@xxxxxxxxx> wrote:

> The point that I'm trying to argue is that rather than find a
> complicated data structure that can represent all sorts of possible
> mappings, it'd be much simpler to just write code that can map from
> one to another.
>
> Some things are just much easier to write in code than in data.

OK I get the point, but I wonder if it is really anything else than
linear ranges here.

> On Tegra for example, we use this code to compact the sparse DT number
> space to the contiguous number space used by the GPIO chip:
>
>         port = fwspec->param[0] / 8;
>         pin = fwspec->param[0] % 8;
>
>         for (i = 0; i < port; i++)
>                 offset += gpio->soc->ports[i].pins;

That is a set of linear ranges.

> I've tested both ways, with just using plain gpiod_to_irq() or going via
> the IRQ domain. Both times I tested with gpio-keys, so it all works as
> expected.

OK then.

> However, the problem with gpiochip_to_irq() is that it basically needs
> to emulate as if data was coming from a device tree. That's basically
> what you do in the twocell code as well. The only difference on Tegra,
> again, is that we now need to expand the number space to the sparse DT
> number space by filling in the holes again. This is needed to make sure
> that when the IRQ fwspec is passed to the IRQ domain's .translate()
> callback, the values in the fwspec actually correspond to the ones
> defined by the DT.

Yeah I kind of get it now...

> > What would satisfy Tegra? I can think of trivial things like encoding a
> > "range" (int n_hwirqs) in each entry if that makes things more
> > convenient/faster when handling mapping of entire ranges.
>
> Like I said, the above would work for Tegra. My only gripe with it is
> that it's totally wasteful because we basically need 140 entries of the
> above (that's roughly 1.5-2 KiB) to do what is essentially a 1:1
> mapping.

It is not "totally wasteful" if the code can be reused with other
SoCs.

> One one hand we need to translate the GPIO/IRQ specifier into the linear
> domain of the GPIO/IRQ controller. Then in gpiochip_to_irq() we need to
> go back and translate to the GPIO/IRQ specifier in order to please the
> IRQ domain API. At the same time I don't think there's really a way
> around that. Ultimately both the gpiochip_to_irq() and regular IRQ
> mapping code paths end up calling irq_domain_ops.alloc(), which in turn
> requires the struct irq_fwspec.

Yeah I think you might need a custom .translate() function.
Can I please implement it on the less complex ixp4xx first,
before we move to the extra complicated Tegra186 problem?

> The difference is that the *DT specifier* is *not* linear and *not* a
> 1:1 mapping of the GPIO number space. That's the reason for doing the
> back and forth conversion between the DT and GPIO number spaces.

Yeah I get this... just hard to fit it in as it is evidently a bit
of corner case. And it's not so good to design a generic
feature in gpiolib (as I try to do) based on a corner case
with strange DT specifiers.

But let's add it when we need it, which may be step 2 then.

> > Where is the gpiochip.irq.domain coming from in the Tegra186
> > case?
>
> Erm... this is using just the plain gpio_irq_chip helpers.
> gpiochip_add_irqchip() ends up creating the IRQ domain.

Actually this has become a real problem for me as maintainer
now. And I'm talking about this:

$ git grep add_simple drivers/gpio/gpiolib.c
drivers/gpio/gpiolib.c:         gpiochip->irq.domain = irq_domain_add_simple(np,
drivers/gpio/gpiolib.c: gpiochip->irq.domain = irq_domain_add_simple(of_node,

There are two independent runpaths inside gpiolib for adding
irqdomains and it is a mess and if it confuses me then it
is going to confuse many others unless I'm entirely unfit
for this maintenance job.

We need to shrink gpiolib by initializing all gpio irqchips the
same way before we start adding more fancy features.

commit e0d89728981393b7d694bd3419b7794b9882c92d
"gpio: Implement tighter IRQ chip integration"
introduced these two runpaths, now we need to switch all
existing irqchips over and delete the old code so that
we don't mess things up even more and can't find our way
out.

Let's fix this first then move on to these new features.

Yours,
Linus Walleij



[Index of Archives]     [Linux SPI]     [Linux Kernel]     [Linux ARM (vger)]     [Linux ARM MSM]     [Linux Omap]     [Linux Arm]     [Linux Tegra]     [Fedora ARM]     [Linux for Samsung SOC]     [eCos]     [Linux Fastboot]     [Gcc Help]     [Git]     [DCCP]     [IETF Announce]     [Security]     [Linux MIPS]     [Yosemite Campsites]

  Powered by Linux