apic_flat_64.c 9.5 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 hard_smp_processor_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 188 189
	.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,
	.apicid_to_node			= NULL,
	.cpu_to_logical_apicid		= NULL,
190
	.cpu_present_to_apicid		= default_cpu_present_to_apicid,
I
Ingo Molnar 已提交
191 192
	.apicid_to_cpu_present		= NULL,
	.setup_portio_remap		= NULL,
193
	.check_phys_apicid_present	= default_check_phys_apicid_present,
I
Ingo Molnar 已提交
194
	.enable_apic_mode		= NULL,
I
Ingo Molnar 已提交
195
	.phys_pkg_id			= flat_phys_pkg_id,
I
Ingo Molnar 已提交
196 197
	.mps_oem_check			= NULL,

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

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

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

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

	.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 已提交
223
};
224 225 226 227 228 229

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

	return 0;
}
247

248
static const struct cpumask *physflat_target_cpus(void)
249
{
250
	return cpu_online_mask;
251 252
}

253
static void physflat_vector_allocation_domain(int cpu, struct cpumask *retmask)
254
{
255 256
	cpumask_clear(retmask);
	cpumask_set_cpu(cpu, retmask);
257 258
}

259
static void physflat_send_IPI_mask(const struct cpumask *cpumask, int vector)
260
{
261
	default_send_IPI_mask_sequence_phys(cpumask, vector);
262 263
}

264
static void physflat_send_IPI_mask_allbutself(const struct cpumask *cpumask,
265
					      int vector)
266
{
267
	default_send_IPI_mask_allbutself_phys(cpumask, vector);
268
}
269

270 271
static void physflat_send_IPI_allbutself(int vector)
{
272
	default_send_IPI_mask_allbutself_phys(cpu_online_mask, vector);
273 274 275 276
}

static void physflat_send_IPI_all(int vector)
{
277
	physflat_send_IPI_mask(cpu_online_mask, vector);
278 279
}

280
static unsigned int physflat_cpu_mask_to_apicid(const struct cpumask *cpumask)
281 282 283 284 285 286 287
{
	int cpu;

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

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

	/*
	 * We're using fixed IRQ delivery, can only return one phys APIC ID.
	 * May as well be the first.
	 */
305
	for_each_cpu_and(cpu, cpumask, andmask) {
306 307
		if (cpumask_test_cpu(cpu, cpu_online_mask))
			break;
308
	}
309 310
	if (cpu < nr_cpu_ids)
		return per_cpu(x86_cpu_to_apicid, cpu);
311

M
Mike Travis 已提交
312 313 314
	return BAD_APICID;
}

315
struct apic apic_physflat =  {
I
Ingo Molnar 已提交
316 317 318 319 320 321

	.name				= "physical flat",
	.probe				= NULL,
	.acpi_madt_oem_check		= physflat_acpi_madt_oem_check,
	.apic_id_registered		= flat_apic_id_registered,

322
	.irq_delivery_mode		= dest_Fixed,
323
	.irq_dest_mode			= 0, /* physical */
I
Ingo Molnar 已提交
324 325

	.target_cpus			= physflat_target_cpus,
326
	.disable_esr			= 0,
327
	.dest_logical			= 0,
I
Ingo Molnar 已提交
328 329 330 331 332 333 334 335 336 337 338 339
	.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,
	.apicid_to_node			= NULL,
	.cpu_to_logical_apicid		= NULL,
340
	.cpu_present_to_apicid		= default_cpu_present_to_apicid,
I
Ingo Molnar 已提交
341 342
	.apicid_to_cpu_present		= NULL,
	.setup_portio_remap		= NULL,
343
	.check_phys_apicid_present	= default_check_phys_apicid_present,
I
Ingo Molnar 已提交
344
	.enable_apic_mode		= NULL,
I
Ingo Molnar 已提交
345
	.phys_pkg_id			= flat_phys_pkg_id,
I
Ingo Molnar 已提交
346 347
	.mps_oem_check			= NULL,

348
	.get_apic_id			= flat_get_apic_id,
I
Ingo Molnar 已提交
349
	.set_apic_id			= set_apic_id,
350
	.apic_id_mask			= 0xFFu << 24,
I
Ingo Molnar 已提交
351 352 353 354 355 356 357 358 359 360

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

361 362
	.trampoline_phys_low		= DEFAULT_TRAMPOLINE_PHYS_LOW,
	.trampoline_phys_high		= DEFAULT_TRAMPOLINE_PHYS_HIGH,
I
Ingo Molnar 已提交
363 364
	.wait_for_init_deassert		= NULL,
	.smp_callin_clear_local_apic	= NULL,
365
	.inquire_remote_apic		= default_inquire_remote_apic,
Y
Yinghai Lu 已提交
366 367 368 369 370 371 372

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