1 /* SPDX-License-Identifier: GPL-2.0+ */
7 #ifndef _LINUX_IRQ_SIM_H
8 #define _LINUX_IRQ_SIM_H
10 #include <linux/device.h>
11 #include <linux/fwnode.h>
12 #include <linux/irqdomain.h>
15 * Provides a framework for allocating simulated interrupts which can be
16 * requested like normal irqs and enqueued from process context.
19 struct irq_domain *irq_domain_create_sim(struct fwnode_handle *fwnode,
20 unsigned int num_irqs);
21 struct irq_domain *devm_irq_domain_create_sim(struct device *dev,
22 struct fwnode_handle *fwnode,
23 unsigned int num_irqs);
24 void irq_domain_remove_sim(struct irq_domain *domain);
26 #endif /* _LINUX_IRQ_SIM_H */