aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/iommu/intr_remapping.c
blob: 2f4f27ffb861193f00534d17ddbe993d8916f550 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
#include <linux/kernel.h>
#include <linux/string.h>
#include <linux/errno.h>

#include "intr_remapping.h"

int intr_remapping_enabled;

int disable_intremap;
int disable_sourceid_checking;
int no_x2apic_optout;

static struct irq_remap_ops *remap_ops;

static __init int setup_nointremap(char *str)
{
	disable_intremap = 1;
	return 0;
}
early_param("nointremap", setup_nointremap);

static __init int setup_intremap(char *str)
{
	if (!str)
		return -EINVAL;

	while (*str) {
		if (!strncmp(str, "on", 2))
			disable_intremap = 0;
		else if (!strncmp(str, "off", 3))
			disable_intremap = 1;
		else if (!strncmp(str, "nosid", 5))
			disable_sourceid_checking = 1;
		else if (!strncmp(str, "no_x2apic_optout", 16))
			no_x2apic_optout = 1;

		str += strcspn(str, ",");
		while (*str == ',')
			str++;
	}

	return 0;
}
early_param("intremap", setup_intremap);

void __init setup_intr_remapping(void)
{
	remap_ops = &intel_irq_remap_ops;
}

int intr_remapping_supported(void)
{
	if (disable_intremap)
		return 0;

	if (!remap_ops || !remap_ops->supported)
		return 0;

	return remap_ops->supported();
}

int __init intr_hardware_init(void)
{
	if (!remap_ops || !remap_ops->hardware_init)
		return -ENODEV;

	return remap_ops->hardware_init();
}

int __init intr_hardware_enable(void)
{
	if (!remap_ops || !remap_ops->hardware_enable)
		return -ENODEV;

	return remap_ops->hardware_enable();
}

void intr_hardware_disable(void)
{
	if (!remap_ops || !remap_ops->hardware_disable)
		return;

	remap_ops->hardware_disable();
}

int intr_hardware_reenable(int mode)
{
	if (!remap_ops || !remap_ops->hardware_reenable)
		return 0;

	return remap_ops->hardware_reenable(mode);
}

int __init intr_enable_fault_handling(void)
{
	if (!remap_ops || !remap_ops->enable_faulting)
		return -ENODEV;

	return remap_ops->enable_faulting();
}

int intr_setup_ioapic_entry(int irq,
			    struct IO_APIC_route_entry *entry,
			    unsigned int destination, int vector,
			    struct io_apic_irq_attr *attr)
{
	if (!remap_ops || !remap_ops->setup_ioapic_entry)
		return -ENODEV;

	return remap_ops->setup_ioapic_entry(irq, entry, destination,
					     vector, attr);
}

int intr_set_affinity(struct irq_data *data, const struct cpumask *mask,
		      bool force)
{
	if (!remap_ops || !remap_ops->set_affinity)
		return 0;

	return remap_ops->set_affinity(data, mask, force);
}