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>
22 #include <asm/mpspec.h>
23 #include <asm/pgalloc.h>
24 #include <asm/io_apic.h>
25 #include <asm/proto.h>
27 #include <asm/bios_ebda.h>
29 #include <mach_apic.h>
31 #include <mach_apicdef.h>
32 #include <mach_mpparse.h>
35 /* Have we found an MP table */
39 * Various Linux-internal data structures created from the
42 #if defined (CONFIG_MCA) || defined (CONFIG_EISA)
43 int mp_bus_id_to_type
[MAX_MP_BUSSES
];
46 DECLARE_BITMAP(mp_bus_not_pci
, MAX_MP_BUSSES
);
47 int mp_bus_id_to_pci_bus
[MAX_MP_BUSSES
] = {[0 ... MAX_MP_BUSSES
- 1] = -1 };
49 static int mp_current_pci_id
;
54 * Intel MP BIOS table parsing routines:
58 * Checksum an MP configuration block.
61 static int __init
mpf_checksum(unsigned char *mp
, int len
)
71 #ifdef CONFIG_X86_NUMAQ
73 * Have to match translation table entries to main table entries by counter
74 * hence the mpc_record variable .... can't see a less disgusting way of
78 static int mpc_record
;
79 static struct mpc_config_translation
*translation_table
[MAX_MPC_ENTRY
]
83 static void __cpuinit
MP_processor_info(struct mpc_config_processor
*m
)
86 char *bootup_cpu
= "";
88 if (!(m
->mpc_cpuflag
& CPU_ENABLED
)) {
92 #ifdef CONFIG_X86_NUMAQ
93 apicid
= mpc_apic_id(m
, translation_table
[mpc_record
]);
95 apicid
= m
->mpc_apicid
;
97 if (m
->mpc_cpuflag
& CPU_BOOTPROCESSOR
) {
98 bootup_cpu
= " (Bootup-CPU)";
99 boot_cpu_physical_apicid
= m
->mpc_apicid
;
102 printk(KERN_INFO
"Processor #%d%s\n", m
->mpc_apicid
, bootup_cpu
);
103 generic_processor_info(apicid
, m
->mpc_apicver
);
106 static void __init
MP_bus_info(struct mpc_config_bus
*m
)
110 memcpy(str
, m
->mpc_bustype
, 6);
113 #ifdef CONFIG_X86_NUMAQ
114 mpc_oem_bus_info(m
, str
, translation_table
[mpc_record
]);
116 printk(KERN_INFO
"Bus #%d is %s\n", m
->mpc_busid
, str
);
119 #if MAX_MP_BUSSES < 256
120 if (m
->mpc_busid
>= MAX_MP_BUSSES
) {
121 printk(KERN_WARNING
"MP table busid value (%d) for bustype %s "
122 " is too large, max. supported is %d\n",
123 m
->mpc_busid
, str
, MAX_MP_BUSSES
- 1);
128 if (strncmp(str
, BUSTYPE_ISA
, sizeof(BUSTYPE_ISA
) - 1) == 0) {
129 set_bit(m
->mpc_busid
, mp_bus_not_pci
);
130 #if defined(CONFIG_EISA) || defined (CONFIG_MCA)
131 mp_bus_id_to_type
[m
->mpc_busid
] = MP_BUS_ISA
;
133 } else if (strncmp(str
, BUSTYPE_PCI
, sizeof(BUSTYPE_PCI
) - 1) == 0) {
134 #ifdef CONFIG_X86_NUMAQ
135 mpc_oem_pci_bus(m
, translation_table
[mpc_record
]);
137 clear_bit(m
->mpc_busid
, mp_bus_not_pci
);
138 mp_bus_id_to_pci_bus
[m
->mpc_busid
] = mp_current_pci_id
;
140 #if defined(CONFIG_EISA) || defined (CONFIG_MCA)
141 mp_bus_id_to_type
[m
->mpc_busid
] = MP_BUS_PCI
;
142 } else if (strncmp(str
, BUSTYPE_EISA
, sizeof(BUSTYPE_EISA
) - 1) == 0) {
143 mp_bus_id_to_type
[m
->mpc_busid
] = MP_BUS_EISA
;
144 } else if (strncmp(str
, BUSTYPE_MCA
, sizeof(BUSTYPE_MCA
) - 1) == 0) {
145 mp_bus_id_to_type
[m
->mpc_busid
] = MP_BUS_MCA
;
148 printk(KERN_WARNING
"Unknown bustype %s - ignoring\n", str
);
151 #ifdef CONFIG_X86_IO_APIC
153 static int bad_ioapic(unsigned long address
)
155 if (nr_ioapics
>= MAX_IO_APICS
) {
156 printk(KERN_ERR
"ERROR: Max # of I/O APICs (%d) exceeded "
157 "(found %d)\n", MAX_IO_APICS
, nr_ioapics
);
158 panic("Recompile kernel with bigger MAX_IO_APICS!\n");
161 printk(KERN_ERR
"WARNING: Bogus (zero) I/O APIC address"
162 " found in table, skipping!\n");
168 static void __init
MP_ioapic_info(struct mpc_config_ioapic
*m
)
170 if (!(m
->mpc_flags
& MPC_APIC_USABLE
))
173 printk(KERN_INFO
"I/O APIC #%d Version %d at 0x%X.\n",
174 m
->mpc_apicid
, m
->mpc_apicver
, m
->mpc_apicaddr
);
176 if (bad_ioapic(m
->mpc_apicaddr
))
179 mp_ioapics
[nr_ioapics
].mp_apicaddr
= m
->mpc_apicaddr
;
180 mp_ioapics
[nr_ioapics
].mp_apicid
= m
->mpc_apicid
;
181 mp_ioapics
[nr_ioapics
].mp_type
= m
->mpc_type
;
182 mp_ioapics
[nr_ioapics
].mp_apicver
= m
->mpc_apicver
;
183 mp_ioapics
[nr_ioapics
].mp_flags
= m
->mpc_flags
;
187 static void __init
MP_intsrc_info(struct mpc_config_intsrc
*m
)
189 printk(KERN_INFO
"Int: type %d, pol %d, trig %d, bus %02x,"
190 " IRQ %02x, APIC ID %x, APIC INT %02x\n",
191 m
->mpc_irqtype
, m
->mpc_irqflag
& 3,
192 (m
->mpc_irqflag
>> 2) & 3, m
->mpc_srcbus
,
193 m
->mpc_srcbusirq
, m
->mpc_dstapic
, m
->mpc_dstirq
);
194 mp_irqs
[mp_irq_entries
].mp_dstapic
= m
->mpc_dstapic
;
195 mp_irqs
[mp_irq_entries
].mp_type
= m
->mpc_type
;
196 mp_irqs
[mp_irq_entries
].mp_irqtype
= m
->mpc_irqtype
;
197 mp_irqs
[mp_irq_entries
].mp_irqflag
= m
->mpc_irqflag
;
198 mp_irqs
[mp_irq_entries
].mp_srcbus
= m
->mpc_srcbus
;
199 mp_irqs
[mp_irq_entries
].mp_srcbusirq
= m
->mpc_srcbusirq
;
200 mp_irqs
[mp_irq_entries
].mp_dstirq
= m
->mpc_dstirq
;
201 if (++mp_irq_entries
== MAX_IRQ_SOURCES
)
202 panic("Max # of irq sources exceeded!!\n");
207 static void __init
MP_lintsrc_info(struct mpc_config_lintsrc
*m
)
209 printk(KERN_INFO
"Lint: type %d, pol %d, trig %d, bus %02x,"
210 " IRQ %02x, APIC ID %x, APIC LINT %02x\n",
211 m
->mpc_irqtype
, m
->mpc_irqflag
& 3,
212 (m
->mpc_irqflag
>> 2) & 3, m
->mpc_srcbusid
,
213 m
->mpc_srcbusirq
, m
->mpc_destapic
, m
->mpc_destapiclint
);
216 #ifdef CONFIG_X86_NUMAQ
217 static void __init
MP_translation_info(struct mpc_config_translation
*m
)
220 "Translation: record %d, type %d, quad %d, global %d, local %d\n",
221 mpc_record
, m
->trans_type
, m
->trans_quad
, m
->trans_global
,
224 if (mpc_record
>= MAX_MPC_ENTRY
)
225 printk(KERN_ERR
"MAX_MPC_ENTRY exceeded!\n");
227 translation_table
[mpc_record
] = m
; /* stash this for later */
228 if (m
->trans_quad
< MAX_NUMNODES
&& !node_online(m
->trans_quad
))
229 node_set_online(m
->trans_quad
);
233 * Read/parse the MPC oem tables
236 static void __init
smp_read_mpc_oem(struct mp_config_oemtable
*oemtable
,
237 unsigned short oemsize
)
239 int count
= sizeof(*oemtable
); /* the header size */
240 unsigned char *oemptr
= ((unsigned char *)oemtable
) + count
;
243 printk(KERN_INFO
"Found an OEM MPC table at %8p - parsing it ... \n",
245 if (memcmp(oemtable
->oem_signature
, MPC_OEM_SIGNATURE
, 4)) {
247 "SMP mpc oemtable: bad signature [%c%c%c%c]!\n",
248 oemtable
->oem_signature
[0], oemtable
->oem_signature
[1],
249 oemtable
->oem_signature
[2], oemtable
->oem_signature
[3]);
252 if (mpf_checksum((unsigned char *)oemtable
, oemtable
->oem_length
)) {
253 printk(KERN_WARNING
"SMP oem mptable: checksum error!\n");
256 while (count
< oemtable
->oem_length
) {
260 struct mpc_config_translation
*m
=
261 (struct mpc_config_translation
*)oemptr
;
262 MP_translation_info(m
);
263 oemptr
+= sizeof(*m
);
271 "Unrecognised OEM table entry type! - %d\n",
279 static inline void mps_oem_check(struct mp_config_table
*mpc
, char *oem
,
282 if (strncmp(oem
, "IBM NUMA", 8))
283 printk("Warning! May not be a NUMA-Q system!\n");
285 smp_read_mpc_oem((struct mp_config_oemtable
*)mpc
->mpc_oemptr
,
288 #endif /* CONFIG_X86_NUMAQ */
294 static int __init
smp_read_mpc(struct mp_config_table
*mpc
, unsigned early
)
298 int count
= sizeof(*mpc
);
299 unsigned char *mpt
= ((unsigned char *)mpc
) + count
;
301 if (memcmp(mpc
->mpc_signature
, MPC_SIGNATURE
, 4)) {
302 printk(KERN_ERR
"MPTABLE: bad signature [%c%c%c%c]!\n",
303 mpc
->mpc_signature
[0], mpc
->mpc_signature
[1],
304 mpc
->mpc_signature
[2], mpc
->mpc_signature
[3]);
307 if (mpf_checksum((unsigned char *)mpc
, mpc
->mpc_length
)) {
308 printk(KERN_ERR
"MPTABLE: checksum error!\n");
311 if (mpc
->mpc_spec
!= 0x01 && mpc
->mpc_spec
!= 0x04) {
312 printk(KERN_ERR
"MPTABLE: bad table version (%d)!!\n",
316 if (!mpc
->mpc_lapic
) {
317 printk(KERN_ERR
"MPTABLE: null local APIC address!\n");
320 memcpy(oem
, mpc
->mpc_oem
, 8);
322 printk(KERN_INFO
"MPTABLE: OEM ID: %s\n", oem
);
324 memcpy(str
, mpc
->mpc_productid
, 12);
328 mps_oem_check(mpc
, oem
, str
);
330 printk(KERN_INFO
"MPTABLE: Product ID: %s\n", str
);
332 printk(KERN_INFO
"MPTABLE: APIC at: 0x%X\n", mpc
->mpc_lapic
);
334 /* save the local APIC address, it might be non-default */
336 mp_lapic_addr
= mpc
->mpc_lapic
;
342 * Now process the configuration blocks.
344 #ifdef CONFIG_X86_NUMAQ
347 while (count
< mpc
->mpc_length
) {
351 struct mpc_config_processor
*m
=
352 (struct mpc_config_processor
*)mpt
;
353 /* ACPI may have already provided this data */
355 MP_processor_info(m
);
362 struct mpc_config_bus
*m
=
363 (struct mpc_config_bus
*)mpt
;
371 #ifdef CONFIG_X86_IO_APIC
372 struct mpc_config_ioapic
*m
=
373 (struct mpc_config_ioapic
*)mpt
;
376 mpt
+= sizeof(struct mpc_config_ioapic
);
377 count
+= sizeof(struct mpc_config_ioapic
);
382 #ifdef CONFIG_X86_IO_APIC
383 struct mpc_config_intsrc
*m
=
384 (struct mpc_config_intsrc
*)mpt
;
388 mpt
+= sizeof(struct mpc_config_intsrc
);
389 count
+= sizeof(struct mpc_config_intsrc
);
394 struct mpc_config_lintsrc
*m
=
395 (struct mpc_config_lintsrc
*)mpt
;
403 printk(KERN_ERR
"Your mptable is wrong, contact your HW vendor!\n");
404 printk(KERN_ERR
"type %x\n", *mpt
);
405 print_hex_dump(KERN_ERR
, " ", DUMP_PREFIX_ADDRESS
, 16,
406 1, mpc
, mpc
->mpc_length
, 1);
407 count
= mpc
->mpc_length
;
410 #ifdef CONFIG_X86_NUMAQ
414 setup_apic_routing();
416 printk(KERN_ERR
"MPTABLE: no processors registered!\n");
417 return num_processors
;
420 #ifdef CONFIG_X86_IO_APIC
422 static int __init
ELCR_trigger(unsigned int irq
)
426 port
= 0x4d0 + (irq
>> 3);
427 return (inb(port
) >> (irq
& 7)) & 1;
430 static void __init
construct_default_ioirq_mptable(int mpc_default_type
)
432 struct mpc_config_intsrc intsrc
;
434 int ELCR_fallback
= 0;
436 intsrc
.mpc_type
= MP_INTSRC
;
437 intsrc
.mpc_irqflag
= 0; /* conforming */
438 intsrc
.mpc_srcbus
= 0;
439 intsrc
.mpc_dstapic
= mp_ioapics
[0].mp_apicid
;
441 intsrc
.mpc_irqtype
= mp_INT
;
444 * If true, we have an ISA/PCI system with no IRQ entries
445 * in the MP table. To prevent the PCI interrupts from being set up
446 * incorrectly, we try to use the ELCR. The sanity check to see if
447 * there is good ELCR data is very simple - IRQ0, 1, 2 and 13 can
448 * never be level sensitive, so we simply see if the ELCR agrees.
449 * If it does, we assume it's valid.
451 if (mpc_default_type
== 5) {
452 printk(KERN_INFO
"ISA/PCI bus type with no IRQ information... "
453 "falling back to ELCR\n");
455 if (ELCR_trigger(0) || ELCR_trigger(1) || ELCR_trigger(2) ||
457 printk(KERN_ERR
"ELCR contains invalid data... "
461 "Using ELCR to identify PCI interrupts\n");
466 for (i
= 0; i
< 16; i
++) {
467 switch (mpc_default_type
) {
469 if (i
== 0 || i
== 13)
470 continue; /* IRQ0 & IRQ13 not connected */
474 continue; /* IRQ2 is never connected */
479 * If the ELCR indicates a level-sensitive interrupt, we
480 * copy that information over to the MP table in the
481 * irqflag field (level sensitive, active high polarity).
484 intsrc
.mpc_irqflag
= 13;
486 intsrc
.mpc_irqflag
= 0;
489 intsrc
.mpc_srcbusirq
= i
;
490 intsrc
.mpc_dstirq
= i
? i
: 2; /* IRQ0 to INTIN2 */
491 MP_intsrc_info(&intsrc
);
494 intsrc
.mpc_irqtype
= mp_ExtINT
;
495 intsrc
.mpc_srcbusirq
= 0;
496 intsrc
.mpc_dstirq
= 0; /* 8259A to INTIN0 */
497 MP_intsrc_info(&intsrc
);
502 static inline void __init
construct_default_ISA_mptable(int mpc_default_type
)
504 struct mpc_config_processor processor
;
505 struct mpc_config_bus bus
;
506 #ifdef CONFIG_X86_IO_APIC
507 struct mpc_config_ioapic ioapic
;
509 struct mpc_config_lintsrc lintsrc
;
510 int linttypes
[2] = { mp_ExtINT
, mp_NMI
};
514 * local APIC has default address
516 mp_lapic_addr
= APIC_DEFAULT_PHYS_BASE
;
519 * 2 CPUs, numbered 0 & 1.
521 processor
.mpc_type
= MP_PROCESSOR
;
522 /* Either an integrated APIC or a discrete 82489DX. */
523 processor
.mpc_apicver
= mpc_default_type
> 4 ? 0x10 : 0x01;
524 processor
.mpc_cpuflag
= CPU_ENABLED
;
525 processor
.mpc_cpufeature
= (boot_cpu_data
.x86
<< 8) |
526 (boot_cpu_data
.x86_model
<< 4) | boot_cpu_data
.x86_mask
;
527 processor
.mpc_featureflag
= boot_cpu_data
.x86_capability
[0];
528 processor
.mpc_reserved
[0] = 0;
529 processor
.mpc_reserved
[1] = 0;
530 for (i
= 0; i
< 2; i
++) {
531 processor
.mpc_apicid
= i
;
532 MP_processor_info(&processor
);
535 bus
.mpc_type
= MP_BUS
;
537 switch (mpc_default_type
) {
539 printk(KERN_ERR
"???\nUnknown standard configuration %d\n",
544 memcpy(bus
.mpc_bustype
, "ISA ", 6);
549 memcpy(bus
.mpc_bustype
, "EISA ", 6);
553 memcpy(bus
.mpc_bustype
, "MCA ", 6);
556 if (mpc_default_type
> 4) {
558 memcpy(bus
.mpc_bustype
, "PCI ", 6);
562 #ifdef CONFIG_X86_IO_APIC
563 ioapic
.mpc_type
= MP_IOAPIC
;
564 ioapic
.mpc_apicid
= 2;
565 ioapic
.mpc_apicver
= mpc_default_type
> 4 ? 0x10 : 0x01;
566 ioapic
.mpc_flags
= MPC_APIC_USABLE
;
567 ioapic
.mpc_apicaddr
= 0xFEC00000;
568 MP_ioapic_info(&ioapic
);
571 * We set up most of the low 16 IO-APIC pins according to MPS rules.
573 construct_default_ioirq_mptable(mpc_default_type
);
575 lintsrc
.mpc_type
= MP_LINTSRC
;
576 lintsrc
.mpc_irqflag
= 0; /* conforming */
577 lintsrc
.mpc_srcbusid
= 0;
578 lintsrc
.mpc_srcbusirq
= 0;
579 lintsrc
.mpc_destapic
= MP_APIC_ALL
;
580 for (i
= 0; i
< 2; i
++) {
581 lintsrc
.mpc_irqtype
= linttypes
[i
];
582 lintsrc
.mpc_destapiclint
= i
;
583 MP_lintsrc_info(&lintsrc
);
587 static struct intel_mp_floating
*mpf_found
;
590 * Scan the memory blocks for an SMP configuration block.
592 static void __init
__get_smp_config(unsigned early
)
594 struct intel_mp_floating
*mpf
= mpf_found
;
596 if (acpi_lapic
&& early
)
599 * ACPI supports both logical (e.g. Hyper-Threading) and physical
600 * processors, where MPS only supports physical.
602 if (acpi_lapic
&& acpi_ioapic
) {
603 printk(KERN_INFO
"Using ACPI (MADT) for SMP configuration "
606 } else if (acpi_lapic
)
607 printk(KERN_INFO
"Using ACPI for processor (LAPIC) "
608 "configuration information\n");
610 printk(KERN_INFO
"Intel MultiProcessor Specification v1.%d\n",
611 mpf
->mpf_specification
);
613 if (mpf
->mpf_feature2
& (1 << 7)) {
614 printk(KERN_INFO
" IMCR and PIC compatibility mode.\n");
617 printk(KERN_INFO
" Virtual Wire compatibility mode.\n");
622 * Now see if we need to read further.
624 if (mpf
->mpf_feature1
!= 0) {
627 * local APIC has default address
629 mp_lapic_addr
= APIC_DEFAULT_PHYS_BASE
;
633 printk(KERN_INFO
"Default MP configuration #%d\n",
635 construct_default_ISA_mptable(mpf
->mpf_feature1
);
637 } else if (mpf
->mpf_physptr
) {
640 * Read the physical hardware table. Anything here will
641 * override the defaults.
643 if (!smp_read_mpc(phys_to_virt(mpf
->mpf_physptr
), early
)) {
644 smp_found_config
= 0;
646 "BIOS bug, MP table errors detected!...\n");
647 printk(KERN_ERR
"... disabling SMP support. "
648 "(tell your hw vendor)\n");
654 #ifdef CONFIG_X86_IO_APIC
656 * If there are no explicit MP IRQ entries, then we are
657 * broken. We set up most of the low 16 IO-APIC pins to
658 * ISA defaults and hope it will work.
660 if (!mp_irq_entries
) {
661 struct mpc_config_bus bus
;
663 printk(KERN_ERR
"BIOS bug, no explicit IRQ entries, "
664 "using default mptable. "
665 "(tell your hw vendor)\n");
667 bus
.mpc_type
= MP_BUS
;
669 memcpy(bus
.mpc_bustype
, "ISA ", 6);
672 construct_default_ioirq_mptable(0);
679 printk(KERN_INFO
"Processors: %d\n", num_processors
);
681 * Only use the first configuration found.
685 void __init
early_get_smp_config(void)
690 void __init
get_smp_config(void)
695 static int __init
smp_scan_config(unsigned long base
, unsigned long length
,
698 unsigned int *bp
= phys_to_virt(base
);
699 struct intel_mp_floating
*mpf
;
701 printk(KERN_DEBUG
"Scan SMP from %p for %ld bytes.\n", bp
, length
);
702 BUILD_BUG_ON(sizeof(*mpf
) != 16);
705 mpf
= (struct intel_mp_floating
*)bp
;
706 if ((*bp
== SMP_MAGIC_IDENT
) &&
707 (mpf
->mpf_length
== 1) &&
708 !mpf_checksum((unsigned char *)bp
, 16) &&
709 ((mpf
->mpf_specification
== 1)
710 || (mpf
->mpf_specification
== 4))) {
712 smp_found_config
= 1;
715 printk(KERN_INFO
"found SMP MP-table at [%p] %08lx\n",
716 mpf
, virt_to_phys(mpf
));
717 reserve_bootmem(virt_to_phys(mpf
), PAGE_SIZE
,
719 if (mpf
->mpf_physptr
) {
721 * We cannot access to MPC table to compute
722 * table size yet, as only few megabytes from
723 * the bottom is mapped now.
724 * PC-9800's MPC table places on the very last
725 * of physical memory; so that simply reserving
726 * PAGE_SIZE from mpg->mpf_physptr yields BUG()
727 * in reserve_bootmem.
729 unsigned long size
= PAGE_SIZE
;
730 unsigned long end
= max_low_pfn
* PAGE_SIZE
;
731 if (mpf
->mpf_physptr
+ size
> end
)
732 size
= end
- mpf
->mpf_physptr
;
733 reserve_bootmem(mpf
->mpf_physptr
, size
,
741 reserve_bootmem_generic(virt_to_phys(mpf
), PAGE_SIZE
);
742 if (mpf
->mpf_physptr
)
743 reserve_bootmem_generic(mpf
->mpf_physptr
,
754 static void __init
__find_smp_config(unsigned reserve
)
756 unsigned int address
;
759 * FIXME: Linux assumes you have 640K of base ram..
760 * this continues the error...
762 * 1) Scan the bottom 1K for a signature
763 * 2) Scan the top 1K of base RAM
764 * 3) Scan the 64K of bios
766 if (smp_scan_config(0x0, 0x400, reserve
) ||
767 smp_scan_config(639 * 0x400, 0x400, reserve
) ||
768 smp_scan_config(0xF0000, 0x10000, reserve
))
771 * If it is an SMP machine we should know now, unless the
772 * configuration is in an EISA/MCA bus machine with an
773 * extended bios data area.
775 * there is a real-mode segmented pointer pointing to the
776 * 4K EBDA area at 0x40E, calculate and scan it here.
778 * NOTE! There are Linux loaders that will corrupt the EBDA
779 * area, and as such this kind of SMP config may be less
780 * trustworthy, simply because the SMP table may have been
781 * stomped on during early boot. These loaders are buggy and
784 * MP1.4 SPEC states to only scan first 1K of 4K EBDA.
787 address
= get_bios_ebda();
789 smp_scan_config(address
, 0x400, reserve
);
792 void __init
early_find_smp_config(void)
794 __find_smp_config(0);
797 void __init
find_smp_config(void)
799 __find_smp_config(1);