blob: 9aabed7c032055d4ca280e71e64a2031dbc02209 [file] [log] [blame]
Joerg Roedel736baef2012-03-30 11:47:00 -07001#include <linux/kernel.h>
2#include <linux/string.h>
3#include <linux/errno.h>
4
5#include "intr_remapping.h"
6
7int intr_remapping_enabled;
8
9int disable_intremap;
10int disable_sourceid_checking;
11int no_x2apic_optout;
12
13static struct irq_remap_ops *remap_ops;
14
15static __init int setup_nointremap(char *str)
16{
17 disable_intremap = 1;
18 return 0;
19}
20early_param("nointremap", setup_nointremap);
21
22static __init int setup_intremap(char *str)
23{
24 if (!str)
25 return -EINVAL;
26
27 while (*str) {
28 if (!strncmp(str, "on", 2))
29 disable_intremap = 0;
30 else if (!strncmp(str, "off", 3))
31 disable_intremap = 1;
32 else if (!strncmp(str, "nosid", 5))
33 disable_sourceid_checking = 1;
34 else if (!strncmp(str, "no_x2apic_optout", 16))
35 no_x2apic_optout = 1;
36
37 str += strcspn(str, ",");
38 while (*str == ',')
39 str++;
40 }
41
42 return 0;
43}
44early_param("intremap", setup_intremap);
45
46void __init setup_intr_remapping(void)
47{
48 remap_ops = &intel_irq_remap_ops;
49}
50
51int intr_remapping_supported(void)
52{
53 if (disable_intremap)
54 return 0;
55
56 if (!remap_ops || !remap_ops->supported)
57 return 0;
58
59 return remap_ops->supported();
60}
61
62int __init intr_hardware_init(void)
63{
64 if (!remap_ops || !remap_ops->hardware_init)
65 return -ENODEV;
66
67 return remap_ops->hardware_init();
68}
69
70int __init intr_hardware_enable(void)
71{
72 if (!remap_ops || !remap_ops->hardware_enable)
73 return -ENODEV;
74
75 return remap_ops->hardware_enable();
76}
Joerg Roedel4f3d8b62012-03-30 11:47:01 -070077
78void intr_hardware_disable(void)
79{
80 if (!remap_ops || !remap_ops->hardware_disable)
81 return;
82
83 remap_ops->hardware_disable();
84}
85
86int intr_hardware_reenable(int mode)
87{
88 if (!remap_ops || !remap_ops->hardware_reenable)
89 return 0;
90
91 return remap_ops->hardware_reenable(mode);
92}
93
94int __init intr_enable_fault_handling(void)
95{
96 if (!remap_ops || !remap_ops->enable_faulting)
97 return -ENODEV;
98
99 return remap_ops->enable_faulting();
100}