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