x86: make struct config_ioapic not MPspec specific
[safe/jmp/linux-2.6] / arch / x86 / kernel / mpparse.c
1 /*
2  *      Intel Multiprocessor Specification 1.1 and 1.4
3  *      compliant MP-table parsing routines.
4  *
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>
8  */
9
10 #include <linux/mm.h>
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
20 #include <asm/smp.h>
21 #include <asm/mtrr.h>
22 #include <asm/mpspec.h>
23 #include <asm/pgalloc.h>
24 #include <asm/io_apic.h>
25 #include <asm/proto.h>
26 #include <asm/acpi.h>
27 #include <asm/bios_ebda.h>
28
29 #include <mach_apic.h>
30 #ifdef CONFIG_X86_32
31 #include <mach_apicdef.h>
32 #include <mach_mpparse.h>
33 #endif
34
35 /* Have we found an MP table */
36 int smp_found_config;
37
38 /*
39  * Various Linux-internal data structures created from the
40  * MP-table.
41  */
42 #if defined (CONFIG_MCA) || defined (CONFIG_EISA)
43 int mp_bus_id_to_type[MAX_MP_BUSSES];
44 #endif
45
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 };
48
49 static int mp_current_pci_id;
50
51 int pic_mode;
52
53 /*
54  * Intel MP BIOS table parsing routines:
55  */
56
57 /*
58  * Checksum an MP configuration block.
59  */
60
61 static int __init mpf_checksum(unsigned char *mp, int len)
62 {
63         int sum = 0;
64
65         while (len--)
66                 sum += *mp++;
67
68         return sum & 0xFF;
69 }
70
71 #ifdef CONFIG_X86_NUMAQ
72 /*
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
75  * doing this ....
76  */
77
78 static int mpc_record;
79 static struct mpc_config_translation *translation_table[MAX_MPC_ENTRY]
80     __cpuinitdata;
81 #endif
82
83 static void __cpuinit MP_processor_info(struct mpc_config_processor *m)
84 {
85         int apicid;
86         char *bootup_cpu = "";
87
88         if (!(m->mpc_cpuflag & CPU_ENABLED)) {
89                 disabled_cpus++;
90                 return;
91         }
92 #ifdef CONFIG_X86_NUMAQ
93         apicid = mpc_apic_id(m, translation_table[mpc_record]);
94 #else
95         apicid = m->mpc_apicid;
96 #endif
97         if (m->mpc_cpuflag & CPU_BOOTPROCESSOR) {
98                 bootup_cpu = " (Bootup-CPU)";
99                 boot_cpu_physical_apicid = m->mpc_apicid;
100         }
101
102         printk(KERN_INFO "Processor #%d%s\n", m->mpc_apicid, bootup_cpu);
103         generic_processor_info(apicid, m->mpc_apicver);
104 }
105
106 static void __init MP_bus_info(struct mpc_config_bus *m)
107 {
108         char str[7];
109
110         memcpy(str, m->mpc_bustype, 6);
111         str[6] = 0;
112
113 #ifdef CONFIG_X86_NUMAQ
114         mpc_oem_bus_info(m, str, translation_table[mpc_record]);
115 #else
116         printk(KERN_INFO "Bus #%d is %s\n", m->mpc_busid, str);
117 #endif
118
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);
124                 return;
125         }
126 #endif
127
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;
132 #endif
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]);
136 #endif
137                 clear_bit(m->mpc_busid, mp_bus_not_pci);
138                 mp_bus_id_to_pci_bus[m->mpc_busid] = mp_current_pci_id;
139                 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;
146 #endif
147         } else
148                 printk(KERN_WARNING "Unknown bustype %s - ignoring\n", str);
149 }
150
151 #ifdef CONFIG_X86_IO_APIC
152
153 static int bad_ioapic(unsigned long address)
154 {
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");
159         }
160         if (!address) {
161                 printk(KERN_ERR "WARNING: Bogus (zero) I/O APIC address"
162                        " found in table, skipping!\n");
163                 return 1;
164         }
165         return 0;
166 }
167
168 static void __init MP_ioapic_info(struct mpc_config_ioapic *m)
169 {
170         if (!(m->mpc_flags & MPC_APIC_USABLE))
171                 return;
172
173         printk(KERN_INFO "I/O APIC #%d Version %d at 0x%X.\n",
174                m->mpc_apicid, m->mpc_apicver, m->mpc_apicaddr);
175
176         if (bad_ioapic(m->mpc_apicaddr))
177                 return;
178
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;
184         nr_ioapics++;
185 }
186
187 static void __init MP_intsrc_info(struct mpc_config_intsrc *m)
188 {
189         mp_irqs[mp_irq_entries] = *m;
190         printk(KERN_INFO "Int: type %d, pol %d, trig %d, bus %02x,"
191                 " IRQ %02x, APIC ID %x, APIC INT %02x\n",
192                 m->mpc_irqtype, m->mpc_irqflag & 3,
193                 (m->mpc_irqflag >> 2) & 3, m->mpc_srcbus,
194                 m->mpc_srcbusirq, m->mpc_dstapic, m->mpc_dstirq);
195         if (++mp_irq_entries == MAX_IRQ_SOURCES)
196                 panic("Max # of irq sources exceeded!!\n");
197 }
198
199 #endif
200
201 static void __init MP_lintsrc_info(struct mpc_config_lintsrc *m)
202 {
203         printk(KERN_INFO "Lint: type %d, pol %d, trig %d, bus %02x,"
204                 " IRQ %02x, APIC ID %x, APIC LINT %02x\n",
205                 m->mpc_irqtype, m->mpc_irqflag & 3,
206                 (m->mpc_irqflag >> 2) & 3, m->mpc_srcbusid,
207                 m->mpc_srcbusirq, m->mpc_destapic, m->mpc_destapiclint);
208 }
209
210 #ifdef CONFIG_X86_NUMAQ
211 static void __init MP_translation_info(struct mpc_config_translation *m)
212 {
213         printk(KERN_INFO
214                "Translation: record %d, type %d, quad %d, global %d, local %d\n",
215                mpc_record, m->trans_type, m->trans_quad, m->trans_global,
216                m->trans_local);
217
218         if (mpc_record >= MAX_MPC_ENTRY)
219                 printk(KERN_ERR "MAX_MPC_ENTRY exceeded!\n");
220         else
221                 translation_table[mpc_record] = m;      /* stash this for later */
222         if (m->trans_quad < MAX_NUMNODES && !node_online(m->trans_quad))
223                 node_set_online(m->trans_quad);
224 }
225
226 /*
227  * Read/parse the MPC oem tables
228  */
229
230 static void __init smp_read_mpc_oem(struct mp_config_oemtable *oemtable,
231                                     unsigned short oemsize)
232 {
233         int count = sizeof(*oemtable);  /* the header size */
234         unsigned char *oemptr = ((unsigned char *)oemtable) + count;
235
236         mpc_record = 0;
237         printk(KERN_INFO "Found an OEM MPC table at %8p - parsing it ... \n",
238                oemtable);
239         if (memcmp(oemtable->oem_signature, MPC_OEM_SIGNATURE, 4)) {
240                 printk(KERN_WARNING
241                        "SMP mpc oemtable: bad signature [%c%c%c%c]!\n",
242                        oemtable->oem_signature[0], oemtable->oem_signature[1],
243                        oemtable->oem_signature[2], oemtable->oem_signature[3]);
244                 return;
245         }
246         if (mpf_checksum((unsigned char *)oemtable, oemtable->oem_length)) {
247                 printk(KERN_WARNING "SMP oem mptable: checksum error!\n");
248                 return;
249         }
250         while (count < oemtable->oem_length) {
251                 switch (*oemptr) {
252                 case MP_TRANSLATION:
253                         {
254                                 struct mpc_config_translation *m =
255                                     (struct mpc_config_translation *)oemptr;
256                                 MP_translation_info(m);
257                                 oemptr += sizeof(*m);
258                                 count += sizeof(*m);
259                                 ++mpc_record;
260                                 break;
261                         }
262                 default:
263                         {
264                                 printk(KERN_WARNING
265                                        "Unrecognised OEM table entry type! - %d\n",
266                                        (int)*oemptr);
267                                 return;
268                         }
269                 }
270         }
271 }
272
273 static inline void mps_oem_check(struct mp_config_table *mpc, char *oem,
274                                  char *productid)
275 {
276         if (strncmp(oem, "IBM NUMA", 8))
277                 printk("Warning!  May not be a NUMA-Q system!\n");
278         if (mpc->mpc_oemptr)
279                 smp_read_mpc_oem((struct mp_config_oemtable *)mpc->mpc_oemptr,
280                                  mpc->mpc_oemsize);
281 }
282 #endif /* CONFIG_X86_NUMAQ */
283
284 /*
285  * Read/parse the MPC
286  */
287
288 static int __init smp_read_mpc(struct mp_config_table *mpc, unsigned early)
289 {
290         char str[16];
291         char oem[10];
292         int count = sizeof(*mpc);
293         unsigned char *mpt = ((unsigned char *)mpc) + count;
294
295         if (memcmp(mpc->mpc_signature, MPC_SIGNATURE, 4)) {
296                 printk(KERN_ERR "MPTABLE: bad signature [%c%c%c%c]!\n",
297                        mpc->mpc_signature[0], mpc->mpc_signature[1],
298                        mpc->mpc_signature[2], mpc->mpc_signature[3]);
299                 return 0;
300         }
301         if (mpf_checksum((unsigned char *)mpc, mpc->mpc_length)) {
302                 printk(KERN_ERR "MPTABLE: checksum error!\n");
303                 return 0;
304         }
305         if (mpc->mpc_spec != 0x01 && mpc->mpc_spec != 0x04) {
306                 printk(KERN_ERR "MPTABLE: bad table version (%d)!!\n",
307                        mpc->mpc_spec);
308                 return 0;
309         }
310         if (!mpc->mpc_lapic) {
311                 printk(KERN_ERR "MPTABLE: null local APIC address!\n");
312                 return 0;
313         }
314         memcpy(oem, mpc->mpc_oem, 8);
315         oem[8] = 0;
316         printk(KERN_INFO "MPTABLE: OEM ID: %s\n", oem);
317
318         memcpy(str, mpc->mpc_productid, 12);
319         str[12] = 0;
320
321 #ifdef CONFIG_X86_32
322         mps_oem_check(mpc, oem, str);
323 #endif
324         printk(KERN_INFO "MPTABLE: Product ID: %s\n", str);
325
326         printk(KERN_INFO "MPTABLE: APIC at: 0x%X\n", mpc->mpc_lapic);
327
328         /* save the local APIC address, it might be non-default */
329         if (!acpi_lapic)
330                 mp_lapic_addr = mpc->mpc_lapic;
331
332         if (early)
333                 return 1;
334
335         /*
336          *      Now process the configuration blocks.
337          */
338 #ifdef CONFIG_X86_NUMAQ
339         mpc_record = 0;
340 #endif
341         while (count < mpc->mpc_length) {
342                 switch (*mpt) {
343                 case MP_PROCESSOR:
344                         {
345                                 struct mpc_config_processor *m =
346                                     (struct mpc_config_processor *)mpt;
347                                 /* ACPI may have already provided this data */
348                                 if (!acpi_lapic)
349                                         MP_processor_info(m);
350                                 mpt += sizeof(*m);
351                                 count += sizeof(*m);
352                                 break;
353                         }
354                 case MP_BUS:
355                         {
356                                 struct mpc_config_bus *m =
357                                     (struct mpc_config_bus *)mpt;
358                                 MP_bus_info(m);
359                                 mpt += sizeof(*m);
360                                 count += sizeof(*m);
361                                 break;
362                         }
363                 case MP_IOAPIC:
364                         {
365 #ifdef CONFIG_X86_IO_APIC
366                                 struct mpc_config_ioapic *m =
367                                     (struct mpc_config_ioapic *)mpt;
368                                 MP_ioapic_info(m);
369 #endif
370                                 mpt += sizeof(struct mpc_config_ioapic);
371                                 count += sizeof(struct mpc_config_ioapic);
372                                 break;
373                         }
374                 case MP_INTSRC:
375                         {
376 #ifdef CONFIG_X86_IO_APIC
377                                 struct mpc_config_intsrc *m =
378                                     (struct mpc_config_intsrc *)mpt;
379
380                                 MP_intsrc_info(m);
381 #endif
382                                 mpt += sizeof(struct mpc_config_intsrc);
383                                 count += sizeof(struct mpc_config_intsrc);
384                                 break;
385                         }
386                 case MP_LINTSRC:
387                         {
388                                 struct mpc_config_lintsrc *m =
389                                     (struct mpc_config_lintsrc *)mpt;
390                                 MP_lintsrc_info(m);
391                                 mpt += sizeof(*m);
392                                 count += sizeof(*m);
393                                 break;
394                         }
395                 default:
396                         /* wrong mptable */
397                         printk(KERN_ERR "Your mptable is wrong, contact your HW vendor!\n");
398                         printk(KERN_ERR "type %x\n", *mpt);
399                         print_hex_dump(KERN_ERR, "  ", DUMP_PREFIX_ADDRESS, 16,
400                                         1, mpc, mpc->mpc_length, 1);
401                         count = mpc->mpc_length;
402                         break;
403                 }
404 #ifdef CONFIG_X86_NUMAQ
405                 ++mpc_record;
406 #endif
407         }
408         setup_apic_routing();
409         if (!num_processors)
410                 printk(KERN_ERR "MPTABLE: no processors registered!\n");
411         return num_processors;
412 }
413
414 #ifdef CONFIG_X86_IO_APIC
415
416 static int __init ELCR_trigger(unsigned int irq)
417 {
418         unsigned int port;
419
420         port = 0x4d0 + (irq >> 3);
421         return (inb(port) >> (irq & 7)) & 1;
422 }
423
424 static void __init construct_default_ioirq_mptable(int mpc_default_type)
425 {
426         struct mpc_config_intsrc intsrc;
427         int i;
428         int ELCR_fallback = 0;
429
430         intsrc.mpc_type = MP_INTSRC;
431         intsrc.mpc_irqflag = 0; /* conforming */
432         intsrc.mpc_srcbus = 0;
433         intsrc.mpc_dstapic = mp_ioapics[0].mp_apicid;
434
435         intsrc.mpc_irqtype = mp_INT;
436
437         /*
438          *  If true, we have an ISA/PCI system with no IRQ entries
439          *  in the MP table. To prevent the PCI interrupts from being set up
440          *  incorrectly, we try to use the ELCR. The sanity check to see if
441          *  there is good ELCR data is very simple - IRQ0, 1, 2 and 13 can
442          *  never be level sensitive, so we simply see if the ELCR agrees.
443          *  If it does, we assume it's valid.
444          */
445         if (mpc_default_type == 5) {
446                 printk(KERN_INFO "ISA/PCI bus type with no IRQ information... "
447                        "falling back to ELCR\n");
448
449                 if (ELCR_trigger(0) || ELCR_trigger(1) || ELCR_trigger(2) ||
450                     ELCR_trigger(13))
451                         printk(KERN_ERR "ELCR contains invalid data... "
452                                "not using ELCR\n");
453                 else {
454                         printk(KERN_INFO
455                                "Using ELCR to identify PCI interrupts\n");
456                         ELCR_fallback = 1;
457                 }
458         }
459
460         for (i = 0; i < 16; i++) {
461                 switch (mpc_default_type) {
462                 case 2:
463                         if (i == 0 || i == 13)
464                                 continue;       /* IRQ0 & IRQ13 not connected */
465                         /* fall through */
466                 default:
467                         if (i == 2)
468                                 continue;       /* IRQ2 is never connected */
469                 }
470
471                 if (ELCR_fallback) {
472                         /*
473                          *  If the ELCR indicates a level-sensitive interrupt, we
474                          *  copy that information over to the MP table in the
475                          *  irqflag field (level sensitive, active high polarity).
476                          */
477                         if (ELCR_trigger(i))
478                                 intsrc.mpc_irqflag = 13;
479                         else
480                                 intsrc.mpc_irqflag = 0;
481                 }
482
483                 intsrc.mpc_srcbusirq = i;
484                 intsrc.mpc_dstirq = i ? i : 2;  /* IRQ0 to INTIN2 */
485                 MP_intsrc_info(&intsrc);
486         }
487
488         intsrc.mpc_irqtype = mp_ExtINT;
489         intsrc.mpc_srcbusirq = 0;
490         intsrc.mpc_dstirq = 0;  /* 8259A to INTIN0 */
491         MP_intsrc_info(&intsrc);
492 }
493
494 #endif
495
496 static inline void __init construct_default_ISA_mptable(int mpc_default_type)
497 {
498         struct mpc_config_processor processor;
499         struct mpc_config_bus bus;
500 #ifdef CONFIG_X86_IO_APIC
501         struct mpc_config_ioapic ioapic;
502 #endif
503         struct mpc_config_lintsrc lintsrc;
504         int linttypes[2] = { mp_ExtINT, mp_NMI };
505         int i;
506
507         /*
508          * local APIC has default address
509          */
510         mp_lapic_addr = APIC_DEFAULT_PHYS_BASE;
511
512         /*
513          * 2 CPUs, numbered 0 & 1.
514          */
515         processor.mpc_type = MP_PROCESSOR;
516         /* Either an integrated APIC or a discrete 82489DX. */
517         processor.mpc_apicver = mpc_default_type > 4 ? 0x10 : 0x01;
518         processor.mpc_cpuflag = CPU_ENABLED;
519         processor.mpc_cpufeature = (boot_cpu_data.x86 << 8) |
520             (boot_cpu_data.x86_model << 4) | boot_cpu_data.x86_mask;
521         processor.mpc_featureflag = boot_cpu_data.x86_capability[0];
522         processor.mpc_reserved[0] = 0;
523         processor.mpc_reserved[1] = 0;
524         for (i = 0; i < 2; i++) {
525                 processor.mpc_apicid = i;
526                 MP_processor_info(&processor);
527         }
528
529         bus.mpc_type = MP_BUS;
530         bus.mpc_busid = 0;
531         switch (mpc_default_type) {
532         default:
533                 printk(KERN_ERR "???\nUnknown standard configuration %d\n",
534                        mpc_default_type);
535                 /* fall through */
536         case 1:
537         case 5:
538                 memcpy(bus.mpc_bustype, "ISA   ", 6);
539                 break;
540         case 2:
541         case 6:
542         case 3:
543                 memcpy(bus.mpc_bustype, "EISA  ", 6);
544                 break;
545         case 4:
546         case 7:
547                 memcpy(bus.mpc_bustype, "MCA   ", 6);
548         }
549         MP_bus_info(&bus);
550         if (mpc_default_type > 4) {
551                 bus.mpc_busid = 1;
552                 memcpy(bus.mpc_bustype, "PCI   ", 6);
553                 MP_bus_info(&bus);
554         }
555
556 #ifdef CONFIG_X86_IO_APIC
557         ioapic.mpc_type = MP_IOAPIC;
558         ioapic.mpc_apicid = 2;
559         ioapic.mpc_apicver = mpc_default_type > 4 ? 0x10 : 0x01;
560         ioapic.mpc_flags = MPC_APIC_USABLE;
561         ioapic.mpc_apicaddr = 0xFEC00000;
562         MP_ioapic_info(&ioapic);
563
564         /*
565          * We set up most of the low 16 IO-APIC pins according to MPS rules.
566          */
567         construct_default_ioirq_mptable(mpc_default_type);
568 #endif
569         lintsrc.mpc_type = MP_LINTSRC;
570         lintsrc.mpc_irqflag = 0;        /* conforming */
571         lintsrc.mpc_srcbusid = 0;
572         lintsrc.mpc_srcbusirq = 0;
573         lintsrc.mpc_destapic = MP_APIC_ALL;
574         for (i = 0; i < 2; i++) {
575                 lintsrc.mpc_irqtype = linttypes[i];
576                 lintsrc.mpc_destapiclint = i;
577                 MP_lintsrc_info(&lintsrc);
578         }
579 }
580
581 static struct intel_mp_floating *mpf_found;
582
583 /*
584  * Scan the memory blocks for an SMP configuration block.
585  */
586 static void __init __get_smp_config(unsigned early)
587 {
588         struct intel_mp_floating *mpf = mpf_found;
589
590         if (acpi_lapic && early)
591                 return;
592         /*
593          * ACPI supports both logical (e.g. Hyper-Threading) and physical
594          * processors, where MPS only supports physical.
595          */
596         if (acpi_lapic && acpi_ioapic) {
597                 printk(KERN_INFO "Using ACPI (MADT) for SMP configuration "
598                        "information\n");
599                 return;
600         } else if (acpi_lapic)
601                 printk(KERN_INFO "Using ACPI for processor (LAPIC) "
602                        "configuration information\n");
603
604         printk(KERN_INFO "Intel MultiProcessor Specification v1.%d\n",
605                mpf->mpf_specification);
606 #ifdef CONFIG_X86_32
607         if (mpf->mpf_feature2 & (1 << 7)) {
608                 printk(KERN_INFO "    IMCR and PIC compatibility mode.\n");
609                 pic_mode = 1;
610         } else {
611                 printk(KERN_INFO "    Virtual Wire compatibility mode.\n");
612                 pic_mode = 0;
613         }
614 #endif
615         /*
616          * Now see if we need to read further.
617          */
618         if (mpf->mpf_feature1 != 0) {
619                 if (early) {
620                         /*
621                          * local APIC has default address
622                          */
623                         mp_lapic_addr = APIC_DEFAULT_PHYS_BASE;
624                         return;
625                 }
626
627                 printk(KERN_INFO "Default MP configuration #%d\n",
628                        mpf->mpf_feature1);
629                 construct_default_ISA_mptable(mpf->mpf_feature1);
630
631         } else if (mpf->mpf_physptr) {
632
633                 /*
634                  * Read the physical hardware table.  Anything here will
635                  * override the defaults.
636                  */
637                 if (!smp_read_mpc(phys_to_virt(mpf->mpf_physptr), early)) {
638                         smp_found_config = 0;
639                         printk(KERN_ERR
640                                "BIOS bug, MP table errors detected!...\n");
641                         printk(KERN_ERR "... disabling SMP support. "
642                                "(tell your hw vendor)\n");
643                         return;
644                 }
645
646                 if (early)
647                         return;
648 #ifdef CONFIG_X86_IO_APIC
649                 /*
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.
653                  */
654                 if (!mp_irq_entries) {
655                         struct mpc_config_bus bus;
656
657                         printk(KERN_ERR "BIOS bug, no explicit IRQ entries, "
658                                "using default mptable. "
659                                "(tell your hw vendor)\n");
660
661                         bus.mpc_type = MP_BUS;
662                         bus.mpc_busid = 0;
663                         memcpy(bus.mpc_bustype, "ISA   ", 6);
664                         MP_bus_info(&bus);
665
666                         construct_default_ioirq_mptable(0);
667                 }
668 #endif
669         } else
670                 BUG();
671
672         if (!early)
673                 printk(KERN_INFO "Processors: %d\n", num_processors);
674         /*
675          * Only use the first configuration found.
676          */
677 }
678
679 void __init early_get_smp_config(void)
680 {
681         __get_smp_config(1);
682 }
683
684 void __init get_smp_config(void)
685 {
686         __get_smp_config(0);
687 }
688
689 static int __init smp_scan_config(unsigned long base, unsigned long length,
690                                   unsigned reserve)
691 {
692         unsigned int *bp = phys_to_virt(base);
693         struct intel_mp_floating *mpf;
694
695         printk(KERN_DEBUG "Scan SMP from %p for %ld bytes.\n", bp, length);
696         BUILD_BUG_ON(sizeof(*mpf) != 16);
697
698         while (length > 0) {
699                 mpf = (struct intel_mp_floating *)bp;
700                 if ((*bp == SMP_MAGIC_IDENT) &&
701                     (mpf->mpf_length == 1) &&
702                     !mpf_checksum((unsigned char *)bp, 16) &&
703                     ((mpf->mpf_specification == 1)
704                      || (mpf->mpf_specification == 4))) {
705
706                         smp_found_config = 1;
707                         mpf_found = mpf;
708 #ifdef CONFIG_X86_32
709                         printk(KERN_INFO "found SMP MP-table at [%p] %08lx\n",
710                                mpf, virt_to_phys(mpf));
711                         reserve_bootmem(virt_to_phys(mpf), PAGE_SIZE,
712                                         BOOTMEM_DEFAULT);
713                         if (mpf->mpf_physptr) {
714                                 /*
715                                  * We cannot access to MPC table to compute
716                                  * table size yet, as only few megabytes from
717                                  * the bottom is mapped now.
718                                  * PC-9800's MPC table places on the very last
719                                  * of physical memory; so that simply reserving
720                                  * PAGE_SIZE from mpg->mpf_physptr yields BUG()
721                                  * in reserve_bootmem.
722                                  */
723                                 unsigned long size = PAGE_SIZE;
724                                 unsigned long end = max_low_pfn * PAGE_SIZE;
725                                 if (mpf->mpf_physptr + size > end)
726                                         size = end - mpf->mpf_physptr;
727                                 reserve_bootmem(mpf->mpf_physptr, size,
728                                                 BOOTMEM_DEFAULT);
729                         }
730
731 #else
732                         if (!reserve)
733                                 return 1;
734
735                         reserve_bootmem_generic(virt_to_phys(mpf), PAGE_SIZE);
736                         if (mpf->mpf_physptr)
737                                 reserve_bootmem_generic(mpf->mpf_physptr,
738                                                         PAGE_SIZE);
739 #endif
740                 return 1;
741                 }
742                 bp += 4;
743                 length -= 16;
744         }
745         return 0;
746 }
747
748 static void __init __find_smp_config(unsigned reserve)
749 {
750         unsigned int address;
751
752         /*
753          * FIXME: Linux assumes you have 640K of base ram..
754          * this continues the error...
755          *
756          * 1) Scan the bottom 1K for a signature
757          * 2) Scan the top 1K of base RAM
758          * 3) Scan the 64K of bios
759          */
760         if (smp_scan_config(0x0, 0x400, reserve) ||
761             smp_scan_config(639 * 0x400, 0x400, reserve) ||
762             smp_scan_config(0xF0000, 0x10000, reserve))
763                 return;
764         /*
765          * If it is an SMP machine we should know now, unless the
766          * configuration is in an EISA/MCA bus machine with an
767          * extended bios data area.
768          *
769          * there is a real-mode segmented pointer pointing to the
770          * 4K EBDA area at 0x40E, calculate and scan it here.
771          *
772          * NOTE! There are Linux loaders that will corrupt the EBDA
773          * area, and as such this kind of SMP config may be less
774          * trustworthy, simply because the SMP table may have been
775          * stomped on during early boot. These loaders are buggy and
776          * should be fixed.
777          *
778          * MP1.4 SPEC states to only scan first 1K of 4K EBDA.
779          */
780
781         address = get_bios_ebda();
782         if (address)
783                 smp_scan_config(address, 0x400, reserve);
784 }
785
786 void __init early_find_smp_config(void)
787 {
788         __find_smp_config(0);
789 }
790
791 void __init find_smp_config(void)
792 {
793         __find_smp_config(1);
794 }