genapic_flat_64.c 9.4 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 20
#include <asm/smp.h>
#include <asm/ipi.h>
21
#include <asm/genapic.h>
22
#include <mach_apicdef.h>
L
Linus Torvalds 已提交
23

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

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

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

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

L
Linus Torvalds 已提交
52 53 54 55 56 57 58 59 60 61 62 63 64 65
/*
 * 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;
66
	apic_write(APIC_DFR, APIC_DFR_FLAT);
L
Linus Torvalds 已提交
67 68
	val = apic_read(APIC_LDR) & ~APIC_LDR_MASK;
	val |= SET_APIC_LOGICAL_ID(id);
69
	apic_write(APIC_LDR, val);
L
Linus Torvalds 已提交
70 71
}

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

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

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

	_flat_send_IPI_mask(mask, vector);
}

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

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

97 98 99
	_flat_send_IPI_mask(mask, vector);
}

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

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

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

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

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

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

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

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

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

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

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

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

163
static unsigned int flat_cpu_mask_to_apicid(const struct cpumask *cpumask)
L
Linus Torvalds 已提交
164
{
165
	return cpumask_bits(cpumask)[0] & APIC_ALL_CPUS;
L
Linus Torvalds 已提交
166 167
}

168 169
static unsigned int flat_cpu_mask_to_apicid_and(const struct cpumask *cpumask,
						const struct cpumask *andmask)
M
Mike Travis 已提交
170
{
171 172
	unsigned long mask1 = cpumask_bits(cpumask)[0] & APIC_ALL_CPUS;
	unsigned long mask2 = cpumask_bits(andmask)[0] & APIC_ALL_CPUS;
M
Mike Travis 已提交
173

174
	return mask1 & mask2;
M
Mike Travis 已提交
175 176
}

I
Ingo Molnar 已提交
177
static int flat_phys_pkg_id(int initial_apic_id, int index_msb)
L
Linus Torvalds 已提交
178
{
179
	return hard_smp_processor_id() >> index_msb;
L
Linus Torvalds 已提交
180 181 182
}

struct genapic apic_flat =  {
I
Ingo Molnar 已提交
183 184 185 186 187
	.name				= "flat",
	.probe				= NULL,
	.acpi_madt_oem_check		= flat_acpi_madt_oem_check,
	.apic_id_registered		= flat_apic_id_registered,

188
	.irq_delivery_mode		= dest_LowestPrio,
189
	.irq_dest_mode			= 1, /* logical */
I
Ingo Molnar 已提交
190 191

	.target_cpus			= flat_target_cpus,
192
	.disable_esr			= 0,
193
	.dest_logical			= APIC_DEST_LOGICAL,
I
Ingo Molnar 已提交
194 195 196 197 198 199 200 201 202 203 204
	.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,
205
	.cpu_present_to_apicid		= default_cpu_present_to_apicid,
I
Ingo Molnar 已提交
206 207
	.apicid_to_cpu_present		= NULL,
	.setup_portio_remap		= NULL,
208
	.check_phys_apicid_present	= default_check_phys_apicid_present,
I
Ingo Molnar 已提交
209
	.enable_apic_mode		= NULL,
I
Ingo Molnar 已提交
210
	.phys_pkg_id			= flat_phys_pkg_id,
I
Ingo Molnar 已提交
211 212
	.mps_oem_check			= NULL,

213
	.get_apic_id			= flat_get_apic_id,
I
Ingo Molnar 已提交
214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233
	.set_apic_id			= set_apic_id,
	.apic_id_mask			= 0xFFu << 24,

	.cpu_mask_to_apicid		= flat_cpu_mask_to_apicid,
	.cpu_mask_to_apicid_and		= flat_cpu_mask_to_apicid_and,

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

	.wakeup_cpu			= NULL,
	.trampoline_phys_low		= 0,
	.trampoline_phys_high		= 0,
	.wait_for_init_deassert		= NULL,
	.smp_callin_clear_local_apic	= NULL,
	.store_NMI_vector		= NULL,
	.restore_NMI_vector		= NULL,
	.inquire_remote_apic		= NULL,
L
Linus Torvalds 已提交
234
};
235 236 237 238 239 240

/*
 * 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.
 */
241
static int physflat_acpi_madt_oem_check(char *oem_id, char *oem_table_id)
242 243 244 245 246 247 248 249
{
#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 &&
250 251
		(acpi_gbl_FADT.flags & ACPI_FADT_APIC_PHYSICAL)) {
		printk(KERN_DEBUG "system APIC only can use physical flat");
252
		return 1;
253
	}
254 255 256 257
#endif

	return 0;
}
258

259
static const struct cpumask *physflat_target_cpus(void)
260
{
261
	return cpu_online_mask;
262 263
}

264
static void physflat_vector_allocation_domain(int cpu, struct cpumask *retmask)
265
{
266 267
	cpumask_clear(retmask);
	cpumask_set_cpu(cpu, retmask);
268 269
}

270
static void physflat_send_IPI_mask(const struct cpumask *cpumask, int vector)
271
{
272
	default_send_IPI_mask_sequence(cpumask, vector);
273 274
}

275
static void physflat_send_IPI_mask_allbutself(const struct cpumask *cpumask,
276
					      int vector)
277
{
278
	default_send_IPI_mask_allbutself(cpumask, vector);
279
}
280

281 282
static void physflat_send_IPI_allbutself(int vector)
{
283
	default_send_IPI_mask_allbutself(cpu_online_mask, vector);
284 285 286 287
}

static void physflat_send_IPI_all(int vector)
{
288
	physflat_send_IPI_mask(cpu_online_mask, vector);
289 290
}

291
static unsigned int physflat_cpu_mask_to_apicid(const struct cpumask *cpumask)
292 293 294 295 296 297 298
{
	int cpu;

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

306 307 308
static unsigned int
physflat_cpu_mask_to_apicid_and(const struct cpumask *cpumask,
				const struct cpumask *andmask)
M
Mike Travis 已提交
309 310 311 312 313 314 315
{
	int cpu;

	/*
	 * We're using fixed IRQ delivery, can only return one phys APIC ID.
	 * May as well be the first.
	 */
316
	for_each_cpu_and(cpu, cpumask, andmask) {
317 318
		if (cpumask_test_cpu(cpu, cpu_online_mask))
			break;
319
	}
320 321
	if (cpu < nr_cpu_ids)
		return per_cpu(x86_cpu_to_apicid, cpu);
322

M
Mike Travis 已提交
323 324 325
	return BAD_APICID;
}

326
struct genapic apic_physflat =  {
I
Ingo Molnar 已提交
327 328 329 330 331 332

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

333
	.irq_delivery_mode		= dest_Fixed,
334
	.irq_dest_mode			= 0, /* physical */
I
Ingo Molnar 已提交
335 336

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

359
	.get_apic_id			= flat_get_apic_id,
I
Ingo Molnar 已提交
360
	.set_apic_id			= set_apic_id,
361
	.apic_id_mask			= 0xFFu << 24,
I
Ingo Molnar 已提交
362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379

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

	.wakeup_cpu			= NULL,
	.trampoline_phys_low		= 0,
	.trampoline_phys_high		= 0,
	.wait_for_init_deassert		= NULL,
	.smp_callin_clear_local_apic	= NULL,
	.store_NMI_vector		= NULL,
	.restore_NMI_vector		= NULL,
	.inquire_remote_apic		= NULL,
380
};