x2apic_cluster.c 6.9 KB
Newer Older
1 2 3 4 5
#include <linux/threads.h>
#include <linux/cpumask.h>
#include <linux/string.h>
#include <linux/kernel.h>
#include <linux/ctype.h>
6
#include <linux/dmar.h>
7
#include <linux/irq.h>
8
#include <linux/cpu.h>
9

10
#include <asm/smp.h>
11
#include <asm/x2apic.h>
12

13
static DEFINE_PER_CPU(u32, x86_cpu_to_logical_apicid);
14
static DEFINE_PER_CPU(cpumask_var_t, cpus_in_cluster);
15
static DEFINE_PER_CPU(cpumask_var_t, ipi_mask);
16

17
static int x2apic_acpi_madt_oem_check(char *oem_id, char *oem_table_id)
18
{
19
	return x2apic_enabled();
20 21
}

22 23 24 25 26
static inline u32 x2apic_cluster(int cpu)
{
	return per_cpu(x86_cpu_to_logical_apicid, cpu) >> 16;
}

27 28 29 30 31 32 33 34
static void x2apic_send_IPI(int cpu, int vector)
{
	u32 dest = per_cpu(x86_cpu_to_logical_apicid, cpu);

	x2apic_wrmsr_fence();
	__x2apic_send_IPI_dest(dest, vector, APIC_DEST_LOGICAL);
}

35 36
static void
__x2apic_send_IPI_mask(const struct cpumask *mask, int vector, int apic_dest)
37
{
38 39 40
	struct cpumask *cpus_in_cluster_ptr;
	struct cpumask *ipi_mask_ptr;
	unsigned int cpu, this_cpu;
41
	unsigned long flags;
42
	u32 dest;
43

44 45
	x2apic_wrmsr_fence();

46
	local_irq_save(flags);
47 48

	this_cpu = smp_processor_id();
49 50 51 52 53

	/*
	 * We are to modify mask, so we need an own copy
	 * and be sure it's manipulated with irq off.
	 */
54
	ipi_mask_ptr = this_cpu_cpumask_var_ptr(ipi_mask);
55
	cpumask_copy(ipi_mask_ptr, mask);
56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72

	/*
	 * The idea is to send one IPI per cluster.
	 */
	for_each_cpu(cpu, ipi_mask_ptr) {
		unsigned long i;

		cpus_in_cluster_ptr = per_cpu(cpus_in_cluster, cpu);
		dest = 0;

		/* Collect cpus in cluster. */
		for_each_cpu_and(i, ipi_mask_ptr, cpus_in_cluster_ptr) {
			if (apic_dest == APIC_DEST_ALLINC || i != this_cpu)
				dest |= per_cpu(x86_cpu_to_logical_apicid, i);
		}

		if (!dest)
73
			continue;
74 75 76 77 78 79 80

		__x2apic_send_IPI_dest(dest, vector, apic->dest_logical);
		/*
		 * Cluster sibling cpus should be discared now so
		 * we would not send IPI them second time.
		 */
		cpumask_andnot(ipi_mask_ptr, ipi_mask_ptr, cpus_in_cluster_ptr);
81
	}
82

83 84 85
	local_irq_restore(flags);
}

86 87 88 89 90
static void x2apic_send_IPI_mask(const struct cpumask *mask, int vector)
{
	__x2apic_send_IPI_mask(mask, vector, APIC_DEST_ALLINC);
}

91
static void
92
x2apic_send_IPI_mask_allbutself(const struct cpumask *mask, int vector)
93
{
94
	__x2apic_send_IPI_mask(mask, vector, APIC_DEST_ALLBUT);
95
}
96

97 98
static void x2apic_send_IPI_allbutself(int vector)
{
99
	__x2apic_send_IPI_mask(cpu_online_mask, vector, APIC_DEST_ALLBUT);
100 101 102 103
}

static void x2apic_send_IPI_all(int vector)
{
104
	__x2apic_send_IPI_mask(cpu_online_mask, vector, APIC_DEST_ALLINC);
105 106
}

107
static int
108 109
x2apic_cpu_mask_to_apicid(const struct cpumask *mask, struct irq_data *irqdata,
			  unsigned int *apicid)
M
Mike Travis 已提交
110
{
111
	struct cpumask *effmsk = irq_data_get_effective_affinity_mask(irqdata);
112
	unsigned int cpu;
113 114
	u32 dest = 0;
	u16 cluster;
115

116
	cpu = cpumask_first(mask);
117
	if (cpu >= nr_cpu_ids)
118
		return -EINVAL;
119

120 121 122
	dest = per_cpu(x86_cpu_to_logical_apicid, cpu);
	cluster = x2apic_cluster(cpu);

123
	cpumask_clear(effmsk);
124
	for_each_cpu(cpu, mask) {
125
		if (cluster != x2apic_cluster(cpu))
126
			continue;
127
		dest |= per_cpu(x86_cpu_to_logical_apicid, cpu);
128
		cpumask_set_cpu(cpu, effmsk);
129 130
	}

131 132
	*apicid = dest;
	return 0;
M
Mike Travis 已提交
133 134
}

135
static void init_x2apic_ldr(void)
136 137 138 139 140 141
{
	unsigned int this_cpu = smp_processor_id();
	unsigned int cpu;

	per_cpu(x86_cpu_to_logical_apicid, this_cpu) = apic_read(APIC_LDR);

142
	cpumask_set_cpu(this_cpu, per_cpu(cpus_in_cluster, this_cpu));
143 144 145
	for_each_online_cpu(cpu) {
		if (x2apic_cluster(this_cpu) != x2apic_cluster(cpu))
			continue;
146 147
		cpumask_set_cpu(this_cpu, per_cpu(cpus_in_cluster, cpu));
		cpumask_set_cpu(cpu, per_cpu(cpus_in_cluster, this_cpu));
148 149 150
	}
}

151 152 153
/*
 * At CPU state changes, update the x2apic cluster sibling info.
 */
154
static int x2apic_prepare_cpu(unsigned int cpu)
155
{
156 157 158 159 160 161
	if (!zalloc_cpumask_var(&per_cpu(cpus_in_cluster, cpu), GFP_KERNEL))
		return -ENOMEM;

	if (!zalloc_cpumask_var(&per_cpu(ipi_mask, cpu), GFP_KERNEL)) {
		free_cpumask_var(per_cpu(cpus_in_cluster, cpu));
		return -ENOMEM;
162 163
	}

164
	return 0;
165 166
}

167
static int x2apic_dead_cpu(unsigned int this_cpu)
168
{
169
	int cpu;
170

171 172 173 174 175 176 177 178 179
	for_each_online_cpu(cpu) {
		if (x2apic_cluster(this_cpu) != x2apic_cluster(cpu))
			continue;
		cpumask_clear_cpu(this_cpu, per_cpu(cpus_in_cluster, cpu));
		cpumask_clear_cpu(cpu, per_cpu(cpus_in_cluster, this_cpu));
	}
	free_cpumask_var(per_cpu(cpus_in_cluster, this_cpu));
	free_cpumask_var(per_cpu(ipi_mask, this_cpu));
	return 0;
180 181
}

182 183
static int x2apic_cluster_probe(void)
{
184
	int cpu = smp_processor_id();
185
	int ret;
186 187

	if (!x2apic_mode)
188
		return 0;
189

T
Thomas Gleixner 已提交
190
	ret = cpuhp_setup_state(CPUHP_X2APIC_PREPARE, "x86/x2apic:prepare",
191 192 193 194 195
				x2apic_prepare_cpu, x2apic_dead_cpu);
	if (ret < 0) {
		pr_err("Failed to register X2APIC_PREPARE\n");
		return 0;
	}
196 197
	cpumask_set_cpu(cpu, per_cpu(cpus_in_cluster, cpu));
	return 1;
198 199
}

200 201 202 203 204
static const struct cpumask *x2apic_cluster_target_cpus(void)
{
	return cpu_all_mask;
}

205 206 207
/*
 * Each x2apic cluster is an allocation domain.
 */
208 209
static void cluster_vector_allocation_domain(int cpu, struct cpumask *retmask,
					     const struct cpumask *mask)
210
{
211 212 213 214 215 216 217 218 219 220 221 222 223
	/*
	 * To minimize vector pressure, default case of boot, device bringup
	 * etc will use a single cpu for the interrupt destination.
	 *
	 * On explicit migration requests coming from irqbalance etc,
	 * interrupts will be routed to the x2apic cluster (cluster-id
	 * derived from the first cpu in the mask) members specified
	 * in the mask.
	 */
	if (mask == x2apic_cluster_target_cpus())
		cpumask_copy(retmask, cpumask_of(cpu));
	else
		cpumask_and(retmask, mask, per_cpu(cpus_in_cluster, cpu));
224 225
}

226
static struct apic apic_x2apic_cluster __ro_after_init = {
I
Ingo Molnar 已提交
227 228

	.name				= "cluster x2apic",
229
	.probe				= x2apic_cluster_probe,
I
Ingo Molnar 已提交
230
	.acpi_madt_oem_check		= x2apic_acpi_madt_oem_check,
231
	.apic_id_valid			= x2apic_apic_id_valid,
I
Ingo Molnar 已提交
232 233
	.apic_id_registered		= x2apic_apic_id_registered,

234
	.irq_delivery_mode		= dest_LowestPrio,
235
	.irq_dest_mode			= 1, /* logical */
I
Ingo Molnar 已提交
236

237
	.target_cpus			= x2apic_cluster_target_cpus,
238
	.disable_esr			= 0,
239
	.dest_logical			= APIC_DEST_LOGICAL,
I
Ingo Molnar 已提交
240 241
	.check_apicid_used		= NULL,

242
	.vector_allocation_domain	= cluster_vector_allocation_domain,
I
Ingo Molnar 已提交
243 244 245 246
	.init_apic_ldr			= init_x2apic_ldr,

	.ioapic_phys_id_map		= NULL,
	.setup_apic_routing		= NULL,
247
	.cpu_present_to_apicid		= default_cpu_present_to_apicid,
I
Ingo Molnar 已提交
248
	.apicid_to_cpu_present		= NULL,
249
	.check_phys_apicid_present	= default_check_phys_apicid_present,
250
	.phys_pkg_id			= x2apic_phys_pkg_id,
I
Ingo Molnar 已提交
251

252 253
	.get_apic_id			= x2apic_get_apic_id,
	.set_apic_id			= x2apic_set_apic_id,
I
Ingo Molnar 已提交
254

255
	.cpu_mask_to_apicid		= x2apic_cpu_mask_to_apicid,
I
Ingo Molnar 已提交
256

257
	.send_IPI			= x2apic_send_IPI,
I
Ingo Molnar 已提交
258 259 260 261 262 263 264
	.send_IPI_mask			= x2apic_send_IPI_mask,
	.send_IPI_mask_allbutself	= x2apic_send_IPI_mask_allbutself,
	.send_IPI_allbutself		= x2apic_send_IPI_allbutself,
	.send_IPI_all			= x2apic_send_IPI_all,
	.send_IPI_self			= x2apic_send_IPI_self,

	.inquire_remote_apic		= NULL,
Y
Yinghai Lu 已提交
265 266 267

	.read				= native_apic_msr_read,
	.write				= native_apic_msr_write,
268
	.eoi_write			= native_apic_msr_eoi_write,
Y
Yinghai Lu 已提交
269 270 271 272
	.icr_read			= native_x2apic_icr_read,
	.icr_write			= native_x2apic_icr_write,
	.wait_icr_idle			= native_x2apic_wait_icr_idle,
	.safe_wait_icr_idle		= native_safe_x2apic_wait_icr_idle,
273
};
274 275

apic_driver(apic_x2apic_cluster);