lkml.org 
[lkml]   [2017]   [Jan]   [13]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
SubjectRe: irq domain hierarchy vs. chaining w/ PCI MSI-X...
From
Date
Thanks Linus for looping me in.

On 12/01/17 22:35, David Daney wrote:
> Hi Thomas,
>
> I am trying to figure out how to handle this situation:
>
> handle_level_irq()
> +---------------+ handle_fasteoi_irq()
> | PCIe hosted | +-----------+
> +-----+
> --level_gpio---->| GPIO to MSI-X |--MSI_message--+>| gicv3-ITS |---> |
> CPU |
> | widget | | +-----------+
> +-----+
> +---------------+ |
> |
> +-------------------+ |
> | other PCIe device |---MSI_message-----+
> +-------------------+
>
>
> The question is how to structure the interrupt handling. My initial
> attempt was a chaining arrangement where the GPIO driver does
> request_irq() for the appropriate MSI-X vector, and the handler calls
> back into the irq system like this:
>
>
> static irqreturn_t thunderx_gpio_chain_handler(int irq, void *dev)
> {
> struct thunderx_irqdev *irqdev = dev;
> int chained_irq;
> int ret;
>
> chained_irq = irq_find_mapping(irqdev->gpio->chip.irqdomain,
> irqdev->line);
> if (!chained_irq)
> return IRQ_NONE;
>
> ret = generic_handle_irq(chained_irq);
>
> return ret ? IRQ_NONE : IRQ_HANDLED;
> }
>
> Thus getting the proper GPIO irq_chip functions called to manage the
> level triggering semantics.
>
> The drawbacks of this approach are that there are then two irqs
> associated with the GPIO line (the base MSI-X and the chained GPIO),
> also there can be up to 80-100 of these widgets, so potentially we can
> consume twice that many irq numbers.
>
> It was suggested by Linus Walleij that using an irq domain hierarchy
> might be a better idea. However, I cannot figure out how this might
> work. The gicv3-ITS needs to use handle_fasteoi_irq(), and we need
> handle_level_irq() for the GPIO-level lines. Getting the proper
> irq_chip functions called in a hierarchical configuration doesn't seem
> doable given the heterogeneous flow handlers.

My main worry here is that you're trying to handle something that is
apparently a level interrupt using a transport that only handles edge
interrupts. It means that each time you EOI an interrupt, you need to be
able to resample the level and retrigger it if still high. Do you have a
HW facility to do so? Or do you emulate this in SW?

> Can you think of a better way of structuring this than chaining from the
> MSI-X handler as I outlined above?

We already have similar horrors - see irq-mbigen.c which does exactly
that. It creates IRQ domains spanning a bunch of MSIs allocated to that
platform device. Once you have that, the rest is pretty easy.

In your case, it probably requires adding the same kind of surgery so
that we can create an IRQ domain from the MSIs associated with a PCIe
device. Not too hard, just not there yet, and we can probably reuse some
of the code that lives in platform-msi.c

Thanks,

M.
--
Jazz is not dead. It just smells funny...

\
 
 \ /
  Last update: 2017-01-13 17:16    [W:0.079 / U:0.028 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site