mpparse.c 21.0 KB
Newer Older
L
Linus Torvalds 已提交
1
/*
2
 *	Intel Multiprocessor Specification 1.1 and 1.4
L
Linus Torvalds 已提交
3 4
 *	compliant MP-table parsing routines.
 *
5
 *	(c) 1995 Alan Cox, Building #3 <alan@lxorguk.ukuu.org.uk>
I
Ingo Molnar 已提交
6
 *	(c) 1998, 1999, 2000, 2009 Ingo Molnar <mingo@redhat.com>
7
 *      (c) 2008 Alexey Starikovskiy <astarikovskiy@suse.de>
L
Linus Torvalds 已提交
8 9 10 11 12 13
 */

#include <linux/mm.h>
#include <linux/init.h>
#include <linux/delay.h>
#include <linux/bootmem.h>
14
#include <linux/memblock.h>
L
Linus Torvalds 已提交
15 16 17
#include <linux/kernel_stat.h>
#include <linux/mc146818rtc.h>
#include <linux/bitops.h>
18 19
#include <linux/acpi.h>
#include <linux/module.h>
20
#include <linux/smp.h>
21
#include <linux/pci.h>
L
Linus Torvalds 已提交
22 23 24

#include <asm/mtrr.h>
#include <asm/mpspec.h>
25
#include <asm/pgalloc.h>
L
Linus Torvalds 已提交
26
#include <asm/io_apic.h>
27
#include <asm/proto.h>
28
#include <asm/bios_ebda.h>
Y
Yinghai Lu 已提交
29
#include <asm/e820.h>
Y
Yinghai Lu 已提交
30
#include <asm/setup.h>
31
#include <asm/smp.h>
L
Linus Torvalds 已提交
32

I
Ingo Molnar 已提交
33
#include <asm/apic.h>
L
Linus Torvalds 已提交
34 35 36 37 38 39 40 41 42 43 44 45 46 47
/*
 * Checksum an MP configuration block.
 */

static int __init mpf_checksum(unsigned char *mp, int len)
{
	int sum = 0;

	while (len--)
		sum += *mp++;

	return sum & 0xFF;
}

48 49 50 51 52
int __init default_mpc_apic_id(struct mpc_cpu *m)
{
	return m->apicid;
}

53
static void __init MP_processor_info(struct mpc_cpu *m)
54 55
{
	int apicid;
56
	char *bootup_cpu = "";
57

58
	if (!(m->cpuflag & CPU_ENABLED)) {
G
Glauber Costa 已提交
59
		disabled_cpus++;
L
Linus Torvalds 已提交
60
		return;
G
Glauber Costa 已提交
61
	}
62

63
	apicid = x86_init.mpparse.mpc_apic_id(m);
64

65
	if (m->cpuflag & CPU_BOOTPROCESSOR) {
66
		bootup_cpu = " (Bootup-CPU)";
67
		boot_cpu_physical_apicid = m->apicid;
L
Linus Torvalds 已提交
68 69
	}

70
	pr_info("Processor #%d%s\n", m->apicid, bootup_cpu);
71
	generic_processor_info(apicid, m->apicver);
L
Linus Torvalds 已提交
72 73
}

T
Thomas Gleixner 已提交
74
#ifdef CONFIG_X86_IO_APIC
75
void __init default_mpc_oem_bus_info(struct mpc_bus *m, char *str)
L
Linus Torvalds 已提交
76
{
77
	memcpy(str, m->bustype, 6);
L
Linus Torvalds 已提交
78
	str[6] = 0;
79 80
	apic_printk(APIC_VERBOSE, "Bus #%d is %s\n", m->busid, str);
}
L
Linus Torvalds 已提交
81

82 83 84
static void __init MP_bus_info(struct mpc_bus *m)
{
	char str[7];
L
Linus Torvalds 已提交
85

86
	x86_init.mpparse.mpc_oem_bus_info(m, str);
L
Linus Torvalds 已提交
87

88
#if MAX_MP_BUSSES < 256
89
	if (m->busid >= MAX_MP_BUSSES) {
90 91
		pr_warn("MP table busid value (%d) for bustype %s is too large, max. supported is %d\n",
			m->busid, str, MAX_MP_BUSSES - 1);
92 93
		return;
	}
94
#endif
95

96
	set_bit(m->busid, mp_bus_not_pci);
A
Alexey Starikovskiy 已提交
97
	if (strncmp(str, BUSTYPE_ISA, sizeof(BUSTYPE_ISA) - 1) == 0) {
98
#ifdef CONFIG_EISA
99
		mp_bus_id_to_type[m->busid] = MP_BUS_ISA;
A
Alexey Starikovskiy 已提交
100 101
#endif
	} else if (strncmp(str, BUSTYPE_PCI, sizeof(BUSTYPE_PCI) - 1) == 0) {
102 103
		if (x86_init.mpparse.mpc_oem_pci_bus)
			x86_init.mpparse.mpc_oem_pci_bus(m);
104

105
		clear_bit(m->busid, mp_bus_not_pci);
106
#ifdef CONFIG_EISA
107
		mp_bus_id_to_type[m->busid] = MP_BUS_PCI;
A
Alexey Starikovskiy 已提交
108
	} else if (strncmp(str, BUSTYPE_EISA, sizeof(BUSTYPE_EISA) - 1) == 0) {
109
		mp_bus_id_to_type[m->busid] = MP_BUS_EISA;
110
#endif
A
Alexey Starikovskiy 已提交
111
	} else
112
		pr_warn("Unknown bustype %s - ignoring\n", str);
L
Linus Torvalds 已提交
113
}
114

115
static void __init MP_ioapic_info(struct mpc_ioapic *m)
L
Linus Torvalds 已提交
116
{
117
	if (m->flags & MPC_APIC_USABLE)
118
		mp_register_ioapic(m->apicid, m->apicaddr, gsi_top, NULL);
Y
Yinghai Lu 已提交
119 120
}

121
static void __init print_mp_irq_info(struct mpc_intsrc *mp_irq)
Y
Yinghai Lu 已提交
122
{
123 124
	apic_printk(APIC_VERBOSE,
		"Int: type %d, pol %d, trig %d, bus %02x, IRQ %02x, APIC ID %x, APIC INT %02x\n",
125 126 127
		mp_irq->irqtype, mp_irq->irqflag & 3,
		(mp_irq->irqflag >> 2) & 3, mp_irq->srcbus,
		mp_irq->srcbusirq, mp_irq->dstapic, mp_irq->dstirq);
Y
Yinghai Lu 已提交
128 129
}

130 131 132 133
#else /* CONFIG_X86_IO_APIC */
static inline void __init MP_bus_info(struct mpc_bus *m) {}
static inline void __init MP_ioapic_info(struct mpc_ioapic *m) {}
#endif /* CONFIG_X86_IO_APIC */
L
Linus Torvalds 已提交
134

135
static void __init MP_lintsrc_info(struct mpc_lintsrc *m)
L
Linus Torvalds 已提交
136
{
137 138
	apic_printk(APIC_VERBOSE,
		"Lint: type %d, pol %d, trig %d, bus %02x, IRQ %02x, APIC ID %x, APIC LINT %02x\n",
139 140
		m->irqtype, m->irqflag & 3, (m->irqflag >> 2) & 3, m->srcbusid,
		m->srcbusirq, m->destapic, m->destapiclint);
L
Linus Torvalds 已提交
141 142 143 144 145
}

/*
 * Read/parse the MPC
 */
146
static int __init smp_check_mpc(struct mpc_table *mpc, char *oem, char *str)
L
Linus Torvalds 已提交
147 148
{

149
	if (memcmp(mpc->signature, MPC_SIGNATURE, 4)) {
150
		pr_err("MPTABLE: bad signature [%c%c%c%c]!\n",
151 152
		       mpc->signature[0], mpc->signature[1],
		       mpc->signature[2], mpc->signature[3]);
L
Linus Torvalds 已提交
153 154
		return 0;
	}
155
	if (mpf_checksum((unsigned char *)mpc, mpc->length)) {
156
		pr_err("MPTABLE: checksum error!\n");
L
Linus Torvalds 已提交
157 158
		return 0;
	}
159
	if (mpc->spec != 0x01 && mpc->spec != 0x04) {
160
		pr_err("MPTABLE: bad table version (%d)!!\n", mpc->spec);
L
Linus Torvalds 已提交
161 162
		return 0;
	}
163
	if (!mpc->lapic) {
164
		pr_err("MPTABLE: null local APIC address!\n");
L
Linus Torvalds 已提交
165 166
		return 0;
	}
167
	memcpy(oem, mpc->oem, 8);
A
Alexey Starikovskiy 已提交
168
	oem[8] = 0;
169
	pr_info("MPTABLE: OEM ID: %s\n", oem);
L
Linus Torvalds 已提交
170

171
	memcpy(str, mpc->productid, 12);
A
Alexey Starikovskiy 已提交
172
	str[12] = 0;
L
Linus Torvalds 已提交
173

174
	pr_info("MPTABLE: Product ID: %s\n", str);
L
Linus Torvalds 已提交
175

176
	pr_info("MPTABLE: APIC at: 0x%X\n", mpc->lapic);
L
Linus Torvalds 已提交
177

Y
Yinghai Lu 已提交
178 179 180
	return 1;
}

181 182 183 184 185 186
static void skip_entry(unsigned char **ptr, int *count, int size)
{
	*ptr += size;
	*count += size;
}

187 188
static void __init smp_dump_mptable(struct mpc_table *mpc, unsigned char *mpt)
{
189 190
	pr_err("Your mptable is wrong, contact your HW vendor!\n");
	pr_cont("type %x\n", *mpt);
191 192 193 194
	print_hex_dump(KERN_ERR, "  ", DUMP_PREFIX_ADDRESS, 16,
			1, mpc, mpc->length, 1);
}

195 196
void __init default_smp_read_mpc_oem(struct mpc_table *mpc) { }

197
static int __init smp_read_mpc(struct mpc_table *mpc, unsigned early)
Y
Yinghai Lu 已提交
198 199 200 201 202 203 204 205 206 207 208
{
	char str[16];
	char oem[10];

	int count = sizeof(*mpc);
	unsigned char *mpt = ((unsigned char *)mpc) + count;

	if (!smp_check_mpc(mpc, oem, str))
		return 0;

#ifdef CONFIG_X86_32
209
	generic_mps_oem_check(mpc, oem, str);
Y
Yinghai Lu 已提交
210
#endif
211
	/* Initialize the lapic mapping */
L
Linus Torvalds 已提交
212
	if (!acpi_lapic)
213
		register_lapic_address(mpc->lapic);
L
Linus Torvalds 已提交
214

215 216 217
	if (early)
		return 1;

218 219
	if (mpc->oemptr)
		x86_init.mpparse.smp_read_mpc_oem(mpc);
220

L
Linus Torvalds 已提交
221
	/*
A
Alexey Starikovskiy 已提交
222
	 *      Now process the configuration blocks.
L
Linus Torvalds 已提交
223
	 */
224
	x86_init.mpparse.mpc_record(0);
225

226
	while (count < mpc->length) {
A
Alexey Starikovskiy 已提交
227 228
		switch (*mpt) {
		case MP_PROCESSOR:
229 230
			/* ACPI may have already provided this data */
			if (!acpi_lapic)
231
				MP_processor_info((struct mpc_cpu *)mpt);
232 233
			skip_entry(&mpt, &count, sizeof(struct mpc_cpu));
			break;
A
Alexey Starikovskiy 已提交
234
		case MP_BUS:
235
			MP_bus_info((struct mpc_bus *)mpt);
236 237
			skip_entry(&mpt, &count, sizeof(struct mpc_bus));
			break;
A
Alexey Starikovskiy 已提交
238
		case MP_IOAPIC:
239
			MP_ioapic_info((struct mpc_ioapic *)mpt);
240 241
			skip_entry(&mpt, &count, sizeof(struct mpc_ioapic));
			break;
A
Alexey Starikovskiy 已提交
242
		case MP_INTSRC:
243
			mp_save_irq((struct mpc_intsrc *)mpt);
244 245
			skip_entry(&mpt, &count, sizeof(struct mpc_intsrc));
			break;
A
Alexey Starikovskiy 已提交
246
		case MP_LINTSRC:
247
			MP_lintsrc_info((struct mpc_lintsrc *)mpt);
248 249
			skip_entry(&mpt, &count, sizeof(struct mpc_lintsrc));
			break;
A
Alexey Starikovskiy 已提交
250
		default:
Y
Yinghai Lu 已提交
251
			/* wrong mptable */
252
			smp_dump_mptable(mpc, mpt);
253
			count = mpc->length;
Y
Yinghai Lu 已提交
254
			break;
L
Linus Torvalds 已提交
255
		}
256
		x86_init.mpparse.mpc_record(1);
L
Linus Torvalds 已提交
257
	}
258

L
Linus Torvalds 已提交
259
	if (!num_processors)
260
		pr_err("MPTABLE: no processors registered!\n");
L
Linus Torvalds 已提交
261 262 263
	return num_processors;
}

264 265
#ifdef CONFIG_X86_IO_APIC

L
Linus Torvalds 已提交
266 267 268 269 270 271 272 273 274 275
static int __init ELCR_trigger(unsigned int irq)
{
	unsigned int port;

	port = 0x4d0 + (irq >> 3);
	return (inb(port) >> (irq & 7)) & 1;
}

static void __init construct_default_ioirq_mptable(int mpc_default_type)
{
276
	struct mpc_intsrc intsrc;
L
Linus Torvalds 已提交
277 278 279
	int i;
	int ELCR_fallback = 0;

280 281 282
	intsrc.type = MP_INTSRC;
	intsrc.irqflag = 0;	/* conforming */
	intsrc.srcbus = 0;
283
	intsrc.dstapic = mpc_ioapic_id(0);
L
Linus Torvalds 已提交
284

285
	intsrc.irqtype = mp_INT;
L
Linus Torvalds 已提交
286 287 288 289 290 291 292 293 294 295

	/*
	 *  If true, we have an ISA/PCI system with no IRQ entries
	 *  in the MP table. To prevent the PCI interrupts from being set up
	 *  incorrectly, we try to use the ELCR. The sanity check to see if
	 *  there is good ELCR data is very simple - IRQ0, 1, 2 and 13 can
	 *  never be level sensitive, so we simply see if the ELCR agrees.
	 *  If it does, we assume it's valid.
	 */
	if (mpc_default_type == 5) {
296
		pr_info("ISA/PCI bus type with no IRQ information... falling back to ELCR\n");
L
Linus Torvalds 已提交
297

298 299
		if (ELCR_trigger(0) || ELCR_trigger(1) || ELCR_trigger(2) ||
		    ELCR_trigger(13))
300
			pr_err("ELCR contains invalid data... not using ELCR\n");
L
Linus Torvalds 已提交
301
		else {
302
			pr_info("Using ELCR to identify PCI interrupts\n");
L
Linus Torvalds 已提交
303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324
			ELCR_fallback = 1;
		}
	}

	for (i = 0; i < 16; i++) {
		switch (mpc_default_type) {
		case 2:
			if (i == 0 || i == 13)
				continue;	/* IRQ0 & IRQ13 not connected */
			/* fall through */
		default:
			if (i == 2)
				continue;	/* IRQ2 is never connected */
		}

		if (ELCR_fallback) {
			/*
			 *  If the ELCR indicates a level-sensitive interrupt, we
			 *  copy that information over to the MP table in the
			 *  irqflag field (level sensitive, active high polarity).
			 */
			if (ELCR_trigger(i))
325
				intsrc.irqflag = 13;
L
Linus Torvalds 已提交
326
			else
327
				intsrc.irqflag = 0;
L
Linus Torvalds 已提交
328 329
		}

330 331
		intsrc.srcbusirq = i;
		intsrc.dstirq = i ? i : 2;	/* IRQ0 to INTIN2 */
332
		mp_save_irq(&intsrc);
L
Linus Torvalds 已提交
333 334
	}

335 336 337
	intsrc.irqtype = mp_ExtINT;
	intsrc.srcbusirq = 0;
	intsrc.dstirq = 0;	/* 8259A to INTIN0 */
338
	mp_save_irq(&intsrc);
L
Linus Torvalds 已提交
339 340
}

341

342
static void __init construct_ioapic_table(int mpc_default_type)
L
Linus Torvalds 已提交
343
{
344
	struct mpc_ioapic ioapic;
345
	struct mpc_bus bus;
L
Linus Torvalds 已提交
346

347 348
	bus.type = MP_BUS;
	bus.busid = 0;
L
Linus Torvalds 已提交
349
	switch (mpc_default_type) {
A
Alexey Starikovskiy 已提交
350
	default:
351
		pr_err("???\nUnknown standard configuration %d\n",
A
Alexey Starikovskiy 已提交
352 353 354 355
		       mpc_default_type);
		/* fall through */
	case 1:
	case 5:
356
		memcpy(bus.bustype, "ISA   ", 6);
A
Alexey Starikovskiy 已提交
357 358 359 360
		break;
	case 2:
	case 6:
	case 3:
361
		memcpy(bus.bustype, "EISA  ", 6);
A
Alexey Starikovskiy 已提交
362
		break;
L
Linus Torvalds 已提交
363 364 365
	}
	MP_bus_info(&bus);
	if (mpc_default_type > 4) {
366 367
		bus.busid = 1;
		memcpy(bus.bustype, "PCI   ", 6);
L
Linus Torvalds 已提交
368 369 370
		MP_bus_info(&bus);
	}

371 372 373 374 375
	ioapic.type	= MP_IOAPIC;
	ioapic.apicid	= 2;
	ioapic.apicver	= mpc_default_type > 4 ? 0x10 : 0x01;
	ioapic.flags	= MPC_APIC_USABLE;
	ioapic.apicaddr	= IO_APIC_DEFAULT_PHYS_BASE;
L
Linus Torvalds 已提交
376 377 378 379 380 381
	MP_ioapic_info(&ioapic);

	/*
	 * We set up most of the low 16 IO-APIC pins according to MPS rules.
	 */
	construct_default_ioirq_mptable(mpc_default_type);
T
Thomas Gleixner 已提交
382 383
}
#else
384
static inline void __init construct_ioapic_table(int mpc_default_type) { }
385
#endif
T
Thomas Gleixner 已提交
386 387 388

static inline void __init construct_default_ISA_mptable(int mpc_default_type)
{
389
	struct mpc_cpu processor;
390
	struct mpc_lintsrc lintsrc;
T
Thomas Gleixner 已提交
391 392 393 394 395 396 397 398 399 400 401
	int linttypes[2] = { mp_ExtINT, mp_NMI };
	int i;

	/*
	 * local APIC has default address
	 */
	mp_lapic_addr = APIC_DEFAULT_PHYS_BASE;

	/*
	 * 2 CPUs, numbered 0 & 1.
	 */
402
	processor.type = MP_PROCESSOR;
T
Thomas Gleixner 已提交
403
	/* Either an integrated APIC or a discrete 82489DX. */
404 405 406
	processor.apicver = mpc_default_type > 4 ? 0x10 : 0x01;
	processor.cpuflag = CPU_ENABLED;
	processor.cpufeature = (boot_cpu_data.x86 << 8) |
T
Thomas Gleixner 已提交
407
	    (boot_cpu_data.x86_model << 4) | boot_cpu_data.x86_mask;
408 409 410
	processor.featureflag = boot_cpu_data.x86_capability[0];
	processor.reserved[0] = 0;
	processor.reserved[1] = 0;
T
Thomas Gleixner 已提交
411
	for (i = 0; i < 2; i++) {
412
		processor.apicid = i;
T
Thomas Gleixner 已提交
413 414 415 416 417
		MP_processor_info(&processor);
	}

	construct_ioapic_table(mpc_default_type);

418 419 420 421 422
	lintsrc.type = MP_LINTSRC;
	lintsrc.irqflag = 0;		/* conforming */
	lintsrc.srcbusid = 0;
	lintsrc.srcbusirq = 0;
	lintsrc.destapic = MP_APIC_ALL;
L
Linus Torvalds 已提交
423
	for (i = 0; i < 2; i++) {
424 425
		lintsrc.irqtype = linttypes[i];
		lintsrc.destapiclint = i;
L
Linus Torvalds 已提交
426 427 428 429
		MP_lintsrc_info(&lintsrc);
	}
}

430
static struct mpf_intel *mpf_found;
L
Linus Torvalds 已提交
431

Y
Yinghai Lu 已提交
432 433 434 435 436 437 438 439 440 441 442 443 444
static unsigned long __init get_mpc_size(unsigned long physptr)
{
	struct mpc_table *mpc;
	unsigned long size;

	mpc = early_ioremap(physptr, PAGE_SIZE);
	size = mpc->length;
	early_iounmap(mpc, PAGE_SIZE);
	apic_printk(APIC_VERBOSE, "  mpc: %lx-%lx\n", physptr, physptr + size);

	return size;
}

445 446 447 448 449 450 451 452 453 454 455 456 457 458 459
static int __init check_physptr(struct mpf_intel *mpf, unsigned int early)
{
	struct mpc_table *mpc;
	unsigned long size;

	size = get_mpc_size(mpf->physptr);
	mpc = early_ioremap(mpf->physptr, size);
	/*
	 * Read the physical hardware table.  Anything here will
	 * override the defaults.
	 */
	if (!smp_read_mpc(mpc, early)) {
#ifdef CONFIG_X86_LOCAL_APIC
		smp_found_config = 0;
#endif
460 461
		pr_err("BIOS bug, MP table errors detected!...\n");
		pr_cont("... disabling SMP support. (tell your hw vendor)\n");
462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478
		early_iounmap(mpc, size);
		return -1;
	}
	early_iounmap(mpc, size);

	if (early)
		return -1;

#ifdef CONFIG_X86_IO_APIC
	/*
	 * If there are no explicit MP IRQ entries, then we are
	 * broken.  We set up most of the low 16 IO-APIC pins to
	 * ISA defaults and hope it will work.
	 */
	if (!mp_irq_entries) {
		struct mpc_bus bus;

479
		pr_err("BIOS bug, no explicit IRQ entries, using default mptable. (tell your hw vendor)\n");
480 481 482 483 484 485 486 487 488 489 490 491 492

		bus.type = MP_BUS;
		bus.busid = 0;
		memcpy(bus.bustype, "ISA   ", 6);
		MP_bus_info(&bus);

		construct_default_ioirq_mptable(0);
	}
#endif

	return 0;
}

L
Linus Torvalds 已提交
493 494 495
/*
 * Scan the memory blocks for an SMP configuration block.
 */
496
void __init default_get_smp_config(unsigned int early)
L
Linus Torvalds 已提交
497
{
498
	struct mpf_intel *mpf = mpf_found;
L
Linus Torvalds 已提交
499

Y
Yinghai Lu 已提交
500 501 502
	if (!mpf)
		return;

503 504
	if (acpi_lapic && early)
		return;
Y
Yinghai Lu 已提交
505

L
Linus Torvalds 已提交
506
	/*
Y
Yinghai Lu 已提交
507 508
	 * MPS doesn't support hyperthreading, aka only have
	 * thread 0 apic id in MPS table
L
Linus Torvalds 已提交
509
	 */
Y
Yinghai Lu 已提交
510
	if (acpi_lapic && acpi_ioapic)
L
Linus Torvalds 已提交
511 512
		return;

513 514
	pr_info("Intel MultiProcessor Specification v1.%d\n",
		mpf->specification);
515
#if defined(CONFIG_X86_LOCAL_APIC) && defined(CONFIG_X86_32)
516
	if (mpf->feature2 & (1 << 7)) {
517
		pr_info("    IMCR and PIC compatibility mode.\n");
L
Linus Torvalds 已提交
518 519
		pic_mode = 1;
	} else {
520
		pr_info("    Virtual Wire compatibility mode.\n");
L
Linus Torvalds 已提交
521 522
		pic_mode = 0;
	}
A
Alexey Starikovskiy 已提交
523
#endif
L
Linus Torvalds 已提交
524 525 526
	/*
	 * Now see if we need to read further.
	 */
527
	if (mpf->feature1 != 0) {
528 529 530 531 532 533 534
		if (early) {
			/*
			 * local APIC has default address
			 */
			mp_lapic_addr = APIC_DEFAULT_PHYS_BASE;
			return;
		}
L
Linus Torvalds 已提交
535

536
		pr_info("Default MP configuration #%d\n", mpf->feature1);
537
		construct_default_ISA_mptable(mpf->feature1);
L
Linus Torvalds 已提交
538

539
	} else if (mpf->physptr) {
540
		if (check_physptr(mpf, early))
L
Linus Torvalds 已提交
541 542 543 544
			return;
	} else
		BUG();

545
	if (!early)
546
		pr_info("Processors: %d\n", num_processors);
L
Linus Torvalds 已提交
547 548 549 550 551
	/*
	 * Only use the first configuration found.
	 */
}

552
static void __init smp_reserve_memory(struct mpf_intel *mpf)
553
{
554
	memblock_reserve(mpf->physptr, get_mpc_size(mpf->physptr));
555 556
}

557
static int __init smp_scan_config(unsigned long base, unsigned long length)
L
Linus Torvalds 已提交
558
{
A
Alexey Starikovskiy 已提交
559
	unsigned int *bp = phys_to_virt(base);
560
	struct mpf_intel *mpf;
561
	unsigned long mem;
L
Linus Torvalds 已提交
562

563 564
	apic_printk(APIC_VERBOSE, "Scan for SMP in [mem %#010lx-%#010lx]\n",
		    base, base + length - 1);
565
	BUILD_BUG_ON(sizeof(*mpf) != 16);
L
Linus Torvalds 已提交
566 567

	while (length > 0) {
568
		mpf = (struct mpf_intel *)bp;
L
Linus Torvalds 已提交
569
		if ((*bp == SMP_MAGIC_IDENT) &&
570
		    (mpf->length == 1) &&
A
Alexey Starikovskiy 已提交
571
		    !mpf_checksum((unsigned char *)bp, 16) &&
572 573
		    ((mpf->specification == 1)
		     || (mpf->specification == 4))) {
A
Alexey Starikovskiy 已提交
574
#ifdef CONFIG_X86_LOCAL_APIC
L
Linus Torvalds 已提交
575
			smp_found_config = 1;
A
Alexey Starikovskiy 已提交
576
#endif
A
Alexey Starikovskiy 已提交
577
			mpf_found = mpf;
578

579 580 581 582
			pr_info("found SMP MP-table at [mem %#010llx-%#010llx] mapped at [%p]\n",
				(unsigned long long) virt_to_phys(mpf),
				(unsigned long long) virt_to_phys(mpf) +
				sizeof(*mpf) - 1, mpf);
583

584
			mem = virt_to_phys(mpf);
585
			memblock_reserve(mem, sizeof(*mpf));
586
			if (mpf->physptr)
587
				smp_reserve_memory(mpf);
L
Linus Torvalds 已提交
588

589
			return 1;
L
Linus Torvalds 已提交
590 591 592 593 594 595 596
		}
		bp += 4;
		length -= 16;
	}
	return 0;
}

597
void __init default_find_smp_config(void)
L
Linus Torvalds 已提交
598 599 600 601 602 603 604 605 606 607 608
{
	unsigned int address;

	/*
	 * FIXME: Linux assumes you have 640K of base ram..
	 * this continues the error...
	 *
	 * 1) Scan the bottom 1K for a signature
	 * 2) Scan the top 1K of base RAM
	 * 3) Scan the 64K of bios
	 */
609 610 611
	if (smp_scan_config(0x0, 0x400) ||
	    smp_scan_config(639 * 0x400, 0x400) ||
	    smp_scan_config(0xF0000, 0x10000))
L
Linus Torvalds 已提交
612 613 614
		return;
	/*
	 * If it is an SMP machine we should know now, unless the
615
	 * configuration is in an EISA bus machine with an
L
Linus Torvalds 已提交
616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631
	 * extended bios data area.
	 *
	 * there is a real-mode segmented pointer pointing to the
	 * 4K EBDA area at 0x40E, calculate and scan it here.
	 *
	 * NOTE! There are Linux loaders that will corrupt the EBDA
	 * area, and as such this kind of SMP config may be less
	 * trustworthy, simply because the SMP table may have been
	 * stomped on during early boot. These loaders are buggy and
	 * should be fixed.
	 *
	 * MP1.4 SPEC states to only scan first 1K of 4K EBDA.
	 */

	address = get_bios_ebda();
	if (address)
632
		smp_scan_config(address, 0x400);
633 634
}

Y
Yinghai Lu 已提交
635 636 637
#ifdef CONFIG_X86_IO_APIC
static u8 __initdata irq_used[MAX_IRQ_SOURCES];

638
static int  __init get_MP_intsrc_index(struct mpc_intsrc *m)
Y
Yinghai Lu 已提交
639 640 641
{
	int i;

642
	if (m->irqtype != mp_INT)
Y
Yinghai Lu 已提交
643 644
		return 0;

645
	if (m->irqflag != 0x0f)
Y
Yinghai Lu 已提交
646 647 648 649 650
		return 0;

	/* not legacy */

	for (i = 0; i < mp_irq_entries; i++) {
651
		if (mp_irqs[i].irqtype != mp_INT)
Y
Yinghai Lu 已提交
652 653
			continue;

654
		if (mp_irqs[i].irqflag != 0x0f)
Y
Yinghai Lu 已提交
655 656
			continue;

657
		if (mp_irqs[i].srcbus != m->srcbus)
Y
Yinghai Lu 已提交
658
			continue;
659
		if (mp_irqs[i].srcbusirq != m->srcbusirq)
Y
Yinghai Lu 已提交
660 661 662 663 664 665 666 667 668 669 670 671 672 673 674
			continue;
		if (irq_used[i]) {
			/* already claimed */
			return -2;
		}
		irq_used[i] = 1;
		return i;
	}

	/* not found */
	return -1;
}

#define SPARE_SLOT_NUM 20

675
static struct mpc_intsrc __initdata *m_spare[SPARE_SLOT_NUM];
676

677
static void __init check_irq_src(struct mpc_intsrc *m, int *nr_m_spare)
678 679 680 681
{
	int i;

	apic_printk(APIC_VERBOSE, "OLD ");
682
	print_mp_irq_info(m);
683 684 685

	i = get_MP_intsrc_index(m);
	if (i > 0) {
686
		memcpy(m, &mp_irqs[i], sizeof(*m));
687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704
		apic_printk(APIC_VERBOSE, "NEW ");
		print_mp_irq_info(&mp_irqs[i]);
		return;
	}
	if (!i) {
		/* legacy, do nothing */
		return;
	}
	if (*nr_m_spare < SPARE_SLOT_NUM) {
		/*
		 * not found (-1), or duplicated (-2) are invalid entries,
		 * we need to use the slot later
		 */
		m_spare[*nr_m_spare] = m;
		*nr_m_spare += 1;
	}
}

705
static int __init
Y
Yinghai Lu 已提交
706
check_slot(unsigned long mpc_new_phys, unsigned long mpc_new_length, int count)
707
{
Y
Yinghai Lu 已提交
708 709 710
	if (!mpc_new_phys || count <= mpc_new_length) {
		WARN(1, "update_mptable: No spare slots (length: %x)\n", count);
		return -1;
711 712
	}

713
	return 0;
714
}
715 716 717 718
#else /* CONFIG_X86_IO_APIC */
static
inline void __init check_irq_src(struct mpc_intsrc *m, int *nr_m_spare) {}
#endif /* CONFIG_X86_IO_APIC */
Y
Yinghai Lu 已提交
719

720
static int  __init replace_intsrc_all(struct mpc_table *mpc,
Y
Yinghai Lu 已提交
721 722 723 724 725 726 727
					unsigned long mpc_new_phys,
					unsigned long mpc_new_length)
{
#ifdef CONFIG_X86_IO_APIC
	int i;
#endif
	int count = sizeof(*mpc);
728
	int nr_m_spare = 0;
Y
Yinghai Lu 已提交
729 730
	unsigned char *mpt = ((unsigned char *)mpc) + count;

731
	pr_info("mpc_length %x\n", mpc->length);
732
	while (count < mpc->length) {
Y
Yinghai Lu 已提交
733 734
		switch (*mpt) {
		case MP_PROCESSOR:
735 736
			skip_entry(&mpt, &count, sizeof(struct mpc_cpu));
			break;
Y
Yinghai Lu 已提交
737
		case MP_BUS:
738 739
			skip_entry(&mpt, &count, sizeof(struct mpc_bus));
			break;
Y
Yinghai Lu 已提交
740
		case MP_IOAPIC:
741 742
			skip_entry(&mpt, &count, sizeof(struct mpc_ioapic));
			break;
Y
Yinghai Lu 已提交
743
		case MP_INTSRC:
744
			check_irq_src((struct mpc_intsrc *)mpt, &nr_m_spare);
745 746
			skip_entry(&mpt, &count, sizeof(struct mpc_intsrc));
			break;
Y
Yinghai Lu 已提交
747
		case MP_LINTSRC:
748 749
			skip_entry(&mpt, &count, sizeof(struct mpc_lintsrc));
			break;
Y
Yinghai Lu 已提交
750 751
		default:
			/* wrong mptable */
752
			smp_dump_mptable(mpc, mpt);
Y
Yinghai Lu 已提交
753 754 755 756 757 758 759 760 761
			goto out;
		}
	}

#ifdef CONFIG_X86_IO_APIC
	for (i = 0; i < mp_irq_entries; i++) {
		if (irq_used[i])
			continue;

762
		if (mp_irqs[i].irqtype != mp_INT)
Y
Yinghai Lu 已提交
763 764
			continue;

765
		if (mp_irqs[i].irqflag != 0x0f)
Y
Yinghai Lu 已提交
766 767 768
			continue;

		if (nr_m_spare > 0) {
769
			apic_printk(APIC_VERBOSE, "*NEW* found\n");
Y
Yinghai Lu 已提交
770
			nr_m_spare--;
771
			memcpy(m_spare[nr_m_spare], &mp_irqs[i], sizeof(mp_irqs[i]));
Y
Yinghai Lu 已提交
772 773
			m_spare[nr_m_spare] = NULL;
		} else {
774 775
			struct mpc_intsrc *m = (struct mpc_intsrc *)mpt;
			count += sizeof(struct mpc_intsrc);
Y
Yinghai Lu 已提交
776
			if (check_slot(mpc_new_phys, mpc_new_length, count) < 0)
777
				goto out;
778
			memcpy(m, &mp_irqs[i], sizeof(*m));
779
			mpc->length = count;
780
			mpt += sizeof(struct mpc_intsrc);
Y
Yinghai Lu 已提交
781 782 783 784 785 786
		}
		print_mp_irq_info(&mp_irqs[i]);
	}
#endif
out:
	/* update checksum */
787 788
	mpc->checksum = 0;
	mpc->checksum -= mpf_checksum((unsigned char *)mpc, mpc->length);
Y
Yinghai Lu 已提交
789 790 791 792

	return 0;
}

793
int enable_update_mptable;
794

Y
Yinghai Lu 已提交
795 796 797
static int __init update_mptable_setup(char *str)
{
	enable_update_mptable = 1;
798 799 800
#ifdef CONFIG_PCI
	pci_routeirq = 1;
#endif
Y
Yinghai Lu 已提交
801 802 803 804 805 806 807 808 809 810 811 812
	return 0;
}
early_param("update_mptable", update_mptable_setup);

static unsigned long __initdata mpc_new_phys;
static unsigned long mpc_new_length __initdata = 4096;

/* alloc_mptable or alloc_mptable=4k */
static int __initdata alloc_mptable;
static int __init parse_alloc_mptable_opt(char *p)
{
	enable_update_mptable = 1;
813 814 815
#ifdef CONFIG_PCI
	pci_routeirq = 1;
#endif
Y
Yinghai Lu 已提交
816 817 818 819 820 821 822 823 824 825
	alloc_mptable = 1;
	if (!p)
		return 0;
	mpc_new_length = memparse(p, &p);
	return 0;
}
early_param("alloc_mptable", parse_alloc_mptable_opt);

void __init early_reserve_e820_mpc_new(void)
{
826 827
	if (enable_update_mptable && alloc_mptable)
		mpc_new_phys = early_reserve_e820(mpc_new_length, 4);
Y
Yinghai Lu 已提交
828 829 830 831 832 833
}

static int __init update_mp_table(void)
{
	char str[16];
	char oem[10];
834
	struct mpf_intel *mpf;
835
	struct mpc_table *mpc, *mpc_new;
Y
Yinghai Lu 已提交
836 837 838 839 840 841 842 843 844 845 846

	if (!enable_update_mptable)
		return 0;

	mpf = mpf_found;
	if (!mpf)
		return 0;

	/*
	 * Now see if we need to go further.
	 */
847
	if (mpf->feature1 != 0)
Y
Yinghai Lu 已提交
848 849
		return 0;

850
	if (!mpf->physptr)
Y
Yinghai Lu 已提交
851 852
		return 0;

853
	mpc = phys_to_virt(mpf->physptr);
Y
Yinghai Lu 已提交
854 855 856 857

	if (!smp_check_mpc(mpc, oem, str))
		return 0;

858 859
	pr_info("mpf: %llx\n", (u64)virt_to_phys(mpf));
	pr_info("physptr: %x\n", mpf->physptr);
Y
Yinghai Lu 已提交
860

861
	if (mpc_new_phys && mpc->length > mpc_new_length) {
Y
Yinghai Lu 已提交
862
		mpc_new_phys = 0;
863 864
		pr_info("mpc_new_length is %ld, please use alloc_mptable=8k\n",
			mpc_new_length);
Y
Yinghai Lu 已提交
865 866 867 868
	}

	if (!mpc_new_phys) {
		unsigned char old, new;
L
Lucas De Marchi 已提交
869
		/* check if we can change the position */
870 871 872 873
		mpc->checksum = 0;
		old = mpf_checksum((unsigned char *)mpc, mpc->length);
		mpc->checksum = 0xff;
		new = mpf_checksum((unsigned char *)mpc, mpc->length);
Y
Yinghai Lu 已提交
874
		if (old == new) {
875
			pr_info("mpc is readonly, please try alloc_mptable instead\n");
Y
Yinghai Lu 已提交
876 877
			return 0;
		}
878
		pr_info("use in-position replacing\n");
Y
Yinghai Lu 已提交
879
	} else {
880
		mpf->physptr = mpc_new_phys;
Y
Yinghai Lu 已提交
881
		mpc_new = phys_to_virt(mpc_new_phys);
882
		memcpy(mpc_new, mpc, mpc->length);
Y
Yinghai Lu 已提交
883 884
		mpc = mpc_new;
		/* check if we can modify that */
885
		if (mpc_new_phys - mpf->physptr) {
886
			struct mpf_intel *mpf_new;
Y
Yinghai Lu 已提交
887
			/* steal 16 bytes from [0, 1k) */
888
			pr_info("mpf new: %x\n", 0x400 - 16);
Y
Yinghai Lu 已提交
889 890 891
			mpf_new = phys_to_virt(0x400 - 16);
			memcpy(mpf_new, mpf, 16);
			mpf = mpf_new;
892
			mpf->physptr = mpc_new_phys;
Y
Yinghai Lu 已提交
893
		}
894 895
		mpf->checksum = 0;
		mpf->checksum -= mpf_checksum((unsigned char *)mpf, 16);
896
		pr_info("physptr new: %x\n", mpf->physptr);
Y
Yinghai Lu 已提交
897 898 899 900 901 902 903 904 905 906 907 908 909 910
	}

	/*
	 * only replace the one with mp_INT and
	 *	 MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW,
	 * already in mp_irqs , stored by ... and mp_config_acpi_gsi,
	 * may need pci=routeirq for all coverage
	 */
	replace_intsrc_all(mpc, mpc_new_phys, mpc_new_length);

	return 0;
}

late_initcall(update_mp_table);