apic_flat_64.c 9.6 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>
L
Linus Torvalds 已提交
19
#include <asm/smp.h>
I
Ingo Molnar 已提交
20
#include <asm/apic.h>
Y
Yinghai Lu 已提交
21
#include <asm/ipi.h>
L
Linus Torvalds 已提交
22

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

27
static int flat_acpi_madt_oem_check(char *oem_id, char *oem_table_id)
28 29 30 31
{
	return 1;
}

32
static const struct cpumask *flat_target_cpus(void)
L
Linus Torvalds 已提交
33
{
34
	return cpu_online_mask;
L
Linus Torvalds 已提交
35 36
}

37
static void flat_vector_allocation_domain(int cpu, struct cpumask *retmask)
38 39 40 41 42 43 44 45 46
{
	/* 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.
	 */
47 48
	cpumask_clear(retmask);
	cpumask_bits(retmask)[0] = APIC_ALL_CPUS;
49 50
}

L
Linus Torvalds 已提交
51 52 53 54 55 56 57 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...
 */
static void flat_init_apic_ldr(void)
{
	unsigned long val;
	unsigned long num, id;

	num = smp_processor_id();
	id = 1UL << num;
65
	apic_write(APIC_DFR, APIC_DFR_FLAT);
L
Linus Torvalds 已提交
66 67
	val = apic_read(APIC_LDR) & ~APIC_LDR_MASK;
	val |= SET_APIC_LOGICAL_ID(id);
68
	apic_write(APIC_LDR, val);
L
Linus Torvalds 已提交
69 70
}

71
static inline void _flat_send_IPI_mask(unsigned long mask, int vector)
L
Linus Torvalds 已提交
72 73 74
{
	unsigned long flags;

75
	local_irq_save(flags);
76
	__default_send_IPI_dest_field(mask, vector, apic->dest_logical);
L
Linus Torvalds 已提交
77 78 79
	local_irq_restore(flags);
}

80
static void flat_send_IPI_mask(const struct cpumask *cpumask, int vector)
81
{
82
	unsigned long mask = cpumask_bits(cpumask)[0];
83 84 85 86

	_flat_send_IPI_mask(mask, vector);
}

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

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

96 97 98
	_flat_send_IPI_mask(mask, vector);
}

99 100
static void flat_send_IPI_allbutself(int vector)
{
101
	int cpu = smp_processor_id();
102 103
#ifdef	CONFIG_HOTPLUG_CPU
	int hotplug = 1;
104
#else
105 106 107
	int hotplug = 0;
#endif
	if (hotplug || vector == NMI_VECTOR) {
108 109
		if (!cpumask_equal(cpu_online_mask, cpumask_of(cpu))) {
			unsigned long mask = cpumask_bits(cpu_online_mask)[0];
110

111 112
			if (cpu < BITS_PER_LONG)
				clear_bit(cpu, &mask);
113

114 115
			_flat_send_IPI_mask(mask, vector);
		}
116
	} else if (num_online_cpus() > 1) {
117 118
		__default_send_IPI_shortcut(APIC_DEST_ALLBUT,
					    vector, apic->dest_logical);
119
	}
120 121 122 123
}

static void flat_send_IPI_all(int vector)
{
124
	if (vector == NMI_VECTOR) {
125
		flat_send_IPI_mask(cpu_online_mask, vector);
126 127 128 129
	} else {
		__default_send_IPI_shortcut(APIC_DEST_ALLINC,
					    vector, apic->dest_logical);
	}
130 131
}

132
static unsigned int flat_get_apic_id(unsigned long x)
Y
Yinghai Lu 已提交
133 134 135 136
{
	unsigned int id;

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

Y
Yinghai Lu 已提交
138 139 140 141 142 143 144 145 146 147 148
	return id;
}

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

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

149 150 151 152
static unsigned int read_xapic_id(void)
{
	unsigned int id;

153
	id = flat_get_apic_id(apic_read(APIC_ID));
154 155 156
	return id;
}

L
Linus Torvalds 已提交
157 158
static int flat_apic_id_registered(void)
{
159
	return physid_isset(read_xapic_id(), phys_cpu_present_map);
L
Linus Torvalds 已提交
160 161
}

I
Ingo Molnar 已提交
162
static int flat_phys_pkg_id(int initial_apic_id, int index_msb)
L
Linus Torvalds 已提交
163
{
164
	return initial_apic_id >> index_msb;
L
Linus Torvalds 已提交
165 166
}

167
struct apic apic_flat =  {
I
Ingo Molnar 已提交
168 169 170 171 172
	.name				= "flat",
	.probe				= NULL,
	.acpi_madt_oem_check		= flat_acpi_madt_oem_check,
	.apic_id_registered		= flat_apic_id_registered,

173
	.irq_delivery_mode		= dest_LowestPrio,
174
	.irq_dest_mode			= 1, /* logical */
I
Ingo Molnar 已提交
175 176

	.target_cpus			= flat_target_cpus,
177
	.disable_esr			= 0,
178
	.dest_logical			= APIC_DEST_LOGICAL,
I
Ingo Molnar 已提交
179 180 181 182 183 184 185 186 187
	.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,
188
	.cpu_present_to_apicid		= default_cpu_present_to_apicid,
I
Ingo Molnar 已提交
189 190
	.apicid_to_cpu_present		= NULL,
	.setup_portio_remap		= NULL,
191
	.check_phys_apicid_present	= default_check_phys_apicid_present,
I
Ingo Molnar 已提交
192
	.enable_apic_mode		= NULL,
I
Ingo Molnar 已提交
193
	.phys_pkg_id			= flat_phys_pkg_id,
I
Ingo Molnar 已提交
194 195
	.mps_oem_check			= NULL,

196
	.get_apic_id			= flat_get_apic_id,
I
Ingo Molnar 已提交
197 198 199
	.set_apic_id			= set_apic_id,
	.apic_id_mask			= 0xFFu << 24,

200 201
	.cpu_mask_to_apicid		= default_cpu_mask_to_apicid,
	.cpu_mask_to_apicid_and		= default_cpu_mask_to_apicid_and,
I
Ingo Molnar 已提交
202 203 204 205 206 207 208

	.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,

209 210
	.trampoline_phys_low		= DEFAULT_TRAMPOLINE_PHYS_LOW,
	.trampoline_phys_high		= DEFAULT_TRAMPOLINE_PHYS_HIGH,
I
Ingo Molnar 已提交
211 212
	.wait_for_init_deassert		= NULL,
	.smp_callin_clear_local_apic	= NULL,
213
	.inquire_remote_apic		= default_inquire_remote_apic,
Y
Yinghai Lu 已提交
214 215 216 217 218 219 220

	.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 已提交
221
};
222 223

/*
224
 * Physflat mode is used when there are more than 8 CPUs on a system.
225 226 227
 * We cannot use logical delivery in this case because the mask
 * overflows, so use physical mode.
 */
228
static int physflat_acpi_madt_oem_check(char *oem_id, char *oem_table_id)
229 230 231 232 233 234 235
{
#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).
	 */
236
	if (acpi_gbl_FADT.header.revision >= FADT2_REVISION_ID &&
237 238
		(acpi_gbl_FADT.flags & ACPI_FADT_APIC_PHYSICAL)) {
		printk(KERN_DEBUG "system APIC only can use physical flat");
239
		return 1;
240
	}
241 242 243 244 245

	if (!strncmp(oem_id, "IBM", 3) && !strncmp(oem_table_id, "EXA", 3)) {
		printk(KERN_DEBUG "IBM Summit detected, will use apic physical");
		return 1;
	}
246 247 248 249
#endif

	return 0;
}
250

251
static const struct cpumask *physflat_target_cpus(void)
252
{
253
	return cpu_online_mask;
254 255
}

256
static void physflat_vector_allocation_domain(int cpu, struct cpumask *retmask)
257
{
258 259
	cpumask_clear(retmask);
	cpumask_set_cpu(cpu, retmask);
260 261
}

262
static void physflat_send_IPI_mask(const struct cpumask *cpumask, int vector)
263
{
264
	default_send_IPI_mask_sequence_phys(cpumask, vector);
265 266
}

267
static void physflat_send_IPI_mask_allbutself(const struct cpumask *cpumask,
268
					      int vector)
269
{
270
	default_send_IPI_mask_allbutself_phys(cpumask, vector);
271
}
272

273 274
static void physflat_send_IPI_allbutself(int vector)
{
275
	default_send_IPI_mask_allbutself_phys(cpu_online_mask, vector);
276 277 278 279
}

static void physflat_send_IPI_all(int vector)
{
280
	physflat_send_IPI_mask(cpu_online_mask, vector);
281 282
}

283
static unsigned int physflat_cpu_mask_to_apicid(const struct cpumask *cpumask)
284 285 286 287 288 289 290
{
	int cpu;

	/*
	 * We're using fixed IRQ delivery, can only return one phys APIC ID.
	 * May as well be the first.
	 */
291
	cpu = cpumask_first(cpumask);
292
	if ((unsigned)cpu < nr_cpu_ids)
293
		return per_cpu(x86_cpu_to_apicid, cpu);
294 295 296 297
	else
		return BAD_APICID;
}

298 299 300
static unsigned int
physflat_cpu_mask_to_apicid_and(const struct cpumask *cpumask,
				const struct cpumask *andmask)
M
Mike Travis 已提交
301 302 303 304 305 306 307
{
	int cpu;

	/*
	 * We're using fixed IRQ delivery, can only return one phys APIC ID.
	 * May as well be the first.
	 */
308
	for_each_cpu_and(cpu, cpumask, andmask) {
309 310
		if (cpumask_test_cpu(cpu, cpu_online_mask))
			break;
311
	}
312
	return per_cpu(x86_cpu_to_apicid, cpu);
M
Mike Travis 已提交
313 314
}

315 316 317 318 319 320 321 322
static int physflat_probe(void)
{
	if (apic == &apic_physflat || num_possible_cpus() > 8)
		return 1;

	return 0;
}

323
struct apic apic_physflat =  {
I
Ingo Molnar 已提交
324 325

	.name				= "physical flat",
326
	.probe				= physflat_probe,
I
Ingo Molnar 已提交
327 328 329
	.acpi_madt_oem_check		= physflat_acpi_madt_oem_check,
	.apic_id_registered		= flat_apic_id_registered,

330
	.irq_delivery_mode		= dest_Fixed,
331
	.irq_dest_mode			= 0, /* physical */
I
Ingo Molnar 已提交
332 333

	.target_cpus			= physflat_target_cpus,
334
	.disable_esr			= 0,
335
	.dest_logical			= 0,
I
Ingo Molnar 已提交
336 337 338 339 340 341 342 343 344 345
	.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,
346
	.cpu_present_to_apicid		= default_cpu_present_to_apicid,
I
Ingo Molnar 已提交
347 348
	.apicid_to_cpu_present		= NULL,
	.setup_portio_remap		= NULL,
349
	.check_phys_apicid_present	= default_check_phys_apicid_present,
I
Ingo Molnar 已提交
350
	.enable_apic_mode		= NULL,
I
Ingo Molnar 已提交
351
	.phys_pkg_id			= flat_phys_pkg_id,
I
Ingo Molnar 已提交
352 353
	.mps_oem_check			= NULL,

354
	.get_apic_id			= flat_get_apic_id,
I
Ingo Molnar 已提交
355
	.set_apic_id			= set_apic_id,
356
	.apic_id_mask			= 0xFFu << 24,
I
Ingo Molnar 已提交
357 358 359 360 361 362 363 364 365 366

	.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,

367 368
	.trampoline_phys_low		= DEFAULT_TRAMPOLINE_PHYS_LOW,
	.trampoline_phys_high		= DEFAULT_TRAMPOLINE_PHYS_HIGH,
I
Ingo Molnar 已提交
369 370
	.wait_for_init_deassert		= NULL,
	.smp_callin_clear_local_apic	= NULL,
371
	.inquire_remote_apic		= default_inquire_remote_apic,
Y
Yinghai Lu 已提交
372 373 374 375 376 377 378

	.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,
379
};