aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/include/asm/intr_remapping.h
diff options
context:
space:
mode:
authorJoerg Roedel <joerg.roedel@amd.com>2012-03-30 14:47:02 -0400
committerJoerg Roedel <joerg.roedel@amd.com>2012-05-07 08:34:59 -0400
commit0c3f173a88c4ae3e4253427cf574a59ad5352918 (patch)
treed34364dc8d7926de75ec486ce579b478d23098e3 /arch/x86/include/asm/intr_remapping.h
parent4f3d8b67ad3090f9fb72f8235d21cde53cd24b79 (diff)
iommu/vt-d: Convert IR ioapic-setup to use remap_ops
The IOAPIC setup routine for interrupt remapping is VT-d specific. Move it to the irq_remap_ops and add a call helper function. Signed-off-by: Joerg Roedel <joerg.roedel@amd.com> Acked-by: Yinghai Lu <yinghai@kernel.org> Cc: David Woodhouse <dwmw2@infradead.org> Cc: Alex Williamson <alex.williamson@redhat.com> Signed-off-by: Suresh Siddha <suresh.b.siddha@intel.com> Signed-off-by: Joerg Roedel <joerg.roedel@amd.com>
Diffstat (limited to 'arch/x86/include/asm/intr_remapping.h')
-rw-r--r--arch/x86/include/asm/intr_remapping.h15
1 files changed, 14 insertions, 1 deletions
diff --git a/arch/x86/include/asm/intr_remapping.h b/arch/x86/include/asm/intr_remapping.h
index 55aa892a53e3..a22e1f1ac7ec 100644
--- a/arch/x86/include/asm/intr_remapping.h
+++ b/arch/x86/include/asm/intr_remapping.h
@@ -24,6 +24,9 @@
24 24
25#ifdef CONFIG_IRQ_REMAP 25#ifdef CONFIG_IRQ_REMAP
26 26
27struct IO_APIC_route_entry;
28struct io_apic_irq_attr;
29
27extern int intr_remapping_enabled; 30extern int intr_remapping_enabled;
28 31
29extern void setup_intr_remapping(void); 32extern void setup_intr_remapping(void);
@@ -33,6 +36,10 @@ extern int intr_hardware_enable(void);
33extern void intr_hardware_disable(void); 36extern void intr_hardware_disable(void);
34extern int intr_hardware_reenable(int); 37extern int intr_hardware_reenable(int);
35extern int intr_enable_fault_handling(void); 38extern int intr_enable_fault_handling(void);
39extern int intr_setup_ioapic_entry(int irq,
40 struct IO_APIC_route_entry *entry,
41 unsigned int destination, int vector,
42 struct io_apic_irq_attr *attr);
36 43
37#else /* CONFIG_IRQ_REMAP */ 44#else /* CONFIG_IRQ_REMAP */
38 45
@@ -45,7 +52,13 @@ static inline int intr_hardware_enable(void) { return -ENODEV; }
45static inline void intr_hardware_disable(void) { } 52static inline void intr_hardware_disable(void) { }
46static inline int intr_hardware_reenable(int eim) { return -ENODEV; } 53static inline int intr_hardware_reenable(int eim) { return -ENODEV; }
47static inline int intr_enable_fault_handling(void) { return -ENODEV; } 54static inline int intr_enable_fault_handling(void) { return -ENODEV; }
48 55static inline int intr_setup_ioapic_entry(int irq,
56 struct IO_APIC_route_entry *entry,
57 unsigned int destination, int vector,
58 struct io_apic_irq_attr *attr)
59{
60 return -ENODEV;
61}
49#endif /* CONFIG_IRQ_REMAP */ 62#endif /* CONFIG_IRQ_REMAP */
50 63
51#endif /* __X86_INTR_REMAPPING_H */ 64#endif /* __X86_INTR_REMAPPING_H */