2 * Intel Multiprocessor Specification 1.1 and 1.4
3 * compliant MP-table parsing routines.
5 * (c) 1995 Alan Cox, Building #3 <alan@lxorguk.ukuu.org.uk>
6 * (c) 1998, 1999, 2000, 2009 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/pci.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>
35 * Checksum an MP configuration block.
38 static int __init
mpf_checksum(unsigned char *mp
, int len
)
48 static void __init
MP_processor_info(struct mpc_cpu
*m
)
51 char *bootup_cpu
= "";
53 if (!(m
->cpuflag
& CPU_ENABLED
)) {
58 if (x86_quirks
->mpc_apic_id
)
59 apicid
= x86_quirks
->mpc_apic_id(m
);
63 if (m
->cpuflag
& CPU_BOOTPROCESSOR
) {
64 bootup_cpu
= " (Bootup-CPU)";
65 boot_cpu_physical_apicid
= m
->apicid
;
68 printk(KERN_INFO
"Processor #%d%s\n", m
->apicid
, bootup_cpu
);
69 generic_processor_info(apicid
, m
->apicver
);
72 #ifdef CONFIG_X86_IO_APIC
73 static void __init
MP_bus_info(struct mpc_bus
*m
)
76 memcpy(str
, m
->bustype
, 6);
79 if (x86_quirks
->mpc_oem_bus_info
)
80 x86_quirks
->mpc_oem_bus_info(m
, str
);
82 apic_printk(APIC_VERBOSE
, "Bus #%d is %s\n", m
->busid
, str
);
84 #if MAX_MP_BUSSES < 256
85 if (m
->busid
>= MAX_MP_BUSSES
) {
86 printk(KERN_WARNING
"MP table busid value (%d) for bustype %s "
87 " is too large, max. supported is %d\n",
88 m
->busid
, str
, MAX_MP_BUSSES
- 1);
93 if (strncmp(str
, BUSTYPE_ISA
, sizeof(BUSTYPE_ISA
) - 1) == 0) {
94 set_bit(m
->busid
, mp_bus_not_pci
);
95 #if defined(CONFIG_EISA) || defined(CONFIG_MCA)
96 mp_bus_id_to_type
[m
->busid
] = MP_BUS_ISA
;
98 } else if (strncmp(str
, BUSTYPE_PCI
, sizeof(BUSTYPE_PCI
) - 1) == 0) {
99 if (x86_quirks
->mpc_oem_pci_bus
)
100 x86_quirks
->mpc_oem_pci_bus(m
);
102 clear_bit(m
->busid
, mp_bus_not_pci
);
103 #if defined(CONFIG_EISA) || defined(CONFIG_MCA)
104 mp_bus_id_to_type
[m
->busid
] = MP_BUS_PCI
;
105 } else if (strncmp(str
, BUSTYPE_EISA
, sizeof(BUSTYPE_EISA
) - 1) == 0) {
106 mp_bus_id_to_type
[m
->busid
] = MP_BUS_EISA
;
107 } else if (strncmp(str
, BUSTYPE_MCA
, sizeof(BUSTYPE_MCA
) - 1) == 0) {
108 mp_bus_id_to_type
[m
->busid
] = MP_BUS_MCA
;
111 printk(KERN_WARNING
"Unknown bustype %s - ignoring\n", str
);
114 static int bad_ioapic(unsigned long address
)
116 if (nr_ioapics
>= MAX_IO_APICS
) {
117 printk(KERN_ERR
"ERROR: Max # of I/O APICs (%d) exceeded "
118 "(found %d)\n", MAX_IO_APICS
, nr_ioapics
);
119 panic("Recompile kernel with bigger MAX_IO_APICS!\n");
122 printk(KERN_ERR
"WARNING: Bogus (zero) I/O APIC address"
123 " found in table, skipping!\n");
129 static void __init
MP_ioapic_info(struct mpc_ioapic
*m
)
131 if (!(m
->flags
& MPC_APIC_USABLE
))
134 printk(KERN_INFO
"I/O APIC #%d Version %d at 0x%X.\n",
135 m
->apicid
, m
->apicver
, m
->apicaddr
);
137 if (bad_ioapic(m
->apicaddr
))
140 mp_ioapics
[nr_ioapics
].apicaddr
= m
->apicaddr
;
141 mp_ioapics
[nr_ioapics
].apicid
= m
->apicid
;
142 mp_ioapics
[nr_ioapics
].type
= m
->type
;
143 mp_ioapics
[nr_ioapics
].apicver
= m
->apicver
;
144 mp_ioapics
[nr_ioapics
].flags
= m
->flags
;
148 static void print_MP_intsrc_info(struct mpc_intsrc
*m
)
150 apic_printk(APIC_VERBOSE
, "Int: type %d, pol %d, trig %d, bus %02x,"
151 " IRQ %02x, APIC ID %x, APIC INT %02x\n",
152 m
->irqtype
, m
->irqflag
& 3, (m
->irqflag
>> 2) & 3, m
->srcbus
,
153 m
->srcbusirq
, m
->dstapic
, m
->dstirq
);
156 static void __init
print_mp_irq_info(struct mpc_intsrc
*mp_irq
)
158 apic_printk(APIC_VERBOSE
, "Int: type %d, pol %d, trig %d, bus %02x,"
159 " IRQ %02x, APIC ID %x, APIC INT %02x\n",
160 mp_irq
->irqtype
, mp_irq
->irqflag
& 3,
161 (mp_irq
->irqflag
>> 2) & 3, mp_irq
->srcbus
,
162 mp_irq
->srcbusirq
, mp_irq
->dstapic
, mp_irq
->dstirq
);
165 static void __init
assign_to_mp_irq(struct mpc_intsrc
*m
,
166 struct mpc_intsrc
*mp_irq
)
168 mp_irq
->dstapic
= m
->dstapic
;
169 mp_irq
->type
= m
->type
;
170 mp_irq
->irqtype
= m
->irqtype
;
171 mp_irq
->irqflag
= m
->irqflag
;
172 mp_irq
->srcbus
= m
->srcbus
;
173 mp_irq
->srcbusirq
= m
->srcbusirq
;
174 mp_irq
->dstirq
= m
->dstirq
;
177 static void __init
assign_to_mpc_intsrc(struct mpc_intsrc
*mp_irq
,
178 struct mpc_intsrc
*m
)
180 m
->dstapic
= mp_irq
->dstapic
;
181 m
->type
= mp_irq
->type
;
182 m
->irqtype
= mp_irq
->irqtype
;
183 m
->irqflag
= mp_irq
->irqflag
;
184 m
->srcbus
= mp_irq
->srcbus
;
185 m
->srcbusirq
= mp_irq
->srcbusirq
;
186 m
->dstirq
= mp_irq
->dstirq
;
189 static int __init
mp_irq_mpc_intsrc_cmp(struct mpc_intsrc
*mp_irq
,
190 struct mpc_intsrc
*m
)
192 if (mp_irq
->dstapic
!= m
->dstapic
)
194 if (mp_irq
->type
!= m
->type
)
196 if (mp_irq
->irqtype
!= m
->irqtype
)
198 if (mp_irq
->irqflag
!= m
->irqflag
)
200 if (mp_irq
->srcbus
!= m
->srcbus
)
202 if (mp_irq
->srcbusirq
!= m
->srcbusirq
)
204 if (mp_irq
->dstirq
!= m
->dstirq
)
210 static void __init
MP_intsrc_info(struct mpc_intsrc
*m
)
214 print_MP_intsrc_info(m
);
216 for (i
= 0; i
< mp_irq_entries
; i
++) {
217 if (!mp_irq_mpc_intsrc_cmp(&mp_irqs
[i
], m
))
221 assign_to_mp_irq(m
, &mp_irqs
[mp_irq_entries
]);
222 if (++mp_irq_entries
== MAX_IRQ_SOURCES
)
223 panic("Max # of irq sources exceeded!!\n");
225 #else /* CONFIG_X86_IO_APIC */
226 static inline void __init
MP_bus_info(struct mpc_bus
*m
) {}
227 static inline void __init
MP_ioapic_info(struct mpc_ioapic
*m
) {}
228 static inline void __init
MP_intsrc_info(struct mpc_intsrc
*m
) {}
229 #endif /* CONFIG_X86_IO_APIC */
232 static void __init
MP_lintsrc_info(struct mpc_lintsrc
*m
)
234 apic_printk(APIC_VERBOSE
, "Lint: type %d, pol %d, trig %d, bus %02x,"
235 " IRQ %02x, APIC ID %x, APIC LINT %02x\n",
236 m
->irqtype
, m
->irqflag
& 3, (m
->irqflag
>> 2) & 3, m
->srcbusid
,
237 m
->srcbusirq
, m
->destapic
, m
->destapiclint
);
244 static int __init
smp_check_mpc(struct mpc_table
*mpc
, char *oem
, char *str
)
247 if (memcmp(mpc
->signature
, MPC_SIGNATURE
, 4)) {
248 printk(KERN_ERR
"MPTABLE: bad signature [%c%c%c%c]!\n",
249 mpc
->signature
[0], mpc
->signature
[1],
250 mpc
->signature
[2], mpc
->signature
[3]);
253 if (mpf_checksum((unsigned char *)mpc
, mpc
->length
)) {
254 printk(KERN_ERR
"MPTABLE: checksum error!\n");
257 if (mpc
->spec
!= 0x01 && mpc
->spec
!= 0x04) {
258 printk(KERN_ERR
"MPTABLE: bad table version (%d)!!\n",
263 printk(KERN_ERR
"MPTABLE: null local APIC address!\n");
266 memcpy(oem
, mpc
->oem
, 8);
268 printk(KERN_INFO
"MPTABLE: OEM ID: %s\n", oem
);
270 memcpy(str
, mpc
->productid
, 12);
273 printk(KERN_INFO
"MPTABLE: Product ID: %s\n", str
);
275 printk(KERN_INFO
"MPTABLE: APIC at: 0x%X\n", mpc
->lapic
);
280 static void skip_entry(unsigned char **ptr
, int *count
, int size
)
286 static void __init
smp_dump_mptable(struct mpc_table
*mpc
, unsigned char *mpt
)
288 printk(KERN_ERR
"Your mptable is wrong, contact your HW vendor!\n"
290 print_hex_dump(KERN_ERR
, " ", DUMP_PREFIX_ADDRESS
, 16,
291 1, mpc
, mpc
->length
, 1);
294 static int __init
smp_read_mpc(struct mpc_table
*mpc
, unsigned early
)
299 int count
= sizeof(*mpc
);
300 unsigned char *mpt
= ((unsigned char *)mpc
) + count
;
302 if (!smp_check_mpc(mpc
, oem
, str
))
306 generic_mps_oem_check(mpc
, oem
, str
);
308 /* save the local APIC address, it might be non-default */
310 mp_lapic_addr
= mpc
->lapic
;
315 if (mpc
->oemptr
&& x86_quirks
->smp_read_mpc_oem
) {
316 struct mpc_oemtable
*oem_table
= (void *)(long)mpc
->oemptr
;
317 x86_quirks
->smp_read_mpc_oem(oem_table
, mpc
->oemsize
);
321 * Now process the configuration blocks.
323 if (x86_quirks
->mpc_record
)
324 *x86_quirks
->mpc_record
= 0;
326 while (count
< mpc
->length
) {
329 /* ACPI may have already provided this data */
331 MP_processor_info((struct mpc_cpu
*)mpt
);
332 skip_entry(&mpt
, &count
, sizeof(struct mpc_cpu
));
335 MP_bus_info((struct mpc_bus
*)mpt
);
336 skip_entry(&mpt
, &count
, sizeof(struct mpc_bus
));
339 MP_ioapic_info((struct mpc_ioapic
*)mpt
);
340 skip_entry(&mpt
, &count
, sizeof(struct mpc_ioapic
));
343 MP_intsrc_info((struct mpc_intsrc
*)mpt
);
344 skip_entry(&mpt
, &count
, sizeof(struct mpc_intsrc
));
347 MP_lintsrc_info((struct mpc_lintsrc
*)mpt
);
348 skip_entry(&mpt
, &count
, sizeof(struct mpc_lintsrc
));
352 smp_dump_mptable(mpc
, mpt
);
356 if (x86_quirks
->mpc_record
)
357 (*x86_quirks
->mpc_record
)++;
360 #ifdef CONFIG_X86_BIGSMP
361 generic_bigsmp_probe();
364 if (apic
->setup_apic_routing
)
365 apic
->setup_apic_routing();
368 printk(KERN_ERR
"MPTABLE: no processors registered!\n");
369 return num_processors
;
372 #ifdef CONFIG_X86_IO_APIC
374 static int __init
ELCR_trigger(unsigned int irq
)
378 port
= 0x4d0 + (irq
>> 3);
379 return (inb(port
) >> (irq
& 7)) & 1;
382 static void __init
construct_default_ioirq_mptable(int mpc_default_type
)
384 struct mpc_intsrc intsrc
;
386 int ELCR_fallback
= 0;
388 intsrc
.type
= MP_INTSRC
;
389 intsrc
.irqflag
= 0; /* conforming */
391 intsrc
.dstapic
= mp_ioapics
[0].apicid
;
393 intsrc
.irqtype
= mp_INT
;
396 * If true, we have an ISA/PCI system with no IRQ entries
397 * in the MP table. To prevent the PCI interrupts from being set up
398 * incorrectly, we try to use the ELCR. The sanity check to see if
399 * there is good ELCR data is very simple - IRQ0, 1, 2 and 13 can
400 * never be level sensitive, so we simply see if the ELCR agrees.
401 * If it does, we assume it's valid.
403 if (mpc_default_type
== 5) {
404 printk(KERN_INFO
"ISA/PCI bus type with no IRQ information... "
405 "falling back to ELCR\n");
407 if (ELCR_trigger(0) || ELCR_trigger(1) || ELCR_trigger(2) ||
409 printk(KERN_ERR
"ELCR contains invalid data... "
413 "Using ELCR to identify PCI interrupts\n");
418 for (i
= 0; i
< 16; i
++) {
419 switch (mpc_default_type
) {
421 if (i
== 0 || i
== 13)
422 continue; /* IRQ0 & IRQ13 not connected */
426 continue; /* IRQ2 is never connected */
431 * If the ELCR indicates a level-sensitive interrupt, we
432 * copy that information over to the MP table in the
433 * irqflag field (level sensitive, active high polarity).
441 intsrc
.srcbusirq
= i
;
442 intsrc
.dstirq
= i
? i
: 2; /* IRQ0 to INTIN2 */
443 MP_intsrc_info(&intsrc
);
446 intsrc
.irqtype
= mp_ExtINT
;
447 intsrc
.srcbusirq
= 0;
448 intsrc
.dstirq
= 0; /* 8259A to INTIN0 */
449 MP_intsrc_info(&intsrc
);
453 static void __init
construct_ioapic_table(int mpc_default_type
)
455 struct mpc_ioapic ioapic
;
460 switch (mpc_default_type
) {
462 printk(KERN_ERR
"???\nUnknown standard configuration %d\n",
467 memcpy(bus
.bustype
, "ISA ", 6);
472 memcpy(bus
.bustype
, "EISA ", 6);
476 memcpy(bus
.bustype
, "MCA ", 6);
479 if (mpc_default_type
> 4) {
481 memcpy(bus
.bustype
, "PCI ", 6);
485 ioapic
.type
= MP_IOAPIC
;
487 ioapic
.apicver
= mpc_default_type
> 4 ? 0x10 : 0x01;
488 ioapic
.flags
= MPC_APIC_USABLE
;
489 ioapic
.apicaddr
= 0xFEC00000;
490 MP_ioapic_info(&ioapic
);
493 * We set up most of the low 16 IO-APIC pins according to MPS rules.
495 construct_default_ioirq_mptable(mpc_default_type
);
498 static inline void __init
construct_ioapic_table(int mpc_default_type
) { }
501 static inline void __init
construct_default_ISA_mptable(int mpc_default_type
)
503 struct mpc_cpu processor
;
504 struct mpc_lintsrc lintsrc
;
505 int linttypes
[2] = { mp_ExtINT
, mp_NMI
};
509 * local APIC has default address
511 mp_lapic_addr
= APIC_DEFAULT_PHYS_BASE
;
514 * 2 CPUs, numbered 0 & 1.
516 processor
.type
= MP_PROCESSOR
;
517 /* Either an integrated APIC or a discrete 82489DX. */
518 processor
.apicver
= mpc_default_type
> 4 ? 0x10 : 0x01;
519 processor
.cpuflag
= CPU_ENABLED
;
520 processor
.cpufeature
= (boot_cpu_data
.x86
<< 8) |
521 (boot_cpu_data
.x86_model
<< 4) | boot_cpu_data
.x86_mask
;
522 processor
.featureflag
= boot_cpu_data
.x86_capability
[0];
523 processor
.reserved
[0] = 0;
524 processor
.reserved
[1] = 0;
525 for (i
= 0; i
< 2; i
++) {
526 processor
.apicid
= i
;
527 MP_processor_info(&processor
);
530 construct_ioapic_table(mpc_default_type
);
532 lintsrc
.type
= MP_LINTSRC
;
533 lintsrc
.irqflag
= 0; /* conforming */
534 lintsrc
.srcbusid
= 0;
535 lintsrc
.srcbusirq
= 0;
536 lintsrc
.destapic
= MP_APIC_ALL
;
537 for (i
= 0; i
< 2; i
++) {
538 lintsrc
.irqtype
= linttypes
[i
];
539 lintsrc
.destapiclint
= i
;
540 MP_lintsrc_info(&lintsrc
);
544 static struct mpf_intel
*mpf_found
;
546 static unsigned long __init
get_mpc_size(unsigned long physptr
)
548 struct mpc_table
*mpc
;
551 mpc
= early_ioremap(physptr
, PAGE_SIZE
);
553 early_iounmap(mpc
, PAGE_SIZE
);
554 apic_printk(APIC_VERBOSE
, " mpc: %lx-%lx\n", physptr
, physptr
+ size
);
559 static int __init
check_physptr(struct mpf_intel
*mpf
, unsigned int early
)
561 struct mpc_table
*mpc
;
564 size
= get_mpc_size(mpf
->physptr
);
565 mpc
= early_ioremap(mpf
->physptr
, size
);
567 * Read the physical hardware table. Anything here will
568 * override the defaults.
570 if (!smp_read_mpc(mpc
, early
)) {
571 #ifdef CONFIG_X86_LOCAL_APIC
572 smp_found_config
= 0;
574 printk(KERN_ERR
"BIOS bug, MP table errors detected!...\n"
575 "... disabling SMP support. (tell your hw vendor)\n");
576 early_iounmap(mpc
, size
);
579 early_iounmap(mpc
, size
);
584 #ifdef CONFIG_X86_IO_APIC
586 * If there are no explicit MP IRQ entries, then we are
587 * broken. We set up most of the low 16 IO-APIC pins to
588 * ISA defaults and hope it will work.
590 if (!mp_irq_entries
) {
593 printk(KERN_ERR
"BIOS bug, no explicit IRQ entries, "
594 "using default mptable. (tell your hw vendor)\n");
598 memcpy(bus
.bustype
, "ISA ", 6);
601 construct_default_ioirq_mptable(0);
609 * Scan the memory blocks for an SMP configuration block.
611 static void __init
__get_smp_config(unsigned int early
)
613 struct mpf_intel
*mpf
= mpf_found
;
618 if (acpi_lapic
&& early
)
622 * MPS doesn't support hyperthreading, aka only have
623 * thread 0 apic id in MPS table
625 if (acpi_lapic
&& acpi_ioapic
)
628 if (x86_quirks
->mach_get_smp_config
) {
629 if (x86_quirks
->mach_get_smp_config(early
))
633 printk(KERN_INFO
"Intel MultiProcessor Specification v1.%d\n",
635 #if defined(CONFIG_X86_LOCAL_APIC) && defined(CONFIG_X86_32)
636 if (mpf
->feature2
& (1 << 7)) {
637 printk(KERN_INFO
" IMCR and PIC compatibility mode.\n");
640 printk(KERN_INFO
" Virtual Wire compatibility mode.\n");
645 * Now see if we need to read further.
647 if (mpf
->feature1
!= 0) {
650 * local APIC has default address
652 mp_lapic_addr
= APIC_DEFAULT_PHYS_BASE
;
656 printk(KERN_INFO
"Default MP configuration #%d\n",
658 construct_default_ISA_mptable(mpf
->feature1
);
660 } else if (mpf
->physptr
) {
661 if (check_physptr(mpf
, early
))
667 printk(KERN_INFO
"Processors: %d\n", num_processors
);
669 * Only use the first configuration found.
673 void __init
early_get_smp_config(void)
678 void __init
get_smp_config(void)
683 static void __init
smp_reserve_bootmem(struct mpf_intel
*mpf
)
685 unsigned long size
= get_mpc_size(mpf
->physptr
);
688 * We cannot access to MPC table to compute table size yet,
689 * as only few megabytes from the bottom is mapped now.
690 * PC-9800's MPC table places on the very last of physical
691 * memory; so that simply reserving PAGE_SIZE from mpf->physptr
692 * yields BUG() in reserve_bootmem.
693 * also need to make sure physptr is below than max_low_pfn
694 * we don't need reserve the area above max_low_pfn
696 unsigned long end
= max_low_pfn
* PAGE_SIZE
;
698 if (mpf
->physptr
< end
) {
699 if (mpf
->physptr
+ size
> end
)
700 size
= end
- mpf
->physptr
;
701 reserve_bootmem_generic(mpf
->physptr
, size
, BOOTMEM_DEFAULT
);
704 reserve_bootmem_generic(mpf
->physptr
, size
, BOOTMEM_DEFAULT
);
708 static int __init
smp_scan_config(unsigned long base
, unsigned long length
,
711 unsigned int *bp
= phys_to_virt(base
);
712 struct mpf_intel
*mpf
;
714 apic_printk(APIC_VERBOSE
, "Scan SMP from %p for %ld bytes.\n",
716 BUILD_BUG_ON(sizeof(*mpf
) != 16);
719 mpf
= (struct mpf_intel
*)bp
;
720 if ((*bp
== SMP_MAGIC_IDENT
) &&
721 (mpf
->length
== 1) &&
722 !mpf_checksum((unsigned char *)bp
, 16) &&
723 ((mpf
->specification
== 1)
724 || (mpf
->specification
== 4))) {
725 #ifdef CONFIG_X86_LOCAL_APIC
726 smp_found_config
= 1;
730 printk(KERN_INFO
"found SMP MP-table at [%p] %llx\n",
731 mpf
, (u64
)virt_to_phys(mpf
));
735 reserve_bootmem_generic(virt_to_phys(mpf
), sizeof(*mpf
),
738 smp_reserve_bootmem(mpf
);
748 static void __init
__find_smp_config(unsigned int reserve
)
750 unsigned int address
;
752 if (x86_quirks
->mach_find_smp_config
) {
753 if (x86_quirks
->mach_find_smp_config(reserve
))
757 * FIXME: Linux assumes you have 640K of base ram..
758 * this continues the error...
760 * 1) Scan the bottom 1K for a signature
761 * 2) Scan the top 1K of base RAM
762 * 3) Scan the 64K of bios
764 if (smp_scan_config(0x0, 0x400, reserve
) ||
765 smp_scan_config(639 * 0x400, 0x400, reserve
) ||
766 smp_scan_config(0xF0000, 0x10000, reserve
))
769 * If it is an SMP machine we should know now, unless the
770 * configuration is in an EISA/MCA bus machine with an
771 * extended bios data area.
773 * there is a real-mode segmented pointer pointing to the
774 * 4K EBDA area at 0x40E, calculate and scan it here.
776 * NOTE! There are Linux loaders that will corrupt the EBDA
777 * area, and as such this kind of SMP config may be less
778 * trustworthy, simply because the SMP table may have been
779 * stomped on during early boot. These loaders are buggy and
782 * MP1.4 SPEC states to only scan first 1K of 4K EBDA.
785 address
= get_bios_ebda();
787 smp_scan_config(address
, 0x400, reserve
);
790 void __init
early_find_smp_config(void)
792 __find_smp_config(0);
795 void __init
find_smp_config(void)
797 __find_smp_config(1);
800 #ifdef CONFIG_X86_IO_APIC
801 static u8 __initdata irq_used
[MAX_IRQ_SOURCES
];
803 static int __init
get_MP_intsrc_index(struct mpc_intsrc
*m
)
807 if (m
->irqtype
!= mp_INT
)
810 if (m
->irqflag
!= 0x0f)
815 for (i
= 0; i
< mp_irq_entries
; i
++) {
816 if (mp_irqs
[i
].irqtype
!= mp_INT
)
819 if (mp_irqs
[i
].irqflag
!= 0x0f)
822 if (mp_irqs
[i
].srcbus
!= m
->srcbus
)
824 if (mp_irqs
[i
].srcbusirq
!= m
->srcbusirq
)
827 /* already claimed */
838 #define SPARE_SLOT_NUM 20
840 static struct mpc_intsrc __initdata
*m_spare
[SPARE_SLOT_NUM
];
842 static void __init
check_irq_src(struct mpc_intsrc
*m
, int *nr_m_spare
)
846 apic_printk(APIC_VERBOSE
, "OLD ");
847 print_MP_intsrc_info(m
);
849 i
= get_MP_intsrc_index(m
);
851 assign_to_mpc_intsrc(&mp_irqs
[i
], m
);
852 apic_printk(APIC_VERBOSE
, "NEW ");
853 print_mp_irq_info(&mp_irqs
[i
]);
857 /* legacy, do nothing */
860 if (*nr_m_spare
< SPARE_SLOT_NUM
) {
862 * not found (-1), or duplicated (-2) are invalid entries,
863 * we need to use the slot later
865 m_spare
[*nr_m_spare
] = m
;
869 #else /* CONFIG_X86_IO_APIC */
871 inline void __init
check_irq_src(struct mpc_intsrc
*m
, int *nr_m_spare
) {}
872 #endif /* CONFIG_X86_IO_APIC */
875 check_slot(unsigned long mpc_new_phys
, unsigned long mpc_new_length
, int count
)
879 if (!mpc_new_phys
|| count
<= mpc_new_length
) {
880 WARN(1, "update_mptable: No spare slots (length: %x)\n", count
);
887 static int __init
replace_intsrc_all(struct mpc_table
*mpc
,
888 unsigned long mpc_new_phys
,
889 unsigned long mpc_new_length
)
891 #ifdef CONFIG_X86_IO_APIC
894 int count
= sizeof(*mpc
);
896 unsigned char *mpt
= ((unsigned char *)mpc
) + count
;
898 printk(KERN_INFO
"mpc_length %x\n", mpc
->length
);
899 while (count
< mpc
->length
) {
902 skip_entry(&mpt
, &count
, sizeof(struct mpc_cpu
));
905 skip_entry(&mpt
, &count
, sizeof(struct mpc_bus
));
908 skip_entry(&mpt
, &count
, sizeof(struct mpc_ioapic
));
911 check_irq_src((struct mpc_intsrc
*)mpt
, &nr_m_spare
);
912 skip_entry(&mpt
, &count
, sizeof(struct mpc_intsrc
));
915 skip_entry(&mpt
, &count
, sizeof(struct mpc_lintsrc
));
919 smp_dump_mptable(mpc
, mpt
);
924 #ifdef CONFIG_X86_IO_APIC
925 for (i
= 0; i
< mp_irq_entries
; i
++) {
929 if (mp_irqs
[i
].irqtype
!= mp_INT
)
932 if (mp_irqs
[i
].irqflag
!= 0x0f)
935 if (nr_m_spare
> 0) {
936 apic_printk(APIC_VERBOSE
, "*NEW* found\n");
938 assign_to_mpc_intsrc(&mp_irqs
[i
], m_spare
[nr_m_spare
]);
939 m_spare
[nr_m_spare
] = NULL
;
941 struct mpc_intsrc
*m
= (struct mpc_intsrc
*)mpt
;
942 count
+= sizeof(struct mpc_intsrc
);
943 if (check_slot(mpc_new_phys
, mpc_new_length
, count
) < 0)
945 assign_to_mpc_intsrc(&mp_irqs
[i
], m
);
947 mpt
+= sizeof(struct mpc_intsrc
);
949 print_mp_irq_info(&mp_irqs
[i
]);
953 /* update checksum */
955 mpc
->checksum
-= mpf_checksum((unsigned char *)mpc
, mpc
->length
);
960 int enable_update_mptable
;
962 static int __init
update_mptable_setup(char *str
)
964 enable_update_mptable
= 1;
970 early_param("update_mptable", update_mptable_setup
);
972 static unsigned long __initdata mpc_new_phys
;
973 static unsigned long mpc_new_length __initdata
= 4096;
975 /* alloc_mptable or alloc_mptable=4k */
976 static int __initdata alloc_mptable
;
977 static int __init
parse_alloc_mptable_opt(char *p
)
979 enable_update_mptable
= 1;
986 mpc_new_length
= memparse(p
, &p
);
989 early_param("alloc_mptable", parse_alloc_mptable_opt
);
991 void __init
early_reserve_e820_mpc_new(void)
993 if (enable_update_mptable
&& alloc_mptable
) {
995 #ifdef CONFIG_X86_TRAMPOLINE
996 startt
= TRAMPOLINE_BASE
;
998 mpc_new_phys
= early_reserve_e820(startt
, mpc_new_length
, 4);
1002 static int __init
update_mp_table(void)
1006 struct mpf_intel
*mpf
;
1007 struct mpc_table
*mpc
, *mpc_new
;
1009 if (!enable_update_mptable
)
1017 * Now see if we need to go further.
1019 if (mpf
->feature1
!= 0)
1025 mpc
= phys_to_virt(mpf
->physptr
);
1027 if (!smp_check_mpc(mpc
, oem
, str
))
1030 printk(KERN_INFO
"mpf: %llx\n", (u64
)virt_to_phys(mpf
));
1031 printk(KERN_INFO
"physptr: %x\n", mpf
->physptr
);
1033 if (mpc_new_phys
&& mpc
->length
> mpc_new_length
) {
1035 printk(KERN_INFO
"mpc_new_length is %ld, please use alloc_mptable=8k\n",
1039 if (!mpc_new_phys
) {
1040 unsigned char old
, new;
1041 /* check if we can change the postion */
1043 old
= mpf_checksum((unsigned char *)mpc
, mpc
->length
);
1044 mpc
->checksum
= 0xff;
1045 new = mpf_checksum((unsigned char *)mpc
, mpc
->length
);
1047 printk(KERN_INFO
"mpc is readonly, please try alloc_mptable instead\n");
1050 printk(KERN_INFO
"use in-positon replacing\n");
1052 mpf
->physptr
= mpc_new_phys
;
1053 mpc_new
= phys_to_virt(mpc_new_phys
);
1054 memcpy(mpc_new
, mpc
, mpc
->length
);
1056 /* check if we can modify that */
1057 if (mpc_new_phys
- mpf
->physptr
) {
1058 struct mpf_intel
*mpf_new
;
1059 /* steal 16 bytes from [0, 1k) */
1060 printk(KERN_INFO
"mpf new: %x\n", 0x400 - 16);
1061 mpf_new
= phys_to_virt(0x400 - 16);
1062 memcpy(mpf_new
, mpf
, 16);
1064 mpf
->physptr
= mpc_new_phys
;
1067 mpf
->checksum
-= mpf_checksum((unsigned char *)mpf
, 16);
1068 printk(KERN_INFO
"physptr new: %x\n", mpf
->physptr
);
1072 * only replace the one with mp_INT and
1073 * MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW,
1074 * already in mp_irqs , stored by ... and mp_config_acpi_gsi,
1075 * may need pci=routeirq for all coverage
1077 replace_intsrc_all(mpc
, mpc_new_phys
, mpc_new_length
);
1082 late_initcall(update_mp_table
);