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>
9 * Erich Boleyn : MP v1.4 and additional changes.
10 * Alan Cox : Added EBDA scanning
11 * Ingo Molnar : various cleanups and rewrites
12 * Maciej W. Rozycki: Bits for default MP configurations
13 * Paul Diefenbaugh: Added full ACPI support
17 #include <linux/irq.h>
18 #include <linux/init.h>
19 #include <linux/acpi.h>
20 #include <linux/delay.h>
21 #include <linux/config.h>
22 #include <linux/bootmem.h>
23 #include <linux/smp_lock.h>
24 #include <linux/kernel_stat.h>
25 #include <linux/mc146818rtc.h>
26 #include <linux/bitops.h>
31 #include <asm/mpspec.h>
32 #include <asm/io_apic.h>
34 #include <mach_apic.h>
35 #include <mach_mpparse.h>
36 #include <bios_ebda.h>
38 /* Have we found an MP table */
40 unsigned int __initdata maxcpus = NR_CPUS;
43 * Various Linux-internal data structures created from the
46 int apic_version [MAX_APICS];
47 int mp_bus_id_to_type [MAX_MP_BUSSES];
48 int mp_bus_id_to_node [MAX_MP_BUSSES];
49 int mp_bus_id_to_local [MAX_MP_BUSSES];
50 int quad_local_to_mp_bus_id [NR_CPUS/4][4];
51 int mp_bus_id_to_pci_bus [MAX_MP_BUSSES] = { [0 ... MAX_MP_BUSSES-1] = -1 };
52 static int mp_current_pci_id;
54 /* I/O APIC entries */
55 struct mpc_config_ioapic mp_ioapics[MAX_IO_APICS];
57 /* # of MP IRQ source entries */
58 struct mpc_config_intsrc mp_irqs[MAX_IRQ_SOURCES];
60 /* MP IRQ source entries */
66 unsigned long mp_lapic_addr;
68 /* Processor that is doing the boot up */
69 unsigned int boot_cpu_physical_apicid = -1U;
70 /* Internal processor count */
71 static unsigned int __initdata num_processors;
73 /* Bitmask of physically existing CPUs */
74 physid_mask_t phys_cpu_present_map;
76 u8 bios_cpu_apicid[NR_CPUS] = { [0 ... NR_CPUS-1] = BAD_APICID };
79 * Intel MP BIOS table parsing routines:
84 * Checksum an MP configuration block.
87 static int __init mpf_checksum(unsigned char *mp, int len)
98 * Have to match translation table entries to main table entries by counter
99 * hence the mpc_record variable .... can't see a less disgusting way of
103 static int mpc_record;
104 static struct mpc_config_translation *translation_table[MAX_MPC_ENTRY] __initdata;
106 #ifdef CONFIG_X86_NUMAQ
107 static int MP_valid_apicid(int apicid, int version)
109 return hweight_long(apicid & 0xf) == 1 && (apicid >> 4) != 0xf;
112 static int MP_valid_apicid(int apicid, int version)
115 return apicid < 0xff;
121 static void __init MP_processor_info (struct mpc_config_processor *m)
126 if (!(m->mpc_cpuflag & CPU_ENABLED))
129 apicid = mpc_apic_id(m, translation_table[mpc_record]);
131 if (m->mpc_featureflag&(1<<0))
132 Dprintk(" Floating point unit present.\n");
133 if (m->mpc_featureflag&(1<<7))
134 Dprintk(" Machine Exception supported.\n");
135 if (m->mpc_featureflag&(1<<8))
136 Dprintk(" 64 bit compare & exchange supported.\n");
137 if (m->mpc_featureflag&(1<<9))
138 Dprintk(" Internal APIC present.\n");
139 if (m->mpc_featureflag&(1<<11))
140 Dprintk(" SEP present.\n");
141 if (m->mpc_featureflag&(1<<12))
142 Dprintk(" MTRR present.\n");
143 if (m->mpc_featureflag&(1<<13))
144 Dprintk(" PGE present.\n");
145 if (m->mpc_featureflag&(1<<14))
146 Dprintk(" MCA present.\n");
147 if (m->mpc_featureflag&(1<<15))
148 Dprintk(" CMOV present.\n");
149 if (m->mpc_featureflag&(1<<16))
150 Dprintk(" PAT present.\n");
151 if (m->mpc_featureflag&(1<<17))
152 Dprintk(" PSE present.\n");
153 if (m->mpc_featureflag&(1<<18))
154 Dprintk(" PSN present.\n");
155 if (m->mpc_featureflag&(1<<19))
156 Dprintk(" Cache Line Flush Instruction present.\n");
158 if (m->mpc_featureflag&(1<<21))
159 Dprintk(" Debug Trace and EMON Store present.\n");
160 if (m->mpc_featureflag&(1<<22))
161 Dprintk(" ACPI Thermal Throttle Registers present.\n");
162 if (m->mpc_featureflag&(1<<23))
163 Dprintk(" MMX present.\n");
164 if (m->mpc_featureflag&(1<<24))
165 Dprintk(" FXSR present.\n");
166 if (m->mpc_featureflag&(1<<25))
167 Dprintk(" XMM present.\n");
168 if (m->mpc_featureflag&(1<<26))
169 Dprintk(" Willamette New Instructions present.\n");
170 if (m->mpc_featureflag&(1<<27))
171 Dprintk(" Self Snoop present.\n");
172 if (m->mpc_featureflag&(1<<28))
173 Dprintk(" HT present.\n");
174 if (m->mpc_featureflag&(1<<29))
175 Dprintk(" Thermal Monitor present.\n");
176 /* 30, 31 Reserved */
179 if (m->mpc_cpuflag & CPU_BOOTPROCESSOR) {
180 Dprintk(" Bootup CPU\n");
181 boot_cpu_physical_apicid = m->mpc_apicid;
184 if (num_processors >= NR_CPUS) {
185 printk(KERN_WARNING "WARNING: NR_CPUS limit of %i reached."
186 " Processor ignored.\n", NR_CPUS);
190 if (num_processors >= maxcpus) {
191 printk(KERN_WARNING "WARNING: maxcpus limit of %i reached."
192 " Processor ignored.\n", maxcpus);
196 ver = m->mpc_apicver;
198 if (!MP_valid_apicid(apicid, ver)) {
199 printk(KERN_WARNING "Processor #%d INVALID. (Max ID: %d).\n",
200 m->mpc_apicid, MAX_APICS);
205 tmp = apicid_to_cpu_present(apicid);
206 physids_or(phys_cpu_present_map, phys_cpu_present_map, tmp);
212 printk(KERN_WARNING "BIOS bug, APIC version is 0 for CPU#%d! fixing up to 0x10. (tell your hw vendor)\n", m->mpc_apicid);
215 apic_version[m->mpc_apicid] = ver;
216 bios_cpu_apicid[num_processors - 1] = m->mpc_apicid;
219 static void __init MP_bus_info (struct mpc_config_bus *m)
223 memcpy(str, m->mpc_bustype, 6);
226 mpc_oem_bus_info(m, str, translation_table[mpc_record]);
228 if (strncmp(str, BUSTYPE_ISA, sizeof(BUSTYPE_ISA)-1) == 0) {
229 mp_bus_id_to_type[m->mpc_busid] = MP_BUS_ISA;
230 } else if (strncmp(str, BUSTYPE_EISA, sizeof(BUSTYPE_EISA)-1) == 0) {
231 mp_bus_id_to_type[m->mpc_busid] = MP_BUS_EISA;
232 } else if (strncmp(str, BUSTYPE_PCI, sizeof(BUSTYPE_PCI)-1) == 0) {
233 mpc_oem_pci_bus(m, translation_table[mpc_record]);
234 mp_bus_id_to_type[m->mpc_busid] = MP_BUS_PCI;
235 mp_bus_id_to_pci_bus[m->mpc_busid] = mp_current_pci_id;
237 } else if (strncmp(str, BUSTYPE_MCA, sizeof(BUSTYPE_MCA)-1) == 0) {
238 mp_bus_id_to_type[m->mpc_busid] = MP_BUS_MCA;
239 } else if (strncmp(str, BUSTYPE_NEC98, sizeof(BUSTYPE_NEC98)-1) == 0) {
240 mp_bus_id_to_type[m->mpc_busid] = MP_BUS_NEC98;
242 printk(KERN_WARNING "Unknown bustype %s - ignoring\n", str);
246 static void __init MP_ioapic_info (struct mpc_config_ioapic *m)
248 if (!(m->mpc_flags & MPC_APIC_USABLE))
251 printk(KERN_INFO "I/O APIC #%d Version %d at 0x%lX.\n",
252 m->mpc_apicid, m->mpc_apicver, m->mpc_apicaddr);
253 if (nr_ioapics >= MAX_IO_APICS) {
254 printk(KERN_CRIT "Max # of I/O APICs (%d) exceeded (found %d).\n",
255 MAX_IO_APICS, nr_ioapics);
256 panic("Recompile kernel with bigger MAX_IO_APICS!.\n");
258 if (!m->mpc_apicaddr) {
259 printk(KERN_ERR "WARNING: bogus zero I/O APIC address"
260 " found in MP table, skipping!\n");
263 mp_ioapics[nr_ioapics] = *m;
267 static void __init MP_intsrc_info (struct mpc_config_intsrc *m)
269 mp_irqs [mp_irq_entries] = *m;
270 Dprintk("Int: type %d, pol %d, trig %d, bus %d,"
271 " IRQ %02x, APIC ID %x, APIC INT %02x\n",
272 m->mpc_irqtype, m->mpc_irqflag & 3,
273 (m->mpc_irqflag >> 2) & 3, m->mpc_srcbus,
274 m->mpc_srcbusirq, m->mpc_dstapic, m->mpc_dstirq);
275 if (++mp_irq_entries == MAX_IRQ_SOURCES)
276 panic("Max # of irq sources exceeded!!\n");
279 static void __init MP_lintsrc_info (struct mpc_config_lintsrc *m)
281 Dprintk("Lint: type %d, pol %d, trig %d, bus %d,"
282 " IRQ %02x, APIC ID %x, APIC LINT %02x\n",
283 m->mpc_irqtype, m->mpc_irqflag & 3,
284 (m->mpc_irqflag >> 2) &3, m->mpc_srcbusid,
285 m->mpc_srcbusirq, m->mpc_destapic, m->mpc_destapiclint);
287 * Well it seems all SMP boards in existence
288 * use ExtINT/LVT1 == LINT0 and
289 * NMI/LVT2 == LINT1 - the following check
290 * will show us if this assumptions is false.
291 * Until then we do not have to add baggage.
293 if ((m->mpc_irqtype == mp_ExtINT) &&
294 (m->mpc_destapiclint != 0))
296 if ((m->mpc_irqtype == mp_NMI) &&
297 (m->mpc_destapiclint != 1))
301 #ifdef CONFIG_X86_NUMAQ
302 static void __init MP_translation_info (struct mpc_config_translation *m)
304 printk(KERN_INFO "Translation: record %d, type %d, quad %d, global %d, local %d\n", mpc_record, m->trans_type, m->trans_quad, m->trans_global, m->trans_local);
306 if (mpc_record >= MAX_MPC_ENTRY)
307 printk(KERN_ERR "MAX_MPC_ENTRY exceeded!\n");
309 translation_table[mpc_record] = m; /* stash this for later */
310 if (m->trans_quad < MAX_NUMNODES && !node_online(m->trans_quad))
311 node_set_online(m->trans_quad);
315 * Read/parse the MPC oem tables
318 static void __init smp_read_mpc_oem(struct mp_config_oemtable *oemtable, \
319 unsigned short oemsize)
321 int count = sizeof (*oemtable); /* the header size */
322 unsigned char *oemptr = ((unsigned char *)oemtable)+count;
325 printk(KERN_INFO "Found an OEM MPC table at %8p - parsing it ... \n", oemtable);
326 if (memcmp(oemtable->oem_signature,MPC_OEM_SIGNATURE,4))
328 printk(KERN_WARNING "SMP mpc oemtable: bad signature [%c%c%c%c]!\n",
329 oemtable->oem_signature[0],
330 oemtable->oem_signature[1],
331 oemtable->oem_signature[2],
332 oemtable->oem_signature[3]);
335 if (mpf_checksum((unsigned char *)oemtable,oemtable->oem_length))
337 printk(KERN_WARNING "SMP oem mptable: checksum error!\n");
340 while (count < oemtable->oem_length) {
344 struct mpc_config_translation *m=
345 (struct mpc_config_translation *)oemptr;
346 MP_translation_info(m);
347 oemptr += sizeof(*m);
354 printk(KERN_WARNING "Unrecognised OEM table entry type! - %d\n", (int) *oemptr);
361 static inline void mps_oem_check(struct mp_config_table *mpc, char *oem,
364 if (strncmp(oem, "IBM NUMA", 8))
365 printk("Warning! May not be a NUMA-Q system!\n");
367 smp_read_mpc_oem((struct mp_config_oemtable *) mpc->mpc_oemptr,
370 #endif /* CONFIG_X86_NUMAQ */
376 static int __init smp_read_mpc(struct mp_config_table *mpc)
380 int count=sizeof(*mpc);
381 unsigned char *mpt=((unsigned char *)mpc)+count;
383 if (memcmp(mpc->mpc_signature,MPC_SIGNATURE,4)) {
384 printk(KERN_ERR "SMP mptable: bad signature [0x%x]!\n",
385 *(u32 *)mpc->mpc_signature);
388 if (mpf_checksum((unsigned char *)mpc,mpc->mpc_length)) {
389 printk(KERN_ERR "SMP mptable: checksum error!\n");
392 if (mpc->mpc_spec!=0x01 && mpc->mpc_spec!=0x04) {
393 printk(KERN_ERR "SMP mptable: bad table version (%d)!!\n",
397 if (!mpc->mpc_lapic) {
398 printk(KERN_ERR "SMP mptable: null local APIC address!\n");
401 memcpy(oem,mpc->mpc_oem,8);
403 printk(KERN_INFO "OEM ID: %s ",oem);
405 memcpy(str,mpc->mpc_productid,12);
407 printk("Product ID: %s ",str);
409 mps_oem_check(mpc, oem, str);
411 printk("APIC at: 0x%lX\n",mpc->mpc_lapic);
414 * Save the local APIC address (it might be non-default) -- but only
415 * if we're not using ACPI.
418 mp_lapic_addr = mpc->mpc_lapic;
421 * Now process the configuration blocks.
424 while (count < mpc->mpc_length) {
428 struct mpc_config_processor *m=
429 (struct mpc_config_processor *)mpt;
430 /* ACPI may have already provided this data */
432 MP_processor_info(m);
439 struct mpc_config_bus *m=
440 (struct mpc_config_bus *)mpt;
448 struct mpc_config_ioapic *m=
449 (struct mpc_config_ioapic *)mpt;
457 struct mpc_config_intsrc *m=
458 (struct mpc_config_intsrc *)mpt;
467 struct mpc_config_lintsrc *m=
468 (struct mpc_config_lintsrc *)mpt;
476 count = mpc->mpc_length;
482 clustered_apic_check();
484 printk(KERN_ERR "SMP mptable: no processors registered!\n");
485 return num_processors;
488 static int __init ELCR_trigger(unsigned int irq)
492 port = 0x4d0 + (irq >> 3);
493 return (inb(port) >> (irq & 7)) & 1;
496 static void __init construct_default_ioirq_mptable(int mpc_default_type)
498 struct mpc_config_intsrc intsrc;
500 int ELCR_fallback = 0;
502 intsrc.mpc_type = MP_INTSRC;
503 intsrc.mpc_irqflag = 0; /* conforming */
504 intsrc.mpc_srcbus = 0;
505 intsrc.mpc_dstapic = mp_ioapics[0].mpc_apicid;
507 intsrc.mpc_irqtype = mp_INT;
510 * If true, we have an ISA/PCI system with no IRQ entries
511 * in the MP table. To prevent the PCI interrupts from being set up
512 * incorrectly, we try to use the ELCR. The sanity check to see if
513 * there is good ELCR data is very simple - IRQ0, 1, 2 and 13 can
514 * never be level sensitive, so we simply see if the ELCR agrees.
515 * If it does, we assume it's valid.
517 if (mpc_default_type == 5) {
518 printk(KERN_INFO "ISA/PCI bus type with no IRQ information... falling back to ELCR\n");
520 if (ELCR_trigger(0) || ELCR_trigger(1) || ELCR_trigger(2) || ELCR_trigger(13))
521 printk(KERN_WARNING "ELCR contains invalid data... not using ELCR\n");
523 printk(KERN_INFO "Using ELCR to identify PCI interrupts\n");
528 for (i = 0; i < 16; i++) {
529 switch (mpc_default_type) {
531 if (i == 0 || i == 13)
532 continue; /* IRQ0 & IRQ13 not connected */
536 continue; /* IRQ2 is never connected */
541 * If the ELCR indicates a level-sensitive interrupt, we
542 * copy that information over to the MP table in the
543 * irqflag field (level sensitive, active high polarity).
546 intsrc.mpc_irqflag = 13;
548 intsrc.mpc_irqflag = 0;
551 intsrc.mpc_srcbusirq = i;
552 intsrc.mpc_dstirq = i ? i : 2; /* IRQ0 to INTIN2 */
553 MP_intsrc_info(&intsrc);
556 intsrc.mpc_irqtype = mp_ExtINT;
557 intsrc.mpc_srcbusirq = 0;
558 intsrc.mpc_dstirq = 0; /* 8259A to INTIN0 */
559 MP_intsrc_info(&intsrc);
562 static inline void __init construct_default_ISA_mptable(int mpc_default_type)
564 struct mpc_config_processor processor;
565 struct mpc_config_bus bus;
566 struct mpc_config_ioapic ioapic;
567 struct mpc_config_lintsrc lintsrc;
568 int linttypes[2] = { mp_ExtINT, mp_NMI };
572 * local APIC has default address
574 mp_lapic_addr = APIC_DEFAULT_PHYS_BASE;
577 * 2 CPUs, numbered 0 & 1.
579 processor.mpc_type = MP_PROCESSOR;
580 /* Either an integrated APIC or a discrete 82489DX. */
581 processor.mpc_apicver = mpc_default_type > 4 ? 0x10 : 0x01;
582 processor.mpc_cpuflag = CPU_ENABLED;
583 processor.mpc_cpufeature = (boot_cpu_data.x86 << 8) |
584 (boot_cpu_data.x86_model << 4) |
585 boot_cpu_data.x86_mask;
586 processor.mpc_featureflag = boot_cpu_data.x86_capability[0];
587 processor.mpc_reserved[0] = 0;
588 processor.mpc_reserved[1] = 0;
589 for (i = 0; i < 2; i++) {
590 processor.mpc_apicid = i;
591 MP_processor_info(&processor);
594 bus.mpc_type = MP_BUS;
596 switch (mpc_default_type) {
599 printk(KERN_ERR "Unknown standard configuration %d\n",
604 memcpy(bus.mpc_bustype, "ISA ", 6);
609 memcpy(bus.mpc_bustype, "EISA ", 6);
613 memcpy(bus.mpc_bustype, "MCA ", 6);
616 if (mpc_default_type > 4) {
618 memcpy(bus.mpc_bustype, "PCI ", 6);
622 ioapic.mpc_type = MP_IOAPIC;
623 ioapic.mpc_apicid = 2;
624 ioapic.mpc_apicver = mpc_default_type > 4 ? 0x10 : 0x01;
625 ioapic.mpc_flags = MPC_APIC_USABLE;
626 ioapic.mpc_apicaddr = 0xFEC00000;
627 MP_ioapic_info(&ioapic);
630 * We set up most of the low 16 IO-APIC pins according to MPS rules.
632 construct_default_ioirq_mptable(mpc_default_type);
634 lintsrc.mpc_type = MP_LINTSRC;
635 lintsrc.mpc_irqflag = 0; /* conforming */
636 lintsrc.mpc_srcbusid = 0;
637 lintsrc.mpc_srcbusirq = 0;
638 lintsrc.mpc_destapic = MP_APIC_ALL;
639 for (i = 0; i < 2; i++) {
640 lintsrc.mpc_irqtype = linttypes[i];
641 lintsrc.mpc_destapiclint = i;
642 MP_lintsrc_info(&lintsrc);
646 static struct intel_mp_floating *mpf_found;
649 * Scan the memory blocks for an SMP configuration block.
651 void __init get_smp_config (void)
653 struct intel_mp_floating *mpf = mpf_found;
656 * ACPI may be used to obtain the entire SMP configuration or just to
657 * enumerate/configure processors (CONFIG_ACPI_BOOT). Note that
658 * ACPI supports both logical (e.g. Hyper-Threading) and physical
659 * processors, where MPS only supports physical.
661 if (acpi_lapic && acpi_ioapic) {
662 printk(KERN_INFO "Using ACPI (MADT) for SMP configuration information\n");
666 printk(KERN_INFO "Using ACPI for processor (LAPIC) configuration information\n");
668 printk(KERN_INFO "Intel MultiProcessor Specification v1.%d\n", mpf->mpf_specification);
669 if (mpf->mpf_feature2 & (1<<7)) {
670 printk(KERN_INFO " IMCR and PIC compatibility mode.\n");
673 printk(KERN_INFO " Virtual Wire compatibility mode.\n");
678 * Now see if we need to read further.
680 if (mpf->mpf_feature1 != 0) {
682 printk(KERN_INFO "Default MP configuration #%d\n", mpf->mpf_feature1);
683 construct_default_ISA_mptable(mpf->mpf_feature1);
685 } else if (mpf->mpf_physptr) {
688 * Read the physical hardware table. Anything here will
689 * override the defaults.
691 if (!smp_read_mpc((void *)mpf->mpf_physptr)) {
692 smp_found_config = 0;
693 printk(KERN_ERR "BIOS bug, MP table errors detected!...\n");
694 printk(KERN_ERR "... disabling SMP support. (tell your hw vendor)\n");
698 * If there are no explicit MP IRQ entries, then we are
699 * broken. We set up most of the low 16 IO-APIC pins to
700 * ISA defaults and hope it will work.
702 if (!mp_irq_entries) {
703 struct mpc_config_bus bus;
705 printk(KERN_ERR "BIOS bug, no explicit IRQ entries, using default mptable. (tell your hw vendor)\n");
707 bus.mpc_type = MP_BUS;
709 memcpy(bus.mpc_bustype, "ISA ", 6);
712 construct_default_ioirq_mptable(0);
718 printk(KERN_INFO "Processors: %d\n", num_processors);
720 * Only use the first configuration found.
724 static int __init smp_scan_config (unsigned long base, unsigned long length)
726 unsigned long *bp = phys_to_virt(base);
727 struct intel_mp_floating *mpf;
729 Dprintk("Scan SMP from %p for %ld bytes.\n", bp,length);
730 if (sizeof(*mpf) != 16)
731 printk("Error: MPF size\n");
734 mpf = (struct intel_mp_floating *)bp;
735 if ((*bp == SMP_MAGIC_IDENT) &&
736 (mpf->mpf_length == 1) &&
737 !mpf_checksum((unsigned char *)bp, 16) &&
738 ((mpf->mpf_specification == 1)
739 || (mpf->mpf_specification == 4)) ) {
741 smp_found_config = 1;
742 printk(KERN_INFO "found SMP MP-table at %08lx\n",
744 reserve_bootmem(virt_to_phys(mpf), PAGE_SIZE);
745 if (mpf->mpf_physptr) {
747 * We cannot access to MPC table to compute
748 * table size yet, as only few megabytes from
749 * the bottom is mapped now.
750 * PC-9800's MPC table places on the very last
751 * of physical memory; so that simply reserving
752 * PAGE_SIZE from mpg->mpf_physptr yields BUG()
753 * in reserve_bootmem.
755 unsigned long size = PAGE_SIZE;
756 unsigned long end = max_low_pfn * PAGE_SIZE;
757 if (mpf->mpf_physptr + size > end)
758 size = end - mpf->mpf_physptr;
759 reserve_bootmem(mpf->mpf_physptr, size);
771 void __init find_smp_config (void)
773 unsigned int address;
776 * FIXME: Linux assumes you have 640K of base ram..
777 * this continues the error...
779 * 1) Scan the bottom 1K for a signature
780 * 2) Scan the top 1K of base RAM
781 * 3) Scan the 64K of bios
783 if (smp_scan_config(0x0,0x400) ||
784 smp_scan_config(639*0x400,0x400) ||
785 smp_scan_config(0xF0000,0x10000))
788 * If it is an SMP machine we should know now, unless the
789 * configuration is in an EISA/MCA bus machine with an
790 * extended bios data area.
792 * there is a real-mode segmented pointer pointing to the
793 * 4K EBDA area at 0x40E, calculate and scan it here.
795 * NOTE! There are Linux loaders that will corrupt the EBDA
796 * area, and as such this kind of SMP config may be less
797 * trustworthy, simply because the SMP table may have been
798 * stomped on during early boot. These loaders are buggy and
801 * MP1.4 SPEC states to only scan first 1K of 4K EBDA.
804 address = get_bios_ebda();
806 smp_scan_config(address, 0x400);
809 /* --------------------------------------------------------------------------
810 ACPI-based MP Configuration
811 -------------------------------------------------------------------------- */
813 #ifdef CONFIG_ACPI_BOOT
815 void __init mp_register_lapic_address (
818 mp_lapic_addr = (unsigned long) address;
820 set_fixmap_nocache(FIX_APIC_BASE, mp_lapic_addr);
822 if (boot_cpu_physical_apicid == -1U)
823 boot_cpu_physical_apicid = GET_APIC_ID(apic_read(APIC_ID));
825 Dprintk("Boot CPU = %d\n", boot_cpu_physical_apicid);
829 void __init mp_register_lapic (
833 struct mpc_config_processor processor;
836 if (MAX_APICS - id <= 0) {
837 printk(KERN_WARNING "Processor #%d invalid (max %d)\n",
842 if (id == boot_cpu_physical_apicid)
845 processor.mpc_type = MP_PROCESSOR;
846 processor.mpc_apicid = id;
847 processor.mpc_apicver = GET_APIC_VERSION(apic_read(APIC_LVR));
848 processor.mpc_cpuflag = (enabled ? CPU_ENABLED : 0);
849 processor.mpc_cpuflag |= (boot_cpu ? CPU_BOOTPROCESSOR : 0);
850 processor.mpc_cpufeature = (boot_cpu_data.x86 << 8) |
851 (boot_cpu_data.x86_model << 4) | boot_cpu_data.x86_mask;
852 processor.mpc_featureflag = boot_cpu_data.x86_capability[0];
853 processor.mpc_reserved[0] = 0;
854 processor.mpc_reserved[1] = 0;
856 MP_processor_info(&processor);
859 #if defined(CONFIG_X86_IO_APIC) && (defined(CONFIG_ACPI_INTERPRETER) || defined(CONFIG_ACPI_BOOT))
862 #define MP_MAX_IOAPIC_PIN 127
864 static struct mp_ioapic_routing {
868 u32 pin_programmed[4];
869 } mp_ioapic_routing[MAX_IO_APICS];
872 static int mp_find_ioapic (
877 /* Find the IOAPIC that manages this GSI. */
878 for (i = 0; i < nr_ioapics; i++) {
879 if ((gsi >= mp_ioapic_routing[i].gsi_base)
880 && (gsi <= mp_ioapic_routing[i].gsi_end))
884 printk(KERN_ERR "ERROR: Unable to locate IOAPIC for GSI %d\n", gsi);
890 void __init mp_register_ioapic (
897 if (nr_ioapics >= MAX_IO_APICS) {
898 printk(KERN_ERR "ERROR: Max # of I/O APICs (%d) exceeded "
899 "(found %d)\n", MAX_IO_APICS, nr_ioapics);
900 panic("Recompile kernel with bigger MAX_IO_APICS!\n");
903 printk(KERN_ERR "WARNING: Bogus (zero) I/O APIC address"
904 " found in MADT table, skipping!\n");
910 mp_ioapics[idx].mpc_type = MP_IOAPIC;
911 mp_ioapics[idx].mpc_flags = MPC_APIC_USABLE;
912 mp_ioapics[idx].mpc_apicaddr = address;
914 set_fixmap_nocache(FIX_IO_APIC_BASE_0 + idx, address);
915 if ((boot_cpu_data.x86_vendor == X86_VENDOR_INTEL) && (boot_cpu_data.x86 < 15))
916 mp_ioapics[idx].mpc_apicid = io_apic_get_unique_id(idx, id);
918 mp_ioapics[idx].mpc_apicid = id;
919 mp_ioapics[idx].mpc_apicver = io_apic_get_version(idx);
922 * Build basic GSI lookup table to facilitate gsi->io_apic lookups
923 * and to prevent reprogramming of IOAPIC pins (PCI GSIs).
925 mp_ioapic_routing[idx].apic_id = mp_ioapics[idx].mpc_apicid;
926 mp_ioapic_routing[idx].gsi_base = gsi_base;
927 mp_ioapic_routing[idx].gsi_end = gsi_base +
928 io_apic_get_redir_entries(idx);
930 printk("IOAPIC[%d]: apic_id %d, version %d, address 0x%lx, "
931 "GSI %d-%d\n", idx, mp_ioapics[idx].mpc_apicid,
932 mp_ioapics[idx].mpc_apicver, mp_ioapics[idx].mpc_apicaddr,
933 mp_ioapic_routing[idx].gsi_base,
934 mp_ioapic_routing[idx].gsi_end);
940 void __init mp_override_legacy_irq (
946 struct mpc_config_intsrc intsrc;
951 * Convert 'gsi' to 'ioapic.pin'.
953 ioapic = mp_find_ioapic(gsi);
956 pin = gsi - mp_ioapic_routing[ioapic].gsi_base;
959 * TBD: This check is for faulty timer entries, where the override
960 * erroneously sets the trigger to level, resulting in a HUGE
961 * increase of timer interrupts!
963 if ((bus_irq == 0) && (trigger == 3))
966 intsrc.mpc_type = MP_INTSRC;
967 intsrc.mpc_irqtype = mp_INT;
968 intsrc.mpc_irqflag = (trigger << 2) | polarity;
969 intsrc.mpc_srcbus = MP_ISA_BUS;
970 intsrc.mpc_srcbusirq = bus_irq; /* IRQ */
971 intsrc.mpc_dstapic = mp_ioapics[ioapic].mpc_apicid; /* APIC ID */
972 intsrc.mpc_dstirq = pin; /* INTIN# */
974 Dprintk("Int: type %d, pol %d, trig %d, bus %d, irq %d, %d-%d\n",
975 intsrc.mpc_irqtype, intsrc.mpc_irqflag & 3,
976 (intsrc.mpc_irqflag >> 2) & 3, intsrc.mpc_srcbus,
977 intsrc.mpc_srcbusirq, intsrc.mpc_dstapic, intsrc.mpc_dstirq);
979 mp_irqs[mp_irq_entries] = intsrc;
980 if (++mp_irq_entries == MAX_IRQ_SOURCES)
981 panic("Max # of irq sources exceeded!\n");
988 void __init mp_config_acpi_legacy_irqs (void)
990 struct mpc_config_intsrc intsrc;
995 * Fabricate the legacy ISA bus (bus #31).
997 mp_bus_id_to_type[MP_ISA_BUS] = MP_BUS_ISA;
998 Dprintk("Bus #%d is ISA\n", MP_ISA_BUS);
1001 * Older generations of ES7000 have no legacy identity mappings
1003 if (es7000_plat == 1)
1007 * Locate the IOAPIC that manages the ISA IRQs (0-15).
1009 ioapic = mp_find_ioapic(0);
1013 intsrc.mpc_type = MP_INTSRC;
1014 intsrc.mpc_irqflag = 0; /* Conforming */
1015 intsrc.mpc_srcbus = MP_ISA_BUS;
1016 intsrc.mpc_dstapic = mp_ioapics[ioapic].mpc_apicid;
1019 * Use the default configuration for the IRQs 0-15. Unless
1020 * overriden by (MADT) interrupt source override entries.
1022 for (i = 0; i < 16; i++) {
1025 for (idx = 0; idx < mp_irq_entries; idx++) {
1026 struct mpc_config_intsrc *irq = mp_irqs + idx;
1028 /* Do we already have a mapping for this ISA IRQ? */
1029 if (irq->mpc_srcbus == MP_ISA_BUS && irq->mpc_srcbusirq == i)
1032 /* Do we already have a mapping for this IOAPIC pin */
1033 if ((irq->mpc_dstapic == intsrc.mpc_dstapic) &&
1034 (irq->mpc_dstirq == i))
1038 if (idx != mp_irq_entries) {
1039 printk(KERN_DEBUG "ACPI: IRQ%d used by override.\n", i);
1040 continue; /* IRQ already used */
1043 intsrc.mpc_irqtype = mp_INT;
1044 intsrc.mpc_srcbusirq = i; /* Identity mapped */
1045 intsrc.mpc_dstirq = i;
1047 Dprintk("Int: type %d, pol %d, trig %d, bus %d, irq %d, "
1048 "%d-%d\n", intsrc.mpc_irqtype, intsrc.mpc_irqflag & 3,
1049 (intsrc.mpc_irqflag >> 2) & 3, intsrc.mpc_srcbus,
1050 intsrc.mpc_srcbusirq, intsrc.mpc_dstapic,
1053 mp_irqs[mp_irq_entries] = intsrc;
1054 if (++mp_irq_entries == MAX_IRQ_SOURCES)
1055 panic("Max # of irq sources exceeded!\n");
1059 #define MAX_GSI_NUM 4096
1061 int mp_register_gsi (u32 gsi, int edge_level, int active_high_low)
1066 static int pci_irq = 16;
1068 * Mapping between Global System Interrups, which
1069 * represent all possible interrupts, and IRQs
1070 * assigned to actual devices.
1072 static int gsi_to_irq[MAX_GSI_NUM];
1074 #ifdef CONFIG_ACPI_BUS
1075 /* Don't set up the ACPI SCI because it's already set up */
1076 if (acpi_fadt.sci_int == gsi)
1080 ioapic = mp_find_ioapic(gsi);
1082 printk(KERN_WARNING "No IOAPIC for GSI %u\n", gsi);
1086 ioapic_pin = gsi - mp_ioapic_routing[ioapic].gsi_base;
1088 if (ioapic_renumber_irq)
1089 gsi = ioapic_renumber_irq(ioapic, gsi);
1092 * Avoid pin reprogramming. PRTs typically include entries
1093 * with redundant pin->gsi mappings (but unique PCI devices);
1094 * we only program the IOAPIC on the first.
1096 bit = ioapic_pin % 32;
1097 idx = (ioapic_pin < 32) ? 0 : (ioapic_pin / 32);
1099 printk(KERN_ERR "Invalid reference to IOAPIC pin "
1100 "%d-%d\n", mp_ioapic_routing[ioapic].apic_id,
1104 if ((1<<bit) & mp_ioapic_routing[ioapic].pin_programmed[idx]) {
1105 Dprintk(KERN_DEBUG "Pin %d-%d already programmed\n",
1106 mp_ioapic_routing[ioapic].apic_id, ioapic_pin);
1107 return gsi_to_irq[gsi];
1110 mp_ioapic_routing[ioapic].pin_programmed[idx] |= (1<<bit);
1114 * For PCI devices assign IRQs in order, avoiding gaps
1115 * due to unused I/O APIC pins.
1118 if (gsi < MAX_GSI_NUM) {
1121 #ifdef CONFIG_ACPI_BUS
1123 * Don't assign IRQ used by ACPI SCI
1125 if (gsi == acpi_fadt.sci_int)
1128 gsi_to_irq[irq] = gsi;
1130 printk(KERN_ERR "GSI %u is too high\n", gsi);
1135 io_apic_set_pci_routing(ioapic, ioapic_pin, gsi,
1136 edge_level == ACPI_EDGE_SENSITIVE ? 0 : 1,
1137 active_high_low == ACPI_ACTIVE_HIGH ? 0 : 1);
1141 #endif /*CONFIG_X86_IO_APIC && (CONFIG_ACPI_INTERPRETER || CONFIG_ACPI_BOOT)*/
1142 #endif /*CONFIG_ACPI_BOOT*/