mpparse.c 21.1 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

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

I
Ingo Molnar 已提交
34
#include <asm/apic.h>
L
Linus Torvalds 已提交
35 36 37 38 39 40 41 42 43 44 45 46 47 48
/*
 * 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;
}

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

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

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

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

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

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

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

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

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

89
#if MAX_MP_BUSSES < 256
90
	if (m->busid >= MAX_MP_BUSSES) {
91 92
		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);
93 94
		return;
	}
95
#endif
96

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

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

116
static void __init MP_ioapic_info(struct mpc_ioapic *m)
L
Linus Torvalds 已提交
117
{
118 119 120 121 122
	struct ioapic_domain_cfg cfg = {
		.type = IOAPIC_DOMAIN_LEGACY,
		.ops = &mp_ioapic_irqdomain_ops,
	};

123
	if (m->flags & MPC_APIC_USABLE)
124
		mp_register_ioapic(m->apicid, m->apicaddr, gsi_top, &cfg);
Y
Yinghai Lu 已提交
125 126
}

127
static void __init print_mp_irq_info(struct mpc_intsrc *mp_irq)
Y
Yinghai Lu 已提交
128
{
129 130
	apic_printk(APIC_VERBOSE,
		"Int: type %d, pol %d, trig %d, bus %02x, IRQ %02x, APIC ID %x, APIC INT %02x\n",
131 132 133
		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 已提交
134 135
}

136 137 138 139
#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 已提交
140

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

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

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

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

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

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

Y
Yinghai Lu 已提交
184 185 186
	return 1;
}

187 188 189 190 191 192
static void skip_entry(unsigned char **ptr, int *count, int size)
{
	*ptr += size;
	*count += size;
}

193 194
static void __init smp_dump_mptable(struct mpc_table *mpc, unsigned char *mpt)
{
195 196
	pr_err("Your mptable is wrong, contact your HW vendor!\n");
	pr_cont("type %x\n", *mpt);
197 198 199 200
	print_hex_dump(KERN_ERR, "  ", DUMP_PREFIX_ADDRESS, 16,
			1, mpc, mpc->length, 1);
}

201 202
void __init default_smp_read_mpc_oem(struct mpc_table *mpc) { }

203
static int __init smp_read_mpc(struct mpc_table *mpc, unsigned early)
Y
Yinghai Lu 已提交
204 205 206 207 208 209 210 211 212 213
{
	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;

214
	/* Initialize the lapic mapping */
L
Linus Torvalds 已提交
215
	if (!acpi_lapic)
216
		register_lapic_address(mpc->lapic);
L
Linus Torvalds 已提交
217

218 219 220
	if (early)
		return 1;

221 222
	if (mpc->oemptr)
		x86_init.mpparse.smp_read_mpc_oem(mpc);
223

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

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

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

267 268
#ifdef CONFIG_X86_IO_APIC

L
Linus Torvalds 已提交
269 270 271 272 273 274 275 276 277 278
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)
{
279
	struct mpc_intsrc intsrc;
L
Linus Torvalds 已提交
280 281 282
	int i;
	int ELCR_fallback = 0;

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

288
	intsrc.irqtype = mp_INT;
L
Linus Torvalds 已提交
289 290 291 292 293 294 295 296 297 298

	/*
	 *  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) {
299
		pr_info("ISA/PCI bus type with no IRQ information... falling back to ELCR\n");
L
Linus Torvalds 已提交
300

301 302
		if (ELCR_trigger(0) || ELCR_trigger(1) || ELCR_trigger(2) ||
		    ELCR_trigger(13))
303
			pr_err("ELCR contains invalid data... not using ELCR\n");
L
Linus Torvalds 已提交
304
		else {
305
			pr_info("Using ELCR to identify PCI interrupts\n");
L
Linus Torvalds 已提交
306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327
			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))
328
				intsrc.irqflag = 13;
L
Linus Torvalds 已提交
329
			else
330
				intsrc.irqflag = 0;
L
Linus Torvalds 已提交
331 332
		}

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

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

344

345
static void __init construct_ioapic_table(int mpc_default_type)
L
Linus Torvalds 已提交
346
{
347
	struct mpc_ioapic ioapic;
348
	struct mpc_bus bus;
L
Linus Torvalds 已提交
349

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

374 375 376 377 378
	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 已提交
379 380 381 382 383 384
	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 已提交
385 386
}
#else
387
static inline void __init construct_ioapic_table(int mpc_default_type) { }
388
#endif
T
Thomas Gleixner 已提交
389 390 391

static inline void __init construct_default_ISA_mptable(int mpc_default_type)
{
392
	struct mpc_cpu processor;
393
	struct mpc_lintsrc lintsrc;
T
Thomas Gleixner 已提交
394 395 396 397 398 399 400 401 402 403 404
	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.
	 */
405
	processor.type = MP_PROCESSOR;
T
Thomas Gleixner 已提交
406
	/* Either an integrated APIC or a discrete 82489DX. */
407 408 409
	processor.apicver = mpc_default_type > 4 ? 0x10 : 0x01;
	processor.cpuflag = CPU_ENABLED;
	processor.cpufeature = (boot_cpu_data.x86 << 8) |
T
Thomas Gleixner 已提交
410
	    (boot_cpu_data.x86_model << 4) | boot_cpu_data.x86_mask;
411
	processor.featureflag = boot_cpu_data.x86_capability[CPUID_1_EDX];
412 413
	processor.reserved[0] = 0;
	processor.reserved[1] = 0;
T
Thomas Gleixner 已提交
414
	for (i = 0; i < 2; i++) {
415
		processor.apicid = i;
T
Thomas Gleixner 已提交
416 417 418 419 420
		MP_processor_info(&processor);
	}

	construct_ioapic_table(mpc_default_type);

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

433
static struct mpf_intel *mpf_found;
L
Linus Torvalds 已提交
434

Y
Yinghai Lu 已提交
435 436 437 438 439 440 441 442 443 444 445 446 447
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;
}

448 449 450 451 452 453 454 455 456 457 458 459 460 461 462
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
463 464
		pr_err("BIOS bug, MP table errors detected!...\n");
		pr_cont("... disabling SMP support. (tell your hw vendor)\n");
465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481
		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;

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

		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 已提交
496 497 498
/*
 * Scan the memory blocks for an SMP configuration block.
 */
499
void __init default_get_smp_config(unsigned int early)
L
Linus Torvalds 已提交
500
{
501
	struct mpf_intel *mpf = mpf_found;
L
Linus Torvalds 已提交
502

Y
Yinghai Lu 已提交
503 504 505
	if (!mpf)
		return;

506 507
	if (acpi_lapic && early)
		return;
Y
Yinghai Lu 已提交
508

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

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

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

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

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

555
static void __init smp_reserve_memory(struct mpf_intel *mpf)
556
{
557
	memblock_reserve(mpf->physptr, get_mpc_size(mpf->physptr));
558 559
}

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

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

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

582 583 584 585
			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);
586

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

592
			return 1;
L
Linus Torvalds 已提交
593 594 595 596 597 598 599
		}
		bp += 4;
		length -= 16;
	}
	return 0;
}

600
void __init default_find_smp_config(void)
L
Linus Torvalds 已提交
601 602 603 604 605 606 607 608 609 610 611
{
	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
	 */
612 613 614
	if (smp_scan_config(0x0, 0x400) ||
	    smp_scan_config(639 * 0x400, 0x400) ||
	    smp_scan_config(0xF0000, 0x10000))
L
Linus Torvalds 已提交
615 616 617
		return;
	/*
	 * If it is an SMP machine we should know now, unless the
618
	 * configuration is in an EISA bus machine with an
L
Linus Torvalds 已提交
619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634
	 * 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)
635
		smp_scan_config(address, 0x400);
636 637
}

Y
Yinghai Lu 已提交
638 639 640
#ifdef CONFIG_X86_IO_APIC
static u8 __initdata irq_used[MAX_IRQ_SOURCES];

641
static int  __init get_MP_intsrc_index(struct mpc_intsrc *m)
Y
Yinghai Lu 已提交
642 643 644
{
	int i;

645
	if (m->irqtype != mp_INT)
Y
Yinghai Lu 已提交
646 647
		return 0;

648
	if (m->irqflag != 0x0f)
Y
Yinghai Lu 已提交
649 650 651 652 653
		return 0;

	/* not legacy */

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

657
		if (mp_irqs[i].irqflag != 0x0f)
Y
Yinghai Lu 已提交
658 659
			continue;

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

	/* not found */
	return -1;
}

#define SPARE_SLOT_NUM 20

678
static struct mpc_intsrc __initdata *m_spare[SPARE_SLOT_NUM];
679

680
static void __init check_irq_src(struct mpc_intsrc *m, int *nr_m_spare)
681 682 683 684
{
	int i;

	apic_printk(APIC_VERBOSE, "OLD ");
685
	print_mp_irq_info(m);
686 687 688

	i = get_MP_intsrc_index(m);
	if (i > 0) {
689
		memcpy(m, &mp_irqs[i], sizeof(*m));
690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707
		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;
	}
}

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

716
	return 0;
717
}
718 719 720 721
#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 已提交
722

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

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

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

765
		if (mp_irqs[i].irqtype != mp_INT)
Y
Yinghai Lu 已提交
766 767
			continue;

768
		if (mp_irqs[i].irqflag != 0x0f)
Y
Yinghai Lu 已提交
769 770 771
			continue;

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

	return 0;
}

796
int enable_update_mptable;
797

Y
Yinghai Lu 已提交
798 799 800
static int __init update_mptable_setup(char *str)
{
	enable_update_mptable = 1;
801 802 803
#ifdef CONFIG_PCI
	pci_routeirq = 1;
#endif
Y
Yinghai Lu 已提交
804 805 806 807 808 809 810 811 812 813 814 815
	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;
816 817 818
#ifdef CONFIG_PCI
	pci_routeirq = 1;
#endif
Y
Yinghai Lu 已提交
819 820 821 822 823 824 825 826 827 828
	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)
{
829 830
	if (enable_update_mptable && alloc_mptable)
		mpc_new_phys = early_reserve_e820(mpc_new_length, 4);
Y
Yinghai Lu 已提交
831 832 833 834 835 836
}

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

	if (!enable_update_mptable)
		return 0;

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

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

853
	if (!mpf->physptr)
Y
Yinghai Lu 已提交
854 855
		return 0;

856
	mpc = phys_to_virt(mpf->physptr);
Y
Yinghai Lu 已提交
857 858 859 860

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

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

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

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

	/*
	 * 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);