iommu: Add new member capability to struct irq_remap_ops
[deliverable/linux.git] / arch / x86 / include / asm / irq_remapping.h
1 /*
2 * Copyright (C) 2012 Advanced Micro Devices, Inc.
3 * Author: Joerg Roedel <joerg.roedel@amd.com>
4 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 as published
7 * by the Free Software Foundation.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 *
18 * This header file contains the interface of the interrupt remapping code to
19 * the x86 interrupt management code.
20 */
21
22 #ifndef __X86_IRQ_REMAPPING_H
23 #define __X86_IRQ_REMAPPING_H
24
25 #include <asm/irqdomain.h>
26 #include <asm/hw_irq.h>
27 #include <asm/io_apic.h>
28
29 struct msi_msg;
30 struct irq_alloc_info;
31
32 enum irq_remap_cap {
33 IRQ_POSTING_CAP = 0,
34 };
35
36 #ifdef CONFIG_IRQ_REMAP
37
38 extern void set_irq_remapping_broken(void);
39 extern int irq_remapping_prepare(void);
40 extern int irq_remapping_enable(void);
41 extern void irq_remapping_disable(void);
42 extern int irq_remapping_reenable(int);
43 extern int irq_remap_enable_fault_handling(void);
44 extern void panic_if_irq_remap(const char *msg);
45
46 extern struct irq_domain *
47 irq_remapping_get_ir_irq_domain(struct irq_alloc_info *info);
48 extern struct irq_domain *
49 irq_remapping_get_irq_domain(struct irq_alloc_info *info);
50
51 /* Create PCI MSI/MSIx irqdomain, use @parent as the parent irqdomain. */
52 extern struct irq_domain *arch_create_msi_irq_domain(struct irq_domain *parent);
53
54 /* Get parent irqdomain for interrupt remapping irqdomain */
55 static inline struct irq_domain *arch_get_ir_parent_domain(void)
56 {
57 return x86_vector_domain;
58 }
59
60 #else /* CONFIG_IRQ_REMAP */
61
62 static inline void set_irq_remapping_broken(void) { }
63 static inline int irq_remapping_prepare(void) { return -ENODEV; }
64 static inline int irq_remapping_enable(void) { return -ENODEV; }
65 static inline void irq_remapping_disable(void) { }
66 static inline int irq_remapping_reenable(int eim) { return -ENODEV; }
67 static inline int irq_remap_enable_fault_handling(void) { return -ENODEV; }
68
69 static inline void panic_if_irq_remap(const char *msg)
70 {
71 }
72
73 static inline struct irq_domain *
74 irq_remapping_get_ir_irq_domain(struct irq_alloc_info *info)
75 {
76 return NULL;
77 }
78
79 static inline struct irq_domain *
80 irq_remapping_get_irq_domain(struct irq_alloc_info *info)
81 {
82 return NULL;
83 }
84
85 #endif /* CONFIG_IRQ_REMAP */
86 #endif /* __X86_IRQ_REMAPPING_H */
This page took 0.05631 seconds and 5 git commands to generate.