Since 
d4a45c68dc81 ("irqdomain: Protect the linear revmap with RCU"),
any irqdomain lookup requires the RCU read lock to be held.
This assumes that the architecture code will be structured such as
irq_enter() will be called *before* the interrupt is looked up
in the irq domain. However, this isn't the case for MIPS, and a number
of drivers are structured to do it the other way around when handling
an interrupt in their root irqchip (secondary irqchips are OK by
construction).
This results in a RCU splat on a lockdep-enabled kernel when the kernel
takes an interrupt from idle, as reported by Guenter Roeck.
Note that this could have fired previously if any driver had used
tree-based irqdomain, which always had the RCU requirement.
To solve this, provide a MIPS-specific helper (do_domain_IRQ())
as the pendent of do_IRQ() that will do thing in the right order
(and maybe save some cycles in the process).
Ideally, MIPS would be moved over to using handle_domain_irq(),
but that's much more ambitious.
Reported-by: Guenter Roeck <linux@roeck-us.net>
Tested-by: Guenter Roeck <linux@roeck-us.net>
[maz: add dependency on CONFIG_IRQ_DOMAIN after report from the kernelci bot]
Signed-off-by: Marc Zyngier <maz@kernel.org>
Cc: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Cc: Serge Semin <fancer.lancer@gmail.com>
Link: https://lore.kernel.org/r/20210705172352.GA56304@roeck-us.net
Link: https://lore.kernel.org/r/20210706110647.3979002-1-maz@kernel.org
 
 extern void do_IRQ(unsigned int irq);
 
+struct irq_domain;
+extern void do_domain_IRQ(struct irq_domain *domain, unsigned int irq);
+
 extern void arch_init_irq(void);
 extern void spurious_interrupt(void);
 
 
 #include <linux/kallsyms.h>
 #include <linux/kgdb.h>
 #include <linux/ftrace.h>
+#include <linux/irqdomain.h>
 
 #include <linux/atomic.h>
 #include <linux/uaccess.h>
        irq_exit();
 }
 
+#ifdef CONFIG_IRQ_DOMAIN
+void __irq_entry do_domain_IRQ(struct irq_domain *domain, unsigned int hwirq)
+{
+       struct irq_desc *desc;
+
+       irq_enter();
+       check_stack_overflow();
+
+       desc = irq_resolve_mapping(domain, hwirq);
+       if (likely(desc))
+               handle_irq_desc(desc);
+
+       irq_exit();
+}
+#endif
 
 asmlinkage void __weak plat_irq_dispatch(void)
 {
        unsigned long pending = read_c0_cause() & read_c0_status() & ST0_IM;
-       unsigned int virq;
        int irq;
 
        if (!pending) {
 
        pending >>= CAUSEB_IP;
        while (pending) {
+               struct irq_domain *d;
+
                irq = fls(pending) - 1;
                if (IS_ENABLED(CONFIG_GENERIC_IRQ_IPI) && irq < 2)
-                       virq = irq_linear_revmap(ipi_domain, irq);
+                       d = ipi_domain;
                else
-                       virq = irq_linear_revmap(irq_domain, irq);
-               do_IRQ(virq);
+                       d = irq_domain;
+
+               do_domain_IRQ(d, irq);
                pending &= ~BIT(irq);
        }
 }
 
                        generic_handle_domain_irq(gic_irq_domain,
                                                  GIC_SHARED_TO_HWIRQ(intr));
                else
-                       do_IRQ(irq_find_mapping(gic_irq_domain,
-                                               GIC_SHARED_TO_HWIRQ(intr)));
+                       do_domain_IRQ(gic_irq_domain,
+                                     GIC_SHARED_TO_HWIRQ(intr));
        }
 }
 
                        generic_handle_domain_irq(gic_irq_domain,
                                                  GIC_LOCAL_TO_HWIRQ(intr));
                else
-                       do_IRQ(irq_find_mapping(gic_irq_domain,
-                                               GIC_LOCAL_TO_HWIRQ(intr)));
+                       do_domain_IRQ(gic_irq_domain,
+                                     GIC_LOCAL_TO_HWIRQ(intr));
        }
 }
 
 
 
 asmlinkage void __weak plat_irq_dispatch(void)
 {
-       unsigned int irq, hwirq;
+       unsigned int hwirq;
 
        hwirq = readl(evic_base + REG_INTSTAT) & 0xFF;
-       irq = irq_linear_revmap(evic_irq_domain, hwirq);
-       do_IRQ(irq);
+       do_domain_IRQ(evic_irq_domain, hwirq);
 }
 
 static struct evic_chip_data *irqd_to_priv(struct irq_data *data)