apic_flat_64.c 9.9 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4
/*
 * Copyright 2004 James Cleverdon, IBM.
 * Subject to the GNU Public License, v.2
 *
5
 * Flat APIC subarch code.
L
Linus Torvalds 已提交
6 7 8 9 10
 *
 * Hacked for x86-64 by James Cleverdon from i386 architecture code by
 * Martin Bligh, Andi Kleen, James Bottomley, John Stultz, and
 * James Cleverdon.
 */
11
#include <linux/errno.h>
L
Linus Torvalds 已提交
12 13 14 15 16 17
#include <linux/threads.h>
#include <linux/cpumask.h>
#include <linux/string.h>
#include <linux/kernel.h>
#include <linux/ctype.h>
#include <linux/init.h>
18
#include <linux/hardirq.h>
19
#include <linux/module.h>
L
Linus Torvalds 已提交
20
#include <asm/smp.h>
I
Ingo Molnar 已提交
21
#include <asm/apic.h>
Y
Yinghai Lu 已提交
22
#include <asm/ipi.h>
L
Linus Torvalds 已提交
23

24 25 26 27
#ifdef CONFIG_ACPI
#include <acpi/acpi_bus.h>
#endif

28 29 30 31 32 33
static struct apic apic_physflat;
static struct apic apic_flat;

struct apic __read_mostly *apic = &apic_flat;
EXPORT_SYMBOL_GPL(apic);

34
static int flat_acpi_madt_oem_check(char *oem_id, char *oem_table_id)
35 36 37 38
{
	return 1;
}

39
static const struct cpumask *flat_target_cpus(void)
L
Linus Torvalds 已提交
40
{
41
	return cpu_online_mask;
L
Linus Torvalds 已提交
42 43
}

44
static void flat_vector_allocation_domain(int cpu, struct cpumask *retmask)
45 46 47 48 49 50 51 52 53
{
	/* Careful. Some cpus do not strictly honor the set of cpus
	 * specified in the interrupt destination when using lowest
	 * priority interrupt delivery mode.
	 *
	 * In particular there was a hyperthreading cpu observed to
	 * deliver interrupts to the wrong hyperthread when only one
	 * hyperthread was specified in the interrupt desitination.
	 */
54 55
	cpumask_clear(retmask);
	cpumask_bits(retmask)[0] = APIC_ALL_CPUS;
56 57
}

L
Linus Torvalds 已提交
58 59 60 61 62 63 64
/*
 * Set up the logical destination ID.
 *
 * Intel recommends to set DFR, LDR and TPR before enabling
 * an APIC.  See e.g. "AP-388 82489DX User's Manual" (Intel
 * document number 292116).  So here it goes...
 */
65
void flat_init_apic_ldr(void)
L
Linus Torvalds 已提交
66 67 68 69 70 71
{
	unsigned long val;
	unsigned long num, id;

	num = smp_processor_id();
	id = 1UL << num;
72
	apic_write(APIC_DFR, APIC_DFR_FLAT);
L
Linus Torvalds 已提交
73 74
	val = apic_read(APIC_LDR) & ~APIC_LDR_MASK;
	val |= SET_APIC_LOGICAL_ID(id);
75
	apic_write(APIC_LDR, val);
L
Linus Torvalds 已提交
76 77
}

78
static inline void _flat_send_IPI_mask(unsigned long mask, int vector)
L
Linus Torvalds 已提交
79 80 81
{
	unsigned long flags;

82
	local_irq_save(flags);
83
	__default_send_IPI_dest_field(mask, vector, apic->dest_logical);
L
Linus Torvalds 已提交
84 85 86
	local_irq_restore(flags);
}

87
static void flat_send_IPI_mask(const struct cpumask *cpumask, int vector)
88
{
89
	unsigned long mask = cpumask_bits(cpumask)[0];
90 91 92 93

	_flat_send_IPI_mask(mask, vector);
}

94 95
static void
 flat_send_IPI_mask_allbutself(const struct cpumask *cpumask, int vector)
96
{
97
	unsigned long mask = cpumask_bits(cpumask)[0];
98 99 100 101
	int cpu = smp_processor_id();

	if (cpu < BITS_PER_LONG)
		clear_bit(cpu, &mask);
102

103 104 105
	_flat_send_IPI_mask(mask, vector);
}

106 107
static void flat_send_IPI_allbutself(int vector)
{
108
	int cpu = smp_processor_id();
109 110
#ifdef	CONFIG_HOTPLUG_CPU
	int hotplug = 1;
111
#else
112 113 114
	int hotplug = 0;
#endif
	if (hotplug || vector == NMI_VECTOR) {
115 116
		if (!cpumask_equal(cpu_online_mask, cpumask_of(cpu))) {
			unsigned long mask = cpumask_bits(cpu_online_mask)[0];
117

118 119
			if (cpu < BITS_PER_LONG)
				clear_bit(cpu, &mask);
120

121 122
			_flat_send_IPI_mask(mask, vector);
		}
123
	} else if (num_online_cpus() > 1) {
124 125
		__default_send_IPI_shortcut(APIC_DEST_ALLBUT,
					    vector, apic->dest_logical);
126
	}
127 128 129 130
}

static void flat_send_IPI_all(int vector)
{
131
	if (vector == NMI_VECTOR) {
132
		flat_send_IPI_mask(cpu_online_mask, vector);
133 134 135 136
	} else {
		__default_send_IPI_shortcut(APIC_DEST_ALLINC,
					    vector, apic->dest_logical);
	}
137 138
}

139
static unsigned int flat_get_apic_id(unsigned long x)
Y
Yinghai Lu 已提交
140 141 142 143
{
	unsigned int id;

	id = (((x)>>24) & 0xFFu);
144

Y
Yinghai Lu 已提交
145 146 147 148 149 150 151 152 153 154 155
	return id;
}

static unsigned long set_apic_id(unsigned int id)
{
	unsigned long x;

	x = ((id & 0xFFu)<<24);
	return x;
}

156 157 158 159
static unsigned int read_xapic_id(void)
{
	unsigned int id;

160
	id = flat_get_apic_id(apic_read(APIC_ID));
161 162 163
	return id;
}

L
Linus Torvalds 已提交
164 165
static int flat_apic_id_registered(void)
{
166
	return physid_isset(read_xapic_id(), phys_cpu_present_map);
L
Linus Torvalds 已提交
167 168
}

I
Ingo Molnar 已提交
169
static int flat_phys_pkg_id(int initial_apic_id, int index_msb)
L
Linus Torvalds 已提交
170
{
171
	return initial_apic_id >> index_msb;
L
Linus Torvalds 已提交
172 173
}

Y
Yinghai Lu 已提交
174 175 176 177 178
static int flat_probe(void)
{
	return 1;
}

179
static struct apic apic_flat =  {
I
Ingo Molnar 已提交
180
	.name				= "flat",
Y
Yinghai Lu 已提交
181
	.probe				= flat_probe,
I
Ingo Molnar 已提交
182 183 184
	.acpi_madt_oem_check		= flat_acpi_madt_oem_check,
	.apic_id_registered		= flat_apic_id_registered,

185
	.irq_delivery_mode		= dest_LowestPrio,
186
	.irq_dest_mode			= 1, /* logical */
I
Ingo Molnar 已提交
187 188

	.target_cpus			= flat_target_cpus,
189
	.disable_esr			= 0,
190
	.dest_logical			= APIC_DEST_LOGICAL,
I
Ingo Molnar 已提交
191 192 193 194 195 196 197 198 199
	.check_apicid_used		= NULL,
	.check_apicid_present		= NULL,

	.vector_allocation_domain	= flat_vector_allocation_domain,
	.init_apic_ldr			= flat_init_apic_ldr,

	.ioapic_phys_id_map		= NULL,
	.setup_apic_routing		= NULL,
	.multi_timer_check		= NULL,
200
	.cpu_present_to_apicid		= default_cpu_present_to_apicid,
I
Ingo Molnar 已提交
201 202
	.apicid_to_cpu_present		= NULL,
	.setup_portio_remap		= NULL,
203
	.check_phys_apicid_present	= default_check_phys_apicid_present,
I
Ingo Molnar 已提交
204
	.enable_apic_mode		= NULL,
I
Ingo Molnar 已提交
205
	.phys_pkg_id			= flat_phys_pkg_id,
I
Ingo Molnar 已提交
206 207
	.mps_oem_check			= NULL,

208
	.get_apic_id			= flat_get_apic_id,
I
Ingo Molnar 已提交
209 210 211
	.set_apic_id			= set_apic_id,
	.apic_id_mask			= 0xFFu << 24,

212 213
	.cpu_mask_to_apicid		= default_cpu_mask_to_apicid,
	.cpu_mask_to_apicid_and		= default_cpu_mask_to_apicid_and,
I
Ingo Molnar 已提交
214 215 216 217 218 219 220

	.send_IPI_mask			= flat_send_IPI_mask,
	.send_IPI_mask_allbutself	= flat_send_IPI_mask_allbutself,
	.send_IPI_allbutself		= flat_send_IPI_allbutself,
	.send_IPI_all			= flat_send_IPI_all,
	.send_IPI_self			= apic_send_IPI_self,

221 222
	.trampoline_phys_low		= DEFAULT_TRAMPOLINE_PHYS_LOW,
	.trampoline_phys_high		= DEFAULT_TRAMPOLINE_PHYS_HIGH,
I
Ingo Molnar 已提交
223 224
	.wait_for_init_deassert		= NULL,
	.smp_callin_clear_local_apic	= NULL,
225
	.inquire_remote_apic		= default_inquire_remote_apic,
Y
Yinghai Lu 已提交
226 227 228 229 230 231 232

	.read				= native_apic_mem_read,
	.write				= native_apic_mem_write,
	.icr_read			= native_apic_icr_read,
	.icr_write			= native_apic_icr_write,
	.wait_icr_idle			= native_apic_wait_icr_idle,
	.safe_wait_icr_idle		= native_safe_apic_wait_icr_idle,
L
Linus Torvalds 已提交
233
};
234 235

/*
236
 * Physflat mode is used when there are more than 8 CPUs on a system.
237 238 239
 * We cannot use logical delivery in this case because the mask
 * overflows, so use physical mode.
 */
240
static int physflat_acpi_madt_oem_check(char *oem_id, char *oem_table_id)
241 242 243 244 245 246 247
{
#ifdef CONFIG_ACPI
	/*
	 * Quirk: some x86_64 machines can only use physical APIC mode
	 * regardless of how many processors are present (x86_64 ES7000
	 * is an example).
	 */
248
	if (acpi_gbl_FADT.header.revision >= FADT2_REVISION_ID &&
249 250
		(acpi_gbl_FADT.flags & ACPI_FADT_APIC_PHYSICAL)) {
		printk(KERN_DEBUG "system APIC only can use physical flat");
251
		return 1;
252
	}
253 254 255 256 257

	if (!strncmp(oem_id, "IBM", 3) && !strncmp(oem_table_id, "EXA", 3)) {
		printk(KERN_DEBUG "IBM Summit detected, will use apic physical");
		return 1;
	}
258 259 260 261
#endif

	return 0;
}
262

263
static const struct cpumask *physflat_target_cpus(void)
264
{
265
	return cpu_online_mask;
266 267
}

268
static void physflat_vector_allocation_domain(int cpu, struct cpumask *retmask)
269
{
270 271
	cpumask_clear(retmask);
	cpumask_set_cpu(cpu, retmask);
272 273
}

274
static void physflat_send_IPI_mask(const struct cpumask *cpumask, int vector)
275
{
276
	default_send_IPI_mask_sequence_phys(cpumask, vector);
277 278
}

279
static void physflat_send_IPI_mask_allbutself(const struct cpumask *cpumask,
280
					      int vector)
281
{
282
	default_send_IPI_mask_allbutself_phys(cpumask, vector);
283
}
284

285 286
static void physflat_send_IPI_allbutself(int vector)
{
287
	default_send_IPI_mask_allbutself_phys(cpu_online_mask, vector);
288 289 290 291
}

static void physflat_send_IPI_all(int vector)
{
292
	physflat_send_IPI_mask(cpu_online_mask, vector);
293 294
}

295
static unsigned int physflat_cpu_mask_to_apicid(const struct cpumask *cpumask)
296 297 298 299 300 301 302
{
	int cpu;

	/*
	 * We're using fixed IRQ delivery, can only return one phys APIC ID.
	 * May as well be the first.
	 */
303
	cpu = cpumask_first(cpumask);
304
	if ((unsigned)cpu < nr_cpu_ids)
305
		return per_cpu(x86_cpu_to_apicid, cpu);
306 307 308 309
	else
		return BAD_APICID;
}

310 311 312
static unsigned int
physflat_cpu_mask_to_apicid_and(const struct cpumask *cpumask,
				const struct cpumask *andmask)
M
Mike Travis 已提交
313 314 315 316 317 318 319
{
	int cpu;

	/*
	 * We're using fixed IRQ delivery, can only return one phys APIC ID.
	 * May as well be the first.
	 */
320
	for_each_cpu_and(cpu, cpumask, andmask) {
321 322
		if (cpumask_test_cpu(cpu, cpu_online_mask))
			break;
323
	}
324
	return per_cpu(x86_cpu_to_apicid, cpu);
M
Mike Travis 已提交
325 326
}

327 328 329 330 331 332 333 334
static int physflat_probe(void)
{
	if (apic == &apic_physflat || num_possible_cpus() > 8)
		return 1;

	return 0;
}

335
static struct apic apic_physflat =  {
I
Ingo Molnar 已提交
336 337

	.name				= "physical flat",
338
	.probe				= physflat_probe,
I
Ingo Molnar 已提交
339 340 341
	.acpi_madt_oem_check		= physflat_acpi_madt_oem_check,
	.apic_id_registered		= flat_apic_id_registered,

342
	.irq_delivery_mode		= dest_Fixed,
343
	.irq_dest_mode			= 0, /* physical */
I
Ingo Molnar 已提交
344 345

	.target_cpus			= physflat_target_cpus,
346
	.disable_esr			= 0,
347
	.dest_logical			= 0,
I
Ingo Molnar 已提交
348 349 350 351 352 353 354 355 356 357
	.check_apicid_used		= NULL,
	.check_apicid_present		= NULL,

	.vector_allocation_domain	= physflat_vector_allocation_domain,
	/* not needed, but shouldn't hurt: */
	.init_apic_ldr			= flat_init_apic_ldr,

	.ioapic_phys_id_map		= NULL,
	.setup_apic_routing		= NULL,
	.multi_timer_check		= NULL,
358
	.cpu_present_to_apicid		= default_cpu_present_to_apicid,
I
Ingo Molnar 已提交
359 360
	.apicid_to_cpu_present		= NULL,
	.setup_portio_remap		= NULL,
361
	.check_phys_apicid_present	= default_check_phys_apicid_present,
I
Ingo Molnar 已提交
362
	.enable_apic_mode		= NULL,
I
Ingo Molnar 已提交
363
	.phys_pkg_id			= flat_phys_pkg_id,
I
Ingo Molnar 已提交
364 365
	.mps_oem_check			= NULL,

366
	.get_apic_id			= flat_get_apic_id,
I
Ingo Molnar 已提交
367
	.set_apic_id			= set_apic_id,
368
	.apic_id_mask			= 0xFFu << 24,
I
Ingo Molnar 已提交
369 370 371 372 373 374 375 376 377 378

	.cpu_mask_to_apicid		= physflat_cpu_mask_to_apicid,
	.cpu_mask_to_apicid_and		= physflat_cpu_mask_to_apicid_and,

	.send_IPI_mask			= physflat_send_IPI_mask,
	.send_IPI_mask_allbutself	= physflat_send_IPI_mask_allbutself,
	.send_IPI_allbutself		= physflat_send_IPI_allbutself,
	.send_IPI_all			= physflat_send_IPI_all,
	.send_IPI_self			= apic_send_IPI_self,

379 380
	.trampoline_phys_low		= DEFAULT_TRAMPOLINE_PHYS_LOW,
	.trampoline_phys_high		= DEFAULT_TRAMPOLINE_PHYS_HIGH,
I
Ingo Molnar 已提交
381 382
	.wait_for_init_deassert		= NULL,
	.smp_callin_clear_local_apic	= NULL,
383
	.inquire_remote_apic		= default_inquire_remote_apic,
Y
Yinghai Lu 已提交
384 385 386 387 388 389 390

	.read				= native_apic_mem_read,
	.write				= native_apic_mem_write,
	.icr_read			= native_apic_icr_read,
	.icr_write			= native_apic_icr_write,
	.wait_icr_idle			= native_apic_wait_icr_idle,
	.safe_wait_icr_idle		= native_safe_apic_wait_icr_idle,
391
};
392 393 394 395 396

/*
 * We need to check for physflat first, so this order is important.
 */
apic_drivers(apic_physflat, apic_flat);