1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _ASM_IRQDOMAIN_H
3 #define _ASM_IRQDOMAIN_H
5 #include <linux/irqdomain.h>
6 #include <asm/hw_irq.h>
8 #ifdef CONFIG_X86_LOCAL_APIC
10 /* Allocate contiguous CPU vectors */
11 X86_IRQ_ALLOC_CONTIGUOUS_VECTORS
= 0x1,
12 X86_IRQ_ALLOC_LEGACY
= 0x2,
15 extern struct irq_domain
*x86_vector_domain
;
17 extern void init_irq_alloc_info(struct irq_alloc_info
*info
,
18 const struct cpumask
*mask
);
19 extern void copy_irq_alloc_info(struct irq_alloc_info
*dst
,
20 struct irq_alloc_info
*src
);
21 #endif /* CONFIG_X86_LOCAL_APIC */
23 #ifdef CONFIG_X86_IO_APIC
27 enum ioapic_domain_type
{
28 IOAPIC_DOMAIN_INVALID
,
31 IOAPIC_DOMAIN_DYNAMIC
,
34 struct ioapic_domain_cfg
{
35 enum ioapic_domain_type type
;
36 const struct irq_domain_ops
*ops
;
37 struct device_node
*dev
;
40 extern const struct irq_domain_ops mp_ioapic_irqdomain_ops
;
42 extern int mp_irqdomain_alloc(struct irq_domain
*domain
, unsigned int virq
,
43 unsigned int nr_irqs
, void *arg
);
44 extern void mp_irqdomain_free(struct irq_domain
*domain
, unsigned int virq
,
45 unsigned int nr_irqs
);
46 extern int mp_irqdomain_activate(struct irq_domain
*domain
,
47 struct irq_data
*irq_data
, bool reserve
);
48 extern void mp_irqdomain_deactivate(struct irq_domain
*domain
,
49 struct irq_data
*irq_data
);
50 extern int mp_irqdomain_ioapic_idx(struct irq_domain
*domain
);
51 #endif /* CONFIG_X86_IO_APIC */
54 extern void arch_init_msi_domain(struct irq_domain
*domain
);
56 static inline void arch_init_msi_domain(struct irq_domain
*domain
) { }