2 * Intel Multiprocessor Specification 1.1 and 1.4
3 * compliant MP-table parsing routines.
5 * (c) 1995 Alan Cox, Building #3 <alan@redhat.com>
6 * (c) 1998, 1999, 2000 Ingo Molnar <mingo@redhat.com>
7 * (c) 2008 Alexey Starikovskiy <astarikovskiy@suse.de>
11 #include <linux/init.h>
12 #include <linux/delay.h>
13 #include <linux/bootmem.h>
14 #include <linux/kernel_stat.h>
15 #include <linux/mc146818rtc.h>
16 #include <linux/bitops.h>
17 #include <linux/acpi.h>
18 #include <linux/module.h>
19 #include <linux/smp.h>
20 #include <linux/acpi.h>
23 #include <asm/mpspec.h>
24 #include <asm/pgalloc.h>
25 #include <asm/io_apic.h>
26 #include <asm/proto.h>
27 #include <asm/bios_ebda.h>
29 #include <asm/trampoline.h>
30 #include <asm/setup.h>
32 #include <mach_apic.h>
34 #include <mach_apicdef.h>
35 #include <mach_mpparse.h>
39 * Checksum an MP configuration block.
42 static int __init mpf_checksum(unsigned char *mp, int len)
52 static void __init MP_processor_info(struct mpc_cpu *m)
55 char *bootup_cpu = "";
57 if (!(m->mpc_cpuflag & CPU_ENABLED)) {
62 if (x86_quirks->mpc_apic_id)
63 apicid = x86_quirks->mpc_apic_id(m);
65 apicid = m->mpc_apicid;
67 if (m->mpc_cpuflag & CPU_BOOTPROCESSOR) {
68 bootup_cpu = " (Bootup-CPU)";
69 boot_cpu_physical_apicid = m->mpc_apicid;
72 printk(KERN_INFO "Processor #%d%s\n", m->mpc_apicid, bootup_cpu);
73 generic_processor_info(apicid, m->mpc_apicver);
76 #ifdef CONFIG_X86_IO_APIC
77 static void __init MP_bus_info(struct mpc_bus *m)
80 memcpy(str, m->mpc_bustype, 6);
83 if (x86_quirks->mpc_oem_bus_info)
84 x86_quirks->mpc_oem_bus_info(m, str);
86 apic_printk(APIC_VERBOSE, "Bus #%d is %s\n", m->mpc_busid, str);
88 #if MAX_MP_BUSSES < 256
89 if (m->mpc_busid >= MAX_MP_BUSSES) {
90 printk(KERN_WARNING "MP table busid value (%d) for bustype %s "
91 " is too large, max. supported is %d\n",
92 m->mpc_busid, str, MAX_MP_BUSSES - 1);
97 if (strncmp(str, BUSTYPE_ISA, sizeof(BUSTYPE_ISA) - 1) == 0) {
98 set_bit(m->mpc_busid, mp_bus_not_pci);
99 #if defined(CONFIG_EISA) || defined(CONFIG_MCA)
100 mp_bus_id_to_type[m->mpc_busid] = MP_BUS_ISA;
102 } else if (strncmp(str, BUSTYPE_PCI, sizeof(BUSTYPE_PCI) - 1) == 0) {
103 if (x86_quirks->mpc_oem_pci_bus)
104 x86_quirks->mpc_oem_pci_bus(m);
106 clear_bit(m->mpc_busid, mp_bus_not_pci);
107 #if defined(CONFIG_EISA) || defined(CONFIG_MCA)
108 mp_bus_id_to_type[m->mpc_busid] = MP_BUS_PCI;
109 } else if (strncmp(str, BUSTYPE_EISA, sizeof(BUSTYPE_EISA) - 1) == 0) {
110 mp_bus_id_to_type[m->mpc_busid] = MP_BUS_EISA;
111 } else if (strncmp(str, BUSTYPE_MCA, sizeof(BUSTYPE_MCA) - 1) == 0) {
112 mp_bus_id_to_type[m->mpc_busid] = MP_BUS_MCA;
115 printk(KERN_WARNING "Unknown bustype %s - ignoring\n", str);
119 #ifdef CONFIG_X86_IO_APIC
121 static int bad_ioapic(unsigned long address)
123 if (nr_ioapics >= MAX_IO_APICS) {
124 printk(KERN_ERR "ERROR: Max # of I/O APICs (%d) exceeded "
125 "(found %d)\n", MAX_IO_APICS, nr_ioapics);
126 panic("Recompile kernel with bigger MAX_IO_APICS!\n");
129 printk(KERN_ERR "WARNING: Bogus (zero) I/O APIC address"
130 " found in table, skipping!\n");
136 static void __init MP_ioapic_info(struct mpc_ioapic *m)
138 if (!(m->mpc_flags & MPC_APIC_USABLE))
141 printk(KERN_INFO "I/O APIC #%d Version %d at 0x%X.\n",
142 m->mpc_apicid, m->mpc_apicver, m->mpc_apicaddr);
144 if (bad_ioapic(m->mpc_apicaddr))
147 mp_ioapics[nr_ioapics].mp_apicaddr = m->mpc_apicaddr;
148 mp_ioapics[nr_ioapics].mp_apicid = m->mpc_apicid;
149 mp_ioapics[nr_ioapics].mp_type = m->mpc_type;
150 mp_ioapics[nr_ioapics].mp_apicver = m->mpc_apicver;
151 mp_ioapics[nr_ioapics].mp_flags = m->mpc_flags;
155 static void print_MP_intsrc_info(struct mpc_intsrc *m)
157 apic_printk(APIC_VERBOSE, "Int: type %d, pol %d, trig %d, bus %02x,"
158 " IRQ %02x, APIC ID %x, APIC INT %02x\n",
159 m->mpc_irqtype, m->mpc_irqflag & 3,
160 (m->mpc_irqflag >> 2) & 3, m->mpc_srcbus,
161 m->mpc_srcbusirq, m->mpc_dstapic, m->mpc_dstirq);
164 static void __init print_mp_irq_info(struct mp_config_intsrc *mp_irq)
166 apic_printk(APIC_VERBOSE, "Int: type %d, pol %d, trig %d, bus %02x,"
167 " IRQ %02x, APIC ID %x, APIC INT %02x\n",
168 mp_irq->mp_irqtype, mp_irq->mp_irqflag & 3,
169 (mp_irq->mp_irqflag >> 2) & 3, mp_irq->mp_srcbus,
170 mp_irq->mp_srcbusirq, mp_irq->mp_dstapic, mp_irq->mp_dstirq);
173 static void __init assign_to_mp_irq(struct mpc_intsrc *m,
174 struct mp_config_intsrc *mp_irq)
176 mp_irq->mp_dstapic = m->mpc_dstapic;
177 mp_irq->mp_type = m->mpc_type;
178 mp_irq->mp_irqtype = m->mpc_irqtype;
179 mp_irq->mp_irqflag = m->mpc_irqflag;
180 mp_irq->mp_srcbus = m->mpc_srcbus;
181 mp_irq->mp_srcbusirq = m->mpc_srcbusirq;
182 mp_irq->mp_dstirq = m->mpc_dstirq;
185 static void __init assign_to_mpc_intsrc(struct mp_config_intsrc *mp_irq,
186 struct mpc_intsrc *m)
188 m->mpc_dstapic = mp_irq->mp_dstapic;
189 m->mpc_type = mp_irq->mp_type;
190 m->mpc_irqtype = mp_irq->mp_irqtype;
191 m->mpc_irqflag = mp_irq->mp_irqflag;
192 m->mpc_srcbus = mp_irq->mp_srcbus;
193 m->mpc_srcbusirq = mp_irq->mp_srcbusirq;
194 m->mpc_dstirq = mp_irq->mp_dstirq;
197 static int __init mp_irq_mpc_intsrc_cmp(struct mp_config_intsrc *mp_irq,
198 struct mpc_intsrc *m)
200 if (mp_irq->mp_dstapic != m->mpc_dstapic)
202 if (mp_irq->mp_type != m->mpc_type)
204 if (mp_irq->mp_irqtype != m->mpc_irqtype)
206 if (mp_irq->mp_irqflag != m->mpc_irqflag)
208 if (mp_irq->mp_srcbus != m->mpc_srcbus)
210 if (mp_irq->mp_srcbusirq != m->mpc_srcbusirq)
212 if (mp_irq->mp_dstirq != m->mpc_dstirq)
218 static void __init MP_intsrc_info(struct mpc_intsrc *m)
222 print_MP_intsrc_info(m);
224 for (i = 0; i < mp_irq_entries; i++) {
225 if (!mp_irq_mpc_intsrc_cmp(&mp_irqs[i], m))
229 assign_to_mp_irq(m, &mp_irqs[mp_irq_entries]);
230 if (++mp_irq_entries == MAX_IRQ_SOURCES)
231 panic("Max # of irq sources exceeded!!\n");
236 static void __init MP_lintsrc_info(struct mpc_lintsrc *m)
238 apic_printk(APIC_VERBOSE, "Lint: type %d, pol %d, trig %d, bus %02x,"
239 " IRQ %02x, APIC ID %x, APIC LINT %02x\n",
240 m->mpc_irqtype, m->mpc_irqflag & 3,
241 (m->mpc_irqflag >> 2) & 3, m->mpc_srcbusid,
242 m->mpc_srcbusirq, m->mpc_destapic, m->mpc_destapiclint);
249 static int __init smp_check_mpc(struct mpc_table *mpc, char *oem, char *str)
252 if (memcmp(mpc->mpc_signature, MPC_SIGNATURE, 4)) {
253 printk(KERN_ERR "MPTABLE: bad signature [%c%c%c%c]!\n",
254 mpc->mpc_signature[0], mpc->mpc_signature[1],
255 mpc->mpc_signature[2], mpc->mpc_signature[3]);
258 if (mpf_checksum((unsigned char *)mpc, mpc->mpc_length)) {
259 printk(KERN_ERR "MPTABLE: checksum error!\n");
262 if (mpc->mpc_spec != 0x01 && mpc->mpc_spec != 0x04) {
263 printk(KERN_ERR "MPTABLE: bad table version (%d)!!\n",
267 if (!mpc->mpc_lapic) {
268 printk(KERN_ERR "MPTABLE: null local APIC address!\n");
271 memcpy(oem, mpc->mpc_oem, 8);
273 printk(KERN_INFO "MPTABLE: OEM ID: %s\n", oem);
275 memcpy(str, mpc->mpc_productid, 12);
278 printk(KERN_INFO "MPTABLE: Product ID: %s\n", str);
280 printk(KERN_INFO "MPTABLE: APIC at: 0x%X\n", mpc->mpc_lapic);
285 static int __init smp_read_mpc(struct mpc_table *mpc, unsigned early)
290 int count = sizeof(*mpc);
291 unsigned char *mpt = ((unsigned char *)mpc) + count;
293 if (!smp_check_mpc(mpc, oem, str))
298 * need to make sure summit and es7000's mps_oem_check is safe to be
299 * called early via genericarch 's mps_oem_check
302 #ifdef CONFIG_X86_NUMAQ
303 numaq_mps_oem_check(mpc, oem, str);
306 mps_oem_check(mpc, oem, str);
308 /* save the local APIC address, it might be non-default */
310 mp_lapic_addr = mpc->mpc_lapic;
315 if (mpc->mpc_oemptr && x86_quirks->smp_read_mpc_oem) {
316 struct mpc_oemtable *oem_table = (void *)(long)mpc->mpc_oemptr;
317 x86_quirks->smp_read_mpc_oem(oem_table, mpc->mpc_oemsize);
321 * Now process the configuration blocks.
323 if (x86_quirks->mpc_record)
324 *x86_quirks->mpc_record = 0;
326 while (count < mpc->mpc_length) {
330 struct mpc_cpu *m = (struct mpc_cpu *)mpt;
331 /* ACPI may have already provided this data */
333 MP_processor_info(m);
340 struct mpc_bus *m = (struct mpc_bus *)mpt;
341 #ifdef CONFIG_X86_IO_APIC
350 #ifdef CONFIG_X86_IO_APIC
351 struct mpc_ioapic *m = (struct mpc_ioapic *)mpt;
354 mpt += sizeof(struct mpc_ioapic);
355 count += sizeof(struct mpc_ioapic);
360 #ifdef CONFIG_X86_IO_APIC
361 struct mpc_intsrc *m = (struct mpc_intsrc *)mpt;
365 mpt += sizeof(struct mpc_intsrc);
366 count += sizeof(struct mpc_intsrc);
371 struct mpc_lintsrc *m =
372 (struct mpc_lintsrc *)mpt;
380 printk(KERN_ERR "Your mptable is wrong, contact your HW vendor!\n");
381 printk(KERN_ERR "type %x\n", *mpt);
382 print_hex_dump(KERN_ERR, " ", DUMP_PREFIX_ADDRESS, 16,
383 1, mpc, mpc->mpc_length, 1);
384 count = mpc->mpc_length;
387 if (x86_quirks->mpc_record)
388 (*x86_quirks->mpc_record)++;
391 #ifdef CONFIG_X86_GENERICARCH
392 generic_bigsmp_probe();
396 setup_apic_routing();
399 printk(KERN_ERR "MPTABLE: no processors registered!\n");
400 return num_processors;
403 #ifdef CONFIG_X86_IO_APIC
405 static int __init ELCR_trigger(unsigned int irq)
409 port = 0x4d0 + (irq >> 3);
410 return (inb(port) >> (irq & 7)) & 1;
413 static void __init construct_default_ioirq_mptable(int mpc_default_type)
415 struct mpc_intsrc intsrc;
417 int ELCR_fallback = 0;
419 intsrc.mpc_type = MP_INTSRC;
420 intsrc.mpc_irqflag = 0; /* conforming */
421 intsrc.mpc_srcbus = 0;
422 intsrc.mpc_dstapic = mp_ioapics[0].mp_apicid;
424 intsrc.mpc_irqtype = mp_INT;
427 * If true, we have an ISA/PCI system with no IRQ entries
428 * in the MP table. To prevent the PCI interrupts from being set up
429 * incorrectly, we try to use the ELCR. The sanity check to see if
430 * there is good ELCR data is very simple - IRQ0, 1, 2 and 13 can
431 * never be level sensitive, so we simply see if the ELCR agrees.
432 * If it does, we assume it's valid.
434 if (mpc_default_type == 5) {
435 printk(KERN_INFO "ISA/PCI bus type with no IRQ information... "
436 "falling back to ELCR\n");
438 if (ELCR_trigger(0) || ELCR_trigger(1) || ELCR_trigger(2) ||
440 printk(KERN_ERR "ELCR contains invalid data... "
444 "Using ELCR to identify PCI interrupts\n");
449 for (i = 0; i < 16; i++) {
450 switch (mpc_default_type) {
452 if (i == 0 || i == 13)
453 continue; /* IRQ0 & IRQ13 not connected */
457 continue; /* IRQ2 is never connected */
462 * If the ELCR indicates a level-sensitive interrupt, we
463 * copy that information over to the MP table in the
464 * irqflag field (level sensitive, active high polarity).
467 intsrc.mpc_irqflag = 13;
469 intsrc.mpc_irqflag = 0;
472 intsrc.mpc_srcbusirq = i;
473 intsrc.mpc_dstirq = i ? i : 2; /* IRQ0 to INTIN2 */
474 MP_intsrc_info(&intsrc);
477 intsrc.mpc_irqtype = mp_ExtINT;
478 intsrc.mpc_srcbusirq = 0;
479 intsrc.mpc_dstirq = 0; /* 8259A to INTIN0 */
480 MP_intsrc_info(&intsrc);
484 static void __init construct_ioapic_table(int mpc_default_type)
486 struct mpc_ioapic ioapic;
489 bus.mpc_type = MP_BUS;
491 switch (mpc_default_type) {
493 printk(KERN_ERR "???\nUnknown standard configuration %d\n",
498 memcpy(bus.mpc_bustype, "ISA ", 6);
503 memcpy(bus.mpc_bustype, "EISA ", 6);
507 memcpy(bus.mpc_bustype, "MCA ", 6);
510 if (mpc_default_type > 4) {
512 memcpy(bus.mpc_bustype, "PCI ", 6);
516 ioapic.mpc_type = MP_IOAPIC;
517 ioapic.mpc_apicid = 2;
518 ioapic.mpc_apicver = mpc_default_type > 4 ? 0x10 : 0x01;
519 ioapic.mpc_flags = MPC_APIC_USABLE;
520 ioapic.mpc_apicaddr = 0xFEC00000;
521 MP_ioapic_info(&ioapic);
524 * We set up most of the low 16 IO-APIC pins according to MPS rules.
526 construct_default_ioirq_mptable(mpc_default_type);
529 static inline void __init construct_ioapic_table(int mpc_default_type) { }
532 static inline void __init construct_default_ISA_mptable(int mpc_default_type)
534 struct mpc_cpu processor;
535 struct mpc_lintsrc lintsrc;
536 int linttypes[2] = { mp_ExtINT, mp_NMI };
540 * local APIC has default address
542 mp_lapic_addr = APIC_DEFAULT_PHYS_BASE;
545 * 2 CPUs, numbered 0 & 1.
547 processor.mpc_type = MP_PROCESSOR;
548 /* Either an integrated APIC or a discrete 82489DX. */
549 processor.mpc_apicver = mpc_default_type > 4 ? 0x10 : 0x01;
550 processor.mpc_cpuflag = CPU_ENABLED;
551 processor.mpc_cpufeature = (boot_cpu_data.x86 << 8) |
552 (boot_cpu_data.x86_model << 4) | boot_cpu_data.x86_mask;
553 processor.mpc_featureflag = boot_cpu_data.x86_capability[0];
554 processor.mpc_reserved[0] = 0;
555 processor.mpc_reserved[1] = 0;
556 for (i = 0; i < 2; i++) {
557 processor.mpc_apicid = i;
558 MP_processor_info(&processor);
561 construct_ioapic_table(mpc_default_type);
563 lintsrc.mpc_type = MP_LINTSRC;
564 lintsrc.mpc_irqflag = 0; /* conforming */
565 lintsrc.mpc_srcbusid = 0;
566 lintsrc.mpc_srcbusirq = 0;
567 lintsrc.mpc_destapic = MP_APIC_ALL;
568 for (i = 0; i < 2; i++) {
569 lintsrc.mpc_irqtype = linttypes[i];
570 lintsrc.mpc_destapiclint = i;
571 MP_lintsrc_info(&lintsrc);
575 static struct intel_mp_floating *mpf_found;
578 * Scan the memory blocks for an SMP configuration block.
580 static void __init __get_smp_config(unsigned int early)
582 struct intel_mp_floating *mpf = mpf_found;
587 if (acpi_lapic && early)
591 * MPS doesn't support hyperthreading, aka only have
592 * thread 0 apic id in MPS table
594 if (acpi_lapic && acpi_ioapic)
597 if (x86_quirks->mach_get_smp_config) {
598 if (x86_quirks->mach_get_smp_config(early))
602 printk(KERN_INFO "Intel MultiProcessor Specification v1.%d\n",
603 mpf->mpf_specification);
604 #if defined(CONFIG_X86_LOCAL_APIC) && defined(CONFIG_X86_32)
605 if (mpf->mpf_feature2 & (1 << 7)) {
606 printk(KERN_INFO " IMCR and PIC compatibility mode.\n");
609 printk(KERN_INFO " Virtual Wire compatibility mode.\n");
614 * Now see if we need to read further.
616 if (mpf->mpf_feature1 != 0) {
619 * local APIC has default address
621 mp_lapic_addr = APIC_DEFAULT_PHYS_BASE;
625 printk(KERN_INFO "Default MP configuration #%d\n",
627 construct_default_ISA_mptable(mpf->mpf_feature1);
629 } else if (mpf->mpf_physptr) {
632 * Read the physical hardware table. Anything here will
633 * override the defaults.
635 if (!smp_read_mpc(phys_to_virt(mpf->mpf_physptr), early)) {
636 #ifdef CONFIG_X86_LOCAL_APIC
637 smp_found_config = 0;
640 "BIOS bug, MP table errors detected!...\n");
641 printk(KERN_ERR "... disabling SMP support. "
642 "(tell your hw vendor)\n");
648 #ifdef CONFIG_X86_IO_APIC
650 * If there are no explicit MP IRQ entries, then we are
651 * broken. We set up most of the low 16 IO-APIC pins to
652 * ISA defaults and hope it will work.
654 if (!mp_irq_entries) {
657 printk(KERN_ERR "BIOS bug, no explicit IRQ entries, "
658 "using default mptable. "
659 "(tell your hw vendor)\n");
661 bus.mpc_type = MP_BUS;
663 memcpy(bus.mpc_bustype, "ISA ", 6);
666 construct_default_ioirq_mptable(0);
673 printk(KERN_INFO "Processors: %d\n", num_processors);
675 * Only use the first configuration found.
679 void __init early_get_smp_config(void)
684 void __init get_smp_config(void)
689 static int __init smp_scan_config(unsigned long base, unsigned long length,
692 unsigned int *bp = phys_to_virt(base);
693 struct intel_mp_floating *mpf;
695 apic_printk(APIC_VERBOSE, "Scan SMP from %p for %ld bytes.\n",
697 BUILD_BUG_ON(sizeof(*mpf) != 16);
700 mpf = (struct intel_mp_floating *)bp;
701 if ((*bp == SMP_MAGIC_IDENT) &&
702 (mpf->mpf_length == 1) &&
703 !mpf_checksum((unsigned char *)bp, 16) &&
704 ((mpf->mpf_specification == 1)
705 || (mpf->mpf_specification == 4))) {
706 #ifdef CONFIG_X86_LOCAL_APIC
707 smp_found_config = 1;
711 printk(KERN_INFO "found SMP MP-table at [%p] %08lx\n",
712 mpf, virt_to_phys(mpf));
716 reserve_bootmem_generic(virt_to_phys(mpf), PAGE_SIZE,
718 if (mpf->mpf_physptr) {
719 unsigned long size = PAGE_SIZE;
722 * We cannot access to MPC table to compute
723 * table size yet, as only few megabytes from
724 * the bottom is mapped now.
725 * PC-9800's MPC table places on the very last
726 * of physical memory; so that simply reserving
727 * PAGE_SIZE from mpg->mpf_physptr yields BUG()
728 * in reserve_bootmem.
730 unsigned long end = max_low_pfn * PAGE_SIZE;
731 if (mpf->mpf_physptr + size > end)
732 size = end - mpf->mpf_physptr;
734 reserve_bootmem_generic(mpf->mpf_physptr, size,
746 static void __init __find_smp_config(unsigned int reserve)
748 unsigned int address;
750 if (x86_quirks->mach_find_smp_config) {
751 if (x86_quirks->mach_find_smp_config(reserve))
755 * FIXME: Linux assumes you have 640K of base ram..
756 * this continues the error...
758 * 1) Scan the bottom 1K for a signature
759 * 2) Scan the top 1K of base RAM
760 * 3) Scan the 64K of bios
762 if (smp_scan_config(0x0, 0x400, reserve) ||
763 smp_scan_config(639 * 0x400, 0x400, reserve) ||
764 smp_scan_config(0xF0000, 0x10000, reserve))
767 * If it is an SMP machine we should know now, unless the
768 * configuration is in an EISA/MCA bus machine with an
769 * extended bios data area.
771 * there is a real-mode segmented pointer pointing to the
772 * 4K EBDA area at 0x40E, calculate and scan it here.
774 * NOTE! There are Linux loaders that will corrupt the EBDA
775 * area, and as such this kind of SMP config may be less
776 * trustworthy, simply because the SMP table may have been
777 * stomped on during early boot. These loaders are buggy and
780 * MP1.4 SPEC states to only scan first 1K of 4K EBDA.
783 address = get_bios_ebda();
785 smp_scan_config(address, 0x400, reserve);
788 void __init early_find_smp_config(void)
790 __find_smp_config(0);
793 void __init find_smp_config(void)
795 __find_smp_config(1);
798 #ifdef CONFIG_X86_IO_APIC
799 static u8 __initdata irq_used[MAX_IRQ_SOURCES];
801 static int __init get_MP_intsrc_index(struct mpc_intsrc *m)
805 if (m->mpc_irqtype != mp_INT)
808 if (m->mpc_irqflag != 0x0f)
813 for (i = 0; i < mp_irq_entries; i++) {
814 if (mp_irqs[i].mp_irqtype != mp_INT)
817 if (mp_irqs[i].mp_irqflag != 0x0f)
820 if (mp_irqs[i].mp_srcbus != m->mpc_srcbus)
822 if (mp_irqs[i].mp_srcbusirq != m->mpc_srcbusirq)
825 /* already claimed */
836 #define SPARE_SLOT_NUM 20
838 static struct mpc_intsrc __initdata *m_spare[SPARE_SLOT_NUM];
841 static int __init replace_intsrc_all(struct mpc_table *mpc,
842 unsigned long mpc_new_phys,
843 unsigned long mpc_new_length)
845 #ifdef CONFIG_X86_IO_APIC
850 int count = sizeof(*mpc);
851 unsigned char *mpt = ((unsigned char *)mpc) + count;
853 printk(KERN_INFO "mpc_length %x\n", mpc->mpc_length);
854 while (count < mpc->mpc_length) {
858 struct mpc_cpu *m = (struct mpc_cpu *)mpt;
865 struct mpc_bus *m = (struct mpc_bus *)mpt;
872 mpt += sizeof(struct mpc_ioapic);
873 count += sizeof(struct mpc_ioapic);
878 #ifdef CONFIG_X86_IO_APIC
879 struct mpc_intsrc *m = (struct mpc_intsrc *)mpt;
881 printk(KERN_INFO "OLD ");
882 print_MP_intsrc_info(m);
883 i = get_MP_intsrc_index(m);
885 assign_to_mpc_intsrc(&mp_irqs[i], m);
886 printk(KERN_INFO "NEW ");
887 print_mp_irq_info(&mp_irqs[i]);
889 /* legacy, do nothing */
890 } else if (nr_m_spare < SPARE_SLOT_NUM) {
892 * not found (-1), or duplicated (-2)
893 * are invalid entries,
894 * we need to use the slot later
896 m_spare[nr_m_spare] = m;
900 mpt += sizeof(struct mpc_intsrc);
901 count += sizeof(struct mpc_intsrc);
906 struct mpc_lintsrc *m =
907 (struct mpc_lintsrc *)mpt;
914 printk(KERN_ERR "Your mptable is wrong, contact your HW vendor!\n");
915 printk(KERN_ERR "type %x\n", *mpt);
916 print_hex_dump(KERN_ERR, " ", DUMP_PREFIX_ADDRESS, 16,
917 1, mpc, mpc->mpc_length, 1);
922 #ifdef CONFIG_X86_IO_APIC
923 for (i = 0; i < mp_irq_entries; i++) {
927 if (mp_irqs[i].mp_irqtype != mp_INT)
930 if (mp_irqs[i].mp_irqflag != 0x0f)
933 if (nr_m_spare > 0) {
934 printk(KERN_INFO "*NEW* found ");
936 assign_to_mpc_intsrc(&mp_irqs[i], m_spare[nr_m_spare]);
937 m_spare[nr_m_spare] = NULL;
939 struct mpc_intsrc *m = (struct mpc_intsrc *)mpt;
940 count += sizeof(struct mpc_intsrc);
942 printk(KERN_INFO "No spare slots, try to append...take your risk, new mpc_length %x\n", count);
944 if (count <= mpc_new_length)
945 printk(KERN_INFO "No spare slots, try to append..., new mpc_length %x\n", count);
947 printk(KERN_ERR "mpc_new_length %lx is too small\n", mpc_new_length);
951 assign_to_mpc_intsrc(&mp_irqs[i], m);
952 mpc->mpc_length = count;
953 mpt += sizeof(struct mpc_intsrc);
955 print_mp_irq_info(&mp_irqs[i]);
959 /* update checksum */
960 mpc->mpc_checksum = 0;
961 mpc->mpc_checksum -= mpf_checksum((unsigned char *)mpc,
967 static int __initdata enable_update_mptable;
969 static int __init update_mptable_setup(char *str)
971 enable_update_mptable = 1;
974 early_param("update_mptable", update_mptable_setup);
976 static unsigned long __initdata mpc_new_phys;
977 static unsigned long mpc_new_length __initdata = 4096;
979 /* alloc_mptable or alloc_mptable=4k */
980 static int __initdata alloc_mptable;
981 static int __init parse_alloc_mptable_opt(char *p)
983 enable_update_mptable = 1;
987 mpc_new_length = memparse(p, &p);
990 early_param("alloc_mptable", parse_alloc_mptable_opt);
992 void __init early_reserve_e820_mpc_new(void)
994 if (enable_update_mptable && alloc_mptable) {
996 #ifdef CONFIG_X86_TRAMPOLINE
997 startt = TRAMPOLINE_BASE;
999 mpc_new_phys = early_reserve_e820(startt, mpc_new_length, 4);
1003 static int __init update_mp_table(void)
1007 struct intel_mp_floating *mpf;
1008 struct mpc_table *mpc, *mpc_new;
1010 if (!enable_update_mptable)
1018 * Now see if we need to go further.
1020 if (mpf->mpf_feature1 != 0)
1023 if (!mpf->mpf_physptr)
1026 mpc = phys_to_virt(mpf->mpf_physptr);
1028 if (!smp_check_mpc(mpc, oem, str))
1031 printk(KERN_INFO "mpf: %lx\n", virt_to_phys(mpf));
1032 printk(KERN_INFO "mpf_physptr: %x\n", mpf->mpf_physptr);
1034 if (mpc_new_phys && mpc->mpc_length > mpc_new_length) {
1036 printk(KERN_INFO "mpc_new_length is %ld, please use alloc_mptable=8k\n",
1040 if (!mpc_new_phys) {
1041 unsigned char old, new;
1042 /* check if we can change the postion */
1043 mpc->mpc_checksum = 0;
1044 old = mpf_checksum((unsigned char *)mpc, mpc->mpc_length);
1045 mpc->mpc_checksum = 0xff;
1046 new = mpf_checksum((unsigned char *)mpc, mpc->mpc_length);
1048 printk(KERN_INFO "mpc is readonly, please try alloc_mptable instead\n");
1051 printk(KERN_INFO "use in-positon replacing\n");
1053 mpf->mpf_physptr = mpc_new_phys;
1054 mpc_new = phys_to_virt(mpc_new_phys);
1055 memcpy(mpc_new, mpc, mpc->mpc_length);
1057 /* check if we can modify that */
1058 if (mpc_new_phys - mpf->mpf_physptr) {
1059 struct intel_mp_floating *mpf_new;
1060 /* steal 16 bytes from [0, 1k) */
1061 printk(KERN_INFO "mpf new: %x\n", 0x400 - 16);
1062 mpf_new = phys_to_virt(0x400 - 16);
1063 memcpy(mpf_new, mpf, 16);
1065 mpf->mpf_physptr = mpc_new_phys;
1067 mpf->mpf_checksum = 0;
1068 mpf->mpf_checksum -= mpf_checksum((unsigned char *)mpf, 16);
1069 printk(KERN_INFO "mpf_physptr new: %x\n", mpf->mpf_physptr);
1073 * only replace the one with mp_INT and
1074 * MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW,
1075 * already in mp_irqs , stored by ... and mp_config_acpi_gsi,
1076 * may need pci=routeirq for all coverage
1078 replace_intsrc_all(mpc, mpc_new_phys, mpc_new_length);
1083 late_initcall(update_mp_table);