diff options
author | Marc Zyngier <maz@kernel.org> | 2023-02-06 20:26:11 +0300 |
---|---|---|
committer | Marc Zyngier <maz@kernel.org> | 2023-02-06 20:26:11 +0300 |
commit | 6360ec8f13f6aa1a1a38dca7ec6b9be580fbfc21 (patch) | |
tree | 6955443126e1f082d9c8aa4d16ad6f95e6eea8ee /include/linux/irq.h | |
parent | 5dc4c995db9eb45f6373a956eb1f69460e69e6d4 (diff) | |
parent | 3d812a0f27baa2d094f2c18298d48b012878dc0b (diff) | |
download | linux-6360ec8f13f6aa1a1a38dca7ec6b9be580fbfc21.tar.xz |
Merge branch irq/ipi-mux into irq/irqchip-next
* irq/ipi-mux:
: .
: Extract the IPI muxing facility from the Apple AIC driver and
: move it over to core code. The riscv irqchip code will eventually
: make use of this.
: .
genirq/ipi-mux: Use irq_domain_alloc_irqs()
irqchip/apple-aic: Move over to core ipi-mux
genirq: Add mechanism to multiplex a single HW IPI
Signed-off-by: Marc Zyngier <maz@kernel.org>
Diffstat (limited to 'include/linux/irq.h')
-rw-r--r-- | include/linux/irq.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/linux/irq.h b/include/linux/irq.h index c3eb89606c2b..b1b28affb32a 100644 --- a/include/linux/irq.h +++ b/include/linux/irq.h @@ -1266,6 +1266,9 @@ int __ipi_send_mask(struct irq_desc *desc, const struct cpumask *dest); int ipi_send_single(unsigned int virq, unsigned int cpu); int ipi_send_mask(unsigned int virq, const struct cpumask *dest); +void ipi_mux_process(void); +int ipi_mux_create(unsigned int nr_ipi, void (*mux_send)(unsigned int cpu)); + #ifdef CONFIG_GENERIC_IRQ_MULTI_HANDLER /* * Registers a generic IRQ handling function as the top-level IRQ handler in |