apic_flat_64.c 7.2 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
#include <linux/threads.h>
#include <linux/cpumask.h>
#include <linux/string.h>
#include <linux/kernel.h>
#include <linux/ctype.h>
17
#include <linux/hardirq.h>
18
#include <linux/export.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
#include <linux/acpi.h>
24

25 26 27
static struct apic apic_physflat;
static struct apic apic_flat;

28
struct apic *apic __ro_after_init = &apic_flat;
29 30
EXPORT_SYMBOL_GPL(apic);

31
static int flat_acpi_madt_oem_check(char *oem_id, char *oem_table_id)
32 33 34 35
{
	return 1;
}

L
Linus Torvalds 已提交
36 37 38 39 40 41 42
/*
 * 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...
 */
43
void flat_init_apic_ldr(void)
L
Linus Torvalds 已提交
44 45 46 47 48 49
{
	unsigned long val;
	unsigned long num, id;

	num = smp_processor_id();
	id = 1UL << num;
50
	apic_write(APIC_DFR, APIC_DFR_FLAT);
L
Linus Torvalds 已提交
51 52
	val = apic_read(APIC_LDR) & ~APIC_LDR_MASK;
	val |= SET_APIC_LOGICAL_ID(id);
53
	apic_write(APIC_LDR, val);
L
Linus Torvalds 已提交
54 55
}

56
static void _flat_send_IPI_mask(unsigned long mask, int vector)
L
Linus Torvalds 已提交
57 58 59
{
	unsigned long flags;

60
	local_irq_save(flags);
61
	__default_send_IPI_dest_field(mask, vector, apic->dest_logical);
L
Linus Torvalds 已提交
62 63 64
	local_irq_restore(flags);
}

65
static void flat_send_IPI_mask(const struct cpumask *cpumask, int vector)
66
{
67
	unsigned long mask = cpumask_bits(cpumask)[0];
68 69 70 71

	_flat_send_IPI_mask(mask, vector);
}

72
static void
73
flat_send_IPI_mask_allbutself(const struct cpumask *cpumask, int vector)
74
{
75
	unsigned long mask = cpumask_bits(cpumask)[0];
76 77 78 79
	int cpu = smp_processor_id();

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

81 82 83
	_flat_send_IPI_mask(mask, vector);
}

84 85
static void flat_send_IPI_allbutself(int vector)
{
86
	int cpu = smp_processor_id();
87 88
#ifdef	CONFIG_HOTPLUG_CPU
	int hotplug = 1;
89
#else
90 91 92
	int hotplug = 0;
#endif
	if (hotplug || vector == NMI_VECTOR) {
93 94
		if (!cpumask_equal(cpu_online_mask, cpumask_of(cpu))) {
			unsigned long mask = cpumask_bits(cpu_online_mask)[0];
95

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

99 100
			_flat_send_IPI_mask(mask, vector);
		}
101
	} else if (num_online_cpus() > 1) {
102 103
		__default_send_IPI_shortcut(APIC_DEST_ALLBUT,
					    vector, apic->dest_logical);
104
	}
105 106 107 108
}

static void flat_send_IPI_all(int vector)
{
109
	if (vector == NMI_VECTOR) {
110
		flat_send_IPI_mask(cpu_online_mask, vector);
111 112 113 114
	} else {
		__default_send_IPI_shortcut(APIC_DEST_ALLINC,
					    vector, apic->dest_logical);
	}
115 116
}

117
static unsigned int flat_get_apic_id(unsigned long x)
Y
Yinghai Lu 已提交
118
{
119
	return (x >> 24) & 0xFF;
Y
Yinghai Lu 已提交
120 121
}

122
static u32 set_apic_id(unsigned int id)
Y
Yinghai Lu 已提交
123
{
124
	return (id & 0xFF) << 24;
Y
Yinghai Lu 已提交
125 126
}

127 128
static unsigned int read_xapic_id(void)
{
129
	return flat_get_apic_id(apic_read(APIC_ID));
130 131
}

L
Linus Torvalds 已提交
132 133
static int flat_apic_id_registered(void)
{
134
	return physid_isset(read_xapic_id(), phys_cpu_present_map);
L
Linus Torvalds 已提交
135 136
}

I
Ingo Molnar 已提交
137
static int flat_phys_pkg_id(int initial_apic_id, int index_msb)
L
Linus Torvalds 已提交
138
{
139
	return initial_apic_id >> index_msb;
L
Linus Torvalds 已提交
140 141
}

Y
Yinghai Lu 已提交
142 143 144 145 146
static int flat_probe(void)
{
	return 1;
}

147
static struct apic apic_flat __ro_after_init = {
I
Ingo Molnar 已提交
148
	.name				= "flat",
Y
Yinghai Lu 已提交
149
	.probe				= flat_probe,
I
Ingo Molnar 已提交
150
	.acpi_madt_oem_check		= flat_acpi_madt_oem_check,
151
	.apic_id_valid			= default_apic_id_valid,
I
Ingo Molnar 已提交
152 153
	.apic_id_registered		= flat_apic_id_registered,

154
	.irq_delivery_mode		= dest_Fixed,
155
	.irq_dest_mode			= 1, /* logical */
I
Ingo Molnar 已提交
156

157
	.disable_esr			= 0,
158
	.dest_logical			= APIC_DEST_LOGICAL,
I
Ingo Molnar 已提交
159 160 161 162 163 164
	.check_apicid_used		= NULL,

	.init_apic_ldr			= flat_init_apic_ldr,

	.ioapic_phys_id_map		= NULL,
	.setup_apic_routing		= NULL,
165
	.cpu_present_to_apicid		= default_cpu_present_to_apicid,
I
Ingo Molnar 已提交
166
	.apicid_to_cpu_present		= NULL,
167
	.check_phys_apicid_present	= default_check_phys_apicid_present,
I
Ingo Molnar 已提交
168
	.phys_pkg_id			= flat_phys_pkg_id,
I
Ingo Molnar 已提交
169

170
	.get_apic_id			= flat_get_apic_id,
I
Ingo Molnar 已提交
171 172
	.set_apic_id			= set_apic_id,

173
	.calc_dest_apicid		= apic_flat_calc_apicid,
I
Ingo Molnar 已提交
174

175
	.send_IPI			= default_send_IPI_single,
I
Ingo Molnar 已提交
176 177 178 179 180 181
	.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,

182
	.inquire_remote_apic		= default_inquire_remote_apic,
Y
Yinghai Lu 已提交
183 184 185

	.read				= native_apic_mem_read,
	.write				= native_apic_mem_write,
186
	.eoi_write			= native_apic_mem_write,
Y
Yinghai Lu 已提交
187 188 189 190
	.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 已提交
191
};
192 193

/*
194
 * Physflat mode is used when there are more than 8 CPUs on a system.
195 196 197
 * We cannot use logical delivery in this case because the mask
 * overflows, so use physical mode.
 */
198
static int physflat_acpi_madt_oem_check(char *oem_id, char *oem_table_id)
199 200 201 202 203 204 205
{
#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).
	 */
206
	if (acpi_gbl_FADT.header.revision >= FADT2_REVISION_ID &&
207 208
		(acpi_gbl_FADT.flags & ACPI_FADT_APIC_PHYSICAL)) {
		printk(KERN_DEBUG "system APIC only can use physical flat");
209
		return 1;
210
	}
211 212 213 214 215

	if (!strncmp(oem_id, "IBM", 3) && !strncmp(oem_table_id, "EXA", 3)) {
		printk(KERN_DEBUG "IBM Summit detected, will use apic physical");
		return 1;
	}
216 217 218 219
#endif

	return 0;
}
220

221 222
static void physflat_send_IPI_allbutself(int vector)
{
223
	default_send_IPI_mask_allbutself_phys(cpu_online_mask, vector);
224 225 226 227
}

static void physflat_send_IPI_all(int vector)
{
228
	default_send_IPI_mask_sequence_phys(cpu_online_mask, vector);
229 230
}

231 232 233 234 235 236 237 238
static int physflat_probe(void)
{
	if (apic == &apic_physflat || num_possible_cpus() > 8)
		return 1;

	return 0;
}

239
static struct apic apic_physflat __ro_after_init = {
I
Ingo Molnar 已提交
240 241

	.name				= "physical flat",
242
	.probe				= physflat_probe,
I
Ingo Molnar 已提交
243
	.acpi_madt_oem_check		= physflat_acpi_madt_oem_check,
244
	.apic_id_valid			= default_apic_id_valid,
I
Ingo Molnar 已提交
245 246
	.apic_id_registered		= flat_apic_id_registered,

247
	.irq_delivery_mode		= dest_Fixed,
248
	.irq_dest_mode			= 0, /* physical */
I
Ingo Molnar 已提交
249

250
	.disable_esr			= 0,
251
	.dest_logical			= 0,
I
Ingo Molnar 已提交
252 253 254 255 256 257 258
	.check_apicid_used		= NULL,

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

	.ioapic_phys_id_map		= NULL,
	.setup_apic_routing		= NULL,
259
	.cpu_present_to_apicid		= default_cpu_present_to_apicid,
I
Ingo Molnar 已提交
260
	.apicid_to_cpu_present		= NULL,
261
	.check_phys_apicid_present	= default_check_phys_apicid_present,
I
Ingo Molnar 已提交
262
	.phys_pkg_id			= flat_phys_pkg_id,
I
Ingo Molnar 已提交
263

264
	.get_apic_id			= flat_get_apic_id,
I
Ingo Molnar 已提交
265 266
	.set_apic_id			= set_apic_id,

267
	.calc_dest_apicid		= apic_default_calc_apicid,
I
Ingo Molnar 已提交
268

269
	.send_IPI			= default_send_IPI_single_phys,
270 271
	.send_IPI_mask			= default_send_IPI_mask_sequence_phys,
	.send_IPI_mask_allbutself	= default_send_IPI_mask_allbutself_phys,
I
Ingo Molnar 已提交
272 273 274 275
	.send_IPI_allbutself		= physflat_send_IPI_allbutself,
	.send_IPI_all			= physflat_send_IPI_all,
	.send_IPI_self			= apic_send_IPI_self,

276
	.inquire_remote_apic		= default_inquire_remote_apic,
Y
Yinghai Lu 已提交
277 278 279

	.read				= native_apic_mem_read,
	.write				= native_apic_mem_write,
280
	.eoi_write			= native_apic_mem_write,
Y
Yinghai Lu 已提交
281 282 283 284
	.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,
285
};
286 287 288 289 290

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